From fd3eced631dfa8fa880ba436fe9e3d79bf200dd8 Mon Sep 17 00:00:00 2001 From: Eyimofe Date: Wed, 7 Sep 2022 20:53:17 +0100 Subject: [PATCH] uploaded files --- .gitignore | 2 + 1 Web Scraper.ipynb | 263 + 2.1 Neighborhood Split.ipynb | 2123 + ...et Concatenator for Neighorhood Data.ipynb | 160 + 2.3 Data Preprocessing.ipynb | 2763 + 3 EDA.ipynb | 117490 +++++++++++++++ 4 Model Building.ipynb | 1671 + Plots/app.png | Bin 0 -> 115245 bytes Plots/city-prices.png | Bin 0 -> 9283 bytes Plots/newplot.png | Bin 0 -> 16659 bytes Plots/price-hist.png | Bin 0 -> 20416 bytes Plots/top-neigh.png | Bin 0 -> 14632 bytes README.md | 63 + clean/eda.csv | 13140 ++ clean/ikeja.csv | 6654 + clean/ikoyi.csv | 9276 ++ clean/lekki.csv | 45998 ++++++ clean/test.csv | 2629 + clean/train.csv | 8409 ++ clean/validation.csv | 2104 + clean/vi.csv | 4459 + dirty/ikeja.csv | 6654 + dirty/ikoyi.csv | 9276 ++ dirty/lekki.csv | 45998 ++++++ dirty/vi.csv | 4459 + tools/encoder_joblib | Bin 0 -> 902 bytes tools/imputer_joblib | Bin 0 -> 967 bytes tools/model_joblib | Bin 0 -> 599142 bytes tools/scaler_joblib | Bin 0 -> 943 bytes web-app/Procfile | 1 + web-app/db.sqlite3 | 0 web-app/lagos/__init__.py | 0 web-app/lagos/asgi.py | 16 + web-app/lagos/settings.py | 130 + web-app/lagos/urls.py | 22 + web-app/lagos/wsgi.py | 16 + web-app/manage.py | 22 + web-app/predict/__init__.py | 0 web-app/predict/admin.py | 3 + web-app/predict/apps.py | 6 + web-app/predict/migrations/__init__.py | 0 web-app/predict/models.py | 3 + web-app/predict/tests.py | 3 + web-app/predict/urls.py | 8 + web-app/predict/views.py | 66 + web-app/requirements.txt | 18 + web-app/runtime.txt | 1 + web-app/static/css/.DS_Store | Bin 0 -> 6148 bytes web-app/static/css/bootstrap.min.css | 7 + web-app/static/css/bootstrap.min.css.map | 1 + web-app/static/css/bootstrap/bootstrap.css | 8149 + web-app/static/css/fine.css | 100 + web-app/static/css/owl.carousel.min.css | 6 + web-app/static/css/style.css | 52 + web-app/static/fonts/.DS_Store | Bin 0 -> 6148 bytes web-app/static/fonts/icomoon/Read Me.txt | 7 + .../static/fonts/icomoon/demo-files/demo.css | 155 + .../static/fonts/icomoon/demo-files/demo.js | 30 + web-app/static/fonts/icomoon/demo.html | 26137 ++++ .../static/fonts/icomoon/fonts/icomoon.eot | Bin 0 -> 307332 bytes .../static/fonts/icomoon/fonts/icomoon.svg | 1530 + .../static/fonts/icomoon/fonts/icomoon.ttf | Bin 0 -> 307168 bytes .../static/fonts/icomoon/fonts/icomoon.woff | Bin 0 -> 307244 bytes web-app/static/fonts/icomoon/selection.json | 41190 +++++ web-app/static/fonts/icomoon/style.css | 4919 + web-app/static/js/bootstrap.min.js | 7 + web-app/static/js/jquery-3.3.1.min.js | 2 + web-app/static/js/jquery.validate.min.js | 4 + web-app/static/js/main.js | 69 + web-app/static/js/owl.carousel.min.js | 7 + web-app/static/js/popper.min.js | 5 + web-app/static/js/selectFilter.min.js | 1 + web-app/templates/base.html | 200 + web-app/templates/home.html | 211 + web-app/tools/encoder_joblib | Bin 0 -> 902 bytes web-app/tools/imputer_joblib | Bin 0 -> 967 bytes web-app/tools/model_joblib | Bin 0 -> 599142 bytes web-app/tools/scaler_joblib | Bin 0 -> 943 bytes 78 files changed, 366695 insertions(+) create mode 100644 .gitignore create mode 100644 1 Web Scraper.ipynb create mode 100644 2.1 Neighborhood Split.ipynb create mode 100644 2.2 Dataset Concatenator for Neighorhood Data.ipynb create mode 100644 2.3 Data Preprocessing.ipynb create mode 100644 3 EDA.ipynb create mode 100644 4 Model Building.ipynb create mode 100644 Plots/app.png create mode 100644 Plots/city-prices.png create mode 100644 Plots/newplot.png create mode 100644 Plots/price-hist.png create mode 100644 Plots/top-neigh.png create mode 100644 README.md create mode 100644 clean/eda.csv create mode 100644 clean/ikeja.csv create mode 100644 clean/ikoyi.csv create mode 100644 clean/lekki.csv create mode 100644 clean/test.csv create mode 100644 clean/train.csv create mode 100644 clean/validation.csv create mode 100644 clean/vi.csv create mode 100644 dirty/ikeja.csv create mode 100644 dirty/ikoyi.csv create mode 100644 dirty/lekki.csv create mode 100644 dirty/vi.csv create mode 100644 tools/encoder_joblib create mode 100644 tools/imputer_joblib create mode 100644 tools/model_joblib create mode 100644 tools/scaler_joblib create mode 100644 web-app/Procfile create mode 100644 web-app/db.sqlite3 create mode 100644 web-app/lagos/__init__.py create mode 100644 web-app/lagos/asgi.py create mode 100644 web-app/lagos/settings.py create mode 100644 web-app/lagos/urls.py create mode 100644 web-app/lagos/wsgi.py create mode 100644 web-app/manage.py create mode 100644 web-app/predict/__init__.py create mode 100644 web-app/predict/admin.py create mode 100644 web-app/predict/apps.py create mode 100644 web-app/predict/migrations/__init__.py create mode 100644 web-app/predict/models.py create mode 100644 web-app/predict/tests.py create mode 100644 web-app/predict/urls.py create mode 100644 web-app/predict/views.py create mode 100644 web-app/requirements.txt create mode 100644 web-app/runtime.txt create mode 100644 web-app/static/css/.DS_Store create mode 100644 web-app/static/css/bootstrap.min.css create mode 100644 web-app/static/css/bootstrap.min.css.map create mode 100644 web-app/static/css/bootstrap/bootstrap.css create mode 100644 web-app/static/css/fine.css create mode 100644 web-app/static/css/owl.carousel.min.css create mode 100644 web-app/static/css/style.css create mode 100644 web-app/static/fonts/.DS_Store create mode 100644 web-app/static/fonts/icomoon/Read Me.txt create mode 100644 web-app/static/fonts/icomoon/demo-files/demo.css create mode 100644 web-app/static/fonts/icomoon/demo-files/demo.js create mode 100644 web-app/static/fonts/icomoon/demo.html create mode 100644 web-app/static/fonts/icomoon/fonts/icomoon.eot create mode 100644 web-app/static/fonts/icomoon/fonts/icomoon.svg create mode 100644 web-app/static/fonts/icomoon/fonts/icomoon.ttf create mode 100644 web-app/static/fonts/icomoon/fonts/icomoon.woff create mode 100644 web-app/static/fonts/icomoon/selection.json create mode 100644 web-app/static/fonts/icomoon/style.css create mode 100644 web-app/static/js/bootstrap.min.js create mode 100644 web-app/static/js/jquery-3.3.1.min.js create mode 100644 web-app/static/js/jquery.validate.min.js create mode 100644 web-app/static/js/main.js create mode 100644 web-app/static/js/owl.carousel.min.js create mode 100644 web-app/static/js/popper.min.js create mode 100644 web-app/static/js/selectFilter.min.js create mode 100644 web-app/templates/base.html create mode 100644 web-app/templates/home.html create mode 100644 web-app/tools/encoder_joblib create mode 100644 web-app/tools/imputer_joblib create mode 100644 web-app/tools/model_joblib create mode 100644 web-app/tools/scaler_joblib diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40bb4e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode/ +__pycache__/ \ No newline at end of file diff --git a/1 Web Scraper.ipynb b/1 Web Scraper.ipynb new file mode 100644 index 0000000..95a5d37 --- /dev/null +++ b/1 Web Scraper.ipynb @@ -0,0 +1,263 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "WOsmoXE7p9nm", + "metadata": { + "id": "WOsmoXE7p9nm" + }, + "source": [ + "# Web Scraper file\n", + "\n", + "The data would be extracted from The Real Estate website: PropertyPro.NG\n", + "\n", + "I have researched the website and see some features that most houses/ listings have:\n", + "\n", + "We would first get the data for these locations - Ikeja, Ikoyi, Lekki, Victoria Island \n", + "\n", + "After that for each city we would get the following information\n", + "* Title of the home/listing - which we can get info like\n", + " * If the house is a duplex, apartment, land, flat\n", + "___\n", + "* Location of home : we can get info like\n", + " * city home is located, neighborhood/area it is located\n", + "___\n", + "* Price of Home : It is a string and would be converted into integers\n", + "___\n", + "* If home is Newly Built (True/ False)\n", + "* If home is Serviced (True/ False)\n", + "* If home is Furnished (True/ False)\n", + "___\n", + "* No of Bedrooms (String convert to integer)\n", + "___\n", + "* No of Bathrooms (String convert to integer)\n", + "___\n", + "* No of Toilets (String convert to integer)\n", + "___\n", + "* No of Bathrooms (String convert to integer)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "lkuqHn6kp9nv", + "metadata": { + "id": "lkuqHn6kp9nv" + }, + "outputs": [], + "source": [ + "# !pip install bs4 requests --quiet" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "0Qy4A-1Yp9nx", + "metadata": { + "id": "0Qy4A-1Yp9nx" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\EMEH\\Anaconda3\\lib\\site-packages\\requests\\__init__.py:91: RequestsDependencyWarning: urllib3 (1.26.8) or chardet (3.0.4) doesn't match a supported version!\n", + " RequestsDependencyWarning)\n" + ] + } + ], + "source": [ + "# Import Seperate Libraries\n", + "from bs4 import BeautifulSoup\n", + "import requests\n", + "import csv" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "zZkBJYC7p9ny", + "metadata": { + "id": "zZkBJYC7p9ny" + }, + "outputs": [], + "source": [ + "from requests.adapters import HTTPAdapter\n", + "from requests.packages.urllib3.util.retry import Retry" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "QpPNtiFMp9nz", + "metadata": { + "id": "QpPNtiFMp9nz" + }, + "outputs": [], + "source": [ + "# This would make us scrape in sessions so that if we have network issues\n", + "# we wont need to start scraping again we would just revert to the previous\n", + "# session tracked\n", + "session = requests.Session()\n", + "retry = Retry(connect=3, backoff_factor=0.5)\n", + "adapter = HTTPAdapter(max_retries=retry)\n", + "session.mount('http://', adapter)\n", + "session.mount('https://', adapter)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "wPSVrDGvp9nz", + "metadata": { + "id": "wPSVrDGvp9nz" + }, + "outputs": [], + "source": [ + "# Save in this file\n", + "csv_file = open(\"ikoyi.csv\", \"w\")" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "1na0vgB0p9n0", + "metadata": { + "id": "1na0vgB0p9n0" + }, + "outputs": [], + "source": [ + "csv_writer = csv.writer(csv_file)" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "6l9nahUbp9n1", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "6l9nahUbp9n1", + "outputId": "f174246d-9639-4be6-e70e-a4622271f444" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "89" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "csv_writer.writerow([\"Title\", \"Location\", \"Price\",\"Serviced\", \"Newly Built\", \"Furnished\", \"Bedrooms\", \"Bathrooms\", \"Toilets\"])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "Vig6nktLp9n3", + "metadata": { + "id": "Vig6nktLp9n3" + }, + "outputs": [], + "source": [ + "# Get Location data\n", + "for page in range(0, 484):\n", + " # Replace the ikoyi with the city you want e.g. surulere, ajah, ikeja, lekki\n", + " link = session.get(f\"https://www.propertypro.ng/property-for-sale/in/lagos/ikoyi?page={page}\").text \n", + " soup = BeautifulSoup(link, \"lxml\")\n", + " \n", + " for listing in soup.find_all(\"div\", class_=\"single-room-sale listings-property\"):\n", + " title = listing.find(\"h3\", class_=\"listings-property-title2\").text\n", + " location = listing.find_all(\"h4\")[1].text\n", + "\n", + " price_info = listing.find(\"h3\", class_=\"listings-price\")\n", + " price = price_info.find_all(\"span\")[1].text\n", + "\n", + " if listing.find(\"a\", href=\"/property-for-sale/is-new\"):\n", + " is_new = 1\n", + " else:\n", + " is_new = 0\n", + " \n", + " if listing.find(\"a\", href=\"/property-for-sale/is-serviced\"):\n", + " serviced = 1\n", + " else:\n", + " serviced = 0\n", + " \n", + " if listing.find(\"a\", href=\"/property-for-sale/is-furnished\"):\n", + " furnished = 1\n", + " else:\n", + " furnished = 0\n", + " \n", + " more_info = listing.find(\"div\", class_=\"fur-areea\")\n", + " bed = more_info.find_all(\"span\")[0].text\n", + " bathroom = more_info.find_all(\"span\")[1].text\n", + " toilet = more_info.find_all(\"span\")[2].text\n", + "\n", + " csv_writer.writerow([title, location, price, serviced, is_new, furnished, bed, bathroom, toilet])\n", + "print(\"Done\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "HdZmwO_dp9n5", + "metadata": { + "id": "HdZmwO_dp9n5" + }, + "outputs": [], + "source": [ + "csv_file.close()" + ] + } + ], + "metadata": { + "colab": { + "collapsed_sections": [], + "name": "1 House Web Scraper.ipynb", + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2.1 Neighborhood Split.ipynb b/2.1 Neighborhood Split.ipynb new file mode 100644 index 0000000..50cad9b --- /dev/null +++ b/2.1 Neighborhood Split.ipynb @@ -0,0 +1,2123 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f123369f", + "metadata": {}, + "source": [ + "# Neighborhood Split (Feature Engineering)\n", + " \n", + "In this notebook, we woyuld do some cleaning of data on the location feature in our various datasets.\n", + "\n", + "The objective is to extract as much information to make the homes specific.\n", + "\n", + "We would focus on extracting City and Neighborhood/area of home, we would have extracted info like street but not all listings have and it would give us a lot of None/ Missing values that would make it hard for model bulinf and more data cleaning later" + ] + }, + { + "cell_type": "code", + "execution_count": 196, + "id": "223c6496", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "1a18f9db", + "metadata": {}, + "source": [ + "# Ikeja" + ] + }, + { + "cell_type": "markdown", + "id": "675952be", + "metadata": {}, + "source": [ + "## Import Dataset and Check Basic Info" + ] + }, + { + "cell_type": "code", + "execution_count": 197, + "id": "76fa4295", + "metadata": {}, + "outputs": [], + "source": [ + "ikeja = pd.read_csv(\"dirty/ikeja.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 198, + "id": "addbb38f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleLocationCurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
0ShopsAllen Avenue Roundabout Allen Avenue Ikeja Lagos750,000/sqm1000 beds0 baths0 Toilets
1Newly Built 5 Bedrooms Detached TriplexEso Close, Off Oduduwa Crescent, Gra Ikeja, La...280,000,000/year0105 beds5 baths6 Toilets
21800m2 LandOff Adedayo Banjo Street Opebi Ikeja Lagos220,000,0000000 beds0 baths0 Toilets
35 Bedroom Fully Detached DuplexMagodo Ikeja Lagos300,000,0000105 beds6 baths6 Toilets
4Luxury Built 4bedroom Fully Detached DuplexIkeja Lagos295,000,0001104 beds5 baths5 Toilets
\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Shops \n", + "1 Newly Built 5 Bedrooms Detached Triplex \n", + "2 1800m2 Land \n", + "3 5 Bedroom Fully Detached Duplex \n", + "4 Luxury Built 4bedroom Fully Detached Duplex \n", + "\n", + " Location Currency \\\n", + "0 Allen Avenue Roundabout Allen Avenue Ikeja Lagos ₦ \n", + "1 Eso Close, Off Oduduwa Crescent, Gra Ikeja, La... ₦ \n", + "2 Off Adedayo Banjo Street Opebi Ikeja Lagos ₦ \n", + "3 Magodo Ikeja Lagos ₦ \n", + "4 Ikeja Lagos ₦ \n", + "\n", + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "0 750,000/sqm 1 0 0 0 beds 0 baths \n", + "1 280,000,000/year 0 1 0 5 beds 5 baths \n", + "2 220,000,000 0 0 0 0 beds 0 baths \n", + "3 300,000,000 0 1 0 5 beds 6 baths \n", + "4 295,000,000 1 1 0 4 beds 5 baths \n", + "\n", + " Toilets \n", + "0 0 Toilets \n", + "1 6 Toilets \n", + "2 0 Toilets \n", + "3 6 Toilets \n", + "4 5 Toilets " + ] + }, + "execution_count": 198, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikeja.head()" + ] + }, + { + "cell_type": "markdown", + "id": "40bf6ed2", + "metadata": {}, + "source": [ + "## Testing a Split\n", + "\n", + "We can see if we split the data and convert it to a list, the last item would be the state, second to the last the city and third and sometimes forth to the last contains the neighborhood.\n", + "\n", + "We would create a function that would get third and fourth to the last, compare them and manually create a feature that has both of their info" + ] + }, + { + "cell_type": "code", + "execution_count": 199, + "id": "f1df82f3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Allen', 'Avenue', 'Roundabout', 'Allen', 'Avenue', 'Ikeja', 'Lagos']" + ] + }, + "execution_count": 199, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikeja[\"Location\"][0].split()" + ] + }, + { + "cell_type": "code", + "execution_count": 200, + "id": "51e9b2a4", + "metadata": {}, + "outputs": [], + "source": [ + "# Get Third to the last word in location data\n", + "def neighborhood1(col):\n", + " # Create a list\n", + " final = []\n", + " \n", + " # For each value in Location data, get the third to last word \n", + " # append it to list\n", + " # If it doesnt have one, replace it with None\n", + " for value in col:\n", + " try:\n", + " final.append(value.split()[-3])\n", + " except:\n", + " final.append(\"None\")\n", + " \n", + " return final\n", + "\n", + "# Get Fourth to the last word in location data\n", + "def neighborhood2(col):\n", + " #Create a list\n", + " final = []\n", + " \n", + " # For each value in Location data, get the fourth to last word\n", + " # Append it to list\n", + " # If it doesnt have one, replace it with None\n", + " for value in col:\n", + " try:\n", + " final.append(value.split()[-4])\n", + " except:\n", + " final.append(\"None\")\n", + " \n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 201, + "id": "4f20e230", + "metadata": {}, + "outputs": [], + "source": [ + "# Apply the function and extract it to two seperate features\n", + "ikeja[\"Neighborhood1\"] = neighborhood1(ikeja[\"Location\"])\n", + "ikeja[\"Neighborhood2\"] = neighborhood2(ikeja[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 202, + "id": "0fe9b52f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2
0AvenueAllen
1GraIkeja
2OpebiStreet
3MagodoNone
4NoneNone
.........
6648IkejaStreet.
6649IkejaStreet.
6650IkejaCrescent,
6651IkejaGra,
6652IkejaEstate
\n", + "

6653 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2\n", + "0 Avenue Allen\n", + "1 Gra Ikeja\n", + "2 Opebi Street\n", + "3 Magodo None\n", + "4 None None\n", + "... ... ...\n", + "6648 Ikeja Street.\n", + "6649 Ikeja Street.\n", + "6650 Ikeja Crescent,\n", + "6651 Ikeja Gra,\n", + "6652 Ikeja Estate\n", + "\n", + "[6653 rows x 2 columns]" + ] + }, + "execution_count": 202, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikeja[[\"Neighborhood1\", \"Neighborhood2\"]]" + ] + }, + { + "cell_type": "markdown", + "id": "51d1565e", + "metadata": {}, + "source": [ + "As we can see from looking at the unique values below and my further research of different areas in the Ikeja axis, I compared what i found to the cities in the unique and manually map them to their corresponfing cities.\n", + "\n", + "The ones that didnt have i added them to the most frequent neighborhood wihich was GRA" + ] + }, + { + "cell_type": "code", + "execution_count": 203, + "id": "78535dea", + "metadata": {}, + "outputs": [], + "source": [ + "# ikeja[\"Neighborhood1\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 204, + "id": "f44fc61e", + "metadata": {}, + "outputs": [], + "source": [ + "# ikeja[\"Neighborhood2\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 205, + "id": "115af51e", + "metadata": {}, + "outputs": [], + "source": [ + "def extract_neigh(feature):\n", + " total = {}\n", + " for value in feature:\n", + " if (\"Avenue\" in value) or (\"allen\" in value.lower()):\n", + " total[value] = \"Allen Avenue\"\n", + " elif (\"gra\" in value.lower()) or (\"g.r.\" in value.lower()):\n", + " total[value] = \"GRA\"\n", + " elif \"opebi\" in value.lower():\n", + " total[value] = \"Opebi\"\n", + " # elif \"Alausa\" in value:\n", + " # total[value] = \"Alausa\"\n", + " # elif \"Maryland\" in value:\n", + " # total[value] = \"Maryland\"\n", + " # elif (\"road\" in value.lower()) or (\"highway\" in value.lower()) or (\"Airport\" in value):\n", + " # total[value] = \"Airport Road\"\n", + " elif \"Alausa\" in value:\n", + " total[value] = \"Alausa\"\n", + " elif \"Maryland\" in value:\n", + " total[value] = \"Maryland\"\n", + " elif (\"road\" in value.lower()) or (\"highway\" in value.lower()) or (\"Airport\" in value):\n", + " total[value] = \"Airport Road\"\n", + " elif (\"Way\" in value) or (\"Way,\" in value):\n", + " total[value] = \"Awolowo Way\"\n", + " elif \"jones\" in value.lower():\n", + " total[value] = \"Adeniyi Jones\"\n", + " # elif \"Oregun\" in value:\n", + " # total[value] = \"Oregun\"\n", + " # elif (\"1\" in value) or (\"2\" in value) or (\"Omole\" in value):\n", + " # total[value] = \"Omole\"\n", + " # elif \"Agidingbi\" in value:\n", + " # total[value] = \"Agidingbi\"\n", + " elif \"Oregun\" in value:\n", + " total[value] = \"Oregun\"\n", + " elif (\"1\" in value) or (\"2\" in value) or (\"Omole\" in value):\n", + " total[value] = \"Omole\"\n", + " elif \"Agidingbi\" in value:\n", + " total[value] = \"Agidingbi\"\n", + " else:\n", + " total[value] = \"Other Ikeja\"\n", + " return total" + ] + }, + { + "cell_type": "code", + "execution_count": 206, + "id": "f5518ca0", + "metadata": {}, + "outputs": [], + "source": [ + "neighborhood = extract_neigh(ikeja[\"Neighborhood1\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 207, + "id": "f99edb6e", + "metadata": {}, + "outputs": [], + "source": [ + "ikeja[\"Neighborhood\"] = ikeja[\"Neighborhood1\"].map(neighborhood)\n", + "ikeja.drop([\"Neighborhood1\", \"Neighborhood2\"], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 208, + "id": "6c6080f5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "GRA 28.393206\n", + "Other Ikeja 18.713362\n", + "Adeniyi Jones 12.956561\n", + "Opebi 9.860213\n", + "Allen Avenue 7.650684\n", + "Awolowo Way 5.486247\n", + "Oregun 4.509244\n", + "Alausa 3.532241\n", + "Airport Road 2.450023\n", + "Agidingbi 2.450023\n", + "Maryland 2.134375\n", + "Omole 1.863821\n", + "Name: Neighborhood, dtype: float64" + ] + }, + "execution_count": 208, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikeja[\"Neighborhood\"].value_counts(normalize=True) * 100" + ] + }, + { + "cell_type": "code", + "execution_count": 209, + "id": "8248e9e6", + "metadata": {}, + "outputs": [], + "source": [ + "ikeja.to_csv(\"clean/ikeja.csv\")" + ] + }, + { + "cell_type": "markdown", + "id": "bdccd828", + "metadata": {}, + "source": [ + "# Ikoyi" + ] + }, + { + "cell_type": "code", + "execution_count": 210, + "id": "7e7f158a", + "metadata": {}, + "outputs": [], + "source": [ + "ikoyi = pd.read_csv(\"dirty/ikoyi.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 211, + "id": "dce07f5e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleLocationCurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
0Newly Built 5 Bedroom Fully Detached DuplexOniru Estate Victoria Island, Awolowo Road Iko...250,000,0001115 beds6 baths6 Toilets
1Luxury 5 Bedroom Terrace With Private Elevator...Banana Island Estate Banana Island Ikoyi Lagos$2,000,0001105 beds7 baths7 Toilets
2Luxury 5 Bedroom Triplex Penthouse With Privat...Banana Island Estate Banana Island Ikoyi Lagos$4,000,0001105 beds8 baths8 Toilets
35 Bedroom Detached Duplex With 2 Staff Quarter...Off Cameron Road Ikoyi Lagos850,000,0000005 beds8 baths9 Toilets
4Land Size: 1800 Sqm + Waterfront Dry BarelandZone Q, Banana Island, Ikoyi Lagos. Banana Isl...1,200,000/sqm0000 beds0 baths0 Toilets
\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Newly Built 5 Bedroom Fully Detached Duplex \n", + "1 Luxury 5 Bedroom Terrace With Private Elevator... \n", + "2 Luxury 5 Bedroom Triplex Penthouse With Privat... \n", + "3 5 Bedroom Detached Duplex With 2 Staff Quarter... \n", + "4 Land Size: 1800 Sqm + Waterfront Dry Bareland \n", + "\n", + " Location Currency Price \\\n", + "0 Oniru Estate Victoria Island, Awolowo Road Iko... ₦ 250,000,000 \n", + "1 Banana Island Estate Banana Island Ikoyi Lagos $ 2,000,000 \n", + "2 Banana Island Estate Banana Island Ikoyi Lagos $ 4,000,000 \n", + "3 Off Cameron Road Ikoyi Lagos ₦ 850,000,000 \n", + "4 Zone Q, Banana Island, Ikoyi Lagos. Banana Isl... ₦ 1,200,000/sqm \n", + "\n", + " Serviced Newly Built Furnished Bedrooms Bathrooms Toilets \n", + "0 1 1 1 5 beds 6 baths 6 Toilets \n", + "1 1 1 0 5 beds 7 baths 7 Toilets \n", + "2 1 1 0 5 beds 8 baths 8 Toilets \n", + "3 0 0 0 5 beds 8 baths 9 Toilets \n", + "4 0 0 0 0 beds 0 baths 0 Toilets " + ] + }, + "execution_count": 211, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikoyi.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 212, + "id": "6c8e3b0c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8143 Bourdillon Bourdillon Ikoyi Lagos\n", + "Name: Location, dtype: object" + ] + }, + "execution_count": 212, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikoyi[\"Location\"].sample()" + ] + }, + { + "cell_type": "code", + "execution_count": 213, + "id": "0c253190", + "metadata": {}, + "outputs": [], + "source": [ + "ikoyi[\"Neighborhood1\"] = neighborhood1(ikoyi[\"Location\"])\n", + "ikoyi[\"Neighborhood2\"] = neighborhood2(ikoyi[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 214, + "id": "17148d19", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2
0RoadAwolowo
1IslandBanana
2IslandBanana
3RoadCameron
4IslandBanana
.........
9270EstateOnikoyi
9271EstateOnikoyi
9272EstateOnikoyi
9273EstateOnikoyi
9274EstateOnikoyi
\n", + "

9275 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2\n", + "0 Road Awolowo\n", + "1 Island Banana\n", + "2 Island Banana\n", + "3 Road Cameron\n", + "4 Island Banana\n", + "... ... ...\n", + "9270 Estate Onikoyi\n", + "9271 Estate Onikoyi\n", + "9272 Estate Onikoyi\n", + "9273 Estate Onikoyi\n", + "9274 Estate Onikoyi\n", + "\n", + "[9275 rows x 2 columns]" + ] + }, + "execution_count": 214, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikoyi[[\"Neighborhood1\", \"Neighborhood2\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 215, + "id": "750144c9", + "metadata": {}, + "outputs": [], + "source": [ + "# ikoyi[\"Neighborhood1\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 216, + "id": "2f2a2a0f", + "metadata": {}, + "outputs": [], + "source": [ + "# ikoyi[\"Neighborhood2\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 217, + "id": "e11dd30a", + "metadata": {}, + "outputs": [], + "source": [ + "def extract_neigh(feature):\n", + " final = {}\n", + " for value in feature:\n", + " if ('Banana' in value) or ('Island' in value):\n", + " final[value] = 'Banana Island'\n", + " elif 'Old' in value:\n", + " final[value] = 'Old Ikoyi'\n", + " elif 'Parkview' in value:\n", + " final[value] = 'Parkview'\n", + " elif 'Foreshore' in value:\n", + " final[value] = 'Foreshore'\n", + " elif 'Onikoyi' in value:\n", + " final[value] = 'Onikoyi'\n", + " else:\n", + " final[value] = 'Other Ikoyi'\n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 218, + "id": "428e2dc7", + "metadata": {}, + "outputs": [], + "source": [ + "neighborhood = extract_neigh(ikoyi[\"Neighborhood2\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 219, + "id": "12473f7e", + "metadata": {}, + "outputs": [], + "source": [ + "ikoyi[\"Neighborhood\"] = ikoyi[\"Neighborhood2\"].map(neighborhood)\n", + "ikoyi.drop([\"Neighborhood1\", \"Neighborhood2\"], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 220, + "id": "37a43cd7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Other Ikoyi 35.061995\n", + "Banana Island 30.630728\n", + "Old Ikoyi 17.358491\n", + "Parkview 6.835580\n", + "Foreshore 6.123989\n", + "Onikoyi 3.989218\n", + "Name: Neighborhood, dtype: float64" + ] + }, + "execution_count": 220, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ikoyi[\"Neighborhood\"].value_counts(normalize=True) * 100" + ] + }, + { + "cell_type": "code", + "execution_count": 221, + "id": "8d461263", + "metadata": {}, + "outputs": [], + "source": [ + "ikoyi.to_csv(\"clean/ikoyi.csv\")" + ] + }, + { + "cell_type": "markdown", + "id": "1df471b5", + "metadata": {}, + "source": [ + "# Lekki" + ] + }, + { + "cell_type": "code", + "execution_count": 222, + "id": "0af8b918", + "metadata": {}, + "outputs": [], + "source": [ + "lekki = pd.read_csv(\"dirty/lekki.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 223, + "id": "6f6b3a87", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleLocationCurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
0Newly Built 4bedroom ApartmentEmcel Court Along Lafiaja Road Adjacent To Pri...57,000,0000104 beds4 baths5 Toilets
13 Bedroom MaisonetteLekki Lagos79,000,0000103 beds4 baths4 Toilets
2Exquisitely Built 4 Terrace Duplex For With Pr...Chevron Lekki Lagos60,000,0000104 beds4 baths5 Toilets
3Most Affordable 4 Bedroom Detached Duplex For ...Lekki Conservation Lekki Lagos85,000,0000104 beds4 baths5 Toilets
4Brand New 5 Bedroom Semi Detached DuplexOral Estate Lekki Lagos85,000,0000105 beds5 baths6 Toilets
\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Newly Built 4bedroom Apartment \n", + "1 3 Bedroom Maisonette \n", + "2 Exquisitely Built 4 Terrace Duplex For With Pr... \n", + "3 Most Affordable 4 Bedroom Detached Duplex For ... \n", + "4 Brand New 5 Bedroom Semi Detached Duplex \n", + "\n", + " Location Currency Price \\\n", + "0 Emcel Court Along Lafiaja Road Adjacent To Pri... ₦ 57,000,000 \n", + "1 Lekki Lagos ₦ 79,000,000 \n", + "2 Chevron Lekki Lagos ₦ 60,000,000 \n", + "3 Lekki Conservation Lekki Lagos ₦ 85,000,000 \n", + "4 Oral Estate Lekki Lagos ₦ 85,000,000 \n", + "\n", + " Serviced Newly Built Furnished Bedrooms Bathrooms Toilets \n", + "0 0 1 0 4 beds 4 baths 5 Toilets \n", + "1 0 1 0 3 beds 4 baths 4 Toilets \n", + "2 0 1 0 4 beds 4 baths 5 Toilets \n", + "3 0 1 0 4 beds 4 baths 5 Toilets \n", + "4 0 1 0 5 beds 5 baths 6 Toilets " + ] + }, + "execution_count": 223, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lekki.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 224, + "id": "0227d63d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "14719 Ikate Elegushi Street Ikate Lekki Lagos\n", + "Name: Location, dtype: object" + ] + }, + "execution_count": 224, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lekki[\"Location\"].sample()" + ] + }, + { + "cell_type": "code", + "execution_count": 225, + "id": "ce38c03b", + "metadata": {}, + "outputs": [], + "source": [ + "lekki[\"Neighborhood1\"] = neighborhood1(lekki[\"Location\"])\n", + "lekki[\"Neighborhood2\"] = neighborhood2(lekki[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 226, + "id": "50812645", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2
01Phase
1NoneNone
2ChevronNone
3ConservationLekki
4EstateOral
.........
45992LekkiDistrict,
45993LekkiEstate,
45994Lekki1,
45995LekkiMarwa,
45996Estate,Homes
\n", + "

45997 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2\n", + "0 1 Phase\n", + "1 None None\n", + "2 Chevron None\n", + "3 Conservation Lekki\n", + "4 Estate Oral\n", + "... ... ...\n", + "45992 Lekki District,\n", + "45993 Lekki Estate,\n", + "45994 Lekki 1,\n", + "45995 Lekki Marwa,\n", + "45996 Estate, Homes\n", + "\n", + "[45997 rows x 2 columns]" + ] + }, + "execution_count": 226, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lekki[[\"Neighborhood1\", \"Neighborhood2\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 227, + "id": "6b6178eb", + "metadata": {}, + "outputs": [], + "source": [ + "# lekki[\"Neighvborhood1\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 228, + "id": "af64bce5", + "metadata": {}, + "outputs": [], + "source": [ + "# lekki[\"Neighborhood2\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 229, + "id": "e1640478", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2Location
24LondonOsapaOsapa London Lekki Lagos
34LondonOsapaOsapa London Lekki Lagos
37LondonOsapaOsapa Osapa London Lekki Lagos
38LondonOsapaOsapa Osapa London Lekki Lagos
39LondonOsapaOsapa Osapa London Lekki Lagos
............
45497LondonOsapaOsapa London Osapa London Lekki Lagos
45508LondonOsapaOsapa London Osapa London Lekki Lagos
45540LondonOsapaVictory Park Estate, By Shoprite Roundabout Os...
45549LondonOsapaChike Mba Street Osapa London Lekki Lagos
45555LondonOsapaPinnock Beach Estate Osapa London Lekki Lagos
\n", + "

4412 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2 \\\n", + "24 London Osapa \n", + "34 London Osapa \n", + "37 London Osapa \n", + "38 London Osapa \n", + "39 London Osapa \n", + "... ... ... \n", + "45497 London Osapa \n", + "45508 London Osapa \n", + "45540 London Osapa \n", + "45549 London Osapa \n", + "45555 London Osapa \n", + "\n", + " Location \n", + "24 Osapa London Lekki Lagos \n", + "34 Osapa London Lekki Lagos \n", + "37 Osapa Osapa London Lekki Lagos \n", + "38 Osapa Osapa London Lekki Lagos \n", + "39 Osapa Osapa London Lekki Lagos \n", + "... ... \n", + "45497 Osapa London Osapa London Lekki Lagos \n", + "45508 Osapa London Osapa London Lekki Lagos \n", + "45540 Victory Park Estate, By Shoprite Roundabout Os... \n", + "45549 Chike Mba Street Osapa London Lekki Lagos \n", + "45555 Pinnock Beach Estate Osapa London Lekki Lagos \n", + "\n", + "[4412 rows x 3 columns]" + ] + }, + "execution_count": 229, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lekki[lekki[\"Neighborhood1\"] == \"London\"][[\"Neighborhood1\",\"Neighborhood2\", \"Location\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 230, + "id": "e11dd30a", + "metadata": {}, + "outputs": [], + "source": [ + "def extract_neigh(feature):\n", + " final = {}\n", + " for value in feature:\n", + " if 'chevron' in value.lower():\n", + " final[value] = 'Chevron'\n", + " elif '2' in value:\n", + " final[value] = 'Lekki Phase 2'\n", + " elif '1' in value:\n", + " final[value] = 'Lekki Phase 1'\n", + " elif 'Ikota' in value:\n", + " final[value] = 'Ikota'\n", + " elif 'Ikate' in value:\n", + " final[value] = 'Ikate'\n", + " elif 'Agungi' in value:\n", + " final[value] = 'Agungi'\n", + " elif 'Ologolo' in value:\n", + " final[value] = 'Ologolo'\n", + " elif 'Vgc' in value:\n", + " final[value] = 'Victoria Garden City'\n", + " elif ('London' in value) or ('Osapa' in value):\n", + " final[value] = 'Osapa London'\n", + " else:\n", + " final[value] = 'Other Lekki'\n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 231, + "id": "428e2dc7", + "metadata": {}, + "outputs": [], + "source": [ + "neighborhood = extract_neigh(lekki[\"Neighborhood1\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 232, + "id": "6b1d3244", + "metadata": {}, + "outputs": [], + "source": [ + "lekki[\"Neighborhood\"] = lekki[\"Neighborhood1\"].map(neighborhood)\n", + "lekki.drop([\"Neighborhood1\", \"Neighborhood2\"], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 233, + "id": "e5ba40af", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Other Lekki 18.844707\n", + "Chevron 16.468465\n", + "Lekki Phase 1 16.392373\n", + "Ikota 13.670457\n", + "Ikate 11.457269\n", + "Osapa London 9.768028\n", + "Lekki Phase 2 4.650303\n", + "Agungi 3.428484\n", + "Ologolo 2.671913\n", + "Victoria Garden City 2.647999\n", + "Name: Neighborhood, dtype: float64" + ] + }, + "execution_count": 233, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lekki[\"Neighborhood\"].value_counts(normalize=True) * 100" + ] + }, + { + "cell_type": "code", + "execution_count": 234, + "id": "777a4dca", + "metadata": {}, + "outputs": [], + "source": [ + "lekki.to_csv(\"clean/lekki.csv\")" + ] + }, + { + "cell_type": "markdown", + "id": "7f5ac447", + "metadata": {}, + "source": [ + "# Victoria Island" + ] + }, + { + "cell_type": "code", + "execution_count": 235, + "id": "3fb67304", + "metadata": {}, + "outputs": [], + "source": [ + "island = pd.read_csv(\"dirty/vi.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 236, + "id": "79aff409", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleLocationCurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
0Luxury 3 Bedroom Apartment With Excellent Fini...Off Ligali Ayorinde Victoria Island Lagos125,000,0001103 beds3 baths4 Toilets
1Ultra Luxury 3 Bedroom ApartmentVictoria Island Victoria Island Extension Vict...180,000,0001103 beds4 baths4 Toilets
2Luxury 2 Bedrooms Apartment With BqVictoria Island Victoria Island Extension Vict...120,000,0001102 beds4 baths3 Toilets
3Brand New Specious Luxury 6 Bedroom Fully Deta...Victoria Island Adeola Odeku Victoria Island L...590,000,0000106 beds6 baths7 Toilets
4Exquisite 3bedroom ApartmentOniru Victoria Island Lagos150,000,0000103 beds3 baths4 Toilets
\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Luxury 3 Bedroom Apartment With Excellent Fini... \n", + "1 Ultra Luxury 3 Bedroom Apartment \n", + "2 Luxury 2 Bedrooms Apartment With Bq \n", + "3 Brand New Specious Luxury 6 Bedroom Fully Deta... \n", + "4 Exquisite 3bedroom Apartment \n", + "\n", + " Location Currency Price \\\n", + "0 Off Ligali Ayorinde Victoria Island Lagos ₦ 125,000,000 \n", + "1 Victoria Island Victoria Island Extension Vict... ₦ 180,000,000 \n", + "2 Victoria Island Victoria Island Extension Vict... ₦ 120,000,000 \n", + "3 Victoria Island Adeola Odeku Victoria Island L... ₦ 590,000,000 \n", + "4 Oniru Victoria Island Lagos ₦ 150,000,000 \n", + "\n", + " Serviced Newly Built Furnished Bedrooms Bathrooms Toilets \n", + "0 1 1 0 3 beds 3 baths 4 Toilets \n", + "1 1 1 0 3 beds 4 baths 4 Toilets \n", + "2 1 1 0 2 beds 4 baths 3 Toilets \n", + "3 0 1 0 6 beds 6 baths 7 Toilets \n", + "4 0 1 0 3 beds 3 baths 4 Toilets " + ] + }, + "execution_count": 236, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "island.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 237, + "id": "ff045729", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1132 Oniru Victoria Island Oniru Victoria Island Lagos\n", + "Name: Location, dtype: object" + ] + }, + "execution_count": 237, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "island[\"Location\"].sample()" + ] + }, + { + "cell_type": "code", + "execution_count": 238, + "id": "96f60902", + "metadata": {}, + "outputs": [], + "source": [ + "island[\"Neighborhood1\"] = neighborhood1(island[\"Location\"])\n", + "island[\"Neighborhood2\"] = neighborhood2(island[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 239, + "id": "a376e7b0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2
0VictoriaAyorinde
1VictoriaExtension
2VictoriaExtension
3VictoriaOdeku
4VictoriaOniru
.........
4453VictoriaIsland
4454VictoriaIsland
4455VictoriaLagos
4456VictoriaIsland
4457VictoriaIsland
\n", + "

4458 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2\n", + "0 Victoria Ayorinde\n", + "1 Victoria Extension\n", + "2 Victoria Extension\n", + "3 Victoria Odeku\n", + "4 Victoria Oniru\n", + "... ... ...\n", + "4453 Victoria Island\n", + "4454 Victoria Island\n", + "4455 Victoria Lagos\n", + "4456 Victoria Island\n", + "4457 Victoria Island\n", + "\n", + "[4458 rows x 2 columns]" + ] + }, + "execution_count": 239, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "island[[\"Neighborhood1\", \"Neighborhood2\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 240, + "id": "78b70fdf", + "metadata": {}, + "outputs": [], + "source": [ + "# island[\"Neighborhood1\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 241, + "id": "009875b2", + "metadata": {}, + "outputs": [], + "source": [ + "# island[\"Neighborhood2\"].value_counts(normalize=True).head(30)" + ] + }, + { + "cell_type": "code", + "execution_count": 242, + "id": "f3f0c03d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Neighborhood1Neighborhood2Location
5Victoria1004Cluster D1 1004 Victoria Island Lagos
135Victoria10041004 Victoria Island Lagos
159Victoria10041004 Victoria Island Lagos
220Victoria10041004 Victoria Island Lagos
390Victoria1004Cluster C6 1004 Victoria Island 1004 Victoria ...
............
4009Victoria1004Ozumba Nbadiwe 1004 Victoria Island Lagos
4138Victoria1004Ademola Adetokunbo 1004 Victoria Island Lagos
4286Victoria10041004 Estate Victoria Island Lagos 1004 Victori...
4296Victoria1004Muri Okunola,v.i 1004 Victoria Island Lagos
4350Victoria1004Ozumba Mbadiwe 1004 Victoria Island Lagos
\n", + "

80 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Neighborhood1 Neighborhood2 \\\n", + "5 Victoria 1004 \n", + "135 Victoria 1004 \n", + "159 Victoria 1004 \n", + "220 Victoria 1004 \n", + "390 Victoria 1004 \n", + "... ... ... \n", + "4009 Victoria 1004 \n", + "4138 Victoria 1004 \n", + "4286 Victoria 1004 \n", + "4296 Victoria 1004 \n", + "4350 Victoria 1004 \n", + "\n", + " Location \n", + "5 Cluster D1 1004 Victoria Island Lagos \n", + "135 1004 Victoria Island Lagos \n", + "159 1004 Victoria Island Lagos \n", + "220 1004 Victoria Island Lagos \n", + "390 Cluster C6 1004 Victoria Island 1004 Victoria ... \n", + "... ... \n", + "4009 Ozumba Nbadiwe 1004 Victoria Island Lagos \n", + "4138 Ademola Adetokunbo 1004 Victoria Island Lagos \n", + "4286 1004 Estate Victoria Island Lagos 1004 Victori... \n", + "4296 Muri Okunola,v.i 1004 Victoria Island Lagos \n", + "4350 Ozumba Mbadiwe 1004 Victoria Island Lagos \n", + "\n", + "[80 rows x 3 columns]" + ] + }, + "execution_count": 242, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "island[island[\"Neighborhood2\"] == \"1004\"][[\"Neighborhood1\",\"Neighborhood2\", \"Location\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 243, + "id": "e11dd30a", + "metadata": {}, + "outputs": [], + "source": [ + "def extract_neigh(feature):\n", + " final = {}\n", + " for value in feature:\n", + " if 'oniru' in value.lower():\n", + " final[value] = 'Oniru'\n", + " elif 'Extension' in value:\n", + " final[value] = 'Victoria Island Extension'\n", + " elif 'Odeku' in value:\n", + " final[value] = 'Waziri Adeola Odeku'\n", + " else:\n", + " final[value] = 'Other Victoria Island'\n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 244, + "id": "428e2dc7", + "metadata": {}, + "outputs": [], + "source": [ + "neighborhood = extract_neigh(island[\"Neighborhood2\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 245, + "id": "631a53a6", + "metadata": {}, + "outputs": [], + "source": [ + "island[\"Neighborhood\"] = island[\"Neighborhood2\"].map(neighborhood)\n", + "island.drop([\"Neighborhood1\", \"Neighborhood2\"], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 246, + "id": "655e75a2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Other Victoria Island 47.846568\n", + "Oniru 36.316734\n", + "Victoria Island Extension 11.148497\n", + "Waziri Adeola Odeku 4.688201\n", + "Name: Neighborhood, dtype: float64" + ] + }, + "execution_count": 246, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "island[\"Neighborhood\"].value_counts(normalize=True) * 100" + ] + }, + { + "cell_type": "code", + "execution_count": 247, + "id": "2efae4fc", + "metadata": {}, + "outputs": [], + "source": [ + "island.to_csv(\"clean/vi.csv\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": { + "height": "calc(100% - 180px)", + "left": "10px", + "top": "150px", + "width": "290.909px" + }, + "toc_section_display": true, + "toc_window_display": false + }, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2.2 Dataset Concatenator for Neighorhood Data.ipynb b/2.2 Dataset Concatenator for Neighorhood Data.ipynb new file mode 100644 index 0000000..4c01ed6 --- /dev/null +++ b/2.2 Dataset Concatenator for Neighorhood Data.ipynb @@ -0,0 +1,160 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dataset Concantenator\n", + " \n", + "Here we are concantenating (adding row by row) our various datasets into one main data set that we will use in my project" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd " + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "ikeja = pd.read_csv(\"clean/ikeja.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "ikoyi = pd.read_csv(\"clean/ikoyi.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "lekki = pd.read_csv(\"clean/lekki.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "victoria = pd.read_csv(\"clean/vi.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "lagos = pd.concat([ikeja, ikoyi, lekki, victoria])" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 66383 entries, 0 to 4457\n", + "Data columns (total 12 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Unnamed: 0 66383 non-null int64 \n", + " 1 Title 66382 non-null object\n", + " 2 Location 66383 non-null object\n", + " 3 Currency 66383 non-null object\n", + " 4 Price 66383 non-null object\n", + " 5 Serviced 66383 non-null int64 \n", + " 6 Newly Built 66383 non-null int64 \n", + " 7 Furnished 66383 non-null int64 \n", + " 8 Bedrooms 66383 non-null object\n", + " 9 Bathrooms 66383 non-null object\n", + " 10 Toilets 66383 non-null object\n", + " 11 Neighborhood 66383 non-null object\n", + "dtypes: int64(4), object(8)\n", + "memory usage: 6.6+ MB\n" + ] + } + ], + "source": [ + "lagos.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "ba9aaf22", + "metadata": {}, + "outputs": [], + "source": [ + "lagos.drop('Unnamed: 0', axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "lagos.to_csv(\"clean/lagos.csv\", index=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2.3 Data Preprocessing.ipynb b/2.3 Data Preprocessing.ipynb new file mode 100644 index 0000000..95a0a49 --- /dev/null +++ b/2.3 Data Preprocessing.ipynb @@ -0,0 +1,2763 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data Preprocessing" + ] + }, + { + "cell_type": "markdown", + "id": "0211fced", + "metadata": {}, + "source": [ + "## Import Libraries and Dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We first would import the necessary libraries we need at the moment, we will import others as when they are needed" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "3410fac8", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd # for data manipulation\n", + "import joblib # for saving tools" + ] + }, + { + "cell_type": "markdown", + "id": "79ead21d", + "metadata": {}, + "source": [ + "Import dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "9412bf95", + "metadata": {}, + "outputs": [], + "source": [ + "lagos = pd.read_csv(\"clean/lagos.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "6a8d7e18", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleLocationCurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhood
0ShopsAllen Avenue Roundabout Allen Avenue Ikeja Lagos750,000/sqm1000 beds0 baths0 ToiletsAllen Avenue
1Newly Built 5 Bedrooms Detached TriplexEso Close, Off Oduduwa Crescent, Gra Ikeja, La...280,000,000/year0105 beds5 baths6 ToiletsGRA
21800m2 LandOff Adedayo Banjo Street Opebi Ikeja Lagos220,000,0000000 beds0 baths0 ToiletsOpebi
35 Bedroom Fully Detached DuplexMagodo Ikeja Lagos300,000,0000105 beds6 baths6 ToiletsOther Ikeja
4Luxury Built 4bedroom Fully Detached DuplexIkeja Lagos295,000,0001104 beds5 baths5 ToiletsOther Ikeja
\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Shops \n", + "1 Newly Built 5 Bedrooms Detached Triplex \n", + "2 1800m2 Land \n", + "3 5 Bedroom Fully Detached Duplex \n", + "4 Luxury Built 4bedroom Fully Detached Duplex \n", + "\n", + " Location Currency \\\n", + "0 Allen Avenue Roundabout Allen Avenue Ikeja Lagos ₦ \n", + "1 Eso Close, Off Oduduwa Crescent, Gra Ikeja, La... ₦ \n", + "2 Off Adedayo Banjo Street Opebi Ikeja Lagos ₦ \n", + "3 Magodo Ikeja Lagos ₦ \n", + "4 Ikeja Lagos ₦ \n", + "\n", + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "0 750,000/sqm 1 0 0 0 beds 0 baths \n", + "1 280,000,000/year 0 1 0 5 beds 5 baths \n", + "2 220,000,000 0 0 0 0 beds 0 baths \n", + "3 300,000,000 0 1 0 5 beds 6 baths \n", + "4 295,000,000 1 1 0 4 beds 5 baths \n", + "\n", + " Toilets Neighborhood \n", + "0 0 Toilets Allen Avenue \n", + "1 6 Toilets GRA \n", + "2 0 Toilets Opebi \n", + "3 6 Toilets Other Ikeja \n", + "4 5 Toilets Other Ikeja " + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show first 5 rows\n", + "lagos.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "a520021c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 66383 entries, 0 to 66382\n", + "Data columns (total 11 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Title 66382 non-null object\n", + " 1 Location 66383 non-null object\n", + " 2 Currency 66383 non-null object\n", + " 3 Price 66383 non-null object\n", + " 4 Serviced 66383 non-null int64 \n", + " 5 Newly Built 66383 non-null int64 \n", + " 6 Furnished 66383 non-null int64 \n", + " 7 Bedrooms 66383 non-null object\n", + " 8 Bathrooms 66383 non-null object\n", + " 9 Toilets 66383 non-null object\n", + " 10 Neighborhood 66383 non-null object\n", + "dtypes: int64(3), object(8)\n", + "memory usage: 5.6+ MB\n" + ] + } + ], + "source": [ + "# shoe basic information of the dataset\n", + "lagos.info()" + ] + }, + { + "cell_type": "markdown", + "id": "aa989309", + "metadata": {}, + "source": [ + "We can see from the data above we have 10 features as our Target Variable is **Price**" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "5d989bbb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Title', 'Location', 'Currency', 'Price', 'Serviced', 'Newly Built',\n", + " 'Furnished', 'Bedrooms', 'Bathrooms', 'Toilets', 'Neighborhood'],\n", + " dtype='object')" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.columns" + ] + }, + { + "cell_type": "markdown", + "id": "8202dc7c", + "metadata": {}, + "source": [ + "## Feature Engineering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Extracting Type of Property from Title" + ] + }, + { + "cell_type": "markdown", + "id": "9d26ec3c", + "metadata": {}, + "source": [ + "Since we are selling homes, let's parse out the three main types of Property Types from the title column: land, duplex and apartment" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "157746bc", + "metadata": {}, + "outputs": [], + "source": [ + "def house_type(serie):\n", + " final = []\n", + " \n", + " # Extract property name from title\n", + " for title in list(serie):\n", + " # convert all titles to lowercase trings\n", + " title = str(title).lower()\n", + " if \"land\" in title:\n", + " final.append(\"land\")\n", + " elif (\"duplex\" in title) or (\"massionette\" in title):\n", + " final.append(\"duplex\")\n", + " else:\n", + " final.append(\"apartment\")\n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "8d8f6409", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"Property Type\"] = house_type(lagos[\"Title\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "id": "3f273d11", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleProperty Type
14799Water Front Landland
49906Just Built 5 Bedroom Fully Detached Smart Home...duplex
406114 Bedroom Fully Detached Duplexesduplex
62736Urban City Tastefully Finished 3 Bedroom Apart...apartment
494155 Bedroom Detached Duplex With A Bqduplex
\n", + "
" + ], + "text/plain": [ + " Title Property Type\n", + "14799 Water Front Land land\n", + "49906 Just Built 5 Bedroom Fully Detached Smart Home... duplex\n", + "40611 4 Bedroom Fully Detached Duplexes duplex\n", + "62736 Urban City Tastefully Finished 3 Bedroom Apart... apartment\n", + "49415 5 Bedroom Detached Duplex With A Bq duplex" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[[\"Title\",\"Property Type\"]].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We only need duplex properties, so it will be set" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "id": "2c705e4f", + "metadata": {}, + "outputs": [], + "source": [ + "lagos = lagos[lagos[\"Property Type\"] == \"duplex\"].copy()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Extracting Type of Duplex from Title" + ] + }, + { + "cell_type": "markdown", + "id": "bc1bd5cc", + "metadata": {}, + "source": [ + "We can see different types of homes like detached duplex, semi detached etc, lets extract that" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "2fb91bcf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4 Bedroom Semi Detached Duplex 1479\n", + "5 Bedroom Detached Duplex 1088\n", + "4 Bedroom Terrace Duplex 767\n", + "5 Bedroom Fully Detached Duplex 761\n", + "4 Bedroom Detached Duplex 467\n", + " ... \n", + "New Automated Unconventional 4bedroom Terrace Duplex With Bq Swimming Pool And Gym 1\n", + "5 Bedroom Contemporary Fully Detached Duplex + Bq 1\n", + "Distressed 4bedrooms Fully Detached Duplex 1\n", + "New 4bedeoom Semi Detached Duplex With Bq 1\n", + "7 Bedroom Duplex + 2 Room Bq 1\n", + "Name: Title, Length: 14546, dtype: int64" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Title\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "id": "a7ecaca3", + "metadata": {}, + "outputs": [], + "source": [ + "# Seperate Detached Duplex Houses from Semi Detached houses\n", + "lagos.loc[\n", + " (lagos[\"Title\"] == \"Detached Duplex\") | (lagos[\"Title\"] == \"5 Bedroom Detached Duplex\") |\n", + " (lagos[\"Title\"] == \"4 Bedroom Detached Duplex\") | (lagos[\"Title\"] == \"6 Bedroom Detached Duplex\"),\n", + " \"Title\"\n", + "] = \"ONLY DETACHED DUPLEX\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This is a function to differentiate whether a home is detached, semi-detached, terraced or massionette" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "id": "7eb3a80f", + "metadata": {}, + "outputs": [], + "source": [ + "def type_house(col):\n", + " final = []\n", + " \n", + " for value in col:\n", + " if (\"ONLY DETACHED DUPLEX\" in value.upper()) or ('bedroom duplex' in value.lower()):\n", + " final.append(\"Detached Duplex\")\n", + " elif ('Fully Detached' in value) or ('bedroom detached duplex' in value.lower()):\n", + " final.append(\"Detached Duplex\")\n", + " elif ('bedrooms duplex' in value.lower()) or ('bedrooms detached' in value.lower()):\n", + " final.append(\"Detached Duplex\")\n", + " elif ('bed room' in value.lower()) or ('luxury' in value.lower()) or ('contemporary' in value.lower()):\n", + " final.append(\"Detached Duplex\")\n", + " elif \"semi\" in value.lower():\n", + " final.append(\"Semi Detached Duplex\")\n", + " elif \"terra\" in value.lower():\n", + " final.append(\"Terraced Duplex\")\n", + " else:\n", + " final.append(\"Massionette\")\n", + " \n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "15f100be", + "metadata": {}, + "outputs": [], + "source": [ + "# Applying the function\n", + "lagos[\"Type\"] = type_house(lagos[\"Title\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "id": "07758938", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Detached Duplex 19216\n", + "Semi Detached Duplex 7542\n", + "Terraced Duplex 5425\n", + "Massionette 870\n", + "Name: Type, dtype: int64" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Checking count of type of duplexes\n", + "lagos[\"Type\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "id": "cb79a36f", + "metadata": {}, + "source": [ + "We won't be needing the Title column again" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "effb2f40", + "metadata": {}, + "outputs": [], + "source": [ + "lagos.drop(\"Title\", axis=1, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We dont also need houses that are massionette" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [], + "source": [ + "mask = lagos.loc[lagos['Type'] == 'Massionette'].index\n", + "lagos.drop(mask, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Cleaning and Casting of the Price column" + ] + }, + { + "cell_type": "markdown", + "id": "9847b70f", + "metadata": {}, + "source": [ + "It seems our price column is a string, as it contains commas and also includes the price period of the properties\n", + "\n", + "Let's sort that out" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "id": "af737cc1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "61574 160,000,000\n", + "16608 360,000,000\n", + "41560 220,000,000\n", + "13528 160,000,000\n", + "1818 550,000,000\n", + "Name: Price, dtype: object" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# A sample of price values\n", + "lagos[\"Price\"].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Function to differentiate whether a price is fixed or per sqm, per year etc" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "id": "bac119ed", + "metadata": {}, + "outputs": [], + "source": [ + "# Remove the last item from the price\n", + "def price_split(serie):\n", + " final = []\n", + " for value in serie:\n", + " # if value has a price period, extract it else let it's price period be fixed\n", + " try:\n", + " final.append(value.split(\"/\")[1])\n", + " except:\n", + " final.append(\"fixed\")\n", + " return final" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "id": "1678d185", + "metadata": {}, + "outputs": [], + "source": [ + "# applying function\n", + "lagos[\"Price Period\"] = price_split(lagos[\"Price\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "id": "2d75492e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PricePrice Period
2967580,000,000fixed
20937120,000,000fixed
37436200,000,000fixed
3504585,000,000fixed
5204155,000,000fixed
\n", + "
" + ], + "text/plain": [ + " Price Price Period\n", + "29675 80,000,000 fixed\n", + "20937 120,000,000 fixed\n", + "37436 200,000,000 fixed\n", + "35045 85,000,000 fixed\n", + "52041 55,000,000 fixed" + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# checking samples\n", + "lagos[[\"Price\", \"Price Period\"]].sample(5)" + ] + }, + { + "cell_type": "markdown", + "id": "02399ade", + "metadata": {}, + "source": [ + "Now since we have parsed out the price period, let's remove the commas from them and convert them to numbers" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "id": "6a5cca92", + "metadata": {}, + "outputs": [], + "source": [ + "def comma_remove(feature):\n", + " final = []\n", + " for sample in feature:\n", + " # Get the prices\n", + " sample = sample.split(\"/\")[0]\n", + " \n", + " # Remove the commas\n", + " if \",\" in sample:\n", + " final.append(sample.replace(\",\",\"\"))\n", + " else:\n", + " final.append(sample)\n", + " \n", + " # Convert them to numbers\n", + " int_final = [float(item) for item in final]\n", + " return int_final\n" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "id": "4e4816c2", + "metadata": {}, + "outputs": [], + "source": [ + "# applying functions\n", + "lagos[\"Price\"] = comma_remove(lagos[\"Price\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "id": "4d703c74", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PricePrice Period
24896200000000.0fixed
6053765000000.0fixed
8489165000000.0day
3676895000000.0fixed
2162640000000.0fixed
\n", + "
" + ], + "text/plain": [ + " Price Price Period\n", + "24896 200000000.0 fixed\n", + "60537 65000000.0 fixed\n", + "8489 165000000.0 day\n", + "36768 95000000.0 fixed\n", + "21626 40000000.0 fixed" + ] + }, + "execution_count": 90, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[[\"Price\", \"Price Period\"]].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Extracting houses only with fixed prices" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [], + "source": [ + "lagos = lagos[lagos['Price Period'] == 'fixed']" + ] + }, + { + "cell_type": "markdown", + "id": "205123a0", + "metadata": {}, + "source": [ + "We can now perform numerical methods on the Price column now" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Minimum price" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "92aa7af6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Price\"].min()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Average price" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "9a7aaaa4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "100000000.0" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Price\"].median()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Max Price" + ] + }, + { + "cell_type": "markdown", + "id": "3ee5c32f", + "metadata": {}, + "source": [ + "We can see that some of our other columns meant to be numbers are actually strings, so we would have take care of that" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "b4a4da41", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "140000000000000.0" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Price\"].max()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Cleaning and Casting of the Bedrooms, Bathrooms and Toilets Features" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "2aaf6dbc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
BedroomsBathroomsToilets
516895 beds5 baths6 Toilets
422705 beds6 baths6 Toilets
646044 beds0 baths0 Toilets
225544 beds0 baths0 Toilets
60925 beds5 baths6 Toilets
\n", + "
" + ], + "text/plain": [ + " Bedrooms Bathrooms Toilets\n", + "51689 5 beds 5 baths 6 Toilets\n", + "42270 5 beds 6 baths 6 Toilets\n", + "64604 4 beds 0 baths 0 Toilets\n", + "22554 4 beds 0 baths 0 Toilets\n", + "6092 5 beds 5 baths 6 Toilets" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[[\"Bedrooms\",\"Bathrooms\",\"Toilets\"]].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Function to clean and cast bathroom, bedroom and toilets features" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "e956d01f", + "metadata": {}, + "outputs": [], + "source": [ + "def remove_bed_strip(serie):\n", + " final = []\n", + " # If value doesn't have a number, replace it with a zero,\n", + " # else replace it with the number it contains\n", + " for value in serie:\n", + " if value.split(\"beds\")[0].strip() == \"\":\n", + " final.append(int(\"0\"))\n", + " else:\n", + " final.append(int(value.split(\"beds\")[0].strip()))\n", + " return final\n", + "\n", + "def remove_toilet_strip(serie):\n", + " final = []\n", + " for value in serie:\n", + " if value.split(\"Toilets\")[0].strip() == \"\":\n", + " final.append(int(\"0\"))\n", + " else:\n", + " final.append(int(value.split(\"Toilets\")[0].strip()))\n", + " return final \n", + "\n", + "def remove_bath_strip(serie):\n", + " final = []\n", + " for value in serie:\n", + " if value.split(\"baths\")[0].strip() == \"\":\n", + " final.append(int(\"0\"))\n", + " else:\n", + " final.append(int(value.split(\"baths\")[0].strip()))\n", + " return final " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Applying functions to three features" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "id": "9e009a14", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"Bedrooms\"] = remove_bed_strip(lagos[\"Bedrooms\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "id": "1b8a8a40", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"Bathrooms\"] = remove_bath_strip(lagos[\"Bathrooms\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "id": "4f1737a8", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"Toilets\"] = remove_toilet_strip(lagos[\"Toilets\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "id": "280c3311", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
BedroomsBathroomsToilets
41941000
29680455
31607556
37139456
33042668
\n", + "
" + ], + "text/plain": [ + " Bedrooms Bathrooms Toilets\n", + "41941 0 0 0\n", + "29680 4 5 5\n", + "31607 5 5 6\n", + "37139 4 5 6\n", + "33042 6 6 8" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[[\"Bedrooms\",\"Bathrooms\",\"Toilets\"]].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Extracting City of property" + ] + }, + { + "cell_type": "markdown", + "id": "18a3218e", + "metadata": {}, + "source": [ + "Also we need to parse out the necessary neighbourhoods from the Location column" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "id": "a6c3a7b8", + "metadata": {}, + "outputs": [], + "source": [ + "# Remove location from data\n", + "def location_parser(serie):\n", + " # Replace all Spaces with a comma in the values\n", + " location = [location.replace(\" \", \",\") for location in serie]\n", + " \n", + " # Split the values by commas, and get the second to the last item, also replace items that\n", + " # contain Island with Victoria Island\n", + " area = [area.split(\",\")[-2].replace(\"Island\", \"Victoria Island\") for area in location]\n", + " \n", + " return area" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Applying function" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "id": "9e95c476", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"City\"] = location_parser(lagos[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "id": "2baa41e1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "58156 Lekki\n", + "43664 Lekki\n", + "19175 Lekki\n", + "38006 Lekki\n", + "36304 Lekki\n", + "Name: City, dtype: object" + ] + }, + "execution_count": 103, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"City\"].sample(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We wont be needing the Location feature again since City has been extracted" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "id": "011fba64", + "metadata": {}, + "outputs": [], + "source": [ + "lagos.drop(\"Location\", axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "id": "dfab78f2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CurrencyPriceServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhoodProperty TypeTypePrice PeriodCity
11205750000000.0010000Old IkoyiduplexDetached DuplexfixedIkoyi
7980180000000.0010445ParkviewduplexTerraced DuplexfixedIkoyi
58192150000000.0000500Other LekkiduplexDetached DuplexfixedLekki
63354175000000.0010445OniruduplexDetached DuplexfixedVictoria Island
2328578000000.0000000Other LekkiduplexSemi Detached DuplexfixedLekki
3580060000000.0010455Other LekkiduplexSemi Detached DuplexfixedLekki
21281110000000.0010556Lekki Phase 2duplexDetached DuplexfixedLekki
4708238000000.0000000Other LekkiduplexTerraced DuplexfixedLekki
917180000000.0001555Allen AvenueduplexDetached DuplexfixedIkeja
52650110000000.0011556IkotaduplexDetached DuplexfixedLekki
\n", + "
" + ], + "text/plain": [ + " Currency Price Serviced Newly Built Furnished Bedrooms \\\n", + "11205 ₦ 750000000.0 0 1 0 0 \n", + "7980 ₦ 180000000.0 0 1 0 4 \n", + "58192 ₦ 150000000.0 0 0 0 5 \n", + "63354 ₦ 175000000.0 0 1 0 4 \n", + "23285 ₦ 78000000.0 0 0 0 0 \n", + "35800 ₦ 60000000.0 0 1 0 4 \n", + "21281 ₦ 110000000.0 0 1 0 5 \n", + "47082 ₦ 38000000.0 0 0 0 0 \n", + "917 ₦ 180000000.0 0 0 1 5 \n", + "52650 ₦ 110000000.0 0 1 1 5 \n", + "\n", + " Bathrooms Toilets Neighborhood Property Type Type \\\n", + "11205 0 0 Old Ikoyi duplex Detached Duplex \n", + "7980 4 5 Parkview duplex Terraced Duplex \n", + "58192 0 0 Other Lekki duplex Detached Duplex \n", + "63354 4 5 Oniru duplex Detached Duplex \n", + "23285 0 0 Other Lekki duplex Semi Detached Duplex \n", + "35800 5 5 Other Lekki duplex Semi Detached Duplex \n", + "21281 5 6 Lekki Phase 2 duplex Detached Duplex \n", + "47082 0 0 Other Lekki duplex Terraced Duplex \n", + "917 5 5 Allen Avenue duplex Detached Duplex \n", + "52650 5 6 Ikota duplex Detached Duplex \n", + "\n", + " Price Period City \n", + "11205 fixed Ikoyi \n", + "7980 fixed Ikoyi \n", + "58192 fixed Lekki \n", + "63354 fixed Victoria Island \n", + "23285 fixed Lekki \n", + "35800 fixed Lekki \n", + "21281 fixed Lekki \n", + "47082 fixed Lekki \n", + "917 fixed Ikeja \n", + "52650 fixed Lekki " + ] + }, + "execution_count": 105, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.sample(10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Handling Missing Data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "After Analysis of the data it was observed that most properties' bathrooms and bedrooms had the same values , while toilets were an increment of the bedrooms. For example a property containing 4 bedrooms will have 4 bathrooms and 5 toilets. Lets turn this idea into a function" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "id": "aecfb289", + "metadata": {}, + "outputs": [], + "source": [ + "# Imputing for bathrooms and bedrooms\n", + "def bed_bath(cols):\n", + " bedroom = cols[0]\n", + " bathroom = cols[1]\n", + " \n", + " if bathroom == 0:\n", + "\n", + " if bedroom == 4:\n", + " return 4\n", + "\n", + " elif bedroom == 5:\n", + " return 5\n", + " \n", + " elif bedroom == 6:\n", + " return 6\n", + "\n", + " else:\n", + " return 0\n", + " else:\n", + " return bathroom" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "3fe0825e", + "metadata": {}, + "outputs": [], + "source": [ + "# Importing for toilets\n", + "def bed_toilet(cols):\n", + " bedroom = cols[0]\n", + " toilet = cols[1]\n", + " \n", + " if toilet == 0:\n", + "\n", + " if bedroom == 4:\n", + " return 5\n", + "\n", + " elif bedroom == 5:\n", + " return 6\n", + "\n", + " elif bedroom == 6:\n", + " return 7\n", + " \n", + " else:\n", + " return 0\n", + " else:\n", + " return toilet" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Applying the functions" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "d2a2356c", + "metadata": {}, + "outputs": [], + "source": [ + "lagos['Bedrooms'] = lagos[['Bathrooms','Bedrooms']].apply(bed_bath,axis=1)\n", + "lagos['Bathrooms'] = lagos[['Bedrooms','Bathrooms']].apply(bed_bath,axis=1)\n", + "lagos['Toilets'] = lagos[['Bedrooms','Toilets']].apply(bed_toilet,axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Handling duplicate values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Counting Number of duplicate values" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "16357" + ] + }, + "execution_count": 109, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.duplicated().value_counts()[1]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Removing duplicate values" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [], + "source": [ + "lagos.drop_duplicates(inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Removing Inconsistent rows and features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Extracting properties that contain only naira curriencies" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "id": "12597e75", + "metadata": {}, + "outputs": [], + "source": [ + "lagos = lagos.loc[lagos[\"Currency\"] != \"$\"].copy()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Removing rows that containing only 0 bedrooms, 0 bathrooms and 0 toilets" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [], + "source": [ + "mask = lagos.loc[(lagos['Bedrooms'] == 0) & (lagos['Bedrooms'] == 0) & (lagos['Toilets'] == 0)].index\n", + "lagos.drop(mask, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Removing Inconsistent Features" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "1615abc0", + "metadata": {}, + "outputs": [], + "source": [ + "lagos.drop(['Currency', 'Property Type', 'Price Period'], axis=1, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### Price Cap\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The average Nigerian in 2022 will not normally buy a property less than 10 million naira and higher than 500 million naira, this rows are redundant and will be removed" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [], + "source": [ + "mask = lagos.loc[(lagos[\"Price\"] < 1e7) | (lagos[\"Price\"] > 5e8)].index\n", + "lagos.drop(mask, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "metadata": {}, + "outputs": [], + "source": [ + "lagos = lagos.sample(frac=1).copy()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Saving preprocessed data for EDA" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "metadata": {}, + "outputs": [], + "source": [ + "lagos.to_csv('clean/eda.csv', index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Data Preprocessing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Data Split" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Splitting our data before data preprocessing to avoid data leakage" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "metadata": {}, + "outputs": [], + "source": [ + "# Spliting to extract 20% test data\n", + "from sklearn.model_selection import StratifiedShuffleSplit\n", + "split = StratifiedShuffleSplit(n_splits=1, test_size=0.2, random_state=42)\n", + "for train_index, test_index in split.split(lagos, lagos[\"Neighborhood\"]):\n", + " train_set = lagos.iloc[train_index]\n", + " test_set = lagos.iloc[test_index]" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [], + "source": [ + "# Splitting to extract 20% validation data\n", + "split = StratifiedShuffleSplit(n_splits=1, test_size=0.2, random_state=42)\n", + "for train_index, test_index in split.split(train_set, train_set[\"Neighborhood\"]):\n", + " train = train_set.iloc[train_index]\n", + " validation_set = train_set.iloc[test_index]" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [], + "source": [ + "lagos = train.drop(\"Price\", axis=1)\n", + "price = train[\"Price\"]" + ] + }, + { + "cell_type": "markdown", + "id": "1711dc64", + "metadata": {}, + "source": [ + "Let's seperate our numerical columns and our categorical ones" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "id": "3a80d7e8", + "metadata": {}, + "outputs": [], + "source": [ + "categorical_col = [column for column in lagos.columns if lagos[column].dtype == \"O\"]\n", + "numerical_col = ['Bathrooms', 'Bedrooms', 'Toilets']" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "id": "f8abd46b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NeighborhoodTypeCity
47624Other LekkiDetached DuplexLekki
23384Other LekkiDetached DuplexLekki
18327Lekki Phase 1Detached DuplexLekki
63357Other Victoria IslandDetached DuplexVictoria Island
\n", + "
" + ], + "text/plain": [ + " Neighborhood Type City\n", + "47624 Other Lekki Detached Duplex Lekki\n", + "23384 Other Lekki Detached Duplex Lekki\n", + "18327 Lekki Phase 1 Detached Duplex Lekki\n", + "63357 Other Victoria Island Detached Duplex Victoria Island" + ] + }, + "execution_count": 121, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[categorical_col].sample(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "ec7a353f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
BathroomsBedroomsToilets
55730445
44918444
25239555
38132545
\n", + "
" + ], + "text/plain": [ + " Bathrooms Bedrooms Toilets\n", + "55730 4 4 5\n", + "44918 4 4 4\n", + "25239 5 5 5\n", + "38132 5 4 5" + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[numerical_col].sample(4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Handling Missing Data" + ] + }, + { + "cell_type": "markdown", + "id": "decb680d", + "metadata": {}, + "source": [ + "Our dataset does not have missing values, but we still need to set a foundation, in case new data cotains some missing values" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "id": "ff8b5cbe", + "metadata": {}, + "outputs": [], + "source": [ + "# import library for missing data \n", + "from sklearn.impute import SimpleImputer" + ] + }, + { + "cell_type": "markdown", + "id": "5a334b5f", + "metadata": {}, + "source": [ + "Load the imputer and replacing missing categorical variables with their mode" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "f7c0ba48", + "metadata": {}, + "outputs": [], + "source": [ + "categorical_imputer = SimpleImputer(strategy=\"most_frequent\")\n", + "categorical_imputer.fit(lagos[categorical_col])\n", + "lagos[categorical_col] = categorical_imputer.transform(lagos[categorical_col])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Saving Imputer for future use in model deployment" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['tools/imputer_joblib']" + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "joblib.dump(categorical_imputer, \"tools/imputer_joblib\")" + ] + }, + { + "cell_type": "markdown", + "id": "d46148f1", + "metadata": {}, + "source": [ + "#### Feature Scaling" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Scaling for all our features to be in the same range of -3 to 3" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [], + "source": [ + "# import library for scaling\n", + "from sklearn.preprocessing import StandardScaler" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [], + "source": [ + "# load the scaler and scale the values\n", + "scaler = StandardScaler()\n", + "scaler.fit(lagos[numerical_col])\n", + "lagos[numerical_col] = scaler.transform(lagos[numerical_col])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Saving Scaler for future use in model deployment" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['tools/scaler_joblib']" + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "joblib.dump(scaler, \"tools/scaler_joblib\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Feature Encoding" + ] + }, + { + "cell_type": "markdown", + "id": "13e39754", + "metadata": {}, + "source": [ + "We need to perform OneHotEncoding on some of the norminal categorical variables (variables with no order e.g. Nigeria, Congo, Ghana)" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "id": "61510154", + "metadata": {}, + "outputs": [], + "source": [ + "# import library for encoding\n", + "from feature_engine.encoding import OneHotEncoder" + ] + }, + { + "cell_type": "code", + "execution_count": 130, + "metadata": {}, + "outputs": [], + "source": [ + "encoder = OneHotEncoder()\n", + "encoder.fit(lagos)\n", + "lagos = encoder.transform(lagos)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Saving Encoder for future use in model deployment" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['tools/encoder_joblib']" + ] + }, + "execution_count": 131, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "joblib.dump(encoder, \"tools/encoder_joblib\")" + ] + }, + { + "cell_type": "code", + "execution_count": 132, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhood_OpebiNeighborhood_Other LekkiNeighborhood_Adeniyi JonesNeighborhood_Lekki Phase 1...Neighborhood_Airport RoadNeighborhood_Awolowo WayNeighborhood_AgidingbiType_Semi Detached DuplexType_Detached DuplexType_Terraced DuplexCity_IkejaCity_LekkiCity_IkoyiCity_Victoria Island
3619000-0.481408-0.582738-0.1705921000...0001001000
35085000-0.481408-0.5827380.7360670100...0000100100
41480004.5296483.2331982.5493840010...0000101000
61009000-0.481408-0.582738-1.0772500001...0001000100
448050100.7713561.325230-0.1705920100...0000100100
..................................................................
542381100.771356-0.582738-0.1705920000...0000100100
258390100.7713560.3712460.7360670000...0000100100
61773000-0.481408-0.582738-0.1705920100...0001000100
225610100.7713561.3252300.7360670000...0000100100
48688010-1.734172-0.582738-1.0772500000...0000010100
\n", + "

8408 rows × 45 columns

\n", + "
" + ], + "text/plain": [ + " Serviced Newly Built Furnished Bedrooms Bathrooms Toilets \\\n", + "3619 0 0 0 -0.481408 -0.582738 -0.170592 \n", + "35085 0 0 0 -0.481408 -0.582738 0.736067 \n", + "4148 0 0 0 4.529648 3.233198 2.549384 \n", + "61009 0 0 0 -0.481408 -0.582738 -1.077250 \n", + "44805 0 1 0 0.771356 1.325230 -0.170592 \n", + "... ... ... ... ... ... ... \n", + "54238 1 1 0 0.771356 -0.582738 -0.170592 \n", + "25839 0 1 0 0.771356 0.371246 0.736067 \n", + "61773 0 0 0 -0.481408 -0.582738 -0.170592 \n", + "22561 0 1 0 0.771356 1.325230 0.736067 \n", + "48688 0 1 0 -1.734172 -0.582738 -1.077250 \n", + "\n", + " Neighborhood_Opebi Neighborhood_Other Lekki \\\n", + "3619 1 0 \n", + "35085 0 1 \n", + "4148 0 0 \n", + "61009 0 0 \n", + "44805 0 1 \n", + "... ... ... \n", + "54238 0 0 \n", + "25839 0 0 \n", + "61773 0 1 \n", + "22561 0 0 \n", + "48688 0 0 \n", + "\n", + " Neighborhood_Adeniyi Jones Neighborhood_Lekki Phase 1 ... \\\n", + "3619 0 0 ... \n", + "35085 0 0 ... \n", + "4148 1 0 ... \n", + "61009 0 1 ... \n", + "44805 0 0 ... \n", + "... ... ... ... \n", + "54238 0 0 ... \n", + "25839 0 0 ... \n", + "61773 0 0 ... \n", + "22561 0 0 ... \n", + "48688 0 0 ... \n", + "\n", + " Neighborhood_Airport Road Neighborhood_Awolowo Way \\\n", + "3619 0 0 \n", + "35085 0 0 \n", + "4148 0 0 \n", + "61009 0 0 \n", + "44805 0 0 \n", + "... ... ... \n", + "54238 0 0 \n", + "25839 0 0 \n", + "61773 0 0 \n", + "22561 0 0 \n", + "48688 0 0 \n", + "\n", + " Neighborhood_Agidingbi Type_Semi Detached Duplex \\\n", + "3619 0 1 \n", + "35085 0 0 \n", + "4148 0 0 \n", + "61009 0 1 \n", + "44805 0 0 \n", + "... ... ... \n", + "54238 0 0 \n", + "25839 0 0 \n", + "61773 0 1 \n", + "22561 0 0 \n", + "48688 0 0 \n", + "\n", + " Type_Detached Duplex Type_Terraced Duplex City_Ikeja City_Lekki \\\n", + "3619 0 0 1 0 \n", + "35085 1 0 0 1 \n", + "4148 1 0 1 0 \n", + "61009 0 0 0 1 \n", + "44805 1 0 0 1 \n", + "... ... ... ... ... \n", + "54238 1 0 0 1 \n", + "25839 1 0 0 1 \n", + "61773 0 0 0 1 \n", + "22561 1 0 0 1 \n", + "48688 0 1 0 1 \n", + "\n", + " City_Ikoyi City_Victoria Island \n", + "3619 0 0 \n", + "35085 0 0 \n", + "4148 0 0 \n", + "61009 0 0 \n", + "44805 0 0 \n", + "... ... ... \n", + "54238 0 0 \n", + "25839 0 0 \n", + "61773 0 0 \n", + "22561 0 0 \n", + "48688 0 0 \n", + "\n", + "[8408 rows x 45 columns]" + ] + }, + "execution_count": 132, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Save preprocessed data for Model Building" + ] + }, + { + "cell_type": "code", + "execution_count": 133, + "metadata": {}, + "outputs": [], + "source": [ + "lagos = pd.concat([lagos, price], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [], + "source": [ + "lagos.to_csv('clean/train.csv', index=False)\n", + "test_set.to_csv('clean/test.csv', index=False)\n", + "validation_set.to_csv('clean/validation.csv', index=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/3 EDA.ipynb b/3 EDA.ipynb new file mode 100644 index 0000000..dbb9cf1 --- /dev/null +++ b/3 EDA.ipynb @@ -0,0 +1,117490 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "0211fced", + "metadata": {}, + "source": [ + "### Import Dataset\n", + "\n", + "We first would import the necessary libraries we need at the moment, we will import others as when they are needed" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "3410fac8", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import seaborn as sns\n", + "\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "id": "79ead21d", + "metadata": {}, + "source": [ + "Importing dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "9412bf95", + "metadata": {}, + "outputs": [], + "source": [ + "lagos = pd.read_csv(\"clean/eda.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(12348, 10)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6a8d7e18", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhoodTypeCity
057000000.0110455Other LekkiSemi Detached DuplexLekki
157000000.0000445Osapa LondonDetached DuplexLekki
2230000000.0010566Lekki Phase 1Detached DuplexLekki
370000000.0000445Lekki Phase 1Semi Detached DuplexLekki
4100000000.0100556IkateTerraced DuplexLekki
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "0 57000000.0 1 1 0 4 5 \n", + "1 57000000.0 0 0 0 4 4 \n", + "2 230000000.0 0 1 0 5 6 \n", + "3 70000000.0 0 0 0 4 4 \n", + "4 100000000.0 1 0 0 5 5 \n", + "\n", + " Toilets Neighborhood Type City \n", + "0 5 Other Lekki Semi Detached Duplex Lekki \n", + "1 5 Osapa London Detached Duplex Lekki \n", + "2 6 Lekki Phase 1 Detached Duplex Lekki \n", + "3 5 Lekki Phase 1 Semi Detached Duplex Lekki \n", + "4 6 Ikate Terraced Duplex Lekki " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "e9d18794", + "metadata": {}, + "outputs": [], + "source": [ + "lagos[\"Price\"] = lagos[\"Price\"].apply(lambda x: x/1000000)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "10.0" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos['Price'].min()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "cfeb9314", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "99.0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Price\"].median()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "cfeb9314", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "500.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos[\"Price\"].max()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhoodType
City
Ikeja13.0000200Adeniyi JonesDetached Duplex
Ikoyi14.0000200Banana IslandDetached Duplex
Lekki10.0000000ChevronDetached Duplex
Victoria Island40.0000200OniruDetached Duplex
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "City \n", + "Ikeja 13.0 0 0 0 2 0 \n", + "Ikoyi 14.0 0 0 0 2 0 \n", + "Lekki 10.0 0 0 0 0 0 \n", + "Victoria Island 40.0 0 0 0 2 0 \n", + "\n", + " Toilets Neighborhood Type \n", + "City \n", + "Ikeja 0 Adeniyi Jones Detached Duplex \n", + "Ikoyi 0 Banana Island Detached Duplex \n", + "Lekki 0 Chevron Detached Duplex \n", + "Victoria Island 0 Oniru Detached Duplex " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# How to plot multi-index dataframes\n", + "lagos.groupby([\"City\"]).min()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
City
Ikeja120.00.00.00.04.05.05.0
Ikoyi270.00.00.00.04.04.05.0
Lekki85.00.01.00.04.05.05.0
Victoria Island150.00.00.00.04.04.05.0
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "City \n", + "Ikeja 120.0 0.0 0.0 0.0 4.0 5.0 \n", + "Ikoyi 270.0 0.0 0.0 0.0 4.0 4.0 \n", + "Lekki 85.0 0.0 1.0 0.0 4.0 5.0 \n", + "Victoria Island 150.0 0.0 0.0 0.0 4.0 4.0 \n", + "\n", + " Toilets \n", + "City \n", + "Ikeja 5.0 \n", + "Ikoyi 5.0 \n", + "Lekki 5.0 \n", + "Victoria Island 5.0 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# How to plot multi-index dataframes\n", + "lagos.groupby([\"City\"]).median()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhoodType
City
Ikeja500.0111101010Other IkejaTerraced Duplex
Ikoyi500.0111101010ParkviewTerraced Duplex
Lekki500.0111101010Other LekkiTerraced Duplex
Victoria Island500.0111101010Waziri Adeola OdekuTerraced Duplex
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "City \n", + "Ikeja 500.0 1 1 1 10 10 \n", + "Ikoyi 500.0 1 1 1 10 10 \n", + "Lekki 500.0 1 1 1 10 10 \n", + "Victoria Island 500.0 1 1 1 10 10 \n", + "\n", + " Toilets Neighborhood Type \n", + "City \n", + "Ikeja 10 Other Ikeja Terraced Duplex \n", + "Ikoyi 10 Parkview Terraced Duplex \n", + "Lekki 10 Other Lekki Terraced Duplex \n", + "Victoria Island 10 Waziri Adeola Odeku Terraced Duplex " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# How to plot multi-index dataframes\n", + "lagos.groupby([\"City\"]).max()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "f8ae34c7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceBedroomsBathroomsToilets
CityNeighborhoodType
IkejaAdeniyi JonesDetached Duplex122.55.05.05.0
Semi Detached Duplex100.04.04.05.0
Terraced Duplex82.04.04.05.0
Allen AvenueDetached Duplex95.04.04.05.0
Semi Detached Duplex80.04.04.05.0
.....................
Victoria IslandVictoria Island ExtensionDetached Duplex120.04.04.05.0
Semi Detached Duplex120.04.04.05.0
Terraced Duplex110.04.04.05.0
Waziri Adeola OdekuDetached Duplex245.04.04.55.0
Terraced Duplex182.54.04.05.0
\n", + "

65 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " Price \\\n", + "City Neighborhood Type \n", + "Ikeja Adeniyi Jones Detached Duplex 122.5 \n", + " Semi Detached Duplex 100.0 \n", + " Terraced Duplex 82.0 \n", + " Allen Avenue Detached Duplex 95.0 \n", + " Semi Detached Duplex 80.0 \n", + "... ... \n", + "Victoria Island Victoria Island Extension Detached Duplex 120.0 \n", + " Semi Detached Duplex 120.0 \n", + " Terraced Duplex 110.0 \n", + " Waziri Adeola Odeku Detached Duplex 245.0 \n", + " Terraced Duplex 182.5 \n", + "\n", + " Bedrooms \\\n", + "City Neighborhood Type \n", + "Ikeja Adeniyi Jones Detached Duplex 5.0 \n", + " Semi Detached Duplex 4.0 \n", + " Terraced Duplex 4.0 \n", + " Allen Avenue Detached Duplex 4.0 \n", + " Semi Detached Duplex 4.0 \n", + "... ... \n", + "Victoria Island Victoria Island Extension Detached Duplex 4.0 \n", + " Semi Detached Duplex 4.0 \n", + " Terraced Duplex 4.0 \n", + " Waziri Adeola Odeku Detached Duplex 4.0 \n", + " Terraced Duplex 4.0 \n", + "\n", + " Bathrooms \\\n", + "City Neighborhood Type \n", + "Ikeja Adeniyi Jones Detached Duplex 5.0 \n", + " Semi Detached Duplex 4.0 \n", + " Terraced Duplex 4.0 \n", + " Allen Avenue Detached Duplex 4.0 \n", + " Semi Detached Duplex 4.0 \n", + "... ... \n", + "Victoria Island Victoria Island Extension Detached Duplex 4.0 \n", + " Semi Detached Duplex 4.0 \n", + " Terraced Duplex 4.0 \n", + " Waziri Adeola Odeku Detached Duplex 4.5 \n", + " Terraced Duplex 4.0 \n", + "\n", + " Toilets \n", + "City Neighborhood Type \n", + "Ikeja Adeniyi Jones Detached Duplex 5.0 \n", + " Semi Detached Duplex 5.0 \n", + " Terraced Duplex 5.0 \n", + " Allen Avenue Detached Duplex 5.0 \n", + " Semi Detached Duplex 5.0 \n", + "... ... \n", + "Victoria Island Victoria Island Extension Detached Duplex 5.0 \n", + " Semi Detached Duplex 5.0 \n", + " Terraced Duplex 5.0 \n", + " Waziri Adeola Odeku Detached Duplex 5.0 \n", + " Terraced Duplex 5.0 \n", + "\n", + "[65 rows x 4 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.groupby([\"City\", \"Neighborhood\", \"Type\"]).median()[['Price', 'Bedrooms', 'Bathrooms', 'Toilets']] " + ] + }, + { + "cell_type": "markdown", + "id": "0525c0a5", + "metadata": {}, + "source": [ + "### Exploratory Data Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "83968972", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
count12348.00000012348.00000012348.00000012348.00000012348.00000012348.00000012348.000000
mean133.3228350.1844020.5262390.1762234.3805474.6026895.170797
std98.5193020.3878280.4993310.3810250.8160741.0852831.139809
min10.0000000.0000000.0000000.0000000.0000000.0000000.000000
25%65.0000000.0000000.0000000.0000004.0000004.0000005.000000
50%99.0000000.0000001.0000000.0000004.0000005.0000005.000000
75%170.0000000.0000001.0000000.0000005.0000005.0000006.000000
max500.0000001.0000001.0000001.00000010.00000010.00000010.000000
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms \\\n", + "count 12348.000000 12348.000000 12348.000000 12348.000000 12348.000000 \n", + "mean 133.322835 0.184402 0.526239 0.176223 4.380547 \n", + "std 98.519302 0.387828 0.499331 0.381025 0.816074 \n", + "min 10.000000 0.000000 0.000000 0.000000 0.000000 \n", + "25% 65.000000 0.000000 0.000000 0.000000 4.000000 \n", + "50% 99.000000 0.000000 1.000000 0.000000 4.000000 \n", + "75% 170.000000 0.000000 1.000000 0.000000 5.000000 \n", + "max 500.000000 1.000000 1.000000 1.000000 10.000000 \n", + "\n", + " Bathrooms Toilets \n", + "count 12348.000000 12348.000000 \n", + "mean 4.602689 5.170797 \n", + "std 1.085283 1.139809 \n", + "min 0.000000 0.000000 \n", + "25% 4.000000 5.000000 \n", + "50% 5.000000 5.000000 \n", + "75% 5.000000 6.000000 \n", + "max 10.000000 10.000000 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lagos.describe()" + ] + }, + { + "cell_type": "markdown", + "id": "5d2a9b90", + "metadata": {}, + "source": [ + "Let's check the distribution of some of the columns, our data contains outliers, so we would use the median" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10, 7])\n", + "plt.title(\"Distribution of prices\")\n", + "sns.histplot(lagos[\"Price\"], kde=True, color=\"#000066\")\n", + "plt.xlabel(\"Price (in millions)\");" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "d3f7cd2a", + "metadata": {}, + "outputs": [], + "source": [ + "import plotly.express as px" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "05884d2c", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Price=%{x}
count=%{y}", + "legendgroup": "", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "", + "nbinsx": 120, + "offsetgroup": "", + "orientation": "v", + "showlegend": false, + "type": "histogram", + "x": [ + 57, + 57, + 230, + 70, + 100, + 90, + 300, + 140, + 140, + 57, + 120, + 85, + 50, + 43, + 90, + 29, + 70, + 220, + 58, + 150, + 75, + 80, + 170, + 48, + 37, + 135, + 42, + 42, + 63, + 79, + 160, + 85, + 45, + 70, + 120, + 75, + 56, + 79, + 240, + 300, + 80, + 140, + 170, + 270, + 49, + 77, + 85, + 450, + 400, + 70, + 37.5, + 90, + 300, + 190, + 65, + 49, + 130, + 105, + 350, + 180, + 150, + 57, + 290, + 110, + 240, + 105, + 110, + 55, + 425, + 140, + 300, + 100, + 140, + 68, + 120, + 95, + 150, + 260, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 115, + 120, + 78, + 75, + 59, + 70, + 45, + 100, + 38, + 70, + 300, + 75, + 90, + 90, + 68, + 220, + 54, + 220, + 140, + 155, + 33, + 280, + 150, + 500, + 38, + 71, + 400, + 57, + 48, + 320, + 63, + 360, + 185, + 90, + 50, + 250, + 60, + 220, + 130, + 130, + 100, + 170, + 95, + 160, + 68, + 170, + 97, + 198, + 205, + 69, + 85, + 145, + 50, + 98, + 80, + 75, + 230, + 205, + 200, + 80, + 75, + 105, + 170, + 45, + 150, + 100, + 120, + 73, + 300, + 80, + 80, + 230, + 130, + 35, + 300, + 98, + 55, + 68, + 75, + 120, + 75, + 130, + 420, + 220, + 130, + 160, + 95, + 35, + 250, + 85, + 200, + 175, + 250, + 70, + 70, + 220, + 70, + 250, + 53, + 210, + 290, + 140, + 160, + 160, + 67, + 70, + 300, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 65, + 300, + 65, + 75, + 55, + 50, + 175, + 125, + 50, + 115, + 125, + 120, + 40, + 85, + 57, + 95, + 32, + 350, + 62, + 350, + 150, + 50, + 80, + 90, + 100, + 42, + 48, + 100, + 48, + 54.5, + 170, + 150, + 250, + 260, + 130, + 300, + 160, + 90, + 450, + 65, + 39.5, + 160, + 85, + 220, + 40, + 155, + 75, + 70, + 125, + 155, + 102, + 210, + 53, + 150, + 65, + 85, + 170, + 62, + 50, + 59, + 100, + 200, + 90, + 130, + 98, + 49, + 250, + 350, + 160, + 165, + 53, + 38, + 75, + 143, + 37, + 35, + 85, + 130, + 200, + 90, + 200, + 49.5, + 200, + 59.9, + 200, + 95, + 200, + 65, + 60, + 180, + 160, + 68, + 300, + 87, + 68, + 90, + 90, + 130, + 75, + 110, + 60, + 60, + 100, + 280, + 58.5, + 110, + 67, + 52, + 170, + 60, + 125, + 57, + 450, + 80, + 160, + 60, + 90, + 100, + 85, + 160, + 85, + 123, + 170, + 90, + 85, + 150, + 55, + 80, + 45, + 35, + 190, + 200, + 140, + 84, + 30, + 200, + 45, + 30, + 100, + 50, + 50, + 160, + 130, + 110, + 260, + 125, + 350, + 125, + 500, + 80, + 185, + 260, + 135, + 66, + 500, + 135, + 85, + 55, + 205, + 85, + 100, + 37, + 53, + 88, + 52, + 72, + 300, + 320, + 170, + 87, + 163, + 65, + 140, + 300, + 175, + 250, + 97, + 120, + 110, + 140, + 370, + 180, + 170, + 70, + 200, + 75, + 110, + 37, + 170, + 300, + 75, + 200, + 55, + 28, + 60, + 120, + 65, + 280, + 190, + 360, + 90, + 70, + 105, + 250, + 105, + 120, + 45, + 55, + 400, + 68, + 55, + 240, + 230, + 36, + 180, + 115, + 66, + 60, + 300, + 110, + 130, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 180, + 390, + 130, + 200, + 260, + 60, + 85, + 45, + 110, + 130, + 70, + 65, + 300, + 180, + 64, + 80, + 70, + 300, + 40, + 70, + 350, + 235, + 190, + 150, + 67, + 140, + 70, + 80, + 90, + 80, + 40, + 50, + 200, + 265, + 220, + 250, + 105, + 150, + 105, + 300, + 125, + 80, + 56, + 80, + 75, + 230, + 160, + 110, + 117, + 120, + 85, + 100, + 67, + 65, + 65, + 120, + 60, + 60, + 55, + 35, + 79, + 33, + 400, + 35, + 85, + 165, + 80, + 160, + 70, + 95, + 350, + 66, + 80, + 50, + 180, + 400, + 115, + 200, + 145, + 150, + 95, + 130, + 85, + 50, + 50, + 150, + 120, + 82, + 75, + 53, + 14, + 32.75, + 75, + 400, + 160, + 80, + 37, + 180, + 75, + 98, + 90, + 60, + 80, + 90, + 135, + 85, + 145, + 160, + 130, + 160, + 110, + 112, + 45, + 85, + 85, + 250, + 120, + 75, + 137, + 85, + 88, + 95, + 100, + 70, + 500, + 290, + 165, + 60, + 37, + 40, + 38, + 278, + 350, + 320, + 190, + 40, + 75, + 55, + 80, + 185, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 98, + 185, + 270, + 150, + 52.5, + 135, + 130, + 350, + 120, + 140, + 130, + 390, + 290, + 95, + 65, + 84, + 60, + 75, + 105, + 65, + 30, + 50, + 33, + 230, + 160, + 230, + 175, + 130, + 350, + 225, + 115, + 41.5, + 90, + 75, + 175, + 50, + 160, + 140, + 260, + 150, + 60, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 165, + 130, + 380, + 65, + 75, + 280, + 130, + 80, + 85, + 90, + 130, + 54, + 200, + 145, + 185, + 320, + 295, + 31, + 47, + 200, + 75, + 46, + 71.5, + 55, + 60, + 185, + 75, + 180, + 85, + 290, + 140, + 80, + 100, + 95, + 230, + 370, + 90, + 30, + 450, + 250, + 66, + 46, + 48, + 120, + 95, + 15.5, + 80, + 90, + 80, + 280, + 48, + 65, + 80, + 65, + 56, + 90, + 45, + 180, + 82, + 195, + 270, + 60, + 52, + 140, + 80, + 250, + 80, + 85, + 180, + 72, + 35, + 240, + 75, + 500, + 60, + 50, + 45, + 75, + 62, + 60, + 75, + 125, + 170, + 140, + 20, + 180, + 185, + 190, + 97, + 65, + 170, + 100, + 45, + 65, + 90, + 125, + 360, + 60, + 55, + 200, + 198, + 37, + 80, + 55, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 460, + 73, + 32.75, + 43, + 130, + 89, + 300, + 65, + 40, + 160, + 390, + 130, + 140, + 150, + 175, + 250, + 68, + 80, + 150, + 120, + 480, + 500, + 430, + 95, + 75, + 100, + 85, + 145, + 140, + 110, + 95, + 120, + 45, + 125, + 100, + 210, + 270, + 90, + 350, + 180, + 135, + 50, + 125, + 65, + 87, + 120, + 40, + 32.5, + 67, + 92.5, + 350, + 94, + 125, + 150, + 350, + 450, + 85, + 75, + 200, + 125, + 120, + 55, + 180, + 35, + 185, + 77, + 40, + 60, + 250, + 120, + 100, + 85, + 235, + 40.5, + 95, + 73, + 65, + 198, + 290, + 85, + 125, + 62, + 73, + 70, + 165, + 80, + 200, + 90, + 170, + 39, + 67, + 110, + 60, + 350, + 70, + 110, + 38, + 250, + 500, + 450, + 250, + 165, + 125, + 45, + 150, + 225, + 85, + 299.999999, + 99, + 180, + 250, + 60, + 67, + 70, + 160, + 50, + 70, + 80, + 60, + 75, + 60.9, + 80, + 130, + 58, + 144, + 102, + 160, + 80, + 280, + 57, + 140, + 67, + 65, + 155, + 85, + 35, + 135, + 50, + 70, + 48, + 80, + 115, + 48, + 210, + 75, + 88, + 160, + 83, + 76, + 135, + 450, + 110, + 85, + 80, + 63, + 210, + 100, + 60, + 450, + 130, + 98, + 65, + 220, + 200, + 240, + 90, + 170, + 220, + 59, + 130, + 50, + 250, + 50, + 240, + 33, + 200, + 70, + 68, + 95, + 90, + 30, + 66, + 180, + 47, + 160, + 110, + 155, + 67, + 35, + 45, + 55, + 180, + 85, + 250, + 160, + 56.5, + 230, + 48, + 45, + 105, + 150, + 130, + 55, + 150, + 32.75, + 90, + 150, + 170, + 67, + 65, + 80, + 450, + 180, + 85, + 38, + 450, + 35, + 175, + 95, + 84, + 62.5, + 70, + 75, + 55, + 35, + 60, + 117, + 55, + 75, + 80, + 220, + 70, + 110, + 205, + 80, + 160, + 120, + 110, + 140, + 350, + 37, + 400, + 145, + 170, + 48, + 49.5, + 100, + 260, + 45, + 120, + 95, + 200, + 49, + 500, + 155, + 55, + 230, + 95, + 110, + 90, + 120, + 95, + 125, + 165, + 250, + 75, + 42.5, + 90, + 100, + 75, + 130, + 115, + 220, + 150, + 270, + 145, + 140, + 180, + 38, + 78, + 120, + 185, + 300, + 38, + 65, + 280, + 360, + 70, + 68, + 105, + 170, + 75, + 415, + 350, + 48, + 250, + 40, + 65, + 300, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 47, + 45, + 220, + 120, + 47, + 95, + 58, + 85, + 33, + 270, + 60, + 45, + 135, + 80, + 40, + 65, + 120, + 110, + 450, + 165, + 50, + 300, + 280, + 170, + 45, + 75, + 80, + 290, + 38, + 50, + 158, + 100, + 301, + 195, + 57, + 100, + 410, + 450, + 42, + 76, + 350, + 250, + 55, + 68, + 110, + 450, + 145, + 60, + 44, + 70, + 118, + 102, + 180, + 189, + 80, + 157, + 85, + 110, + 60, + 140, + 115, + 90, + 150, + 300, + 300, + 80, + 57, + 75, + 120, + 420, + 400, + 115, + 150, + 270, + 120, + 57, + 60, + 500, + 73, + 32, + 110, + 55, + 68, + 49.9, + 198, + 47, + 58, + 125, + 26, + 75, + 55, + 72, + 25, + 500, + 85, + 170, + 150, + 140, + 92, + 100, + 59, + 90, + 75, + 85, + 77, + 105, + 80, + 55, + 75, + 160, + 50, + 350, + 120, + 58, + 65, + 45, + 50, + 100, + 75, + 500, + 250, + 50, + 450, + 130, + 66, + 180, + 78, + 80, + 210, + 195, + 150, + 170, + 130, + 70, + 80, + 80, + 210, + 49, + 70, + 64, + 235, + 410, + 68, + 60, + 90, + 65, + 85, + 230, + 70, + 88, + 61, + 65, + 68, + 180, + 180, + 52, + 145, + 14, + 200, + 45, + 78, + 52, + 48, + 220, + 80, + 470, + 75, + 220, + 56, + 55, + 97, + 57, + 340, + 290, + 90, + 65, + 145, + 95, + 75, + 95, + 75, + 50, + 46, + 55, + 180, + 75, + 80, + 75, + 120, + 36, + 160, + 200, + 150, + 90, + 50, + 110, + 285, + 90, + 45, + 58, + 78, + 150, + 60, + 269, + 225, + 100, + 50, + 203, + 110, + 54, + 110, + 210, + 41, + 30, + 39, + 130, + 95, + 67, + 70, + 79, + 450, + 155, + 95, + 120, + 75, + 50, + 65, + 270, + 50, + 78, + 37, + 80, + 280, + 255, + 105, + 360, + 40, + 72, + 280, + 59, + 82, + 120, + 160, + 33, + 40, + 250, + 80, + 95, + 270, + 118, + 195, + 130, + 100, + 75, + 175, + 85, + 95, + 110, + 75, + 190, + 400, + 160, + 100, + 120, + 300, + 48, + 40, + 200, + 200, + 76, + 270, + 47, + 53, + 250, + 180, + 126, + 155, + 70, + 78, + 100, + 79, + 90, + 350, + 105, + 180, + 70, + 330, + 65, + 380, + 350, + 170, + 75, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 300, + 190, + 70, + 32, + 56, + 49, + 50, + 30, + 40, + 110, + 165, + 77, + 280, + 120, + 155, + 70, + 40, + 240, + 169, + 49, + 160, + 190, + 190, + 75, + 480, + 170, + 170, + 76, + 85, + 130, + 120, + 55, + 95, + 95, + 190, + 130, + 115, + 40, + 120, + 38, + 275, + 90, + 95, + 45, + 105, + 170, + 130, + 155.7, + 65, + 33, + 165, + 68, + 80, + 135, + 60, + 320, + 120, + 100.01, + 78, + 165, + 72, + 110, + 185, + 75, + 95, + 400, + 200, + 74, + 90, + 50, + 135, + 300, + 38, + 260, + 200, + 75, + 175, + 150, + 85, + 62, + 92, + 160, + 85, + 200, + 160, + 52, + 100, + 85, + 180, + 250, + 22, + 170, + 85, + 190, + 73, + 170, + 160, + 92, + 450, + 390, + 70, + 51, + 120, + 500, + 85, + 400, + 135, + 140, + 48, + 65, + 130, + 170, + 100, + 106, + 295, + 180, + 50, + 450, + 392, + 170, + 55, + 120, + 60, + 65, + 300, + 40, + 50, + 250, + 45, + 140, + 130, + 85, + 50, + 55, + 420, + 105, + 190, + 230, + 160, + 57, + 250, + 360, + 250, + 60, + 78, + 205, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 140, + 250, + 198.5, + 127, + 125, + 270, + 270, + 35, + 70, + 45, + 55, + 80, + 200, + 270, + 53, + 35, + 33, + 95, + 98, + 60, + 75, + 135, + 65, + 60, + 39, + 85, + 250, + 160, + 110, + 480, + 100, + 47, + 75, + 100, + 34, + 58, + 220, + 250, + 59, + 280, + 92, + 80, + 100, + 150, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 66, + 63, + 200, + 410, + 135, + 95, + 115, + 80, + 300, + 135, + 130, + 160, + 280, + 55, + 55, + 260, + 25, + 300, + 250, + 480, + 75, + 110, + 68, + 33, + 56, + 170, + 82, + 135, + 72, + 200, + 270, + 17.675, + 130, + 183, + 85, + 164, + 90, + 67, + 125, + 240, + 74, + 100, + 180, + 45, + 47, + 59.5, + 190, + 380, + 155, + 470, + 48, + 65, + 85, + 90, + 100, + 200, + 100, + 69, + 65, + 180, + 500, + 60, + 28, + 75, + 47, + 180, + 110, + 140, + 170, + 70, + 60, + 70, + 155, + 95, + 60, + 400, + 130, + 95, + 98, + 140, + 55, + 130, + 200, + 67, + 55, + 450, + 165, + 125, + 78, + 90, + 100, + 175, + 85, + 290, + 150, + 36, + 300, + 165, + 43, + 100, + 240, + 69, + 95, + 125, + 150, + 115, + 210, + 49, + 80, + 120, + 180, + 90, + 60, + 75, + 55, + 300, + 350, + 500, + 45, + 400, + 55, + 280, + 33, + 220, + 120, + 270, + 150, + 79, + 105, + 68, + 240, + 120, + 65, + 65, + 400, + 123, + 175, + 260, + 78, + 350, + 170, + 76, + 95, + 70, + 98, + 33, + 195, + 130, + 30, + 80, + 40, + 45, + 77, + 130, + 450, + 45, + 120, + 95, + 145, + 300, + 55, + 170, + 57, + 60, + 50, + 65, + 53, + 76, + 93, + 135, + 40, + 55, + 57, + 280, + 195, + 300, + 80, + 41, + 37, + 51.5, + 130, + 170, + 80, + 290, + 270, + 79.5, + 97, + 115, + 220, + 56, + 220, + 37, + 158, + 280, + 80, + 100, + 120, + 380, + 100, + 300, + 90, + 90, + 68, + 75, + 32, + 72, + 95, + 220, + 100, + 172, + 250, + 40, + 350, + 55, + 70, + 70, + 45, + 110, + 400, + 53, + 370, + 32, + 145, + 40, + 24, + 165, + 165, + 65, + 57, + 130, + 155, + 195, + 75, + 130, + 70, + 50, + 180, + 250, + 53.1, + 65, + 109, + 115, + 130, + 120, + 90, + 45, + 270, + 62, + 60, + 110, + 225, + 170, + 150, + 55, + 220, + 280, + 74, + 78, + 45, + 110, + 47, + 120, + 100, + 110, + 280, + 45, + 270, + 70, + 158, + 245, + 380, + 75, + 135, + 95, + 55, + 110, + 75, + 120, + 280, + 75, + 400, + 85, + 56, + 90, + 40, + 105, + 200, + 36.5, + 100, + 33, + 60, + 58, + 85, + 185, + 88, + 98, + 57, + 75, + 55, + 185, + 32, + 49, + 160, + 83, + 150, + 180, + 205, + 110, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 480, + 60, + 75, + 145, + 140, + 75, + 70, + 45, + 250, + 480, + 90, + 130, + 110, + 35, + 55, + 69, + 92, + 270, + 105, + 48, + 30, + 360, + 190, + 95, + 54, + 400, + 180, + 85, + 190, + 52, + 270, + 350, + 80, + 37, + 65, + 58, + 60, + 51, + 250, + 180, + 250, + 185, + 48, + 100, + 37, + 100, + 200, + 90, + 170, + 76, + 170, + 135, + 45, + 35.85, + 90, + 135, + 46, + 285, + 130, + 290, + 450, + 65, + 120, + 87, + 170, + 60, + 230, + 250, + 130, + 75, + 420, + 350, + 59.5, + 68, + 175, + 83, + 77, + 155, + 145, + 85, + 80, + 170, + 70, + 400, + 165, + 125, + 19.975, + 59, + 230, + 130, + 250, + 55, + 87, + 500, + 180, + 180, + 450, + 250, + 245, + 180, + 59, + 100, + 69.99, + 65, + 63, + 40, + 90, + 200, + 148, + 360, + 70, + 140, + 230, + 150, + 75, + 250, + 100, + 300, + 48, + 65, + 185, + 90, + 70, + 250, + 180, + 48, + 150, + 265, + 65, + 55, + 70, + 70, + 150, + 167, + 93, + 440, + 250, + 115, + 70, + 35, + 55, + 115, + 150, + 380, + 95, + 57, + 45, + 45, + 33, + 95, + 330, + 275, + 500, + 185, + 160, + 150, + 300, + 78, + 275, + 120, + 11.6, + 42, + 118, + 77, + 68, + 120, + 160, + 120, + 200, + 77, + 160, + 37, + 160, + 75, + 150, + 58, + 59, + 79, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 105, + 30, + 48, + 65, + 300, + 120, + 450, + 230, + 110, + 47, + 45, + 150, + 320, + 95, + 75, + 480, + 80, + 150, + 83, + 155, + 210, + 65, + 115, + 60, + 45, + 185, + 70, + 250, + 110, + 200, + 280, + 125, + 200, + 30, + 350, + 330, + 45, + 36.5, + 45, + 150, + 270, + 48, + 58, + 43, + 70, + 77, + 350, + 58, + 145, + 135, + 60, + 130, + 120, + 260, + 72, + 67, + 50, + 160, + 430, + 285, + 58, + 150, + 450, + 140, + 135, + 59, + 65, + 50, + 185, + 185, + 95, + 150, + 120, + 150, + 80, + 195, + 70, + 120, + 220, + 220, + 145, + 85, + 500, + 90, + 80, + 67, + 48, + 79.5, + 38, + 115, + 130, + 180, + 120, + 205, + 65, + 120, + 80, + 185, + 300, + 69, + 165, + 55, + 280, + 150, + 270, + 77, + 57, + 73, + 300, + 210, + 260, + 120, + 58, + 140, + 85, + 230, + 54, + 80, + 400, + 275, + 380, + 125, + 75, + 370, + 130, + 140, + 300, + 50, + 38, + 49, + 150, + 60, + 75, + 95, + 183, + 16.5, + 120, + 35, + 68, + 55, + 50, + 55, + 120, + 72, + 150, + 52, + 145, + 170, + 90, + 190, + 80, + 200, + 300, + 99, + 75, + 80, + 200, + 38, + 65, + 280, + 200, + 220, + 285, + 195, + 70, + 48, + 160, + 85, + 85, + 59, + 100, + 35, + 110, + 90, + 75, + 86, + 45, + 60, + 130, + 197.5, + 69.5, + 150, + 180, + 35, + 38, + 200, + 65, + 50, + 350, + 70, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 180, + 290, + 330, + 100, + 135, + 60, + 97, + 240, + 350, + 68, + 230, + 125, + 55, + 47, + 100, + 95, + 52, + 125, + 54, + 58, + 95, + 45, + 115, + 165, + 62, + 150, + 60, + 83, + 90, + 46, + 220, + 70, + 57, + 170, + 75.000009, + 150, + 200, + 190, + 125, + 95, + 65, + 67, + 185, + 55, + 350, + 180, + 140, + 260, + 75, + 37, + 400, + 35, + 275, + 360, + 38, + 160, + 90, + 130, + 65, + 95, + 80, + 58, + 160, + 26, + 95, + 50, + 430, + 250, + 125, + 73, + 58, + 85, + 63, + 450, + 270, + 330, + 250, + 75, + 350, + 110, + 200, + 120, + 195, + 35, + 220, + 65, + 75, + 57, + 68, + 140, + 190, + 110, + 150, + 280, + 57, + 85, + 95, + 160, + 48, + 210, + 38, + 65, + 75, + 30, + 140, + 255, + 200, + 120, + 20, + 230, + 200, + 175, + 67, + 83, + 200, + 110, + 350, + 175, + 130, + 360, + 150, + 145, + 230, + 95, + 130, + 92, + 130, + 115, + 120, + 95, + 260, + 125.99, + 155, + 170, + 65, + 65, + 80, + 300, + 52, + 280, + 52, + 63, + 148.5, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 190, + 260, + 55, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 45, + 47, + 60, + 120, + 280, + 230, + 220, + 85, + 90, + 90, + 110, + 35, + 110, + 85, + 220, + 67, + 100, + 210, + 37, + 235, + 73, + 130, + 155, + 58, + 58, + 220, + 39, + 160, + 220, + 280, + 135, + 350, + 125, + 185, + 350, + 62, + 85, + 150, + 57, + 105, + 185, + 85, + 78, + 240, + 98, + 200, + 155, + 81, + 62, + 55, + 90, + 250, + 130, + 120, + 500, + 110, + 43, + 48, + 65, + 150, + 40, + 105, + 350, + 480, + 105, + 130, + 65, + 145, + 150, + 200, + 52, + 110, + 110, + 85, + 78, + 56, + 43, + 270, + 62, + 27, + 168, + 47, + 120, + 130, + 49, + 130, + 500, + 320, + 100, + 40, + 60, + 100, + 118, + 135, + 120, + 45, + 50, + 90, + 400, + 230, + 90, + 220, + 280, + 80, + 220, + 190, + 55, + 75, + 48, + 140, + 95, + 65, + 125, + 180, + 400, + 80, + 450, + 500, + 160, + 100, + 70, + 58, + 180, + 150, + 85, + 55, + 105, + 155, + 68, + 60, + 300, + 82, + 110, + 68, + 90, + 54, + 295, + 155, + 72, + 100, + 100, + 120, + 56, + 300, + 85, + 140, + 60, + 97, + 90, + 80, + 100, + 40, + 260, + 115, + 96, + 62, + 65, + 160, + 170, + 47, + 47.5, + 95, + 150, + 52, + 28, + 180, + 85, + 190, + 170, + 150, + 80, + 40, + 38, + 220, + 53, + 62, + 80, + 160, + 110, + 110, + 75, + 130, + 85, + 48, + 72, + 250, + 160, + 42, + 55, + 280, + 55, + 130, + 65, + 125, + 61.75, + 300, + 150, + 115, + 45, + 400, + 150, + 39, + 75, + 60, + 260, + 95, + 400, + 200, + 170, + 300, + 205, + 210, + 33, + 75, + 75, + 250, + 500, + 35, + 90, + 160, + 120, + 38, + 170, + 135, + 100, + 46, + 40, + 36, + 35, + 130, + 70, + 450, + 128, + 78, + 160, + 250, + 200, + 120, + 175, + 130, + 41, + 300, + 125, + 250, + 300, + 17, + 95, + 85, + 50, + 300, + 120, + 47, + 75, + 53, + 250, + 250, + 395, + 70, + 55, + 80, + 90, + 125, + 55, + 80, + 55, + 150, + 175, + 65, + 135, + 50, + 95, + 120, + 145, + 35, + 450, + 140, + 90, + 70, + 370, + 290, + 45, + 45, + 80, + 62, + 80, + 225, + 170, + 450, + 110, + 125, + 85, + 47, + 65, + 65, + 48, + 250, + 58, + 35, + 75, + 250, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 90, + 60, + 130, + 120, + 80, + 135, + 52, + 160, + 110, + 145, + 35, + 370, + 110, + 88, + 125, + 450, + 80, + 450, + 350, + 85, + 120, + 78, + 250, + 110, + 125, + 135, + 230, + 190, + 445, + 120, + 55, + 75, + 450, + 88, + 125, + 80, + 27, + 260, + 50, + 180, + 110, + 105, + 74, + 150, + 400, + 170, + 75, + 75, + 30, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 70, + 45, + 350, + 95, + 170, + 65, + 125, + 200, + 59, + 115, + 450, + 120, + 235, + 67, + 165, + 67, + 127, + 290, + 64.1, + 58, + 80, + 95, + 95, + 160, + 55, + 130, + 330, + 400, + 70, + 72, + 52, + 260, + 95, + 130, + 200, + 500, + 75, + 190, + 68, + 33, + 56, + 90, + 270, + 95, + 62, + 58, + 65, + 45, + 120, + 45, + 185, + 66, + 48, + 120, + 38, + 28.5, + 185, + 110, + 120, + 65, + 45, + 250, + 120, + 20, + 250, + 140, + 150, + 55, + 120, + 130, + 110, + 110, + 105, + 80, + 120, + 38, + 250, + 199.999, + 110, + 220, + 450, + 35, + 70, + 100, + 65, + 105, + 450, + 190, + 60, + 35, + 250, + 95, + 135, + 73, + 100, + 85, + 110, + 60, + 130, + 300, + 130, + 33, + 280, + 40, + 220, + 150, + 68, + 65, + 190, + 95, + 65, + 45, + 33, + 170, + 55, + 260, + 105, + 65, + 55, + 135, + 270, + 95, + 50, + 95, + 90, + 75, + 160, + 50, + 250, + 48, + 170, + 33, + 245, + 44, + 48, + 58, + 400, + 110, + 58, + 50, + 65, + 250, + 80, + 75, + 50, + 85, + 78, + 135, + 47, + 65, + 80, + 350, + 270, + 72, + 255, + 230, + 120, + 90, + 155, + 42, + 250, + 57, + 85, + 110, + 51, + 90, + 100, + 170, + 143, + 65, + 140, + 160, + 55, + 300, + 450, + 111, + 90, + 75, + 170, + 47, + 180, + 280, + 49, + 46, + 270, + 85, + 79, + 78, + 47, + 83, + 65, + 65, + 50, + 95, + 40, + 232, + 120, + 180, + 153, + 59, + 170, + 60, + 85, + 40, + 53, + 38, + 33, + 155, + 270, + 67, + 320, + 45, + 175, + 55, + 160, + 80, + 70, + 220, + 72, + 270, + 300, + 390, + 45, + 175, + 40, + 73, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 170, + 80, + 160, + 99, + 50, + 90, + 430, + 50, + 250, + 400, + 330, + 60, + 100, + 85, + 58, + 85, + 165, + 60, + 65, + 80, + 230, + 115, + 90, + 500, + 75, + 115, + 192, + 115, + 140, + 90, + 50, + 47, + 75, + 45, + 170, + 125, + 200, + 165, + 138, + 165, + 30, + 69, + 56, + 65, + 210, + 95, + 77.5, + 70, + 90, + 75, + 82, + 85, + 150, + 180, + 46, + 70, + 62, + 76, + 70, + 52, + 65, + 450, + 450, + 160, + 135, + 51, + 180, + 80, + 175, + 50, + 63.1, + 59, + 135, + 130, + 110, + 40, + 470, + 55, + 300, + 70, + 160, + 120, + 90, + 35, + 77, + 400, + 250, + 60, + 150, + 150, + 57, + 58, + 57, + 130, + 115, + 78, + 60, + 480, + 150, + 80, + 75, + 150, + 100, + 50, + 130, + 54, + 100, + 80, + 95, + 210, + 180, + 150, + 130, + 80, + 400, + 80, + 85, + 50, + 140, + 150, + 55, + 70, + 335, + 285, + 74.1, + 130, + 65, + 250, + 110, + 135, + 37, + 100, + 62, + 81, + 235, + 170, + 72, + 160, + 90, + 200, + 75, + 450, + 130, + 77, + 250, + 55, + 36.5, + 130, + 150, + 190, + 36, + 90, + 95, + 65, + 150, + 130, + 500, + 37, + 90, + 90, + 44, + 280, + 200, + 400, + 250, + 75, + 230, + 65, + 500, + 190, + 160, + 200, + 90, + 58, + 235, + 280, + 230, + 55, + 250, + 85, + 120, + 76, + 255, + 120, + 173, + 44, + 175, + 75, + 70, + 135, + 135, + 155, + 460, + 175, + 47, + 60, + 190, + 230, + 155, + 360, + 72, + 130, + 45, + 110, + 65, + 220, + 95, + 80, + 145, + 400, + 85, + 44, + 42, + 260, + 100, + 110, + 79, + 200, + 105, + 59, + 110, + 65, + 150, + 130, + 75, + 80, + 380, + 165, + 80, + 68, + 190, + 100, + 320, + 68, + 145, + 235, + 73, + 100, + 130, + 420, + 58, + 70, + 130, + 100, + 100, + 69, + 100, + 90, + 45, + 55, + 200, + 195, + 95, + 280, + 360, + 240, + 250, + 175, + 85, + 90, + 62, + 190, + 130, + 215, + 38.5, + 55, + 37, + 96, + 45, + 95, + 270, + 115, + 80, + 70, + 75, + 120, + 40, + 90, + 58, + 46, + 100, + 65, + 140, + 210, + 250, + 78, + 165, + 170, + 45, + 120, + 135, + 140, + 145, + 185, + 70, + 500, + 220, + 38, + 165, + 106, + 350, + 75, + 85, + 68, + 135, + 480, + 155, + 170, + 42, + 49, + 37, + 150, + 380, + 53, + 85, + 68, + 80, + 57, + 62, + 38, + 40, + 75, + 330, + 141, + 125, + 215, + 180, + 140, + 75, + 57, + 300, + 57, + 150, + 27, + 200, + 180, + 500, + 150, + 450, + 125, + 130, + 88, + 90, + 250, + 230, + 55, + 160, + 400, + 140, + 45, + 150, + 480, + 150, + 75, + 85, + 90, + 68, + 85, + 130, + 250, + 200, + 250, + 380, + 206, + 100, + 170, + 500, + 75, + 170, + 75, + 170, + 140, + 70, + 450, + 55, + 65, + 180, + 80, + 260, + 189, + 85, + 260, + 300, + 160, + 130, + 240, + 58, + 85, + 280, + 110, + 82, + 95, + 82, + 120, + 175, + 70, + 250, + 28, + 110, + 65, + 195, + 380, + 130, + 53, + 45, + 68, + 76, + 300, + 70, + 58, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 270, + 500, + 190, + 100, + 65, + 170, + 140, + 95, + 230, + 75, + 32, + 210, + 310, + 130, + 105, + 70, + 240, + 450, + 55, + 130, + 48, + 150, + 270, + 33.5, + 120, + 65, + 75, + 45, + 350, + 400, + 365, + 40, + 180, + 150, + 150, + 155, + 300, + 95, + 90, + 80, + 35, + 185, + 53, + 38, + 105, + 65, + 350, + 50, + 480, + 51.5, + 140, + 78, + 57, + 44.815, + 55, + 57, + 150, + 90, + 125, + 220, + 240, + 250, + 55, + 90, + 85, + 90, + 75, + 90, + 100, + 40, + 500, + 80, + 150, + 105, + 37, + 80.000005, + 250, + 64, + 95, + 500, + 350, + 62, + 200, + 73, + 380, + 160, + 170, + 46, + 310, + 170, + 80, + 70, + 85, + 290, + 70, + 45, + 220, + 185, + 350, + 50, + 55, + 40, + 70, + 110, + 64, + 180, + 105, + 40, + 75, + 290, + 150, + 90, + 150, + 40, + 120, + 250, + 320, + 70, + 110, + 67, + 55, + 130, + 56, + 75, + 140, + 250, + 77, + 125, + 120, + 45, + 70, + 80, + 270, + 90, + 190, + 150, + 100, + 51, + 110, + 250, + 110, + 170, + 53, + 70, + 165, + 190, + 120, + 180, + 130, + 90, + 85, + 37, + 74.999999, + 72, + 50, + 37, + 50, + 125, + 54, + 85, + 68, + 140, + 60, + 400, + 250, + 450, + 38, + 140, + 100, + 140, + 185, + 38, + 270, + 85, + 55, + 175, + 48, + 351, + 85, + 135, + 82, + 180, + 57, + 65, + 133, + 240, + 110, + 500, + 348, + 140, + 200, + 65, + 370, + 40, + 90, + 180, + 58, + 150, + 66, + 57, + 68, + 145, + 150, + 46, + 150, + 35, + 500, + 100, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 235, + 110, + 210, + 50, + 38.99, + 370, + 87, + 59, + 135, + 220, + 65, + 70, + 69, + 350, + 105, + 400, + 190, + 75, + 130, + 85, + 150, + 140, + 40, + 45, + 300, + 100, + 300, + 22, + 85, + 65, + 100, + 110, + 52, + 70, + 62, + 60, + 75, + 40, + 150, + 450, + 36, + 150, + 130, + 28, + 72.5, + 130, + 65, + 50, + 85, + 110, + 48, + 230, + 125, + 280, + 400, + 135, + 90, + 115, + 71, + 130, + 85, + 100, + 55, + 65, + 70, + 125, + 102, + 300, + 93, + 130, + 105, + 160, + 40, + 58, + 270, + 70, + 40, + 45, + 40, + 46, + 300, + 55, + 450, + 140, + 130, + 65, + 100, + 165, + 90, + 270, + 40, + 60, + 75, + 19.975, + 38, + 60, + 45, + 290, + 65, + 180, + 120, + 90, + 115, + 37, + 68, + 115, + 65, + 50, + 360, + 90, + 130, + 60, + 30, + 65, + 70, + 115, + 65, + 260, + 46, + 23, + 250, + 55, + 55, + 100, + 170, + 400, + 85, + 90, + 66, + 150, + 360, + 46, + 80, + 85, + 260, + 45, + 78, + 58, + 45, + 160, + 65, + 100, + 39, + 45, + 102, + 135, + 85, + 350, + 120, + 180, + 270, + 365, + 125, + 50, + 47, + 130, + 300, + 115, + 220, + 130, + 145, + 80, + 240, + 198, + 320, + 300, + 50, + 62.5, + 250, + 230, + 35, + 135, + 63, + 80, + 200, + 270, + 170, + 300, + 69.99, + 50, + 49, + 85, + 34, + 36, + 110, + 190, + 75, + 70, + 33, + 120, + 110, + 50, + 400, + 86, + 80, + 92, + 65, + 100.99, + 38, + 350, + 120, + 90, + 40, + 85, + 85, + 220, + 150, + 53, + 500, + 90, + 260, + 370, + 160, + 150, + 65, + 95, + 190, + 53, + 160, + 120, + 260, + 180, + 155, + 150, + 75, + 195, + 105, + 150, + 75, + 90, + 85, + 130, + 85, + 35, + 90, + 65, + 460, + 38, + 115, + 95, + 62, + 60, + 67, + 70, + 40, + 50, + 50, + 200, + 205, + 300, + 100, + 48, + 185, + 100, + 150, + 160, + 180, + 90, + 65, + 47, + 120, + 127, + 84, + 45, + 200, + 53, + 130, + 130, + 17.675, + 90, + 130, + 140, + 500, + 75, + 200, + 120, + 60, + 54, + 70, + 75, + 125, + 68, + 115, + 48, + 300, + 72, + 100, + 200, + 130, + 190, + 70, + 35, + 140, + 66, + 80, + 110, + 100, + 65, + 180, + 57, + 295, + 205, + 82, + 78, + 35, + 72, + 175, + 50, + 80, + 240, + 80, + 110, + 65, + 85, + 78, + 135, + 175, + 78, + 205, + 170, + 40, + 135, + 260, + 130, + 360, + 175, + 80, + 150, + 65, + 65, + 83, + 100, + 75, + 150, + 110, + 39, + 250, + 50, + 220, + 150, + 125, + 85, + 90, + 190, + 55, + 60, + 95, + 185, + 48, + 260, + 230, + 100, + 45, + 180, + 80, + 380, + 135, + 100, + 300, + 160, + 60, + 150, + 110, + 95, + 180, + 130, + 170, + 140, + 300, + 95, + 175, + 92, + 220, + 65, + 120, + 55, + 165, + 75, + 90, + 200, + 90, + 190, + 65, + 165, + 100, + 120, + 30, + 55, + 270, + 135, + 350, + 120, + 125, + 260, + 58, + 120, + 280, + 420, + 42, + 65, + 130, + 90, + 85, + 75, + 140, + 62, + 60, + 75, + 50, + 60, + 90, + 58, + 85, + 165, + 265, + 110, + 350, + 48, + 80, + 120, + 35, + 80, + 90, + 48, + 45, + 270, + 47, + 42, + 78, + 65, + 500, + 24, + 180, + 70, + 71, + 67, + 128, + 295, + 175, + 200, + 170, + 250, + 90, + 75, + 40, + 52, + 80, + 140, + 85, + 200, + 250, + 260, + 55, + 135, + 49, + 70, + 59, + 80, + 150, + 280, + 235, + 75, + 170, + 65, + 45, + 65, + 380, + 60, + 69, + 85, + 57, + 49, + 155, + 62, + 395, + 120, + 200, + 480, + 85, + 198, + 360, + 100, + 85, + 69, + 38.9, + 280, + 220, + 75, + 80, + 115, + 53, + 36, + 110, + 85, + 85, + 55, + 75, + 47, + 65, + 55, + 55, + 230, + 80, + 65, + 35, + 50, + 450, + 53.5, + 35, + 320, + 150, + 250, + 18.975, + 190, + 140, + 130, + 55, + 270, + 110, + 80, + 70, + 195, + 65, + 35, + 190, + 220, + 120, + 79.5, + 115, + 200, + 58, + 95, + 68, + 205, + 200, + 167, + 100, + 68, + 200, + 175, + 160, + 60, + 230, + 110, + 78, + 300, + 200, + 350, + 250, + 58, + 60, + 37, + 195, + 125, + 50, + 230, + 90, + 85, + 60, + 75, + 38.5, + 150, + 160, + 58, + 60, + 70, + 76, + 85, + 460, + 45, + 270, + 150, + 400, + 185, + 75, + 500, + 110, + 115, + 70, + 46, + 235, + 125, + 70, + 140, + 110, + 95, + 300, + 250, + 57, + 155, + 48, + 80, + 265, + 52, + 180, + 28, + 45, + 250, + 80, + 350, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 65, + 47, + 145, + 56, + 83, + 145, + 80, + 55, + 80, + 48, + 120, + 63, + 250, + 300, + 73, + 35, + 50, + 95, + 185, + 105, + 300, + 110, + 150, + 165, + 200, + 41, + 140, + 55, + 87, + 82, + 160, + 125, + 108, + 150, + 145, + 90, + 100, + 115, + 50, + 65, + 95, + 70, + 40, + 320, + 125, + 70, + 70, + 90, + 83, + 88, + 80, + 280, + 140, + 83, + 200, + 75, + 45, + 300, + 100, + 185, + 450, + 65, + 38.5, + 200, + 92, + 135, + 320, + 140, + 100, + 40.64, + 70, + 105, + 58, + 310, + 85, + 390, + 55, + 75, + 80, + 45, + 170, + 98, + 285, + 200, + 50, + 145, + 85, + 55, + 160, + 75, + 135, + 135, + 54.5, + 250, + 180, + 60, + 65, + 180, + 197, + 110, + 400, + 80, + 100, + 90, + 135, + 100, + 40, + 120, + 145, + 110, + 85, + 500, + 170, + 285, + 250, + 36, + 55, + 55, + 500, + 65, + 95, + 300, + 45, + 48, + 49.5, + 145, + 90, + 160, + 400, + 100, + 120, + 68, + 160, + 155, + 95, + 155, + 85, + 155, + 500, + 150, + 95, + 60, + 150, + 210, + 36.5, + 30, + 74, + 195, + 56, + 63.1, + 84, + 410, + 68, + 68, + 110, + 65, + 200, + 95, + 80, + 60, + 130, + 80, + 65, + 55, + 55, + 120, + 155, + 120, + 75, + 500, + 150, + 140, + 108, + 40, + 145, + 48, + 65, + 155, + 37, + 100, + 75, + 60, + 150, + 160, + 43, + 95, + 250, + 82, + 49.5, + 70, + 50, + 63, + 39, + 65, + 95, + 125, + 85, + 40, + 220, + 190, + 110, + 185, + 250, + 140, + 45, + 75, + 95, + 97.5, + 115, + 17.675, + 95, + 285, + 155, + 45, + 230, + 350, + 250, + 42, + 90, + 50, + 55, + 85, + 370, + 75, + 60, + 75, + 90, + 62, + 187, + 48, + 90, + 160, + 180, + 62, + 85, + 90, + 75, + 350, + 105, + 250, + 120, + 250, + 80, + 65, + 148, + 60, + 45, + 160, + 120, + 160, + 78, + 255, + 150, + 85, + 250, + 35, + 87, + 65, + 130, + 87, + 165, + 250, + 150, + 60, + 140, + 200, + 30, + 58, + 300, + 50, + 100, + 200, + 50, + 70, + 60, + 18, + 120, + 350, + 57, + 93, + 175, + 230, + 63, + 35, + 90, + 250, + 52, + 165, + 55, + 85, + 130, + 46, + 100, + 200, + 270, + 140, + 140, + 170, + 90, + 75, + 60, + 105, + 250, + 180, + 250, + 85, + 180, + 77.5, + 70, + 500, + 200, + 50, + 75, + 70, + 300, + 45, + 50, + 300, + 175, + 60, + 57, + 69, + 280, + 70, + 63, + 270, + 300, + 150, + 120, + 120, + 45, + 36, + 100, + 55, + 69.5, + 65, + 120, + 235, + 350, + 40, + 250, + 55, + 41, + 75, + 70, + 150, + 49.5, + 300, + 58, + 300, + 170, + 145, + 49.9, + 54, + 195, + 110, + 150, + 57, + 68, + 140, + 80, + 261, + 210, + 85, + 140, + 55, + 110, + 200, + 260, + 41, + 150, + 140, + 120, + 90, + 185, + 450, + 95, + 115, + 150, + 385, + 200, + 55, + 47, + 150, + 120, + 65, + 55, + 165, + 120, + 140, + 60, + 280, + 53, + 102, + 49.5, + 300, + 42, + 98, + 42, + 110, + 70, + 50, + 110, + 40, + 100, + 65, + 35, + 140, + 235, + 120, + 160, + 150, + 250, + 200, + 250, + 125, + 57, + 280, + 370, + 200, + 300, + 400, + 45, + 175, + 70, + 40, + 38, + 60, + 120, + 190, + 120, + 45, + 43.5, + 45, + 145, + 150, + 75, + 65, + 30, + 160, + 67, + 125, + 66, + 72, + 275, + 169.5, + 47.799, + 82, + 85, + 190, + 170, + 150, + 105, + 33, + 150, + 300, + 95, + 72, + 300, + 75, + 200, + 68, + 150, + 48, + 120, + 57, + 45, + 45, + 38, + 85.5, + 140, + 90, + 150, + 110, + 120, + 177.99, + 75, + 87.000099, + 100, + 45, + 170, + 76, + 47, + 150, + 210, + 60, + 125, + 350, + 100, + 150, + 80, + 170, + 300, + 55, + 60, + 180, + 60, + 170, + 300, + 67, + 59, + 125, + 85, + 120, + 65, + 80, + 138, + 450, + 130, + 250, + 48, + 90, + 65, + 76, + 46, + 80, + 480, + 60, + 70, + 140, + 110, + 150, + 135, + 195, + 275, + 55, + 460, + 95, + 500, + 62, + 50, + 140, + 340, + 450, + 340, + 48, + 65, + 55, + 73, + 70, + 62, + 56, + 150, + 90, + 38, + 42, + 36, + 250, + 79, + 130, + 150, + 45, + 80, + 60, + 370, + 125, + 105, + 180, + 60, + 160, + 65, + 280, + 36, + 55, + 140, + 95, + 270, + 170, + 65, + 200, + 39, + 43, + 57, + 150, + 130, + 175, + 75, + 390, + 70, + 160, + 40, + 230, + 60, + 65, + 100, + 250, + 75, + 75, + 63, + 75, + 80, + 110, + 165, + 160, + 75, + 75, + 210, + 60, + 68, + 93, + 85, + 95, + 72, + 360, + 330, + 35, + 65, + 300, + 38, + 165, + 59, + 155, + 62, + 44, + 65, + 130, + 165, + 240, + 120, + 70, + 53, + 185, + 180, + 100, + 180, + 130, + 56.000099, + 95, + 155, + 110, + 28, + 230, + 55, + 55, + 72, + 270, + 85, + 180, + 130, + 150, + 115, + 85, + 63, + 180, + 180, + 180, + 150, + 68, + 77, + 55, + 59, + 43, + 180, + 80, + 41.5, + 34.5, + 80, + 68, + 180, + 65, + 55, + 36, + 125, + 62, + 62, + 145, + 120, + 350, + 220, + 150, + 160, + 300, + 320, + 150, + 198, + 80, + 60, + 60, + 155, + 90, + 95, + 78, + 80, + 52, + 55, + 77, + 53, + 125, + 34, + 200, + 110, + 140, + 350, + 38, + 150, + 190, + 350, + 120, + 30, + 240, + 62, + 80, + 140, + 190, + 12, + 40, + 80, + 69.5, + 45, + 180, + 40, + 32, + 32, + 220, + 98, + 220, + 115, + 90, + 130, + 100, + 180, + 55, + 130, + 275, + 265, + 160, + 55, + 120, + 105, + 180, + 165, + 390, + 64, + 110, + 55, + 40, + 150, + 53, + 270, + 170, + 90, + 60, + 60, + 80, + 85, + 140, + 170, + 75, + 68, + 175, + 135, + 165, + 45, + 35, + 43, + 70, + 34, + 105, + 120, + 55, + 250, + 95, + 85, + 60, + 90, + 150, + 100, + 98, + 43.5, + 88, + 53, + 350, + 45, + 105, + 300, + 49, + 85, + 200, + 380, + 265, + 58, + 80, + 200, + 200, + 75, + 120, + 325, + 50, + 240, + 95, + 180, + 125, + 85, + 100, + 78, + 150, + 125, + 70, + 110, + 85, + 50, + 130, + 280, + 185, + 150, + 50, + 200, + 310, + 200, + 300, + 220, + 99, + 125, + 130, + 140, + 300, + 270, + 82, + 75, + 80, + 105, + 115, + 70, + 200, + 55, + 220, + 83, + 500, + 37, + 62, + 210, + 75, + 130, + 80, + 370, + 260, + 200, + 250, + 100, + 190, + 67, + 105, + 145, + 195, + 175, + 77, + 120, + 55, + 105, + 40, + 480, + 240, + 85, + 70, + 350, + 120, + 190, + 155, + 140, + 40, + 180, + 460, + 280, + 60, + 180, + 85, + 170, + 62, + 260, + 50, + 61, + 70, + 55, + 36, + 85, + 70, + 70, + 80, + 150, + 79, + 120, + 110, + 90, + 123, + 72, + 270, + 185, + 80, + 220, + 130, + 400, + 90, + 200, + 150, + 95, + 50, + 130, + 105, + 90, + 260, + 370, + 80, + 37, + 170, + 55, + 68, + 240, + 140, + 230, + 110, + 270, + 58.5, + 140, + 220, + 85, + 350, + 85, + 110, + 300, + 150, + 52, + 75, + 37, + 140, + 115, + 85, + 70, + 95, + 65, + 55, + 500, + 100, + 75, + 160, + 54, + 135, + 200, + 99, + 330, + 185, + 97, + 95, + 170, + 300, + 40, + 175, + 50, + 230, + 300, + 95, + 300, + 108, + 100, + 83, + 47, + 65, + 43, + 198, + 65, + 250, + 50, + 175, + 300, + 200, + 120, + 210, + 50, + 105, + 300, + 122, + 60, + 75, + 150, + 69, + 80, + 78, + 60, + 155, + 79.5, + 200, + 50, + 250, + 85, + 33, + 165, + 110, + 47, + 170, + 240, + 90, + 45, + 65, + 38, + 100, + 75, + 120, + 48, + 110, + 44, + 125, + 50, + 120, + 80, + 75, + 62, + 67, + 140, + 47, + 160, + 140, + 95, + 85, + 110, + 350, + 85, + 42, + 52, + 180, + 60, + 58, + 38, + 145, + 110, + 160, + 35, + 100, + 420, + 60, + 53, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 57, + 40, + 62, + 145, + 130, + 47.5, + 33, + 95, + 300, + 63, + 54, + 50, + 67, + 220, + 68, + 270, + 150.000009, + 85, + 56, + 240, + 75, + 70, + 120, + 120, + 220, + 250, + 185, + 55, + 330, + 140, + 66, + 64, + 45, + 45, + 135, + 57, + 42, + 53, + 42, + 500, + 85, + 40, + 40, + 90, + 65, + 80, + 500, + 68, + 250, + 140, + 145, + 120, + 220, + 53, + 68, + 145, + 92, + 62, + 80, + 32, + 270, + 120, + 165, + 300, + 155, + 100, + 150, + 130, + 40, + 200, + 170, + 100, + 130, + 75, + 230, + 35, + 140, + 85, + 75, + 125, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 200, + 180, + 270, + 105, + 45, + 65, + 60, + 80, + 190, + 48, + 250, + 72, + 155, + 20, + 300, + 180, + 65, + 250, + 299.999999, + 145, + 55, + 80, + 57, + 80, + 45, + 160, + 150, + 65, + 55, + 100, + 34, + 60, + 90, + 35, + 55, + 56, + 140, + 290, + 55, + 75, + 130, + 300, + 320, + 260, + 120, + 90, + 160, + 95, + 65, + 110, + 73, + 72.5, + 170, + 65, + 100, + 23, + 55, + 57, + 450, + 100, + 125, + 47, + 47.5, + 65, + 85, + 110, + 50, + 90, + 170, + 100, + 125, + 130, + 60, + 75, + 300, + 50, + 165, + 290, + 100, + 55, + 100, + 150, + 15, + 62, + 105, + 110, + 200, + 130, + 45, + 33, + 85, + 70, + 180, + 73, + 66, + 175, + 35, + 200, + 450, + 55, + 135, + 170, + 125, + 260, + 82, + 58, + 55, + 92, + 24, + 75, + 78, + 70, + 150, + 128, + 270, + 135, + 75, + 65, + 105, + 50, + 35, + 120, + 50, + 170, + 56, + 130, + 78, + 55, + 120, + 155, + 75, + 120, + 80, + 220, + 500, + 250, + 250, + 135, + 170, + 380, + 220, + 75, + 47.5, + 240, + 80, + 170, + 35, + 65, + 120, + 45, + 350, + 290, + 420, + 55, + 95, + 275, + 58, + 65, + 225, + 58, + 46, + 170, + 90, + 395, + 33, + 270, + 450, + 56, + 350, + 82, + 300, + 55, + 57, + 335, + 215, + 75, + 110, + 300, + 63, + 60, + 50, + 450, + 37, + 185, + 160, + 500, + 65, + 50, + 170, + 56, + 17.675, + 150, + 180, + 130, + 65, + 130, + 130, + 80, + 110, + 200, + 65, + 170, + 69, + 85, + 130, + 30, + 45, + 32, + 135, + 85, + 58, + 38, + 130, + 35, + 40, + 69, + 120, + 280, + 90, + 55, + 150, + 165, + 240, + 155, + 42, + 80, + 235, + 65, + 47, + 125, + 240, + 400, + 60, + 130, + 65, + 250, + 110, + 130, + 80, + 44, + 80, + 90, + 60, + 40, + 62, + 85, + 500, + 125, + 120, + 230, + 300, + 40, + 170, + 75, + 98, + 95, + 140, + 175, + 125, + 60, + 160, + 420, + 65, + 350, + 480, + 130, + 420, + 75, + 100, + 65, + 165, + 75, + 10, + 190, + 120, + 125, + 235, + 150, + 65, + 320, + 45, + 180, + 60, + 62, + 80, + 300, + 200, + 105, + 46, + 37, + 150, + 250, + 90, + 32.5, + 35, + 255, + 120, + 180, + 250, + 57, + 110, + 380, + 230, + 150, + 120, + 160, + 230, + 130, + 150, + 43, + 144, + 400, + 70, + 185, + 120, + 140, + 110, + 100, + 200, + 40, + 60, + 380, + 150, + 133, + 50, + 115, + 63, + 280, + 500, + 47, + 45, + 150, + 125, + 240, + 38, + 38, + 70, + 49, + 170, + 86, + 120, + 180, + 200, + 200, + 80, + 200, + 39, + 85, + 72, + 100, + 65, + 140, + 36, + 110, + 44.9, + 180, + 70, + 120, + 130, + 200, + 65, + 95, + 280, + 38, + 210, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 125, + 205, + 33, + 57, + 400, + 150, + 73, + 110, + 260, + 75, + 120, + 70, + 63, + 39, + 85, + 185, + 50, + 70, + 200, + 230, + 160, + 220, + 85, + 72, + 63, + 150, + 87, + 100, + 240, + 150, + 75, + 100, + 280, + 120, + 65, + 68, + 45, + 50, + 85, + 120, + 180, + 130, + 40, + 75, + 200, + 280, + 120, + 150, + 450, + 130, + 85, + 250, + 140, + 88, + 105, + 105, + 60, + 160, + 250, + 140, + 198, + 67, + 180, + 67, + 155, + 190, + 120, + 200, + 65, + 80, + 80, + 150, + 220, + 150, + 47.999999, + 36, + 400, + 85, + 70, + 70, + 300, + 220, + 80, + 280, + 400, + 85, + 40, + 65, + 225, + 60, + 68, + 80, + 52, + 70, + 100, + 75, + 230, + 53, + 60, + 60, + 40, + 170, + 65, + 45, + 170, + 200, + 55, + 290, + 65, + 45, + 140, + 135, + 80, + 150, + 105, + 37, + 61, + 54, + 50, + 50, + 350, + 17.675, + 450, + 260, + 67, + 82, + 230, + 48, + 85, + 180, + 35, + 500, + 250, + 57, + 48, + 40, + 95, + 70, + 450, + 100, + 65, + 145, + 85, + 46, + 56, + 115, + 55, + 270, + 380, + 90, + 440, + 70, + 63, + 55, + 100, + 150, + 90, + 55, + 125, + 32, + 90, + 95, + 115, + 65, + 180, + 63, + 170, + 110, + 120, + 175, + 56, + 150, + 48, + 115, + 295, + 175, + 500, + 180, + 85, + 48, + 41, + 70, + 370, + 45, + 110, + 180, + 85, + 235, + 135, + 145, + 190, + 200, + 100, + 85, + 450, + 60, + 125, + 59.5, + 100, + 300, + 120, + 58, + 52, + 98, + 43, + 300, + 36, + 230, + 28, + 65, + 30, + 100, + 45, + 60, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 40, + 32.75, + 120, + 68, + 75, + 94, + 70, + 200, + 150, + 100, + 120, + 110, + 75, + 68, + 33, + 220, + 78, + 52, + 200, + 75, + 350, + 165, + 85, + 70, + 250, + 220, + 75, + 180, + 130, + 55, + 90, + 35, + 95, + 65, + 150, + 160, + 130, + 185, + 130, + 210, + 100, + 75, + 55, + 185, + 55, + 120, + 50, + 90, + 47, + 370, + 50, + 62, + 70, + 58, + 130, + 90, + 85, + 210, + 240, + 85, + 120, + 185, + 80, + 90, + 65, + 75, + 250, + 75, + 124, + 36, + 188, + 95, + 260, + 90, + 220, + 160, + 35, + 40, + 130, + 220, + 60, + 120, + 65, + 140, + 160, + 55, + 330, + 250, + 160, + 69, + 130, + 36, + 235, + 110, + 46, + 65, + 170, + 33, + 100, + 100, + 110, + 82, + 450, + 68, + 250, + 265, + 170, + 130, + 85, + 100, + 130, + 75, + 230, + 200, + 80, + 290, + 300, + 125, + 100, + 70, + 55, + 72, + 95, + 63, + 95, + 35, + 135, + 45, + 150, + 140, + 450, + 58, + 90, + 55, + 160, + 100, + 90, + 280, + 185, + 28, + 95, + 300, + 150, + 97, + 52, + 350, + 265, + 115, + 500, + 45, + 65, + 185, + 58, + 190, + 115, + 62, + 180, + 250, + 45, + 67, + 500, + 75, + 60, + 195, + 450, + 40, + 170, + 400, + 45, + 300, + 85, + 350, + 48, + 88, + 55, + 90, + 38, + 100, + 70, + 60, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 85, + 80, + 50, + 65, + 75, + 70, + 140, + 120, + 140, + 200, + 35, + 260, + 43, + 55.5, + 120, + 57, + 50, + 200, + 48, + 145, + 125, + 75, + 370, + 110, + 65, + 49, + 210, + 135, + 120, + 235, + 155, + 56, + 250, + 95, + 100, + 220, + 120, + 110, + 92, + 110, + 53, + 100, + 90, + 45, + 37, + 400, + 60, + 100, + 320, + 140, + 210, + 35, + 250, + 95, + 158, + 350, + 130, + 40, + 140, + 90, + 120, + 58, + 55, + 90, + 56, + 150, + 470, + 140, + 38, + 130, + 300, + 195, + 130, + 185, + 120, + 500, + 65, + 160, + 170, + 140, + 40, + 40, + 80, + 195, + 42, + 195, + 70, + 150, + 40, + 75, + 200, + 130, + 50, + 125, + 60, + 350, + 98, + 160, + 26, + 80, + 190, + 65, + 140, + 140, + 110, + 450, + 450, + 150, + 45, + 400, + 185, + 185, + 35, + 60, + 71, + 35, + 175, + 75, + 235, + 88, + 38, + 350, + 50, + 90, + 69, + 350, + 100, + 130, + 65, + 60, + 87, + 100, + 150, + 220, + 45, + 78, + 165, + 57, + 80, + 130, + 68, + 250, + 120, + 55, + 500, + 190, + 275, + 34, + 55, + 480, + 38, + 60, + 80, + 250, + 90, + 170, + 165, + 63, + 30, + 60, + 180, + 185, + 45, + 110, + 55, + 75, + 77, + 160, + 135, + 120, + 45, + 65, + 350, + 227, + 470, + 165, + 62, + 200, + 130, + 35, + 65, + 65, + 130, + 70, + 180, + 170, + 220, + 138, + 160, + 70, + 190, + 190, + 51, + 130, + 78, + 80, + 35, + 55, + 50, + 280, + 85, + 185, + 65, + 105, + 75, + 350, + 45, + 80, + 45, + 60, + 72, + 125, + 75, + 88, + 55, + 85, + 260, + 170, + 95, + 54, + 195, + 77, + 170, + 120, + 260, + 52, + 69, + 37, + 150, + 65, + 175, + 50, + 87, + 48, + 10, + 160, + 60, + 70, + 35, + 36, + 90, + 110, + 300, + 47, + 70, + 80, + 350, + 120, + 165, + 38, + 230, + 42, + 45, + 85, + 100, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 300, + 280, + 65, + 160, + 95, + 290, + 75, + 53, + 140, + 75, + 140, + 185, + 75, + 150, + 200, + 88, + 110, + 65, + 255, + 120, + 110, + 57, + 160, + 77, + 95, + 63, + 77, + 310, + 60, + 48, + 480, + 150, + 73, + 33, + 58, + 55, + 47, + 90, + 380, + 55, + 60, + 420, + 58, + 400, + 50, + 75, + 130, + 160, + 80, + 70, + 230, + 320, + 130, + 51, + 50, + 67, + 320, + 38, + 130, + 90, + 175, + 150, + 68, + 68, + 95, + 110, + 155, + 80, + 51, + 55, + 200, + 165, + 90, + 75, + 90, + 60, + 150, + 145, + 45, + 20, + 53, + 320, + 245, + 75, + 140, + 130, + 165, + 230, + 25, + 140, + 250, + 270, + 90, + 110, + 200, + 350, + 35, + 40, + 130, + 75, + 50, + 40, + 78, + 85, + 72, + 51, + 100, + 320, + 65, + 73, + 80, + 55, + 420, + 125, + 54, + 120, + 49, + 50, + 80, + 320, + 235, + 160, + 165, + 60, + 65, + 120, + 59.5, + 90, + 220, + 105, + 53, + 250, + 56, + 75, + 350, + 90, + 150, + 45, + 120, + 32, + 100, + 90, + 240, + 58, + 130, + 280, + 120, + 33, + 400, + 65, + 85, + 62, + 175, + 69, + 70, + 45, + 125, + 71, + 150, + 210, + 85, + 120, + 120, + 100, + 70, + 97, + 100, + 75, + 92, + 37, + 120, + 70, + 210, + 72, + 35, + 70, + 112, + 65, + 96, + 37, + 195, + 230, + 60, + 150, + 70, + 120, + 270, + 140, + 40, + 210, + 62, + 185, + 150, + 80, + 170, + 130, + 235, + 60.5, + 45, + 26.4375, + 150, + 95, + 140, + 105, + 100, + 280, + 98, + 275, + 115, + 38, + 90, + 45, + 100, + 52, + 35, + 130, + 59, + 70, + 130, + 290, + 155, + 145, + 75, + 110, + 300, + 75, + 59, + 140, + 73, + 125, + 34, + 150, + 67, + 100, + 300, + 55, + 40, + 180, + 390, + 55, + 250, + 35, + 120, + 56, + 60, + 75, + 52, + 175, + 72, + 57, + 55, + 290, + 55, + 67, + 180, + 65, + 98, + 350, + 120, + 430, + 340, + 80, + 55, + 150, + 70, + 95, + 110, + 80, + 230, + 65, + 75, + 70, + 110, + 100, + 115, + 70, + 230, + 140, + 380, + 85, + 165, + 108, + 100, + 49, + 170, + 88, + 140, + 59, + 140, + 125, + 95, + 150, + 350, + 150, + 200, + 57, + 135, + 60, + 180, + 30, + 110, + 350, + 400, + 76, + 155, + 70, + 85, + 51.5, + 350, + 36, + 85, + 100, + 50, + 52, + 100, + 205, + 160, + 54, + 300, + 180, + 110, + 60, + 320, + 115, + 90, + 53, + 170, + 35, + 280, + 80, + 80, + 90, + 190, + 45, + 43, + 140, + 130, + 45, + 240, + 58, + 180, + 205, + 180, + 95, + 190, + 275, + 58, + 48, + 65, + 95, + 45, + 150, + 380, + 120, + 145, + 51, + 38, + 415, + 480, + 80, + 145, + 80, + 500, + 57, + 55, + 300, + 55, + 75, + 180, + 80, + 240, + 95, + 33, + 350, + 70, + 135, + 75, + 450, + 270, + 125, + 120, + 45, + 80, + 62, + 250, + 45, + 45, + 35, + 200, + 53, + 110, + 92, + 59, + 126, + 35, + 37, + 60, + 500, + 75, + 68, + 60, + 58, + 78, + 240, + 140, + 45, + 57, + 110, + 72, + 85, + 57, + 400, + 75, + 140, + 95, + 53, + 72, + 220, + 35, + 90, + 150, + 120, + 320, + 38, + 55, + 220, + 100, + 42, + 270, + 50, + 160, + 130, + 90, + 200, + 37, + 57, + 350, + 350, + 120, + 110, + 18, + 60, + 180, + 130, + 35, + 95, + 115, + 300, + 400, + 420, + 400, + 90, + 220, + 33, + 90, + 57, + 200, + 500, + 160, + 130, + 78, + 220, + 300, + 100, + 200, + 35, + 26, + 85, + 100, + 54, + 70, + 500, + 68, + 58, + 75, + 250, + 200, + 70, + 50, + 43, + 50, + 135, + 98, + 75, + 90, + 230, + 320, + 57, + 320, + 450, + 150, + 160, + 53, + 400, + 200, + 300, + 175, + 45, + 240, + 130, + 37, + 30, + 48, + 120, + 420, + 185, + 130, + 155, + 59, + 95, + 270, + 75, + 135, + 75, + 44, + 39, + 73, + 35, + 180, + 50, + 35, + 260, + 69.9, + 85, + 170, + 230, + 80, + 120, + 75, + 75, + 350, + 500, + 130, + 150, + 39.6, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 65, + 53, + 51, + 97, + 125, + 120, + 60, + 250, + 88, + 45, + 45, + 30, + 92, + 350, + 75, + 57, + 68, + 73, + 110, + 220, + 300, + 65, + 480, + 350, + 140, + 95, + 200, + 87, + 67, + 65, + 180, + 95, + 110, + 280, + 85, + 85, + 45, + 110, + 46, + 85, + 185, + 380, + 150, + 56, + 56, + 70, + 29, + 79, + 60, + 155, + 500, + 85, + 50, + 100, + 300, + 105, + 56, + 75, + 60, + 105, + 80, + 95, + 55, + 130, + 100, + 450, + 45, + 320, + 55, + 55, + 38, + 125, + 115, + 75, + 85, + 500, + 45, + 155, + 85, + 75, + 230, + 150, + 260, + 100, + 37, + 45, + 120, + 75, + 175, + 65, + 65, + 110, + 95, + 90, + 55, + 55, + 180, + 150, + 60, + 65, + 80, + 35, + 190, + 65, + 95, + 260, + 400, + 90, + 130, + 157, + 50, + 270, + 115, + 52, + 77, + 150, + 190, + 88, + 75, + 75, + 90, + 85, + 170, + 133, + 170, + 55, + 85, + 50, + 120, + 41, + 195, + 55, + 63, + 68, + 45, + 27, + 180, + 360, + 100, + 360, + 320, + 57, + 48, + 250, + 39, + 85, + 55, + 125, + 250, + 120, + 100, + 97, + 350, + 75, + 50, + 75, + 130, + 38, + 89, + 320, + 100, + 65, + 55, + 360, + 55, + 63, + 120, + 43, + 70, + 60, + 60, + 260, + 65, + 175, + 122, + 300, + 150, + 130, + 70, + 38, + 90, + 270, + 480, + 120, + 440, + 100, + 180, + 210, + 220, + 135, + 220, + 38, + 220, + 450, + 260, + 55, + 53, + 100, + 47.5, + 95, + 70, + 48, + 60, + 120, + 40, + 50, + 110, + 260, + 75, + 95, + 55, + 80, + 180, + 35, + 210, + 95, + 260, + 65, + 72, + 175, + 140, + 70, + 50, + 150, + 65, + 46, + 300, + 90, + 72, + 180, + 130, + 50, + 50, + 52, + 78, + 67, + 155, + 210, + 225, + 185, + 310, + 80, + 55, + 180, + 52, + 280, + 38, + 260, + 40, + 60, + 85, + 65, + 45, + 58, + 63, + 110, + 78, + 100, + 58, + 110, + 360, + 10, + 130, + 72, + 200, + 70, + 65, + 65.000009, + 57, + 60, + 45, + 83, + 200, + 65, + 165, + 65, + 500, + 120, + 45, + 58, + 55, + 60, + 35, + 77, + 46, + 195, + 74, + 100, + 130, + 165, + 60, + 350, + 47, + 180, + 170, + 65, + 70, + 23.8, + 100, + 59, + 60, + 70, + 150, + 175, + 40, + 140, + 300, + 90, + 180, + 50, + 75, + 75, + 230, + 70, + 65, + 65, + 48.5, + 180, + 75, + 120, + 100, + 110, + 75, + 60, + 45, + 230, + 64, + 300, + 75, + 78, + 45, + 380, + 155, + 380, + 120, + 68, + 67, + 80, + 110, + 170, + 79.5, + 320, + 450, + 60, + 270, + 190, + 330, + 90, + 50, + 65, + 95, + 57, + 85, + 55, + 160, + 41, + 100, + 180, + 105, + 80, + 400, + 450, + 75, + 155, + 65, + 69, + 76, + 60, + 220, + 125, + 155, + 250, + 270, + 100, + 85, + 80, + 380, + 200, + 120, + 185, + 185, + 85, + 130, + 220, + 69, + 40, + 110, + 48, + 52, + 98, + 39, + 60, + 49, + 75, + 110, + 125, + 20, + 45, + 70, + 170, + 65, + 65, + 85, + 280, + 90, + 33, + 95, + 395, + 70, + 65, + 75, + 60, + 250, + 150, + 70, + 65, + 65, + 75, + 57, + 45, + 310, + 185, + 33, + 40, + 110, + 350, + 175, + 150, + 250, + 300, + 70, + 120, + 42, + 115, + 170, + 350, + 35, + 250, + 370, + 110, + 40, + 80, + 59, + 150, + 120, + 400, + 47, + 130, + 250, + 42, + 140, + 90, + 300, + 185, + 200, + 195, + 110, + 130, + 50, + 85, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 55, + 150, + 130, + 65, + 200, + 150, + 64, + 100, + 170, + 220, + 75, + 130, + 65, + 60, + 110, + 300, + 210, + 80, + 120, + 30, + 350, + 275, + 48, + 155, + 95, + 47, + 500, + 200, + 60, + 500, + 65, + 280, + 370, + 85, + 68, + 110, + 95, + 75, + 48, + 400, + 350, + 85, + 75, + 50, + 40, + 165, + 47, + 70, + 170, + 70, + 75, + 55, + 120, + 110, + 50, + 120, + 48, + 63, + 395, + 330, + 55, + 65, + 190, + 184, + 100, + 280, + 165, + 75, + 270, + 47.5, + 60, + 36, + 190, + 150, + 75, + 380, + 55, + 400, + 195, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 78, + 220, + 59, + 33, + 120, + 175, + 450, + 90, + 75, + 58, + 125, + 125, + 170, + 120, + 115, + 37, + 150, + 70, + 85, + 90, + 65, + 100, + 170, + 128, + 56, + 200, + 145, + 300.000009, + 280, + 48, + 55, + 50, + 400, + 55, + 140, + 70, + 90, + 450, + 50, + 85, + 75, + 110, + 85, + 95, + 90, + 125, + 38, + 40, + 250, + 90, + 235, + 150, + 70, + 56, + 360, + 85, + 45, + 80, + 89, + 137, + 13, + 110, + 115, + 45, + 59, + 48, + 100, + 160, + 79, + 225, + 75, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 43, + 130, + 400, + 135, + 50, + 80, + 50, + 62, + 50, + 69, + 39, + 55, + 55, + 65, + 95, + 79, + 350, + 65, + 80, + 85, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 130, + 46, + 45, + 90, + 125, + 69, + 250, + 60, + 182, + 45, + 65, + 125, + 400, + 90, + 85, + 285, + 85, + 220, + 180, + 400, + 280, + 50, + 120, + 68, + 170, + 37, + 78, + 35, + 180, + 220, + 50, + 52, + 140, + 95, + 125, + 95, + 20, + 81, + 140, + 350, + 115, + 55, + 90, + 150, + 200, + 260, + 33, + 180, + 135, + 52.5, + 105, + 140, + 75, + 130, + 300, + 300, + 115, + 300, + 130, + 135, + 300, + 75, + 300, + 100, + 59, + 98, + 105, + 37, + 170, + 130, + 250, + 68, + 56, + 170, + 49, + 47, + 130, + 88, + 170, + 57, + 150, + 140, + 200, + 195, + 138, + 160, + 45, + 48, + 85, + 57, + 65, + 210, + 55, + 260, + 220, + 90, + 170, + 150, + 38, + 366, + 55, + 40, + 110, + 130, + 80, + 160, + 320, + 70, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 38, + 150, + 260, + 500, + 92, + 85, + 175, + 67, + 130, + 50, + 135, + 135, + 75, + 65, + 75, + 370, + 42, + 30, + 120, + 55, + 76, + 135, + 300, + 240, + 455, + 38, + 280, + 300, + 130, + 500, + 90, + 90, + 98, + 70, + 375, + 295, + 33, + 75, + 65, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 150, + 120, + 75, + 49, + 30, + 60, + 50, + 300, + 65, + 79.5, + 65, + 85, + 450, + 65, + 82, + 55, + 190, + 150, + 270, + 62, + 260, + 110, + 85, + 90, + 150, + 200, + 180, + 180, + 150, + 75, + 48, + 120, + 130, + 170, + 69, + 170, + 160, + 270, + 300, + 75, + 35, + 80, + 380, + 150, + 45, + 51, + 420, + 65, + 60, + 125, + 70, + 90, + 160, + 70, + 75, + 105, + 53, + 220, + 90, + 46, + 63, + 90, + 130, + 68, + 49.247, + 100, + 88, + 99.5, + 150, + 95, + 280, + 85, + 100, + 75, + 55, + 120, + 130, + 51, + 140, + 150, + 59, + 105, + 200, + 70, + 95, + 120, + 56, + 70, + 120, + 75, + 110, + 95, + 145, + 60, + 50, + 280, + 70, + 85, + 350, + 160, + 60, + 120, + 40, + 85, + 65, + 41, + 115, + 250, + 45, + 155, + 44, + 135, + 300, + 98, + 55, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 450, + 450, + 63, + 120, + 350, + 200, + 72, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 60, + 300, + 235, + 90, + 155, + 45, + 80, + 79, + 125, + 130, + 300, + 173, + 85, + 75, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 78, + 41, + 110, + 45, + 73, + 400, + 500, + 135, + 155, + 450, + 55, + 170, + 450, + 165, + 180, + 65, + 150, + 80, + 57, + 230, + 62, + 75, + 95, + 65, + 80, + 155, + 55, + 150, + 320, + 200, + 50, + 60, + 37, + 195, + 120, + 62, + 55, + 55, + 75, + 76, + 280, + 50, + 160, + 43, + 95, + 46, + 70, + 150, + 270, + 165, + 28, + 68, + 48.5, + 160, + 48, + 250, + 53, + 105, + 55, + 270, + 130, + 50, + 42, + 100, + 250, + 140, + 35, + 40, + 230, + 135, + 45, + 180, + 68, + 68, + 230, + 130, + 90, + 130, + 280, + 85, + 65, + 135, + 125, + 130, + 180, + 57, + 80, + 300, + 350, + 250, + 50, + 105, + 80, + 95, + 45, + 110, + 300, + 88, + 115, + 120, + 55, + 38, + 260, + 86, + 55, + 42, + 110, + 500, + 80, + 75, + 53, + 45, + 110, + 80, + 95, + 120, + 54, + 260, + 300, + 35, + 36, + 110, + 240, + 53, + 350, + 135, + 110, + 75, + 165, + 160, + 57.99, + 250, + 300, + 180, + 50, + 55, + 175, + 70, + 190, + 450, + 39, + 50, + 85, + 65, + 40, + 120, + 75, + 85, + 80, + 99, + 250, + 57, + 80, + 220, + 390, + 280, + 160, + 37, + 95, + 60, + 125, + 90, + 41, + 225, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 100, + 48, + 48, + 125, + 260, + 100, + 65, + 280, + 128, + 300, + 90, + 150, + 210, + 250, + 330, + 130, + 78, + 125, + 160, + 170, + 52, + 42, + 85, + 120, + 160, + 100, + 37, + 83, + 55, + 255.5, + 90, + 92, + 210, + 150, + 128, + 105, + 70, + 85, + 115, + 56, + 85, + 35, + 390, + 80, + 110, + 250, + 160, + 37, + 55, + 80, + 180, + 55, + 79, + 180, + 60, + 80, + 130, + 175, + 110, + 100, + 150, + 240, + 75, + 40, + 90, + 70, + 115, + 150, + 80, + 52, + 70, + 200, + 48, + 250, + 70, + 360, + 80, + 120, + 160, + 100, + 95, + 78, + 230, + 350, + 90, + 140, + 70, + 70, + 88, + 70, + 138, + 120, + 53, + 280, + 33.5, + 63, + 140, + 160, + 85, + 69, + 170, + 160, + 42, + 31, + 90, + 110, + 70, + 130, + 85, + 450, + 125, + 65, + 33, + 370, + 110, + 52, + 200, + 110, + 190, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 175, + 55, + 200, + 75, + 90, + 360, + 160, + 90, + 70, + 65, + 220, + 125, + 150, + 135, + 55, + 275, + 150, + 350, + 95, + 125, + 55, + 69, + 55, + 450, + 350, + 39, + 85, + 280, + 140, + 49, + 95, + 116, + 120, + 410, + 110, + 230, + 350, + 70, + 300, + 125, + 86, + 57, + 100, + 38, + 110, + 115, + 90, + 160, + 150, + 64, + 57, + 165, + 43, + 230, + 110, + 300, + 70, + 65, + 75, + 200, + 45, + 45, + 45, + 90, + 40, + 55, + 69, + 45, + 48, + 185, + 70, + 73, + 36, + 55, + 70, + 54, + 280, + 500, + 150, + 135, + 70, + 350, + 45, + 245, + 65, + 90, + 90, + 170, + 350, + 168, + 110, + 175, + 45, + 45, + 65, + 52, + 220, + 176, + 70, + 125, + 120, + 125, + 32, + 130, + 29, + 180, + 60, + 40, + 250, + 73, + 125, + 90, + 80, + 68, + 110, + 130, + 70, + 75, + 130, + 140, + 230, + 170, + 45, + 80, + 60, + 92, + 220, + 58, + 63, + 72, + 230, + 50, + 170, + 330, + 57.1725, + 300, + 67, + 55, + 380, + 210, + 85, + 38, + 200, + 75, + 50, + 48, + 90, + 245, + 200, + 195, + 90, + 270, + 360, + 160, + 120, + 130, + 100, + 39, + 47, + 49, + 420, + 50, + 500, + 185, + 190, + 310, + 40, + 180, + 110, + 175, + 65, + 185, + 200, + 200, + 85, + 165, + 60, + 80, + 380, + 200, + 150, + 500, + 72, + 50, + 105, + 150, + 155, + 105, + 270, + 90, + 240, + 49.5, + 120, + 95, + 50, + 40, + 165, + 68, + 95, + 80, + 230, + 150, + 57, + 120, + 58, + 140, + 120, + 35, + 90, + 64, + 165, + 55, + 61, + 80, + 170, + 210, + 68, + 150, + 49, + 75, + 300, + 140, + 240, + 55, + 170, + 400, + 125, + 50, + 80, + 130, + 110, + 75, + 40, + 67, + 75, + 92, + 53, + 115, + 165, + 400, + 105, + 55, + 300, + 80, + 250, + 240, + 27, + 90, + 100, + 130, + 52, + 76, + 35, + 155, + 76, + 49, + 350, + 250, + 69, + 65, + 170, + 53, + 95, + 120, + 85, + 85, + 195, + 107, + 380, + 80, + 120, + 300, + 200, + 380, + 130, + 128, + 160, + 87, + 400, + 280, + 36.5, + 140, + 97, + 120, + 160, + 76, + 50, + 98, + 35, + 58, + 45, + 85, + 52, + 60, + 195, + 170, + 76, + 77, + 90, + 168, + 60, + 98, + 160, + 58, + 160, + 125, + 130, + 270, + 50, + 120, + 260, + 69, + 35, + 79, + 68, + 40, + 62, + 35, + 110, + 50, + 135, + 90, + 49, + 195, + 57, + 85, + 400, + 150, + 75, + 130, + 63, + 135, + 120, + 60, + 60, + 45, + 240, + 200, + 155, + 95, + 160, + 60, + 75, + 90, + 480, + 75, + 85, + 400, + 85, + 135, + 165, + 68, + 150, + 68, + 36, + 65, + 65, + 105, + 45, + 145, + 70, + 250, + 230, + 160, + 180, + 85, + 140, + 130, + 445, + 40, + 160, + 82, + 58, + 210, + 90, + 33, + 98.5, + 390, + 500, + 78, + 75, + 57, + 300, + 190, + 90, + 40, + 55, + 150, + 69, + 270, + 90, + 75, + 45, + 180, + 170, + 54, + 100, + 50, + 51, + 180, + 500, + 140, + 58, + 200, + 107, + 138, + 250, + 55, + 78, + 120, + 44, + 55, + 38, + 98, + 36, + 38, + 40, + 185, + 67, + 50, + 85, + 120, + 130, + 70, + 260, + 110, + 40, + 90, + 170, + 185, + 170, + 72, + 125, + 54.5, + 180, + 200, + 30, + 290, + 47, + 500, + 350, + 175, + 34, + 180, + 120, + 380, + 75, + 100, + 38, + 115, + 68, + 250, + 75, + 55, + 500, + 98, + 60, + 55, + 149.5, + 170, + 48, + 105, + 160, + 280, + 275, + 60, + 130, + 105, + 83, + 450, + 58, + 135, + 38, + 48, + 70, + 65, + 65, + 240, + 100, + 160, + 190, + 53, + 245, + 140, + 75, + 155, + 32, + 160, + 120, + 148, + 150, + 390, + 68, + 180, + 500, + 165, + 40, + 68, + 55, + 175, + 120, + 130, + 89, + 285, + 105, + 230, + 50, + 100, + 190, + 280, + 150, + 235, + 150, + 65, + 38, + 120, + 55, + 45, + 260, + 80, + 130, + 150, + 35, + 175, + 64, + 50, + 75, + 73, + 138, + 150, + 150, + 89, + 70, + 75, + 110, + 80, + 350, + 118, + 330, + 65, + 220, + 150, + 340, + 80, + 80, + 60, + 110, + 180, + 140, + 230, + 55, + 222, + 95, + 47, + 85, + 75, + 100, + 85, + 65, + 280, + 265, + 170, + 38, + 51, + 33, + 160, + 370, + 85, + 300, + 75, + 60, + 33, + 200, + 95, + 38, + 120, + 75, + 48, + 145, + 40, + 200, + 65, + 80, + 120, + 11.5, + 125, + 75, + 70, + 135, + 500, + 90, + 130, + 63, + 50, + 40, + 160, + 67, + 79, + 500, + 145, + 99.5, + 160, + 60, + 138, + 75, + 75, + 183, + 160, + 130, + 75, + 50, + 59, + 65, + 40, + 450, + 37, + 55, + 75, + 170, + 31, + 33, + 230, + 61, + 85, + 55, + 88, + 30, + 70, + 125, + 47, + 115, + 145, + 140, + 145, + 50, + 185, + 240, + 55, + 56, + 65, + 65, + 160, + 320, + 250, + 88, + 120, + 80, + 155, + 50, + 200, + 170, + 50, + 55, + 58, + 66, + 125, + 62, + 270, + 45, + 72, + 200, + 60, + 120, + 175, + 55, + 175, + 165, + 130, + 120, + 380, + 330, + 43, + 220, + 35, + 140, + 70, + 35, + 155, + 75, + 250, + 40, + 80, + 60, + 120, + 380, + 100, + 120, + 250, + 65, + 68, + 130, + 500, + 76, + 190, + 68, + 60, + 160, + 220, + 115, + 350, + 120, + 160, + 125, + 77.5, + 125, + 160, + 70, + 160, + 150, + 350, + 50, + 99, + 50, + 70, + 45, + 98, + 400, + 77, + 59, + 70, + 95, + 90, + 60, + 175, + 55, + 125, + 95, + 47, + 170, + 42, + 35, + 55, + 90, + 190, + 48, + 60, + 450, + 450, + 225, + 50, + 60, + 90, + 68, + 185, + 77, + 135, + 160, + 220, + 270, + 45, + 170, + 126, + 37, + 270, + 135, + 49, + 85, + 120.000009, + 130, + 250, + 480, + 320, + 145, + 70, + 100, + 65, + 120, + 170, + 400, + 160, + 65, + 340, + 33, + 45, + 105, + 90, + 130, + 250, + 190, + 42, + 42, + 130, + 140, + 375, + 180, + 215, + 76, + 95, + 250, + 75, + 75, + 60, + 140, + 250, + 480, + 150, + 35, + 270, + 165, + 185, + 150, + 70, + 45, + 65, + 135, + 44, + 130, + 85, + 95, + 81, + 180, + 40, + 75, + 60, + 48, + 62, + 190, + 260, + 150, + 88, + 200, + 180, + 120, + 75, + 165, + 75, + 90, + 35, + 400, + 59.5, + 99, + 150, + 200, + 300, + 400, + 140, + 135, + 295, + 170, + 110, + 410, + 115, + 100, + 80, + 78, + 135, + 105, + 300, + 190, + 120, + 120, + 260, + 280, + 110, + 130, + 48, + 200, + 280, + 80, + 59, + 33, + 370, + 170, + 80, + 230, + 115, + 140, + 120, + 210, + 135, + 50, + 93, + 135, + 22, + 60, + 85, + 230, + 189, + 150, + 47, + 265, + 135, + 150, + 300, + 72, + 82, + 57.5, + 280, + 56, + 55, + 37, + 37, + 130, + 140, + 101, + 95, + 220, + 300, + 65, + 86, + 100, + 40, + 80, + 33, + 100, + 65, + 85, + 29.99, + 78, + 140, + 75, + 45, + 95, + 75, + 55, + 190, + 39, + 370, + 95, + 55, + 280, + 53.5, + 370, + 330, + 97, + 140, + 60, + 50, + 120, + 68, + 105, + 65, + 43, + 62.99, + 150, + 100, + 100, + 75, + 78, + 52, + 59.5, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 45, + 120, + 60, + 400, + 140, + 95, + 150, + 80, + 120, + 49, + 70, + 38, + 73, + 20, + 85, + 35, + 65, + 205, + 150, + 105, + 48, + 37, + 125, + 300, + 75, + 110, + 52, + 50, + 150, + 48, + 40, + 50, + 95, + 120, + 77, + 80, + 55, + 110, + 360, + 126, + 230, + 40, + 150, + 120, + 165, + 160, + 38, + 350, + 280, + 190, + 55, + 120, + 130, + 190, + 64, + 300, + 95, + 70, + 130, + 75, + 75, + 150, + 92, + 11, + 33, + 98, + 289, + 80, + 35, + 70, + 100, + 35, + 120, + 85, + 200, + 58, + 105, + 58, + 57, + 90, + 35, + 67, + 83, + 140, + 55, + 110, + 125, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 300, + 125, + 95, + 500, + 65, + 150, + 140, + 125, + 420, + 75, + 80, + 280, + 58, + 48, + 240, + 120, + 380, + 55, + 125, + 50, + 245, + 135, + 40, + 170, + 110, + 220, + 53, + 75, + 150, + 400, + 61, + 300, + 80, + 85, + 97, + 100, + 115, + 77, + 57, + 85, + 230, + 80, + 220, + 52, + 55, + 430, + 168, + 50, + 60, + 140, + 90, + 58, + 90, + 50, + 185, + 75, + 250, + 265, + 40, + 75, + 70, + 80, + 270, + 115, + 105, + 170, + 60, + 180, + 165, + 60, + 38, + 63, + 100, + 60, + 95, + 67, + 100, + 450, + 170, + 230, + 44, + 178, + 350, + 65, + 100, + 96, + 17.5, + 70, + 380, + 90, + 50, + 160, + 180, + 80, + 79.5, + 270, + 12, + 370, + 72, + 140, + 75, + 155, + 115, + 90, + 230, + 130, + 80, + 200, + 45, + 250, + 38, + 200, + 110, + 300, + 75, + 36, + 59, + 98, + 52, + 210, + 70, + 55, + 120, + 270, + 58, + 480, + 185, + 175, + 110, + 290, + 130, + 130, + 65, + 190, + 280, + 130, + 300, + 58, + 370, + 390, + 225, + 70, + 135, + 165, + 29, + 55, + 95, + 45, + 55, + 115, + 90, + 80, + 225, + 90, + 280, + 160, + 90, + 450, + 57, + 38, + 70, + 18.975, + 120, + 45, + 90, + 240, + 80, + 95, + 280, + 55, + 150, + 80, + 10, + 80, + 350, + 85, + 85, + 75, + 37, + 50, + 80, + 285, + 115, + 65, + 135, + 160, + 35, + 130, + 68, + 75, + 55, + 67, + 78, + 70, + 90, + 65, + 31, + 80, + 250, + 90, + 100, + 250, + 180, + 125, + 275, + 80, + 58, + 86, + 175, + 45, + 58, + 105, + 70, + 120, + 45, + 320, + 135, + 270, + 70, + 38, + 48, + 85, + 200, + 125, + 50, + 185, + 280, + 95, + 25, + 115, + 85, + 55, + 115, + 185, + 120, + 110, + 180, + 200, + 42, + 170, + 260, + 250, + 58, + 280, + 175, + 500, + 65, + 125, + 45, + 43, + 60, + 80, + 198, + 70, + 40, + 120, + 16.675, + 70, + 50, + 130, + 300, + 170, + 250, + 190, + 140.000009, + 120, + 46, + 140, + 92, + 300, + 76, + 230, + 350, + 45, + 46, + 50, + 80, + 170, + 50, + 47, + 250, + 55, + 130, + 320, + 380, + 85, + 190, + 380, + 50, + 52, + 72, + 85, + 66, + 130, + 65, + 82, + 70, + 300, + 120, + 58, + 52, + 46, + 400, + 90, + 87, + 150, + 270, + 190, + 47, + 180, + 270, + 39, + 80, + 75, + 70, + 275, + 195, + 45, + 70, + 150, + 130, + 75, + 105, + 35, + 40, + 150, + 250, + 37, + 100, + 140, + 97, + 130, + 180, + 120, + 60, + 80, + 160, + 180, + 260, + 59, + 100, + 250, + 160, + 47, + 130, + 165, + 55, + 160, + 170, + 47, + 45, + 65, + 55, + 65, + 110, + 155, + 81, + 231, + 100, + 165, + 180, + 165, + 44, + 110, + 90, + 280, + 300, + 77.5, + 53, + 225, + 48, + 110, + 155, + 150, + 80, + 75, + 95, + 80, + 120, + 70, + 160, + 140, + 50, + 68, + 50, + 69, + 50, + 410, + 210, + 150, + 68, + 110, + 43, + 47, + 88, + 80, + 79, + 125, + 160, + 160, + 125, + 67, + 35, + 60, + 140, + 130, + 160, + 420, + 78, + 170, + 33, + 200, + 160, + 55, + 165, + 195, + 85, + 35, + 170, + 74, + 420, + 280, + 45, + 55, + 75, + 230, + 450, + 85, + 68, + 55, + 190, + 380, + 75, + 200, + 300, + 65, + 125, + 47, + 47, + 45, + 55, + 52, + 55, + 170, + 135, + 195, + 230, + 250, + 250, + 270, + 78, + 43, + 65, + 55, + 390, + 95, + 300, + 120, + 95, + 65, + 170, + 76, + 80, + 48, + 240, + 140, + 55, + 197, + 130, + 58, + 350, + 198, + 180, + 68, + 100, + 280, + 230, + 35, + 95, + 140, + 110, + 49, + 90, + 57, + 250, + 125, + 350, + 112, + 85, + 75, + 80, + 75, + 40, + 170, + 100, + 145, + 130, + 88, + 275, + 42, + 300, + 82, + 45, + 300, + 55, + 58, + 65, + 38, + 40, + 170, + 120, + 150, + 40, + 90, + 150, + 280, + 100, + 65, + 75, + 59, + 100, + 120, + 45, + 50, + 385, + 165, + 70, + 25, + 45, + 110, + 93, + 50, + 170, + 78, + 450, + 78, + 220, + 300, + 200, + 135, + 120, + 65, + 200, + 70, + 47, + 65, + 76, + 120, + 120, + 75, + 90, + 320, + 130, + 63, + 48, + 280, + 130, + 400, + 35, + 185, + 110, + 350, + 48, + 100, + 55, + 120, + 165, + 110, + 175, + 42, + 75, + 77, + 75, + 198, + 75, + 60, + 185, + 120, + 250, + 35, + 100, + 250, + 45, + 100, + 63, + 185, + 50, + 58, + 130, + 87, + 80, + 65, + 63, + 120, + 400, + 115, + 72, + 34, + 176, + 125, + 170, + 30, + 70, + 250, + 350, + 36.5, + 400, + 52, + 275, + 250, + 36, + 130, + 30, + 155, + 60, + 150, + 200, + 270, + 350, + 60, + 300, + 100, + 51, + 45, + 49, + 60, + 65, + 130, + 165, + 20, + 90, + 75, + 200, + 50, + 240, + 135, + 150, + 44, + 60, + 95, + 150, + 95, + 55, + 70, + 170, + 220, + 112, + 120, + 180, + 90, + 55, + 95, + 250, + 130, + 75, + 45, + 300, + 52.8, + 65, + 44, + 120, + 120, + 160, + 235, + 43, + 120, + 120, + 78, + 65, + 37, + 220, + 110, + 150, + 80, + 135, + 73, + 160, + 200, + 80, + 68, + 35, + 175, + 170, + 150, + 80, + 90, + 129.5, + 60, + 110, + 150, + 60, + 190, + 51, + 75, + 220, + 350, + 43, + 250, + 85, + 65, + 63, + 125, + 230, + 67, + 250, + 33, + 75, + 340, + 63, + 180, + 155, + 50, + 36, + 90, + 232, + 95, + 350, + 75, + 120, + 60, + 420, + 150, + 160, + 70, + 85, + 150, + 95, + 120, + 35, + 160, + 72, + 200, + 85, + 60, + 38, + 120, + 198, + 120, + 90, + 500, + 60, + 46, + 285, + 280, + 65, + 49, + 220, + 50, + 130, + 96, + 68, + 210, + 62, + 350, + 50, + 140, + 135, + 90, + 120, + 80, + 115, + 120, + 55, + 135, + 180, + 150, + 65, + 150, + 48, + 107, + 85, + 450, + 150, + 130, + 83, + 55, + 145, + 108, + 70, + 450, + 230, + 220, + 60, + 70, + 75, + 60, + 70, + 130, + 150, + 120, + 75, + 60, + 130, + 55, + 75, + 250, + 76, + 125, + 65, + 450, + 40, + 124.5, + 70, + 115, + 55, + 95, + 95, + 38, + 70, + 50, + 45, + 150, + 80, + 150, + 60, + 85, + 37, + 300, + 220, + 120, + 85, + 120, + 120, + 400, + 130, + 47, + 250, + 70, + 26, + 59, + 300, + 155, + 75, + 75, + 500, + 80, + 140, + 31, + 350, + 65, + 40, + 52, + 84, + 76, + 235, + 130, + 190, + 80, + 45, + 125, + 57, + 200, + 85, + 45, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 90, + 170, + 98, + 31, + 125, + 70, + 390, + 185, + 60, + 400, + 82, + 75, + 250, + 85, + 75, + 98, + 35, + 160, + 160, + 350, + 20, + 70, + 400, + 80, + 125, + 120, + 58, + 140, + 62, + 185, + 90, + 110, + 40, + 35, + 95, + 500, + 130, + 190, + 130, + 78, + 55, + 67, + 235, + 85, + 80, + 34, + 200, + 450, + 78, + 49, + 75, + 63, + 38, + 190, + 120, + 180, + 128, + 225, + 50, + 45, + 300, + 140, + 70, + 45, + 130, + 250, + 110, + 58, + 100, + 275, + 40, + 185, + 85, + 350, + 180, + 33, + 200, + 450, + 200, + 47, + 260, + 100, + 33, + 170, + 33, + 260, + 105, + 56, + 33, + 200, + 350, + 62, + 300, + 44, + 450, + 170, + 150, + 140, + 120, + 250, + 180, + 105, + 150, + 165, + 250, + 40, + 87, + 60, + 150, + 69, + 55, + 53, + 60, + 68, + 85, + 46, + 80, + 120, + 75, + 120, + 180, + 65, + 380, + 45, + 80, + 120, + 160, + 98, + 70, + 48, + 75, + 78, + 50, + 280, + 48, + 295, + 75, + 180, + 180, + 230, + 75, + 330, + 55, + 200, + 85, + 60, + 85, + 60, + 280, + 195, + 55, + 35, + 120, + 140, + 40, + 170, + 56, + 185, + 110, + 120, + 70, + 280, + 65, + 70, + 450, + 120, + 14.8, + 95, + 180, + 60, + 70, + 210, + 85, + 49.5, + 135, + 47, + 75, + 190, + 105, + 270, + 125, + 160, + 180, + 165, + 220, + 75, + 50, + 80, + 170, + 90, + 55, + 93, + 95, + 50, + 135, + 52, + 78, + 180, + 85, + 45, + 50, + 105, + 110, + 300, + 140, + 45, + 95, + 110, + 190, + 64, + 310, + 68, + 93, + 78, + 270, + 140, + 150, + 41, + 250, + 130, + 40, + 160, + 160, + 75, + 69, + 500, + 85, + 100, + 58, + 200, + 100, + 59, + 125, + 88, + 80, + 130, + 58, + 270, + 82.5, + 75, + 50, + 43, + 55, + 75, + 300, + 115, + 35, + 68, + 250, + 75, + 190, + 78, + 69, + 90, + 80, + 69, + 500, + 90, + 295, + 83, + 140, + 180, + 100, + 350, + 55, + 150, + 100, + 67, + 37, + 60, + 140, + 48, + 120, + 50, + 70, + 500, + 47, + 250, + 200, + 70, + 40, + 85, + 70, + 75, + 400, + 60, + 85, + 45, + 400, + 64, + 60, + 100, + 95, + 65, + 80, + 165, + 30, + 45, + 60, + 80, + 175, + 63, + 200, + 60, + 75, + 85, + 260, + 65, + 135, + 70, + 105, + 150, + 300, + 250, + 67, + 95, + 130, + 230, + 55, + 32, + 120, + 50, + 110, + 42, + 120, + 125, + 102, + 160, + 50, + 62, + 360, + 480, + 38, + 260, + 90, + 48, + 36, + 300, + 125, + 190, + 65, + 65, + 150, + 80, + 165, + 60, + 90, + 80, + 75, + 58, + 57, + 210, + 350, + 70, + 85, + 120, + 87, + 85, + 145, + 35, + 115, + 55, + 27, + 140, + 72, + 88, + 200, + 120, + 400, + 70, + 450, + 46, + 270, + 120, + 80, + 39, + 115, + 300, + 79, + 190, + 125, + 400, + 65, + 65, + 50, + 38, + 100, + 55, + 75, + 285, + 66, + 140, + 37, + 45, + 185, + 41, + 140, + 116, + 350, + 46, + 180, + 65, + 50, + 160, + 62, + 180, + 39, + 300, + 430, + 50, + 280, + 69, + 80, + 350, + 75, + 450, + 80, + 135, + 100, + 340, + 45, + 52, + 175, + 45, + 70, + 82, + 70, + 32, + 160, + 47, + 59, + 125, + 49, + 250, + 65, + 250, + 200, + 170, + 125, + 78, + 450, + 130, + 50, + 70, + 190, + 180, + 300, + 77.5, + 250, + 55, + 200, + 95, + 95, + 60, + 170, + 500, + 49, + 50, + 500, + 60, + 32, + 160, + 150, + 56, + 120, + 42, + 120, + 100, + 40, + 85, + 40, + 60, + 70, + 160, + 120, + 75, + 80, + 70, + 105, + 50, + 40, + 56, + 98, + 60, + 40, + 20, + 300, + 225, + 70, + 65, + 368, + 160, + 100, + 63, + 58, + 80, + 85, + 170, + 170, + 69, + 380, + 350, + 115, + 100, + 130, + 38, + 95, + 500, + 100, + 37, + 230, + 350, + 270, + 140, + 320, + 220, + 85, + 125, + 105, + 55, + 39.8, + 500, + 140, + 160, + 135, + 80, + 70, + 160, + 115, + 60, + 60, + 45, + 120, + 80, + 40, + 400, + 185, + 210, + 110, + 36, + 82, + 350, + 240, + 50, + 230, + 37, + 370, + 25, + 130.013, + 145, + 120, + 180, + 65, + 105, + 79.5, + 190, + 75, + 180, + 110, + 100, + 58, + 400, + 80, + 90, + 110, + 135, + 130, + 90, + 210, + 39, + 62, + 235, + 70, + 40, + 180, + 190, + 150, + 37.5, + 39, + 55, + 70, + 155, + 135, + 41, + 180, + 80, + 165, + 150, + 65, + 100, + 280, + 240, + 47, + 145, + 100, + 120, + 180, + 108, + 230, + 95, + 130, + 70, + 120, + 110, + 67, + 45, + 57, + 100, + 24, + 36, + 47, + 40, + 75, + 180, + 85, + 65, + 120, + 88, + 160, + 110, + 58, + 150, + 45, + 67.5, + 65, + 180, + 310, + 190, + 65, + 80, + 100, + 50, + 220, + 270, + 270, + 88, + 270, + 290, + 250, + 45, + 370, + 120, + 280, + 250, + 85, + 80.000009, + 36, + 350, + 70, + 250, + 59.5, + 105, + 105, + 250, + 256, + 70, + 48.5, + 60, + 190, + 135, + 220, + 115, + 160, + 70, + 110, + 180, + 280, + 50, + 260, + 85, + 320, + 200, + 330, + 190, + 105, + 41.8, + 140, + 140, + 200, + 65, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 330, + 75, + 120, + 88, + 50, + 74, + 150, + 50, + 42, + 100, + 105, + 60, + 100, + 220, + 60, + 120, + 47, + 140, + 80, + 65, + 63, + 100, + 300, + 300, + 205, + 76, + 320, + 70, + 170, + 35, + 65, + 100, + 180, + 150, + 50, + 160, + 50, + 65, + 130, + 85, + 170, + 90, + 82, + 56, + 95, + 100, + 55, + 280, + 45, + 83, + 53, + 70, + 130, + 270, + 200, + 55, + 53, + 100, + 150, + 180, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 190, + 55, + 260, + 150, + 38, + 370, + 140, + 60, + 180, + 290, + 150, + 75, + 200, + 64, + 79.5, + 60, + 78, + 100, + 70, + 115, + 100, + 63, + 165, + 45, + 135, + 110, + 40, + 95, + 57, + 95, + 140, + 38, + 85, + 47, + 50, + 200, + 75, + 90, + 110, + 90, + 185, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 360, + 70, + 180, + 57, + 190, + 69, + 100, + 105, + 52, + 200, + 90, + 38, + 130, + 300, + 75, + 40, + 165, + 90, + 82, + 50, + 38, + 33, + 85, + 230, + 350, + 230, + 55, + 90, + 160, + 45, + 285, + 140, + 105, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 185, + 375, + 130, + 120, + 50, + 42, + 55, + 110, + 450, + 115, + 100, + 210, + 210, + 75, + 76, + 149, + 200, + 130, + 80, + 100, + 200, + 125, + 75, + 180, + 85, + 380, + 300, + 110, + 160, + 87, + 450, + 170, + 75, + 80, + 48, + 10, + 40, + 47, + 125, + 120, + 160, + 105, + 450, + 100, + 100, + 290, + 220, + 165, + 120, + 56, + 130, + 27, + 35, + 260, + 140, + 90, + 175, + 95, + 120, + 110, + 180, + 37, + 38, + 65, + 38, + 55, + 60, + 69, + 42, + 78, + 120, + 60, + 110, + 115, + 95, + 50, + 60, + 130, + 175, + 100, + 400, + 135, + 105, + 59, + 33, + 85, + 250, + 88, + 50, + 110, + 49, + 190, + 75, + 150, + 125, + 440, + 110, + 90, + 80, + 62, + 80, + 88, + 90, + 53, + 99, + 60, + 50, + 150, + 270, + 66.329, + 135, + 56, + 210, + 115, + 150, + 195, + 300, + 67, + 32, + 170, + 390, + 100, + 60, + 150, + 180, + 68, + 220, + 210, + 135, + 120, + 190, + 300, + 120, + 130, + 185, + 50, + 38, + 110, + 500, + 115, + 55, + 60, + 180, + 75, + 140, + 70, + 75, + 75, + 65, + 70, + 65, + 89, + 95, + 130, + 88, + 36, + 52, + 250, + 20, + 39.5, + 135, + 175, + 190, + 200, + 55, + 47, + 80, + 36, + 46.2, + 95, + 45, + 430, + 130, + 165, + 70, + 70, + 58, + 67, + 185, + 185, + 35, + 78, + 210, + 140, + 138, + 29, + 55, + 85, + 95, + 36, + 160, + 180, + 98, + 280, + 130, + 62, + 135, + 180, + 60, + 110, + 70, + 50, + 230, + 45, + 290, + 45, + 70, + 180, + 35, + 150, + 470, + 27, + 85, + 100, + 280, + 200, + 110, + 67, + 80, + 45, + 39, + 90, + 79.5, + 75, + 100, + 75, + 460, + 20, + 200, + 65, + 250, + 80, + 34, + 41, + 155, + 185, + 96, + 205, + 65, + 230, + 145, + 35, + 260, + 70, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 260, + 380, + 45, + 209, + 130, + 78, + 180, + 175, + 52, + 55, + 85, + 45, + 205, + 250, + 160, + 480, + 160, + 70, + 69, + 195, + 140, + 43, + 38, + 85, + 285, + 130, + 120, + 150, + 72, + 45, + 80, + 220, + 250, + 250, + 110, + 69, + 68, + 150, + 77, + 65, + 83, + 34.8, + 80, + 85, + 180, + 60, + 90, + 230, + 36, + 450, + 45, + 500, + 110, + 290, + 75, + 450, + 35, + 67, + 27, + 280, + 100, + 175, + 95, + 165, + 230, + 250, + 125, + 56, + 190, + 74, + 47, + 52, + 120, + 280, + 110, + 390, + 114, + 64, + 72, + 50, + 65, + 70, + 69, + 270, + 68, + 55, + 200, + 90, + 60, + 100, + 120, + 67.5, + 46, + 50, + 150, + 280, + 120, + 270, + 75, + 78, + 65, + 105, + 270, + 58, + 320, + 410, + 63, + 65, + 38, + 210, + 110, + 66, + 50, + 120, + 110, + 75, + 270, + 93, + 120, + 120, + 75.009009, + 300, + 80, + 120, + 110, + 75, + 160, + 120, + 75, + 43, + 220, + 140, + 80, + 98, + 399.999999, + 45, + 46, + 40, + 160, + 120, + 215, + 35, + 150, + 145, + 30, + 90, + 120, + 100, + 43, + 275, + 500, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 120, + 140, + 85, + 65, + 220, + 40, + 30, + 160, + 55, + 53, + 42, + 140, + 79.5, + 300, + 85, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 120, + 40, + 80, + 200, + 45, + 85, + 140, + 110, + 55, + 240, + 63, + 83, + 65, + 160, + 220, + 52, + 56, + 140, + 45, + 240, + 98, + 100, + 35, + 260, + 120, + 59, + 150, + 35, + 150, + 78, + 250, + 85, + 140, + 130, + 199.999, + 98, + 450, + 41, + 185, + 230, + 125, + 95, + 65, + 250, + 350, + 130, + 90, + 58, + 450, + 67.5, + 96, + 250, + 240, + 35, + 85, + 180, + 55, + 65, + 140, + 70, + 55, + 80, + 350, + 250, + 200, + 170, + 175, + 95, + 75, + 65, + 75, + 47, + 125, + 75, + 400, + 50, + 34, + 50, + 300, + 70, + 200, + 120, + 95, + 65, + 160, + 140, + 100, + 400, + 390, + 60, + 350, + 95, + 130, + 38, + 63, + 185, + 67, + 170, + 120, + 100, + 75, + 175, + 125, + 45, + 110, + 49, + 56, + 68, + 75, + 165, + 140, + 80, + 78, + 145, + 160, + 86, + 110, + 50, + 60, + 57, + 68, + 275, + 170, + 90, + 45, + 120, + 175, + 72, + 49, + 55, + 180, + 77, + 150, + 80, + 60, + 50, + 55, + 85, + 89, + 26, + 65, + 100, + 60, + 295, + 56, + 145, + 50, + 375, + 214, + 50, + 250, + 90, + 105, + 135, + 350, + 60, + 290, + 50, + 110, + 60, + 160.000009, + 165, + 33, + 122, + 49.5, + 55, + 105, + 72, + 88, + 100, + 150, + 135, + 52, + 350, + 50, + 125, + 56, + 25, + 98, + 100, + 77, + 70, + 170, + 60, + 250, + 270, + 120, + 290, + 40, + 88, + 72, + 51, + 50, + 129, + 90, + 90, + 135, + 410, + 120, + 230, + 450, + 72, + 160, + 85, + 130, + 100, + 55, + 340, + 43, + 435, + 180, + 190, + 65, + 87, + 230, + 95, + 434, + 105, + 165, + 145, + 72, + 220, + 125, + 95, + 98, + 35, + 40, + 140, + 145, + 75, + 85, + 75, + 225, + 110, + 65, + 200, + 100, + 400, + 70, + 190, + 120, + 18.5, + 200, + 120, + 38, + 40, + 115, + 90, + 325, + 110, + 198, + 135, + 65, + 180, + 92, + 368, + 84, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 93, + 98, + 250, + 400, + 200, + 42, + 220, + 270, + 95, + 155, + 95, + 110, + 68, + 295, + 39, + 150, + 110, + 175, + 30, + 55, + 49, + 400, + 55, + 52, + 95, + 50, + 100, + 70, + 57, + 55, + 41, + 48, + 180, + 280, + 55, + 350, + 100, + 130, + 55, + 47, + 59, + 65, + 210, + 110, + 52, + 160, + 140, + 35, + 112, + 60, + 205, + 66, + 72, + 130, + 120, + 40, + 10, + 170, + 270, + 34, + 55, + 60, + 82, + 47, + 125, + 190, + 73, + 48, + 150, + 145, + 300, + 100, + 53, + 170, + 65, + 500, + 90, + 220, + 85, + 62, + 38, + 45, + 160, + 95, + 200, + 70, + 160, + 120, + 60, + 150, + 120, + 400, + 70, + 120, + 45, + 61, + 60, + 32, + 120, + 55, + 210, + 150, + 170, + 41, + 95, + 45, + 50, + 75, + 280, + 155, + 70, + 85, + 65, + 48, + 100, + 250, + 390, + 95, + 75, + 155, + 165, + 43, + 100, + 45, + 85, + 105, + 195, + 270, + 55, + 230, + 65, + 62, + 320, + 55, + 90, + 70, + 100, + 270, + 60, + 105, + 40, + 250, + 120, + 58, + 115, + 16, + 62, + 300, + 47, + 100, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 160, + 60, + 49.5, + 53, + 50, + 170, + 77, + 70, + 100, + 150, + 47, + 135, + 90, + 65, + 115, + 200, + 47, + 78, + 500, + 400, + 60, + 36, + 55, + 62, + 340, + 60, + 35, + 31, + 155, + 78, + 67, + 100, + 115, + 220, + 65, + 130, + 120, + 160, + 75, + 65, + 180, + 67, + 120, + 41, + 78, + 90, + 35, + 70, + 145, + 170, + 110, + 95, + 35, + 220, + 165, + 52, + 15, + 95, + 75, + 55, + 85, + 350, + 80, + 85, + 110, + 350, + 100, + 380, + 75, + 90, + 52, + 95, + 380, + 300, + 450, + 130, + 47, + 250, + 120, + 65, + 75, + 68, + 250, + 175, + 55, + 135, + 80, + 130, + 50, + 320, + 285, + 155, + 180, + 37, + 145, + 55, + 85, + 250, + 65, + 52, + 200, + 220, + 85, + 135, + 110, + 90, + 185, + 90, + 250, + 42, + 55, + 30, + 100, + 350, + 85, + 120, + 45, + 85, + 280, + 120, + 170, + 105, + 430, + 90, + 180, + 420, + 80, + 175, + 480, + 75, + 90, + 65, + 120, + 95, + 68, + 62, + 170, + 75, + 40, + 75, + 140, + 75, + 140, + 47, + 40, + 480, + 150, + 350, + 160, + 33, + 42, + 140, + 175, + 75, + 140, + 38, + 111, + 155, + 30, + 105, + 86, + 170, + 200, + 160, + 155, + 60, + 350, + 45, + 220, + 220, + 160, + 45, + 125, + 38, + 115, + 76, + 130, + 150, + 120, + 100, + 56, + 160, + 350, + 130, + 330, + 33, + 150, + 88, + 290, + 35, + 235, + 70, + 155, + 55, + 80, + 120, + 160, + 275, + 43.2, + 105, + 400, + 85, + 60, + 120, + 450, + 70, + 59, + 100, + 50, + 55, + 85, + 60, + 280, + 106, + 67, + 130, + 110, + 170, + 58, + 95, + 350.035, + 70, + 75, + 85, + 100, + 30, + 110, + 52, + 30, + 40, + 150, + 400, + 60, + 140, + 150, + 55, + 190, + 110, + 130, + 30, + 57, + 70, + 190, + 38.99, + 80, + 75, + 150, + 390, + 85, + 38, + 230, + 150, + 260, + 430, + 500, + 90, + 85, + 75, + 37, + 95, + 280, + 130, + 140, + 78, + 55, + 160, + 190, + 200, + 175, + 90, + 230, + 460, + 75, + 100, + 130, + 180, + 140, + 37, + 120, + 420, + 62, + 120, + 80, + 185, + 160, + 185, + 85, + 58, + 63, + 49, + 150, + 300, + 55, + 55, + 160.000999, + 350, + 14, + 170, + 70, + 130, + 55, + 53, + 348, + 40, + 360, + 65, + 210, + 80, + 49.9, + 48, + 120, + 140, + 68, + 94, + 40, + 450, + 320, + 170, + 180, + 350, + 54, + 150, + 80, + 305, + 170, + 65, + 70, + 65, + 70, + 95, + 70, + 270, + 170, + 45, + 70, + 60, + 85, + 320, + 90, + 110, + 92, + 290, + 36, + 75, + 35, + 300, + 80, + 120, + 130, + 240, + 170, + 450, + 75, + 65, + 90, + 140, + 100, + 180, + 72, + 120, + 105, + 75, + 95, + 63, + 45, + 50, + 38, + 400, + 150, + 180, + 140, + 460, + 100, + 80, + 220, + 121, + 73.1, + 450, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 400, + 60, + 105, + 40, + 75, + 40, + 125, + 80, + 55, + 65, + 35, + 48, + 47, + 220, + 150, + 45, + 63, + 62, + 69, + 300, + 130, + 65, + 220, + 84, + 150, + 120, + 55, + 65, + 155, + 262, + 220, + 155, + 165, + 80, + 65, + 250, + 85, + 160, + 65, + 85, + 240, + 145, + 270, + 67, + 58, + 350, + 500, + 25, + 175, + 58, + 250, + 70, + 55, + 150.005, + 60, + 90, + 125, + 39, + 36, + 90, + 69, + 150, + 300, + 125, + 83, + 90, + 65, + 200, + 70, + 47, + 95, + 58, + 69, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 90, + 80, + 180, + 40, + 180, + 61, + 148, + 200, + 47, + 85, + 140, + 180, + 45, + 165, + 90, + 125, + 92, + 58, + 140, + 48, + 125, + 98, + 77, + 180, + 115, + 260, + 34.1, + 95, + 200, + 55, + 40, + 80, + 120 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Price=%{x}", + "legendgroup": "", + "marker": { + "color": "#636efa" + }, + "name": "", + "notched": true, + "offsetgroup": "", + "showlegend": false, + "type": "box", + "x": [ + 57, + 57, + 230, + 70, + 100, + 90, + 300, + 140, + 140, + 57, + 120, + 85, + 50, + 43, + 90, + 29, + 70, + 220, + 58, + 150, + 75, + 80, + 170, + 48, + 37, + 135, + 42, + 42, + 63, + 79, + 160, + 85, + 45, + 70, + 120, + 75, + 56, + 79, + 240, + 300, + 80, + 140, + 170, + 270, + 49, + 77, + 85, + 450, + 400, + 70, + 37.5, + 90, + 300, + 190, + 65, + 49, + 130, + 105, + 350, + 180, + 150, + 57, + 290, + 110, + 240, + 105, + 110, + 55, + 425, + 140, + 300, + 100, + 140, + 68, + 120, + 95, + 150, + 260, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 115, + 120, + 78, + 75, + 59, + 70, + 45, + 100, + 38, + 70, + 300, + 75, + 90, + 90, + 68, + 220, + 54, + 220, + 140, + 155, + 33, + 280, + 150, + 500, + 38, + 71, + 400, + 57, + 48, + 320, + 63, + 360, + 185, + 90, + 50, + 250, + 60, + 220, + 130, + 130, + 100, + 170, + 95, + 160, + 68, + 170, + 97, + 198, + 205, + 69, + 85, + 145, + 50, + 98, + 80, + 75, + 230, + 205, + 200, + 80, + 75, + 105, + 170, + 45, + 150, + 100, + 120, + 73, + 300, + 80, + 80, + 230, + 130, + 35, + 300, + 98, + 55, + 68, + 75, + 120, + 75, + 130, + 420, + 220, + 130, + 160, + 95, + 35, + 250, + 85, + 200, + 175, + 250, + 70, + 70, + 220, + 70, + 250, + 53, + 210, + 290, + 140, + 160, + 160, + 67, + 70, + 300, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 65, + 300, + 65, + 75, + 55, + 50, + 175, + 125, + 50, + 115, + 125, + 120, + 40, + 85, + 57, + 95, + 32, + 350, + 62, + 350, + 150, + 50, + 80, + 90, + 100, + 42, + 48, + 100, + 48, + 54.5, + 170, + 150, + 250, + 260, + 130, + 300, + 160, + 90, + 450, + 65, + 39.5, + 160, + 85, + 220, + 40, + 155, + 75, + 70, + 125, + 155, + 102, + 210, + 53, + 150, + 65, + 85, + 170, + 62, + 50, + 59, + 100, + 200, + 90, + 130, + 98, + 49, + 250, + 350, + 160, + 165, + 53, + 38, + 75, + 143, + 37, + 35, + 85, + 130, + 200, + 90, + 200, + 49.5, + 200, + 59.9, + 200, + 95, + 200, + 65, + 60, + 180, + 160, + 68, + 300, + 87, + 68, + 90, + 90, + 130, + 75, + 110, + 60, + 60, + 100, + 280, + 58.5, + 110, + 67, + 52, + 170, + 60, + 125, + 57, + 450, + 80, + 160, + 60, + 90, + 100, + 85, + 160, + 85, + 123, + 170, + 90, + 85, + 150, + 55, + 80, + 45, + 35, + 190, + 200, + 140, + 84, + 30, + 200, + 45, + 30, + 100, + 50, + 50, + 160, + 130, + 110, + 260, + 125, + 350, + 125, + 500, + 80, + 185, + 260, + 135, + 66, + 500, + 135, + 85, + 55, + 205, + 85, + 100, + 37, + 53, + 88, + 52, + 72, + 300, + 320, + 170, + 87, + 163, + 65, + 140, + 300, + 175, + 250, + 97, + 120, + 110, + 140, + 370, + 180, + 170, + 70, + 200, + 75, + 110, + 37, + 170, + 300, + 75, + 200, + 55, + 28, + 60, + 120, + 65, + 280, + 190, + 360, + 90, + 70, + 105, + 250, + 105, + 120, + 45, + 55, + 400, + 68, + 55, + 240, + 230, + 36, + 180, + 115, + 66, + 60, + 300, + 110, + 130, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 180, + 390, + 130, + 200, + 260, + 60, + 85, + 45, + 110, + 130, + 70, + 65, + 300, + 180, + 64, + 80, + 70, + 300, + 40, + 70, + 350, + 235, + 190, + 150, + 67, + 140, + 70, + 80, + 90, + 80, + 40, + 50, + 200, + 265, + 220, + 250, + 105, + 150, + 105, + 300, + 125, + 80, + 56, + 80, + 75, + 230, + 160, + 110, + 117, + 120, + 85, + 100, + 67, + 65, + 65, + 120, + 60, + 60, + 55, + 35, + 79, + 33, + 400, + 35, + 85, + 165, + 80, + 160, + 70, + 95, + 350, + 66, + 80, + 50, + 180, + 400, + 115, + 200, + 145, + 150, + 95, + 130, + 85, + 50, + 50, + 150, + 120, + 82, + 75, + 53, + 14, + 32.75, + 75, + 400, + 160, + 80, + 37, + 180, + 75, + 98, + 90, + 60, + 80, + 90, + 135, + 85, + 145, + 160, + 130, + 160, + 110, + 112, + 45, + 85, + 85, + 250, + 120, + 75, + 137, + 85, + 88, + 95, + 100, + 70, + 500, + 290, + 165, + 60, + 37, + 40, + 38, + 278, + 350, + 320, + 190, + 40, + 75, + 55, + 80, + 185, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 98, + 185, + 270, + 150, + 52.5, + 135, + 130, + 350, + 120, + 140, + 130, + 390, + 290, + 95, + 65, + 84, + 60, + 75, + 105, + 65, + 30, + 50, + 33, + 230, + 160, + 230, + 175, + 130, + 350, + 225, + 115, + 41.5, + 90, + 75, + 175, + 50, + 160, + 140, + 260, + 150, + 60, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 165, + 130, + 380, + 65, + 75, + 280, + 130, + 80, + 85, + 90, + 130, + 54, + 200, + 145, + 185, + 320, + 295, + 31, + 47, + 200, + 75, + 46, + 71.5, + 55, + 60, + 185, + 75, + 180, + 85, + 290, + 140, + 80, + 100, + 95, + 230, + 370, + 90, + 30, + 450, + 250, + 66, + 46, + 48, + 120, + 95, + 15.5, + 80, + 90, + 80, + 280, + 48, + 65, + 80, + 65, + 56, + 90, + 45, + 180, + 82, + 195, + 270, + 60, + 52, + 140, + 80, + 250, + 80, + 85, + 180, + 72, + 35, + 240, + 75, + 500, + 60, + 50, + 45, + 75, + 62, + 60, + 75, + 125, + 170, + 140, + 20, + 180, + 185, + 190, + 97, + 65, + 170, + 100, + 45, + 65, + 90, + 125, + 360, + 60, + 55, + 200, + 198, + 37, + 80, + 55, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 460, + 73, + 32.75, + 43, + 130, + 89, + 300, + 65, + 40, + 160, + 390, + 130, + 140, + 150, + 175, + 250, + 68, + 80, + 150, + 120, + 480, + 500, + 430, + 95, + 75, + 100, + 85, + 145, + 140, + 110, + 95, + 120, + 45, + 125, + 100, + 210, + 270, + 90, + 350, + 180, + 135, + 50, + 125, + 65, + 87, + 120, + 40, + 32.5, + 67, + 92.5, + 350, + 94, + 125, + 150, + 350, + 450, + 85, + 75, + 200, + 125, + 120, + 55, + 180, + 35, + 185, + 77, + 40, + 60, + 250, + 120, + 100, + 85, + 235, + 40.5, + 95, + 73, + 65, + 198, + 290, + 85, + 125, + 62, + 73, + 70, + 165, + 80, + 200, + 90, + 170, + 39, + 67, + 110, + 60, + 350, + 70, + 110, + 38, + 250, + 500, + 450, + 250, + 165, + 125, + 45, + 150, + 225, + 85, + 299.999999, + 99, + 180, + 250, + 60, + 67, + 70, + 160, + 50, + 70, + 80, + 60, + 75, + 60.9, + 80, + 130, + 58, + 144, + 102, + 160, + 80, + 280, + 57, + 140, + 67, + 65, + 155, + 85, + 35, + 135, + 50, + 70, + 48, + 80, + 115, + 48, + 210, + 75, + 88, + 160, + 83, + 76, + 135, + 450, + 110, + 85, + 80, + 63, + 210, + 100, + 60, + 450, + 130, + 98, + 65, + 220, + 200, + 240, + 90, + 170, + 220, + 59, + 130, + 50, + 250, + 50, + 240, + 33, + 200, + 70, + 68, + 95, + 90, + 30, + 66, + 180, + 47, + 160, + 110, + 155, + 67, + 35, + 45, + 55, + 180, + 85, + 250, + 160, + 56.5, + 230, + 48, + 45, + 105, + 150, + 130, + 55, + 150, + 32.75, + 90, + 150, + 170, + 67, + 65, + 80, + 450, + 180, + 85, + 38, + 450, + 35, + 175, + 95, + 84, + 62.5, + 70, + 75, + 55, + 35, + 60, + 117, + 55, + 75, + 80, + 220, + 70, + 110, + 205, + 80, + 160, + 120, + 110, + 140, + 350, + 37, + 400, + 145, + 170, + 48, + 49.5, + 100, + 260, + 45, + 120, + 95, + 200, + 49, + 500, + 155, + 55, + 230, + 95, + 110, + 90, + 120, + 95, + 125, + 165, + 250, + 75, + 42.5, + 90, + 100, + 75, + 130, + 115, + 220, + 150, + 270, + 145, + 140, + 180, + 38, + 78, + 120, + 185, + 300, + 38, + 65, + 280, + 360, + 70, + 68, + 105, + 170, + 75, + 415, + 350, + 48, + 250, + 40, + 65, + 300, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 47, + 45, + 220, + 120, + 47, + 95, + 58, + 85, + 33, + 270, + 60, + 45, + 135, + 80, + 40, + 65, + 120, + 110, + 450, + 165, + 50, + 300, + 280, + 170, + 45, + 75, + 80, + 290, + 38, + 50, + 158, + 100, + 301, + 195, + 57, + 100, + 410, + 450, + 42, + 76, + 350, + 250, + 55, + 68, + 110, + 450, + 145, + 60, + 44, + 70, + 118, + 102, + 180, + 189, + 80, + 157, + 85, + 110, + 60, + 140, + 115, + 90, + 150, + 300, + 300, + 80, + 57, + 75, + 120, + 420, + 400, + 115, + 150, + 270, + 120, + 57, + 60, + 500, + 73, + 32, + 110, + 55, + 68, + 49.9, + 198, + 47, + 58, + 125, + 26, + 75, + 55, + 72, + 25, + 500, + 85, + 170, + 150, + 140, + 92, + 100, + 59, + 90, + 75, + 85, + 77, + 105, + 80, + 55, + 75, + 160, + 50, + 350, + 120, + 58, + 65, + 45, + 50, + 100, + 75, + 500, + 250, + 50, + 450, + 130, + 66, + 180, + 78, + 80, + 210, + 195, + 150, + 170, + 130, + 70, + 80, + 80, + 210, + 49, + 70, + 64, + 235, + 410, + 68, + 60, + 90, + 65, + 85, + 230, + 70, + 88, + 61, + 65, + 68, + 180, + 180, + 52, + 145, + 14, + 200, + 45, + 78, + 52, + 48, + 220, + 80, + 470, + 75, + 220, + 56, + 55, + 97, + 57, + 340, + 290, + 90, + 65, + 145, + 95, + 75, + 95, + 75, + 50, + 46, + 55, + 180, + 75, + 80, + 75, + 120, + 36, + 160, + 200, + 150, + 90, + 50, + 110, + 285, + 90, + 45, + 58, + 78, + 150, + 60, + 269, + 225, + 100, + 50, + 203, + 110, + 54, + 110, + 210, + 41, + 30, + 39, + 130, + 95, + 67, + 70, + 79, + 450, + 155, + 95, + 120, + 75, + 50, + 65, + 270, + 50, + 78, + 37, + 80, + 280, + 255, + 105, + 360, + 40, + 72, + 280, + 59, + 82, + 120, + 160, + 33, + 40, + 250, + 80, + 95, + 270, + 118, + 195, + 130, + 100, + 75, + 175, + 85, + 95, + 110, + 75, + 190, + 400, + 160, + 100, + 120, + 300, + 48, + 40, + 200, + 200, + 76, + 270, + 47, + 53, + 250, + 180, + 126, + 155, + 70, + 78, + 100, + 79, + 90, + 350, + 105, + 180, + 70, + 330, + 65, + 380, + 350, + 170, + 75, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 300, + 190, + 70, + 32, + 56, + 49, + 50, + 30, + 40, + 110, + 165, + 77, + 280, + 120, + 155, + 70, + 40, + 240, + 169, + 49, + 160, + 190, + 190, + 75, + 480, + 170, + 170, + 76, + 85, + 130, + 120, + 55, + 95, + 95, + 190, + 130, + 115, + 40, + 120, + 38, + 275, + 90, + 95, + 45, + 105, + 170, + 130, + 155.7, + 65, + 33, + 165, + 68, + 80, + 135, + 60, + 320, + 120, + 100.01, + 78, + 165, + 72, + 110, + 185, + 75, + 95, + 400, + 200, + 74, + 90, + 50, + 135, + 300, + 38, + 260, + 200, + 75, + 175, + 150, + 85, + 62, + 92, + 160, + 85, + 200, + 160, + 52, + 100, + 85, + 180, + 250, + 22, + 170, + 85, + 190, + 73, + 170, + 160, + 92, + 450, + 390, + 70, + 51, + 120, + 500, + 85, + 400, + 135, + 140, + 48, + 65, + 130, + 170, + 100, + 106, + 295, + 180, + 50, + 450, + 392, + 170, + 55, + 120, + 60, + 65, + 300, + 40, + 50, + 250, + 45, + 140, + 130, + 85, + 50, + 55, + 420, + 105, + 190, + 230, + 160, + 57, + 250, + 360, + 250, + 60, + 78, + 205, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 140, + 250, + 198.5, + 127, + 125, + 270, + 270, + 35, + 70, + 45, + 55, + 80, + 200, + 270, + 53, + 35, + 33, + 95, + 98, + 60, + 75, + 135, + 65, + 60, + 39, + 85, + 250, + 160, + 110, + 480, + 100, + 47, + 75, + 100, + 34, + 58, + 220, + 250, + 59, + 280, + 92, + 80, + 100, + 150, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 66, + 63, + 200, + 410, + 135, + 95, + 115, + 80, + 300, + 135, + 130, + 160, + 280, + 55, + 55, + 260, + 25, + 300, + 250, + 480, + 75, + 110, + 68, + 33, + 56, + 170, + 82, + 135, + 72, + 200, + 270, + 17.675, + 130, + 183, + 85, + 164, + 90, + 67, + 125, + 240, + 74, + 100, + 180, + 45, + 47, + 59.5, + 190, + 380, + 155, + 470, + 48, + 65, + 85, + 90, + 100, + 200, + 100, + 69, + 65, + 180, + 500, + 60, + 28, + 75, + 47, + 180, + 110, + 140, + 170, + 70, + 60, + 70, + 155, + 95, + 60, + 400, + 130, + 95, + 98, + 140, + 55, + 130, + 200, + 67, + 55, + 450, + 165, + 125, + 78, + 90, + 100, + 175, + 85, + 290, + 150, + 36, + 300, + 165, + 43, + 100, + 240, + 69, + 95, + 125, + 150, + 115, + 210, + 49, + 80, + 120, + 180, + 90, + 60, + 75, + 55, + 300, + 350, + 500, + 45, + 400, + 55, + 280, + 33, + 220, + 120, + 270, + 150, + 79, + 105, + 68, + 240, + 120, + 65, + 65, + 400, + 123, + 175, + 260, + 78, + 350, + 170, + 76, + 95, + 70, + 98, + 33, + 195, + 130, + 30, + 80, + 40, + 45, + 77, + 130, + 450, + 45, + 120, + 95, + 145, + 300, + 55, + 170, + 57, + 60, + 50, + 65, + 53, + 76, + 93, + 135, + 40, + 55, + 57, + 280, + 195, + 300, + 80, + 41, + 37, + 51.5, + 130, + 170, + 80, + 290, + 270, + 79.5, + 97, + 115, + 220, + 56, + 220, + 37, + 158, + 280, + 80, + 100, + 120, + 380, + 100, + 300, + 90, + 90, + 68, + 75, + 32, + 72, + 95, + 220, + 100, + 172, + 250, + 40, + 350, + 55, + 70, + 70, + 45, + 110, + 400, + 53, + 370, + 32, + 145, + 40, + 24, + 165, + 165, + 65, + 57, + 130, + 155, + 195, + 75, + 130, + 70, + 50, + 180, + 250, + 53.1, + 65, + 109, + 115, + 130, + 120, + 90, + 45, + 270, + 62, + 60, + 110, + 225, + 170, + 150, + 55, + 220, + 280, + 74, + 78, + 45, + 110, + 47, + 120, + 100, + 110, + 280, + 45, + 270, + 70, + 158, + 245, + 380, + 75, + 135, + 95, + 55, + 110, + 75, + 120, + 280, + 75, + 400, + 85, + 56, + 90, + 40, + 105, + 200, + 36.5, + 100, + 33, + 60, + 58, + 85, + 185, + 88, + 98, + 57, + 75, + 55, + 185, + 32, + 49, + 160, + 83, + 150, + 180, + 205, + 110, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 480, + 60, + 75, + 145, + 140, + 75, + 70, + 45, + 250, + 480, + 90, + 130, + 110, + 35, + 55, + 69, + 92, + 270, + 105, + 48, + 30, + 360, + 190, + 95, + 54, + 400, + 180, + 85, + 190, + 52, + 270, + 350, + 80, + 37, + 65, + 58, + 60, + 51, + 250, + 180, + 250, + 185, + 48, + 100, + 37, + 100, + 200, + 90, + 170, + 76, + 170, + 135, + 45, + 35.85, + 90, + 135, + 46, + 285, + 130, + 290, + 450, + 65, + 120, + 87, + 170, + 60, + 230, + 250, + 130, + 75, + 420, + 350, + 59.5, + 68, + 175, + 83, + 77, + 155, + 145, + 85, + 80, + 170, + 70, + 400, + 165, + 125, + 19.975, + 59, + 230, + 130, + 250, + 55, + 87, + 500, + 180, + 180, + 450, + 250, + 245, + 180, + 59, + 100, + 69.99, + 65, + 63, + 40, + 90, + 200, + 148, + 360, + 70, + 140, + 230, + 150, + 75, + 250, + 100, + 300, + 48, + 65, + 185, + 90, + 70, + 250, + 180, + 48, + 150, + 265, + 65, + 55, + 70, + 70, + 150, + 167, + 93, + 440, + 250, + 115, + 70, + 35, + 55, + 115, + 150, + 380, + 95, + 57, + 45, + 45, + 33, + 95, + 330, + 275, + 500, + 185, + 160, + 150, + 300, + 78, + 275, + 120, + 11.6, + 42, + 118, + 77, + 68, + 120, + 160, + 120, + 200, + 77, + 160, + 37, + 160, + 75, + 150, + 58, + 59, + 79, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 105, + 30, + 48, + 65, + 300, + 120, + 450, + 230, + 110, + 47, + 45, + 150, + 320, + 95, + 75, + 480, + 80, + 150, + 83, + 155, + 210, + 65, + 115, + 60, + 45, + 185, + 70, + 250, + 110, + 200, + 280, + 125, + 200, + 30, + 350, + 330, + 45, + 36.5, + 45, + 150, + 270, + 48, + 58, + 43, + 70, + 77, + 350, + 58, + 145, + 135, + 60, + 130, + 120, + 260, + 72, + 67, + 50, + 160, + 430, + 285, + 58, + 150, + 450, + 140, + 135, + 59, + 65, + 50, + 185, + 185, + 95, + 150, + 120, + 150, + 80, + 195, + 70, + 120, + 220, + 220, + 145, + 85, + 500, + 90, + 80, + 67, + 48, + 79.5, + 38, + 115, + 130, + 180, + 120, + 205, + 65, + 120, + 80, + 185, + 300, + 69, + 165, + 55, + 280, + 150, + 270, + 77, + 57, + 73, + 300, + 210, + 260, + 120, + 58, + 140, + 85, + 230, + 54, + 80, + 400, + 275, + 380, + 125, + 75, + 370, + 130, + 140, + 300, + 50, + 38, + 49, + 150, + 60, + 75, + 95, + 183, + 16.5, + 120, + 35, + 68, + 55, + 50, + 55, + 120, + 72, + 150, + 52, + 145, + 170, + 90, + 190, + 80, + 200, + 300, + 99, + 75, + 80, + 200, + 38, + 65, + 280, + 200, + 220, + 285, + 195, + 70, + 48, + 160, + 85, + 85, + 59, + 100, + 35, + 110, + 90, + 75, + 86, + 45, + 60, + 130, + 197.5, + 69.5, + 150, + 180, + 35, + 38, + 200, + 65, + 50, + 350, + 70, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 180, + 290, + 330, + 100, + 135, + 60, + 97, + 240, + 350, + 68, + 230, + 125, + 55, + 47, + 100, + 95, + 52, + 125, + 54, + 58, + 95, + 45, + 115, + 165, + 62, + 150, + 60, + 83, + 90, + 46, + 220, + 70, + 57, + 170, + 75.000009, + 150, + 200, + 190, + 125, + 95, + 65, + 67, + 185, + 55, + 350, + 180, + 140, + 260, + 75, + 37, + 400, + 35, + 275, + 360, + 38, + 160, + 90, + 130, + 65, + 95, + 80, + 58, + 160, + 26, + 95, + 50, + 430, + 250, + 125, + 73, + 58, + 85, + 63, + 450, + 270, + 330, + 250, + 75, + 350, + 110, + 200, + 120, + 195, + 35, + 220, + 65, + 75, + 57, + 68, + 140, + 190, + 110, + 150, + 280, + 57, + 85, + 95, + 160, + 48, + 210, + 38, + 65, + 75, + 30, + 140, + 255, + 200, + 120, + 20, + 230, + 200, + 175, + 67, + 83, + 200, + 110, + 350, + 175, + 130, + 360, + 150, + 145, + 230, + 95, + 130, + 92, + 130, + 115, + 120, + 95, + 260, + 125.99, + 155, + 170, + 65, + 65, + 80, + 300, + 52, + 280, + 52, + 63, + 148.5, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 190, + 260, + 55, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 45, + 47, + 60, + 120, + 280, + 230, + 220, + 85, + 90, + 90, + 110, + 35, + 110, + 85, + 220, + 67, + 100, + 210, + 37, + 235, + 73, + 130, + 155, + 58, + 58, + 220, + 39, + 160, + 220, + 280, + 135, + 350, + 125, + 185, + 350, + 62, + 85, + 150, + 57, + 105, + 185, + 85, + 78, + 240, + 98, + 200, + 155, + 81, + 62, + 55, + 90, + 250, + 130, + 120, + 500, + 110, + 43, + 48, + 65, + 150, + 40, + 105, + 350, + 480, + 105, + 130, + 65, + 145, + 150, + 200, + 52, + 110, + 110, + 85, + 78, + 56, + 43, + 270, + 62, + 27, + 168, + 47, + 120, + 130, + 49, + 130, + 500, + 320, + 100, + 40, + 60, + 100, + 118, + 135, + 120, + 45, + 50, + 90, + 400, + 230, + 90, + 220, + 280, + 80, + 220, + 190, + 55, + 75, + 48, + 140, + 95, + 65, + 125, + 180, + 400, + 80, + 450, + 500, + 160, + 100, + 70, + 58, + 180, + 150, + 85, + 55, + 105, + 155, + 68, + 60, + 300, + 82, + 110, + 68, + 90, + 54, + 295, + 155, + 72, + 100, + 100, + 120, + 56, + 300, + 85, + 140, + 60, + 97, + 90, + 80, + 100, + 40, + 260, + 115, + 96, + 62, + 65, + 160, + 170, + 47, + 47.5, + 95, + 150, + 52, + 28, + 180, + 85, + 190, + 170, + 150, + 80, + 40, + 38, + 220, + 53, + 62, + 80, + 160, + 110, + 110, + 75, + 130, + 85, + 48, + 72, + 250, + 160, + 42, + 55, + 280, + 55, + 130, + 65, + 125, + 61.75, + 300, + 150, + 115, + 45, + 400, + 150, + 39, + 75, + 60, + 260, + 95, + 400, + 200, + 170, + 300, + 205, + 210, + 33, + 75, + 75, + 250, + 500, + 35, + 90, + 160, + 120, + 38, + 170, + 135, + 100, + 46, + 40, + 36, + 35, + 130, + 70, + 450, + 128, + 78, + 160, + 250, + 200, + 120, + 175, + 130, + 41, + 300, + 125, + 250, + 300, + 17, + 95, + 85, + 50, + 300, + 120, + 47, + 75, + 53, + 250, + 250, + 395, + 70, + 55, + 80, + 90, + 125, + 55, + 80, + 55, + 150, + 175, + 65, + 135, + 50, + 95, + 120, + 145, + 35, + 450, + 140, + 90, + 70, + 370, + 290, + 45, + 45, + 80, + 62, + 80, + 225, + 170, + 450, + 110, + 125, + 85, + 47, + 65, + 65, + 48, + 250, + 58, + 35, + 75, + 250, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 90, + 60, + 130, + 120, + 80, + 135, + 52, + 160, + 110, + 145, + 35, + 370, + 110, + 88, + 125, + 450, + 80, + 450, + 350, + 85, + 120, + 78, + 250, + 110, + 125, + 135, + 230, + 190, + 445, + 120, + 55, + 75, + 450, + 88, + 125, + 80, + 27, + 260, + 50, + 180, + 110, + 105, + 74, + 150, + 400, + 170, + 75, + 75, + 30, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 70, + 45, + 350, + 95, + 170, + 65, + 125, + 200, + 59, + 115, + 450, + 120, + 235, + 67, + 165, + 67, + 127, + 290, + 64.1, + 58, + 80, + 95, + 95, + 160, + 55, + 130, + 330, + 400, + 70, + 72, + 52, + 260, + 95, + 130, + 200, + 500, + 75, + 190, + 68, + 33, + 56, + 90, + 270, + 95, + 62, + 58, + 65, + 45, + 120, + 45, + 185, + 66, + 48, + 120, + 38, + 28.5, + 185, + 110, + 120, + 65, + 45, + 250, + 120, + 20, + 250, + 140, + 150, + 55, + 120, + 130, + 110, + 110, + 105, + 80, + 120, + 38, + 250, + 199.999, + 110, + 220, + 450, + 35, + 70, + 100, + 65, + 105, + 450, + 190, + 60, + 35, + 250, + 95, + 135, + 73, + 100, + 85, + 110, + 60, + 130, + 300, + 130, + 33, + 280, + 40, + 220, + 150, + 68, + 65, + 190, + 95, + 65, + 45, + 33, + 170, + 55, + 260, + 105, + 65, + 55, + 135, + 270, + 95, + 50, + 95, + 90, + 75, + 160, + 50, + 250, + 48, + 170, + 33, + 245, + 44, + 48, + 58, + 400, + 110, + 58, + 50, + 65, + 250, + 80, + 75, + 50, + 85, + 78, + 135, + 47, + 65, + 80, + 350, + 270, + 72, + 255, + 230, + 120, + 90, + 155, + 42, + 250, + 57, + 85, + 110, + 51, + 90, + 100, + 170, + 143, + 65, + 140, + 160, + 55, + 300, + 450, + 111, + 90, + 75, + 170, + 47, + 180, + 280, + 49, + 46, + 270, + 85, + 79, + 78, + 47, + 83, + 65, + 65, + 50, + 95, + 40, + 232, + 120, + 180, + 153, + 59, + 170, + 60, + 85, + 40, + 53, + 38, + 33, + 155, + 270, + 67, + 320, + 45, + 175, + 55, + 160, + 80, + 70, + 220, + 72, + 270, + 300, + 390, + 45, + 175, + 40, + 73, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 170, + 80, + 160, + 99, + 50, + 90, + 430, + 50, + 250, + 400, + 330, + 60, + 100, + 85, + 58, + 85, + 165, + 60, + 65, + 80, + 230, + 115, + 90, + 500, + 75, + 115, + 192, + 115, + 140, + 90, + 50, + 47, + 75, + 45, + 170, + 125, + 200, + 165, + 138, + 165, + 30, + 69, + 56, + 65, + 210, + 95, + 77.5, + 70, + 90, + 75, + 82, + 85, + 150, + 180, + 46, + 70, + 62, + 76, + 70, + 52, + 65, + 450, + 450, + 160, + 135, + 51, + 180, + 80, + 175, + 50, + 63.1, + 59, + 135, + 130, + 110, + 40, + 470, + 55, + 300, + 70, + 160, + 120, + 90, + 35, + 77, + 400, + 250, + 60, + 150, + 150, + 57, + 58, + 57, + 130, + 115, + 78, + 60, + 480, + 150, + 80, + 75, + 150, + 100, + 50, + 130, + 54, + 100, + 80, + 95, + 210, + 180, + 150, + 130, + 80, + 400, + 80, + 85, + 50, + 140, + 150, + 55, + 70, + 335, + 285, + 74.1, + 130, + 65, + 250, + 110, + 135, + 37, + 100, + 62, + 81, + 235, + 170, + 72, + 160, + 90, + 200, + 75, + 450, + 130, + 77, + 250, + 55, + 36.5, + 130, + 150, + 190, + 36, + 90, + 95, + 65, + 150, + 130, + 500, + 37, + 90, + 90, + 44, + 280, + 200, + 400, + 250, + 75, + 230, + 65, + 500, + 190, + 160, + 200, + 90, + 58, + 235, + 280, + 230, + 55, + 250, + 85, + 120, + 76, + 255, + 120, + 173, + 44, + 175, + 75, + 70, + 135, + 135, + 155, + 460, + 175, + 47, + 60, + 190, + 230, + 155, + 360, + 72, + 130, + 45, + 110, + 65, + 220, + 95, + 80, + 145, + 400, + 85, + 44, + 42, + 260, + 100, + 110, + 79, + 200, + 105, + 59, + 110, + 65, + 150, + 130, + 75, + 80, + 380, + 165, + 80, + 68, + 190, + 100, + 320, + 68, + 145, + 235, + 73, + 100, + 130, + 420, + 58, + 70, + 130, + 100, + 100, + 69, + 100, + 90, + 45, + 55, + 200, + 195, + 95, + 280, + 360, + 240, + 250, + 175, + 85, + 90, + 62, + 190, + 130, + 215, + 38.5, + 55, + 37, + 96, + 45, + 95, + 270, + 115, + 80, + 70, + 75, + 120, + 40, + 90, + 58, + 46, + 100, + 65, + 140, + 210, + 250, + 78, + 165, + 170, + 45, + 120, + 135, + 140, + 145, + 185, + 70, + 500, + 220, + 38, + 165, + 106, + 350, + 75, + 85, + 68, + 135, + 480, + 155, + 170, + 42, + 49, + 37, + 150, + 380, + 53, + 85, + 68, + 80, + 57, + 62, + 38, + 40, + 75, + 330, + 141, + 125, + 215, + 180, + 140, + 75, + 57, + 300, + 57, + 150, + 27, + 200, + 180, + 500, + 150, + 450, + 125, + 130, + 88, + 90, + 250, + 230, + 55, + 160, + 400, + 140, + 45, + 150, + 480, + 150, + 75, + 85, + 90, + 68, + 85, + 130, + 250, + 200, + 250, + 380, + 206, + 100, + 170, + 500, + 75, + 170, + 75, + 170, + 140, + 70, + 450, + 55, + 65, + 180, + 80, + 260, + 189, + 85, + 260, + 300, + 160, + 130, + 240, + 58, + 85, + 280, + 110, + 82, + 95, + 82, + 120, + 175, + 70, + 250, + 28, + 110, + 65, + 195, + 380, + 130, + 53, + 45, + 68, + 76, + 300, + 70, + 58, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 270, + 500, + 190, + 100, + 65, + 170, + 140, + 95, + 230, + 75, + 32, + 210, + 310, + 130, + 105, + 70, + 240, + 450, + 55, + 130, + 48, + 150, + 270, + 33.5, + 120, + 65, + 75, + 45, + 350, + 400, + 365, + 40, + 180, + 150, + 150, + 155, + 300, + 95, + 90, + 80, + 35, + 185, + 53, + 38, + 105, + 65, + 350, + 50, + 480, + 51.5, + 140, + 78, + 57, + 44.815, + 55, + 57, + 150, + 90, + 125, + 220, + 240, + 250, + 55, + 90, + 85, + 90, + 75, + 90, + 100, + 40, + 500, + 80, + 150, + 105, + 37, + 80.000005, + 250, + 64, + 95, + 500, + 350, + 62, + 200, + 73, + 380, + 160, + 170, + 46, + 310, + 170, + 80, + 70, + 85, + 290, + 70, + 45, + 220, + 185, + 350, + 50, + 55, + 40, + 70, + 110, + 64, + 180, + 105, + 40, + 75, + 290, + 150, + 90, + 150, + 40, + 120, + 250, + 320, + 70, + 110, + 67, + 55, + 130, + 56, + 75, + 140, + 250, + 77, + 125, + 120, + 45, + 70, + 80, + 270, + 90, + 190, + 150, + 100, + 51, + 110, + 250, + 110, + 170, + 53, + 70, + 165, + 190, + 120, + 180, + 130, + 90, + 85, + 37, + 74.999999, + 72, + 50, + 37, + 50, + 125, + 54, + 85, + 68, + 140, + 60, + 400, + 250, + 450, + 38, + 140, + 100, + 140, + 185, + 38, + 270, + 85, + 55, + 175, + 48, + 351, + 85, + 135, + 82, + 180, + 57, + 65, + 133, + 240, + 110, + 500, + 348, + 140, + 200, + 65, + 370, + 40, + 90, + 180, + 58, + 150, + 66, + 57, + 68, + 145, + 150, + 46, + 150, + 35, + 500, + 100, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 235, + 110, + 210, + 50, + 38.99, + 370, + 87, + 59, + 135, + 220, + 65, + 70, + 69, + 350, + 105, + 400, + 190, + 75, + 130, + 85, + 150, + 140, + 40, + 45, + 300, + 100, + 300, + 22, + 85, + 65, + 100, + 110, + 52, + 70, + 62, + 60, + 75, + 40, + 150, + 450, + 36, + 150, + 130, + 28, + 72.5, + 130, + 65, + 50, + 85, + 110, + 48, + 230, + 125, + 280, + 400, + 135, + 90, + 115, + 71, + 130, + 85, + 100, + 55, + 65, + 70, + 125, + 102, + 300, + 93, + 130, + 105, + 160, + 40, + 58, + 270, + 70, + 40, + 45, + 40, + 46, + 300, + 55, + 450, + 140, + 130, + 65, + 100, + 165, + 90, + 270, + 40, + 60, + 75, + 19.975, + 38, + 60, + 45, + 290, + 65, + 180, + 120, + 90, + 115, + 37, + 68, + 115, + 65, + 50, + 360, + 90, + 130, + 60, + 30, + 65, + 70, + 115, + 65, + 260, + 46, + 23, + 250, + 55, + 55, + 100, + 170, + 400, + 85, + 90, + 66, + 150, + 360, + 46, + 80, + 85, + 260, + 45, + 78, + 58, + 45, + 160, + 65, + 100, + 39, + 45, + 102, + 135, + 85, + 350, + 120, + 180, + 270, + 365, + 125, + 50, + 47, + 130, + 300, + 115, + 220, + 130, + 145, + 80, + 240, + 198, + 320, + 300, + 50, + 62.5, + 250, + 230, + 35, + 135, + 63, + 80, + 200, + 270, + 170, + 300, + 69.99, + 50, + 49, + 85, + 34, + 36, + 110, + 190, + 75, + 70, + 33, + 120, + 110, + 50, + 400, + 86, + 80, + 92, + 65, + 100.99, + 38, + 350, + 120, + 90, + 40, + 85, + 85, + 220, + 150, + 53, + 500, + 90, + 260, + 370, + 160, + 150, + 65, + 95, + 190, + 53, + 160, + 120, + 260, + 180, + 155, + 150, + 75, + 195, + 105, + 150, + 75, + 90, + 85, + 130, + 85, + 35, + 90, + 65, + 460, + 38, + 115, + 95, + 62, + 60, + 67, + 70, + 40, + 50, + 50, + 200, + 205, + 300, + 100, + 48, + 185, + 100, + 150, + 160, + 180, + 90, + 65, + 47, + 120, + 127, + 84, + 45, + 200, + 53, + 130, + 130, + 17.675, + 90, + 130, + 140, + 500, + 75, + 200, + 120, + 60, + 54, + 70, + 75, + 125, + 68, + 115, + 48, + 300, + 72, + 100, + 200, + 130, + 190, + 70, + 35, + 140, + 66, + 80, + 110, + 100, + 65, + 180, + 57, + 295, + 205, + 82, + 78, + 35, + 72, + 175, + 50, + 80, + 240, + 80, + 110, + 65, + 85, + 78, + 135, + 175, + 78, + 205, + 170, + 40, + 135, + 260, + 130, + 360, + 175, + 80, + 150, + 65, + 65, + 83, + 100, + 75, + 150, + 110, + 39, + 250, + 50, + 220, + 150, + 125, + 85, + 90, + 190, + 55, + 60, + 95, + 185, + 48, + 260, + 230, + 100, + 45, + 180, + 80, + 380, + 135, + 100, + 300, + 160, + 60, + 150, + 110, + 95, + 180, + 130, + 170, + 140, + 300, + 95, + 175, + 92, + 220, + 65, + 120, + 55, + 165, + 75, + 90, + 200, + 90, + 190, + 65, + 165, + 100, + 120, + 30, + 55, + 270, + 135, + 350, + 120, + 125, + 260, + 58, + 120, + 280, + 420, + 42, + 65, + 130, + 90, + 85, + 75, + 140, + 62, + 60, + 75, + 50, + 60, + 90, + 58, + 85, + 165, + 265, + 110, + 350, + 48, + 80, + 120, + 35, + 80, + 90, + 48, + 45, + 270, + 47, + 42, + 78, + 65, + 500, + 24, + 180, + 70, + 71, + 67, + 128, + 295, + 175, + 200, + 170, + 250, + 90, + 75, + 40, + 52, + 80, + 140, + 85, + 200, + 250, + 260, + 55, + 135, + 49, + 70, + 59, + 80, + 150, + 280, + 235, + 75, + 170, + 65, + 45, + 65, + 380, + 60, + 69, + 85, + 57, + 49, + 155, + 62, + 395, + 120, + 200, + 480, + 85, + 198, + 360, + 100, + 85, + 69, + 38.9, + 280, + 220, + 75, + 80, + 115, + 53, + 36, + 110, + 85, + 85, + 55, + 75, + 47, + 65, + 55, + 55, + 230, + 80, + 65, + 35, + 50, + 450, + 53.5, + 35, + 320, + 150, + 250, + 18.975, + 190, + 140, + 130, + 55, + 270, + 110, + 80, + 70, + 195, + 65, + 35, + 190, + 220, + 120, + 79.5, + 115, + 200, + 58, + 95, + 68, + 205, + 200, + 167, + 100, + 68, + 200, + 175, + 160, + 60, + 230, + 110, + 78, + 300, + 200, + 350, + 250, + 58, + 60, + 37, + 195, + 125, + 50, + 230, + 90, + 85, + 60, + 75, + 38.5, + 150, + 160, + 58, + 60, + 70, + 76, + 85, + 460, + 45, + 270, + 150, + 400, + 185, + 75, + 500, + 110, + 115, + 70, + 46, + 235, + 125, + 70, + 140, + 110, + 95, + 300, + 250, + 57, + 155, + 48, + 80, + 265, + 52, + 180, + 28, + 45, + 250, + 80, + 350, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 65, + 47, + 145, + 56, + 83, + 145, + 80, + 55, + 80, + 48, + 120, + 63, + 250, + 300, + 73, + 35, + 50, + 95, + 185, + 105, + 300, + 110, + 150, + 165, + 200, + 41, + 140, + 55, + 87, + 82, + 160, + 125, + 108, + 150, + 145, + 90, + 100, + 115, + 50, + 65, + 95, + 70, + 40, + 320, + 125, + 70, + 70, + 90, + 83, + 88, + 80, + 280, + 140, + 83, + 200, + 75, + 45, + 300, + 100, + 185, + 450, + 65, + 38.5, + 200, + 92, + 135, + 320, + 140, + 100, + 40.64, + 70, + 105, + 58, + 310, + 85, + 390, + 55, + 75, + 80, + 45, + 170, + 98, + 285, + 200, + 50, + 145, + 85, + 55, + 160, + 75, + 135, + 135, + 54.5, + 250, + 180, + 60, + 65, + 180, + 197, + 110, + 400, + 80, + 100, + 90, + 135, + 100, + 40, + 120, + 145, + 110, + 85, + 500, + 170, + 285, + 250, + 36, + 55, + 55, + 500, + 65, + 95, + 300, + 45, + 48, + 49.5, + 145, + 90, + 160, + 400, + 100, + 120, + 68, + 160, + 155, + 95, + 155, + 85, + 155, + 500, + 150, + 95, + 60, + 150, + 210, + 36.5, + 30, + 74, + 195, + 56, + 63.1, + 84, + 410, + 68, + 68, + 110, + 65, + 200, + 95, + 80, + 60, + 130, + 80, + 65, + 55, + 55, + 120, + 155, + 120, + 75, + 500, + 150, + 140, + 108, + 40, + 145, + 48, + 65, + 155, + 37, + 100, + 75, + 60, + 150, + 160, + 43, + 95, + 250, + 82, + 49.5, + 70, + 50, + 63, + 39, + 65, + 95, + 125, + 85, + 40, + 220, + 190, + 110, + 185, + 250, + 140, + 45, + 75, + 95, + 97.5, + 115, + 17.675, + 95, + 285, + 155, + 45, + 230, + 350, + 250, + 42, + 90, + 50, + 55, + 85, + 370, + 75, + 60, + 75, + 90, + 62, + 187, + 48, + 90, + 160, + 180, + 62, + 85, + 90, + 75, + 350, + 105, + 250, + 120, + 250, + 80, + 65, + 148, + 60, + 45, + 160, + 120, + 160, + 78, + 255, + 150, + 85, + 250, + 35, + 87, + 65, + 130, + 87, + 165, + 250, + 150, + 60, + 140, + 200, + 30, + 58, + 300, + 50, + 100, + 200, + 50, + 70, + 60, + 18, + 120, + 350, + 57, + 93, + 175, + 230, + 63, + 35, + 90, + 250, + 52, + 165, + 55, + 85, + 130, + 46, + 100, + 200, + 270, + 140, + 140, + 170, + 90, + 75, + 60, + 105, + 250, + 180, + 250, + 85, + 180, + 77.5, + 70, + 500, + 200, + 50, + 75, + 70, + 300, + 45, + 50, + 300, + 175, + 60, + 57, + 69, + 280, + 70, + 63, + 270, + 300, + 150, + 120, + 120, + 45, + 36, + 100, + 55, + 69.5, + 65, + 120, + 235, + 350, + 40, + 250, + 55, + 41, + 75, + 70, + 150, + 49.5, + 300, + 58, + 300, + 170, + 145, + 49.9, + 54, + 195, + 110, + 150, + 57, + 68, + 140, + 80, + 261, + 210, + 85, + 140, + 55, + 110, + 200, + 260, + 41, + 150, + 140, + 120, + 90, + 185, + 450, + 95, + 115, + 150, + 385, + 200, + 55, + 47, + 150, + 120, + 65, + 55, + 165, + 120, + 140, + 60, + 280, + 53, + 102, + 49.5, + 300, + 42, + 98, + 42, + 110, + 70, + 50, + 110, + 40, + 100, + 65, + 35, + 140, + 235, + 120, + 160, + 150, + 250, + 200, + 250, + 125, + 57, + 280, + 370, + 200, + 300, + 400, + 45, + 175, + 70, + 40, + 38, + 60, + 120, + 190, + 120, + 45, + 43.5, + 45, + 145, + 150, + 75, + 65, + 30, + 160, + 67, + 125, + 66, + 72, + 275, + 169.5, + 47.799, + 82, + 85, + 190, + 170, + 150, + 105, + 33, + 150, + 300, + 95, + 72, + 300, + 75, + 200, + 68, + 150, + 48, + 120, + 57, + 45, + 45, + 38, + 85.5, + 140, + 90, + 150, + 110, + 120, + 177.99, + 75, + 87.000099, + 100, + 45, + 170, + 76, + 47, + 150, + 210, + 60, + 125, + 350, + 100, + 150, + 80, + 170, + 300, + 55, + 60, + 180, + 60, + 170, + 300, + 67, + 59, + 125, + 85, + 120, + 65, + 80, + 138, + 450, + 130, + 250, + 48, + 90, + 65, + 76, + 46, + 80, + 480, + 60, + 70, + 140, + 110, + 150, + 135, + 195, + 275, + 55, + 460, + 95, + 500, + 62, + 50, + 140, + 340, + 450, + 340, + 48, + 65, + 55, + 73, + 70, + 62, + 56, + 150, + 90, + 38, + 42, + 36, + 250, + 79, + 130, + 150, + 45, + 80, + 60, + 370, + 125, + 105, + 180, + 60, + 160, + 65, + 280, + 36, + 55, + 140, + 95, + 270, + 170, + 65, + 200, + 39, + 43, + 57, + 150, + 130, + 175, + 75, + 390, + 70, + 160, + 40, + 230, + 60, + 65, + 100, + 250, + 75, + 75, + 63, + 75, + 80, + 110, + 165, + 160, + 75, + 75, + 210, + 60, + 68, + 93, + 85, + 95, + 72, + 360, + 330, + 35, + 65, + 300, + 38, + 165, + 59, + 155, + 62, + 44, + 65, + 130, + 165, + 240, + 120, + 70, + 53, + 185, + 180, + 100, + 180, + 130, + 56.000099, + 95, + 155, + 110, + 28, + 230, + 55, + 55, + 72, + 270, + 85, + 180, + 130, + 150, + 115, + 85, + 63, + 180, + 180, + 180, + 150, + 68, + 77, + 55, + 59, + 43, + 180, + 80, + 41.5, + 34.5, + 80, + 68, + 180, + 65, + 55, + 36, + 125, + 62, + 62, + 145, + 120, + 350, + 220, + 150, + 160, + 300, + 320, + 150, + 198, + 80, + 60, + 60, + 155, + 90, + 95, + 78, + 80, + 52, + 55, + 77, + 53, + 125, + 34, + 200, + 110, + 140, + 350, + 38, + 150, + 190, + 350, + 120, + 30, + 240, + 62, + 80, + 140, + 190, + 12, + 40, + 80, + 69.5, + 45, + 180, + 40, + 32, + 32, + 220, + 98, + 220, + 115, + 90, + 130, + 100, + 180, + 55, + 130, + 275, + 265, + 160, + 55, + 120, + 105, + 180, + 165, + 390, + 64, + 110, + 55, + 40, + 150, + 53, + 270, + 170, + 90, + 60, + 60, + 80, + 85, + 140, + 170, + 75, + 68, + 175, + 135, + 165, + 45, + 35, + 43, + 70, + 34, + 105, + 120, + 55, + 250, + 95, + 85, + 60, + 90, + 150, + 100, + 98, + 43.5, + 88, + 53, + 350, + 45, + 105, + 300, + 49, + 85, + 200, + 380, + 265, + 58, + 80, + 200, + 200, + 75, + 120, + 325, + 50, + 240, + 95, + 180, + 125, + 85, + 100, + 78, + 150, + 125, + 70, + 110, + 85, + 50, + 130, + 280, + 185, + 150, + 50, + 200, + 310, + 200, + 300, + 220, + 99, + 125, + 130, + 140, + 300, + 270, + 82, + 75, + 80, + 105, + 115, + 70, + 200, + 55, + 220, + 83, + 500, + 37, + 62, + 210, + 75, + 130, + 80, + 370, + 260, + 200, + 250, + 100, + 190, + 67, + 105, + 145, + 195, + 175, + 77, + 120, + 55, + 105, + 40, + 480, + 240, + 85, + 70, + 350, + 120, + 190, + 155, + 140, + 40, + 180, + 460, + 280, + 60, + 180, + 85, + 170, + 62, + 260, + 50, + 61, + 70, + 55, + 36, + 85, + 70, + 70, + 80, + 150, + 79, + 120, + 110, + 90, + 123, + 72, + 270, + 185, + 80, + 220, + 130, + 400, + 90, + 200, + 150, + 95, + 50, + 130, + 105, + 90, + 260, + 370, + 80, + 37, + 170, + 55, + 68, + 240, + 140, + 230, + 110, + 270, + 58.5, + 140, + 220, + 85, + 350, + 85, + 110, + 300, + 150, + 52, + 75, + 37, + 140, + 115, + 85, + 70, + 95, + 65, + 55, + 500, + 100, + 75, + 160, + 54, + 135, + 200, + 99, + 330, + 185, + 97, + 95, + 170, + 300, + 40, + 175, + 50, + 230, + 300, + 95, + 300, + 108, + 100, + 83, + 47, + 65, + 43, + 198, + 65, + 250, + 50, + 175, + 300, + 200, + 120, + 210, + 50, + 105, + 300, + 122, + 60, + 75, + 150, + 69, + 80, + 78, + 60, + 155, + 79.5, + 200, + 50, + 250, + 85, + 33, + 165, + 110, + 47, + 170, + 240, + 90, + 45, + 65, + 38, + 100, + 75, + 120, + 48, + 110, + 44, + 125, + 50, + 120, + 80, + 75, + 62, + 67, + 140, + 47, + 160, + 140, + 95, + 85, + 110, + 350, + 85, + 42, + 52, + 180, + 60, + 58, + 38, + 145, + 110, + 160, + 35, + 100, + 420, + 60, + 53, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 57, + 40, + 62, + 145, + 130, + 47.5, + 33, + 95, + 300, + 63, + 54, + 50, + 67, + 220, + 68, + 270, + 150.000009, + 85, + 56, + 240, + 75, + 70, + 120, + 120, + 220, + 250, + 185, + 55, + 330, + 140, + 66, + 64, + 45, + 45, + 135, + 57, + 42, + 53, + 42, + 500, + 85, + 40, + 40, + 90, + 65, + 80, + 500, + 68, + 250, + 140, + 145, + 120, + 220, + 53, + 68, + 145, + 92, + 62, + 80, + 32, + 270, + 120, + 165, + 300, + 155, + 100, + 150, + 130, + 40, + 200, + 170, + 100, + 130, + 75, + 230, + 35, + 140, + 85, + 75, + 125, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 200, + 180, + 270, + 105, + 45, + 65, + 60, + 80, + 190, + 48, + 250, + 72, + 155, + 20, + 300, + 180, + 65, + 250, + 299.999999, + 145, + 55, + 80, + 57, + 80, + 45, + 160, + 150, + 65, + 55, + 100, + 34, + 60, + 90, + 35, + 55, + 56, + 140, + 290, + 55, + 75, + 130, + 300, + 320, + 260, + 120, + 90, + 160, + 95, + 65, + 110, + 73, + 72.5, + 170, + 65, + 100, + 23, + 55, + 57, + 450, + 100, + 125, + 47, + 47.5, + 65, + 85, + 110, + 50, + 90, + 170, + 100, + 125, + 130, + 60, + 75, + 300, + 50, + 165, + 290, + 100, + 55, + 100, + 150, + 15, + 62, + 105, + 110, + 200, + 130, + 45, + 33, + 85, + 70, + 180, + 73, + 66, + 175, + 35, + 200, + 450, + 55, + 135, + 170, + 125, + 260, + 82, + 58, + 55, + 92, + 24, + 75, + 78, + 70, + 150, + 128, + 270, + 135, + 75, + 65, + 105, + 50, + 35, + 120, + 50, + 170, + 56, + 130, + 78, + 55, + 120, + 155, + 75, + 120, + 80, + 220, + 500, + 250, + 250, + 135, + 170, + 380, + 220, + 75, + 47.5, + 240, + 80, + 170, + 35, + 65, + 120, + 45, + 350, + 290, + 420, + 55, + 95, + 275, + 58, + 65, + 225, + 58, + 46, + 170, + 90, + 395, + 33, + 270, + 450, + 56, + 350, + 82, + 300, + 55, + 57, + 335, + 215, + 75, + 110, + 300, + 63, + 60, + 50, + 450, + 37, + 185, + 160, + 500, + 65, + 50, + 170, + 56, + 17.675, + 150, + 180, + 130, + 65, + 130, + 130, + 80, + 110, + 200, + 65, + 170, + 69, + 85, + 130, + 30, + 45, + 32, + 135, + 85, + 58, + 38, + 130, + 35, + 40, + 69, + 120, + 280, + 90, + 55, + 150, + 165, + 240, + 155, + 42, + 80, + 235, + 65, + 47, + 125, + 240, + 400, + 60, + 130, + 65, + 250, + 110, + 130, + 80, + 44, + 80, + 90, + 60, + 40, + 62, + 85, + 500, + 125, + 120, + 230, + 300, + 40, + 170, + 75, + 98, + 95, + 140, + 175, + 125, + 60, + 160, + 420, + 65, + 350, + 480, + 130, + 420, + 75, + 100, + 65, + 165, + 75, + 10, + 190, + 120, + 125, + 235, + 150, + 65, + 320, + 45, + 180, + 60, + 62, + 80, + 300, + 200, + 105, + 46, + 37, + 150, + 250, + 90, + 32.5, + 35, + 255, + 120, + 180, + 250, + 57, + 110, + 380, + 230, + 150, + 120, + 160, + 230, + 130, + 150, + 43, + 144, + 400, + 70, + 185, + 120, + 140, + 110, + 100, + 200, + 40, + 60, + 380, + 150, + 133, + 50, + 115, + 63, + 280, + 500, + 47, + 45, + 150, + 125, + 240, + 38, + 38, + 70, + 49, + 170, + 86, + 120, + 180, + 200, + 200, + 80, + 200, + 39, + 85, + 72, + 100, + 65, + 140, + 36, + 110, + 44.9, + 180, + 70, + 120, + 130, + 200, + 65, + 95, + 280, + 38, + 210, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 125, + 205, + 33, + 57, + 400, + 150, + 73, + 110, + 260, + 75, + 120, + 70, + 63, + 39, + 85, + 185, + 50, + 70, + 200, + 230, + 160, + 220, + 85, + 72, + 63, + 150, + 87, + 100, + 240, + 150, + 75, + 100, + 280, + 120, + 65, + 68, + 45, + 50, + 85, + 120, + 180, + 130, + 40, + 75, + 200, + 280, + 120, + 150, + 450, + 130, + 85, + 250, + 140, + 88, + 105, + 105, + 60, + 160, + 250, + 140, + 198, + 67, + 180, + 67, + 155, + 190, + 120, + 200, + 65, + 80, + 80, + 150, + 220, + 150, + 47.999999, + 36, + 400, + 85, + 70, + 70, + 300, + 220, + 80, + 280, + 400, + 85, + 40, + 65, + 225, + 60, + 68, + 80, + 52, + 70, + 100, + 75, + 230, + 53, + 60, + 60, + 40, + 170, + 65, + 45, + 170, + 200, + 55, + 290, + 65, + 45, + 140, + 135, + 80, + 150, + 105, + 37, + 61, + 54, + 50, + 50, + 350, + 17.675, + 450, + 260, + 67, + 82, + 230, + 48, + 85, + 180, + 35, + 500, + 250, + 57, + 48, + 40, + 95, + 70, + 450, + 100, + 65, + 145, + 85, + 46, + 56, + 115, + 55, + 270, + 380, + 90, + 440, + 70, + 63, + 55, + 100, + 150, + 90, + 55, + 125, + 32, + 90, + 95, + 115, + 65, + 180, + 63, + 170, + 110, + 120, + 175, + 56, + 150, + 48, + 115, + 295, + 175, + 500, + 180, + 85, + 48, + 41, + 70, + 370, + 45, + 110, + 180, + 85, + 235, + 135, + 145, + 190, + 200, + 100, + 85, + 450, + 60, + 125, + 59.5, + 100, + 300, + 120, + 58, + 52, + 98, + 43, + 300, + 36, + 230, + 28, + 65, + 30, + 100, + 45, + 60, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 40, + 32.75, + 120, + 68, + 75, + 94, + 70, + 200, + 150, + 100, + 120, + 110, + 75, + 68, + 33, + 220, + 78, + 52, + 200, + 75, + 350, + 165, + 85, + 70, + 250, + 220, + 75, + 180, + 130, + 55, + 90, + 35, + 95, + 65, + 150, + 160, + 130, + 185, + 130, + 210, + 100, + 75, + 55, + 185, + 55, + 120, + 50, + 90, + 47, + 370, + 50, + 62, + 70, + 58, + 130, + 90, + 85, + 210, + 240, + 85, + 120, + 185, + 80, + 90, + 65, + 75, + 250, + 75, + 124, + 36, + 188, + 95, + 260, + 90, + 220, + 160, + 35, + 40, + 130, + 220, + 60, + 120, + 65, + 140, + 160, + 55, + 330, + 250, + 160, + 69, + 130, + 36, + 235, + 110, + 46, + 65, + 170, + 33, + 100, + 100, + 110, + 82, + 450, + 68, + 250, + 265, + 170, + 130, + 85, + 100, + 130, + 75, + 230, + 200, + 80, + 290, + 300, + 125, + 100, + 70, + 55, + 72, + 95, + 63, + 95, + 35, + 135, + 45, + 150, + 140, + 450, + 58, + 90, + 55, + 160, + 100, + 90, + 280, + 185, + 28, + 95, + 300, + 150, + 97, + 52, + 350, + 265, + 115, + 500, + 45, + 65, + 185, + 58, + 190, + 115, + 62, + 180, + 250, + 45, + 67, + 500, + 75, + 60, + 195, + 450, + 40, + 170, + 400, + 45, + 300, + 85, + 350, + 48, + 88, + 55, + 90, + 38, + 100, + 70, + 60, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 85, + 80, + 50, + 65, + 75, + 70, + 140, + 120, + 140, + 200, + 35, + 260, + 43, + 55.5, + 120, + 57, + 50, + 200, + 48, + 145, + 125, + 75, + 370, + 110, + 65, + 49, + 210, + 135, + 120, + 235, + 155, + 56, + 250, + 95, + 100, + 220, + 120, + 110, + 92, + 110, + 53, + 100, + 90, + 45, + 37, + 400, + 60, + 100, + 320, + 140, + 210, + 35, + 250, + 95, + 158, + 350, + 130, + 40, + 140, + 90, + 120, + 58, + 55, + 90, + 56, + 150, + 470, + 140, + 38, + 130, + 300, + 195, + 130, + 185, + 120, + 500, + 65, + 160, + 170, + 140, + 40, + 40, + 80, + 195, + 42, + 195, + 70, + 150, + 40, + 75, + 200, + 130, + 50, + 125, + 60, + 350, + 98, + 160, + 26, + 80, + 190, + 65, + 140, + 140, + 110, + 450, + 450, + 150, + 45, + 400, + 185, + 185, + 35, + 60, + 71, + 35, + 175, + 75, + 235, + 88, + 38, + 350, + 50, + 90, + 69, + 350, + 100, + 130, + 65, + 60, + 87, + 100, + 150, + 220, + 45, + 78, + 165, + 57, + 80, + 130, + 68, + 250, + 120, + 55, + 500, + 190, + 275, + 34, + 55, + 480, + 38, + 60, + 80, + 250, + 90, + 170, + 165, + 63, + 30, + 60, + 180, + 185, + 45, + 110, + 55, + 75, + 77, + 160, + 135, + 120, + 45, + 65, + 350, + 227, + 470, + 165, + 62, + 200, + 130, + 35, + 65, + 65, + 130, + 70, + 180, + 170, + 220, + 138, + 160, + 70, + 190, + 190, + 51, + 130, + 78, + 80, + 35, + 55, + 50, + 280, + 85, + 185, + 65, + 105, + 75, + 350, + 45, + 80, + 45, + 60, + 72, + 125, + 75, + 88, + 55, + 85, + 260, + 170, + 95, + 54, + 195, + 77, + 170, + 120, + 260, + 52, + 69, + 37, + 150, + 65, + 175, + 50, + 87, + 48, + 10, + 160, + 60, + 70, + 35, + 36, + 90, + 110, + 300, + 47, + 70, + 80, + 350, + 120, + 165, + 38, + 230, + 42, + 45, + 85, + 100, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 300, + 280, + 65, + 160, + 95, + 290, + 75, + 53, + 140, + 75, + 140, + 185, + 75, + 150, + 200, + 88, + 110, + 65, + 255, + 120, + 110, + 57, + 160, + 77, + 95, + 63, + 77, + 310, + 60, + 48, + 480, + 150, + 73, + 33, + 58, + 55, + 47, + 90, + 380, + 55, + 60, + 420, + 58, + 400, + 50, + 75, + 130, + 160, + 80, + 70, + 230, + 320, + 130, + 51, + 50, + 67, + 320, + 38, + 130, + 90, + 175, + 150, + 68, + 68, + 95, + 110, + 155, + 80, + 51, + 55, + 200, + 165, + 90, + 75, + 90, + 60, + 150, + 145, + 45, + 20, + 53, + 320, + 245, + 75, + 140, + 130, + 165, + 230, + 25, + 140, + 250, + 270, + 90, + 110, + 200, + 350, + 35, + 40, + 130, + 75, + 50, + 40, + 78, + 85, + 72, + 51, + 100, + 320, + 65, + 73, + 80, + 55, + 420, + 125, + 54, + 120, + 49, + 50, + 80, + 320, + 235, + 160, + 165, + 60, + 65, + 120, + 59.5, + 90, + 220, + 105, + 53, + 250, + 56, + 75, + 350, + 90, + 150, + 45, + 120, + 32, + 100, + 90, + 240, + 58, + 130, + 280, + 120, + 33, + 400, + 65, + 85, + 62, + 175, + 69, + 70, + 45, + 125, + 71, + 150, + 210, + 85, + 120, + 120, + 100, + 70, + 97, + 100, + 75, + 92, + 37, + 120, + 70, + 210, + 72, + 35, + 70, + 112, + 65, + 96, + 37, + 195, + 230, + 60, + 150, + 70, + 120, + 270, + 140, + 40, + 210, + 62, + 185, + 150, + 80, + 170, + 130, + 235, + 60.5, + 45, + 26.4375, + 150, + 95, + 140, + 105, + 100, + 280, + 98, + 275, + 115, + 38, + 90, + 45, + 100, + 52, + 35, + 130, + 59, + 70, + 130, + 290, + 155, + 145, + 75, + 110, + 300, + 75, + 59, + 140, + 73, + 125, + 34, + 150, + 67, + 100, + 300, + 55, + 40, + 180, + 390, + 55, + 250, + 35, + 120, + 56, + 60, + 75, + 52, + 175, + 72, + 57, + 55, + 290, + 55, + 67, + 180, + 65, + 98, + 350, + 120, + 430, + 340, + 80, + 55, + 150, + 70, + 95, + 110, + 80, + 230, + 65, + 75, + 70, + 110, + 100, + 115, + 70, + 230, + 140, + 380, + 85, + 165, + 108, + 100, + 49, + 170, + 88, + 140, + 59, + 140, + 125, + 95, + 150, + 350, + 150, + 200, + 57, + 135, + 60, + 180, + 30, + 110, + 350, + 400, + 76, + 155, + 70, + 85, + 51.5, + 350, + 36, + 85, + 100, + 50, + 52, + 100, + 205, + 160, + 54, + 300, + 180, + 110, + 60, + 320, + 115, + 90, + 53, + 170, + 35, + 280, + 80, + 80, + 90, + 190, + 45, + 43, + 140, + 130, + 45, + 240, + 58, + 180, + 205, + 180, + 95, + 190, + 275, + 58, + 48, + 65, + 95, + 45, + 150, + 380, + 120, + 145, + 51, + 38, + 415, + 480, + 80, + 145, + 80, + 500, + 57, + 55, + 300, + 55, + 75, + 180, + 80, + 240, + 95, + 33, + 350, + 70, + 135, + 75, + 450, + 270, + 125, + 120, + 45, + 80, + 62, + 250, + 45, + 45, + 35, + 200, + 53, + 110, + 92, + 59, + 126, + 35, + 37, + 60, + 500, + 75, + 68, + 60, + 58, + 78, + 240, + 140, + 45, + 57, + 110, + 72, + 85, + 57, + 400, + 75, + 140, + 95, + 53, + 72, + 220, + 35, + 90, + 150, + 120, + 320, + 38, + 55, + 220, + 100, + 42, + 270, + 50, + 160, + 130, + 90, + 200, + 37, + 57, + 350, + 350, + 120, + 110, + 18, + 60, + 180, + 130, + 35, + 95, + 115, + 300, + 400, + 420, + 400, + 90, + 220, + 33, + 90, + 57, + 200, + 500, + 160, + 130, + 78, + 220, + 300, + 100, + 200, + 35, + 26, + 85, + 100, + 54, + 70, + 500, + 68, + 58, + 75, + 250, + 200, + 70, + 50, + 43, + 50, + 135, + 98, + 75, + 90, + 230, + 320, + 57, + 320, + 450, + 150, + 160, + 53, + 400, + 200, + 300, + 175, + 45, + 240, + 130, + 37, + 30, + 48, + 120, + 420, + 185, + 130, + 155, + 59, + 95, + 270, + 75, + 135, + 75, + 44, + 39, + 73, + 35, + 180, + 50, + 35, + 260, + 69.9, + 85, + 170, + 230, + 80, + 120, + 75, + 75, + 350, + 500, + 130, + 150, + 39.6, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 65, + 53, + 51, + 97, + 125, + 120, + 60, + 250, + 88, + 45, + 45, + 30, + 92, + 350, + 75, + 57, + 68, + 73, + 110, + 220, + 300, + 65, + 480, + 350, + 140, + 95, + 200, + 87, + 67, + 65, + 180, + 95, + 110, + 280, + 85, + 85, + 45, + 110, + 46, + 85, + 185, + 380, + 150, + 56, + 56, + 70, + 29, + 79, + 60, + 155, + 500, + 85, + 50, + 100, + 300, + 105, + 56, + 75, + 60, + 105, + 80, + 95, + 55, + 130, + 100, + 450, + 45, + 320, + 55, + 55, + 38, + 125, + 115, + 75, + 85, + 500, + 45, + 155, + 85, + 75, + 230, + 150, + 260, + 100, + 37, + 45, + 120, + 75, + 175, + 65, + 65, + 110, + 95, + 90, + 55, + 55, + 180, + 150, + 60, + 65, + 80, + 35, + 190, + 65, + 95, + 260, + 400, + 90, + 130, + 157, + 50, + 270, + 115, + 52, + 77, + 150, + 190, + 88, + 75, + 75, + 90, + 85, + 170, + 133, + 170, + 55, + 85, + 50, + 120, + 41, + 195, + 55, + 63, + 68, + 45, + 27, + 180, + 360, + 100, + 360, + 320, + 57, + 48, + 250, + 39, + 85, + 55, + 125, + 250, + 120, + 100, + 97, + 350, + 75, + 50, + 75, + 130, + 38, + 89, + 320, + 100, + 65, + 55, + 360, + 55, + 63, + 120, + 43, + 70, + 60, + 60, + 260, + 65, + 175, + 122, + 300, + 150, + 130, + 70, + 38, + 90, + 270, + 480, + 120, + 440, + 100, + 180, + 210, + 220, + 135, + 220, + 38, + 220, + 450, + 260, + 55, + 53, + 100, + 47.5, + 95, + 70, + 48, + 60, + 120, + 40, + 50, + 110, + 260, + 75, + 95, + 55, + 80, + 180, + 35, + 210, + 95, + 260, + 65, + 72, + 175, + 140, + 70, + 50, + 150, + 65, + 46, + 300, + 90, + 72, + 180, + 130, + 50, + 50, + 52, + 78, + 67, + 155, + 210, + 225, + 185, + 310, + 80, + 55, + 180, + 52, + 280, + 38, + 260, + 40, + 60, + 85, + 65, + 45, + 58, + 63, + 110, + 78, + 100, + 58, + 110, + 360, + 10, + 130, + 72, + 200, + 70, + 65, + 65.000009, + 57, + 60, + 45, + 83, + 200, + 65, + 165, + 65, + 500, + 120, + 45, + 58, + 55, + 60, + 35, + 77, + 46, + 195, + 74, + 100, + 130, + 165, + 60, + 350, + 47, + 180, + 170, + 65, + 70, + 23.8, + 100, + 59, + 60, + 70, + 150, + 175, + 40, + 140, + 300, + 90, + 180, + 50, + 75, + 75, + 230, + 70, + 65, + 65, + 48.5, + 180, + 75, + 120, + 100, + 110, + 75, + 60, + 45, + 230, + 64, + 300, + 75, + 78, + 45, + 380, + 155, + 380, + 120, + 68, + 67, + 80, + 110, + 170, + 79.5, + 320, + 450, + 60, + 270, + 190, + 330, + 90, + 50, + 65, + 95, + 57, + 85, + 55, + 160, + 41, + 100, + 180, + 105, + 80, + 400, + 450, + 75, + 155, + 65, + 69, + 76, + 60, + 220, + 125, + 155, + 250, + 270, + 100, + 85, + 80, + 380, + 200, + 120, + 185, + 185, + 85, + 130, + 220, + 69, + 40, + 110, + 48, + 52, + 98, + 39, + 60, + 49, + 75, + 110, + 125, + 20, + 45, + 70, + 170, + 65, + 65, + 85, + 280, + 90, + 33, + 95, + 395, + 70, + 65, + 75, + 60, + 250, + 150, + 70, + 65, + 65, + 75, + 57, + 45, + 310, + 185, + 33, + 40, + 110, + 350, + 175, + 150, + 250, + 300, + 70, + 120, + 42, + 115, + 170, + 350, + 35, + 250, + 370, + 110, + 40, + 80, + 59, + 150, + 120, + 400, + 47, + 130, + 250, + 42, + 140, + 90, + 300, + 185, + 200, + 195, + 110, + 130, + 50, + 85, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 55, + 150, + 130, + 65, + 200, + 150, + 64, + 100, + 170, + 220, + 75, + 130, + 65, + 60, + 110, + 300, + 210, + 80, + 120, + 30, + 350, + 275, + 48, + 155, + 95, + 47, + 500, + 200, + 60, + 500, + 65, + 280, + 370, + 85, + 68, + 110, + 95, + 75, + 48, + 400, + 350, + 85, + 75, + 50, + 40, + 165, + 47, + 70, + 170, + 70, + 75, + 55, + 120, + 110, + 50, + 120, + 48, + 63, + 395, + 330, + 55, + 65, + 190, + 184, + 100, + 280, + 165, + 75, + 270, + 47.5, + 60, + 36, + 190, + 150, + 75, + 380, + 55, + 400, + 195, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 78, + 220, + 59, + 33, + 120, + 175, + 450, + 90, + 75, + 58, + 125, + 125, + 170, + 120, + 115, + 37, + 150, + 70, + 85, + 90, + 65, + 100, + 170, + 128, + 56, + 200, + 145, + 300.000009, + 280, + 48, + 55, + 50, + 400, + 55, + 140, + 70, + 90, + 450, + 50, + 85, + 75, + 110, + 85, + 95, + 90, + 125, + 38, + 40, + 250, + 90, + 235, + 150, + 70, + 56, + 360, + 85, + 45, + 80, + 89, + 137, + 13, + 110, + 115, + 45, + 59, + 48, + 100, + 160, + 79, + 225, + 75, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 43, + 130, + 400, + 135, + 50, + 80, + 50, + 62, + 50, + 69, + 39, + 55, + 55, + 65, + 95, + 79, + 350, + 65, + 80, + 85, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 130, + 46, + 45, + 90, + 125, + 69, + 250, + 60, + 182, + 45, + 65, + 125, + 400, + 90, + 85, + 285, + 85, + 220, + 180, + 400, + 280, + 50, + 120, + 68, + 170, + 37, + 78, + 35, + 180, + 220, + 50, + 52, + 140, + 95, + 125, + 95, + 20, + 81, + 140, + 350, + 115, + 55, + 90, + 150, + 200, + 260, + 33, + 180, + 135, + 52.5, + 105, + 140, + 75, + 130, + 300, + 300, + 115, + 300, + 130, + 135, + 300, + 75, + 300, + 100, + 59, + 98, + 105, + 37, + 170, + 130, + 250, + 68, + 56, + 170, + 49, + 47, + 130, + 88, + 170, + 57, + 150, + 140, + 200, + 195, + 138, + 160, + 45, + 48, + 85, + 57, + 65, + 210, + 55, + 260, + 220, + 90, + 170, + 150, + 38, + 366, + 55, + 40, + 110, + 130, + 80, + 160, + 320, + 70, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 38, + 150, + 260, + 500, + 92, + 85, + 175, + 67, + 130, + 50, + 135, + 135, + 75, + 65, + 75, + 370, + 42, + 30, + 120, + 55, + 76, + 135, + 300, + 240, + 455, + 38, + 280, + 300, + 130, + 500, + 90, + 90, + 98, + 70, + 375, + 295, + 33, + 75, + 65, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 150, + 120, + 75, + 49, + 30, + 60, + 50, + 300, + 65, + 79.5, + 65, + 85, + 450, + 65, + 82, + 55, + 190, + 150, + 270, + 62, + 260, + 110, + 85, + 90, + 150, + 200, + 180, + 180, + 150, + 75, + 48, + 120, + 130, + 170, + 69, + 170, + 160, + 270, + 300, + 75, + 35, + 80, + 380, + 150, + 45, + 51, + 420, + 65, + 60, + 125, + 70, + 90, + 160, + 70, + 75, + 105, + 53, + 220, + 90, + 46, + 63, + 90, + 130, + 68, + 49.247, + 100, + 88, + 99.5, + 150, + 95, + 280, + 85, + 100, + 75, + 55, + 120, + 130, + 51, + 140, + 150, + 59, + 105, + 200, + 70, + 95, + 120, + 56, + 70, + 120, + 75, + 110, + 95, + 145, + 60, + 50, + 280, + 70, + 85, + 350, + 160, + 60, + 120, + 40, + 85, + 65, + 41, + 115, + 250, + 45, + 155, + 44, + 135, + 300, + 98, + 55, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 450, + 450, + 63, + 120, + 350, + 200, + 72, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 60, + 300, + 235, + 90, + 155, + 45, + 80, + 79, + 125, + 130, + 300, + 173, + 85, + 75, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 78, + 41, + 110, + 45, + 73, + 400, + 500, + 135, + 155, + 450, + 55, + 170, + 450, + 165, + 180, + 65, + 150, + 80, + 57, + 230, + 62, + 75, + 95, + 65, + 80, + 155, + 55, + 150, + 320, + 200, + 50, + 60, + 37, + 195, + 120, + 62, + 55, + 55, + 75, + 76, + 280, + 50, + 160, + 43, + 95, + 46, + 70, + 150, + 270, + 165, + 28, + 68, + 48.5, + 160, + 48, + 250, + 53, + 105, + 55, + 270, + 130, + 50, + 42, + 100, + 250, + 140, + 35, + 40, + 230, + 135, + 45, + 180, + 68, + 68, + 230, + 130, + 90, + 130, + 280, + 85, + 65, + 135, + 125, + 130, + 180, + 57, + 80, + 300, + 350, + 250, + 50, + 105, + 80, + 95, + 45, + 110, + 300, + 88, + 115, + 120, + 55, + 38, + 260, + 86, + 55, + 42, + 110, + 500, + 80, + 75, + 53, + 45, + 110, + 80, + 95, + 120, + 54, + 260, + 300, + 35, + 36, + 110, + 240, + 53, + 350, + 135, + 110, + 75, + 165, + 160, + 57.99, + 250, + 300, + 180, + 50, + 55, + 175, + 70, + 190, + 450, + 39, + 50, + 85, + 65, + 40, + 120, + 75, + 85, + 80, + 99, + 250, + 57, + 80, + 220, + 390, + 280, + 160, + 37, + 95, + 60, + 125, + 90, + 41, + 225, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 100, + 48, + 48, + 125, + 260, + 100, + 65, + 280, + 128, + 300, + 90, + 150, + 210, + 250, + 330, + 130, + 78, + 125, + 160, + 170, + 52, + 42, + 85, + 120, + 160, + 100, + 37, + 83, + 55, + 255.5, + 90, + 92, + 210, + 150, + 128, + 105, + 70, + 85, + 115, + 56, + 85, + 35, + 390, + 80, + 110, + 250, + 160, + 37, + 55, + 80, + 180, + 55, + 79, + 180, + 60, + 80, + 130, + 175, + 110, + 100, + 150, + 240, + 75, + 40, + 90, + 70, + 115, + 150, + 80, + 52, + 70, + 200, + 48, + 250, + 70, + 360, + 80, + 120, + 160, + 100, + 95, + 78, + 230, + 350, + 90, + 140, + 70, + 70, + 88, + 70, + 138, + 120, + 53, + 280, + 33.5, + 63, + 140, + 160, + 85, + 69, + 170, + 160, + 42, + 31, + 90, + 110, + 70, + 130, + 85, + 450, + 125, + 65, + 33, + 370, + 110, + 52, + 200, + 110, + 190, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 175, + 55, + 200, + 75, + 90, + 360, + 160, + 90, + 70, + 65, + 220, + 125, + 150, + 135, + 55, + 275, + 150, + 350, + 95, + 125, + 55, + 69, + 55, + 450, + 350, + 39, + 85, + 280, + 140, + 49, + 95, + 116, + 120, + 410, + 110, + 230, + 350, + 70, + 300, + 125, + 86, + 57, + 100, + 38, + 110, + 115, + 90, + 160, + 150, + 64, + 57, + 165, + 43, + 230, + 110, + 300, + 70, + 65, + 75, + 200, + 45, + 45, + 45, + 90, + 40, + 55, + 69, + 45, + 48, + 185, + 70, + 73, + 36, + 55, + 70, + 54, + 280, + 500, + 150, + 135, + 70, + 350, + 45, + 245, + 65, + 90, + 90, + 170, + 350, + 168, + 110, + 175, + 45, + 45, + 65, + 52, + 220, + 176, + 70, + 125, + 120, + 125, + 32, + 130, + 29, + 180, + 60, + 40, + 250, + 73, + 125, + 90, + 80, + 68, + 110, + 130, + 70, + 75, + 130, + 140, + 230, + 170, + 45, + 80, + 60, + 92, + 220, + 58, + 63, + 72, + 230, + 50, + 170, + 330, + 57.1725, + 300, + 67, + 55, + 380, + 210, + 85, + 38, + 200, + 75, + 50, + 48, + 90, + 245, + 200, + 195, + 90, + 270, + 360, + 160, + 120, + 130, + 100, + 39, + 47, + 49, + 420, + 50, + 500, + 185, + 190, + 310, + 40, + 180, + 110, + 175, + 65, + 185, + 200, + 200, + 85, + 165, + 60, + 80, + 380, + 200, + 150, + 500, + 72, + 50, + 105, + 150, + 155, + 105, + 270, + 90, + 240, + 49.5, + 120, + 95, + 50, + 40, + 165, + 68, + 95, + 80, + 230, + 150, + 57, + 120, + 58, + 140, + 120, + 35, + 90, + 64, + 165, + 55, + 61, + 80, + 170, + 210, + 68, + 150, + 49, + 75, + 300, + 140, + 240, + 55, + 170, + 400, + 125, + 50, + 80, + 130, + 110, + 75, + 40, + 67, + 75, + 92, + 53, + 115, + 165, + 400, + 105, + 55, + 300, + 80, + 250, + 240, + 27, + 90, + 100, + 130, + 52, + 76, + 35, + 155, + 76, + 49, + 350, + 250, + 69, + 65, + 170, + 53, + 95, + 120, + 85, + 85, + 195, + 107, + 380, + 80, + 120, + 300, + 200, + 380, + 130, + 128, + 160, + 87, + 400, + 280, + 36.5, + 140, + 97, + 120, + 160, + 76, + 50, + 98, + 35, + 58, + 45, + 85, + 52, + 60, + 195, + 170, + 76, + 77, + 90, + 168, + 60, + 98, + 160, + 58, + 160, + 125, + 130, + 270, + 50, + 120, + 260, + 69, + 35, + 79, + 68, + 40, + 62, + 35, + 110, + 50, + 135, + 90, + 49, + 195, + 57, + 85, + 400, + 150, + 75, + 130, + 63, + 135, + 120, + 60, + 60, + 45, + 240, + 200, + 155, + 95, + 160, + 60, + 75, + 90, + 480, + 75, + 85, + 400, + 85, + 135, + 165, + 68, + 150, + 68, + 36, + 65, + 65, + 105, + 45, + 145, + 70, + 250, + 230, + 160, + 180, + 85, + 140, + 130, + 445, + 40, + 160, + 82, + 58, + 210, + 90, + 33, + 98.5, + 390, + 500, + 78, + 75, + 57, + 300, + 190, + 90, + 40, + 55, + 150, + 69, + 270, + 90, + 75, + 45, + 180, + 170, + 54, + 100, + 50, + 51, + 180, + 500, + 140, + 58, + 200, + 107, + 138, + 250, + 55, + 78, + 120, + 44, + 55, + 38, + 98, + 36, + 38, + 40, + 185, + 67, + 50, + 85, + 120, + 130, + 70, + 260, + 110, + 40, + 90, + 170, + 185, + 170, + 72, + 125, + 54.5, + 180, + 200, + 30, + 290, + 47, + 500, + 350, + 175, + 34, + 180, + 120, + 380, + 75, + 100, + 38, + 115, + 68, + 250, + 75, + 55, + 500, + 98, + 60, + 55, + 149.5, + 170, + 48, + 105, + 160, + 280, + 275, + 60, + 130, + 105, + 83, + 450, + 58, + 135, + 38, + 48, + 70, + 65, + 65, + 240, + 100, + 160, + 190, + 53, + 245, + 140, + 75, + 155, + 32, + 160, + 120, + 148, + 150, + 390, + 68, + 180, + 500, + 165, + 40, + 68, + 55, + 175, + 120, + 130, + 89, + 285, + 105, + 230, + 50, + 100, + 190, + 280, + 150, + 235, + 150, + 65, + 38, + 120, + 55, + 45, + 260, + 80, + 130, + 150, + 35, + 175, + 64, + 50, + 75, + 73, + 138, + 150, + 150, + 89, + 70, + 75, + 110, + 80, + 350, + 118, + 330, + 65, + 220, + 150, + 340, + 80, + 80, + 60, + 110, + 180, + 140, + 230, + 55, + 222, + 95, + 47, + 85, + 75, + 100, + 85, + 65, + 280, + 265, + 170, + 38, + 51, + 33, + 160, + 370, + 85, + 300, + 75, + 60, + 33, + 200, + 95, + 38, + 120, + 75, + 48, + 145, + 40, + 200, + 65, + 80, + 120, + 11.5, + 125, + 75, + 70, + 135, + 500, + 90, + 130, + 63, + 50, + 40, + 160, + 67, + 79, + 500, + 145, + 99.5, + 160, + 60, + 138, + 75, + 75, + 183, + 160, + 130, + 75, + 50, + 59, + 65, + 40, + 450, + 37, + 55, + 75, + 170, + 31, + 33, + 230, + 61, + 85, + 55, + 88, + 30, + 70, + 125, + 47, + 115, + 145, + 140, + 145, + 50, + 185, + 240, + 55, + 56, + 65, + 65, + 160, + 320, + 250, + 88, + 120, + 80, + 155, + 50, + 200, + 170, + 50, + 55, + 58, + 66, + 125, + 62, + 270, + 45, + 72, + 200, + 60, + 120, + 175, + 55, + 175, + 165, + 130, + 120, + 380, + 330, + 43, + 220, + 35, + 140, + 70, + 35, + 155, + 75, + 250, + 40, + 80, + 60, + 120, + 380, + 100, + 120, + 250, + 65, + 68, + 130, + 500, + 76, + 190, + 68, + 60, + 160, + 220, + 115, + 350, + 120, + 160, + 125, + 77.5, + 125, + 160, + 70, + 160, + 150, + 350, + 50, + 99, + 50, + 70, + 45, + 98, + 400, + 77, + 59, + 70, + 95, + 90, + 60, + 175, + 55, + 125, + 95, + 47, + 170, + 42, + 35, + 55, + 90, + 190, + 48, + 60, + 450, + 450, + 225, + 50, + 60, + 90, + 68, + 185, + 77, + 135, + 160, + 220, + 270, + 45, + 170, + 126, + 37, + 270, + 135, + 49, + 85, + 120.000009, + 130, + 250, + 480, + 320, + 145, + 70, + 100, + 65, + 120, + 170, + 400, + 160, + 65, + 340, + 33, + 45, + 105, + 90, + 130, + 250, + 190, + 42, + 42, + 130, + 140, + 375, + 180, + 215, + 76, + 95, + 250, + 75, + 75, + 60, + 140, + 250, + 480, + 150, + 35, + 270, + 165, + 185, + 150, + 70, + 45, + 65, + 135, + 44, + 130, + 85, + 95, + 81, + 180, + 40, + 75, + 60, + 48, + 62, + 190, + 260, + 150, + 88, + 200, + 180, + 120, + 75, + 165, + 75, + 90, + 35, + 400, + 59.5, + 99, + 150, + 200, + 300, + 400, + 140, + 135, + 295, + 170, + 110, + 410, + 115, + 100, + 80, + 78, + 135, + 105, + 300, + 190, + 120, + 120, + 260, + 280, + 110, + 130, + 48, + 200, + 280, + 80, + 59, + 33, + 370, + 170, + 80, + 230, + 115, + 140, + 120, + 210, + 135, + 50, + 93, + 135, + 22, + 60, + 85, + 230, + 189, + 150, + 47, + 265, + 135, + 150, + 300, + 72, + 82, + 57.5, + 280, + 56, + 55, + 37, + 37, + 130, + 140, + 101, + 95, + 220, + 300, + 65, + 86, + 100, + 40, + 80, + 33, + 100, + 65, + 85, + 29.99, + 78, + 140, + 75, + 45, + 95, + 75, + 55, + 190, + 39, + 370, + 95, + 55, + 280, + 53.5, + 370, + 330, + 97, + 140, + 60, + 50, + 120, + 68, + 105, + 65, + 43, + 62.99, + 150, + 100, + 100, + 75, + 78, + 52, + 59.5, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 45, + 120, + 60, + 400, + 140, + 95, + 150, + 80, + 120, + 49, + 70, + 38, + 73, + 20, + 85, + 35, + 65, + 205, + 150, + 105, + 48, + 37, + 125, + 300, + 75, + 110, + 52, + 50, + 150, + 48, + 40, + 50, + 95, + 120, + 77, + 80, + 55, + 110, + 360, + 126, + 230, + 40, + 150, + 120, + 165, + 160, + 38, + 350, + 280, + 190, + 55, + 120, + 130, + 190, + 64, + 300, + 95, + 70, + 130, + 75, + 75, + 150, + 92, + 11, + 33, + 98, + 289, + 80, + 35, + 70, + 100, + 35, + 120, + 85, + 200, + 58, + 105, + 58, + 57, + 90, + 35, + 67, + 83, + 140, + 55, + 110, + 125, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 300, + 125, + 95, + 500, + 65, + 150, + 140, + 125, + 420, + 75, + 80, + 280, + 58, + 48, + 240, + 120, + 380, + 55, + 125, + 50, + 245, + 135, + 40, + 170, + 110, + 220, + 53, + 75, + 150, + 400, + 61, + 300, + 80, + 85, + 97, + 100, + 115, + 77, + 57, + 85, + 230, + 80, + 220, + 52, + 55, + 430, + 168, + 50, + 60, + 140, + 90, + 58, + 90, + 50, + 185, + 75, + 250, + 265, + 40, + 75, + 70, + 80, + 270, + 115, + 105, + 170, + 60, + 180, + 165, + 60, + 38, + 63, + 100, + 60, + 95, + 67, + 100, + 450, + 170, + 230, + 44, + 178, + 350, + 65, + 100, + 96, + 17.5, + 70, + 380, + 90, + 50, + 160, + 180, + 80, + 79.5, + 270, + 12, + 370, + 72, + 140, + 75, + 155, + 115, + 90, + 230, + 130, + 80, + 200, + 45, + 250, + 38, + 200, + 110, + 300, + 75, + 36, + 59, + 98, + 52, + 210, + 70, + 55, + 120, + 270, + 58, + 480, + 185, + 175, + 110, + 290, + 130, + 130, + 65, + 190, + 280, + 130, + 300, + 58, + 370, + 390, + 225, + 70, + 135, + 165, + 29, + 55, + 95, + 45, + 55, + 115, + 90, + 80, + 225, + 90, + 280, + 160, + 90, + 450, + 57, + 38, + 70, + 18.975, + 120, + 45, + 90, + 240, + 80, + 95, + 280, + 55, + 150, + 80, + 10, + 80, + 350, + 85, + 85, + 75, + 37, + 50, + 80, + 285, + 115, + 65, + 135, + 160, + 35, + 130, + 68, + 75, + 55, + 67, + 78, + 70, + 90, + 65, + 31, + 80, + 250, + 90, + 100, + 250, + 180, + 125, + 275, + 80, + 58, + 86, + 175, + 45, + 58, + 105, + 70, + 120, + 45, + 320, + 135, + 270, + 70, + 38, + 48, + 85, + 200, + 125, + 50, + 185, + 280, + 95, + 25, + 115, + 85, + 55, + 115, + 185, + 120, + 110, + 180, + 200, + 42, + 170, + 260, + 250, + 58, + 280, + 175, + 500, + 65, + 125, + 45, + 43, + 60, + 80, + 198, + 70, + 40, + 120, + 16.675, + 70, + 50, + 130, + 300, + 170, + 250, + 190, + 140.000009, + 120, + 46, + 140, + 92, + 300, + 76, + 230, + 350, + 45, + 46, + 50, + 80, + 170, + 50, + 47, + 250, + 55, + 130, + 320, + 380, + 85, + 190, + 380, + 50, + 52, + 72, + 85, + 66, + 130, + 65, + 82, + 70, + 300, + 120, + 58, + 52, + 46, + 400, + 90, + 87, + 150, + 270, + 190, + 47, + 180, + 270, + 39, + 80, + 75, + 70, + 275, + 195, + 45, + 70, + 150, + 130, + 75, + 105, + 35, + 40, + 150, + 250, + 37, + 100, + 140, + 97, + 130, + 180, + 120, + 60, + 80, + 160, + 180, + 260, + 59, + 100, + 250, + 160, + 47, + 130, + 165, + 55, + 160, + 170, + 47, + 45, + 65, + 55, + 65, + 110, + 155, + 81, + 231, + 100, + 165, + 180, + 165, + 44, + 110, + 90, + 280, + 300, + 77.5, + 53, + 225, + 48, + 110, + 155, + 150, + 80, + 75, + 95, + 80, + 120, + 70, + 160, + 140, + 50, + 68, + 50, + 69, + 50, + 410, + 210, + 150, + 68, + 110, + 43, + 47, + 88, + 80, + 79, + 125, + 160, + 160, + 125, + 67, + 35, + 60, + 140, + 130, + 160, + 420, + 78, + 170, + 33, + 200, + 160, + 55, + 165, + 195, + 85, + 35, + 170, + 74, + 420, + 280, + 45, + 55, + 75, + 230, + 450, + 85, + 68, + 55, + 190, + 380, + 75, + 200, + 300, + 65, + 125, + 47, + 47, + 45, + 55, + 52, + 55, + 170, + 135, + 195, + 230, + 250, + 250, + 270, + 78, + 43, + 65, + 55, + 390, + 95, + 300, + 120, + 95, + 65, + 170, + 76, + 80, + 48, + 240, + 140, + 55, + 197, + 130, + 58, + 350, + 198, + 180, + 68, + 100, + 280, + 230, + 35, + 95, + 140, + 110, + 49, + 90, + 57, + 250, + 125, + 350, + 112, + 85, + 75, + 80, + 75, + 40, + 170, + 100, + 145, + 130, + 88, + 275, + 42, + 300, + 82, + 45, + 300, + 55, + 58, + 65, + 38, + 40, + 170, + 120, + 150, + 40, + 90, + 150, + 280, + 100, + 65, + 75, + 59, + 100, + 120, + 45, + 50, + 385, + 165, + 70, + 25, + 45, + 110, + 93, + 50, + 170, + 78, + 450, + 78, + 220, + 300, + 200, + 135, + 120, + 65, + 200, + 70, + 47, + 65, + 76, + 120, + 120, + 75, + 90, + 320, + 130, + 63, + 48, + 280, + 130, + 400, + 35, + 185, + 110, + 350, + 48, + 100, + 55, + 120, + 165, + 110, + 175, + 42, + 75, + 77, + 75, + 198, + 75, + 60, + 185, + 120, + 250, + 35, + 100, + 250, + 45, + 100, + 63, + 185, + 50, + 58, + 130, + 87, + 80, + 65, + 63, + 120, + 400, + 115, + 72, + 34, + 176, + 125, + 170, + 30, + 70, + 250, + 350, + 36.5, + 400, + 52, + 275, + 250, + 36, + 130, + 30, + 155, + 60, + 150, + 200, + 270, + 350, + 60, + 300, + 100, + 51, + 45, + 49, + 60, + 65, + 130, + 165, + 20, + 90, + 75, + 200, + 50, + 240, + 135, + 150, + 44, + 60, + 95, + 150, + 95, + 55, + 70, + 170, + 220, + 112, + 120, + 180, + 90, + 55, + 95, + 250, + 130, + 75, + 45, + 300, + 52.8, + 65, + 44, + 120, + 120, + 160, + 235, + 43, + 120, + 120, + 78, + 65, + 37, + 220, + 110, + 150, + 80, + 135, + 73, + 160, + 200, + 80, + 68, + 35, + 175, + 170, + 150, + 80, + 90, + 129.5, + 60, + 110, + 150, + 60, + 190, + 51, + 75, + 220, + 350, + 43, + 250, + 85, + 65, + 63, + 125, + 230, + 67, + 250, + 33, + 75, + 340, + 63, + 180, + 155, + 50, + 36, + 90, + 232, + 95, + 350, + 75, + 120, + 60, + 420, + 150, + 160, + 70, + 85, + 150, + 95, + 120, + 35, + 160, + 72, + 200, + 85, + 60, + 38, + 120, + 198, + 120, + 90, + 500, + 60, + 46, + 285, + 280, + 65, + 49, + 220, + 50, + 130, + 96, + 68, + 210, + 62, + 350, + 50, + 140, + 135, + 90, + 120, + 80, + 115, + 120, + 55, + 135, + 180, + 150, + 65, + 150, + 48, + 107, + 85, + 450, + 150, + 130, + 83, + 55, + 145, + 108, + 70, + 450, + 230, + 220, + 60, + 70, + 75, + 60, + 70, + 130, + 150, + 120, + 75, + 60, + 130, + 55, + 75, + 250, + 76, + 125, + 65, + 450, + 40, + 124.5, + 70, + 115, + 55, + 95, + 95, + 38, + 70, + 50, + 45, + 150, + 80, + 150, + 60, + 85, + 37, + 300, + 220, + 120, + 85, + 120, + 120, + 400, + 130, + 47, + 250, + 70, + 26, + 59, + 300, + 155, + 75, + 75, + 500, + 80, + 140, + 31, + 350, + 65, + 40, + 52, + 84, + 76, + 235, + 130, + 190, + 80, + 45, + 125, + 57, + 200, + 85, + 45, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 90, + 170, + 98, + 31, + 125, + 70, + 390, + 185, + 60, + 400, + 82, + 75, + 250, + 85, + 75, + 98, + 35, + 160, + 160, + 350, + 20, + 70, + 400, + 80, + 125, + 120, + 58, + 140, + 62, + 185, + 90, + 110, + 40, + 35, + 95, + 500, + 130, + 190, + 130, + 78, + 55, + 67, + 235, + 85, + 80, + 34, + 200, + 450, + 78, + 49, + 75, + 63, + 38, + 190, + 120, + 180, + 128, + 225, + 50, + 45, + 300, + 140, + 70, + 45, + 130, + 250, + 110, + 58, + 100, + 275, + 40, + 185, + 85, + 350, + 180, + 33, + 200, + 450, + 200, + 47, + 260, + 100, + 33, + 170, + 33, + 260, + 105, + 56, + 33, + 200, + 350, + 62, + 300, + 44, + 450, + 170, + 150, + 140, + 120, + 250, + 180, + 105, + 150, + 165, + 250, + 40, + 87, + 60, + 150, + 69, + 55, + 53, + 60, + 68, + 85, + 46, + 80, + 120, + 75, + 120, + 180, + 65, + 380, + 45, + 80, + 120, + 160, + 98, + 70, + 48, + 75, + 78, + 50, + 280, + 48, + 295, + 75, + 180, + 180, + 230, + 75, + 330, + 55, + 200, + 85, + 60, + 85, + 60, + 280, + 195, + 55, + 35, + 120, + 140, + 40, + 170, + 56, + 185, + 110, + 120, + 70, + 280, + 65, + 70, + 450, + 120, + 14.8, + 95, + 180, + 60, + 70, + 210, + 85, + 49.5, + 135, + 47, + 75, + 190, + 105, + 270, + 125, + 160, + 180, + 165, + 220, + 75, + 50, + 80, + 170, + 90, + 55, + 93, + 95, + 50, + 135, + 52, + 78, + 180, + 85, + 45, + 50, + 105, + 110, + 300, + 140, + 45, + 95, + 110, + 190, + 64, + 310, + 68, + 93, + 78, + 270, + 140, + 150, + 41, + 250, + 130, + 40, + 160, + 160, + 75, + 69, + 500, + 85, + 100, + 58, + 200, + 100, + 59, + 125, + 88, + 80, + 130, + 58, + 270, + 82.5, + 75, + 50, + 43, + 55, + 75, + 300, + 115, + 35, + 68, + 250, + 75, + 190, + 78, + 69, + 90, + 80, + 69, + 500, + 90, + 295, + 83, + 140, + 180, + 100, + 350, + 55, + 150, + 100, + 67, + 37, + 60, + 140, + 48, + 120, + 50, + 70, + 500, + 47, + 250, + 200, + 70, + 40, + 85, + 70, + 75, + 400, + 60, + 85, + 45, + 400, + 64, + 60, + 100, + 95, + 65, + 80, + 165, + 30, + 45, + 60, + 80, + 175, + 63, + 200, + 60, + 75, + 85, + 260, + 65, + 135, + 70, + 105, + 150, + 300, + 250, + 67, + 95, + 130, + 230, + 55, + 32, + 120, + 50, + 110, + 42, + 120, + 125, + 102, + 160, + 50, + 62, + 360, + 480, + 38, + 260, + 90, + 48, + 36, + 300, + 125, + 190, + 65, + 65, + 150, + 80, + 165, + 60, + 90, + 80, + 75, + 58, + 57, + 210, + 350, + 70, + 85, + 120, + 87, + 85, + 145, + 35, + 115, + 55, + 27, + 140, + 72, + 88, + 200, + 120, + 400, + 70, + 450, + 46, + 270, + 120, + 80, + 39, + 115, + 300, + 79, + 190, + 125, + 400, + 65, + 65, + 50, + 38, + 100, + 55, + 75, + 285, + 66, + 140, + 37, + 45, + 185, + 41, + 140, + 116, + 350, + 46, + 180, + 65, + 50, + 160, + 62, + 180, + 39, + 300, + 430, + 50, + 280, + 69, + 80, + 350, + 75, + 450, + 80, + 135, + 100, + 340, + 45, + 52, + 175, + 45, + 70, + 82, + 70, + 32, + 160, + 47, + 59, + 125, + 49, + 250, + 65, + 250, + 200, + 170, + 125, + 78, + 450, + 130, + 50, + 70, + 190, + 180, + 300, + 77.5, + 250, + 55, + 200, + 95, + 95, + 60, + 170, + 500, + 49, + 50, + 500, + 60, + 32, + 160, + 150, + 56, + 120, + 42, + 120, + 100, + 40, + 85, + 40, + 60, + 70, + 160, + 120, + 75, + 80, + 70, + 105, + 50, + 40, + 56, + 98, + 60, + 40, + 20, + 300, + 225, + 70, + 65, + 368, + 160, + 100, + 63, + 58, + 80, + 85, + 170, + 170, + 69, + 380, + 350, + 115, + 100, + 130, + 38, + 95, + 500, + 100, + 37, + 230, + 350, + 270, + 140, + 320, + 220, + 85, + 125, + 105, + 55, + 39.8, + 500, + 140, + 160, + 135, + 80, + 70, + 160, + 115, + 60, + 60, + 45, + 120, + 80, + 40, + 400, + 185, + 210, + 110, + 36, + 82, + 350, + 240, + 50, + 230, + 37, + 370, + 25, + 130.013, + 145, + 120, + 180, + 65, + 105, + 79.5, + 190, + 75, + 180, + 110, + 100, + 58, + 400, + 80, + 90, + 110, + 135, + 130, + 90, + 210, + 39, + 62, + 235, + 70, + 40, + 180, + 190, + 150, + 37.5, + 39, + 55, + 70, + 155, + 135, + 41, + 180, + 80, + 165, + 150, + 65, + 100, + 280, + 240, + 47, + 145, + 100, + 120, + 180, + 108, + 230, + 95, + 130, + 70, + 120, + 110, + 67, + 45, + 57, + 100, + 24, + 36, + 47, + 40, + 75, + 180, + 85, + 65, + 120, + 88, + 160, + 110, + 58, + 150, + 45, + 67.5, + 65, + 180, + 310, + 190, + 65, + 80, + 100, + 50, + 220, + 270, + 270, + 88, + 270, + 290, + 250, + 45, + 370, + 120, + 280, + 250, + 85, + 80.000009, + 36, + 350, + 70, + 250, + 59.5, + 105, + 105, + 250, + 256, + 70, + 48.5, + 60, + 190, + 135, + 220, + 115, + 160, + 70, + 110, + 180, + 280, + 50, + 260, + 85, + 320, + 200, + 330, + 190, + 105, + 41.8, + 140, + 140, + 200, + 65, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 330, + 75, + 120, + 88, + 50, + 74, + 150, + 50, + 42, + 100, + 105, + 60, + 100, + 220, + 60, + 120, + 47, + 140, + 80, + 65, + 63, + 100, + 300, + 300, + 205, + 76, + 320, + 70, + 170, + 35, + 65, + 100, + 180, + 150, + 50, + 160, + 50, + 65, + 130, + 85, + 170, + 90, + 82, + 56, + 95, + 100, + 55, + 280, + 45, + 83, + 53, + 70, + 130, + 270, + 200, + 55, + 53, + 100, + 150, + 180, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 190, + 55, + 260, + 150, + 38, + 370, + 140, + 60, + 180, + 290, + 150, + 75, + 200, + 64, + 79.5, + 60, + 78, + 100, + 70, + 115, + 100, + 63, + 165, + 45, + 135, + 110, + 40, + 95, + 57, + 95, + 140, + 38, + 85, + 47, + 50, + 200, + 75, + 90, + 110, + 90, + 185, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 360, + 70, + 180, + 57, + 190, + 69, + 100, + 105, + 52, + 200, + 90, + 38, + 130, + 300, + 75, + 40, + 165, + 90, + 82, + 50, + 38, + 33, + 85, + 230, + 350, + 230, + 55, + 90, + 160, + 45, + 285, + 140, + 105, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 185, + 375, + 130, + 120, + 50, + 42, + 55, + 110, + 450, + 115, + 100, + 210, + 210, + 75, + 76, + 149, + 200, + 130, + 80, + 100, + 200, + 125, + 75, + 180, + 85, + 380, + 300, + 110, + 160, + 87, + 450, + 170, + 75, + 80, + 48, + 10, + 40, + 47, + 125, + 120, + 160, + 105, + 450, + 100, + 100, + 290, + 220, + 165, + 120, + 56, + 130, + 27, + 35, + 260, + 140, + 90, + 175, + 95, + 120, + 110, + 180, + 37, + 38, + 65, + 38, + 55, + 60, + 69, + 42, + 78, + 120, + 60, + 110, + 115, + 95, + 50, + 60, + 130, + 175, + 100, + 400, + 135, + 105, + 59, + 33, + 85, + 250, + 88, + 50, + 110, + 49, + 190, + 75, + 150, + 125, + 440, + 110, + 90, + 80, + 62, + 80, + 88, + 90, + 53, + 99, + 60, + 50, + 150, + 270, + 66.329, + 135, + 56, + 210, + 115, + 150, + 195, + 300, + 67, + 32, + 170, + 390, + 100, + 60, + 150, + 180, + 68, + 220, + 210, + 135, + 120, + 190, + 300, + 120, + 130, + 185, + 50, + 38, + 110, + 500, + 115, + 55, + 60, + 180, + 75, + 140, + 70, + 75, + 75, + 65, + 70, + 65, + 89, + 95, + 130, + 88, + 36, + 52, + 250, + 20, + 39.5, + 135, + 175, + 190, + 200, + 55, + 47, + 80, + 36, + 46.2, + 95, + 45, + 430, + 130, + 165, + 70, + 70, + 58, + 67, + 185, + 185, + 35, + 78, + 210, + 140, + 138, + 29, + 55, + 85, + 95, + 36, + 160, + 180, + 98, + 280, + 130, + 62, + 135, + 180, + 60, + 110, + 70, + 50, + 230, + 45, + 290, + 45, + 70, + 180, + 35, + 150, + 470, + 27, + 85, + 100, + 280, + 200, + 110, + 67, + 80, + 45, + 39, + 90, + 79.5, + 75, + 100, + 75, + 460, + 20, + 200, + 65, + 250, + 80, + 34, + 41, + 155, + 185, + 96, + 205, + 65, + 230, + 145, + 35, + 260, + 70, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 260, + 380, + 45, + 209, + 130, + 78, + 180, + 175, + 52, + 55, + 85, + 45, + 205, + 250, + 160, + 480, + 160, + 70, + 69, + 195, + 140, + 43, + 38, + 85, + 285, + 130, + 120, + 150, + 72, + 45, + 80, + 220, + 250, + 250, + 110, + 69, + 68, + 150, + 77, + 65, + 83, + 34.8, + 80, + 85, + 180, + 60, + 90, + 230, + 36, + 450, + 45, + 500, + 110, + 290, + 75, + 450, + 35, + 67, + 27, + 280, + 100, + 175, + 95, + 165, + 230, + 250, + 125, + 56, + 190, + 74, + 47, + 52, + 120, + 280, + 110, + 390, + 114, + 64, + 72, + 50, + 65, + 70, + 69, + 270, + 68, + 55, + 200, + 90, + 60, + 100, + 120, + 67.5, + 46, + 50, + 150, + 280, + 120, + 270, + 75, + 78, + 65, + 105, + 270, + 58, + 320, + 410, + 63, + 65, + 38, + 210, + 110, + 66, + 50, + 120, + 110, + 75, + 270, + 93, + 120, + 120, + 75.009009, + 300, + 80, + 120, + 110, + 75, + 160, + 120, + 75, + 43, + 220, + 140, + 80, + 98, + 399.999999, + 45, + 46, + 40, + 160, + 120, + 215, + 35, + 150, + 145, + 30, + 90, + 120, + 100, + 43, + 275, + 500, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 120, + 140, + 85, + 65, + 220, + 40, + 30, + 160, + 55, + 53, + 42, + 140, + 79.5, + 300, + 85, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 120, + 40, + 80, + 200, + 45, + 85, + 140, + 110, + 55, + 240, + 63, + 83, + 65, + 160, + 220, + 52, + 56, + 140, + 45, + 240, + 98, + 100, + 35, + 260, + 120, + 59, + 150, + 35, + 150, + 78, + 250, + 85, + 140, + 130, + 199.999, + 98, + 450, + 41, + 185, + 230, + 125, + 95, + 65, + 250, + 350, + 130, + 90, + 58, + 450, + 67.5, + 96, + 250, + 240, + 35, + 85, + 180, + 55, + 65, + 140, + 70, + 55, + 80, + 350, + 250, + 200, + 170, + 175, + 95, + 75, + 65, + 75, + 47, + 125, + 75, + 400, + 50, + 34, + 50, + 300, + 70, + 200, + 120, + 95, + 65, + 160, + 140, + 100, + 400, + 390, + 60, + 350, + 95, + 130, + 38, + 63, + 185, + 67, + 170, + 120, + 100, + 75, + 175, + 125, + 45, + 110, + 49, + 56, + 68, + 75, + 165, + 140, + 80, + 78, + 145, + 160, + 86, + 110, + 50, + 60, + 57, + 68, + 275, + 170, + 90, + 45, + 120, + 175, + 72, + 49, + 55, + 180, + 77, + 150, + 80, + 60, + 50, + 55, + 85, + 89, + 26, + 65, + 100, + 60, + 295, + 56, + 145, + 50, + 375, + 214, + 50, + 250, + 90, + 105, + 135, + 350, + 60, + 290, + 50, + 110, + 60, + 160.000009, + 165, + 33, + 122, + 49.5, + 55, + 105, + 72, + 88, + 100, + 150, + 135, + 52, + 350, + 50, + 125, + 56, + 25, + 98, + 100, + 77, + 70, + 170, + 60, + 250, + 270, + 120, + 290, + 40, + 88, + 72, + 51, + 50, + 129, + 90, + 90, + 135, + 410, + 120, + 230, + 450, + 72, + 160, + 85, + 130, + 100, + 55, + 340, + 43, + 435, + 180, + 190, + 65, + 87, + 230, + 95, + 434, + 105, + 165, + 145, + 72, + 220, + 125, + 95, + 98, + 35, + 40, + 140, + 145, + 75, + 85, + 75, + 225, + 110, + 65, + 200, + 100, + 400, + 70, + 190, + 120, + 18.5, + 200, + 120, + 38, + 40, + 115, + 90, + 325, + 110, + 198, + 135, + 65, + 180, + 92, + 368, + 84, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 93, + 98, + 250, + 400, + 200, + 42, + 220, + 270, + 95, + 155, + 95, + 110, + 68, + 295, + 39, + 150, + 110, + 175, + 30, + 55, + 49, + 400, + 55, + 52, + 95, + 50, + 100, + 70, + 57, + 55, + 41, + 48, + 180, + 280, + 55, + 350, + 100, + 130, + 55, + 47, + 59, + 65, + 210, + 110, + 52, + 160, + 140, + 35, + 112, + 60, + 205, + 66, + 72, + 130, + 120, + 40, + 10, + 170, + 270, + 34, + 55, + 60, + 82, + 47, + 125, + 190, + 73, + 48, + 150, + 145, + 300, + 100, + 53, + 170, + 65, + 500, + 90, + 220, + 85, + 62, + 38, + 45, + 160, + 95, + 200, + 70, + 160, + 120, + 60, + 150, + 120, + 400, + 70, + 120, + 45, + 61, + 60, + 32, + 120, + 55, + 210, + 150, + 170, + 41, + 95, + 45, + 50, + 75, + 280, + 155, + 70, + 85, + 65, + 48, + 100, + 250, + 390, + 95, + 75, + 155, + 165, + 43, + 100, + 45, + 85, + 105, + 195, + 270, + 55, + 230, + 65, + 62, + 320, + 55, + 90, + 70, + 100, + 270, + 60, + 105, + 40, + 250, + 120, + 58, + 115, + 16, + 62, + 300, + 47, + 100, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 160, + 60, + 49.5, + 53, + 50, + 170, + 77, + 70, + 100, + 150, + 47, + 135, + 90, + 65, + 115, + 200, + 47, + 78, + 500, + 400, + 60, + 36, + 55, + 62, + 340, + 60, + 35, + 31, + 155, + 78, + 67, + 100, + 115, + 220, + 65, + 130, + 120, + 160, + 75, + 65, + 180, + 67, + 120, + 41, + 78, + 90, + 35, + 70, + 145, + 170, + 110, + 95, + 35, + 220, + 165, + 52, + 15, + 95, + 75, + 55, + 85, + 350, + 80, + 85, + 110, + 350, + 100, + 380, + 75, + 90, + 52, + 95, + 380, + 300, + 450, + 130, + 47, + 250, + 120, + 65, + 75, + 68, + 250, + 175, + 55, + 135, + 80, + 130, + 50, + 320, + 285, + 155, + 180, + 37, + 145, + 55, + 85, + 250, + 65, + 52, + 200, + 220, + 85, + 135, + 110, + 90, + 185, + 90, + 250, + 42, + 55, + 30, + 100, + 350, + 85, + 120, + 45, + 85, + 280, + 120, + 170, + 105, + 430, + 90, + 180, + 420, + 80, + 175, + 480, + 75, + 90, + 65, + 120, + 95, + 68, + 62, + 170, + 75, + 40, + 75, + 140, + 75, + 140, + 47, + 40, + 480, + 150, + 350, + 160, + 33, + 42, + 140, + 175, + 75, + 140, + 38, + 111, + 155, + 30, + 105, + 86, + 170, + 200, + 160, + 155, + 60, + 350, + 45, + 220, + 220, + 160, + 45, + 125, + 38, + 115, + 76, + 130, + 150, + 120, + 100, + 56, + 160, + 350, + 130, + 330, + 33, + 150, + 88, + 290, + 35, + 235, + 70, + 155, + 55, + 80, + 120, + 160, + 275, + 43.2, + 105, + 400, + 85, + 60, + 120, + 450, + 70, + 59, + 100, + 50, + 55, + 85, + 60, + 280, + 106, + 67, + 130, + 110, + 170, + 58, + 95, + 350.035, + 70, + 75, + 85, + 100, + 30, + 110, + 52, + 30, + 40, + 150, + 400, + 60, + 140, + 150, + 55, + 190, + 110, + 130, + 30, + 57, + 70, + 190, + 38.99, + 80, + 75, + 150, + 390, + 85, + 38, + 230, + 150, + 260, + 430, + 500, + 90, + 85, + 75, + 37, + 95, + 280, + 130, + 140, + 78, + 55, + 160, + 190, + 200, + 175, + 90, + 230, + 460, + 75, + 100, + 130, + 180, + 140, + 37, + 120, + 420, + 62, + 120, + 80, + 185, + 160, + 185, + 85, + 58, + 63, + 49, + 150, + 300, + 55, + 55, + 160.000999, + 350, + 14, + 170, + 70, + 130, + 55, + 53, + 348, + 40, + 360, + 65, + 210, + 80, + 49.9, + 48, + 120, + 140, + 68, + 94, + 40, + 450, + 320, + 170, + 180, + 350, + 54, + 150, + 80, + 305, + 170, + 65, + 70, + 65, + 70, + 95, + 70, + 270, + 170, + 45, + 70, + 60, + 85, + 320, + 90, + 110, + 92, + 290, + 36, + 75, + 35, + 300, + 80, + 120, + 130, + 240, + 170, + 450, + 75, + 65, + 90, + 140, + 100, + 180, + 72, + 120, + 105, + 75, + 95, + 63, + 45, + 50, + 38, + 400, + 150, + 180, + 140, + 460, + 100, + 80, + 220, + 121, + 73.1, + 450, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 400, + 60, + 105, + 40, + 75, + 40, + 125, + 80, + 55, + 65, + 35, + 48, + 47, + 220, + 150, + 45, + 63, + 62, + 69, + 300, + 130, + 65, + 220, + 84, + 150, + 120, + 55, + 65, + 155, + 262, + 220, + 155, + 165, + 80, + 65, + 250, + 85, + 160, + 65, + 85, + 240, + 145, + 270, + 67, + 58, + 350, + 500, + 25, + 175, + 58, + 250, + 70, + 55, + 150.005, + 60, + 90, + 125, + 39, + 36, + 90, + 69, + 150, + 300, + 125, + 83, + 90, + 65, + 200, + 70, + 47, + 95, + 58, + 69, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 90, + 80, + 180, + 40, + 180, + 61, + 148, + 200, + 47, + 85, + 140, + 180, + 45, + 165, + 90, + 125, + 92, + 58, + 140, + 48, + 125, + 98, + 77, + 180, + 115, + 260, + 34.1, + 95, + 200, + 55, + 40, + 80, + 120 + ], + "xaxis": "x2", + "yaxis": "y2" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Distribution of Prices" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Price" + } + }, + "xaxis2": { + "anchor": "y2", + "domain": [ + 0, + 1 + ], + "matches": "x", + "showgrid": true, + "showticklabels": false + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 0.8316 + ], + "title": { + "text": "count" + } + }, + "yaxis2": { + "anchor": "x2", + "domain": [ + 0.8416, + 1 + ], + "matches": "y2", + "showgrid": false, + "showline": false, + "showticklabels": false, + "ticks": "" + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "px.histogram(data_frame=lagos, x=\"Price\",marginal=\"box\", \n", + " nbins=120, title=\"Distribution of Prices\")" + ] + }, + { + "cell_type": "markdown", + "id": "99c6d804", + "metadata": {}, + "source": [ + "It seems the average price for sale of a house in Lagos is about 55 million naira" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "f651da5e", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Newly Built=1
Price=%{x}
count=%{y}", + "legendgroup": "1", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "1", + "nbinsx": 120, + "offsetgroup": "1", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 57, + 230, + 300, + 140, + 140, + 120, + 85, + 43, + 90, + 29, + 70, + 80, + 170, + 48, + 63, + 85, + 45, + 120, + 75, + 79, + 240, + 300, + 80, + 140, + 270, + 49, + 450, + 400, + 300, + 105, + 350, + 150, + 57, + 290, + 110, + 240, + 110, + 55, + 425, + 140, + 300, + 100, + 68, + 95, + 260, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 120, + 78, + 70, + 45, + 100, + 38, + 75, + 90, + 90, + 68, + 220, + 54, + 155, + 280, + 48, + 63, + 250, + 220, + 130, + 170, + 95, + 160, + 68, + 170, + 198, + 205, + 69, + 85, + 80, + 205, + 200, + 80, + 75, + 100, + 73, + 80, + 230, + 130, + 98, + 68, + 75, + 75, + 220, + 130, + 95, + 200, + 70, + 220, + 70, + 53, + 210, + 140, + 160, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 300, + 65, + 75, + 125, + 115, + 125, + 85, + 57, + 95, + 350, + 62, + 150, + 90, + 170, + 150, + 260, + 450, + 65, + 220, + 155, + 70, + 102, + 65, + 62, + 50, + 59, + 200, + 130, + 98, + 350, + 160, + 165, + 143, + 35, + 85, + 130, + 200, + 90, + 59.9, + 200, + 60, + 180, + 160, + 130, + 75, + 60, + 100, + 110, + 52, + 170, + 60, + 125, + 57, + 90, + 85, + 160, + 123, + 170, + 55, + 45, + 190, + 200, + 140, + 84, + 30, + 45, + 100, + 50, + 125, + 350, + 125, + 80, + 260, + 500, + 135, + 85, + 205, + 85, + 53, + 52, + 72, + 320, + 170, + 300, + 250, + 97, + 120, + 110, + 370, + 170, + 110, + 37, + 75, + 200, + 60, + 120, + 65, + 280, + 70, + 105, + 120, + 45, + 55, + 400, + 68, + 55, + 240, + 230, + 36, + 180, + 66, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 180, + 200, + 260, + 60, + 65, + 300, + 80, + 300, + 150, + 80, + 200, + 265, + 250, + 105, + 150, + 105, + 300, + 125, + 110, + 117, + 120, + 100, + 65, + 65, + 120, + 60, + 35, + 79, + 33, + 400, + 85, + 350, + 66, + 50, + 180, + 400, + 115, + 150, + 130, + 85, + 50, + 50, + 150, + 120, + 75, + 14, + 75, + 37, + 98, + 60, + 90, + 135, + 160, + 160, + 110, + 112, + 45, + 85, + 85, + 120, + 137, + 70, + 500, + 290, + 60, + 37, + 38, + 278, + 320, + 190, + 75, + 55, + 185, + 79, + 85, + 98, + 185, + 130, + 350, + 130, + 390, + 290, + 95, + 65, + 75, + 65, + 160, + 230, + 175, + 90, + 50, + 160, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 130, + 65, + 75, + 280, + 130, + 80, + 90, + 130, + 200, + 185, + 295, + 200, + 75, + 55, + 60, + 185, + 85, + 290, + 140, + 80, + 370, + 90, + 250, + 66, + 48, + 120, + 280, + 48, + 65, + 65, + 56, + 90, + 45, + 180, + 195, + 270, + 250, + 80, + 35, + 75, + 500, + 60, + 45, + 75, + 140, + 20, + 185, + 170, + 45, + 65, + 360, + 37, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 43, + 130, + 89, + 300, + 65, + 40, + 140, + 150, + 175, + 250, + 150, + 120, + 500, + 430, + 95, + 75, + 100, + 110, + 95, + 45, + 125, + 100, + 350, + 180, + 50, + 125, + 65, + 120, + 40, + 67, + 350, + 94, + 75, + 200, + 120, + 55, + 40, + 60, + 250, + 120, + 100, + 40.5, + 95, + 198, + 290, + 85, + 125, + 70, + 80, + 200, + 170, + 39, + 67, + 70, + 38, + 250, + 450, + 250, + 225, + 299.999999, + 99, + 60, + 67, + 70, + 50, + 80, + 60.9, + 80, + 58, + 102, + 280, + 140, + 50, + 48, + 115, + 210, + 88, + 160, + 83, + 76, + 135, + 110, + 85, + 210, + 60, + 450, + 130, + 98, + 240, + 90, + 170, + 59, + 130, + 240, + 33, + 95, + 90, + 30, + 47, + 110, + 155, + 67, + 35, + 45, + 160, + 56.5, + 230, + 105, + 150, + 130, + 55, + 170, + 450, + 95, + 84, + 60, + 55, + 80, + 220, + 70, + 110, + 205, + 120, + 110, + 140, + 350, + 37, + 400, + 49.5, + 120, + 95, + 200, + 500, + 155, + 230, + 95, + 110, + 120, + 95, + 165, + 75, + 42.5, + 75, + 115, + 150, + 145, + 140, + 180, + 38, + 185, + 65, + 280, + 360, + 75, + 415, + 250, + 40, + 230, + 145, + 130, + 120, + 47, + 220, + 120, + 58, + 270, + 45, + 135, + 80, + 40, + 65, + 120, + 110, + 165, + 50, + 300, + 170, + 290, + 38, + 50, + 100, + 301, + 57, + 100, + 450, + 42, + 110, + 450, + 145, + 60, + 44, + 118, + 180, + 157, + 85, + 140, + 115, + 90, + 150, + 300, + 80, + 57, + 420, + 115, + 120, + 57, + 73, + 110, + 55, + 68, + 49.9, + 198, + 58, + 125, + 72, + 150, + 100, + 90, + 75, + 85, + 160, + 50, + 58, + 45, + 100, + 500, + 50, + 450, + 66, + 180, + 78, + 80, + 210, + 130, + 70, + 80, + 49, + 70, + 68, + 85, + 70, + 88, + 65, + 145, + 14, + 52, + 48, + 470, + 55, + 97, + 57, + 65, + 145, + 75, + 75, + 46, + 160, + 150, + 110, + 90, + 78, + 150, + 60, + 225, + 203, + 210, + 67, + 79, + 95, + 120, + 75, + 50, + 65, + 270, + 80, + 280, + 255, + 360, + 40, + 72, + 82, + 160, + 40, + 250, + 95, + 130, + 85, + 110, + 300, + 48, + 40, + 200, + 76, + 270, + 250, + 126, + 100, + 79, + 90, + 105, + 180, + 330, + 380, + 260, + 42, + 65, + 240, + 63, + 32, + 56, + 50, + 165, + 77, + 280, + 120, + 155, + 70, + 240, + 49, + 160, + 190, + 190, + 75, + 170, + 170, + 76, + 85, + 95, + 95, + 190, + 130, + 115, + 120, + 38, + 275, + 90, + 95, + 45, + 105, + 130, + 155.7, + 65, + 33, + 165, + 80, + 135, + 60, + 78, + 165, + 95, + 74, + 50, + 135, + 260, + 175, + 85, + 92, + 160, + 85, + 160, + 52, + 100, + 85, + 250, + 170, + 190, + 73, + 170, + 450, + 390, + 51, + 120, + 500, + 400, + 170, + 100, + 392, + 170, + 55, + 120, + 65, + 45, + 85, + 190, + 230, + 160, + 57, + 250, + 360, + 60, + 78, + 60, + 450, + 95, + 160, + 250, + 125, + 270, + 35, + 70, + 55, + 35, + 33, + 98, + 75, + 135, + 60, + 39, + 85, + 250, + 110, + 47, + 220, + 250, + 80, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 63, + 200, + 410, + 135, + 95, + 300, + 130, + 280, + 55, + 55, + 75, + 68, + 82, + 135, + 200, + 270, + 130, + 183, + 85, + 240, + 74, + 180, + 45, + 47, + 59.5, + 190, + 48, + 65, + 85, + 100, + 100, + 69, + 65, + 180, + 28, + 47, + 140, + 95, + 60, + 95, + 98, + 67, + 125, + 100, + 175, + 150, + 36, + 165, + 240, + 69, + 150, + 115, + 49, + 120, + 180, + 75, + 55, + 300, + 45, + 400, + 280, + 33, + 120, + 270, + 150, + 79, + 65, + 400, + 123, + 170, + 98, + 33, + 195, + 80, + 45, + 77, + 130, + 95, + 145, + 170, + 57, + 50, + 53, + 76, + 93, + 40, + 57, + 37, + 130, + 80, + 290, + 270, + 115, + 56, + 158, + 380, + 300, + 90, + 90, + 68, + 75, + 72, + 220, + 100, + 40, + 70, + 70, + 45, + 110, + 370, + 145, + 40, + 65, + 130, + 155, + 195, + 250, + 65, + 120, + 62, + 110, + 170, + 150, + 280, + 120, + 158, + 380, + 75, + 95, + 110, + 75, + 400, + 105, + 36.5, + 33, + 58, + 85, + 88, + 57, + 185, + 32, + 49, + 83, + 180, + 110, + 170, + 75, + 43.5, + 125, + 60, + 75, + 145, + 75, + 45, + 110, + 69, + 270, + 105, + 30, + 360, + 95, + 54, + 180, + 52, + 270, + 350, + 80, + 65, + 58, + 60, + 250, + 48, + 100, + 200, + 76, + 170, + 135, + 135, + 46, + 285, + 130, + 450, + 65, + 170, + 230, + 350, + 59.5, + 83, + 155, + 85, + 400, + 19.975, + 130, + 500, + 250, + 245, + 59, + 69.99, + 63, + 200, + 148, + 70, + 140, + 100, + 48, + 70, + 48, + 265, + 55, + 70, + 150, + 93, + 115, + 35, + 55, + 115, + 57, + 45, + 45, + 95, + 330, + 500, + 185, + 160, + 150, + 275, + 11.6, + 42, + 118, + 77, + 37, + 75, + 79, + 80, + 350, + 100, + 70, + 220, + 105, + 65, + 300, + 120, + 230, + 110, + 45, + 150, + 75, + 480, + 80, + 150, + 210, + 65, + 60, + 185, + 70, + 110, + 200, + 280, + 30, + 330, + 270, + 58, + 77, + 350, + 58, + 145, + 60, + 260, + 160, + 430, + 285, + 150, + 450, + 140, + 135, + 59, + 65, + 150, + 80, + 195, + 120, + 220, + 80, + 48, + 130, + 180, + 205, + 80, + 69, + 165, + 77, + 57, + 73, + 300, + 260, + 85, + 80, + 380, + 125, + 75, + 130, + 300, + 50, + 150, + 75, + 95, + 183, + 120, + 55, + 55, + 52, + 190, + 200, + 65, + 220, + 195, + 70, + 90, + 60, + 130, + 197.5, + 69.5, + 38, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 60, + 97, + 240, + 350, + 68, + 230, + 125, + 100, + 95, + 54, + 58, + 45, + 165, + 60, + 46, + 220, + 57, + 170, + 125, + 65, + 67, + 185, + 180, + 140, + 75, + 275, + 360, + 38, + 90, + 65, + 58, + 95, + 63, + 270, + 250, + 75, + 350, + 200, + 120, + 35, + 75, + 68, + 140, + 190, + 150, + 57, + 48, + 210, + 30, + 140, + 255, + 120, + 67, + 200, + 110, + 360, + 130, + 120, + 95, + 170, + 300, + 280, + 52, + 63, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 55, + 140, + 130, + 150, + 280, + 90, + 47, + 120, + 280, + 220, + 67, + 210, + 37, + 235, + 130, + 160, + 220, + 280, + 135, + 185, + 350, + 85, + 105, + 85, + 78, + 98, + 200, + 81, + 130, + 43, + 48, + 150, + 105, + 350, + 480, + 130, + 150, + 200, + 110, + 78, + 56, + 168, + 120, + 130, + 49, + 130, + 320, + 100, + 100, + 120, + 50, + 90, + 230, + 90, + 280, + 80, + 55, + 140, + 95, + 180, + 400, + 80, + 500, + 160, + 100, + 58, + 150, + 85, + 55, + 155, + 68, + 110, + 54, + 295, + 155, + 120, + 140, + 97, + 90, + 80, + 100, + 260, + 115, + 62, + 150, + 28, + 180, + 190, + 170, + 80, + 220, + 53, + 62, + 160, + 85, + 72, + 160, + 55, + 280, + 55, + 125, + 150, + 45, + 150, + 75, + 60, + 260, + 95, + 170, + 300, + 205, + 75, + 75, + 160, + 120, + 170, + 40, + 36, + 130, + 70, + 450, + 78, + 200, + 175, + 130, + 250, + 95, + 85, + 47, + 53, + 250, + 395, + 70, + 80, + 125, + 80, + 55, + 150, + 135, + 120, + 145, + 450, + 70, + 290, + 45, + 80, + 80, + 170, + 450, + 85, + 65, + 65, + 58, + 35, + 75, + 250, + 100, + 160, + 170, + 90, + 60, + 130, + 135, + 52, + 160, + 110, + 35, + 450, + 80, + 450, + 350, + 120, + 250, + 110, + 135, + 230, + 190, + 88, + 125, + 80, + 50, + 180, + 110, + 105, + 74, + 150, + 75, + 75, + 30, + 110, + 65, + 55, + 90, + 70, + 350, + 95, + 170, + 200, + 59, + 120, + 165, + 67, + 127, + 64.1, + 58, + 80, + 160, + 55, + 130, + 330, + 72, + 52, + 260, + 95, + 130, + 200, + 500, + 75, + 190, + 68, + 33, + 56, + 90, + 270, + 95, + 62, + 120, + 185, + 66, + 38, + 45, + 250, + 120, + 20, + 140, + 120, + 130, + 110, + 110, + 110, + 220, + 450, + 35, + 70, + 65, + 105, + 60, + 250, + 95, + 135, + 73, + 100, + 85, + 110, + 60, + 130, + 300, + 33, + 40, + 220, + 150, + 65, + 45, + 33, + 55, + 260, + 105, + 65, + 55, + 135, + 270, + 95, + 95, + 50, + 250, + 170, + 33, + 44, + 48, + 400, + 110, + 58, + 65, + 250, + 50, + 135, + 47, + 65, + 80, + 72, + 230, + 120, + 90, + 155, + 250, + 57, + 85, + 51, + 90, + 170, + 143, + 140, + 300, + 75, + 180, + 280, + 49, + 46, + 270, + 85, + 79, + 83, + 65, + 65, + 50, + 40, + 120, + 59, + 60, + 40, + 33, + 155, + 175, + 160, + 72, + 300, + 175, + 40, + 73, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 170, + 80, + 160, + 50, + 90, + 50, + 330, + 58, + 60, + 65, + 230, + 500, + 75, + 115, + 140, + 200, + 165, + 165, + 30, + 69, + 65, + 77.5, + 90, + 75, + 85, + 46, + 76, + 70, + 52, + 65, + 450, + 160, + 51, + 80, + 63.1, + 470, + 300, + 160, + 77, + 400, + 60, + 150, + 58, + 57, + 115, + 78, + 480, + 150, + 150, + 50, + 130, + 100, + 210, + 180, + 130, + 80, + 150, + 285, + 74.1, + 130, + 65, + 110, + 100, + 62, + 81, + 170, + 72, + 130, + 77, + 250, + 55, + 36.5, + 130, + 150, + 190, + 90, + 95, + 65, + 150, + 500, + 90, + 44, + 280, + 200, + 400, + 250, + 75, + 230, + 500, + 190, + 160, + 90, + 235, + 280, + 55, + 250, + 85, + 76, + 255, + 120, + 173, + 44, + 135, + 155, + 460, + 175, + 47, + 190, + 155, + 360, + 72, + 45, + 65, + 220, + 80, + 145, + 85, + 44, + 79, + 200, + 59, + 130, + 75, + 380, + 165, + 68, + 190, + 320, + 68, + 145, + 235, + 420, + 58, + 70, + 90, + 55, + 200, + 195, + 95, + 280, + 360, + 250, + 175, + 85, + 90, + 62, + 190, + 130, + 38.5, + 37, + 96, + 45, + 270, + 115, + 70, + 75, + 100, + 140, + 165, + 170, + 45, + 120, + 135, + 140, + 145, + 185, + 500, + 38, + 106, + 85, + 68, + 135, + 480, + 155, + 42, + 49, + 37, + 53, + 80, + 40, + 75, + 125, + 215, + 180, + 57, + 57, + 150, + 180, + 150, + 125, + 88, + 90, + 250, + 55, + 160, + 140, + 45, + 150, + 480, + 150, + 90, + 130, + 200, + 250, + 380, + 100, + 500, + 75, + 170, + 70, + 80, + 189, + 85, + 260, + 130, + 280, + 95, + 82, + 120, + 70, + 380, + 45, + 76, + 58, + 270, + 65, + 75, + 32, + 310, + 130, + 240, + 150, + 120, + 65, + 75, + 45, + 350, + 40, + 180, + 155, + 300, + 90, + 185, + 53, + 38, + 50, + 51.5, + 57, + 57, + 150, + 90, + 125, + 220, + 240, + 250, + 55, + 85, + 90, + 75, + 100, + 80, + 80.000005, + 500, + 62, + 73, + 380, + 160, + 170, + 310, + 170, + 80, + 85, + 290, + 70, + 185, + 50, + 40, + 70, + 180, + 105, + 290, + 150, + 90, + 120, + 250, + 320, + 70, + 67, + 130, + 75, + 140, + 45, + 270, + 190, + 100, + 250, + 110, + 165, + 37, + 50, + 50, + 125, + 54, + 85, + 140, + 60, + 400, + 250, + 450, + 38, + 185, + 38, + 270, + 85, + 55, + 351, + 85, + 135, + 82, + 180, + 57, + 133, + 240, + 500, + 348, + 140, + 65, + 180, + 58, + 150, + 68, + 145, + 150, + 46, + 35, + 500, + 235, + 370, + 87, + 59, + 220, + 65, + 69, + 105, + 190, + 75, + 130, + 85, + 150, + 40, + 85, + 100, + 52, + 70, + 150, + 450, + 130, + 28, + 85, + 230, + 125, + 280, + 135, + 90, + 130, + 85, + 100, + 55, + 65, + 70, + 102, + 105, + 160, + 70, + 45, + 46, + 300, + 140, + 100, + 165, + 90, + 40, + 75, + 19.975, + 60, + 45, + 290, + 65, + 90, + 115, + 50, + 360, + 90, + 130, + 60, + 30, + 65, + 65, + 250, + 55, + 100, + 400, + 85, + 90, + 360, + 160, + 65, + 100, + 39, + 45, + 350, + 120, + 125, + 300, + 220, + 145, + 80, + 198, + 320, + 250, + 230, + 35, + 135, + 200, + 300, + 69.99, + 34, + 110, + 33, + 400, + 86, + 80, + 65, + 100.99, + 38, + 350, + 85, + 85, + 150, + 53, + 90, + 370, + 160, + 150, + 65, + 120, + 260, + 180, + 155, + 75, + 105, + 150, + 115, + 67, + 50, + 200, + 100, + 48, + 100, + 160, + 180, + 65, + 120, + 45, + 200, + 53, + 130, + 130, + 17.675, + 90, + 140, + 120, + 60, + 70, + 125, + 68, + 115, + 48, + 72, + 130, + 66, + 65, + 180, + 57, + 295, + 78, + 175, + 80, + 65, + 85, + 78, + 175, + 205, + 135, + 260, + 360, + 175, + 80, + 65, + 65, + 83, + 150, + 110, + 250, + 190, + 55, + 60, + 185, + 48, + 230, + 100, + 45, + 80, + 380, + 135, + 100, + 300, + 60, + 130, + 92, + 220, + 65, + 120, + 55, + 165, + 90, + 90, + 190, + 65, + 165, + 100, + 120, + 55, + 270, + 135, + 350, + 260, + 280, + 420, + 42, + 130, + 85, + 140, + 62, + 60, + 75, + 90, + 58, + 85, + 165, + 265, + 110, + 80, + 90, + 270, + 47, + 78, + 24, + 180, + 128, + 175, + 170, + 90, + 75, + 85, + 135, + 70, + 80, + 280, + 75, + 170, + 65, + 65, + 380, + 60, + 69, + 85, + 57, + 155, + 395, + 200, + 480, + 85, + 100, + 85, + 69, + 38.9, + 75, + 36, + 85, + 85, + 47, + 65, + 55, + 55, + 230, + 65, + 50, + 53.5, + 320, + 250, + 70, + 65, + 220, + 79.5, + 115, + 95, + 68, + 200, + 167, + 200, + 230, + 300, + 200, + 250, + 58, + 60, + 125, + 230, + 85, + 60, + 150, + 160, + 60, + 76, + 85, + 45, + 270, + 150, + 75, + 110, + 115, + 235, + 70, + 250, + 80, + 52, + 180, + 80, + 350, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 56, + 145, + 80, + 55, + 80, + 48, + 63, + 300, + 35, + 50, + 95, + 185, + 300, + 110, + 150, + 200, + 140, + 55, + 87, + 108, + 150, + 145, + 90, + 50, + 65, + 40, + 90, + 83, + 88, + 140, + 200, + 300, + 100, + 185, + 450, + 65, + 38.5, + 200, + 140, + 100, + 70, + 105, + 310, + 390, + 55, + 75, + 80, + 45, + 170, + 285, + 200, + 50, + 145, + 55, + 75, + 135, + 135, + 54.5, + 60, + 180, + 110, + 100, + 90, + 135, + 100, + 120, + 110, + 500, + 250, + 36, + 55, + 500, + 65, + 95, + 300, + 45, + 145, + 90, + 120, + 68, + 155, + 155, + 500, + 95, + 60, + 150, + 210, + 63.1, + 84, + 60, + 130, + 75, + 150, + 40, + 145, + 65, + 100, + 150, + 250, + 82, + 50, + 63, + 39, + 65, + 125, + 85, + 40, + 110, + 250, + 140, + 45, + 95, + 17.675, + 285, + 45, + 230, + 350, + 42, + 85, + 370, + 60, + 75, + 62, + 187, + 48, + 180, + 62, + 85, + 90, + 105, + 250, + 250, + 80, + 148, + 60, + 45, + 160, + 255, + 85, + 250, + 65, + 87, + 165, + 140, + 30, + 300, + 50, + 100, + 200, + 50, + 60, + 120, + 350, + 57, + 93, + 175, + 63, + 250, + 52, + 165, + 55, + 85, + 130, + 100, + 200, + 140, + 140, + 170, + 60, + 105, + 250, + 250, + 85, + 77.5, + 70, + 75, + 70, + 45, + 50, + 175, + 60, + 300, + 120, + 100, + 55, + 120, + 235, + 350, + 40, + 55, + 41, + 150, + 49.5, + 300, + 145, + 49.9, + 54, + 195, + 68, + 140, + 261, + 85, + 55, + 110, + 200, + 260, + 41, + 140, + 90, + 95, + 115, + 55, + 47, + 120, + 55, + 60, + 102, + 42, + 42, + 110, + 50, + 110, + 40, + 35, + 140, + 120, + 150, + 250, + 125, + 370, + 200, + 400, + 70, + 40, + 38, + 190, + 120, + 45, + 45, + 145, + 75, + 160, + 67, + 66, + 72, + 275, + 47.799, + 82, + 190, + 170, + 150, + 150, + 300, + 75, + 200, + 68, + 150, + 48, + 120, + 85.5, + 90, + 110, + 120, + 75, + 100, + 45, + 170, + 150, + 210, + 125, + 350, + 100, + 150, + 80, + 300, + 55, + 60, + 300, + 59, + 125, + 65, + 138, + 450, + 130, + 250, + 48, + 46, + 480, + 70, + 135, + 275, + 460, + 140, + 340, + 48, + 55, + 70, + 56, + 150, + 90, + 42, + 79, + 150, + 45, + 80, + 370, + 125, + 180, + 60, + 160, + 65, + 140, + 270, + 170, + 39, + 150, + 130, + 175, + 390, + 70, + 160, + 230, + 75, + 63, + 75, + 80, + 110, + 165, + 160, + 75, + 93, + 85, + 95, + 72, + 35, + 38, + 165, + 59, + 130, + 165, + 120, + 53, + 185, + 100, + 180, + 56.000099, + 95, + 230, + 55, + 72, + 270, + 85, + 180, + 115, + 85, + 180, + 180, + 180, + 68, + 55, + 43, + 180, + 80, + 80, + 68, + 180, + 55, + 125, + 62, + 62, + 145, + 220, + 150, + 300, + 320, + 150, + 60, + 90, + 95, + 78, + 52, + 125, + 34, + 200, + 140, + 38, + 150, + 190, + 350, + 30, + 62, + 80, + 140, + 190, + 12, + 45, + 98, + 90, + 180, + 160, + 120, + 105, + 180, + 110, + 40, + 53, + 270, + 170, + 85, + 140, + 170, + 68, + 175, + 135, + 165, + 45, + 35, + 43, + 70, + 120, + 95, + 85, + 60, + 90, + 150, + 98, + 45, + 105, + 49, + 380, + 58, + 80, + 200, + 200, + 75, + 120, + 50, + 240, + 95, + 150, + 85, + 50, + 185, + 50, + 200, + 300, + 140, + 300, + 105, + 115, + 70, + 200, + 37, + 210, + 75, + 130, + 370, + 260, + 200, + 250, + 100, + 105, + 195, + 175, + 77, + 40, + 480, + 70, + 190, + 155, + 280, + 60, + 85, + 170, + 62, + 55, + 36, + 150, + 79, + 110, + 72, + 270, + 80, + 130, + 400, + 90, + 95, + 50, + 130, + 260, + 370, + 80, + 55, + 240, + 140, + 110, + 85, + 350, + 110, + 300, + 150, + 52, + 75, + 140, + 115, + 85, + 55, + 100, + 75, + 160, + 54, + 99, + 185, + 97, + 95, + 170, + 175, + 50, + 300, + 100, + 83, + 65, + 43, + 198, + 250, + 50, + 175, + 105, + 300, + 60, + 75, + 69, + 80, + 155, + 79.5, + 50, + 85, + 33, + 110, + 240, + 65, + 48, + 110, + 125, + 120, + 75, + 62, + 67, + 140, + 160, + 140, + 85, + 110, + 85, + 60, + 38, + 110, + 160, + 420, + 60, + 53, + 62, + 145, + 130, + 47.5, + 33, + 95, + 50, + 67, + 220, + 270, + 150.000009, + 56, + 240, + 120, + 220, + 185, + 55, + 64, + 45, + 53, + 500, + 85, + 40, + 65, + 500, + 68, + 145, + 53, + 68, + 92, + 32, + 120, + 155, + 100, + 100, + 130, + 75, + 230, + 35, + 85, + 75, + 200, + 180, + 105, + 45, + 65, + 80, + 190, + 48, + 250, + 72, + 155, + 20, + 180, + 65, + 145, + 80, + 57, + 80, + 100, + 34, + 90, + 56, + 140, + 55, + 75, + 320, + 160, + 110, + 73, + 100, + 55, + 57, + 450, + 100, + 47.5, + 85, + 170, + 100, + 125, + 130, + 60, + 75, + 300, + 165, + 290, + 100, + 55, + 15, + 62, + 110, + 45, + 85, + 73, + 66, + 175, + 55, + 135, + 170, + 125, + 82, + 58, + 55, + 92, + 75, + 78, + 70, + 128, + 270, + 135, + 105, + 35, + 50, + 78, + 55, + 75, + 250, + 135, + 170, + 380, + 220, + 75, + 240, + 80, + 120, + 45, + 350, + 290, + 420, + 275, + 58, + 225, + 58, + 46, + 170, + 395, + 450, + 350, + 60, + 50, + 450, + 37, + 185, + 50, + 56, + 17.675, + 150, + 130, + 65, + 130, + 130, + 65, + 170, + 69, + 85, + 130, + 30, + 135, + 58, + 69, + 280, + 90, + 150, + 165, + 240, + 80, + 235, + 125, + 400, + 60, + 130, + 65, + 110, + 130, + 80, + 40, + 62, + 85, + 125, + 230, + 300, + 98, + 140, + 60, + 160, + 65, + 350, + 130, + 420, + 165, + 190, + 125, + 235, + 65, + 320, + 180, + 60, + 80, + 300, + 200, + 105, + 37, + 250, + 35, + 255, + 120, + 180, + 57, + 110, + 230, + 150, + 120, + 130, + 144, + 70, + 120, + 110, + 40, + 60, + 50, + 63, + 280, + 47, + 45, + 150, + 125, + 240, + 70, + 170, + 86, + 180, + 200, + 65, + 140, + 36, + 44.9, + 70, + 120, + 65, + 95, + 280, + 210, + 120, + 470, + 125, + 330, + 110, + 175, + 125, + 205, + 57, + 110, + 260, + 185, + 70, + 63, + 75, + 100, + 68, + 50, + 120, + 180, + 40, + 200, + 280, + 120, + 150, + 130, + 88, + 105, + 105, + 60, + 250, + 140, + 198, + 67, + 180, + 155, + 190, + 65, + 80, + 220, + 47.999999, + 85, + 70, + 70, + 220, + 85, + 40, + 65, + 225, + 70, + 230, + 53, + 65, + 170, + 200, + 55, + 140, + 150, + 105, + 54, + 17.675, + 450, + 67, + 230, + 48, + 180, + 500, + 57, + 40, + 450, + 100, + 65, + 145, + 46, + 56, + 55, + 380, + 90, + 440, + 70, + 100, + 150, + 90, + 55, + 125, + 95, + 180, + 110, + 120, + 56, + 150, + 48, + 115, + 295, + 175, + 85, + 70, + 45, + 110, + 180, + 235, + 190, + 60, + 59.5, + 300, + 120, + 58, + 98, + 300, + 230, + 65, + 30, + 100, + 45, + 60, + 118, + 50, + 75, + 195, + 68, + 75, + 200, + 68, + 33, + 200, + 350, + 85, + 250, + 75, + 180, + 130, + 55, + 90, + 35, + 95, + 160, + 185, + 75, + 55, + 185, + 120, + 50, + 90, + 47, + 370, + 62, + 70, + 58, + 90, + 210, + 85, + 185, + 80, + 65, + 75, + 124, + 188, + 95, + 260, + 160, + 40, + 220, + 60, + 140, + 55, + 250, + 160, + 69, + 130, + 235, + 46, + 110, + 450, + 68, + 250, + 265, + 85, + 100, + 130, + 75, + 230, + 80, + 290, + 300, + 125, + 70, + 55, + 95, + 95, + 45, + 150, + 55, + 160, + 90, + 95, + 300, + 150, + 52, + 265, + 185, + 115, + 45, + 67, + 75, + 60, + 450, + 40, + 170, + 400, + 45, + 300, + 85, + 350, + 48, + 38, + 100, + 70, + 160, + 230, + 310, + 400, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 50, + 75, + 70, + 140, + 260, + 43, + 120, + 50, + 200, + 145, + 125, + 75, + 370, + 110, + 65, + 210, + 235, + 56, + 250, + 92, + 53, + 100, + 90, + 37, + 400, + 60, + 320, + 210, + 250, + 95, + 350, + 40, + 140, + 120, + 58, + 55, + 90, + 56, + 150, + 470, + 140, + 38, + 130, + 195, + 120, + 65, + 160, + 170, + 40, + 40, + 80, + 195, + 70, + 150, + 200, + 50, + 98, + 160, + 80, + 190, + 110, + 150, + 400, + 185, + 35, + 60, + 175, + 75, + 235, + 38, + 350, + 50, + 90, + 69, + 350, + 100, + 65, + 100, + 45, + 78, + 57, + 130, + 55, + 500, + 190, + 275, + 55, + 38, + 250, + 170, + 165, + 180, + 185, + 45, + 55, + 75, + 77, + 160, + 135, + 227, + 165, + 200, + 130, + 130, + 70, + 170, + 220, + 138, + 160, + 190, + 35, + 280, + 185, + 75, + 45, + 72, + 125, + 55, + 170, + 95, + 77, + 260, + 52, + 69, + 37, + 50, + 10, + 160, + 300, + 47, + 80, + 350, + 38, + 230, + 42, + 100, + 80, + 300, + 135, + 160, + 100, + 160, + 290, + 75, + 140, + 75, + 150, + 200, + 65, + 255, + 110, + 160, + 77, + 77, + 60, + 480, + 33, + 55, + 55, + 420, + 58, + 130, + 160, + 230, + 320, + 51, + 50, + 67, + 320, + 68, + 68, + 95, + 110, + 165, + 90, + 75, + 90, + 150, + 45, + 53, + 75, + 165, + 140, + 270, + 110, + 350, + 35, + 75, + 50, + 40, + 72, + 51, + 320, + 65, + 80, + 55, + 420, + 125, + 54, + 120, + 49, + 50, + 320, + 235, + 165, + 65, + 59.5, + 250, + 56, + 350, + 90, + 150, + 32, + 100, + 130, + 33, + 400, + 65, + 85, + 62, + 175, + 45, + 71, + 210, + 120, + 120, + 70, + 97, + 75, + 37, + 210, + 35, + 70, + 112, + 96, + 195, + 70, + 270, + 40, + 170, + 130, + 150, + 140, + 100, + 275, + 38, + 90, + 52, + 35, + 155, + 110, + 300, + 75, + 125, + 150, + 100, + 180, + 250, + 35, + 120, + 56, + 60, + 75, + 52, + 72, + 57, + 55, + 67, + 180, + 65, + 98, + 120, + 430, + 80, + 55, + 230, + 75, + 70, + 110, + 70, + 140, + 380, + 85, + 108, + 100, + 88, + 140, + 59, + 140, + 150, + 57, + 180, + 110, + 155, + 70, + 51.5, + 350, + 50, + 52, + 205, + 54, + 180, + 60, + 90, + 53, + 170, + 35, + 80, + 190, + 43, + 140, + 130, + 240, + 58, + 180, + 205, + 95, + 190, + 275, + 48, + 65, + 95, + 150, + 120, + 415, + 500, + 55, + 55, + 75, + 95, + 33, + 135, + 75, + 125, + 80, + 45, + 35, + 53, + 110, + 92, + 37, + 60, + 500, + 75, + 60, + 78, + 240, + 45, + 57, + 85, + 57, + 140, + 53, + 72, + 220, + 120, + 220, + 100, + 50, + 160, + 130, + 200, + 37, + 57, + 350, + 120, + 110, + 180, + 130, + 115, + 400, + 90, + 220, + 33, + 90, + 500, + 160, + 78, + 300, + 100, + 200, + 70, + 250, + 200, + 70, + 50, + 43, + 135, + 75, + 90, + 230, + 320, + 57, + 320, + 450, + 53, + 400, + 200, + 300, + 175, + 45, + 240, + 130, + 59, + 95, + 270, + 75, + 39, + 73, + 180, + 85, + 170, + 120, + 75, + 75, + 350, + 500, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 53, + 97, + 60, + 75, + 73, + 110, + 300, + 480, + 140, + 87, + 65, + 180, + 85, + 110, + 85, + 56, + 70, + 60, + 500, + 300, + 56, + 75, + 80, + 450, + 45, + 125, + 115, + 500, + 45, + 155, + 85, + 230, + 150, + 100, + 45, + 120, + 75, + 65, + 110, + 95, + 55, + 150, + 60, + 80, + 95, + 260, + 130, + 270, + 115, + 52, + 150, + 75, + 75, + 85, + 170, + 170, + 55, + 85, + 120, + 360, + 100, + 360, + 320, + 48, + 250, + 55, + 250, + 120, + 350, + 50, + 75, + 38, + 320, + 100, + 55, + 55, + 63, + 60, + 60, + 260, + 175, + 300, + 130, + 90, + 270, + 480, + 440, + 100, + 210, + 38, + 260, + 53, + 70, + 60, + 260, + 75, + 95, + 55, + 260, + 72, + 175, + 140, + 70, + 50, + 65, + 90, + 50, + 78, + 67, + 80, + 55, + 280, + 60, + 85, + 65, + 58, + 63, + 58, + 360, + 10, + 130, + 200, + 65.000009, + 57, + 60, + 83, + 500, + 120, + 45, + 58, + 195, + 130, + 180, + 100, + 59, + 60, + 70, + 140, + 300, + 180, + 75, + 70, + 65, + 60, + 45, + 230, + 64, + 75, + 78, + 155, + 380, + 68, + 67, + 170, + 79.5, + 320, + 190, + 330, + 65, + 85, + 55, + 41, + 180, + 105, + 80, + 450, + 75, + 69, + 60, + 220, + 125, + 155, + 250, + 270, + 100, + 85, + 80, + 380, + 200, + 185, + 130, + 69, + 110, + 39, + 49, + 110, + 125, + 70, + 65, + 280, + 33, + 95, + 395, + 70, + 65, + 60, + 250, + 150, + 65, + 57, + 33, + 175, + 300, + 70, + 42, + 170, + 350, + 35, + 250, + 370, + 110, + 40, + 59, + 150, + 250, + 140, + 90, + 300, + 185, + 200, + 195, + 110, + 50, + 85, + 80, + 35, + 85, + 65, + 38, + 55, + 65, + 150, + 75, + 130, + 300, + 210, + 80, + 350, + 275, + 48, + 47, + 200, + 65, + 68, + 110, + 95, + 400, + 350, + 75, + 50, + 165, + 70, + 70, + 75, + 110, + 48, + 63, + 395, + 330, + 55, + 75, + 150, + 380, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 59, + 33, + 120, + 175, + 450, + 125, + 115, + 37, + 85, + 65, + 170, + 128, + 56, + 300.000009, + 55, + 50, + 400, + 55, + 140, + 70, + 90, + 450, + 95, + 250, + 90, + 70, + 56, + 360, + 45, + 80, + 137, + 110, + 115, + 59, + 160, + 79, + 225, + 75, + 85, + 135, + 50, + 62, + 50, + 69, + 55, + 55, + 65, + 95, + 79, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 130, + 46, + 45, + 90, + 69, + 250, + 60, + 182, + 65, + 125, + 90, + 285, + 220, + 180, + 400, + 280, + 120, + 68, + 37, + 35, + 180, + 95, + 20, + 81, + 90, + 150, + 200, + 260, + 33, + 180, + 135, + 105, + 140, + 130, + 300, + 300, + 300, + 130, + 135, + 300, + 75, + 300, + 59, + 98, + 37, + 170, + 250, + 68, + 56, + 170, + 49, + 47, + 88, + 200, + 195, + 138, + 160, + 45, + 48, + 57, + 55, + 170, + 366, + 55, + 130, + 80, + 160, + 70, + 37, + 75, + 63, + 150, + 260, + 130, + 135, + 135, + 65, + 75, + 370, + 120, + 55, + 135, + 300, + 38, + 300, + 130, + 500, + 98, + 70, + 33, + 75, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 120, + 60, + 300, + 65, + 79.5, + 65, + 450, + 65, + 55, + 190, + 150, + 270, + 260, + 110, + 85, + 200, + 180, + 75, + 48, + 120, + 170, + 300, + 35, + 80, + 150, + 420, + 65, + 70, + 160, + 75, + 105, + 220, + 46, + 130, + 95, + 100, + 55, + 120, + 130, + 51, + 140, + 200, + 70, + 95, + 56, + 70, + 145, + 50, + 280, + 70, + 85, + 160, + 60, + 85, + 250, + 300, + 98, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 63, + 120, + 72, + 165, + 72, + 50, + 295, + 75, + 60, + 155, + 45, + 79, + 125, + 130, + 173, + 75, + 78, + 110, + 500, + 155, + 55, + 170, + 450, + 180, + 65, + 150, + 57, + 230, + 62, + 75, + 80, + 155, + 60, + 62, + 55, + 280, + 50, + 95, + 165, + 28, + 53, + 105, + 55, + 270, + 130, + 250, + 140, + 45, + 68, + 130, + 280, + 65, + 135, + 180, + 57, + 300, + 350, + 95, + 300, + 88, + 120, + 38, + 260, + 86, + 55, + 110, + 500, + 75, + 45, + 80, + 95, + 120, + 54, + 260, + 35, + 240, + 53, + 350, + 110, + 75, + 57.99, + 300, + 180, + 50, + 55, + 70, + 450, + 39, + 65, + 40, + 75, + 85, + 99, + 57, + 220, + 37, + 95, + 60, + 125, + 41, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 48, + 48, + 125, + 260, + 300, + 90, + 210, + 250, + 78, + 125, + 42, + 37, + 92, + 210, + 150, + 105, + 70, + 85, + 390, + 110, + 250, + 160, + 37, + 80, + 180, + 60, + 175, + 110, + 150, + 240, + 115, + 80, + 52, + 70, + 250, + 80, + 120, + 95, + 78, + 230, + 350, + 90, + 140, + 70, + 88, + 138, + 120, + 53, + 280, + 63, + 160, + 85, + 69, + 31, + 70, + 450, + 125, + 370, + 110, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 55, + 360, + 90, + 70, + 125, + 135, + 55, + 150, + 350, + 95, + 125, + 55, + 69, + 39, + 85, + 280, + 350, + 125, + 57, + 100, + 115, + 160, + 64, + 57, + 165, + 230, + 110, + 70, + 65, + 75, + 45, + 45, + 40, + 55, + 69, + 45, + 185, + 70, + 55, + 70, + 500, + 150, + 135, + 70, + 45, + 245, + 65, + 170, + 168, + 110, + 45, + 45, + 65, + 220, + 125, + 120, + 180, + 60, + 73, + 125, + 80, + 130, + 130, + 140, + 230, + 170, + 45, + 92, + 58, + 63, + 72, + 50, + 170, + 330, + 300, + 380, + 210, + 85, + 75, + 50, + 195, + 120, + 130, + 100, + 47, + 420, + 50, + 65, + 200, + 80, + 200, + 72, + 50, + 105, + 105, + 90, + 120, + 165, + 68, + 80, + 120, + 140, + 35, + 90, + 64, + 55, + 80, + 210, + 150, + 300, + 140, + 240, + 55, + 170, + 400, + 125, + 80, + 130, + 110, + 75, + 40, + 92, + 53, + 105, + 55, + 300, + 80, + 250, + 240, + 90, + 130, + 76, + 250, + 69, + 65, + 170, + 53, + 120, + 85, + 195, + 380, + 300, + 380, + 130, + 160, + 400, + 280, + 36.5, + 140, + 120, + 76, + 35, + 58, + 45, + 52, + 195, + 170, + 77, + 168, + 60, + 98, + 50, + 120, + 260, + 69, + 35, + 40, + 62, + 35, + 110, + 50, + 135, + 57, + 85, + 400, + 150, + 63, + 120, + 60, + 45, + 155, + 95, + 60, + 75, + 90, + 480, + 85, + 165, + 68, + 150, + 68, + 36, + 105, + 70, + 160, + 180, + 445, + 40, + 82, + 210, + 90, + 33, + 98.5, + 390, + 500, + 78, + 75, + 190, + 40, + 150, + 69, + 270, + 75, + 180, + 54, + 50, + 51, + 140, + 107, + 138, + 250, + 120, + 44, + 38, + 36, + 85, + 120, + 260, + 110, + 170, + 185, + 72, + 125, + 54.5, + 200, + 500, + 175, + 120, + 75, + 100, + 38, + 115, + 250, + 75, + 55, + 500, + 98, + 60, + 105, + 160, + 275, + 60, + 83, + 450, + 38, + 48, + 70, + 65, + 240, + 100, + 190, + 53, + 245, + 140, + 155, + 120, + 148, + 390, + 165, + 40, + 68, + 175, + 120, + 130, + 230, + 50, + 280, + 150, + 38, + 45, + 260, + 50, + 75, + 150, + 89, + 70, + 110, + 80, + 350, + 65, + 220, + 150, + 80, + 80, + 60, + 110, + 180, + 230, + 55, + 222, + 95, + 47, + 85, + 100, + 85, + 65, + 170, + 38, + 51, + 370, + 75, + 60, + 33, + 95, + 75, + 145, + 200, + 65, + 125, + 75, + 500, + 90, + 63, + 40, + 67, + 145, + 160, + 60, + 138, + 75, + 183, + 130, + 75, + 59, + 65, + 55, + 170, + 33, + 61, + 85, + 55, + 88, + 30, + 70, + 47, + 115, + 145, + 145, + 240, + 65, + 160, + 320, + 250, + 88, + 80, + 50, + 200, + 170, + 55, + 58, + 270, + 45, + 72, + 200, + 60, + 120, + 175, + 380, + 330, + 220, + 35, + 75, + 250, + 40, + 120, + 65, + 130, + 76, + 68, + 115, + 350, + 160, + 77.5, + 160, + 70, + 160, + 150, + 50, + 50, + 98, + 70, + 95, + 90, + 60, + 125, + 95, + 170, + 42, + 190, + 48, + 450, + 50, + 60, + 90, + 68, + 185, + 77, + 135, + 270, + 170, + 135, + 120.000009, + 480, + 145, + 70, + 100, + 65, + 400, + 105, + 190, + 375, + 76, + 95, + 250, + 75, + 60, + 250, + 480, + 165, + 150, + 70, + 65, + 44, + 95, + 180, + 48, + 62, + 190, + 150, + 88, + 200, + 75, + 165, + 75, + 90, + 35, + 400, + 59.5, + 99, + 200, + 400, + 110, + 410, + 115, + 100, + 78, + 135, + 120, + 130, + 280, + 59, + 370, + 230, + 115, + 120, + 135, + 85, + 47, + 135, + 57.5, + 56, + 55, + 37, + 130, + 140, + 220, + 300, + 86, + 80, + 33, + 85, + 78, + 140, + 75, + 95, + 190, + 39, + 95, + 55, + 53.5, + 330, + 97, + 60, + 120, + 68, + 62.99, + 100, + 78, + 59.5, + 160, + 100, + 295, + 385, + 60, + 120, + 400, + 95, + 80, + 73, + 20, + 205, + 48, + 110, + 50, + 150, + 50, + 120, + 77, + 55, + 110, + 230, + 55, + 130, + 64, + 95, + 130, + 75, + 150, + 92, + 33, + 289, + 80, + 35, + 100, + 35, + 85, + 200, + 58, + 58, + 90, + 67, + 83, + 140, + 55, + 110, + 125, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 300, + 125, + 95, + 65, + 125, + 420, + 280, + 58, + 48, + 240, + 120, + 55, + 125, + 245, + 40, + 110, + 220, + 75, + 150, + 400, + 300, + 80, + 85, + 100, + 57, + 230, + 80, + 60, + 140, + 90, + 58, + 50, + 185, + 40, + 70, + 80, + 115, + 105, + 60, + 180, + 38, + 63, + 95, + 450, + 170, + 44, + 350, + 65, + 96, + 17.5, + 70, + 380, + 180, + 80, + 270, + 140, + 75, + 115, + 90, + 230, + 80, + 45, + 250, + 38, + 200, + 75, + 36, + 59, + 98, + 52, + 210, + 120, + 58, + 175, + 110, + 290, + 130, + 280, + 130, + 300, + 58, + 370, + 225, + 70, + 165, + 29, + 95, + 90, + 90, + 280, + 57, + 70, + 45, + 90, + 240, + 80, + 95, + 150, + 10, + 350, + 85, + 75, + 50, + 80, + 285, + 115, + 135, + 160, + 55, + 67, + 78, + 70, + 65, + 31, + 250, + 90, + 250, + 125, + 58, + 175, + 45, + 58, + 105, + 70, + 120, + 45, + 320, + 70, + 85, + 200, + 125, + 95, + 25, + 85, + 55, + 115, + 120, + 200, + 42, + 170, + 280, + 175, + 45, + 80, + 198, + 40, + 120, + 70, + 50, + 130, + 300, + 190, + 140.000009, + 46, + 76, + 350, + 46, + 50, + 80, + 170, + 50, + 47, + 55, + 380, + 190, + 50, + 85, + 66, + 82, + 300, + 58, + 52, + 400, + 90, + 87, + 150, + 190, + 47, + 180, + 270, + 80, + 75, + 195, + 45, + 150, + 130, + 105, + 150, + 250, + 140, + 130, + 160, + 180, + 250, + 55, + 160, + 47, + 45, + 155, + 81, + 100, + 165, + 44, + 110, + 90, + 300, + 48, + 80, + 95, + 120, + 70, + 160, + 140, + 69, + 50, + 210, + 150, + 68, + 110, + 43, + 47, + 79, + 160, + 125, + 35, + 420, + 170, + 200, + 55, + 45, + 75, + 230, + 450, + 85, + 68, + 190, + 380, + 75, + 200, + 65, + 125, + 47, + 47, + 55, + 170, + 135, + 195, + 230, + 250, + 270, + 43, + 65, + 55, + 390, + 95, + 300, + 120, + 95, + 240, + 58, + 180, + 68, + 280, + 49, + 112, + 75, + 80, + 40, + 170, + 130, + 88, + 275, + 45, + 300, + 58, + 65, + 40, + 170, + 120, + 150, + 90, + 150, + 100, + 59, + 100, + 120, + 45, + 50, + 165, + 25, + 45, + 110, + 93, + 50, + 170, + 450, + 200, + 135, + 65, + 76, + 120, + 90, + 320, + 63, + 48, + 130, + 400, + 35, + 185, + 48, + 100, + 42, + 75, + 77, + 198, + 185, + 120, + 250, + 100, + 58, + 87, + 63, + 120, + 400, + 115, + 176, + 125, + 170, + 30, + 70, + 36.5, + 52, + 275, + 36, + 30, + 155, + 150, + 200, + 270, + 300, + 100, + 51, + 45, + 49, + 60, + 65, + 165, + 20, + 75, + 50, + 135, + 150, + 60, + 150, + 220, + 112, + 90, + 55, + 95, + 130, + 45, + 300, + 120, + 120, + 160, + 235, + 43, + 120, + 65, + 37, + 220, + 135, + 73, + 200, + 175, + 80, + 90, + 150, + 190, + 350, + 43, + 85, + 63, + 67, + 250, + 75, + 340, + 180, + 155, + 50, + 36, + 350, + 420, + 70, + 120, + 35, + 160, + 85, + 60, + 38, + 46, + 285, + 220, + 50, + 62, + 350, + 140, + 135, + 90, + 120, + 120, + 55, + 135, + 180, + 150, + 107, + 150, + 55, + 108, + 70, + 220, + 60, + 70, + 120, + 75, + 130, + 76, + 65, + 450, + 40, + 95, + 70, + 45, + 150, + 60, + 85, + 37, + 120, + 85, + 120, + 130, + 70, + 59, + 300, + 75, + 75, + 140, + 350, + 65, + 40, + 84, + 235, + 190, + 80, + 45, + 85, + 45, + 350, + 120, + 150, + 170, + 90, + 390, + 60, + 400, + 75, + 85, + 98, + 35, + 160, + 70, + 125, + 120, + 58, + 140, + 185, + 40, + 35, + 500, + 130, + 130, + 235, + 80, + 78, + 63, + 120, + 180, + 225, + 45, + 140, + 250, + 40, + 85, + 33, + 450, + 47, + 100, + 33, + 170, + 260, + 56, + 33, + 62, + 300, + 170, + 120, + 250, + 180, + 165, + 250, + 40, + 60, + 150, + 69, + 53, + 68, + 120, + 65, + 380, + 45, + 80, + 160, + 98, + 70, + 75, + 50, + 48, + 295, + 75, + 180, + 230, + 75, + 55, + 200, + 85, + 85, + 60, + 280, + 55, + 35, + 120, + 40, + 170, + 56, + 185, + 120, + 65, + 70, + 450, + 120, + 14.8, + 180, + 135, + 75, + 190, + 270, + 125, + 75, + 50, + 80, + 170, + 90, + 50, + 52, + 78, + 45, + 105, + 110, + 45, + 95, + 110, + 310, + 93, + 270, + 150, + 41, + 130, + 69, + 85, + 58, + 100, + 59, + 125, + 130, + 82.5, + 75, + 43, + 115, + 250, + 190, + 78, + 69, + 90, + 500, + 90, + 100, + 55, + 100, + 60, + 140, + 50, + 75, + 60, + 45, + 60, + 100, + 95, + 65, + 80, + 30, + 45, + 60, + 175, + 63, + 85, + 65, + 70, + 150, + 300, + 95, + 50, + 42, + 160, + 360, + 38, + 90, + 36, + 300, + 125, + 190, + 65, + 65, + 150, + 80, + 165, + 90, + 80, + 75, + 210, + 350, + 70, + 85, + 120, + 87, + 145, + 115, + 140, + 72, + 70, + 46, + 80, + 39, + 65, + 38, + 100, + 55, + 140, + 185, + 41, + 140, + 116, + 350, + 180, + 65, + 180, + 39, + 300, + 50, + 280, + 69, + 80, + 350, + 80, + 340, + 52, + 175, + 70, + 70, + 47, + 59, + 125, + 250, + 200, + 170, + 125, + 78, + 130, + 190, + 77.5, + 200, + 60, + 170, + 500, + 50, + 60, + 160, + 150, + 120, + 42, + 120, + 40, + 85, + 160, + 75, + 70, + 105, + 50, + 40, + 60, + 40, + 300, + 225, + 65, + 368, + 63, + 58, + 80, + 170, + 170, + 69, + 380, + 115, + 100, + 130, + 95, + 500, + 230, + 270, + 220, + 85, + 125, + 160, + 115, + 60, + 45, + 120, + 40, + 210, + 370, + 145, + 65, + 79.5, + 190, + 75, + 180, + 400, + 80, + 90, + 110, + 130, + 90, + 210, + 62, + 235, + 70, + 40, + 180, + 150, + 37.5, + 39, + 135, + 145, + 180, + 230, + 70, + 120, + 110, + 57, + 100, + 180, + 85, + 88, + 110, + 58, + 65, + 180, + 310, + 190, + 65, + 80, + 100, + 50, + 220, + 270, + 270, + 45, + 370, + 280, + 250, + 80.000009, + 105, + 250, + 256, + 135, + 115, + 160, + 70, + 110, + 280, + 50, + 85, + 190, + 105, + 140, + 140, + 200, + 50, + 85, + 48, + 53, + 75, + 88, + 74, + 42, + 100, + 220, + 60, + 120, + 47, + 140, + 65, + 63, + 76, + 320, + 65, + 180, + 150, + 65, + 130, + 90, + 82, + 95, + 280, + 83, + 53, + 270, + 200, + 55, + 150, + 260, + 38, + 140, + 60, + 180, + 200, + 64, + 78, + 115, + 100, + 135, + 57, + 95, + 140, + 38, + 50, + 200, + 110, + 80, + 95, + 140, + 135, + 70, + 190, + 105, + 200, + 130, + 90, + 50, + 33, + 350, + 55, + 90, + 160, + 45, + 285, + 105, + 80, + 250, + 196, + 48, + 180, + 185, + 375, + 130, + 55, + 110, + 450, + 100, + 75, + 76, + 149, + 80, + 100, + 200, + 75, + 110, + 450, + 170, + 75, + 48, + 10, + 40, + 120, + 160, + 450, + 100, + 220, + 120, + 56, + 130, + 35, + 260, + 140, + 90, + 175, + 95, + 110, + 37, + 38, + 38, + 55, + 69, + 42, + 120, + 110, + 175, + 400, + 135, + 250, + 88, + 50, + 49, + 190, + 75, + 150, + 80, + 62, + 80, + 88, + 90, + 99, + 50, + 150, + 56, + 300, + 67, + 170, + 390, + 100, + 60, + 150, + 220, + 135, + 120, + 300, + 120, + 130, + 185, + 50, + 110, + 500, + 115, + 55, + 60, + 75, + 70, + 75, + 70, + 65, + 89, + 95, + 88, + 36, + 250, + 39.5, + 190, + 47, + 80, + 95, + 45, + 430, + 130, + 185, + 185, + 78, + 210, + 55, + 36, + 62, + 135, + 180, + 110, + 230, + 45, + 45, + 180, + 35, + 470, + 85, + 100, + 200, + 67, + 80, + 39, + 100, + 75, + 460, + 20, + 250, + 41, + 185, + 96, + 145, + 35, + 70, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 130, + 175, + 55, + 85, + 250, + 160, + 480, + 160, + 195, + 43, + 85, + 130, + 150, + 80, + 220, + 250, + 110, + 69, + 150, + 77, + 34.8, + 80, + 85, + 60, + 90, + 230, + 450, + 110, + 75, + 35, + 280, + 100, + 230, + 250, + 125, + 56, + 190, + 52, + 120, + 110, + 64, + 72, + 70, + 69, + 270, + 55, + 200, + 90, + 60, + 100, + 120, + 67.5, + 46, + 280, + 270, + 75, + 65, + 105, + 58, + 320, + 65, + 38, + 210, + 110, + 50, + 110, + 75, + 120, + 300, + 120, + 110, + 75, + 120, + 220, + 140, + 80, + 98, + 46, + 35, + 150, + 145, + 90, + 100, + 43, + 70, + 85, + 275, + 80, + 140, + 85, + 65, + 220, + 40, + 30, + 160, + 55, + 53, + 79.5, + 300, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 40, + 200, + 45, + 85, + 55, + 240, + 63, + 160, + 56, + 140, + 45, + 35, + 120, + 59, + 150, + 130, + 98, + 450, + 41, + 185, + 95, + 250, + 350, + 90, + 67.5, + 250, + 85, + 140, + 70, + 350, + 250, + 170, + 175, + 65, + 75, + 47, + 125, + 75, + 300, + 70, + 95, + 65, + 160, + 390, + 130, + 185, + 170, + 75, + 125, + 68, + 75, + 140, + 78, + 160, + 110, + 50, + 57, + 275, + 90, + 45, + 72, + 49, + 180, + 77, + 50, + 55, + 89, + 26, + 100, + 60, + 56, + 145, + 250, + 105, + 135, + 60, + 50, + 110, + 160.000009, + 165, + 33, + 122, + 88, + 100, + 52, + 350, + 50, + 125, + 100, + 77, + 170, + 60, + 270, + 40, + 72, + 51, + 50, + 129, + 90, + 120, + 230, + 450, + 72, + 160, + 100, + 340, + 435, + 180, + 190, + 87, + 230, + 95, + 165, + 72, + 125, + 98, + 140, + 75, + 85, + 225, + 200, + 100, + 190, + 18.5, + 200, + 38, + 115, + 110, + 198, + 135, + 92, + 368, + 110, + 105, + 95, + 180, + 250, + 400, + 200, + 42, + 270, + 95, + 68, + 295, + 39, + 150, + 110, + 175, + 49, + 400, + 52, + 95, + 100, + 70, + 57, + 55, + 180, + 100, + 130, + 47, + 59, + 65, + 110, + 52, + 35, + 60, + 66, + 130, + 10, + 55, + 47, + 125, + 190, + 73, + 150, + 300, + 170, + 90, + 85, + 38, + 95, + 200, + 70, + 160, + 120, + 400, + 61, + 60, + 32, + 120, + 210, + 150, + 170, + 50, + 75, + 280, + 155, + 85, + 100, + 250, + 390, + 75, + 45, + 105, + 195, + 55, + 65, + 62, + 55, + 90, + 70, + 100, + 270, + 60, + 105, + 40, + 115, + 62, + 47, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 160, + 60, + 53, + 77, + 70, + 100, + 135, + 65, + 115, + 200, + 47, + 500, + 60, + 36, + 55, + 62, + 340, + 60, + 78, + 67, + 100, + 115, + 220, + 65, + 160, + 180, + 67, + 120, + 70, + 170, + 95, + 220, + 75, + 55, + 85, + 80, + 85, + 110, + 100, + 380, + 75, + 52, + 130, + 250, + 120, + 175, + 135, + 320, + 285, + 180, + 145, + 55, + 65, + 52, + 200, + 220, + 85, + 135, + 110, + 90, + 185, + 250, + 55, + 120, + 45, + 280, + 105, + 90, + 180, + 80, + 175, + 480, + 75, + 90, + 65, + 68, + 170, + 40, + 75, + 140, + 40, + 42, + 75, + 140, + 38, + 155, + 30, + 105, + 86, + 170, + 200, + 155, + 45, + 220, + 38, + 115, + 76, + 130, + 150, + 120, + 56, + 160, + 130, + 330, + 33, + 150, + 290, + 235, + 70, + 155, + 80, + 120, + 160, + 105, + 400, + 85, + 60, + 450, + 70, + 50, + 85, + 130, + 170, + 58, + 70, + 85, + 100, + 52, + 40, + 400, + 140, + 30, + 70, + 190, + 38.99, + 80, + 150, + 390, + 85, + 150, + 260, + 430, + 500, + 90, + 85, + 75, + 37, + 280, + 130, + 140, + 78, + 55, + 190, + 175, + 230, + 460, + 75, + 100, + 180, + 140, + 37, + 420, + 80, + 185, + 85, + 63, + 49, + 150, + 300, + 160.000999, + 350, + 70, + 130, + 55, + 53, + 348, + 40, + 65, + 210, + 80, + 49.9, + 140, + 320, + 80, + 305, + 65, + 70, + 95, + 70, + 270, + 45, + 70, + 85, + 110, + 290, + 36, + 35, + 80, + 120, + 170, + 75, + 90, + 140, + 100, + 72, + 120, + 105, + 75, + 50, + 180, + 121, + 73.1, + 59, + 155, + 145, + 75, + 55, + 400, + 75, + 40, + 125, + 55, + 65, + 62, + 300, + 130, + 84, + 150, + 220, + 165, + 240, + 145, + 270, + 58, + 500, + 250, + 70, + 150.005, + 300, + 83, + 90, + 65, + 200, + 47, + 120, + 38, + 290, + 49, + 200, + 90, + 180, + 40, + 180, + 61, + 148, + 47, + 180, + 90, + 92, + 58, + 125, + 77, + 180, + 95, + 200, + 55, + 40, + 80 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Newly Built=1
Price=%{x}", + "legendgroup": "1", + "marker": { + "color": "#636efa" + }, + "name": "1", + "notched": true, + "offsetgroup": "1", + "showlegend": false, + "type": "box", + "x": [ + 57, + 230, + 300, + 140, + 140, + 120, + 85, + 43, + 90, + 29, + 70, + 80, + 170, + 48, + 63, + 85, + 45, + 120, + 75, + 79, + 240, + 300, + 80, + 140, + 270, + 49, + 450, + 400, + 300, + 105, + 350, + 150, + 57, + 290, + 110, + 240, + 110, + 55, + 425, + 140, + 300, + 100, + 68, + 95, + 260, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 120, + 78, + 70, + 45, + 100, + 38, + 75, + 90, + 90, + 68, + 220, + 54, + 155, + 280, + 48, + 63, + 250, + 220, + 130, + 170, + 95, + 160, + 68, + 170, + 198, + 205, + 69, + 85, + 80, + 205, + 200, + 80, + 75, + 100, + 73, + 80, + 230, + 130, + 98, + 68, + 75, + 75, + 220, + 130, + 95, + 200, + 70, + 220, + 70, + 53, + 210, + 140, + 160, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 300, + 65, + 75, + 125, + 115, + 125, + 85, + 57, + 95, + 350, + 62, + 150, + 90, + 170, + 150, + 260, + 450, + 65, + 220, + 155, + 70, + 102, + 65, + 62, + 50, + 59, + 200, + 130, + 98, + 350, + 160, + 165, + 143, + 35, + 85, + 130, + 200, + 90, + 59.9, + 200, + 60, + 180, + 160, + 130, + 75, + 60, + 100, + 110, + 52, + 170, + 60, + 125, + 57, + 90, + 85, + 160, + 123, + 170, + 55, + 45, + 190, + 200, + 140, + 84, + 30, + 45, + 100, + 50, + 125, + 350, + 125, + 80, + 260, + 500, + 135, + 85, + 205, + 85, + 53, + 52, + 72, + 320, + 170, + 300, + 250, + 97, + 120, + 110, + 370, + 170, + 110, + 37, + 75, + 200, + 60, + 120, + 65, + 280, + 70, + 105, + 120, + 45, + 55, + 400, + 68, + 55, + 240, + 230, + 36, + 180, + 66, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 180, + 200, + 260, + 60, + 65, + 300, + 80, + 300, + 150, + 80, + 200, + 265, + 250, + 105, + 150, + 105, + 300, + 125, + 110, + 117, + 120, + 100, + 65, + 65, + 120, + 60, + 35, + 79, + 33, + 400, + 85, + 350, + 66, + 50, + 180, + 400, + 115, + 150, + 130, + 85, + 50, + 50, + 150, + 120, + 75, + 14, + 75, + 37, + 98, + 60, + 90, + 135, + 160, + 160, + 110, + 112, + 45, + 85, + 85, + 120, + 137, + 70, + 500, + 290, + 60, + 37, + 38, + 278, + 320, + 190, + 75, + 55, + 185, + 79, + 85, + 98, + 185, + 130, + 350, + 130, + 390, + 290, + 95, + 65, + 75, + 65, + 160, + 230, + 175, + 90, + 50, + 160, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 130, + 65, + 75, + 280, + 130, + 80, + 90, + 130, + 200, + 185, + 295, + 200, + 75, + 55, + 60, + 185, + 85, + 290, + 140, + 80, + 370, + 90, + 250, + 66, + 48, + 120, + 280, + 48, + 65, + 65, + 56, + 90, + 45, + 180, + 195, + 270, + 250, + 80, + 35, + 75, + 500, + 60, + 45, + 75, + 140, + 20, + 185, + 170, + 45, + 65, + 360, + 37, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 43, + 130, + 89, + 300, + 65, + 40, + 140, + 150, + 175, + 250, + 150, + 120, + 500, + 430, + 95, + 75, + 100, + 110, + 95, + 45, + 125, + 100, + 350, + 180, + 50, + 125, + 65, + 120, + 40, + 67, + 350, + 94, + 75, + 200, + 120, + 55, + 40, + 60, + 250, + 120, + 100, + 40.5, + 95, + 198, + 290, + 85, + 125, + 70, + 80, + 200, + 170, + 39, + 67, + 70, + 38, + 250, + 450, + 250, + 225, + 299.999999, + 99, + 60, + 67, + 70, + 50, + 80, + 60.9, + 80, + 58, + 102, + 280, + 140, + 50, + 48, + 115, + 210, + 88, + 160, + 83, + 76, + 135, + 110, + 85, + 210, + 60, + 450, + 130, + 98, + 240, + 90, + 170, + 59, + 130, + 240, + 33, + 95, + 90, + 30, + 47, + 110, + 155, + 67, + 35, + 45, + 160, + 56.5, + 230, + 105, + 150, + 130, + 55, + 170, + 450, + 95, + 84, + 60, + 55, + 80, + 220, + 70, + 110, + 205, + 120, + 110, + 140, + 350, + 37, + 400, + 49.5, + 120, + 95, + 200, + 500, + 155, + 230, + 95, + 110, + 120, + 95, + 165, + 75, + 42.5, + 75, + 115, + 150, + 145, + 140, + 180, + 38, + 185, + 65, + 280, + 360, + 75, + 415, + 250, + 40, + 230, + 145, + 130, + 120, + 47, + 220, + 120, + 58, + 270, + 45, + 135, + 80, + 40, + 65, + 120, + 110, + 165, + 50, + 300, + 170, + 290, + 38, + 50, + 100, + 301, + 57, + 100, + 450, + 42, + 110, + 450, + 145, + 60, + 44, + 118, + 180, + 157, + 85, + 140, + 115, + 90, + 150, + 300, + 80, + 57, + 420, + 115, + 120, + 57, + 73, + 110, + 55, + 68, + 49.9, + 198, + 58, + 125, + 72, + 150, + 100, + 90, + 75, + 85, + 160, + 50, + 58, + 45, + 100, + 500, + 50, + 450, + 66, + 180, + 78, + 80, + 210, + 130, + 70, + 80, + 49, + 70, + 68, + 85, + 70, + 88, + 65, + 145, + 14, + 52, + 48, + 470, + 55, + 97, + 57, + 65, + 145, + 75, + 75, + 46, + 160, + 150, + 110, + 90, + 78, + 150, + 60, + 225, + 203, + 210, + 67, + 79, + 95, + 120, + 75, + 50, + 65, + 270, + 80, + 280, + 255, + 360, + 40, + 72, + 82, + 160, + 40, + 250, + 95, + 130, + 85, + 110, + 300, + 48, + 40, + 200, + 76, + 270, + 250, + 126, + 100, + 79, + 90, + 105, + 180, + 330, + 380, + 260, + 42, + 65, + 240, + 63, + 32, + 56, + 50, + 165, + 77, + 280, + 120, + 155, + 70, + 240, + 49, + 160, + 190, + 190, + 75, + 170, + 170, + 76, + 85, + 95, + 95, + 190, + 130, + 115, + 120, + 38, + 275, + 90, + 95, + 45, + 105, + 130, + 155.7, + 65, + 33, + 165, + 80, + 135, + 60, + 78, + 165, + 95, + 74, + 50, + 135, + 260, + 175, + 85, + 92, + 160, + 85, + 160, + 52, + 100, + 85, + 250, + 170, + 190, + 73, + 170, + 450, + 390, + 51, + 120, + 500, + 400, + 170, + 100, + 392, + 170, + 55, + 120, + 65, + 45, + 85, + 190, + 230, + 160, + 57, + 250, + 360, + 60, + 78, + 60, + 450, + 95, + 160, + 250, + 125, + 270, + 35, + 70, + 55, + 35, + 33, + 98, + 75, + 135, + 60, + 39, + 85, + 250, + 110, + 47, + 220, + 250, + 80, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 63, + 200, + 410, + 135, + 95, + 300, + 130, + 280, + 55, + 55, + 75, + 68, + 82, + 135, + 200, + 270, + 130, + 183, + 85, + 240, + 74, + 180, + 45, + 47, + 59.5, + 190, + 48, + 65, + 85, + 100, + 100, + 69, + 65, + 180, + 28, + 47, + 140, + 95, + 60, + 95, + 98, + 67, + 125, + 100, + 175, + 150, + 36, + 165, + 240, + 69, + 150, + 115, + 49, + 120, + 180, + 75, + 55, + 300, + 45, + 400, + 280, + 33, + 120, + 270, + 150, + 79, + 65, + 400, + 123, + 170, + 98, + 33, + 195, + 80, + 45, + 77, + 130, + 95, + 145, + 170, + 57, + 50, + 53, + 76, + 93, + 40, + 57, + 37, + 130, + 80, + 290, + 270, + 115, + 56, + 158, + 380, + 300, + 90, + 90, + 68, + 75, + 72, + 220, + 100, + 40, + 70, + 70, + 45, + 110, + 370, + 145, + 40, + 65, + 130, + 155, + 195, + 250, + 65, + 120, + 62, + 110, + 170, + 150, + 280, + 120, + 158, + 380, + 75, + 95, + 110, + 75, + 400, + 105, + 36.5, + 33, + 58, + 85, + 88, + 57, + 185, + 32, + 49, + 83, + 180, + 110, + 170, + 75, + 43.5, + 125, + 60, + 75, + 145, + 75, + 45, + 110, + 69, + 270, + 105, + 30, + 360, + 95, + 54, + 180, + 52, + 270, + 350, + 80, + 65, + 58, + 60, + 250, + 48, + 100, + 200, + 76, + 170, + 135, + 135, + 46, + 285, + 130, + 450, + 65, + 170, + 230, + 350, + 59.5, + 83, + 155, + 85, + 400, + 19.975, + 130, + 500, + 250, + 245, + 59, + 69.99, + 63, + 200, + 148, + 70, + 140, + 100, + 48, + 70, + 48, + 265, + 55, + 70, + 150, + 93, + 115, + 35, + 55, + 115, + 57, + 45, + 45, + 95, + 330, + 500, + 185, + 160, + 150, + 275, + 11.6, + 42, + 118, + 77, + 37, + 75, + 79, + 80, + 350, + 100, + 70, + 220, + 105, + 65, + 300, + 120, + 230, + 110, + 45, + 150, + 75, + 480, + 80, + 150, + 210, + 65, + 60, + 185, + 70, + 110, + 200, + 280, + 30, + 330, + 270, + 58, + 77, + 350, + 58, + 145, + 60, + 260, + 160, + 430, + 285, + 150, + 450, + 140, + 135, + 59, + 65, + 150, + 80, + 195, + 120, + 220, + 80, + 48, + 130, + 180, + 205, + 80, + 69, + 165, + 77, + 57, + 73, + 300, + 260, + 85, + 80, + 380, + 125, + 75, + 130, + 300, + 50, + 150, + 75, + 95, + 183, + 120, + 55, + 55, + 52, + 190, + 200, + 65, + 220, + 195, + 70, + 90, + 60, + 130, + 197.5, + 69.5, + 38, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 60, + 97, + 240, + 350, + 68, + 230, + 125, + 100, + 95, + 54, + 58, + 45, + 165, + 60, + 46, + 220, + 57, + 170, + 125, + 65, + 67, + 185, + 180, + 140, + 75, + 275, + 360, + 38, + 90, + 65, + 58, + 95, + 63, + 270, + 250, + 75, + 350, + 200, + 120, + 35, + 75, + 68, + 140, + 190, + 150, + 57, + 48, + 210, + 30, + 140, + 255, + 120, + 67, + 200, + 110, + 360, + 130, + 120, + 95, + 170, + 300, + 280, + 52, + 63, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 55, + 140, + 130, + 150, + 280, + 90, + 47, + 120, + 280, + 220, + 67, + 210, + 37, + 235, + 130, + 160, + 220, + 280, + 135, + 185, + 350, + 85, + 105, + 85, + 78, + 98, + 200, + 81, + 130, + 43, + 48, + 150, + 105, + 350, + 480, + 130, + 150, + 200, + 110, + 78, + 56, + 168, + 120, + 130, + 49, + 130, + 320, + 100, + 100, + 120, + 50, + 90, + 230, + 90, + 280, + 80, + 55, + 140, + 95, + 180, + 400, + 80, + 500, + 160, + 100, + 58, + 150, + 85, + 55, + 155, + 68, + 110, + 54, + 295, + 155, + 120, + 140, + 97, + 90, + 80, + 100, + 260, + 115, + 62, + 150, + 28, + 180, + 190, + 170, + 80, + 220, + 53, + 62, + 160, + 85, + 72, + 160, + 55, + 280, + 55, + 125, + 150, + 45, + 150, + 75, + 60, + 260, + 95, + 170, + 300, + 205, + 75, + 75, + 160, + 120, + 170, + 40, + 36, + 130, + 70, + 450, + 78, + 200, + 175, + 130, + 250, + 95, + 85, + 47, + 53, + 250, + 395, + 70, + 80, + 125, + 80, + 55, + 150, + 135, + 120, + 145, + 450, + 70, + 290, + 45, + 80, + 80, + 170, + 450, + 85, + 65, + 65, + 58, + 35, + 75, + 250, + 100, + 160, + 170, + 90, + 60, + 130, + 135, + 52, + 160, + 110, + 35, + 450, + 80, + 450, + 350, + 120, + 250, + 110, + 135, + 230, + 190, + 88, + 125, + 80, + 50, + 180, + 110, + 105, + 74, + 150, + 75, + 75, + 30, + 110, + 65, + 55, + 90, + 70, + 350, + 95, + 170, + 200, + 59, + 120, + 165, + 67, + 127, + 64.1, + 58, + 80, + 160, + 55, + 130, + 330, + 72, + 52, + 260, + 95, + 130, + 200, + 500, + 75, + 190, + 68, + 33, + 56, + 90, + 270, + 95, + 62, + 120, + 185, + 66, + 38, + 45, + 250, + 120, + 20, + 140, + 120, + 130, + 110, + 110, + 110, + 220, + 450, + 35, + 70, + 65, + 105, + 60, + 250, + 95, + 135, + 73, + 100, + 85, + 110, + 60, + 130, + 300, + 33, + 40, + 220, + 150, + 65, + 45, + 33, + 55, + 260, + 105, + 65, + 55, + 135, + 270, + 95, + 95, + 50, + 250, + 170, + 33, + 44, + 48, + 400, + 110, + 58, + 65, + 250, + 50, + 135, + 47, + 65, + 80, + 72, + 230, + 120, + 90, + 155, + 250, + 57, + 85, + 51, + 90, + 170, + 143, + 140, + 300, + 75, + 180, + 280, + 49, + 46, + 270, + 85, + 79, + 83, + 65, + 65, + 50, + 40, + 120, + 59, + 60, + 40, + 33, + 155, + 175, + 160, + 72, + 300, + 175, + 40, + 73, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 170, + 80, + 160, + 50, + 90, + 50, + 330, + 58, + 60, + 65, + 230, + 500, + 75, + 115, + 140, + 200, + 165, + 165, + 30, + 69, + 65, + 77.5, + 90, + 75, + 85, + 46, + 76, + 70, + 52, + 65, + 450, + 160, + 51, + 80, + 63.1, + 470, + 300, + 160, + 77, + 400, + 60, + 150, + 58, + 57, + 115, + 78, + 480, + 150, + 150, + 50, + 130, + 100, + 210, + 180, + 130, + 80, + 150, + 285, + 74.1, + 130, + 65, + 110, + 100, + 62, + 81, + 170, + 72, + 130, + 77, + 250, + 55, + 36.5, + 130, + 150, + 190, + 90, + 95, + 65, + 150, + 500, + 90, + 44, + 280, + 200, + 400, + 250, + 75, + 230, + 500, + 190, + 160, + 90, + 235, + 280, + 55, + 250, + 85, + 76, + 255, + 120, + 173, + 44, + 135, + 155, + 460, + 175, + 47, + 190, + 155, + 360, + 72, + 45, + 65, + 220, + 80, + 145, + 85, + 44, + 79, + 200, + 59, + 130, + 75, + 380, + 165, + 68, + 190, + 320, + 68, + 145, + 235, + 420, + 58, + 70, + 90, + 55, + 200, + 195, + 95, + 280, + 360, + 250, + 175, + 85, + 90, + 62, + 190, + 130, + 38.5, + 37, + 96, + 45, + 270, + 115, + 70, + 75, + 100, + 140, + 165, + 170, + 45, + 120, + 135, + 140, + 145, + 185, + 500, + 38, + 106, + 85, + 68, + 135, + 480, + 155, + 42, + 49, + 37, + 53, + 80, + 40, + 75, + 125, + 215, + 180, + 57, + 57, + 150, + 180, + 150, + 125, + 88, + 90, + 250, + 55, + 160, + 140, + 45, + 150, + 480, + 150, + 90, + 130, + 200, + 250, + 380, + 100, + 500, + 75, + 170, + 70, + 80, + 189, + 85, + 260, + 130, + 280, + 95, + 82, + 120, + 70, + 380, + 45, + 76, + 58, + 270, + 65, + 75, + 32, + 310, + 130, + 240, + 150, + 120, + 65, + 75, + 45, + 350, + 40, + 180, + 155, + 300, + 90, + 185, + 53, + 38, + 50, + 51.5, + 57, + 57, + 150, + 90, + 125, + 220, + 240, + 250, + 55, + 85, + 90, + 75, + 100, + 80, + 80.000005, + 500, + 62, + 73, + 380, + 160, + 170, + 310, + 170, + 80, + 85, + 290, + 70, + 185, + 50, + 40, + 70, + 180, + 105, + 290, + 150, + 90, + 120, + 250, + 320, + 70, + 67, + 130, + 75, + 140, + 45, + 270, + 190, + 100, + 250, + 110, + 165, + 37, + 50, + 50, + 125, + 54, + 85, + 140, + 60, + 400, + 250, + 450, + 38, + 185, + 38, + 270, + 85, + 55, + 351, + 85, + 135, + 82, + 180, + 57, + 133, + 240, + 500, + 348, + 140, + 65, + 180, + 58, + 150, + 68, + 145, + 150, + 46, + 35, + 500, + 235, + 370, + 87, + 59, + 220, + 65, + 69, + 105, + 190, + 75, + 130, + 85, + 150, + 40, + 85, + 100, + 52, + 70, + 150, + 450, + 130, + 28, + 85, + 230, + 125, + 280, + 135, + 90, + 130, + 85, + 100, + 55, + 65, + 70, + 102, + 105, + 160, + 70, + 45, + 46, + 300, + 140, + 100, + 165, + 90, + 40, + 75, + 19.975, + 60, + 45, + 290, + 65, + 90, + 115, + 50, + 360, + 90, + 130, + 60, + 30, + 65, + 65, + 250, + 55, + 100, + 400, + 85, + 90, + 360, + 160, + 65, + 100, + 39, + 45, + 350, + 120, + 125, + 300, + 220, + 145, + 80, + 198, + 320, + 250, + 230, + 35, + 135, + 200, + 300, + 69.99, + 34, + 110, + 33, + 400, + 86, + 80, + 65, + 100.99, + 38, + 350, + 85, + 85, + 150, + 53, + 90, + 370, + 160, + 150, + 65, + 120, + 260, + 180, + 155, + 75, + 105, + 150, + 115, + 67, + 50, + 200, + 100, + 48, + 100, + 160, + 180, + 65, + 120, + 45, + 200, + 53, + 130, + 130, + 17.675, + 90, + 140, + 120, + 60, + 70, + 125, + 68, + 115, + 48, + 72, + 130, + 66, + 65, + 180, + 57, + 295, + 78, + 175, + 80, + 65, + 85, + 78, + 175, + 205, + 135, + 260, + 360, + 175, + 80, + 65, + 65, + 83, + 150, + 110, + 250, + 190, + 55, + 60, + 185, + 48, + 230, + 100, + 45, + 80, + 380, + 135, + 100, + 300, + 60, + 130, + 92, + 220, + 65, + 120, + 55, + 165, + 90, + 90, + 190, + 65, + 165, + 100, + 120, + 55, + 270, + 135, + 350, + 260, + 280, + 420, + 42, + 130, + 85, + 140, + 62, + 60, + 75, + 90, + 58, + 85, + 165, + 265, + 110, + 80, + 90, + 270, + 47, + 78, + 24, + 180, + 128, + 175, + 170, + 90, + 75, + 85, + 135, + 70, + 80, + 280, + 75, + 170, + 65, + 65, + 380, + 60, + 69, + 85, + 57, + 155, + 395, + 200, + 480, + 85, + 100, + 85, + 69, + 38.9, + 75, + 36, + 85, + 85, + 47, + 65, + 55, + 55, + 230, + 65, + 50, + 53.5, + 320, + 250, + 70, + 65, + 220, + 79.5, + 115, + 95, + 68, + 200, + 167, + 200, + 230, + 300, + 200, + 250, + 58, + 60, + 125, + 230, + 85, + 60, + 150, + 160, + 60, + 76, + 85, + 45, + 270, + 150, + 75, + 110, + 115, + 235, + 70, + 250, + 80, + 52, + 180, + 80, + 350, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 56, + 145, + 80, + 55, + 80, + 48, + 63, + 300, + 35, + 50, + 95, + 185, + 300, + 110, + 150, + 200, + 140, + 55, + 87, + 108, + 150, + 145, + 90, + 50, + 65, + 40, + 90, + 83, + 88, + 140, + 200, + 300, + 100, + 185, + 450, + 65, + 38.5, + 200, + 140, + 100, + 70, + 105, + 310, + 390, + 55, + 75, + 80, + 45, + 170, + 285, + 200, + 50, + 145, + 55, + 75, + 135, + 135, + 54.5, + 60, + 180, + 110, + 100, + 90, + 135, + 100, + 120, + 110, + 500, + 250, + 36, + 55, + 500, + 65, + 95, + 300, + 45, + 145, + 90, + 120, + 68, + 155, + 155, + 500, + 95, + 60, + 150, + 210, + 63.1, + 84, + 60, + 130, + 75, + 150, + 40, + 145, + 65, + 100, + 150, + 250, + 82, + 50, + 63, + 39, + 65, + 125, + 85, + 40, + 110, + 250, + 140, + 45, + 95, + 17.675, + 285, + 45, + 230, + 350, + 42, + 85, + 370, + 60, + 75, + 62, + 187, + 48, + 180, + 62, + 85, + 90, + 105, + 250, + 250, + 80, + 148, + 60, + 45, + 160, + 255, + 85, + 250, + 65, + 87, + 165, + 140, + 30, + 300, + 50, + 100, + 200, + 50, + 60, + 120, + 350, + 57, + 93, + 175, + 63, + 250, + 52, + 165, + 55, + 85, + 130, + 100, + 200, + 140, + 140, + 170, + 60, + 105, + 250, + 250, + 85, + 77.5, + 70, + 75, + 70, + 45, + 50, + 175, + 60, + 300, + 120, + 100, + 55, + 120, + 235, + 350, + 40, + 55, + 41, + 150, + 49.5, + 300, + 145, + 49.9, + 54, + 195, + 68, + 140, + 261, + 85, + 55, + 110, + 200, + 260, + 41, + 140, + 90, + 95, + 115, + 55, + 47, + 120, + 55, + 60, + 102, + 42, + 42, + 110, + 50, + 110, + 40, + 35, + 140, + 120, + 150, + 250, + 125, + 370, + 200, + 400, + 70, + 40, + 38, + 190, + 120, + 45, + 45, + 145, + 75, + 160, + 67, + 66, + 72, + 275, + 47.799, + 82, + 190, + 170, + 150, + 150, + 300, + 75, + 200, + 68, + 150, + 48, + 120, + 85.5, + 90, + 110, + 120, + 75, + 100, + 45, + 170, + 150, + 210, + 125, + 350, + 100, + 150, + 80, + 300, + 55, + 60, + 300, + 59, + 125, + 65, + 138, + 450, + 130, + 250, + 48, + 46, + 480, + 70, + 135, + 275, + 460, + 140, + 340, + 48, + 55, + 70, + 56, + 150, + 90, + 42, + 79, + 150, + 45, + 80, + 370, + 125, + 180, + 60, + 160, + 65, + 140, + 270, + 170, + 39, + 150, + 130, + 175, + 390, + 70, + 160, + 230, + 75, + 63, + 75, + 80, + 110, + 165, + 160, + 75, + 93, + 85, + 95, + 72, + 35, + 38, + 165, + 59, + 130, + 165, + 120, + 53, + 185, + 100, + 180, + 56.000099, + 95, + 230, + 55, + 72, + 270, + 85, + 180, + 115, + 85, + 180, + 180, + 180, + 68, + 55, + 43, + 180, + 80, + 80, + 68, + 180, + 55, + 125, + 62, + 62, + 145, + 220, + 150, + 300, + 320, + 150, + 60, + 90, + 95, + 78, + 52, + 125, + 34, + 200, + 140, + 38, + 150, + 190, + 350, + 30, + 62, + 80, + 140, + 190, + 12, + 45, + 98, + 90, + 180, + 160, + 120, + 105, + 180, + 110, + 40, + 53, + 270, + 170, + 85, + 140, + 170, + 68, + 175, + 135, + 165, + 45, + 35, + 43, + 70, + 120, + 95, + 85, + 60, + 90, + 150, + 98, + 45, + 105, + 49, + 380, + 58, + 80, + 200, + 200, + 75, + 120, + 50, + 240, + 95, + 150, + 85, + 50, + 185, + 50, + 200, + 300, + 140, + 300, + 105, + 115, + 70, + 200, + 37, + 210, + 75, + 130, + 370, + 260, + 200, + 250, + 100, + 105, + 195, + 175, + 77, + 40, + 480, + 70, + 190, + 155, + 280, + 60, + 85, + 170, + 62, + 55, + 36, + 150, + 79, + 110, + 72, + 270, + 80, + 130, + 400, + 90, + 95, + 50, + 130, + 260, + 370, + 80, + 55, + 240, + 140, + 110, + 85, + 350, + 110, + 300, + 150, + 52, + 75, + 140, + 115, + 85, + 55, + 100, + 75, + 160, + 54, + 99, + 185, + 97, + 95, + 170, + 175, + 50, + 300, + 100, + 83, + 65, + 43, + 198, + 250, + 50, + 175, + 105, + 300, + 60, + 75, + 69, + 80, + 155, + 79.5, + 50, + 85, + 33, + 110, + 240, + 65, + 48, + 110, + 125, + 120, + 75, + 62, + 67, + 140, + 160, + 140, + 85, + 110, + 85, + 60, + 38, + 110, + 160, + 420, + 60, + 53, + 62, + 145, + 130, + 47.5, + 33, + 95, + 50, + 67, + 220, + 270, + 150.000009, + 56, + 240, + 120, + 220, + 185, + 55, + 64, + 45, + 53, + 500, + 85, + 40, + 65, + 500, + 68, + 145, + 53, + 68, + 92, + 32, + 120, + 155, + 100, + 100, + 130, + 75, + 230, + 35, + 85, + 75, + 200, + 180, + 105, + 45, + 65, + 80, + 190, + 48, + 250, + 72, + 155, + 20, + 180, + 65, + 145, + 80, + 57, + 80, + 100, + 34, + 90, + 56, + 140, + 55, + 75, + 320, + 160, + 110, + 73, + 100, + 55, + 57, + 450, + 100, + 47.5, + 85, + 170, + 100, + 125, + 130, + 60, + 75, + 300, + 165, + 290, + 100, + 55, + 15, + 62, + 110, + 45, + 85, + 73, + 66, + 175, + 55, + 135, + 170, + 125, + 82, + 58, + 55, + 92, + 75, + 78, + 70, + 128, + 270, + 135, + 105, + 35, + 50, + 78, + 55, + 75, + 250, + 135, + 170, + 380, + 220, + 75, + 240, + 80, + 120, + 45, + 350, + 290, + 420, + 275, + 58, + 225, + 58, + 46, + 170, + 395, + 450, + 350, + 60, + 50, + 450, + 37, + 185, + 50, + 56, + 17.675, + 150, + 130, + 65, + 130, + 130, + 65, + 170, + 69, + 85, + 130, + 30, + 135, + 58, + 69, + 280, + 90, + 150, + 165, + 240, + 80, + 235, + 125, + 400, + 60, + 130, + 65, + 110, + 130, + 80, + 40, + 62, + 85, + 125, + 230, + 300, + 98, + 140, + 60, + 160, + 65, + 350, + 130, + 420, + 165, + 190, + 125, + 235, + 65, + 320, + 180, + 60, + 80, + 300, + 200, + 105, + 37, + 250, + 35, + 255, + 120, + 180, + 57, + 110, + 230, + 150, + 120, + 130, + 144, + 70, + 120, + 110, + 40, + 60, + 50, + 63, + 280, + 47, + 45, + 150, + 125, + 240, + 70, + 170, + 86, + 180, + 200, + 65, + 140, + 36, + 44.9, + 70, + 120, + 65, + 95, + 280, + 210, + 120, + 470, + 125, + 330, + 110, + 175, + 125, + 205, + 57, + 110, + 260, + 185, + 70, + 63, + 75, + 100, + 68, + 50, + 120, + 180, + 40, + 200, + 280, + 120, + 150, + 130, + 88, + 105, + 105, + 60, + 250, + 140, + 198, + 67, + 180, + 155, + 190, + 65, + 80, + 220, + 47.999999, + 85, + 70, + 70, + 220, + 85, + 40, + 65, + 225, + 70, + 230, + 53, + 65, + 170, + 200, + 55, + 140, + 150, + 105, + 54, + 17.675, + 450, + 67, + 230, + 48, + 180, + 500, + 57, + 40, + 450, + 100, + 65, + 145, + 46, + 56, + 55, + 380, + 90, + 440, + 70, + 100, + 150, + 90, + 55, + 125, + 95, + 180, + 110, + 120, + 56, + 150, + 48, + 115, + 295, + 175, + 85, + 70, + 45, + 110, + 180, + 235, + 190, + 60, + 59.5, + 300, + 120, + 58, + 98, + 300, + 230, + 65, + 30, + 100, + 45, + 60, + 118, + 50, + 75, + 195, + 68, + 75, + 200, + 68, + 33, + 200, + 350, + 85, + 250, + 75, + 180, + 130, + 55, + 90, + 35, + 95, + 160, + 185, + 75, + 55, + 185, + 120, + 50, + 90, + 47, + 370, + 62, + 70, + 58, + 90, + 210, + 85, + 185, + 80, + 65, + 75, + 124, + 188, + 95, + 260, + 160, + 40, + 220, + 60, + 140, + 55, + 250, + 160, + 69, + 130, + 235, + 46, + 110, + 450, + 68, + 250, + 265, + 85, + 100, + 130, + 75, + 230, + 80, + 290, + 300, + 125, + 70, + 55, + 95, + 95, + 45, + 150, + 55, + 160, + 90, + 95, + 300, + 150, + 52, + 265, + 185, + 115, + 45, + 67, + 75, + 60, + 450, + 40, + 170, + 400, + 45, + 300, + 85, + 350, + 48, + 38, + 100, + 70, + 160, + 230, + 310, + 400, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 50, + 75, + 70, + 140, + 260, + 43, + 120, + 50, + 200, + 145, + 125, + 75, + 370, + 110, + 65, + 210, + 235, + 56, + 250, + 92, + 53, + 100, + 90, + 37, + 400, + 60, + 320, + 210, + 250, + 95, + 350, + 40, + 140, + 120, + 58, + 55, + 90, + 56, + 150, + 470, + 140, + 38, + 130, + 195, + 120, + 65, + 160, + 170, + 40, + 40, + 80, + 195, + 70, + 150, + 200, + 50, + 98, + 160, + 80, + 190, + 110, + 150, + 400, + 185, + 35, + 60, + 175, + 75, + 235, + 38, + 350, + 50, + 90, + 69, + 350, + 100, + 65, + 100, + 45, + 78, + 57, + 130, + 55, + 500, + 190, + 275, + 55, + 38, + 250, + 170, + 165, + 180, + 185, + 45, + 55, + 75, + 77, + 160, + 135, + 227, + 165, + 200, + 130, + 130, + 70, + 170, + 220, + 138, + 160, + 190, + 35, + 280, + 185, + 75, + 45, + 72, + 125, + 55, + 170, + 95, + 77, + 260, + 52, + 69, + 37, + 50, + 10, + 160, + 300, + 47, + 80, + 350, + 38, + 230, + 42, + 100, + 80, + 300, + 135, + 160, + 100, + 160, + 290, + 75, + 140, + 75, + 150, + 200, + 65, + 255, + 110, + 160, + 77, + 77, + 60, + 480, + 33, + 55, + 55, + 420, + 58, + 130, + 160, + 230, + 320, + 51, + 50, + 67, + 320, + 68, + 68, + 95, + 110, + 165, + 90, + 75, + 90, + 150, + 45, + 53, + 75, + 165, + 140, + 270, + 110, + 350, + 35, + 75, + 50, + 40, + 72, + 51, + 320, + 65, + 80, + 55, + 420, + 125, + 54, + 120, + 49, + 50, + 320, + 235, + 165, + 65, + 59.5, + 250, + 56, + 350, + 90, + 150, + 32, + 100, + 130, + 33, + 400, + 65, + 85, + 62, + 175, + 45, + 71, + 210, + 120, + 120, + 70, + 97, + 75, + 37, + 210, + 35, + 70, + 112, + 96, + 195, + 70, + 270, + 40, + 170, + 130, + 150, + 140, + 100, + 275, + 38, + 90, + 52, + 35, + 155, + 110, + 300, + 75, + 125, + 150, + 100, + 180, + 250, + 35, + 120, + 56, + 60, + 75, + 52, + 72, + 57, + 55, + 67, + 180, + 65, + 98, + 120, + 430, + 80, + 55, + 230, + 75, + 70, + 110, + 70, + 140, + 380, + 85, + 108, + 100, + 88, + 140, + 59, + 140, + 150, + 57, + 180, + 110, + 155, + 70, + 51.5, + 350, + 50, + 52, + 205, + 54, + 180, + 60, + 90, + 53, + 170, + 35, + 80, + 190, + 43, + 140, + 130, + 240, + 58, + 180, + 205, + 95, + 190, + 275, + 48, + 65, + 95, + 150, + 120, + 415, + 500, + 55, + 55, + 75, + 95, + 33, + 135, + 75, + 125, + 80, + 45, + 35, + 53, + 110, + 92, + 37, + 60, + 500, + 75, + 60, + 78, + 240, + 45, + 57, + 85, + 57, + 140, + 53, + 72, + 220, + 120, + 220, + 100, + 50, + 160, + 130, + 200, + 37, + 57, + 350, + 120, + 110, + 180, + 130, + 115, + 400, + 90, + 220, + 33, + 90, + 500, + 160, + 78, + 300, + 100, + 200, + 70, + 250, + 200, + 70, + 50, + 43, + 135, + 75, + 90, + 230, + 320, + 57, + 320, + 450, + 53, + 400, + 200, + 300, + 175, + 45, + 240, + 130, + 59, + 95, + 270, + 75, + 39, + 73, + 180, + 85, + 170, + 120, + 75, + 75, + 350, + 500, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 53, + 97, + 60, + 75, + 73, + 110, + 300, + 480, + 140, + 87, + 65, + 180, + 85, + 110, + 85, + 56, + 70, + 60, + 500, + 300, + 56, + 75, + 80, + 450, + 45, + 125, + 115, + 500, + 45, + 155, + 85, + 230, + 150, + 100, + 45, + 120, + 75, + 65, + 110, + 95, + 55, + 150, + 60, + 80, + 95, + 260, + 130, + 270, + 115, + 52, + 150, + 75, + 75, + 85, + 170, + 170, + 55, + 85, + 120, + 360, + 100, + 360, + 320, + 48, + 250, + 55, + 250, + 120, + 350, + 50, + 75, + 38, + 320, + 100, + 55, + 55, + 63, + 60, + 60, + 260, + 175, + 300, + 130, + 90, + 270, + 480, + 440, + 100, + 210, + 38, + 260, + 53, + 70, + 60, + 260, + 75, + 95, + 55, + 260, + 72, + 175, + 140, + 70, + 50, + 65, + 90, + 50, + 78, + 67, + 80, + 55, + 280, + 60, + 85, + 65, + 58, + 63, + 58, + 360, + 10, + 130, + 200, + 65.000009, + 57, + 60, + 83, + 500, + 120, + 45, + 58, + 195, + 130, + 180, + 100, + 59, + 60, + 70, + 140, + 300, + 180, + 75, + 70, + 65, + 60, + 45, + 230, + 64, + 75, + 78, + 155, + 380, + 68, + 67, + 170, + 79.5, + 320, + 190, + 330, + 65, + 85, + 55, + 41, + 180, + 105, + 80, + 450, + 75, + 69, + 60, + 220, + 125, + 155, + 250, + 270, + 100, + 85, + 80, + 380, + 200, + 185, + 130, + 69, + 110, + 39, + 49, + 110, + 125, + 70, + 65, + 280, + 33, + 95, + 395, + 70, + 65, + 60, + 250, + 150, + 65, + 57, + 33, + 175, + 300, + 70, + 42, + 170, + 350, + 35, + 250, + 370, + 110, + 40, + 59, + 150, + 250, + 140, + 90, + 300, + 185, + 200, + 195, + 110, + 50, + 85, + 80, + 35, + 85, + 65, + 38, + 55, + 65, + 150, + 75, + 130, + 300, + 210, + 80, + 350, + 275, + 48, + 47, + 200, + 65, + 68, + 110, + 95, + 400, + 350, + 75, + 50, + 165, + 70, + 70, + 75, + 110, + 48, + 63, + 395, + 330, + 55, + 75, + 150, + 380, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 59, + 33, + 120, + 175, + 450, + 125, + 115, + 37, + 85, + 65, + 170, + 128, + 56, + 300.000009, + 55, + 50, + 400, + 55, + 140, + 70, + 90, + 450, + 95, + 250, + 90, + 70, + 56, + 360, + 45, + 80, + 137, + 110, + 115, + 59, + 160, + 79, + 225, + 75, + 85, + 135, + 50, + 62, + 50, + 69, + 55, + 55, + 65, + 95, + 79, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 130, + 46, + 45, + 90, + 69, + 250, + 60, + 182, + 65, + 125, + 90, + 285, + 220, + 180, + 400, + 280, + 120, + 68, + 37, + 35, + 180, + 95, + 20, + 81, + 90, + 150, + 200, + 260, + 33, + 180, + 135, + 105, + 140, + 130, + 300, + 300, + 300, + 130, + 135, + 300, + 75, + 300, + 59, + 98, + 37, + 170, + 250, + 68, + 56, + 170, + 49, + 47, + 88, + 200, + 195, + 138, + 160, + 45, + 48, + 57, + 55, + 170, + 366, + 55, + 130, + 80, + 160, + 70, + 37, + 75, + 63, + 150, + 260, + 130, + 135, + 135, + 65, + 75, + 370, + 120, + 55, + 135, + 300, + 38, + 300, + 130, + 500, + 98, + 70, + 33, + 75, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 120, + 60, + 300, + 65, + 79.5, + 65, + 450, + 65, + 55, + 190, + 150, + 270, + 260, + 110, + 85, + 200, + 180, + 75, + 48, + 120, + 170, + 300, + 35, + 80, + 150, + 420, + 65, + 70, + 160, + 75, + 105, + 220, + 46, + 130, + 95, + 100, + 55, + 120, + 130, + 51, + 140, + 200, + 70, + 95, + 56, + 70, + 145, + 50, + 280, + 70, + 85, + 160, + 60, + 85, + 250, + 300, + 98, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 63, + 120, + 72, + 165, + 72, + 50, + 295, + 75, + 60, + 155, + 45, + 79, + 125, + 130, + 173, + 75, + 78, + 110, + 500, + 155, + 55, + 170, + 450, + 180, + 65, + 150, + 57, + 230, + 62, + 75, + 80, + 155, + 60, + 62, + 55, + 280, + 50, + 95, + 165, + 28, + 53, + 105, + 55, + 270, + 130, + 250, + 140, + 45, + 68, + 130, + 280, + 65, + 135, + 180, + 57, + 300, + 350, + 95, + 300, + 88, + 120, + 38, + 260, + 86, + 55, + 110, + 500, + 75, + 45, + 80, + 95, + 120, + 54, + 260, + 35, + 240, + 53, + 350, + 110, + 75, + 57.99, + 300, + 180, + 50, + 55, + 70, + 450, + 39, + 65, + 40, + 75, + 85, + 99, + 57, + 220, + 37, + 95, + 60, + 125, + 41, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 48, + 48, + 125, + 260, + 300, + 90, + 210, + 250, + 78, + 125, + 42, + 37, + 92, + 210, + 150, + 105, + 70, + 85, + 390, + 110, + 250, + 160, + 37, + 80, + 180, + 60, + 175, + 110, + 150, + 240, + 115, + 80, + 52, + 70, + 250, + 80, + 120, + 95, + 78, + 230, + 350, + 90, + 140, + 70, + 88, + 138, + 120, + 53, + 280, + 63, + 160, + 85, + 69, + 31, + 70, + 450, + 125, + 370, + 110, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 55, + 360, + 90, + 70, + 125, + 135, + 55, + 150, + 350, + 95, + 125, + 55, + 69, + 39, + 85, + 280, + 350, + 125, + 57, + 100, + 115, + 160, + 64, + 57, + 165, + 230, + 110, + 70, + 65, + 75, + 45, + 45, + 40, + 55, + 69, + 45, + 185, + 70, + 55, + 70, + 500, + 150, + 135, + 70, + 45, + 245, + 65, + 170, + 168, + 110, + 45, + 45, + 65, + 220, + 125, + 120, + 180, + 60, + 73, + 125, + 80, + 130, + 130, + 140, + 230, + 170, + 45, + 92, + 58, + 63, + 72, + 50, + 170, + 330, + 300, + 380, + 210, + 85, + 75, + 50, + 195, + 120, + 130, + 100, + 47, + 420, + 50, + 65, + 200, + 80, + 200, + 72, + 50, + 105, + 105, + 90, + 120, + 165, + 68, + 80, + 120, + 140, + 35, + 90, + 64, + 55, + 80, + 210, + 150, + 300, + 140, + 240, + 55, + 170, + 400, + 125, + 80, + 130, + 110, + 75, + 40, + 92, + 53, + 105, + 55, + 300, + 80, + 250, + 240, + 90, + 130, + 76, + 250, + 69, + 65, + 170, + 53, + 120, + 85, + 195, + 380, + 300, + 380, + 130, + 160, + 400, + 280, + 36.5, + 140, + 120, + 76, + 35, + 58, + 45, + 52, + 195, + 170, + 77, + 168, + 60, + 98, + 50, + 120, + 260, + 69, + 35, + 40, + 62, + 35, + 110, + 50, + 135, + 57, + 85, + 400, + 150, + 63, + 120, + 60, + 45, + 155, + 95, + 60, + 75, + 90, + 480, + 85, + 165, + 68, + 150, + 68, + 36, + 105, + 70, + 160, + 180, + 445, + 40, + 82, + 210, + 90, + 33, + 98.5, + 390, + 500, + 78, + 75, + 190, + 40, + 150, + 69, + 270, + 75, + 180, + 54, + 50, + 51, + 140, + 107, + 138, + 250, + 120, + 44, + 38, + 36, + 85, + 120, + 260, + 110, + 170, + 185, + 72, + 125, + 54.5, + 200, + 500, + 175, + 120, + 75, + 100, + 38, + 115, + 250, + 75, + 55, + 500, + 98, + 60, + 105, + 160, + 275, + 60, + 83, + 450, + 38, + 48, + 70, + 65, + 240, + 100, + 190, + 53, + 245, + 140, + 155, + 120, + 148, + 390, + 165, + 40, + 68, + 175, + 120, + 130, + 230, + 50, + 280, + 150, + 38, + 45, + 260, + 50, + 75, + 150, + 89, + 70, + 110, + 80, + 350, + 65, + 220, + 150, + 80, + 80, + 60, + 110, + 180, + 230, + 55, + 222, + 95, + 47, + 85, + 100, + 85, + 65, + 170, + 38, + 51, + 370, + 75, + 60, + 33, + 95, + 75, + 145, + 200, + 65, + 125, + 75, + 500, + 90, + 63, + 40, + 67, + 145, + 160, + 60, + 138, + 75, + 183, + 130, + 75, + 59, + 65, + 55, + 170, + 33, + 61, + 85, + 55, + 88, + 30, + 70, + 47, + 115, + 145, + 145, + 240, + 65, + 160, + 320, + 250, + 88, + 80, + 50, + 200, + 170, + 55, + 58, + 270, + 45, + 72, + 200, + 60, + 120, + 175, + 380, + 330, + 220, + 35, + 75, + 250, + 40, + 120, + 65, + 130, + 76, + 68, + 115, + 350, + 160, + 77.5, + 160, + 70, + 160, + 150, + 50, + 50, + 98, + 70, + 95, + 90, + 60, + 125, + 95, + 170, + 42, + 190, + 48, + 450, + 50, + 60, + 90, + 68, + 185, + 77, + 135, + 270, + 170, + 135, + 120.000009, + 480, + 145, + 70, + 100, + 65, + 400, + 105, + 190, + 375, + 76, + 95, + 250, + 75, + 60, + 250, + 480, + 165, + 150, + 70, + 65, + 44, + 95, + 180, + 48, + 62, + 190, + 150, + 88, + 200, + 75, + 165, + 75, + 90, + 35, + 400, + 59.5, + 99, + 200, + 400, + 110, + 410, + 115, + 100, + 78, + 135, + 120, + 130, + 280, + 59, + 370, + 230, + 115, + 120, + 135, + 85, + 47, + 135, + 57.5, + 56, + 55, + 37, + 130, + 140, + 220, + 300, + 86, + 80, + 33, + 85, + 78, + 140, + 75, + 95, + 190, + 39, + 95, + 55, + 53.5, + 330, + 97, + 60, + 120, + 68, + 62.99, + 100, + 78, + 59.5, + 160, + 100, + 295, + 385, + 60, + 120, + 400, + 95, + 80, + 73, + 20, + 205, + 48, + 110, + 50, + 150, + 50, + 120, + 77, + 55, + 110, + 230, + 55, + 130, + 64, + 95, + 130, + 75, + 150, + 92, + 33, + 289, + 80, + 35, + 100, + 35, + 85, + 200, + 58, + 58, + 90, + 67, + 83, + 140, + 55, + 110, + 125, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 300, + 125, + 95, + 65, + 125, + 420, + 280, + 58, + 48, + 240, + 120, + 55, + 125, + 245, + 40, + 110, + 220, + 75, + 150, + 400, + 300, + 80, + 85, + 100, + 57, + 230, + 80, + 60, + 140, + 90, + 58, + 50, + 185, + 40, + 70, + 80, + 115, + 105, + 60, + 180, + 38, + 63, + 95, + 450, + 170, + 44, + 350, + 65, + 96, + 17.5, + 70, + 380, + 180, + 80, + 270, + 140, + 75, + 115, + 90, + 230, + 80, + 45, + 250, + 38, + 200, + 75, + 36, + 59, + 98, + 52, + 210, + 120, + 58, + 175, + 110, + 290, + 130, + 280, + 130, + 300, + 58, + 370, + 225, + 70, + 165, + 29, + 95, + 90, + 90, + 280, + 57, + 70, + 45, + 90, + 240, + 80, + 95, + 150, + 10, + 350, + 85, + 75, + 50, + 80, + 285, + 115, + 135, + 160, + 55, + 67, + 78, + 70, + 65, + 31, + 250, + 90, + 250, + 125, + 58, + 175, + 45, + 58, + 105, + 70, + 120, + 45, + 320, + 70, + 85, + 200, + 125, + 95, + 25, + 85, + 55, + 115, + 120, + 200, + 42, + 170, + 280, + 175, + 45, + 80, + 198, + 40, + 120, + 70, + 50, + 130, + 300, + 190, + 140.000009, + 46, + 76, + 350, + 46, + 50, + 80, + 170, + 50, + 47, + 55, + 380, + 190, + 50, + 85, + 66, + 82, + 300, + 58, + 52, + 400, + 90, + 87, + 150, + 190, + 47, + 180, + 270, + 80, + 75, + 195, + 45, + 150, + 130, + 105, + 150, + 250, + 140, + 130, + 160, + 180, + 250, + 55, + 160, + 47, + 45, + 155, + 81, + 100, + 165, + 44, + 110, + 90, + 300, + 48, + 80, + 95, + 120, + 70, + 160, + 140, + 69, + 50, + 210, + 150, + 68, + 110, + 43, + 47, + 79, + 160, + 125, + 35, + 420, + 170, + 200, + 55, + 45, + 75, + 230, + 450, + 85, + 68, + 190, + 380, + 75, + 200, + 65, + 125, + 47, + 47, + 55, + 170, + 135, + 195, + 230, + 250, + 270, + 43, + 65, + 55, + 390, + 95, + 300, + 120, + 95, + 240, + 58, + 180, + 68, + 280, + 49, + 112, + 75, + 80, + 40, + 170, + 130, + 88, + 275, + 45, + 300, + 58, + 65, + 40, + 170, + 120, + 150, + 90, + 150, + 100, + 59, + 100, + 120, + 45, + 50, + 165, + 25, + 45, + 110, + 93, + 50, + 170, + 450, + 200, + 135, + 65, + 76, + 120, + 90, + 320, + 63, + 48, + 130, + 400, + 35, + 185, + 48, + 100, + 42, + 75, + 77, + 198, + 185, + 120, + 250, + 100, + 58, + 87, + 63, + 120, + 400, + 115, + 176, + 125, + 170, + 30, + 70, + 36.5, + 52, + 275, + 36, + 30, + 155, + 150, + 200, + 270, + 300, + 100, + 51, + 45, + 49, + 60, + 65, + 165, + 20, + 75, + 50, + 135, + 150, + 60, + 150, + 220, + 112, + 90, + 55, + 95, + 130, + 45, + 300, + 120, + 120, + 160, + 235, + 43, + 120, + 65, + 37, + 220, + 135, + 73, + 200, + 175, + 80, + 90, + 150, + 190, + 350, + 43, + 85, + 63, + 67, + 250, + 75, + 340, + 180, + 155, + 50, + 36, + 350, + 420, + 70, + 120, + 35, + 160, + 85, + 60, + 38, + 46, + 285, + 220, + 50, + 62, + 350, + 140, + 135, + 90, + 120, + 120, + 55, + 135, + 180, + 150, + 107, + 150, + 55, + 108, + 70, + 220, + 60, + 70, + 120, + 75, + 130, + 76, + 65, + 450, + 40, + 95, + 70, + 45, + 150, + 60, + 85, + 37, + 120, + 85, + 120, + 130, + 70, + 59, + 300, + 75, + 75, + 140, + 350, + 65, + 40, + 84, + 235, + 190, + 80, + 45, + 85, + 45, + 350, + 120, + 150, + 170, + 90, + 390, + 60, + 400, + 75, + 85, + 98, + 35, + 160, + 70, + 125, + 120, + 58, + 140, + 185, + 40, + 35, + 500, + 130, + 130, + 235, + 80, + 78, + 63, + 120, + 180, + 225, + 45, + 140, + 250, + 40, + 85, + 33, + 450, + 47, + 100, + 33, + 170, + 260, + 56, + 33, + 62, + 300, + 170, + 120, + 250, + 180, + 165, + 250, + 40, + 60, + 150, + 69, + 53, + 68, + 120, + 65, + 380, + 45, + 80, + 160, + 98, + 70, + 75, + 50, + 48, + 295, + 75, + 180, + 230, + 75, + 55, + 200, + 85, + 85, + 60, + 280, + 55, + 35, + 120, + 40, + 170, + 56, + 185, + 120, + 65, + 70, + 450, + 120, + 14.8, + 180, + 135, + 75, + 190, + 270, + 125, + 75, + 50, + 80, + 170, + 90, + 50, + 52, + 78, + 45, + 105, + 110, + 45, + 95, + 110, + 310, + 93, + 270, + 150, + 41, + 130, + 69, + 85, + 58, + 100, + 59, + 125, + 130, + 82.5, + 75, + 43, + 115, + 250, + 190, + 78, + 69, + 90, + 500, + 90, + 100, + 55, + 100, + 60, + 140, + 50, + 75, + 60, + 45, + 60, + 100, + 95, + 65, + 80, + 30, + 45, + 60, + 175, + 63, + 85, + 65, + 70, + 150, + 300, + 95, + 50, + 42, + 160, + 360, + 38, + 90, + 36, + 300, + 125, + 190, + 65, + 65, + 150, + 80, + 165, + 90, + 80, + 75, + 210, + 350, + 70, + 85, + 120, + 87, + 145, + 115, + 140, + 72, + 70, + 46, + 80, + 39, + 65, + 38, + 100, + 55, + 140, + 185, + 41, + 140, + 116, + 350, + 180, + 65, + 180, + 39, + 300, + 50, + 280, + 69, + 80, + 350, + 80, + 340, + 52, + 175, + 70, + 70, + 47, + 59, + 125, + 250, + 200, + 170, + 125, + 78, + 130, + 190, + 77.5, + 200, + 60, + 170, + 500, + 50, + 60, + 160, + 150, + 120, + 42, + 120, + 40, + 85, + 160, + 75, + 70, + 105, + 50, + 40, + 60, + 40, + 300, + 225, + 65, + 368, + 63, + 58, + 80, + 170, + 170, + 69, + 380, + 115, + 100, + 130, + 95, + 500, + 230, + 270, + 220, + 85, + 125, + 160, + 115, + 60, + 45, + 120, + 40, + 210, + 370, + 145, + 65, + 79.5, + 190, + 75, + 180, + 400, + 80, + 90, + 110, + 130, + 90, + 210, + 62, + 235, + 70, + 40, + 180, + 150, + 37.5, + 39, + 135, + 145, + 180, + 230, + 70, + 120, + 110, + 57, + 100, + 180, + 85, + 88, + 110, + 58, + 65, + 180, + 310, + 190, + 65, + 80, + 100, + 50, + 220, + 270, + 270, + 45, + 370, + 280, + 250, + 80.000009, + 105, + 250, + 256, + 135, + 115, + 160, + 70, + 110, + 280, + 50, + 85, + 190, + 105, + 140, + 140, + 200, + 50, + 85, + 48, + 53, + 75, + 88, + 74, + 42, + 100, + 220, + 60, + 120, + 47, + 140, + 65, + 63, + 76, + 320, + 65, + 180, + 150, + 65, + 130, + 90, + 82, + 95, + 280, + 83, + 53, + 270, + 200, + 55, + 150, + 260, + 38, + 140, + 60, + 180, + 200, + 64, + 78, + 115, + 100, + 135, + 57, + 95, + 140, + 38, + 50, + 200, + 110, + 80, + 95, + 140, + 135, + 70, + 190, + 105, + 200, + 130, + 90, + 50, + 33, + 350, + 55, + 90, + 160, + 45, + 285, + 105, + 80, + 250, + 196, + 48, + 180, + 185, + 375, + 130, + 55, + 110, + 450, + 100, + 75, + 76, + 149, + 80, + 100, + 200, + 75, + 110, + 450, + 170, + 75, + 48, + 10, + 40, + 120, + 160, + 450, + 100, + 220, + 120, + 56, + 130, + 35, + 260, + 140, + 90, + 175, + 95, + 110, + 37, + 38, + 38, + 55, + 69, + 42, + 120, + 110, + 175, + 400, + 135, + 250, + 88, + 50, + 49, + 190, + 75, + 150, + 80, + 62, + 80, + 88, + 90, + 99, + 50, + 150, + 56, + 300, + 67, + 170, + 390, + 100, + 60, + 150, + 220, + 135, + 120, + 300, + 120, + 130, + 185, + 50, + 110, + 500, + 115, + 55, + 60, + 75, + 70, + 75, + 70, + 65, + 89, + 95, + 88, + 36, + 250, + 39.5, + 190, + 47, + 80, + 95, + 45, + 430, + 130, + 185, + 185, + 78, + 210, + 55, + 36, + 62, + 135, + 180, + 110, + 230, + 45, + 45, + 180, + 35, + 470, + 85, + 100, + 200, + 67, + 80, + 39, + 100, + 75, + 460, + 20, + 250, + 41, + 185, + 96, + 145, + 35, + 70, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 130, + 175, + 55, + 85, + 250, + 160, + 480, + 160, + 195, + 43, + 85, + 130, + 150, + 80, + 220, + 250, + 110, + 69, + 150, + 77, + 34.8, + 80, + 85, + 60, + 90, + 230, + 450, + 110, + 75, + 35, + 280, + 100, + 230, + 250, + 125, + 56, + 190, + 52, + 120, + 110, + 64, + 72, + 70, + 69, + 270, + 55, + 200, + 90, + 60, + 100, + 120, + 67.5, + 46, + 280, + 270, + 75, + 65, + 105, + 58, + 320, + 65, + 38, + 210, + 110, + 50, + 110, + 75, + 120, + 300, + 120, + 110, + 75, + 120, + 220, + 140, + 80, + 98, + 46, + 35, + 150, + 145, + 90, + 100, + 43, + 70, + 85, + 275, + 80, + 140, + 85, + 65, + 220, + 40, + 30, + 160, + 55, + 53, + 79.5, + 300, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 40, + 200, + 45, + 85, + 55, + 240, + 63, + 160, + 56, + 140, + 45, + 35, + 120, + 59, + 150, + 130, + 98, + 450, + 41, + 185, + 95, + 250, + 350, + 90, + 67.5, + 250, + 85, + 140, + 70, + 350, + 250, + 170, + 175, + 65, + 75, + 47, + 125, + 75, + 300, + 70, + 95, + 65, + 160, + 390, + 130, + 185, + 170, + 75, + 125, + 68, + 75, + 140, + 78, + 160, + 110, + 50, + 57, + 275, + 90, + 45, + 72, + 49, + 180, + 77, + 50, + 55, + 89, + 26, + 100, + 60, + 56, + 145, + 250, + 105, + 135, + 60, + 50, + 110, + 160.000009, + 165, + 33, + 122, + 88, + 100, + 52, + 350, + 50, + 125, + 100, + 77, + 170, + 60, + 270, + 40, + 72, + 51, + 50, + 129, + 90, + 120, + 230, + 450, + 72, + 160, + 100, + 340, + 435, + 180, + 190, + 87, + 230, + 95, + 165, + 72, + 125, + 98, + 140, + 75, + 85, + 225, + 200, + 100, + 190, + 18.5, + 200, + 38, + 115, + 110, + 198, + 135, + 92, + 368, + 110, + 105, + 95, + 180, + 250, + 400, + 200, + 42, + 270, + 95, + 68, + 295, + 39, + 150, + 110, + 175, + 49, + 400, + 52, + 95, + 100, + 70, + 57, + 55, + 180, + 100, + 130, + 47, + 59, + 65, + 110, + 52, + 35, + 60, + 66, + 130, + 10, + 55, + 47, + 125, + 190, + 73, + 150, + 300, + 170, + 90, + 85, + 38, + 95, + 200, + 70, + 160, + 120, + 400, + 61, + 60, + 32, + 120, + 210, + 150, + 170, + 50, + 75, + 280, + 155, + 85, + 100, + 250, + 390, + 75, + 45, + 105, + 195, + 55, + 65, + 62, + 55, + 90, + 70, + 100, + 270, + 60, + 105, + 40, + 115, + 62, + 47, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 160, + 60, + 53, + 77, + 70, + 100, + 135, + 65, + 115, + 200, + 47, + 500, + 60, + 36, + 55, + 62, + 340, + 60, + 78, + 67, + 100, + 115, + 220, + 65, + 160, + 180, + 67, + 120, + 70, + 170, + 95, + 220, + 75, + 55, + 85, + 80, + 85, + 110, + 100, + 380, + 75, + 52, + 130, + 250, + 120, + 175, + 135, + 320, + 285, + 180, + 145, + 55, + 65, + 52, + 200, + 220, + 85, + 135, + 110, + 90, + 185, + 250, + 55, + 120, + 45, + 280, + 105, + 90, + 180, + 80, + 175, + 480, + 75, + 90, + 65, + 68, + 170, + 40, + 75, + 140, + 40, + 42, + 75, + 140, + 38, + 155, + 30, + 105, + 86, + 170, + 200, + 155, + 45, + 220, + 38, + 115, + 76, + 130, + 150, + 120, + 56, + 160, + 130, + 330, + 33, + 150, + 290, + 235, + 70, + 155, + 80, + 120, + 160, + 105, + 400, + 85, + 60, + 450, + 70, + 50, + 85, + 130, + 170, + 58, + 70, + 85, + 100, + 52, + 40, + 400, + 140, + 30, + 70, + 190, + 38.99, + 80, + 150, + 390, + 85, + 150, + 260, + 430, + 500, + 90, + 85, + 75, + 37, + 280, + 130, + 140, + 78, + 55, + 190, + 175, + 230, + 460, + 75, + 100, + 180, + 140, + 37, + 420, + 80, + 185, + 85, + 63, + 49, + 150, + 300, + 160.000999, + 350, + 70, + 130, + 55, + 53, + 348, + 40, + 65, + 210, + 80, + 49.9, + 140, + 320, + 80, + 305, + 65, + 70, + 95, + 70, + 270, + 45, + 70, + 85, + 110, + 290, + 36, + 35, + 80, + 120, + 170, + 75, + 90, + 140, + 100, + 72, + 120, + 105, + 75, + 50, + 180, + 121, + 73.1, + 59, + 155, + 145, + 75, + 55, + 400, + 75, + 40, + 125, + 55, + 65, + 62, + 300, + 130, + 84, + 150, + 220, + 165, + 240, + 145, + 270, + 58, + 500, + 250, + 70, + 150.005, + 300, + 83, + 90, + 65, + 200, + 47, + 120, + 38, + 290, + 49, + 200, + 90, + 180, + 40, + 180, + 61, + 148, + 47, + 180, + 90, + 92, + 58, + 125, + 77, + 180, + 95, + 200, + 55, + 40, + 80 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Newly Built=0
Price=%{x}
count=%{y}", + "legendgroup": "0", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "0", + "nbinsx": 120, + "offsetgroup": "0", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 57, + 70, + 100, + 90, + 57, + 50, + 220, + 58, + 150, + 75, + 37, + 135, + 42, + 42, + 79, + 160, + 70, + 56, + 170, + 77, + 85, + 70, + 37.5, + 90, + 190, + 65, + 49, + 130, + 180, + 105, + 140, + 120, + 150, + 115, + 75, + 59, + 70, + 300, + 220, + 140, + 33, + 150, + 500, + 38, + 71, + 400, + 57, + 320, + 360, + 185, + 90, + 50, + 60, + 130, + 100, + 97, + 145, + 50, + 98, + 75, + 230, + 105, + 170, + 45, + 150, + 120, + 300, + 80, + 35, + 300, + 55, + 120, + 130, + 420, + 160, + 35, + 250, + 85, + 175, + 250, + 70, + 250, + 290, + 160, + 67, + 70, + 300, + 65, + 55, + 50, + 175, + 50, + 120, + 40, + 32, + 350, + 50, + 80, + 100, + 42, + 48, + 100, + 48, + 54.5, + 250, + 130, + 300, + 160, + 90, + 39.5, + 160, + 85, + 40, + 75, + 125, + 155, + 210, + 53, + 150, + 85, + 170, + 100, + 90, + 49, + 250, + 53, + 38, + 75, + 37, + 200, + 49.5, + 200, + 95, + 200, + 65, + 68, + 300, + 87, + 68, + 90, + 90, + 110, + 60, + 280, + 58.5, + 67, + 450, + 80, + 160, + 60, + 100, + 85, + 90, + 85, + 150, + 80, + 35, + 200, + 30, + 50, + 160, + 130, + 110, + 260, + 500, + 185, + 135, + 66, + 55, + 100, + 37, + 88, + 300, + 87, + 163, + 65, + 140, + 175, + 140, + 180, + 70, + 200, + 75, + 170, + 300, + 55, + 28, + 190, + 360, + 90, + 250, + 105, + 115, + 60, + 300, + 110, + 130, + 390, + 130, + 85, + 45, + 110, + 130, + 70, + 180, + 64, + 70, + 40, + 70, + 350, + 235, + 190, + 67, + 140, + 70, + 90, + 80, + 40, + 50, + 220, + 80, + 56, + 80, + 75, + 230, + 160, + 85, + 67, + 60, + 55, + 35, + 165, + 80, + 160, + 70, + 95, + 80, + 200, + 145, + 95, + 82, + 53, + 32.75, + 400, + 160, + 80, + 180, + 75, + 90, + 80, + 85, + 145, + 130, + 250, + 75, + 85, + 88, + 95, + 100, + 165, + 40, + 350, + 40, + 80, + 185, + 85, + 200, + 47, + 50, + 270, + 150, + 52.5, + 135, + 120, + 140, + 84, + 60, + 105, + 30, + 50, + 33, + 230, + 130, + 350, + 225, + 115, + 41.5, + 75, + 175, + 140, + 260, + 150, + 60, + 165, + 380, + 85, + 54, + 145, + 320, + 31, + 47, + 46, + 71.5, + 75, + 180, + 100, + 95, + 230, + 30, + 450, + 46, + 95, + 15.5, + 80, + 90, + 80, + 80, + 82, + 60, + 52, + 140, + 80, + 85, + 180, + 72, + 240, + 50, + 75, + 62, + 60, + 125, + 170, + 180, + 190, + 97, + 65, + 100, + 90, + 125, + 60, + 55, + 200, + 198, + 80, + 55, + 460, + 73, + 32.75, + 160, + 390, + 130, + 68, + 80, + 480, + 85, + 145, + 140, + 120, + 210, + 270, + 90, + 135, + 87, + 32.5, + 92.5, + 125, + 150, + 350, + 450, + 85, + 125, + 180, + 35, + 185, + 77, + 85, + 235, + 73, + 65, + 62, + 73, + 165, + 90, + 110, + 60, + 350, + 110, + 500, + 165, + 125, + 45, + 150, + 85, + 180, + 250, + 160, + 70, + 60, + 75, + 130, + 144, + 160, + 80, + 57, + 67, + 65, + 155, + 85, + 35, + 135, + 70, + 80, + 48, + 75, + 450, + 80, + 63, + 100, + 65, + 220, + 200, + 220, + 50, + 250, + 50, + 200, + 70, + 68, + 66, + 180, + 160, + 55, + 180, + 85, + 250, + 48, + 45, + 150, + 32.75, + 90, + 150, + 67, + 65, + 80, + 450, + 180, + 85, + 38, + 35, + 175, + 62.5, + 70, + 75, + 55, + 35, + 117, + 75, + 80, + 160, + 145, + 170, + 48, + 100, + 260, + 45, + 49, + 55, + 90, + 125, + 250, + 90, + 100, + 130, + 220, + 270, + 78, + 120, + 300, + 38, + 70, + 68, + 105, + 170, + 350, + 48, + 65, + 300, + 75, + 365, + 260, + 45, + 47, + 95, + 85, + 33, + 60, + 450, + 280, + 45, + 75, + 80, + 158, + 195, + 410, + 76, + 350, + 250, + 55, + 68, + 70, + 102, + 189, + 80, + 110, + 60, + 300, + 75, + 120, + 400, + 150, + 270, + 60, + 500, + 32, + 47, + 26, + 75, + 55, + 25, + 500, + 85, + 170, + 140, + 92, + 59, + 77, + 105, + 80, + 55, + 75, + 350, + 120, + 65, + 50, + 75, + 250, + 130, + 195, + 150, + 170, + 80, + 210, + 64, + 235, + 410, + 60, + 90, + 65, + 230, + 61, + 68, + 180, + 180, + 52, + 200, + 45, + 78, + 220, + 80, + 75, + 220, + 56, + 340, + 290, + 90, + 95, + 95, + 50, + 55, + 180, + 75, + 80, + 75, + 120, + 36, + 200, + 90, + 50, + 285, + 45, + 58, + 269, + 100, + 50, + 110, + 54, + 110, + 41, + 30, + 39, + 130, + 95, + 70, + 450, + 155, + 50, + 78, + 37, + 105, + 280, + 59, + 120, + 33, + 80, + 270, + 118, + 195, + 100, + 75, + 175, + 95, + 75, + 190, + 400, + 160, + 100, + 120, + 200, + 47, + 53, + 180, + 155, + 70, + 78, + 350, + 70, + 65, + 350, + 170, + 75, + 470, + 50, + 250, + 300, + 190, + 70, + 49, + 30, + 40, + 110, + 40, + 169, + 480, + 130, + 120, + 55, + 40, + 170, + 68, + 320, + 120, + 100.01, + 72, + 110, + 185, + 75, + 400, + 200, + 90, + 300, + 38, + 200, + 75, + 150, + 62, + 200, + 180, + 22, + 85, + 160, + 92, + 70, + 85, + 135, + 140, + 48, + 65, + 130, + 106, + 295, + 180, + 50, + 450, + 60, + 300, + 40, + 50, + 250, + 140, + 130, + 50, + 55, + 420, + 105, + 250, + 205, + 85, + 175, + 280, + 140, + 198.5, + 127, + 270, + 45, + 80, + 200, + 270, + 53, + 95, + 60, + 65, + 160, + 480, + 100, + 75, + 100, + 34, + 58, + 59, + 280, + 92, + 100, + 150, + 66, + 115, + 80, + 135, + 160, + 260, + 25, + 300, + 250, + 480, + 110, + 33, + 56, + 170, + 72, + 17.675, + 164, + 90, + 67, + 125, + 100, + 380, + 155, + 470, + 90, + 200, + 500, + 60, + 75, + 180, + 110, + 170, + 70, + 60, + 70, + 155, + 400, + 130, + 140, + 55, + 130, + 200, + 55, + 450, + 165, + 78, + 90, + 85, + 290, + 300, + 43, + 100, + 95, + 125, + 210, + 80, + 90, + 60, + 350, + 500, + 55, + 220, + 105, + 68, + 240, + 120, + 65, + 175, + 260, + 78, + 350, + 76, + 95, + 70, + 130, + 30, + 40, + 450, + 45, + 120, + 300, + 55, + 60, + 65, + 135, + 55, + 280, + 195, + 300, + 80, + 41, + 51.5, + 170, + 79.5, + 97, + 220, + 220, + 37, + 280, + 80, + 100, + 120, + 100, + 32, + 95, + 172, + 250, + 350, + 55, + 400, + 53, + 32, + 24, + 165, + 165, + 57, + 75, + 130, + 70, + 50, + 180, + 53.1, + 109, + 115, + 130, + 90, + 45, + 270, + 60, + 225, + 55, + 220, + 74, + 78, + 45, + 110, + 47, + 100, + 110, + 280, + 45, + 270, + 70, + 245, + 135, + 55, + 75, + 120, + 280, + 85, + 56, + 90, + 40, + 200, + 100, + 60, + 185, + 98, + 75, + 55, + 160, + 150, + 205, + 55, + 80, + 45, + 185, + 480, + 140, + 70, + 250, + 480, + 90, + 130, + 35, + 55, + 92, + 48, + 190, + 400, + 85, + 190, + 37, + 51, + 180, + 250, + 185, + 37, + 100, + 90, + 170, + 45, + 35.85, + 90, + 290, + 120, + 87, + 60, + 250, + 130, + 75, + 420, + 68, + 175, + 77, + 145, + 80, + 170, + 70, + 165, + 125, + 59, + 230, + 250, + 55, + 87, + 180, + 180, + 450, + 180, + 100, + 65, + 40, + 90, + 360, + 230, + 150, + 75, + 250, + 300, + 65, + 185, + 90, + 250, + 180, + 150, + 65, + 70, + 167, + 440, + 250, + 70, + 150, + 380, + 95, + 33, + 275, + 300, + 78, + 120, + 77, + 68, + 120, + 160, + 120, + 200, + 160, + 160, + 150, + 58, + 59, + 70, + 37, + 87, + 71.5, + 30, + 48, + 450, + 47, + 320, + 95, + 83, + 155, + 115, + 45, + 250, + 125, + 200, + 350, + 45, + 36.5, + 45, + 150, + 48, + 43, + 70, + 135, + 130, + 120, + 72, + 67, + 50, + 58, + 50, + 185, + 185, + 95, + 120, + 150, + 70, + 220, + 145, + 85, + 500, + 90, + 67, + 79.5, + 38, + 115, + 120, + 65, + 120, + 185, + 300, + 55, + 280, + 150, + 270, + 210, + 120, + 58, + 140, + 230, + 54, + 400, + 275, + 370, + 140, + 38, + 49, + 60, + 16.5, + 35, + 68, + 50, + 120, + 72, + 150, + 145, + 170, + 90, + 80, + 200, + 300, + 99, + 75, + 80, + 38, + 280, + 200, + 285, + 48, + 160, + 85, + 85, + 59, + 100, + 35, + 110, + 75, + 86, + 45, + 150, + 180, + 35, + 200, + 65, + 50, + 350, + 70, + 180, + 290, + 330, + 100, + 135, + 55, + 47, + 52, + 125, + 95, + 115, + 62, + 150, + 83, + 90, + 70, + 75.000009, + 150, + 200, + 190, + 95, + 55, + 350, + 260, + 37, + 400, + 35, + 160, + 130, + 95, + 80, + 160, + 26, + 50, + 430, + 250, + 125, + 73, + 58, + 85, + 450, + 330, + 110, + 195, + 220, + 65, + 57, + 110, + 280, + 85, + 95, + 160, + 38, + 65, + 75, + 200, + 20, + 230, + 200, + 175, + 83, + 350, + 175, + 130, + 150, + 145, + 230, + 95, + 130, + 92, + 115, + 260, + 125.99, + 155, + 65, + 65, + 80, + 52, + 148.5, + 190, + 260, + 69, + 200, + 170, + 45, + 60, + 230, + 85, + 90, + 90, + 110, + 35, + 110, + 85, + 220, + 100, + 73, + 155, + 58, + 58, + 220, + 39, + 350, + 125, + 62, + 150, + 57, + 185, + 240, + 155, + 62, + 55, + 90, + 250, + 120, + 500, + 110, + 65, + 40, + 105, + 65, + 145, + 52, + 110, + 85, + 43, + 270, + 62, + 27, + 47, + 500, + 40, + 60, + 118, + 135, + 45, + 400, + 220, + 220, + 190, + 75, + 48, + 65, + 125, + 450, + 70, + 180, + 105, + 60, + 300, + 82, + 68, + 90, + 72, + 100, + 100, + 56, + 300, + 85, + 60, + 40, + 96, + 65, + 160, + 170, + 47, + 47.5, + 95, + 52, + 85, + 150, + 40, + 38, + 80, + 110, + 110, + 75, + 130, + 48, + 250, + 42, + 130, + 65, + 61.75, + 300, + 115, + 400, + 39, + 400, + 200, + 210, + 33, + 250, + 500, + 35, + 90, + 38, + 135, + 100, + 46, + 35, + 128, + 160, + 250, + 120, + 41, + 300, + 125, + 300, + 17, + 50, + 300, + 120, + 75, + 250, + 55, + 90, + 55, + 175, + 65, + 50, + 95, + 35, + 140, + 90, + 370, + 45, + 62, + 225, + 110, + 125, + 47, + 48, + 250, + 80, + 150, + 120, + 55, + 120, + 80, + 145, + 370, + 110, + 88, + 125, + 85, + 78, + 125, + 445, + 120, + 55, + 75, + 450, + 27, + 260, + 400, + 170, + 180, + 80, + 180, + 40, + 63, + 285, + 45, + 65, + 125, + 115, + 450, + 235, + 67, + 290, + 95, + 95, + 400, + 70, + 58, + 65, + 45, + 45, + 48, + 120, + 28.5, + 185, + 110, + 120, + 65, + 250, + 150, + 55, + 105, + 80, + 120, + 38, + 250, + 199.999, + 100, + 450, + 190, + 35, + 130, + 280, + 68, + 190, + 95, + 65, + 170, + 50, + 90, + 75, + 160, + 48, + 245, + 58, + 50, + 80, + 75, + 85, + 78, + 350, + 270, + 255, + 42, + 110, + 100, + 65, + 160, + 55, + 450, + 111, + 90, + 170, + 47, + 78, + 47, + 95, + 232, + 180, + 153, + 170, + 85, + 53, + 38, + 270, + 67, + 320, + 45, + 55, + 80, + 70, + 220, + 270, + 390, + 45, + 99, + 430, + 250, + 400, + 60, + 100, + 85, + 85, + 165, + 80, + 115, + 90, + 192, + 115, + 90, + 50, + 47, + 75, + 45, + 170, + 125, + 138, + 56, + 210, + 95, + 70, + 82, + 150, + 180, + 70, + 62, + 450, + 135, + 180, + 175, + 50, + 59, + 135, + 130, + 110, + 40, + 55, + 70, + 120, + 90, + 35, + 250, + 150, + 57, + 130, + 60, + 80, + 75, + 100, + 54, + 80, + 95, + 150, + 400, + 80, + 85, + 50, + 140, + 55, + 70, + 335, + 250, + 135, + 37, + 235, + 160, + 90, + 200, + 75, + 450, + 36, + 130, + 37, + 90, + 65, + 200, + 58, + 230, + 120, + 175, + 75, + 70, + 135, + 60, + 230, + 130, + 110, + 95, + 400, + 42, + 260, + 100, + 110, + 105, + 110, + 65, + 150, + 80, + 80, + 100, + 73, + 100, + 130, + 130, + 100, + 100, + 69, + 100, + 45, + 240, + 215, + 55, + 95, + 80, + 120, + 40, + 90, + 58, + 46, + 65, + 210, + 250, + 78, + 70, + 220, + 165, + 350, + 75, + 170, + 150, + 380, + 85, + 68, + 57, + 62, + 38, + 330, + 141, + 140, + 75, + 300, + 27, + 200, + 500, + 450, + 130, + 230, + 400, + 75, + 85, + 68, + 85, + 250, + 206, + 170, + 75, + 170, + 140, + 450, + 55, + 65, + 180, + 260, + 300, + 160, + 240, + 58, + 85, + 110, + 82, + 175, + 250, + 28, + 110, + 65, + 195, + 130, + 53, + 68, + 300, + 70, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 500, + 190, + 100, + 170, + 140, + 95, + 230, + 210, + 105, + 70, + 450, + 55, + 130, + 48, + 270, + 33.5, + 400, + 365, + 150, + 150, + 95, + 80, + 35, + 105, + 65, + 350, + 480, + 140, + 78, + 44.815, + 55, + 90, + 90, + 40, + 500, + 150, + 105, + 37, + 250, + 64, + 95, + 350, + 200, + 46, + 70, + 45, + 220, + 350, + 55, + 110, + 64, + 40, + 75, + 150, + 40, + 110, + 55, + 56, + 250, + 77, + 125, + 120, + 70, + 80, + 90, + 150, + 51, + 110, + 170, + 53, + 70, + 190, + 120, + 180, + 130, + 90, + 85, + 74.999999, + 72, + 37, + 68, + 140, + 100, + 140, + 175, + 48, + 65, + 110, + 200, + 370, + 40, + 90, + 66, + 57, + 150, + 100, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 110, + 210, + 50, + 38.99, + 135, + 70, + 350, + 400, + 140, + 45, + 300, + 100, + 300, + 22, + 65, + 110, + 62, + 60, + 75, + 40, + 36, + 150, + 72.5, + 130, + 65, + 50, + 110, + 48, + 400, + 115, + 71, + 125, + 300, + 93, + 130, + 40, + 58, + 270, + 40, + 40, + 55, + 450, + 130, + 65, + 270, + 60, + 38, + 180, + 120, + 115, + 37, + 68, + 65, + 70, + 115, + 260, + 46, + 23, + 55, + 170, + 66, + 150, + 46, + 80, + 85, + 260, + 45, + 78, + 58, + 45, + 102, + 135, + 85, + 180, + 270, + 365, + 50, + 47, + 130, + 115, + 130, + 240, + 300, + 50, + 62.5, + 63, + 80, + 270, + 170, + 50, + 49, + 85, + 36, + 190, + 75, + 70, + 120, + 110, + 50, + 92, + 120, + 90, + 40, + 220, + 500, + 260, + 95, + 190, + 53, + 160, + 150, + 195, + 75, + 90, + 85, + 130, + 85, + 35, + 90, + 65, + 460, + 38, + 95, + 62, + 60, + 70, + 40, + 50, + 205, + 300, + 185, + 150, + 90, + 47, + 127, + 84, + 130, + 500, + 75, + 200, + 54, + 75, + 300, + 100, + 200, + 190, + 70, + 35, + 140, + 80, + 110, + 100, + 205, + 82, + 35, + 72, + 50, + 80, + 240, + 110, + 135, + 78, + 170, + 40, + 130, + 150, + 100, + 75, + 39, + 50, + 220, + 150, + 125, + 85, + 90, + 95, + 260, + 180, + 160, + 150, + 110, + 95, + 180, + 170, + 140, + 300, + 95, + 175, + 75, + 200, + 30, + 120, + 125, + 58, + 120, + 65, + 90, + 75, + 50, + 60, + 350, + 48, + 120, + 35, + 80, + 48, + 45, + 42, + 65, + 500, + 70, + 71, + 67, + 295, + 200, + 250, + 40, + 52, + 80, + 140, + 200, + 250, + 260, + 55, + 49, + 59, + 150, + 235, + 45, + 49, + 62, + 120, + 198, + 360, + 280, + 220, + 80, + 115, + 53, + 110, + 55, + 75, + 80, + 35, + 450, + 35, + 150, + 18.975, + 190, + 140, + 130, + 55, + 270, + 110, + 80, + 195, + 35, + 190, + 120, + 200, + 58, + 205, + 100, + 68, + 175, + 160, + 60, + 110, + 78, + 350, + 37, + 195, + 50, + 90, + 75, + 38.5, + 58, + 70, + 460, + 400, + 185, + 500, + 70, + 46, + 125, + 140, + 110, + 95, + 300, + 57, + 155, + 48, + 265, + 28, + 45, + 250, + 65, + 47, + 145, + 83, + 120, + 250, + 73, + 105, + 165, + 41, + 82, + 160, + 125, + 100, + 115, + 95, + 70, + 320, + 125, + 70, + 70, + 80, + 280, + 83, + 75, + 45, + 92, + 135, + 320, + 40.64, + 58, + 85, + 98, + 85, + 160, + 250, + 180, + 65, + 197, + 400, + 80, + 40, + 145, + 85, + 170, + 285, + 55, + 48, + 49.5, + 160, + 400, + 100, + 160, + 95, + 85, + 155, + 150, + 36.5, + 30, + 74, + 195, + 56, + 410, + 68, + 68, + 110, + 65, + 200, + 95, + 80, + 80, + 65, + 55, + 55, + 120, + 155, + 120, + 500, + 140, + 108, + 48, + 155, + 37, + 75, + 60, + 160, + 43, + 95, + 49.5, + 70, + 95, + 220, + 190, + 185, + 75, + 97.5, + 115, + 95, + 155, + 250, + 90, + 50, + 55, + 75, + 90, + 90, + 160, + 75, + 350, + 120, + 65, + 160, + 120, + 78, + 150, + 35, + 87, + 130, + 250, + 150, + 60, + 200, + 58, + 70, + 18, + 230, + 35, + 90, + 46, + 270, + 90, + 75, + 180, + 180, + 500, + 200, + 50, + 300, + 300, + 57, + 69, + 280, + 70, + 63, + 270, + 150, + 120, + 45, + 36, + 69.5, + 65, + 250, + 75, + 70, + 300, + 58, + 170, + 110, + 150, + 57, + 80, + 210, + 140, + 150, + 120, + 185, + 450, + 150, + 385, + 200, + 150, + 65, + 165, + 120, + 140, + 280, + 53, + 49.5, + 300, + 98, + 70, + 100, + 65, + 235, + 160, + 200, + 250, + 57, + 280, + 300, + 45, + 175, + 60, + 120, + 43.5, + 150, + 65, + 30, + 125, + 169.5, + 85, + 105, + 33, + 300, + 95, + 72, + 57, + 45, + 45, + 38, + 140, + 150, + 177.99, + 87.000099, + 76, + 47, + 60, + 170, + 60, + 180, + 170, + 67, + 85, + 120, + 80, + 90, + 65, + 76, + 80, + 60, + 140, + 110, + 150, + 195, + 55, + 95, + 500, + 62, + 50, + 340, + 450, + 65, + 73, + 62, + 38, + 36, + 250, + 130, + 60, + 105, + 280, + 36, + 55, + 95, + 65, + 200, + 43, + 57, + 75, + 40, + 60, + 65, + 100, + 250, + 75, + 75, + 210, + 60, + 68, + 360, + 330, + 65, + 300, + 155, + 62, + 44, + 65, + 240, + 70, + 180, + 130, + 155, + 110, + 28, + 55, + 130, + 150, + 63, + 150, + 77, + 59, + 41.5, + 34.5, + 65, + 36, + 120, + 350, + 160, + 198, + 80, + 60, + 155, + 80, + 55, + 77, + 53, + 110, + 350, + 120, + 240, + 40, + 80, + 69.5, + 180, + 40, + 32, + 32, + 220, + 220, + 115, + 130, + 100, + 55, + 130, + 275, + 265, + 55, + 165, + 390, + 64, + 55, + 150, + 90, + 60, + 60, + 80, + 75, + 34, + 105, + 55, + 250, + 100, + 43.5, + 88, + 53, + 350, + 300, + 85, + 200, + 265, + 325, + 180, + 125, + 85, + 100, + 78, + 125, + 70, + 110, + 130, + 280, + 150, + 310, + 200, + 220, + 99, + 125, + 130, + 270, + 82, + 75, + 80, + 55, + 220, + 83, + 500, + 62, + 80, + 190, + 67, + 145, + 120, + 55, + 105, + 240, + 85, + 350, + 120, + 140, + 40, + 180, + 460, + 180, + 260, + 50, + 61, + 70, + 85, + 70, + 70, + 80, + 120, + 90, + 123, + 185, + 220, + 200, + 150, + 105, + 90, + 37, + 170, + 68, + 230, + 270, + 58.5, + 140, + 220, + 85, + 37, + 70, + 95, + 65, + 500, + 135, + 200, + 330, + 300, + 40, + 230, + 300, + 95, + 108, + 47, + 65, + 300, + 200, + 120, + 210, + 50, + 122, + 150, + 78, + 60, + 200, + 250, + 165, + 47, + 170, + 90, + 45, + 38, + 100, + 75, + 120, + 44, + 50, + 80, + 47, + 95, + 350, + 42, + 52, + 180, + 58, + 145, + 35, + 100, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 57, + 40, + 300, + 63, + 54, + 68, + 85, + 75, + 70, + 120, + 250, + 330, + 140, + 66, + 45, + 135, + 57, + 42, + 42, + 40, + 90, + 80, + 250, + 140, + 120, + 220, + 145, + 62, + 80, + 270, + 165, + 300, + 150, + 130, + 40, + 200, + 170, + 140, + 125, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 270, + 60, + 300, + 250, + 299.999999, + 55, + 45, + 160, + 150, + 65, + 55, + 60, + 35, + 55, + 290, + 130, + 300, + 260, + 120, + 90, + 95, + 65, + 72.5, + 170, + 65, + 23, + 125, + 47, + 65, + 110, + 50, + 90, + 50, + 100, + 150, + 105, + 200, + 130, + 33, + 70, + 180, + 35, + 200, + 450, + 260, + 24, + 150, + 75, + 65, + 50, + 120, + 170, + 56, + 130, + 120, + 155, + 120, + 80, + 220, + 500, + 250, + 47.5, + 170, + 35, + 65, + 55, + 95, + 65, + 90, + 33, + 270, + 56, + 82, + 300, + 55, + 57, + 335, + 215, + 75, + 110, + 300, + 63, + 160, + 500, + 65, + 170, + 180, + 80, + 110, + 200, + 45, + 32, + 85, + 38, + 130, + 35, + 40, + 120, + 55, + 155, + 42, + 65, + 47, + 240, + 250, + 44, + 80, + 90, + 60, + 500, + 120, + 40, + 170, + 75, + 95, + 175, + 125, + 420, + 480, + 75, + 100, + 65, + 75, + 10, + 120, + 150, + 45, + 62, + 46, + 150, + 90, + 32.5, + 250, + 380, + 160, + 230, + 150, + 43, + 400, + 185, + 140, + 100, + 200, + 380, + 150, + 133, + 115, + 500, + 38, + 38, + 49, + 120, + 200, + 80, + 200, + 39, + 85, + 72, + 100, + 110, + 180, + 130, + 200, + 38, + 250, + 45, + 68, + 33, + 400, + 150, + 73, + 75, + 120, + 70, + 63, + 39, + 85, + 50, + 200, + 230, + 160, + 220, + 85, + 72, + 150, + 87, + 100, + 240, + 150, + 280, + 120, + 65, + 45, + 85, + 130, + 75, + 450, + 85, + 250, + 140, + 160, + 67, + 120, + 200, + 80, + 150, + 150, + 36, + 400, + 300, + 80, + 280, + 400, + 60, + 68, + 80, + 52, + 100, + 75, + 60, + 60, + 40, + 170, + 45, + 290, + 65, + 45, + 135, + 80, + 37, + 61, + 50, + 50, + 350, + 260, + 82, + 85, + 35, + 250, + 48, + 95, + 70, + 85, + 115, + 270, + 63, + 55, + 32, + 90, + 115, + 65, + 63, + 170, + 175, + 500, + 180, + 48, + 41, + 370, + 85, + 135, + 145, + 200, + 100, + 85, + 450, + 125, + 100, + 52, + 43, + 36, + 28, + 60, + 300, + 30, + 40, + 32.75, + 120, + 94, + 70, + 150, + 100, + 120, + 110, + 75, + 220, + 78, + 52, + 75, + 165, + 70, + 220, + 65, + 150, + 130, + 130, + 210, + 100, + 55, + 50, + 130, + 85, + 240, + 120, + 90, + 250, + 75, + 36, + 90, + 220, + 35, + 130, + 120, + 65, + 160, + 330, + 36, + 110, + 65, + 170, + 33, + 100, + 100, + 82, + 170, + 130, + 200, + 100, + 72, + 63, + 35, + 135, + 140, + 450, + 58, + 90, + 100, + 280, + 185, + 28, + 97, + 350, + 115, + 500, + 45, + 65, + 58, + 190, + 62, + 180, + 250, + 500, + 195, + 88, + 55, + 90, + 60, + 115, + 170, + 85, + 80, + 65, + 120, + 140, + 200, + 35, + 55.5, + 57, + 48, + 49, + 135, + 120, + 155, + 95, + 100, + 220, + 120, + 110, + 110, + 45, + 100, + 140, + 35, + 158, + 130, + 90, + 300, + 130, + 185, + 500, + 140, + 195, + 42, + 40, + 75, + 130, + 125, + 60, + 350, + 26, + 65, + 140, + 140, + 450, + 450, + 45, + 185, + 71, + 35, + 88, + 130, + 60, + 87, + 150, + 220, + 165, + 80, + 68, + 250, + 120, + 34, + 480, + 60, + 80, + 90, + 63, + 30, + 60, + 110, + 120, + 45, + 65, + 350, + 470, + 62, + 35, + 65, + 65, + 180, + 70, + 190, + 51, + 130, + 78, + 80, + 55, + 50, + 85, + 65, + 105, + 350, + 45, + 80, + 60, + 75, + 88, + 85, + 260, + 54, + 195, + 170, + 120, + 150, + 65, + 175, + 87, + 48, + 60, + 70, + 35, + 36, + 90, + 110, + 70, + 120, + 165, + 45, + 85, + 330, + 140, + 110, + 300, + 280, + 65, + 95, + 53, + 140, + 75, + 185, + 88, + 110, + 120, + 57, + 95, + 63, + 310, + 48, + 150, + 73, + 58, + 47, + 90, + 380, + 60, + 400, + 50, + 75, + 80, + 70, + 130, + 38, + 130, + 90, + 175, + 150, + 155, + 80, + 51, + 55, + 200, + 60, + 145, + 20, + 320, + 245, + 140, + 130, + 230, + 25, + 250, + 90, + 200, + 40, + 130, + 78, + 85, + 100, + 73, + 80, + 160, + 60, + 120, + 90, + 220, + 105, + 53, + 75, + 45, + 120, + 90, + 240, + 58, + 280, + 120, + 69, + 70, + 125, + 150, + 85, + 100, + 100, + 92, + 120, + 70, + 72, + 65, + 37, + 230, + 60, + 150, + 120, + 140, + 210, + 62, + 185, + 150, + 80, + 235, + 60.5, + 45, + 26.4375, + 95, + 105, + 280, + 98, + 115, + 45, + 100, + 130, + 59, + 70, + 130, + 290, + 145, + 75, + 59, + 140, + 73, + 34, + 67, + 300, + 55, + 40, + 390, + 55, + 175, + 55, + 290, + 350, + 340, + 150, + 70, + 95, + 110, + 80, + 65, + 100, + 115, + 230, + 165, + 49, + 170, + 125, + 95, + 150, + 350, + 200, + 135, + 60, + 30, + 350, + 400, + 76, + 85, + 36, + 85, + 100, + 100, + 160, + 300, + 110, + 320, + 115, + 280, + 80, + 90, + 45, + 45, + 180, + 58, + 45, + 380, + 145, + 51, + 38, + 480, + 80, + 145, + 80, + 57, + 300, + 180, + 80, + 240, + 350, + 70, + 450, + 270, + 120, + 45, + 62, + 250, + 45, + 200, + 59, + 126, + 35, + 68, + 58, + 140, + 110, + 72, + 400, + 75, + 95, + 35, + 90, + 150, + 320, + 38, + 55, + 42, + 270, + 90, + 350, + 18, + 60, + 35, + 95, + 300, + 420, + 400, + 57, + 200, + 130, + 220, + 35, + 26, + 85, + 100, + 54, + 500, + 68, + 58, + 75, + 50, + 98, + 150, + 160, + 37, + 30, + 48, + 120, + 420, + 185, + 130, + 155, + 75, + 135, + 44, + 35, + 50, + 35, + 260, + 69.9, + 230, + 80, + 130, + 150, + 39.6, + 65, + 51, + 125, + 120, + 250, + 88, + 45, + 45, + 30, + 92, + 350, + 57, + 68, + 220, + 65, + 350, + 95, + 200, + 67, + 95, + 110, + 280, + 85, + 45, + 46, + 185, + 380, + 150, + 56, + 29, + 79, + 155, + 85, + 50, + 100, + 105, + 60, + 105, + 95, + 55, + 130, + 100, + 320, + 55, + 55, + 38, + 75, + 85, + 75, + 260, + 37, + 175, + 65, + 90, + 55, + 180, + 65, + 35, + 190, + 65, + 400, + 90, + 157, + 50, + 77, + 190, + 88, + 90, + 133, + 50, + 41, + 195, + 55, + 63, + 68, + 45, + 27, + 180, + 57, + 39, + 85, + 125, + 100, + 97, + 75, + 130, + 89, + 65, + 360, + 120, + 43, + 70, + 65, + 122, + 150, + 70, + 38, + 120, + 180, + 220, + 135, + 220, + 220, + 450, + 55, + 100, + 47.5, + 95, + 48, + 120, + 40, + 50, + 110, + 80, + 180, + 35, + 210, + 95, + 65, + 150, + 46, + 300, + 72, + 180, + 130, + 50, + 52, + 155, + 210, + 225, + 185, + 310, + 180, + 52, + 38, + 260, + 40, + 45, + 110, + 78, + 100, + 110, + 72, + 70, + 65, + 45, + 200, + 65, + 165, + 65, + 55, + 60, + 35, + 77, + 46, + 74, + 100, + 165, + 60, + 350, + 47, + 170, + 65, + 70, + 23.8, + 150, + 175, + 40, + 90, + 50, + 75, + 230, + 65, + 48.5, + 180, + 75, + 120, + 100, + 110, + 75, + 300, + 45, + 380, + 120, + 80, + 110, + 450, + 60, + 270, + 90, + 50, + 95, + 57, + 160, + 100, + 400, + 155, + 65, + 76, + 120, + 185, + 85, + 220, + 40, + 48, + 52, + 98, + 60, + 75, + 20, + 45, + 170, + 65, + 85, + 90, + 75, + 70, + 65, + 75, + 45, + 310, + 185, + 40, + 110, + 350, + 150, + 250, + 120, + 115, + 80, + 120, + 400, + 47, + 130, + 42, + 130, + 150, + 58, + 65, + 150, + 130, + 200, + 64, + 100, + 170, + 220, + 65, + 60, + 110, + 120, + 30, + 155, + 95, + 500, + 60, + 500, + 280, + 370, + 85, + 75, + 48, + 85, + 40, + 47, + 170, + 55, + 120, + 50, + 120, + 65, + 190, + 184, + 100, + 280, + 165, + 270, + 47.5, + 60, + 36, + 190, + 75, + 55, + 400, + 195, + 78, + 220, + 90, + 75, + 58, + 125, + 170, + 120, + 150, + 70, + 90, + 100, + 200, + 145, + 280, + 48, + 50, + 85, + 75, + 110, + 85, + 90, + 125, + 38, + 40, + 235, + 150, + 85, + 89, + 13, + 45, + 48, + 100, + 75, + 80, + 86, + 73, + 52, + 60, + 230, + 400, + 43, + 130, + 400, + 50, + 80, + 39, + 350, + 65, + 80, + 85, + 125, + 45, + 400, + 85, + 85, + 50, + 170, + 78, + 220, + 50, + 52, + 140, + 125, + 95, + 140, + 350, + 115, + 55, + 52.5, + 75, + 115, + 100, + 105, + 130, + 130, + 170, + 57, + 150, + 140, + 85, + 65, + 210, + 260, + 220, + 90, + 150, + 38, + 40, + 110, + 320, + 120, + 50, + 95, + 118, + 38, + 500, + 92, + 85, + 175, + 67, + 50, + 75, + 42, + 30, + 76, + 240, + 455, + 280, + 90, + 90, + 375, + 295, + 65, + 150, + 75, + 49, + 30, + 50, + 85, + 82, + 62, + 90, + 150, + 180, + 150, + 130, + 69, + 170, + 160, + 270, + 75, + 380, + 45, + 51, + 60, + 125, + 90, + 70, + 53, + 90, + 63, + 90, + 68, + 49.247, + 100, + 88, + 99.5, + 150, + 280, + 85, + 75, + 150, + 59, + 105, + 120, + 120, + 75, + 110, + 95, + 60, + 350, + 120, + 40, + 65, + 41, + 115, + 45, + 155, + 44, + 135, + 55, + 450, + 450, + 350, + 200, + 88, + 160, + 300, + 235, + 90, + 80, + 300, + 85, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 41, + 45, + 73, + 400, + 135, + 450, + 165, + 80, + 95, + 65, + 55, + 150, + 320, + 200, + 50, + 37, + 195, + 120, + 55, + 75, + 76, + 160, + 43, + 46, + 70, + 150, + 270, + 68, + 48.5, + 160, + 48, + 250, + 50, + 42, + 100, + 35, + 40, + 230, + 135, + 180, + 68, + 230, + 90, + 130, + 85, + 125, + 130, + 80, + 250, + 50, + 105, + 80, + 45, + 110, + 115, + 55, + 42, + 80, + 53, + 110, + 300, + 36, + 110, + 135, + 165, + 160, + 250, + 175, + 190, + 50, + 85, + 120, + 80, + 250, + 80, + 390, + 280, + 160, + 90, + 225, + 100, + 100, + 65, + 280, + 128, + 150, + 330, + 130, + 160, + 170, + 52, + 85, + 120, + 160, + 100, + 83, + 55, + 255.5, + 90, + 128, + 115, + 56, + 85, + 35, + 80, + 55, + 180, + 55, + 79, + 80, + 130, + 100, + 75, + 40, + 90, + 70, + 150, + 200, + 48, + 70, + 360, + 160, + 100, + 70, + 70, + 33.5, + 140, + 170, + 160, + 42, + 90, + 110, + 130, + 85, + 65, + 33, + 110, + 52, + 200, + 190, + 175, + 200, + 75, + 90, + 160, + 65, + 220, + 150, + 275, + 55, + 450, + 350, + 140, + 49, + 95, + 116, + 120, + 410, + 110, + 230, + 70, + 300, + 86, + 38, + 110, + 90, + 150, + 43, + 300, + 200, + 45, + 90, + 48, + 73, + 36, + 54, + 280, + 350, + 90, + 90, + 350, + 175, + 52, + 176, + 70, + 125, + 32, + 130, + 29, + 40, + 250, + 90, + 68, + 110, + 70, + 75, + 80, + 60, + 220, + 230, + 57.1725, + 67, + 55, + 38, + 200, + 48, + 90, + 245, + 200, + 90, + 270, + 360, + 160, + 39, + 49, + 500, + 185, + 190, + 310, + 40, + 180, + 110, + 175, + 185, + 200, + 85, + 165, + 60, + 380, + 150, + 500, + 150, + 155, + 270, + 240, + 49.5, + 95, + 50, + 40, + 95, + 230, + 150, + 57, + 58, + 120, + 165, + 61, + 170, + 68, + 49, + 75, + 50, + 67, + 75, + 115, + 165, + 400, + 27, + 100, + 52, + 76, + 35, + 155, + 49, + 350, + 95, + 85, + 107, + 80, + 120, + 200, + 128, + 87, + 97, + 160, + 50, + 98, + 85, + 60, + 76, + 90, + 160, + 58, + 160, + 125, + 130, + 270, + 79, + 68, + 90, + 49, + 195, + 75, + 130, + 135, + 60, + 240, + 200, + 160, + 75, + 400, + 85, + 135, + 65, + 65, + 45, + 145, + 250, + 230, + 85, + 140, + 130, + 160, + 58, + 57, + 300, + 90, + 55, + 90, + 45, + 170, + 100, + 180, + 500, + 58, + 200, + 55, + 78, + 55, + 98, + 38, + 40, + 185, + 67, + 50, + 130, + 70, + 40, + 90, + 170, + 180, + 30, + 290, + 47, + 350, + 34, + 180, + 380, + 68, + 55, + 149.5, + 170, + 48, + 280, + 130, + 105, + 58, + 135, + 65, + 160, + 75, + 32, + 160, + 150, + 68, + 180, + 500, + 55, + 89, + 285, + 105, + 100, + 190, + 150, + 235, + 65, + 120, + 55, + 80, + 130, + 150, + 35, + 175, + 64, + 73, + 138, + 150, + 75, + 118, + 330, + 340, + 140, + 75, + 280, + 265, + 33, + 160, + 85, + 300, + 200, + 38, + 120, + 48, + 40, + 80, + 120, + 11.5, + 70, + 135, + 130, + 50, + 160, + 79, + 500, + 99.5, + 75, + 160, + 50, + 40, + 450, + 37, + 75, + 31, + 230, + 125, + 140, + 50, + 185, + 55, + 56, + 65, + 120, + 155, + 50, + 66, + 125, + 62, + 175, + 55, + 165, + 130, + 120, + 43, + 35, + 140, + 70, + 155, + 80, + 60, + 120, + 380, + 100, + 250, + 68, + 500, + 190, + 60, + 160, + 220, + 120, + 125, + 125, + 350, + 99, + 70, + 45, + 400, + 77, + 59, + 175, + 55, + 47, + 35, + 55, + 90, + 60, + 450, + 225, + 160, + 220, + 45, + 126, + 37, + 270, + 49, + 85, + 130, + 250, + 320, + 120, + 170, + 160, + 65, + 340, + 33, + 45, + 90, + 130, + 250, + 42, + 42, + 130, + 140, + 180, + 215, + 75, + 140, + 150, + 35, + 270, + 185, + 45, + 135, + 130, + 85, + 81, + 40, + 75, + 60, + 260, + 180, + 120, + 150, + 300, + 140, + 135, + 295, + 170, + 80, + 105, + 300, + 190, + 120, + 260, + 280, + 110, + 48, + 200, + 80, + 33, + 170, + 80, + 140, + 210, + 135, + 50, + 93, + 22, + 60, + 230, + 189, + 150, + 265, + 150, + 300, + 72, + 82, + 280, + 37, + 101, + 95, + 65, + 100, + 40, + 100, + 65, + 29.99, + 45, + 75, + 55, + 370, + 280, + 370, + 140, + 50, + 105, + 65, + 43, + 150, + 100, + 75, + 52, + 175, + 130, + 45, + 60, + 140, + 150, + 120, + 49, + 70, + 38, + 85, + 35, + 65, + 150, + 105, + 37, + 125, + 300, + 75, + 52, + 48, + 40, + 95, + 80, + 360, + 126, + 40, + 150, + 120, + 165, + 160, + 38, + 350, + 280, + 190, + 120, + 190, + 300, + 70, + 75, + 11, + 98, + 70, + 120, + 105, + 57, + 35, + 100, + 150, + 40, + 500, + 150, + 140, + 75, + 80, + 380, + 50, + 135, + 170, + 53, + 61, + 97, + 115, + 77, + 85, + 220, + 52, + 55, + 430, + 168, + 50, + 90, + 75, + 250, + 265, + 75, + 270, + 170, + 165, + 60, + 100, + 60, + 67, + 100, + 230, + 178, + 100, + 90, + 50, + 160, + 79.5, + 12, + 370, + 72, + 155, + 130, + 200, + 110, + 300, + 70, + 55, + 270, + 480, + 185, + 130, + 65, + 190, + 390, + 135, + 55, + 45, + 55, + 115, + 80, + 225, + 160, + 90, + 450, + 38, + 18.975, + 120, + 280, + 55, + 80, + 80, + 85, + 37, + 65, + 35, + 130, + 68, + 75, + 90, + 80, + 100, + 180, + 275, + 80, + 86, + 135, + 270, + 38, + 48, + 50, + 185, + 280, + 115, + 185, + 110, + 180, + 260, + 250, + 58, + 500, + 65, + 125, + 43, + 60, + 70, + 16.675, + 170, + 250, + 120, + 140, + 92, + 300, + 230, + 45, + 250, + 130, + 320, + 85, + 380, + 52, + 72, + 130, + 65, + 70, + 120, + 46, + 270, + 39, + 70, + 275, + 70, + 75, + 35, + 40, + 37, + 100, + 97, + 180, + 120, + 60, + 80, + 260, + 59, + 100, + 160, + 47, + 130, + 165, + 170, + 65, + 55, + 65, + 110, + 231, + 165, + 180, + 280, + 77.5, + 53, + 225, + 110, + 155, + 150, + 75, + 80, + 50, + 68, + 50, + 410, + 88, + 80, + 125, + 160, + 67, + 60, + 140, + 130, + 160, + 78, + 33, + 160, + 165, + 195, + 85, + 35, + 170, + 74, + 420, + 280, + 55, + 55, + 300, + 45, + 55, + 52, + 250, + 78, + 65, + 170, + 76, + 80, + 48, + 140, + 55, + 197, + 130, + 350, + 198, + 100, + 230, + 35, + 95, + 140, + 110, + 90, + 57, + 250, + 125, + 350, + 85, + 75, + 100, + 145, + 42, + 300, + 82, + 55, + 38, + 40, + 280, + 65, + 75, + 385, + 70, + 78, + 78, + 220, + 300, + 120, + 65, + 200, + 70, + 47, + 120, + 75, + 130, + 280, + 110, + 350, + 55, + 120, + 165, + 110, + 175, + 75, + 75, + 60, + 250, + 35, + 100, + 45, + 63, + 185, + 50, + 130, + 80, + 65, + 72, + 34, + 250, + 350, + 400, + 250, + 130, + 60, + 350, + 60, + 130, + 90, + 200, + 240, + 44, + 95, + 95, + 55, + 70, + 170, + 120, + 180, + 250, + 75, + 52.8, + 65, + 44, + 120, + 78, + 110, + 150, + 80, + 160, + 80, + 68, + 35, + 170, + 150, + 129.5, + 60, + 110, + 60, + 51, + 75, + 220, + 250, + 65, + 125, + 230, + 33, + 63, + 90, + 232, + 95, + 75, + 120, + 60, + 150, + 160, + 85, + 150, + 95, + 72, + 200, + 120, + 198, + 120, + 90, + 500, + 60, + 280, + 65, + 49, + 130, + 96, + 68, + 210, + 50, + 80, + 115, + 150, + 65, + 48, + 85, + 450, + 130, + 83, + 145, + 450, + 230, + 70, + 75, + 60, + 130, + 150, + 60, + 55, + 75, + 250, + 125, + 124.5, + 70, + 115, + 55, + 95, + 38, + 50, + 150, + 80, + 300, + 220, + 120, + 400, + 47, + 250, + 26, + 155, + 500, + 80, + 31, + 52, + 76, + 130, + 125, + 57, + 200, + 280, + 100, + 140, + 170, + 98, + 31, + 125, + 70, + 185, + 82, + 250, + 75, + 160, + 350, + 20, + 400, + 80, + 62, + 90, + 110, + 95, + 190, + 78, + 55, + 67, + 85, + 34, + 200, + 450, + 49, + 75, + 38, + 190, + 128, + 50, + 300, + 70, + 45, + 130, + 110, + 58, + 100, + 275, + 185, + 350, + 180, + 200, + 200, + 260, + 33, + 105, + 200, + 350, + 44, + 450, + 150, + 140, + 105, + 150, + 87, + 55, + 60, + 85, + 46, + 80, + 120, + 75, + 180, + 120, + 48, + 78, + 280, + 180, + 330, + 60, + 195, + 140, + 110, + 70, + 280, + 95, + 60, + 70, + 210, + 85, + 49.5, + 47, + 105, + 160, + 180, + 165, + 220, + 55, + 93, + 95, + 135, + 180, + 85, + 50, + 300, + 140, + 190, + 64, + 68, + 78, + 140, + 250, + 40, + 160, + 160, + 75, + 500, + 100, + 200, + 88, + 80, + 58, + 270, + 50, + 55, + 75, + 300, + 35, + 68, + 75, + 80, + 69, + 295, + 83, + 140, + 180, + 350, + 150, + 67, + 37, + 48, + 120, + 70, + 500, + 47, + 250, + 200, + 70, + 40, + 85, + 70, + 400, + 85, + 400, + 64, + 165, + 80, + 200, + 60, + 75, + 260, + 135, + 105, + 250, + 67, + 130, + 230, + 55, + 32, + 120, + 110, + 120, + 125, + 102, + 50, + 62, + 480, + 260, + 48, + 60, + 58, + 57, + 85, + 35, + 55, + 27, + 88, + 200, + 120, + 400, + 450, + 270, + 120, + 115, + 300, + 79, + 190, + 125, + 400, + 65, + 50, + 75, + 285, + 66, + 37, + 45, + 46, + 50, + 160, + 62, + 430, + 75, + 450, + 135, + 100, + 45, + 45, + 82, + 32, + 160, + 49, + 250, + 65, + 450, + 50, + 70, + 180, + 300, + 250, + 55, + 95, + 95, + 49, + 500, + 32, + 56, + 100, + 40, + 60, + 70, + 120, + 80, + 56, + 98, + 20, + 70, + 160, + 100, + 85, + 350, + 38, + 100, + 37, + 350, + 140, + 320, + 105, + 55, + 39.8, + 500, + 140, + 135, + 80, + 70, + 160, + 60, + 80, + 400, + 185, + 110, + 36, + 82, + 350, + 240, + 50, + 230, + 37, + 25, + 130.013, + 120, + 180, + 105, + 110, + 100, + 58, + 135, + 39, + 190, + 55, + 70, + 155, + 41, + 180, + 80, + 165, + 150, + 65, + 100, + 280, + 240, + 47, + 100, + 120, + 108, + 95, + 130, + 67, + 45, + 24, + 36, + 47, + 40, + 75, + 65, + 120, + 160, + 150, + 45, + 67.5, + 88, + 270, + 290, + 250, + 120, + 85, + 36, + 350, + 70, + 250, + 59.5, + 105, + 70, + 48.5, + 60, + 190, + 220, + 180, + 260, + 320, + 200, + 330, + 41.8, + 65, + 150, + 74, + 95, + 330, + 120, + 50, + 150, + 50, + 100, + 105, + 60, + 80, + 100, + 300, + 300, + 205, + 70, + 170, + 35, + 100, + 50, + 160, + 50, + 85, + 170, + 56, + 100, + 55, + 45, + 70, + 130, + 53, + 100, + 180, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 190, + 55, + 150, + 370, + 290, + 150, + 75, + 79.5, + 60, + 100, + 70, + 63, + 165, + 45, + 110, + 40, + 95, + 85, + 47, + 75, + 90, + 90, + 185, + 65, + 110, + 350, + 360, + 180, + 57, + 69, + 100, + 52, + 90, + 38, + 300, + 75, + 40, + 165, + 82, + 38, + 85, + 230, + 230, + 140, + 180, + 500, + 120, + 50, + 42, + 115, + 210, + 210, + 200, + 130, + 125, + 180, + 85, + 380, + 300, + 160, + 87, + 80, + 47, + 125, + 105, + 100, + 290, + 165, + 27, + 120, + 180, + 65, + 60, + 78, + 60, + 115, + 95, + 50, + 60, + 130, + 100, + 105, + 59, + 33, + 85, + 110, + 125, + 440, + 110, + 90, + 53, + 60, + 270, + 66.329, + 135, + 210, + 115, + 150, + 195, + 32, + 180, + 68, + 210, + 190, + 38, + 180, + 140, + 75, + 65, + 130, + 52, + 20, + 135, + 175, + 200, + 55, + 36, + 46.2, + 165, + 70, + 70, + 58, + 67, + 35, + 140, + 138, + 29, + 85, + 95, + 160, + 180, + 98, + 280, + 130, + 60, + 70, + 50, + 290, + 70, + 150, + 27, + 280, + 110, + 45, + 90, + 79.5, + 75, + 200, + 65, + 80, + 34, + 155, + 205, + 65, + 230, + 260, + 260, + 380, + 45, + 209, + 78, + 180, + 52, + 45, + 205, + 70, + 69, + 140, + 38, + 285, + 120, + 72, + 45, + 250, + 68, + 65, + 83, + 180, + 36, + 45, + 500, + 290, + 450, + 67, + 27, + 175, + 95, + 165, + 74, + 47, + 280, + 390, + 114, + 50, + 65, + 68, + 50, + 150, + 120, + 78, + 270, + 410, + 63, + 66, + 120, + 270, + 93, + 120, + 75.009009, + 80, + 160, + 75, + 43, + 399.999999, + 45, + 40, + 160, + 120, + 215, + 30, + 120, + 275, + 500, + 135, + 32, + 240, + 120, + 42, + 140, + 85, + 120, + 80, + 140, + 110, + 83, + 65, + 220, + 52, + 240, + 98, + 100, + 260, + 35, + 150, + 78, + 250, + 85, + 140, + 199.999, + 230, + 125, + 65, + 130, + 58, + 450, + 96, + 240, + 35, + 180, + 55, + 65, + 55, + 80, + 200, + 95, + 75, + 400, + 50, + 34, + 50, + 200, + 120, + 140, + 100, + 400, + 60, + 350, + 95, + 38, + 63, + 67, + 120, + 100, + 175, + 45, + 110, + 49, + 56, + 165, + 80, + 145, + 86, + 60, + 68, + 170, + 120, + 175, + 55, + 150, + 80, + 60, + 85, + 65, + 295, + 50, + 375, + 214, + 50, + 90, + 350, + 290, + 60, + 49.5, + 55, + 105, + 72, + 150, + 135, + 56, + 25, + 98, + 70, + 250, + 120, + 290, + 88, + 90, + 135, + 410, + 85, + 130, + 55, + 43, + 65, + 434, + 105, + 145, + 220, + 95, + 35, + 40, + 145, + 75, + 110, + 65, + 400, + 70, + 120, + 120, + 40, + 90, + 325, + 65, + 180, + 84, + 75, + 150, + 110, + 68, + 78, + 93, + 98, + 220, + 95, + 155, + 110, + 30, + 55, + 55, + 50, + 41, + 48, + 280, + 55, + 350, + 55, + 210, + 160, + 140, + 112, + 205, + 72, + 120, + 40, + 170, + 270, + 34, + 60, + 82, + 48, + 145, + 100, + 53, + 65, + 500, + 220, + 62, + 45, + 160, + 60, + 150, + 120, + 70, + 120, + 45, + 55, + 41, + 95, + 45, + 70, + 65, + 48, + 95, + 155, + 165, + 43, + 100, + 85, + 270, + 230, + 320, + 250, + 120, + 58, + 16, + 300, + 100, + 49.5, + 50, + 170, + 150, + 47, + 90, + 78, + 400, + 35, + 31, + 155, + 130, + 120, + 75, + 65, + 41, + 78, + 90, + 35, + 145, + 110, + 35, + 165, + 52, + 15, + 95, + 350, + 350, + 90, + 95, + 380, + 300, + 450, + 47, + 65, + 75, + 68, + 250, + 55, + 80, + 130, + 50, + 155, + 37, + 85, + 250, + 90, + 42, + 30, + 100, + 350, + 85, + 85, + 120, + 170, + 430, + 420, + 120, + 95, + 62, + 75, + 140, + 75, + 47, + 480, + 150, + 350, + 160, + 33, + 140, + 175, + 111, + 160, + 60, + 350, + 220, + 160, + 45, + 125, + 100, + 350, + 88, + 35, + 55, + 275, + 43.2, + 120, + 59, + 100, + 55, + 60, + 280, + 106, + 67, + 110, + 95, + 350.035, + 75, + 30, + 110, + 30, + 150, + 60, + 150, + 55, + 190, + 110, + 130, + 57, + 75, + 38, + 230, + 95, + 160, + 200, + 90, + 130, + 120, + 62, + 120, + 185, + 160, + 58, + 55, + 55, + 14, + 170, + 360, + 48, + 120, + 68, + 94, + 40, + 450, + 170, + 180, + 350, + 54, + 150, + 170, + 65, + 70, + 170, + 60, + 320, + 90, + 92, + 75, + 300, + 130, + 240, + 450, + 65, + 180, + 95, + 63, + 45, + 38, + 400, + 150, + 140, + 460, + 100, + 80, + 220, + 450, + 90, + 80, + 60, + 105, + 40, + 80, + 35, + 48, + 47, + 220, + 150, + 45, + 63, + 69, + 65, + 220, + 120, + 55, + 65, + 155, + 262, + 155, + 80, + 65, + 250, + 85, + 160, + 65, + 85, + 67, + 350, + 25, + 175, + 58, + 55, + 60, + 90, + 125, + 39, + 36, + 90, + 69, + 150, + 125, + 70, + 95, + 58, + 69, + 125, + 160, + 80, + 200, + 85, + 140, + 45, + 165, + 125, + 140, + 48, + 98, + 115, + 260, + 34.1, + 120 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Newly Built=0
Price=%{x}", + "legendgroup": "0", + "marker": { + "color": "#EF553B" + }, + "name": "0", + "notched": true, + "offsetgroup": "0", + "showlegend": false, + "type": "box", + "x": [ + 57, + 70, + 100, + 90, + 57, + 50, + 220, + 58, + 150, + 75, + 37, + 135, + 42, + 42, + 79, + 160, + 70, + 56, + 170, + 77, + 85, + 70, + 37.5, + 90, + 190, + 65, + 49, + 130, + 180, + 105, + 140, + 120, + 150, + 115, + 75, + 59, + 70, + 300, + 220, + 140, + 33, + 150, + 500, + 38, + 71, + 400, + 57, + 320, + 360, + 185, + 90, + 50, + 60, + 130, + 100, + 97, + 145, + 50, + 98, + 75, + 230, + 105, + 170, + 45, + 150, + 120, + 300, + 80, + 35, + 300, + 55, + 120, + 130, + 420, + 160, + 35, + 250, + 85, + 175, + 250, + 70, + 250, + 290, + 160, + 67, + 70, + 300, + 65, + 55, + 50, + 175, + 50, + 120, + 40, + 32, + 350, + 50, + 80, + 100, + 42, + 48, + 100, + 48, + 54.5, + 250, + 130, + 300, + 160, + 90, + 39.5, + 160, + 85, + 40, + 75, + 125, + 155, + 210, + 53, + 150, + 85, + 170, + 100, + 90, + 49, + 250, + 53, + 38, + 75, + 37, + 200, + 49.5, + 200, + 95, + 200, + 65, + 68, + 300, + 87, + 68, + 90, + 90, + 110, + 60, + 280, + 58.5, + 67, + 450, + 80, + 160, + 60, + 100, + 85, + 90, + 85, + 150, + 80, + 35, + 200, + 30, + 50, + 160, + 130, + 110, + 260, + 500, + 185, + 135, + 66, + 55, + 100, + 37, + 88, + 300, + 87, + 163, + 65, + 140, + 175, + 140, + 180, + 70, + 200, + 75, + 170, + 300, + 55, + 28, + 190, + 360, + 90, + 250, + 105, + 115, + 60, + 300, + 110, + 130, + 390, + 130, + 85, + 45, + 110, + 130, + 70, + 180, + 64, + 70, + 40, + 70, + 350, + 235, + 190, + 67, + 140, + 70, + 90, + 80, + 40, + 50, + 220, + 80, + 56, + 80, + 75, + 230, + 160, + 85, + 67, + 60, + 55, + 35, + 165, + 80, + 160, + 70, + 95, + 80, + 200, + 145, + 95, + 82, + 53, + 32.75, + 400, + 160, + 80, + 180, + 75, + 90, + 80, + 85, + 145, + 130, + 250, + 75, + 85, + 88, + 95, + 100, + 165, + 40, + 350, + 40, + 80, + 185, + 85, + 200, + 47, + 50, + 270, + 150, + 52.5, + 135, + 120, + 140, + 84, + 60, + 105, + 30, + 50, + 33, + 230, + 130, + 350, + 225, + 115, + 41.5, + 75, + 175, + 140, + 260, + 150, + 60, + 165, + 380, + 85, + 54, + 145, + 320, + 31, + 47, + 46, + 71.5, + 75, + 180, + 100, + 95, + 230, + 30, + 450, + 46, + 95, + 15.5, + 80, + 90, + 80, + 80, + 82, + 60, + 52, + 140, + 80, + 85, + 180, + 72, + 240, + 50, + 75, + 62, + 60, + 125, + 170, + 180, + 190, + 97, + 65, + 100, + 90, + 125, + 60, + 55, + 200, + 198, + 80, + 55, + 460, + 73, + 32.75, + 160, + 390, + 130, + 68, + 80, + 480, + 85, + 145, + 140, + 120, + 210, + 270, + 90, + 135, + 87, + 32.5, + 92.5, + 125, + 150, + 350, + 450, + 85, + 125, + 180, + 35, + 185, + 77, + 85, + 235, + 73, + 65, + 62, + 73, + 165, + 90, + 110, + 60, + 350, + 110, + 500, + 165, + 125, + 45, + 150, + 85, + 180, + 250, + 160, + 70, + 60, + 75, + 130, + 144, + 160, + 80, + 57, + 67, + 65, + 155, + 85, + 35, + 135, + 70, + 80, + 48, + 75, + 450, + 80, + 63, + 100, + 65, + 220, + 200, + 220, + 50, + 250, + 50, + 200, + 70, + 68, + 66, + 180, + 160, + 55, + 180, + 85, + 250, + 48, + 45, + 150, + 32.75, + 90, + 150, + 67, + 65, + 80, + 450, + 180, + 85, + 38, + 35, + 175, + 62.5, + 70, + 75, + 55, + 35, + 117, + 75, + 80, + 160, + 145, + 170, + 48, + 100, + 260, + 45, + 49, + 55, + 90, + 125, + 250, + 90, + 100, + 130, + 220, + 270, + 78, + 120, + 300, + 38, + 70, + 68, + 105, + 170, + 350, + 48, + 65, + 300, + 75, + 365, + 260, + 45, + 47, + 95, + 85, + 33, + 60, + 450, + 280, + 45, + 75, + 80, + 158, + 195, + 410, + 76, + 350, + 250, + 55, + 68, + 70, + 102, + 189, + 80, + 110, + 60, + 300, + 75, + 120, + 400, + 150, + 270, + 60, + 500, + 32, + 47, + 26, + 75, + 55, + 25, + 500, + 85, + 170, + 140, + 92, + 59, + 77, + 105, + 80, + 55, + 75, + 350, + 120, + 65, + 50, + 75, + 250, + 130, + 195, + 150, + 170, + 80, + 210, + 64, + 235, + 410, + 60, + 90, + 65, + 230, + 61, + 68, + 180, + 180, + 52, + 200, + 45, + 78, + 220, + 80, + 75, + 220, + 56, + 340, + 290, + 90, + 95, + 95, + 50, + 55, + 180, + 75, + 80, + 75, + 120, + 36, + 200, + 90, + 50, + 285, + 45, + 58, + 269, + 100, + 50, + 110, + 54, + 110, + 41, + 30, + 39, + 130, + 95, + 70, + 450, + 155, + 50, + 78, + 37, + 105, + 280, + 59, + 120, + 33, + 80, + 270, + 118, + 195, + 100, + 75, + 175, + 95, + 75, + 190, + 400, + 160, + 100, + 120, + 200, + 47, + 53, + 180, + 155, + 70, + 78, + 350, + 70, + 65, + 350, + 170, + 75, + 470, + 50, + 250, + 300, + 190, + 70, + 49, + 30, + 40, + 110, + 40, + 169, + 480, + 130, + 120, + 55, + 40, + 170, + 68, + 320, + 120, + 100.01, + 72, + 110, + 185, + 75, + 400, + 200, + 90, + 300, + 38, + 200, + 75, + 150, + 62, + 200, + 180, + 22, + 85, + 160, + 92, + 70, + 85, + 135, + 140, + 48, + 65, + 130, + 106, + 295, + 180, + 50, + 450, + 60, + 300, + 40, + 50, + 250, + 140, + 130, + 50, + 55, + 420, + 105, + 250, + 205, + 85, + 175, + 280, + 140, + 198.5, + 127, + 270, + 45, + 80, + 200, + 270, + 53, + 95, + 60, + 65, + 160, + 480, + 100, + 75, + 100, + 34, + 58, + 59, + 280, + 92, + 100, + 150, + 66, + 115, + 80, + 135, + 160, + 260, + 25, + 300, + 250, + 480, + 110, + 33, + 56, + 170, + 72, + 17.675, + 164, + 90, + 67, + 125, + 100, + 380, + 155, + 470, + 90, + 200, + 500, + 60, + 75, + 180, + 110, + 170, + 70, + 60, + 70, + 155, + 400, + 130, + 140, + 55, + 130, + 200, + 55, + 450, + 165, + 78, + 90, + 85, + 290, + 300, + 43, + 100, + 95, + 125, + 210, + 80, + 90, + 60, + 350, + 500, + 55, + 220, + 105, + 68, + 240, + 120, + 65, + 175, + 260, + 78, + 350, + 76, + 95, + 70, + 130, + 30, + 40, + 450, + 45, + 120, + 300, + 55, + 60, + 65, + 135, + 55, + 280, + 195, + 300, + 80, + 41, + 51.5, + 170, + 79.5, + 97, + 220, + 220, + 37, + 280, + 80, + 100, + 120, + 100, + 32, + 95, + 172, + 250, + 350, + 55, + 400, + 53, + 32, + 24, + 165, + 165, + 57, + 75, + 130, + 70, + 50, + 180, + 53.1, + 109, + 115, + 130, + 90, + 45, + 270, + 60, + 225, + 55, + 220, + 74, + 78, + 45, + 110, + 47, + 100, + 110, + 280, + 45, + 270, + 70, + 245, + 135, + 55, + 75, + 120, + 280, + 85, + 56, + 90, + 40, + 200, + 100, + 60, + 185, + 98, + 75, + 55, + 160, + 150, + 205, + 55, + 80, + 45, + 185, + 480, + 140, + 70, + 250, + 480, + 90, + 130, + 35, + 55, + 92, + 48, + 190, + 400, + 85, + 190, + 37, + 51, + 180, + 250, + 185, + 37, + 100, + 90, + 170, + 45, + 35.85, + 90, + 290, + 120, + 87, + 60, + 250, + 130, + 75, + 420, + 68, + 175, + 77, + 145, + 80, + 170, + 70, + 165, + 125, + 59, + 230, + 250, + 55, + 87, + 180, + 180, + 450, + 180, + 100, + 65, + 40, + 90, + 360, + 230, + 150, + 75, + 250, + 300, + 65, + 185, + 90, + 250, + 180, + 150, + 65, + 70, + 167, + 440, + 250, + 70, + 150, + 380, + 95, + 33, + 275, + 300, + 78, + 120, + 77, + 68, + 120, + 160, + 120, + 200, + 160, + 160, + 150, + 58, + 59, + 70, + 37, + 87, + 71.5, + 30, + 48, + 450, + 47, + 320, + 95, + 83, + 155, + 115, + 45, + 250, + 125, + 200, + 350, + 45, + 36.5, + 45, + 150, + 48, + 43, + 70, + 135, + 130, + 120, + 72, + 67, + 50, + 58, + 50, + 185, + 185, + 95, + 120, + 150, + 70, + 220, + 145, + 85, + 500, + 90, + 67, + 79.5, + 38, + 115, + 120, + 65, + 120, + 185, + 300, + 55, + 280, + 150, + 270, + 210, + 120, + 58, + 140, + 230, + 54, + 400, + 275, + 370, + 140, + 38, + 49, + 60, + 16.5, + 35, + 68, + 50, + 120, + 72, + 150, + 145, + 170, + 90, + 80, + 200, + 300, + 99, + 75, + 80, + 38, + 280, + 200, + 285, + 48, + 160, + 85, + 85, + 59, + 100, + 35, + 110, + 75, + 86, + 45, + 150, + 180, + 35, + 200, + 65, + 50, + 350, + 70, + 180, + 290, + 330, + 100, + 135, + 55, + 47, + 52, + 125, + 95, + 115, + 62, + 150, + 83, + 90, + 70, + 75.000009, + 150, + 200, + 190, + 95, + 55, + 350, + 260, + 37, + 400, + 35, + 160, + 130, + 95, + 80, + 160, + 26, + 50, + 430, + 250, + 125, + 73, + 58, + 85, + 450, + 330, + 110, + 195, + 220, + 65, + 57, + 110, + 280, + 85, + 95, + 160, + 38, + 65, + 75, + 200, + 20, + 230, + 200, + 175, + 83, + 350, + 175, + 130, + 150, + 145, + 230, + 95, + 130, + 92, + 115, + 260, + 125.99, + 155, + 65, + 65, + 80, + 52, + 148.5, + 190, + 260, + 69, + 200, + 170, + 45, + 60, + 230, + 85, + 90, + 90, + 110, + 35, + 110, + 85, + 220, + 100, + 73, + 155, + 58, + 58, + 220, + 39, + 350, + 125, + 62, + 150, + 57, + 185, + 240, + 155, + 62, + 55, + 90, + 250, + 120, + 500, + 110, + 65, + 40, + 105, + 65, + 145, + 52, + 110, + 85, + 43, + 270, + 62, + 27, + 47, + 500, + 40, + 60, + 118, + 135, + 45, + 400, + 220, + 220, + 190, + 75, + 48, + 65, + 125, + 450, + 70, + 180, + 105, + 60, + 300, + 82, + 68, + 90, + 72, + 100, + 100, + 56, + 300, + 85, + 60, + 40, + 96, + 65, + 160, + 170, + 47, + 47.5, + 95, + 52, + 85, + 150, + 40, + 38, + 80, + 110, + 110, + 75, + 130, + 48, + 250, + 42, + 130, + 65, + 61.75, + 300, + 115, + 400, + 39, + 400, + 200, + 210, + 33, + 250, + 500, + 35, + 90, + 38, + 135, + 100, + 46, + 35, + 128, + 160, + 250, + 120, + 41, + 300, + 125, + 300, + 17, + 50, + 300, + 120, + 75, + 250, + 55, + 90, + 55, + 175, + 65, + 50, + 95, + 35, + 140, + 90, + 370, + 45, + 62, + 225, + 110, + 125, + 47, + 48, + 250, + 80, + 150, + 120, + 55, + 120, + 80, + 145, + 370, + 110, + 88, + 125, + 85, + 78, + 125, + 445, + 120, + 55, + 75, + 450, + 27, + 260, + 400, + 170, + 180, + 80, + 180, + 40, + 63, + 285, + 45, + 65, + 125, + 115, + 450, + 235, + 67, + 290, + 95, + 95, + 400, + 70, + 58, + 65, + 45, + 45, + 48, + 120, + 28.5, + 185, + 110, + 120, + 65, + 250, + 150, + 55, + 105, + 80, + 120, + 38, + 250, + 199.999, + 100, + 450, + 190, + 35, + 130, + 280, + 68, + 190, + 95, + 65, + 170, + 50, + 90, + 75, + 160, + 48, + 245, + 58, + 50, + 80, + 75, + 85, + 78, + 350, + 270, + 255, + 42, + 110, + 100, + 65, + 160, + 55, + 450, + 111, + 90, + 170, + 47, + 78, + 47, + 95, + 232, + 180, + 153, + 170, + 85, + 53, + 38, + 270, + 67, + 320, + 45, + 55, + 80, + 70, + 220, + 270, + 390, + 45, + 99, + 430, + 250, + 400, + 60, + 100, + 85, + 85, + 165, + 80, + 115, + 90, + 192, + 115, + 90, + 50, + 47, + 75, + 45, + 170, + 125, + 138, + 56, + 210, + 95, + 70, + 82, + 150, + 180, + 70, + 62, + 450, + 135, + 180, + 175, + 50, + 59, + 135, + 130, + 110, + 40, + 55, + 70, + 120, + 90, + 35, + 250, + 150, + 57, + 130, + 60, + 80, + 75, + 100, + 54, + 80, + 95, + 150, + 400, + 80, + 85, + 50, + 140, + 55, + 70, + 335, + 250, + 135, + 37, + 235, + 160, + 90, + 200, + 75, + 450, + 36, + 130, + 37, + 90, + 65, + 200, + 58, + 230, + 120, + 175, + 75, + 70, + 135, + 60, + 230, + 130, + 110, + 95, + 400, + 42, + 260, + 100, + 110, + 105, + 110, + 65, + 150, + 80, + 80, + 100, + 73, + 100, + 130, + 130, + 100, + 100, + 69, + 100, + 45, + 240, + 215, + 55, + 95, + 80, + 120, + 40, + 90, + 58, + 46, + 65, + 210, + 250, + 78, + 70, + 220, + 165, + 350, + 75, + 170, + 150, + 380, + 85, + 68, + 57, + 62, + 38, + 330, + 141, + 140, + 75, + 300, + 27, + 200, + 500, + 450, + 130, + 230, + 400, + 75, + 85, + 68, + 85, + 250, + 206, + 170, + 75, + 170, + 140, + 450, + 55, + 65, + 180, + 260, + 300, + 160, + 240, + 58, + 85, + 110, + 82, + 175, + 250, + 28, + 110, + 65, + 195, + 130, + 53, + 68, + 300, + 70, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 500, + 190, + 100, + 170, + 140, + 95, + 230, + 210, + 105, + 70, + 450, + 55, + 130, + 48, + 270, + 33.5, + 400, + 365, + 150, + 150, + 95, + 80, + 35, + 105, + 65, + 350, + 480, + 140, + 78, + 44.815, + 55, + 90, + 90, + 40, + 500, + 150, + 105, + 37, + 250, + 64, + 95, + 350, + 200, + 46, + 70, + 45, + 220, + 350, + 55, + 110, + 64, + 40, + 75, + 150, + 40, + 110, + 55, + 56, + 250, + 77, + 125, + 120, + 70, + 80, + 90, + 150, + 51, + 110, + 170, + 53, + 70, + 190, + 120, + 180, + 130, + 90, + 85, + 74.999999, + 72, + 37, + 68, + 140, + 100, + 140, + 175, + 48, + 65, + 110, + 200, + 370, + 40, + 90, + 66, + 57, + 150, + 100, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 110, + 210, + 50, + 38.99, + 135, + 70, + 350, + 400, + 140, + 45, + 300, + 100, + 300, + 22, + 65, + 110, + 62, + 60, + 75, + 40, + 36, + 150, + 72.5, + 130, + 65, + 50, + 110, + 48, + 400, + 115, + 71, + 125, + 300, + 93, + 130, + 40, + 58, + 270, + 40, + 40, + 55, + 450, + 130, + 65, + 270, + 60, + 38, + 180, + 120, + 115, + 37, + 68, + 65, + 70, + 115, + 260, + 46, + 23, + 55, + 170, + 66, + 150, + 46, + 80, + 85, + 260, + 45, + 78, + 58, + 45, + 102, + 135, + 85, + 180, + 270, + 365, + 50, + 47, + 130, + 115, + 130, + 240, + 300, + 50, + 62.5, + 63, + 80, + 270, + 170, + 50, + 49, + 85, + 36, + 190, + 75, + 70, + 120, + 110, + 50, + 92, + 120, + 90, + 40, + 220, + 500, + 260, + 95, + 190, + 53, + 160, + 150, + 195, + 75, + 90, + 85, + 130, + 85, + 35, + 90, + 65, + 460, + 38, + 95, + 62, + 60, + 70, + 40, + 50, + 205, + 300, + 185, + 150, + 90, + 47, + 127, + 84, + 130, + 500, + 75, + 200, + 54, + 75, + 300, + 100, + 200, + 190, + 70, + 35, + 140, + 80, + 110, + 100, + 205, + 82, + 35, + 72, + 50, + 80, + 240, + 110, + 135, + 78, + 170, + 40, + 130, + 150, + 100, + 75, + 39, + 50, + 220, + 150, + 125, + 85, + 90, + 95, + 260, + 180, + 160, + 150, + 110, + 95, + 180, + 170, + 140, + 300, + 95, + 175, + 75, + 200, + 30, + 120, + 125, + 58, + 120, + 65, + 90, + 75, + 50, + 60, + 350, + 48, + 120, + 35, + 80, + 48, + 45, + 42, + 65, + 500, + 70, + 71, + 67, + 295, + 200, + 250, + 40, + 52, + 80, + 140, + 200, + 250, + 260, + 55, + 49, + 59, + 150, + 235, + 45, + 49, + 62, + 120, + 198, + 360, + 280, + 220, + 80, + 115, + 53, + 110, + 55, + 75, + 80, + 35, + 450, + 35, + 150, + 18.975, + 190, + 140, + 130, + 55, + 270, + 110, + 80, + 195, + 35, + 190, + 120, + 200, + 58, + 205, + 100, + 68, + 175, + 160, + 60, + 110, + 78, + 350, + 37, + 195, + 50, + 90, + 75, + 38.5, + 58, + 70, + 460, + 400, + 185, + 500, + 70, + 46, + 125, + 140, + 110, + 95, + 300, + 57, + 155, + 48, + 265, + 28, + 45, + 250, + 65, + 47, + 145, + 83, + 120, + 250, + 73, + 105, + 165, + 41, + 82, + 160, + 125, + 100, + 115, + 95, + 70, + 320, + 125, + 70, + 70, + 80, + 280, + 83, + 75, + 45, + 92, + 135, + 320, + 40.64, + 58, + 85, + 98, + 85, + 160, + 250, + 180, + 65, + 197, + 400, + 80, + 40, + 145, + 85, + 170, + 285, + 55, + 48, + 49.5, + 160, + 400, + 100, + 160, + 95, + 85, + 155, + 150, + 36.5, + 30, + 74, + 195, + 56, + 410, + 68, + 68, + 110, + 65, + 200, + 95, + 80, + 80, + 65, + 55, + 55, + 120, + 155, + 120, + 500, + 140, + 108, + 48, + 155, + 37, + 75, + 60, + 160, + 43, + 95, + 49.5, + 70, + 95, + 220, + 190, + 185, + 75, + 97.5, + 115, + 95, + 155, + 250, + 90, + 50, + 55, + 75, + 90, + 90, + 160, + 75, + 350, + 120, + 65, + 160, + 120, + 78, + 150, + 35, + 87, + 130, + 250, + 150, + 60, + 200, + 58, + 70, + 18, + 230, + 35, + 90, + 46, + 270, + 90, + 75, + 180, + 180, + 500, + 200, + 50, + 300, + 300, + 57, + 69, + 280, + 70, + 63, + 270, + 150, + 120, + 45, + 36, + 69.5, + 65, + 250, + 75, + 70, + 300, + 58, + 170, + 110, + 150, + 57, + 80, + 210, + 140, + 150, + 120, + 185, + 450, + 150, + 385, + 200, + 150, + 65, + 165, + 120, + 140, + 280, + 53, + 49.5, + 300, + 98, + 70, + 100, + 65, + 235, + 160, + 200, + 250, + 57, + 280, + 300, + 45, + 175, + 60, + 120, + 43.5, + 150, + 65, + 30, + 125, + 169.5, + 85, + 105, + 33, + 300, + 95, + 72, + 57, + 45, + 45, + 38, + 140, + 150, + 177.99, + 87.000099, + 76, + 47, + 60, + 170, + 60, + 180, + 170, + 67, + 85, + 120, + 80, + 90, + 65, + 76, + 80, + 60, + 140, + 110, + 150, + 195, + 55, + 95, + 500, + 62, + 50, + 340, + 450, + 65, + 73, + 62, + 38, + 36, + 250, + 130, + 60, + 105, + 280, + 36, + 55, + 95, + 65, + 200, + 43, + 57, + 75, + 40, + 60, + 65, + 100, + 250, + 75, + 75, + 210, + 60, + 68, + 360, + 330, + 65, + 300, + 155, + 62, + 44, + 65, + 240, + 70, + 180, + 130, + 155, + 110, + 28, + 55, + 130, + 150, + 63, + 150, + 77, + 59, + 41.5, + 34.5, + 65, + 36, + 120, + 350, + 160, + 198, + 80, + 60, + 155, + 80, + 55, + 77, + 53, + 110, + 350, + 120, + 240, + 40, + 80, + 69.5, + 180, + 40, + 32, + 32, + 220, + 220, + 115, + 130, + 100, + 55, + 130, + 275, + 265, + 55, + 165, + 390, + 64, + 55, + 150, + 90, + 60, + 60, + 80, + 75, + 34, + 105, + 55, + 250, + 100, + 43.5, + 88, + 53, + 350, + 300, + 85, + 200, + 265, + 325, + 180, + 125, + 85, + 100, + 78, + 125, + 70, + 110, + 130, + 280, + 150, + 310, + 200, + 220, + 99, + 125, + 130, + 270, + 82, + 75, + 80, + 55, + 220, + 83, + 500, + 62, + 80, + 190, + 67, + 145, + 120, + 55, + 105, + 240, + 85, + 350, + 120, + 140, + 40, + 180, + 460, + 180, + 260, + 50, + 61, + 70, + 85, + 70, + 70, + 80, + 120, + 90, + 123, + 185, + 220, + 200, + 150, + 105, + 90, + 37, + 170, + 68, + 230, + 270, + 58.5, + 140, + 220, + 85, + 37, + 70, + 95, + 65, + 500, + 135, + 200, + 330, + 300, + 40, + 230, + 300, + 95, + 108, + 47, + 65, + 300, + 200, + 120, + 210, + 50, + 122, + 150, + 78, + 60, + 200, + 250, + 165, + 47, + 170, + 90, + 45, + 38, + 100, + 75, + 120, + 44, + 50, + 80, + 47, + 95, + 350, + 42, + 52, + 180, + 58, + 145, + 35, + 100, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 57, + 40, + 300, + 63, + 54, + 68, + 85, + 75, + 70, + 120, + 250, + 330, + 140, + 66, + 45, + 135, + 57, + 42, + 42, + 40, + 90, + 80, + 250, + 140, + 120, + 220, + 145, + 62, + 80, + 270, + 165, + 300, + 150, + 130, + 40, + 200, + 170, + 140, + 125, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 270, + 60, + 300, + 250, + 299.999999, + 55, + 45, + 160, + 150, + 65, + 55, + 60, + 35, + 55, + 290, + 130, + 300, + 260, + 120, + 90, + 95, + 65, + 72.5, + 170, + 65, + 23, + 125, + 47, + 65, + 110, + 50, + 90, + 50, + 100, + 150, + 105, + 200, + 130, + 33, + 70, + 180, + 35, + 200, + 450, + 260, + 24, + 150, + 75, + 65, + 50, + 120, + 170, + 56, + 130, + 120, + 155, + 120, + 80, + 220, + 500, + 250, + 47.5, + 170, + 35, + 65, + 55, + 95, + 65, + 90, + 33, + 270, + 56, + 82, + 300, + 55, + 57, + 335, + 215, + 75, + 110, + 300, + 63, + 160, + 500, + 65, + 170, + 180, + 80, + 110, + 200, + 45, + 32, + 85, + 38, + 130, + 35, + 40, + 120, + 55, + 155, + 42, + 65, + 47, + 240, + 250, + 44, + 80, + 90, + 60, + 500, + 120, + 40, + 170, + 75, + 95, + 175, + 125, + 420, + 480, + 75, + 100, + 65, + 75, + 10, + 120, + 150, + 45, + 62, + 46, + 150, + 90, + 32.5, + 250, + 380, + 160, + 230, + 150, + 43, + 400, + 185, + 140, + 100, + 200, + 380, + 150, + 133, + 115, + 500, + 38, + 38, + 49, + 120, + 200, + 80, + 200, + 39, + 85, + 72, + 100, + 110, + 180, + 130, + 200, + 38, + 250, + 45, + 68, + 33, + 400, + 150, + 73, + 75, + 120, + 70, + 63, + 39, + 85, + 50, + 200, + 230, + 160, + 220, + 85, + 72, + 150, + 87, + 100, + 240, + 150, + 280, + 120, + 65, + 45, + 85, + 130, + 75, + 450, + 85, + 250, + 140, + 160, + 67, + 120, + 200, + 80, + 150, + 150, + 36, + 400, + 300, + 80, + 280, + 400, + 60, + 68, + 80, + 52, + 100, + 75, + 60, + 60, + 40, + 170, + 45, + 290, + 65, + 45, + 135, + 80, + 37, + 61, + 50, + 50, + 350, + 260, + 82, + 85, + 35, + 250, + 48, + 95, + 70, + 85, + 115, + 270, + 63, + 55, + 32, + 90, + 115, + 65, + 63, + 170, + 175, + 500, + 180, + 48, + 41, + 370, + 85, + 135, + 145, + 200, + 100, + 85, + 450, + 125, + 100, + 52, + 43, + 36, + 28, + 60, + 300, + 30, + 40, + 32.75, + 120, + 94, + 70, + 150, + 100, + 120, + 110, + 75, + 220, + 78, + 52, + 75, + 165, + 70, + 220, + 65, + 150, + 130, + 130, + 210, + 100, + 55, + 50, + 130, + 85, + 240, + 120, + 90, + 250, + 75, + 36, + 90, + 220, + 35, + 130, + 120, + 65, + 160, + 330, + 36, + 110, + 65, + 170, + 33, + 100, + 100, + 82, + 170, + 130, + 200, + 100, + 72, + 63, + 35, + 135, + 140, + 450, + 58, + 90, + 100, + 280, + 185, + 28, + 97, + 350, + 115, + 500, + 45, + 65, + 58, + 190, + 62, + 180, + 250, + 500, + 195, + 88, + 55, + 90, + 60, + 115, + 170, + 85, + 80, + 65, + 120, + 140, + 200, + 35, + 55.5, + 57, + 48, + 49, + 135, + 120, + 155, + 95, + 100, + 220, + 120, + 110, + 110, + 45, + 100, + 140, + 35, + 158, + 130, + 90, + 300, + 130, + 185, + 500, + 140, + 195, + 42, + 40, + 75, + 130, + 125, + 60, + 350, + 26, + 65, + 140, + 140, + 450, + 450, + 45, + 185, + 71, + 35, + 88, + 130, + 60, + 87, + 150, + 220, + 165, + 80, + 68, + 250, + 120, + 34, + 480, + 60, + 80, + 90, + 63, + 30, + 60, + 110, + 120, + 45, + 65, + 350, + 470, + 62, + 35, + 65, + 65, + 180, + 70, + 190, + 51, + 130, + 78, + 80, + 55, + 50, + 85, + 65, + 105, + 350, + 45, + 80, + 60, + 75, + 88, + 85, + 260, + 54, + 195, + 170, + 120, + 150, + 65, + 175, + 87, + 48, + 60, + 70, + 35, + 36, + 90, + 110, + 70, + 120, + 165, + 45, + 85, + 330, + 140, + 110, + 300, + 280, + 65, + 95, + 53, + 140, + 75, + 185, + 88, + 110, + 120, + 57, + 95, + 63, + 310, + 48, + 150, + 73, + 58, + 47, + 90, + 380, + 60, + 400, + 50, + 75, + 80, + 70, + 130, + 38, + 130, + 90, + 175, + 150, + 155, + 80, + 51, + 55, + 200, + 60, + 145, + 20, + 320, + 245, + 140, + 130, + 230, + 25, + 250, + 90, + 200, + 40, + 130, + 78, + 85, + 100, + 73, + 80, + 160, + 60, + 120, + 90, + 220, + 105, + 53, + 75, + 45, + 120, + 90, + 240, + 58, + 280, + 120, + 69, + 70, + 125, + 150, + 85, + 100, + 100, + 92, + 120, + 70, + 72, + 65, + 37, + 230, + 60, + 150, + 120, + 140, + 210, + 62, + 185, + 150, + 80, + 235, + 60.5, + 45, + 26.4375, + 95, + 105, + 280, + 98, + 115, + 45, + 100, + 130, + 59, + 70, + 130, + 290, + 145, + 75, + 59, + 140, + 73, + 34, + 67, + 300, + 55, + 40, + 390, + 55, + 175, + 55, + 290, + 350, + 340, + 150, + 70, + 95, + 110, + 80, + 65, + 100, + 115, + 230, + 165, + 49, + 170, + 125, + 95, + 150, + 350, + 200, + 135, + 60, + 30, + 350, + 400, + 76, + 85, + 36, + 85, + 100, + 100, + 160, + 300, + 110, + 320, + 115, + 280, + 80, + 90, + 45, + 45, + 180, + 58, + 45, + 380, + 145, + 51, + 38, + 480, + 80, + 145, + 80, + 57, + 300, + 180, + 80, + 240, + 350, + 70, + 450, + 270, + 120, + 45, + 62, + 250, + 45, + 200, + 59, + 126, + 35, + 68, + 58, + 140, + 110, + 72, + 400, + 75, + 95, + 35, + 90, + 150, + 320, + 38, + 55, + 42, + 270, + 90, + 350, + 18, + 60, + 35, + 95, + 300, + 420, + 400, + 57, + 200, + 130, + 220, + 35, + 26, + 85, + 100, + 54, + 500, + 68, + 58, + 75, + 50, + 98, + 150, + 160, + 37, + 30, + 48, + 120, + 420, + 185, + 130, + 155, + 75, + 135, + 44, + 35, + 50, + 35, + 260, + 69.9, + 230, + 80, + 130, + 150, + 39.6, + 65, + 51, + 125, + 120, + 250, + 88, + 45, + 45, + 30, + 92, + 350, + 57, + 68, + 220, + 65, + 350, + 95, + 200, + 67, + 95, + 110, + 280, + 85, + 45, + 46, + 185, + 380, + 150, + 56, + 29, + 79, + 155, + 85, + 50, + 100, + 105, + 60, + 105, + 95, + 55, + 130, + 100, + 320, + 55, + 55, + 38, + 75, + 85, + 75, + 260, + 37, + 175, + 65, + 90, + 55, + 180, + 65, + 35, + 190, + 65, + 400, + 90, + 157, + 50, + 77, + 190, + 88, + 90, + 133, + 50, + 41, + 195, + 55, + 63, + 68, + 45, + 27, + 180, + 57, + 39, + 85, + 125, + 100, + 97, + 75, + 130, + 89, + 65, + 360, + 120, + 43, + 70, + 65, + 122, + 150, + 70, + 38, + 120, + 180, + 220, + 135, + 220, + 220, + 450, + 55, + 100, + 47.5, + 95, + 48, + 120, + 40, + 50, + 110, + 80, + 180, + 35, + 210, + 95, + 65, + 150, + 46, + 300, + 72, + 180, + 130, + 50, + 52, + 155, + 210, + 225, + 185, + 310, + 180, + 52, + 38, + 260, + 40, + 45, + 110, + 78, + 100, + 110, + 72, + 70, + 65, + 45, + 200, + 65, + 165, + 65, + 55, + 60, + 35, + 77, + 46, + 74, + 100, + 165, + 60, + 350, + 47, + 170, + 65, + 70, + 23.8, + 150, + 175, + 40, + 90, + 50, + 75, + 230, + 65, + 48.5, + 180, + 75, + 120, + 100, + 110, + 75, + 300, + 45, + 380, + 120, + 80, + 110, + 450, + 60, + 270, + 90, + 50, + 95, + 57, + 160, + 100, + 400, + 155, + 65, + 76, + 120, + 185, + 85, + 220, + 40, + 48, + 52, + 98, + 60, + 75, + 20, + 45, + 170, + 65, + 85, + 90, + 75, + 70, + 65, + 75, + 45, + 310, + 185, + 40, + 110, + 350, + 150, + 250, + 120, + 115, + 80, + 120, + 400, + 47, + 130, + 42, + 130, + 150, + 58, + 65, + 150, + 130, + 200, + 64, + 100, + 170, + 220, + 65, + 60, + 110, + 120, + 30, + 155, + 95, + 500, + 60, + 500, + 280, + 370, + 85, + 75, + 48, + 85, + 40, + 47, + 170, + 55, + 120, + 50, + 120, + 65, + 190, + 184, + 100, + 280, + 165, + 270, + 47.5, + 60, + 36, + 190, + 75, + 55, + 400, + 195, + 78, + 220, + 90, + 75, + 58, + 125, + 170, + 120, + 150, + 70, + 90, + 100, + 200, + 145, + 280, + 48, + 50, + 85, + 75, + 110, + 85, + 90, + 125, + 38, + 40, + 235, + 150, + 85, + 89, + 13, + 45, + 48, + 100, + 75, + 80, + 86, + 73, + 52, + 60, + 230, + 400, + 43, + 130, + 400, + 50, + 80, + 39, + 350, + 65, + 80, + 85, + 125, + 45, + 400, + 85, + 85, + 50, + 170, + 78, + 220, + 50, + 52, + 140, + 125, + 95, + 140, + 350, + 115, + 55, + 52.5, + 75, + 115, + 100, + 105, + 130, + 130, + 170, + 57, + 150, + 140, + 85, + 65, + 210, + 260, + 220, + 90, + 150, + 38, + 40, + 110, + 320, + 120, + 50, + 95, + 118, + 38, + 500, + 92, + 85, + 175, + 67, + 50, + 75, + 42, + 30, + 76, + 240, + 455, + 280, + 90, + 90, + 375, + 295, + 65, + 150, + 75, + 49, + 30, + 50, + 85, + 82, + 62, + 90, + 150, + 180, + 150, + 130, + 69, + 170, + 160, + 270, + 75, + 380, + 45, + 51, + 60, + 125, + 90, + 70, + 53, + 90, + 63, + 90, + 68, + 49.247, + 100, + 88, + 99.5, + 150, + 280, + 85, + 75, + 150, + 59, + 105, + 120, + 120, + 75, + 110, + 95, + 60, + 350, + 120, + 40, + 65, + 41, + 115, + 45, + 155, + 44, + 135, + 55, + 450, + 450, + 350, + 200, + 88, + 160, + 300, + 235, + 90, + 80, + 300, + 85, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 41, + 45, + 73, + 400, + 135, + 450, + 165, + 80, + 95, + 65, + 55, + 150, + 320, + 200, + 50, + 37, + 195, + 120, + 55, + 75, + 76, + 160, + 43, + 46, + 70, + 150, + 270, + 68, + 48.5, + 160, + 48, + 250, + 50, + 42, + 100, + 35, + 40, + 230, + 135, + 180, + 68, + 230, + 90, + 130, + 85, + 125, + 130, + 80, + 250, + 50, + 105, + 80, + 45, + 110, + 115, + 55, + 42, + 80, + 53, + 110, + 300, + 36, + 110, + 135, + 165, + 160, + 250, + 175, + 190, + 50, + 85, + 120, + 80, + 250, + 80, + 390, + 280, + 160, + 90, + 225, + 100, + 100, + 65, + 280, + 128, + 150, + 330, + 130, + 160, + 170, + 52, + 85, + 120, + 160, + 100, + 83, + 55, + 255.5, + 90, + 128, + 115, + 56, + 85, + 35, + 80, + 55, + 180, + 55, + 79, + 80, + 130, + 100, + 75, + 40, + 90, + 70, + 150, + 200, + 48, + 70, + 360, + 160, + 100, + 70, + 70, + 33.5, + 140, + 170, + 160, + 42, + 90, + 110, + 130, + 85, + 65, + 33, + 110, + 52, + 200, + 190, + 175, + 200, + 75, + 90, + 160, + 65, + 220, + 150, + 275, + 55, + 450, + 350, + 140, + 49, + 95, + 116, + 120, + 410, + 110, + 230, + 70, + 300, + 86, + 38, + 110, + 90, + 150, + 43, + 300, + 200, + 45, + 90, + 48, + 73, + 36, + 54, + 280, + 350, + 90, + 90, + 350, + 175, + 52, + 176, + 70, + 125, + 32, + 130, + 29, + 40, + 250, + 90, + 68, + 110, + 70, + 75, + 80, + 60, + 220, + 230, + 57.1725, + 67, + 55, + 38, + 200, + 48, + 90, + 245, + 200, + 90, + 270, + 360, + 160, + 39, + 49, + 500, + 185, + 190, + 310, + 40, + 180, + 110, + 175, + 185, + 200, + 85, + 165, + 60, + 380, + 150, + 500, + 150, + 155, + 270, + 240, + 49.5, + 95, + 50, + 40, + 95, + 230, + 150, + 57, + 58, + 120, + 165, + 61, + 170, + 68, + 49, + 75, + 50, + 67, + 75, + 115, + 165, + 400, + 27, + 100, + 52, + 76, + 35, + 155, + 49, + 350, + 95, + 85, + 107, + 80, + 120, + 200, + 128, + 87, + 97, + 160, + 50, + 98, + 85, + 60, + 76, + 90, + 160, + 58, + 160, + 125, + 130, + 270, + 79, + 68, + 90, + 49, + 195, + 75, + 130, + 135, + 60, + 240, + 200, + 160, + 75, + 400, + 85, + 135, + 65, + 65, + 45, + 145, + 250, + 230, + 85, + 140, + 130, + 160, + 58, + 57, + 300, + 90, + 55, + 90, + 45, + 170, + 100, + 180, + 500, + 58, + 200, + 55, + 78, + 55, + 98, + 38, + 40, + 185, + 67, + 50, + 130, + 70, + 40, + 90, + 170, + 180, + 30, + 290, + 47, + 350, + 34, + 180, + 380, + 68, + 55, + 149.5, + 170, + 48, + 280, + 130, + 105, + 58, + 135, + 65, + 160, + 75, + 32, + 160, + 150, + 68, + 180, + 500, + 55, + 89, + 285, + 105, + 100, + 190, + 150, + 235, + 65, + 120, + 55, + 80, + 130, + 150, + 35, + 175, + 64, + 73, + 138, + 150, + 75, + 118, + 330, + 340, + 140, + 75, + 280, + 265, + 33, + 160, + 85, + 300, + 200, + 38, + 120, + 48, + 40, + 80, + 120, + 11.5, + 70, + 135, + 130, + 50, + 160, + 79, + 500, + 99.5, + 75, + 160, + 50, + 40, + 450, + 37, + 75, + 31, + 230, + 125, + 140, + 50, + 185, + 55, + 56, + 65, + 120, + 155, + 50, + 66, + 125, + 62, + 175, + 55, + 165, + 130, + 120, + 43, + 35, + 140, + 70, + 155, + 80, + 60, + 120, + 380, + 100, + 250, + 68, + 500, + 190, + 60, + 160, + 220, + 120, + 125, + 125, + 350, + 99, + 70, + 45, + 400, + 77, + 59, + 175, + 55, + 47, + 35, + 55, + 90, + 60, + 450, + 225, + 160, + 220, + 45, + 126, + 37, + 270, + 49, + 85, + 130, + 250, + 320, + 120, + 170, + 160, + 65, + 340, + 33, + 45, + 90, + 130, + 250, + 42, + 42, + 130, + 140, + 180, + 215, + 75, + 140, + 150, + 35, + 270, + 185, + 45, + 135, + 130, + 85, + 81, + 40, + 75, + 60, + 260, + 180, + 120, + 150, + 300, + 140, + 135, + 295, + 170, + 80, + 105, + 300, + 190, + 120, + 260, + 280, + 110, + 48, + 200, + 80, + 33, + 170, + 80, + 140, + 210, + 135, + 50, + 93, + 22, + 60, + 230, + 189, + 150, + 265, + 150, + 300, + 72, + 82, + 280, + 37, + 101, + 95, + 65, + 100, + 40, + 100, + 65, + 29.99, + 45, + 75, + 55, + 370, + 280, + 370, + 140, + 50, + 105, + 65, + 43, + 150, + 100, + 75, + 52, + 175, + 130, + 45, + 60, + 140, + 150, + 120, + 49, + 70, + 38, + 85, + 35, + 65, + 150, + 105, + 37, + 125, + 300, + 75, + 52, + 48, + 40, + 95, + 80, + 360, + 126, + 40, + 150, + 120, + 165, + 160, + 38, + 350, + 280, + 190, + 120, + 190, + 300, + 70, + 75, + 11, + 98, + 70, + 120, + 105, + 57, + 35, + 100, + 150, + 40, + 500, + 150, + 140, + 75, + 80, + 380, + 50, + 135, + 170, + 53, + 61, + 97, + 115, + 77, + 85, + 220, + 52, + 55, + 430, + 168, + 50, + 90, + 75, + 250, + 265, + 75, + 270, + 170, + 165, + 60, + 100, + 60, + 67, + 100, + 230, + 178, + 100, + 90, + 50, + 160, + 79.5, + 12, + 370, + 72, + 155, + 130, + 200, + 110, + 300, + 70, + 55, + 270, + 480, + 185, + 130, + 65, + 190, + 390, + 135, + 55, + 45, + 55, + 115, + 80, + 225, + 160, + 90, + 450, + 38, + 18.975, + 120, + 280, + 55, + 80, + 80, + 85, + 37, + 65, + 35, + 130, + 68, + 75, + 90, + 80, + 100, + 180, + 275, + 80, + 86, + 135, + 270, + 38, + 48, + 50, + 185, + 280, + 115, + 185, + 110, + 180, + 260, + 250, + 58, + 500, + 65, + 125, + 43, + 60, + 70, + 16.675, + 170, + 250, + 120, + 140, + 92, + 300, + 230, + 45, + 250, + 130, + 320, + 85, + 380, + 52, + 72, + 130, + 65, + 70, + 120, + 46, + 270, + 39, + 70, + 275, + 70, + 75, + 35, + 40, + 37, + 100, + 97, + 180, + 120, + 60, + 80, + 260, + 59, + 100, + 160, + 47, + 130, + 165, + 170, + 65, + 55, + 65, + 110, + 231, + 165, + 180, + 280, + 77.5, + 53, + 225, + 110, + 155, + 150, + 75, + 80, + 50, + 68, + 50, + 410, + 88, + 80, + 125, + 160, + 67, + 60, + 140, + 130, + 160, + 78, + 33, + 160, + 165, + 195, + 85, + 35, + 170, + 74, + 420, + 280, + 55, + 55, + 300, + 45, + 55, + 52, + 250, + 78, + 65, + 170, + 76, + 80, + 48, + 140, + 55, + 197, + 130, + 350, + 198, + 100, + 230, + 35, + 95, + 140, + 110, + 90, + 57, + 250, + 125, + 350, + 85, + 75, + 100, + 145, + 42, + 300, + 82, + 55, + 38, + 40, + 280, + 65, + 75, + 385, + 70, + 78, + 78, + 220, + 300, + 120, + 65, + 200, + 70, + 47, + 120, + 75, + 130, + 280, + 110, + 350, + 55, + 120, + 165, + 110, + 175, + 75, + 75, + 60, + 250, + 35, + 100, + 45, + 63, + 185, + 50, + 130, + 80, + 65, + 72, + 34, + 250, + 350, + 400, + 250, + 130, + 60, + 350, + 60, + 130, + 90, + 200, + 240, + 44, + 95, + 95, + 55, + 70, + 170, + 120, + 180, + 250, + 75, + 52.8, + 65, + 44, + 120, + 78, + 110, + 150, + 80, + 160, + 80, + 68, + 35, + 170, + 150, + 129.5, + 60, + 110, + 60, + 51, + 75, + 220, + 250, + 65, + 125, + 230, + 33, + 63, + 90, + 232, + 95, + 75, + 120, + 60, + 150, + 160, + 85, + 150, + 95, + 72, + 200, + 120, + 198, + 120, + 90, + 500, + 60, + 280, + 65, + 49, + 130, + 96, + 68, + 210, + 50, + 80, + 115, + 150, + 65, + 48, + 85, + 450, + 130, + 83, + 145, + 450, + 230, + 70, + 75, + 60, + 130, + 150, + 60, + 55, + 75, + 250, + 125, + 124.5, + 70, + 115, + 55, + 95, + 38, + 50, + 150, + 80, + 300, + 220, + 120, + 400, + 47, + 250, + 26, + 155, + 500, + 80, + 31, + 52, + 76, + 130, + 125, + 57, + 200, + 280, + 100, + 140, + 170, + 98, + 31, + 125, + 70, + 185, + 82, + 250, + 75, + 160, + 350, + 20, + 400, + 80, + 62, + 90, + 110, + 95, + 190, + 78, + 55, + 67, + 85, + 34, + 200, + 450, + 49, + 75, + 38, + 190, + 128, + 50, + 300, + 70, + 45, + 130, + 110, + 58, + 100, + 275, + 185, + 350, + 180, + 200, + 200, + 260, + 33, + 105, + 200, + 350, + 44, + 450, + 150, + 140, + 105, + 150, + 87, + 55, + 60, + 85, + 46, + 80, + 120, + 75, + 180, + 120, + 48, + 78, + 280, + 180, + 330, + 60, + 195, + 140, + 110, + 70, + 280, + 95, + 60, + 70, + 210, + 85, + 49.5, + 47, + 105, + 160, + 180, + 165, + 220, + 55, + 93, + 95, + 135, + 180, + 85, + 50, + 300, + 140, + 190, + 64, + 68, + 78, + 140, + 250, + 40, + 160, + 160, + 75, + 500, + 100, + 200, + 88, + 80, + 58, + 270, + 50, + 55, + 75, + 300, + 35, + 68, + 75, + 80, + 69, + 295, + 83, + 140, + 180, + 350, + 150, + 67, + 37, + 48, + 120, + 70, + 500, + 47, + 250, + 200, + 70, + 40, + 85, + 70, + 400, + 85, + 400, + 64, + 165, + 80, + 200, + 60, + 75, + 260, + 135, + 105, + 250, + 67, + 130, + 230, + 55, + 32, + 120, + 110, + 120, + 125, + 102, + 50, + 62, + 480, + 260, + 48, + 60, + 58, + 57, + 85, + 35, + 55, + 27, + 88, + 200, + 120, + 400, + 450, + 270, + 120, + 115, + 300, + 79, + 190, + 125, + 400, + 65, + 50, + 75, + 285, + 66, + 37, + 45, + 46, + 50, + 160, + 62, + 430, + 75, + 450, + 135, + 100, + 45, + 45, + 82, + 32, + 160, + 49, + 250, + 65, + 450, + 50, + 70, + 180, + 300, + 250, + 55, + 95, + 95, + 49, + 500, + 32, + 56, + 100, + 40, + 60, + 70, + 120, + 80, + 56, + 98, + 20, + 70, + 160, + 100, + 85, + 350, + 38, + 100, + 37, + 350, + 140, + 320, + 105, + 55, + 39.8, + 500, + 140, + 135, + 80, + 70, + 160, + 60, + 80, + 400, + 185, + 110, + 36, + 82, + 350, + 240, + 50, + 230, + 37, + 25, + 130.013, + 120, + 180, + 105, + 110, + 100, + 58, + 135, + 39, + 190, + 55, + 70, + 155, + 41, + 180, + 80, + 165, + 150, + 65, + 100, + 280, + 240, + 47, + 100, + 120, + 108, + 95, + 130, + 67, + 45, + 24, + 36, + 47, + 40, + 75, + 65, + 120, + 160, + 150, + 45, + 67.5, + 88, + 270, + 290, + 250, + 120, + 85, + 36, + 350, + 70, + 250, + 59.5, + 105, + 70, + 48.5, + 60, + 190, + 220, + 180, + 260, + 320, + 200, + 330, + 41.8, + 65, + 150, + 74, + 95, + 330, + 120, + 50, + 150, + 50, + 100, + 105, + 60, + 80, + 100, + 300, + 300, + 205, + 70, + 170, + 35, + 100, + 50, + 160, + 50, + 85, + 170, + 56, + 100, + 55, + 45, + 70, + 130, + 53, + 100, + 180, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 190, + 55, + 150, + 370, + 290, + 150, + 75, + 79.5, + 60, + 100, + 70, + 63, + 165, + 45, + 110, + 40, + 95, + 85, + 47, + 75, + 90, + 90, + 185, + 65, + 110, + 350, + 360, + 180, + 57, + 69, + 100, + 52, + 90, + 38, + 300, + 75, + 40, + 165, + 82, + 38, + 85, + 230, + 230, + 140, + 180, + 500, + 120, + 50, + 42, + 115, + 210, + 210, + 200, + 130, + 125, + 180, + 85, + 380, + 300, + 160, + 87, + 80, + 47, + 125, + 105, + 100, + 290, + 165, + 27, + 120, + 180, + 65, + 60, + 78, + 60, + 115, + 95, + 50, + 60, + 130, + 100, + 105, + 59, + 33, + 85, + 110, + 125, + 440, + 110, + 90, + 53, + 60, + 270, + 66.329, + 135, + 210, + 115, + 150, + 195, + 32, + 180, + 68, + 210, + 190, + 38, + 180, + 140, + 75, + 65, + 130, + 52, + 20, + 135, + 175, + 200, + 55, + 36, + 46.2, + 165, + 70, + 70, + 58, + 67, + 35, + 140, + 138, + 29, + 85, + 95, + 160, + 180, + 98, + 280, + 130, + 60, + 70, + 50, + 290, + 70, + 150, + 27, + 280, + 110, + 45, + 90, + 79.5, + 75, + 200, + 65, + 80, + 34, + 155, + 205, + 65, + 230, + 260, + 260, + 380, + 45, + 209, + 78, + 180, + 52, + 45, + 205, + 70, + 69, + 140, + 38, + 285, + 120, + 72, + 45, + 250, + 68, + 65, + 83, + 180, + 36, + 45, + 500, + 290, + 450, + 67, + 27, + 175, + 95, + 165, + 74, + 47, + 280, + 390, + 114, + 50, + 65, + 68, + 50, + 150, + 120, + 78, + 270, + 410, + 63, + 66, + 120, + 270, + 93, + 120, + 75.009009, + 80, + 160, + 75, + 43, + 399.999999, + 45, + 40, + 160, + 120, + 215, + 30, + 120, + 275, + 500, + 135, + 32, + 240, + 120, + 42, + 140, + 85, + 120, + 80, + 140, + 110, + 83, + 65, + 220, + 52, + 240, + 98, + 100, + 260, + 35, + 150, + 78, + 250, + 85, + 140, + 199.999, + 230, + 125, + 65, + 130, + 58, + 450, + 96, + 240, + 35, + 180, + 55, + 65, + 55, + 80, + 200, + 95, + 75, + 400, + 50, + 34, + 50, + 200, + 120, + 140, + 100, + 400, + 60, + 350, + 95, + 38, + 63, + 67, + 120, + 100, + 175, + 45, + 110, + 49, + 56, + 165, + 80, + 145, + 86, + 60, + 68, + 170, + 120, + 175, + 55, + 150, + 80, + 60, + 85, + 65, + 295, + 50, + 375, + 214, + 50, + 90, + 350, + 290, + 60, + 49.5, + 55, + 105, + 72, + 150, + 135, + 56, + 25, + 98, + 70, + 250, + 120, + 290, + 88, + 90, + 135, + 410, + 85, + 130, + 55, + 43, + 65, + 434, + 105, + 145, + 220, + 95, + 35, + 40, + 145, + 75, + 110, + 65, + 400, + 70, + 120, + 120, + 40, + 90, + 325, + 65, + 180, + 84, + 75, + 150, + 110, + 68, + 78, + 93, + 98, + 220, + 95, + 155, + 110, + 30, + 55, + 55, + 50, + 41, + 48, + 280, + 55, + 350, + 55, + 210, + 160, + 140, + 112, + 205, + 72, + 120, + 40, + 170, + 270, + 34, + 60, + 82, + 48, + 145, + 100, + 53, + 65, + 500, + 220, + 62, + 45, + 160, + 60, + 150, + 120, + 70, + 120, + 45, + 55, + 41, + 95, + 45, + 70, + 65, + 48, + 95, + 155, + 165, + 43, + 100, + 85, + 270, + 230, + 320, + 250, + 120, + 58, + 16, + 300, + 100, + 49.5, + 50, + 170, + 150, + 47, + 90, + 78, + 400, + 35, + 31, + 155, + 130, + 120, + 75, + 65, + 41, + 78, + 90, + 35, + 145, + 110, + 35, + 165, + 52, + 15, + 95, + 350, + 350, + 90, + 95, + 380, + 300, + 450, + 47, + 65, + 75, + 68, + 250, + 55, + 80, + 130, + 50, + 155, + 37, + 85, + 250, + 90, + 42, + 30, + 100, + 350, + 85, + 85, + 120, + 170, + 430, + 420, + 120, + 95, + 62, + 75, + 140, + 75, + 47, + 480, + 150, + 350, + 160, + 33, + 140, + 175, + 111, + 160, + 60, + 350, + 220, + 160, + 45, + 125, + 100, + 350, + 88, + 35, + 55, + 275, + 43.2, + 120, + 59, + 100, + 55, + 60, + 280, + 106, + 67, + 110, + 95, + 350.035, + 75, + 30, + 110, + 30, + 150, + 60, + 150, + 55, + 190, + 110, + 130, + 57, + 75, + 38, + 230, + 95, + 160, + 200, + 90, + 130, + 120, + 62, + 120, + 185, + 160, + 58, + 55, + 55, + 14, + 170, + 360, + 48, + 120, + 68, + 94, + 40, + 450, + 170, + 180, + 350, + 54, + 150, + 170, + 65, + 70, + 170, + 60, + 320, + 90, + 92, + 75, + 300, + 130, + 240, + 450, + 65, + 180, + 95, + 63, + 45, + 38, + 400, + 150, + 140, + 460, + 100, + 80, + 220, + 450, + 90, + 80, + 60, + 105, + 40, + 80, + 35, + 48, + 47, + 220, + 150, + 45, + 63, + 69, + 65, + 220, + 120, + 55, + 65, + 155, + 262, + 155, + 80, + 65, + 250, + 85, + 160, + 65, + 85, + 67, + 350, + 25, + 175, + 58, + 55, + 60, + 90, + 125, + 39, + 36, + 90, + 69, + 150, + 125, + 70, + 95, + 58, + 69, + 125, + 160, + 80, + 200, + 85, + 140, + 45, + 165, + 125, + 140, + 48, + 98, + 115, + 260, + 34.1, + 120 + ], + "xaxis": "x2", + "yaxis": "y2" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "Newly Built" + }, + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Disribtion of Prices based on when Built" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Price" + } + }, + "xaxis2": { + "anchor": "y2", + "domain": [ + 0, + 1 + ], + "matches": "x", + "showgrid": true, + "showticklabels": false + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 0.7326 + ], + "title": { + "text": "count" + } + }, + "yaxis2": { + "anchor": "x2", + "domain": [ + 0.7426, + 1 + ], + "matches": "y2", + "showgrid": false, + "showline": false, + "showticklabels": false, + "ticks": "" + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "px.histogram(data_frame=lagos, x=\"Price\",marginal=\"box\", nbins=120,\n", + " color=\"Newly Built\", title=\"Disribtion of Prices based on when Built\")" + ] + }, + { + "cell_type": "markdown", + "id": "4edf9913", + "metadata": {}, + "source": [ + "The average price for a Newly Built house is 130 million naira, while the avergage price for one that isn't newly built is 18 million naira. \n", + "\n", + "This statistic shows newly built tends to be more expensive in the market" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "4ae909c0", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "City=Lekki
Price=%{x}
count=%{y}", + "legendgroup": "Lekki", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "Lekki", + "nbinsx": 120, + "offsetgroup": "Lekki", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 57, + 57, + 230, + 70, + 100, + 90, + 140, + 140, + 57, + 120, + 85, + 50, + 43, + 90, + 29, + 70, + 58, + 150, + 75, + 170, + 48, + 37, + 42, + 42, + 63, + 79, + 85, + 45, + 70, + 120, + 75, + 56, + 79, + 300, + 140, + 170, + 270, + 49, + 77, + 400, + 70, + 90, + 300, + 65, + 49, + 350, + 180, + 57, + 290, + 110, + 240, + 105, + 110, + 55, + 425, + 140, + 100, + 140, + 68, + 120, + 95, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 78, + 75, + 59, + 70, + 45, + 100, + 38, + 70, + 68, + 220, + 54, + 140, + 155, + 33, + 150, + 38, + 71, + 400, + 57, + 48, + 320, + 63, + 90, + 50, + 250, + 60, + 130, + 130, + 95, + 160, + 68, + 170, + 97, + 198, + 205, + 69, + 85, + 145, + 50, + 98, + 80, + 75, + 205, + 80, + 75, + 105, + 170, + 45, + 100, + 73, + 80, + 80, + 230, + 130, + 35, + 300, + 55, + 68, + 75, + 75, + 130, + 220, + 130, + 95, + 35, + 250, + 85, + 200, + 175, + 70, + 70, + 220, + 70, + 53, + 210, + 160, + 67, + 70, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 65, + 65, + 75, + 55, + 50, + 175, + 125, + 50, + 115, + 125, + 120, + 40, + 85, + 57, + 95, + 32, + 350, + 62, + 150, + 50, + 90, + 42, + 48, + 100, + 48, + 54.5, + 170, + 150, + 260, + 130, + 160, + 90, + 65, + 39.5, + 85, + 220, + 40, + 155, + 75, + 70, + 125, + 102, + 53, + 150, + 65, + 62, + 50, + 59, + 98, + 49, + 350, + 165, + 53, + 38, + 75, + 143, + 37, + 85, + 130, + 200, + 90, + 49.5, + 200, + 59.9, + 200, + 95, + 160, + 68, + 87, + 90, + 130, + 75, + 110, + 60, + 100, + 58.5, + 110, + 67, + 52, + 170, + 60, + 57, + 80, + 60, + 90, + 100, + 85, + 160, + 123, + 170, + 90, + 85, + 150, + 55, + 80, + 45, + 35, + 190, + 84, + 30, + 200, + 45, + 30, + 100, + 50, + 50, + 130, + 110, + 260, + 125, + 80, + 185, + 66, + 500, + 135, + 85, + 55, + 205, + 85, + 100, + 37, + 88, + 52, + 72, + 300, + 320, + 170, + 87, + 163, + 65, + 97, + 120, + 110, + 140, + 370, + 180, + 70, + 75, + 37, + 170, + 300, + 75, + 200, + 55, + 28, + 60, + 120, + 65, + 280, + 360, + 90, + 70, + 105, + 250, + 105, + 120, + 45, + 55, + 400, + 55, + 240, + 230, + 36, + 180, + 115, + 66, + 60, + 300, + 130, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 390, + 130, + 200, + 60, + 85, + 70, + 65, + 180, + 64, + 80, + 70, + 300, + 40, + 70, + 350, + 150, + 67, + 140, + 70, + 80, + 40, + 50, + 265, + 250, + 105, + 150, + 105, + 125, + 80, + 56, + 80, + 160, + 117, + 120, + 85, + 100, + 67, + 65, + 65, + 120, + 60, + 60, + 55, + 35, + 79, + 33, + 35, + 85, + 165, + 80, + 160, + 70, + 95, + 350, + 66, + 80, + 50, + 180, + 400, + 115, + 200, + 145, + 150, + 95, + 130, + 85, + 50, + 50, + 150, + 120, + 82, + 75, + 53, + 14, + 32.75, + 75, + 80, + 37, + 75, + 98, + 90, + 60, + 80, + 90, + 135, + 160, + 160, + 110, + 112, + 45, + 85, + 85, + 120, + 75, + 85, + 88, + 95, + 70, + 500, + 165, + 60, + 37, + 40, + 38, + 278, + 190, + 40, + 55, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 98, + 185, + 150, + 52.5, + 135, + 130, + 140, + 130, + 290, + 95, + 84, + 60, + 75, + 105, + 65, + 30, + 50, + 33, + 160, + 175, + 225, + 115, + 41.5, + 50, + 160, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 165, + 130, + 65, + 75, + 280, + 130, + 80, + 85, + 90, + 130, + 54, + 200, + 145, + 185, + 320, + 31, + 47, + 200, + 75, + 46, + 71.5, + 55, + 60, + 185, + 75, + 180, + 85, + 290, + 80, + 100, + 95, + 370, + 90, + 30, + 450, + 250, + 66, + 46, + 48, + 120, + 95, + 15.5, + 80, + 80, + 48, + 65, + 80, + 65, + 56, + 90, + 45, + 180, + 82, + 195, + 270, + 140, + 250, + 80, + 180, + 72, + 35, + 240, + 75, + 60, + 50, + 45, + 75, + 62, + 60, + 75, + 140, + 20, + 190, + 97, + 65, + 170, + 100, + 45, + 65, + 60, + 55, + 198, + 37, + 55, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 73, + 32.75, + 43, + 130, + 89, + 300, + 65, + 390, + 130, + 175, + 250, + 68, + 80, + 150, + 120, + 480, + 430, + 95, + 75, + 100, + 145, + 110, + 95, + 120, + 45, + 125, + 100, + 210, + 270, + 350, + 180, + 50, + 125, + 65, + 87, + 120, + 40, + 32.5, + 67, + 92.5, + 350, + 94, + 125, + 150, + 350, + 85, + 75, + 200, + 125, + 55, + 35, + 185, + 40, + 60, + 250, + 120, + 85, + 235, + 40.5, + 95, + 73, + 65, + 198, + 290, + 85, + 125, + 62, + 73, + 70, + 80, + 200, + 90, + 170, + 39, + 67, + 60, + 70, + 110, + 38, + 250, + 450, + 250, + 165, + 125, + 45, + 150, + 85, + 299.999999, + 99, + 180, + 250, + 60, + 67, + 70, + 160, + 50, + 70, + 80, + 60, + 60.9, + 80, + 130, + 58, + 144, + 102, + 80, + 57, + 140, + 67, + 65, + 50, + 70, + 48, + 80, + 48, + 75, + 88, + 160, + 83, + 76, + 135, + 110, + 85, + 63, + 210, + 100, + 60, + 130, + 98, + 65, + 220, + 240, + 90, + 170, + 59, + 130, + 50, + 240, + 33, + 70, + 95, + 30, + 66, + 47, + 160, + 110, + 67, + 35, + 45, + 55, + 180, + 85, + 160, + 56.5, + 230, + 48, + 45, + 130, + 55, + 32.75, + 150, + 170, + 67, + 65, + 80, + 180, + 85, + 38, + 35, + 175, + 95, + 84, + 62.5, + 55, + 35, + 60, + 117, + 55, + 75, + 80, + 220, + 70, + 110, + 205, + 80, + 120, + 110, + 140, + 37, + 400, + 145, + 170, + 48, + 49.5, + 100, + 45, + 120, + 95, + 200, + 49, + 500, + 155, + 55, + 95, + 90, + 120, + 95, + 125, + 165, + 250, + 75, + 42.5, + 90, + 100, + 115, + 150, + 270, + 145, + 140, + 38, + 78, + 120, + 185, + 38, + 65, + 360, + 70, + 68, + 105, + 170, + 350, + 48, + 250, + 40, + 65, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 47, + 45, + 220, + 120, + 47, + 58, + 85, + 33, + 270, + 60, + 45, + 135, + 40, + 65, + 110, + 165, + 50, + 300, + 280, + 170, + 45, + 75, + 290, + 38, + 50, + 100, + 195, + 57, + 100, + 42, + 76, + 55, + 68, + 110, + 60, + 44, + 70, + 118, + 102, + 189, + 80, + 85, + 60, + 140, + 115, + 150, + 300, + 80, + 57, + 120, + 420, + 400, + 115, + 150, + 57, + 60, + 73, + 32, + 110, + 55, + 68, + 49.9, + 198, + 47, + 58, + 125, + 26, + 75, + 55, + 72, + 25, + 500, + 85, + 140, + 92, + 100, + 59, + 90, + 75, + 85, + 77, + 105, + 55, + 75, + 50, + 58, + 65, + 45, + 50, + 100, + 500, + 50, + 450, + 130, + 66, + 78, + 80, + 210, + 195, + 150, + 130, + 70, + 80, + 80, + 49, + 70, + 64, + 235, + 410, + 68, + 60, + 90, + 65, + 230, + 70, + 88, + 61, + 65, + 68, + 180, + 180, + 52, + 14, + 200, + 45, + 78, + 52, + 48, + 80, + 470, + 75, + 220, + 56, + 55, + 97, + 57, + 290, + 65, + 145, + 95, + 75, + 95, + 75, + 50, + 46, + 55, + 75, + 36, + 160, + 150, + 90, + 50, + 110, + 285, + 90, + 45, + 58, + 78, + 150, + 60, + 269, + 225, + 100, + 50, + 203, + 54, + 110, + 210, + 41, + 30, + 39, + 130, + 67, + 70, + 79, + 155, + 95, + 120, + 50, + 65, + 50, + 78, + 37, + 80, + 255, + 105, + 360, + 40, + 72, + 280, + 59, + 82, + 33, + 40, + 80, + 95, + 270, + 118, + 195, + 130, + 75, + 175, + 85, + 95, + 110, + 75, + 400, + 160, + 100, + 120, + 48, + 40, + 200, + 200, + 76, + 270, + 47, + 53, + 250, + 180, + 126, + 155, + 78, + 79, + 90, + 105, + 180, + 70, + 330, + 65, + 380, + 170, + 75, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 190, + 70, + 32, + 56, + 49, + 50, + 30, + 40, + 165, + 77, + 120, + 155, + 70, + 40, + 169, + 49, + 160, + 190, + 190, + 75, + 480, + 170, + 170, + 76, + 85, + 130, + 55, + 190, + 130, + 115, + 40, + 120, + 38, + 275, + 90, + 95, + 105, + 130, + 155.7, + 65, + 33, + 165, + 68, + 80, + 135, + 60, + 320, + 78, + 165, + 72, + 110, + 185, + 95, + 200, + 74, + 90, + 50, + 300, + 38, + 260, + 200, + 75, + 175, + 85, + 62, + 92, + 160, + 85, + 200, + 52, + 100, + 85, + 250, + 22, + 170, + 85, + 190, + 73, + 160, + 92, + 450, + 390, + 51, + 120, + 135, + 140, + 48, + 65, + 130, + 100, + 106, + 295, + 180, + 50, + 392, + 170, + 55, + 120, + 60, + 40, + 50, + 45, + 140, + 85, + 420, + 105, + 190, + 160, + 57, + 250, + 360, + 60, + 78, + 205, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 140, + 198.5, + 127, + 125, + 35, + 70, + 45, + 55, + 80, + 270, + 53, + 35, + 33, + 98, + 75, + 135, + 65, + 60, + 39, + 85, + 250, + 160, + 110, + 100, + 47, + 100, + 34, + 58, + 220, + 250, + 59, + 280, + 92, + 80, + 100, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 66, + 63, + 410, + 135, + 95, + 115, + 80, + 300, + 130, + 160, + 280, + 55, + 55, + 25, + 250, + 480, + 110, + 68, + 33, + 56, + 170, + 82, + 135, + 72, + 270, + 17.675, + 183, + 85, + 164, + 90, + 67, + 125, + 74, + 100, + 180, + 45, + 47, + 59.5, + 190, + 48, + 65, + 85, + 90, + 100, + 200, + 100, + 69, + 65, + 180, + 500, + 60, + 28, + 75, + 47, + 110, + 60, + 155, + 95, + 60, + 95, + 98, + 140, + 55, + 67, + 55, + 450, + 165, + 125, + 90, + 100, + 175, + 85, + 290, + 36, + 300, + 165, + 43, + 240, + 69, + 95, + 125, + 150, + 115, + 210, + 49, + 80, + 120, + 180, + 75, + 55, + 45, + 55, + 33, + 220, + 120, + 270, + 150, + 79, + 105, + 68, + 120, + 65, + 175, + 78, + 350, + 170, + 76, + 95, + 70, + 98, + 33, + 195, + 30, + 45, + 77, + 130, + 45, + 120, + 95, + 145, + 300, + 170, + 57, + 60, + 50, + 65, + 53, + 76, + 93, + 40, + 55, + 57, + 280, + 195, + 80, + 41, + 37, + 51.5, + 130, + 270, + 79.5, + 97, + 115, + 56, + 37, + 158, + 80, + 120, + 100, + 90, + 90, + 68, + 75, + 32, + 72, + 220, + 100, + 172, + 40, + 350, + 55, + 70, + 70, + 45, + 110, + 400, + 53, + 370, + 32, + 145, + 40, + 24, + 165, + 65, + 57, + 130, + 155, + 195, + 75, + 130, + 70, + 50, + 180, + 53.1, + 65, + 109, + 120, + 90, + 45, + 270, + 62, + 60, + 110, + 225, + 150, + 55, + 220, + 74, + 78, + 45, + 110, + 47, + 120, + 100, + 110, + 280, + 45, + 270, + 70, + 158, + 245, + 380, + 75, + 135, + 55, + 110, + 75, + 75, + 400, + 56, + 40, + 200, + 36.5, + 100, + 33, + 60, + 58, + 185, + 88, + 57, + 75, + 55, + 185, + 32, + 49, + 160, + 83, + 150, + 110, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 60, + 75, + 145, + 140, + 75, + 70, + 45, + 250, + 480, + 90, + 130, + 110, + 35, + 55, + 69, + 92, + 270, + 105, + 48, + 30, + 190, + 95, + 54, + 400, + 85, + 190, + 52, + 80, + 37, + 65, + 58, + 60, + 51, + 180, + 185, + 48, + 37, + 100, + 76, + 170, + 45, + 35.85, + 90, + 135, + 46, + 285, + 130, + 290, + 450, + 60, + 350, + 59.5, + 175, + 83, + 77, + 155, + 145, + 80, + 70, + 400, + 165, + 19.975, + 59, + 230, + 130, + 55, + 87, + 500, + 180, + 180, + 450, + 250, + 180, + 59, + 69.99, + 65, + 63, + 40, + 200, + 148, + 70, + 230, + 150, + 75, + 250, + 100, + 48, + 65, + 185, + 70, + 180, + 48, + 150, + 265, + 65, + 55, + 70, + 150, + 167, + 93, + 440, + 115, + 70, + 35, + 55, + 115, + 150, + 380, + 95, + 57, + 45, + 45, + 33, + 95, + 330, + 185, + 150, + 300, + 78, + 275, + 120, + 11.6, + 42, + 118, + 77, + 68, + 120, + 160, + 200, + 77, + 37, + 160, + 75, + 150, + 58, + 59, + 79, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 105, + 30, + 48, + 65, + 300, + 120, + 450, + 230, + 110, + 47, + 45, + 150, + 320, + 95, + 75, + 480, + 150, + 83, + 210, + 65, + 115, + 60, + 185, + 70, + 250, + 110, + 280, + 200, + 30, + 350, + 330, + 45, + 36.5, + 45, + 150, + 270, + 48, + 58, + 43, + 77, + 58, + 60, + 120, + 72, + 67, + 50, + 430, + 58, + 150, + 140, + 59, + 65, + 50, + 150, + 120, + 150, + 80, + 195, + 70, + 120, + 220, + 145, + 500, + 80, + 67, + 48, + 79.5, + 38, + 115, + 130, + 180, + 120, + 205, + 65, + 120, + 80, + 300, + 69, + 165, + 55, + 150, + 77, + 57, + 73, + 58, + 85, + 54, + 80, + 125, + 75, + 370, + 300, + 50, + 38, + 49, + 150, + 60, + 75, + 95, + 183, + 16.5, + 120, + 35, + 50, + 55, + 72, + 52, + 145, + 90, + 190, + 300, + 99, + 80, + 200, + 38, + 65, + 220, + 195, + 70, + 48, + 85, + 85, + 59, + 100, + 35, + 110, + 90, + 75, + 86, + 45, + 60, + 130, + 69.5, + 150, + 180, + 35, + 38, + 50, + 350, + 70, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 290, + 330, + 135, + 60, + 97, + 68, + 125, + 55, + 47, + 95, + 52, + 125, + 54, + 58, + 95, + 115, + 165, + 62, + 60, + 83, + 90, + 46, + 220, + 57, + 170, + 75.000009, + 150, + 125, + 95, + 65, + 67, + 185, + 350, + 180, + 140, + 75, + 37, + 400, + 35, + 38, + 160, + 90, + 130, + 65, + 80, + 58, + 160, + 26, + 95, + 50, + 430, + 125, + 73, + 58, + 63, + 450, + 270, + 330, + 250, + 75, + 110, + 200, + 195, + 35, + 220, + 65, + 75, + 57, + 68, + 140, + 190, + 110, + 150, + 57, + 95, + 160, + 48, + 38, + 65, + 75, + 30, + 140, + 255, + 120, + 230, + 67, + 83, + 200, + 175, + 130, + 150, + 95, + 130, + 92, + 130, + 120, + 95, + 155, + 170, + 65, + 52, + 280, + 52, + 63, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 190, + 55, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 45, + 47, + 60, + 280, + 85, + 90, + 110, + 35, + 110, + 85, + 220, + 67, + 210, + 37, + 235, + 73, + 155, + 58, + 58, + 39, + 160, + 220, + 135, + 350, + 125, + 185, + 350, + 62, + 85, + 150, + 57, + 105, + 185, + 85, + 78, + 240, + 98, + 200, + 155, + 81, + 62, + 55, + 130, + 120, + 43, + 48, + 65, + 40, + 105, + 145, + 200, + 52, + 78, + 56, + 43, + 270, + 62, + 168, + 47, + 120, + 130, + 49, + 500, + 320, + 40, + 100, + 118, + 135, + 120, + 45, + 50, + 90, + 230, + 90, + 80, + 220, + 190, + 55, + 48, + 140, + 95, + 65, + 180, + 80, + 160, + 100, + 70, + 58, + 150, + 85, + 55, + 155, + 68, + 60, + 300, + 82, + 110, + 68, + 54, + 295, + 155, + 72, + 100, + 100, + 120, + 56, + 85, + 140, + 60, + 97, + 90, + 80, + 100, + 40, + 115, + 96, + 62, + 65, + 170, + 47, + 47.5, + 95, + 150, + 52, + 28, + 180, + 190, + 80, + 40, + 38, + 220, + 53, + 62, + 160, + 110, + 110, + 48, + 72, + 250, + 160, + 42, + 55, + 280, + 55, + 65, + 61.75, + 300, + 150, + 115, + 45, + 150, + 39, + 75, + 60, + 260, + 95, + 170, + 300, + 205, + 210, + 33, + 75, + 75, + 35, + 90, + 160, + 120, + 38, + 100, + 46, + 40, + 36, + 35, + 130, + 70, + 450, + 128, + 78, + 160, + 250, + 200, + 120, + 175, + 130, + 41, + 300, + 125, + 250, + 300, + 17, + 95, + 85, + 120, + 47, + 75, + 53, + 250, + 395, + 70, + 55, + 80, + 90, + 55, + 80, + 55, + 150, + 65, + 135, + 50, + 95, + 145, + 35, + 90, + 70, + 290, + 45, + 45, + 80, + 62, + 80, + 225, + 170, + 125, + 85, + 47, + 65, + 65, + 48, + 250, + 58, + 35, + 75, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 90, + 60, + 130, + 120, + 80, + 135, + 52, + 160, + 110, + 35, + 370, + 110, + 88, + 80, + 450, + 350, + 85, + 120, + 125, + 135, + 230, + 190, + 445, + 120, + 55, + 88, + 80, + 27, + 260, + 110, + 105, + 74, + 150, + 400, + 170, + 75, + 30, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 45, + 95, + 170, + 65, + 125, + 200, + 59, + 235, + 67, + 165, + 67, + 127, + 290, + 64.1, + 58, + 80, + 95, + 160, + 55, + 130, + 330, + 70, + 72, + 52, + 260, + 95, + 130, + 200, + 75, + 190, + 68, + 33, + 56, + 270, + 95, + 62, + 65, + 45, + 45, + 66, + 48, + 38, + 28.5, + 110, + 120, + 65, + 45, + 250, + 20, + 250, + 140, + 55, + 120, + 130, + 110, + 110, + 105, + 38, + 199.999, + 450, + 35, + 70, + 65, + 105, + 450, + 190, + 60, + 35, + 250, + 73, + 100, + 85, + 110, + 60, + 130, + 130, + 33, + 40, + 150, + 68, + 65, + 95, + 65, + 45, + 33, + 170, + 55, + 105, + 65, + 55, + 135, + 270, + 50, + 95, + 90, + 75, + 50, + 48, + 170, + 33, + 245, + 44, + 48, + 58, + 110, + 58, + 50, + 65, + 80, + 75, + 50, + 78, + 135, + 47, + 65, + 80, + 350, + 72, + 255, + 230, + 120, + 90, + 155, + 42, + 57, + 85, + 110, + 51, + 90, + 100, + 170, + 143, + 65, + 140, + 160, + 55, + 90, + 75, + 170, + 47, + 180, + 49, + 46, + 270, + 85, + 79, + 78, + 47, + 83, + 65, + 65, + 50, + 95, + 40, + 120, + 180, + 153, + 59, + 60, + 85, + 53, + 38, + 33, + 155, + 67, + 320, + 45, + 55, + 160, + 80, + 70, + 220, + 72, + 390, + 45, + 175, + 40, + 73, + 75, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 80, + 160, + 99, + 50, + 90, + 430, + 50, + 400, + 60, + 85, + 58, + 60, + 65, + 80, + 230, + 115, + 90, + 75, + 115, + 192, + 115, + 90, + 50, + 47, + 75, + 45, + 125, + 200, + 165, + 138, + 165, + 30, + 69, + 56, + 65, + 95, + 77.5, + 70, + 90, + 75, + 82, + 180, + 46, + 62, + 76, + 70, + 52, + 65, + 450, + 160, + 135, + 51, + 80, + 175, + 50, + 63.1, + 59, + 135, + 130, + 110, + 40, + 470, + 55, + 300, + 70, + 160, + 90, + 35, + 77, + 60, + 150, + 57, + 58, + 57, + 115, + 78, + 75, + 100, + 50, + 130, + 54, + 100, + 80, + 210, + 180, + 130, + 80, + 85, + 50, + 140, + 55, + 70, + 335, + 285, + 74.1, + 130, + 65, + 135, + 37, + 100, + 62, + 81, + 72, + 160, + 90, + 450, + 130, + 55, + 36.5, + 150, + 190, + 36, + 90, + 95, + 65, + 150, + 500, + 37, + 90, + 90, + 44, + 400, + 75, + 500, + 190, + 160, + 90, + 58, + 235, + 280, + 55, + 250, + 85, + 120, + 76, + 255, + 120, + 173, + 44, + 175, + 75, + 135, + 175, + 47, + 60, + 230, + 155, + 72, + 45, + 65, + 220, + 95, + 145, + 400, + 85, + 44, + 42, + 100, + 110, + 79, + 200, + 59, + 65, + 150, + 130, + 75, + 80, + 165, + 80, + 68, + 320, + 68, + 145, + 235, + 73, + 100, + 130, + 58, + 70, + 130, + 100, + 100, + 69, + 90, + 45, + 55, + 200, + 195, + 95, + 360, + 240, + 175, + 90, + 62, + 190, + 130, + 215, + 38.5, + 55, + 37, + 96, + 45, + 270, + 115, + 80, + 70, + 75, + 120, + 40, + 90, + 58, + 46, + 140, + 250, + 78, + 165, + 170, + 45, + 135, + 140, + 145, + 185, + 70, + 220, + 38, + 165, + 106, + 75, + 85, + 68, + 135, + 480, + 155, + 42, + 49, + 37, + 380, + 53, + 68, + 80, + 57, + 62, + 38, + 40, + 75, + 330, + 141, + 125, + 215, + 180, + 140, + 57, + 57, + 150, + 27, + 200, + 180, + 150, + 88, + 90, + 230, + 55, + 160, + 140, + 45, + 150, + 480, + 150, + 75, + 85, + 90, + 68, + 85, + 130, + 200, + 250, + 380, + 100, + 170, + 75, + 170, + 75, + 170, + 140, + 70, + 450, + 55, + 65, + 80, + 189, + 85, + 260, + 300, + 160, + 240, + 58, + 85, + 280, + 110, + 82, + 95, + 82, + 120, + 175, + 70, + 28, + 110, + 65, + 380, + 53, + 45, + 68, + 76, + 70, + 58, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 270, + 100, + 65, + 170, + 95, + 230, + 75, + 32, + 210, + 310, + 130, + 105, + 70, + 55, + 130, + 48, + 150, + 33.5, + 120, + 65, + 75, + 45, + 400, + 40, + 180, + 150, + 150, + 155, + 90, + 80, + 35, + 53, + 38, + 105, + 350, + 50, + 51.5, + 78, + 57, + 44.815, + 55, + 57, + 150, + 90, + 220, + 85, + 90, + 90, + 100, + 40, + 80, + 105, + 37, + 80.000005, + 250, + 64, + 95, + 62, + 73, + 380, + 46, + 310, + 170, + 80, + 70, + 85, + 290, + 70, + 45, + 185, + 50, + 55, + 40, + 70, + 110, + 64, + 180, + 105, + 40, + 75, + 290, + 150, + 90, + 150, + 40, + 120, + 70, + 67, + 55, + 130, + 56, + 75, + 77, + 125, + 45, + 70, + 270, + 90, + 190, + 100, + 51, + 110, + 110, + 170, + 53, + 70, + 120, + 180, + 90, + 85, + 37, + 72, + 50, + 37, + 50, + 125, + 54, + 85, + 68, + 140, + 60, + 400, + 250, + 450, + 38, + 100, + 140, + 185, + 38, + 270, + 85, + 55, + 175, + 48, + 85, + 82, + 57, + 65, + 133, + 240, + 110, + 348, + 140, + 200, + 65, + 370, + 40, + 58, + 66, + 57, + 68, + 46, + 35, + 500, + 58, + 77, + 120, + 83, + 500, + 110, + 50, + 38.99, + 370, + 87, + 59, + 135, + 220, + 65, + 70, + 69, + 105, + 190, + 130, + 85, + 150, + 140, + 40, + 45, + 22, + 85, + 100, + 110, + 52, + 70, + 62, + 60, + 75, + 150, + 450, + 36, + 150, + 28, + 72.5, + 65, + 85, + 110, + 48, + 230, + 125, + 280, + 400, + 135, + 90, + 71, + 130, + 85, + 55, + 70, + 125, + 102, + 300, + 93, + 105, + 160, + 40, + 58, + 70, + 40, + 45, + 40, + 46, + 450, + 140, + 100, + 165, + 90, + 40, + 60, + 75, + 19.975, + 38, + 60, + 45, + 290, + 65, + 120, + 90, + 115, + 37, + 68, + 115, + 65, + 50, + 90, + 130, + 60, + 30, + 65, + 70, + 115, + 65, + 46, + 23, + 250, + 55, + 55, + 100, + 170, + 400, + 85, + 90, + 66, + 150, + 46, + 85, + 260, + 45, + 78, + 58, + 45, + 160, + 65, + 39, + 45, + 102, + 85, + 120, + 180, + 125, + 50, + 47, + 300, + 115, + 220, + 130, + 145, + 80, + 240, + 198, + 320, + 50, + 62.5, + 250, + 230, + 35, + 135, + 63, + 80, + 200, + 270, + 69.99, + 50, + 49, + 85, + 34, + 36, + 190, + 70, + 33, + 120, + 400, + 86, + 80, + 92, + 65, + 100.99, + 38, + 120, + 90, + 40, + 85, + 220, + 53, + 90, + 370, + 160, + 65, + 95, + 190, + 120, + 260, + 155, + 75, + 195, + 105, + 150, + 90, + 85, + 85, + 35, + 90, + 65, + 460, + 38, + 115, + 62, + 60, + 67, + 70, + 50, + 50, + 200, + 205, + 300, + 100, + 48, + 185, + 100, + 180, + 65, + 47, + 120, + 84, + 45, + 200, + 53, + 130, + 17.675, + 90, + 130, + 140, + 75, + 200, + 120, + 60, + 54, + 75, + 125, + 68, + 115, + 48, + 300, + 72, + 100, + 200, + 190, + 70, + 35, + 66, + 110, + 65, + 180, + 57, + 295, + 82, + 78, + 35, + 72, + 175, + 50, + 80, + 80, + 110, + 65, + 85, + 78, + 135, + 175, + 78, + 205, + 170, + 40, + 135, + 260, + 360, + 175, + 80, + 150, + 65, + 65, + 83, + 100, + 75, + 110, + 39, + 250, + 125, + 85, + 90, + 190, + 55, + 60, + 185, + 48, + 260, + 230, + 100, + 45, + 180, + 80, + 135, + 100, + 300, + 60, + 110, + 95, + 180, + 170, + 140, + 95, + 175, + 92, + 65, + 55, + 165, + 75, + 90, + 90, + 190, + 65, + 165, + 120, + 30, + 55, + 350, + 120, + 125, + 260, + 58, + 280, + 420, + 42, + 65, + 130, + 85, + 75, + 62, + 60, + 75, + 50, + 60, + 90, + 58, + 85, + 165, + 265, + 110, + 350, + 80, + 90, + 48, + 45, + 270, + 47, + 42, + 78, + 65, + 24, + 180, + 70, + 71, + 67, + 128, + 295, + 175, + 200, + 170, + 250, + 90, + 75, + 40, + 52, + 140, + 85, + 200, + 260, + 135, + 49, + 59, + 80, + 150, + 235, + 75, + 65, + 45, + 65, + 380, + 60, + 69, + 85, + 57, + 49, + 155, + 62, + 395, + 120, + 85, + 198, + 100, + 69, + 38.9, + 280, + 75, + 80, + 115, + 53, + 36, + 110, + 85, + 85, + 55, + 47, + 65, + 55, + 55, + 80, + 65, + 35, + 50, + 53.5, + 35, + 320, + 18.975, + 190, + 140, + 55, + 110, + 70, + 195, + 65, + 35, + 220, + 120, + 79.5, + 115, + 58, + 95, + 68, + 205, + 200, + 167, + 100, + 68, + 200, + 175, + 160, + 60, + 110, + 200, + 58, + 60, + 37, + 195, + 125, + 50, + 90, + 60, + 38.5, + 160, + 60, + 76, + 85, + 45, + 270, + 185, + 75, + 110, + 115, + 46, + 235, + 125, + 70, + 140, + 110, + 95, + 250, + 57, + 155, + 48, + 80, + 52, + 180, + 28, + 45, + 80, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 65, + 47, + 145, + 56, + 83, + 145, + 80, + 55, + 80, + 48, + 63, + 250, + 73, + 35, + 50, + 95, + 185, + 105, + 110, + 150, + 165, + 200, + 41, + 140, + 55, + 87, + 82, + 108, + 145, + 90, + 100, + 115, + 50, + 65, + 70, + 40, + 320, + 90, + 83, + 88, + 80, + 140, + 83, + 75, + 45, + 300, + 100, + 65, + 38.5, + 200, + 135, + 140, + 100, + 40.64, + 70, + 105, + 58, + 390, + 55, + 75, + 80, + 45, + 98, + 285, + 50, + 145, + 85, + 55, + 160, + 75, + 135, + 135, + 54.5, + 180, + 65, + 180, + 197, + 110, + 400, + 80, + 100, + 90, + 135, + 100, + 40, + 120, + 145, + 110, + 85, + 500, + 250, + 36, + 55, + 55, + 500, + 65, + 95, + 300, + 45, + 48, + 49.5, + 145, + 90, + 400, + 100, + 120, + 68, + 160, + 155, + 95, + 155, + 85, + 500, + 150, + 95, + 60, + 210, + 36.5, + 30, + 74, + 195, + 56, + 63.1, + 84, + 410, + 68, + 110, + 65, + 95, + 80, + 60, + 130, + 65, + 55, + 55, + 120, + 155, + 120, + 75, + 150, + 108, + 40, + 145, + 48, + 65, + 37, + 75, + 160, + 43, + 95, + 250, + 82, + 49.5, + 70, + 50, + 63, + 39, + 65, + 95, + 85, + 40, + 190, + 110, + 185, + 250, + 140, + 45, + 95, + 115, + 17.675, + 95, + 285, + 155, + 45, + 350, + 42, + 50, + 55, + 85, + 370, + 75, + 60, + 75, + 62, + 187, + 48, + 90, + 160, + 62, + 85, + 90, + 75, + 105, + 250, + 120, + 250, + 80, + 65, + 60, + 45, + 160, + 120, + 160, + 78, + 250, + 35, + 65, + 130, + 87, + 165, + 250, + 150, + 60, + 140, + 30, + 58, + 50, + 100, + 200, + 50, + 70, + 60, + 18, + 350, + 57, + 93, + 175, + 230, + 63, + 35, + 90, + 250, + 52, + 55, + 130, + 46, + 100, + 270, + 140, + 140, + 170, + 90, + 75, + 60, + 105, + 250, + 85, + 180, + 77.5, + 70, + 500, + 50, + 75, + 45, + 50, + 175, + 60, + 57, + 69, + 280, + 63, + 270, + 300, + 150, + 120, + 45, + 36, + 100, + 55, + 69.5, + 65, + 120, + 350, + 40, + 55, + 41, + 75, + 70, + 150, + 49.5, + 58, + 300, + 170, + 145, + 49.9, + 54, + 195, + 110, + 57, + 68, + 140, + 80, + 261, + 210, + 85, + 55, + 110, + 200, + 41, + 140, + 120, + 90, + 95, + 385, + 55, + 47, + 65, + 55, + 165, + 140, + 60, + 280, + 53, + 49.5, + 300, + 42, + 98, + 42, + 110, + 70, + 50, + 110, + 40, + 100, + 65, + 35, + 140, + 235, + 120, + 150, + 250, + 200, + 125, + 57, + 280, + 370, + 200, + 300, + 400, + 45, + 175, + 70, + 40, + 38, + 60, + 190, + 120, + 45, + 43.5, + 45, + 145, + 150, + 30, + 160, + 67, + 125, + 66, + 72, + 275, + 169.5, + 47.799, + 82, + 85, + 190, + 170, + 150, + 105, + 33, + 150, + 300, + 72, + 75, + 200, + 68, + 150, + 48, + 120, + 45, + 45, + 38, + 85.5, + 140, + 90, + 150, + 110, + 120, + 75, + 87.000099, + 100, + 45, + 170, + 76, + 47, + 150, + 125, + 100, + 150, + 170, + 300, + 55, + 60, + 180, + 60, + 170, + 300, + 67, + 59, + 65, + 80, + 138, + 450, + 130, + 250, + 48, + 90, + 76, + 46, + 80, + 480, + 60, + 70, + 110, + 135, + 195, + 275, + 55, + 460, + 95, + 500, + 62, + 50, + 140, + 340, + 340, + 48, + 55, + 73, + 70, + 62, + 56, + 90, + 42, + 36, + 250, + 79, + 45, + 80, + 60, + 370, + 180, + 60, + 160, + 65, + 36, + 55, + 140, + 95, + 270, + 170, + 65, + 200, + 39, + 43, + 57, + 150, + 130, + 175, + 75, + 390, + 70, + 40, + 230, + 60, + 65, + 75, + 63, + 75, + 80, + 110, + 160, + 75, + 75, + 210, + 60, + 68, + 93, + 85, + 95, + 72, + 360, + 35, + 65, + 38, + 165, + 59, + 62, + 44, + 65, + 165, + 240, + 70, + 53, + 100, + 130, + 56.000099, + 95, + 155, + 110, + 28, + 230, + 55, + 72, + 85, + 180, + 150, + 115, + 85, + 63, + 180, + 180, + 180, + 150, + 68, + 77, + 55, + 59, + 43, + 80, + 41.5, + 34.5, + 68, + 180, + 65, + 55, + 36, + 125, + 62, + 62, + 350, + 160, + 320, + 150, + 198, + 80, + 60, + 60, + 155, + 90, + 95, + 78, + 80, + 52, + 55, + 77, + 53, + 125, + 34, + 200, + 140, + 350, + 38, + 190, + 30, + 62, + 80, + 140, + 190, + 12, + 69.5, + 45, + 40, + 32, + 32, + 220, + 98, + 220, + 115, + 90, + 55, + 275, + 265, + 160, + 55, + 120, + 105, + 165, + 64, + 110, + 40, + 150, + 53, + 90, + 60, + 80, + 85, + 68, + 165, + 45, + 35, + 43, + 70, + 34, + 105, + 120, + 55, + 95, + 85, + 60, + 90, + 150, + 98, + 43.5, + 88, + 53, + 45, + 105, + 300, + 49, + 85, + 200, + 380, + 265, + 58, + 80, + 200, + 325, + 50, + 240, + 95, + 180, + 125, + 85, + 100, + 78, + 125, + 85, + 50, + 280, + 185, + 150, + 50, + 200, + 200, + 300, + 220, + 99, + 130, + 300, + 270, + 75, + 105, + 115, + 70, + 55, + 220, + 83, + 37, + 62, + 75, + 130, + 80, + 370, + 200, + 100, + 67, + 105, + 145, + 195, + 175, + 77, + 120, + 55, + 105, + 40, + 240, + 85, + 70, + 350, + 120, + 190, + 155, + 40, + 180, + 280, + 60, + 180, + 85, + 62, + 50, + 61, + 70, + 55, + 36, + 85, + 70, + 70, + 80, + 79, + 120, + 110, + 90, + 123, + 72, + 270, + 80, + 220, + 130, + 400, + 90, + 150, + 50, + 130, + 105, + 90, + 370, + 80, + 37, + 170, + 55, + 240, + 230, + 110, + 58.5, + 140, + 110, + 300, + 52, + 75, + 37, + 140, + 115, + 85, + 70, + 95, + 65, + 55, + 100, + 75, + 160, + 54, + 135, + 200, + 99, + 330, + 185, + 95, + 170, + 40, + 50, + 95, + 108, + 83, + 65, + 43, + 198, + 50, + 200, + 120, + 210, + 50, + 105, + 60, + 75, + 150, + 69, + 80, + 78, + 60, + 79.5, + 200, + 50, + 250, + 85, + 33, + 165, + 110, + 47, + 170, + 90, + 45, + 65, + 38, + 100, + 120, + 48, + 110, + 44, + 50, + 120, + 80, + 75, + 62, + 67, + 140, + 47, + 160, + 140, + 42, + 52, + 180, + 60, + 58, + 38, + 145, + 110, + 160, + 35, + 100, + 60, + 53, + 75, + 130, + 130, + 80, + 70, + 57, + 40, + 62, + 130, + 47.5, + 33, + 95, + 300, + 63, + 54, + 50, + 67, + 220, + 68, + 150.000009, + 85, + 56, + 75, + 70, + 120, + 220, + 185, + 55, + 140, + 66, + 64, + 45, + 45, + 57, + 42, + 53, + 42, + 500, + 85, + 40, + 40, + 65, + 80, + 500, + 68, + 250, + 140, + 145, + 120, + 220, + 53, + 68, + 92, + 62, + 80, + 32, + 120, + 165, + 155, + 100, + 150, + 130, + 40, + 200, + 170, + 100, + 130, + 75, + 230, + 85, + 75, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 200, + 180, + 270, + 105, + 45, + 65, + 80, + 190, + 48, + 72, + 155, + 20, + 300, + 180, + 65, + 250, + 299.999999, + 145, + 55, + 80, + 57, + 80, + 45, + 160, + 150, + 65, + 55, + 100, + 60, + 90, + 35, + 55, + 56, + 55, + 75, + 130, + 320, + 90, + 160, + 65, + 110, + 73, + 72.5, + 100, + 23, + 55, + 57, + 450, + 125, + 47, + 47.5, + 85, + 50, + 90, + 100, + 125, + 130, + 60, + 75, + 50, + 165, + 100, + 55, + 15, + 62, + 110, + 200, + 130, + 45, + 33, + 85, + 180, + 73, + 66, + 175, + 35, + 450, + 55, + 135, + 125, + 260, + 82, + 58, + 55, + 92, + 24, + 75, + 78, + 128, + 270, + 75, + 65, + 105, + 50, + 35, + 120, + 50, + 170, + 56, + 130, + 78, + 55, + 155, + 220, + 250, + 135, + 170, + 380, + 220, + 75, + 47.5, + 80, + 170, + 35, + 65, + 45, + 350, + 290, + 420, + 55, + 95, + 58, + 65, + 225, + 58, + 46, + 170, + 90, + 395, + 33, + 56, + 82, + 55, + 57, + 335, + 215, + 110, + 63, + 50, + 450, + 37, + 65, + 56, + 17.675, + 150, + 180, + 130, + 65, + 130, + 130, + 80, + 200, + 65, + 69, + 130, + 30, + 45, + 32, + 135, + 85, + 58, + 38, + 130, + 35, + 40, + 69, + 120, + 280, + 90, + 55, + 150, + 165, + 240, + 155, + 42, + 80, + 235, + 47, + 125, + 400, + 60, + 130, + 65, + 110, + 80, + 44, + 80, + 90, + 60, + 40, + 62, + 85, + 500, + 125, + 120, + 230, + 40, + 75, + 98, + 140, + 125, + 60, + 160, + 420, + 65, + 350, + 130, + 75, + 65, + 165, + 75, + 10, + 190, + 120, + 125, + 150, + 65, + 320, + 45, + 180, + 62, + 80, + 200, + 105, + 46, + 37, + 150, + 250, + 90, + 32.5, + 35, + 120, + 180, + 250, + 57, + 110, + 230, + 150, + 160, + 130, + 43, + 70, + 120, + 110, + 100, + 40, + 60, + 133, + 50, + 115, + 63, + 280, + 47, + 45, + 125, + 240, + 38, + 38, + 70, + 49, + 170, + 86, + 180, + 200, + 200, + 80, + 39, + 85, + 72, + 65, + 140, + 36, + 44.9, + 70, + 120, + 130, + 200, + 65, + 95, + 280, + 38, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 125, + 205, + 33, + 57, + 400, + 73, + 110, + 260, + 75, + 70, + 63, + 39, + 85, + 185, + 50, + 70, + 230, + 72, + 63, + 150, + 100, + 75, + 100, + 65, + 68, + 45, + 50, + 85, + 120, + 180, + 40, + 75, + 200, + 280, + 120, + 450, + 85, + 140, + 88, + 105, + 105, + 60, + 250, + 140, + 198, + 67, + 180, + 67, + 155, + 190, + 65, + 80, + 150, + 220, + 150, + 47.999999, + 36, + 400, + 85, + 70, + 70, + 300, + 80, + 280, + 85, + 65, + 225, + 60, + 68, + 80, + 52, + 100, + 75, + 230, + 53, + 60, + 40, + 65, + 45, + 170, + 55, + 290, + 65, + 45, + 135, + 80, + 150, + 105, + 37, + 61, + 54, + 50, + 17.675, + 450, + 260, + 67, + 82, + 48, + 180, + 35, + 500, + 57, + 48, + 40, + 95, + 70, + 100, + 65, + 145, + 85, + 46, + 56, + 115, + 55, + 380, + 90, + 440, + 70, + 63, + 55, + 100, + 150, + 55, + 125, + 32, + 90, + 95, + 115, + 180, + 63, + 170, + 110, + 120, + 175, + 56, + 48, + 115, + 295, + 175, + 500, + 180, + 48, + 41, + 70, + 370, + 45, + 110, + 85, + 235, + 145, + 190, + 100, + 450, + 60, + 59.5, + 120, + 58, + 52, + 98, + 43, + 300, + 36, + 230, + 28, + 65, + 30, + 100, + 45, + 60, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 40, + 32.75, + 120, + 68, + 75, + 70, + 200, + 150, + 100, + 120, + 110, + 75, + 68, + 33, + 78, + 52, + 200, + 75, + 350, + 85, + 70, + 220, + 75, + 180, + 55, + 90, + 35, + 95, + 65, + 160, + 185, + 210, + 100, + 75, + 55, + 185, + 55, + 120, + 50, + 47, + 62, + 70, + 58, + 90, + 210, + 240, + 85, + 120, + 185, + 80, + 65, + 75, + 124, + 36, + 188, + 95, + 260, + 90, + 35, + 40, + 220, + 60, + 65, + 140, + 160, + 55, + 160, + 69, + 130, + 36, + 110, + 46, + 170, + 33, + 100, + 110, + 82, + 450, + 68, + 250, + 265, + 170, + 130, + 85, + 130, + 75, + 200, + 80, + 290, + 300, + 125, + 70, + 55, + 72, + 95, + 63, + 95, + 135, + 45, + 140, + 58, + 90, + 55, + 160, + 100, + 90, + 185, + 28, + 95, + 300, + 150, + 97, + 52, + 350, + 265, + 115, + 45, + 58, + 62, + 180, + 45, + 67, + 500, + 60, + 40, + 400, + 45, + 300, + 85, + 350, + 48, + 55, + 38, + 100, + 70, + 60, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 85, + 80, + 50, + 65, + 70, + 120, + 200, + 43, + 55.5, + 120, + 50, + 200, + 48, + 145, + 125, + 75, + 370, + 110, + 65, + 49, + 135, + 235, + 56, + 250, + 220, + 110, + 92, + 53, + 100, + 45, + 37, + 400, + 60, + 100, + 320, + 140, + 210, + 35, + 95, + 158, + 130, + 40, + 140, + 90, + 120, + 55, + 90, + 56, + 470, + 140, + 38, + 300, + 195, + 130, + 185, + 500, + 65, + 160, + 140, + 40, + 40, + 80, + 42, + 195, + 70, + 150, + 40, + 75, + 200, + 50, + 60, + 350, + 98, + 160, + 26, + 190, + 140, + 110, + 450, + 450, + 150, + 45, + 400, + 185, + 35, + 60, + 71, + 35, + 175, + 75, + 235, + 38, + 350, + 50, + 69, + 100, + 65, + 87, + 100, + 150, + 45, + 78, + 57, + 130, + 68, + 250, + 120, + 55, + 190, + 275, + 34, + 55, + 480, + 38, + 80, + 250, + 90, + 170, + 165, + 63, + 30, + 60, + 185, + 45, + 55, + 75, + 160, + 135, + 45, + 65, + 227, + 165, + 62, + 130, + 35, + 65, + 65, + 130, + 70, + 170, + 160, + 70, + 190, + 51, + 130, + 78, + 80, + 35, + 55, + 50, + 280, + 65, + 105, + 75, + 45, + 80, + 45, + 72, + 125, + 75, + 88, + 55, + 85, + 170, + 54, + 77, + 170, + 120, + 52, + 69, + 37, + 65, + 175, + 50, + 87, + 48, + 10, + 160, + 60, + 70, + 35, + 36, + 90, + 300, + 47, + 80, + 350, + 120, + 165, + 38, + 230, + 42, + 45, + 85, + 100, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 65, + 160, + 75, + 53, + 75, + 140, + 75, + 200, + 88, + 110, + 65, + 110, + 57, + 160, + 77, + 95, + 63, + 77, + 60, + 48, + 480, + 73, + 33, + 58, + 55, + 47, + 380, + 55, + 60, + 420, + 58, + 50, + 75, + 130, + 80, + 70, + 230, + 130, + 51, + 50, + 67, + 320, + 38, + 90, + 175, + 68, + 68, + 95, + 155, + 80, + 51, + 200, + 165, + 90, + 75, + 60, + 150, + 145, + 45, + 20, + 53, + 245, + 75, + 140, + 130, + 165, + 230, + 25, + 250, + 110, + 35, + 40, + 75, + 50, + 40, + 78, + 85, + 72, + 51, + 100, + 65, + 73, + 80, + 55, + 420, + 125, + 54, + 49, + 50, + 80, + 320, + 235, + 165, + 60, + 65, + 59.5, + 220, + 53, + 250, + 56, + 75, + 90, + 150, + 45, + 32, + 90, + 58, + 280, + 120, + 33, + 400, + 65, + 175, + 69, + 70, + 45, + 125, + 71, + 150, + 210, + 120, + 120, + 100, + 70, + 97, + 75, + 92, + 37, + 120, + 72, + 35, + 70, + 112, + 65, + 96, + 37, + 230, + 60, + 70, + 270, + 40, + 62, + 80, + 170, + 130, + 60.5, + 45, + 26.4375, + 105, + 100, + 280, + 98, + 275, + 115, + 38, + 90, + 45, + 100, + 52, + 35, + 59, + 70, + 130, + 155, + 145, + 75, + 75, + 59, + 73, + 125, + 150, + 67, + 100, + 55, + 40, + 180, + 390, + 55, + 35, + 56, + 60, + 75, + 52, + 175, + 72, + 57, + 55, + 290, + 55, + 67, + 180, + 65, + 98, + 120, + 340, + 80, + 55, + 150, + 70, + 110, + 80, + 65, + 70, + 110, + 100, + 140, + 380, + 85, + 108, + 49, + 88, + 140, + 59, + 140, + 125, + 95, + 57, + 135, + 60, + 30, + 110, + 400, + 76, + 155, + 70, + 85, + 51.5, + 36, + 85, + 100, + 50, + 52, + 100, + 205, + 160, + 54, + 300, + 180, + 110, + 60, + 320, + 115, + 90, + 53, + 170, + 35, + 280, + 80, + 190, + 45, + 43, + 140, + 45, + 240, + 58, + 180, + 205, + 180, + 95, + 190, + 58, + 48, + 65, + 95, + 45, + 150, + 51, + 38, + 415, + 145, + 80, + 57, + 55, + 300, + 55, + 75, + 180, + 240, + 95, + 33, + 135, + 75, + 450, + 125, + 120, + 45, + 80, + 62, + 250, + 45, + 45, + 35, + 200, + 53, + 110, + 92, + 59, + 126, + 35, + 37, + 60, + 75, + 68, + 60, + 58, + 78, + 240, + 140, + 45, + 57, + 110, + 72, + 85, + 57, + 75, + 140, + 95, + 53, + 72, + 220, + 35, + 120, + 38, + 55, + 220, + 100, + 42, + 50, + 160, + 90, + 37, + 57, + 350, + 350, + 120, + 180, + 35, + 95, + 115, + 300, + 400, + 420, + 400, + 90, + 220, + 33, + 90, + 57, + 200, + 500, + 160, + 130, + 78, + 220, + 200, + 35, + 26, + 85, + 54, + 70, + 500, + 68, + 58, + 75, + 250, + 200, + 70, + 50, + 43, + 135, + 98, + 75, + 90, + 230, + 320, + 57, + 320, + 160, + 53, + 400, + 200, + 45, + 130, + 37, + 30, + 48, + 130, + 155, + 59, + 95, + 75, + 135, + 75, + 44, + 39, + 73, + 35, + 180, + 50, + 35, + 260, + 69.9, + 85, + 170, + 80, + 120, + 75, + 75, + 39.6, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 65, + 53, + 51, + 97, + 125, + 120, + 60, + 250, + 88, + 45, + 45, + 92, + 75, + 57, + 68, + 73, + 110, + 220, + 65, + 350, + 87, + 67, + 65, + 95, + 110, + 280, + 85, + 85, + 110, + 46, + 85, + 380, + 150, + 56, + 56, + 70, + 29, + 79, + 60, + 155, + 85, + 50, + 105, + 56, + 75, + 60, + 105, + 55, + 130, + 100, + 450, + 45, + 320, + 55, + 55, + 38, + 125, + 115, + 75, + 85, + 45, + 155, + 85, + 75, + 230, + 37, + 45, + 120, + 75, + 65, + 65, + 110, + 95, + 55, + 65, + 80, + 35, + 190, + 95, + 260, + 90, + 50, + 52, + 77, + 150, + 88, + 75, + 90, + 85, + 170, + 55, + 120, + 41, + 55, + 63, + 68, + 45, + 27, + 100, + 320, + 57, + 48, + 250, + 39, + 85, + 55, + 125, + 120, + 100, + 97, + 75, + 50, + 38, + 320, + 100, + 65, + 55, + 360, + 55, + 63, + 120, + 43, + 70, + 60, + 60, + 65, + 175, + 150, + 130, + 70, + 38, + 90, + 270, + 440, + 100, + 180, + 220, + 38, + 55, + 53, + 47.5, + 95, + 70, + 48, + 60, + 120, + 40, + 110, + 75, + 95, + 55, + 80, + 35, + 210, + 95, + 260, + 65, + 72, + 175, + 140, + 70, + 50, + 65, + 46, + 90, + 130, + 50, + 52, + 78, + 67, + 155, + 210, + 225, + 185, + 80, + 55, + 180, + 280, + 38, + 260, + 40, + 60, + 85, + 65, + 45, + 58, + 63, + 78, + 100, + 58, + 110, + 360, + 10, + 70, + 65, + 65.000009, + 57, + 60, + 45, + 83, + 65, + 165, + 120, + 45, + 58, + 55, + 60, + 35, + 77, + 46, + 195, + 74, + 100, + 130, + 165, + 60, + 47, + 180, + 170, + 65, + 70, + 23.8, + 100, + 59, + 60, + 70, + 150, + 175, + 40, + 140, + 300, + 180, + 75, + 75, + 230, + 70, + 65, + 65, + 48.5, + 75, + 110, + 75, + 60, + 45, + 230, + 64, + 75, + 78, + 45, + 380, + 155, + 380, + 120, + 68, + 67, + 80, + 110, + 170, + 79.5, + 450, + 60, + 270, + 330, + 90, + 65, + 95, + 57, + 85, + 55, + 160, + 41, + 105, + 80, + 400, + 450, + 75, + 69, + 76, + 60, + 155, + 100, + 85, + 80, + 120, + 185, + 185, + 85, + 130, + 69, + 40, + 110, + 48, + 52, + 98, + 39, + 60, + 49, + 110, + 125, + 20, + 70, + 170, + 65, + 65, + 85, + 280, + 90, + 33, + 95, + 395, + 70, + 65, + 60, + 70, + 65, + 65, + 75, + 57, + 45, + 310, + 33, + 40, + 110, + 175, + 150, + 300, + 70, + 42, + 115, + 170, + 35, + 370, + 110, + 40, + 80, + 59, + 150, + 120, + 400, + 47, + 250, + 42, + 140, + 300, + 195, + 110, + 130, + 50, + 85, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 55, + 150, + 130, + 65, + 150, + 64, + 220, + 75, + 60, + 110, + 300, + 210, + 80, + 120, + 30, + 350, + 48, + 155, + 95, + 47, + 200, + 65, + 370, + 68, + 110, + 95, + 75, + 48, + 400, + 75, + 50, + 40, + 165, + 47, + 70, + 170, + 70, + 75, + 55, + 120, + 110, + 50, + 48, + 63, + 395, + 330, + 55, + 65, + 190, + 100, + 165, + 75, + 47.5, + 60, + 36, + 190, + 150, + 75, + 380, + 55, + 195, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 78, + 59, + 33, + 175, + 90, + 75, + 58, + 125, + 125, + 120, + 115, + 37, + 85, + 65, + 100, + 170, + 128, + 56, + 145, + 300.000009, + 48, + 55, + 50, + 55, + 140, + 70, + 85, + 75, + 95, + 90, + 125, + 38, + 40, + 90, + 56, + 360, + 85, + 45, + 80, + 89, + 137, + 45, + 59, + 48, + 100, + 160, + 79, + 225, + 75, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 43, + 400, + 135, + 50, + 50, + 62, + 50, + 69, + 39, + 55, + 55, + 65, + 79, + 350, + 65, + 80, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 46, + 45, + 90, + 125, + 69, + 60, + 45, + 65, + 125, + 400, + 90, + 85, + 285, + 85, + 180, + 400, + 280, + 50, + 68, + 170, + 37, + 78, + 35, + 180, + 50, + 52, + 95, + 95, + 81, + 140, + 350, + 115, + 55, + 90, + 200, + 33, + 180, + 135, + 52.5, + 105, + 140, + 75, + 300, + 115, + 130, + 75, + 300, + 59, + 98, + 37, + 170, + 250, + 56, + 49, + 47, + 130, + 88, + 170, + 57, + 150, + 200, + 195, + 138, + 160, + 45, + 48, + 85, + 57, + 65, + 210, + 55, + 90, + 170, + 38, + 366, + 40, + 110, + 130, + 80, + 160, + 70, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 38, + 500, + 92, + 85, + 67, + 135, + 135, + 75, + 65, + 42, + 30, + 120, + 55, + 76, + 135, + 240, + 455, + 38, + 300, + 500, + 90, + 98, + 70, + 295, + 33, + 75, + 65, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 150, + 120, + 75, + 49, + 30, + 60, + 50, + 65, + 79.5, + 85, + 450, + 65, + 82, + 55, + 190, + 150, + 270, + 62, + 110, + 85, + 90, + 180, + 180, + 150, + 75, + 48, + 120, + 130, + 170, + 69, + 170, + 270, + 75, + 35, + 80, + 150, + 45, + 51, + 420, + 65, + 60, + 125, + 70, + 90, + 160, + 70, + 75, + 105, + 53, + 220, + 90, + 46, + 63, + 130, + 68, + 49.247, + 88, + 99.5, + 150, + 95, + 85, + 100, + 75, + 55, + 130, + 51, + 59, + 105, + 200, + 70, + 95, + 120, + 56, + 70, + 75, + 110, + 95, + 145, + 60, + 50, + 280, + 70, + 85, + 60, + 120, + 85, + 65, + 41, + 250, + 45, + 44, + 135, + 98, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 450, + 63, + 120, + 200, + 72, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 60, + 90, + 155, + 45, + 80, + 79, + 125, + 130, + 300, + 173, + 85, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 78, + 41, + 110, + 73, + 500, + 135, + 155, + 55, + 450, + 165, + 65, + 150, + 57, + 62, + 75, + 95, + 65, + 80, + 55, + 150, + 50, + 60, + 37, + 195, + 120, + 62, + 55, + 75, + 76, + 280, + 50, + 43, + 95, + 46, + 70, + 150, + 165, + 28, + 48.5, + 160, + 48, + 250, + 53, + 105, + 55, + 130, + 50, + 42, + 100, + 35, + 40, + 230, + 135, + 45, + 180, + 68, + 230, + 130, + 90, + 280, + 85, + 65, + 135, + 125, + 130, + 180, + 57, + 80, + 300, + 350, + 250, + 50, + 105, + 95, + 45, + 110, + 300, + 88, + 115, + 120, + 38, + 86, + 55, + 42, + 110, + 80, + 75, + 53, + 45, + 110, + 80, + 95, + 120, + 54, + 260, + 300, + 35, + 36, + 110, + 240, + 53, + 350, + 135, + 110, + 75, + 165, + 160, + 57.99, + 250, + 300, + 180, + 50, + 55, + 70, + 190, + 450, + 39, + 50, + 85, + 65, + 75, + 85, + 80, + 99, + 250, + 57, + 80, + 160, + 37, + 95, + 60, + 125, + 41, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 100, + 48, + 48, + 125, + 260, + 100, + 65, + 128, + 300, + 90, + 210, + 250, + 330, + 130, + 78, + 125, + 160, + 170, + 52, + 42, + 85, + 120, + 37, + 55, + 90, + 92, + 210, + 150, + 128, + 105, + 70, + 56, + 85, + 35, + 390, + 80, + 110, + 160, + 37, + 80, + 180, + 79, + 180, + 60, + 80, + 130, + 175, + 110, + 150, + 240, + 40, + 90, + 70, + 115, + 80, + 52, + 70, + 48, + 250, + 80, + 120, + 95, + 78, + 350, + 90, + 140, + 70, + 70, + 88, + 70, + 120, + 53, + 280, + 33.5, + 63, + 160, + 85, + 69, + 42, + 31, + 90, + 110, + 70, + 85, + 65, + 33, + 370, + 110, + 52, + 110, + 190, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 175, + 55, + 90, + 70, + 65, + 220, + 125, + 135, + 55, + 150, + 95, + 55, + 69, + 55, + 450, + 39, + 85, + 140, + 49, + 95, + 410, + 110, + 230, + 350, + 70, + 125, + 86, + 57, + 100, + 38, + 115, + 90, + 160, + 64, + 57, + 165, + 43, + 230, + 110, + 300, + 70, + 65, + 75, + 45, + 45, + 45, + 90, + 40, + 55, + 69, + 45, + 48, + 70, + 73, + 36, + 55, + 70, + 54, + 280, + 500, + 150, + 135, + 70, + 350, + 45, + 245, + 65, + 90, + 168, + 110, + 45, + 45, + 65, + 52, + 220, + 70, + 125, + 120, + 125, + 32, + 130, + 29, + 180, + 60, + 40, + 250, + 73, + 125, + 90, + 80, + 68, + 110, + 130, + 75, + 230, + 170, + 45, + 80, + 60, + 58, + 63, + 72, + 50, + 330, + 57.1725, + 67, + 55, + 380, + 85, + 38, + 50, + 48, + 90, + 245, + 195, + 90, + 270, + 360, + 160, + 120, + 130, + 100, + 39, + 47, + 49, + 420, + 50, + 500, + 185, + 310, + 40, + 110, + 175, + 65, + 185, + 85, + 60, + 80, + 380, + 200, + 150, + 72, + 50, + 105, + 150, + 155, + 105, + 270, + 90, + 240, + 49.5, + 120, + 95, + 50, + 40, + 68, + 95, + 80, + 57, + 120, + 58, + 140, + 120, + 35, + 90, + 64, + 165, + 55, + 61, + 80, + 170, + 210, + 68, + 150, + 49, + 75, + 140, + 240, + 55, + 170, + 400, + 125, + 50, + 80, + 110, + 75, + 40, + 67, + 75, + 92, + 53, + 115, + 165, + 400, + 105, + 55, + 80, + 250, + 240, + 27, + 90, + 100, + 52, + 76, + 35, + 155, + 76, + 49, + 250, + 69, + 65, + 53, + 120, + 85, + 85, + 195, + 107, + 380, + 80, + 120, + 300, + 200, + 380, + 130, + 128, + 160, + 87, + 36.5, + 140, + 120, + 160, + 76, + 98, + 35, + 58, + 45, + 85, + 52, + 60, + 195, + 77, + 90, + 168, + 98, + 160, + 58, + 125, + 130, + 50, + 260, + 69, + 35, + 79, + 68, + 40, + 62, + 35, + 110, + 50, + 135, + 90, + 49, + 195, + 57, + 85, + 400, + 63, + 135, + 60, + 60, + 45, + 155, + 95, + 160, + 60, + 75, + 90, + 85, + 400, + 85, + 135, + 165, + 68, + 150, + 68, + 36, + 65, + 65, + 105, + 45, + 145, + 70, + 250, + 230, + 180, + 85, + 140, + 445, + 40, + 82, + 58, + 90, + 33, + 98.5, + 390, + 75, + 57, + 190, + 40, + 150, + 75, + 45, + 180, + 170, + 54, + 100, + 50, + 51, + 140, + 58, + 200, + 107, + 250, + 55, + 78, + 120, + 44, + 55, + 38, + 98, + 36, + 38, + 40, + 67, + 50, + 85, + 120, + 40, + 170, + 185, + 72, + 125, + 54.5, + 200, + 30, + 290, + 47, + 500, + 175, + 34, + 180, + 75, + 100, + 38, + 115, + 68, + 75, + 55, + 98, + 60, + 55, + 149.5, + 170, + 105, + 160, + 280, + 275, + 60, + 130, + 105, + 83, + 58, + 38, + 48, + 70, + 65, + 65, + 100, + 160, + 190, + 53, + 245, + 140, + 75, + 155, + 32, + 120, + 148, + 150, + 390, + 68, + 500, + 165, + 40, + 68, + 55, + 175, + 120, + 89, + 285, + 105, + 50, + 100, + 190, + 280, + 235, + 150, + 65, + 38, + 120, + 55, + 45, + 260, + 80, + 130, + 150, + 35, + 175, + 64, + 50, + 73, + 138, + 150, + 89, + 70, + 75, + 110, + 80, + 118, + 330, + 65, + 220, + 150, + 340, + 80, + 80, + 60, + 110, + 180, + 140, + 230, + 55, + 222, + 95, + 47, + 85, + 75, + 100, + 85, + 65, + 280, + 265, + 170, + 38, + 51, + 33, + 160, + 370, + 75, + 33, + 95, + 38, + 120, + 48, + 145, + 40, + 200, + 80, + 11.5, + 125, + 75, + 135, + 500, + 90, + 63, + 40, + 160, + 67, + 79, + 145, + 160, + 60, + 75, + 75, + 183, + 130, + 75, + 50, + 59, + 65, + 40, + 37, + 55, + 170, + 31, + 33, + 61, + 85, + 55, + 88, + 70, + 47, + 115, + 145, + 145, + 50, + 185, + 240, + 55, + 56, + 65, + 65, + 160, + 88, + 120, + 80, + 155, + 50, + 200, + 170, + 50, + 55, + 58, + 66, + 62, + 270, + 45, + 72, + 60, + 55, + 175, + 165, + 130, + 120, + 380, + 330, + 43, + 140, + 70, + 35, + 155, + 250, + 40, + 60, + 380, + 100, + 120, + 65, + 68, + 130, + 500, + 76, + 68, + 60, + 160, + 115, + 350, + 120, + 160, + 125, + 77.5, + 125, + 70, + 160, + 150, + 50, + 99, + 70, + 45, + 98, + 77, + 59, + 70, + 95, + 60, + 55, + 125, + 95, + 47, + 170, + 42, + 35, + 55, + 90, + 190, + 48, + 60, + 450, + 450, + 225, + 50, + 60, + 90, + 68, + 185, + 77, + 160, + 270, + 170, + 126, + 37, + 49, + 120.000009, + 130, + 480, + 145, + 70, + 100, + 65, + 170, + 400, + 160, + 65, + 340, + 33, + 45, + 105, + 90, + 130, + 190, + 42, + 130, + 140, + 180, + 215, + 76, + 250, + 75, + 75, + 60, + 140, + 250, + 480, + 150, + 35, + 165, + 150, + 70, + 45, + 65, + 135, + 130, + 85, + 95, + 180, + 40, + 60, + 48, + 62, + 190, + 260, + 88, + 200, + 180, + 120, + 75, + 75, + 90, + 35, + 400, + 59.5, + 99, + 150, + 400, + 135, + 295, + 170, + 110, + 410, + 115, + 100, + 78, + 135, + 105, + 190, + 120, + 120, + 280, + 130, + 48, + 200, + 280, + 80, + 59, + 33, + 80, + 230, + 115, + 135, + 50, + 135, + 22, + 60, + 85, + 230, + 47, + 265, + 135, + 72, + 82, + 57.5, + 56, + 55, + 37, + 37, + 130, + 140, + 220, + 65, + 86, + 100, + 40, + 80, + 33, + 100, + 65, + 85, + 78, + 140, + 45, + 95, + 75, + 55, + 190, + 39, + 370, + 95, + 55, + 53.5, + 370, + 330, + 97, + 140, + 60, + 50, + 120, + 68, + 105, + 43, + 62.99, + 150, + 100, + 75, + 78, + 52, + 59.5, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 45, + 120, + 60, + 400, + 140, + 150, + 80, + 120, + 49, + 70, + 38, + 73, + 85, + 35, + 65, + 205, + 105, + 48, + 37, + 125, + 110, + 52, + 50, + 150, + 48, + 40, + 50, + 120, + 77, + 55, + 126, + 230, + 40, + 120, + 165, + 160, + 38, + 190, + 55, + 130, + 190, + 64, + 95, + 70, + 130, + 75, + 92, + 11, + 33, + 98, + 289, + 80, + 35, + 70, + 100, + 35, + 120, + 85, + 200, + 58, + 105, + 58, + 57, + 90, + 35, + 67, + 83, + 55, + 110, + 125, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 125, + 95, + 150, + 140, + 125, + 420, + 80, + 280, + 58, + 48, + 55, + 125, + 50, + 245, + 40, + 53, + 75, + 150, + 61, + 300, + 80, + 85, + 100, + 115, + 77, + 57, + 85, + 80, + 220, + 52, + 55, + 50, + 60, + 90, + 58, + 50, + 185, + 75, + 265, + 40, + 75, + 115, + 105, + 60, + 180, + 165, + 60, + 38, + 63, + 60, + 95, + 67, + 100, + 170, + 230, + 44, + 178, + 350, + 65, + 96, + 17.5, + 70, + 380, + 90, + 50, + 180, + 80, + 79.5, + 270, + 12, + 370, + 72, + 140, + 75, + 115, + 90, + 130, + 80, + 200, + 45, + 38, + 200, + 110, + 75, + 36, + 59, + 98, + 52, + 210, + 55, + 270, + 58, + 175, + 110, + 290, + 130, + 130, + 65, + 280, + 130, + 300, + 58, + 225, + 70, + 135, + 165, + 29, + 55, + 95, + 45, + 55, + 115, + 90, + 80, + 90, + 280, + 160, + 90, + 450, + 57, + 38, + 70, + 18.975, + 120, + 45, + 90, + 240, + 80, + 95, + 280, + 55, + 150, + 80, + 10, + 80, + 350, + 85, + 37, + 50, + 80, + 285, + 115, + 65, + 135, + 160, + 35, + 130, + 55, + 67, + 78, + 90, + 65, + 31, + 90, + 100, + 125, + 80, + 58, + 86, + 175, + 45, + 58, + 105, + 120, + 45, + 320, + 135, + 270, + 70, + 38, + 48, + 85, + 200, + 125, + 185, + 280, + 95, + 25, + 115, + 85, + 115, + 185, + 120, + 110, + 200, + 42, + 170, + 260, + 250, + 58, + 280, + 175, + 500, + 65, + 125, + 45, + 43, + 60, + 80, + 198, + 70, + 40, + 16.675, + 70, + 300, + 170, + 250, + 190, + 140.000009, + 120, + 46, + 92, + 300, + 76, + 230, + 45, + 46, + 50, + 170, + 50, + 47, + 55, + 130, + 380, + 85, + 190, + 380, + 50, + 52, + 72, + 85, + 66, + 130, + 65, + 82, + 70, + 58, + 52, + 46, + 400, + 90, + 87, + 150, + 47, + 270, + 39, + 80, + 75, + 70, + 275, + 195, + 45, + 70, + 150, + 130, + 75, + 105, + 35, + 150, + 37, + 140, + 97, + 130, + 60, + 80, + 160, + 180, + 59, + 100, + 250, + 160, + 47, + 165, + 55, + 160, + 47, + 45, + 65, + 55, + 65, + 110, + 155, + 81, + 100, + 165, + 44, + 90, + 300, + 77.5, + 53, + 225, + 48, + 110, + 80, + 95, + 70, + 160, + 140, + 50, + 68, + 50, + 69, + 50, + 410, + 150, + 68, + 110, + 43, + 47, + 80, + 79, + 125, + 160, + 125, + 67, + 35, + 60, + 140, + 420, + 78, + 170, + 33, + 200, + 55, + 165, + 195, + 85, + 170, + 74, + 420, + 280, + 45, + 75, + 230, + 85, + 68, + 55, + 190, + 380, + 75, + 65, + 125, + 47, + 47, + 45, + 55, + 52, + 55, + 170, + 135, + 195, + 230, + 250, + 270, + 78, + 43, + 65, + 55, + 95, + 120, + 95, + 170, + 76, + 80, + 48, + 55, + 197, + 130, + 58, + 198, + 180, + 68, + 100, + 35, + 95, + 140, + 49, + 90, + 57, + 250, + 125, + 350, + 112, + 75, + 80, + 75, + 40, + 170, + 100, + 145, + 130, + 88, + 42, + 300, + 82, + 45, + 55, + 58, + 65, + 38, + 40, + 170, + 120, + 150, + 40, + 90, + 100, + 65, + 75, + 59, + 100, + 120, + 45, + 50, + 385, + 165, + 45, + 110, + 93, + 50, + 170, + 78, + 450, + 78, + 120, + 65, + 200, + 70, + 47, + 65, + 76, + 75, + 90, + 320, + 63, + 48, + 400, + 35, + 110, + 48, + 100, + 55, + 120, + 165, + 110, + 175, + 42, + 75, + 77, + 75, + 198, + 60, + 120, + 35, + 100, + 45, + 100, + 63, + 50, + 58, + 87, + 80, + 65, + 63, + 400, + 115, + 72, + 34, + 170, + 30, + 70, + 250, + 350, + 36.5, + 52, + 275, + 36, + 130, + 30, + 155, + 60, + 150, + 270, + 350, + 100, + 51, + 45, + 49, + 60, + 65, + 130, + 165, + 90, + 75, + 200, + 50, + 240, + 135, + 150, + 44, + 60, + 95, + 150, + 95, + 55, + 70, + 112, + 120, + 180, + 55, + 95, + 130, + 75, + 45, + 300, + 52.8, + 65, + 44, + 120, + 120, + 160, + 235, + 43, + 120, + 120, + 78, + 65, + 37, + 220, + 110, + 150, + 80, + 135, + 73, + 160, + 200, + 68, + 35, + 175, + 170, + 150, + 80, + 90, + 60, + 110, + 60, + 190, + 51, + 75, + 220, + 43, + 85, + 65, + 63, + 230, + 67, + 33, + 75, + 340, + 63, + 180, + 155, + 50, + 36, + 95, + 75, + 60, + 420, + 150, + 160, + 70, + 85, + 95, + 35, + 160, + 72, + 200, + 85, + 60, + 38, + 120, + 198, + 120, + 90, + 46, + 285, + 65, + 49, + 50, + 130, + 96, + 68, + 62, + 350, + 50, + 135, + 90, + 120, + 80, + 115, + 120, + 55, + 135, + 180, + 150, + 65, + 150, + 48, + 107, + 85, + 450, + 150, + 130, + 83, + 55, + 145, + 108, + 70, + 230, + 220, + 60, + 70, + 75, + 60, + 70, + 130, + 120, + 75, + 60, + 130, + 55, + 75, + 250, + 76, + 65, + 40, + 70, + 115, + 55, + 95, + 95, + 38, + 70, + 45, + 150, + 80, + 60, + 85, + 37, + 220, + 120, + 85, + 130, + 47, + 70, + 26, + 59, + 155, + 75, + 75, + 140, + 31, + 350, + 40, + 52, + 84, + 76, + 235, + 130, + 190, + 45, + 57, + 85, + 45, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 90, + 98, + 31, + 125, + 70, + 390, + 185, + 60, + 82, + 75, + 250, + 85, + 75, + 160, + 160, + 350, + 20, + 70, + 125, + 120, + 58, + 140, + 62, + 110, + 40, + 35, + 95, + 130, + 130, + 55, + 67, + 85, + 34, + 78, + 49, + 75, + 63, + 38, + 50, + 45, + 140, + 45, + 130, + 110, + 58, + 275, + 40, + 85, + 33, + 200, + 450, + 200, + 47, + 260, + 100, + 33, + 170, + 33, + 260, + 105, + 56, + 33, + 200, + 350, + 62, + 44, + 170, + 150, + 140, + 250, + 105, + 150, + 165, + 40, + 87, + 60, + 150, + 69, + 55, + 53, + 60, + 68, + 46, + 80, + 120, + 180, + 65, + 45, + 80, + 160, + 98, + 70, + 48, + 78, + 50, + 280, + 48, + 75, + 180, + 180, + 230, + 75, + 330, + 55, + 200, + 85, + 60, + 85, + 60, + 195, + 55, + 120, + 140, + 40, + 170, + 56, + 185, + 110, + 120, + 70, + 280, + 65, + 70, + 450, + 120, + 14.8, + 95, + 180, + 60, + 70, + 85, + 49.5, + 47, + 75, + 190, + 105, + 270, + 160, + 165, + 220, + 75, + 50, + 80, + 55, + 93, + 95, + 50, + 135, + 52, + 78, + 45, + 50, + 105, + 140, + 45, + 110, + 190, + 64, + 68, + 93, + 78, + 270, + 140, + 41, + 250, + 130, + 40, + 160, + 160, + 75, + 69, + 100, + 58, + 200, + 100, + 59, + 125, + 88, + 80, + 130, + 58, + 82.5, + 75, + 50, + 43, + 55, + 75, + 115, + 35, + 68, + 75, + 190, + 78, + 69, + 80, + 69, + 500, + 90, + 295, + 83, + 100, + 350, + 100, + 67, + 37, + 60, + 140, + 48, + 50, + 70, + 47, + 200, + 70, + 40, + 85, + 70, + 75, + 400, + 45, + 400, + 64, + 60, + 95, + 65, + 80, + 165, + 30, + 45, + 60, + 80, + 63, + 60, + 85, + 65, + 135, + 70, + 105, + 300, + 250, + 67, + 95, + 55, + 32, + 120, + 50, + 42, + 120, + 102, + 50, + 62, + 480, + 38, + 90, + 48, + 36, + 125, + 190, + 65, + 65, + 150, + 90, + 80, + 75, + 58, + 57, + 350, + 70, + 85, + 120, + 87, + 85, + 145, + 35, + 115, + 55, + 27, + 72, + 88, + 200, + 120, + 400, + 70, + 46, + 270, + 120, + 80, + 39, + 115, + 300, + 190, + 400, + 65, + 50, + 38, + 100, + 55, + 75, + 66, + 140, + 37, + 45, + 185, + 41, + 140, + 116, + 350, + 46, + 65, + 50, + 160, + 62, + 39, + 300, + 50, + 69, + 80, + 350, + 75, + 450, + 80, + 100, + 340, + 45, + 52, + 175, + 45, + 70, + 82, + 70, + 32, + 47, + 59, + 125, + 49, + 250, + 250, + 200, + 125, + 78, + 130, + 50, + 70, + 190, + 180, + 300, + 77.5, + 55, + 200, + 95, + 95, + 60, + 170, + 500, + 49, + 32, + 150, + 56, + 120, + 42, + 120, + 100, + 40, + 85, + 40, + 60, + 70, + 120, + 75, + 80, + 70, + 105, + 50, + 40, + 56, + 98, + 60, + 40, + 20, + 225, + 70, + 65, + 368, + 160, + 63, + 58, + 85, + 170, + 170, + 69, + 380, + 115, + 100, + 130, + 38, + 95, + 500, + 100, + 37, + 220, + 85, + 125, + 105, + 55, + 39.8, + 500, + 140, + 160, + 135, + 80, + 70, + 115, + 60, + 45, + 120, + 80, + 40, + 210, + 110, + 36, + 82, + 50, + 230, + 37, + 25, + 145, + 120, + 65, + 105, + 79.5, + 190, + 75, + 180, + 100, + 58, + 400, + 90, + 110, + 130, + 90, + 210, + 39, + 62, + 235, + 70, + 40, + 180, + 190, + 150, + 37.5, + 39, + 55, + 70, + 155, + 41, + 80, + 165, + 65, + 280, + 47, + 145, + 180, + 108, + 230, + 95, + 110, + 67, + 45, + 57, + 100, + 24, + 36, + 47, + 40, + 75, + 180, + 85, + 65, + 120, + 88, + 110, + 45, + 67.5, + 65, + 180, + 310, + 190, + 80, + 100, + 50, + 220, + 270, + 270, + 88, + 290, + 250, + 370, + 120, + 280, + 85, + 80.000009, + 36, + 350, + 59.5, + 105, + 105, + 256, + 70, + 48.5, + 60, + 135, + 220, + 115, + 160, + 70, + 110, + 280, + 50, + 260, + 200, + 330, + 105, + 41.8, + 140, + 140, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 75, + 120, + 88, + 50, + 74, + 150, + 50, + 42, + 100, + 105, + 60, + 220, + 60, + 47, + 140, + 80, + 65, + 63, + 100, + 300, + 205, + 76, + 320, + 70, + 170, + 35, + 100, + 180, + 50, + 50, + 65, + 130, + 85, + 170, + 90, + 82, + 56, + 95, + 100, + 55, + 45, + 83, + 53, + 70, + 130, + 200, + 53, + 100, + 150, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 260, + 38, + 370, + 140, + 60, + 180, + 290, + 150, + 200, + 64, + 79.5, + 60, + 78, + 100, + 70, + 115, + 63, + 45, + 135, + 110, + 40, + 95, + 57, + 95, + 140, + 38, + 47, + 50, + 200, + 90, + 110, + 90, + 185, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 70, + 57, + 190, + 69, + 100, + 105, + 52, + 200, + 90, + 38, + 130, + 75, + 40, + 165, + 90, + 82, + 50, + 38, + 33, + 85, + 230, + 350, + 55, + 160, + 45, + 285, + 140, + 105, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 120, + 50, + 42, + 55, + 110, + 450, + 100, + 76, + 149, + 200, + 80, + 100, + 125, + 75, + 110, + 87, + 450, + 170, + 75, + 80, + 48, + 10, + 40, + 125, + 160, + 105, + 450, + 290, + 165, + 120, + 56, + 27, + 35, + 90, + 175, + 95, + 120, + 110, + 37, + 38, + 65, + 38, + 55, + 60, + 69, + 42, + 78, + 120, + 60, + 110, + 115, + 95, + 60, + 130, + 175, + 400, + 135, + 105, + 59, + 33, + 88, + 50, + 49, + 75, + 150, + 125, + 110, + 90, + 80, + 62, + 88, + 90, + 53, + 99, + 50, + 150, + 66.329, + 135, + 56, + 210, + 115, + 150, + 195, + 300, + 67, + 32, + 170, + 390, + 100, + 60, + 150, + 180, + 68, + 220, + 135, + 120, + 190, + 120, + 130, + 50, + 38, + 110, + 115, + 55, + 60, + 180, + 75, + 70, + 75, + 75, + 65, + 70, + 65, + 89, + 95, + 88, + 36, + 52, + 250, + 20, + 39.5, + 135, + 190, + 200, + 55, + 47, + 36, + 46.2, + 95, + 45, + 130, + 165, + 70, + 70, + 58, + 67, + 35, + 78, + 210, + 138, + 29, + 55, + 95, + 36, + 160, + 98, + 130, + 62, + 135, + 180, + 60, + 110, + 70, + 50, + 230, + 45, + 290, + 45, + 70, + 35, + 470, + 27, + 85, + 100, + 280, + 200, + 67, + 80, + 45, + 39, + 79.5, + 75, + 100, + 75, + 20, + 200, + 65, + 250, + 34, + 41, + 155, + 185, + 96, + 205, + 65, + 230, + 145, + 35, + 260, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 260, + 45, + 209, + 130, + 78, + 180, + 175, + 52, + 55, + 85, + 45, + 205, + 480, + 160, + 69, + 140, + 43, + 38, + 85, + 285, + 120, + 150, + 72, + 45, + 80, + 220, + 250, + 110, + 69, + 68, + 150, + 77, + 65, + 83, + 34.8, + 80, + 85, + 180, + 60, + 90, + 36, + 45, + 500, + 110, + 75, + 35, + 67, + 27, + 280, + 175, + 95, + 165, + 250, + 125, + 56, + 190, + 74, + 47, + 120, + 110, + 390, + 114, + 64, + 50, + 65, + 70, + 69, + 270, + 55, + 90, + 60, + 100, + 120, + 67.5, + 46, + 50, + 150, + 75, + 78, + 65, + 105, + 270, + 58, + 320, + 410, + 63, + 65, + 38, + 210, + 66, + 50, + 110, + 75, + 93, + 120, + 75.009009, + 300, + 80, + 120, + 110, + 75, + 120, + 75, + 43, + 220, + 140, + 80, + 98, + 45, + 46, + 40, + 160, + 215, + 35, + 150, + 145, + 90, + 120, + 43, + 275, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 120, + 140, + 85, + 65, + 40, + 30, + 160, + 55, + 53, + 140, + 79.5, + 85, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 120, + 40, + 80, + 200, + 45, + 85, + 140, + 110, + 63, + 83, + 160, + 220, + 52, + 56, + 140, + 45, + 240, + 100, + 35, + 260, + 120, + 59, + 150, + 35, + 78, + 140, + 199.999, + 98, + 41, + 125, + 95, + 65, + 130, + 90, + 58, + 67.5, + 96, + 250, + 35, + 85, + 180, + 55, + 65, + 140, + 70, + 55, + 80, + 350, + 200, + 170, + 175, + 65, + 75, + 47, + 125, + 75, + 50, + 34, + 50, + 70, + 200, + 95, + 65, + 160, + 400, + 390, + 60, + 130, + 38, + 63, + 67, + 170, + 120, + 75, + 125, + 45, + 110, + 49, + 68, + 75, + 165, + 140, + 80, + 78, + 145, + 160, + 86, + 110, + 50, + 60, + 57, + 68, + 275, + 90, + 45, + 175, + 72, + 49, + 55, + 180, + 77, + 150, + 80, + 60, + 50, + 85, + 89, + 100, + 60, + 295, + 56, + 145, + 50, + 375, + 214, + 50, + 90, + 105, + 135, + 290, + 50, + 110, + 60, + 160.000009, + 165, + 33, + 122, + 49.5, + 55, + 88, + 100, + 52, + 350, + 50, + 125, + 56, + 25, + 98, + 100, + 77, + 70, + 170, + 60, + 250, + 120, + 40, + 88, + 72, + 51, + 50, + 129, + 90, + 410, + 120, + 450, + 72, + 160, + 85, + 130, + 100, + 340, + 43, + 435, + 180, + 190, + 65, + 87, + 95, + 434, + 105, + 165, + 145, + 72, + 220, + 125, + 98, + 35, + 40, + 140, + 145, + 75, + 85, + 75, + 225, + 65, + 100, + 70, + 190, + 18.5, + 200, + 120, + 38, + 40, + 115, + 325, + 110, + 198, + 135, + 65, + 180, + 92, + 368, + 84, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 93, + 98, + 250, + 200, + 42, + 270, + 95, + 155, + 95, + 110, + 68, + 295, + 39, + 175, + 30, + 55, + 49, + 400, + 55, + 52, + 95, + 50, + 100, + 70, + 57, + 55, + 41, + 48, + 180, + 280, + 100, + 55, + 47, + 59, + 65, + 110, + 52, + 160, + 140, + 35, + 112, + 60, + 205, + 66, + 72, + 130, + 40, + 10, + 34, + 55, + 60, + 82, + 47, + 190, + 73, + 48, + 150, + 100, + 53, + 170, + 65, + 90, + 220, + 85, + 62, + 38, + 45, + 95, + 200, + 70, + 120, + 60, + 120, + 400, + 120, + 45, + 61, + 60, + 32, + 120, + 55, + 41, + 95, + 50, + 75, + 280, + 155, + 70, + 85, + 65, + 48, + 100, + 250, + 390, + 75, + 155, + 165, + 43, + 45, + 85, + 105, + 195, + 55, + 65, + 62, + 55, + 70, + 100, + 270, + 60, + 105, + 40, + 120, + 58, + 115, + 16, + 62, + 300, + 47, + 100, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 60, + 49.5, + 53, + 77, + 70, + 100, + 150, + 47, + 90, + 65, + 115, + 47, + 500, + 400, + 60, + 36, + 55, + 62, + 60, + 35, + 31, + 78, + 67, + 100, + 115, + 65, + 130, + 160, + 75, + 65, + 180, + 67, + 120, + 41, + 78, + 35, + 70, + 145, + 170, + 110, + 95, + 35, + 220, + 165, + 52, + 15, + 95, + 75, + 55, + 85, + 110, + 100, + 380, + 75, + 90, + 52, + 95, + 47, + 250, + 120, + 65, + 75, + 68, + 55, + 135, + 80, + 50, + 285, + 155, + 180, + 37, + 145, + 55, + 85, + 65, + 52, + 200, + 220, + 85, + 110, + 90, + 185, + 90, + 250, + 42, + 55, + 30, + 350, + 85, + 120, + 45, + 280, + 120, + 105, + 180, + 80, + 175, + 480, + 75, + 65, + 120, + 62, + 170, + 40, + 140, + 75, + 140, + 40, + 150, + 33, + 42, + 140, + 75, + 140, + 111, + 155, + 30, + 105, + 86, + 170, + 200, + 155, + 60, + 45, + 220, + 220, + 160, + 125, + 38, + 115, + 76, + 120, + 56, + 160, + 330, + 33, + 150, + 88, + 35, + 70, + 155, + 55, + 80, + 120, + 160, + 275, + 43.2, + 105, + 400, + 85, + 60, + 450, + 59, + 50, + 55, + 85, + 60, + 280, + 106, + 67, + 130, + 58, + 95, + 350.035, + 70, + 75, + 85, + 100, + 30, + 110, + 52, + 30, + 40, + 400, + 60, + 55, + 190, + 110, + 130, + 30, + 57, + 190, + 38.99, + 80, + 75, + 150, + 390, + 85, + 38, + 230, + 150, + 85, + 75, + 37, + 78, + 55, + 200, + 175, + 75, + 100, + 130, + 180, + 140, + 37, + 420, + 80, + 160, + 85, + 63, + 49, + 150, + 55, + 55, + 350, + 170, + 70, + 55, + 53, + 348, + 40, + 360, + 65, + 80, + 49.9, + 48, + 120, + 140, + 68, + 94, + 40, + 450, + 320, + 180, + 350, + 54, + 80, + 170, + 65, + 70, + 65, + 95, + 70, + 270, + 170, + 45, + 70, + 60, + 85, + 110, + 92, + 290, + 36, + 75, + 35, + 300, + 120, + 130, + 65, + 100, + 72, + 120, + 105, + 75, + 95, + 45, + 50, + 38, + 150, + 180, + 100, + 80, + 121, + 73.1, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 60, + 40, + 75, + 40, + 125, + 80, + 55, + 65, + 35, + 48, + 47, + 45, + 63, + 62, + 69, + 300, + 84, + 55, + 155, + 262, + 155, + 65, + 85, + 145, + 270, + 67, + 58, + 350, + 25, + 175, + 58, + 250, + 70, + 55, + 150.005, + 60, + 90, + 125, + 39, + 36, + 69, + 150, + 300, + 83, + 90, + 65, + 70, + 47, + 95, + 58, + 69, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 90, + 180, + 40, + 180, + 61, + 148, + 200, + 47, + 85, + 140, + 180, + 45, + 165, + 90, + 125, + 92, + 58, + 140, + 48, + 125, + 98, + 77, + 180, + 115, + 34.1, + 95, + 200, + 55, + 40, + 80 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "City=Lekki
Price=%{x}", + "legendgroup": "Lekki", + "marker": { + "color": "#636efa" + }, + "name": "Lekki", + "notched": true, + "offsetgroup": "Lekki", + "showlegend": false, + "type": "box", + "x": [ + 57, + 57, + 230, + 70, + 100, + 90, + 140, + 140, + 57, + 120, + 85, + 50, + 43, + 90, + 29, + 70, + 58, + 150, + 75, + 170, + 48, + 37, + 42, + 42, + 63, + 79, + 85, + 45, + 70, + 120, + 75, + 56, + 79, + 300, + 140, + 170, + 270, + 49, + 77, + 400, + 70, + 90, + 300, + 65, + 49, + 350, + 180, + 57, + 290, + 110, + 240, + 105, + 110, + 55, + 425, + 140, + 100, + 140, + 68, + 120, + 95, + 300, + 90, + 55, + 45, + 97, + 140, + 73, + 78, + 75, + 59, + 70, + 45, + 100, + 38, + 70, + 68, + 220, + 54, + 140, + 155, + 33, + 150, + 38, + 71, + 400, + 57, + 48, + 320, + 63, + 90, + 50, + 250, + 60, + 130, + 130, + 95, + 160, + 68, + 170, + 97, + 198, + 205, + 69, + 85, + 145, + 50, + 98, + 80, + 75, + 205, + 80, + 75, + 105, + 170, + 45, + 100, + 73, + 80, + 80, + 230, + 130, + 35, + 300, + 55, + 68, + 75, + 75, + 130, + 220, + 130, + 95, + 35, + 250, + 85, + 200, + 175, + 70, + 70, + 220, + 70, + 53, + 210, + 160, + 67, + 70, + 85, + 100, + 120, + 75, + 10, + 380, + 380, + 65, + 65, + 75, + 55, + 50, + 175, + 125, + 50, + 115, + 125, + 120, + 40, + 85, + 57, + 95, + 32, + 350, + 62, + 150, + 50, + 90, + 42, + 48, + 100, + 48, + 54.5, + 170, + 150, + 260, + 130, + 160, + 90, + 65, + 39.5, + 85, + 220, + 40, + 155, + 75, + 70, + 125, + 102, + 53, + 150, + 65, + 62, + 50, + 59, + 98, + 49, + 350, + 165, + 53, + 38, + 75, + 143, + 37, + 85, + 130, + 200, + 90, + 49.5, + 200, + 59.9, + 200, + 95, + 160, + 68, + 87, + 90, + 130, + 75, + 110, + 60, + 100, + 58.5, + 110, + 67, + 52, + 170, + 60, + 57, + 80, + 60, + 90, + 100, + 85, + 160, + 123, + 170, + 90, + 85, + 150, + 55, + 80, + 45, + 35, + 190, + 84, + 30, + 200, + 45, + 30, + 100, + 50, + 50, + 130, + 110, + 260, + 125, + 80, + 185, + 66, + 500, + 135, + 85, + 55, + 205, + 85, + 100, + 37, + 88, + 52, + 72, + 300, + 320, + 170, + 87, + 163, + 65, + 97, + 120, + 110, + 140, + 370, + 180, + 70, + 75, + 37, + 170, + 300, + 75, + 200, + 55, + 28, + 60, + 120, + 65, + 280, + 360, + 90, + 70, + 105, + 250, + 105, + 120, + 45, + 55, + 400, + 55, + 240, + 230, + 36, + 180, + 115, + 66, + 60, + 300, + 130, + 49, + 50, + 65, + 150, + 60, + 330, + 60, + 390, + 130, + 200, + 60, + 85, + 70, + 65, + 180, + 64, + 80, + 70, + 300, + 40, + 70, + 350, + 150, + 67, + 140, + 70, + 80, + 40, + 50, + 265, + 250, + 105, + 150, + 105, + 125, + 80, + 56, + 80, + 160, + 117, + 120, + 85, + 100, + 67, + 65, + 65, + 120, + 60, + 60, + 55, + 35, + 79, + 33, + 35, + 85, + 165, + 80, + 160, + 70, + 95, + 350, + 66, + 80, + 50, + 180, + 400, + 115, + 200, + 145, + 150, + 95, + 130, + 85, + 50, + 50, + 150, + 120, + 82, + 75, + 53, + 14, + 32.75, + 75, + 80, + 37, + 75, + 98, + 90, + 60, + 80, + 90, + 135, + 160, + 160, + 110, + 112, + 45, + 85, + 85, + 120, + 75, + 85, + 88, + 95, + 70, + 500, + 165, + 60, + 37, + 40, + 38, + 278, + 190, + 40, + 55, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 98, + 185, + 150, + 52.5, + 135, + 130, + 140, + 130, + 290, + 95, + 84, + 60, + 75, + 105, + 65, + 30, + 50, + 33, + 160, + 175, + 225, + 115, + 41.5, + 50, + 160, + 110, + 150, + 55, + 65, + 140, + 85, + 49.5, + 110, + 165, + 130, + 65, + 75, + 280, + 130, + 80, + 85, + 90, + 130, + 54, + 200, + 145, + 185, + 320, + 31, + 47, + 200, + 75, + 46, + 71.5, + 55, + 60, + 185, + 75, + 180, + 85, + 290, + 80, + 100, + 95, + 370, + 90, + 30, + 450, + 250, + 66, + 46, + 48, + 120, + 95, + 15.5, + 80, + 80, + 48, + 65, + 80, + 65, + 56, + 90, + 45, + 180, + 82, + 195, + 270, + 140, + 250, + 80, + 180, + 72, + 35, + 240, + 75, + 60, + 50, + 45, + 75, + 62, + 60, + 75, + 140, + 20, + 190, + 97, + 65, + 170, + 100, + 45, + 65, + 60, + 55, + 198, + 37, + 55, + 130, + 110, + 53, + 78, + 127, + 130, + 98, + 73, + 32.75, + 43, + 130, + 89, + 300, + 65, + 390, + 130, + 175, + 250, + 68, + 80, + 150, + 120, + 480, + 430, + 95, + 75, + 100, + 145, + 110, + 95, + 120, + 45, + 125, + 100, + 210, + 270, + 350, + 180, + 50, + 125, + 65, + 87, + 120, + 40, + 32.5, + 67, + 92.5, + 350, + 94, + 125, + 150, + 350, + 85, + 75, + 200, + 125, + 55, + 35, + 185, + 40, + 60, + 250, + 120, + 85, + 235, + 40.5, + 95, + 73, + 65, + 198, + 290, + 85, + 125, + 62, + 73, + 70, + 80, + 200, + 90, + 170, + 39, + 67, + 60, + 70, + 110, + 38, + 250, + 450, + 250, + 165, + 125, + 45, + 150, + 85, + 299.999999, + 99, + 180, + 250, + 60, + 67, + 70, + 160, + 50, + 70, + 80, + 60, + 60.9, + 80, + 130, + 58, + 144, + 102, + 80, + 57, + 140, + 67, + 65, + 50, + 70, + 48, + 80, + 48, + 75, + 88, + 160, + 83, + 76, + 135, + 110, + 85, + 63, + 210, + 100, + 60, + 130, + 98, + 65, + 220, + 240, + 90, + 170, + 59, + 130, + 50, + 240, + 33, + 70, + 95, + 30, + 66, + 47, + 160, + 110, + 67, + 35, + 45, + 55, + 180, + 85, + 160, + 56.5, + 230, + 48, + 45, + 130, + 55, + 32.75, + 150, + 170, + 67, + 65, + 80, + 180, + 85, + 38, + 35, + 175, + 95, + 84, + 62.5, + 55, + 35, + 60, + 117, + 55, + 75, + 80, + 220, + 70, + 110, + 205, + 80, + 120, + 110, + 140, + 37, + 400, + 145, + 170, + 48, + 49.5, + 100, + 45, + 120, + 95, + 200, + 49, + 500, + 155, + 55, + 95, + 90, + 120, + 95, + 125, + 165, + 250, + 75, + 42.5, + 90, + 100, + 115, + 150, + 270, + 145, + 140, + 38, + 78, + 120, + 185, + 38, + 65, + 360, + 70, + 68, + 105, + 170, + 350, + 48, + 250, + 40, + 65, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 47, + 45, + 220, + 120, + 47, + 58, + 85, + 33, + 270, + 60, + 45, + 135, + 40, + 65, + 110, + 165, + 50, + 300, + 280, + 170, + 45, + 75, + 290, + 38, + 50, + 100, + 195, + 57, + 100, + 42, + 76, + 55, + 68, + 110, + 60, + 44, + 70, + 118, + 102, + 189, + 80, + 85, + 60, + 140, + 115, + 150, + 300, + 80, + 57, + 120, + 420, + 400, + 115, + 150, + 57, + 60, + 73, + 32, + 110, + 55, + 68, + 49.9, + 198, + 47, + 58, + 125, + 26, + 75, + 55, + 72, + 25, + 500, + 85, + 140, + 92, + 100, + 59, + 90, + 75, + 85, + 77, + 105, + 55, + 75, + 50, + 58, + 65, + 45, + 50, + 100, + 500, + 50, + 450, + 130, + 66, + 78, + 80, + 210, + 195, + 150, + 130, + 70, + 80, + 80, + 49, + 70, + 64, + 235, + 410, + 68, + 60, + 90, + 65, + 230, + 70, + 88, + 61, + 65, + 68, + 180, + 180, + 52, + 14, + 200, + 45, + 78, + 52, + 48, + 80, + 470, + 75, + 220, + 56, + 55, + 97, + 57, + 290, + 65, + 145, + 95, + 75, + 95, + 75, + 50, + 46, + 55, + 75, + 36, + 160, + 150, + 90, + 50, + 110, + 285, + 90, + 45, + 58, + 78, + 150, + 60, + 269, + 225, + 100, + 50, + 203, + 54, + 110, + 210, + 41, + 30, + 39, + 130, + 67, + 70, + 79, + 155, + 95, + 120, + 50, + 65, + 50, + 78, + 37, + 80, + 255, + 105, + 360, + 40, + 72, + 280, + 59, + 82, + 33, + 40, + 80, + 95, + 270, + 118, + 195, + 130, + 75, + 175, + 85, + 95, + 110, + 75, + 400, + 160, + 100, + 120, + 48, + 40, + 200, + 200, + 76, + 270, + 47, + 53, + 250, + 180, + 126, + 155, + 78, + 79, + 90, + 105, + 180, + 70, + 330, + 65, + 380, + 170, + 75, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 190, + 70, + 32, + 56, + 49, + 50, + 30, + 40, + 165, + 77, + 120, + 155, + 70, + 40, + 169, + 49, + 160, + 190, + 190, + 75, + 480, + 170, + 170, + 76, + 85, + 130, + 55, + 190, + 130, + 115, + 40, + 120, + 38, + 275, + 90, + 95, + 105, + 130, + 155.7, + 65, + 33, + 165, + 68, + 80, + 135, + 60, + 320, + 78, + 165, + 72, + 110, + 185, + 95, + 200, + 74, + 90, + 50, + 300, + 38, + 260, + 200, + 75, + 175, + 85, + 62, + 92, + 160, + 85, + 200, + 52, + 100, + 85, + 250, + 22, + 170, + 85, + 190, + 73, + 160, + 92, + 450, + 390, + 51, + 120, + 135, + 140, + 48, + 65, + 130, + 100, + 106, + 295, + 180, + 50, + 392, + 170, + 55, + 120, + 60, + 40, + 50, + 45, + 140, + 85, + 420, + 105, + 190, + 160, + 57, + 250, + 360, + 60, + 78, + 205, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 140, + 198.5, + 127, + 125, + 35, + 70, + 45, + 55, + 80, + 270, + 53, + 35, + 33, + 98, + 75, + 135, + 65, + 60, + 39, + 85, + 250, + 160, + 110, + 100, + 47, + 100, + 34, + 58, + 220, + 250, + 59, + 280, + 92, + 80, + 100, + 140, + 140, + 190, + 52, + 145, + 145, + 73, + 66, + 63, + 410, + 135, + 95, + 115, + 80, + 300, + 130, + 160, + 280, + 55, + 55, + 25, + 250, + 480, + 110, + 68, + 33, + 56, + 170, + 82, + 135, + 72, + 270, + 17.675, + 183, + 85, + 164, + 90, + 67, + 125, + 74, + 100, + 180, + 45, + 47, + 59.5, + 190, + 48, + 65, + 85, + 90, + 100, + 200, + 100, + 69, + 65, + 180, + 500, + 60, + 28, + 75, + 47, + 110, + 60, + 155, + 95, + 60, + 95, + 98, + 140, + 55, + 67, + 55, + 450, + 165, + 125, + 90, + 100, + 175, + 85, + 290, + 36, + 300, + 165, + 43, + 240, + 69, + 95, + 125, + 150, + 115, + 210, + 49, + 80, + 120, + 180, + 75, + 55, + 45, + 55, + 33, + 220, + 120, + 270, + 150, + 79, + 105, + 68, + 120, + 65, + 175, + 78, + 350, + 170, + 76, + 95, + 70, + 98, + 33, + 195, + 30, + 45, + 77, + 130, + 45, + 120, + 95, + 145, + 300, + 170, + 57, + 60, + 50, + 65, + 53, + 76, + 93, + 40, + 55, + 57, + 280, + 195, + 80, + 41, + 37, + 51.5, + 130, + 270, + 79.5, + 97, + 115, + 56, + 37, + 158, + 80, + 120, + 100, + 90, + 90, + 68, + 75, + 32, + 72, + 220, + 100, + 172, + 40, + 350, + 55, + 70, + 70, + 45, + 110, + 400, + 53, + 370, + 32, + 145, + 40, + 24, + 165, + 65, + 57, + 130, + 155, + 195, + 75, + 130, + 70, + 50, + 180, + 53.1, + 65, + 109, + 120, + 90, + 45, + 270, + 62, + 60, + 110, + 225, + 150, + 55, + 220, + 74, + 78, + 45, + 110, + 47, + 120, + 100, + 110, + 280, + 45, + 270, + 70, + 158, + 245, + 380, + 75, + 135, + 55, + 110, + 75, + 75, + 400, + 56, + 40, + 200, + 36.5, + 100, + 33, + 60, + 58, + 185, + 88, + 57, + 75, + 55, + 185, + 32, + 49, + 160, + 83, + 150, + 110, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 60, + 75, + 145, + 140, + 75, + 70, + 45, + 250, + 480, + 90, + 130, + 110, + 35, + 55, + 69, + 92, + 270, + 105, + 48, + 30, + 190, + 95, + 54, + 400, + 85, + 190, + 52, + 80, + 37, + 65, + 58, + 60, + 51, + 180, + 185, + 48, + 37, + 100, + 76, + 170, + 45, + 35.85, + 90, + 135, + 46, + 285, + 130, + 290, + 450, + 60, + 350, + 59.5, + 175, + 83, + 77, + 155, + 145, + 80, + 70, + 400, + 165, + 19.975, + 59, + 230, + 130, + 55, + 87, + 500, + 180, + 180, + 450, + 250, + 180, + 59, + 69.99, + 65, + 63, + 40, + 200, + 148, + 70, + 230, + 150, + 75, + 250, + 100, + 48, + 65, + 185, + 70, + 180, + 48, + 150, + 265, + 65, + 55, + 70, + 150, + 167, + 93, + 440, + 115, + 70, + 35, + 55, + 115, + 150, + 380, + 95, + 57, + 45, + 45, + 33, + 95, + 330, + 185, + 150, + 300, + 78, + 275, + 120, + 11.6, + 42, + 118, + 77, + 68, + 120, + 160, + 200, + 77, + 37, + 160, + 75, + 150, + 58, + 59, + 79, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 105, + 30, + 48, + 65, + 300, + 120, + 450, + 230, + 110, + 47, + 45, + 150, + 320, + 95, + 75, + 480, + 150, + 83, + 210, + 65, + 115, + 60, + 185, + 70, + 250, + 110, + 280, + 200, + 30, + 350, + 330, + 45, + 36.5, + 45, + 150, + 270, + 48, + 58, + 43, + 77, + 58, + 60, + 120, + 72, + 67, + 50, + 430, + 58, + 150, + 140, + 59, + 65, + 50, + 150, + 120, + 150, + 80, + 195, + 70, + 120, + 220, + 145, + 500, + 80, + 67, + 48, + 79.5, + 38, + 115, + 130, + 180, + 120, + 205, + 65, + 120, + 80, + 300, + 69, + 165, + 55, + 150, + 77, + 57, + 73, + 58, + 85, + 54, + 80, + 125, + 75, + 370, + 300, + 50, + 38, + 49, + 150, + 60, + 75, + 95, + 183, + 16.5, + 120, + 35, + 50, + 55, + 72, + 52, + 145, + 90, + 190, + 300, + 99, + 80, + 200, + 38, + 65, + 220, + 195, + 70, + 48, + 85, + 85, + 59, + 100, + 35, + 110, + 90, + 75, + 86, + 45, + 60, + 130, + 69.5, + 150, + 180, + 35, + 38, + 50, + 350, + 70, + 45, + 135, + 75, + 85, + 250, + 320, + 57, + 290, + 330, + 135, + 60, + 97, + 68, + 125, + 55, + 47, + 95, + 52, + 125, + 54, + 58, + 95, + 115, + 165, + 62, + 60, + 83, + 90, + 46, + 220, + 57, + 170, + 75.000009, + 150, + 125, + 95, + 65, + 67, + 185, + 350, + 180, + 140, + 75, + 37, + 400, + 35, + 38, + 160, + 90, + 130, + 65, + 80, + 58, + 160, + 26, + 95, + 50, + 430, + 125, + 73, + 58, + 63, + 450, + 270, + 330, + 250, + 75, + 110, + 200, + 195, + 35, + 220, + 65, + 75, + 57, + 68, + 140, + 190, + 110, + 150, + 57, + 95, + 160, + 48, + 38, + 65, + 75, + 30, + 140, + 255, + 120, + 230, + 67, + 83, + 200, + 175, + 130, + 150, + 95, + 130, + 92, + 130, + 120, + 95, + 155, + 170, + 65, + 52, + 280, + 52, + 63, + 145, + 80, + 90, + 60, + 155, + 50, + 76, + 190, + 55, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 45, + 47, + 60, + 280, + 85, + 90, + 110, + 35, + 110, + 85, + 220, + 67, + 210, + 37, + 235, + 73, + 155, + 58, + 58, + 39, + 160, + 220, + 135, + 350, + 125, + 185, + 350, + 62, + 85, + 150, + 57, + 105, + 185, + 85, + 78, + 240, + 98, + 200, + 155, + 81, + 62, + 55, + 130, + 120, + 43, + 48, + 65, + 40, + 105, + 145, + 200, + 52, + 78, + 56, + 43, + 270, + 62, + 168, + 47, + 120, + 130, + 49, + 500, + 320, + 40, + 100, + 118, + 135, + 120, + 45, + 50, + 90, + 230, + 90, + 80, + 220, + 190, + 55, + 48, + 140, + 95, + 65, + 180, + 80, + 160, + 100, + 70, + 58, + 150, + 85, + 55, + 155, + 68, + 60, + 300, + 82, + 110, + 68, + 54, + 295, + 155, + 72, + 100, + 100, + 120, + 56, + 85, + 140, + 60, + 97, + 90, + 80, + 100, + 40, + 115, + 96, + 62, + 65, + 170, + 47, + 47.5, + 95, + 150, + 52, + 28, + 180, + 190, + 80, + 40, + 38, + 220, + 53, + 62, + 160, + 110, + 110, + 48, + 72, + 250, + 160, + 42, + 55, + 280, + 55, + 65, + 61.75, + 300, + 150, + 115, + 45, + 150, + 39, + 75, + 60, + 260, + 95, + 170, + 300, + 205, + 210, + 33, + 75, + 75, + 35, + 90, + 160, + 120, + 38, + 100, + 46, + 40, + 36, + 35, + 130, + 70, + 450, + 128, + 78, + 160, + 250, + 200, + 120, + 175, + 130, + 41, + 300, + 125, + 250, + 300, + 17, + 95, + 85, + 120, + 47, + 75, + 53, + 250, + 395, + 70, + 55, + 80, + 90, + 55, + 80, + 55, + 150, + 65, + 135, + 50, + 95, + 145, + 35, + 90, + 70, + 290, + 45, + 45, + 80, + 62, + 80, + 225, + 170, + 125, + 85, + 47, + 65, + 65, + 48, + 250, + 58, + 35, + 75, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 90, + 60, + 130, + 120, + 80, + 135, + 52, + 160, + 110, + 35, + 370, + 110, + 88, + 80, + 450, + 350, + 85, + 120, + 125, + 135, + 230, + 190, + 445, + 120, + 55, + 88, + 80, + 27, + 260, + 110, + 105, + 74, + 150, + 400, + 170, + 75, + 30, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 45, + 95, + 170, + 65, + 125, + 200, + 59, + 235, + 67, + 165, + 67, + 127, + 290, + 64.1, + 58, + 80, + 95, + 160, + 55, + 130, + 330, + 70, + 72, + 52, + 260, + 95, + 130, + 200, + 75, + 190, + 68, + 33, + 56, + 270, + 95, + 62, + 65, + 45, + 45, + 66, + 48, + 38, + 28.5, + 110, + 120, + 65, + 45, + 250, + 20, + 250, + 140, + 55, + 120, + 130, + 110, + 110, + 105, + 38, + 199.999, + 450, + 35, + 70, + 65, + 105, + 450, + 190, + 60, + 35, + 250, + 73, + 100, + 85, + 110, + 60, + 130, + 130, + 33, + 40, + 150, + 68, + 65, + 95, + 65, + 45, + 33, + 170, + 55, + 105, + 65, + 55, + 135, + 270, + 50, + 95, + 90, + 75, + 50, + 48, + 170, + 33, + 245, + 44, + 48, + 58, + 110, + 58, + 50, + 65, + 80, + 75, + 50, + 78, + 135, + 47, + 65, + 80, + 350, + 72, + 255, + 230, + 120, + 90, + 155, + 42, + 57, + 85, + 110, + 51, + 90, + 100, + 170, + 143, + 65, + 140, + 160, + 55, + 90, + 75, + 170, + 47, + 180, + 49, + 46, + 270, + 85, + 79, + 78, + 47, + 83, + 65, + 65, + 50, + 95, + 40, + 120, + 180, + 153, + 59, + 60, + 85, + 53, + 38, + 33, + 155, + 67, + 320, + 45, + 55, + 160, + 80, + 70, + 220, + 72, + 390, + 45, + 175, + 40, + 73, + 75, + 175, + 140, + 85, + 95, + 110, + 85, + 215, + 80, + 160, + 99, + 50, + 90, + 430, + 50, + 400, + 60, + 85, + 58, + 60, + 65, + 80, + 230, + 115, + 90, + 75, + 115, + 192, + 115, + 90, + 50, + 47, + 75, + 45, + 125, + 200, + 165, + 138, + 165, + 30, + 69, + 56, + 65, + 95, + 77.5, + 70, + 90, + 75, + 82, + 180, + 46, + 62, + 76, + 70, + 52, + 65, + 450, + 160, + 135, + 51, + 80, + 175, + 50, + 63.1, + 59, + 135, + 130, + 110, + 40, + 470, + 55, + 300, + 70, + 160, + 90, + 35, + 77, + 60, + 150, + 57, + 58, + 57, + 115, + 78, + 75, + 100, + 50, + 130, + 54, + 100, + 80, + 210, + 180, + 130, + 80, + 85, + 50, + 140, + 55, + 70, + 335, + 285, + 74.1, + 130, + 65, + 135, + 37, + 100, + 62, + 81, + 72, + 160, + 90, + 450, + 130, + 55, + 36.5, + 150, + 190, + 36, + 90, + 95, + 65, + 150, + 500, + 37, + 90, + 90, + 44, + 400, + 75, + 500, + 190, + 160, + 90, + 58, + 235, + 280, + 55, + 250, + 85, + 120, + 76, + 255, + 120, + 173, + 44, + 175, + 75, + 135, + 175, + 47, + 60, + 230, + 155, + 72, + 45, + 65, + 220, + 95, + 145, + 400, + 85, + 44, + 42, + 100, + 110, + 79, + 200, + 59, + 65, + 150, + 130, + 75, + 80, + 165, + 80, + 68, + 320, + 68, + 145, + 235, + 73, + 100, + 130, + 58, + 70, + 130, + 100, + 100, + 69, + 90, + 45, + 55, + 200, + 195, + 95, + 360, + 240, + 175, + 90, + 62, + 190, + 130, + 215, + 38.5, + 55, + 37, + 96, + 45, + 270, + 115, + 80, + 70, + 75, + 120, + 40, + 90, + 58, + 46, + 140, + 250, + 78, + 165, + 170, + 45, + 135, + 140, + 145, + 185, + 70, + 220, + 38, + 165, + 106, + 75, + 85, + 68, + 135, + 480, + 155, + 42, + 49, + 37, + 380, + 53, + 68, + 80, + 57, + 62, + 38, + 40, + 75, + 330, + 141, + 125, + 215, + 180, + 140, + 57, + 57, + 150, + 27, + 200, + 180, + 150, + 88, + 90, + 230, + 55, + 160, + 140, + 45, + 150, + 480, + 150, + 75, + 85, + 90, + 68, + 85, + 130, + 200, + 250, + 380, + 100, + 170, + 75, + 170, + 75, + 170, + 140, + 70, + 450, + 55, + 65, + 80, + 189, + 85, + 260, + 300, + 160, + 240, + 58, + 85, + 280, + 110, + 82, + 95, + 82, + 120, + 175, + 70, + 28, + 110, + 65, + 380, + 53, + 45, + 68, + 76, + 70, + 58, + 72, + 165, + 55, + 170, + 90, + 50, + 33, + 270, + 100, + 65, + 170, + 95, + 230, + 75, + 32, + 210, + 310, + 130, + 105, + 70, + 55, + 130, + 48, + 150, + 33.5, + 120, + 65, + 75, + 45, + 400, + 40, + 180, + 150, + 150, + 155, + 90, + 80, + 35, + 53, + 38, + 105, + 350, + 50, + 51.5, + 78, + 57, + 44.815, + 55, + 57, + 150, + 90, + 220, + 85, + 90, + 90, + 100, + 40, + 80, + 105, + 37, + 80.000005, + 250, + 64, + 95, + 62, + 73, + 380, + 46, + 310, + 170, + 80, + 70, + 85, + 290, + 70, + 45, + 185, + 50, + 55, + 40, + 70, + 110, + 64, + 180, + 105, + 40, + 75, + 290, + 150, + 90, + 150, + 40, + 120, + 70, + 67, + 55, + 130, + 56, + 75, + 77, + 125, + 45, + 70, + 270, + 90, + 190, + 100, + 51, + 110, + 110, + 170, + 53, + 70, + 120, + 180, + 90, + 85, + 37, + 72, + 50, + 37, + 50, + 125, + 54, + 85, + 68, + 140, + 60, + 400, + 250, + 450, + 38, + 100, + 140, + 185, + 38, + 270, + 85, + 55, + 175, + 48, + 85, + 82, + 57, + 65, + 133, + 240, + 110, + 348, + 140, + 200, + 65, + 370, + 40, + 58, + 66, + 57, + 68, + 46, + 35, + 500, + 58, + 77, + 120, + 83, + 500, + 110, + 50, + 38.99, + 370, + 87, + 59, + 135, + 220, + 65, + 70, + 69, + 105, + 190, + 130, + 85, + 150, + 140, + 40, + 45, + 22, + 85, + 100, + 110, + 52, + 70, + 62, + 60, + 75, + 150, + 450, + 36, + 150, + 28, + 72.5, + 65, + 85, + 110, + 48, + 230, + 125, + 280, + 400, + 135, + 90, + 71, + 130, + 85, + 55, + 70, + 125, + 102, + 300, + 93, + 105, + 160, + 40, + 58, + 70, + 40, + 45, + 40, + 46, + 450, + 140, + 100, + 165, + 90, + 40, + 60, + 75, + 19.975, + 38, + 60, + 45, + 290, + 65, + 120, + 90, + 115, + 37, + 68, + 115, + 65, + 50, + 90, + 130, + 60, + 30, + 65, + 70, + 115, + 65, + 46, + 23, + 250, + 55, + 55, + 100, + 170, + 400, + 85, + 90, + 66, + 150, + 46, + 85, + 260, + 45, + 78, + 58, + 45, + 160, + 65, + 39, + 45, + 102, + 85, + 120, + 180, + 125, + 50, + 47, + 300, + 115, + 220, + 130, + 145, + 80, + 240, + 198, + 320, + 50, + 62.5, + 250, + 230, + 35, + 135, + 63, + 80, + 200, + 270, + 69.99, + 50, + 49, + 85, + 34, + 36, + 190, + 70, + 33, + 120, + 400, + 86, + 80, + 92, + 65, + 100.99, + 38, + 120, + 90, + 40, + 85, + 220, + 53, + 90, + 370, + 160, + 65, + 95, + 190, + 120, + 260, + 155, + 75, + 195, + 105, + 150, + 90, + 85, + 85, + 35, + 90, + 65, + 460, + 38, + 115, + 62, + 60, + 67, + 70, + 50, + 50, + 200, + 205, + 300, + 100, + 48, + 185, + 100, + 180, + 65, + 47, + 120, + 84, + 45, + 200, + 53, + 130, + 17.675, + 90, + 130, + 140, + 75, + 200, + 120, + 60, + 54, + 75, + 125, + 68, + 115, + 48, + 300, + 72, + 100, + 200, + 190, + 70, + 35, + 66, + 110, + 65, + 180, + 57, + 295, + 82, + 78, + 35, + 72, + 175, + 50, + 80, + 80, + 110, + 65, + 85, + 78, + 135, + 175, + 78, + 205, + 170, + 40, + 135, + 260, + 360, + 175, + 80, + 150, + 65, + 65, + 83, + 100, + 75, + 110, + 39, + 250, + 125, + 85, + 90, + 190, + 55, + 60, + 185, + 48, + 260, + 230, + 100, + 45, + 180, + 80, + 135, + 100, + 300, + 60, + 110, + 95, + 180, + 170, + 140, + 95, + 175, + 92, + 65, + 55, + 165, + 75, + 90, + 90, + 190, + 65, + 165, + 120, + 30, + 55, + 350, + 120, + 125, + 260, + 58, + 280, + 420, + 42, + 65, + 130, + 85, + 75, + 62, + 60, + 75, + 50, + 60, + 90, + 58, + 85, + 165, + 265, + 110, + 350, + 80, + 90, + 48, + 45, + 270, + 47, + 42, + 78, + 65, + 24, + 180, + 70, + 71, + 67, + 128, + 295, + 175, + 200, + 170, + 250, + 90, + 75, + 40, + 52, + 140, + 85, + 200, + 260, + 135, + 49, + 59, + 80, + 150, + 235, + 75, + 65, + 45, + 65, + 380, + 60, + 69, + 85, + 57, + 49, + 155, + 62, + 395, + 120, + 85, + 198, + 100, + 69, + 38.9, + 280, + 75, + 80, + 115, + 53, + 36, + 110, + 85, + 85, + 55, + 47, + 65, + 55, + 55, + 80, + 65, + 35, + 50, + 53.5, + 35, + 320, + 18.975, + 190, + 140, + 55, + 110, + 70, + 195, + 65, + 35, + 220, + 120, + 79.5, + 115, + 58, + 95, + 68, + 205, + 200, + 167, + 100, + 68, + 200, + 175, + 160, + 60, + 110, + 200, + 58, + 60, + 37, + 195, + 125, + 50, + 90, + 60, + 38.5, + 160, + 60, + 76, + 85, + 45, + 270, + 185, + 75, + 110, + 115, + 46, + 235, + 125, + 70, + 140, + 110, + 95, + 250, + 57, + 155, + 48, + 80, + 52, + 180, + 28, + 45, + 80, + 87, + 52, + 85, + 55, + 130, + 56.5, + 63, + 280, + 65, + 47, + 145, + 56, + 83, + 145, + 80, + 55, + 80, + 48, + 63, + 250, + 73, + 35, + 50, + 95, + 185, + 105, + 110, + 150, + 165, + 200, + 41, + 140, + 55, + 87, + 82, + 108, + 145, + 90, + 100, + 115, + 50, + 65, + 70, + 40, + 320, + 90, + 83, + 88, + 80, + 140, + 83, + 75, + 45, + 300, + 100, + 65, + 38.5, + 200, + 135, + 140, + 100, + 40.64, + 70, + 105, + 58, + 390, + 55, + 75, + 80, + 45, + 98, + 285, + 50, + 145, + 85, + 55, + 160, + 75, + 135, + 135, + 54.5, + 180, + 65, + 180, + 197, + 110, + 400, + 80, + 100, + 90, + 135, + 100, + 40, + 120, + 145, + 110, + 85, + 500, + 250, + 36, + 55, + 55, + 500, + 65, + 95, + 300, + 45, + 48, + 49.5, + 145, + 90, + 400, + 100, + 120, + 68, + 160, + 155, + 95, + 155, + 85, + 500, + 150, + 95, + 60, + 210, + 36.5, + 30, + 74, + 195, + 56, + 63.1, + 84, + 410, + 68, + 110, + 65, + 95, + 80, + 60, + 130, + 65, + 55, + 55, + 120, + 155, + 120, + 75, + 150, + 108, + 40, + 145, + 48, + 65, + 37, + 75, + 160, + 43, + 95, + 250, + 82, + 49.5, + 70, + 50, + 63, + 39, + 65, + 95, + 85, + 40, + 190, + 110, + 185, + 250, + 140, + 45, + 95, + 115, + 17.675, + 95, + 285, + 155, + 45, + 350, + 42, + 50, + 55, + 85, + 370, + 75, + 60, + 75, + 62, + 187, + 48, + 90, + 160, + 62, + 85, + 90, + 75, + 105, + 250, + 120, + 250, + 80, + 65, + 60, + 45, + 160, + 120, + 160, + 78, + 250, + 35, + 65, + 130, + 87, + 165, + 250, + 150, + 60, + 140, + 30, + 58, + 50, + 100, + 200, + 50, + 70, + 60, + 18, + 350, + 57, + 93, + 175, + 230, + 63, + 35, + 90, + 250, + 52, + 55, + 130, + 46, + 100, + 270, + 140, + 140, + 170, + 90, + 75, + 60, + 105, + 250, + 85, + 180, + 77.5, + 70, + 500, + 50, + 75, + 45, + 50, + 175, + 60, + 57, + 69, + 280, + 63, + 270, + 300, + 150, + 120, + 45, + 36, + 100, + 55, + 69.5, + 65, + 120, + 350, + 40, + 55, + 41, + 75, + 70, + 150, + 49.5, + 58, + 300, + 170, + 145, + 49.9, + 54, + 195, + 110, + 57, + 68, + 140, + 80, + 261, + 210, + 85, + 55, + 110, + 200, + 41, + 140, + 120, + 90, + 95, + 385, + 55, + 47, + 65, + 55, + 165, + 140, + 60, + 280, + 53, + 49.5, + 300, + 42, + 98, + 42, + 110, + 70, + 50, + 110, + 40, + 100, + 65, + 35, + 140, + 235, + 120, + 150, + 250, + 200, + 125, + 57, + 280, + 370, + 200, + 300, + 400, + 45, + 175, + 70, + 40, + 38, + 60, + 190, + 120, + 45, + 43.5, + 45, + 145, + 150, + 30, + 160, + 67, + 125, + 66, + 72, + 275, + 169.5, + 47.799, + 82, + 85, + 190, + 170, + 150, + 105, + 33, + 150, + 300, + 72, + 75, + 200, + 68, + 150, + 48, + 120, + 45, + 45, + 38, + 85.5, + 140, + 90, + 150, + 110, + 120, + 75, + 87.000099, + 100, + 45, + 170, + 76, + 47, + 150, + 125, + 100, + 150, + 170, + 300, + 55, + 60, + 180, + 60, + 170, + 300, + 67, + 59, + 65, + 80, + 138, + 450, + 130, + 250, + 48, + 90, + 76, + 46, + 80, + 480, + 60, + 70, + 110, + 135, + 195, + 275, + 55, + 460, + 95, + 500, + 62, + 50, + 140, + 340, + 340, + 48, + 55, + 73, + 70, + 62, + 56, + 90, + 42, + 36, + 250, + 79, + 45, + 80, + 60, + 370, + 180, + 60, + 160, + 65, + 36, + 55, + 140, + 95, + 270, + 170, + 65, + 200, + 39, + 43, + 57, + 150, + 130, + 175, + 75, + 390, + 70, + 40, + 230, + 60, + 65, + 75, + 63, + 75, + 80, + 110, + 160, + 75, + 75, + 210, + 60, + 68, + 93, + 85, + 95, + 72, + 360, + 35, + 65, + 38, + 165, + 59, + 62, + 44, + 65, + 165, + 240, + 70, + 53, + 100, + 130, + 56.000099, + 95, + 155, + 110, + 28, + 230, + 55, + 72, + 85, + 180, + 150, + 115, + 85, + 63, + 180, + 180, + 180, + 150, + 68, + 77, + 55, + 59, + 43, + 80, + 41.5, + 34.5, + 68, + 180, + 65, + 55, + 36, + 125, + 62, + 62, + 350, + 160, + 320, + 150, + 198, + 80, + 60, + 60, + 155, + 90, + 95, + 78, + 80, + 52, + 55, + 77, + 53, + 125, + 34, + 200, + 140, + 350, + 38, + 190, + 30, + 62, + 80, + 140, + 190, + 12, + 69.5, + 45, + 40, + 32, + 32, + 220, + 98, + 220, + 115, + 90, + 55, + 275, + 265, + 160, + 55, + 120, + 105, + 165, + 64, + 110, + 40, + 150, + 53, + 90, + 60, + 80, + 85, + 68, + 165, + 45, + 35, + 43, + 70, + 34, + 105, + 120, + 55, + 95, + 85, + 60, + 90, + 150, + 98, + 43.5, + 88, + 53, + 45, + 105, + 300, + 49, + 85, + 200, + 380, + 265, + 58, + 80, + 200, + 325, + 50, + 240, + 95, + 180, + 125, + 85, + 100, + 78, + 125, + 85, + 50, + 280, + 185, + 150, + 50, + 200, + 200, + 300, + 220, + 99, + 130, + 300, + 270, + 75, + 105, + 115, + 70, + 55, + 220, + 83, + 37, + 62, + 75, + 130, + 80, + 370, + 200, + 100, + 67, + 105, + 145, + 195, + 175, + 77, + 120, + 55, + 105, + 40, + 240, + 85, + 70, + 350, + 120, + 190, + 155, + 40, + 180, + 280, + 60, + 180, + 85, + 62, + 50, + 61, + 70, + 55, + 36, + 85, + 70, + 70, + 80, + 79, + 120, + 110, + 90, + 123, + 72, + 270, + 80, + 220, + 130, + 400, + 90, + 150, + 50, + 130, + 105, + 90, + 370, + 80, + 37, + 170, + 55, + 240, + 230, + 110, + 58.5, + 140, + 110, + 300, + 52, + 75, + 37, + 140, + 115, + 85, + 70, + 95, + 65, + 55, + 100, + 75, + 160, + 54, + 135, + 200, + 99, + 330, + 185, + 95, + 170, + 40, + 50, + 95, + 108, + 83, + 65, + 43, + 198, + 50, + 200, + 120, + 210, + 50, + 105, + 60, + 75, + 150, + 69, + 80, + 78, + 60, + 79.5, + 200, + 50, + 250, + 85, + 33, + 165, + 110, + 47, + 170, + 90, + 45, + 65, + 38, + 100, + 120, + 48, + 110, + 44, + 50, + 120, + 80, + 75, + 62, + 67, + 140, + 47, + 160, + 140, + 42, + 52, + 180, + 60, + 58, + 38, + 145, + 110, + 160, + 35, + 100, + 60, + 53, + 75, + 130, + 130, + 80, + 70, + 57, + 40, + 62, + 130, + 47.5, + 33, + 95, + 300, + 63, + 54, + 50, + 67, + 220, + 68, + 150.000009, + 85, + 56, + 75, + 70, + 120, + 220, + 185, + 55, + 140, + 66, + 64, + 45, + 45, + 57, + 42, + 53, + 42, + 500, + 85, + 40, + 40, + 65, + 80, + 500, + 68, + 250, + 140, + 145, + 120, + 220, + 53, + 68, + 92, + 62, + 80, + 32, + 120, + 165, + 155, + 100, + 150, + 130, + 40, + 200, + 170, + 100, + 130, + 75, + 230, + 85, + 75, + 140, + 33.5, + 200, + 41.8, + 63, + 245, + 200, + 180, + 270, + 105, + 45, + 65, + 80, + 190, + 48, + 72, + 155, + 20, + 300, + 180, + 65, + 250, + 299.999999, + 145, + 55, + 80, + 57, + 80, + 45, + 160, + 150, + 65, + 55, + 100, + 60, + 90, + 35, + 55, + 56, + 55, + 75, + 130, + 320, + 90, + 160, + 65, + 110, + 73, + 72.5, + 100, + 23, + 55, + 57, + 450, + 125, + 47, + 47.5, + 85, + 50, + 90, + 100, + 125, + 130, + 60, + 75, + 50, + 165, + 100, + 55, + 15, + 62, + 110, + 200, + 130, + 45, + 33, + 85, + 180, + 73, + 66, + 175, + 35, + 450, + 55, + 135, + 125, + 260, + 82, + 58, + 55, + 92, + 24, + 75, + 78, + 128, + 270, + 75, + 65, + 105, + 50, + 35, + 120, + 50, + 170, + 56, + 130, + 78, + 55, + 155, + 220, + 250, + 135, + 170, + 380, + 220, + 75, + 47.5, + 80, + 170, + 35, + 65, + 45, + 350, + 290, + 420, + 55, + 95, + 58, + 65, + 225, + 58, + 46, + 170, + 90, + 395, + 33, + 56, + 82, + 55, + 57, + 335, + 215, + 110, + 63, + 50, + 450, + 37, + 65, + 56, + 17.675, + 150, + 180, + 130, + 65, + 130, + 130, + 80, + 200, + 65, + 69, + 130, + 30, + 45, + 32, + 135, + 85, + 58, + 38, + 130, + 35, + 40, + 69, + 120, + 280, + 90, + 55, + 150, + 165, + 240, + 155, + 42, + 80, + 235, + 47, + 125, + 400, + 60, + 130, + 65, + 110, + 80, + 44, + 80, + 90, + 60, + 40, + 62, + 85, + 500, + 125, + 120, + 230, + 40, + 75, + 98, + 140, + 125, + 60, + 160, + 420, + 65, + 350, + 130, + 75, + 65, + 165, + 75, + 10, + 190, + 120, + 125, + 150, + 65, + 320, + 45, + 180, + 62, + 80, + 200, + 105, + 46, + 37, + 150, + 250, + 90, + 32.5, + 35, + 120, + 180, + 250, + 57, + 110, + 230, + 150, + 160, + 130, + 43, + 70, + 120, + 110, + 100, + 40, + 60, + 133, + 50, + 115, + 63, + 280, + 47, + 45, + 125, + 240, + 38, + 38, + 70, + 49, + 170, + 86, + 180, + 200, + 200, + 80, + 39, + 85, + 72, + 65, + 140, + 36, + 44.9, + 70, + 120, + 130, + 200, + 65, + 95, + 280, + 38, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 125, + 205, + 33, + 57, + 400, + 73, + 110, + 260, + 75, + 70, + 63, + 39, + 85, + 185, + 50, + 70, + 230, + 72, + 63, + 150, + 100, + 75, + 100, + 65, + 68, + 45, + 50, + 85, + 120, + 180, + 40, + 75, + 200, + 280, + 120, + 450, + 85, + 140, + 88, + 105, + 105, + 60, + 250, + 140, + 198, + 67, + 180, + 67, + 155, + 190, + 65, + 80, + 150, + 220, + 150, + 47.999999, + 36, + 400, + 85, + 70, + 70, + 300, + 80, + 280, + 85, + 65, + 225, + 60, + 68, + 80, + 52, + 100, + 75, + 230, + 53, + 60, + 40, + 65, + 45, + 170, + 55, + 290, + 65, + 45, + 135, + 80, + 150, + 105, + 37, + 61, + 54, + 50, + 17.675, + 450, + 260, + 67, + 82, + 48, + 180, + 35, + 500, + 57, + 48, + 40, + 95, + 70, + 100, + 65, + 145, + 85, + 46, + 56, + 115, + 55, + 380, + 90, + 440, + 70, + 63, + 55, + 100, + 150, + 55, + 125, + 32, + 90, + 95, + 115, + 180, + 63, + 170, + 110, + 120, + 175, + 56, + 48, + 115, + 295, + 175, + 500, + 180, + 48, + 41, + 70, + 370, + 45, + 110, + 85, + 235, + 145, + 190, + 100, + 450, + 60, + 59.5, + 120, + 58, + 52, + 98, + 43, + 300, + 36, + 230, + 28, + 65, + 30, + 100, + 45, + 60, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 40, + 32.75, + 120, + 68, + 75, + 70, + 200, + 150, + 100, + 120, + 110, + 75, + 68, + 33, + 78, + 52, + 200, + 75, + 350, + 85, + 70, + 220, + 75, + 180, + 55, + 90, + 35, + 95, + 65, + 160, + 185, + 210, + 100, + 75, + 55, + 185, + 55, + 120, + 50, + 47, + 62, + 70, + 58, + 90, + 210, + 240, + 85, + 120, + 185, + 80, + 65, + 75, + 124, + 36, + 188, + 95, + 260, + 90, + 35, + 40, + 220, + 60, + 65, + 140, + 160, + 55, + 160, + 69, + 130, + 36, + 110, + 46, + 170, + 33, + 100, + 110, + 82, + 450, + 68, + 250, + 265, + 170, + 130, + 85, + 130, + 75, + 200, + 80, + 290, + 300, + 125, + 70, + 55, + 72, + 95, + 63, + 95, + 135, + 45, + 140, + 58, + 90, + 55, + 160, + 100, + 90, + 185, + 28, + 95, + 300, + 150, + 97, + 52, + 350, + 265, + 115, + 45, + 58, + 62, + 180, + 45, + 67, + 500, + 60, + 40, + 400, + 45, + 300, + 85, + 350, + 48, + 55, + 38, + 100, + 70, + 60, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 50, + 55, + 125, + 270.000009, + 270, + 73, + 85, + 80, + 50, + 65, + 70, + 120, + 200, + 43, + 55.5, + 120, + 50, + 200, + 48, + 145, + 125, + 75, + 370, + 110, + 65, + 49, + 135, + 235, + 56, + 250, + 220, + 110, + 92, + 53, + 100, + 45, + 37, + 400, + 60, + 100, + 320, + 140, + 210, + 35, + 95, + 158, + 130, + 40, + 140, + 90, + 120, + 55, + 90, + 56, + 470, + 140, + 38, + 300, + 195, + 130, + 185, + 500, + 65, + 160, + 140, + 40, + 40, + 80, + 42, + 195, + 70, + 150, + 40, + 75, + 200, + 50, + 60, + 350, + 98, + 160, + 26, + 190, + 140, + 110, + 450, + 450, + 150, + 45, + 400, + 185, + 35, + 60, + 71, + 35, + 175, + 75, + 235, + 38, + 350, + 50, + 69, + 100, + 65, + 87, + 100, + 150, + 45, + 78, + 57, + 130, + 68, + 250, + 120, + 55, + 190, + 275, + 34, + 55, + 480, + 38, + 80, + 250, + 90, + 170, + 165, + 63, + 30, + 60, + 185, + 45, + 55, + 75, + 160, + 135, + 45, + 65, + 227, + 165, + 62, + 130, + 35, + 65, + 65, + 130, + 70, + 170, + 160, + 70, + 190, + 51, + 130, + 78, + 80, + 35, + 55, + 50, + 280, + 65, + 105, + 75, + 45, + 80, + 45, + 72, + 125, + 75, + 88, + 55, + 85, + 170, + 54, + 77, + 170, + 120, + 52, + 69, + 37, + 65, + 175, + 50, + 87, + 48, + 10, + 160, + 60, + 70, + 35, + 36, + 90, + 300, + 47, + 80, + 350, + 120, + 165, + 38, + 230, + 42, + 45, + 85, + 100, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 65, + 160, + 75, + 53, + 75, + 140, + 75, + 200, + 88, + 110, + 65, + 110, + 57, + 160, + 77, + 95, + 63, + 77, + 60, + 48, + 480, + 73, + 33, + 58, + 55, + 47, + 380, + 55, + 60, + 420, + 58, + 50, + 75, + 130, + 80, + 70, + 230, + 130, + 51, + 50, + 67, + 320, + 38, + 90, + 175, + 68, + 68, + 95, + 155, + 80, + 51, + 200, + 165, + 90, + 75, + 60, + 150, + 145, + 45, + 20, + 53, + 245, + 75, + 140, + 130, + 165, + 230, + 25, + 250, + 110, + 35, + 40, + 75, + 50, + 40, + 78, + 85, + 72, + 51, + 100, + 65, + 73, + 80, + 55, + 420, + 125, + 54, + 49, + 50, + 80, + 320, + 235, + 165, + 60, + 65, + 59.5, + 220, + 53, + 250, + 56, + 75, + 90, + 150, + 45, + 32, + 90, + 58, + 280, + 120, + 33, + 400, + 65, + 175, + 69, + 70, + 45, + 125, + 71, + 150, + 210, + 120, + 120, + 100, + 70, + 97, + 75, + 92, + 37, + 120, + 72, + 35, + 70, + 112, + 65, + 96, + 37, + 230, + 60, + 70, + 270, + 40, + 62, + 80, + 170, + 130, + 60.5, + 45, + 26.4375, + 105, + 100, + 280, + 98, + 275, + 115, + 38, + 90, + 45, + 100, + 52, + 35, + 59, + 70, + 130, + 155, + 145, + 75, + 75, + 59, + 73, + 125, + 150, + 67, + 100, + 55, + 40, + 180, + 390, + 55, + 35, + 56, + 60, + 75, + 52, + 175, + 72, + 57, + 55, + 290, + 55, + 67, + 180, + 65, + 98, + 120, + 340, + 80, + 55, + 150, + 70, + 110, + 80, + 65, + 70, + 110, + 100, + 140, + 380, + 85, + 108, + 49, + 88, + 140, + 59, + 140, + 125, + 95, + 57, + 135, + 60, + 30, + 110, + 400, + 76, + 155, + 70, + 85, + 51.5, + 36, + 85, + 100, + 50, + 52, + 100, + 205, + 160, + 54, + 300, + 180, + 110, + 60, + 320, + 115, + 90, + 53, + 170, + 35, + 280, + 80, + 190, + 45, + 43, + 140, + 45, + 240, + 58, + 180, + 205, + 180, + 95, + 190, + 58, + 48, + 65, + 95, + 45, + 150, + 51, + 38, + 415, + 145, + 80, + 57, + 55, + 300, + 55, + 75, + 180, + 240, + 95, + 33, + 135, + 75, + 450, + 125, + 120, + 45, + 80, + 62, + 250, + 45, + 45, + 35, + 200, + 53, + 110, + 92, + 59, + 126, + 35, + 37, + 60, + 75, + 68, + 60, + 58, + 78, + 240, + 140, + 45, + 57, + 110, + 72, + 85, + 57, + 75, + 140, + 95, + 53, + 72, + 220, + 35, + 120, + 38, + 55, + 220, + 100, + 42, + 50, + 160, + 90, + 37, + 57, + 350, + 350, + 120, + 180, + 35, + 95, + 115, + 300, + 400, + 420, + 400, + 90, + 220, + 33, + 90, + 57, + 200, + 500, + 160, + 130, + 78, + 220, + 200, + 35, + 26, + 85, + 54, + 70, + 500, + 68, + 58, + 75, + 250, + 200, + 70, + 50, + 43, + 135, + 98, + 75, + 90, + 230, + 320, + 57, + 320, + 160, + 53, + 400, + 200, + 45, + 130, + 37, + 30, + 48, + 130, + 155, + 59, + 95, + 75, + 135, + 75, + 44, + 39, + 73, + 35, + 180, + 50, + 35, + 260, + 69.9, + 85, + 170, + 80, + 120, + 75, + 75, + 39.6, + 57, + 120, + 70, + 30, + 56, + 80, + 130, + 85, + 320, + 65, + 53, + 51, + 97, + 125, + 120, + 60, + 250, + 88, + 45, + 45, + 92, + 75, + 57, + 68, + 73, + 110, + 220, + 65, + 350, + 87, + 67, + 65, + 95, + 110, + 280, + 85, + 85, + 110, + 46, + 85, + 380, + 150, + 56, + 56, + 70, + 29, + 79, + 60, + 155, + 85, + 50, + 105, + 56, + 75, + 60, + 105, + 55, + 130, + 100, + 450, + 45, + 320, + 55, + 55, + 38, + 125, + 115, + 75, + 85, + 45, + 155, + 85, + 75, + 230, + 37, + 45, + 120, + 75, + 65, + 65, + 110, + 95, + 55, + 65, + 80, + 35, + 190, + 95, + 260, + 90, + 50, + 52, + 77, + 150, + 88, + 75, + 90, + 85, + 170, + 55, + 120, + 41, + 55, + 63, + 68, + 45, + 27, + 100, + 320, + 57, + 48, + 250, + 39, + 85, + 55, + 125, + 120, + 100, + 97, + 75, + 50, + 38, + 320, + 100, + 65, + 55, + 360, + 55, + 63, + 120, + 43, + 70, + 60, + 60, + 65, + 175, + 150, + 130, + 70, + 38, + 90, + 270, + 440, + 100, + 180, + 220, + 38, + 55, + 53, + 47.5, + 95, + 70, + 48, + 60, + 120, + 40, + 110, + 75, + 95, + 55, + 80, + 35, + 210, + 95, + 260, + 65, + 72, + 175, + 140, + 70, + 50, + 65, + 46, + 90, + 130, + 50, + 52, + 78, + 67, + 155, + 210, + 225, + 185, + 80, + 55, + 180, + 280, + 38, + 260, + 40, + 60, + 85, + 65, + 45, + 58, + 63, + 78, + 100, + 58, + 110, + 360, + 10, + 70, + 65, + 65.000009, + 57, + 60, + 45, + 83, + 65, + 165, + 120, + 45, + 58, + 55, + 60, + 35, + 77, + 46, + 195, + 74, + 100, + 130, + 165, + 60, + 47, + 180, + 170, + 65, + 70, + 23.8, + 100, + 59, + 60, + 70, + 150, + 175, + 40, + 140, + 300, + 180, + 75, + 75, + 230, + 70, + 65, + 65, + 48.5, + 75, + 110, + 75, + 60, + 45, + 230, + 64, + 75, + 78, + 45, + 380, + 155, + 380, + 120, + 68, + 67, + 80, + 110, + 170, + 79.5, + 450, + 60, + 270, + 330, + 90, + 65, + 95, + 57, + 85, + 55, + 160, + 41, + 105, + 80, + 400, + 450, + 75, + 69, + 76, + 60, + 155, + 100, + 85, + 80, + 120, + 185, + 185, + 85, + 130, + 69, + 40, + 110, + 48, + 52, + 98, + 39, + 60, + 49, + 110, + 125, + 20, + 70, + 170, + 65, + 65, + 85, + 280, + 90, + 33, + 95, + 395, + 70, + 65, + 60, + 70, + 65, + 65, + 75, + 57, + 45, + 310, + 33, + 40, + 110, + 175, + 150, + 300, + 70, + 42, + 115, + 170, + 35, + 370, + 110, + 40, + 80, + 59, + 150, + 120, + 400, + 47, + 250, + 42, + 140, + 300, + 195, + 110, + 130, + 50, + 85, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 55, + 150, + 130, + 65, + 150, + 64, + 220, + 75, + 60, + 110, + 300, + 210, + 80, + 120, + 30, + 350, + 48, + 155, + 95, + 47, + 200, + 65, + 370, + 68, + 110, + 95, + 75, + 48, + 400, + 75, + 50, + 40, + 165, + 47, + 70, + 170, + 70, + 75, + 55, + 120, + 110, + 50, + 48, + 63, + 395, + 330, + 55, + 65, + 190, + 100, + 165, + 75, + 47.5, + 60, + 36, + 190, + 150, + 75, + 380, + 55, + 195, + 135, + 170, + 85, + 65, + 145, + 70, + 125, + 53.1, + 180, + 380, + 78, + 59, + 33, + 175, + 90, + 75, + 58, + 125, + 125, + 120, + 115, + 37, + 85, + 65, + 100, + 170, + 128, + 56, + 145, + 300.000009, + 48, + 55, + 50, + 55, + 140, + 70, + 85, + 75, + 95, + 90, + 125, + 38, + 40, + 90, + 56, + 360, + 85, + 45, + 80, + 89, + 137, + 45, + 59, + 48, + 100, + 160, + 79, + 225, + 75, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 43, + 400, + 135, + 50, + 50, + 62, + 50, + 69, + 39, + 55, + 55, + 65, + 79, + 350, + 65, + 80, + 190, + 56, + 85, + 112, + 75, + 150, + 70, + 46, + 45, + 90, + 125, + 69, + 60, + 45, + 65, + 125, + 400, + 90, + 85, + 285, + 85, + 180, + 400, + 280, + 50, + 68, + 170, + 37, + 78, + 35, + 180, + 50, + 52, + 95, + 95, + 81, + 140, + 350, + 115, + 55, + 90, + 200, + 33, + 180, + 135, + 52.5, + 105, + 140, + 75, + 300, + 115, + 130, + 75, + 300, + 59, + 98, + 37, + 170, + 250, + 56, + 49, + 47, + 130, + 88, + 170, + 57, + 150, + 200, + 195, + 138, + 160, + 45, + 48, + 85, + 57, + 65, + 210, + 55, + 90, + 170, + 38, + 366, + 40, + 110, + 130, + 80, + 160, + 70, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 38, + 500, + 92, + 85, + 67, + 135, + 135, + 75, + 65, + 42, + 30, + 120, + 55, + 76, + 135, + 240, + 455, + 38, + 300, + 500, + 90, + 98, + 70, + 295, + 33, + 75, + 65, + 85, + 100, + 450, + 85, + 75, + 90, + 75, + 150, + 120, + 75, + 49, + 30, + 60, + 50, + 65, + 79.5, + 85, + 450, + 65, + 82, + 55, + 190, + 150, + 270, + 62, + 110, + 85, + 90, + 180, + 180, + 150, + 75, + 48, + 120, + 130, + 170, + 69, + 170, + 270, + 75, + 35, + 80, + 150, + 45, + 51, + 420, + 65, + 60, + 125, + 70, + 90, + 160, + 70, + 75, + 105, + 53, + 220, + 90, + 46, + 63, + 130, + 68, + 49.247, + 88, + 99.5, + 150, + 95, + 85, + 100, + 75, + 55, + 130, + 51, + 59, + 105, + 200, + 70, + 95, + 120, + 56, + 70, + 75, + 110, + 95, + 145, + 60, + 50, + 280, + 70, + 85, + 60, + 120, + 85, + 65, + 41, + 250, + 45, + 44, + 135, + 98, + 58, + 420, + 64, + 100, + 135, + 85, + 155, + 330, + 450, + 63, + 120, + 200, + 72, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 60, + 90, + 155, + 45, + 80, + 79, + 125, + 130, + 300, + 173, + 85, + 300, + 50, + 120, + 30, + 50, + 60, + 110, + 78, + 41, + 110, + 73, + 500, + 135, + 155, + 55, + 450, + 165, + 65, + 150, + 57, + 62, + 75, + 95, + 65, + 80, + 55, + 150, + 50, + 60, + 37, + 195, + 120, + 62, + 55, + 75, + 76, + 280, + 50, + 43, + 95, + 46, + 70, + 150, + 165, + 28, + 48.5, + 160, + 48, + 250, + 53, + 105, + 55, + 130, + 50, + 42, + 100, + 35, + 40, + 230, + 135, + 45, + 180, + 68, + 230, + 130, + 90, + 280, + 85, + 65, + 135, + 125, + 130, + 180, + 57, + 80, + 300, + 350, + 250, + 50, + 105, + 95, + 45, + 110, + 300, + 88, + 115, + 120, + 38, + 86, + 55, + 42, + 110, + 80, + 75, + 53, + 45, + 110, + 80, + 95, + 120, + 54, + 260, + 300, + 35, + 36, + 110, + 240, + 53, + 350, + 135, + 110, + 75, + 165, + 160, + 57.99, + 250, + 300, + 180, + 50, + 55, + 70, + 190, + 450, + 39, + 50, + 85, + 65, + 75, + 85, + 80, + 99, + 250, + 57, + 80, + 160, + 37, + 95, + 60, + 125, + 41, + 40, + 59, + 90, + 90, + 75, + 205, + 55, + 100, + 48, + 48, + 125, + 260, + 100, + 65, + 128, + 300, + 90, + 210, + 250, + 330, + 130, + 78, + 125, + 160, + 170, + 52, + 42, + 85, + 120, + 37, + 55, + 90, + 92, + 210, + 150, + 128, + 105, + 70, + 56, + 85, + 35, + 390, + 80, + 110, + 160, + 37, + 80, + 180, + 79, + 180, + 60, + 80, + 130, + 175, + 110, + 150, + 240, + 40, + 90, + 70, + 115, + 80, + 52, + 70, + 48, + 250, + 80, + 120, + 95, + 78, + 350, + 90, + 140, + 70, + 70, + 88, + 70, + 120, + 53, + 280, + 33.5, + 63, + 160, + 85, + 69, + 42, + 31, + 90, + 110, + 70, + 85, + 65, + 33, + 370, + 110, + 52, + 110, + 190, + 205, + 47, + 110, + 44, + 70, + 75, + 190, + 55, + 160, + 175, + 55, + 90, + 70, + 65, + 220, + 125, + 135, + 55, + 150, + 95, + 55, + 69, + 55, + 450, + 39, + 85, + 140, + 49, + 95, + 410, + 110, + 230, + 350, + 70, + 125, + 86, + 57, + 100, + 38, + 115, + 90, + 160, + 64, + 57, + 165, + 43, + 230, + 110, + 300, + 70, + 65, + 75, + 45, + 45, + 45, + 90, + 40, + 55, + 69, + 45, + 48, + 70, + 73, + 36, + 55, + 70, + 54, + 280, + 500, + 150, + 135, + 70, + 350, + 45, + 245, + 65, + 90, + 168, + 110, + 45, + 45, + 65, + 52, + 220, + 70, + 125, + 120, + 125, + 32, + 130, + 29, + 180, + 60, + 40, + 250, + 73, + 125, + 90, + 80, + 68, + 110, + 130, + 75, + 230, + 170, + 45, + 80, + 60, + 58, + 63, + 72, + 50, + 330, + 57.1725, + 67, + 55, + 380, + 85, + 38, + 50, + 48, + 90, + 245, + 195, + 90, + 270, + 360, + 160, + 120, + 130, + 100, + 39, + 47, + 49, + 420, + 50, + 500, + 185, + 310, + 40, + 110, + 175, + 65, + 185, + 85, + 60, + 80, + 380, + 200, + 150, + 72, + 50, + 105, + 150, + 155, + 105, + 270, + 90, + 240, + 49.5, + 120, + 95, + 50, + 40, + 68, + 95, + 80, + 57, + 120, + 58, + 140, + 120, + 35, + 90, + 64, + 165, + 55, + 61, + 80, + 170, + 210, + 68, + 150, + 49, + 75, + 140, + 240, + 55, + 170, + 400, + 125, + 50, + 80, + 110, + 75, + 40, + 67, + 75, + 92, + 53, + 115, + 165, + 400, + 105, + 55, + 80, + 250, + 240, + 27, + 90, + 100, + 52, + 76, + 35, + 155, + 76, + 49, + 250, + 69, + 65, + 53, + 120, + 85, + 85, + 195, + 107, + 380, + 80, + 120, + 300, + 200, + 380, + 130, + 128, + 160, + 87, + 36.5, + 140, + 120, + 160, + 76, + 98, + 35, + 58, + 45, + 85, + 52, + 60, + 195, + 77, + 90, + 168, + 98, + 160, + 58, + 125, + 130, + 50, + 260, + 69, + 35, + 79, + 68, + 40, + 62, + 35, + 110, + 50, + 135, + 90, + 49, + 195, + 57, + 85, + 400, + 63, + 135, + 60, + 60, + 45, + 155, + 95, + 160, + 60, + 75, + 90, + 85, + 400, + 85, + 135, + 165, + 68, + 150, + 68, + 36, + 65, + 65, + 105, + 45, + 145, + 70, + 250, + 230, + 180, + 85, + 140, + 445, + 40, + 82, + 58, + 90, + 33, + 98.5, + 390, + 75, + 57, + 190, + 40, + 150, + 75, + 45, + 180, + 170, + 54, + 100, + 50, + 51, + 140, + 58, + 200, + 107, + 250, + 55, + 78, + 120, + 44, + 55, + 38, + 98, + 36, + 38, + 40, + 67, + 50, + 85, + 120, + 40, + 170, + 185, + 72, + 125, + 54.5, + 200, + 30, + 290, + 47, + 500, + 175, + 34, + 180, + 75, + 100, + 38, + 115, + 68, + 75, + 55, + 98, + 60, + 55, + 149.5, + 170, + 105, + 160, + 280, + 275, + 60, + 130, + 105, + 83, + 58, + 38, + 48, + 70, + 65, + 65, + 100, + 160, + 190, + 53, + 245, + 140, + 75, + 155, + 32, + 120, + 148, + 150, + 390, + 68, + 500, + 165, + 40, + 68, + 55, + 175, + 120, + 89, + 285, + 105, + 50, + 100, + 190, + 280, + 235, + 150, + 65, + 38, + 120, + 55, + 45, + 260, + 80, + 130, + 150, + 35, + 175, + 64, + 50, + 73, + 138, + 150, + 89, + 70, + 75, + 110, + 80, + 118, + 330, + 65, + 220, + 150, + 340, + 80, + 80, + 60, + 110, + 180, + 140, + 230, + 55, + 222, + 95, + 47, + 85, + 75, + 100, + 85, + 65, + 280, + 265, + 170, + 38, + 51, + 33, + 160, + 370, + 75, + 33, + 95, + 38, + 120, + 48, + 145, + 40, + 200, + 80, + 11.5, + 125, + 75, + 135, + 500, + 90, + 63, + 40, + 160, + 67, + 79, + 145, + 160, + 60, + 75, + 75, + 183, + 130, + 75, + 50, + 59, + 65, + 40, + 37, + 55, + 170, + 31, + 33, + 61, + 85, + 55, + 88, + 70, + 47, + 115, + 145, + 145, + 50, + 185, + 240, + 55, + 56, + 65, + 65, + 160, + 88, + 120, + 80, + 155, + 50, + 200, + 170, + 50, + 55, + 58, + 66, + 62, + 270, + 45, + 72, + 60, + 55, + 175, + 165, + 130, + 120, + 380, + 330, + 43, + 140, + 70, + 35, + 155, + 250, + 40, + 60, + 380, + 100, + 120, + 65, + 68, + 130, + 500, + 76, + 68, + 60, + 160, + 115, + 350, + 120, + 160, + 125, + 77.5, + 125, + 70, + 160, + 150, + 50, + 99, + 70, + 45, + 98, + 77, + 59, + 70, + 95, + 60, + 55, + 125, + 95, + 47, + 170, + 42, + 35, + 55, + 90, + 190, + 48, + 60, + 450, + 450, + 225, + 50, + 60, + 90, + 68, + 185, + 77, + 160, + 270, + 170, + 126, + 37, + 49, + 120.000009, + 130, + 480, + 145, + 70, + 100, + 65, + 170, + 400, + 160, + 65, + 340, + 33, + 45, + 105, + 90, + 130, + 190, + 42, + 130, + 140, + 180, + 215, + 76, + 250, + 75, + 75, + 60, + 140, + 250, + 480, + 150, + 35, + 165, + 150, + 70, + 45, + 65, + 135, + 130, + 85, + 95, + 180, + 40, + 60, + 48, + 62, + 190, + 260, + 88, + 200, + 180, + 120, + 75, + 75, + 90, + 35, + 400, + 59.5, + 99, + 150, + 400, + 135, + 295, + 170, + 110, + 410, + 115, + 100, + 78, + 135, + 105, + 190, + 120, + 120, + 280, + 130, + 48, + 200, + 280, + 80, + 59, + 33, + 80, + 230, + 115, + 135, + 50, + 135, + 22, + 60, + 85, + 230, + 47, + 265, + 135, + 72, + 82, + 57.5, + 56, + 55, + 37, + 37, + 130, + 140, + 220, + 65, + 86, + 100, + 40, + 80, + 33, + 100, + 65, + 85, + 78, + 140, + 45, + 95, + 75, + 55, + 190, + 39, + 370, + 95, + 55, + 53.5, + 370, + 330, + 97, + 140, + 60, + 50, + 120, + 68, + 105, + 43, + 62.99, + 150, + 100, + 75, + 78, + 52, + 59.5, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 45, + 120, + 60, + 400, + 140, + 150, + 80, + 120, + 49, + 70, + 38, + 73, + 85, + 35, + 65, + 205, + 105, + 48, + 37, + 125, + 110, + 52, + 50, + 150, + 48, + 40, + 50, + 120, + 77, + 55, + 126, + 230, + 40, + 120, + 165, + 160, + 38, + 190, + 55, + 130, + 190, + 64, + 95, + 70, + 130, + 75, + 92, + 11, + 33, + 98, + 289, + 80, + 35, + 70, + 100, + 35, + 120, + 85, + 200, + 58, + 105, + 58, + 57, + 90, + 35, + 67, + 83, + 55, + 110, + 125, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 10, + 125, + 95, + 150, + 140, + 125, + 420, + 80, + 280, + 58, + 48, + 55, + 125, + 50, + 245, + 40, + 53, + 75, + 150, + 61, + 300, + 80, + 85, + 100, + 115, + 77, + 57, + 85, + 80, + 220, + 52, + 55, + 50, + 60, + 90, + 58, + 50, + 185, + 75, + 265, + 40, + 75, + 115, + 105, + 60, + 180, + 165, + 60, + 38, + 63, + 60, + 95, + 67, + 100, + 170, + 230, + 44, + 178, + 350, + 65, + 96, + 17.5, + 70, + 380, + 90, + 50, + 180, + 80, + 79.5, + 270, + 12, + 370, + 72, + 140, + 75, + 115, + 90, + 130, + 80, + 200, + 45, + 38, + 200, + 110, + 75, + 36, + 59, + 98, + 52, + 210, + 55, + 270, + 58, + 175, + 110, + 290, + 130, + 130, + 65, + 280, + 130, + 300, + 58, + 225, + 70, + 135, + 165, + 29, + 55, + 95, + 45, + 55, + 115, + 90, + 80, + 90, + 280, + 160, + 90, + 450, + 57, + 38, + 70, + 18.975, + 120, + 45, + 90, + 240, + 80, + 95, + 280, + 55, + 150, + 80, + 10, + 80, + 350, + 85, + 37, + 50, + 80, + 285, + 115, + 65, + 135, + 160, + 35, + 130, + 55, + 67, + 78, + 90, + 65, + 31, + 90, + 100, + 125, + 80, + 58, + 86, + 175, + 45, + 58, + 105, + 120, + 45, + 320, + 135, + 270, + 70, + 38, + 48, + 85, + 200, + 125, + 185, + 280, + 95, + 25, + 115, + 85, + 115, + 185, + 120, + 110, + 200, + 42, + 170, + 260, + 250, + 58, + 280, + 175, + 500, + 65, + 125, + 45, + 43, + 60, + 80, + 198, + 70, + 40, + 16.675, + 70, + 300, + 170, + 250, + 190, + 140.000009, + 120, + 46, + 92, + 300, + 76, + 230, + 45, + 46, + 50, + 170, + 50, + 47, + 55, + 130, + 380, + 85, + 190, + 380, + 50, + 52, + 72, + 85, + 66, + 130, + 65, + 82, + 70, + 58, + 52, + 46, + 400, + 90, + 87, + 150, + 47, + 270, + 39, + 80, + 75, + 70, + 275, + 195, + 45, + 70, + 150, + 130, + 75, + 105, + 35, + 150, + 37, + 140, + 97, + 130, + 60, + 80, + 160, + 180, + 59, + 100, + 250, + 160, + 47, + 165, + 55, + 160, + 47, + 45, + 65, + 55, + 65, + 110, + 155, + 81, + 100, + 165, + 44, + 90, + 300, + 77.5, + 53, + 225, + 48, + 110, + 80, + 95, + 70, + 160, + 140, + 50, + 68, + 50, + 69, + 50, + 410, + 150, + 68, + 110, + 43, + 47, + 80, + 79, + 125, + 160, + 125, + 67, + 35, + 60, + 140, + 420, + 78, + 170, + 33, + 200, + 55, + 165, + 195, + 85, + 170, + 74, + 420, + 280, + 45, + 75, + 230, + 85, + 68, + 55, + 190, + 380, + 75, + 65, + 125, + 47, + 47, + 45, + 55, + 52, + 55, + 170, + 135, + 195, + 230, + 250, + 270, + 78, + 43, + 65, + 55, + 95, + 120, + 95, + 170, + 76, + 80, + 48, + 55, + 197, + 130, + 58, + 198, + 180, + 68, + 100, + 35, + 95, + 140, + 49, + 90, + 57, + 250, + 125, + 350, + 112, + 75, + 80, + 75, + 40, + 170, + 100, + 145, + 130, + 88, + 42, + 300, + 82, + 45, + 55, + 58, + 65, + 38, + 40, + 170, + 120, + 150, + 40, + 90, + 100, + 65, + 75, + 59, + 100, + 120, + 45, + 50, + 385, + 165, + 45, + 110, + 93, + 50, + 170, + 78, + 450, + 78, + 120, + 65, + 200, + 70, + 47, + 65, + 76, + 75, + 90, + 320, + 63, + 48, + 400, + 35, + 110, + 48, + 100, + 55, + 120, + 165, + 110, + 175, + 42, + 75, + 77, + 75, + 198, + 60, + 120, + 35, + 100, + 45, + 100, + 63, + 50, + 58, + 87, + 80, + 65, + 63, + 400, + 115, + 72, + 34, + 170, + 30, + 70, + 250, + 350, + 36.5, + 52, + 275, + 36, + 130, + 30, + 155, + 60, + 150, + 270, + 350, + 100, + 51, + 45, + 49, + 60, + 65, + 130, + 165, + 90, + 75, + 200, + 50, + 240, + 135, + 150, + 44, + 60, + 95, + 150, + 95, + 55, + 70, + 112, + 120, + 180, + 55, + 95, + 130, + 75, + 45, + 300, + 52.8, + 65, + 44, + 120, + 120, + 160, + 235, + 43, + 120, + 120, + 78, + 65, + 37, + 220, + 110, + 150, + 80, + 135, + 73, + 160, + 200, + 68, + 35, + 175, + 170, + 150, + 80, + 90, + 60, + 110, + 60, + 190, + 51, + 75, + 220, + 43, + 85, + 65, + 63, + 230, + 67, + 33, + 75, + 340, + 63, + 180, + 155, + 50, + 36, + 95, + 75, + 60, + 420, + 150, + 160, + 70, + 85, + 95, + 35, + 160, + 72, + 200, + 85, + 60, + 38, + 120, + 198, + 120, + 90, + 46, + 285, + 65, + 49, + 50, + 130, + 96, + 68, + 62, + 350, + 50, + 135, + 90, + 120, + 80, + 115, + 120, + 55, + 135, + 180, + 150, + 65, + 150, + 48, + 107, + 85, + 450, + 150, + 130, + 83, + 55, + 145, + 108, + 70, + 230, + 220, + 60, + 70, + 75, + 60, + 70, + 130, + 120, + 75, + 60, + 130, + 55, + 75, + 250, + 76, + 65, + 40, + 70, + 115, + 55, + 95, + 95, + 38, + 70, + 45, + 150, + 80, + 60, + 85, + 37, + 220, + 120, + 85, + 130, + 47, + 70, + 26, + 59, + 155, + 75, + 75, + 140, + 31, + 350, + 40, + 52, + 84, + 76, + 235, + 130, + 190, + 45, + 57, + 85, + 45, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 90, + 98, + 31, + 125, + 70, + 390, + 185, + 60, + 82, + 75, + 250, + 85, + 75, + 160, + 160, + 350, + 20, + 70, + 125, + 120, + 58, + 140, + 62, + 110, + 40, + 35, + 95, + 130, + 130, + 55, + 67, + 85, + 34, + 78, + 49, + 75, + 63, + 38, + 50, + 45, + 140, + 45, + 130, + 110, + 58, + 275, + 40, + 85, + 33, + 200, + 450, + 200, + 47, + 260, + 100, + 33, + 170, + 33, + 260, + 105, + 56, + 33, + 200, + 350, + 62, + 44, + 170, + 150, + 140, + 250, + 105, + 150, + 165, + 40, + 87, + 60, + 150, + 69, + 55, + 53, + 60, + 68, + 46, + 80, + 120, + 180, + 65, + 45, + 80, + 160, + 98, + 70, + 48, + 78, + 50, + 280, + 48, + 75, + 180, + 180, + 230, + 75, + 330, + 55, + 200, + 85, + 60, + 85, + 60, + 195, + 55, + 120, + 140, + 40, + 170, + 56, + 185, + 110, + 120, + 70, + 280, + 65, + 70, + 450, + 120, + 14.8, + 95, + 180, + 60, + 70, + 85, + 49.5, + 47, + 75, + 190, + 105, + 270, + 160, + 165, + 220, + 75, + 50, + 80, + 55, + 93, + 95, + 50, + 135, + 52, + 78, + 45, + 50, + 105, + 140, + 45, + 110, + 190, + 64, + 68, + 93, + 78, + 270, + 140, + 41, + 250, + 130, + 40, + 160, + 160, + 75, + 69, + 100, + 58, + 200, + 100, + 59, + 125, + 88, + 80, + 130, + 58, + 82.5, + 75, + 50, + 43, + 55, + 75, + 115, + 35, + 68, + 75, + 190, + 78, + 69, + 80, + 69, + 500, + 90, + 295, + 83, + 100, + 350, + 100, + 67, + 37, + 60, + 140, + 48, + 50, + 70, + 47, + 200, + 70, + 40, + 85, + 70, + 75, + 400, + 45, + 400, + 64, + 60, + 95, + 65, + 80, + 165, + 30, + 45, + 60, + 80, + 63, + 60, + 85, + 65, + 135, + 70, + 105, + 300, + 250, + 67, + 95, + 55, + 32, + 120, + 50, + 42, + 120, + 102, + 50, + 62, + 480, + 38, + 90, + 48, + 36, + 125, + 190, + 65, + 65, + 150, + 90, + 80, + 75, + 58, + 57, + 350, + 70, + 85, + 120, + 87, + 85, + 145, + 35, + 115, + 55, + 27, + 72, + 88, + 200, + 120, + 400, + 70, + 46, + 270, + 120, + 80, + 39, + 115, + 300, + 190, + 400, + 65, + 50, + 38, + 100, + 55, + 75, + 66, + 140, + 37, + 45, + 185, + 41, + 140, + 116, + 350, + 46, + 65, + 50, + 160, + 62, + 39, + 300, + 50, + 69, + 80, + 350, + 75, + 450, + 80, + 100, + 340, + 45, + 52, + 175, + 45, + 70, + 82, + 70, + 32, + 47, + 59, + 125, + 49, + 250, + 250, + 200, + 125, + 78, + 130, + 50, + 70, + 190, + 180, + 300, + 77.5, + 55, + 200, + 95, + 95, + 60, + 170, + 500, + 49, + 32, + 150, + 56, + 120, + 42, + 120, + 100, + 40, + 85, + 40, + 60, + 70, + 120, + 75, + 80, + 70, + 105, + 50, + 40, + 56, + 98, + 60, + 40, + 20, + 225, + 70, + 65, + 368, + 160, + 63, + 58, + 85, + 170, + 170, + 69, + 380, + 115, + 100, + 130, + 38, + 95, + 500, + 100, + 37, + 220, + 85, + 125, + 105, + 55, + 39.8, + 500, + 140, + 160, + 135, + 80, + 70, + 115, + 60, + 45, + 120, + 80, + 40, + 210, + 110, + 36, + 82, + 50, + 230, + 37, + 25, + 145, + 120, + 65, + 105, + 79.5, + 190, + 75, + 180, + 100, + 58, + 400, + 90, + 110, + 130, + 90, + 210, + 39, + 62, + 235, + 70, + 40, + 180, + 190, + 150, + 37.5, + 39, + 55, + 70, + 155, + 41, + 80, + 165, + 65, + 280, + 47, + 145, + 180, + 108, + 230, + 95, + 110, + 67, + 45, + 57, + 100, + 24, + 36, + 47, + 40, + 75, + 180, + 85, + 65, + 120, + 88, + 110, + 45, + 67.5, + 65, + 180, + 310, + 190, + 80, + 100, + 50, + 220, + 270, + 270, + 88, + 290, + 250, + 370, + 120, + 280, + 85, + 80.000009, + 36, + 350, + 59.5, + 105, + 105, + 256, + 70, + 48.5, + 60, + 135, + 220, + 115, + 160, + 70, + 110, + 280, + 50, + 260, + 200, + 330, + 105, + 41.8, + 140, + 140, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 75, + 120, + 88, + 50, + 74, + 150, + 50, + 42, + 100, + 105, + 60, + 220, + 60, + 47, + 140, + 80, + 65, + 63, + 100, + 300, + 205, + 76, + 320, + 70, + 170, + 35, + 100, + 180, + 50, + 50, + 65, + 130, + 85, + 170, + 90, + 82, + 56, + 95, + 100, + 55, + 45, + 83, + 53, + 70, + 130, + 200, + 53, + 100, + 150, + 57, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 260, + 38, + 370, + 140, + 60, + 180, + 290, + 150, + 200, + 64, + 79.5, + 60, + 78, + 100, + 70, + 115, + 63, + 45, + 135, + 110, + 40, + 95, + 57, + 95, + 140, + 38, + 47, + 50, + 200, + 90, + 110, + 90, + 185, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 70, + 57, + 190, + 69, + 100, + 105, + 52, + 200, + 90, + 38, + 130, + 75, + 40, + 165, + 90, + 82, + 50, + 38, + 33, + 85, + 230, + 350, + 55, + 160, + 45, + 285, + 140, + 105, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 120, + 50, + 42, + 55, + 110, + 450, + 100, + 76, + 149, + 200, + 80, + 100, + 125, + 75, + 110, + 87, + 450, + 170, + 75, + 80, + 48, + 10, + 40, + 125, + 160, + 105, + 450, + 290, + 165, + 120, + 56, + 27, + 35, + 90, + 175, + 95, + 120, + 110, + 37, + 38, + 65, + 38, + 55, + 60, + 69, + 42, + 78, + 120, + 60, + 110, + 115, + 95, + 60, + 130, + 175, + 400, + 135, + 105, + 59, + 33, + 88, + 50, + 49, + 75, + 150, + 125, + 110, + 90, + 80, + 62, + 88, + 90, + 53, + 99, + 50, + 150, + 66.329, + 135, + 56, + 210, + 115, + 150, + 195, + 300, + 67, + 32, + 170, + 390, + 100, + 60, + 150, + 180, + 68, + 220, + 135, + 120, + 190, + 120, + 130, + 50, + 38, + 110, + 115, + 55, + 60, + 180, + 75, + 70, + 75, + 75, + 65, + 70, + 65, + 89, + 95, + 88, + 36, + 52, + 250, + 20, + 39.5, + 135, + 190, + 200, + 55, + 47, + 36, + 46.2, + 95, + 45, + 130, + 165, + 70, + 70, + 58, + 67, + 35, + 78, + 210, + 138, + 29, + 55, + 95, + 36, + 160, + 98, + 130, + 62, + 135, + 180, + 60, + 110, + 70, + 50, + 230, + 45, + 290, + 45, + 70, + 35, + 470, + 27, + 85, + 100, + 280, + 200, + 67, + 80, + 45, + 39, + 79.5, + 75, + 100, + 75, + 20, + 200, + 65, + 250, + 34, + 41, + 155, + 185, + 96, + 205, + 65, + 230, + 145, + 35, + 260, + 70, + 80, + 40, + 55, + 58, + 103, + 210, + 260, + 45, + 209, + 130, + 78, + 180, + 175, + 52, + 55, + 85, + 45, + 205, + 480, + 160, + 69, + 140, + 43, + 38, + 85, + 285, + 120, + 150, + 72, + 45, + 80, + 220, + 250, + 110, + 69, + 68, + 150, + 77, + 65, + 83, + 34.8, + 80, + 85, + 180, + 60, + 90, + 36, + 45, + 500, + 110, + 75, + 35, + 67, + 27, + 280, + 175, + 95, + 165, + 250, + 125, + 56, + 190, + 74, + 47, + 120, + 110, + 390, + 114, + 64, + 50, + 65, + 70, + 69, + 270, + 55, + 90, + 60, + 100, + 120, + 67.5, + 46, + 50, + 150, + 75, + 78, + 65, + 105, + 270, + 58, + 320, + 410, + 63, + 65, + 38, + 210, + 66, + 50, + 110, + 75, + 93, + 120, + 75.009009, + 300, + 80, + 120, + 110, + 75, + 120, + 75, + 43, + 220, + 140, + 80, + 98, + 45, + 46, + 40, + 160, + 215, + 35, + 150, + 145, + 90, + 120, + 43, + 275, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 120, + 140, + 85, + 65, + 40, + 30, + 160, + 55, + 53, + 140, + 79.5, + 85, + 65, + 65, + 63, + 48, + 160, + 400, + 300, + 56, + 120, + 40, + 80, + 200, + 45, + 85, + 140, + 110, + 63, + 83, + 160, + 220, + 52, + 56, + 140, + 45, + 240, + 100, + 35, + 260, + 120, + 59, + 150, + 35, + 78, + 140, + 199.999, + 98, + 41, + 125, + 95, + 65, + 130, + 90, + 58, + 67.5, + 96, + 250, + 35, + 85, + 180, + 55, + 65, + 140, + 70, + 55, + 80, + 350, + 200, + 170, + 175, + 65, + 75, + 47, + 125, + 75, + 50, + 34, + 50, + 70, + 200, + 95, + 65, + 160, + 400, + 390, + 60, + 130, + 38, + 63, + 67, + 170, + 120, + 75, + 125, + 45, + 110, + 49, + 68, + 75, + 165, + 140, + 80, + 78, + 145, + 160, + 86, + 110, + 50, + 60, + 57, + 68, + 275, + 90, + 45, + 175, + 72, + 49, + 55, + 180, + 77, + 150, + 80, + 60, + 50, + 85, + 89, + 100, + 60, + 295, + 56, + 145, + 50, + 375, + 214, + 50, + 90, + 105, + 135, + 290, + 50, + 110, + 60, + 160.000009, + 165, + 33, + 122, + 49.5, + 55, + 88, + 100, + 52, + 350, + 50, + 125, + 56, + 25, + 98, + 100, + 77, + 70, + 170, + 60, + 250, + 120, + 40, + 88, + 72, + 51, + 50, + 129, + 90, + 410, + 120, + 450, + 72, + 160, + 85, + 130, + 100, + 340, + 43, + 435, + 180, + 190, + 65, + 87, + 95, + 434, + 105, + 165, + 145, + 72, + 220, + 125, + 98, + 35, + 40, + 140, + 145, + 75, + 85, + 75, + 225, + 65, + 100, + 70, + 190, + 18.5, + 200, + 120, + 38, + 40, + 115, + 325, + 110, + 198, + 135, + 65, + 180, + 92, + 368, + 84, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 93, + 98, + 250, + 200, + 42, + 270, + 95, + 155, + 95, + 110, + 68, + 295, + 39, + 175, + 30, + 55, + 49, + 400, + 55, + 52, + 95, + 50, + 100, + 70, + 57, + 55, + 41, + 48, + 180, + 280, + 100, + 55, + 47, + 59, + 65, + 110, + 52, + 160, + 140, + 35, + 112, + 60, + 205, + 66, + 72, + 130, + 40, + 10, + 34, + 55, + 60, + 82, + 47, + 190, + 73, + 48, + 150, + 100, + 53, + 170, + 65, + 90, + 220, + 85, + 62, + 38, + 45, + 95, + 200, + 70, + 120, + 60, + 120, + 400, + 120, + 45, + 61, + 60, + 32, + 120, + 55, + 41, + 95, + 50, + 75, + 280, + 155, + 70, + 85, + 65, + 48, + 100, + 250, + 390, + 75, + 155, + 165, + 43, + 45, + 85, + 105, + 195, + 55, + 65, + 62, + 55, + 70, + 100, + 270, + 60, + 105, + 40, + 120, + 58, + 115, + 16, + 62, + 300, + 47, + 100, + 80, + 120, + 120, + 140, + 75, + 120.000009, + 60, + 49.5, + 53, + 77, + 70, + 100, + 150, + 47, + 90, + 65, + 115, + 47, + 500, + 400, + 60, + 36, + 55, + 62, + 60, + 35, + 31, + 78, + 67, + 100, + 115, + 65, + 130, + 160, + 75, + 65, + 180, + 67, + 120, + 41, + 78, + 35, + 70, + 145, + 170, + 110, + 95, + 35, + 220, + 165, + 52, + 15, + 95, + 75, + 55, + 85, + 110, + 100, + 380, + 75, + 90, + 52, + 95, + 47, + 250, + 120, + 65, + 75, + 68, + 55, + 135, + 80, + 50, + 285, + 155, + 180, + 37, + 145, + 55, + 85, + 65, + 52, + 200, + 220, + 85, + 110, + 90, + 185, + 90, + 250, + 42, + 55, + 30, + 350, + 85, + 120, + 45, + 280, + 120, + 105, + 180, + 80, + 175, + 480, + 75, + 65, + 120, + 62, + 170, + 40, + 140, + 75, + 140, + 40, + 150, + 33, + 42, + 140, + 75, + 140, + 111, + 155, + 30, + 105, + 86, + 170, + 200, + 155, + 60, + 45, + 220, + 220, + 160, + 125, + 38, + 115, + 76, + 120, + 56, + 160, + 330, + 33, + 150, + 88, + 35, + 70, + 155, + 55, + 80, + 120, + 160, + 275, + 43.2, + 105, + 400, + 85, + 60, + 450, + 59, + 50, + 55, + 85, + 60, + 280, + 106, + 67, + 130, + 58, + 95, + 350.035, + 70, + 75, + 85, + 100, + 30, + 110, + 52, + 30, + 40, + 400, + 60, + 55, + 190, + 110, + 130, + 30, + 57, + 190, + 38.99, + 80, + 75, + 150, + 390, + 85, + 38, + 230, + 150, + 85, + 75, + 37, + 78, + 55, + 200, + 175, + 75, + 100, + 130, + 180, + 140, + 37, + 420, + 80, + 160, + 85, + 63, + 49, + 150, + 55, + 55, + 350, + 170, + 70, + 55, + 53, + 348, + 40, + 360, + 65, + 80, + 49.9, + 48, + 120, + 140, + 68, + 94, + 40, + 450, + 320, + 180, + 350, + 54, + 80, + 170, + 65, + 70, + 65, + 95, + 70, + 270, + 170, + 45, + 70, + 60, + 85, + 110, + 92, + 290, + 36, + 75, + 35, + 300, + 120, + 130, + 65, + 100, + 72, + 120, + 105, + 75, + 95, + 45, + 50, + 38, + 150, + 180, + 100, + 80, + 121, + 73.1, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 60, + 40, + 75, + 40, + 125, + 80, + 55, + 65, + 35, + 48, + 47, + 45, + 63, + 62, + 69, + 300, + 84, + 55, + 155, + 262, + 155, + 65, + 85, + 145, + 270, + 67, + 58, + 350, + 25, + 175, + 58, + 250, + 70, + 55, + 150.005, + 60, + 90, + 125, + 39, + 36, + 69, + 150, + 300, + 83, + 90, + 65, + 70, + 47, + 95, + 58, + 69, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 90, + 180, + 40, + 180, + 61, + 148, + 200, + 47, + 85, + 140, + 180, + 45, + 165, + 90, + 125, + 92, + 58, + 140, + 48, + 125, + 98, + 77, + 180, + 115, + 34.1, + 95, + 200, + 55, + 40, + 80 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "City=Victoria Island
Price=%{x}
count=%{y}", + "legendgroup": "Victoria Island", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "Victoria Island", + "nbinsx": 120, + "offsetgroup": "Victoria Island", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 300, + 80, + 190, + 130, + 150, + 115, + 150, + 120, + 98, + 290, + 140, + 300, + 350, + 300, + 160, + 210, + 160, + 68, + 280, + 160, + 200, + 140, + 125, + 250, + 170, + 180, + 80, + 200, + 220, + 180, + 145, + 130, + 137, + 75, + 270, + 230, + 130, + 175, + 280, + 125, + 125, + 80, + 77, + 100, + 110, + 280, + 85, + 210, + 250, + 105, + 150, + 90, + 70, + 300, + 120, + 250, + 145, + 157, + 75, + 120, + 145, + 180, + 200, + 110, + 120, + 160, + 100, + 190, + 300, + 110, + 95, + 400, + 135, + 85, + 450, + 300, + 130, + 250, + 270, + 200, + 130, + 380, + 200, + 60, + 280, + 135, + 290, + 100, + 115, + 280, + 280, + 180, + 200, + 170, + 130, + 250, + 160, + 160, + 155, + 125, + 145, + 130, + 285, + 185, + 220, + 300, + 275, + 130, + 140, + 180, + 120, + 200, + 115, + 300, + 120, + 220, + 130, + 280, + 130, + 65, + 400, + 75, + 90, + 130, + 85, + 130, + 125, + 400, + 170, + 125, + 78, + 75, + 180, + 115, + 185, + 120, + 80, + 135, + 250, + 85, + 300, + 175, + 170, + 250, + 100, + 500, + 140, + 450, + 150, + 280, + 200, + 70, + 155, + 130, + 105, + 190, + 280, + 120, + 500, + 125, + 250, + 500, + 130, + 130, + 350, + 65, + 125, + 90, + 110, + 140, + 250, + 120, + 130, + 140, + 100, + 235, + 130, + 130, + 50, + 100, + 65, + 270, + 130, + 300, + 110, + 150, + 260, + 150, + 130, + 40, + 130, + 130, + 220, + 150, + 130, + 220, + 140, + 120, + 170, + 200, + 85, + 400, + 300, + 350, + 300, + 125, + 185, + 320, + 85, + 200, + 140, + 155, + 230, + 180, + 87, + 200, + 165, + 85, + 200, + 235, + 250, + 120, + 160, + 65, + 95, + 210, + 60, + 125, + 150, + 125, + 105, + 160, + 300, + 130, + 130, + 150, + 120, + 180, + 390, + 270, + 175, + 150, + 125, + 200, + 500, + 140, + 460, + 170, + 270, + 220, + 85, + 230, + 300, + 175, + 300, + 122, + 95, + 300, + 270, + 135, + 250, + 300, + 110, + 300, + 150, + 170, + 240, + 120, + 300, + 160, + 500, + 110, + 130, + 170, + 480, + 300, + 120, + 144, + 185, + 150, + 120, + 120, + 160, + 280, + 120, + 250, + 40, + 200, + 50, + 85, + 450, + 65, + 180, + 200, + 125, + 100, + 165, + 130, + 220, + 130, + 100, + 230, + 185, + 170, + 140, + 155, + 170, + 130, + 185, + 130, + 110, + 200, + 138, + 190, + 85, + 185, + 350, + 70, + 95, + 120, + 90, + 160, + 130, + 110, + 140, + 270, + 350, + 120, + 90, + 210, + 185, + 140, + 130, + 300, + 120, + 115, + 100, + 150, + 80, + 130, + 275, + 130, + 200, + 100, + 50, + 420, + 185, + 300, + 140, + 150, + 400, + 270, + 115, + 170, + 133, + 85, + 260, + 120, + 135, + 260, + 110, + 130, + 200, + 65, + 180, + 125, + 250, + 270, + 75, + 75, + 120, + 90, + 185, + 200, + 200, + 130, + 275, + 85, + 90, + 85, + 110, + 115, + 80, + 182, + 120, + 140, + 150, + 130, + 300, + 130, + 220, + 130, + 300, + 280, + 130, + 150, + 160, + 120, + 115, + 155, + 235, + 270, + 260, + 390, + 150, + 115, + 100, + 75, + 230, + 138, + 170, + 125, + 120, + 300, + 185, + 350, + 175, + 176, + 140, + 300, + 210, + 165, + 130, + 300, + 60, + 120, + 130, + 120, + 130, + 300, + 270, + 180, + 170, + 160, + 75, + 125, + 120, + 350, + 90, + 175, + 220, + 270, + 135, + 120, + 120, + 189, + 300, + 150, + 95, + 80, + 110, + 75, + 300, + 220, + 168, + 140, + 70, + 100, + 120, + 185, + 68, + 70, + 275, + 120, + 300, + 190, + 100, + 120, + 130, + 165, + 155, + 210, + 88, + 200, + 300, + 275, + 300, + 280, + 120, + 130, + 130, + 185, + 250, + 120, + 250, + 129.5, + 350, + 250, + 125, + 90, + 120, + 150, + 500, + 220, + 450, + 150, + 250, + 300, + 125, + 170, + 185, + 190, + 120, + 180, + 300, + 250, + 100, + 120, + 125, + 170, + 150, + 250, + 180, + 100, + 160, + 125, + 135, + 65, + 300, + 350, + 130.013, + 100, + 100, + 70, + 190, + 180, + 200, + 330, + 270, + 150, + 75, + 360, + 90, + 185, + 210, + 210, + 130, + 120, + 250, + 270, + 300, + 185, + 140, + 175, + 185, + 180, + 80, + 70, + 160, + 195, + 130, + 100, + 280, + 300, + 240, + 150, + 450, + 75, + 185, + 100, + 120, + 65, + 250, + 72, + 270, + 290, + 200, + 110, + 130, + 125, + 150, + 170, + 100, + 320, + 350, + 130, + 250, + 250, + 135, + 175, + 160, + 150, + 130, + 290, + 235, + 95, + 280, + 130, + 190, + 460, + 120, + 120, + 300, + 130, + 210, + 150, + 220, + 65, + 125, + 200 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "City=Victoria Island
Price=%{x}", + "legendgroup": "Victoria Island", + "marker": { + "color": "#EF553B" + }, + "name": "Victoria Island", + "notched": true, + "offsetgroup": "Victoria Island", + "showlegend": false, + "type": "box", + "x": [ + 300, + 80, + 190, + 130, + 150, + 115, + 150, + 120, + 98, + 290, + 140, + 300, + 350, + 300, + 160, + 210, + 160, + 68, + 280, + 160, + 200, + 140, + 125, + 250, + 170, + 180, + 80, + 200, + 220, + 180, + 145, + 130, + 137, + 75, + 270, + 230, + 130, + 175, + 280, + 125, + 125, + 80, + 77, + 100, + 110, + 280, + 85, + 210, + 250, + 105, + 150, + 90, + 70, + 300, + 120, + 250, + 145, + 157, + 75, + 120, + 145, + 180, + 200, + 110, + 120, + 160, + 100, + 190, + 300, + 110, + 95, + 400, + 135, + 85, + 450, + 300, + 130, + 250, + 270, + 200, + 130, + 380, + 200, + 60, + 280, + 135, + 290, + 100, + 115, + 280, + 280, + 180, + 200, + 170, + 130, + 250, + 160, + 160, + 155, + 125, + 145, + 130, + 285, + 185, + 220, + 300, + 275, + 130, + 140, + 180, + 120, + 200, + 115, + 300, + 120, + 220, + 130, + 280, + 130, + 65, + 400, + 75, + 90, + 130, + 85, + 130, + 125, + 400, + 170, + 125, + 78, + 75, + 180, + 115, + 185, + 120, + 80, + 135, + 250, + 85, + 300, + 175, + 170, + 250, + 100, + 500, + 140, + 450, + 150, + 280, + 200, + 70, + 155, + 130, + 105, + 190, + 280, + 120, + 500, + 125, + 250, + 500, + 130, + 130, + 350, + 65, + 125, + 90, + 110, + 140, + 250, + 120, + 130, + 140, + 100, + 235, + 130, + 130, + 50, + 100, + 65, + 270, + 130, + 300, + 110, + 150, + 260, + 150, + 130, + 40, + 130, + 130, + 220, + 150, + 130, + 220, + 140, + 120, + 170, + 200, + 85, + 400, + 300, + 350, + 300, + 125, + 185, + 320, + 85, + 200, + 140, + 155, + 230, + 180, + 87, + 200, + 165, + 85, + 200, + 235, + 250, + 120, + 160, + 65, + 95, + 210, + 60, + 125, + 150, + 125, + 105, + 160, + 300, + 130, + 130, + 150, + 120, + 180, + 390, + 270, + 175, + 150, + 125, + 200, + 500, + 140, + 460, + 170, + 270, + 220, + 85, + 230, + 300, + 175, + 300, + 122, + 95, + 300, + 270, + 135, + 250, + 300, + 110, + 300, + 150, + 170, + 240, + 120, + 300, + 160, + 500, + 110, + 130, + 170, + 480, + 300, + 120, + 144, + 185, + 150, + 120, + 120, + 160, + 280, + 120, + 250, + 40, + 200, + 50, + 85, + 450, + 65, + 180, + 200, + 125, + 100, + 165, + 130, + 220, + 130, + 100, + 230, + 185, + 170, + 140, + 155, + 170, + 130, + 185, + 130, + 110, + 200, + 138, + 190, + 85, + 185, + 350, + 70, + 95, + 120, + 90, + 160, + 130, + 110, + 140, + 270, + 350, + 120, + 90, + 210, + 185, + 140, + 130, + 300, + 120, + 115, + 100, + 150, + 80, + 130, + 275, + 130, + 200, + 100, + 50, + 420, + 185, + 300, + 140, + 150, + 400, + 270, + 115, + 170, + 133, + 85, + 260, + 120, + 135, + 260, + 110, + 130, + 200, + 65, + 180, + 125, + 250, + 270, + 75, + 75, + 120, + 90, + 185, + 200, + 200, + 130, + 275, + 85, + 90, + 85, + 110, + 115, + 80, + 182, + 120, + 140, + 150, + 130, + 300, + 130, + 220, + 130, + 300, + 280, + 130, + 150, + 160, + 120, + 115, + 155, + 235, + 270, + 260, + 390, + 150, + 115, + 100, + 75, + 230, + 138, + 170, + 125, + 120, + 300, + 185, + 350, + 175, + 176, + 140, + 300, + 210, + 165, + 130, + 300, + 60, + 120, + 130, + 120, + 130, + 300, + 270, + 180, + 170, + 160, + 75, + 125, + 120, + 350, + 90, + 175, + 220, + 270, + 135, + 120, + 120, + 189, + 300, + 150, + 95, + 80, + 110, + 75, + 300, + 220, + 168, + 140, + 70, + 100, + 120, + 185, + 68, + 70, + 275, + 120, + 300, + 190, + 100, + 120, + 130, + 165, + 155, + 210, + 88, + 200, + 300, + 275, + 300, + 280, + 120, + 130, + 130, + 185, + 250, + 120, + 250, + 129.5, + 350, + 250, + 125, + 90, + 120, + 150, + 500, + 220, + 450, + 150, + 250, + 300, + 125, + 170, + 185, + 190, + 120, + 180, + 300, + 250, + 100, + 120, + 125, + 170, + 150, + 250, + 180, + 100, + 160, + 125, + 135, + 65, + 300, + 350, + 130.013, + 100, + 100, + 70, + 190, + 180, + 200, + 330, + 270, + 150, + 75, + 360, + 90, + 185, + 210, + 210, + 130, + 120, + 250, + 270, + 300, + 185, + 140, + 175, + 185, + 180, + 80, + 70, + 160, + 195, + 130, + 100, + 280, + 300, + 240, + 150, + 450, + 75, + 185, + 100, + 120, + 65, + 250, + 72, + 270, + 290, + 200, + 110, + 130, + 125, + 150, + 170, + 100, + 320, + 350, + 130, + 250, + 250, + 135, + 175, + 160, + 150, + 130, + 290, + 235, + 95, + 280, + 130, + 190, + 460, + 120, + 120, + 300, + 130, + 210, + 150, + 220, + 65, + 125, + 200 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "City=Ikoyi
Price=%{x}
count=%{y}", + "legendgroup": "Ikoyi", + "marker": { + "color": "#00cc96", + "pattern": { + "shape": "" + } + }, + "name": "Ikoyi", + "nbinsx": 120, + "offsetgroup": "Ikoyi", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 220, + 450, + 300, + 150, + 260, + 220, + 280, + 500, + 360, + 170, + 230, + 200, + 300, + 420, + 250, + 300, + 250, + 450, + 155, + 200, + 200, + 180, + 60, + 125, + 450, + 350, + 500, + 260, + 300, + 175, + 190, + 260, + 300, + 190, + 300, + 400, + 160, + 250, + 350, + 320, + 350, + 120, + 390, + 150, + 380, + 230, + 500, + 180, + 360, + 200, + 460, + 160, + 500, + 450, + 350, + 35, + 450, + 80, + 450, + 50, + 200, + 250, + 450, + 450, + 350, + 230, + 130, + 180, + 300, + 280, + 415, + 301, + 410, + 450, + 350, + 450, + 300, + 500, + 170, + 350, + 250, + 220, + 340, + 450, + 270, + 280, + 250, + 350, + 350, + 300, + 280, + 240, + 170, + 180, + 500, + 400, + 250, + 250, + 270, + 480, + 300, + 200, + 470, + 180, + 170, + 400, + 300, + 350, + 400, + 260, + 450, + 300, + 170, + 220, + 220, + 280, + 380, + 300, + 250, + 165, + 250, + 170, + 205, + 360, + 180, + 270, + 350, + 250, + 135, + 120, + 250, + 420, + 245, + 360, + 300, + 275, + 500, + 120, + 200, + 350, + 135, + 260, + 160, + 450, + 135, + 185, + 280, + 270, + 260, + 230, + 400, + 380, + 120, + 170, + 280, + 285, + 197.5, + 200, + 260, + 275, + 360, + 350, + 280, + 210, + 360, + 230, + 260, + 125.99, + 260, + 250, + 500, + 150, + 350, + 480, + 85, + 220, + 280, + 400, + 500, + 180, + 300, + 260, + 160, + 400, + 500, + 300, + 450, + 450, + 110, + 145, + 450, + 350, + 450, + 400, + 500, + 120, + 185, + 220, + 280, + 220, + 190, + 250, + 400, + 270, + 250, + 450, + 270, + 270, + 300, + 135, + 330, + 165, + 170, + 400, + 250, + 130, + 480, + 150, + 235, + 200, + 250, + 230, + 230, + 460, + 260, + 110, + 380, + 420, + 210, + 500, + 350, + 170, + 450, + 206, + 180, + 250, + 195, + 300, + 190, + 450, + 270, + 300, + 480, + 500, + 350, + 200, + 320, + 250, + 190, + 351, + 500, + 180, + 210, + 350, + 400, + 300, + 300, + 270, + 300, + 180, + 360, + 260, + 360, + 350, + 365, + 300, + 110, + 350, + 127, + 500, + 140, + 240, + 150, + 150, + 380, + 160, + 120, + 120, + 500, + 280, + 480, + 360, + 220, + 450, + 250, + 270, + 200, + 300, + 350, + 250, + 460, + 500, + 265, + 250, + 120, + 300, + 280, + 450, + 310, + 200, + 250, + 150, + 80, + 500, + 220, + 250, + 350, + 300, + 180, + 250, + 200, + 300, + 300, + 300, + 150, + 140, + 260, + 200, + 150, + 250, + 177.99, + 150, + 450, + 150, + 130, + 250, + 330, + 185, + 180, + 270, + 145, + 350, + 240, + 180, + 100, + 135, + 310, + 210, + 260, + 250, + 480, + 260, + 350, + 300, + 175, + 300, + 250, + 300, + 240, + 350, + 420, + 120, + 250, + 330, + 270, + 300, + 290, + 170, + 290, + 150, + 135, + 500, + 275, + 270, + 350, + 300, + 240, + 300, + 420, + 380, + 150, + 400, + 180, + 200, + 220, + 240, + 400, + 170, + 350, + 230, + 250, + 300, + 220, + 250, + 130, + 370, + 250, + 330, + 250, + 280, + 500, + 250, + 450, + 260, + 210, + 120, + 250, + 350, + 140, + 350, + 220, + 350, + 470, + 180, + 260, + 195, + 300, + 280, + 290, + 255, + 310, + 150, + 400, + 320, + 320, + 200, + 320, + 120, + 350, + 240, + 210, + 195, + 95, + 290, + 300, + 250, + 350, + 430, + 230, + 165, + 170, + 350, + 180, + 350, + 350, + 480, + 500, + 500, + 400, + 270, + 450, + 300, + 270, + 230, + 350, + 500, + 480, + 185, + 500, + 300, + 500, + 260, + 175, + 190, + 360, + 360, + 250, + 300, + 480, + 210, + 220, + 260, + 310, + 200, + 500, + 350, + 180, + 300, + 320, + 220, + 380, + 200, + 250, + 350, + 250, + 350, + 130, + 170, + 500, + 500, + 280, + 350, + 270, + 400, + 450, + 150, + 200, + 280, + 400, + 450, + 250, + 20, + 260, + 300, + 300, + 260, + 320, + 260, + 370, + 300, + 260, + 300, + 380, + 280, + 150, + 350, + 300, + 450, + 300, + 400, + 450, + 170, + 230, + 320, + 200, + 270, + 140, + 500, + 220, + 280, + 280, + 160, + 255.5, + 250, + 360, + 100, + 140, + 450, + 200, + 200, + 360, + 160, + 275, + 350, + 350, + 280, + 110, + 150, + 90, + 200, + 190, + 180, + 200, + 500, + 230, + 300, + 350, + 95, + 400, + 280, + 160, + 270, + 150, + 240, + 480, + 160, + 210, + 500, + 500, + 185, + 350, + 380, + 250, + 500, + 450, + 180, + 150, + 350, + 200, + 120, + 500, + 450, + 320, + 250, + 200, + 175, + 220, + 250, + 250, + 320, + 375, + 185, + 200, + 300, + 300, + 260, + 110, + 370, + 210, + 300, + 280, + 101, + 29.99, + 280, + 20, + 360, + 350, + 280, + 300, + 140, + 500, + 380, + 170, + 400, + 230, + 430, + 450, + 160, + 230, + 250, + 300, + 190, + 370, + 390, + 250, + 70, + 180, + 350, + 320, + 270, + 231, + 180, + 280, + 150, + 130, + 450, + 300, + 250, + 280, + 230, + 110, + 220, + 200, + 280, + 185, + 350, + 250, + 185, + 130, + 400, + 250, + 20, + 220, + 232, + 350, + 280, + 210, + 450, + 400, + 400, + 500, + 200, + 450, + 185, + 350, + 300, + 450, + 180, + 380, + 75, + 280, + 110, + 310, + 270, + 300, + 150, + 250, + 200, + 150, + 110, + 360, + 260, + 450, + 79, + 285, + 430, + 280, + 160, + 170, + 450, + 500, + 230, + 350, + 320, + 160, + 400, + 350, + 240, + 370, + 130, + 250, + 320, + 100, + 300, + 150, + 55, + 190, + 230, + 375, + 380, + 300, + 220, + 260, + 180, + 100, + 190, + 440, + 80, + 210, + 500, + 430, + 185, + 140, + 280, + 180, + 460, + 380, + 250, + 450, + 290, + 450, + 230, + 280, + 200, + 270, + 270, + 399.999999, + 220, + 55, + 250, + 450, + 350, + 250, + 400, + 300, + 140, + 26, + 350, + 150, + 135, + 230, + 230, + 400, + 400, + 350, + 210, + 120, + 170, + 270, + 145, + 300, + 500, + 160, + 270, + 230, + 170, + 200, + 340, + 380, + 300, + 450, + 130, + 320, + 430, + 420, + 480, + 350, + 160, + 350, + 350, + 260, + 430, + 500, + 230, + 185, + 160.000999, + 14, + 150, + 305, + 240, + 170, + 450, + 180, + 400, + 460, + 220, + 450, + 400, + 220, + 220, + 250, + 240, + 500, + 90, + 260 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "City=Ikoyi
Price=%{x}", + "legendgroup": "Ikoyi", + "marker": { + "color": "#00cc96" + }, + "name": "Ikoyi", + "notched": true, + "offsetgroup": "Ikoyi", + "showlegend": false, + "type": "box", + "x": [ + 220, + 450, + 300, + 150, + 260, + 220, + 280, + 500, + 360, + 170, + 230, + 200, + 300, + 420, + 250, + 300, + 250, + 450, + 155, + 200, + 200, + 180, + 60, + 125, + 450, + 350, + 500, + 260, + 300, + 175, + 190, + 260, + 300, + 190, + 300, + 400, + 160, + 250, + 350, + 320, + 350, + 120, + 390, + 150, + 380, + 230, + 500, + 180, + 360, + 200, + 460, + 160, + 500, + 450, + 350, + 35, + 450, + 80, + 450, + 50, + 200, + 250, + 450, + 450, + 350, + 230, + 130, + 180, + 300, + 280, + 415, + 301, + 410, + 450, + 350, + 450, + 300, + 500, + 170, + 350, + 250, + 220, + 340, + 450, + 270, + 280, + 250, + 350, + 350, + 300, + 280, + 240, + 170, + 180, + 500, + 400, + 250, + 250, + 270, + 480, + 300, + 200, + 470, + 180, + 170, + 400, + 300, + 350, + 400, + 260, + 450, + 300, + 170, + 220, + 220, + 280, + 380, + 300, + 250, + 165, + 250, + 170, + 205, + 360, + 180, + 270, + 350, + 250, + 135, + 120, + 250, + 420, + 245, + 360, + 300, + 275, + 500, + 120, + 200, + 350, + 135, + 260, + 160, + 450, + 135, + 185, + 280, + 270, + 260, + 230, + 400, + 380, + 120, + 170, + 280, + 285, + 197.5, + 200, + 260, + 275, + 360, + 350, + 280, + 210, + 360, + 230, + 260, + 125.99, + 260, + 250, + 500, + 150, + 350, + 480, + 85, + 220, + 280, + 400, + 500, + 180, + 300, + 260, + 160, + 400, + 500, + 300, + 450, + 450, + 110, + 145, + 450, + 350, + 450, + 400, + 500, + 120, + 185, + 220, + 280, + 220, + 190, + 250, + 400, + 270, + 250, + 450, + 270, + 270, + 300, + 135, + 330, + 165, + 170, + 400, + 250, + 130, + 480, + 150, + 235, + 200, + 250, + 230, + 230, + 460, + 260, + 110, + 380, + 420, + 210, + 500, + 350, + 170, + 450, + 206, + 180, + 250, + 195, + 300, + 190, + 450, + 270, + 300, + 480, + 500, + 350, + 200, + 320, + 250, + 190, + 351, + 500, + 180, + 210, + 350, + 400, + 300, + 300, + 270, + 300, + 180, + 360, + 260, + 360, + 350, + 365, + 300, + 110, + 350, + 127, + 500, + 140, + 240, + 150, + 150, + 380, + 160, + 120, + 120, + 500, + 280, + 480, + 360, + 220, + 450, + 250, + 270, + 200, + 300, + 350, + 250, + 460, + 500, + 265, + 250, + 120, + 300, + 280, + 450, + 310, + 200, + 250, + 150, + 80, + 500, + 220, + 250, + 350, + 300, + 180, + 250, + 200, + 300, + 300, + 300, + 150, + 140, + 260, + 200, + 150, + 250, + 177.99, + 150, + 450, + 150, + 130, + 250, + 330, + 185, + 180, + 270, + 145, + 350, + 240, + 180, + 100, + 135, + 310, + 210, + 260, + 250, + 480, + 260, + 350, + 300, + 175, + 300, + 250, + 300, + 240, + 350, + 420, + 120, + 250, + 330, + 270, + 300, + 290, + 170, + 290, + 150, + 135, + 500, + 275, + 270, + 350, + 300, + 240, + 300, + 420, + 380, + 150, + 400, + 180, + 200, + 220, + 240, + 400, + 170, + 350, + 230, + 250, + 300, + 220, + 250, + 130, + 370, + 250, + 330, + 250, + 280, + 500, + 250, + 450, + 260, + 210, + 120, + 250, + 350, + 140, + 350, + 220, + 350, + 470, + 180, + 260, + 195, + 300, + 280, + 290, + 255, + 310, + 150, + 400, + 320, + 320, + 200, + 320, + 120, + 350, + 240, + 210, + 195, + 95, + 290, + 300, + 250, + 350, + 430, + 230, + 165, + 170, + 350, + 180, + 350, + 350, + 480, + 500, + 500, + 400, + 270, + 450, + 300, + 270, + 230, + 350, + 500, + 480, + 185, + 500, + 300, + 500, + 260, + 175, + 190, + 360, + 360, + 250, + 300, + 480, + 210, + 220, + 260, + 310, + 200, + 500, + 350, + 180, + 300, + 320, + 220, + 380, + 200, + 250, + 350, + 250, + 350, + 130, + 170, + 500, + 500, + 280, + 350, + 270, + 400, + 450, + 150, + 200, + 280, + 400, + 450, + 250, + 20, + 260, + 300, + 300, + 260, + 320, + 260, + 370, + 300, + 260, + 300, + 380, + 280, + 150, + 350, + 300, + 450, + 300, + 400, + 450, + 170, + 230, + 320, + 200, + 270, + 140, + 500, + 220, + 280, + 280, + 160, + 255.5, + 250, + 360, + 100, + 140, + 450, + 200, + 200, + 360, + 160, + 275, + 350, + 350, + 280, + 110, + 150, + 90, + 200, + 190, + 180, + 200, + 500, + 230, + 300, + 350, + 95, + 400, + 280, + 160, + 270, + 150, + 240, + 480, + 160, + 210, + 500, + 500, + 185, + 350, + 380, + 250, + 500, + 450, + 180, + 150, + 350, + 200, + 120, + 500, + 450, + 320, + 250, + 200, + 175, + 220, + 250, + 250, + 320, + 375, + 185, + 200, + 300, + 300, + 260, + 110, + 370, + 210, + 300, + 280, + 101, + 29.99, + 280, + 20, + 360, + 350, + 280, + 300, + 140, + 500, + 380, + 170, + 400, + 230, + 430, + 450, + 160, + 230, + 250, + 300, + 190, + 370, + 390, + 250, + 70, + 180, + 350, + 320, + 270, + 231, + 180, + 280, + 150, + 130, + 450, + 300, + 250, + 280, + 230, + 110, + 220, + 200, + 280, + 185, + 350, + 250, + 185, + 130, + 400, + 250, + 20, + 220, + 232, + 350, + 280, + 210, + 450, + 400, + 400, + 500, + 200, + 450, + 185, + 350, + 300, + 450, + 180, + 380, + 75, + 280, + 110, + 310, + 270, + 300, + 150, + 250, + 200, + 150, + 110, + 360, + 260, + 450, + 79, + 285, + 430, + 280, + 160, + 170, + 450, + 500, + 230, + 350, + 320, + 160, + 400, + 350, + 240, + 370, + 130, + 250, + 320, + 100, + 300, + 150, + 55, + 190, + 230, + 375, + 380, + 300, + 220, + 260, + 180, + 100, + 190, + 440, + 80, + 210, + 500, + 430, + 185, + 140, + 280, + 180, + 460, + 380, + 250, + 450, + 290, + 450, + 230, + 280, + 200, + 270, + 270, + 399.999999, + 220, + 55, + 250, + 450, + 350, + 250, + 400, + 300, + 140, + 26, + 350, + 150, + 135, + 230, + 230, + 400, + 400, + 350, + 210, + 120, + 170, + 270, + 145, + 300, + 500, + 160, + 270, + 230, + 170, + 200, + 340, + 380, + 300, + 450, + 130, + 320, + 430, + 420, + 480, + 350, + 160, + 350, + 350, + 260, + 430, + 500, + 230, + 185, + 160.000999, + 14, + 150, + 305, + 240, + 170, + 450, + 180, + 400, + 460, + 220, + 450, + 400, + 220, + 220, + 250, + 240, + 500, + 90, + 260 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "City=Ikeja
Price=%{x}
count=%{y}", + "legendgroup": "Ikeja", + "marker": { + "color": "#ab63fa", + "pattern": { + "shape": "" + } + }, + "name": "Ikeja", + "nbinsx": 120, + "offsetgroup": "Ikeja", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 80, + 135, + 160, + 240, + 85, + 37.5, + 105, + 120, + 300, + 75, + 90, + 90, + 185, + 220, + 100, + 120, + 160, + 250, + 160, + 80, + 100, + 85, + 170, + 100, + 200, + 90, + 130, + 250, + 35, + 65, + 60, + 300, + 90, + 85, + 160, + 135, + 53, + 140, + 200, + 110, + 68, + 110, + 45, + 110, + 130, + 235, + 90, + 75, + 230, + 110, + 400, + 85, + 100, + 290, + 80, + 185, + 65, + 230, + 350, + 90, + 75, + 140, + 260, + 60, + 295, + 140, + 90, + 60, + 52, + 80, + 85, + 170, + 185, + 90, + 40, + 140, + 150, + 85, + 140, + 90, + 135, + 120, + 180, + 165, + 500, + 225, + 75, + 160, + 155, + 135, + 115, + 200, + 220, + 68, + 90, + 180, + 155, + 150, + 75, + 160, + 260, + 110, + 75, + 220, + 75, + 95, + 80, + 450, + 80, + 158, + 180, + 110, + 90, + 270, + 150, + 80, + 160, + 120, + 75, + 180, + 170, + 210, + 85, + 90, + 80, + 75, + 120, + 95, + 75, + 70, + 100, + 120, + 95, + 45, + 120, + 100.01, + 75, + 150, + 160, + 170, + 70, + 170, + 65, + 50, + 55, + 230, + 200, + 95, + 60, + 75, + 150, + 135, + 260, + 75, + 240, + 155, + 140, + 70, + 70, + 130, + 130, + 78, + 150, + 100, + 90, + 500, + 240, + 65, + 400, + 123, + 130, + 80, + 40, + 55, + 80, + 95, + 130, + 95, + 120, + 85, + 90, + 105, + 85, + 98, + 480, + 250, + 100, + 90, + 65, + 87, + 170, + 230, + 75, + 68, + 85, + 170, + 125, + 250, + 100, + 90, + 140, + 90, + 250, + 70, + 80, + 45, + 70, + 185, + 95, + 85, + 90, + 210, + 120, + 140, + 68, + 55, + 150, + 80, + 200, + 75, + 200, + 160, + 65, + 100, + 240, + 350, + 230, + 100, + 45, + 150, + 70, + 200, + 190, + 55, + 95, + 250, + 85, + 85, + 200, + 20, + 175, + 110, + 350, + 145, + 65, + 80, + 148.5, + 230, + 90, + 100, + 220, + 90, + 110, + 105, + 150, + 110, + 110, + 27, + 130, + 100, + 60, + 125, + 450, + 105, + 85, + 170, + 150, + 80, + 75, + 200, + 250, + 135, + 50, + 250, + 175, + 120, + 140, + 370, + 250, + 125, + 250, + 110, + 450, + 125, + 50, + 75, + 70, + 120, + 95, + 90, + 58, + 120, + 150, + 120, + 250, + 110, + 100, + 95, + 300, + 260, + 95, + 160, + 111, + 280, + 232, + 170, + 40, + 85, + 210, + 85, + 150, + 70, + 180, + 120, + 150, + 60, + 80, + 95, + 150, + 400, + 80, + 150, + 250, + 110, + 170, + 75, + 77, + 130, + 130, + 250, + 65, + 200, + 135, + 190, + 360, + 110, + 80, + 100, + 100, + 250, + 85, + 95, + 100, + 65, + 150, + 85, + 75, + 300, + 130, + 250, + 400, + 260, + 500, + 140, + 240, + 365, + 95, + 185, + 140, + 240, + 250, + 55, + 75, + 500, + 150, + 160, + 170, + 220, + 350, + 250, + 80, + 150, + 165, + 74.999999, + 135, + 180, + 90, + 150, + 145, + 150, + 150, + 65, + 75, + 75, + 100, + 65, + 40, + 115, + 65, + 130, + 55, + 130, + 270, + 80, + 100, + 135, + 170, + 75, + 50, + 85, + 500, + 53, + 160, + 180, + 150, + 75, + 95, + 150, + 160, + 90, + 70, + 80, + 100, + 205, + 130, + 50, + 95, + 300, + 200, + 100, + 270, + 135, + 90, + 48, + 35, + 80, + 80, + 250, + 55, + 70, + 75, + 230, + 150, + 130, + 80, + 190, + 230, + 78, + 230, + 85, + 75, + 150, + 58, + 70, + 150, + 70, + 160, + 125, + 150, + 95, + 70, + 70, + 200, + 92, + 170, + 60, + 170, + 285, + 160, + 155, + 68, + 100, + 60, + 150, + 125, + 75, + 97.5, + 90, + 90, + 148, + 255, + 150, + 85, + 120, + 70, + 70, + 120, + 150, + 185, + 450, + 115, + 150, + 120, + 102, + 120, + 75, + 300, + 57, + 350, + 80, + 85, + 120, + 65, + 140, + 65, + 38, + 280, + 100, + 75, + 165, + 155, + 120, + 180, + 55, + 180, + 80, + 120, + 220, + 150, + 300, + 110, + 40, + 80, + 130, + 180, + 130, + 55, + 170, + 60, + 140, + 170, + 75, + 250, + 100, + 350, + 200, + 75, + 120, + 70, + 110, + 130, + 140, + 82, + 80, + 190, + 260, + 150, + 185, + 200, + 95, + 68, + 140, + 85, + 150, + 500, + 97, + 100, + 47, + 65, + 155, + 75, + 125, + 85, + 110, + 85, + 70, + 140, + 145, + 240, + 90, + 145, + 35, + 140, + 125, + 60, + 34, + 140, + 260, + 120, + 95, + 65, + 100, + 65, + 170, + 100, + 105, + 70, + 200, + 70, + 120, + 75, + 120, + 80, + 250, + 450, + 75, + 60, + 185, + 50, + 170, + 170, + 85, + 65, + 250, + 95, + 175, + 100, + 235, + 60, + 255, + 230, + 140, + 200, + 380, + 500, + 150, + 200, + 100, + 110, + 210, + 150, + 85, + 87, + 150, + 130, + 150, + 130, + 160, + 120, + 200, + 80, + 220, + 70, + 60, + 140, + 270, + 90, + 150, + 85, + 135, + 85, + 94, + 150, + 130, + 90, + 50, + 130, + 85, + 90, + 75, + 160, + 120, + 235, + 65, + 100, + 100, + 35, + 150, + 450, + 65, + 190, + 115, + 75, + 195, + 88, + 90, + 75, + 140, + 35, + 57, + 95, + 100, + 120, + 110, + 90, + 58, + 150, + 130, + 120, + 195, + 125, + 80, + 65, + 88, + 90, + 60, + 165, + 80, + 500, + 60, + 180, + 77, + 120, + 220, + 60, + 95, + 260, + 150, + 110, + 140, + 185, + 150, + 150, + 55, + 90, + 90, + 130, + 160, + 105, + 120, + 100, + 130, + 85, + 62, + 85, + 100, + 70, + 150, + 120, + 140, + 150, + 235, + 150, + 110, + 140, + 34, + 95, + 230, + 75, + 70, + 150, + 200, + 90, + 380, + 120, + 145, + 80, + 80, + 350, + 70, + 270, + 90, + 150, + 320, + 110, + 18, + 60, + 130, + 300, + 100, + 150, + 175, + 240, + 120, + 130, + 150, + 30, + 350, + 95, + 200, + 180, + 45, + 100, + 80, + 95, + 150, + 100, + 90, + 55, + 180, + 60, + 65, + 130, + 157, + 75, + 50, + 195, + 180, + 350, + 75, + 130, + 89, + 122, + 220, + 450, + 100, + 50, + 180, + 150, + 300, + 72, + 180, + 50, + 52, + 72, + 90, + 50, + 120, + 100, + 190, + 50, + 100, + 155, + 65, + 220, + 45, + 150, + 185, + 250, + 100, + 65, + 60, + 85, + 120, + 184, + 280, + 220, + 120, + 170, + 70, + 90, + 50, + 110, + 235, + 150, + 70, + 13, + 130, + 95, + 85, + 130, + 250, + 220, + 220, + 125, + 135, + 100, + 105, + 68, + 170, + 140, + 150, + 55, + 150, + 175, + 50, + 75, + 90, + 375, + 65, + 200, + 90, + 100, + 140, + 120, + 160, + 40, + 55, + 350, + 75, + 45, + 180, + 80, + 155, + 55, + 160, + 68, + 250, + 68, + 130, + 80, + 55, + 175, + 40, + 120, + 90, + 225, + 100, + 83, + 85, + 55, + 55, + 150, + 200, + 70, + 160, + 160, + 130, + 125, + 75, + 90, + 150, + 116, + 200, + 170, + 70, + 130, + 92, + 220, + 230, + 170, + 200, + 75, + 200, + 165, + 150, + 130, + 170, + 97, + 50, + 170, + 76, + 75, + 200, + 75, + 160, + 78, + 90, + 55, + 69, + 90, + 138, + 130, + 70, + 260, + 110, + 90, + 180, + 120, + 48, + 135, + 240, + 160, + 130, + 230, + 75, + 150, + 85, + 300, + 60, + 75, + 65, + 70, + 130, + 50, + 99.5, + 138, + 230, + 30, + 125, + 140, + 35, + 75, + 80, + 120, + 190, + 220, + 160, + 50, + 400, + 135, + 45, + 85, + 250, + 42, + 95, + 270, + 44, + 81, + 75, + 150, + 165, + 140, + 80, + 170, + 140, + 93, + 150, + 150, + 95, + 75, + 65, + 100, + 95, + 300, + 75, + 150, + 120, + 150, + 65, + 75, + 240, + 120, + 135, + 110, + 97, + 90, + 250, + 80, + 270, + 170, + 100, + 155, + 70, + 480, + 225, + 85, + 75, + 75, + 80, + 250, + 180, + 50, + 55, + 50, + 130, + 140, + 80, + 250, + 120, + 180, + 40, + 250, + 180, + 260, + 170, + 110, + 75, + 80, + 120, + 160, + 160, + 160, + 35, + 55, + 390, + 65, + 240, + 140, + 350, + 85, + 150, + 70, + 25, + 300, + 135, + 120, + 75, + 176, + 125, + 200, + 60, + 300, + 170, + 90, + 80, + 150, + 250, + 120, + 60, + 140, + 150, + 125, + 124.5, + 50, + 300, + 120, + 120, + 400, + 500, + 80, + 65, + 80, + 200, + 98, + 35, + 80, + 90, + 78, + 235, + 80, + 190, + 128, + 225, + 70, + 180, + 120, + 250, + 85, + 75, + 120, + 295, + 35, + 210, + 135, + 180, + 90, + 180, + 85, + 300, + 95, + 500, + 85, + 90, + 140, + 55, + 120, + 500, + 60, + 85, + 175, + 75, + 260, + 130, + 230, + 125, + 300, + 80, + 165, + 60, + 210, + 140, + 65, + 180, + 180, + 250, + 50, + 60, + 160, + 160, + 100, + 80, + 270, + 140, + 60, + 185, + 180, + 110, + 80, + 135, + 135, + 180, + 150, + 240, + 120, + 70, + 120, + 160, + 58, + 150, + 65, + 270, + 45, + 250, + 250, + 85, + 190, + 65, + 120, + 65, + 160, + 280, + 180, + 55, + 75, + 100, + 165, + 85, + 180, + 300, + 130, + 115, + 75, + 200, + 180, + 85, + 160, + 47, + 100, + 100, + 130, + 140, + 50, + 85, + 110, + 60, + 130, + 80, + 85, + 150, + 110, + 90, + 250, + 70, + 230, + 52, + 72, + 68, + 120, + 110, + 120, + 120, + 160, + 120, + 30, + 100, + 500, + 42, + 65, + 98, + 85, + 130, + 185, + 230, + 250, + 240, + 95, + 120, + 100, + 350, + 95, + 175, + 56, + 170, + 55, + 60, + 105, + 135, + 90, + 55, + 95, + 110, + 120, + 90, + 220, + 150, + 55, + 160, + 150, + 70, + 210, + 45, + 95, + 90, + 250, + 160, + 50, + 135, + 78, + 155, + 220, + 120, + 90, + 350, + 80, + 85, + 175, + 100, + 85, + 170, + 90, + 90, + 95, + 68, + 75, + 75, + 47, + 38, + 45, + 130, + 100, + 120, + 70, + 100, + 110, + 170, + 150, + 140, + 150, + 70, + 90, + 140, + 160, + 90, + 62, + 185, + 58, + 170, + 70, + 320, + 90, + 80, + 75, + 90, + 140, + 63, + 140, + 105, + 130, + 65, + 150, + 120, + 65, + 165, + 80, + 85, + 160, + 80, + 120 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "City=Ikeja
Price=%{x}", + "legendgroup": "Ikeja", + "marker": { + "color": "#ab63fa" + }, + "name": "Ikeja", + "notched": true, + "offsetgroup": "Ikeja", + "showlegend": false, + "type": "box", + "x": [ + 80, + 135, + 160, + 240, + 85, + 37.5, + 105, + 120, + 300, + 75, + 90, + 90, + 185, + 220, + 100, + 120, + 160, + 250, + 160, + 80, + 100, + 85, + 170, + 100, + 200, + 90, + 130, + 250, + 35, + 65, + 60, + 300, + 90, + 85, + 160, + 135, + 53, + 140, + 200, + 110, + 68, + 110, + 45, + 110, + 130, + 235, + 90, + 75, + 230, + 110, + 400, + 85, + 100, + 290, + 80, + 185, + 65, + 230, + 350, + 90, + 75, + 140, + 260, + 60, + 295, + 140, + 90, + 60, + 52, + 80, + 85, + 170, + 185, + 90, + 40, + 140, + 150, + 85, + 140, + 90, + 135, + 120, + 180, + 165, + 500, + 225, + 75, + 160, + 155, + 135, + 115, + 200, + 220, + 68, + 90, + 180, + 155, + 150, + 75, + 160, + 260, + 110, + 75, + 220, + 75, + 95, + 80, + 450, + 80, + 158, + 180, + 110, + 90, + 270, + 150, + 80, + 160, + 120, + 75, + 180, + 170, + 210, + 85, + 90, + 80, + 75, + 120, + 95, + 75, + 70, + 100, + 120, + 95, + 45, + 120, + 100.01, + 75, + 150, + 160, + 170, + 70, + 170, + 65, + 50, + 55, + 230, + 200, + 95, + 60, + 75, + 150, + 135, + 260, + 75, + 240, + 155, + 140, + 70, + 70, + 130, + 130, + 78, + 150, + 100, + 90, + 500, + 240, + 65, + 400, + 123, + 130, + 80, + 40, + 55, + 80, + 95, + 130, + 95, + 120, + 85, + 90, + 105, + 85, + 98, + 480, + 250, + 100, + 90, + 65, + 87, + 170, + 230, + 75, + 68, + 85, + 170, + 125, + 250, + 100, + 90, + 140, + 90, + 250, + 70, + 80, + 45, + 70, + 185, + 95, + 85, + 90, + 210, + 120, + 140, + 68, + 55, + 150, + 80, + 200, + 75, + 200, + 160, + 65, + 100, + 240, + 350, + 230, + 100, + 45, + 150, + 70, + 200, + 190, + 55, + 95, + 250, + 85, + 85, + 200, + 20, + 175, + 110, + 350, + 145, + 65, + 80, + 148.5, + 230, + 90, + 100, + 220, + 90, + 110, + 105, + 150, + 110, + 110, + 27, + 130, + 100, + 60, + 125, + 450, + 105, + 85, + 170, + 150, + 80, + 75, + 200, + 250, + 135, + 50, + 250, + 175, + 120, + 140, + 370, + 250, + 125, + 250, + 110, + 450, + 125, + 50, + 75, + 70, + 120, + 95, + 90, + 58, + 120, + 150, + 120, + 250, + 110, + 100, + 95, + 300, + 260, + 95, + 160, + 111, + 280, + 232, + 170, + 40, + 85, + 210, + 85, + 150, + 70, + 180, + 120, + 150, + 60, + 80, + 95, + 150, + 400, + 80, + 150, + 250, + 110, + 170, + 75, + 77, + 130, + 130, + 250, + 65, + 200, + 135, + 190, + 360, + 110, + 80, + 100, + 100, + 250, + 85, + 95, + 100, + 65, + 150, + 85, + 75, + 300, + 130, + 250, + 400, + 260, + 500, + 140, + 240, + 365, + 95, + 185, + 140, + 240, + 250, + 55, + 75, + 500, + 150, + 160, + 170, + 220, + 350, + 250, + 80, + 150, + 165, + 74.999999, + 135, + 180, + 90, + 150, + 145, + 150, + 150, + 65, + 75, + 75, + 100, + 65, + 40, + 115, + 65, + 130, + 55, + 130, + 270, + 80, + 100, + 135, + 170, + 75, + 50, + 85, + 500, + 53, + 160, + 180, + 150, + 75, + 95, + 150, + 160, + 90, + 70, + 80, + 100, + 205, + 130, + 50, + 95, + 300, + 200, + 100, + 270, + 135, + 90, + 48, + 35, + 80, + 80, + 250, + 55, + 70, + 75, + 230, + 150, + 130, + 80, + 190, + 230, + 78, + 230, + 85, + 75, + 150, + 58, + 70, + 150, + 70, + 160, + 125, + 150, + 95, + 70, + 70, + 200, + 92, + 170, + 60, + 170, + 285, + 160, + 155, + 68, + 100, + 60, + 150, + 125, + 75, + 97.5, + 90, + 90, + 148, + 255, + 150, + 85, + 120, + 70, + 70, + 120, + 150, + 185, + 450, + 115, + 150, + 120, + 102, + 120, + 75, + 300, + 57, + 350, + 80, + 85, + 120, + 65, + 140, + 65, + 38, + 280, + 100, + 75, + 165, + 155, + 120, + 180, + 55, + 180, + 80, + 120, + 220, + 150, + 300, + 110, + 40, + 80, + 130, + 180, + 130, + 55, + 170, + 60, + 140, + 170, + 75, + 250, + 100, + 350, + 200, + 75, + 120, + 70, + 110, + 130, + 140, + 82, + 80, + 190, + 260, + 150, + 185, + 200, + 95, + 68, + 140, + 85, + 150, + 500, + 97, + 100, + 47, + 65, + 155, + 75, + 125, + 85, + 110, + 85, + 70, + 140, + 145, + 240, + 90, + 145, + 35, + 140, + 125, + 60, + 34, + 140, + 260, + 120, + 95, + 65, + 100, + 65, + 170, + 100, + 105, + 70, + 200, + 70, + 120, + 75, + 120, + 80, + 250, + 450, + 75, + 60, + 185, + 50, + 170, + 170, + 85, + 65, + 250, + 95, + 175, + 100, + 235, + 60, + 255, + 230, + 140, + 200, + 380, + 500, + 150, + 200, + 100, + 110, + 210, + 150, + 85, + 87, + 150, + 130, + 150, + 130, + 160, + 120, + 200, + 80, + 220, + 70, + 60, + 140, + 270, + 90, + 150, + 85, + 135, + 85, + 94, + 150, + 130, + 90, + 50, + 130, + 85, + 90, + 75, + 160, + 120, + 235, + 65, + 100, + 100, + 35, + 150, + 450, + 65, + 190, + 115, + 75, + 195, + 88, + 90, + 75, + 140, + 35, + 57, + 95, + 100, + 120, + 110, + 90, + 58, + 150, + 130, + 120, + 195, + 125, + 80, + 65, + 88, + 90, + 60, + 165, + 80, + 500, + 60, + 180, + 77, + 120, + 220, + 60, + 95, + 260, + 150, + 110, + 140, + 185, + 150, + 150, + 55, + 90, + 90, + 130, + 160, + 105, + 120, + 100, + 130, + 85, + 62, + 85, + 100, + 70, + 150, + 120, + 140, + 150, + 235, + 150, + 110, + 140, + 34, + 95, + 230, + 75, + 70, + 150, + 200, + 90, + 380, + 120, + 145, + 80, + 80, + 350, + 70, + 270, + 90, + 150, + 320, + 110, + 18, + 60, + 130, + 300, + 100, + 150, + 175, + 240, + 120, + 130, + 150, + 30, + 350, + 95, + 200, + 180, + 45, + 100, + 80, + 95, + 150, + 100, + 90, + 55, + 180, + 60, + 65, + 130, + 157, + 75, + 50, + 195, + 180, + 350, + 75, + 130, + 89, + 122, + 220, + 450, + 100, + 50, + 180, + 150, + 300, + 72, + 180, + 50, + 52, + 72, + 90, + 50, + 120, + 100, + 190, + 50, + 100, + 155, + 65, + 220, + 45, + 150, + 185, + 250, + 100, + 65, + 60, + 85, + 120, + 184, + 280, + 220, + 120, + 170, + 70, + 90, + 50, + 110, + 235, + 150, + 70, + 13, + 130, + 95, + 85, + 130, + 250, + 220, + 220, + 125, + 135, + 100, + 105, + 68, + 170, + 140, + 150, + 55, + 150, + 175, + 50, + 75, + 90, + 375, + 65, + 200, + 90, + 100, + 140, + 120, + 160, + 40, + 55, + 350, + 75, + 45, + 180, + 80, + 155, + 55, + 160, + 68, + 250, + 68, + 130, + 80, + 55, + 175, + 40, + 120, + 90, + 225, + 100, + 83, + 85, + 55, + 55, + 150, + 200, + 70, + 160, + 160, + 130, + 125, + 75, + 90, + 150, + 116, + 200, + 170, + 70, + 130, + 92, + 220, + 230, + 170, + 200, + 75, + 200, + 165, + 150, + 130, + 170, + 97, + 50, + 170, + 76, + 75, + 200, + 75, + 160, + 78, + 90, + 55, + 69, + 90, + 138, + 130, + 70, + 260, + 110, + 90, + 180, + 120, + 48, + 135, + 240, + 160, + 130, + 230, + 75, + 150, + 85, + 300, + 60, + 75, + 65, + 70, + 130, + 50, + 99.5, + 138, + 230, + 30, + 125, + 140, + 35, + 75, + 80, + 120, + 190, + 220, + 160, + 50, + 400, + 135, + 45, + 85, + 250, + 42, + 95, + 270, + 44, + 81, + 75, + 150, + 165, + 140, + 80, + 170, + 140, + 93, + 150, + 150, + 95, + 75, + 65, + 100, + 95, + 300, + 75, + 150, + 120, + 150, + 65, + 75, + 240, + 120, + 135, + 110, + 97, + 90, + 250, + 80, + 270, + 170, + 100, + 155, + 70, + 480, + 225, + 85, + 75, + 75, + 80, + 250, + 180, + 50, + 55, + 50, + 130, + 140, + 80, + 250, + 120, + 180, + 40, + 250, + 180, + 260, + 170, + 110, + 75, + 80, + 120, + 160, + 160, + 160, + 35, + 55, + 390, + 65, + 240, + 140, + 350, + 85, + 150, + 70, + 25, + 300, + 135, + 120, + 75, + 176, + 125, + 200, + 60, + 300, + 170, + 90, + 80, + 150, + 250, + 120, + 60, + 140, + 150, + 125, + 124.5, + 50, + 300, + 120, + 120, + 400, + 500, + 80, + 65, + 80, + 200, + 98, + 35, + 80, + 90, + 78, + 235, + 80, + 190, + 128, + 225, + 70, + 180, + 120, + 250, + 85, + 75, + 120, + 295, + 35, + 210, + 135, + 180, + 90, + 180, + 85, + 300, + 95, + 500, + 85, + 90, + 140, + 55, + 120, + 500, + 60, + 85, + 175, + 75, + 260, + 130, + 230, + 125, + 300, + 80, + 165, + 60, + 210, + 140, + 65, + 180, + 180, + 250, + 50, + 60, + 160, + 160, + 100, + 80, + 270, + 140, + 60, + 185, + 180, + 110, + 80, + 135, + 135, + 180, + 150, + 240, + 120, + 70, + 120, + 160, + 58, + 150, + 65, + 270, + 45, + 250, + 250, + 85, + 190, + 65, + 120, + 65, + 160, + 280, + 180, + 55, + 75, + 100, + 165, + 85, + 180, + 300, + 130, + 115, + 75, + 200, + 180, + 85, + 160, + 47, + 100, + 100, + 130, + 140, + 50, + 85, + 110, + 60, + 130, + 80, + 85, + 150, + 110, + 90, + 250, + 70, + 230, + 52, + 72, + 68, + 120, + 110, + 120, + 120, + 160, + 120, + 30, + 100, + 500, + 42, + 65, + 98, + 85, + 130, + 185, + 230, + 250, + 240, + 95, + 120, + 100, + 350, + 95, + 175, + 56, + 170, + 55, + 60, + 105, + 135, + 90, + 55, + 95, + 110, + 120, + 90, + 220, + 150, + 55, + 160, + 150, + 70, + 210, + 45, + 95, + 90, + 250, + 160, + 50, + 135, + 78, + 155, + 220, + 120, + 90, + 350, + 80, + 85, + 175, + 100, + 85, + 170, + 90, + 90, + 95, + 68, + 75, + 75, + 47, + 38, + 45, + 130, + 100, + 120, + 70, + 100, + 110, + 170, + 150, + 140, + 150, + 70, + 90, + 140, + 160, + 90, + 62, + 185, + 58, + 170, + 70, + 320, + 90, + 80, + 75, + 90, + 140, + 63, + 140, + 105, + 130, + 65, + 150, + 120, + 65, + 165, + 80, + 85, + 160, + 80, + 120 + ], + "xaxis": "x2", + "yaxis": "y2" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "City" + }, + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Disribtion of Prices based on City" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Price" + } + }, + "xaxis2": { + "anchor": "y2", + "domain": [ + 0, + 1 + ], + "matches": "x", + "showgrid": true, + "showticklabels": false + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 0.7326 + ], + "title": { + "text": "count" + } + }, + "yaxis2": { + "anchor": "x2", + "domain": [ + 0.7426, + 1 + ], + "matches": "y2", + "showgrid": false, + "showline": false, + "showticklabels": false, + "ticks": "" + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "px.histogram(data_frame=lagos, x=\"Price\",marginal=\"box\", nbins=120,\n", + " color=\"City\", title=\"Disribtion of Prices based on City\")" + ] + }, + { + "cell_type": "markdown", + "id": "e61ebb72", + "metadata": {}, + "source": [ + "As we can see in the Lagos Real Estate market, location does matter. \n", + "\n", + "Houses mostly in Ikoyi and Ikeja tend to be more expensive, since this where most elite live" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "8916eb3c", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Type=Semi Detached Duplex
Price=%{x}
count=%{y}", + "legendgroup": "Semi Detached Duplex", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "Semi Detached Duplex", + "nbinsx": 120, + "offsetgroup": "Semi Detached Duplex", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 57, + 70, + 140, + 57, + 43, + 90, + 37, + 42, + 79, + 85, + 45, + 75, + 140, + 49, + 77, + 105, + 110, + 100, + 78, + 75, + 59, + 90, + 54, + 220, + 33, + 71, + 90, + 100, + 95, + 68, + 50, + 200, + 75, + 105, + 45, + 80, + 75, + 250, + 70, + 220, + 250, + 140, + 100, + 75, + 10, + 75, + 50, + 175, + 50, + 120, + 85, + 90, + 42, + 54.5, + 300, + 65, + 70, + 102, + 53, + 200, + 98, + 165, + 53, + 38, + 85, + 200, + 200, + 59.9, + 200, + 60, + 68, + 130, + 75, + 100, + 58.5, + 57, + 450, + 160, + 60, + 85, + 80, + 100, + 125, + 350, + 135, + 37, + 53, + 88, + 87, + 65, + 300, + 175, + 250, + 110, + 75, + 65, + 250, + 55, + 55, + 240, + 36, + 66, + 49, + 50, + 150, + 60, + 260, + 60, + 300, + 70, + 150, + 67, + 80, + 105, + 80, + 110, + 65, + 60, + 79, + 165, + 80, + 70, + 95, + 66, + 80, + 50, + 150, + 85, + 120, + 53, + 75, + 90, + 60, + 80, + 75, + 70, + 40, + 320, + 185, + 98, + 135, + 130, + 350, + 95, + 65, + 65, + 115, + 90, + 50, + 160, + 60, + 150, + 85, + 90, + 54, + 145, + 71.5, + 75, + 85, + 95, + 46, + 90, + 65, + 56, + 90, + 85, + 125, + 45, + 65, + 360, + 200, + 95, + 85, + 210, + 50, + 125, + 65, + 92.5, + 125, + 350, + 75, + 200, + 55, + 60, + 65, + 85, + 125, + 73, + 70, + 165, + 70, + 110, + 45, + 150, + 99, + 67, + 160, + 58, + 80, + 57, + 135, + 48, + 115, + 75, + 88, + 83, + 76, + 80, + 210, + 60, + 65, + 90, + 50, + 68, + 95, + 30, + 110, + 67, + 35, + 55, + 85, + 250, + 90, + 150, + 170, + 80, + 450, + 180, + 85, + 450, + 95, + 84, + 60, + 220, + 120, + 140, + 350, + 145, + 45, + 95, + 55, + 230, + 90, + 120, + 75, + 180, + 78, + 120, + 38, + 65, + 48, + 250, + 40, + 65, + 47, + 95, + 85, + 45, + 40, + 65, + 80, + 301, + 57, + 450, + 250, + 450, + 110, + 270, + 57, + 55, + 68, + 49.9, + 47, + 26, + 59, + 85, + 55, + 160, + 58, + 65, + 45, + 80, + 70, + 80, + 64, + 235, + 60, + 85, + 61, + 52, + 45, + 48, + 75, + 57, + 90, + 75, + 46, + 55, + 160, + 110, + 60, + 100, + 50, + 54, + 110, + 210, + 39, + 450, + 50, + 78, + 37, + 280, + 40, + 120, + 80, + 270, + 130, + 175, + 85, + 95, + 400, + 160, + 100, + 47, + 79, + 300, + 190, + 32, + 56, + 49, + 40, + 49, + 75, + 95, + 90, + 105, + 155.7, + 65, + 165, + 72, + 400, + 74, + 135, + 175, + 150, + 52, + 85, + 190, + 500, + 85, + 48, + 180, + 50, + 170, + 300, + 50, + 190, + 250, + 140, + 35, + 70, + 45, + 55, + 53, + 60, + 480, + 100, + 34, + 58, + 220, + 73, + 66, + 135, + 75, + 110, + 90, + 74, + 100, + 180, + 48, + 85, + 90, + 100, + 65, + 180, + 110, + 140, + 155, + 400, + 95, + 55, + 200, + 55, + 125, + 78, + 150, + 115, + 49, + 180, + 60, + 75, + 350, + 400, + 79, + 65, + 78, + 70, + 170, + 50, + 76, + 135, + 55, + 57, + 300, + 170, + 220, + 56, + 220, + 300, + 72, + 172, + 70, + 45, + 32, + 65, + 75, + 180, + 115, + 45, + 150, + 55, + 47, + 100, + 70, + 75, + 95, + 110, + 280, + 75, + 56, + 200, + 60, + 83, + 75, + 75, + 35, + 55, + 69, + 48, + 360, + 54, + 180, + 37, + 65, + 60, + 51, + 250, + 100, + 46, + 65, + 120, + 60, + 59.5, + 68, + 85, + 165, + 125, + 55, + 87, + 180, + 450, + 250, + 59, + 100, + 65, + 40, + 360, + 70, + 140, + 150, + 48, + 70, + 150, + 55, + 70, + 95, + 45, + 95, + 160, + 150, + 120, + 200, + 59, + 105, + 65, + 47, + 210, + 115, + 30, + 48, + 77, + 350, + 72, + 67, + 58, + 450, + 59, + 120, + 70, + 115, + 205, + 65, + 120, + 185, + 165, + 150, + 270, + 77, + 57, + 58, + 400, + 370, + 38, + 60, + 16.5, + 120, + 50, + 72, + 150, + 99, + 75, + 80, + 200, + 38, + 65, + 70, + 59, + 35, + 110, + 86, + 150, + 38, + 70, + 250, + 330, + 52, + 125, + 54, + 62, + 83, + 220, + 70, + 275, + 65, + 80, + 160, + 75, + 110, + 35, + 75, + 190, + 110, + 280, + 85, + 48, + 38, + 200, + 67, + 110, + 145, + 260, + 80, + 52, + 280, + 63, + 148.5, + 50, + 76, + 190, + 45, + 47, + 85, + 90, + 35, + 37, + 58, + 160, + 85, + 81, + 62, + 250, + 43, + 48, + 40, + 65, + 145, + 78, + 56, + 270, + 62, + 47, + 49, + 100, + 40, + 60, + 100, + 120, + 45, + 90, + 90, + 80, + 65, + 80, + 55, + 68, + 300, + 72, + 56, + 115, + 65, + 160, + 80, + 40, + 38, + 62, + 130, + 65, + 61.75, + 33, + 75, + 75, + 90, + 40, + 78, + 160, + 120, + 41, + 95, + 85, + 47, + 250, + 55, + 150, + 120, + 35, + 80, + 450, + 110, + 47, + 75, + 90, + 60, + 80, + 80, + 85, + 125, + 80, + 30, + 65, + 115, + 67, + 67, + 58, + 55, + 72, + 52, + 75, + 190, + 33, + 58, + 45, + 45, + 66, + 48, + 185, + 120, + 150, + 110, + 80, + 110, + 70, + 100, + 65, + 450, + 60, + 100, + 85, + 60, + 130, + 65, + 170, + 135, + 95, + 90, + 75, + 50, + 80, + 65, + 72, + 90, + 42, + 250, + 85, + 170, + 140, + 55, + 111, + 90, + 75, + 170, + 46, + 50, + 95, + 60, + 40, + 33, + 45, + 55, + 220, + 72, + 45, + 40, + 73, + 85, + 170, + 50, + 330, + 60, + 100, + 85, + 58, + 192, + 75, + 45, + 125, + 56, + 65, + 77.5, + 75, + 82, + 150, + 46, + 76, + 51, + 175, + 50, + 63.1, + 40, + 55, + 70, + 77, + 250, + 78, + 150, + 50, + 80, + 210, + 55, + 285, + 74.1, + 65, + 81, + 77, + 130, + 150, + 190, + 37, + 90, + 75, + 230, + 250, + 76, + 75, + 155, + 155, + 260, + 79, + 380, + 165, + 80, + 70, + 130, + 69, + 250, + 85, + 62, + 190, + 95, + 80, + 120, + 210, + 78, + 170, + 45, + 500, + 38, + 165, + 75, + 68, + 49, + 53, + 62, + 57, + 200, + 90, + 150, + 68, + 75, + 75, + 180, + 80, + 58, + 110, + 95, + 28, + 65, + 45, + 68, + 76, + 55, + 90, + 55, + 48, + 65, + 75, + 95, + 105, + 150, + 55, + 85, + 40, + 37, + 500, + 350, + 170, + 85, + 55, + 110, + 105, + 75, + 70, + 110, + 67, + 55, + 75, + 77, + 70, + 110, + 250, + 53, + 70, + 165, + 72, + 50, + 50, + 125, + 54, + 60, + 100, + 351, + 85, + 135, + 82, + 57, + 500, + 65, + 58, + 68, + 110, + 59, + 70, + 69, + 85, + 300, + 300, + 65, + 52, + 62, + 40, + 150, + 28, + 72.5, + 130, + 65, + 48, + 90, + 65, + 130, + 105, + 40, + 55, + 165, + 90, + 60, + 45, + 65, + 115, + 68, + 65, + 46, + 170, + 150, + 360, + 85, + 260, + 78, + 45, + 160, + 65, + 350, + 180, + 270, + 50, + 130, + 80, + 198, + 50, + 62.5, + 230, + 300, + 50, + 70, + 120, + 86, + 350, + 40, + 260, + 370, + 150, + 75, + 90, + 85, + 38, + 62, + 60, + 40, + 48, + 65, + 47, + 45, + 130, + 130, + 500, + 75, + 75, + 68, + 48, + 200, + 35, + 65, + 205, + 82, + 50, + 80, + 110, + 65, + 205, + 130, + 360, + 175, + 80, + 65, + 85, + 60, + 95, + 230, + 45, + 80, + 180, + 300, + 175, + 65, + 200, + 65, + 30, + 55, + 120, + 75, + 60, + 90, + 110, + 80, + 35, + 78, + 500, + 180, + 128, + 170, + 80, + 150, + 170, + 45, + 65, + 69, + 85, + 57, + 49, + 62, + 85, + 47, + 65, + 50, + 53.5, + 195, + 58, + 200, + 58, + 195, + 70, + 76, + 75, + 57, + 48, + 265, + 80, + 350, + 85, + 56.5, + 47, + 83, + 300, + 55, + 150, + 90, + 65, + 95, + 40, + 70, + 310, + 55, + 75, + 80, + 200, + 55, + 160, + 75, + 65, + 48, + 90, + 95, + 150, + 30, + 56, + 63.1, + 84, + 95, + 130, + 155, + 75, + 150, + 108, + 43, + 70, + 50, + 63, + 65, + 85, + 40, + 220, + 250, + 75, + 45, + 230, + 42, + 50, + 85, + 62, + 90, + 75, + 350, + 65, + 60, + 78, + 150, + 60, + 140, + 200, + 30, + 70, + 93, + 52, + 165, + 55, + 200, + 170, + 105, + 85, + 77.5, + 70, + 75, + 57, + 150, + 69.5, + 55, + 70, + 300, + 58, + 49.9, + 68, + 140, + 110, + 200, + 47, + 65, + 140, + 60, + 110, + 65, + 35, + 57, + 70, + 120, + 120, + 43.5, + 150, + 67, + 125, + 66, + 72, + 82, + 72, + 75, + 48, + 120, + 57, + 85.5, + 76, + 47, + 100, + 80, + 60, + 60, + 67, + 59, + 125, + 65, + 76, + 46, + 110, + 62, + 48, + 150, + 250, + 79, + 45, + 60, + 160, + 39, + 70, + 60, + 100, + 250, + 75, + 75, + 63, + 110, + 75, + 93, + 72, + 360, + 59, + 44, + 120, + 53, + 180, + 56.000099, + 55, + 72, + 150, + 85, + 63, + 180, + 77, + 59, + 68, + 65, + 80, + 90, + 125, + 350, + 80, + 69.5, + 45, + 115, + 100, + 160, + 55, + 105, + 270, + 170, + 60, + 165, + 35, + 120, + 85, + 88, + 53, + 85, + 200, + 265, + 95, + 180, + 85, + 100, + 78, + 125, + 310, + 200, + 130, + 200, + 62, + 67, + 195, + 105, + 70, + 140, + 40, + 280, + 180, + 50, + 61, + 55, + 90, + 220, + 90, + 130, + 55, + 270, + 37, + 70, + 65, + 55, + 95, + 50, + 300, + 300, + 83, + 50, + 50, + 60, + 75, + 150, + 155, + 50, + 250, + 165, + 170, + 45, + 38, + 100, + 48, + 38, + 145, + 100, + 57, + 62, + 67, + 85, + 75, + 120, + 66, + 135, + 42, + 90, + 68, + 53, + 165, + 150, + 85, + 140, + 200, + 270, + 105, + 65, + 48, + 250, + 72, + 250, + 80, + 57, + 55, + 100, + 34, + 90, + 55, + 56, + 160, + 73, + 72.5, + 55, + 57, + 100, + 47.5, + 110, + 50, + 75, + 50, + 55, + 62, + 110, + 73, + 175, + 35, + 55, + 75, + 120, + 56, + 55, + 120, + 500, + 170, + 80, + 35, + 45, + 58, + 270, + 56, + 300, + 75, + 60, + 110, + 200, + 45, + 85, + 35, + 40, + 90, + 55, + 150, + 42, + 65, + 80, + 90, + 85, + 300, + 175, + 65, + 65, + 190, + 65, + 62, + 80, + 37, + 32.5, + 57, + 110, + 230, + 150, + 120, + 400, + 50, + 115, + 47, + 45, + 150, + 38, + 170, + 86, + 100, + 210, + 125, + 400, + 150, + 73, + 50, + 72, + 150, + 68, + 50, + 120, + 40, + 120, + 250, + 88, + 67, + 67, + 80, + 220, + 150, + 36, + 70, + 65, + 68, + 70, + 100, + 170, + 45, + 55, + 65, + 45, + 135, + 350, + 260, + 230, + 48, + 100, + 85, + 46, + 56, + 380, + 90, + 63, + 180, + 170, + 85, + 200, + 59.5, + 120, + 230, + 65, + 30, + 40, + 75, + 94, + 120, + 68, + 52, + 75, + 85, + 55, + 35, + 75, + 55, + 185, + 370, + 70, + 58, + 130, + 65, + 75, + 250, + 36, + 90, + 35, + 130, + 220, + 170, + 82, + 450, + 75, + 45, + 140, + 55, + 185, + 95, + 97, + 52, + 58, + 450, + 40, + 85, + 38, + 100, + 70, + 60, + 50, + 55, + 270.000009, + 70, + 140, + 57, + 48, + 145, + 370, + 110, + 65, + 155, + 56, + 250, + 220, + 53, + 90, + 45, + 400, + 60, + 100, + 35, + 350, + 130, + 140, + 130, + 80, + 42, + 130, + 160, + 26, + 150, + 71, + 75, + 90, + 65, + 87, + 190, + 38, + 60, + 90, + 45, + 135, + 45, + 180, + 78, + 50, + 45, + 80, + 60, + 75, + 55, + 170, + 52, + 10, + 60, + 35, + 110, + 47, + 80, + 350, + 65, + 95, + 290, + 53, + 140, + 88, + 310, + 73, + 47, + 55, + 60, + 50, + 80, + 320, + 51, + 67, + 130, + 90, + 175, + 95, + 80, + 51, + 55, + 45, + 53, + 320, + 75, + 50, + 80, + 59.5, + 53, + 56, + 350, + 150, + 32, + 120, + 65, + 45, + 71, + 100, + 70, + 195, + 60, + 130, + 60.5, + 45, + 100, + 98, + 52, + 35, + 300, + 40, + 35, + 60, + 67, + 98, + 80, + 150, + 140, + 108, + 49, + 60, + 70, + 85, + 36, + 100, + 160, + 54, + 180, + 110, + 60, + 53, + 90, + 45, + 58, + 180, + 95, + 58, + 48, + 51, + 480, + 500, + 57, + 45, + 53, + 110, + 126, + 58, + 85, + 400, + 140, + 95, + 53, + 90, + 150, + 270, + 37, + 350, + 350, + 120, + 110, + 95, + 115, + 200, + 70, + 68, + 58, + 200, + 70, + 50, + 43, + 98, + 450, + 53, + 300, + 45, + 130, + 37, + 59, + 95, + 44, + 73, + 260, + 230, + 130, + 39.6, + 80, + 130, + 320, + 75, + 220, + 300, + 480, + 350, + 95, + 87, + 65, + 95, + 46, + 85, + 70, + 79, + 300, + 105, + 56, + 75, + 60, + 80, + 95, + 100, + 55, + 38, + 75, + 260, + 65, + 95, + 55, + 80, + 35, + 190, + 65, + 130, + 270, + 150, + 190, + 88, + 90, + 50, + 55, + 27, + 39, + 250, + 100, + 130, + 89, + 65, + 150, + 70, + 100, + 260, + 100, + 70, + 80, + 210, + 130, + 50, + 52, + 55, + 65, + 100, + 110, + 10, + 72, + 65, + 65.000009, + 57, + 60, + 45, + 58, + 195, + 350, + 47, + 59, + 90, + 48.5, + 110, + 45, + 45, + 68, + 190, + 90, + 65, + 95, + 57, + 85, + 41, + 60, + 155, + 250, + 100, + 85, + 80, + 200, + 85, + 49, + 20, + 70, + 65, + 85, + 90, + 65, + 45, + 350, + 250, + 70, + 35, + 150, + 47, + 42, + 140, + 50, + 130, + 170, + 65, + 80, + 120, + 30, + 155, + 95, + 47, + 500, + 200, + 500, + 280, + 48, + 75, + 70, + 120, + 63, + 65, + 75, + 75, + 400, + 135, + 170, + 85, + 145, + 120, + 85, + 56, + 55, + 85, + 90, + 150, + 56, + 79, + 75, + 130, + 62, + 39, + 55, + 79, + 65, + 56, + 90, + 125, + 65, + 125, + 90, + 285, + 85, + 78, + 52, + 95, + 95, + 140, + 55, + 260, + 52.5, + 300, + 115, + 75, + 68, + 170, + 195, + 160, + 45, + 48, + 210, + 260, + 80, + 320, + 65, + 42, + 280, + 375, + 65, + 85, + 150, + 49, + 85, + 55, + 62, + 260, + 180, + 120, + 380, + 45, + 51, + 60, + 46, + 63, + 68, + 120, + 130, + 51, + 140, + 95, + 120, + 56, + 110, + 60, + 50, + 350, + 41, + 45, + 98, + 85, + 450, + 63, + 200, + 300, + 130, + 73, + 135, + 65, + 65, + 80, + 55, + 200, + 60, + 62, + 55, + 55, + 76, + 70, + 68, + 105, + 55, + 250, + 140, + 180, + 90, + 130, + 57, + 86, + 80, + 300, + 35, + 110, + 110, + 165, + 57.99, + 55, + 39, + 85, + 57, + 160, + 37, + 125, + 100, + 48, + 65, + 280, + 52, + 42, + 85, + 80, + 80, + 180, + 80, + 90, + 52, + 70, + 160, + 100, + 95, + 70, + 88, + 70, + 53, + 160, + 42, + 125, + 110, + 47, + 75, + 55, + 160, + 55, + 200, + 90, + 150, + 125, + 55, + 69, + 85, + 140, + 230, + 350, + 300, + 65, + 75, + 45, + 45, + 40, + 45, + 48, + 70, + 54, + 245, + 65, + 170, + 45, + 45, + 65, + 73, + 90, + 68, + 110, + 45, + 80, + 92, + 72, + 50, + 75, + 50, + 200, + 120, + 49, + 185, + 110, + 50, + 90, + 240, + 49.5, + 95, + 80, + 55, + 68, + 55, + 50, + 80, + 75, + 55, + 300, + 76, + 76, + 49, + 350, + 65, + 107, + 80, + 98, + 58, + 85, + 52, + 60, + 170, + 90, + 58, + 35, + 110, + 50, + 195, + 130, + 60, + 60, + 85, + 68, + 70, + 250, + 180, + 82, + 58, + 33, + 75, + 57, + 90, + 150, + 75, + 100, + 140, + 250, + 44, + 38, + 170, + 72, + 30, + 75, + 55, + 105, + 48, + 140, + 148, + 68, + 55, + 175, + 89, + 65, + 55, + 130, + 75, + 80, + 350, + 150, + 80, + 110, + 180, + 140, + 55, + 75, + 85, + 65, + 38, + 85, + 95, + 40, + 65, + 135, + 90, + 63, + 75, + 75, + 65, + 55, + 55, + 88, + 30, + 65, + 88, + 120, + 80, + 50, + 58, + 45, + 175, + 120, + 250, + 68, + 130, + 115, + 77.5, + 160, + 50, + 59, + 70, + 47, + 225, + 60, + 90, + 77, + 270, + 85, + 130, + 320, + 33, + 75, + 75, + 60, + 150, + 35, + 150, + 45, + 135, + 130, + 85, + 180, + 48, + 75, + 90, + 59.5, + 300, + 115, + 48, + 80, + 59, + 80, + 135, + 85, + 300, + 82, + 101, + 80, + 85, + 78, + 75, + 95, + 190, + 55, + 280, + 53.5, + 60, + 65, + 43, + 62.99, + 150, + 59.5, + 95, + 85, + 105, + 48, + 48, + 77, + 150, + 190, + 55, + 300, + 70, + 75, + 70, + 100, + 58, + 67, + 55, + 10, + 75, + 80, + 48, + 380, + 55, + 50, + 40, + 170, + 75, + 85, + 97, + 77, + 57, + 85, + 230, + 52, + 50, + 60, + 140, + 90, + 90, + 185, + 75, + 250, + 170, + 60, + 38, + 100, + 178, + 100, + 75, + 115, + 90, + 110, + 98, + 185, + 65, + 190, + 390, + 95, + 55, + 90, + 90, + 90, + 55, + 85, + 50, + 80, + 65, + 35, + 55, + 31, + 90, + 100, + 250, + 58, + 86, + 42, + 125, + 70, + 46, + 46, + 85, + 66, + 150, + 75, + 45, + 105, + 35, + 40, + 130, + 59, + 100, + 160, + 110, + 180, + 77.5, + 110, + 150, + 75, + 95, + 80, + 160, + 68, + 43, + 80, + 67, + 60, + 140, + 160, + 35, + 450, + 55, + 55, + 78, + 65, + 65, + 48, + 140, + 197, + 58, + 68, + 80, + 88, + 82, + 55, + 38, + 65, + 50, + 70, + 45, + 110, + 170, + 220, + 90, + 48, + 35, + 48, + 55, + 80, + 176, + 70, + 52, + 155, + 60, + 100, + 90, + 44, + 95, + 150, + 220, + 55, + 250, + 75, + 52.8, + 43, + 120, + 110, + 73, + 200, + 80, + 68, + 35, + 175, + 170, + 51, + 75, + 250, + 85, + 65, + 33, + 63, + 50, + 90, + 150, + 70, + 120, + 35, + 160, + 38, + 120, + 46, + 280, + 65, + 49, + 50, + 85, + 150, + 130, + 130, + 76, + 124.5, + 95, + 50, + 85, + 120, + 300, + 155, + 75, + 84, + 80, + 45, + 170, + 31, + 70, + 60, + 82, + 85, + 98, + 35, + 62, + 110, + 500, + 130, + 67, + 34, + 49, + 275, + 170, + 56, + 62, + 44, + 140, + 180, + 105, + 150, + 69, + 85, + 46, + 45, + 120, + 48, + 180, + 230, + 75, + 85, + 55, + 110, + 70, + 180, + 60, + 70, + 210, + 85, + 49.5, + 75, + 75, + 170, + 95, + 135, + 78, + 180, + 50, + 45, + 64, + 310, + 78, + 140, + 40, + 500, + 100, + 200, + 82.5, + 43, + 55, + 78, + 80, + 55, + 100, + 140, + 120, + 70, + 75, + 45, + 60, + 60, + 85, + 70, + 55, + 120, + 120, + 48, + 36, + 65, + 165, + 90, + 57, + 70, + 35, + 115, + 125, + 38, + 55, + 45, + 46, + 65, + 160, + 50, + 135, + 100, + 52, + 70, + 47, + 49, + 125, + 77.5, + 95, + 500, + 60, + 160, + 42, + 120, + 100, + 40, + 70, + 80, + 105, + 70, + 65, + 160, + 85, + 69, + 130, + 270, + 140, + 85, + 125, + 80, + 70, + 45, + 36, + 350, + 130.013, + 75, + 90, + 155, + 108, + 45, + 100, + 47, + 75, + 65, + 45, + 67.5, + 65, + 220, + 270, + 250, + 45, + 120, + 85, + 59.5, + 105, + 256, + 48.5, + 60, + 190, + 50, + 41.8, + 200, + 88, + 74, + 47, + 76, + 35, + 180, + 82, + 95, + 55, + 45, + 130, + 53, + 150, + 57, + 55, + 190, + 78, + 40, + 57, + 95, + 50, + 90, + 185, + 69, + 200, + 90, + 75, + 82, + 160, + 105, + 185, + 55, + 210, + 76, + 80, + 85, + 110, + 75, + 48, + 125, + 100, + 165, + 110, + 180, + 55, + 69, + 42, + 60, + 50, + 135, + 85, + 88, + 90, + 150, + 66.329, + 56, + 67, + 60, + 150, + 120, + 130, + 115, + 60, + 70, + 75, + 95, + 88, + 52, + 39.5, + 135, + 190, + 47, + 46.2, + 70, + 58, + 185, + 185, + 78, + 110, + 70, + 230, + 70, + 200, + 90, + 75, + 20, + 200, + 65, + 80, + 40, + 55, + 85, + 72, + 69, + 83, + 34.8, + 85, + 45, + 110, + 75, + 450, + 35, + 27, + 95, + 230, + 56, + 190, + 47, + 65, + 90, + 60, + 120, + 50, + 150, + 78, + 65, + 66, + 50, + 270, + 120, + 75.009009, + 120, + 90, + 43, + 85, + 160, + 53, + 42, + 65, + 48, + 120, + 85, + 55, + 240, + 65, + 220, + 52, + 45, + 59, + 140, + 450, + 125, + 58, + 240, + 85, + 55, + 75, + 50, + 200, + 65, + 350, + 130, + 185, + 100, + 75, + 175, + 49, + 165, + 78, + 110, + 60, + 57, + 45, + 72, + 49, + 55, + 80, + 56, + 50, + 60, + 165, + 250, + 72, + 50, + 90, + 120, + 72, + 100, + 43, + 434, + 125, + 98, + 75, + 65, + 200, + 100, + 90, + 135, + 65, + 84, + 93, + 400, + 95, + 49, + 55, + 52, + 50, + 70, + 350, + 210, + 140, + 66, + 72, + 270, + 300, + 53, + 65, + 90, + 85, + 38, + 45, + 120, + 60, + 150, + 61, + 41, + 50, + 85, + 48, + 100, + 95, + 45, + 230, + 40, + 120, + 16, + 62, + 60, + 77, + 150, + 135, + 62, + 35, + 100, + 130, + 120, + 160, + 41, + 78, + 145, + 15, + 95, + 55, + 85, + 52, + 130, + 120, + 75, + 250, + 175, + 50, + 320, + 65, + 42, + 30, + 100, + 85, + 80, + 75, + 120, + 75, + 75, + 140, + 160, + 175, + 75, + 105, + 38, + 76, + 43.2, + 55, + 67, + 110, + 75, + 30, + 140, + 190, + 75, + 85, + 500, + 75, + 78, + 160, + 120, + 120, + 160, + 300, + 160.000999, + 53, + 65, + 49.9, + 48, + 40, + 180, + 350, + 54, + 70, + 90, + 80, + 170, + 75, + 140, + 140, + 80, + 220, + 400, + 60, + 105, + 40, + 75, + 125, + 35, + 220, + 150, + 62, + 84, + 80, + 160, + 85, + 58, + 500, + 175, + 90, + 65, + 200, + 47, + 69, + 61, + 47, + 90, + 48, + 98, + 40, + 120 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Type=Semi Detached Duplex
Price=%{x}", + "legendgroup": "Semi Detached Duplex", + "marker": { + "color": "#636efa" + }, + "name": "Semi Detached Duplex", + "notched": true, + "offsetgroup": "Semi Detached Duplex", + "showlegend": false, + "type": "box", + "x": [ + 57, + 70, + 140, + 57, + 43, + 90, + 37, + 42, + 79, + 85, + 45, + 75, + 140, + 49, + 77, + 105, + 110, + 100, + 78, + 75, + 59, + 90, + 54, + 220, + 33, + 71, + 90, + 100, + 95, + 68, + 50, + 200, + 75, + 105, + 45, + 80, + 75, + 250, + 70, + 220, + 250, + 140, + 100, + 75, + 10, + 75, + 50, + 175, + 50, + 120, + 85, + 90, + 42, + 54.5, + 300, + 65, + 70, + 102, + 53, + 200, + 98, + 165, + 53, + 38, + 85, + 200, + 200, + 59.9, + 200, + 60, + 68, + 130, + 75, + 100, + 58.5, + 57, + 450, + 160, + 60, + 85, + 80, + 100, + 125, + 350, + 135, + 37, + 53, + 88, + 87, + 65, + 300, + 175, + 250, + 110, + 75, + 65, + 250, + 55, + 55, + 240, + 36, + 66, + 49, + 50, + 150, + 60, + 260, + 60, + 300, + 70, + 150, + 67, + 80, + 105, + 80, + 110, + 65, + 60, + 79, + 165, + 80, + 70, + 95, + 66, + 80, + 50, + 150, + 85, + 120, + 53, + 75, + 90, + 60, + 80, + 75, + 70, + 40, + 320, + 185, + 98, + 135, + 130, + 350, + 95, + 65, + 65, + 115, + 90, + 50, + 160, + 60, + 150, + 85, + 90, + 54, + 145, + 71.5, + 75, + 85, + 95, + 46, + 90, + 65, + 56, + 90, + 85, + 125, + 45, + 65, + 360, + 200, + 95, + 85, + 210, + 50, + 125, + 65, + 92.5, + 125, + 350, + 75, + 200, + 55, + 60, + 65, + 85, + 125, + 73, + 70, + 165, + 70, + 110, + 45, + 150, + 99, + 67, + 160, + 58, + 80, + 57, + 135, + 48, + 115, + 75, + 88, + 83, + 76, + 80, + 210, + 60, + 65, + 90, + 50, + 68, + 95, + 30, + 110, + 67, + 35, + 55, + 85, + 250, + 90, + 150, + 170, + 80, + 450, + 180, + 85, + 450, + 95, + 84, + 60, + 220, + 120, + 140, + 350, + 145, + 45, + 95, + 55, + 230, + 90, + 120, + 75, + 180, + 78, + 120, + 38, + 65, + 48, + 250, + 40, + 65, + 47, + 95, + 85, + 45, + 40, + 65, + 80, + 301, + 57, + 450, + 250, + 450, + 110, + 270, + 57, + 55, + 68, + 49.9, + 47, + 26, + 59, + 85, + 55, + 160, + 58, + 65, + 45, + 80, + 70, + 80, + 64, + 235, + 60, + 85, + 61, + 52, + 45, + 48, + 75, + 57, + 90, + 75, + 46, + 55, + 160, + 110, + 60, + 100, + 50, + 54, + 110, + 210, + 39, + 450, + 50, + 78, + 37, + 280, + 40, + 120, + 80, + 270, + 130, + 175, + 85, + 95, + 400, + 160, + 100, + 47, + 79, + 300, + 190, + 32, + 56, + 49, + 40, + 49, + 75, + 95, + 90, + 105, + 155.7, + 65, + 165, + 72, + 400, + 74, + 135, + 175, + 150, + 52, + 85, + 190, + 500, + 85, + 48, + 180, + 50, + 170, + 300, + 50, + 190, + 250, + 140, + 35, + 70, + 45, + 55, + 53, + 60, + 480, + 100, + 34, + 58, + 220, + 73, + 66, + 135, + 75, + 110, + 90, + 74, + 100, + 180, + 48, + 85, + 90, + 100, + 65, + 180, + 110, + 140, + 155, + 400, + 95, + 55, + 200, + 55, + 125, + 78, + 150, + 115, + 49, + 180, + 60, + 75, + 350, + 400, + 79, + 65, + 78, + 70, + 170, + 50, + 76, + 135, + 55, + 57, + 300, + 170, + 220, + 56, + 220, + 300, + 72, + 172, + 70, + 45, + 32, + 65, + 75, + 180, + 115, + 45, + 150, + 55, + 47, + 100, + 70, + 75, + 95, + 110, + 280, + 75, + 56, + 200, + 60, + 83, + 75, + 75, + 35, + 55, + 69, + 48, + 360, + 54, + 180, + 37, + 65, + 60, + 51, + 250, + 100, + 46, + 65, + 120, + 60, + 59.5, + 68, + 85, + 165, + 125, + 55, + 87, + 180, + 450, + 250, + 59, + 100, + 65, + 40, + 360, + 70, + 140, + 150, + 48, + 70, + 150, + 55, + 70, + 95, + 45, + 95, + 160, + 150, + 120, + 200, + 59, + 105, + 65, + 47, + 210, + 115, + 30, + 48, + 77, + 350, + 72, + 67, + 58, + 450, + 59, + 120, + 70, + 115, + 205, + 65, + 120, + 185, + 165, + 150, + 270, + 77, + 57, + 58, + 400, + 370, + 38, + 60, + 16.5, + 120, + 50, + 72, + 150, + 99, + 75, + 80, + 200, + 38, + 65, + 70, + 59, + 35, + 110, + 86, + 150, + 38, + 70, + 250, + 330, + 52, + 125, + 54, + 62, + 83, + 220, + 70, + 275, + 65, + 80, + 160, + 75, + 110, + 35, + 75, + 190, + 110, + 280, + 85, + 48, + 38, + 200, + 67, + 110, + 145, + 260, + 80, + 52, + 280, + 63, + 148.5, + 50, + 76, + 190, + 45, + 47, + 85, + 90, + 35, + 37, + 58, + 160, + 85, + 81, + 62, + 250, + 43, + 48, + 40, + 65, + 145, + 78, + 56, + 270, + 62, + 47, + 49, + 100, + 40, + 60, + 100, + 120, + 45, + 90, + 90, + 80, + 65, + 80, + 55, + 68, + 300, + 72, + 56, + 115, + 65, + 160, + 80, + 40, + 38, + 62, + 130, + 65, + 61.75, + 33, + 75, + 75, + 90, + 40, + 78, + 160, + 120, + 41, + 95, + 85, + 47, + 250, + 55, + 150, + 120, + 35, + 80, + 450, + 110, + 47, + 75, + 90, + 60, + 80, + 80, + 85, + 125, + 80, + 30, + 65, + 115, + 67, + 67, + 58, + 55, + 72, + 52, + 75, + 190, + 33, + 58, + 45, + 45, + 66, + 48, + 185, + 120, + 150, + 110, + 80, + 110, + 70, + 100, + 65, + 450, + 60, + 100, + 85, + 60, + 130, + 65, + 170, + 135, + 95, + 90, + 75, + 50, + 80, + 65, + 72, + 90, + 42, + 250, + 85, + 170, + 140, + 55, + 111, + 90, + 75, + 170, + 46, + 50, + 95, + 60, + 40, + 33, + 45, + 55, + 220, + 72, + 45, + 40, + 73, + 85, + 170, + 50, + 330, + 60, + 100, + 85, + 58, + 192, + 75, + 45, + 125, + 56, + 65, + 77.5, + 75, + 82, + 150, + 46, + 76, + 51, + 175, + 50, + 63.1, + 40, + 55, + 70, + 77, + 250, + 78, + 150, + 50, + 80, + 210, + 55, + 285, + 74.1, + 65, + 81, + 77, + 130, + 150, + 190, + 37, + 90, + 75, + 230, + 250, + 76, + 75, + 155, + 155, + 260, + 79, + 380, + 165, + 80, + 70, + 130, + 69, + 250, + 85, + 62, + 190, + 95, + 80, + 120, + 210, + 78, + 170, + 45, + 500, + 38, + 165, + 75, + 68, + 49, + 53, + 62, + 57, + 200, + 90, + 150, + 68, + 75, + 75, + 180, + 80, + 58, + 110, + 95, + 28, + 65, + 45, + 68, + 76, + 55, + 90, + 55, + 48, + 65, + 75, + 95, + 105, + 150, + 55, + 85, + 40, + 37, + 500, + 350, + 170, + 85, + 55, + 110, + 105, + 75, + 70, + 110, + 67, + 55, + 75, + 77, + 70, + 110, + 250, + 53, + 70, + 165, + 72, + 50, + 50, + 125, + 54, + 60, + 100, + 351, + 85, + 135, + 82, + 57, + 500, + 65, + 58, + 68, + 110, + 59, + 70, + 69, + 85, + 300, + 300, + 65, + 52, + 62, + 40, + 150, + 28, + 72.5, + 130, + 65, + 48, + 90, + 65, + 130, + 105, + 40, + 55, + 165, + 90, + 60, + 45, + 65, + 115, + 68, + 65, + 46, + 170, + 150, + 360, + 85, + 260, + 78, + 45, + 160, + 65, + 350, + 180, + 270, + 50, + 130, + 80, + 198, + 50, + 62.5, + 230, + 300, + 50, + 70, + 120, + 86, + 350, + 40, + 260, + 370, + 150, + 75, + 90, + 85, + 38, + 62, + 60, + 40, + 48, + 65, + 47, + 45, + 130, + 130, + 500, + 75, + 75, + 68, + 48, + 200, + 35, + 65, + 205, + 82, + 50, + 80, + 110, + 65, + 205, + 130, + 360, + 175, + 80, + 65, + 85, + 60, + 95, + 230, + 45, + 80, + 180, + 300, + 175, + 65, + 200, + 65, + 30, + 55, + 120, + 75, + 60, + 90, + 110, + 80, + 35, + 78, + 500, + 180, + 128, + 170, + 80, + 150, + 170, + 45, + 65, + 69, + 85, + 57, + 49, + 62, + 85, + 47, + 65, + 50, + 53.5, + 195, + 58, + 200, + 58, + 195, + 70, + 76, + 75, + 57, + 48, + 265, + 80, + 350, + 85, + 56.5, + 47, + 83, + 300, + 55, + 150, + 90, + 65, + 95, + 40, + 70, + 310, + 55, + 75, + 80, + 200, + 55, + 160, + 75, + 65, + 48, + 90, + 95, + 150, + 30, + 56, + 63.1, + 84, + 95, + 130, + 155, + 75, + 150, + 108, + 43, + 70, + 50, + 63, + 65, + 85, + 40, + 220, + 250, + 75, + 45, + 230, + 42, + 50, + 85, + 62, + 90, + 75, + 350, + 65, + 60, + 78, + 150, + 60, + 140, + 200, + 30, + 70, + 93, + 52, + 165, + 55, + 200, + 170, + 105, + 85, + 77.5, + 70, + 75, + 57, + 150, + 69.5, + 55, + 70, + 300, + 58, + 49.9, + 68, + 140, + 110, + 200, + 47, + 65, + 140, + 60, + 110, + 65, + 35, + 57, + 70, + 120, + 120, + 43.5, + 150, + 67, + 125, + 66, + 72, + 82, + 72, + 75, + 48, + 120, + 57, + 85.5, + 76, + 47, + 100, + 80, + 60, + 60, + 67, + 59, + 125, + 65, + 76, + 46, + 110, + 62, + 48, + 150, + 250, + 79, + 45, + 60, + 160, + 39, + 70, + 60, + 100, + 250, + 75, + 75, + 63, + 110, + 75, + 93, + 72, + 360, + 59, + 44, + 120, + 53, + 180, + 56.000099, + 55, + 72, + 150, + 85, + 63, + 180, + 77, + 59, + 68, + 65, + 80, + 90, + 125, + 350, + 80, + 69.5, + 45, + 115, + 100, + 160, + 55, + 105, + 270, + 170, + 60, + 165, + 35, + 120, + 85, + 88, + 53, + 85, + 200, + 265, + 95, + 180, + 85, + 100, + 78, + 125, + 310, + 200, + 130, + 200, + 62, + 67, + 195, + 105, + 70, + 140, + 40, + 280, + 180, + 50, + 61, + 55, + 90, + 220, + 90, + 130, + 55, + 270, + 37, + 70, + 65, + 55, + 95, + 50, + 300, + 300, + 83, + 50, + 50, + 60, + 75, + 150, + 155, + 50, + 250, + 165, + 170, + 45, + 38, + 100, + 48, + 38, + 145, + 100, + 57, + 62, + 67, + 85, + 75, + 120, + 66, + 135, + 42, + 90, + 68, + 53, + 165, + 150, + 85, + 140, + 200, + 270, + 105, + 65, + 48, + 250, + 72, + 250, + 80, + 57, + 55, + 100, + 34, + 90, + 55, + 56, + 160, + 73, + 72.5, + 55, + 57, + 100, + 47.5, + 110, + 50, + 75, + 50, + 55, + 62, + 110, + 73, + 175, + 35, + 55, + 75, + 120, + 56, + 55, + 120, + 500, + 170, + 80, + 35, + 45, + 58, + 270, + 56, + 300, + 75, + 60, + 110, + 200, + 45, + 85, + 35, + 40, + 90, + 55, + 150, + 42, + 65, + 80, + 90, + 85, + 300, + 175, + 65, + 65, + 190, + 65, + 62, + 80, + 37, + 32.5, + 57, + 110, + 230, + 150, + 120, + 400, + 50, + 115, + 47, + 45, + 150, + 38, + 170, + 86, + 100, + 210, + 125, + 400, + 150, + 73, + 50, + 72, + 150, + 68, + 50, + 120, + 40, + 120, + 250, + 88, + 67, + 67, + 80, + 220, + 150, + 36, + 70, + 65, + 68, + 70, + 100, + 170, + 45, + 55, + 65, + 45, + 135, + 350, + 260, + 230, + 48, + 100, + 85, + 46, + 56, + 380, + 90, + 63, + 180, + 170, + 85, + 200, + 59.5, + 120, + 230, + 65, + 30, + 40, + 75, + 94, + 120, + 68, + 52, + 75, + 85, + 55, + 35, + 75, + 55, + 185, + 370, + 70, + 58, + 130, + 65, + 75, + 250, + 36, + 90, + 35, + 130, + 220, + 170, + 82, + 450, + 75, + 45, + 140, + 55, + 185, + 95, + 97, + 52, + 58, + 450, + 40, + 85, + 38, + 100, + 70, + 60, + 50, + 55, + 270.000009, + 70, + 140, + 57, + 48, + 145, + 370, + 110, + 65, + 155, + 56, + 250, + 220, + 53, + 90, + 45, + 400, + 60, + 100, + 35, + 350, + 130, + 140, + 130, + 80, + 42, + 130, + 160, + 26, + 150, + 71, + 75, + 90, + 65, + 87, + 190, + 38, + 60, + 90, + 45, + 135, + 45, + 180, + 78, + 50, + 45, + 80, + 60, + 75, + 55, + 170, + 52, + 10, + 60, + 35, + 110, + 47, + 80, + 350, + 65, + 95, + 290, + 53, + 140, + 88, + 310, + 73, + 47, + 55, + 60, + 50, + 80, + 320, + 51, + 67, + 130, + 90, + 175, + 95, + 80, + 51, + 55, + 45, + 53, + 320, + 75, + 50, + 80, + 59.5, + 53, + 56, + 350, + 150, + 32, + 120, + 65, + 45, + 71, + 100, + 70, + 195, + 60, + 130, + 60.5, + 45, + 100, + 98, + 52, + 35, + 300, + 40, + 35, + 60, + 67, + 98, + 80, + 150, + 140, + 108, + 49, + 60, + 70, + 85, + 36, + 100, + 160, + 54, + 180, + 110, + 60, + 53, + 90, + 45, + 58, + 180, + 95, + 58, + 48, + 51, + 480, + 500, + 57, + 45, + 53, + 110, + 126, + 58, + 85, + 400, + 140, + 95, + 53, + 90, + 150, + 270, + 37, + 350, + 350, + 120, + 110, + 95, + 115, + 200, + 70, + 68, + 58, + 200, + 70, + 50, + 43, + 98, + 450, + 53, + 300, + 45, + 130, + 37, + 59, + 95, + 44, + 73, + 260, + 230, + 130, + 39.6, + 80, + 130, + 320, + 75, + 220, + 300, + 480, + 350, + 95, + 87, + 65, + 95, + 46, + 85, + 70, + 79, + 300, + 105, + 56, + 75, + 60, + 80, + 95, + 100, + 55, + 38, + 75, + 260, + 65, + 95, + 55, + 80, + 35, + 190, + 65, + 130, + 270, + 150, + 190, + 88, + 90, + 50, + 55, + 27, + 39, + 250, + 100, + 130, + 89, + 65, + 150, + 70, + 100, + 260, + 100, + 70, + 80, + 210, + 130, + 50, + 52, + 55, + 65, + 100, + 110, + 10, + 72, + 65, + 65.000009, + 57, + 60, + 45, + 58, + 195, + 350, + 47, + 59, + 90, + 48.5, + 110, + 45, + 45, + 68, + 190, + 90, + 65, + 95, + 57, + 85, + 41, + 60, + 155, + 250, + 100, + 85, + 80, + 200, + 85, + 49, + 20, + 70, + 65, + 85, + 90, + 65, + 45, + 350, + 250, + 70, + 35, + 150, + 47, + 42, + 140, + 50, + 130, + 170, + 65, + 80, + 120, + 30, + 155, + 95, + 47, + 500, + 200, + 500, + 280, + 48, + 75, + 70, + 120, + 63, + 65, + 75, + 75, + 400, + 135, + 170, + 85, + 145, + 120, + 85, + 56, + 55, + 85, + 90, + 150, + 56, + 79, + 75, + 130, + 62, + 39, + 55, + 79, + 65, + 56, + 90, + 125, + 65, + 125, + 90, + 285, + 85, + 78, + 52, + 95, + 95, + 140, + 55, + 260, + 52.5, + 300, + 115, + 75, + 68, + 170, + 195, + 160, + 45, + 48, + 210, + 260, + 80, + 320, + 65, + 42, + 280, + 375, + 65, + 85, + 150, + 49, + 85, + 55, + 62, + 260, + 180, + 120, + 380, + 45, + 51, + 60, + 46, + 63, + 68, + 120, + 130, + 51, + 140, + 95, + 120, + 56, + 110, + 60, + 50, + 350, + 41, + 45, + 98, + 85, + 450, + 63, + 200, + 300, + 130, + 73, + 135, + 65, + 65, + 80, + 55, + 200, + 60, + 62, + 55, + 55, + 76, + 70, + 68, + 105, + 55, + 250, + 140, + 180, + 90, + 130, + 57, + 86, + 80, + 300, + 35, + 110, + 110, + 165, + 57.99, + 55, + 39, + 85, + 57, + 160, + 37, + 125, + 100, + 48, + 65, + 280, + 52, + 42, + 85, + 80, + 80, + 180, + 80, + 90, + 52, + 70, + 160, + 100, + 95, + 70, + 88, + 70, + 53, + 160, + 42, + 125, + 110, + 47, + 75, + 55, + 160, + 55, + 200, + 90, + 150, + 125, + 55, + 69, + 85, + 140, + 230, + 350, + 300, + 65, + 75, + 45, + 45, + 40, + 45, + 48, + 70, + 54, + 245, + 65, + 170, + 45, + 45, + 65, + 73, + 90, + 68, + 110, + 45, + 80, + 92, + 72, + 50, + 75, + 50, + 200, + 120, + 49, + 185, + 110, + 50, + 90, + 240, + 49.5, + 95, + 80, + 55, + 68, + 55, + 50, + 80, + 75, + 55, + 300, + 76, + 76, + 49, + 350, + 65, + 107, + 80, + 98, + 58, + 85, + 52, + 60, + 170, + 90, + 58, + 35, + 110, + 50, + 195, + 130, + 60, + 60, + 85, + 68, + 70, + 250, + 180, + 82, + 58, + 33, + 75, + 57, + 90, + 150, + 75, + 100, + 140, + 250, + 44, + 38, + 170, + 72, + 30, + 75, + 55, + 105, + 48, + 140, + 148, + 68, + 55, + 175, + 89, + 65, + 55, + 130, + 75, + 80, + 350, + 150, + 80, + 110, + 180, + 140, + 55, + 75, + 85, + 65, + 38, + 85, + 95, + 40, + 65, + 135, + 90, + 63, + 75, + 75, + 65, + 55, + 55, + 88, + 30, + 65, + 88, + 120, + 80, + 50, + 58, + 45, + 175, + 120, + 250, + 68, + 130, + 115, + 77.5, + 160, + 50, + 59, + 70, + 47, + 225, + 60, + 90, + 77, + 270, + 85, + 130, + 320, + 33, + 75, + 75, + 60, + 150, + 35, + 150, + 45, + 135, + 130, + 85, + 180, + 48, + 75, + 90, + 59.5, + 300, + 115, + 48, + 80, + 59, + 80, + 135, + 85, + 300, + 82, + 101, + 80, + 85, + 78, + 75, + 95, + 190, + 55, + 280, + 53.5, + 60, + 65, + 43, + 62.99, + 150, + 59.5, + 95, + 85, + 105, + 48, + 48, + 77, + 150, + 190, + 55, + 300, + 70, + 75, + 70, + 100, + 58, + 67, + 55, + 10, + 75, + 80, + 48, + 380, + 55, + 50, + 40, + 170, + 75, + 85, + 97, + 77, + 57, + 85, + 230, + 52, + 50, + 60, + 140, + 90, + 90, + 185, + 75, + 250, + 170, + 60, + 38, + 100, + 178, + 100, + 75, + 115, + 90, + 110, + 98, + 185, + 65, + 190, + 390, + 95, + 55, + 90, + 90, + 90, + 55, + 85, + 50, + 80, + 65, + 35, + 55, + 31, + 90, + 100, + 250, + 58, + 86, + 42, + 125, + 70, + 46, + 46, + 85, + 66, + 150, + 75, + 45, + 105, + 35, + 40, + 130, + 59, + 100, + 160, + 110, + 180, + 77.5, + 110, + 150, + 75, + 95, + 80, + 160, + 68, + 43, + 80, + 67, + 60, + 140, + 160, + 35, + 450, + 55, + 55, + 78, + 65, + 65, + 48, + 140, + 197, + 58, + 68, + 80, + 88, + 82, + 55, + 38, + 65, + 50, + 70, + 45, + 110, + 170, + 220, + 90, + 48, + 35, + 48, + 55, + 80, + 176, + 70, + 52, + 155, + 60, + 100, + 90, + 44, + 95, + 150, + 220, + 55, + 250, + 75, + 52.8, + 43, + 120, + 110, + 73, + 200, + 80, + 68, + 35, + 175, + 170, + 51, + 75, + 250, + 85, + 65, + 33, + 63, + 50, + 90, + 150, + 70, + 120, + 35, + 160, + 38, + 120, + 46, + 280, + 65, + 49, + 50, + 85, + 150, + 130, + 130, + 76, + 124.5, + 95, + 50, + 85, + 120, + 300, + 155, + 75, + 84, + 80, + 45, + 170, + 31, + 70, + 60, + 82, + 85, + 98, + 35, + 62, + 110, + 500, + 130, + 67, + 34, + 49, + 275, + 170, + 56, + 62, + 44, + 140, + 180, + 105, + 150, + 69, + 85, + 46, + 45, + 120, + 48, + 180, + 230, + 75, + 85, + 55, + 110, + 70, + 180, + 60, + 70, + 210, + 85, + 49.5, + 75, + 75, + 170, + 95, + 135, + 78, + 180, + 50, + 45, + 64, + 310, + 78, + 140, + 40, + 500, + 100, + 200, + 82.5, + 43, + 55, + 78, + 80, + 55, + 100, + 140, + 120, + 70, + 75, + 45, + 60, + 60, + 85, + 70, + 55, + 120, + 120, + 48, + 36, + 65, + 165, + 90, + 57, + 70, + 35, + 115, + 125, + 38, + 55, + 45, + 46, + 65, + 160, + 50, + 135, + 100, + 52, + 70, + 47, + 49, + 125, + 77.5, + 95, + 500, + 60, + 160, + 42, + 120, + 100, + 40, + 70, + 80, + 105, + 70, + 65, + 160, + 85, + 69, + 130, + 270, + 140, + 85, + 125, + 80, + 70, + 45, + 36, + 350, + 130.013, + 75, + 90, + 155, + 108, + 45, + 100, + 47, + 75, + 65, + 45, + 67.5, + 65, + 220, + 270, + 250, + 45, + 120, + 85, + 59.5, + 105, + 256, + 48.5, + 60, + 190, + 50, + 41.8, + 200, + 88, + 74, + 47, + 76, + 35, + 180, + 82, + 95, + 55, + 45, + 130, + 53, + 150, + 57, + 55, + 190, + 78, + 40, + 57, + 95, + 50, + 90, + 185, + 69, + 200, + 90, + 75, + 82, + 160, + 105, + 185, + 55, + 210, + 76, + 80, + 85, + 110, + 75, + 48, + 125, + 100, + 165, + 110, + 180, + 55, + 69, + 42, + 60, + 50, + 135, + 85, + 88, + 90, + 150, + 66.329, + 56, + 67, + 60, + 150, + 120, + 130, + 115, + 60, + 70, + 75, + 95, + 88, + 52, + 39.5, + 135, + 190, + 47, + 46.2, + 70, + 58, + 185, + 185, + 78, + 110, + 70, + 230, + 70, + 200, + 90, + 75, + 20, + 200, + 65, + 80, + 40, + 55, + 85, + 72, + 69, + 83, + 34.8, + 85, + 45, + 110, + 75, + 450, + 35, + 27, + 95, + 230, + 56, + 190, + 47, + 65, + 90, + 60, + 120, + 50, + 150, + 78, + 65, + 66, + 50, + 270, + 120, + 75.009009, + 120, + 90, + 43, + 85, + 160, + 53, + 42, + 65, + 48, + 120, + 85, + 55, + 240, + 65, + 220, + 52, + 45, + 59, + 140, + 450, + 125, + 58, + 240, + 85, + 55, + 75, + 50, + 200, + 65, + 350, + 130, + 185, + 100, + 75, + 175, + 49, + 165, + 78, + 110, + 60, + 57, + 45, + 72, + 49, + 55, + 80, + 56, + 50, + 60, + 165, + 250, + 72, + 50, + 90, + 120, + 72, + 100, + 43, + 434, + 125, + 98, + 75, + 65, + 200, + 100, + 90, + 135, + 65, + 84, + 93, + 400, + 95, + 49, + 55, + 52, + 50, + 70, + 350, + 210, + 140, + 66, + 72, + 270, + 300, + 53, + 65, + 90, + 85, + 38, + 45, + 120, + 60, + 150, + 61, + 41, + 50, + 85, + 48, + 100, + 95, + 45, + 230, + 40, + 120, + 16, + 62, + 60, + 77, + 150, + 135, + 62, + 35, + 100, + 130, + 120, + 160, + 41, + 78, + 145, + 15, + 95, + 55, + 85, + 52, + 130, + 120, + 75, + 250, + 175, + 50, + 320, + 65, + 42, + 30, + 100, + 85, + 80, + 75, + 120, + 75, + 75, + 140, + 160, + 175, + 75, + 105, + 38, + 76, + 43.2, + 55, + 67, + 110, + 75, + 30, + 140, + 190, + 75, + 85, + 500, + 75, + 78, + 160, + 120, + 120, + 160, + 300, + 160.000999, + 53, + 65, + 49.9, + 48, + 40, + 180, + 350, + 54, + 70, + 90, + 80, + 170, + 75, + 140, + 140, + 80, + 220, + 400, + 60, + 105, + 40, + 75, + 125, + 35, + 220, + 150, + 62, + 84, + 80, + 160, + 85, + 58, + 500, + 175, + 90, + 65, + 200, + 47, + 69, + 61, + 47, + 90, + 48, + 98, + 40, + 120 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Type=Detached Duplex
Price=%{x}
count=%{y}", + "legendgroup": "Detached Duplex", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "Detached Duplex", + "nbinsx": 120, + "offsetgroup": "Detached Duplex", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 57, + 230, + 90, + 300, + 140, + 120, + 85, + 70, + 220, + 58, + 150, + 75, + 80, + 170, + 48, + 135, + 160, + 120, + 79, + 240, + 300, + 80, + 170, + 270, + 85, + 450, + 400, + 70, + 90, + 300, + 130, + 350, + 180, + 150, + 57, + 290, + 110, + 240, + 105, + 55, + 425, + 140, + 300, + 140, + 68, + 120, + 95, + 260, + 300, + 90, + 45, + 97, + 140, + 73, + 115, + 120, + 45, + 100, + 300, + 75, + 68, + 220, + 140, + 155, + 280, + 150, + 500, + 400, + 48, + 320, + 360, + 185, + 250, + 220, + 130, + 130, + 160, + 170, + 97, + 198, + 69, + 145, + 98, + 80, + 75, + 170, + 150, + 100, + 120, + 73, + 300, + 230, + 130, + 300, + 98, + 55, + 68, + 120, + 130, + 420, + 220, + 130, + 160, + 85, + 200, + 175, + 70, + 210, + 290, + 160, + 67, + 70, + 120, + 380, + 380, + 65, + 300, + 65, + 55, + 125, + 115, + 125, + 40, + 95, + 350, + 350, + 150, + 100, + 170, + 150, + 250, + 260, + 130, + 160, + 39.5, + 85, + 220, + 155, + 75, + 125, + 150, + 65, + 85, + 170, + 62, + 59, + 100, + 90, + 130, + 49, + 250, + 350, + 160, + 75, + 143, + 37, + 35, + 130, + 90, + 200, + 95, + 65, + 160, + 300, + 68, + 90, + 110, + 60, + 280, + 110, + 67, + 52, + 170, + 80, + 100, + 160, + 85, + 123, + 170, + 90, + 85, + 150, + 190, + 200, + 140, + 84, + 200, + 45, + 160, + 130, + 110, + 260, + 125, + 80, + 185, + 66, + 500, + 85, + 205, + 85, + 100, + 72, + 300, + 320, + 163, + 140, + 97, + 140, + 370, + 180, + 170, + 200, + 75, + 37, + 170, + 300, + 200, + 55, + 120, + 280, + 190, + 360, + 90, + 105, + 45, + 400, + 230, + 180, + 115, + 300, + 110, + 330, + 390, + 200, + 85, + 130, + 65, + 180, + 80, + 70, + 300, + 350, + 235, + 190, + 140, + 50, + 265, + 250, + 150, + 300, + 125, + 80, + 75, + 230, + 160, + 117, + 85, + 67, + 65, + 120, + 400, + 350, + 180, + 400, + 115, + 200, + 145, + 95, + 130, + 50, + 82, + 75, + 14, + 32.75, + 75, + 400, + 80, + 98, + 90, + 135, + 160, + 130, + 160, + 110, + 112, + 85, + 85, + 120, + 85, + 88, + 100, + 500, + 290, + 165, + 60, + 278, + 190, + 75, + 80, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 185, + 270, + 140, + 390, + 290, + 84, + 75, + 30, + 230, + 160, + 230, + 130, + 350, + 225, + 41.5, + 75, + 175, + 140, + 260, + 150, + 110, + 55, + 65, + 140, + 110, + 165, + 130, + 75, + 280, + 130, + 80, + 130, + 200, + 185, + 320, + 295, + 47, + 200, + 75, + 60, + 185, + 180, + 290, + 140, + 80, + 370, + 90, + 30, + 450, + 250, + 66, + 95, + 15.5, + 80, + 280, + 48, + 65, + 45, + 180, + 82, + 195, + 270, + 52, + 140, + 250, + 80, + 180, + 72, + 35, + 240, + 500, + 60, + 45, + 62, + 60, + 75, + 170, + 140, + 180, + 190, + 97, + 170, + 100, + 90, + 125, + 55, + 198, + 80, + 55, + 130, + 110, + 53, + 127, + 130, + 98, + 73, + 130, + 89, + 300, + 390, + 130, + 140, + 150, + 250, + 68, + 80, + 120, + 480, + 500, + 430, + 75, + 100, + 145, + 140, + 110, + 95, + 125, + 100, + 270, + 350, + 180, + 135, + 87, + 120, + 40, + 32.5, + 67, + 350, + 94, + 150, + 85, + 125, + 120, + 180, + 185, + 77, + 250, + 120, + 85, + 235, + 40.5, + 95, + 73, + 198, + 290, + 62, + 200, + 170, + 60, + 350, + 250, + 500, + 450, + 250, + 165, + 125, + 225, + 85, + 299.999999, + 180, + 250, + 60, + 70, + 80, + 75, + 130, + 144, + 102, + 160, + 280, + 140, + 67, + 155, + 70, + 160, + 135, + 85, + 63, + 100, + 450, + 130, + 98, + 220, + 200, + 240, + 170, + 220, + 130, + 50, + 250, + 240, + 200, + 90, + 66, + 180, + 45, + 180, + 160, + 56.5, + 230, + 48, + 45, + 105, + 150, + 130, + 150, + 32.75, + 67, + 65, + 38, + 35, + 175, + 117, + 55, + 75, + 80, + 70, + 110, + 205, + 80, + 160, + 110, + 400, + 170, + 48, + 49.5, + 260, + 120, + 200, + 500, + 155, + 95, + 110, + 95, + 125, + 165, + 250, + 42.5, + 100, + 75, + 115, + 220, + 150, + 270, + 145, + 185, + 280, + 360, + 70, + 68, + 105, + 170, + 75, + 415, + 350, + 300, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 220, + 58, + 33, + 270, + 60, + 135, + 110, + 450, + 165, + 50, + 300, + 280, + 290, + 38, + 158, + 100, + 100, + 410, + 76, + 350, + 68, + 110, + 60, + 70, + 118, + 102, + 180, + 189, + 157, + 85, + 60, + 140, + 90, + 150, + 300, + 300, + 80, + 120, + 420, + 400, + 115, + 150, + 60, + 500, + 73, + 110, + 198, + 125, + 75, + 55, + 72, + 500, + 85, + 170, + 150, + 92, + 90, + 75, + 77, + 105, + 350, + 120, + 50, + 100, + 75, + 500, + 250, + 50, + 450, + 130, + 180, + 210, + 195, + 150, + 170, + 130, + 80, + 210, + 70, + 410, + 68, + 90, + 65, + 230, + 88, + 68, + 180, + 145, + 200, + 78, + 220, + 470, + 220, + 55, + 97, + 340, + 290, + 65, + 145, + 95, + 95, + 180, + 75, + 80, + 75, + 120, + 36, + 200, + 50, + 285, + 45, + 78, + 150, + 269, + 225, + 110, + 130, + 95, + 67, + 70, + 79, + 155, + 95, + 65, + 270, + 80, + 255, + 105, + 360, + 72, + 280, + 82, + 33, + 250, + 118, + 195, + 75, + 110, + 75, + 190, + 120, + 300, + 48, + 200, + 200, + 76, + 270, + 53, + 250, + 180, + 126, + 155, + 100, + 90, + 350, + 105, + 180, + 70, + 330, + 65, + 380, + 170, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 165, + 77, + 280, + 120, + 155, + 70, + 169, + 160, + 190, + 190, + 480, + 170, + 76, + 85, + 130, + 120, + 190, + 130, + 115, + 40, + 120, + 275, + 95, + 45, + 130, + 165, + 68, + 80, + 320, + 120, + 100.01, + 78, + 110, + 185, + 95, + 90, + 300, + 260, + 200, + 75, + 85, + 62, + 160, + 85, + 200, + 160, + 100, + 250, + 170, + 85, + 73, + 170, + 160, + 450, + 390, + 70, + 51, + 120, + 400, + 135, + 140, + 65, + 130, + 106, + 295, + 450, + 392, + 120, + 60, + 65, + 250, + 140, + 55, + 420, + 105, + 230, + 160, + 57, + 250, + 360, + 78, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 250, + 198.5, + 127, + 125, + 80, + 200, + 270, + 35, + 95, + 98, + 75, + 135, + 60, + 85, + 250, + 160, + 110, + 47, + 100, + 250, + 280, + 92, + 80, + 100, + 140, + 140, + 190, + 145, + 145, + 63, + 200, + 410, + 135, + 95, + 300, + 130, + 160, + 280, + 260, + 300, + 250, + 480, + 68, + 56, + 170, + 82, + 135, + 72, + 270, + 183, + 164, + 125, + 240, + 59.5, + 190, + 380, + 155, + 180, + 500, + 60, + 170, + 70, + 95, + 60, + 98, + 140, + 130, + 67, + 450, + 165, + 90, + 100, + 175, + 85, + 290, + 150, + 300, + 165, + 100, + 240, + 69, + 95, + 125, + 210, + 80, + 120, + 90, + 500, + 45, + 280, + 33, + 220, + 120, + 270, + 150, + 105, + 68, + 240, + 120, + 65, + 400, + 175, + 260, + 350, + 170, + 76, + 95, + 98, + 33, + 195, + 130, + 80, + 77, + 130, + 450, + 120, + 95, + 145, + 300, + 55, + 93, + 40, + 280, + 195, + 80, + 130, + 290, + 270, + 79.5, + 97, + 115, + 158, + 280, + 80, + 380, + 90, + 90, + 68, + 32, + 220, + 250, + 350, + 70, + 110, + 400, + 53, + 370, + 24, + 165, + 165, + 57, + 195, + 130, + 70, + 50, + 65, + 109, + 130, + 120, + 270, + 62, + 110, + 225, + 220, + 280, + 74, + 78, + 110, + 120, + 110, + 280, + 45, + 270, + 158, + 245, + 380, + 135, + 75, + 400, + 90, + 100, + 85, + 185, + 88, + 98, + 75, + 55, + 32, + 160, + 150, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 60, + 145, + 140, + 70, + 45, + 250, + 480, + 90, + 110, + 270, + 105, + 30, + 190, + 400, + 85, + 190, + 52, + 270, + 350, + 80, + 58, + 180, + 250, + 185, + 37, + 100, + 200, + 90, + 76, + 170, + 135, + 90, + 135, + 285, + 290, + 450, + 87, + 170, + 230, + 130, + 350, + 83, + 77, + 155, + 145, + 170, + 400, + 59, + 230, + 250, + 500, + 180, + 180, + 69.99, + 63, + 90, + 200, + 148, + 230, + 75, + 250, + 300, + 65, + 185, + 250, + 180, + 48, + 265, + 65, + 70, + 150, + 167, + 93, + 440, + 115, + 115, + 380, + 45, + 330, + 275, + 185, + 300, + 78, + 275, + 120, + 118, + 68, + 160, + 77, + 160, + 75, + 150, + 58, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 30, + 300, + 120, + 450, + 230, + 110, + 150, + 320, + 95, + 480, + 150, + 83, + 60, + 45, + 185, + 70, + 250, + 110, + 200, + 280, + 125, + 200, + 350, + 330, + 45, + 45, + 270, + 58, + 43, + 70, + 58, + 145, + 60, + 120, + 260, + 430, + 285, + 150, + 140, + 65, + 50, + 185, + 185, + 150, + 80, + 195, + 120, + 220, + 145, + 85, + 500, + 80, + 67, + 48, + 79.5, + 130, + 180, + 120, + 300, + 69, + 55, + 73, + 300, + 210, + 120, + 140, + 85, + 230, + 54, + 80, + 275, + 380, + 125, + 75, + 140, + 300, + 50, + 150, + 75, + 95, + 183, + 55, + 145, + 170, + 90, + 190, + 80, + 280, + 200, + 220, + 285, + 195, + 48, + 160, + 85, + 85, + 45, + 130, + 197.5, + 69.5, + 180, + 200, + 50, + 350, + 135, + 75, + 85, + 320, + 290, + 135, + 97, + 240, + 350, + 230, + 125, + 47, + 95, + 58, + 95, + 45, + 115, + 165, + 150, + 60, + 46, + 75.000009, + 200, + 190, + 125, + 95, + 67, + 185, + 55, + 350, + 180, + 140, + 260, + 75, + 400, + 360, + 90, + 130, + 95, + 430, + 250, + 125, + 85, + 450, + 270, + 330, + 250, + 350, + 200, + 120, + 195, + 220, + 68, + 140, + 150, + 95, + 160, + 210, + 65, + 30, + 140, + 255, + 120, + 230, + 200, + 175, + 83, + 200, + 350, + 130, + 360, + 150, + 130, + 92, + 130, + 115, + 120, + 95, + 125.99, + 155, + 170, + 65, + 300, + 145, + 80, + 90, + 155, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 60, + 280, + 230, + 90, + 110, + 110, + 220, + 210, + 235, + 155, + 220, + 220, + 280, + 135, + 350, + 125, + 185, + 350, + 150, + 105, + 185, + 78, + 240, + 98, + 200, + 155, + 55, + 130, + 120, + 500, + 110, + 65, + 350, + 480, + 130, + 150, + 200, + 52, + 110, + 110, + 27, + 168, + 120, + 130, + 130, + 500, + 320, + 118, + 135, + 400, + 230, + 280, + 220, + 190, + 55, + 75, + 48, + 140, + 95, + 125, + 180, + 400, + 450, + 500, + 160, + 100, + 70, + 58, + 180, + 150, + 105, + 155, + 60, + 82, + 110, + 68, + 90, + 54, + 155, + 100, + 100, + 300, + 85, + 60, + 97, + 90, + 80, + 100, + 40, + 260, + 96, + 170, + 47, + 150, + 28, + 180, + 190, + 170, + 150, + 220, + 160, + 110, + 110, + 75, + 48, + 72, + 42, + 55, + 280, + 130, + 300, + 150, + 115, + 400, + 150, + 75, + 60, + 260, + 400, + 200, + 170, + 300, + 205, + 210, + 500, + 160, + 120, + 170, + 100, + 130, + 70, + 450, + 250, + 200, + 175, + 130, + 300, + 125, + 250, + 300, + 17, + 120, + 75, + 53, + 250, + 395, + 70, + 90, + 55, + 80, + 135, + 95, + 145, + 450, + 140, + 90, + 70, + 370, + 290, + 45, + 45, + 80, + 62, + 225, + 170, + 125, + 65, + 65, + 48, + 250, + 250, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 130, + 120, + 135, + 160, + 110, + 145, + 35, + 370, + 110, + 88, + 450, + 450, + 350, + 120, + 250, + 125, + 230, + 190, + 445, + 120, + 450, + 88, + 260, + 50, + 180, + 110, + 105, + 74, + 150, + 400, + 170, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 70, + 350, + 95, + 170, + 125, + 200, + 59, + 450, + 120, + 235, + 165, + 127, + 290, + 80, + 95, + 95, + 160, + 130, + 330, + 400, + 70, + 260, + 95, + 200, + 500, + 68, + 90, + 270, + 95, + 62, + 65, + 185, + 110, + 65, + 250, + 120, + 20, + 250, + 140, + 120, + 130, + 110, + 105, + 120, + 38, + 250, + 199.999, + 220, + 450, + 105, + 190, + 250, + 135, + 73, + 110, + 300, + 130, + 33, + 65, + 190, + 95, + 55, + 260, + 105, + 55, + 270, + 50, + 48, + 170, + 245, + 48, + 400, + 110, + 50, + 250, + 85, + 78, + 135, + 47, + 350, + 270, + 255, + 230, + 120, + 155, + 57, + 110, + 51, + 90, + 143, + 160, + 450, + 180, + 280, + 49, + 270, + 79, + 78, + 83, + 40, + 232, + 153, + 59, + 170, + 53, + 155, + 67, + 320, + 175, + 80, + 70, + 270, + 300, + 390, + 175, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 215, + 80, + 160, + 99, + 430, + 50, + 400, + 85, + 60, + 230, + 115, + 90, + 500, + 75, + 115, + 115, + 140, + 47, + 170, + 200, + 165, + 138, + 165, + 210, + 95, + 70, + 90, + 85, + 70, + 62, + 70, + 52, + 65, + 450, + 450, + 160, + 80, + 135, + 130, + 110, + 470, + 300, + 160, + 120, + 60, + 150, + 150, + 57, + 58, + 130, + 115, + 60, + 480, + 75, + 130, + 54, + 100, + 95, + 180, + 130, + 80, + 400, + 85, + 50, + 140, + 150, + 335, + 130, + 250, + 110, + 135, + 100, + 170, + 72, + 160, + 200, + 75, + 450, + 130, + 55, + 36, + 90, + 95, + 150, + 130, + 500, + 90, + 280, + 400, + 250, + 500, + 190, + 160, + 200, + 90, + 235, + 280, + 55, + 85, + 120, + 255, + 173, + 44, + 175, + 135, + 135, + 460, + 47, + 60, + 190, + 230, + 360, + 72, + 110, + 65, + 220, + 95, + 145, + 85, + 44, + 100, + 200, + 59, + 65, + 150, + 130, + 75, + 68, + 190, + 100, + 320, + 68, + 235, + 100, + 420, + 100, + 100, + 45, + 200, + 195, + 95, + 280, + 360, + 240, + 90, + 130, + 215, + 96, + 45, + 70, + 75, + 40, + 90, + 65, + 140, + 250, + 165, + 120, + 135, + 140, + 145, + 185, + 70, + 220, + 106, + 350, + 85, + 135, + 480, + 155, + 37, + 380, + 85, + 80, + 57, + 75, + 330, + 125, + 215, + 180, + 140, + 75, + 57, + 300, + 180, + 500, + 150, + 450, + 88, + 250, + 230, + 55, + 160, + 400, + 140, + 45, + 150, + 480, + 75, + 85, + 85, + 130, + 250, + 200, + 250, + 380, + 206, + 170, + 500, + 170, + 170, + 140, + 70, + 450, + 260, + 189, + 85, + 260, + 300, + 160, + 240, + 85, + 280, + 82, + 82, + 120, + 70, + 250, + 110, + 380, + 130, + 53, + 300, + 70, + 58, + 72, + 165, + 170, + 50, + 270, + 500, + 190, + 100, + 65, + 170, + 140, + 95, + 230, + 210, + 310, + 130, + 105, + 240, + 450, + 130, + 150, + 270, + 120, + 45, + 400, + 365, + 180, + 150, + 155, + 300, + 80, + 35, + 185, + 53, + 38, + 65, + 350, + 480, + 140, + 78, + 57, + 57, + 90, + 220, + 240, + 90, + 90, + 75, + 100, + 500, + 80, + 150, + 105, + 80.000005, + 250, + 62, + 73, + 380, + 160, + 46, + 310, + 170, + 80, + 290, + 45, + 220, + 185, + 350, + 50, + 64, + 180, + 290, + 150, + 150, + 120, + 250, + 320, + 130, + 56, + 140, + 125, + 120, + 90, + 190, + 150, + 100, + 190, + 120, + 180, + 90, + 85, + 74.999999, + 37, + 85, + 68, + 140, + 400, + 250, + 450, + 38, + 185, + 270, + 175, + 180, + 133, + 240, + 110, + 348, + 140, + 200, + 370, + 40, + 90, + 150, + 66, + 150, + 150, + 500, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 235, + 38.99, + 370, + 87, + 135, + 220, + 65, + 350, + 105, + 190, + 75, + 150, + 140, + 45, + 100, + 85, + 110, + 70, + 75, + 450, + 150, + 130, + 50, + 85, + 110, + 230, + 280, + 400, + 135, + 115, + 71, + 130, + 100, + 70, + 125, + 102, + 300, + 93, + 160, + 40, + 70, + 450, + 140, + 65, + 270, + 40, + 75, + 19.975, + 38, + 290, + 180, + 120, + 90, + 65, + 50, + 360, + 90, + 130, + 65, + 23, + 250, + 55, + 100, + 400, + 85, + 90, + 66, + 46, + 58, + 100, + 102, + 135, + 85, + 120, + 365, + 125, + 47, + 300, + 115, + 240, + 320, + 250, + 135, + 63, + 80, + 200, + 270, + 170, + 69.99, + 49, + 85, + 34, + 110, + 190, + 50, + 400, + 80, + 92, + 65, + 100.99, + 38, + 120, + 90, + 85, + 85, + 220, + 150, + 500, + 90, + 160, + 150, + 95, + 190, + 53, + 160, + 120, + 260, + 180, + 155, + 150, + 195, + 105, + 85, + 35, + 90, + 460, + 115, + 95, + 70, + 50, + 205, + 300, + 100, + 185, + 100, + 150, + 160, + 180, + 90, + 120, + 127, + 200, + 17.675, + 90, + 140, + 200, + 120, + 60, + 54, + 70, + 125, + 115, + 300, + 72, + 130, + 190, + 70, + 66, + 80, + 100, + 57, + 295, + 35, + 72, + 175, + 80, + 85, + 175, + 78, + 170, + 40, + 135, + 260, + 150, + 65, + 83, + 100, + 250, + 50, + 220, + 125, + 90, + 190, + 55, + 185, + 260, + 100, + 180, + 380, + 135, + 100, + 300, + 60, + 150, + 110, + 95, + 130, + 170, + 140, + 95, + 92, + 220, + 120, + 55, + 165, + 75, + 90, + 90, + 190, + 165, + 100, + 120, + 270, + 135, + 350, + 260, + 58, + 280, + 420, + 65, + 130, + 60, + 58, + 85, + 265, + 350, + 48, + 270, + 47, + 65, + 67, + 295, + 175, + 200, + 250, + 90, + 75, + 40, + 80, + 140, + 200, + 250, + 260, + 55, + 135, + 59, + 235, + 75, + 380, + 155, + 395, + 120, + 198, + 69, + 280, + 220, + 75, + 115, + 110, + 85, + 85, + 230, + 80, + 450, + 320, + 250, + 190, + 140, + 130, + 55, + 80, + 70, + 190, + 220, + 120, + 79.5, + 115, + 95, + 68, + 205, + 68, + 200, + 160, + 60, + 230, + 110, + 300, + 200, + 350, + 250, + 60, + 125, + 230, + 90, + 75, + 150, + 160, + 60, + 85, + 460, + 270, + 150, + 400, + 185, + 500, + 115, + 235, + 125, + 70, + 140, + 110, + 95, + 300, + 250, + 155, + 80, + 52, + 180, + 250, + 52, + 130, + 63, + 280, + 65, + 145, + 56, + 145, + 55, + 80, + 63, + 250, + 300, + 73, + 50, + 95, + 185, + 105, + 110, + 150, + 41, + 140, + 82, + 160, + 125, + 108, + 145, + 100, + 115, + 50, + 70, + 320, + 125, + 70, + 70, + 90, + 83, + 88, + 80, + 280, + 140, + 83, + 200, + 75, + 300, + 100, + 185, + 450, + 38.5, + 200, + 92, + 135, + 320, + 140, + 100, + 105, + 58, + 85, + 390, + 170, + 98, + 285, + 50, + 145, + 85, + 135, + 135, + 180, + 60, + 180, + 197, + 110, + 400, + 80, + 100, + 135, + 100, + 120, + 145, + 110, + 85, + 500, + 170, + 285, + 250, + 55, + 500, + 300, + 49.5, + 145, + 160, + 400, + 100, + 120, + 68, + 160, + 155, + 155, + 85, + 500, + 150, + 95, + 60, + 210, + 74, + 195, + 410, + 110, + 65, + 200, + 80, + 60, + 80, + 55, + 55, + 120, + 500, + 140, + 145, + 48, + 65, + 37, + 100, + 60, + 160, + 95, + 250, + 39, + 190, + 185, + 140, + 45, + 97.5, + 115, + 95, + 285, + 350, + 250, + 90, + 55, + 370, + 75, + 60, + 75, + 187, + 90, + 160, + 180, + 62, + 85, + 105, + 250, + 120, + 250, + 80, + 148, + 45, + 160, + 120, + 160, + 255, + 150, + 85, + 250, + 65, + 130, + 87, + 165, + 250, + 58, + 50, + 200, + 50, + 60, + 18, + 120, + 350, + 57, + 175, + 230, + 90, + 250, + 130, + 100, + 270, + 140, + 140, + 90, + 75, + 250, + 180, + 500, + 200, + 300, + 50, + 175, + 60, + 69, + 280, + 63, + 270, + 300, + 120, + 45, + 100, + 55, + 65, + 120, + 350, + 40, + 250, + 41, + 150, + 49.5, + 300, + 170, + 145, + 54, + 195, + 110, + 140, + 261, + 210, + 55, + 200, + 260, + 150, + 140, + 120, + 90, + 185, + 450, + 95, + 150, + 385, + 55, + 150, + 120, + 55, + 165, + 120, + 280, + 53, + 102, + 300, + 42, + 98, + 50, + 110, + 100, + 140, + 235, + 120, + 160, + 150, + 250, + 125, + 280, + 370, + 200, + 300, + 400, + 45, + 60, + 45, + 45, + 145, + 75, + 65, + 30, + 160, + 275, + 169.5, + 85, + 190, + 170, + 150, + 105, + 150, + 300, + 300, + 200, + 68, + 150, + 140, + 90, + 150, + 120, + 177.99, + 75, + 87.000099, + 100, + 45, + 170, + 150, + 210, + 125, + 350, + 150, + 170, + 300, + 55, + 180, + 170, + 300, + 85, + 65, + 138, + 450, + 130, + 250, + 48, + 90, + 80, + 480, + 60, + 140, + 150, + 135, + 195, + 275, + 55, + 460, + 500, + 340, + 450, + 340, + 65, + 55, + 73, + 70, + 90, + 42, + 130, + 80, + 60, + 370, + 125, + 180, + 280, + 140, + 95, + 270, + 170, + 200, + 57, + 150, + 130, + 175, + 75, + 390, + 160, + 230, + 65, + 75, + 80, + 165, + 160, + 75, + 210, + 60, + 68, + 85, + 95, + 330, + 65, + 300, + 165, + 155, + 62, + 65, + 130, + 165, + 240, + 185, + 180, + 100, + 130, + 95, + 155, + 230, + 55, + 270, + 85, + 180, + 115, + 180, + 180, + 150, + 68, + 180, + 80, + 41.5, + 34.5, + 80, + 55, + 125, + 62, + 120, + 350, + 220, + 150, + 160, + 300, + 320, + 150, + 198, + 60, + 60, + 155, + 95, + 78, + 200, + 110, + 140, + 350, + 190, + 30, + 80, + 140, + 190, + 12, + 40, + 32, + 220, + 98, + 220, + 90, + 130, + 180, + 130, + 275, + 265, + 120, + 180, + 165, + 390, + 64, + 110, + 55, + 53, + 90, + 60, + 80, + 85, + 140, + 170, + 75, + 68, + 135, + 70, + 34, + 105, + 250, + 95, + 150, + 100, + 98, + 43.5, + 350, + 300, + 380, + 200, + 200, + 325, + 50, + 240, + 125, + 110, + 85, + 50, + 130, + 280, + 185, + 150, + 50, + 200, + 300, + 220, + 99, + 125, + 140, + 300, + 80, + 115, + 70, + 55, + 220, + 83, + 500, + 210, + 75, + 130, + 80, + 370, + 200, + 100, + 190, + 105, + 145, + 175, + 77, + 120, + 55, + 40, + 480, + 240, + 120, + 190, + 155, + 180, + 460, + 85, + 170, + 260, + 70, + 85, + 70, + 70, + 80, + 150, + 79, + 120, + 110, + 123, + 270, + 185, + 400, + 200, + 150, + 105, + 90, + 260, + 370, + 80, + 170, + 68, + 240, + 140, + 230, + 110, + 140, + 220, + 85, + 110, + 300, + 52, + 140, + 115, + 85, + 75, + 160, + 135, + 200, + 99, + 330, + 185, + 97, + 170, + 40, + 230, + 95, + 108, + 100, + 47, + 198, + 65, + 175, + 300, + 200, + 120, + 210, + 69, + 80, + 60, + 79.5, + 200, + 110, + 47, + 65, + 120, + 120, + 80, + 75, + 62, + 67, + 140, + 160, + 140, + 95, + 85, + 110, + 42, + 180, + 58, + 110, + 160, + 35, + 60, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 95, + 300, + 63, + 220, + 270, + 150.000009, + 56, + 240, + 70, + 220, + 250, + 185, + 330, + 140, + 64, + 53, + 500, + 80, + 500, + 250, + 140, + 145, + 120, + 220, + 68, + 145, + 92, + 80, + 270, + 120, + 300, + 155, + 100, + 130, + 200, + 170, + 100, + 130, + 75, + 230, + 140, + 75, + 125, + 33.5, + 41.8, + 63, + 245, + 200, + 180, + 45, + 60, + 80, + 190, + 155, + 20, + 300, + 180, + 299.999999, + 145, + 160, + 150, + 65, + 60, + 35, + 140, + 290, + 75, + 130, + 300, + 320, + 260, + 120, + 90, + 95, + 65, + 110, + 100, + 450, + 125, + 65, + 90, + 170, + 100, + 125, + 130, + 60, + 300, + 165, + 290, + 100, + 150, + 105, + 200, + 130, + 85, + 180, + 66, + 200, + 450, + 55, + 135, + 170, + 125, + 260, + 82, + 78, + 70, + 150, + 128, + 270, + 75, + 65, + 105, + 50, + 170, + 130, + 120, + 155, + 75, + 220, + 250, + 250, + 135, + 380, + 220, + 75, + 170, + 65, + 350, + 290, + 420, + 95, + 275, + 65, + 170, + 90, + 395, + 450, + 350, + 82, + 335, + 215, + 110, + 63, + 50, + 450, + 185, + 500, + 65, + 50, + 170, + 150, + 180, + 130, + 65, + 130, + 170, + 69, + 130, + 135, + 130, + 69, + 120, + 280, + 240, + 155, + 80, + 235, + 47, + 125, + 400, + 60, + 130, + 250, + 110, + 80, + 60, + 500, + 125, + 120, + 230, + 170, + 98, + 95, + 140, + 125, + 60, + 160, + 420, + 350, + 480, + 420, + 75, + 165, + 120, + 125, + 235, + 150, + 320, + 300, + 200, + 105, + 150, + 250, + 90, + 35, + 255, + 120, + 180, + 250, + 380, + 160, + 230, + 130, + 43, + 144, + 70, + 185, + 140, + 110, + 100, + 200, + 40, + 380, + 150, + 133, + 63, + 280, + 500, + 125, + 70, + 49, + 120, + 180, + 200, + 200, + 200, + 85, + 65, + 140, + 110, + 44.9, + 180, + 120, + 130, + 200, + 95, + 280, + 38, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 205, + 57, + 110, + 260, + 75, + 120, + 185, + 70, + 200, + 230, + 160, + 220, + 63, + 150, + 87, + 100, + 75, + 280, + 85, + 180, + 130, + 200, + 280, + 150, + 450, + 130, + 140, + 105, + 105, + 60, + 160, + 250, + 198, + 180, + 155, + 190, + 120, + 200, + 65, + 80, + 150, + 47.999999, + 400, + 85, + 70, + 300, + 220, + 80, + 280, + 85, + 225, + 60, + 75, + 230, + 60, + 65, + 170, + 290, + 140, + 80, + 150, + 105, + 61, + 54, + 50, + 450, + 82, + 85, + 180, + 500, + 450, + 145, + 115, + 55, + 270, + 440, + 70, + 55, + 100, + 150, + 90, + 125, + 90, + 95, + 115, + 63, + 110, + 175, + 150, + 48, + 115, + 295, + 175, + 500, + 180, + 48, + 70, + 370, + 110, + 180, + 235, + 135, + 145, + 190, + 100, + 85, + 450, + 60, + 125, + 100, + 98, + 43, + 300, + 100, + 45, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 120, + 68, + 200, + 150, + 110, + 75, + 33, + 220, + 200, + 350, + 165, + 250, + 220, + 180, + 130, + 90, + 95, + 65, + 150, + 160, + 185, + 130, + 210, + 100, + 55, + 120, + 50, + 210, + 240, + 85, + 120, + 185, + 80, + 90, + 124, + 188, + 95, + 260, + 160, + 60, + 65, + 140, + 160, + 55, + 250, + 160, + 69, + 235, + 110, + 46, + 65, + 100, + 110, + 250, + 265, + 130, + 85, + 100, + 130, + 230, + 200, + 290, + 300, + 125, + 70, + 72, + 95, + 95, + 450, + 90, + 160, + 100, + 90, + 28, + 300, + 150, + 350, + 265, + 115, + 45, + 65, + 190, + 115, + 62, + 180, + 250, + 67, + 500, + 170, + 400, + 300, + 350, + 88, + 55, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 270, + 85, + 65, + 140, + 120, + 200, + 35, + 260, + 55.5, + 120, + 200, + 125, + 75, + 49, + 135, + 235, + 95, + 100, + 120, + 110, + 92, + 110, + 320, + 210, + 95, + 158, + 140, + 90, + 120, + 58, + 470, + 38, + 300, + 195, + 185, + 120, + 500, + 65, + 160, + 140, + 40, + 195, + 195, + 70, + 150, + 75, + 200, + 125, + 350, + 98, + 80, + 140, + 140, + 110, + 450, + 450, + 400, + 35, + 35, + 175, + 235, + 88, + 350, + 69, + 130, + 60, + 100, + 150, + 220, + 78, + 165, + 80, + 130, + 68, + 250, + 120, + 55, + 500, + 275, + 34, + 55, + 480, + 250, + 170, + 165, + 180, + 185, + 110, + 75, + 160, + 120, + 350, + 227, + 470, + 62, + 200, + 130, + 70, + 170, + 220, + 160, + 190, + 130, + 55, + 280, + 85, + 105, + 75, + 45, + 72, + 125, + 88, + 170, + 95, + 54, + 195, + 77, + 120, + 260, + 69, + 65, + 175, + 50, + 87, + 160, + 70, + 90, + 300, + 70, + 120, + 165, + 230, + 45, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 160, + 75, + 140, + 75, + 185, + 75, + 200, + 110, + 65, + 255, + 110, + 57, + 160, + 95, + 77, + 480, + 55, + 380, + 420, + 58, + 400, + 75, + 130, + 160, + 70, + 230, + 50, + 320, + 150, + 68, + 68, + 155, + 200, + 165, + 90, + 75, + 150, + 145, + 20, + 245, + 140, + 130, + 165, + 230, + 250, + 270, + 110, + 200, + 350, + 35, + 130, + 75, + 50, + 40, + 78, + 85, + 51, + 320, + 65, + 73, + 420, + 54, + 320, + 235, + 160, + 165, + 65, + 220, + 250, + 90, + 45, + 100, + 240, + 130, + 280, + 400, + 62, + 175, + 69, + 70, + 125, + 150, + 210, + 85, + 120, + 120, + 97, + 75, + 92, + 37, + 72, + 35, + 112, + 65, + 96, + 37, + 230, + 150, + 120, + 270, + 140, + 210, + 62, + 185, + 150, + 80, + 170, + 235, + 150, + 140, + 105, + 280, + 275, + 90, + 45, + 100, + 130, + 70, + 130, + 290, + 155, + 145, + 75, + 110, + 75, + 59, + 140, + 73, + 125, + 150, + 67, + 100, + 55, + 180, + 390, + 55, + 250, + 75, + 175, + 72, + 57, + 290, + 55, + 180, + 65, + 350, + 120, + 430, + 340, + 70, + 95, + 110, + 80, + 230, + 110, + 100, + 70, + 380, + 85, + 100, + 88, + 140, + 125, + 95, + 150, + 350, + 150, + 200, + 57, + 135, + 180, + 350, + 400, + 76, + 155, + 51.5, + 350, + 100, + 52, + 205, + 300, + 320, + 115, + 90, + 170, + 35, + 280, + 80, + 43, + 140, + 130, + 240, + 180, + 190, + 275, + 65, + 45, + 380, + 120, + 145, + 415, + 145, + 80, + 300, + 55, + 180, + 80, + 240, + 95, + 350, + 70, + 135, + 75, + 450, + 270, + 125, + 120, + 62, + 250, + 200, + 59, + 35, + 500, + 75, + 240, + 45, + 57, + 110, + 220, + 35, + 120, + 320, + 220, + 100, + 160, + 90, + 57, + 18, + 60, + 180, + 130, + 400, + 420, + 90, + 220, + 90, + 57, + 200, + 500, + 130, + 78, + 220, + 300, + 26, + 85, + 100, + 500, + 75, + 250, + 135, + 75, + 90, + 230, + 320, + 57, + 320, + 150, + 160, + 400, + 200, + 175, + 240, + 48, + 120, + 420, + 185, + 130, + 155, + 270, + 75, + 135, + 180, + 50, + 69.9, + 85, + 170, + 80, + 120, + 350, + 500, + 150, + 57, + 120, + 30, + 85, + 65, + 53, + 51, + 97, + 120, + 250, + 45, + 30, + 92, + 350, + 68, + 73, + 110, + 200, + 67, + 180, + 280, + 85, + 85, + 45, + 380, + 150, + 56, + 29, + 60, + 155, + 500, + 85, + 100, + 105, + 55, + 130, + 450, + 320, + 55, + 125, + 115, + 75, + 85, + 45, + 155, + 85, + 230, + 150, + 37, + 45, + 120, + 75, + 175, + 110, + 90, + 60, + 65, + 260, + 400, + 90, + 115, + 52, + 77, + 170, + 133, + 170, + 55, + 120, + 41, + 195, + 63, + 68, + 180, + 360, + 100, + 360, + 320, + 250, + 85, + 125, + 120, + 97, + 350, + 75, + 50, + 320, + 100, + 65, + 55, + 360, + 55, + 120, + 43, + 70, + 260, + 175, + 300, + 130, + 38, + 90, + 270, + 480, + 120, + 440, + 210, + 220, + 135, + 220, + 450, + 55, + 95, + 48, + 60, + 120, + 50, + 110, + 75, + 55, + 180, + 95, + 260, + 72, + 175, + 70, + 50, + 150, + 65, + 46, + 300, + 72, + 180, + 50, + 78, + 155, + 210, + 225, + 185, + 310, + 80, + 180, + 52, + 280, + 260, + 60, + 110, + 78, + 58, + 360, + 130, + 70, + 83, + 65, + 165, + 65, + 500, + 120, + 35, + 77, + 74, + 130, + 165, + 60, + 180, + 170, + 65, + 70, + 100, + 60, + 150, + 175, + 140, + 300, + 180, + 50, + 75, + 230, + 70, + 65, + 65, + 180, + 120, + 100, + 75, + 60, + 230, + 75, + 78, + 380, + 155, + 380, + 120, + 80, + 110, + 170, + 79.5, + 320, + 450, + 270, + 330, + 50, + 55, + 160, + 100, + 180, + 105, + 400, + 450, + 75, + 65, + 69, + 76, + 220, + 125, + 270, + 185, + 185, + 130, + 220, + 110, + 98, + 39, + 60, + 75, + 110, + 125, + 45, + 170, + 65, + 280, + 95, + 395, + 70, + 75, + 150, + 70, + 65, + 75, + 310, + 185, + 110, + 175, + 150, + 300, + 120, + 115, + 170, + 350, + 250, + 370, + 110, + 80, + 59, + 130, + 250, + 90, + 300, + 200, + 195, + 110, + 130, + 85, + 55, + 150, + 65, + 150, + 64, + 220, + 110, + 300, + 210, + 350, + 275, + 48, + 60, + 370, + 68, + 110, + 95, + 75, + 400, + 350, + 85, + 50, + 47, + 170, + 75, + 120, + 110, + 50, + 395, + 330, + 190, + 184, + 100, + 280, + 165, + 270, + 47.5, + 60, + 190, + 150, + 380, + 55, + 195, + 65, + 125, + 53.1, + 180, + 380, + 220, + 59, + 33, + 175, + 90, + 58, + 125, + 125, + 170, + 120, + 115, + 37, + 70, + 65, + 100, + 170, + 128, + 200, + 145, + 300.000009, + 400, + 140, + 450, + 75, + 95, + 90, + 125, + 250, + 235, + 360, + 85, + 80, + 89, + 137, + 13, + 110, + 115, + 59, + 100, + 160, + 225, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 400, + 135, + 50, + 80, + 50, + 55, + 95, + 350, + 80, + 190, + 85, + 112, + 75, + 150, + 70, + 130, + 45, + 69, + 250, + 60, + 400, + 85, + 220, + 180, + 400, + 280, + 50, + 120, + 37, + 180, + 220, + 125, + 81, + 350, + 90, + 150, + 200, + 180, + 135, + 105, + 140, + 130, + 300, + 130, + 135, + 300, + 98, + 105, + 250, + 56, + 49, + 47, + 88, + 170, + 57, + 150, + 140, + 200, + 138, + 85, + 65, + 220, + 170, + 150, + 366, + 110, + 130, + 160, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 150, + 260, + 500, + 92, + 175, + 67, + 50, + 135, + 135, + 75, + 75, + 370, + 30, + 120, + 55, + 76, + 135, + 300, + 240, + 455, + 38, + 300, + 130, + 500, + 90, + 98, + 70, + 295, + 75, + 450, + 85, + 90, + 75, + 120, + 75, + 50, + 300, + 65, + 79.5, + 65, + 450, + 65, + 82, + 190, + 150, + 270, + 110, + 85, + 90, + 150, + 200, + 180, + 150, + 75, + 130, + 170, + 69, + 170, + 160, + 270, + 300, + 80, + 150, + 420, + 65, + 125, + 160, + 70, + 75, + 105, + 220, + 130, + 49.247, + 100, + 88, + 99.5, + 150, + 95, + 280, + 75, + 150, + 105, + 200, + 75, + 280, + 70, + 160, + 60, + 120, + 40, + 85, + 65, + 250, + 135, + 420, + 135, + 155, + 330, + 450, + 120, + 350, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 235, + 155, + 45, + 80, + 79, + 300, + 173, + 85, + 300, + 120, + 60, + 110, + 78, + 110, + 400, + 500, + 450, + 450, + 165, + 180, + 230, + 75, + 95, + 320, + 50, + 195, + 120, + 280, + 160, + 43, + 95, + 46, + 150, + 270, + 165, + 28, + 160, + 48, + 250, + 53, + 130, + 50, + 100, + 40, + 230, + 135, + 68, + 230, + 130, + 280, + 85, + 65, + 135, + 125, + 180, + 80, + 300, + 350, + 105, + 80, + 95, + 300, + 88, + 115, + 38, + 260, + 42, + 110, + 500, + 75, + 53, + 110, + 80, + 95, + 120, + 54, + 260, + 240, + 350, + 135, + 75, + 250, + 300, + 180, + 50, + 175, + 70, + 190, + 450, + 85, + 99, + 250, + 80, + 390, + 280, + 90, + 225, + 59, + 90, + 90, + 75, + 205, + 55, + 125, + 260, + 128, + 300, + 90, + 210, + 250, + 330, + 78, + 125, + 160, + 120, + 160, + 37, + 83, + 255.5, + 90, + 210, + 150, + 128, + 105, + 70, + 85, + 115, + 85, + 35, + 390, + 110, + 160, + 55, + 180, + 55, + 79, + 60, + 130, + 175, + 110, + 150, + 240, + 40, + 70, + 115, + 150, + 80, + 200, + 48, + 250, + 120, + 230, + 350, + 90, + 140, + 70, + 120, + 280, + 63, + 140, + 160, + 85, + 69, + 90, + 110, + 130, + 85, + 450, + 33, + 370, + 110, + 52, + 200, + 190, + 205, + 110, + 70, + 190, + 175, + 75, + 360, + 90, + 70, + 220, + 125, + 150, + 135, + 350, + 95, + 55, + 450, + 350, + 49, + 95, + 116, + 120, + 410, + 110, + 70, + 300, + 125, + 86, + 57, + 100, + 90, + 160, + 150, + 57, + 165, + 230, + 110, + 70, + 200, + 45, + 90, + 69, + 73, + 280, + 500, + 150, + 135, + 350, + 90, + 350, + 168, + 110, + 175, + 52, + 220, + 176, + 70, + 125, + 120, + 125, + 130, + 180, + 60, + 40, + 250, + 125, + 80, + 130, + 70, + 75, + 130, + 230, + 170, + 60, + 220, + 58, + 63, + 230, + 170, + 330, + 57.1725, + 300, + 67, + 55, + 380, + 38, + 200, + 48, + 90, + 245, + 195, + 90, + 270, + 360, + 160, + 130, + 100, + 47, + 420, + 500, + 310, + 175, + 65, + 185, + 200, + 200, + 85, + 165, + 380, + 200, + 150, + 500, + 72, + 105, + 150, + 155, + 105, + 270, + 95, + 165, + 68, + 230, + 150, + 57, + 120, + 58, + 140, + 120, + 90, + 64, + 165, + 61, + 80, + 170, + 210, + 150, + 140, + 240, + 170, + 400, + 125, + 110, + 75, + 67, + 53, + 115, + 165, + 400, + 105, + 80, + 250, + 240, + 90, + 100, + 130, + 52, + 155, + 250, + 170, + 95, + 120, + 85, + 195, + 380, + 300, + 200, + 380, + 128, + 160, + 87, + 400, + 280, + 97, + 120, + 160, + 76, + 50, + 45, + 195, + 77, + 168, + 60, + 98, + 160, + 160, + 125, + 130, + 270, + 120, + 260, + 69, + 68, + 62, + 135, + 90, + 400, + 75, + 63, + 135, + 60, + 200, + 155, + 90, + 480, + 75, + 85, + 400, + 135, + 165, + 150, + 36, + 65, + 65, + 105, + 145, + 230, + 160, + 85, + 140, + 130, + 445, + 160, + 90, + 98.5, + 390, + 500, + 300, + 40, + 270, + 90, + 170, + 54, + 51, + 180, + 500, + 200, + 138, + 55, + 120, + 98, + 40, + 185, + 50, + 85, + 120, + 130, + 260, + 40, + 90, + 170, + 185, + 125, + 54.5, + 180, + 200, + 290, + 47, + 500, + 350, + 175, + 180, + 120, + 380, + 75, + 100, + 38, + 115, + 68, + 55, + 500, + 98, + 60, + 149.5, + 170, + 48, + 105, + 160, + 280, + 275, + 60, + 130, + 83, + 58, + 135, + 70, + 240, + 100, + 53, + 245, + 75, + 155, + 32, + 160, + 120, + 150, + 390, + 68, + 180, + 500, + 165, + 120, + 130, + 285, + 105, + 230, + 190, + 280, + 150, + 235, + 150, + 120, + 260, + 80, + 150, + 64, + 50, + 75, + 73, + 138, + 150, + 150, + 89, + 70, + 110, + 118, + 330, + 220, + 340, + 80, + 230, + 222, + 95, + 85, + 100, + 280, + 265, + 170, + 51, + 160, + 370, + 300, + 60, + 75, + 48, + 145, + 200, + 80, + 11.5, + 75, + 500, + 130, + 50, + 40, + 79, + 500, + 145, + 160, + 60, + 138, + 183, + 130, + 50, + 59, + 450, + 75, + 170, + 33, + 230, + 61, + 85, + 70, + 125, + 145, + 140, + 50, + 240, + 55, + 65, + 160, + 250, + 155, + 200, + 170, + 55, + 66, + 270, + 72, + 120, + 175, + 165, + 380, + 330, + 140, + 70, + 155, + 40, + 60, + 120, + 380, + 120, + 250, + 500, + 190, + 160, + 220, + 350, + 120, + 160, + 125, + 160, + 150, + 350, + 99, + 70, + 45, + 98, + 400, + 77, + 95, + 175, + 125, + 95, + 170, + 35, + 90, + 190, + 48, + 60, + 450, + 450, + 68, + 135, + 160, + 270, + 45, + 170, + 135, + 120.000009, + 480, + 145, + 70, + 100, + 65, + 170, + 400, + 160, + 65, + 340, + 45, + 105, + 130, + 250, + 190, + 42, + 42, + 130, + 140, + 375, + 180, + 215, + 76, + 95, + 250, + 140, + 250, + 480, + 270, + 165, + 70, + 65, + 81, + 40, + 75, + 62, + 260, + 150, + 88, + 200, + 180, + 75, + 400, + 99, + 400, + 140, + 135, + 295, + 170, + 110, + 410, + 100, + 80, + 105, + 300, + 190, + 120, + 120, + 280, + 130, + 200, + 280, + 370, + 170, + 230, + 115, + 140, + 120, + 135, + 93, + 230, + 189, + 150, + 265, + 135, + 150, + 72, + 280, + 56, + 55, + 130, + 140, + 95, + 220, + 300, + 86, + 100, + 33, + 100, + 65, + 29.99, + 140, + 75, + 39, + 370, + 95, + 370, + 330, + 97, + 140, + 120, + 105, + 100, + 100, + 75, + 78, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 120, + 60, + 400, + 140, + 150, + 80, + 49, + 70, + 20, + 65, + 205, + 150, + 125, + 300, + 75, + 110, + 50, + 150, + 50, + 120, + 80, + 55, + 110, + 360, + 126, + 230, + 40, + 120, + 165, + 160, + 350, + 120, + 130, + 190, + 64, + 95, + 130, + 75, + 150, + 92, + 11, + 98, + 289, + 35, + 120, + 85, + 200, + 58, + 105, + 57, + 83, + 140, + 110, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 125, + 95, + 500, + 65, + 150, + 140, + 125, + 420, + 280, + 240, + 125, + 245, + 135, + 53, + 150, + 400, + 61, + 300, + 80, + 100, + 115, + 220, + 55, + 430, + 58, + 265, + 40, + 75, + 70, + 270, + 115, + 105, + 180, + 165, + 100, + 95, + 67, + 450, + 170, + 230, + 44, + 350, + 65, + 96, + 17.5, + 380, + 160, + 180, + 80, + 79.5, + 270, + 370, + 140, + 130, + 80, + 200, + 45, + 250, + 200, + 75, + 36, + 59, + 210, + 270, + 110, + 290, + 130, + 130, + 280, + 300, + 58, + 370, + 135, + 165, + 29, + 45, + 115, + 80, + 225, + 280, + 160, + 450, + 38, + 70, + 120, + 45, + 240, + 80, + 95, + 280, + 150, + 80, + 10, + 80, + 350, + 85, + 75, + 135, + 160, + 130, + 68, + 75, + 67, + 70, + 65, + 250, + 180, + 275, + 80, + 175, + 45, + 58, + 105, + 70, + 320, + 135, + 270, + 70, + 200, + 50, + 185, + 280, + 95, + 85, + 55, + 115, + 120, + 180, + 200, + 170, + 260, + 250, + 280, + 175, + 500, + 65, + 45, + 80, + 198, + 120, + 50, + 130, + 300, + 170, + 250, + 190, + 120, + 140, + 92, + 300, + 76, + 230, + 350, + 45, + 50, + 80, + 170, + 130, + 380, + 190, + 380, + 52, + 72, + 85, + 65, + 82, + 300, + 120, + 58, + 400, + 90, + 87, + 180, + 270, + 39, + 80, + 70, + 275, + 195, + 150, + 130, + 75, + 150, + 250, + 100, + 140, + 97, + 180, + 80, + 160, + 180, + 260, + 250, + 160, + 170, + 47, + 45, + 55, + 65, + 155, + 100, + 165, + 44, + 110, + 90, + 300, + 225, + 48, + 80, + 120, + 70, + 140, + 50, + 68, + 50, + 50, + 410, + 210, + 150, + 110, + 88, + 79, + 125, + 125, + 35, + 130, + 420, + 78, + 170, + 200, + 165, + 195, + 85, + 170, + 74, + 420, + 280, + 45, + 75, + 230, + 85, + 68, + 190, + 380, + 75, + 300, + 55, + 170, + 135, + 195, + 230, + 250, + 250, + 270, + 55, + 390, + 95, + 300, + 120, + 95, + 170, + 240, + 55, + 130, + 350, + 198, + 180, + 100, + 230, + 95, + 140, + 110, + 49, + 250, + 125, + 350, + 112, + 85, + 75, + 75, + 170, + 100, + 145, + 275, + 42, + 300, + 300, + 58, + 65, + 40, + 170, + 120, + 150, + 90, + 150, + 280, + 100, + 75, + 59, + 100, + 120, + 45, + 385, + 165, + 25, + 78, + 450, + 78, + 300, + 135, + 200, + 70, + 47, + 120, + 75, + 320, + 130, + 63, + 280, + 400, + 350, + 100, + 120, + 165, + 110, + 75, + 77, + 75, + 198, + 120, + 250, + 250, + 45, + 100, + 63, + 185, + 50, + 87, + 65, + 120, + 400, + 115, + 72, + 170, + 30, + 250, + 350, + 400, + 275, + 250, + 130, + 150, + 200, + 270, + 350, + 300, + 51, + 49, + 60, + 130, + 165, + 75, + 200, + 50, + 240, + 150, + 60, + 95, + 112, + 120, + 180, + 90, + 95, + 130, + 300, + 65, + 120, + 120, + 160, + 235, + 78, + 220, + 150, + 80, + 135, + 160, + 150, + 80, + 110, + 150, + 60, + 190, + 220, + 350, + 125, + 67, + 250, + 340, + 180, + 155, + 36, + 232, + 95, + 120, + 60, + 420, + 160, + 95, + 72, + 200, + 85, + 60, + 120, + 198, + 90, + 500, + 285, + 220, + 130, + 68, + 62, + 350, + 50, + 140, + 90, + 120, + 80, + 55, + 135, + 180, + 150, + 150, + 48, + 107, + 450, + 83, + 55, + 145, + 450, + 230, + 220, + 60, + 150, + 120, + 130, + 55, + 75, + 250, + 125, + 65, + 450, + 70, + 115, + 55, + 38, + 70, + 150, + 80, + 60, + 37, + 300, + 220, + 120, + 85, + 120, + 400, + 130, + 47, + 250, + 70, + 59, + 500, + 80, + 140, + 31, + 350, + 65, + 52, + 76, + 130, + 190, + 45, + 200, + 85, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 98, + 125, + 390, + 185, + 400, + 75, + 250, + 75, + 160, + 160, + 350, + 20, + 70, + 80, + 125, + 120, + 58, + 140, + 185, + 90, + 40, + 95, + 130, + 190, + 78, + 235, + 75, + 63, + 38, + 190, + 180, + 128, + 225, + 140, + 70, + 45, + 130, + 250, + 110, + 58, + 100, + 40, + 185, + 85, + 200, + 450, + 200, + 260, + 100, + 260, + 300, + 450, + 170, + 150, + 250, + 250, + 40, + 87, + 60, + 150, + 53, + 60, + 68, + 120, + 75, + 180, + 65, + 80, + 98, + 70, + 75, + 50, + 280, + 295, + 180, + 330, + 55, + 200, + 60, + 85, + 280, + 195, + 120, + 140, + 170, + 120, + 280, + 450, + 120, + 135, + 47, + 190, + 105, + 270, + 125, + 160, + 180, + 165, + 220, + 80, + 90, + 93, + 85, + 45, + 105, + 300, + 140, + 95, + 110, + 190, + 68, + 93, + 270, + 150, + 250, + 130, + 160, + 160, + 69, + 58, + 100, + 125, + 88, + 80, + 130, + 270, + 50, + 300, + 115, + 35, + 68, + 190, + 69, + 90, + 69, + 500, + 90, + 295, + 83, + 350, + 150, + 67, + 60, + 48, + 50, + 500, + 250, + 200, + 70, + 400, + 60, + 85, + 400, + 64, + 95, + 65, + 80, + 165, + 45, + 60, + 80, + 175, + 63, + 260, + 65, + 135, + 105, + 300, + 250, + 67, + 95, + 230, + 32, + 42, + 102, + 160, + 50, + 62, + 480, + 38, + 260, + 90, + 300, + 125, + 190, + 65, + 150, + 80, + 60, + 80, + 75, + 58, + 210, + 350, + 85, + 145, + 115, + 55, + 27, + 140, + 72, + 88, + 200, + 120, + 400, + 70, + 450, + 270, + 80, + 300, + 79, + 190, + 400, + 65, + 50, + 100, + 285, + 66, + 140, + 185, + 140, + 116, + 350, + 180, + 50, + 180, + 300, + 430, + 280, + 69, + 80, + 350, + 450, + 80, + 340, + 45, + 175, + 45, + 82, + 160, + 125, + 250, + 250, + 200, + 170, + 78, + 130, + 50, + 70, + 190, + 180, + 300, + 250, + 55, + 200, + 95, + 170, + 500, + 50, + 150, + 56, + 85, + 160, + 120, + 75, + 56, + 98, + 60, + 40, + 300, + 225, + 368, + 100, + 63, + 80, + 170, + 170, + 380, + 350, + 100, + 38, + 95, + 500, + 37, + 230, + 320, + 220, + 105, + 55, + 140, + 160, + 135, + 160, + 115, + 60, + 60, + 120, + 80, + 40, + 400, + 185, + 110, + 82, + 240, + 230, + 37, + 370, + 145, + 180, + 105, + 79.5, + 190, + 110, + 100, + 58, + 400, + 135, + 130, + 90, + 210, + 235, + 70, + 180, + 150, + 37.5, + 55, + 70, + 135, + 180, + 80, + 165, + 100, + 280, + 240, + 145, + 180, + 230, + 95, + 120, + 110, + 67, + 36, + 180, + 85, + 88, + 58, + 150, + 310, + 190, + 80, + 100, + 50, + 270, + 88, + 270, + 290, + 370, + 280, + 250, + 80.000009, + 350, + 250, + 105, + 135, + 220, + 160, + 70, + 180, + 280, + 260, + 200, + 330, + 190, + 105, + 140, + 140, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 75, + 120, + 50, + 150, + 50, + 100, + 60, + 220, + 120, + 140, + 80, + 300, + 300, + 205, + 320, + 70, + 170, + 100, + 150, + 50, + 50, + 65, + 130, + 85, + 170, + 90, + 56, + 280, + 83, + 70, + 270, + 200, + 100, + 180, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 260, + 370, + 140, + 60, + 180, + 290, + 150, + 75, + 200, + 79.5, + 100, + 70, + 115, + 63, + 165, + 45, + 135, + 140, + 85, + 110, + 90, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 360, + 70, + 180, + 57, + 190, + 105, + 130, + 300, + 40, + 165, + 90, + 50, + 85, + 230, + 350, + 285, + 140, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 375, + 130, + 120, + 110, + 450, + 115, + 100, + 210, + 75, + 149, + 200, + 100, + 200, + 125, + 75, + 180, + 300, + 160, + 450, + 80, + 10, + 47, + 120, + 450, + 290, + 56, + 130, + 90, + 175, + 95, + 120, + 38, + 60, + 110, + 115, + 95, + 130, + 175, + 100, + 400, + 105, + 33, + 250, + 88, + 110, + 49, + 190, + 150, + 125, + 440, + 110, + 90, + 80, + 62, + 80, + 99, + 270, + 135, + 210, + 115, + 150, + 195, + 300, + 32, + 170, + 390, + 100, + 180, + 68, + 220, + 210, + 135, + 120, + 190, + 300, + 38, + 500, + 180, + 75, + 65, + 70, + 65, + 89, + 130, + 250, + 20, + 200, + 95, + 45, + 430, + 67, + 210, + 138, + 55, + 85, + 95, + 160, + 180, + 98, + 280, + 130, + 62, + 135, + 180, + 60, + 50, + 45, + 290, + 45, + 150, + 470, + 100, + 280, + 110, + 67, + 45, + 79.5, + 460, + 65, + 250, + 185, + 96, + 205, + 230, + 145, + 260, + 58, + 103, + 210, + 260, + 380, + 209, + 180, + 175, + 52, + 205, + 250, + 160, + 480, + 160, + 70, + 140, + 38, + 285, + 120, + 80, + 220, + 250, + 110, + 68, + 150, + 77, + 65, + 80, + 90, + 230, + 36, + 450, + 500, + 290, + 67, + 280, + 175, + 165, + 250, + 125, + 52, + 120, + 390, + 114, + 64, + 72, + 69, + 270, + 68, + 67.5, + 46, + 280, + 120, + 270, + 75, + 105, + 270, + 320, + 410, + 63, + 65, + 210, + 110, + 120, + 110, + 75, + 93, + 120, + 300, + 80, + 120, + 110, + 160, + 120, + 75, + 220, + 80, + 98, + 45, + 40, + 160, + 215, + 35, + 150, + 145, + 30, + 120, + 100, + 275, + 500, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 65, + 30, + 55, + 140, + 79.5, + 85, + 65, + 63, + 160, + 400, + 300, + 56, + 80, + 200, + 140, + 110, + 63, + 83, + 56, + 140, + 240, + 98, + 35, + 260, + 120, + 150, + 35, + 250, + 85, + 130, + 199.999, + 98, + 185, + 230, + 95, + 65, + 250, + 130, + 90, + 450, + 67.5, + 250, + 35, + 180, + 65, + 140, + 70, + 80, + 350, + 200, + 170, + 95, + 75, + 65, + 47, + 125, + 75, + 400, + 300, + 95, + 160, + 100, + 400, + 390, + 60, + 95, + 67, + 170, + 120, + 125, + 45, + 110, + 56, + 68, + 75, + 140, + 80, + 145, + 86, + 50, + 275, + 170, + 90, + 175, + 180, + 77, + 150, + 60, + 50, + 85, + 89, + 26, + 65, + 100, + 60, + 295, + 145, + 50, + 375, + 214, + 50, + 250, + 90, + 105, + 135, + 350, + 60, + 290, + 160.000009, + 122, + 49.5, + 55, + 105, + 88, + 100, + 150, + 135, + 350, + 125, + 100, + 77, + 70, + 170, + 270, + 120, + 40, + 88, + 129, + 90, + 135, + 410, + 450, + 160, + 85, + 55, + 340, + 435, + 180, + 190, + 87, + 230, + 95, + 105, + 165, + 145, + 72, + 220, + 95, + 35, + 140, + 145, + 85, + 225, + 110, + 400, + 70, + 190, + 120, + 18.5, + 200, + 120, + 38, + 325, + 110, + 198, + 180, + 368, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 98, + 250, + 200, + 220, + 270, + 155, + 110, + 68, + 295, + 39, + 150, + 175, + 400, + 95, + 100, + 57, + 55, + 41, + 48, + 280, + 55, + 100, + 130, + 55, + 65, + 110, + 160, + 112, + 60, + 205, + 130, + 120, + 82, + 100, + 170, + 500, + 220, + 160, + 95, + 200, + 70, + 120, + 400, + 120, + 45, + 60, + 32, + 120, + 210, + 150, + 170, + 95, + 75, + 280, + 155, + 65, + 250, + 390, + 75, + 165, + 85, + 195, + 270, + 55, + 65, + 62, + 320, + 70, + 100, + 270, + 250, + 115, + 300, + 47, + 100, + 120, + 120, + 140, + 75, + 160, + 49.5, + 53, + 70, + 100, + 90, + 65, + 78, + 500, + 400, + 60, + 36, + 340, + 60, + 31, + 67, + 115, + 220, + 75, + 65, + 180, + 67, + 120, + 90, + 70, + 170, + 110, + 95, + 220, + 75, + 350, + 85, + 110, + 350, + 100, + 380, + 95, + 380, + 300, + 450, + 47, + 250, + 65, + 68, + 135, + 80, + 130, + 285, + 155, + 180, + 85, + 250, + 52, + 200, + 220, + 85, + 110, + 90, + 185, + 90, + 250, + 55, + 350, + 85, + 120, + 45, + 280, + 105, + 430, + 90, + 180, + 420, + 480, + 90, + 65, + 95, + 170, + 75, + 140, + 47, + 480, + 150, + 42, + 140, + 140, + 38, + 155, + 30, + 86, + 170, + 200, + 155, + 60, + 220, + 220, + 160, + 125, + 115, + 130, + 100, + 56, + 160, + 350, + 130, + 330, + 150, + 88, + 290, + 235, + 155, + 80, + 160, + 275, + 105, + 400, + 85, + 120, + 450, + 70, + 100, + 50, + 280, + 106, + 130, + 170, + 95, + 70, + 85, + 100, + 110, + 52, + 30, + 150, + 400, + 150, + 55, + 190, + 110, + 130, + 70, + 38.99, + 80, + 150, + 390, + 230, + 150, + 260, + 430, + 85, + 280, + 140, + 190, + 200, + 175, + 90, + 230, + 100, + 130, + 180, + 140, + 420, + 80, + 185, + 85, + 63, + 49, + 150, + 55, + 350, + 70, + 348, + 360, + 80, + 120, + 140, + 68, + 94, + 450, + 320, + 170, + 80, + 305, + 170, + 65, + 70, + 65, + 70, + 270, + 170, + 45, + 60, + 85, + 320, + 110, + 290, + 36, + 75, + 300, + 120, + 130, + 240, + 450, + 180, + 72, + 120, + 105, + 95, + 63, + 38, + 400, + 150, + 100, + 121, + 73.1, + 450, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 40, + 80, + 45, + 69, + 300, + 130, + 220, + 150, + 55, + 155, + 262, + 220, + 155, + 65, + 85, + 65, + 145, + 270, + 350, + 25, + 58, + 250, + 70, + 150.005, + 60, + 125, + 39, + 69, + 150, + 300, + 90, + 70, + 58, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 180, + 40, + 180, + 148, + 200, + 85, + 140, + 180, + 165, + 125, + 92, + 58, + 140, + 125, + 77, + 180, + 115, + 260, + 95, + 200, + 55, + 80 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Type=Detached Duplex
Price=%{x}", + "legendgroup": "Detached Duplex", + "marker": { + "color": "#EF553B" + }, + "name": "Detached Duplex", + "notched": true, + "offsetgroup": "Detached Duplex", + "showlegend": false, + "type": "box", + "x": [ + 57, + 230, + 90, + 300, + 140, + 120, + 85, + 70, + 220, + 58, + 150, + 75, + 80, + 170, + 48, + 135, + 160, + 120, + 79, + 240, + 300, + 80, + 170, + 270, + 85, + 450, + 400, + 70, + 90, + 300, + 130, + 350, + 180, + 150, + 57, + 290, + 110, + 240, + 105, + 55, + 425, + 140, + 300, + 140, + 68, + 120, + 95, + 260, + 300, + 90, + 45, + 97, + 140, + 73, + 115, + 120, + 45, + 100, + 300, + 75, + 68, + 220, + 140, + 155, + 280, + 150, + 500, + 400, + 48, + 320, + 360, + 185, + 250, + 220, + 130, + 130, + 160, + 170, + 97, + 198, + 69, + 145, + 98, + 80, + 75, + 170, + 150, + 100, + 120, + 73, + 300, + 230, + 130, + 300, + 98, + 55, + 68, + 120, + 130, + 420, + 220, + 130, + 160, + 85, + 200, + 175, + 70, + 210, + 290, + 160, + 67, + 70, + 120, + 380, + 380, + 65, + 300, + 65, + 55, + 125, + 115, + 125, + 40, + 95, + 350, + 350, + 150, + 100, + 170, + 150, + 250, + 260, + 130, + 160, + 39.5, + 85, + 220, + 155, + 75, + 125, + 150, + 65, + 85, + 170, + 62, + 59, + 100, + 90, + 130, + 49, + 250, + 350, + 160, + 75, + 143, + 37, + 35, + 130, + 90, + 200, + 95, + 65, + 160, + 300, + 68, + 90, + 110, + 60, + 280, + 110, + 67, + 52, + 170, + 80, + 100, + 160, + 85, + 123, + 170, + 90, + 85, + 150, + 190, + 200, + 140, + 84, + 200, + 45, + 160, + 130, + 110, + 260, + 125, + 80, + 185, + 66, + 500, + 85, + 205, + 85, + 100, + 72, + 300, + 320, + 163, + 140, + 97, + 140, + 370, + 180, + 170, + 200, + 75, + 37, + 170, + 300, + 200, + 55, + 120, + 280, + 190, + 360, + 90, + 105, + 45, + 400, + 230, + 180, + 115, + 300, + 110, + 330, + 390, + 200, + 85, + 130, + 65, + 180, + 80, + 70, + 300, + 350, + 235, + 190, + 140, + 50, + 265, + 250, + 150, + 300, + 125, + 80, + 75, + 230, + 160, + 117, + 85, + 67, + 65, + 120, + 400, + 350, + 180, + 400, + 115, + 200, + 145, + 95, + 130, + 50, + 82, + 75, + 14, + 32.75, + 75, + 400, + 80, + 98, + 90, + 135, + 160, + 130, + 160, + 110, + 112, + 85, + 85, + 120, + 85, + 88, + 100, + 500, + 290, + 165, + 60, + 278, + 190, + 75, + 80, + 185, + 79, + 85, + 200, + 85, + 47, + 50, + 185, + 270, + 140, + 390, + 290, + 84, + 75, + 30, + 230, + 160, + 230, + 130, + 350, + 225, + 41.5, + 75, + 175, + 140, + 260, + 150, + 110, + 55, + 65, + 140, + 110, + 165, + 130, + 75, + 280, + 130, + 80, + 130, + 200, + 185, + 320, + 295, + 47, + 200, + 75, + 60, + 185, + 180, + 290, + 140, + 80, + 370, + 90, + 30, + 450, + 250, + 66, + 95, + 15.5, + 80, + 280, + 48, + 65, + 45, + 180, + 82, + 195, + 270, + 52, + 140, + 250, + 80, + 180, + 72, + 35, + 240, + 500, + 60, + 45, + 62, + 60, + 75, + 170, + 140, + 180, + 190, + 97, + 170, + 100, + 90, + 125, + 55, + 198, + 80, + 55, + 130, + 110, + 53, + 127, + 130, + 98, + 73, + 130, + 89, + 300, + 390, + 130, + 140, + 150, + 250, + 68, + 80, + 120, + 480, + 500, + 430, + 75, + 100, + 145, + 140, + 110, + 95, + 125, + 100, + 270, + 350, + 180, + 135, + 87, + 120, + 40, + 32.5, + 67, + 350, + 94, + 150, + 85, + 125, + 120, + 180, + 185, + 77, + 250, + 120, + 85, + 235, + 40.5, + 95, + 73, + 198, + 290, + 62, + 200, + 170, + 60, + 350, + 250, + 500, + 450, + 250, + 165, + 125, + 225, + 85, + 299.999999, + 180, + 250, + 60, + 70, + 80, + 75, + 130, + 144, + 102, + 160, + 280, + 140, + 67, + 155, + 70, + 160, + 135, + 85, + 63, + 100, + 450, + 130, + 98, + 220, + 200, + 240, + 170, + 220, + 130, + 50, + 250, + 240, + 200, + 90, + 66, + 180, + 45, + 180, + 160, + 56.5, + 230, + 48, + 45, + 105, + 150, + 130, + 150, + 32.75, + 67, + 65, + 38, + 35, + 175, + 117, + 55, + 75, + 80, + 70, + 110, + 205, + 80, + 160, + 110, + 400, + 170, + 48, + 49.5, + 260, + 120, + 200, + 500, + 155, + 95, + 110, + 95, + 125, + 165, + 250, + 42.5, + 100, + 75, + 115, + 220, + 150, + 270, + 145, + 185, + 280, + 360, + 70, + 68, + 105, + 170, + 75, + 415, + 350, + 300, + 230, + 145, + 130, + 120, + 75, + 365, + 260, + 220, + 58, + 33, + 270, + 60, + 135, + 110, + 450, + 165, + 50, + 300, + 280, + 290, + 38, + 158, + 100, + 100, + 410, + 76, + 350, + 68, + 110, + 60, + 70, + 118, + 102, + 180, + 189, + 157, + 85, + 60, + 140, + 90, + 150, + 300, + 300, + 80, + 120, + 420, + 400, + 115, + 150, + 60, + 500, + 73, + 110, + 198, + 125, + 75, + 55, + 72, + 500, + 85, + 170, + 150, + 92, + 90, + 75, + 77, + 105, + 350, + 120, + 50, + 100, + 75, + 500, + 250, + 50, + 450, + 130, + 180, + 210, + 195, + 150, + 170, + 130, + 80, + 210, + 70, + 410, + 68, + 90, + 65, + 230, + 88, + 68, + 180, + 145, + 200, + 78, + 220, + 470, + 220, + 55, + 97, + 340, + 290, + 65, + 145, + 95, + 95, + 180, + 75, + 80, + 75, + 120, + 36, + 200, + 50, + 285, + 45, + 78, + 150, + 269, + 225, + 110, + 130, + 95, + 67, + 70, + 79, + 155, + 95, + 65, + 270, + 80, + 255, + 105, + 360, + 72, + 280, + 82, + 33, + 250, + 118, + 195, + 75, + 110, + 75, + 190, + 120, + 300, + 48, + 200, + 200, + 76, + 270, + 53, + 250, + 180, + 126, + 155, + 100, + 90, + 350, + 105, + 180, + 70, + 330, + 65, + 380, + 170, + 260, + 470, + 50, + 42, + 250, + 65, + 240, + 63, + 165, + 77, + 280, + 120, + 155, + 70, + 169, + 160, + 190, + 190, + 480, + 170, + 76, + 85, + 130, + 120, + 190, + 130, + 115, + 40, + 120, + 275, + 95, + 45, + 130, + 165, + 68, + 80, + 320, + 120, + 100.01, + 78, + 110, + 185, + 95, + 90, + 300, + 260, + 200, + 75, + 85, + 62, + 160, + 85, + 200, + 160, + 100, + 250, + 170, + 85, + 73, + 170, + 160, + 450, + 390, + 70, + 51, + 120, + 400, + 135, + 140, + 65, + 130, + 106, + 295, + 450, + 392, + 120, + 60, + 65, + 250, + 140, + 55, + 420, + 105, + 230, + 160, + 57, + 250, + 360, + 78, + 85, + 60, + 450, + 95, + 175, + 160, + 280, + 250, + 198.5, + 127, + 125, + 80, + 200, + 270, + 35, + 95, + 98, + 75, + 135, + 60, + 85, + 250, + 160, + 110, + 47, + 100, + 250, + 280, + 92, + 80, + 100, + 140, + 140, + 190, + 145, + 145, + 63, + 200, + 410, + 135, + 95, + 300, + 130, + 160, + 280, + 260, + 300, + 250, + 480, + 68, + 56, + 170, + 82, + 135, + 72, + 270, + 183, + 164, + 125, + 240, + 59.5, + 190, + 380, + 155, + 180, + 500, + 60, + 170, + 70, + 95, + 60, + 98, + 140, + 130, + 67, + 450, + 165, + 90, + 100, + 175, + 85, + 290, + 150, + 300, + 165, + 100, + 240, + 69, + 95, + 125, + 210, + 80, + 120, + 90, + 500, + 45, + 280, + 33, + 220, + 120, + 270, + 150, + 105, + 68, + 240, + 120, + 65, + 400, + 175, + 260, + 350, + 170, + 76, + 95, + 98, + 33, + 195, + 130, + 80, + 77, + 130, + 450, + 120, + 95, + 145, + 300, + 55, + 93, + 40, + 280, + 195, + 80, + 130, + 290, + 270, + 79.5, + 97, + 115, + 158, + 280, + 80, + 380, + 90, + 90, + 68, + 32, + 220, + 250, + 350, + 70, + 110, + 400, + 53, + 370, + 24, + 165, + 165, + 57, + 195, + 130, + 70, + 50, + 65, + 109, + 130, + 120, + 270, + 62, + 110, + 225, + 220, + 280, + 74, + 78, + 110, + 120, + 110, + 280, + 45, + 270, + 158, + 245, + 380, + 135, + 75, + 400, + 90, + 100, + 85, + 185, + 88, + 98, + 75, + 55, + 32, + 160, + 150, + 170, + 75, + 43.5, + 125, + 55, + 80, + 45, + 185, + 60, + 145, + 140, + 70, + 45, + 250, + 480, + 90, + 110, + 270, + 105, + 30, + 190, + 400, + 85, + 190, + 52, + 270, + 350, + 80, + 58, + 180, + 250, + 185, + 37, + 100, + 200, + 90, + 76, + 170, + 135, + 90, + 135, + 285, + 290, + 450, + 87, + 170, + 230, + 130, + 350, + 83, + 77, + 155, + 145, + 170, + 400, + 59, + 230, + 250, + 500, + 180, + 180, + 69.99, + 63, + 90, + 200, + 148, + 230, + 75, + 250, + 300, + 65, + 185, + 250, + 180, + 48, + 265, + 65, + 70, + 150, + 167, + 93, + 440, + 115, + 115, + 380, + 45, + 330, + 275, + 185, + 300, + 78, + 275, + 120, + 118, + 68, + 160, + 77, + 160, + 75, + 150, + 58, + 80, + 70, + 37, + 350, + 100, + 70, + 87, + 220, + 71.5, + 30, + 300, + 120, + 450, + 230, + 110, + 150, + 320, + 95, + 480, + 150, + 83, + 60, + 45, + 185, + 70, + 250, + 110, + 200, + 280, + 125, + 200, + 350, + 330, + 45, + 45, + 270, + 58, + 43, + 70, + 58, + 145, + 60, + 120, + 260, + 430, + 285, + 150, + 140, + 65, + 50, + 185, + 185, + 150, + 80, + 195, + 120, + 220, + 145, + 85, + 500, + 80, + 67, + 48, + 79.5, + 130, + 180, + 120, + 300, + 69, + 55, + 73, + 300, + 210, + 120, + 140, + 85, + 230, + 54, + 80, + 275, + 380, + 125, + 75, + 140, + 300, + 50, + 150, + 75, + 95, + 183, + 55, + 145, + 170, + 90, + 190, + 80, + 280, + 200, + 220, + 285, + 195, + 48, + 160, + 85, + 85, + 45, + 130, + 197.5, + 69.5, + 180, + 200, + 50, + 350, + 135, + 75, + 85, + 320, + 290, + 135, + 97, + 240, + 350, + 230, + 125, + 47, + 95, + 58, + 95, + 45, + 115, + 165, + 150, + 60, + 46, + 75.000009, + 200, + 190, + 125, + 95, + 67, + 185, + 55, + 350, + 180, + 140, + 260, + 75, + 400, + 360, + 90, + 130, + 95, + 430, + 250, + 125, + 85, + 450, + 270, + 330, + 250, + 350, + 200, + 120, + 195, + 220, + 68, + 140, + 150, + 95, + 160, + 210, + 65, + 30, + 140, + 255, + 120, + 230, + 200, + 175, + 83, + 200, + 350, + 130, + 360, + 150, + 130, + 92, + 130, + 115, + 120, + 95, + 125.99, + 155, + 170, + 65, + 300, + 145, + 80, + 90, + 155, + 69, + 140, + 130, + 200, + 150, + 170, + 280, + 90, + 60, + 280, + 230, + 90, + 110, + 110, + 220, + 210, + 235, + 155, + 220, + 220, + 280, + 135, + 350, + 125, + 185, + 350, + 150, + 105, + 185, + 78, + 240, + 98, + 200, + 155, + 55, + 130, + 120, + 500, + 110, + 65, + 350, + 480, + 130, + 150, + 200, + 52, + 110, + 110, + 27, + 168, + 120, + 130, + 130, + 500, + 320, + 118, + 135, + 400, + 230, + 280, + 220, + 190, + 55, + 75, + 48, + 140, + 95, + 125, + 180, + 400, + 450, + 500, + 160, + 100, + 70, + 58, + 180, + 150, + 105, + 155, + 60, + 82, + 110, + 68, + 90, + 54, + 155, + 100, + 100, + 300, + 85, + 60, + 97, + 90, + 80, + 100, + 40, + 260, + 96, + 170, + 47, + 150, + 28, + 180, + 190, + 170, + 150, + 220, + 160, + 110, + 110, + 75, + 48, + 72, + 42, + 55, + 280, + 130, + 300, + 150, + 115, + 400, + 150, + 75, + 60, + 260, + 400, + 200, + 170, + 300, + 205, + 210, + 500, + 160, + 120, + 170, + 100, + 130, + 70, + 450, + 250, + 200, + 175, + 130, + 300, + 125, + 250, + 300, + 17, + 120, + 75, + 53, + 250, + 395, + 70, + 90, + 55, + 80, + 135, + 95, + 145, + 450, + 140, + 90, + 70, + 370, + 290, + 45, + 45, + 80, + 62, + 225, + 170, + 125, + 65, + 65, + 48, + 250, + 250, + 100, + 160, + 170, + 80, + 150, + 120, + 55, + 130, + 120, + 135, + 160, + 110, + 145, + 35, + 370, + 110, + 88, + 450, + 450, + 350, + 120, + 250, + 125, + 230, + 190, + 445, + 120, + 450, + 88, + 260, + 50, + 180, + 110, + 105, + 74, + 150, + 400, + 170, + 110, + 180, + 80, + 65, + 180, + 40, + 55, + 63, + 90, + 285, + 70, + 350, + 95, + 170, + 125, + 200, + 59, + 450, + 120, + 235, + 165, + 127, + 290, + 80, + 95, + 95, + 160, + 130, + 330, + 400, + 70, + 260, + 95, + 200, + 500, + 68, + 90, + 270, + 95, + 62, + 65, + 185, + 110, + 65, + 250, + 120, + 20, + 250, + 140, + 120, + 130, + 110, + 105, + 120, + 38, + 250, + 199.999, + 220, + 450, + 105, + 190, + 250, + 135, + 73, + 110, + 300, + 130, + 33, + 65, + 190, + 95, + 55, + 260, + 105, + 55, + 270, + 50, + 48, + 170, + 245, + 48, + 400, + 110, + 50, + 250, + 85, + 78, + 135, + 47, + 350, + 270, + 255, + 230, + 120, + 155, + 57, + 110, + 51, + 90, + 143, + 160, + 450, + 180, + 280, + 49, + 270, + 79, + 78, + 83, + 40, + 232, + 153, + 59, + 170, + 53, + 155, + 67, + 320, + 175, + 80, + 70, + 270, + 300, + 390, + 175, + 75, + 135, + 175, + 140, + 85, + 95, + 110, + 215, + 80, + 160, + 99, + 430, + 50, + 400, + 85, + 60, + 230, + 115, + 90, + 500, + 75, + 115, + 115, + 140, + 47, + 170, + 200, + 165, + 138, + 165, + 210, + 95, + 70, + 90, + 85, + 70, + 62, + 70, + 52, + 65, + 450, + 450, + 160, + 80, + 135, + 130, + 110, + 470, + 300, + 160, + 120, + 60, + 150, + 150, + 57, + 58, + 130, + 115, + 60, + 480, + 75, + 130, + 54, + 100, + 95, + 180, + 130, + 80, + 400, + 85, + 50, + 140, + 150, + 335, + 130, + 250, + 110, + 135, + 100, + 170, + 72, + 160, + 200, + 75, + 450, + 130, + 55, + 36, + 90, + 95, + 150, + 130, + 500, + 90, + 280, + 400, + 250, + 500, + 190, + 160, + 200, + 90, + 235, + 280, + 55, + 85, + 120, + 255, + 173, + 44, + 175, + 135, + 135, + 460, + 47, + 60, + 190, + 230, + 360, + 72, + 110, + 65, + 220, + 95, + 145, + 85, + 44, + 100, + 200, + 59, + 65, + 150, + 130, + 75, + 68, + 190, + 100, + 320, + 68, + 235, + 100, + 420, + 100, + 100, + 45, + 200, + 195, + 95, + 280, + 360, + 240, + 90, + 130, + 215, + 96, + 45, + 70, + 75, + 40, + 90, + 65, + 140, + 250, + 165, + 120, + 135, + 140, + 145, + 185, + 70, + 220, + 106, + 350, + 85, + 135, + 480, + 155, + 37, + 380, + 85, + 80, + 57, + 75, + 330, + 125, + 215, + 180, + 140, + 75, + 57, + 300, + 180, + 500, + 150, + 450, + 88, + 250, + 230, + 55, + 160, + 400, + 140, + 45, + 150, + 480, + 75, + 85, + 85, + 130, + 250, + 200, + 250, + 380, + 206, + 170, + 500, + 170, + 170, + 140, + 70, + 450, + 260, + 189, + 85, + 260, + 300, + 160, + 240, + 85, + 280, + 82, + 82, + 120, + 70, + 250, + 110, + 380, + 130, + 53, + 300, + 70, + 58, + 72, + 165, + 170, + 50, + 270, + 500, + 190, + 100, + 65, + 170, + 140, + 95, + 230, + 210, + 310, + 130, + 105, + 240, + 450, + 130, + 150, + 270, + 120, + 45, + 400, + 365, + 180, + 150, + 155, + 300, + 80, + 35, + 185, + 53, + 38, + 65, + 350, + 480, + 140, + 78, + 57, + 57, + 90, + 220, + 240, + 90, + 90, + 75, + 100, + 500, + 80, + 150, + 105, + 80.000005, + 250, + 62, + 73, + 380, + 160, + 46, + 310, + 170, + 80, + 290, + 45, + 220, + 185, + 350, + 50, + 64, + 180, + 290, + 150, + 150, + 120, + 250, + 320, + 130, + 56, + 140, + 125, + 120, + 90, + 190, + 150, + 100, + 190, + 120, + 180, + 90, + 85, + 74.999999, + 37, + 85, + 68, + 140, + 400, + 250, + 450, + 38, + 185, + 270, + 175, + 180, + 133, + 240, + 110, + 348, + 140, + 200, + 370, + 40, + 90, + 150, + 66, + 150, + 150, + 500, + 58, + 77, + 120, + 83, + 500, + 65, + 75, + 235, + 38.99, + 370, + 87, + 135, + 220, + 65, + 350, + 105, + 190, + 75, + 150, + 140, + 45, + 100, + 85, + 110, + 70, + 75, + 450, + 150, + 130, + 50, + 85, + 110, + 230, + 280, + 400, + 135, + 115, + 71, + 130, + 100, + 70, + 125, + 102, + 300, + 93, + 160, + 40, + 70, + 450, + 140, + 65, + 270, + 40, + 75, + 19.975, + 38, + 290, + 180, + 120, + 90, + 65, + 50, + 360, + 90, + 130, + 65, + 23, + 250, + 55, + 100, + 400, + 85, + 90, + 66, + 46, + 58, + 100, + 102, + 135, + 85, + 120, + 365, + 125, + 47, + 300, + 115, + 240, + 320, + 250, + 135, + 63, + 80, + 200, + 270, + 170, + 69.99, + 49, + 85, + 34, + 110, + 190, + 50, + 400, + 80, + 92, + 65, + 100.99, + 38, + 120, + 90, + 85, + 85, + 220, + 150, + 500, + 90, + 160, + 150, + 95, + 190, + 53, + 160, + 120, + 260, + 180, + 155, + 150, + 195, + 105, + 85, + 35, + 90, + 460, + 115, + 95, + 70, + 50, + 205, + 300, + 100, + 185, + 100, + 150, + 160, + 180, + 90, + 120, + 127, + 200, + 17.675, + 90, + 140, + 200, + 120, + 60, + 54, + 70, + 125, + 115, + 300, + 72, + 130, + 190, + 70, + 66, + 80, + 100, + 57, + 295, + 35, + 72, + 175, + 80, + 85, + 175, + 78, + 170, + 40, + 135, + 260, + 150, + 65, + 83, + 100, + 250, + 50, + 220, + 125, + 90, + 190, + 55, + 185, + 260, + 100, + 180, + 380, + 135, + 100, + 300, + 60, + 150, + 110, + 95, + 130, + 170, + 140, + 95, + 92, + 220, + 120, + 55, + 165, + 75, + 90, + 90, + 190, + 165, + 100, + 120, + 270, + 135, + 350, + 260, + 58, + 280, + 420, + 65, + 130, + 60, + 58, + 85, + 265, + 350, + 48, + 270, + 47, + 65, + 67, + 295, + 175, + 200, + 250, + 90, + 75, + 40, + 80, + 140, + 200, + 250, + 260, + 55, + 135, + 59, + 235, + 75, + 380, + 155, + 395, + 120, + 198, + 69, + 280, + 220, + 75, + 115, + 110, + 85, + 85, + 230, + 80, + 450, + 320, + 250, + 190, + 140, + 130, + 55, + 80, + 70, + 190, + 220, + 120, + 79.5, + 115, + 95, + 68, + 205, + 68, + 200, + 160, + 60, + 230, + 110, + 300, + 200, + 350, + 250, + 60, + 125, + 230, + 90, + 75, + 150, + 160, + 60, + 85, + 460, + 270, + 150, + 400, + 185, + 500, + 115, + 235, + 125, + 70, + 140, + 110, + 95, + 300, + 250, + 155, + 80, + 52, + 180, + 250, + 52, + 130, + 63, + 280, + 65, + 145, + 56, + 145, + 55, + 80, + 63, + 250, + 300, + 73, + 50, + 95, + 185, + 105, + 110, + 150, + 41, + 140, + 82, + 160, + 125, + 108, + 145, + 100, + 115, + 50, + 70, + 320, + 125, + 70, + 70, + 90, + 83, + 88, + 80, + 280, + 140, + 83, + 200, + 75, + 300, + 100, + 185, + 450, + 38.5, + 200, + 92, + 135, + 320, + 140, + 100, + 105, + 58, + 85, + 390, + 170, + 98, + 285, + 50, + 145, + 85, + 135, + 135, + 180, + 60, + 180, + 197, + 110, + 400, + 80, + 100, + 135, + 100, + 120, + 145, + 110, + 85, + 500, + 170, + 285, + 250, + 55, + 500, + 300, + 49.5, + 145, + 160, + 400, + 100, + 120, + 68, + 160, + 155, + 155, + 85, + 500, + 150, + 95, + 60, + 210, + 74, + 195, + 410, + 110, + 65, + 200, + 80, + 60, + 80, + 55, + 55, + 120, + 500, + 140, + 145, + 48, + 65, + 37, + 100, + 60, + 160, + 95, + 250, + 39, + 190, + 185, + 140, + 45, + 97.5, + 115, + 95, + 285, + 350, + 250, + 90, + 55, + 370, + 75, + 60, + 75, + 187, + 90, + 160, + 180, + 62, + 85, + 105, + 250, + 120, + 250, + 80, + 148, + 45, + 160, + 120, + 160, + 255, + 150, + 85, + 250, + 65, + 130, + 87, + 165, + 250, + 58, + 50, + 200, + 50, + 60, + 18, + 120, + 350, + 57, + 175, + 230, + 90, + 250, + 130, + 100, + 270, + 140, + 140, + 90, + 75, + 250, + 180, + 500, + 200, + 300, + 50, + 175, + 60, + 69, + 280, + 63, + 270, + 300, + 120, + 45, + 100, + 55, + 65, + 120, + 350, + 40, + 250, + 41, + 150, + 49.5, + 300, + 170, + 145, + 54, + 195, + 110, + 140, + 261, + 210, + 55, + 200, + 260, + 150, + 140, + 120, + 90, + 185, + 450, + 95, + 150, + 385, + 55, + 150, + 120, + 55, + 165, + 120, + 280, + 53, + 102, + 300, + 42, + 98, + 50, + 110, + 100, + 140, + 235, + 120, + 160, + 150, + 250, + 125, + 280, + 370, + 200, + 300, + 400, + 45, + 60, + 45, + 45, + 145, + 75, + 65, + 30, + 160, + 275, + 169.5, + 85, + 190, + 170, + 150, + 105, + 150, + 300, + 300, + 200, + 68, + 150, + 140, + 90, + 150, + 120, + 177.99, + 75, + 87.000099, + 100, + 45, + 170, + 150, + 210, + 125, + 350, + 150, + 170, + 300, + 55, + 180, + 170, + 300, + 85, + 65, + 138, + 450, + 130, + 250, + 48, + 90, + 80, + 480, + 60, + 140, + 150, + 135, + 195, + 275, + 55, + 460, + 500, + 340, + 450, + 340, + 65, + 55, + 73, + 70, + 90, + 42, + 130, + 80, + 60, + 370, + 125, + 180, + 280, + 140, + 95, + 270, + 170, + 200, + 57, + 150, + 130, + 175, + 75, + 390, + 160, + 230, + 65, + 75, + 80, + 165, + 160, + 75, + 210, + 60, + 68, + 85, + 95, + 330, + 65, + 300, + 165, + 155, + 62, + 65, + 130, + 165, + 240, + 185, + 180, + 100, + 130, + 95, + 155, + 230, + 55, + 270, + 85, + 180, + 115, + 180, + 180, + 150, + 68, + 180, + 80, + 41.5, + 34.5, + 80, + 55, + 125, + 62, + 120, + 350, + 220, + 150, + 160, + 300, + 320, + 150, + 198, + 60, + 60, + 155, + 95, + 78, + 200, + 110, + 140, + 350, + 190, + 30, + 80, + 140, + 190, + 12, + 40, + 32, + 220, + 98, + 220, + 90, + 130, + 180, + 130, + 275, + 265, + 120, + 180, + 165, + 390, + 64, + 110, + 55, + 53, + 90, + 60, + 80, + 85, + 140, + 170, + 75, + 68, + 135, + 70, + 34, + 105, + 250, + 95, + 150, + 100, + 98, + 43.5, + 350, + 300, + 380, + 200, + 200, + 325, + 50, + 240, + 125, + 110, + 85, + 50, + 130, + 280, + 185, + 150, + 50, + 200, + 300, + 220, + 99, + 125, + 140, + 300, + 80, + 115, + 70, + 55, + 220, + 83, + 500, + 210, + 75, + 130, + 80, + 370, + 200, + 100, + 190, + 105, + 145, + 175, + 77, + 120, + 55, + 40, + 480, + 240, + 120, + 190, + 155, + 180, + 460, + 85, + 170, + 260, + 70, + 85, + 70, + 70, + 80, + 150, + 79, + 120, + 110, + 123, + 270, + 185, + 400, + 200, + 150, + 105, + 90, + 260, + 370, + 80, + 170, + 68, + 240, + 140, + 230, + 110, + 140, + 220, + 85, + 110, + 300, + 52, + 140, + 115, + 85, + 75, + 160, + 135, + 200, + 99, + 330, + 185, + 97, + 170, + 40, + 230, + 95, + 108, + 100, + 47, + 198, + 65, + 175, + 300, + 200, + 120, + 210, + 69, + 80, + 60, + 79.5, + 200, + 110, + 47, + 65, + 120, + 120, + 80, + 75, + 62, + 67, + 140, + 160, + 140, + 95, + 85, + 110, + 42, + 180, + 58, + 110, + 160, + 35, + 60, + 70, + 75, + 130, + 140, + 300, + 130, + 80, + 70, + 95, + 300, + 63, + 220, + 270, + 150.000009, + 56, + 240, + 70, + 220, + 250, + 185, + 330, + 140, + 64, + 53, + 500, + 80, + 500, + 250, + 140, + 145, + 120, + 220, + 68, + 145, + 92, + 80, + 270, + 120, + 300, + 155, + 100, + 130, + 200, + 170, + 100, + 130, + 75, + 230, + 140, + 75, + 125, + 33.5, + 41.8, + 63, + 245, + 200, + 180, + 45, + 60, + 80, + 190, + 155, + 20, + 300, + 180, + 299.999999, + 145, + 160, + 150, + 65, + 60, + 35, + 140, + 290, + 75, + 130, + 300, + 320, + 260, + 120, + 90, + 95, + 65, + 110, + 100, + 450, + 125, + 65, + 90, + 170, + 100, + 125, + 130, + 60, + 300, + 165, + 290, + 100, + 150, + 105, + 200, + 130, + 85, + 180, + 66, + 200, + 450, + 55, + 135, + 170, + 125, + 260, + 82, + 78, + 70, + 150, + 128, + 270, + 75, + 65, + 105, + 50, + 170, + 130, + 120, + 155, + 75, + 220, + 250, + 250, + 135, + 380, + 220, + 75, + 170, + 65, + 350, + 290, + 420, + 95, + 275, + 65, + 170, + 90, + 395, + 450, + 350, + 82, + 335, + 215, + 110, + 63, + 50, + 450, + 185, + 500, + 65, + 50, + 170, + 150, + 180, + 130, + 65, + 130, + 170, + 69, + 130, + 135, + 130, + 69, + 120, + 280, + 240, + 155, + 80, + 235, + 47, + 125, + 400, + 60, + 130, + 250, + 110, + 80, + 60, + 500, + 125, + 120, + 230, + 170, + 98, + 95, + 140, + 125, + 60, + 160, + 420, + 350, + 480, + 420, + 75, + 165, + 120, + 125, + 235, + 150, + 320, + 300, + 200, + 105, + 150, + 250, + 90, + 35, + 255, + 120, + 180, + 250, + 380, + 160, + 230, + 130, + 43, + 144, + 70, + 185, + 140, + 110, + 100, + 200, + 40, + 380, + 150, + 133, + 63, + 280, + 500, + 125, + 70, + 49, + 120, + 180, + 200, + 200, + 200, + 85, + 65, + 140, + 110, + 44.9, + 180, + 120, + 130, + 200, + 95, + 280, + 38, + 120, + 470, + 125, + 250, + 45, + 330, + 68, + 110, + 175, + 205, + 57, + 110, + 260, + 75, + 120, + 185, + 70, + 200, + 230, + 160, + 220, + 63, + 150, + 87, + 100, + 75, + 280, + 85, + 180, + 130, + 200, + 280, + 150, + 450, + 130, + 140, + 105, + 105, + 60, + 160, + 250, + 198, + 180, + 155, + 190, + 120, + 200, + 65, + 80, + 150, + 47.999999, + 400, + 85, + 70, + 300, + 220, + 80, + 280, + 85, + 225, + 60, + 75, + 230, + 60, + 65, + 170, + 290, + 140, + 80, + 150, + 105, + 61, + 54, + 50, + 450, + 82, + 85, + 180, + 500, + 450, + 145, + 115, + 55, + 270, + 440, + 70, + 55, + 100, + 150, + 90, + 125, + 90, + 95, + 115, + 63, + 110, + 175, + 150, + 48, + 115, + 295, + 175, + 500, + 180, + 48, + 70, + 370, + 110, + 180, + 235, + 135, + 145, + 190, + 100, + 85, + 450, + 60, + 125, + 100, + 98, + 43, + 300, + 100, + 45, + 118, + 60, + 50, + 75, + 300, + 195, + 30, + 120, + 68, + 200, + 150, + 110, + 75, + 33, + 220, + 200, + 350, + 165, + 250, + 220, + 180, + 130, + 90, + 95, + 65, + 150, + 160, + 185, + 130, + 210, + 100, + 55, + 120, + 50, + 210, + 240, + 85, + 120, + 185, + 80, + 90, + 124, + 188, + 95, + 260, + 160, + 60, + 65, + 140, + 160, + 55, + 250, + 160, + 69, + 235, + 110, + 46, + 65, + 100, + 110, + 250, + 265, + 130, + 85, + 100, + 130, + 230, + 200, + 290, + 300, + 125, + 70, + 72, + 95, + 95, + 450, + 90, + 160, + 100, + 90, + 28, + 300, + 150, + 350, + 265, + 115, + 45, + 65, + 190, + 115, + 62, + 180, + 250, + 67, + 500, + 170, + 400, + 300, + 350, + 88, + 55, + 115, + 160, + 230, + 310, + 400, + 170, + 68, + 270, + 85, + 65, + 140, + 120, + 200, + 35, + 260, + 55.5, + 120, + 200, + 125, + 75, + 49, + 135, + 235, + 95, + 100, + 120, + 110, + 92, + 110, + 320, + 210, + 95, + 158, + 140, + 90, + 120, + 58, + 470, + 38, + 300, + 195, + 185, + 120, + 500, + 65, + 160, + 140, + 40, + 195, + 195, + 70, + 150, + 75, + 200, + 125, + 350, + 98, + 80, + 140, + 140, + 110, + 450, + 450, + 400, + 35, + 35, + 175, + 235, + 88, + 350, + 69, + 130, + 60, + 100, + 150, + 220, + 78, + 165, + 80, + 130, + 68, + 250, + 120, + 55, + 500, + 275, + 34, + 55, + 480, + 250, + 170, + 165, + 180, + 185, + 110, + 75, + 160, + 120, + 350, + 227, + 470, + 62, + 200, + 130, + 70, + 170, + 220, + 160, + 190, + 130, + 55, + 280, + 85, + 105, + 75, + 45, + 72, + 125, + 88, + 170, + 95, + 54, + 195, + 77, + 120, + 260, + 69, + 65, + 175, + 50, + 87, + 160, + 70, + 90, + 300, + 70, + 120, + 165, + 230, + 45, + 80, + 330, + 300, + 135, + 160, + 140, + 100, + 110, + 160, + 75, + 140, + 75, + 185, + 75, + 200, + 110, + 65, + 255, + 110, + 57, + 160, + 95, + 77, + 480, + 55, + 380, + 420, + 58, + 400, + 75, + 130, + 160, + 70, + 230, + 50, + 320, + 150, + 68, + 68, + 155, + 200, + 165, + 90, + 75, + 150, + 145, + 20, + 245, + 140, + 130, + 165, + 230, + 250, + 270, + 110, + 200, + 350, + 35, + 130, + 75, + 50, + 40, + 78, + 85, + 51, + 320, + 65, + 73, + 420, + 54, + 320, + 235, + 160, + 165, + 65, + 220, + 250, + 90, + 45, + 100, + 240, + 130, + 280, + 400, + 62, + 175, + 69, + 70, + 125, + 150, + 210, + 85, + 120, + 120, + 97, + 75, + 92, + 37, + 72, + 35, + 112, + 65, + 96, + 37, + 230, + 150, + 120, + 270, + 140, + 210, + 62, + 185, + 150, + 80, + 170, + 235, + 150, + 140, + 105, + 280, + 275, + 90, + 45, + 100, + 130, + 70, + 130, + 290, + 155, + 145, + 75, + 110, + 75, + 59, + 140, + 73, + 125, + 150, + 67, + 100, + 55, + 180, + 390, + 55, + 250, + 75, + 175, + 72, + 57, + 290, + 55, + 180, + 65, + 350, + 120, + 430, + 340, + 70, + 95, + 110, + 80, + 230, + 110, + 100, + 70, + 380, + 85, + 100, + 88, + 140, + 125, + 95, + 150, + 350, + 150, + 200, + 57, + 135, + 180, + 350, + 400, + 76, + 155, + 51.5, + 350, + 100, + 52, + 205, + 300, + 320, + 115, + 90, + 170, + 35, + 280, + 80, + 43, + 140, + 130, + 240, + 180, + 190, + 275, + 65, + 45, + 380, + 120, + 145, + 415, + 145, + 80, + 300, + 55, + 180, + 80, + 240, + 95, + 350, + 70, + 135, + 75, + 450, + 270, + 125, + 120, + 62, + 250, + 200, + 59, + 35, + 500, + 75, + 240, + 45, + 57, + 110, + 220, + 35, + 120, + 320, + 220, + 100, + 160, + 90, + 57, + 18, + 60, + 180, + 130, + 400, + 420, + 90, + 220, + 90, + 57, + 200, + 500, + 130, + 78, + 220, + 300, + 26, + 85, + 100, + 500, + 75, + 250, + 135, + 75, + 90, + 230, + 320, + 57, + 320, + 150, + 160, + 400, + 200, + 175, + 240, + 48, + 120, + 420, + 185, + 130, + 155, + 270, + 75, + 135, + 180, + 50, + 69.9, + 85, + 170, + 80, + 120, + 350, + 500, + 150, + 57, + 120, + 30, + 85, + 65, + 53, + 51, + 97, + 120, + 250, + 45, + 30, + 92, + 350, + 68, + 73, + 110, + 200, + 67, + 180, + 280, + 85, + 85, + 45, + 380, + 150, + 56, + 29, + 60, + 155, + 500, + 85, + 100, + 105, + 55, + 130, + 450, + 320, + 55, + 125, + 115, + 75, + 85, + 45, + 155, + 85, + 230, + 150, + 37, + 45, + 120, + 75, + 175, + 110, + 90, + 60, + 65, + 260, + 400, + 90, + 115, + 52, + 77, + 170, + 133, + 170, + 55, + 120, + 41, + 195, + 63, + 68, + 180, + 360, + 100, + 360, + 320, + 250, + 85, + 125, + 120, + 97, + 350, + 75, + 50, + 320, + 100, + 65, + 55, + 360, + 55, + 120, + 43, + 70, + 260, + 175, + 300, + 130, + 38, + 90, + 270, + 480, + 120, + 440, + 210, + 220, + 135, + 220, + 450, + 55, + 95, + 48, + 60, + 120, + 50, + 110, + 75, + 55, + 180, + 95, + 260, + 72, + 175, + 70, + 50, + 150, + 65, + 46, + 300, + 72, + 180, + 50, + 78, + 155, + 210, + 225, + 185, + 310, + 80, + 180, + 52, + 280, + 260, + 60, + 110, + 78, + 58, + 360, + 130, + 70, + 83, + 65, + 165, + 65, + 500, + 120, + 35, + 77, + 74, + 130, + 165, + 60, + 180, + 170, + 65, + 70, + 100, + 60, + 150, + 175, + 140, + 300, + 180, + 50, + 75, + 230, + 70, + 65, + 65, + 180, + 120, + 100, + 75, + 60, + 230, + 75, + 78, + 380, + 155, + 380, + 120, + 80, + 110, + 170, + 79.5, + 320, + 450, + 270, + 330, + 50, + 55, + 160, + 100, + 180, + 105, + 400, + 450, + 75, + 65, + 69, + 76, + 220, + 125, + 270, + 185, + 185, + 130, + 220, + 110, + 98, + 39, + 60, + 75, + 110, + 125, + 45, + 170, + 65, + 280, + 95, + 395, + 70, + 75, + 150, + 70, + 65, + 75, + 310, + 185, + 110, + 175, + 150, + 300, + 120, + 115, + 170, + 350, + 250, + 370, + 110, + 80, + 59, + 130, + 250, + 90, + 300, + 200, + 195, + 110, + 130, + 85, + 55, + 150, + 65, + 150, + 64, + 220, + 110, + 300, + 210, + 350, + 275, + 48, + 60, + 370, + 68, + 110, + 95, + 75, + 400, + 350, + 85, + 50, + 47, + 170, + 75, + 120, + 110, + 50, + 395, + 330, + 190, + 184, + 100, + 280, + 165, + 270, + 47.5, + 60, + 190, + 150, + 380, + 55, + 195, + 65, + 125, + 53.1, + 180, + 380, + 220, + 59, + 33, + 175, + 90, + 58, + 125, + 125, + 170, + 120, + 115, + 37, + 70, + 65, + 100, + 170, + 128, + 200, + 145, + 300.000009, + 400, + 140, + 450, + 75, + 95, + 90, + 125, + 250, + 235, + 360, + 85, + 80, + 89, + 137, + 13, + 110, + 115, + 59, + 100, + 160, + 225, + 80, + 86, + 75, + 73, + 85, + 52, + 60, + 230, + 400, + 400, + 135, + 50, + 80, + 50, + 55, + 95, + 350, + 80, + 190, + 85, + 112, + 75, + 150, + 70, + 130, + 45, + 69, + 250, + 60, + 400, + 85, + 220, + 180, + 400, + 280, + 50, + 120, + 37, + 180, + 220, + 125, + 81, + 350, + 90, + 150, + 200, + 180, + 135, + 105, + 140, + 130, + 300, + 130, + 135, + 300, + 98, + 105, + 250, + 56, + 49, + 47, + 88, + 170, + 57, + 150, + 140, + 200, + 138, + 85, + 65, + 220, + 170, + 150, + 366, + 110, + 130, + 160, + 120, + 37, + 50, + 95, + 75, + 63, + 118, + 150, + 260, + 500, + 92, + 175, + 67, + 50, + 135, + 135, + 75, + 75, + 370, + 30, + 120, + 55, + 76, + 135, + 300, + 240, + 455, + 38, + 300, + 130, + 500, + 90, + 98, + 70, + 295, + 75, + 450, + 85, + 90, + 75, + 120, + 75, + 50, + 300, + 65, + 79.5, + 65, + 450, + 65, + 82, + 190, + 150, + 270, + 110, + 85, + 90, + 150, + 200, + 180, + 150, + 75, + 130, + 170, + 69, + 170, + 160, + 270, + 300, + 80, + 150, + 420, + 65, + 125, + 160, + 70, + 75, + 105, + 220, + 130, + 49.247, + 100, + 88, + 99.5, + 150, + 95, + 280, + 75, + 150, + 105, + 200, + 75, + 280, + 70, + 160, + 60, + 120, + 40, + 85, + 65, + 250, + 135, + 420, + 135, + 155, + 330, + 450, + 120, + 350, + 88, + 165, + 72, + 160, + 50, + 295, + 75, + 235, + 155, + 45, + 80, + 79, + 300, + 173, + 85, + 300, + 120, + 60, + 110, + 78, + 110, + 400, + 500, + 450, + 450, + 165, + 180, + 230, + 75, + 95, + 320, + 50, + 195, + 120, + 280, + 160, + 43, + 95, + 46, + 150, + 270, + 165, + 28, + 160, + 48, + 250, + 53, + 130, + 50, + 100, + 40, + 230, + 135, + 68, + 230, + 130, + 280, + 85, + 65, + 135, + 125, + 180, + 80, + 300, + 350, + 105, + 80, + 95, + 300, + 88, + 115, + 38, + 260, + 42, + 110, + 500, + 75, + 53, + 110, + 80, + 95, + 120, + 54, + 260, + 240, + 350, + 135, + 75, + 250, + 300, + 180, + 50, + 175, + 70, + 190, + 450, + 85, + 99, + 250, + 80, + 390, + 280, + 90, + 225, + 59, + 90, + 90, + 75, + 205, + 55, + 125, + 260, + 128, + 300, + 90, + 210, + 250, + 330, + 78, + 125, + 160, + 120, + 160, + 37, + 83, + 255.5, + 90, + 210, + 150, + 128, + 105, + 70, + 85, + 115, + 85, + 35, + 390, + 110, + 160, + 55, + 180, + 55, + 79, + 60, + 130, + 175, + 110, + 150, + 240, + 40, + 70, + 115, + 150, + 80, + 200, + 48, + 250, + 120, + 230, + 350, + 90, + 140, + 70, + 120, + 280, + 63, + 140, + 160, + 85, + 69, + 90, + 110, + 130, + 85, + 450, + 33, + 370, + 110, + 52, + 200, + 190, + 205, + 110, + 70, + 190, + 175, + 75, + 360, + 90, + 70, + 220, + 125, + 150, + 135, + 350, + 95, + 55, + 450, + 350, + 49, + 95, + 116, + 120, + 410, + 110, + 70, + 300, + 125, + 86, + 57, + 100, + 90, + 160, + 150, + 57, + 165, + 230, + 110, + 70, + 200, + 45, + 90, + 69, + 73, + 280, + 500, + 150, + 135, + 350, + 90, + 350, + 168, + 110, + 175, + 52, + 220, + 176, + 70, + 125, + 120, + 125, + 130, + 180, + 60, + 40, + 250, + 125, + 80, + 130, + 70, + 75, + 130, + 230, + 170, + 60, + 220, + 58, + 63, + 230, + 170, + 330, + 57.1725, + 300, + 67, + 55, + 380, + 38, + 200, + 48, + 90, + 245, + 195, + 90, + 270, + 360, + 160, + 130, + 100, + 47, + 420, + 500, + 310, + 175, + 65, + 185, + 200, + 200, + 85, + 165, + 380, + 200, + 150, + 500, + 72, + 105, + 150, + 155, + 105, + 270, + 95, + 165, + 68, + 230, + 150, + 57, + 120, + 58, + 140, + 120, + 90, + 64, + 165, + 61, + 80, + 170, + 210, + 150, + 140, + 240, + 170, + 400, + 125, + 110, + 75, + 67, + 53, + 115, + 165, + 400, + 105, + 80, + 250, + 240, + 90, + 100, + 130, + 52, + 155, + 250, + 170, + 95, + 120, + 85, + 195, + 380, + 300, + 200, + 380, + 128, + 160, + 87, + 400, + 280, + 97, + 120, + 160, + 76, + 50, + 45, + 195, + 77, + 168, + 60, + 98, + 160, + 160, + 125, + 130, + 270, + 120, + 260, + 69, + 68, + 62, + 135, + 90, + 400, + 75, + 63, + 135, + 60, + 200, + 155, + 90, + 480, + 75, + 85, + 400, + 135, + 165, + 150, + 36, + 65, + 65, + 105, + 145, + 230, + 160, + 85, + 140, + 130, + 445, + 160, + 90, + 98.5, + 390, + 500, + 300, + 40, + 270, + 90, + 170, + 54, + 51, + 180, + 500, + 200, + 138, + 55, + 120, + 98, + 40, + 185, + 50, + 85, + 120, + 130, + 260, + 40, + 90, + 170, + 185, + 125, + 54.5, + 180, + 200, + 290, + 47, + 500, + 350, + 175, + 180, + 120, + 380, + 75, + 100, + 38, + 115, + 68, + 55, + 500, + 98, + 60, + 149.5, + 170, + 48, + 105, + 160, + 280, + 275, + 60, + 130, + 83, + 58, + 135, + 70, + 240, + 100, + 53, + 245, + 75, + 155, + 32, + 160, + 120, + 150, + 390, + 68, + 180, + 500, + 165, + 120, + 130, + 285, + 105, + 230, + 190, + 280, + 150, + 235, + 150, + 120, + 260, + 80, + 150, + 64, + 50, + 75, + 73, + 138, + 150, + 150, + 89, + 70, + 110, + 118, + 330, + 220, + 340, + 80, + 230, + 222, + 95, + 85, + 100, + 280, + 265, + 170, + 51, + 160, + 370, + 300, + 60, + 75, + 48, + 145, + 200, + 80, + 11.5, + 75, + 500, + 130, + 50, + 40, + 79, + 500, + 145, + 160, + 60, + 138, + 183, + 130, + 50, + 59, + 450, + 75, + 170, + 33, + 230, + 61, + 85, + 70, + 125, + 145, + 140, + 50, + 240, + 55, + 65, + 160, + 250, + 155, + 200, + 170, + 55, + 66, + 270, + 72, + 120, + 175, + 165, + 380, + 330, + 140, + 70, + 155, + 40, + 60, + 120, + 380, + 120, + 250, + 500, + 190, + 160, + 220, + 350, + 120, + 160, + 125, + 160, + 150, + 350, + 99, + 70, + 45, + 98, + 400, + 77, + 95, + 175, + 125, + 95, + 170, + 35, + 90, + 190, + 48, + 60, + 450, + 450, + 68, + 135, + 160, + 270, + 45, + 170, + 135, + 120.000009, + 480, + 145, + 70, + 100, + 65, + 170, + 400, + 160, + 65, + 340, + 45, + 105, + 130, + 250, + 190, + 42, + 42, + 130, + 140, + 375, + 180, + 215, + 76, + 95, + 250, + 140, + 250, + 480, + 270, + 165, + 70, + 65, + 81, + 40, + 75, + 62, + 260, + 150, + 88, + 200, + 180, + 75, + 400, + 99, + 400, + 140, + 135, + 295, + 170, + 110, + 410, + 100, + 80, + 105, + 300, + 190, + 120, + 120, + 280, + 130, + 200, + 280, + 370, + 170, + 230, + 115, + 140, + 120, + 135, + 93, + 230, + 189, + 150, + 265, + 135, + 150, + 72, + 280, + 56, + 55, + 130, + 140, + 95, + 220, + 300, + 86, + 100, + 33, + 100, + 65, + 29.99, + 140, + 75, + 39, + 370, + 95, + 370, + 330, + 97, + 140, + 120, + 105, + 100, + 100, + 75, + 78, + 175, + 160, + 130, + 100, + 295, + 385, + 60, + 120, + 60, + 400, + 140, + 150, + 80, + 49, + 70, + 20, + 65, + 205, + 150, + 125, + 300, + 75, + 110, + 50, + 150, + 50, + 120, + 80, + 55, + 110, + 360, + 126, + 230, + 40, + 120, + 165, + 160, + 350, + 120, + 130, + 190, + 64, + 95, + 130, + 75, + 150, + 92, + 11, + 98, + 289, + 35, + 120, + 85, + 200, + 58, + 105, + 57, + 83, + 140, + 110, + 100, + 150, + 40, + 90, + 75, + 260, + 50, + 95, + 170, + 60, + 125, + 95, + 500, + 65, + 150, + 140, + 125, + 420, + 280, + 240, + 125, + 245, + 135, + 53, + 150, + 400, + 61, + 300, + 80, + 100, + 115, + 220, + 55, + 430, + 58, + 265, + 40, + 75, + 70, + 270, + 115, + 105, + 180, + 165, + 100, + 95, + 67, + 450, + 170, + 230, + 44, + 350, + 65, + 96, + 17.5, + 380, + 160, + 180, + 80, + 79.5, + 270, + 370, + 140, + 130, + 80, + 200, + 45, + 250, + 200, + 75, + 36, + 59, + 210, + 270, + 110, + 290, + 130, + 130, + 280, + 300, + 58, + 370, + 135, + 165, + 29, + 45, + 115, + 80, + 225, + 280, + 160, + 450, + 38, + 70, + 120, + 45, + 240, + 80, + 95, + 280, + 150, + 80, + 10, + 80, + 350, + 85, + 75, + 135, + 160, + 130, + 68, + 75, + 67, + 70, + 65, + 250, + 180, + 275, + 80, + 175, + 45, + 58, + 105, + 70, + 320, + 135, + 270, + 70, + 200, + 50, + 185, + 280, + 95, + 85, + 55, + 115, + 120, + 180, + 200, + 170, + 260, + 250, + 280, + 175, + 500, + 65, + 45, + 80, + 198, + 120, + 50, + 130, + 300, + 170, + 250, + 190, + 120, + 140, + 92, + 300, + 76, + 230, + 350, + 45, + 50, + 80, + 170, + 130, + 380, + 190, + 380, + 52, + 72, + 85, + 65, + 82, + 300, + 120, + 58, + 400, + 90, + 87, + 180, + 270, + 39, + 80, + 70, + 275, + 195, + 150, + 130, + 75, + 150, + 250, + 100, + 140, + 97, + 180, + 80, + 160, + 180, + 260, + 250, + 160, + 170, + 47, + 45, + 55, + 65, + 155, + 100, + 165, + 44, + 110, + 90, + 300, + 225, + 48, + 80, + 120, + 70, + 140, + 50, + 68, + 50, + 50, + 410, + 210, + 150, + 110, + 88, + 79, + 125, + 125, + 35, + 130, + 420, + 78, + 170, + 200, + 165, + 195, + 85, + 170, + 74, + 420, + 280, + 45, + 75, + 230, + 85, + 68, + 190, + 380, + 75, + 300, + 55, + 170, + 135, + 195, + 230, + 250, + 250, + 270, + 55, + 390, + 95, + 300, + 120, + 95, + 170, + 240, + 55, + 130, + 350, + 198, + 180, + 100, + 230, + 95, + 140, + 110, + 49, + 250, + 125, + 350, + 112, + 85, + 75, + 75, + 170, + 100, + 145, + 275, + 42, + 300, + 300, + 58, + 65, + 40, + 170, + 120, + 150, + 90, + 150, + 280, + 100, + 75, + 59, + 100, + 120, + 45, + 385, + 165, + 25, + 78, + 450, + 78, + 300, + 135, + 200, + 70, + 47, + 120, + 75, + 320, + 130, + 63, + 280, + 400, + 350, + 100, + 120, + 165, + 110, + 75, + 77, + 75, + 198, + 120, + 250, + 250, + 45, + 100, + 63, + 185, + 50, + 87, + 65, + 120, + 400, + 115, + 72, + 170, + 30, + 250, + 350, + 400, + 275, + 250, + 130, + 150, + 200, + 270, + 350, + 300, + 51, + 49, + 60, + 130, + 165, + 75, + 200, + 50, + 240, + 150, + 60, + 95, + 112, + 120, + 180, + 90, + 95, + 130, + 300, + 65, + 120, + 120, + 160, + 235, + 78, + 220, + 150, + 80, + 135, + 160, + 150, + 80, + 110, + 150, + 60, + 190, + 220, + 350, + 125, + 67, + 250, + 340, + 180, + 155, + 36, + 232, + 95, + 120, + 60, + 420, + 160, + 95, + 72, + 200, + 85, + 60, + 120, + 198, + 90, + 500, + 285, + 220, + 130, + 68, + 62, + 350, + 50, + 140, + 90, + 120, + 80, + 55, + 135, + 180, + 150, + 150, + 48, + 107, + 450, + 83, + 55, + 145, + 450, + 230, + 220, + 60, + 150, + 120, + 130, + 55, + 75, + 250, + 125, + 65, + 450, + 70, + 115, + 55, + 38, + 70, + 150, + 80, + 60, + 37, + 300, + 220, + 120, + 85, + 120, + 400, + 130, + 47, + 250, + 70, + 59, + 500, + 80, + 140, + 31, + 350, + 65, + 52, + 76, + 130, + 190, + 45, + 200, + 85, + 280, + 350, + 120, + 150, + 170, + 100, + 140, + 98, + 125, + 390, + 185, + 400, + 75, + 250, + 75, + 160, + 160, + 350, + 20, + 70, + 80, + 125, + 120, + 58, + 140, + 185, + 90, + 40, + 95, + 130, + 190, + 78, + 235, + 75, + 63, + 38, + 190, + 180, + 128, + 225, + 140, + 70, + 45, + 130, + 250, + 110, + 58, + 100, + 40, + 185, + 85, + 200, + 450, + 200, + 260, + 100, + 260, + 300, + 450, + 170, + 150, + 250, + 250, + 40, + 87, + 60, + 150, + 53, + 60, + 68, + 120, + 75, + 180, + 65, + 80, + 98, + 70, + 75, + 50, + 280, + 295, + 180, + 330, + 55, + 200, + 60, + 85, + 280, + 195, + 120, + 140, + 170, + 120, + 280, + 450, + 120, + 135, + 47, + 190, + 105, + 270, + 125, + 160, + 180, + 165, + 220, + 80, + 90, + 93, + 85, + 45, + 105, + 300, + 140, + 95, + 110, + 190, + 68, + 93, + 270, + 150, + 250, + 130, + 160, + 160, + 69, + 58, + 100, + 125, + 88, + 80, + 130, + 270, + 50, + 300, + 115, + 35, + 68, + 190, + 69, + 90, + 69, + 500, + 90, + 295, + 83, + 350, + 150, + 67, + 60, + 48, + 50, + 500, + 250, + 200, + 70, + 400, + 60, + 85, + 400, + 64, + 95, + 65, + 80, + 165, + 45, + 60, + 80, + 175, + 63, + 260, + 65, + 135, + 105, + 300, + 250, + 67, + 95, + 230, + 32, + 42, + 102, + 160, + 50, + 62, + 480, + 38, + 260, + 90, + 300, + 125, + 190, + 65, + 150, + 80, + 60, + 80, + 75, + 58, + 210, + 350, + 85, + 145, + 115, + 55, + 27, + 140, + 72, + 88, + 200, + 120, + 400, + 70, + 450, + 270, + 80, + 300, + 79, + 190, + 400, + 65, + 50, + 100, + 285, + 66, + 140, + 185, + 140, + 116, + 350, + 180, + 50, + 180, + 300, + 430, + 280, + 69, + 80, + 350, + 450, + 80, + 340, + 45, + 175, + 45, + 82, + 160, + 125, + 250, + 250, + 200, + 170, + 78, + 130, + 50, + 70, + 190, + 180, + 300, + 250, + 55, + 200, + 95, + 170, + 500, + 50, + 150, + 56, + 85, + 160, + 120, + 75, + 56, + 98, + 60, + 40, + 300, + 225, + 368, + 100, + 63, + 80, + 170, + 170, + 380, + 350, + 100, + 38, + 95, + 500, + 37, + 230, + 320, + 220, + 105, + 55, + 140, + 160, + 135, + 160, + 115, + 60, + 60, + 120, + 80, + 40, + 400, + 185, + 110, + 82, + 240, + 230, + 37, + 370, + 145, + 180, + 105, + 79.5, + 190, + 110, + 100, + 58, + 400, + 135, + 130, + 90, + 210, + 235, + 70, + 180, + 150, + 37.5, + 55, + 70, + 135, + 180, + 80, + 165, + 100, + 280, + 240, + 145, + 180, + 230, + 95, + 120, + 110, + 67, + 36, + 180, + 85, + 88, + 58, + 150, + 310, + 190, + 80, + 100, + 50, + 270, + 88, + 270, + 290, + 370, + 280, + 250, + 80.000009, + 350, + 250, + 105, + 135, + 220, + 160, + 70, + 180, + 280, + 260, + 200, + 330, + 190, + 105, + 140, + 140, + 150, + 50, + 85, + 48, + 74, + 95, + 53, + 75, + 120, + 50, + 150, + 50, + 100, + 60, + 220, + 120, + 140, + 80, + 300, + 300, + 205, + 320, + 70, + 170, + 100, + 150, + 50, + 50, + 65, + 130, + 85, + 170, + 90, + 56, + 280, + 83, + 70, + 270, + 200, + 100, + 180, + 20, + 160, + 65, + 85, + 80, + 170, + 55, + 260, + 370, + 140, + 60, + 180, + 290, + 150, + 75, + 200, + 79.5, + 100, + 70, + 115, + 63, + 165, + 45, + 135, + 140, + 85, + 110, + 90, + 80, + 65, + 95, + 110, + 350, + 140, + 135, + 360, + 70, + 180, + 57, + 190, + 105, + 130, + 300, + 40, + 165, + 90, + 50, + 85, + 230, + 350, + 285, + 140, + 80, + 250, + 196, + 180, + 48, + 500, + 180, + 375, + 130, + 120, + 110, + 450, + 115, + 100, + 210, + 75, + 149, + 200, + 100, + 200, + 125, + 75, + 180, + 300, + 160, + 450, + 80, + 10, + 47, + 120, + 450, + 290, + 56, + 130, + 90, + 175, + 95, + 120, + 38, + 60, + 110, + 115, + 95, + 130, + 175, + 100, + 400, + 105, + 33, + 250, + 88, + 110, + 49, + 190, + 150, + 125, + 440, + 110, + 90, + 80, + 62, + 80, + 99, + 270, + 135, + 210, + 115, + 150, + 195, + 300, + 32, + 170, + 390, + 100, + 180, + 68, + 220, + 210, + 135, + 120, + 190, + 300, + 38, + 500, + 180, + 75, + 65, + 70, + 65, + 89, + 130, + 250, + 20, + 200, + 95, + 45, + 430, + 67, + 210, + 138, + 55, + 85, + 95, + 160, + 180, + 98, + 280, + 130, + 62, + 135, + 180, + 60, + 50, + 45, + 290, + 45, + 150, + 470, + 100, + 280, + 110, + 67, + 45, + 79.5, + 460, + 65, + 250, + 185, + 96, + 205, + 230, + 145, + 260, + 58, + 103, + 210, + 260, + 380, + 209, + 180, + 175, + 52, + 205, + 250, + 160, + 480, + 160, + 70, + 140, + 38, + 285, + 120, + 80, + 220, + 250, + 110, + 68, + 150, + 77, + 65, + 80, + 90, + 230, + 36, + 450, + 500, + 290, + 67, + 280, + 175, + 165, + 250, + 125, + 52, + 120, + 390, + 114, + 64, + 72, + 69, + 270, + 68, + 67.5, + 46, + 280, + 120, + 270, + 75, + 105, + 270, + 320, + 410, + 63, + 65, + 210, + 110, + 120, + 110, + 75, + 93, + 120, + 300, + 80, + 120, + 110, + 160, + 120, + 75, + 220, + 80, + 98, + 45, + 40, + 160, + 215, + 35, + 150, + 145, + 30, + 120, + 100, + 275, + 500, + 135, + 70, + 85, + 32, + 275, + 240, + 80, + 65, + 30, + 55, + 140, + 79.5, + 85, + 65, + 63, + 160, + 400, + 300, + 56, + 80, + 200, + 140, + 110, + 63, + 83, + 56, + 140, + 240, + 98, + 35, + 260, + 120, + 150, + 35, + 250, + 85, + 130, + 199.999, + 98, + 185, + 230, + 95, + 65, + 250, + 130, + 90, + 450, + 67.5, + 250, + 35, + 180, + 65, + 140, + 70, + 80, + 350, + 200, + 170, + 95, + 75, + 65, + 47, + 125, + 75, + 400, + 300, + 95, + 160, + 100, + 400, + 390, + 60, + 95, + 67, + 170, + 120, + 125, + 45, + 110, + 56, + 68, + 75, + 140, + 80, + 145, + 86, + 50, + 275, + 170, + 90, + 175, + 180, + 77, + 150, + 60, + 50, + 85, + 89, + 26, + 65, + 100, + 60, + 295, + 145, + 50, + 375, + 214, + 50, + 250, + 90, + 105, + 135, + 350, + 60, + 290, + 160.000009, + 122, + 49.5, + 55, + 105, + 88, + 100, + 150, + 135, + 350, + 125, + 100, + 77, + 70, + 170, + 270, + 120, + 40, + 88, + 129, + 90, + 135, + 410, + 450, + 160, + 85, + 55, + 340, + 435, + 180, + 190, + 87, + 230, + 95, + 105, + 165, + 145, + 72, + 220, + 95, + 35, + 140, + 145, + 85, + 225, + 110, + 400, + 70, + 190, + 120, + 18.5, + 200, + 120, + 38, + 325, + 110, + 198, + 180, + 368, + 110, + 105, + 95, + 75, + 150, + 110, + 68, + 78, + 180, + 98, + 250, + 200, + 220, + 270, + 155, + 110, + 68, + 295, + 39, + 150, + 175, + 400, + 95, + 100, + 57, + 55, + 41, + 48, + 280, + 55, + 100, + 130, + 55, + 65, + 110, + 160, + 112, + 60, + 205, + 130, + 120, + 82, + 100, + 170, + 500, + 220, + 160, + 95, + 200, + 70, + 120, + 400, + 120, + 45, + 60, + 32, + 120, + 210, + 150, + 170, + 95, + 75, + 280, + 155, + 65, + 250, + 390, + 75, + 165, + 85, + 195, + 270, + 55, + 65, + 62, + 320, + 70, + 100, + 270, + 250, + 115, + 300, + 47, + 100, + 120, + 120, + 140, + 75, + 160, + 49.5, + 53, + 70, + 100, + 90, + 65, + 78, + 500, + 400, + 60, + 36, + 340, + 60, + 31, + 67, + 115, + 220, + 75, + 65, + 180, + 67, + 120, + 90, + 70, + 170, + 110, + 95, + 220, + 75, + 350, + 85, + 110, + 350, + 100, + 380, + 95, + 380, + 300, + 450, + 47, + 250, + 65, + 68, + 135, + 80, + 130, + 285, + 155, + 180, + 85, + 250, + 52, + 200, + 220, + 85, + 110, + 90, + 185, + 90, + 250, + 55, + 350, + 85, + 120, + 45, + 280, + 105, + 430, + 90, + 180, + 420, + 480, + 90, + 65, + 95, + 170, + 75, + 140, + 47, + 480, + 150, + 42, + 140, + 140, + 38, + 155, + 30, + 86, + 170, + 200, + 155, + 60, + 220, + 220, + 160, + 125, + 115, + 130, + 100, + 56, + 160, + 350, + 130, + 330, + 150, + 88, + 290, + 235, + 155, + 80, + 160, + 275, + 105, + 400, + 85, + 120, + 450, + 70, + 100, + 50, + 280, + 106, + 130, + 170, + 95, + 70, + 85, + 100, + 110, + 52, + 30, + 150, + 400, + 150, + 55, + 190, + 110, + 130, + 70, + 38.99, + 80, + 150, + 390, + 230, + 150, + 260, + 430, + 85, + 280, + 140, + 190, + 200, + 175, + 90, + 230, + 100, + 130, + 180, + 140, + 420, + 80, + 185, + 85, + 63, + 49, + 150, + 55, + 350, + 70, + 348, + 360, + 80, + 120, + 140, + 68, + 94, + 450, + 320, + 170, + 80, + 305, + 170, + 65, + 70, + 65, + 70, + 270, + 170, + 45, + 60, + 85, + 320, + 110, + 290, + 36, + 75, + 300, + 120, + 130, + 240, + 450, + 180, + 72, + 120, + 105, + 95, + 63, + 38, + 400, + 150, + 100, + 121, + 73.1, + 450, + 59, + 155, + 145, + 90, + 80, + 75, + 55, + 40, + 80, + 45, + 69, + 300, + 130, + 220, + 150, + 55, + 155, + 262, + 220, + 155, + 65, + 85, + 65, + 145, + 270, + 350, + 25, + 58, + 250, + 70, + 150.005, + 60, + 125, + 39, + 69, + 150, + 300, + 90, + 70, + 58, + 120, + 38, + 290, + 125, + 49, + 200, + 160, + 180, + 40, + 180, + 148, + 200, + 85, + 140, + 180, + 165, + 125, + 92, + 58, + 140, + 125, + 77, + 180, + 115, + 260, + 95, + 200, + 55, + 80 + ], + "xaxis": "x2", + "yaxis": "y2" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "Type=Terraced Duplex
Price=%{x}
count=%{y}", + "legendgroup": "Terraced Duplex", + "marker": { + "color": "#00cc96", + "pattern": { + "shape": "" + } + }, + "name": "Terraced Duplex", + "nbinsx": 120, + "offsetgroup": "Terraced Duplex", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 100, + 50, + 29, + 42, + 63, + 70, + 56, + 37.5, + 190, + 65, + 49, + 150, + 55, + 70, + 38, + 70, + 90, + 38, + 57, + 63, + 50, + 60, + 170, + 205, + 85, + 230, + 205, + 80, + 80, + 35, + 75, + 95, + 35, + 250, + 70, + 53, + 160, + 300, + 85, + 57, + 32, + 62, + 50, + 80, + 100, + 48, + 48, + 90, + 450, + 160, + 40, + 155, + 210, + 50, + 200, + 49.5, + 180, + 87, + 90, + 60, + 60, + 125, + 90, + 55, + 45, + 35, + 30, + 30, + 50, + 50, + 500, + 260, + 135, + 55, + 52, + 170, + 120, + 110, + 70, + 28, + 60, + 70, + 105, + 120, + 68, + 60, + 130, + 65, + 60, + 180, + 130, + 45, + 110, + 70, + 64, + 40, + 70, + 90, + 80, + 40, + 200, + 220, + 105, + 56, + 120, + 100, + 60, + 55, + 35, + 33, + 35, + 85, + 160, + 50, + 150, + 160, + 37, + 180, + 85, + 145, + 45, + 250, + 137, + 95, + 37, + 38, + 350, + 40, + 55, + 150, + 52.5, + 120, + 130, + 60, + 105, + 50, + 33, + 175, + 49.5, + 380, + 65, + 85, + 31, + 46, + 55, + 100, + 230, + 48, + 120, + 80, + 80, + 60, + 80, + 75, + 50, + 75, + 20, + 185, + 65, + 60, + 37, + 78, + 460, + 32.75, + 43, + 65, + 40, + 160, + 175, + 150, + 120, + 45, + 90, + 450, + 35, + 40, + 100, + 80, + 90, + 39, + 67, + 110, + 38, + 70, + 50, + 60, + 60.9, + 80, + 65, + 85, + 35, + 50, + 80, + 48, + 210, + 450, + 110, + 59, + 33, + 70, + 47, + 160, + 155, + 55, + 62.5, + 70, + 75, + 55, + 35, + 37, + 100, + 49, + 90, + 130, + 140, + 38, + 300, + 45, + 120, + 47, + 80, + 120, + 170, + 45, + 75, + 50, + 195, + 42, + 55, + 145, + 44, + 80, + 115, + 57, + 75, + 120, + 32, + 58, + 25, + 140, + 100, + 80, + 75, + 50, + 66, + 78, + 49, + 70, + 65, + 180, + 14, + 52, + 80, + 56, + 75, + 50, + 150, + 90, + 90, + 58, + 203, + 41, + 30, + 120, + 75, + 50, + 59, + 160, + 40, + 95, + 100, + 40, + 70, + 78, + 350, + 75, + 70, + 50, + 30, + 40, + 110, + 240, + 170, + 55, + 95, + 38, + 170, + 33, + 135, + 60, + 75, + 200, + 50, + 38, + 92, + 180, + 22, + 92, + 170, + 100, + 55, + 40, + 45, + 130, + 85, + 50, + 60, + 205, + 270, + 270, + 33, + 65, + 39, + 75, + 59, + 150, + 52, + 115, + 80, + 55, + 55, + 25, + 33, + 200, + 17.675, + 130, + 85, + 67, + 45, + 47, + 470, + 65, + 100, + 200, + 69, + 28, + 75, + 47, + 70, + 60, + 130, + 36, + 43, + 55, + 300, + 55, + 123, + 30, + 40, + 45, + 45, + 57, + 60, + 65, + 53, + 41, + 37, + 51.5, + 80, + 37, + 100, + 120, + 100, + 75, + 95, + 100, + 40, + 55, + 145, + 40, + 130, + 155, + 250, + 53.1, + 90, + 60, + 170, + 45, + 55, + 120, + 85, + 40, + 105, + 36.5, + 33, + 58, + 57, + 185, + 49, + 180, + 205, + 110, + 480, + 130, + 92, + 95, + 48, + 170, + 45, + 35.85, + 130, + 250, + 75, + 420, + 175, + 80, + 70, + 19.975, + 130, + 245, + 100, + 90, + 70, + 250, + 35, + 55, + 150, + 57, + 33, + 500, + 11.6, + 42, + 77, + 120, + 160, + 37, + 79, + 48, + 45, + 75, + 80, + 155, + 65, + 36.5, + 150, + 135, + 130, + 50, + 160, + 135, + 95, + 150, + 220, + 90, + 38, + 80, + 280, + 260, + 130, + 49, + 35, + 68, + 55, + 120, + 52, + 200, + 300, + 100, + 90, + 75, + 60, + 35, + 65, + 45, + 57, + 180, + 100, + 60, + 68, + 55, + 100, + 90, + 57, + 170, + 150, + 65, + 37, + 35, + 38, + 160, + 58, + 26, + 95, + 50, + 73, + 58, + 63, + 65, + 57, + 57, + 75, + 20, + 175, + 230, + 95, + 65, + 52, + 60, + 260, + 55, + 120, + 220, + 85, + 67, + 100, + 73, + 130, + 58, + 39, + 62, + 85, + 57, + 90, + 150, + 105, + 105, + 85, + 43, + 50, + 220, + 85, + 295, + 120, + 140, + 62, + 47.5, + 95, + 52, + 85, + 53, + 80, + 85, + 250, + 160, + 55, + 125, + 45, + 39, + 95, + 250, + 35, + 38, + 135, + 46, + 36, + 35, + 128, + 50, + 300, + 55, + 80, + 125, + 175, + 65, + 50, + 85, + 58, + 35, + 52, + 125, + 78, + 110, + 135, + 55, + 75, + 27, + 75, + 75, + 45, + 64.1, + 130, + 56, + 120, + 120, + 38, + 28.5, + 45, + 55, + 35, + 35, + 95, + 280, + 40, + 220, + 150, + 68, + 45, + 33, + 65, + 95, + 160, + 250, + 33, + 44, + 58, + 58, + 65, + 75, + 50, + 80, + 100, + 65, + 300, + 47, + 85, + 47, + 65, + 65, + 120, + 180, + 85, + 38, + 270, + 160, + 90, + 250, + 165, + 65, + 80, + 90, + 50, + 30, + 69, + 180, + 135, + 180, + 59, + 90, + 35, + 400, + 57, + 80, + 150, + 100, + 150, + 80, + 70, + 37, + 62, + 235, + 90, + 250, + 36.5, + 65, + 44, + 200, + 65, + 58, + 230, + 120, + 70, + 175, + 130, + 45, + 80, + 400, + 42, + 110, + 105, + 110, + 80, + 145, + 73, + 130, + 58, + 100, + 90, + 55, + 175, + 38.5, + 55, + 37, + 270, + 115, + 58, + 46, + 100, + 170, + 42, + 150, + 68, + 38, + 40, + 141, + 150, + 27, + 125, + 130, + 90, + 100, + 55, + 65, + 130, + 175, + 195, + 33, + 75, + 32, + 70, + 33.5, + 350, + 40, + 150, + 90, + 50, + 51.5, + 44.815, + 55, + 125, + 250, + 90, + 64, + 95, + 200, + 70, + 70, + 40, + 70, + 40, + 90, + 40, + 250, + 45, + 80, + 270, + 51, + 110, + 170, + 130, + 37, + 140, + 140, + 38, + 85, + 55, + 48, + 65, + 180, + 57, + 145, + 46, + 35, + 100, + 210, + 50, + 400, + 130, + 40, + 22, + 100, + 60, + 36, + 125, + 85, + 55, + 58, + 270, + 45, + 40, + 46, + 300, + 130, + 100, + 60, + 37, + 115, + 60, + 30, + 70, + 115, + 260, + 55, + 80, + 45, + 39, + 45, + 130, + 220, + 145, + 300, + 35, + 36, + 75, + 33, + 110, + 53, + 65, + 75, + 130, + 65, + 67, + 50, + 200, + 84, + 53, + 130, + 100, + 140, + 110, + 180, + 78, + 240, + 78, + 135, + 75, + 150, + 110, + 39, + 150, + 48, + 160, + 125, + 120, + 42, + 90, + 85, + 75, + 140, + 62, + 50, + 165, + 120, + 80, + 90, + 48, + 45, + 42, + 24, + 70, + 71, + 52, + 85, + 49, + 70, + 280, + 65, + 60, + 200, + 480, + 360, + 100, + 85, + 38.9, + 80, + 53, + 36, + 55, + 75, + 65, + 55, + 55, + 35, + 35, + 150, + 18.975, + 270, + 110, + 65, + 35, + 200, + 167, + 100, + 175, + 78, + 37, + 50, + 85, + 60, + 38.5, + 58, + 45, + 110, + 70, + 46, + 28, + 45, + 87, + 55, + 80, + 48, + 120, + 35, + 165, + 200, + 87, + 45, + 65, + 40.64, + 45, + 54.5, + 250, + 90, + 40, + 36, + 55, + 65, + 95, + 45, + 155, + 36.5, + 68, + 68, + 65, + 120, + 40, + 155, + 75, + 150, + 82, + 49.5, + 95, + 125, + 110, + 95, + 17.675, + 155, + 90, + 48, + 35, + 87, + 300, + 100, + 63, + 35, + 85, + 46, + 60, + 180, + 250, + 50, + 70, + 45, + 300, + 70, + 120, + 36, + 235, + 75, + 150, + 57, + 80, + 85, + 41, + 115, + 49.5, + 42, + 70, + 40, + 200, + 250, + 175, + 40, + 38, + 190, + 47.799, + 33, + 95, + 45, + 45, + 38, + 110, + 60, + 120, + 80, + 70, + 95, + 50, + 140, + 62, + 56, + 38, + 36, + 150, + 105, + 65, + 36, + 55, + 65, + 43, + 40, + 35, + 38, + 70, + 110, + 28, + 130, + 55, + 43, + 180, + 36, + 62, + 145, + 80, + 52, + 55, + 77, + 53, + 34, + 38, + 150, + 120, + 240, + 62, + 40, + 180, + 32, + 55, + 40, + 150, + 175, + 45, + 43, + 55, + 60, + 90, + 45, + 105, + 49, + 58, + 80, + 75, + 120, + 150, + 70, + 270, + 82, + 75, + 105, + 37, + 260, + 250, + 85, + 350, + 60, + 62, + 36, + 72, + 80, + 130, + 95, + 50, + 37, + 58.5, + 350, + 85, + 150, + 75, + 95, + 500, + 100, + 54, + 300, + 175, + 65, + 43, + 250, + 105, + 300, + 122, + 78, + 85, + 33, + 240, + 90, + 75, + 110, + 44, + 125, + 50, + 47, + 350, + 85, + 52, + 60, + 420, + 53, + 40, + 145, + 130, + 47.5, + 33, + 54, + 50, + 68, + 120, + 55, + 45, + 45, + 57, + 42, + 85, + 40, + 40, + 65, + 62, + 32, + 40, + 35, + 65, + 55, + 80, + 45, + 55, + 170, + 65, + 23, + 47, + 85, + 100, + 15, + 45, + 33, + 70, + 58, + 92, + 24, + 135, + 50, + 35, + 78, + 80, + 47.5, + 240, + 120, + 55, + 225, + 58, + 46, + 33, + 55, + 57, + 300, + 37, + 160, + 56, + 17.675, + 130, + 80, + 65, + 85, + 30, + 32, + 58, + 38, + 165, + 65, + 240, + 130, + 44, + 40, + 62, + 40, + 75, + 130, + 100, + 75, + 10, + 45, + 180, + 60, + 46, + 150, + 120, + 60, + 240, + 38, + 80, + 39, + 72, + 36, + 70, + 65, + 33, + 70, + 63, + 39, + 85, + 85, + 240, + 100, + 120, + 65, + 45, + 75, + 85, + 140, + 400, + 40, + 80, + 52, + 53, + 60, + 40, + 200, + 37, + 50, + 17.675, + 67, + 35, + 250, + 57, + 48, + 40, + 95, + 70, + 65, + 55, + 32, + 65, + 120, + 56, + 85, + 41, + 45, + 300, + 58, + 52, + 36, + 28, + 60, + 32.75, + 70, + 100, + 78, + 70, + 75, + 130, + 90, + 47, + 50, + 62, + 90, + 85, + 75, + 220, + 40, + 120, + 330, + 130, + 36, + 33, + 100, + 68, + 170, + 80, + 100, + 55, + 63, + 35, + 135, + 150, + 58, + 280, + 500, + 185, + 45, + 75, + 60, + 195, + 45, + 48, + 90, + 125, + 73, + 80, + 50, + 75, + 43, + 50, + 210, + 120, + 100, + 37, + 140, + 250, + 40, + 55, + 90, + 56, + 150, + 130, + 170, + 40, + 40, + 50, + 60, + 190, + 65, + 45, + 185, + 185, + 60, + 38, + 50, + 350, + 100, + 45, + 57, + 80, + 63, + 30, + 60, + 55, + 77, + 65, + 165, + 130, + 35, + 65, + 65, + 138, + 70, + 190, + 51, + 80, + 35, + 185, + 65, + 350, + 85, + 260, + 37, + 150, + 48, + 36, + 38, + 42, + 85, + 100, + 300, + 280, + 150, + 120, + 77, + 63, + 60, + 48, + 150, + 33, + 58, + 90, + 130, + 38, + 110, + 90, + 60, + 25, + 140, + 90, + 40, + 72, + 100, + 80, + 55, + 125, + 120, + 49, + 60, + 120, + 90, + 105, + 75, + 120, + 90, + 58, + 33, + 85, + 100, + 70, + 120, + 70, + 210, + 70, + 40, + 26.4375, + 95, + 115, + 38, + 59, + 34, + 300, + 120, + 56, + 52, + 55, + 55, + 65, + 75, + 70, + 115, + 230, + 165, + 170, + 140, + 59, + 30, + 110, + 85, + 50, + 80, + 190, + 45, + 205, + 95, + 150, + 38, + 80, + 55, + 75, + 33, + 45, + 80, + 45, + 35, + 92, + 37, + 60, + 68, + 60, + 78, + 140, + 72, + 57, + 75, + 72, + 38, + 55, + 42, + 50, + 130, + 200, + 35, + 300, + 400, + 33, + 160, + 100, + 35, + 54, + 50, + 30, + 75, + 39, + 35, + 35, + 75, + 75, + 70, + 56, + 125, + 60, + 88, + 45, + 57, + 65, + 140, + 110, + 110, + 185, + 56, + 50, + 45, + 500, + 100, + 65, + 55, + 180, + 150, + 95, + 157, + 50, + 75, + 75, + 85, + 85, + 45, + 57, + 48, + 55, + 75, + 38, + 63, + 60, + 60, + 122, + 180, + 38, + 220, + 53, + 47.5, + 40, + 260, + 95, + 35, + 65, + 140, + 90, + 67, + 38, + 40, + 85, + 45, + 58, + 63, + 200, + 45, + 200, + 55, + 60, + 46, + 100, + 23.8, + 70, + 40, + 75, + 75, + 64, + 300, + 67, + 60, + 80, + 155, + 380, + 120, + 69, + 40, + 48, + 52, + 33, + 65, + 60, + 250, + 57, + 33, + 40, + 42, + 40, + 120, + 400, + 185, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 200, + 100, + 75, + 130, + 60, + 65, + 85, + 40, + 165, + 70, + 55, + 48, + 55, + 36, + 70, + 78, + 450, + 75, + 150, + 90, + 280, + 48, + 55, + 50, + 70, + 90, + 50, + 110, + 85, + 38, + 40, + 70, + 45, + 45, + 48, + 43, + 50, + 69, + 65, + 85, + 46, + 182, + 45, + 68, + 170, + 35, + 50, + 140, + 20, + 115, + 33, + 75, + 300, + 300, + 100, + 59, + 37, + 170, + 130, + 130, + 57, + 55, + 90, + 38, + 55, + 40, + 70, + 38, + 85, + 130, + 90, + 33, + 100, + 75, + 30, + 60, + 48, + 75, + 35, + 70, + 90, + 53, + 90, + 90, + 85, + 100, + 55, + 59, + 70, + 70, + 120, + 95, + 145, + 85, + 115, + 155, + 44, + 300, + 55, + 58, + 64, + 100, + 72, + 60, + 90, + 125, + 75, + 50, + 30, + 50, + 41, + 45, + 155, + 55, + 170, + 150, + 80, + 57, + 62, + 155, + 150, + 37, + 75, + 50, + 48.5, + 270, + 42, + 35, + 45, + 68, + 130, + 250, + 50, + 45, + 110, + 120, + 55, + 55, + 45, + 36, + 53, + 160, + 50, + 65, + 40, + 120, + 75, + 80, + 220, + 95, + 60, + 41, + 40, + 48, + 100, + 150, + 130, + 170, + 100, + 55, + 92, + 56, + 250, + 37, + 100, + 75, + 70, + 360, + 80, + 78, + 138, + 33.5, + 170, + 31, + 70, + 65, + 44, + 160, + 65, + 55, + 275, + 39, + 280, + 38, + 110, + 115, + 64, + 43, + 55, + 185, + 36, + 55, + 70, + 70, + 45, + 90, + 32, + 29, + 140, + 210, + 85, + 39, + 50, + 190, + 40, + 180, + 60, + 80, + 120, + 50, + 40, + 35, + 49, + 75, + 300, + 130, + 40, + 92, + 27, + 35, + 69, + 53, + 85, + 120, + 130, + 36.5, + 140, + 35, + 76, + 50, + 79, + 40, + 35, + 49, + 57, + 85, + 150, + 120, + 45, + 240, + 95, + 160, + 75, + 68, + 45, + 40, + 210, + 78, + 190, + 55, + 69, + 45, + 180, + 50, + 58, + 107, + 78, + 55, + 38, + 36, + 67, + 70, + 110, + 34, + 250, + 450, + 38, + 65, + 65, + 160, + 190, + 40, + 50, + 100, + 38, + 45, + 35, + 175, + 65, + 60, + 47, + 33, + 75, + 33, + 200, + 38, + 120, + 120, + 125, + 70, + 160, + 67, + 99.5, + 75, + 160, + 40, + 37, + 31, + 47, + 115, + 145, + 185, + 56, + 320, + 50, + 125, + 62, + 200, + 60, + 55, + 130, + 43, + 220, + 35, + 35, + 75, + 80, + 100, + 65, + 76, + 68, + 60, + 125, + 70, + 50, + 90, + 60, + 55, + 42, + 55, + 50, + 185, + 220, + 126, + 37, + 49, + 250, + 120, + 90, + 185, + 44, + 95, + 60, + 190, + 120, + 165, + 35, + 150, + 200, + 78, + 135, + 260, + 110, + 33, + 210, + 50, + 22, + 60, + 47, + 57.5, + 37, + 37, + 65, + 40, + 45, + 55, + 50, + 68, + 52, + 45, + 120, + 38, + 73, + 35, + 37, + 52, + 40, + 95, + 38, + 280, + 33, + 80, + 35, + 90, + 35, + 125, + 300, + 58, + 120, + 110, + 220, + 80, + 168, + 50, + 80, + 60, + 63, + 60, + 70, + 90, + 50, + 12, + 72, + 155, + 230, + 38, + 300, + 52, + 70, + 55, + 120, + 58, + 480, + 175, + 130, + 225, + 70, + 55, + 57, + 18.975, + 90, + 37, + 285, + 115, + 78, + 90, + 80, + 125, + 120, + 45, + 38, + 48, + 85, + 125, + 25, + 115, + 185, + 110, + 58, + 43, + 60, + 40, + 16.675, + 70, + 140.000009, + 50, + 47, + 250, + 55, + 320, + 50, + 130, + 70, + 52, + 46, + 270, + 190, + 47, + 70, + 37, + 120, + 60, + 47, + 130, + 165, + 55, + 65, + 81, + 231, + 165, + 280, + 53, + 155, + 69, + 47, + 160, + 160, + 33, + 160, + 55, + 55, + 200, + 65, + 125, + 47, + 47, + 45, + 52, + 43, + 76, + 80, + 280, + 35, + 90, + 57, + 40, + 130, + 45, + 40, + 93, + 50, + 200, + 120, + 65, + 65, + 76, + 120, + 130, + 185, + 110, + 175, + 42, + 75, + 60, + 185, + 35, + 100, + 58, + 130, + 63, + 34, + 125, + 36.5, + 36, + 30, + 60, + 45, + 65, + 20, + 135, + 55, + 70, + 170, + 45, + 44, + 120, + 65, + 37, + 90, + 129.5, + 60, + 43, + 63, + 230, + 75, + 350, + 75, + 85, + 150, + 60, + 96, + 210, + 135, + 115, + 120, + 65, + 108, + 70, + 60, + 70, + 75, + 70, + 75, + 60, + 40, + 95, + 45, + 150, + 26, + 75, + 40, + 235, + 125, + 57, + 90, + 400, + 35, + 55, + 85, + 80, + 200, + 450, + 78, + 120, + 50, + 45, + 300, + 350, + 180, + 33, + 47, + 33, + 33, + 105, + 33, + 200, + 350, + 120, + 165, + 55, + 80, + 120, + 380, + 160, + 78, + 48, + 75, + 60, + 35, + 40, + 56, + 185, + 70, + 65, + 14.8, + 95, + 50, + 55, + 50, + 52, + 110, + 41, + 75, + 85, + 59, + 58, + 75, + 75, + 250, + 75, + 140, + 180, + 100, + 37, + 70, + 47, + 40, + 85, + 100, + 30, + 200, + 75, + 150, + 130, + 50, + 110, + 125, + 360, + 120, + 87, + 85, + 46, + 120, + 39, + 65, + 75, + 37, + 41, + 62, + 39, + 75, + 70, + 32, + 59, + 65, + 450, + 60, + 49, + 32, + 120, + 40, + 60, + 70, + 50, + 40, + 20, + 58, + 115, + 100, + 350, + 39.8, + 500, + 210, + 50, + 25, + 120, + 65, + 180, + 80, + 110, + 39, + 62, + 40, + 190, + 39, + 41, + 150, + 65, + 47, + 100, + 120, + 130, + 70, + 57, + 24, + 40, + 120, + 160, + 110, + 180, + 65, + 36, + 70, + 250, + 70, + 115, + 110, + 85, + 320, + 65, + 330, + 42, + 105, + 100, + 60, + 65, + 63, + 100, + 65, + 160, + 100, + 53, + 55, + 150, + 38, + 64, + 60, + 100, + 110, + 95, + 38, + 47, + 200, + 75, + 100, + 52, + 38, + 38, + 33, + 230, + 55, + 90, + 45, + 50, + 42, + 130, + 380, + 87, + 170, + 40, + 160, + 105, + 100, + 220, + 120, + 27, + 35, + 260, + 140, + 37, + 38, + 65, + 78, + 120, + 60, + 59, + 50, + 75, + 53, + 60, + 50, + 185, + 50, + 110, + 55, + 75, + 140, + 36, + 175, + 55, + 80, + 36, + 130, + 165, + 70, + 35, + 140, + 29, + 36, + 180, + 35, + 27, + 85, + 80, + 39, + 100, + 75, + 80, + 34, + 41, + 155, + 35, + 70, + 70, + 55, + 45, + 130, + 78, + 45, + 69, + 195, + 43, + 85, + 130, + 150, + 45, + 250, + 180, + 60, + 100, + 74, + 280, + 110, + 50, + 70, + 55, + 200, + 100, + 58, + 38, + 75, + 43, + 140, + 399.999999, + 46, + 120, + 140, + 220, + 40, + 300, + 40, + 45, + 160, + 100, + 150, + 78, + 41, + 350, + 96, + 55, + 250, + 175, + 34, + 50, + 70, + 120, + 140, + 38, + 63, + 160, + 68, + 120, + 55, + 110, + 33, + 72, + 52, + 50, + 56, + 25, + 98, + 60, + 290, + 51, + 230, + 130, + 65, + 40, + 75, + 40, + 115, + 92, + 42, + 95, + 110, + 30, + 55, + 180, + 47, + 59, + 52, + 35, + 40, + 10, + 170, + 34, + 55, + 60, + 47, + 125, + 190, + 73, + 48, + 150, + 145, + 62, + 160, + 70, + 55, + 45, + 70, + 155, + 43, + 100, + 105, + 55, + 90, + 60, + 105, + 58, + 80, + 120.000009, + 50, + 170, + 47, + 115, + 200, + 47, + 55, + 155, + 78, + 65, + 35, + 35, + 165, + 52, + 80, + 75, + 90, + 55, + 37, + 145, + 55, + 135, + 120, + 170, + 175, + 68, + 62, + 40, + 40, + 350, + 33, + 111, + 160, + 350, + 45, + 45, + 150, + 120, + 33, + 35, + 70, + 55, + 120, + 60, + 59, + 85, + 60, + 58, + 350.035, + 40, + 60, + 30, + 57, + 38, + 90, + 37, + 95, + 130, + 55, + 460, + 75, + 37, + 62, + 185, + 58, + 55, + 14, + 170, + 130, + 55, + 40, + 210, + 150, + 95, + 70, + 92, + 35, + 65, + 90, + 100, + 75, + 45, + 50, + 180, + 460, + 55, + 65, + 48, + 47, + 63, + 65, + 120, + 65, + 165, + 250, + 240, + 67, + 55, + 36, + 90, + 125, + 83, + 95, + 90, + 80, + 45, + 34.1 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Type=Terraced Duplex
Price=%{x}", + "legendgroup": "Terraced Duplex", + "marker": { + "color": "#00cc96" + }, + "name": "Terraced Duplex", + "notched": true, + "offsetgroup": "Terraced Duplex", + "showlegend": false, + "type": "box", + "x": [ + 100, + 50, + 29, + 42, + 63, + 70, + 56, + 37.5, + 190, + 65, + 49, + 150, + 55, + 70, + 38, + 70, + 90, + 38, + 57, + 63, + 50, + 60, + 170, + 205, + 85, + 230, + 205, + 80, + 80, + 35, + 75, + 95, + 35, + 250, + 70, + 53, + 160, + 300, + 85, + 57, + 32, + 62, + 50, + 80, + 100, + 48, + 48, + 90, + 450, + 160, + 40, + 155, + 210, + 50, + 200, + 49.5, + 180, + 87, + 90, + 60, + 60, + 125, + 90, + 55, + 45, + 35, + 30, + 30, + 50, + 50, + 500, + 260, + 135, + 55, + 52, + 170, + 120, + 110, + 70, + 28, + 60, + 70, + 105, + 120, + 68, + 60, + 130, + 65, + 60, + 180, + 130, + 45, + 110, + 70, + 64, + 40, + 70, + 90, + 80, + 40, + 200, + 220, + 105, + 56, + 120, + 100, + 60, + 55, + 35, + 33, + 35, + 85, + 160, + 50, + 150, + 160, + 37, + 180, + 85, + 145, + 45, + 250, + 137, + 95, + 37, + 38, + 350, + 40, + 55, + 150, + 52.5, + 120, + 130, + 60, + 105, + 50, + 33, + 175, + 49.5, + 380, + 65, + 85, + 31, + 46, + 55, + 100, + 230, + 48, + 120, + 80, + 80, + 60, + 80, + 75, + 50, + 75, + 20, + 185, + 65, + 60, + 37, + 78, + 460, + 32.75, + 43, + 65, + 40, + 160, + 175, + 150, + 120, + 45, + 90, + 450, + 35, + 40, + 100, + 80, + 90, + 39, + 67, + 110, + 38, + 70, + 50, + 60, + 60.9, + 80, + 65, + 85, + 35, + 50, + 80, + 48, + 210, + 450, + 110, + 59, + 33, + 70, + 47, + 160, + 155, + 55, + 62.5, + 70, + 75, + 55, + 35, + 37, + 100, + 49, + 90, + 130, + 140, + 38, + 300, + 45, + 120, + 47, + 80, + 120, + 170, + 45, + 75, + 50, + 195, + 42, + 55, + 145, + 44, + 80, + 115, + 57, + 75, + 120, + 32, + 58, + 25, + 140, + 100, + 80, + 75, + 50, + 66, + 78, + 49, + 70, + 65, + 180, + 14, + 52, + 80, + 56, + 75, + 50, + 150, + 90, + 90, + 58, + 203, + 41, + 30, + 120, + 75, + 50, + 59, + 160, + 40, + 95, + 100, + 40, + 70, + 78, + 350, + 75, + 70, + 50, + 30, + 40, + 110, + 240, + 170, + 55, + 95, + 38, + 170, + 33, + 135, + 60, + 75, + 200, + 50, + 38, + 92, + 180, + 22, + 92, + 170, + 100, + 55, + 40, + 45, + 130, + 85, + 50, + 60, + 205, + 270, + 270, + 33, + 65, + 39, + 75, + 59, + 150, + 52, + 115, + 80, + 55, + 55, + 25, + 33, + 200, + 17.675, + 130, + 85, + 67, + 45, + 47, + 470, + 65, + 100, + 200, + 69, + 28, + 75, + 47, + 70, + 60, + 130, + 36, + 43, + 55, + 300, + 55, + 123, + 30, + 40, + 45, + 45, + 57, + 60, + 65, + 53, + 41, + 37, + 51.5, + 80, + 37, + 100, + 120, + 100, + 75, + 95, + 100, + 40, + 55, + 145, + 40, + 130, + 155, + 250, + 53.1, + 90, + 60, + 170, + 45, + 55, + 120, + 85, + 40, + 105, + 36.5, + 33, + 58, + 57, + 185, + 49, + 180, + 205, + 110, + 480, + 130, + 92, + 95, + 48, + 170, + 45, + 35.85, + 130, + 250, + 75, + 420, + 175, + 80, + 70, + 19.975, + 130, + 245, + 100, + 90, + 70, + 250, + 35, + 55, + 150, + 57, + 33, + 500, + 11.6, + 42, + 77, + 120, + 160, + 37, + 79, + 48, + 45, + 75, + 80, + 155, + 65, + 36.5, + 150, + 135, + 130, + 50, + 160, + 135, + 95, + 150, + 220, + 90, + 38, + 80, + 280, + 260, + 130, + 49, + 35, + 68, + 55, + 120, + 52, + 200, + 300, + 100, + 90, + 75, + 60, + 35, + 65, + 45, + 57, + 180, + 100, + 60, + 68, + 55, + 100, + 90, + 57, + 170, + 150, + 65, + 37, + 35, + 38, + 160, + 58, + 26, + 95, + 50, + 73, + 58, + 63, + 65, + 57, + 57, + 75, + 20, + 175, + 230, + 95, + 65, + 52, + 60, + 260, + 55, + 120, + 220, + 85, + 67, + 100, + 73, + 130, + 58, + 39, + 62, + 85, + 57, + 90, + 150, + 105, + 105, + 85, + 43, + 50, + 220, + 85, + 295, + 120, + 140, + 62, + 47.5, + 95, + 52, + 85, + 53, + 80, + 85, + 250, + 160, + 55, + 125, + 45, + 39, + 95, + 250, + 35, + 38, + 135, + 46, + 36, + 35, + 128, + 50, + 300, + 55, + 80, + 125, + 175, + 65, + 50, + 85, + 58, + 35, + 52, + 125, + 78, + 110, + 135, + 55, + 75, + 27, + 75, + 75, + 45, + 64.1, + 130, + 56, + 120, + 120, + 38, + 28.5, + 45, + 55, + 35, + 35, + 95, + 280, + 40, + 220, + 150, + 68, + 45, + 33, + 65, + 95, + 160, + 250, + 33, + 44, + 58, + 58, + 65, + 75, + 50, + 80, + 100, + 65, + 300, + 47, + 85, + 47, + 65, + 65, + 120, + 180, + 85, + 38, + 270, + 160, + 90, + 250, + 165, + 65, + 80, + 90, + 50, + 30, + 69, + 180, + 135, + 180, + 59, + 90, + 35, + 400, + 57, + 80, + 150, + 100, + 150, + 80, + 70, + 37, + 62, + 235, + 90, + 250, + 36.5, + 65, + 44, + 200, + 65, + 58, + 230, + 120, + 70, + 175, + 130, + 45, + 80, + 400, + 42, + 110, + 105, + 110, + 80, + 145, + 73, + 130, + 58, + 100, + 90, + 55, + 175, + 38.5, + 55, + 37, + 270, + 115, + 58, + 46, + 100, + 170, + 42, + 150, + 68, + 38, + 40, + 141, + 150, + 27, + 125, + 130, + 90, + 100, + 55, + 65, + 130, + 175, + 195, + 33, + 75, + 32, + 70, + 33.5, + 350, + 40, + 150, + 90, + 50, + 51.5, + 44.815, + 55, + 125, + 250, + 90, + 64, + 95, + 200, + 70, + 70, + 40, + 70, + 40, + 90, + 40, + 250, + 45, + 80, + 270, + 51, + 110, + 170, + 130, + 37, + 140, + 140, + 38, + 85, + 55, + 48, + 65, + 180, + 57, + 145, + 46, + 35, + 100, + 210, + 50, + 400, + 130, + 40, + 22, + 100, + 60, + 36, + 125, + 85, + 55, + 58, + 270, + 45, + 40, + 46, + 300, + 130, + 100, + 60, + 37, + 115, + 60, + 30, + 70, + 115, + 260, + 55, + 80, + 45, + 39, + 45, + 130, + 220, + 145, + 300, + 35, + 36, + 75, + 33, + 110, + 53, + 65, + 75, + 130, + 65, + 67, + 50, + 200, + 84, + 53, + 130, + 100, + 140, + 110, + 180, + 78, + 240, + 78, + 135, + 75, + 150, + 110, + 39, + 150, + 48, + 160, + 125, + 120, + 42, + 90, + 85, + 75, + 140, + 62, + 50, + 165, + 120, + 80, + 90, + 48, + 45, + 42, + 24, + 70, + 71, + 52, + 85, + 49, + 70, + 280, + 65, + 60, + 200, + 480, + 360, + 100, + 85, + 38.9, + 80, + 53, + 36, + 55, + 75, + 65, + 55, + 55, + 35, + 35, + 150, + 18.975, + 270, + 110, + 65, + 35, + 200, + 167, + 100, + 175, + 78, + 37, + 50, + 85, + 60, + 38.5, + 58, + 45, + 110, + 70, + 46, + 28, + 45, + 87, + 55, + 80, + 48, + 120, + 35, + 165, + 200, + 87, + 45, + 65, + 40.64, + 45, + 54.5, + 250, + 90, + 40, + 36, + 55, + 65, + 95, + 45, + 155, + 36.5, + 68, + 68, + 65, + 120, + 40, + 155, + 75, + 150, + 82, + 49.5, + 95, + 125, + 110, + 95, + 17.675, + 155, + 90, + 48, + 35, + 87, + 300, + 100, + 63, + 35, + 85, + 46, + 60, + 180, + 250, + 50, + 70, + 45, + 300, + 70, + 120, + 36, + 235, + 75, + 150, + 57, + 80, + 85, + 41, + 115, + 49.5, + 42, + 70, + 40, + 200, + 250, + 175, + 40, + 38, + 190, + 47.799, + 33, + 95, + 45, + 45, + 38, + 110, + 60, + 120, + 80, + 70, + 95, + 50, + 140, + 62, + 56, + 38, + 36, + 150, + 105, + 65, + 36, + 55, + 65, + 43, + 40, + 35, + 38, + 70, + 110, + 28, + 130, + 55, + 43, + 180, + 36, + 62, + 145, + 80, + 52, + 55, + 77, + 53, + 34, + 38, + 150, + 120, + 240, + 62, + 40, + 180, + 32, + 55, + 40, + 150, + 175, + 45, + 43, + 55, + 60, + 90, + 45, + 105, + 49, + 58, + 80, + 75, + 120, + 150, + 70, + 270, + 82, + 75, + 105, + 37, + 260, + 250, + 85, + 350, + 60, + 62, + 36, + 72, + 80, + 130, + 95, + 50, + 37, + 58.5, + 350, + 85, + 150, + 75, + 95, + 500, + 100, + 54, + 300, + 175, + 65, + 43, + 250, + 105, + 300, + 122, + 78, + 85, + 33, + 240, + 90, + 75, + 110, + 44, + 125, + 50, + 47, + 350, + 85, + 52, + 60, + 420, + 53, + 40, + 145, + 130, + 47.5, + 33, + 54, + 50, + 68, + 120, + 55, + 45, + 45, + 57, + 42, + 85, + 40, + 40, + 65, + 62, + 32, + 40, + 35, + 65, + 55, + 80, + 45, + 55, + 170, + 65, + 23, + 47, + 85, + 100, + 15, + 45, + 33, + 70, + 58, + 92, + 24, + 135, + 50, + 35, + 78, + 80, + 47.5, + 240, + 120, + 55, + 225, + 58, + 46, + 33, + 55, + 57, + 300, + 37, + 160, + 56, + 17.675, + 130, + 80, + 65, + 85, + 30, + 32, + 58, + 38, + 165, + 65, + 240, + 130, + 44, + 40, + 62, + 40, + 75, + 130, + 100, + 75, + 10, + 45, + 180, + 60, + 46, + 150, + 120, + 60, + 240, + 38, + 80, + 39, + 72, + 36, + 70, + 65, + 33, + 70, + 63, + 39, + 85, + 85, + 240, + 100, + 120, + 65, + 45, + 75, + 85, + 140, + 400, + 40, + 80, + 52, + 53, + 60, + 40, + 200, + 37, + 50, + 17.675, + 67, + 35, + 250, + 57, + 48, + 40, + 95, + 70, + 65, + 55, + 32, + 65, + 120, + 56, + 85, + 41, + 45, + 300, + 58, + 52, + 36, + 28, + 60, + 32.75, + 70, + 100, + 78, + 70, + 75, + 130, + 90, + 47, + 50, + 62, + 90, + 85, + 75, + 220, + 40, + 120, + 330, + 130, + 36, + 33, + 100, + 68, + 170, + 80, + 100, + 55, + 63, + 35, + 135, + 150, + 58, + 280, + 500, + 185, + 45, + 75, + 60, + 195, + 45, + 48, + 90, + 125, + 73, + 80, + 50, + 75, + 43, + 50, + 210, + 120, + 100, + 37, + 140, + 250, + 40, + 55, + 90, + 56, + 150, + 130, + 170, + 40, + 40, + 50, + 60, + 190, + 65, + 45, + 185, + 185, + 60, + 38, + 50, + 350, + 100, + 45, + 57, + 80, + 63, + 30, + 60, + 55, + 77, + 65, + 165, + 130, + 35, + 65, + 65, + 138, + 70, + 190, + 51, + 80, + 35, + 185, + 65, + 350, + 85, + 260, + 37, + 150, + 48, + 36, + 38, + 42, + 85, + 100, + 300, + 280, + 150, + 120, + 77, + 63, + 60, + 48, + 150, + 33, + 58, + 90, + 130, + 38, + 110, + 90, + 60, + 25, + 140, + 90, + 40, + 72, + 100, + 80, + 55, + 125, + 120, + 49, + 60, + 120, + 90, + 105, + 75, + 120, + 90, + 58, + 33, + 85, + 100, + 70, + 120, + 70, + 210, + 70, + 40, + 26.4375, + 95, + 115, + 38, + 59, + 34, + 300, + 120, + 56, + 52, + 55, + 55, + 65, + 75, + 70, + 115, + 230, + 165, + 170, + 140, + 59, + 30, + 110, + 85, + 50, + 80, + 190, + 45, + 205, + 95, + 150, + 38, + 80, + 55, + 75, + 33, + 45, + 80, + 45, + 35, + 92, + 37, + 60, + 68, + 60, + 78, + 140, + 72, + 57, + 75, + 72, + 38, + 55, + 42, + 50, + 130, + 200, + 35, + 300, + 400, + 33, + 160, + 100, + 35, + 54, + 50, + 30, + 75, + 39, + 35, + 35, + 75, + 75, + 70, + 56, + 125, + 60, + 88, + 45, + 57, + 65, + 140, + 110, + 110, + 185, + 56, + 50, + 45, + 500, + 100, + 65, + 55, + 180, + 150, + 95, + 157, + 50, + 75, + 75, + 85, + 85, + 45, + 57, + 48, + 55, + 75, + 38, + 63, + 60, + 60, + 122, + 180, + 38, + 220, + 53, + 47.5, + 40, + 260, + 95, + 35, + 65, + 140, + 90, + 67, + 38, + 40, + 85, + 45, + 58, + 63, + 200, + 45, + 200, + 55, + 60, + 46, + 100, + 23.8, + 70, + 40, + 75, + 75, + 64, + 300, + 67, + 60, + 80, + 155, + 380, + 120, + 69, + 40, + 48, + 52, + 33, + 65, + 60, + 250, + 57, + 33, + 40, + 42, + 40, + 120, + 400, + 185, + 80, + 35, + 85, + 150, + 65, + 58, + 38, + 65, + 200, + 100, + 75, + 130, + 60, + 65, + 85, + 40, + 165, + 70, + 55, + 48, + 55, + 36, + 70, + 78, + 450, + 75, + 150, + 90, + 280, + 48, + 55, + 50, + 70, + 90, + 50, + 110, + 85, + 38, + 40, + 70, + 45, + 45, + 48, + 43, + 50, + 69, + 65, + 85, + 46, + 182, + 45, + 68, + 170, + 35, + 50, + 140, + 20, + 115, + 33, + 75, + 300, + 300, + 100, + 59, + 37, + 170, + 130, + 130, + 57, + 55, + 90, + 38, + 55, + 40, + 70, + 38, + 85, + 130, + 90, + 33, + 100, + 75, + 30, + 60, + 48, + 75, + 35, + 70, + 90, + 53, + 90, + 90, + 85, + 100, + 55, + 59, + 70, + 70, + 120, + 95, + 145, + 85, + 115, + 155, + 44, + 300, + 55, + 58, + 64, + 100, + 72, + 60, + 90, + 125, + 75, + 50, + 30, + 50, + 41, + 45, + 155, + 55, + 170, + 150, + 80, + 57, + 62, + 155, + 150, + 37, + 75, + 50, + 48.5, + 270, + 42, + 35, + 45, + 68, + 130, + 250, + 50, + 45, + 110, + 120, + 55, + 55, + 45, + 36, + 53, + 160, + 50, + 65, + 40, + 120, + 75, + 80, + 220, + 95, + 60, + 41, + 40, + 48, + 100, + 150, + 130, + 170, + 100, + 55, + 92, + 56, + 250, + 37, + 100, + 75, + 70, + 360, + 80, + 78, + 138, + 33.5, + 170, + 31, + 70, + 65, + 44, + 160, + 65, + 55, + 275, + 39, + 280, + 38, + 110, + 115, + 64, + 43, + 55, + 185, + 36, + 55, + 70, + 70, + 45, + 90, + 32, + 29, + 140, + 210, + 85, + 39, + 50, + 190, + 40, + 180, + 60, + 80, + 120, + 50, + 40, + 35, + 49, + 75, + 300, + 130, + 40, + 92, + 27, + 35, + 69, + 53, + 85, + 120, + 130, + 36.5, + 140, + 35, + 76, + 50, + 79, + 40, + 35, + 49, + 57, + 85, + 150, + 120, + 45, + 240, + 95, + 160, + 75, + 68, + 45, + 40, + 210, + 78, + 190, + 55, + 69, + 45, + 180, + 50, + 58, + 107, + 78, + 55, + 38, + 36, + 67, + 70, + 110, + 34, + 250, + 450, + 38, + 65, + 65, + 160, + 190, + 40, + 50, + 100, + 38, + 45, + 35, + 175, + 65, + 60, + 47, + 33, + 75, + 33, + 200, + 38, + 120, + 120, + 125, + 70, + 160, + 67, + 99.5, + 75, + 160, + 40, + 37, + 31, + 47, + 115, + 145, + 185, + 56, + 320, + 50, + 125, + 62, + 200, + 60, + 55, + 130, + 43, + 220, + 35, + 35, + 75, + 80, + 100, + 65, + 76, + 68, + 60, + 125, + 70, + 50, + 90, + 60, + 55, + 42, + 55, + 50, + 185, + 220, + 126, + 37, + 49, + 250, + 120, + 90, + 185, + 44, + 95, + 60, + 190, + 120, + 165, + 35, + 150, + 200, + 78, + 135, + 260, + 110, + 33, + 210, + 50, + 22, + 60, + 47, + 57.5, + 37, + 37, + 65, + 40, + 45, + 55, + 50, + 68, + 52, + 45, + 120, + 38, + 73, + 35, + 37, + 52, + 40, + 95, + 38, + 280, + 33, + 80, + 35, + 90, + 35, + 125, + 300, + 58, + 120, + 110, + 220, + 80, + 168, + 50, + 80, + 60, + 63, + 60, + 70, + 90, + 50, + 12, + 72, + 155, + 230, + 38, + 300, + 52, + 70, + 55, + 120, + 58, + 480, + 175, + 130, + 225, + 70, + 55, + 57, + 18.975, + 90, + 37, + 285, + 115, + 78, + 90, + 80, + 125, + 120, + 45, + 38, + 48, + 85, + 125, + 25, + 115, + 185, + 110, + 58, + 43, + 60, + 40, + 16.675, + 70, + 140.000009, + 50, + 47, + 250, + 55, + 320, + 50, + 130, + 70, + 52, + 46, + 270, + 190, + 47, + 70, + 37, + 120, + 60, + 47, + 130, + 165, + 55, + 65, + 81, + 231, + 165, + 280, + 53, + 155, + 69, + 47, + 160, + 160, + 33, + 160, + 55, + 55, + 200, + 65, + 125, + 47, + 47, + 45, + 52, + 43, + 76, + 80, + 280, + 35, + 90, + 57, + 40, + 130, + 45, + 40, + 93, + 50, + 200, + 120, + 65, + 65, + 76, + 120, + 130, + 185, + 110, + 175, + 42, + 75, + 60, + 185, + 35, + 100, + 58, + 130, + 63, + 34, + 125, + 36.5, + 36, + 30, + 60, + 45, + 65, + 20, + 135, + 55, + 70, + 170, + 45, + 44, + 120, + 65, + 37, + 90, + 129.5, + 60, + 43, + 63, + 230, + 75, + 350, + 75, + 85, + 150, + 60, + 96, + 210, + 135, + 115, + 120, + 65, + 108, + 70, + 60, + 70, + 75, + 70, + 75, + 60, + 40, + 95, + 45, + 150, + 26, + 75, + 40, + 235, + 125, + 57, + 90, + 400, + 35, + 55, + 85, + 80, + 200, + 450, + 78, + 120, + 50, + 45, + 300, + 350, + 180, + 33, + 47, + 33, + 33, + 105, + 33, + 200, + 350, + 120, + 165, + 55, + 80, + 120, + 380, + 160, + 78, + 48, + 75, + 60, + 35, + 40, + 56, + 185, + 70, + 65, + 14.8, + 95, + 50, + 55, + 50, + 52, + 110, + 41, + 75, + 85, + 59, + 58, + 75, + 75, + 250, + 75, + 140, + 180, + 100, + 37, + 70, + 47, + 40, + 85, + 100, + 30, + 200, + 75, + 150, + 130, + 50, + 110, + 125, + 360, + 120, + 87, + 85, + 46, + 120, + 39, + 65, + 75, + 37, + 41, + 62, + 39, + 75, + 70, + 32, + 59, + 65, + 450, + 60, + 49, + 32, + 120, + 40, + 60, + 70, + 50, + 40, + 20, + 58, + 115, + 100, + 350, + 39.8, + 500, + 210, + 50, + 25, + 120, + 65, + 180, + 80, + 110, + 39, + 62, + 40, + 190, + 39, + 41, + 150, + 65, + 47, + 100, + 120, + 130, + 70, + 57, + 24, + 40, + 120, + 160, + 110, + 180, + 65, + 36, + 70, + 250, + 70, + 115, + 110, + 85, + 320, + 65, + 330, + 42, + 105, + 100, + 60, + 65, + 63, + 100, + 65, + 160, + 100, + 53, + 55, + 150, + 38, + 64, + 60, + 100, + 110, + 95, + 38, + 47, + 200, + 75, + 100, + 52, + 38, + 38, + 33, + 230, + 55, + 90, + 45, + 50, + 42, + 130, + 380, + 87, + 170, + 40, + 160, + 105, + 100, + 220, + 120, + 27, + 35, + 260, + 140, + 37, + 38, + 65, + 78, + 120, + 60, + 59, + 50, + 75, + 53, + 60, + 50, + 185, + 50, + 110, + 55, + 75, + 140, + 36, + 175, + 55, + 80, + 36, + 130, + 165, + 70, + 35, + 140, + 29, + 36, + 180, + 35, + 27, + 85, + 80, + 39, + 100, + 75, + 80, + 34, + 41, + 155, + 35, + 70, + 70, + 55, + 45, + 130, + 78, + 45, + 69, + 195, + 43, + 85, + 130, + 150, + 45, + 250, + 180, + 60, + 100, + 74, + 280, + 110, + 50, + 70, + 55, + 200, + 100, + 58, + 38, + 75, + 43, + 140, + 399.999999, + 46, + 120, + 140, + 220, + 40, + 300, + 40, + 45, + 160, + 100, + 150, + 78, + 41, + 350, + 96, + 55, + 250, + 175, + 34, + 50, + 70, + 120, + 140, + 38, + 63, + 160, + 68, + 120, + 55, + 110, + 33, + 72, + 52, + 50, + 56, + 25, + 98, + 60, + 290, + 51, + 230, + 130, + 65, + 40, + 75, + 40, + 115, + 92, + 42, + 95, + 110, + 30, + 55, + 180, + 47, + 59, + 52, + 35, + 40, + 10, + 170, + 34, + 55, + 60, + 47, + 125, + 190, + 73, + 48, + 150, + 145, + 62, + 160, + 70, + 55, + 45, + 70, + 155, + 43, + 100, + 105, + 55, + 90, + 60, + 105, + 58, + 80, + 120.000009, + 50, + 170, + 47, + 115, + 200, + 47, + 55, + 155, + 78, + 65, + 35, + 35, + 165, + 52, + 80, + 75, + 90, + 55, + 37, + 145, + 55, + 135, + 120, + 170, + 175, + 68, + 62, + 40, + 40, + 350, + 33, + 111, + 160, + 350, + 45, + 45, + 150, + 120, + 33, + 35, + 70, + 55, + 120, + 60, + 59, + 85, + 60, + 58, + 350.035, + 40, + 60, + 30, + 57, + 38, + 90, + 37, + 95, + 130, + 55, + 460, + 75, + 37, + 62, + 185, + 58, + 55, + 14, + 170, + 130, + 55, + 40, + 210, + 150, + 95, + 70, + 92, + 35, + 65, + 90, + 100, + 75, + 45, + 50, + 180, + 460, + 55, + 65, + 48, + 47, + 63, + 65, + 120, + 65, + 165, + 250, + 240, + 67, + 55, + 36, + 90, + 125, + 83, + 95, + 90, + 80, + 45, + 34.1 + ], + "xaxis": "x2", + "yaxis": "y2" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "Type" + }, + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Disribtion of Prices based on Property Type" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Price" + } + }, + "xaxis2": { + "anchor": "y2", + "domain": [ + 0, + 1 + ], + "matches": "x", + "showgrid": true, + "showticklabels": false + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 0.7326 + ], + "title": { + "text": "count" + } + }, + "yaxis2": { + "anchor": "x2", + "domain": [ + 0.7426, + 1 + ], + "matches": "y2", + "showgrid": false, + "showline": false, + "showticklabels": false, + "ticks": "" + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "px.histogram(data_frame=lagos, x=\"Price\",marginal=\"box\", nbins=120,\n", + " color=\"Type\", title=\"Disribtion of Prices based on Property Type\")" + ] + }, + { + "cell_type": "markdown", + "id": "18c61bbb", + "metadata": {}, + "source": [ + "Built Houses are more expensive, followed by apartments and land, which makes sense" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "02e944e4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10,5))\n", + "plt.title(\"Distribution of Bedrooms\")\n", + "\n", + "sns.countplot(x=lagos[\"Bedrooms\"]);" + ] + }, + { + "cell_type": "markdown", + "id": "23768b9c", + "metadata": {}, + "source": [ + "The properties that have 0 are mostly land properties and we can see that they are the most from our dataset, while houses with 5 bedrooms (mostly duplexes) come second." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "c3a52dcc", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10,5))\n", + "plt.title(\"Distribution of Bathrooms\")\n", + "\n", + "sns.countplot(x=lagos[\"Bathrooms\"]);" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "c0fd566e", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10,5))\n", + "plt.title(\"Distribution of Toilets\")\n", + "\n", + "sns.countplot(x=lagos[\"Toilets\"]);" + ] + }, + { + "cell_type": "markdown", + "id": "77eedec9", + "metadata": {}, + "source": [ + "Also there isn't any house with 4 toilets, this is strange because a normal home would have an extra toilet (guest toilet).\n", + "\n", + "But as we compare the graphs of toilets and bathroom, we see the houses with 2 and 3 bathrooms have the same count for toilets." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "0d03819b", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10,5))\n", + "plt.title(\"Distribution of City\")\n", + "\n", + "sns.countplot(y=lagos[\"City\"]);" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + }, + "hovertemplate": "City=%{label}", + "labels": [ + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikoyi", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikeja", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Victoria Island", + "Victoria Island", + "Ikeja", + "Lekki", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Victoria Island", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Ikoyi", + "Ikoyi", + "Ikeja", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikeja", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Ikeja", + "Ikoyi", + "Lekki", + "Ikeja", + "Ikeja", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Ikeja", + "Ikeja", + "Victoria Island", + "Ikoyi", + "Ikeja", + "Ikeja", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Victoria Island", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikoyi", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Lekki", + "Ikeja" + ], + "legendgroup": "", + "name": "", + "showlegend": true, + "type": "pie" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "px.pie(lagos, \"City\")" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "f94eea3d", + "metadata": {}, + "outputs": [], + "source": [ + "loc = lagos.groupby(\"City\").median()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "95a4f58c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PriceServicedNewly BuiltFurnishedBedroomsBathroomsToilets
City
Ikeja120.00.00.00.04.05.05.0
Ikoyi270.00.00.00.04.04.05.0
Lekki85.00.01.00.04.05.05.0
Victoria Island150.00.00.00.04.04.05.0
\n", + "
" + ], + "text/plain": [ + " Price Serviced Newly Built Furnished Bedrooms Bathrooms \\\n", + "City \n", + "Ikeja 120.0 0.0 0.0 0.0 4.0 5.0 \n", + "Ikoyi 270.0 0.0 0.0 0.0 4.0 4.0 \n", + "Lekki 85.0 0.0 1.0 0.0 4.0 5.0 \n", + "Victoria Island 150.0 0.0 0.0 0.0 4.0 4.0 \n", + "\n", + " Toilets \n", + "City \n", + "Ikeja 5.0 \n", + "Ikoyi 5.0 \n", + "Lekki 5.0 \n", + "Victoria Island 5.0 " + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "loc" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "63beaff4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10,6])\n", + "plt.title(\"Average price of residential properties by City\")\n", + "sns.barplot(x=loc[\"Price\"], y=loc.index,)\n", + "plt.xlabel(\"Price (in millions)\");" + ] + }, + { + "cell_type": "markdown", + "id": "a8eede40", + "metadata": {}, + "source": [ + "Most Houses are in Lekki because it is the fatest growing city in Lagos, as more people are moving into this area" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "4b9d20c0", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(10,5))\n", + "plt.title(\"Distribution of Property\")\n", + "\n", + "sns.countplot(x=lagos[\"Type\"]);" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.heatmap(lagos.corr(), cmap=\"Reds\", annot=True, cbar=False);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Top 10 Most Populated Neighborhoods" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "top_neigh = lagos[lagos[\"Neighborhood\"] !=\"Other Lekki\"][\"Neighborhood\"].value_counts().head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Chevron 1732\n", + "Lekki Phase 1 1518\n", + "Ikota 1515\n", + "Osapa London 1090\n", + "Ikate 951\n", + "Lekki Phase 2 710\n", + "GRA 369\n", + "Other Ikeja 363\n", + "Oniru 344\n", + "Other Ikoyi 290\n", + "Name: Neighborhood, dtype: int64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "top_neigh" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10,6])\n", + "\n", + "plt.title(\"Top 10 most populated neighborhoods in Lagos\")\n", + "sns.barplot(y=top_neigh.index, x=top_neigh)\n", + "\n", + "plt.ylabel(\"Neighborhood\")\n", + "plt.xlabel(\"Number of houses\");" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/4 Model Building.ipynb b/4 Model Building.ipynb new file mode 100644 index 0000000..98f1e21 --- /dev/null +++ b/4 Model Building.ipynb @@ -0,0 +1,1671 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e5def406", + "metadata": {}, + "source": [ + "# Lagos House Predictor\n", + "\n", + "Predicting the price of homes in Lagos based off data scraped from [PropertPro.ng](https://www.propertypro.ng/property-for-sale/in/lagos)\n", + "\n", + "___\n", + "\n", + "* Type of Machine Learning Method\n", + " * Supervised Learning\n", + " * Regression\n", + " * LightGBM Regressor\n", + " * MAE - ₦45.9 million\n", + "___\n", + "* Dataset Used\n", + " * Data was scraped from [PropertPro.ng](https://www.propertypro.ng/property-for-sale/in/lagos), code for the script is found at Web Scraper notebook" + ] + }, + { + "cell_type": "markdown", + "id": "3cfb91d0", + "metadata": {}, + "source": [ + "## Import Dataset\n", + "\n", + "We first would import the necessary libraries we need at the moment, we will import others as when they are needed" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "59efff48", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np # for numerical analysis\n", + "import pandas as pd # for data manipulation\n", + "import joblib # for saving tools for future use\n", + "\n", + "# for plotting graphs\n", + "import seaborn as sns \n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "sns.set_style(\"darkgrid\")" + ] + }, + { + "cell_type": "markdown", + "id": "57d9faf6", + "metadata": {}, + "source": [ + "Importing train, test and validation dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "0faec604", + "metadata": {}, + "outputs": [], + "source": [ + "train = pd.read_csv(\"clean/train.csv\")\n", + "test = pd.read_csv(\"clean/test.csv\")\n", + "validation = pd.read_csv(\"clean/validation.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "9cd114ae", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ServicedNewly BuiltFurnishedBedroomsBathroomsToiletsNeighborhood_OpebiNeighborhood_Other LekkiNeighborhood_Adeniyi JonesNeighborhood_Lekki Phase 1...Neighborhood_Awolowo WayNeighborhood_AgidingbiType_Semi Detached DuplexType_Detached DuplexType_Terraced DuplexCity_IkejaCity_LekkiCity_IkoyiCity_Victoria IslandPrice
0000-0.481408-0.582738-0.1705921000...00100100090000000.0
1000-0.481408-0.5827380.7360670100...000100100125000000.0
20004.5296483.2331982.5493840010...000101000300000000.0
3000-0.481408-0.582738-1.0772500001...001000100180000000.0
40100.7713561.325230-0.1705920100...00010010055000000.0
\n", + "

5 rows × 46 columns

\n", + "
" + ], + "text/plain": [ + " Serviced Newly Built Furnished Bedrooms Bathrooms Toilets \\\n", + "0 0 0 0 -0.481408 -0.582738 -0.170592 \n", + "1 0 0 0 -0.481408 -0.582738 0.736067 \n", + "2 0 0 0 4.529648 3.233198 2.549384 \n", + "3 0 0 0 -0.481408 -0.582738 -1.077250 \n", + "4 0 1 0 0.771356 1.325230 -0.170592 \n", + "\n", + " Neighborhood_Opebi Neighborhood_Other Lekki Neighborhood_Adeniyi Jones \\\n", + "0 1 0 0 \n", + "1 0 1 0 \n", + "2 0 0 1 \n", + "3 0 0 0 \n", + "4 0 1 0 \n", + "\n", + " Neighborhood_Lekki Phase 1 ... Neighborhood_Awolowo Way \\\n", + "0 0 ... 0 \n", + "1 0 ... 0 \n", + "2 0 ... 0 \n", + "3 1 ... 0 \n", + "4 0 ... 0 \n", + "\n", + " Neighborhood_Agidingbi Type_Semi Detached Duplex Type_Detached Duplex \\\n", + "0 0 1 0 \n", + "1 0 0 1 \n", + "2 0 0 1 \n", + "3 0 1 0 \n", + "4 0 0 1 \n", + "\n", + " Type_Terraced Duplex City_Ikeja City_Lekki City_Ikoyi \\\n", + "0 0 1 0 0 \n", + "1 0 0 1 0 \n", + "2 0 1 0 0 \n", + "3 0 0 1 0 \n", + "4 0 0 1 0 \n", + "\n", + " City_Victoria Island Price \n", + "0 0 90000000.0 \n", + "1 0 125000000.0 \n", + "2 0 300000000.0 \n", + "3 0 180000000.0 \n", + "4 0 55000000.0 \n", + "\n", + "[5 rows x 46 columns]" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train.head()" + ] + }, + { + "cell_type": "markdown", + "id": "ab42d062", + "metadata": {}, + "source": [ + "We can see from the data above we have 44 features as our Target Variable is **Price**" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "fb1146df", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(8408, 46)" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train.shape" + ] + }, + { + "cell_type": "markdown", + "id": "fddf3bde", + "metadata": {}, + "source": [ + "## Preprocessing of Validation data" + ] + }, + { + "cell_type": "markdown", + "id": "aa9f5e70", + "metadata": {}, + "source": [ + "Let's do the necessary splits" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "id": "b51bf824", + "metadata": {}, + "outputs": [], + "source": [ + "X_train = train.drop([\"Price\"], axis=1)\n", + "y_train = train[\"Price\"]" + ] + }, + { + "cell_type": "markdown", + "id": "7dbd4234", + "metadata": {}, + "source": [ + "Here are the categorical and numerical features that need to be preprocessed" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "id": "9d654fec", + "metadata": {}, + "outputs": [], + "source": [ + "category = ['Neighborhood', 'Type', 'City']\n", + "numerical = ['Bathrooms', 'Bedrooms', 'Toilets']" + ] + }, + { + "cell_type": "markdown", + "id": "8bfc604b", + "metadata": {}, + "source": [ + "Importing tools needed for preprocessing" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "id": "3908790f", + "metadata": {}, + "outputs": [], + "source": [ + "encoder = joblib.load(\"tools/encoder_joblib\")\n", + "imputer = joblib.load(\"tools/imputer_joblib\")\n", + "scaler = joblib.load(\"tools/scaler_joblib\")" + ] + }, + { + "cell_type": "markdown", + "id": "38aa5e22", + "metadata": {}, + "source": [ + "Splitting validation data" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "id": "fea66ea4", + "metadata": {}, + "outputs": [], + "source": [ + "X_val = validation.drop([\"Price\"], axis=1)\n", + "y_val = validation[\"Price\"]" + ] + }, + { + "cell_type": "markdown", + "id": "5096ed5f", + "metadata": {}, + "source": [ + "Here we are preprocessing the validation data so it can be used by the machine learning model" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "id": "7bb35012", + "metadata": {}, + "outputs": [], + "source": [ + "X_val[category] = imputer.transform(X_val[category]) # imputing missing values\n", + "X_val[numerical] = scaler.transform(X_val[numerical]) # scaling numerical values \n", + "X_val = encoder.transform(X_val) # enconding categorical values" + ] + }, + { + "cell_type": "markdown", + "id": "b3a1c6f6", + "metadata": {}, + "source": [ + "## Model Building and Validation" + ] + }, + { + "cell_type": "markdown", + "id": "ae28f59b", + "metadata": {}, + "source": [ + "Lets import the necessary machinne learning models that would be used for fitting the data" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "id": "8e02ac2d", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.ensemble import RandomForestRegressor # Random Forest\n", + "from xgboost import XGBRegressor # XGBoost\n", + "from sklearn.svm import SVR # SVM\n", + "from sklearn.neighbors import KNeighborsRegressor # KNN\n", + "from lightgbm import LGBMRegressor # LightGBM" + ] + }, + { + "cell_type": "markdown", + "id": "fd9791fa", + "metadata": {}, + "source": [ + "### Random Forest" + ] + }, + { + "cell_type": "markdown", + "id": "2552f3d4", + "metadata": {}, + "source": [ + "Here we are initializing the model, then fitting the data and making prediction on the validation data" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "id": "1782488f", + "metadata": {}, + "outputs": [], + "source": [ + "rf = RandomForestRegressor(random_state=51) \n", + "rf.fit(X_train, y_train)\n", + "rf_predictions = rf.predict(X_val)" + ] + }, + { + "cell_type": "markdown", + "id": "6b866e4f", + "metadata": {}, + "source": [ + "### XGBoost" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "id": "ae751344", + "metadata": {}, + "outputs": [], + "source": [ + "xgb = XGBRegressor(random_state=51, n_estimators=10, max_depth=5)\n", + "xgb.fit(X_train, y_train)\n", + "xgb_predictions = xgb.predict(X_val)" + ] + }, + { + "cell_type": "markdown", + "id": "6b866e4f", + "metadata": {}, + "source": [ + "### LightGBM" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "id": "ae751344", + "metadata": {}, + "outputs": [], + "source": [ + "lgb = LGBMRegressor(random_state=51, n_jobs=-1, boosting_type=\"dart\", num_leaves=50, max_depth=7, subsample_for_bin=200, min_child_samples=16)\n", + "lgb.fit(X_train, y_train)\n", + "lgb_predictions = lgb.predict(X_val)" + ] + }, + { + "cell_type": "markdown", + "id": "ee840f2a", + "metadata": {}, + "source": [ + "### SVM" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "id": "8fe3bc32", + "metadata": {}, + "outputs": [], + "source": [ + "svm = SVR()\n", + "svm.fit(X_train, y_train)\n", + "svm_predictions = svm.predict(X_val)" + ] + }, + { + "cell_type": "markdown", + "id": "fc16cc92", + "metadata": {}, + "source": [ + "### KNN" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "f338846d", + "metadata": {}, + "outputs": [], + "source": [ + "knn = KNeighborsRegressor(n_neighbors=16, algorithm=\"ball_tree\")\n", + "knn.fit(X_train, y_train)\n", + "knn_predictions = knn.predict(X_val)" + ] + }, + { + "cell_type": "markdown", + "id": "1b5ca86d", + "metadata": {}, + "source": [ + "### Model Performance on Validation data" + ] + }, + { + "cell_type": "markdown", + "id": "fd011792", + "metadata": {}, + "source": [ + "Here we are checking the performance of the machine learning models on the validation data" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "a90a05f4", + "metadata": {}, + "outputs": [], + "source": [ + "# import MAE metric\n", + "from sklearn.metrics import mean_absolute_error" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "id": "9e101454", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Random Forests: 48.813402195445256\n", + "XGBoost: 45.57799470233001\n", + "LightGBM: 44.631932426370426\n", + "SVM: 65.83482951681282\n", + "KNN: 47.52342858559201\n" + ] + } + ], + "source": [ + "print(f\"Random Forests: {mean_absolute_error(y_val, rf_predictions) / 1e6}\")\n", + "print(f\"XGBoost: {mean_absolute_error(y_val, xgb_predictions) / 1e6}\")\n", + "print(f\"LightGBM: {mean_absolute_error(y_val, lgb_predictions) / 1e6}\")\n", + "print(f\"SVM: {mean_absolute_error(y_val, svm_predictions) / 1e6}\")\n", + "print(f\"KNN: {mean_absolute_error(y_val, knn_predictions) / 1e6}\")" + ] + }, + { + "cell_type": "markdown", + "id": "b908237d", + "metadata": {}, + "source": [ + "## Final Model Building and Prediction on Test Data" + ] + }, + { + "cell_type": "markdown", + "id": "257d59c2", + "metadata": {}, + "source": [ + "### Preprocessing on Test Data" + ] + }, + { + "cell_type": "markdown", + "id": "6eecab2e", + "metadata": {}, + "source": [ + "Merge Train and Validation data to improve performance" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "id": "a1d7828a", + "metadata": {}, + "outputs": [], + "source": [ + "validation = pd.concat([X_val, y_val], axis=1)\n", + "join_df = pd.concat([train, validation]).sample(frac=1)\n", + "X = join_df.drop(\"Price\", axis=1)\n", + "y = join_df[\"Price\"]" + ] + }, + { + "cell_type": "markdown", + "id": "a9621541", + "metadata": {}, + "source": [ + "Data Split" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "id": "17eab90c", + "metadata": {}, + "outputs": [], + "source": [ + "X_train = join_df.drop([\"Price\"], axis=1)\n", + "y_train = join_df[\"Price\"]" + ] + }, + { + "cell_type": "markdown", + "id": "496544dc", + "metadata": {}, + "source": [ + "Preprocessing Test Data" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "id": "06b49f38", + "metadata": {}, + "outputs": [], + "source": [ + "X_test = test.drop([\"Price\"], axis=1)\n", + "y_test = test[\"Price\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "7bb35012", + "metadata": {}, + "outputs": [], + "source": [ + "X_test[category] = imputer.transform(X_test[category])\n", + "X_test[numerical] = scaler.transform(X_test[numerical])\n", + "X_test = encoder.transform(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "fd9791fa", + "metadata": {}, + "source": [ + "### Random Forest" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "id": "1782488f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
RandomForestRegressor(max_depth=10, random_state=51)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "RandomForestRegressor(max_depth=10, random_state=51)" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rf = RandomForestRegressor(random_state=51, max_depth=10)\n", + "rf.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 137, + "id": "485d9703", + "metadata": {}, + "outputs": [], + "source": [ + "rf_predictions = rf.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "6b866e4f", + "metadata": {}, + "source": [ + "### XGBoost" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "id": "ae751344", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
XGBRegressor(base_score=0.5, booster='gbtree', callbacks=None,\n",
+       "             colsample_bylevel=1, colsample_bynode=1, colsample_bytree=1,\n",
+       "             early_stopping_rounds=None, enable_categorical=False,\n",
+       "             eval_metric=None, gamma=0, gpu_id=-1, grow_policy='depthwise',\n",
+       "             importance_type=None, interaction_constraints='',\n",
+       "             learning_rate=0.300000012, max_bin=256, max_cat_to_onehot=4,\n",
+       "             max_delta_step=0, max_depth=5, max_leaves=0, min_child_weight=1,\n",
+       "             missing=nan, monotone_constraints='()', n_estimators=10, n_jobs=0,\n",
+       "             num_parallel_tree=1, predictor='auto', random_state=51,\n",
+       "             reg_alpha=0, reg_lambda=1, ...)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "XGBRegressor(base_score=0.5, booster='gbtree', callbacks=None,\n", + " colsample_bylevel=1, colsample_bynode=1, colsample_bytree=1,\n", + " early_stopping_rounds=None, enable_categorical=False,\n", + " eval_metric=None, gamma=0, gpu_id=-1, grow_policy='depthwise',\n", + " importance_type=None, interaction_constraints='',\n", + " learning_rate=0.300000012, max_bin=256, max_cat_to_onehot=4,\n", + " max_delta_step=0, max_depth=5, max_leaves=0, min_child_weight=1,\n", + " missing=nan, monotone_constraints='()', n_estimators=10, n_jobs=0,\n", + " num_parallel_tree=1, predictor='auto', random_state=51,\n", + " reg_alpha=0, reg_lambda=1, ...)" + ] + }, + "execution_count": 138, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "xgb = XGBRegressor(random_state=51, n_estimators=10, max_depth=5)\n", + "xgb.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "id": "edacef0d", + "metadata": {}, + "outputs": [], + "source": [ + "xgb_predictions = xgb.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "6b866e4f", + "metadata": {}, + "source": [ + "### LightGBM" + ] + }, + { + "cell_type": "code", + "execution_count": 140, + "id": "ae751344", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
LGBMRegressor(boosting_type='dart', max_depth=17, min_child_samples=21,\n",
+       "              n_estimators=160, num_leaves=40, random_state=51,\n",
+       "              subsample_for_bin=200)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "LGBMRegressor(boosting_type='dart', max_depth=17, min_child_samples=21,\n", + " n_estimators=160, num_leaves=40, random_state=51,\n", + " subsample_for_bin=200)" + ] + }, + "execution_count": 140, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lgb = LGBMRegressor(random_state=51, n_jobs=-1, boosting_type=\"dart\", subsample_for_bin=200, num_leaves=40, n_estimators=160, min_child_samples=21, max_depth=17)\n", + "lgb.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 141, + "id": "5b10790a", + "metadata": {}, + "outputs": [], + "source": [ + "lgb_predictions = lgb.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "ee840f2a", + "metadata": {}, + "source": [ + "### SVM" + ] + }, + { + "cell_type": "code", + "execution_count": 146, + "id": "8fe3bc32", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
SVR()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "SVR()" + ] + }, + "execution_count": 146, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "svm = SVR()\n", + "svm.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 147, + "id": "b99efed8", + "metadata": {}, + "outputs": [], + "source": [ + "svm_predictions = svm.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "fc16cc92", + "metadata": {}, + "source": [ + "### KNN" + ] + }, + { + "cell_type": "code", + "execution_count": 144, + "id": "f338846d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
KNeighborsRegressor(algorithm='ball_tree', n_neighbors=16)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "KNeighborsRegressor(algorithm='ball_tree', n_neighbors=16)" + ] + }, + "execution_count": 144, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "knn = KNeighborsRegressor(n_neighbors=16, algorithm=\"ball_tree\")\n", + "knn.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 145, + "id": "deb7dff8", + "metadata": {}, + "outputs": [], + "source": [ + "knn_predictions = knn.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "id": "1b5ca86d", + "metadata": {}, + "source": [ + "### Model Performance on Test data" + ] + }, + { + "cell_type": "markdown", + "id": "6079f63a", + "metadata": {}, + "source": [ + "Here we are checking the performance of the machine learning models on the test data" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "id": "9e101454", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Random Forests: 47.981976310101885\n", + "XGBoost: 47.66071288051751\n", + "LightGBM: 46.281797674950845\n", + "SVM: 68.47029698827649\n", + "KNN: 49.07626288582097\n" + ] + } + ], + "source": [ + "print(f\"Random Forests: {mean_absolute_error(y_test, rf_predictions) / 1e6}\")\n", + "print(f\"XGBoost: {mean_absolute_error(y_test, xgb_predictions) / 1e6}\")\n", + "print(f\"LightGBM: {mean_absolute_error(y_test, lgb_predictions) / 1e6}\")\n", + "print(f\"SVM: {mean_absolute_error(y_test, svm_predictions) / 1e6}\")\n", + "print(f\"KNN: {mean_absolute_error(y_test, knn_predictions) / 1e6}\")" + ] + }, + { + "cell_type": "markdown", + "id": "57f586e6", + "metadata": {}, + "source": [ + "Renaming LightGBM to final model " + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "id": "a91cb736", + "metadata": {}, + "outputs": [], + "source": [ + "model = lgb" + ] + }, + { + "cell_type": "markdown", + "id": "e91c0f73", + "metadata": {}, + "source": [ + "## Case Prediction" + ] + }, + { + "cell_type": "markdown", + "id": "77ad1e06", + "metadata": {}, + "source": [ + "We would create a function to help us perform predictions from new data " + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "id": "1e868e7b", + "metadata": {}, + "outputs": [], + "source": [ + "def predict_house(data):\n", + " test = pd.DataFrame([data])\n", + " category = ['Neighborhood', 'Type', 'City']\n", + " numerical = ['Bathrooms', 'Bedrooms', 'Toilets']\n", + "\n", + " test[category] = imputer.transform(test[category])\n", + " test[numerical] = scaler.transform(test[numerical])\n", + " test = encoder.transform(test)\n", + "\n", + " prediction = model.predict(test)[0]\n", + " \n", + " print(f\"The price of the requested property is {prediction / 1e6:.0f} million naira\")" + ] + }, + { + "cell_type": "markdown", + "id": "e3fb9284", + "metadata": {}, + "source": [ + "Let's assume we want to buy a newly built, serviced, unfurnished detached duplex in Osapa London, Lekki,that has 4 Bedrooms each with bathrooms, and a guest toilet" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "de39c657", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The price of the requested property is 112 million naira\n" + ] + } + ], + "source": [ + "new_input = {\n", + " \"Serviced\" : 1,\n", + " \"Newly Built\" : 1,\n", + " \"Furnished\" : 0,\n", + " \"Bedrooms\" : 4,\n", + " \"Bathrooms\" : 4,\n", + " \"Toilets\" : 5,\n", + " \"Neighborhood\" : \"Osapa London\",\n", + " \"Type\" : \"Detached Duplex\",\n", + " \"City\" : \"Lekki\"\n", + "}\n", + "\n", + "predict_house(new_input)" + ] + }, + { + "cell_type": "markdown", + "id": "5a77d232", + "metadata": {}, + "source": [ + "Semi-Detached House in Banana Island, Ikoyi with 5 bedroom and bathrooms with 6 toilets" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "id": "d978c854", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The price of the requested property is 347 million naira\n" + ] + } + ], + "source": [ + "new_input = {\n", + " \"Serviced\" : 0,\n", + " \"Newly Built\" : 0,\n", + " \"Furnished\" : 0,\n", + " \"Bedrooms\" : 5,\n", + " \"Bathrooms\" : 5,\n", + " \"Toilets\" : 6,\n", + " \"Neighborhood\" : \"Banana Island\",\n", + " \"Type\" : \"Semi Detached Duplex\",\n", + " \"City\" : \"Ikoyi\"\n", + "}\n", + "\n", + "predict_house(new_input)" + ] + }, + { + "cell_type": "markdown", + "id": "aa60d187", + "metadata": {}, + "source": [ + "### Important Features\n", + "We check for the features that are the most important features for determining the house prices\n", + "* Newly built\n", + "* Bedrooms\n", + "* Toilets\n", + "* Bathrooms" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "0e36445c", + "metadata": {}, + "outputs": [], + "source": [ + "importance_df = pd.DataFrame({\n", + " 'feature': X_train.columns,\n", + " 'importance': model.feature_importances_\n", + "}).sort_values('importance', ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "id": "a05ffa33", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
featureimportance
3Bedrooms606
4Bathrooms487
5Toilets460
39Type_Detached Duplex415
1Newly Built407
9Neighborhood_Lekki Phase 1351
18Neighborhood_GRA346
43City_Ikoyi316
13Neighborhood_Ikate302
44City_Victoria Island279
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "3 Bedrooms 606\n", + "4 Bathrooms 487\n", + "5 Toilets 460\n", + "39 Type_Detached Duplex 415\n", + "1 Newly Built 407\n", + "9 Neighborhood_Lekki Phase 1 351\n", + "18 Neighborhood_GRA 346\n", + "43 City_Ikoyi 316\n", + "13 Neighborhood_Ikate 302\n", + "44 City_Victoria Island 279" + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "importance_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "id": "1d3738a4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAtMAAAFJCAYAAABZ4aGJAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABMTElEQVR4nO3deVyU9d7/8deA4AYJCqImGUsmRw+aaWJSrp1ySzM31ClsMTO19JiiQFGKobmUa1Z61HG30G7NFq37VrPcbVFxw1QQFTQUkHWY+f3R7fziFhUncUDfz8fjPB5wXdd8r8/1oePjzZfvfMdgtVqtiIiIiIjITXNydAEiIiIiIuWVwrSIiIiIiJ0UpkVERERE7KQwLSIiIiJiJ4VpERERERE7KUyLiIiIiNhJYVpEpAxKTk7moYceKvbchx9+yNq1a6/7+vj4eF555ZViz/3P//wPH374oe17s9nM/Pnz6datG507d6Zdu3YMGTKE48eP265p164dTz75JN26daNr16507tyZlStXFjnfpEkTLl++fFUdDz74IF9//fVVdezYsYMuXbpc9zlKS1RUFPv377f79UlJSQwbNqzYczNnziQkJIRu3boV+d9vv/1m9/3+br0iUnoqOLoAERG5Oa+//vrfev1vv/3GpUuXbN+PGTOG3NxcFi5ciKenJwDr1q0jPDycr776iqpVqwIwZcoU/vnPfwJw5swZnnzySR5//HFq164NgKenJxs3bqR79+62sdeuXYuXl9ffqrc0/Pjjj/Tp08fu16ekpPD7779f83ynTp1466237B7///q79YpI6VGYFhEpZyIiInjggQd48cUX2bx5M1OmTMHJyYmgoCB+/PFHli1bBkBaWhqDBg3izJkzODs7M3XqVLKyslixYgWFhYW4u7vzxBNP8NNPP/Hdd99RuXJl2z26du3KpUuXyMrKsoXpv7p06RKVK1emSpUqtmNPP/00//Vf/2UL06dPnyY7Oxt/f/8bPlN8fDzffvstFouFlJQUfHx86N27N0uWLOHEiRMMHDiQF154gfj4eL7++usi18XFxeHj48PZs2eJiYnh9OnTWK1WunfvzksvvURycjL9+/cnICCA06dP8/DDD5OamsqoUaOYPHkyVquV999/n/z8fNLS0nj00UeZOHEiycnJhIeH07p1a3755RcyMjJ48803adeuHVFRUZw7d44XX3yR+fPn39TPb+7cubZnvffee3n77bfx8fHh559/LraO6dOnF6l3ypQp9O/fn6eeegoAo9Fo+75Ro0a0b9+eQ4cOMWXKFKpUqUJsbCwXL16ksLAQo9FIz549uXz5MmPHjuXkyZM4OTnRsGFD3n33XZyc9AdrkZulMC0iUk6lp6czevRoFi1aRIMGDVizZg1r1qyxnU9KSmL69OnUq1ePCRMmMH/+fCZOnEjfvn1JT09nxIgRLFy4kIcffrhIkL5iwIABRb4fNWoUlSpVIi8vj5MnTzJo0CCqVatmO9+6dWtWr15NamoqNWvW5IsvvqB79+588803JXqe3bt3s27dOnx8fOjatStffvklixYt4siRI/Tu3Zvw8HAAdu3aRXx8PH5+fkyZMoXY2FhmzJjBqFGjaN++PQMHDiQzM5P+/ftTu3ZtGjduzNmzZ5k6dSrNmjUDYPv27baZ9pEjRzJ8+HBatGjB5cuXad++Pfv378fDw4OkpCRCQ0OJjo7mm2++YeLEiTzxxBNMmDCB8ePHXzNIb9iwgT179ti+f+KJJxg6dChr167lyJEjrF69mgoVKrBy5UqioqL45JNPWLx4cbF1jBgxgnXr1hX5y8C1FBQU0LZtWz788EPMZjPdunVj8uTJNGzYkMzMTPr06UNgYCAnTpzg8uXLfPHFFxQWFvL222+TlJREvXr1SvSzEpH/T2FaRKSc2r17NwEBATRo0ACAZ555hgkTJtjOBwcH28JRUFAQGzduLHYcg8Fg+/r48eOMGDECgMzMTF566SX69esHFF3mkZSURHh4OA888IBt3bOLiwtPPvkk69ev54UXXuCrr77CZDKVOEz/85//tC0ZqVu3LqGhoTg5OeHr60teXh45OTkAtGrVCj8/PwB69+5Nt27dyM7OZu/evSxYsAAAd3d3evTowZYtW2jcuDEVKlSgSZMmxd43Li6OLVu28NFHH3H8+HHy8vLIzs7Gw8MDFxcXWrduDcA//vEPLl68WKJnudYyj//+7//mt99+49lnnwXAYrHYnutaddysK78wnDhxglOnTjFu3DjbudzcXA4ePMhjjz3G9OnTMRqNPProozz//PMK0iJ2UpgWESmnnJ2dsVqtRY799c/0FSr8/3/iDQbDVdcCPPTQQ3z66acUFBTg4uKCv78/X3zxBfDncpIrQe//8vX1pV27duzatavImwi7d+/O22+/TZMmTfDz88PDw6PEz+Pq6lrk+7/W/1fOzs62ry0WC87Ozlgslquez2KxYDabbWNfa7wBAwbw4IMP8thjj9GxY0d++eUX21guLi62nv71lw57WSyWIr+g5Ofn29avX6+O/+uvxwsKCoqcu7L05spSnis/T4Dz58/j7u5OxYoV2bhxIzt27GD79u0MHDiQd999l3bt2v3tZxS522hxlIhIOdW0aVNOnDjBoUOHAPjmm2/IyMi4Yehzdna2hczGjRvTokULRo8ezR9//GG75tixYyQkJBQJrn+VnZ3Nrl27CA4OLnK8cePG5ObmMn36dJ555pm/83jXtH37ds6dOwfAihUraNu2LW5ubjRu3JilS5cCf86qr127lkcffbTYMa70ICMjg99++41Ro0bxr3/9i7Nnz3Lq1CksFst1a3B2dr4qxJZEaGgon332GVlZWcCfO7OMHj36hnX89WdWvXp1284ex44d4/Dhw8Xey8/Pj0qVKtnC9JkzZ+jSpQv79+9n2bJljB07ltDQUN58801CQ0M5ePDgTT+PiGhmWkSkzMrOzr5qe7wVK1bYvvbw8GDatGmMGTMGJycnGjVqRIUKFYpd//xXISEhjBo1ivHjxxMdHc3777/P0qVLGTRoEGazmUuXLlGrVi369etHjx49bK+7smbaYDCQk5NDx44dbcsV/qpbt24sXbqUxx577G92oHg+Pj68+eabpKWlERgYyLvvvgv8uQzl3XffJT4+nvz8fLp27UqPHj04ffr0VWM88cQTvPnmm8TExDBo0CCeeeYZqlSpgo+PD02bNuXkyZP4+vpes4bAwEAqVqxIz549Wb16dYlnrXv16sW5c+fo3bs3BoOB2rVrExcXxz333HPNOlq2bFmk3ldffZWIiAg2b96Mv7+/bVnH/+Xq6sqcOXOIjY3l008/xWw28/rrr/Pwww8TFBTEzp076dSpE5UrV6Z27doYjcYSPYOIFGWwXutvSCIiUqZlZWUxZ84chg0bRuXKlTlw4ACvvPIKW7duvSVLEsqi+Ph4vvnmG+bNm+foUkREAM1Mi4iUW25ubri4uNCzZ08qVKhAhQoV+OCDD+7YIC0iUhZpZlpERERExE56A6KIiIiIiJ0UpkVERERE7KQwLSIiIiJiJ70BURzGarViNl9/L1exj7OzgcJCvR2itKi/pUv9LT3qbelSf0uXo/vr4lL8vvsK0+IwVitcvHjzH5UrN+bhUUW9LUXqb+lSf0uPelu61N/S5ej+enu7F3tcyzxEREREROykrfHEYSwWK05O2g9XRERE7JOTV0BWRu5tude1Zqa1zEMcxsnJwMNvLnZ0GSIiIlJO7Xn/ObK4PWH6WrTMQ0RERETETgrTIiIiIiJ2UpgWEREREbGTwrSIiIiIiJ0UpkVERERE7KQwXU7s2LGDli1bYjQaGTBgAH379iUxMbFEr23VqlUpVyciIiJyd9LWeOVISEgI06dPB+CHH35g8uTJzJs3z8FViYiIiNy9FKbLqYyMDO69914OHz7MhAkTAPDw8GDixIlUqVKF6Ohojh07hq+vL/n5+QBERERw8eJFLl68yLx585g7dy579uwBoEuXLjz//PMkJycTGRmJ2WzGYDAQFRVFgwYNeOKJJ3jooYc4efIkISEhZGZm8uuvv+Ln58f777/Pt99+yyeffEKFChW49957mTx5Mk5O+sOHiIiI3NkUpsuR7du3YzQayc/P5/Dhw8ybN4/o6GgmTpxIYGAgq1ev5tNPP6VJkybk5eWxatUqUlJS+Oabb2xjhISEEB4ezn//93+TnJzMqlWrMJvN9OvXj5CQEGbPno3RaKRDhw4kJCQwbtw44uPjOX36NIsWLcLb25tHHnmE1atXEx0dTfv27cnIyGD9+vWEh4fTuXNn1q5dS1ZWFvfcc48DuyUiIiJS+hSmy5G/LvM4fvw4ffv2JTs7m3feeQeAgoIC/Pz8OHr0KMHBwQDUqVOH2rVr28bw8/MDIDExkWbNmmEwGHBxcaFx48YkJiaSmJhI8+bNAQgKCuLs2bPAn7PederUAaBKlSoEBgYC4O7uTl5eHmPHjmXevHksX74cf39/OnTocBs6IiIiIuJY+jt8OeXl5QXAgw8+yKRJkzCZTLz55pu0bt0af39/fv75ZwDOnTvHuXPnbK8zGAwABAQE2JZ4FBQUsG/fPurVq0dAQAC7d+8GICEhwXafK6+7lpUrVzJs2DCWLFkCwMaNG2/dw4qIiIiUUZqZLkeuLPNwcnLi8uXLREREUL9+fcaMGUNhYSEAsbGx+Pn5sWfPHnr16kWdOnXw9PS8aqy2bduyc+dO+vTpQ0FBAU899RQNGzZk9OjRREdHs2DBAsxmM7GxsSWqLTg4mIEDB+Lh4UHVqlVp06bNrXx0ERERkTLJYLVarY4uQu5eD7+52NEliIiISDm15/3nSEvLvC338vZ2L/a4lnmIiIiIiNhJYVpERERExE4K0yIiIiIidlKYFhERERGxk8K0iIiIiIidFKZFREREROykrfHEYSwWK05O1/8wGBEREZFryckrICsj97bc61pb4+lDW8ShbtfekHcbD48qXLyY7egy7ljqb+lSf0uPelu61N/SVVb7q2UeIiIiIiJ2UpgWEREREbGTwrSIiIiIiJ0UpkVERERE7KTdPMRhrBYLBif9PiciImVXYX4uf1wqKNG1ZfUNcncKR/dXu3lImWNwcuLUu/90dBkiIiLXdN9bvwElC9Nyd9K0oIiIiIiInRSmRURERETspDAtIiIiImInhWkRERERETspTIuIiIiI2ElhWkRERETETgrTZdyOHTto2bIlRqORAQMG0LdvXxITE695/cqVKykoKGDHjh2MGDHiNlYqIiIicvdRmC4HQkJCMJlMLFmyhKFDhzJ58uRrXjtv3jwsFsttrE5ERETk7qUPbSlnMjIyuPfee9m5cyezZs0CIDc3l0mTJrF7927S0tIYMWIEzz//PCdPnuSll17ijz/+oG3btgwbNgyj0YinpycZGRl8/PHHREZGkpSURGFhIQMHDqRTp04cPHiQ8ePH4+zsTMWKFRk/fjwWi4URI0ZQu3ZtkpOT6dy5M0ePHuXgwYO0adOGkSNHsnTpUtauXYuTkxNNmzZlzJgxDu6WiIiISOlSmC4Htm/fjtFoJD8/n8OHDzNv3jyOHj3K+++/j4+PDx999BFff/01r776KnPnzmX69On8/PPP5OXlMWfOHAoLC2nTpg3Dhg0DoGvXrjzxxBMsWbIET09P3n//fbKysujRowchISFERUURGxtLUFAQmzZtIi4ujtGjR5OUlMSCBQvIzc2lffv2bNmyhcqVK9O2bVtGjhxJfHw80dHRNGnShGXLlmE2m6lQQf+JiYiIyJ1LSaccCAkJYfr06QAcP36cvn37MnHiRGJjY6lSpQrnzp2jadOmV73ugQcewNXVFaBIqPXz8wMgMTGRRx99FAA3NzcCAgJISkoiNTWVoKAgAJo3b87UqVMB8PX1xd3dHVdXV7y8vPDw8ADAYDAA8N5777FgwQKmTJlCkyZNsFqtpdANERERkbJDa6bLGS8vLwCioqKY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enVefvllBgwYgMFgoG3btvj4+BR778GDBxMZGcmqVavIyspi6NChVK9enddff52+fftSvXp1KleuXOxrFy5cyIYNG3BycqJChQrMmDGDChUq0LFjR9544w127dpFo0aNirzmk08+ISUlhTp16jBixAjWr18PQIMGDWjZsiVhYWHk5+cTHByMl5cXRqORqKgomjVrRnh4OJs2baJDhw43+2MTERERKTcMVqvV6ugiSssnn3yCp6enbWbaaDQSExNDQECAgysr+9q1a8dXX31V6rt9bH68damOLyIif1/rLZtJS8t0dBllnodHFS5ezHZ0GXcsR/fX29u92ON37Mx0REQE6enpzJw586Zfu3LlStss7F+NHDnStse0iIiIiMgdPTMtZZ9mpkVEyj7NTJeMo2dO73SO7u+1Zqbv2DcgioiIiIiUNoVpERERERE7KUyLiIiIiNhJYVpERERExE537G4eUvZZLRZab9ns6DJEROQGzDm5ji5BpMxSmBaHsWLgvN4dXioc/Y7nO536W7rU39Kj3orcelrmISIiIiJiJ4VpERERERE7KUyLiIiIiNhJn4AoDmO1WDE4GRxdhojIXS8/z8yljBxHl1HuaU166XJ0f6/1CYh6A6I4jMHJwKx/r3N0GSIid72hU7s6ugSRckvLPERERERE7KQwLSIiIiJiJ4VpERERERE7KUyLiIiIiNhJYVpERERExE4K0yIiIiIidlKYLqN27NhBs2bNOHPmjO3YlClTiI+Pt2u8+Ph4pkyZUqL7tmzZEqPRyIABA+jbty+JiYnXvD4tLY2YmBgA2rVrR15eHikpKXz//fd21SkiIiJSnihMl2EuLi6MHTuW2/25OiEhIZhMJpYsWcLQoUOZPHnyNa/19va2hekrtm/fzt69e0u5ShERERHHU5guw0JCQqhWrRpLly696pzJZKJPnz707duXxYsXk56eTrdu3QDYt28fjzzyCIWFhZw9e5YXX3zR9rqVK1cyadIkAAoLC+natSv5+fnXrCEjI4N7770XAKPRaJulXr58OTNnziQ5OZnevXvbri8sLOTjjz9m/fr1fPfdd3+/CSIiIiJlmD4BsYyLiYmhV69ehIaG2o4dO3aMDRs2sGzZMgwGA+Hh4YSGhuLh4cGZM2fYunUrtWrV4sCBA/z222906NDB9trOnTvTo0cPRo0axdatW2nR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LebMmYPJZGLw4MG0aNHCrjpERERE7iTXnOb85JNPSE1N5a233uLtt9+2+waRkZFs374dgAYNGtCyZUvCwsLIz88nODgYHx8f27U9e/YkIiKC/v37U6dOHSpWrHjdsStWrMjLL79MRkYGw4YNw8PDgwkTJjB+/HisVivOzs4lnklv27YtO3fupE+fPhQUFPDUU0/RsGFDRo8eTXR0NAsWLMBsNhMbG0v16tV5/fXX6du3L9WrV6dy5co3HD82NpYPPvgAAD8/P6ZMmcLOnTvp168f2dnZdOjQocge3q+99hq9evWiTZs21z32dzz99NMMGTKEGjVqUKtWLdLT0/H29iYtLY3u3btTpUoVXnjhBVxdXYmMjGTQoEFYrVaqVq3K5MmTb0kNIiIiIuWZwVrSLTdug71795KdnU1oaCgnTpzgpZdeYtOmTY4uS0pR7ICeji5BRORviVzyGWlpmY4uo0Q8PKpw8WK2o8u4Y6m/pcvR/fX2di/2eIl287hdfH19GTlyJLNmzcJsNvPWW285uqQSS0lJYcyYMVcdb968OcOHD3dARSIiIiJS2spUmPb29sZkMjm6DLvUqVOn3NYuIiIiIva54Ye2iIiIiIhI8RSmRURERETspDAtIiIiImInhWkRERERETuVqTcgyt3FYrEQueQzR5chIvK35OfmOboEEXEghWlxIEO52Zu1vHH0Xpx3OvW3dKm/IlKeaJmHiIiIiIidFKZFREREROykMC0iIiIiYieFaRERERERO+kNiOIwBsDb293RZdyx1NvSpf6WrrLcX3O+mfRLOY4uQ0TKCIVpcRiDk4GE2O8dXYaIyE0Jimzn6BJEpAzRMg8RERERETspTIuIiIiI2ElhWkRERETETgrTIiIiIiJ2UpgWEREREbHTXRumd+zYQbNmzThz5ozt2JQpU4iPjy/2+o8//phff/31muMZjUYSExOvuseIESPsqq+48f6OESNGsGPHjute8+WXX9KvXz/69euH0WgkNjaW/Px8ANq1a0f//v0xGo3069eP7t2789tvv9lem5eXR6tWrfj0009vWc0iIiIiZd1dG6YBXFxcGDt2LFar9YbXDho0iODg4NtQlWNs3ryZVatW8dFHH7Fs2TIWL16MwWBg7dq1tmsWLFiAyWRi2bJl/Pvf/2bWrFm2c9988w2dOnVizZo1WCwWBzyBiIiI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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10,5])\n", + "plt.title(\"LightGBM Important Features\")\n", + "sns.barplot(data=importance_df.head(10), x=\"importance\", y=\"feature\");" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "id": "0e36445c", + "metadata": {}, + "outputs": [], + "source": [ + "xgb_df = pd.DataFrame({\n", + " 'feature': X_train.columns,\n", + " 'importance': xgb.feature_importances_\n", + "}).sort_values('importance', ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "a05ffa33", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
featureimportance
3Bedrooms606
4Bathrooms487
5Toilets460
39Type_Detached Duplex415
1Newly Built407
9Neighborhood_Lekki Phase 1351
18Neighborhood_GRA346
43City_Ikoyi316
13Neighborhood_Ikate302
44City_Victoria Island279
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "3 Bedrooms 606\n", + "4 Bathrooms 487\n", + "5 Toilets 460\n", + "39 Type_Detached Duplex 415\n", + "1 Newly Built 407\n", + "9 Neighborhood_Lekki Phase 1 351\n", + "18 Neighborhood_GRA 346\n", + "43 City_Ikoyi 316\n", + "13 Neighborhood_Ikate 302\n", + "44 City_Victoria Island 279" + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "importance_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "id": "1d3738a4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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s3//fsxmMwBWq5WUlJTLxkyfPp3p06dz9uxZHn300ZIvXkRERKQU0NM87mD+/v7s3r0bgKysLA4fPkzt2rWvGFe/fn1atGiBxWLhk08+oWPHjtSuXRuTyYTNZiM/P5+vvvqK6dOn88knn7B27Vp+++23W307IiIiIrecVqbvYL179yYmJoawsDDy8vIYNmwYd9999xXj2rVrx86dO+nXrx/Z2dl06NABDw8PHnzwQaZMmYK/vz933XUX3bt356677qJly5bUqlXLCXckIiIicmuZDMMwnF2E3Llazmzp7BJERKQM2zZ8G2lpmc4uAwBPz0pcuJDt7DJuW87ur69vlSKPa5uHiIiIiIiDFKZFRERERBykMC0iIiIi4iCFaRERERERBylMi4iIiIg4SGFaRERERMRBes60OI3NsLFt+DZnlyEiImVYTn6us0uQO5zCtDiPYSLtbOl4NujtxtnP4rzdqb8lS/0tOeqtyM2nbR4iIiIiIg5SmBYRERERcZDCtIiIiIiIg0yGYRjOLkLuTIbNhslFv8+JiJR21pxc0rMKnF1Gqac96SXL2f319a1S5HG9AVGcxuTiwqbHWju7DBERuY7WmzeBwrRIkbQsKCIiIiLiIIVpEREREREHKUyLiIiIiDhIYVpERERExEEK0yIiIiIiDlKYFhERERFxUJl/NF58fDz79+8nLS2N3Nxc/Pz88PLyYsaMGSVyvQcffJCHHnoIgNzcXFq1asXw4cNxucrzki9cuMCWLVvo2rXrDV2nZcuWbNu27Ybri4iIoG/fvrRo0cJ+bObMmaxbt45q1apRWFhIhQoVGD16NA888MANzZ2QkMCxY8cYPXr0DdclIiIicjsq82E6MjISuHVB76677sJisQBgGAZvvfUWS5cuxWw2Fzn+0KFDfPfddzccpm+28PBwwsLCAEhKSuLVV1/l888/p3z58k6tS0RERKQsK/NhuiiZmZk888wzfP3117i6uvLee+/x4IMPsmzZMurVq8fx48cxDIP3338fX19fpk2bxq5duzAMg/DwcDp27Fis65hMJgYNGsT48eMxm818+eWXLFq0CBcXFx5++GFGjx7NRx99xMGDB1mxYgUPPfQQ8fHx2Gw2MjIyiI6OpmnTpqxatYrly5djs9lo3749w4cPJz8/n9dff52UlBQ8PT2ZMWMGubm5REVFkZ6eDkB0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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10,5])\n", + "plt.title(\"XGBoost Important Features\")\n", + "sns.barplot(data=importance_df.head(10), x=\"importance\", y=\"feature\");" + ] + }, + { + "cell_type": "code", + "execution_count": 130, + "id": "0e36445c", + "metadata": {}, + "outputs": [], + "source": [ + "importance_df = pd.DataFrame({\n", + " 'feature': X_train.columns,\n", + " 'importance': rf.feature_importances_\n", + "}).sort_values('importance', ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "id": "a05ffa33", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
featureimportance
3Bedrooms0.310359
43City_Ikoyi0.280807
9Neighborhood_Lekki Phase 10.062894
39Type_Detached Duplex0.046530
5Toilets0.042742
44City_Victoria Island0.034378
4Bathrooms0.031908
18Neighborhood_GRA0.025592
15Neighborhood_Osapa London0.023718
1Newly Built0.021720
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "3 Bedrooms 0.310359\n", + "43 City_Ikoyi 0.280807\n", + "9 Neighborhood_Lekki Phase 1 0.062894\n", + "39 Type_Detached Duplex 0.046530\n", + "5 Toilets 0.042742\n", + "44 City_Victoria Island 0.034378\n", + "4 Bathrooms 0.031908\n", + "18 Neighborhood_GRA 0.025592\n", + "15 Neighborhood_Osapa London 0.023718\n", + "1 Newly Built 0.021720" + ] + }, + "execution_count": 131, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "importance_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 132, + "id": "1d3738a4", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAtcAAAFJCAYAAABQCgHzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABOC0lEQVR4nO3de0CUZf7//+eAgAdURJA0yRCWYG3RTBLT8rybpplnUcewg5ullq4pKhibYnjOU6Z9dNPxbKJ9NLOyPpuHynNbKYpiHogSNBCRwzDM/P7w2/xyVSAbGNDX4y+473uu+32/ubMXF9fcY7DZbDZEREREROQPc3F2ASIiIiIidwqFaxERERERB1G4FhERERFxEIVrEREREREHUbgWEREREXEQhWsREREREQep4uwCRETuFg888ADBwcG4uLhgMBjIy8vD09OTuLg4/vKXvzjkHDt27GD16tWYTCaHjPdbiYmJxMfH07Bhw+u2jxo1io4dOzr8fL+1cOFCQkJC6NSp0w37OnTowLx58xzWw9L697//zX/+8x9eeeWV2x4jJiaGAQMG8OCDD163PTU1lc6dOxMcHHzd9g4dOtz2+RxRr4iUTOFaRKQcrVixAm9vb/v3y5YtY+rUqaxfv96JVZVeixYtWLJkSbmfd9++fQQFBZX7eYvz3Xffcfny5T80xpdffkn//v1vuq9q1ap88MEHf2j833JEvSJSMoVrEREnsVgs/PTTT9SuXRuAixcvMnnyZC5dukRGRgb33nsvb731FnXr1qVDhw707NmTr776ip9++okePXrw6quvAjBv3jy2bt2Kl5cXjRo1so9/5coV/vnPf3L8+HEMBgOPPfYYY8aMoUqVKvzlL39h6NChfPnll+Tm5jJixAh27NhBcnIy9erV45133qF69eq/63oWLVrEhx9+iKurKwEBAcTGxuLr64vRaKR27dqcPn2ayMhInn76aeLj40lOTqawsJBWrVoxbtw4qlSpwvz58/n0009xc3OjTp06vPnmm3z66ad8//33zJgxA1dXVzp37nzLGkp7XX/+85954YUX2L17N7m5uYwZM4a//vWvpb6Orl27sm7dOoqKiqhZsyZ///vfiYuL4+zZs2RlZVGjRg1mzZpF48aNMRqNNGvWjMOHD/PTTz/RqlUrpkyZwrx580hPT2fs2LHMmDGDpk2blrrXhw8f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qVWrFmvXrqVOnTrk5OSQnp4OwP79++3LUvr168fixYvx8/PD29vbQVcpIiIiUjkoXFdynp6eJCQkEBMTg9FopH///oSEhBAYGGg/5qGHHmLcuHFkZWXRtGlTzp49e1tLNmJiYli+fDlnz55l6tSpjBw5kgEDBvDVV1/x0ksvAdCpUyf27t37u2bFRURERO4UBtuvU5pyV7BarURGRrJs2TI8PT0dPn5eXh6DBw9m48aNuLj8vt/dzr3xF4fXIyIiIsW7b/J3ZGRccWoNXl7VycrKdWoNv4evb81b7tOj+O4i58+fZ8SIEfTv398erEeMGMHly5evO87T05PFixf/7vEPHz7M66+/zquvvvq7g7WIiIjInUAz11JhaOZaRESk/Gnm+vcrbuZa04siIiIiIg6icC0iIiIi4iAK1yIiIiIiDqJwLSIiIiLiIHpDo1QINqsVg54wIiIiUu6KzPn8crnQqTXcSW9o1KP4pEKwYeCik9+pfKepbP9QVRbqa9lQXx1PPS0b6quURFOFIiIiIiIOonAtIiIiIuIgCtciIiIiIg6iNddSMRhsxb45QG5PWfU0z5xPjpPf/CIiIlIRKVxLheBicKH1gtbOLkNKae/IveSgcC0iIvLftCxERERERMRBFK5FRERERBxE4VpERERExEEUrkVEREREHEThWkRERETEQRSuRUREREQcpEzD9b59+2jRogU//fSTfdusWbNITEy85WuWLl3Kt99+e8v9RqORlJSUG84zevTo26rxZuP9EaNHj2bfvn233B8dHc2uXbtKNdbNarvZtvj4eNLS0m44T/fu3TEajRiNRgYOHMjJkydJTU2lX79+pbyaP+a9995j1qxZ5XIuERERkYqgzGeu3dzcmDBhAjabrVTHDxs2jLCwsDKu6s4yadIkGjRocMP21157DZPJhMlk4u9//zvz5s0rl3ry8/MZO3Ysa9asKZfziYiIiFQUZf4hMhEREVitVlavXs3gwYOv22cymdi2bRsGg4GuXbsyZMgQoqOj6dq1K4888gjjxo0jPT2d+vXrc+DAAfbs2QPAokWLuHjxInl5ecyZMweAs2fP8txzz5GZmUlkZCR9+/bl2LFjTJkyBVdXVzw8PJgyZQpWq5Xhw4fj5eXF448/ftPx/P39SUhI4NChQwB069aNZ555htTUVCZNmoTFYsFgMBATE0NISAirV69m48aN+Pr6cunSpdvq0+zZszlw4AA2m42oqCi6dOli3/f555/zr3/9i0WLFt1028svv0xcXByBgYG3HP/y5ctUr14dgF9++YWXXnqJjIwMHnjgAaZOnUpycjIJCQlYrVays7OJiYmhefPmREdHc+7cOQoKCnjuuefo2rUr+/fvZ+7cubi6uuLv788bb7yBm5ub/VwFBQU8/fTTPProo5w+ffq2+iEiIiJSGZXLJzTGxcXRt29f2rRpY9926tQptm/fzpo1azAYDERFRV23f/369TRs2JD58+eTkpJCt27d7Pvatm1Ljx49WLBgATt27CAsLIzCwkIWL16M1WqlR48edOzYkZiYGOLj4wkNDWXnzp0kJCQwbtw4MjIy2LRpE+7u7uzateuG8YKCgkhNTWXDhg1YLBYGDhxIREQEixYtwmg00qlTJ5KSkpg4cSIrVqxg5cqVbN26FYPBQK9evX53f7744gtSU1NZt24dBQUF9OvXj9atr31a4aeffsqBAwdYsmSJPRzfbNvNzJw5k3fffRcXFxfq1avHa6+9htlsJicnhzfffJOaNWvSuXNnLl26xKlTpxg/fjwPPPAAW7duJTExkeDgYPbt28emTZsA2Lt3LzabjdjYWNasWUPdunV566232Lx583VLTWrXrk2bNm2KXf4jIiIicicql3Bdp04dJk6cSHR0NM2bNwcgOTmZtLQ0oqKigGszq+fOnbO/JiUlxT6zHBgYiLe3t33fgw8+CICPjw8XL14EoFmzZri7u9uPT01NJT09ndDQUADCw8OZPXs2AA0bNrQfe7PxUlJSaNGiBQaDATc3N5o2bUpKSgopKSmEh4cDEBoays8//8zp06cJCgqyj3c7S1qSk5M5evQoRqMRAIvFYl9D/dVXX5GTk0OVKv//j+pm227mtddes/fwV6mpqfj7+1O7dm0A6tatS15eHvXq1ePtt9+matWqXL16FU9PTzw9PYmNjSU2NpacnByeeuopfvnlF9LT03n11VeBa0tAfv1FQERERORuV25PC+nQoQMBAQFs3rwZgMaNGxMUFMTKlSsxmUz06tWL4OBg+/HBwcEcOXIEgHPnzpGZmVns+MeOHcNisZCbm0tKSgr33Xcf9erV4/jx4wAcOHCA+++/HwAXl+IvOzAw0L4kpLCwkCNHjtCoUSMCAwM5ePAgAElJSfj4+ODv78+pU6fIz8+nqKiIpKSk392bxo0b07JlS0wmEytWrKBLly40bNgQgMmTJ9OmTRvmz59vP/5m234Pg8Fww7b4+HhGjRrF9OnTCQ4OxmazkZ6eztGjR1m0aBFLly5l5syZ1KxZk3vuuYe3334bk8nEiy++SMuWLW+rDhEREZE7TbnMXP9q0qRJfP311wCEhITQqlUrIiMjMZvNhIWF4efnZz+2T58+REdHM2jQIBo0aICHh0exY3t4ePDCCy+QnZ3NyJEj8fLyYurUqUyZMgWbzYarqyvTpk0rVZ3t27dn//799O/fn8LCQp544gmaNGnCuHHjiI2NZfny5VgsFuLj4/H29uaVV15hwIABeHt7U61atRLHj4+P56233gIgICCAWbNmsX//fgYOHEhubi6dOnXC09PTfvzLL79M3759adeuXbHb/oinnnqKl156ibp163LPPfeQmZmJr68vGRkZPP3001SvXp1nn30Wd3d3Jk2axLBhw7DZbNSoUYMZM2Y4pAYRERGRys5gK+1jPMrZ4cOHyc3NpU2bNpw5c4bnn3+enTt3OrssKUOtF2h5SWWxd+ReMjKuOLsMp/Dyqk5WVq6zy7jjqK+Op56WDfW1bFS2vvr61rzlvnKduf49/P39GTNmDAsXLsRisTB58mRnl1RqaWlpjB8//obt4eHhjBo1ygkViYiIiEh5qLDh2tfXF5PJ5OwybkuDBg0qbe0iIiIicvv08eciIiIiIg6icC0iIiIi4iAK1yIiIiIiDqJwLSIiIiLiIBX2DY1yd7HarOwdudfZZUgp5ZnznV2CiIhIhaRwLRWDzUDGxbvzucllpbI9M1REROROoGUhIiIiIiIOonAtIiIiIuIgCtciIiIiIg6iNddSIRiw4etb09llVEqWvHwycwqdXYaIiIigcC0VhMHFhS8eb+vsMiqltru+AIVrERGRCkHLQkREREREHEThWkRERETEQRSuRUREREQcROFaRERERMRBFK5FRERERBxE4VpERERExEHuqEfxJSQkcPToUTIyMsjPz8ff3586deowf/78Mjnfgw8+yEMPPQRAfn4+bdq0YeTIkbi43Px3lqysLHbv3k337t1/13lat27N3r17f3d9o0ePZsCAAbRs2dK+bcGCBWzbto169epRVFRE1apVGTt2LH/+859/19iJiYmcPn2asWPH/u66RERERO5Ud1S4jo6OBsov+NWuXRuTyQSAzWbj9ddfZ/Xq1RiNxpsef+LECT7//PPfHa4dLSoqisjISABSUlJ4+eWX+eCDD/Dw8HBqXSIiIiKV3R0Vrm/mypUr9OzZk48//hhXV1dmzpzJgw8+yJo1awgICOCHH37AZrMxd+5cfH19mT17NgcOHMBmsxEVFUWXLl1KdR6DwcDQoUOZOHEiRqORjz76iPfeew8XFxcefvhhxo4dyzvvvMPx48dZv349Dz30EAkJCVitVrKzs4mJiaF58+Zs3LiRtWvXYrVa6dixIyNHjsRsNvOPf/yDtLQ0vLy8mD9/Pvn5+UyaNInMzEwAYmJieOCBB1i9ejUbN27E19eXS5culVh3YGAgTZo04dChQxw6dAgfHx8iIyNJSUkhLi4Ok8lE165dadGiBSdPnqR27drMmTPnujFMJhPbtm3DYDDQtWtXhgwZwqhRo2jdujVPPfUUAwcOJD4+/nfPjouIiIhUNnf8muuaNWvy8MMPs2fPHoqKiti1axcdO3YEoHnz5phMJrp06cKSJUv44osvSE1NZd26daxcuZJ33nmH7OzsUp/Lx8eHzMxMsrKyWLBgAe+99x5r167lwoUL7N27lxdffJGIiAj69+/PqVOnGD9+PO+99x5Dhw4lMTGRS5cu8e6777JmzRoSExO5cuUKV69eJTc3l9GjR7N27VpycnJISkrinXfeISIiApPJxJQpU4iLi+PKlSusXLmSDRs28Pbbb1NYWLpP7atbt649pN9Mfn4+3bt3Z+3atTRu3Jj169fb9506dYrt27ezZs0a1qxZw86dOzl9+jRTp07FZDIxbtw4+vfvr2AtIiIid4U7fuYaoG/fvphMJqxWK48++iju7u4AREREANdC9ueff46fnx9Hjx61L+uwWCykpaVRq1atUp3nxx9/5J577uHcuXP88ssvDBs2DICrV69y/vx5AgIC7MfWq1ePt99+m6pVq3L16lU8PT05f/48f/rTn6hatSoAEydOBK4tP2nYsCFwLcDn5eWRnJzM119/zUcffQRAdnY2p0+fJigoyH59YWFhpao7LS2Nv/71r5w+ffqm+6tUqUJ4eLi9V7t27aJZs2YAJCcnk5aWRlRUFACXL1/m3LlzNG7cmKeeeop//etfzJo1q1R1iIiIiFR2d/zMNUCLFi04f/4877//Pn369LFv//777wE4fPgwQUFBNG7cmJYtW2IymVixYgVdunSxh9qSWK1Wli9fzpNPPknDhg2pX78+y5cvx2QyMXjwYJo2bYqLiwtWqxWA+Ph4Ro0axfTp0wkODsZms3Hfffdx+vRpzGYzAKNGjeLChQsYDIYbzte4cWOioqIwmUy89dZbdO/eHX9/f06dOkV+fj5FRUUkJSWVWHdycjKnTp2iWbNmeHh4kJGRAcDRo0ftx1gsFo4fPw7AoUOHCAoKuq6OoKAgVq5ciclkolevXgQHB3P+/Hk+/PBDjEYj06dPL1UPRURERCq7u2LmGqB79+7s2LGDP/3pT/Ztmzdv5r333qNatWrMmDEDLy8v9u/fz8CBA8nNzaVTp054enrecszLly9jNBoxGAxYLBYeffRR+vTpg8FgICoqCqPRSFFREffeey9dunQhOzub5ORk3nvvPZ566ileeukl6tatyz333ENmZibe3t688MILDB48GIPBQPv27fHz87vpuV988UUmTZrEhg0byMnJYcSIEXh7e/PKK68wYMAAvL29qVat2k1f+95777F9+3ZcXFyoUqUK8+fPp0qVKnTp0oVXX32VAwcO8OCDD173mnfffZe0tDQaNGjA6NGj2bZtGwAhISG0atWKyMhIzGYzYWFh+Pj4YDQaiYmJoUWLFkRFRbFz5046der0e39sIiIiIpWKwWaz2ZxdRHl49913qVOnjn3m2mg0EhcXR2BgoJMrq/g6dOjARx99VOZPE/ni8bZlOv6dqu2uL8jIuHLDdi+v6mRl5Tqhojub+lo21FfHU0/LhvpaNipbX319a95y310xcx0dHU1mZiYLFiz43a9dv369fZb2t8aMGWN/xrWIiIiICNxFM9dS8Wnm+vZo5rp8qa9lQ311PPW0bKivZaOy9bW4meu74g2NIiIiIiLlQeFaRERERMRBFK5FRERERBxE4VpERERExEHuiqeFSMVns1ppu+sLZ5dRKVny8p1dgoiIiPw/CtdSIdgwcPEmT7wQERERqUy0LERERERExEEUrkVEREREHEThWkRERETEQbTmWioEA8V/2pGAucDC5ew8Z5chIiIixVC4lgrB4GJg4T+2OruMCm3E7O7OLkFERERKoGUhIiIiIiIOonAtIiIiIuIgCtciIiIiIg6icC0iIiIi4iAK1yIiIiIiDqJwLSIiIiLiIHoU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FuLj4/H29uaVV15hwIABeHt7U61atWLH7tixIxaLhZdeegmAq1evEhISwvTp02841sXFhfj4eAYNGkStWrVo0qQJXl5e9v29evWiR48evPrqqyWeV0RERKSyM9hK83gMuanDhw+Tm5tLmzZtOHPmDM8//zw7d+50dlmVVlxcnLNLKLW4uDgyMq6UfKATeXlVJysr19ll3HHU17Khvjqeelo21NeyUdn66utb85b7NHP9B/j7+zNmzBgWLlyIxWJh8uTJzi6p1NLS0uxvQvyt8PBwRo0a5YSKRERERCo/hes/wNfXF5PJ5OwybkuDBg0qbe0iIiIiFZXe0CgiIiIi4iAK1yIiIiIiDqJwLSIiIiLiIArXIiIiIiIOojc0SoVgtVor1aP4zGazs0sQERGRCkjhWioIQ4V/brSIiIhISbQsRERERETEQRSuRUREREQcROFaRERERMRBtOZaKgSDwYavb01nl3FLhYX5ZGUVOrsMERERqeAUrqVCMBhc2LDxEWeXcUv9+u4HFK5FRESkeFoWIiIiIiLiIArXIiIiIiIOonAtIiIiIuIgCtciIiIiIg6icC0iIiIi4iAK1yIiIiIiDuLwcL1v3z5atGjBTz/9ZN82a9YsEhMTb/mapUuX8u23395yv9FoJCUl5YbzjB49+rZqvNl4f8To0aPZt29fscd89NFHDBo0CKPRSGRkJFu2bHHY+UvyR3p1M7t27SI6Otph44mIiIjcKcrkOddubm5MmDCBf/3rXxgMhhKPHzZsWFmUUWHs2bOHdevW8c4771CzZk3y8/MZNWoUHh4edOnSxdnliYiIiIiDlEm4joiIwGq1snr1agYPHnzdPpPJxLZt2zAYDHTt2pUhQ4YQHR1N165deeSRRxg3bhzp6enUr1+fAwcOsGfPHgAWLVrExYsXycvLY86cOQCcPXuW5557jszMTCIjI+nbty/Hjh1jypQpuLq64uHhwZQpU7BarQwfPhwvLy8ef/zxm47n7+9PQkIChw4dAqBbt24888wzpKamMmnSJCwWCwaDgZiYGEJCQli9ejUbN27E19eXS5cuFdsPk8nE2LFjqVnz2icQVq1alfHjx/P666/TpUsXoqOjOXfuHAUFBTz33HN07dqVHTt2sHr1avsY8+bN4+TJk7zzzju4uLiQkZFB//79GTRoEPv372fhwoUA5OfnM336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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=[10,5])\n", + "plt.title(\"Random Forest Important Features\")\n", + "sns.barplot(data=importance_df.head(10), x=\"importance\", y=\"feature\");" + ] + }, + { + "cell_type": "markdown", + "id": "1e6e2ee6", + "metadata": {}, + "source": [ + "## Save Model" + ] + }, + { + "cell_type": "markdown", + "id": "bb8b9c8b", + "metadata": {}, + "source": [ + "Saving the model for model deployment" + ] + }, + { + "cell_type": "code", + "execution_count": 133, + "id": "ec1dcdbe", + "metadata": {}, + "outputs": [], + "source": [ + "import joblib" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "id": "93cf2afb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['tools/model_joblib']" + ] + }, + "execution_count": 135, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# joblib.dump(model, \"tools/model_joblib\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.12 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "vscode": { + "interpreter": { + "hash": "397fa5c989aefacd265b089cd9fa90a007575229207dba4eead3a1aa550249df" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Plots/app.png b/Plots/app.png new file mode 100644 index 0000000000000000000000000000000000000000..f0bbffe15d6226630c60102538bb3f2ac4cef914 GIT binary patch literal 115245 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≪y1rjHRs6N5|IXLjvLsq#G_ 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

1ml}WOF=^uod%V zvzRYVX}u1ozI`l3^qUj5>D-7Q-PO`xTe~*AdGTIp2M@W(l^Bgrv6PZ4Qo>dpgz;7p<$P zF&`{oJw0j26zTv(USa>*z7k5LoPs}cpTl;)Wf*yI(`(pk27UPQ-44B0=Z5liwbL}4 z37hk)8%m)3g@U?;9x<*R8P845@EfYjrFB?SGf3*M&^Rphft=c~5#cFQ*mAl!WVOjs zGW4BdK5X%t1g|*pReInVdc1;E=xJgqCE_!v@X&EEMV-{=UZZh;X)~nLO6&cXje~@; za(Wbm)&{HThU{q8RP6A4IMcHd~VP?=^7Ih z=TjGq>?hyM?#)L8P8|n_b)2B{h4E^+AB7-4u9?S%-;bNcPegw2#Q(fSTwWF~fZsbN z*~Lnxrss@+yZe~NV*1~MS#qniaVQ{(7}(ZnZ^_&K$gXE9hnmLqT<^r<^Ta-Py74Zn zYfq7!C5I+Iq$y8&@2#k&KoO@nEuU@%!XLTv0MpXey^vj02Xn>(KA#&6kY(jG-?o?i zC9i=y?Zwk2`9P9C@rbNbICYRwS@Qa$6!Yq91dRX)?yaNj8D1F&o*C!~qo8bg%Rrt2 z@t=a2+W!&7pPy1U5I0d;#FQA_m6#2BEa@56E+U=Ko`f1Si&$QS=&%w|G*FZZw2#YF z?-mF+K5941pr6VpYGE?)loV)7g5TyJ0;#e$pr%(cl3>@4W_sL+>L|lm zV(7hMBkg2hU8D#ww_Y3k)&NA!9;O{KEK9c;5~DyabwYE*r7Kfz6I^{D`lkJq_Gndw zUDf>VH0@n-2nk3kl0c!?LSPjA`oTer0T49SeY9fVwiy=;@#=UM4Y1fm2JvY4__XwV zSaeF~4eg1N4hNa!(_1YZ3fPav6f}&!Eq~)J=HWCe1E^t4Y=zD#=xG3clydpA_w`%` z7ERQ61MDwBW+gtHG)tAGX}HF2B%6$k$;Q6F9BD2KidjI8pp=0ZAJxLTNe}7fs(=AM zQzkUGaDOKKZT_SEYZ_RSfLvCJj_FdQmM-LBj2@ABN`|hGZJs7cMcQ#9X*v4PmIJgS z9=)nIs};?=IIq9hgH`(5%AR{W&HQO-C&9$BArD(-H#ZwmXZic6eN1weXx4)hv1{e1fI%e+KRFq~q~YZ`Z8?1iZL2Lk-M* zF@o=h5kvUu;gzI8g)C2_=wL1LUn_wG28>7+*DL-$Cq=>Q*6_qLO&RBV*_-%rGM}wA z(B{bLyMjcNWJ7=9-EixIg;x*9J85U<=F(vcEn7cbwD+e?(Ez$g4k+)Mg5uJ03We^v z2wBb-|MAc~zWUcoAxr=?dRZ5H%)ylIAVZJSUr2bD@ElfV?MXi^#5?*VMO?Ewo@wD<2GL}ga7odRao#(T4 zs1~`nEwKW`r-0ewcL;;z=w8cYvM2SlS*J#{^oLQycp7oa-h@c&%`bFT&T=$$EsjSy zFrgD#e#BlwzXAes{wGq2>)dg-qIRl`VP0s*r2sSf{-EVU6JJlDi~k*01yogJ^DKkK34mO~ zlIYYQ+j}LDg*l!kY!bK=-(!|@6r<)yHg{T*Cc#j*fHV$#OTiIdiKSk>bk-f$sJ*;F zE}6RMFEA1;VHU84Q4QvV>;52~$t_ADp<4|;HUc}+n;4^i5@e=%Jh(C7@_#zTe}m93 zBmi8VTA7YGW1#oFq9WcTcKASy)xo8bTOuB0PNR5D9@8JCf{b4-=9DzZx^mVTknm9^ zG%5As=Dzk?Gs`mFyC(TOl`$}iEyuzaZoK%Cg_xXS{xJ@r*k@UDRs8viO~~}8g72LJ zr|%AZC`RJ_?sjg$<>nCqc{I8lJ1F>+i%>#)3kw15dvEJI={@@4B;PN~j z=>gE~2VpiF6>QU$G2Z`#>*(jyL*H!X6Xa5K?!6Ma?w`SJZ*R8bR=d;*+TPqiGASeC zb`QGMJEAaJ#wPhg%krBhq^G_qykO*KKm!eiuY9!h?~l?+B@n*r4fR}Xb{!(zF@Lhg zYM(8$!SgQk?OmIf6FVHsLpkF9H$*;z0$8^Z8MVjBy|6QPam{WOXvT}EXGylY>ou~9 z?xG&b?VO8l7QBQ)$RG^t{d&h76@&y_*`y5_m^r>VupIX8Te->og)#GC0$#hern+uvpC6Y)bu?Wtf=pfR#lc)F(zcV65r}Pdg2L+%QgbW zt-hS{WR$jNGy7&AZfX5{U9FkgG?ufeLo93fg1iIPf!wc=4-SG{ZXX)f2qS(Q!iY|Y z8|;Te=`M+grGUt0cgq9@B*g8!7WUA)aR%!03C!lub;s+H0@hU;ALn7C(#hCfNr=q{ za)!V!viby=TXt-td%3P6hH}nx5$^4fdZHur#NVn;XB$Ywb~n4w%%Llb*JZAk6WS8@ zM*v;`4N4gt*`}ag-}gDVMpjv2>$WWC=MnF#jlZiL^WUr7a?SRz8*FZUUZ|Wd_jFgz zQ#~ey5gu)Z0s1YY(mp`1gmFmo07B;Q4 z4aT1z&K9OQSL9enmJ2ZaWoDf3?_snCFY!Tyye5_k^n#e&CuI-Fwp~ zu}C$@0+%#=Ka|q}aW*X(2iKG5i+iL~ojYIc1mgi8{b_MiSTA87$bc{8z?GQbKw6dd z1-ypTBgMFlpFs}3tfZZzCzq7^$X`v60IlJ64Vc%^b-mP+)89>+{C(er;GDF@qQ(cJ zoSsJU+VI(Tf4A?sjQ?wW2?67!(ueX*Y5ovR7~)xzzi!5gGcepTQgJ_2HD7lf=co^Q z3$?n@r}`b{9i`P~SIn^P=zlt#+9FBw4iP9B^{redG8{Z0LKkpO9_KB+nr(}rXlGYp z(){@d*$zI82fP%O{^9X02~ts*06)5p*?WhCvtgEt^`jFM9t{J|%=2Oh%H-Z^u z!ZUCoNn0A)@<`uy-g(OFJ%_E9D}_@_`mJ}&K|H_aKD+8U7!x3_rRo-Y#W}cU)Y6&G z&^F9lit)W=fu7MZRNbp3ui^9~b^$>F@5yQ_U-I2v$GkeecEyt$Pv`HyHFbr5qo%s& z8&vUxPhd^-aYBmGM4x#c-ZM!Y{8HbyY)WTkW`zykQPXl_u~xR_W29V881OCQkAxYpByif zPQLnUWQx7Q=%pGZA6jQTcx&{!Tb~$r=tGuLm4fV${Ed2`a?>CZ=-ax4xN_JGTma&4 ziFJT^WOm2Rta-O_-GQ39lFaH{Iyid);5`LPZ>g3umUbk1pbIS3R(l;3cqDE3oUb^z z!WP04sOGI7BXOX0Za5XpkAN5N3g+Vpv@71TY5F@zG6$Yf0K-0fr~WGR2f|cA-Tw0( zBlV_HHSNwR6V&R>5*k1r&IIAnG7N^krt*1%n!(+BRU5?@zj&oy`%9_R{*CXZR(j`9 z&WIoJT4h3>_E$?VLc@T#X}%mKah72snF4;{%9VMAlny42`Re~8)*wP_@DquJDFso9 zPMe6l*8<5-T2xN~Ad0BqAe;D^9K~X>e7a2ng9$sWz8IEgk-B;_owDt#Uc=xp(yGYLMY zcxR(wjaxChjp*aROC_^!p~oB@-R5*HSl-Jp&efbwOgle~k?HcyKl48OLjc$rQ5-@4 zYRR(sXPK<4hQ5;LrnCbO;itQ5zJ^E}S)fQ6=wpjqQ;h@afJSzc5<66__1Cit77 z_%)MSmJimdi5vc9pCk#3^Vu-txJ9h_LzmFLo^S?H!v^CVDd<;UY8Kr`Fx;eY(5Yd$ z>FnLbqmKu$v1>mwPkrK7&Eh-_0h3Z2pYf*bhz7hqM7*>We+LMPvtwO#Zcv<@Ljvd} z8$RI{W#3>(;HF_fJiB3f5=qW?WA*HVJSAxtVgZAm%35CTTn z1bir{r{TDc)PINo|2cO`KYCfHu7oxbg&4L5QH>P^t&RNW68`5Lbbp5A@&b1;NghkWl(`)y}mv!Bq&X$^>oBC%O z-N)1Zpp)B2zx`SYpU0MpsHS-f8%j=F^X$7PaYKo}+a0I>HtUyDIXZ|RuybhX=|!;L zfr`58aemFyl}H=pRoY68?@Kg#K~s1R`u^y9S50bJXRTGhlWn#zk>0HcuM3|pnI ziwIvp+4?bw#VWeGy7@-03hv3d|CFjmB-##FRpb2NmL=y>zWmM^X&pxlLs9>1SH!Y^{*sMyf&(Dk8tZp%Ad{a3a<&kntNPix;4N=b;2DXUSqFxt=r2u5B_%f-rW2a+%B1d8PWn=VMPiVI zcaqfcqMU-_>q4MW_`Ok3?=$kD^@66ywR*eYWtzoBrPR|PF51Kl7K@sghk<$M&{~4) z?(SIAq6@l?Fe6I<9;Z|=iFe{;N%q;qNV;t+iREp=1o`>=j9k|P*P|z6fmV8(AkLK2 zzS4ZeDA$)WsFG~kM(&nw*ps$w1<$JRjLk=oFFr`Ewyz^vB09x%K19x2l{ssTCISY^ zV5p2iL|17+4;Q0kPtGQdAfno6b9(6Y@lQnS zsiFFQGVdZe#YP0#8-tNQ3)2Lk+WJm+bHjb-{={CZxWC8M1k?A(%v(u`5RNUE^%#GryLa(Qnq z>7~82u{@`wUfT$1rh7sm!oKEf*~O{AE+_o_M~Q_)v8&E5;;>QTjOF3F01sAWcX>&9 zx&0p5z`QnIshvL2B+?&56^3`6mftFg*9w;IQOpgB;psfOFfeZm+hv)Mj9Ll19u1r9 z)@HBlIli#tjX$S--sAAu?Y%xrvO6I;30x{?7BMKqzcV(aij4@iSr zku|qNlb?!!5LtVYHzuPVs!uO>_HxXoc z@^dj)SNghk*%24J{eq=QK@5%E>$8$ec87J{RBo6a)_6Fy5lWhvW7@yAboomcCINMaP|VrA7SKb_l^AV zm(8mh*HdxYd+I0UUwfgXf|lGj^Ne>XjcoVBWmAsZw17m#_(;obqSKy7IiYQjq|_tX z^s5KnSZ}H)(fjZhzW?`F*5PY$Xo{6pzAx;SHfwSCDzM`@rVgEC#(yq1l?ShYix|UDcnRUV(UtdIErC#`)dsL!r3F6<-z^o00rx9C?FyvO3(zHwOR(1MehFfW|Mt`JwV zk-9oDxa5!Z*{1iBrX6}ER(4X_iS^DiCB0|llS?z=JdY6+zQOw{173;YPt<|kmVB}J zP0iJn`@NEy^S&yGP3Uc=4)Vf|2a)!BboDC!3c-VU}oT>Hz8@jEha6sO?d07VVH@Ha0_MB zN3LvAl01&Hv!5({<-5!+h&KBF^Z1I@X_Jsu!6PsASwQu#^=x;_kz zou_R=VH{Y-8i5GOsujEF(f~e|xMWA8D2|lLg_V~Jk*_Ul;QKDQyC$4C@u^?w2b}fz zVDq;ik(O{oyfw+LLo%0sjm_xdizh{pqWi=hO$nG-UXI0$(a!z!MlZRRELSR+BR+Bs zZ4hgQ`^cy^5mi7)C{LC%>=Vyq$?yR)!(izKikVj z23Ujo6M=z-Nq4=e=I4TctBl+NNP1DbTVq-ZO*pHvw&aR(RssP)UZ?b#fU2fgRt}|sYF}XmA zq>_wA0k~@gSW@IPO{4b?VqcBUxyDoTlWvts4(PPTQ}G)cno^1Wb{JiCrRbrLDdcv* zRy(B*V=-I%s4WYvzmtMad6rM6H({A~3Lr2lBz23l%tQGKcpnsQX1N&bW6mNPUwy-aO$t_kow z(#ihc4URA#FrgX6d-eGRt>0eIGBE zxj>hjKTVCNk-JPsIsf?m-T~h%1|98 z3(wz-5+A6-z}@hIQ{2*NGajDApBJ<~pB~P7eNI3i%l;?1y35qJQNQ^~k;|?(dy!=G z=B~R_akEj-&Msv=jvMTFolQm952!v7bx_htNaYN>;@O@Kovu`-H~Zt}P{Z(#!bT=e zFy)k@39plwc>TIDz9D^7i<;v&g#DH+z$nb^&R@|gb#!@i;HL3#N)dWE$IeAoL!a@}Ct-KhZ_-348%PA%0E<9#X$_OI@ z2+OcBBM@IZbp9b^+a_jCxr|e_l##$ZRG#)frmO`oe`p3yI3aQ6JrHY7$bHjr;ySED(m3Jbn{57San0VMB)sWpFh zsfcQ%*T_&mMCPSw`Y7@eTj?0B#`ykVJGE{ng{RU3vfB1n z!MCq&rPEz?Xv6@ApE7f0x2kGE4;0G_tKkQ+j&;$c$9ECW5Q@H$??(th->AVUqDsxi zk*Q<3PolSh83!7!x7JHwaO8k-fCTp-GXwa0q*M~I)K9z2`|JHow1(CCzGlkD-nT7_ zSm_s|=)>*|PnK)rSbjo!~wu=mocG}d$~k8bRv3U!?_4HuPv8&3WQve zcri5`AVq0h8KnJX{_>vlFE=?t%^S!v#6VYP4!=9M*?cXCu#E63-_KK)|vAI|guS@$bqeWYAoUY~a zv@2S0x$gkQx&_<;TvCtAco+R7zI?uUR2WT)L ztX`*`ra?@~^RvpPcP(ynD`~@Hgs z4pAt~91!3)98xYoTo}y8{+VfjJe=R(c-_4UI3KrjUD~rG_dKjkZ($_5yErUVT5`z` z#(>?A;2TYQpNF$3K z6eHjV&+9C*`7DX9Hw(;d(Lg4tS0;_=x9JVfQaTs zVWDHFSIQ!lE2k1q(1^xNI0j53zkKX4x%YOa|#1==#o69dcqd`{&` zy=BwMKSBC`-a$z)5qU_H9@CuPe&vV$=wA4R3o#`NeVt6oPGV|zi<3@mX5C=*cK`C4 z8r_|+nVP);C-z*Q@_Tf5YUpOQs~6~MK8QYO{0G(BT>RBccw{dQ$k3_wf_sM8?Fl)6 z_1YM>BMX7po_2uKyD3d-rhd!$QYlOX1~#?j*q&|Htb{R{K$dz*4)Jmg4U^$7^9G=T)(qL(bc*4~ z^L4~X2(f_b0^Q?Y(0m^~{6}MXAt!lS-g#$r z{KX5%FB=o;nGQjz9cawhximtgP;%m7a9gEWsL_&6Yqf~vW0jS4gL&&nxND%1Q84K-9^*w;o|h(MY<6x1}mHNWZjB(;&jSTNjkY?p(aK zK&Qn@vr^#Q3JFipx--!fCyT5Y@Gb@r=&T?l)Y0w=8(L@F6A%lkpi*cocaqcwmqX`% zJM|ht>z@-J|KeXq1Lu5fmqp_JK@>gg_xdsdG`D9D>$LGy!l>gx?T9g4kr?gz)#MYeT-;g(pITI-I9TKmxc@3`*L39_IwRTk%M! z4BqiV1ZSWEZw9lQ9xbh3QM{w-eD{N0?$oVk#@l>g#d^QP<1_|OGHRSujPXpR>;;C} z!D1ZbK6>Yoc+|Uy9Cv0<;qLBP6WZ=$w~By>(mtFNlxTNC6NTX&FpUPN&OF;8;(Sbl ze)}T{nbnJXjJc)Po@W=$HXRDpgP4xt@i(LpQoNI(aAd>HmgW~B*^izKvYPg zjF_}O?JcJp4;c(Wt|JuK7rR)0TxlnN8fQYUq6C&Hg_Vng&ypss`A$}=++LMDyTKlr z+oOru#^4cgI&Y6W*j?yO*f7Z)p&u-yRHIYzi5&?uhDT- zO58kShiO=)i|A`yaJNj7?9ZySeE7IDzeJ2H^P$0gQ>yj77ShajeFgb?3@_wVT?86V zlH|0|!ni1OKP$X9l|V4(0g3oKcO~-gmy&VdKz7jm*Q}#4@%r!Togl;B;_pgk3DB{% z&4vLcX$eH)!d(l$uv{{e=!+o)gsA!+xx?YshTgoGX=5iLgIA176<_mI7b2JUwhVV` zQOBHw7rrdz|oyPkEu#FFy~;#VJa2<3K^Gk%Yb zt6-a_HDD3PtctTB(lJd}=^}L|?SZ;0tFd_l<0vIYN|<~~7YpQI_+X9S6ojMS;w;zI z>@gGbhu47SB&v)fiBameNI=_M*N{KiJEm$9j7Pa_u(3zYRld{*uglQ;-@Q#==U?!p z?6h1hx*-~o$fJJ{jB>IN$d^sDsAnmHtwsH8vqfYT@?~`W(y)FIQE+xyeD%j9iH3ft zbRR*{OCtigo+26AvYNIygBBD*@Ut@QjrtcaRKV*p^xMh7b@?67i?yUJ7LBfc|5;DC zlP`cW_KT|oFZsS8veH+xNu#ivb)>Viv(O92VB~PS36Xq0TO~$AlQ`AZHVYf8P>`*0 zx8ES!D+3O#paGQWw9~gh_LN`qXdIHlmceqQ8HKuDs4r(gV0k`h>nh&6lMbj4D<#S= z-L)X=kl9=W_opIF;2K@X8RVr;i=WkOWLWfAft!*uyHmNW36uaC?ox(5QfWJ1S1lx3yM4{M`<9URqc10D8LMhV(M^aG(O)uk<8X-Cuw{y9HLtl;1+)8Zg`Ra! z6NAVtq6Q)D+NF2yr_2nA9b<}=;s=}%>qcBXG9io9CGPFH=t?B#leI{Sy4~&H1x*zu z5__WslZ7yeBz#Z9VgfHlcXCDNT% zKlh!Lg(xPb?B^)AoM+r0O4j|*x@PTMZ~7fDt&d*G=kLtIv~F%NR)@mi=$eMD{;1Od zX=*DpqxyXw{YsT>6LncD8Ojgm9D7L85TIB+`fP+-biywgrbp}PFS*49l(3<1tQCj; zS1Pmm(W7<9g@vj4y^v`wS@Q~cBVCuf!S6;>&&!uix@~mNzQ1WD?7V2hq~Ff6fb(%| zV6f<4KV=i_A(9`76&K@cmdlmYmE`=qXn$nfFV=B+OEa(VBhW2mQExJJQ+nu<(m$$j zZeBRi&jv`Zv-T&j{_2b^EF>!C%c!~WC@w^Lbt-KQmybogF0TabzdLJ$4kEHps}0F~|H9-| zJXO(IPTIYS>$>bqp~oO7$7E-5b?HGa4(#c0pA_+SWlS9fV6R=E^vHES^(X|q?#1E* zBRe94_E{Rcdi(?%a@(RyYZW&vY!dX|e*08@NYD{TQmk%_NrsqROV&fM?hvv6+lfG( zXgg#H)1hWHE74hK#G?8{gn`Gr>m3|y<-HnF80)oB^%yZo1H)D41ur*R%`b5LEEsZ} zyfuZ?dGyQ?k>R`f@o=gEtGV;ZRlubAZRkE+jUgAS(@m~0YOm%6s~Go}l?`Rs|5tfm z85GyjwF?A-y9I&-2+m*ug1fuhAcF=O+&#EM5-b6NI}8jqxCfVk;BG+!1Sdi7ob#Rc zee2$;`{S!y->=&>zh-x>-MxEt?|$}L{X8jP0ai#qs{?wM%Isx5CACfLDgP6#xbacw zaq2t6eTyo?1_Bk>H==K>d3H73EvsgRt(Ib8y#;O#%WPwBfblVGLamr!jo*TxlS~4X zW#_W~e!&xq#Dnx;K|-={4^%tbH=VuG@IDp-WVMWY9={Pw4!8AK;*VN_Eq&-0yTYJf z#k`7q#xt_N2{k`=PdpJwbIMw+Grb*qbKPB=s;r3kQEJz^wUDZI;B5q6GE%LyQ^tee zGO%^UO6tVY=XazZF0=DJm*bZcRNVO@-1pq^nKYp?X#W=|tcBf&9-Z# z{>D2eX&~~A!Uk-GtP*8=N>;N%vs{as80n>sWAhQVoaZ+RuzO?l>=FZNAs9_D^wSVE zw`l`TPW0jx2<*l?ILMSEm^noYD_gZs(#i29Ae%mRhTBTOR$~)(}=-a%=AoTXc zPye#eeIrY@q=)kvXIu7r()S3Kql>yy@6`z6gUg4NYAGd*#QH^SsOPvDs)C99By9F` z;}F^%u|wV@l!qG4fHETq815#1^g8ee0%`)F*jReex=u#uF*?gzPO{zK0adDmeDN|0 zC;H}lsNSSI%b@@<=_kbxtP*@|7ka$-eeq``MVI>aPw`kUA?Rh&oX@$870l%WT6d9KniW&K_faB zLOd6_o2OPTt-#YW*C2P=qKQVK21O`bxUDTyl06dg)ut7mefJJ*vJ)c`@zhKk?Cu+& zc+77hu(#7LO)U`RBp4kF`mnH&Fyxf<*{TaYR?pI|jH6&l(0AhPKvc87-QtC1hfP`` zD=S92K)^@U8xZiK_|G2HGM~ZQj5E}*Pf5efnb`|rwGWiuEt5~N*Xv5BoxX9CVUhBP> zbCT-sFRXe|mB>*hc1WeKIL8(g&k7dj%aUA$}G+ceU zohUdSxblpPWQXnXRe9btkoSDj*G`Zm_uw#j8CJkV!AHq>SSJJh?kj}1TagdJ2wx>a z2Pbic#hjFCsc5CUl90ty5q?<1`&#!xBqOWWSp(&;pRKi8DnJXT9Wn;JwWj%zseRO7 zj1rya*)X!;#aQtviFm(l1GI!-%lPP?dOJ^Aiv8ogDE{N_#fGOKI<;xd#2I zCs9S@ENh=&zEZLAROlE(7IXoCGK1}z>r7JX6oJ^xS2bh0>tB~p9eEqarXiOT{9Gc~ zwTUcWvnV5G%{wlD%Wk|f}|W?{hYxtGsgU=__U@jVug51$%Ak?`n> zQGuj_N>ED}C(-QDB5Ne28m0)hM+vjE3NSMGM7xPz+!c3s=|on$7?sTiPXKO=v_52f z_>Qr)!JXvm&0yedLIgQX`|<3w=w6Hg^EYN)TjO}l0+eVsn2yC!Cy&o?J^27Y{}5O5 zX;+tj3TpBrdGcJp?4X{`od!S*%I45LwnoLk0UXv#MY$BW!Jr-&SiV z_}S_;#4zT=yYRav+v{IJ-JvqSe~%7x3pB|a8Br(?57^HA{#`kYA?oVe?St}ffso0> z?sVP!u=a$!Z#~ojTa_QZW(ecG2cBQMu+=rKKWgq~ggN1b2@pbSziEo3?h$B5d-VLwu}FI8%I z6w16WbT({%L#aj$c6=FXYeXM-1b{vUvi>k;RI?-@D5dG1@e5_qh0*VP#!olAW2k^) z@~7!ej8J|%YWSwR=h~oD={A7S7Uo;-wPNS)-+aX;vUn{lq-#oFM7@lG50~kH@;eRa z7kQ3E++i$pzWvkV2)CJ`06At(Q_N_#4KJ|SG?7p!1lEGDEPn96-6-0o=U53zWBPsT ztxI&2o_*HGaf4(%ucS#?w=`)62GWVVDtv)FQR0fJEcd2|D1fu9Sd`{5$r}~O#%Hn= z<;N~SS1bL5L;8%*-jvgupxZB-Q_8@Jq>7Bd&UQ|!B(IZcVV{0Mw5^|5Agf@~B$&c> z#{8~Y04pSte53J{NOaEZZfvd*${1SRhRd^TTI;$t{Z1NzbuRd~D{iGH90nFU&U4m1Urf3B!-lpN9GQuSC2A2a5;V*NR&7$i~WPPE}=VDbuME#^)C%-jsQ zvOW7J4X5{uBVt2oN(3FwXh+_J4LSkU=dYH{^D68-k z=4+ZYbdj6!81`Qzcy=HtBh`nGHN4&FsI17<&}DG~*r#vCy5>vRRsrU+WDSI(2h2#k znGx9Nya;*eR)SRTO9T-Q3ItG^ShsF-hu&8BSwB`|i>ix(RUHkxICra$a zL~ys6;mw^m^uRqD8BfnFH_9mwnrbM!k!2Y zQc;@B3ULtIos1AJ>_oatf6@2o`DL?(HZ$A4Rg>Z%xy8(XfsGKPvThaxwPB+AfC$Es zfGRoE-$P{la3=1#r~TgYR^EYB<|J>+45jw_!S9 zz%oa;2*FO0c78fs;6`#BZ^;3Kf0sOJN*98qj4=}Be%gE+`Xlbvq1gezYq5kHre z=^;bRvqpSaQjHZf4bNVI$i$8#=q&Cj;e-&bKijgnf6byo$zvdLgzf1dx0i!IdZds6q zHogrP%aXsLGd!$_jZ7(LPV8sn`{p!Az7ELau~`Im%IS7SR^lyu$Eu1+?PQfCvgBfLO1R+RWQ)cGi1}H$8@AmJb*j!Y5teX4PchpiP zhJ1InI6sX#xkTJ-j?pGS^S^s5ST9rm+w-c>tVY}tj+O9HQox7WzE>3&1P!w&^%>Rg zZwBgF4ngpmd*20Rl7q=~H>|m&9Ko-P7>$`uH=m?d^g}Dl{p^TlH&>D)00L6gg4=Oi zWWO0YwF+vQU!(s#dVq?x8oq}hw1NARNL`eKP(9w!%942JAw;9<*z!v-JGGTT`Swzm z`sgp(P+t`)g^21Jyc73c0$QT?=)Y|&X8~Z0isI21x0(tfZQWV06QCV>TR(RR57&8h zzHn#2heM!?s&teph}$Z{b_XN;4se9~f#Ud!9jE6trdN|@7=m5zFroajC#Y&k6dZ(- zcFS%y$uBvA)bq>K5?Iz54WR%uOGXjJ(C>~SgkAHb^(#qvd0J6h8=cp;bPHG`S~97W zG5y}1&4%BZRQDI`y^nX444tg7enB1b0EFuC29^OP#jbX-*-Q_abCy(>4Utz#h7J5o zy%w8TN2=BQ*_owMz#h4(^Lyk4#G*o_$H3o+)TkX~Zoh=(X4fc0CQL1B#+>-|5w3>` z-NE11+e2H>u562nf^?J`amsV~!BtRU&EO99cN{LrFagV01;NAC z#URqu5*h{SM4opVCD25u1R{t-Ns{B<>ys3%HB}DRm@Sr{-RacWh%KYN^h$|e)=d8z8L{FJ^Fr}v=F8n%7jJha z;5Zfr4pA@-2i||2F0qGf`FXLtoF@{8ZD81wU$%lCcGk+My`@p|=RRlOn+HZiA9~zz zw(AqdFh~J`;W%&4$9C}r<+U~}*mAGtER%xFrGTn&Gv3*;>Au5okJ;OIf`~&)y|!#t zK-_|G{k|Dz+PI~cgs?@L(T6ZC`u2D6J^JF;)rMhL2ASy9;3?EUhf?f;Hl4V!dJsFu zYU#s8r_U08jNXI$1~4oQKafAXC}l%xF*_2Xp88Zm@Z;^&Yv4*k*f+au(Udqc8?lMs zi@nyfQkkCK1Q@AX->0q&+lR2)v|~Iy5!vtK*k%e=n(O5fs~Ybi-%)*+vwFB15J79% z;X7^{PPHGH)tPk@eSIU8Ys_!7xIRhE=tq8=WDv~J$9HcXEMFO2!BUR>K#yvt-3$4JGX$)G2k5*X9E2(ODOAwR@Y(1HvJ$=7Ddf2?Ms` zCRbSHWXuG!0TAe|9i{OP)3U_Xgcc7|x7RHw^q6fl$OhPsRbuI(WUN5UnI;1nF7QEe zu+Lg0cI|n5 zHVT1`eD~U7Ty~74Vb&tuD;SNkDe**2W3OdcN5Y|iqH(3$&IkMwXFY)c=<b(6GKIE}kmXw3*XGpq2=!Zz*&oaso_4RlSBTst zNsxmoDOjWDwq8!-#;`a?>2gRb-6I>S)^}fjd(L7!;ue^~P8D8+bFBL3W#a2A4-f7$YRyZPm?XGjYRzDO0> zI$MjzbDQZB`QGNr^!8tQ~@)%kmBnjm=OxNh1fK>w%kv3BJ1^RNp;aThjl(xj|O zLGC46+E*5OjI75*QtxlNlJ*Pgvu0E{7Y73<;PM|N$sl%nxU!*(C4y#dVJVDj4?$U~ zhnr{|HBkBS)WbA(r?P!>b2FB-QeeZ^fw(obQLx@ZDBUkt-mOi3q4k?S%$v&`RU!=F z{aM~z$Y!4RdP8-qsuYB6bG$D~njwj8N&4Ff#d5GM%GRd0Fd{*L3XBBazFPkl+%f&;KAT1auh<-@_Ds8~Wg+HdPS&^O&$g^K zsWo4$&7WEypjYa*KF2>qzjJKh=g{j9GN~jnF7Hly^ddhoZ3Bj4aUxPW7{I1Mn_Df< zubp4I(RYM`Dp5)ijQ=0kjZ#M!c~RBbyiS*($m~w4(B3;1ELmYb)62f1 z;YY>S3zj!iLl|=cnquCj(vVLeb}*om*9kO=}DYSFET}tE8rcRfRQ?CoQgSnETaIp zoYaerUi;~AV}BFfz`%e5xD&mt#J|sXso`S$<%Qk>GpNl@oD3ooJ7X*~5=PB4?2wEE z1g9x1n}so~twGnnzSlP;Cpp4+1UPdyT}6yiN(c&T{qfGthmqV=KVDXW8ELQki~5~U zR~w1ND-En-YlWzM2J$kg``1jO3TFn{@wgYhhnQK%;r)m_F6}f8O*2FFWk0CjP?9v3 zmQ*IT{=)Gx3lmlqhywNNz&AN|LIh-SrD|;mw2T&ITbLej=BgW_)3Ufk#pZk0Yyc<) z9tZWxP_Iw7Q^lpUMn*fDO3H555ZqnEs@}{=6FPivZpDB#Awfe(cg|;b#WbwnZMJ^P??DS*f_WFZQ~7ip)+X6EdT(!yG-FBB~-E=8E_ z7FUuh`iWzyIJym#k0|OXQv=^ktVw4JOgSRUs$VGCN0yP-57Vk?+7qqn=EN`T+eOF? z(p6S{VG8E^k^w7hWqD~7IcrD!lX>jZgnp{^ySxv`G8#hu90qw1Hhi9p0yjD)+?`o3 zmWfe$Z$Ad%196BafU$U&bOU%e>_vS9w}z($f4)FS2EbrAn$T0U`}0KZO;tuw#;!gUgNV1sgs1kJ^(9 zHD_>@g6KY_#817NT31*%iyY!AmqAzS6>-2W@AR^(n&{bypNh#7PK5>^M&hH*oRg6h z_tVkyVreM}mDyXt{q~u6AZgE*RXB@b@L^eX3Xv8A+S2+Cn#e^1E&2CMRJ}b*^}GiA z;ivI#itG*q>P1IJm>;#eMl#tx5cxzd-SKYKk4&-|$jCYMuhsYGxEz)ZE8tuWMlSGe z=Ee6Gn5164G!Hx2yM7K^yD&XpK!Q}O>L^1; zOLv{F0j&)YfD@}H{h*t?QZ$OuMiBm^SD1}Fk)p3-5j%Fdtjm(qw8%SA4$Jh{Ymn_P z?KT)K8Zo%ZfRyfF#KvTzhI~meUn`GS0K-|ljSwhhqkY+*5xcBu^da;|_W7Cw%ynJ# zKZ3xmZVQ$r!&UM!NbYKaYQOm?z1Gcd(CWDpT?HjIUWgn?PG4lWdnYuPth=pPUnj9a z^y4`JB99$=T!$PcGAa9=>t7bj{lNWIA%@9|A5U%r%T%#Y=&mR7a(L_CIbk?dYZOwt z{(4Ng$Z@wXPg1U^)E?iOM1^%ydR?JX^HH4Sk~=b!l|IR)&1O)itYvVCtU_u!4}+KK zjG8+i-G_kn(4Z@MDh&=94+Rk{%jE94K(u@KUVciNj?|yJy|5%X@>3@ITzyjAv@xJxNNxl;AnEh2n>_(TzLrTX{8YcgU9F z-nWMUG3Nt7qqHhwTzN{rPbmh}yPB(#?{55De7oxE!)-4&aXw?fY>B}(LsM$=3lBzJ zChN|ZEtFNOA)pmUBNI2~!+Ng1bvMS9oBq6<5#M9lHxadq9xpI%)c&LCoM-+V){OqS zJDz%rd%w|q%rbQ_=Y4ee)sy2dv%Cs60{$cqUj}@%onj&^2XRdXc8@y3adZI(uSOg$ zaczcm`!b=;tI%0hZ-}$eXamqnt=KWsOd!)%IMzr_*jSwH4S?`8^gYTsQD+-I72#2~ zQKLXsK+S!K<3mP#2Y&SU_eNMQy5=^sy4HDuobjJEv#+8qPoZQJG#XFKX)mmP#(P!r z-3%wEc}+bYR$UA}oF5fBcIj(mLFTV1!w19GZ|JRtY-#@(j(#d-xhnT*d@4F~Gr6~V zZu*r6hJ?f&T6^`>RB)Kf^6m+{>El`DLo`owaAVXXm+r%Z2JZcx^^*ta&#$%zc*eF0 z{@0w+N`V0~BqSzoSWL{2UIG9KNfiVpB>Y(U0*Hk4xqE@0p5EXeyK=I!)s|pnBoK;K zd`yf<{{jk9H|hWxAz@2gEgI5$%me^Ey*sHDHWCu?3!tp*4+NR&|J5*v7I>XiUZ2H5 zNXUO27avdU6CX8*FlcgBQBk3*t-W>0q#`S;)^>jGKDb)2`Bw|nq-|`9l~q*yA`y45 zsP8J!)7Rf^Rxu1m+}w`$sK%9$kkE9*;jboPKqF{3)EFd9uqx?T# zmQ2yq(<_dP!y+XouPiHziHXVdWn^TmsH*Z@VXW%;yAMY)m3euRl?FBXUBM3|zR`74QUMv;h?Hy@^@rLh74khO<|m>3oo7RBWz7oQaXB@Lnj zuCvP>0ZmH{_By|UTa^MKoLVdT$Xduq_OpfcyEf-Dh6MC3XZp)DB!VITGjZ zu1SR47lWk$v#pJ8VozH~L0fIsrGu{94-Na=>r?Gas`(bvy>tV3X zUiSCJUf%N8Ixop^bW&?BK3@EE$TxfDU0HBWJx*cWzUorFCgN`bq)qzNbeEP4$sO+l z*3Pe2{S<*|y-&G-6o@$Np>3aYksWw?r`IL? zCUye;w6#UtC^-20lvYDOFe2qb7MJRuIWp6nIMo&%?|E3ScenzHZ}pC!2ZS^49{|u3 z{&;D_*Jv0u-s1cD`;Scb{hl3FF{3$|t?^w1pA5Kh`2_@wj!w&*z=YwB^}~I>v|QWS zP4C!OCnaS3B7gE*<+)W~e9i1~hvZ~avDK(pjp|>l@WXcwd^z#ainWswbZZ_W#JaEA*Q3&T$R>+Af z54K?kZ-_cQmK*jnU)zuFe!XSwGHEdvE!HAr^}p^&Tnf1jJAZ@k@RR-EkepV3PuMgO zkk!7OGe7moW2tT{_=@Vj1nYR-JhL>VG~_$5e9EEm5GfW!E{wP6p}W zWYYMp9UL<)-R5UU!=}Tgv(CkYkHdJiiQaBVjT7z3WNiV~*W3FpPle{QmH}MdC9MH6 zezSjGHCo#O^1rA!wXY}M{rL6E-1K7KR}Fag<(xBTepzV>3)5d}kPZ84c**E+MttSP zt02CRaj7)&;PO;p8%y_F-7bo&%yX_?yV)PUk$Ay|Pof6pzj8WsO#2=XVeQ1s=IaPH zcxU;+buIrP&oM`9*=n-fC|p9*qiMI|esVc;Rm@P_Y<$M{d;IOKYPt7BvaYLcK!@vT zcCc^INB`xTn-MOC1l|GtP#&26xE|NwRrEI|yPgsTHn9*xcrv)KIn<>ruR^khi>kDG z%87)=F6F6$OV{m@{efpn4dU{(yn|71#86af^*)G{U{Pr}i#P42k4deaPE{s%)d{D5 zH8Vh?J@e1+%I%o>R3qae0Jh5~;2^3MSg+i58}$mOGQ>$%|Jy$=T7GA%OBfG~P5Hv} zbdru**i$n)*{1w7u-dzWPpTH#`5fD%u#i#Vas)hh=Sfp)fTy_UgJaMZV|$K&YM^Uk z?j!;%rnWEScezawHcczsSzVe7{E`R!;LmiVX*T6Q-fRg*i(VE#0V~YDeiXu%F;{9sNI>iZZuKKO6R^ zZs6_BnH7KV_n=I^NA-R$oSHv5uNj_ppG@Dtb_Lg%E#l@L4f997Pmc`OKB4x3ce2N( zT0R8^b%L_>$L=+DzOGiTQPWe=7DjH}*$7et>FDt7L$qQAYBG0y!4H8l#y|THYtu^1 z)F+m^5>8X?^%N=+;QSh;9_lZ09h1(4a&>$Dhz4EQwzdvj&bE(D4NUe`y?tO4oy*LY`Ev$st;?eL4znmo5PP0et-WV zH7t*Iu8(Q|eidg0fl1jN_ome+5D87SJ7lFZZ#(rD%K@301f`RCujEYLN)E@wPf%MrKj0zVd&s-;KxZHF1zYb;-A+$XrR540IAyKr4}`v98xhJQ zWk@_DThg0>yQF{`}%!_{pGSdobB?=mTBdBKYdWURHLd;o|gE)8D`KU(kWc z;_mubSy53F1j-8x42+2>izTO^C?8H?W`Fy3-mUa+;31h}5fbUx7lmuwNYku zYybcw0!vP1#&r09)wAX-MUVZv-jInpKGEOxKDMl!(EVMp eAZqM5=Lvbb&^meIbtLOwQ}k| literal 0 HcmV?d00001 diff --git a/Plots/city-prices.png b/Plots/city-prices.png new file mode 100644 index 0000000000000000000000000000000000000000..a998100a9ce1152ae721b443d184acbf90e0d0fb GIT binary patch literal 9283 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

!bP4J0Va>*mDytsA0k9Omx;CAQMPs#P}h z&EdmTL7<;4G*mP8nb`mc3s8&qQ#zfVGalsvIm!Q|f=Yr)it-mvIJ&(5yXfAN2Gi;z zm5eP>JE|_Kb}ju#NBXkq>T`-kiiRptmAvg9fvBpY1bn;M$hvi3KDIw88?hXcm?AaK z7w9(sNe$APgR9GtK7W6b>IK|&4Fh(*H!t9b+E7x7{ zBuZY?+&4#iEvsuYaC~S%OmH0eve8VcZWfZ2ofz^0K`035o^w@qiReb>X3KW(eR(Ht zIgR4-wxJT&x2$#2jN5*|an-cOn|R^eSM8w{O#n}W$i{X5WHuXnYwYn9tZ5!H8eQ|ak4M35FwAf!ZJMQu{+EQdWV4(<;fV|mD(PQNOsB+Tq#zNR%o%1V&( zxFmidl7btr<;P~$)p@hiIFTL2IL>R~{^YKGru0~6$x|@Vn`)QT&F#>^98#3ak&B_t z)`l4IlR=FBv(#fYKo|AY1;(^^e5x&gme2W3JzArM(V17<<|)tb`>n~@ZoeyNX0fY? zGEeKhS^Ue}f~4s2!Lu%UVXPE_@O9xm&X0A63<^AYJ-qt1QYXt-I|v74UA6vvolo;> z>rtqia1W<9v!8}v#wenw&7^LwasC#IH+0|K+-Ff}%@y!l9^?(q9Kn?3pt68g7q1wX^Tzwk2jtdv|!-2ow>GUD4riO=&y z&s3r~Dp4Cgf%S?^0FJD1^|I4mw>^~aJrb17}LidPNDQ>>fMNYYuw$##I&M#j+Mbm-99hJ z>{6?&KbY;yb?4!ao(p$kcc~S4zT{!0iVLON3r&x0_s232FA7GyijL$3`P@zz$N8KBLi+ zFgMa&N9Gs8%IMJ}VOcKf#lTU))kA5>OBy9Z4Oq=bwBOa;Yq+|>(72EKN?FuhYx*$N z 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 b^smo78V_FF2u0so#DJ%)PL>|`xcYwpbit~O literal 0 HcmV?d00001 diff --git a/README.md b/README.md new file mode 100644 index 0000000..953f9ac --- /dev/null +++ b/README.md @@ -0,0 +1,63 @@ +# Lagos House Price Estimator : Project Overview + +An application that allows users to estimate the price of a residential property of their choice in Lagos state, Nigeria. + +* Used **Beautiful Soup** to web scrap the data from a real estate company's website + +* Performed various Data Preprocessing techniques to clean and make the data ready for model building + +* Applied **Feature Engineering** to create new features such as the Neighborhood of the and the type of duplex is the property + +* **Exploratory Data Analysis** was used to discover insights in the data + +* Modelled the data with various Machine Learning algorithms with LightGBM performing best + +* **Tuned hyperparameters** of the model to achieve best performance. + +* LightGBM had an Mean Absolute Error (MAE) score of ₦46.28 million + +* Model was deployed on a web application built using **Django** available at [Lagos Estimator](https://lagos-estimator.herokuapp.com/) +___ +## Model Performamce + +Mean Absolute Error (MAE) was used as the metric as the target data contained many outliers as Lagos state has properties as low as ₦55 million and as high as ₦1.2 billion + +| Model | MAE (₦ millions) | +|-----------|---------| +| Random Forest | 47.98 | +| XGBoost | 47.66 | +| **LightGBM** | **46.28** | +| SVM | 68.47 | +| KNN | 49.07 | +___ +## Model Deployment +The final model with the best score was deployed on a web application built with **Django** with the frontend built with **HTML & CSS** with **Boostrap 4** as the CSS Framework. + +![Web application of the model](Plots/app.png) + + +___ +## Data Collection +The data was web scraped from [PropertyPro NG](https://propertypro.ng), a Nigerian real estate website that contains thousands of listings of proporties around Lagos. Selected cities used for this project were Ikeja, Ikoyi, Lekki and Victoria Island. + +```BeautifulSoup 4 ``` was used to scrap the data +___ +## Data Preprocessing +Feature Engineering was used to extract new features such as: +* The neighborhood the property was located +* The type of duplex is the property e,g Semi-detached, Fully detached +* Location / City of the property e.g Lekki, Ikeja + +Data Processing Techniques such as imputation of missing data, scaling of numerical features, encoding of categorical features was applied. +___ +## Exploratory Data Analysis +According to analysis, the average (median) price of a residentaial property in Lagos state is around ₦99 million. + +![Histogram of Prices](Plots\price-hist.png) +**Histogram of Prices** +The prices are positively skewed with majority of prices as the lower rates. + +Ikoyi has the most expensive homes with an average price of around ₦ 250 million. +![City Prices](Plots\city-prices.png) +**Average price of each city** +___ diff --git a/clean/eda.csv b/clean/eda.csv new file mode 100644 index 0000000..f724293 --- /dev/null +++ b/clean/eda.csv @@ -0,0 +1,13140 @@ +Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood,Type,City +120000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +105000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +480000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +115000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +130000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,1,1,5,5,6,Chevron,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +140000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +87000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +45000000.0,0,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +115000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +145000000.0,1,1,0,4,5,5,Victoria Island Extension,Terraced Duplex,Victoria Island +180000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +75000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +450000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +100000000.0,0,0,1,4,5,4,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,0,4,6,6,Lekki Phase 2,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,3,4,Awolowo Way,Semi Detached Duplex,Ikeja +180000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +98000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +36000000.0,0,0,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +67000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +88000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,1,1,4,6,6,Ikate,Terraced Duplex,Lekki +210000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +58000000.0,1,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,6,Victoria Island Extension,Detached Duplex,Victoria Island +200000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +97000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,1,0,5,7,7,Chevron,Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +160000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +32500000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +66000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,1,1,5,5,6,Onikoyi,Detached Duplex,Ikoyi +80000000.0,0,0,0,5,4,5,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Ikate,Semi Detached Duplex,Lekki +40000000.0,0,0,0,3,3,3,Victoria Garden City,Terraced Duplex,Lekki +40000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +76000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,1,1,1,4,5,6,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +42500000.0,1,1,0,2,3,3,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +150000000.0,0,1,1,5,7,7,Ikate,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +35000000.0,0,0,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +66000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +195000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +260000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +47500000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +48000000.0,0,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +38990000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +83000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,0,0,7,7,8,Other Lekki,Detached Duplex,Lekki +460000000.0,0,0,1,6,6,7,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,4,6,Osapa London,Detached Duplex,Lekki +63000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +74000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +95000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +330000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,5,6,Agungi,Semi Detached Duplex,Lekki +84000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,1,0,7,7,9,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +275000000.0,0,1,0,6,6,7,Oniru,Detached Duplex,Victoria Island +200000000.0,0,0,0,8,8,10,Opebi,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +30000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +98000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +98000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +87000000.0,0,0,0,5,2,6,Other Ikeja,Detached Duplex,Ikeja +145000000.0,0,0,1,3,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +37000000.0,0,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +220000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +46000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,6,Lekki Phase 1,Terraced Duplex,Lekki +49000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +102000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,1,1,1,4,6,6,Ikota,Terraced Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +240000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +88000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +500000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +67000000.0,1,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,4,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +93000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +70000000.0,0,0,0,4,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +85000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +240000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +47500000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,5,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +105000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +135000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +52000000.0,0,1,0,2,3,3,Ikate,Terraced Duplex,Lekki +170000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +32000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +50000000.0,0,0,1,4,4,4,Ikota,Detached Duplex,Lekki +120000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +360000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +17675000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +360000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +53000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,7,Ikate,Terraced Duplex,Lekki +320000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +36000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +235000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,1,5,5,5,Oniru,Detached Duplex,Victoria Island +81000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +48000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,4,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,4,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Alausa,Semi Detached Duplex,Ikeja +67000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +48000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +185000000.0,0,1,0,5,5,5,Parkview,Semi Detached Duplex,Ikoyi +57000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +250000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +52000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,1,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,1,1,1,3,3,4,Agungi,Terraced Duplex,Lekki +85000000.0,0,0,1,4,5,6,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +42000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +380000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +25000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +185000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +107000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,4,8,5,Lekki Phase 1,Semi Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +90000000.0,1,1,1,5,6,6,Ikate,Detached Duplex,Lekki +110000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +125000000.0,1,1,1,5,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +280000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +55000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +37000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +280000000.0,0,1,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +76000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +52000000.0,1,1,1,4,5,5,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +58000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,4,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +190000000.0,0,1,0,5,5,5,Ologolo,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +82000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +130000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +70000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Ikota,Detached Duplex,Lekki +50000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +155000000.0,1,1,1,4,4,5,GRA,Terraced Duplex,Ikeja +60000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +84000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +41000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +57000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +41800000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,6,6,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +180000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +105000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +57000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +58000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +49000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +59000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +320000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +45000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +57000000.0,0,1,1,5,5,5,Ikate,Semi Detached Duplex,Lekki +37000000.0,0,1,1,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,7,Ikota,Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +73000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +300000000.0,0,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +85000000.0,1,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +57000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +35000000.0,0,0,0,2,0,0,Other Lekki,Terraced Duplex,Lekki +56000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +48000000.0,0,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +76000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +125000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +29000000.0,0,1,0,2,2,2,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,4,Oniru,Semi Detached Duplex,Victoria Island +85000000.0,0,1,1,4,5,6,Osapa London,Terraced Duplex,Lekki +70000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,3,0,0,Agungi,Terraced Duplex,Lekki +350000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +97500000.0,0,0,0,3,3,4,Other Ikeja,Detached Duplex,Ikeja +60000000.0,0,0,1,4,5,5,Alausa,Semi Detached Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +195000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +480000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +49500000.0,0,0,0,4,5,4,Chevron,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +360000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +35000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +39000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +200000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +52000000.0,1,1,1,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +65000000.0,0,0,0,3,3,0,Chevron,Terraced Duplex,Lekki +250000000.0,1,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +45000000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +170000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +79000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +110000000.0,1,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +130000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,4,Chevron,Terraced Duplex,Lekki +340000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +48000000.0,0,1,0,4,6,4,Ikota,Semi Detached Duplex,Lekki +74000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +420000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +46000000.0,0,0,0,3,3,0,Victoria Garden City,Terraced Duplex,Lekki +32000000.0,0,1,0,2,2,3,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,3,3,3,Chevron,Terraced Duplex,Lekki +77500000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +52000000.0,0,0,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +370000000.0,0,1,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +41000000.0,0,0,1,3,3,4,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,5,4,5,Chevron,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +73000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +93000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +90000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +280000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +45000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +45000000.0,1,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +149500000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,1,1,1,5,4,4,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +55000000.0,1,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,1,0,4,6,6,GRA,Detached Duplex,Ikeja +60000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +87000000.0,1,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +100000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +160000000.0,0,1,0,5,7,6,Other Lekki,Detached Duplex,Lekki +88000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +120000000.0,1,1,1,4,5,5,Ikate,Detached Duplex,Lekki +60000000.0,1,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +64000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +60000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +98000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,GRA,Terraced Duplex,Ikeja +120000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +62000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +35000000.0,0,1,1,3,5,5,Chevron,Terraced Duplex,Lekki +190000000.0,1,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +30000000.0,0,1,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +35000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +290000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +170000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +120000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +145000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +105000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +165000000.0,0,0,1,5,5,6,Opebi,Detached Duplex,Ikeja +100000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +74000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +45000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +240000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,0,6,6,6,Ikate,Detached Duplex,Lekki +170000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,3,3,4,GRA,Terraced Duplex,Ikeja +105000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +70000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +75000000.0,0,0,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +115000000.0,0,1,1,4,6,6,Agidingbi,Detached Duplex,Ikeja +90000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +160000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +350000000.0,0,0,0,5,5,5,Old Ikoyi,Detached Duplex,Ikoyi +198000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +185000000.0,1,1,1,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +52000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +93000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +400000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,4,5,4,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +330000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,1,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,1,5,5,6,Banana Island,Detached Duplex,Ikoyi +180000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +60000000.0,1,1,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +98000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +95000000.0,0,0,0,4,5,5,Opebi,Semi Detached Duplex,Ikeja +125000000.0,0,1,1,5,6,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +120000000.0,0,0,0,3,0,0,Other Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +125000000.0,0,0,0,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +57000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +108000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +58000000.0,1,1,0,4,5,5,Ikate,Detached Duplex,Lekki +190000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +169500000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +200000000.0,0,1,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +98000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +185000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,4,3,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Victoria Island Extension,Terraced Duplex,Victoria Island +40000000.0,0,0,0,3,3,0,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,1,1,1,6,6,7,Osapa London,Detached Duplex,Lekki +135000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +280000000.0,0,1,1,3,3,4,Banana Island,Detached Duplex,Ikoyi +70000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +300000000.0,0,0,1,5,5,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +33000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,1,1,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +200000000.0,0,0,1,4,5,4,Lekki Phase 1,Semi Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,1,0,3,4,4,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +260000000.0,0,1,1,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +80000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,1,4,5,6,Other Victoria Island,Detached Duplex,Victoria Island +400000000.0,0,0,0,7,8,9,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +400000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,7,Victoria Garden City,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,0,1,1,4,4,4,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,5,6,Oniru,Semi Detached Duplex,Victoria Island +60000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +79000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +300000000.0,1,1,0,4,5,5,Banana Island,Semi Detached Duplex,Ikoyi +60000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +250000000.0,0,1,1,5,4,5,Parkview,Detached Duplex,Ikoyi +75000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +32000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +330000000.0,0,0,0,3,4,4,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,1,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,6,Chevron,Terraced Duplex,Lekki +78000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +170000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +44000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +125000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,1,1,1,4,5,5,Agungi,Semi Detached Duplex,Lekki +185000000.0,1,1,1,3,3,4,Oniru,Terraced Duplex,Victoria Island +280000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +115000000.0,0,0,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +53000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +59000000.0,0,1,0,5,5,6,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,10,9,9,Allen Avenue,Detached Duplex,Ikeja +85000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Other Ikeja,Detached Duplex,Ikeja +300000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +116000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +80000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +35000000.0,1,1,1,3,3,5,Chevron,Terraced Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +58000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +380000000.0,0,0,0,3,0,0,Foreshore,Semi Detached Duplex,Ikoyi +70000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,5,4,4,GRA,Detached Duplex,Ikeja +145000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +138000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +58000000.0,0,1,0,3,4,0,Osapa London,Terraced Duplex,Lekki +480000000.0,1,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,5,4,Lekki Phase 1,Terraced Duplex,Lekki +67000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,1,4,5,5,Opebi,Detached Duplex,Ikeja +30000000.0,1,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +460000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +98000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +480000000.0,1,1,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,1,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +385000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +76000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +38000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +27000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +160000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +85000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +115000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +210000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Alausa,Semi Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +80000000.0,1,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +67000000.0,1,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +500000000.0,0,0,1,6,6,7,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +230000000.0,1,0,1,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +62990000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Osapa London,Terraced Duplex,Lekki +180000000.0,0,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,1,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Osapa London,Detached Duplex,Lekki +170000000.0,1,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +300000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +250000000.0,0,0,0,5,5,7,Ikota,Detached Duplex,Lekki +320000000.0,1,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,6,6,Victoria Garden City,Semi Detached Duplex,Lekki +77000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +150000000.0,0,0,1,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +110000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +173000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,3,Chevron,Terraced Duplex,Lekki +70000000.0,0,0,0,5,6,6,Opebi,Terraced Duplex,Ikeja +85000000.0,0,1,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +83000000.0,0,0,0,6,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +63000000.0,0,0,0,4,5,5,Opebi,Detached Duplex,Ikeja +56000000.0,0,1,1,4,6,6,Agungi,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +145000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +49000000.0,1,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +45000000.0,0,0,0,5,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Other Victoria Island,Terraced Duplex,Victoria Island +90000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +230000000.0,0,0,0,6,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +370000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +75000000.0,1,0,1,4,4,4,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,0,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +55000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +90000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +51000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +165000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +200000000.0,1,0,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +36000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +320000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,1,1,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +280000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +34100000.0,0,0,0,4,5,5,Agungi,Terraced Duplex,Lekki +120000000.0,0,0,1,4,5,5,Ikota,Detached Duplex,Lekki +262000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +148500000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +90000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +98000000.0,0,1,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +95000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +240000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +85000000.0,1,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +82000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,1,0,6,7,7,Allen Avenue,Detached Duplex,Ikeja +68000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +290000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +470000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +94000000.0,0,0,0,5,5,5,Alausa,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Other Lekki,Terraced Duplex,Lekki +270000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +200000000.0,0,0,0,6,6,6,Ikota,Detached Duplex,Lekki +33000000.0,1,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +55000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +40000000.0,1,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +68000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,6,Oniru,Detached Duplex,Victoria Island +65000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +190000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +185000000.0,1,0,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +59000000.0,0,0,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +53000000.0,1,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +92000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +18500000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +65000000.0,1,1,1,3,4,4,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +48000000.0,0,0,0,3,3,3,Other Lekki,Detached Duplex,Lekki +150000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,1,5,6,6,Allen Avenue,Detached Duplex,Ikeja +270000000.0,1,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +88000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,1,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,6,5,Parkview,Detached Duplex,Ikoyi +145000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +99000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +225000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +400000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +47000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +47000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +52000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +79000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,7,7,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +40500000.0,0,1,0,3,2,2,Chevron,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,0,0,4,5,5,Foreshore,Detached Duplex,Ikoyi +240000000.0,0,1,1,5,6,6,Alausa,Detached Duplex,Ikeja +65000000.0,1,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +250000000.0,0,1,1,5,6,6,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Osapa London,Terraced Duplex,Lekki +350000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +17000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +49000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,1,3,0,0,Ikota,Detached Duplex,Lekki +120000000.0,1,0,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +360000000.0,0,1,0,5,5,6,Agidingbi,Detached Duplex,Ikeja +58000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +25000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +240000000.0,0,1,0,5,5,6,Omole,Detached Duplex,Ikeja +55000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +225000000.0,0,1,1,5,6,6,Alausa,Detached Duplex,Ikeja +120000000.0,0,1,0,6,6,6,Ikate,Detached Duplex,Lekki +74000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,3,6,6,Lekki Phase 2,Detached Duplex,Lekki +87000000.0,0,1,1,1,1,1,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Other Lekki,Terraced Duplex,Lekki +180000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +47000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +200000000.0,0,1,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,1,0,6,7,7,Ikate,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +195000000.0,0,0,0,6,5,7,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +48000000.0,0,1,1,3,3,4,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +90000000.0,1,0,0,4,6,6,Victoria Garden City,Semi Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +445000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +26000000.0,0,0,0,3,4,3,Lekki Phase 2,Terraced Duplex,Lekki +261000000.0,0,1,1,3,3,3,Victoria Garden City,Detached Duplex,Lekki +87000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +225000000.0,0,1,1,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +79000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +49000000.0,0,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +63100000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +200000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +200000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +40000000.0,0,0,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +62000000.0,1,0,0,4,6,6,Chevron,Detached Duplex,Lekki +235000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +300000000.0,0,1,0,9,9,10,Other Lekki,Detached Duplex,Lekki +32000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +270000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +97000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +15000000.0,1,1,1,3,5,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +270000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,4,Ikate,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +72000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +54000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +150000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +48000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +78000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +110000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +100000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +265000000.0,1,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +66000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,10,10,10,Oniru,Detached Duplex,Victoria Island +85000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,1,1,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +240000000.0,0,0,0,5,6,6,Maryland,Semi Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +350000000.0,0,1,1,5,7,7,Banana Island,Detached Duplex,Ikoyi +280000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +85000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +57000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +330000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +400000000.0,0,0,0,10,10,10,Adeniyi Jones,Detached Duplex,Ikeja +56000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +72500000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,6,7,Oniru,Detached Duplex,Victoria Island +95000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,3,3,4,Victoria Garden City,Detached Duplex,Lekki +12000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +175000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +130000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +45000000.0,0,0,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,5,6,Omole,Detached Duplex,Ikeja +180000000.0,0,1,1,4,6,6,Victoria Garden City,Semi Detached Duplex,Lekki +98000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,0,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,0,1,5,5,6,Osapa London,Terraced Duplex,Lekki +165000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,4,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +52000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,6,7,7,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +51000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +70000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,3,4,0,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,1,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +55000000.0,0,1,0,5,5,6,Agungi,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Parkview,Detached Duplex,Ikoyi +85000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,1,1,2,3,0,Lekki Phase 1,Terraced Duplex,Lekki +78000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +140000000.0,1,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +350000000.0,0,0,0,5,6,5,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +230000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,1,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +95000000.0,0,1,0,4,5,6,Ikate,Terraced Duplex,Lekki +250000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +55000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +90000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +85000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,1,1,0,4,5,5,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,0,0,7,8,8,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Alausa,Semi Detached Duplex,Ikeja +60000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +60000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Omole,Terraced Duplex,Ikeja +165000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +98000000.0,0,1,0,4,4,6,Victoria Garden City,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +95000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +135000000.0,0,0,0,5,5,5,Maryland,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +120000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +200000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +80000000.0,1,1,0,5,5,6,Ologolo,Terraced Duplex,Lekki +70000000.0,0,1,1,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +78000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +135000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +41000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +100000000.0,0,0,0,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +68000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,1,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +450000000.0,0,0,0,4,4,4,Banana Island,Detached Duplex,Ikoyi +200000000.0,0,1,1,4,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +480000000.0,1,1,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +300000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,1,1,1,5,6,7,Ikota,Detached Duplex,Lekki +53000000.0,1,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +47000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +39000000.0,1,1,1,2,3,3,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,1,1,0,3,3,4,Alausa,Terraced Duplex,Ikeja +120000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,1,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Ologolo,Terraced Duplex,Lekki +370000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +140000000.0,1,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +430000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +160000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,1,1,1,4,4,5,Banana Island,Terraced Duplex,Ikoyi +220000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +18000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +450000000.0,0,1,0,6,7,8,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +200000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +450000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,1,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +350000000.0,0,1,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +58000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Ologolo,Detached Duplex,Lekki +37000000.0,0,1,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,1,1,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,1,4,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +150000000.0,0,0,0,4,4,5,Airport Road,Detached Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,6,Other Lekki,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +52000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +140000000.0,1,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +52800000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +72000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,3,5,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +70000000.0,1,0,0,5,5,5,Osapa London,Terraced Duplex,Lekki +58000000.0,1,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +48000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +198000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +260000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Allen Avenue,Terraced Duplex,Ikeja +68000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +72000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +95000000.0,1,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +19975000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +125000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +47000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,3,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,6,8,8,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,9,7,10,Victoria Island Extension,Detached Duplex,Victoria Island +270000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +200000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +170000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +120000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +78000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,5,5,5,Agungi,Terraced Duplex,Lekki +37000000.0,0,0,1,4,5,5,Agungi,Terraced Duplex,Lekki +67000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +88000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +183000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +200000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +230000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +32000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +460000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Allen Avenue,Detached Duplex,Ikeja +59000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,6,7,8,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +105000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +120000000.0,0,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +66000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,0,0,3,3,4,Foreshore,Terraced Duplex,Ikoyi +500000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,3,0,0,Maryland,Detached Duplex,Ikeja +95000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +280000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Ikate,Semi Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Opebi,Terraced Duplex,Ikeja +38000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,1,1,4,6,6,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +67000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Oniru,Semi Detached Duplex,Victoria Island +390000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +73000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +72000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Alausa,Detached Duplex,Ikeja +165000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +45000000.0,0,1,1,3,3,4,Osapa London,Semi Detached Duplex,Lekki +38000000.0,0,1,0,2,2,3,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +57000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +10000000.0,0,1,1,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +175000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +64000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +280000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +140000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +165000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +255000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,1,1,0,3,3,4,Ikota,Detached Duplex,Lekki +56000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +225000000.0,1,0,1,4,5,5,GRA,Detached Duplex,Ikeja +220000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +100000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +38000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +38000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +53100000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +53000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,5,Old Ikoyi,Detached Duplex,Ikoyi +95000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +155000000.0,1,1,1,4,4,6,Ologolo,Detached Duplex,Lekki +58000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,1,1,0,3,3,4,Osapa London,Terraced Duplex,Lekki +260000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +100990000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,2,2,3,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,0,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +100000000.0,0,1,1,4,6,6,GRA,Terraced Duplex,Ikeja +170000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +255000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,1,1,4,4,4,Other Lekki,Terraced Duplex,Lekki +145000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +380000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +62000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +370000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +135000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,1,0,1,4,6,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,6,Ologolo,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +430000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +33000000.0,1,1,0,3,3,4,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +48000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,0,0,0,5,6,6,Agungi,Detached Duplex,Lekki +160000000.0,0,1,0,4,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +275000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +196000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +500000000.0,0,1,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +115000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,10,4,4,Allen Avenue,Detached Duplex,Ikeja +54000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +46000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,7,Chevron,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +55000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +69000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +42000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +33000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +130000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +81000000.0,0,0,0,4,4,5,Oregun,Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Other Ikeja,Terraced Duplex,Ikeja +420000000.0,0,1,0,0,9,9,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,4,Parkview,Detached Duplex,Ikoyi +90000000.0,1,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +47000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,1,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +165000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Other Victoria Island,Detached Duplex,Victoria Island +130000000.0,0,0,0,5,4,4,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +46000000.0,0,0,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +185000000.0,0,0,0,5,7,7,Adeniyi Jones,Detached Duplex,Ikeja +43000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +45000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,6,6,Other Lekki,Detached Duplex,Lekki +37000000.0,1,1,1,4,6,6,Ikota,Terraced Duplex,Lekki +78000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,1,1,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +70000000.0,1,1,1,5,6,6,Agungi,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Awolowo Way,Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +36000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +54000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +67000000.0,1,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +80000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +84000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +210000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +200000000.0,0,1,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +60000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +33000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +170000000.0,0,1,1,5,7,7,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +100000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +300000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +70000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +82000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +110000000.0,1,0,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,6,6,Agungi,Detached Duplex,Lekki +70000000.0,0,0,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Adeniyi Jones,Detached Duplex,Ikeja +60000000.0,0,0,1,4,2,3,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +110000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +250000000.0,1,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +500000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +40000000.0,1,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +140000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +123000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +220000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,0,0,3,3,4,Victoria Garden City,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,2,0,0,Ikota,Terraced Duplex,Lekki +240000000.0,0,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +69000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +368000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +77000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +160000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,1,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +175000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +68000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +47000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +37000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +130000000.0,0,1,0,6,6,7,Ikate,Detached Duplex,Lekki +48000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,7,6,Chevron,Detached Duplex,Lekki +250000000.0,0,0,1,5,5,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,0,1,0,5,5,7,Parkview,Semi Detached Duplex,Ikoyi +455000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +250000000.0,0,0,1,6,8,8,Adeniyi Jones,Detached Duplex,Ikeja +51500000.0,0,1,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,1,4,6,6,Oniru,Detached Duplex,Victoria Island +235000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +110000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +40000000.0,0,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +56000000.0,0,1,0,4,5,6,Ologolo,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,6,7,Ikota,Detached Duplex,Lekki +78000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +300000000.0,0,1,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,7,7,7,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +400000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +500000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +43200000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +33000000.0,1,1,0,3,5,5,Chevron,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,5,Onikoyi,Semi Detached Duplex,Ikoyi +40000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +40000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,7,7,8,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +75000000.0,0,0,0,2,0,0,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +214000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,0,0,1,4,5,6,Ikate,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +93000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +380000000.0,0,0,0,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +180000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +125000000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +76000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,0,0,4,5,6,GRA,Detached Duplex,Ikeja +150000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,0,1,0,3,3,4,Victoria Island Extension,Detached Duplex,Victoria Island +400000000.0,1,1,0,0,0,9,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +60000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +76000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +70000000.0,0,1,0,4,3,3,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +260000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,3,0,0,Other Ikeja,Detached Duplex,Ikeja +350000000.0,0,0,0,6,9,9,Other Ikeja,Detached Duplex,Ikeja +96000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,3,4,4,Chevron,Detached Duplex,Lekki +400000000.0,0,0,0,6,6,7,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +210000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +115000000.0,0,1,0,5,4,4,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +52000000.0,0,1,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +260000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +145000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,1,1,1,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,1,4,5,5,Opebi,Terraced Duplex,Ikeja +40000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +75000000.0,1,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +320000000.0,0,0,0,6,5,6,Other Lekki,Detached Duplex,Lekki +360000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +92000000.0,0,1,1,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +155000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +47000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +70000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +150000000.0,0,1,1,5,4,5,Chevron,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +195000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +49000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +35000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +290000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +170000000.0,0,1,1,6,6,7,Victoria Garden City,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +102000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +75000000.0,1,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +70000000.0,1,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +320000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +120000000.0,1,0,1,5,5,6,Agungi,Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +145000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +32750000.0,0,0,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +175000000.0,0,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +155000000.0,0,0,0,5,6,6,Oniru,Terraced Duplex,Victoria Island +75000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +90000000.0,1,1,1,4,5,5,Ologolo,Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Omole,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +77000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +86000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +60000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +420000000.0,0,1,0,9,9,9,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,7,GRA,Detached Duplex,Ikeja +190000000.0,1,1,1,6,7,7,Airport Road,Detached Duplex,Ikeja +47000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +40000000.0,0,1,0,2,2,3,Chevron,Detached Duplex,Lekki +55000000.0,0,0,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,1,1,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +56000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +48000000.0,0,1,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,0,0,10,8,9,Opebi,Terraced Duplex,Ikeja +110000000.0,0,0,1,4,5,5,Ikate,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +115000000.0,1,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +220000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +32000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +38990000.0,1,1,0,4,5,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +190000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +76000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +65000000.0,0,0,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +97000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +84000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,6,7,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +65000000.0,0,0,1,5,6,6,Victoria Garden City,Detached Duplex,Lekki +66000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +90000000.0,1,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +450000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +220000000.0,0,0,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +270000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +230000000.0,0,1,0,4,4,6,Lekki Phase 1,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +175000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,4,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +40000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +245000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,1,7,7,7,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +75000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +155000000.0,1,1,0,5,5,5,Ikate,Detached Duplex,Lekki +170000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,5,4,5,Agungi,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +170000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +79000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +190000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +255000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +110000000.0,1,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +130000000.0,0,1,1,6,6,6,GRA,Semi Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +120000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +95000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +390000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +230000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +79500000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +69990000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +70000000.0,0,1,0,5,5,4,Other Lekki,Detached Duplex,Lekki +73000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +79000000.0,1,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +89000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +60000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +36000000.0,0,0,0,3,0,0,Ikota,Detached Duplex,Lekki +46000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,1,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +265000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,1,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +67000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +160000000.0,1,1,0,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +165000000.0,0,1,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +75000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +50000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +75000000.0,1,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,1,1,1,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +40000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +115000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +280000000.0,1,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +125000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +35000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,4,Other Ikoyi,Detached Duplex,Ikoyi +175000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +115000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +220000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,5,4,5,Osapa London,Detached Duplex,Lekki +59000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +45000000.0,1,0,0,3,0,0,Chevron,Detached Duplex,Lekki +330000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +155000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,1,0,0,4,3,4,Foreshore,Semi Detached Duplex,Ikoyi +240000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +97000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +375000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +68000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +30000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +95000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +400000000.0,1,1,0,5,6,7,Ikate,Semi Detached Duplex,Lekki +195000000.0,0,1,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +73000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,0,0,3,0,0,Allen Avenue,Detached Duplex,Ikeja +80000000.0,0,1,0,5,2,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +55500000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,1,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Opebi,Terraced Duplex,Ikeja +55000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +125000000.0,1,0,1,5,6,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +35000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +51000000.0,0,1,0,4,10,10,Chevron,Detached Duplex,Lekki +58000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,3,5,Allen Avenue,Terraced Duplex,Ikeja +170000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +150000000.0,0,0,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +230000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +138000000.0,0,1,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +210000000.0,0,1,0,4,5,5,Awolowo Way,Semi Detached Duplex,Ikeja +170000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +50000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +37000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +36000000.0,0,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,0,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +75000000.0,0,1,1,4,5,6,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,1,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,1,0,6,6,6,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +450000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +34000000.0,0,1,0,3,4,4,Victoria Garden City,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +65000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,0,0,3,3,4,Victoria Island Extension,Detached Duplex,Victoria Island +140000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +50000000.0,1,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +34000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,6,7,Ologolo,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +38000000.0,1,0,0,2,2,3,Osapa London,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +130000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,4,Other Ikeja,Detached Duplex,Ikeja +110000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +368000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,1,1,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +160000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +270000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +88000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +240000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,4,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +190000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +80000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +165000000.0,0,0,0,4,6,7,Lekki Phase 1,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,4,6,7,Allen Avenue,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Oregun,Terraced Duplex,Ikeja +120000000.0,1,0,1,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +390000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +50000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +32750000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +65000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,1,4,5,6,Parkview,Detached Duplex,Ikoyi +250000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +150000000.0,1,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,3,4,Osapa London,Semi Detached Duplex,Lekki +32000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +90000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +360000000.0,0,1,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +300000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,4,Ikate,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,3,4,4,Ikota,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +300000000.0,1,1,0,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +53000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +51000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +210000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +430000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +260000000.0,1,0,0,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +205000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +350000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +70000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +385000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +35000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +75000000.0,0,1,0,5,5,6,Agungi,Terraced Duplex,Lekki +58000000.0,0,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,7,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +90000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +75000000.0,0,1,0,6,6,7,Airport Road,Detached Duplex,Ikeja +40000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +125000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +48000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +65000000.0,0,1,0,4,2,2,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +46000000.0,0,0,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,9,0,0,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,0,0,5,5,5,Other Ikeja,Terraced Duplex,Ikeja +150000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +30000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +100000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +70000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +103000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +77000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +87000000.0,0,0,0,3,3,4,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +45000000.0,0,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +320000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +75000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +220000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +200000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,1,4,6,6,GRA,Detached Duplex,Ikeja +80000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +35000000.0,0,0,0,3,4,0,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,5,Onikoyi,Detached Duplex,Ikoyi +75000000.0,1,0,0,3,3,4,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +68000000.0,0,1,0,4,5,4,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Onikoyi,Detached Duplex,Ikoyi +79500000.0,0,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +300000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +350000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +165000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +69500000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +63000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +44000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +100000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +135000000.0,0,0,1,4,5,5,GRA,Terraced Duplex,Ikeja +59500000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +330000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +480000000.0,1,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +45000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Ikota,Terraced Duplex,Lekki +320000000.0,0,1,0,5,5,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +50000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +300000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,0,3,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +45000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +135000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +47000000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +78000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +250000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +260000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,6,Chevron,Detached Duplex,Lekki +170000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Ologolo,Semi Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +52500000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,3,4,5,Chevron,Detached Duplex,Lekki +56000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Other Ikeja,Detached Duplex,Ikeja +180000000.0,0,0,1,5,5,5,Allen Avenue,Detached Duplex,Ikeja +40000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ikota,Terraced Duplex,Lekki +60000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +90000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +55000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +285000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,6,7,7,Ikota,Detached Duplex,Lekki +300000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +270000000.0,0,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +70000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +73000000.0,0,1,0,4,5,5,Ologolo,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +78000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,3,3,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +260000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +390000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,7,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Agungi,Semi Detached Duplex,Lekki +275000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +42000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +390000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +76000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,6,6,6,Old Ikoyi,Detached Duplex,Ikoyi +99000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +120000000.0,0,1,1,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +300000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +65000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +470000000.0,0,0,0,6,6,7,Banana Island,Detached Duplex,Ikoyi +160000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +122000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +220000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,6,6,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +90000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +225000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +260000000.0,1,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +180000000.0,0,0,0,4,3,5,Foreshore,Semi Detached Duplex,Ikoyi +55000000.0,0,1,0,3,3,3,Ikota,Detached Duplex,Lekki +22000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +330000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +70000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,1,4,4,4,Osapa London,Terraced Duplex,Lekki +300000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +300000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +200000000.0,0,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +47000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +55000000.0,1,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +430000000.0,0,1,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +50000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +400000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,1,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +90000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,6,Ikate,Detached Duplex,Lekki +300000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +390000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +73000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +60000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +450000000.0,0,0,1,4,5,4,Banana Island,Terraced Duplex,Ikoyi +80000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +260000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Other Lekki,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +180000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +200000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +45000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +370000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,1,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +47000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +50000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +100000000.0,0,0,0,6,6,6,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +115000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +170000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +175000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +105000000.0,0,1,1,5,5,5,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +230000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,8,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +158000000.0,1,1,0,4,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +380000000.0,0,0,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +160000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +58000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +170000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +46000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +35000000.0,1,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +95000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,0,1,0,4,5,6,Agungi,Semi Detached Duplex,Lekki +135000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +90000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +195000000.0,0,0,0,6,6,6,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +270000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,1,1,5,6,5,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,1,0,2,0,3,Chevron,Terraced Duplex,Lekki +115000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +270000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +38000000.0,0,0,0,4,5,4,Chevron,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,1,6,6,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +34000000.0,0,0,1,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +150000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +92000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +45000000.0,1,1,1,5,6,6,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +72000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +77000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,0,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Agungi,Terraced Duplex,Lekki +155000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +53000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +350000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +400000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,5,Parkview,Detached Duplex,Ikoyi +45000000.0,1,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +76000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +37000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +36500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,5,Other Lekki,Terraced Duplex,Lekki +450000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +60000000.0,1,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +105000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +126000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +310000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +235000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +58000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +127000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,6,5,6,Lekki Phase 1,Detached Duplex,Lekki +320000000.0,0,0,0,8,8,9,Waziri Adeola Odeku,Detached Duplex,Victoria Island +75000000.0,0,0,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +55000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Osapa London,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +180000000.0,0,1,0,6,7,8,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,1,1,0,5,6,6,Opebi,Detached Duplex,Ikeja +60000000.0,0,1,0,4,5,5,Agungi,Terraced Duplex,Lekki +83000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +98000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +98000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +90000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,1,1,4,6,5,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +46000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +55000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +35000000.0,1,1,1,4,5,4,Ikota,Semi Detached Duplex,Lekki +70000000.0,1,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +33000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +390000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +198000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +290000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +44000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +65000000.0,1,0,0,3,3,3,Ikate,Terraced Duplex,Lekki +45000000.0,0,1,0,3,3,3,Chevron,Terraced Duplex,Lekki +85000000.0,1,1,1,5,6,5,Osapa London,Semi Detached Duplex,Lekki +36000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +380000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +350000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,4,5,5,Victoria Island Extension,Terraced Duplex,Victoria Island +48000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +80000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Banana Island,Terraced Duplex,Ikoyi +155000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +48000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +36000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +70000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +250000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +240000000.0,0,1,0,6,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,2,3,4,Ikate,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +54000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,6,6,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +90000000.0,0,1,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +130000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,6,6,6,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +50000000.0,0,0,1,3,4,4,Other Lekki,Terraced Duplex,Lekki +35000000.0,0,1,1,3,3,4,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +250000000.0,1,1,1,4,4,5,GRA,Detached Duplex,Ikeja +90000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +42000000.0,0,1,1,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +82000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,5,GRA,Detached Duplex,Ikeja +105000000.0,1,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,1,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +350000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +140000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +220000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +390000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,4,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +420000000.0,1,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +48000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +400000000.0,0,1,1,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +120000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,6,6,Agungi,Detached Duplex,Lekki +55000000.0,0,0,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +105000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +111000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +190000000.0,0,0,1,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,6,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +62000000.0,0,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,0,0,2,2,2,Oregun,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +94000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +145000000.0,0,1,0,3,3,3,Oniru,Detached Duplex,Victoria Island +70000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +400000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +295000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +61000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +130000000.0,0,0,0,5,4,4,Omole,Detached Duplex,Ikeja +140000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +348000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Agidingbi,Semi Detached Duplex,Ikeja +36000000.0,0,0,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +62000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +180000000.0,1,0,0,5,6,6,Ikate,Detached Duplex,Lekki +65000000.0,0,1,0,4,3,3,Chevron,Semi Detached Duplex,Lekki +450000000.0,1,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +65000000.0,0,0,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +100000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +68000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +260000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Onikoyi,Semi Detached Duplex,Ikoyi +270000000.0,0,1,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +60000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +58000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +122000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +160000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +450000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +230000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +260000000.0,1,1,0,3,3,4,Old Ikoyi,Detached Duplex,Ikoyi +45000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,3,3,4,Foreshore,Terraced Duplex,Ikoyi +65000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +60000000.0,1,1,1,4,4,6,Ikota,Detached Duplex,Lekki +40000000.0,0,0,1,4,4,4,Chevron,Terraced Duplex,Lekki +79000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,1,1,4,5,5,GRA,Detached Duplex,Ikeja +48000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,3,Allen Avenue,Detached Duplex,Ikeja +57000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +47999999.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +40000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +200000000.0,0,1,0,5,6,6,Oregun,Detached Duplex,Ikeja +190000000.0,0,1,0,5,5,7,Ologolo,Detached Duplex,Lekki +450000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +46000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,1,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +110000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,1,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +145000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +160000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +270000000.0,0,0,1,4,4,5,Banana Island,Terraced Duplex,Ikoyi +80000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +33000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +76000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +128000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +175000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,2,3,3,Lekki Phase 1,Terraced Duplex,Lekki +26000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +40000000.0,0,1,1,3,0,0,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,5,Ikota,Terraced Duplex,Lekki +70000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,1,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +38000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Airport Road,Detached Duplex,Ikeja +90000000.0,0,0,0,6,6,7,Lekki Phase 2,Terraced Duplex,Lekki +67000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +210000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +210000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,0,0,3,3,4,Parkview,Detached Duplex,Ikoyi +190000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +200000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +157000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +350000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Agidingbi,Detached Duplex,Ikeja +58000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +77000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +57000000.0,0,1,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +175000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +170000000.0,0,1,1,4,5,5,GRA,Semi Detached Duplex,Ikeja +57000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +285000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +280000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +145000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,6,6,6,Banana Island,Detached Duplex,Ikoyi +500000000.0,1,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +85000000.0,1,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +88000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,1,1,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +69000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,5,7,7,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +500000000.0,0,0,0,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +144000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,Agidingbi,Detached Duplex,Ikeja +90000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +170000000.0,1,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +180000000.0,1,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +50000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +118000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +260000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +205000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +49000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +400000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,7,Ikate,Detached Duplex,Lekki +95000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +133000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +130000000.0,1,0,0,3,3,4,GRA,Terraced Duplex,Ikeja +60000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +190000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,7,7,7,Adeniyi Jones,Detached Duplex,Ikeja +90000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +105000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +46000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +56000000.0,0,1,0,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Allen Avenue,Terraced Duplex,Ikeja +135000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +80000000.0,0,1,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +57000000.0,1,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +360000000.0,1,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +300000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +105000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +160000000.0,1,1,0,4,5,5,GRA,Detached Duplex,Ikeja +200000000.0,1,1,0,6,7,7,Osapa London,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +36000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +150000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,4,Allen Avenue,Detached Duplex,Ikeja +210000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +59000000.0,1,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +220000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +185000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +320000000.0,1,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +55000000.0,0,0,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +65000000.0,0,0,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +235000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +75000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +55000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +350000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,4,4,Osapa London,Terraced Duplex,Lekki +59000000.0,0,1,0,4,6,6,Other Lekki,Detached Duplex,Lekki +20000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +58000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,3,3,3,Victoria Island Extension,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Alausa,Semi Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +37000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +45000000.0,1,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +280000000.0,0,1,0,5,6,7,Oniru,Detached Duplex,Victoria Island +105000000.0,1,0,0,4,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +60000000.0,0,1,0,2,2,3,Adeniyi Jones,Detached Duplex,Ikeja +63000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +79000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +185000000.0,0,1,0,3,3,3,Other Victoria Island,Terraced Duplex,Victoria Island +45000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Opebi,Detached Duplex,Ikeja +130000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +245000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +33000000.0,1,1,0,3,0,0,Chevron,Detached Duplex,Lekki +78000000.0,0,0,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +350000000.0,1,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +47000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +77000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Allen Avenue,Detached Duplex,Ikeja +90000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +370000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +155000000.0,0,1,0,5,4,5,Chevron,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +370000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +140000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,0,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +98500000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +380000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +105000000.0,0,0,0,4,6,5,Ikota,Detached Duplex,Lekki +270000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +105000000.0,1,1,1,3,3,4,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +85000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,1,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +105000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,1,5,6,7,Maryland,Detached Duplex,Ikeja +410000000.0,0,0,0,9,9,10,Other Lekki,Detached Duplex,Lekki +135000000.0,1,1,1,5,5,6,Agungi,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +190000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +220000000.0,0,0,0,3,0,0,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,0,0,4,5,4,Ologolo,Semi Detached Duplex,Lekki +90000000.0,0,0,1,4,3,3,Ologolo,Terraced Duplex,Lekki +75000000.0,0,1,0,4,6,5,GRA,Terraced Duplex,Ikeja +300000000.0,0,1,1,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +79000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +59500000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +54000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +165000000.0,0,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,1,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +88000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +46000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +87000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,1,1,1,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +300000000.0,0,1,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +53000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +33000000.0,0,0,0,3,4,3,Ikota,Terraced Duplex,Lekki +69990000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +240000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +170000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +45000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +175000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,6,Ikate,Detached Duplex,Lekki +380000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +380000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +62000000.0,0,1,0,3,3,3,Victoria Garden City,Terraced Duplex,Lekki +48000000.0,0,0,0,5,6,6,Chevron,Terraced Duplex,Lekki +220000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +42000000.0,1,0,0,4,5,5,Chevron,Detached Duplex,Lekki +290000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +150000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +98000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +164000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +330000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +40000000.0,0,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +450000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +78000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,6,6,7,Other Ikoyi,Detached Duplex,Ikoyi +230000000.0,0,1,0,5,4,5,Agidingbi,Detached Duplex,Ikeja +120000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +33000000.0,0,0,0,3,0,0,Chevron,Terraced Duplex,Lekki +175000000.0,1,1,0,4,5,4,Lekki Phase 1,Terraced Duplex,Lekki +155000000.0,0,0,0,4,5,5,GRA,Terraced Duplex,Ikeja +120000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Chevron,Semi Detached Duplex,Lekki +43000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +85000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +230000000.0,0,1,0,5,6,6,GRA,Detached Duplex,Ikeja +40000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +68000000.0,0,0,1,3,0,0,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,1,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +185000000.0,0,0,0,5,5,6,Foreshore,Terraced Duplex,Ikoyi +80000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Allen Avenue,Semi Detached Duplex,Ikeja +38000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +130000000.0,1,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +135000000.0,0,0,0,5,7,7,Ikate,Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +40000000.0,0,1,1,4,2,2,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +53000000.0,0,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +165000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +170000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,3,3,3,Oniru,Detached Duplex,Victoria Island +48000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +33000000.0,0,0,0,3,5,5,Chevron,Terraced Duplex,Lekki +82000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +69000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,6,7,8,Other Lekki,Detached Duplex,Lekki +33000000.0,0,1,1,3,3,3,Other Lekki,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +59000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +47000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +100000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +85000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,6,6,7,Ikate,Detached Duplex,Lekki +80000000.0,1,1,1,4,3,5,Lekki Phase 1,Semi Detached Duplex,Lekki +290000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +430000000.0,0,0,0,5,6,6,Old Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,3,3,Other Lekki,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Maryland,Detached Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,3,2,4,Ikota,Terraced Duplex,Lekki +36000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +90000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +250000000.0,1,1,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +98000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +305000000.0,0,1,0,5,7,8,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Other Ikeja,Terraced Duplex,Ikeja +160000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +59900000.0,1,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +480000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +70000000.0,0,0,0,6,5,5,Ikota,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +192000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +155000000.0,0,0,0,2,2,3,Awolowo Way,Detached Duplex,Ikeja +185000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +150000000.0,0,0,0,4,4,2,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,1,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +35000000.0,1,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +42000000.0,0,0,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +250000000.0,1,1,1,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +100000000.0,1,1,1,5,7,7,Ikota,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +290000000.0,0,1,1,5,7,7,Oniru,Detached Duplex,Victoria Island +50000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Maryland,Detached Duplex,Ikeja +205000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +280000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +240000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,4,Lekki Phase 2,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +31000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +98000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +27000000.0,0,0,0,4,5,4,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +80000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +370000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +150000000.0,1,1,1,6,6,7,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +57000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +20000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +155000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +235000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,1,1,1,4,6,6,Ikota,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,4,Opebi,Semi Detached Duplex,Ikeja +85000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +59000000.0,1,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +38000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +480000000.0,0,0,0,8,8,9,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +155000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +98000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +69000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +49247000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +85000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +55000000.0,0,0,0,4,5,4,Lekki Phase 2,Detached Duplex,Lekki +115000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +340000000.0,1,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +360000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +160000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +250000000.0,0,0,1,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +100000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +75000000.0,1,1,1,8,8,8,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +130000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +160000000.0,1,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,6,6,Ikota,Detached Duplex,Lekki +60000000.0,1,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +390000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +42000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +225000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,5,4,Ikate,Terraced Duplex,Lekki +280000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +183000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +42000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +300000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +20000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +210000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Allen Avenue,Terraced Duplex,Ikeja +60000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +35000000.0,1,1,0,1,2,2,Ikate,Terraced Duplex,Lekki +25000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +98000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +500000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +50000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +82000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +500000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +49500000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,1,0,1,4,5,4,Osapa London,Detached Duplex,Lekki +45000000.0,0,1,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +56000000.0,0,1,1,4,4,4,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Opebi,Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +35000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +140000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,1,5,4,5,Lekki Phase 2,Detached Duplex,Lekki +69000000.0,0,1,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,1,4,6,6,Airport Road,Semi Detached Duplex,Ikeja +37000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,0,0,3,3,4,Other Victoria Island,Semi Detached Duplex,Victoria Island +87000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +68000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +170000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +190000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +53000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +55000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +60000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +76000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +48000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +60000000.0,1,0,0,4,4,4,Victoria Garden City,Terraced Duplex,Lekki +55000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +96000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +74999999.0,0,0,0,4,5,6,Allen Avenue,Detached Duplex,Ikeja +115000000.0,1,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +235000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +175000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +470000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +200000000.0,0,1,1,5,4,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +75000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +280000000.0,0,1,1,5,6,6,Old Ikoyi,Detached Duplex,Ikoyi +50000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,0,0,6,5,6,Foreshore,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,4,Chevron,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +120000000.0,0,0,0,4,3,1,Other Ikoyi,Semi Detached Duplex,Ikoyi +170000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +65000000.0,0,0,0,5,4,4,Oregun,Detached Duplex,Ikeja +80000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +65000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,1,5,4,6,Agidingbi,Detached Duplex,Ikeja +55000000.0,0,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ologolo,Terraced Duplex,Lekki +85000000.0,0,0,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +175000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +300000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +190000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +88000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +165000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +42000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +380000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,1,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +140000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Agungi,Terraced Duplex,Lekki +47000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +72000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +34000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,4,4,Oregun,Detached Duplex,Ikeja +45000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Awolowo Way,Detached Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,1,4,4,5,Other Ikeja,Detached Duplex,Ikeja +70000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +82000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +55000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +82000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +370000000.0,1,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +49000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +49000000.0,0,1,0,4,4,3,Chevron,Semi Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +350000000.0,1,1,0,5,5,5,Foreshore,Detached Duplex,Ikoyi +260000000.0,0,0,1,4,4,5,GRA,Detached Duplex,Ikeja +68000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Opebi,Terraced Duplex,Ikeja +80000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +93000000.0,0,0,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +90000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +120000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +370000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +230000000.0,1,1,1,5,5,5,Parkview,Semi Detached Duplex,Ikoyi +85000000.0,1,1,0,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +50000000.0,0,1,1,5,6,6,Ikota,Semi Detached Duplex,Lekki +270000000.0,0,0,0,3,3,4,Old Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +60000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +39000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +75000000.0,0,0,1,6,6,6,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,1,1,0,4,5,6,Ikota,Detached Duplex,Lekki +77000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +300000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +195000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +55000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Maryland,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +69000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,3,4,Alausa,Semi Detached Duplex,Ikeja +165000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +215000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +70000000.0,1,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +100000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +58000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +420000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +90000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +130000000.0,0,1,1,6,7,7,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +37000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +40000000.0,0,0,1,3,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +37000000.0,0,1,1,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +165000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +92000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +125000000.0,1,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +47000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +480000000.0,0,1,0,7,8,8,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,3,4,4,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +120000000.0,1,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,0,1,5,5,5,Other Ikeja,Detached Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +265000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +380000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +45000000.0,0,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +70000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +175000000.0,0,1,0,4,4,6,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Onikoyi,Semi Detached Duplex,Ikoyi +50000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +79000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +145000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +42000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,2,3,2,Other Ikoyi,Terraced Duplex,Ikoyi +130000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +500000000.0,0,1,1,6,6,7,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +43000000.0,1,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,7,6,Other Lekki,Detached Duplex,Lekki +92000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,0,1,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +90000000.0,0,1,1,5,3,4,Chevron,Detached Duplex,Lekki +198000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +58000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +57000000.0,0,0,0,5,5,5,Ikate,Terraced Duplex,Lekki +150000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +118000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +52000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,1,1,0,5,6,6,Victoria Island Extension,Detached Duplex,Victoria Island +63000000.0,0,1,0,4,3,3,Lekki Phase 2,Semi Detached Duplex,Lekki +310000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +36000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +88000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +87000000.0,0,0,0,10,10,10,Omole,Detached Duplex,Ikeja +55000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +270000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +57172500.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +73000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,1,5,6,6,Airport Road,Detached Duplex,Ikeja +420000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +105000000.0,0,0,0,5,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +400000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +168000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +160000000.0,0,0,1,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +72000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +38000000.0,0,0,0,3,4,3,Lekki Phase 2,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +285000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +160000000.0,1,1,0,3,4,4,Oniru,Detached Duplex,Victoria Island +130000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +170000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +500000000.0,0,0,0,4,3,4,GRA,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000999.0,0,1,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +140000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +470000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +42000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +130000000.0,0,0,0,3,0,0,Allen Avenue,Detached Duplex,Ikeja +105000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +59500000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +450000000.0,1,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +45000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +395000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +35000000.0,1,1,0,3,4,5,Chevron,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +75000000.0,0,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +182000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +49500000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +280000000.0,1,1,1,3,3,4,Banana Island,Terraced Duplex,Ikoyi +38000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +220000000.0,0,0,1,4,4,5,Oniru,Detached Duplex,Victoria Island +95000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,4,Ikota,Detached Duplex,Lekki +180000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +75000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +50000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +50000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +50000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,1,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,4,3,3,Other Lekki,Detached Duplex,Lekki +37000000.0,0,0,0,2,2,3,Lekki Phase 2,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +460000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +250000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,4,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +43000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +278000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +360000000.0,0,1,1,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +85000000.0,0,0,0,5,4,6,Allen Avenue,Detached Duplex,Ikeja +130000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +60000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +435000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,0,0,6,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,1,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +58000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +120000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,4,4,Oregun,Detached Duplex,Ikeja +450000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,7,5,5,Lekki Phase 1,Detached Duplex,Lekki +29000000.0,1,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +250000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +160000000.0,0,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +57000000.0,0,1,1,4,6,7,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +160000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,1,5,5,5,Ikate,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +48000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +235000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +230000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +290000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +90000000.0,0,0,0,4,5,6,Victoria Garden City,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,3,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +115000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +197500000.0,1,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +95000000.0,0,1,0,4,4,1,Ikate,Semi Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +350000000.0,0,0,1,4,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +65000000.0,0,0,0,3,3,4,Oniru,Detached Duplex,Victoria Island +200000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,4,4,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +168000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +35000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +28000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +195000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +180000000.0,0,0,0,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +80000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +74000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +300000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Parkview,Detached Duplex,Ikoyi +128000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +105000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +123000000.0,1,1,1,5,7,6,Adeniyi Jones,Terraced Duplex,Ikeja +40000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,3,4,4,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +88000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +130000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +183000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +49000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +400000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +75000000.0,0,1,0,6,6,6,Ikota,Semi Detached Duplex,Lekki +61750000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +310000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +135000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +360000000.0,1,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +41000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +245000000.0,1,1,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +175000000.0,0,1,1,5,7,7,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +40000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +67500000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +265000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,4,5,6,Oniru,Detached Duplex,Victoria Island +260000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +240000000.0,0,1,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +250000000.0,0,1,0,5,5,4,Oniru,Semi Detached Duplex,Victoria Island +145000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +270000000.0,0,1,1,5,7,7,Oniru,Semi Detached Duplex,Victoria Island +400000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +49000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +59500000.0,1,1,0,4,5,4,Lekki Phase 2,Semi Detached Duplex,Lekki +52000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +290000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +35000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Opebi,Terraced Duplex,Ikeja +220000000.0,0,0,0,10,10,10,Osapa London,Detached Duplex,Lekki +100000000.0,1,0,0,3,4,5,Oniru,Terraced Duplex,Victoria Island +300000000.0,0,1,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +80000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +40000000.0,0,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,1,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,0,0,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +222000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +49000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +365000000.0,0,0,0,5,6,6,Parkview,Detached Duplex,Ikoyi +190000000.0,0,0,0,6,7,7,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,1,1,5,5,7,Other Lekki,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +125000000.0,1,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +30000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +100000000.0,0,0,0,6,6,6,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +70000000.0,1,1,0,3,3,3,Oniru,Detached Duplex,Victoria Island +185000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +225000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,1,1,0,4,4,6,Lekki Phase 2,Detached Duplex,Lekki +56000000.0,0,0,1,5,5,5,Omole,Detached Duplex,Ikeja +270000000.0,0,1,1,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +100000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +125000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Maryland,Semi Detached Duplex,Ikeja +105000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,4,5,Other Lekki,Detached Duplex,Lekki +63000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,1,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Ikate,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,4,3,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +32000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +195000000.0,0,1,0,3,3,3,Other Victoria Island,Terraced Duplex,Victoria Island +61000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +270000000.0,0,0,0,6,6,6,Chevron,Detached Duplex,Lekki +230000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Awolowo Way,Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +30000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +57000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +85000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,2,0,0,Ikate,Terraced Duplex,Lekki +170000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +135000000.0,1,1,0,5,6,7,Ikate,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +68000000.0,1,1,1,4,5,6,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +100000000.0,1,1,1,5,7,7,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +114000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +59000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +185000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,5,5,Maryland,Semi Detached Duplex,Ikeja +95000000.0,0,0,0,5,6,5,Ikota,Detached Duplex,Lekki +125000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +82000000.0,0,0,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +130000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +70000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +64000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,1,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +45000000.0,0,0,0,3,3,4,Agungi,Detached Duplex,Lekki +80000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +260000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +69500000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +42000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,5,6,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,4,3,3,Ikota,Semi Detached Duplex,Lekki +33000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +30000000.0,0,1,1,3,3,3,Victoria Garden City,Terraced Duplex,Lekki +100000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Adeniyi Jones,Terraced Duplex,Ikeja +165000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +165000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +55000000.0,1,1,0,5,6,7,Ikota,Terraced Duplex,Lekki +23800000.0,0,0,0,2,0,0,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,4,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +110000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,1,5,5,5,Agungi,Semi Detached Duplex,Lekki +78000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +128000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +74000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +105000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,4,3,3,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +185000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +180000000.0,0,1,0,4,4,4,GRA,Detached Duplex,Ikeja +55000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +66000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +295000000.0,1,1,0,4,5,5,Other Ikeja,Detached Duplex,Ikeja +65000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,0,0,2,2,3,Ikota,Terraced Duplex,Lekki +220000000.0,1,1,0,3,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +140000000.0,0,1,0,5,6,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +53000000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,1,0,4,5,6,Agungi,Detached Duplex,Lekki +60000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,5,4,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,1,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +39000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +100000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +230000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,0,0,3,3,4,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +36000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +210000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +185000000.0,1,1,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +125000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,1,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,1,1,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +57000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +120000000.0,0,1,0,5,5,4,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +170000000.0,0,0,1,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,1,1,4,3,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,5,5,6,Airport Road,Detached Duplex,Ikeja +85000000.0,0,0,0,5,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +95000000.0,0,0,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +49000000.0,0,0,0,3,3,3,Osapa London,Terraced Duplex,Lekki +185000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +220000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +190000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +33000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +168000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +137000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +170000000.0,1,1,1,5,5,5,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +40000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +250000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +48000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,1,1,5,5,6,Agungi,Detached Duplex,Lekki +155000000.0,0,0,0,6,6,7,GRA,Terraced Duplex,Ikeja +170000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +59000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +30000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +20000000.0,1,1,1,4,6,6,Ikota,Terraced Duplex,Lekki +75000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +92000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +200000000.0,0,1,0,4,4,6,Other Ikoyi,Terraced Duplex,Ikoyi +125000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +165000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +135000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +290000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +115000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +280000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +62000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,0,0,4,6,7,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +280000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +130000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +140000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +40000000.0,1,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +56000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +290000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +44000000.0,0,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +84000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +170000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,0,0,6,7,8,Chevron,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +110000000.0,0,1,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,8,7,7,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +135000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +63000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +128000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +150000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +67500000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +400000000.0,0,1,0,4,4,4,Parkview,Detached Duplex,Ikoyi +115000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +80000000.0,0,0,0,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +93000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +480000000.0,0,1,1,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +70000000.0,1,1,0,5,8,8,Chevron,Detached Duplex,Lekki +99000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +350000000.0,0,1,0,4,5,5,Old Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +45000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +50000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +150000000.0,1,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +150000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +53000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +75000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +153000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +250000000.0,0,0,0,4,4,6,GRA,Detached Duplex,Ikeja +230000000.0,0,0,0,5,5,4,Ikate,Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Agungi,Detached Duplex,Lekki +95000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +450000000.0,0,0,0,10,10,10,Opebi,Detached Duplex,Ikeja +230000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +440000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +80000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +195000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +280000000.0,0,0,0,7,6,6,Other Lekki,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +110000000.0,1,1,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +350000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,1,0,5,6,7,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +120000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +66000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +72000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +50000000.0,0,0,0,5,4,5,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +270000000.0,0,1,1,5,6,6,Ologolo,Detached Duplex,Lekki +40000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +40000000.0,0,1,1,4,4,6,Chevron,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +220000000.0,0,0,0,4,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +57000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +98000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +51000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Other Ikeja,Terraced Duplex,Ikeja +115000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +190000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +125000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +45000000.0,0,1,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,3,6,6,Chevron,Detached Duplex,Lekki +270000000.0,0,0,0,4,4,6,Parkview,Detached Duplex,Ikoyi +295000000.0,1,1,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +260000000.0,0,1,0,3,0,0,Other Ikoyi,Detached Duplex,Ikoyi +100000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,0,0,3,3,4,Agungi,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +34000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,6,Chevron,Terraced Duplex,Lekki +75000000.0,0,0,0,4,5,4,Allen Avenue,Semi Detached Duplex,Ikeja +330000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +135000000.0,0,1,1,6,6,7,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +77000000.0,0,1,0,3,4,4,Allen Avenue,Terraced Duplex,Ikeja +115000000.0,0,0,0,6,5,5,Chevron,Detached Duplex,Lekki +60500000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +450000000.0,1,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +115000000.0,0,0,1,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,0,0,0,6,7,7,Banana Island,Detached Duplex,Ikoyi +85000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +135000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,1,1,5,7,7,Osapa London,Detached Duplex,Lekki +16500000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +170000000.0,1,0,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,4,Omole,Detached Duplex,Ikeja +160000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +65000000.0,0,1,0,3,3,4,Opebi,Semi Detached Duplex,Ikeja +45000000.0,0,0,0,4,3,4,Ikota,Semi Detached Duplex,Lekki +59000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +190000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,5,7,7,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +50000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +70000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +250000000.0,0,1,0,6,5,8,Victoria Garden City,Detached Duplex,Lekki +56000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +300000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +40000000.0,0,1,1,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +230000000.0,1,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +250000000.0,0,0,0,5,4,4,GRA,Detached Duplex,Ikeja +250000000.0,0,0,1,5,6,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +450000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +170000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +500000000.0,0,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +60000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +99500000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +65000000.0,0,0,1,6,7,7,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,6,7,7,GRA,Detached Duplex,Ikeja +70000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,Agungi,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +42000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +40000000.0,0,1,0,2,0,0,Ikota,Terraced Duplex,Lekki +140000000.0,0,1,1,5,5,5,Agungi,Detached Duplex,Lekki +290000000.0,0,1,0,5,6,7,Parkview,Detached Duplex,Ikoyi +230000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +50000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +59000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +32500000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +260000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +39000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +450000000.0,0,1,0,4,6,7,Other Ikoyi,Detached Duplex,Ikoyi +165000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +30000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,3,4,4,Old Ikoyi,Terraced Duplex,Ikoyi +38000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,3,3,3,Agungi,Terraced Duplex,Lekki +39000000.0,0,1,1,3,3,4,Chevron,Detached Duplex,Lekki +55000000.0,1,1,0,3,3,3,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +81000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +105000000.0,0,1,0,3,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +66000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +135000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +175000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +100000000.0,0,1,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +60000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +270000000.0,0,1,0,7,6,8,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +49000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +270000000.0,0,0,0,5,3,3,Other Victoria Island,Detached Duplex,Victoria Island +53000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,1,0,3,4,4,Osapa London,Terraced Duplex,Lekki +18975000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +68000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +270000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +58000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +62000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +130000000.0,0,1,0,5,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +97000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +230000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,7,7,7,Victoria Garden City,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +155000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +69000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +33000000.0,0,1,0,3,5,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +105000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +120000000.0,1,1,1,4,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +70000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Ologolo,Detached Duplex,Lekki +330000000.0,0,0,0,5,5,6,Other Victoria Island,Terraced Duplex,Victoria Island +55000000.0,0,1,0,4,4,5,Opebi,Terraced Duplex,Ikeja +350000000.0,0,0,0,9,9,10,Other Lekki,Detached Duplex,Lekki +360000000.0,1,1,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +250000000.0,1,0,1,5,7,7,Oniru,Semi Detached Duplex,Victoria Island +100000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +200000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +67000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +350000000.0,1,0,1,3,3,4,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,0,0,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +68000000.0,0,0,0,6,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +210000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +71000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,3,5,Ikate,Detached Duplex,Lekki +33500000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +72000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +115000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +395000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +40000000.0,0,0,0,4,5,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +130000000.0,0,0,0,3,0,0,Other Victoria Island,Terraced Duplex,Victoria Island +85000000.0,0,1,0,5,6,7,Chevron,Semi Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +135000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +76000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,1,1,5,7,7,Agidingbi,Detached Duplex,Ikeja +85000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,1,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,7,8,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +115000000.0,1,1,1,5,5,5,Ikota,Detached Duplex,Lekki +32000000.0,0,1,0,3,3,3,Lekki Phase 2,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +350000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Omole,Semi Detached Duplex,Ikeja +60000000.0,0,1,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +155000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Other Ikeja,Semi Detached Duplex,Ikeja +56000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +250000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,3,3,Osapa London,Detached Duplex,Lekki +198000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +280000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +55000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +140000000.0,0,0,1,5,6,6,Omole,Detached Duplex,Ikeja +140000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +95000000.0,0,1,0,4,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +76000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +32000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,0,1,1,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +98000000.0,1,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +170000000.0,0,1,0,5,5,5,GRA,Semi Detached Duplex,Ikeja +200000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +73000000.0,0,1,0,4,7,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,4,3,4,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,6,6,7,Ikota,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +295000000.0,0,1,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +67000000.0,0,0,1,4,5,5,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,3,3,4,Oniru,Detached Duplex,Victoria Island +52000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +96000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Alausa,Detached Duplex,Ikeja +30000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +38000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +29000000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +165000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +185000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +350000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +110000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,3,0,0,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,1,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +65000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,6,7,Agungi,Semi Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Oregun,Detached Duplex,Ikeja +53000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +56000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +54500000.0,1,1,1,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +190000000.0,0,0,0,5,5,5,Opebi,Detached Duplex,Ikeja +75000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +55000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +37000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +235000000.0,0,1,0,5,5,7,GRA,Detached Duplex,Ikeja +170000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Agungi,Terraced Duplex,Lekki +49000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +72000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,1,1,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +63000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +79000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,3,3,3,Oregun,Detached Duplex,Ikeja +350000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +170000000.0,0,1,1,5,5,6,Opebi,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +240000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +170000000.0,0,0,0,7,7,8,Ikate,Terraced Duplex,Lekki +50000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +89000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +40000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +115000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +86000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +230000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +140000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +81000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +220000000.0,0,0,0,6,5,5,Other Ikoyi,Detached Duplex,Ikoyi +185000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +45000000.0,1,1,1,3,4,4,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +65000000.0,1,0,0,4,5,5,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,6,7,7,Lekki Phase 2,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,1,0,0,4,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Victoria Garden City,Detached Duplex,Lekki +45000000.0,0,0,1,4,5,5,Agungi,Detached Duplex,Lekki +50000000.0,1,0,1,3,0,0,Chevron,Terraced Duplex,Lekki +140000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +65000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,7,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,3,4,GRA,Terraced Duplex,Ikeja +380000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +88000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +42000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +180000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +55000000.0,0,1,0,6,7,7,Opebi,Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +135000000.0,0,1,0,4,4,6,Other Lekki,Detached Duplex,Lekki +185000000.0,0,1,1,5,5,6,Ikate,Semi Detached Duplex,Lekki +350000000.0,0,0,0,10,10,10,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +160000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +52000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,6,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +48000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,4,5,5,Osapa London,Terraced Duplex,Lekki +90000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,1,3,4,4,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Opebi,Terraced Duplex,Ikeja +470000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +310000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +57000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +73000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +78000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +140000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +58000000.0,0,1,0,5,6,6,Osapa London,Terraced Duplex,Lekki +110000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,1,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +77000000.0,0,1,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +220000000.0,0,1,1,5,6,6,Alausa,Detached Duplex,Ikeja +80000000.0,0,0,0,6,5,5,Ikate,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +215000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +56000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +77000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +99000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +46000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,4,5,Opebi,Detached Duplex,Ikeja +60000000.0,0,1,0,4,2,3,GRA,Semi Detached Duplex,Ikeja +150000000.0,1,0,0,4,5,5,GRA,Terraced Duplex,Ikeja +250000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +165000000.0,0,1,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +110000000.0,0,1,0,7,7,7,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +73000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +210000000.0,0,0,1,5,7,7,Lekki Phase 1,Semi Detached Duplex,Lekki +190000000.0,0,1,1,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +220000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +170000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +50000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +200000000.0,1,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +480000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +100000000.0,0,0,0,5,4,5,Adeniyi Jones,Detached Duplex,Ikeja +125000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +200000000.0,0,1,1,5,5,5,GRA,Detached Duplex,Ikeja +80000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +140000000.0,1,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +230000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,10,10,10,Opebi,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +78000000.0,0,1,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +320000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +40000000.0,0,0,0,2,2,3,Ikota,Terraced Duplex,Lekki +150000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +48000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +95000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,1,4,5,5,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +290000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +60000000.0,1,1,0,3,4,4,Osapa London,Detached Duplex,Lekki +41000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +73000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +68000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +275000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +200000000.0,1,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Ologolo,Terraced Duplex,Lekki +115000000.0,0,1,0,4,5,6,Ikate,Terraced Duplex,Lekki +75000000.0,0,0,1,4,4,4,Ikate,Terraced Duplex,Lekki +22000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +110000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Lekki Phase 2,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +35000000.0,0,1,0,3,2,3,Adeniyi Jones,Terraced Duplex,Ikeja +65000000.0,1,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +220000000.0,0,1,0,6,7,7,Ikota,Detached Duplex,Lekki +51000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,1,4,4,5,Osapa London,Terraced Duplex,Lekki +125000000.0,0,1,0,5,7,7,Oniru,Terraced Duplex,Victoria Island +120000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,1,8,0,0,Allen Avenue,Detached Duplex,Ikeja +150000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,6,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,10,10,10,Allen Avenue,Detached Duplex,Ikeja +130000000.0,1,0,1,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +40000000.0,1,1,0,2,2,3,Osapa London,Terraced Duplex,Lekki +185000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +40000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +175000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +160000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +30000000.0,0,1,0,4,6,6,Other Lekki,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,0,10,10,10,Allen Avenue,Detached Duplex,Ikeja +65000000.0,0,0,0,4,5,6,Agungi,Detached Duplex,Lekki +225000000.0,0,1,0,6,5,6,GRA,Detached Duplex,Ikeja +24000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +70000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +50000000.0,0,0,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +112000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,1,1,4,5,6,Lekki Phase 1,Terraced Duplex,Lekki +450000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,6,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +400000000.0,0,0,1,4,5,5,Onikoyi,Semi Detached Duplex,Ikoyi +110000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +210000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,7,7,Ikate,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +88000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +350000000.0,0,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +125000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +280000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +185000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +92000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +480000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +48000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +56000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +77000000.0,0,0,0,3,3,4,Oniru,Detached Duplex,Victoria Island +95000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +320000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +350000000.0,0,0,0,6,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Allen Avenue,Detached Duplex,Ikeja +57000000.0,0,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,1,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +50000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +290000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +72000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Awolowo Way,Detached Duplex,Ikeja +130000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +135000000.0,0,0,0,5,4,6,Agungi,Detached Duplex,Lekki +83000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Banana Island,Terraced Duplex,Ikoyi +175000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +280000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,8,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +150005000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Lekki Phase 1,Terraced Duplex,Lekki +77000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,1,0,1,5,5,5,GRA,Detached Duplex,Ikeja +40000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +125000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,1,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +90000000.0,0,1,1,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +38000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,1,1,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +350000000.0,0,0,0,6,7,7,Victoria Garden City,Detached Duplex,Lekki +48000000.0,0,0,0,3,3,3,Ikate,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,1,0,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +205000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +230000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +230000000.0,1,1,1,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +100000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +28000000.0,1,1,0,2,2,2,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +290000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,3,Other Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +350000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,0,0,4,5,5,GRA,Detached Duplex,Ikeja +37000000.0,0,1,1,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Allen Avenue,Terraced Duplex,Ikeja +63000000.0,0,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +73000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +299999999.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +40000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +115000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +95000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +69000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,1,1,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +82000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +170000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +255000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +52000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +50000000.0,1,1,0,2,3,3,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +500000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +225000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +380000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,7,7,GRA,Detached Duplex,Ikeja +75000000.0,1,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +240000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +240000000.0,1,1,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +50000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +180000000.0,1,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +35000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +37000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,1,1,6,7,7,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,0,0,6,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +76000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,1,1,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +410000000.0,0,0,0,6,6,6,Ikate,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +35000000.0,0,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +47000000.0,0,0,0,3,3,4,Ologolo,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +65000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +330000000.0,0,1,0,5,5,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +85000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +70000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,0,4,5,6,Ikate,Detached Duplex,Lekki +73000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +52000000.0,1,1,0,2,3,3,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Victoria Garden City,Detached Duplex,Lekki +185000000.0,0,1,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +100000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,9,9,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,5,Agungi,Terraced Duplex,Lekki +350000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Opebi,Semi Detached Duplex,Ikeja +140000000.0,1,1,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,3,4,4,Oregun,Semi Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +75000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +165000000.0,0,0,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,5,Oregun,Semi Detached Duplex,Ikeja +95000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +230000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +17675000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +82000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,1,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +395000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +115000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +120000000.0,0,1,0,6,6,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +220000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,3,0,0,Chevron,Terraced Duplex,Lekki +100000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +120000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +110000000.0,0,1,0,5,4,4,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,3,3,3,Oniru,Terraced Duplex,Victoria Island +300000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +55000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +87000000.0,0,1,1,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +380000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,7,7,8,Parkview,Detached Duplex,Ikoyi +60000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +48000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +76000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +175000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +450000000.0,0,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +50000000.0,1,1,1,4,4,6,Chevron,Detached Duplex,Lekki +39000000.0,0,1,1,3,3,4,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +120000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +270000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +77000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +195000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +320000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +68000000.0,0,1,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Detached Duplex,Lekki +250000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +105000000.0,0,1,1,6,7,7,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +140000000.0,0,1,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +150000000.0,1,0,1,5,5,6,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +75000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,5,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,3,3,4,Other Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +150000000.0,1,1,1,4,5,5,Parkview,Detached Duplex,Ikoyi +320000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +450000000.0,1,1,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +32000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +57000000.0,1,1,0,4,4,2,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,1,4,5,4,Osapa London,Semi Detached Duplex,Lekki +88000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +300000000.0,0,0,0,7,7,8,Ikate,Terraced Duplex,Lekki +230000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +46200000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +59000000.0,0,1,1,5,5,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +55000000.0,0,0,0,3,4,4,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,7,Ologolo,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,0,0,6,6,7,Agungi,Terraced Duplex,Lekki +150000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +25000000.0,0,1,0,2,3,2,Omole,Detached Duplex,Ikeja +135000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +80000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,5,4,5,Ikate,Detached Duplex,Lekki +125000000.0,0,0,0,5,7,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,3,3,4,Ikate,Detached Duplex,Lekki +85000000.0,1,1,1,5,5,6,Awolowo Way,Detached Duplex,Ikeja +85000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +58000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,0,0,3,4,4,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,4,Osapa London,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +197000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +46000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +56000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +58000000.0,0,1,1,5,5,6,Chevron,Semi Detached Duplex,Lekki +195000000.0,1,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +450000000.0,0,0,0,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +49500000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +53000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +165000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +185000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,5,4,4,Awolowo Way,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +58000000.0,0,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +400000000.0,0,0,1,5,5,6,Omole,Detached Duplex,Ikeja +45000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,1,1,1,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +65000000.0,0,1,0,3,4,4,Osapa London,Terraced Duplex,Lekki +144000000.0,1,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,1,5,5,6,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Victoria Island Extension,Detached Duplex,Victoria Island +90000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +48000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +135000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,0,0,3,4,5,Chevron,Terraced Duplex,Lekki +90000000.0,1,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +38500000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +31000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +68000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +38900000.0,1,1,1,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +60000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +380000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +55000000.0,1,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +98000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +200000000.0,0,0,0,5,6,6,Parkview,Semi Detached Duplex,Ikoyi +280000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +92000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +445000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +95000000.0,0,0,0,6,6,6,Allen Avenue,Detached Duplex,Ikeja +210000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,6,Lekki Phase 1,Terraced Duplex,Lekki +350000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +83000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +380000000.0,0,1,1,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,1,4,6,6,Agungi,Detached Duplex,Lekki +120000000.0,1,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +210000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,6,7,6,Oregun,Detached Duplex,Ikeja +89000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,7,6,Ikate,Detached Duplex,Lekki +160000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +160000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,1,4,6,6,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,0,1,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +90000000.0,0,0,0,4,6,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +40000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +220000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +39000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +500000000.0,1,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +280000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +135000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +78000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +120000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,3,3,Other Lekki,Detached Duplex,Lekki +163000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +40000000.0,0,0,0,4,5,4,Chevron,Terraced Duplex,Lekki +125000000.0,0,0,0,5,6,7,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +410000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,4,5,6,Oniru,Detached Duplex,Victoria Island +48500000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +58000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +260000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +280000000.0,0,0,0,6,5,6,Other Victoria Island,Detached Duplex,Victoria Island +65000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,6,6,7,Ikate,Detached Duplex,Lekki +55000000.0,1,1,0,6,6,7,Chevron,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +285000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +160000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +45000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +50000000.0,0,1,0,3,4,4,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +150000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +89000000.0,0,1,0,6,6,7,Lekki Phase 2,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,7,Ikate,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,6,Opebi,Semi Detached Duplex,Ikeja +55000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +24000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,5,4,6,Agungi,Detached Duplex,Lekki +58000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +56000000.0,1,1,0,4,5,6,Osapa London,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +28000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Alausa,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +69000000.0,0,1,0,4,5,5,Opebi,Terraced Duplex,Ikeja +200000000.0,0,1,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +72000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,6,5,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,3,5,Adeniyi Jones,Terraced Duplex,Ikeja +120000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +76000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +32000000.0,0,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +36500000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +185000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +59000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +48000000.0,0,0,0,3,3,3,Oregun,Detached Duplex,Ikeja +68000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Osapa London,Terraced Duplex,Lekki +87000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +500000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +320000000.0,0,1,0,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +380000000.0,1,1,1,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,4,Opebi,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,0,0,2,2,3,Old Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +46000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,6,Other Victoria Island,Terraced Duplex,Victoria Island +300000000.0,0,0,0,8,0,8,Other Victoria Island,Detached Duplex,Victoria Island +80000000.0,0,1,1,6,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +110000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +31000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +69000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +77000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +31000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +45000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,0,1,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +120000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Awolowo Way,Detached Duplex,Ikeja +280000000.0,1,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +300000000.0,0,1,0,5,6,6,Alausa,Detached Duplex,Ikeja +250000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +39000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +12000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +74000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +135000000.0,1,1,0,5,6,6,Agungi,Detached Duplex,Lekki +45000000.0,0,1,1,4,5,5,Victoria Garden City,Detached Duplex,Lekki +10000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,3,3,4,Oniru,Detached Duplex,Victoria Island +120000000.0,1,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,6,Adeniyi Jones,Detached Duplex,Ikeja +56000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,5,5,Foreshore,Detached Duplex,Ikoyi +70000000.0,0,1,0,3,4,4,Ikota,Semi Detached Duplex,Lekki +350000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,9,0,0,Victoria Garden City,Terraced Duplex,Lekki +500000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +43000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,5,6,6,Victoria Island Extension,Detached Duplex,Victoria Island +48000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +59000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,1,4,4,4,GRA,Detached Duplex,Ikeja +500000000.0,0,1,1,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +68000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +59000000.0,0,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +69000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +270000000.0,0,0,0,4,4,4,Banana Island,Detached Duplex,Ikoyi +95000000.0,1,1,0,4,6,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +230000000.0,0,1,1,4,5,5,Oniru,Semi Detached Duplex,Victoria Island +150000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Opebi,Semi Detached Duplex,Ikeja +180000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +22000000.0,0,0,0,1,1,2,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +245000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +270000000.0,0,0,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +65000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,0,1,1,4,5,5,Omole,Semi Detached Duplex,Ikeja +36000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +35000000.0,0,0,0,2,2,2,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +170000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +285000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,1,1,1,5,6,6,Ikate,Detached Duplex,Lekki +390000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,1,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +173000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +500000000.0,0,0,0,6,6,7,Banana Island,Semi Detached Duplex,Ikoyi +55000000.0,1,0,0,3,4,4,Lekki Phase 2,Terraced Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +400000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +240000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +48000000.0,0,1,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +28000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +370000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +120000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +110000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +300000000.0,0,1,0,6,6,8,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +390000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +35000000.0,0,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +195000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,5,Other Victoria Island,Detached Duplex,Victoria Island +200000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +125000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +480000000.0,0,1,1,5,5,5,Onikoyi,Detached Duplex,Ikoyi +148000000.0,0,1,0,4,4,6,GRA,Detached Duplex,Ikeja +120000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +125000000.0,0,0,0,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +120000000.0,0,0,0,5,4,4,Other Lekki,Terraced Duplex,Lekki +125000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +270000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +41000000.0,0,0,0,2,2,3,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +170000000.0,0,0,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +46000000.0,1,1,1,4,4,6,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +280000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +67000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +85000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +150000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,1,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +250000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +23000000.0,1,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +125000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +180000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +96000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +80000000.0,0,0,1,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +400000000.0,0,1,0,5,5,6,Opebi,Detached Duplex,Ikeja +45000000.0,0,1,0,4,6,6,Ikota,Detached Duplex,Lekki +400000000.0,1,1,1,4,6,6,Old Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +130000000.0,0,0,1,4,4,5,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +42000000.0,0,1,1,3,3,3,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +70000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,0,0,6,5,5,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,7,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +170000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Alausa,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +250000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +40000000.0,1,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +68000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +77500000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +105000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +190000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +340000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,1,5,5,5,Ikate,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +60000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +180000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +200000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +110000000.0,0,1,0,4,5,4,Other Ikeja,Detached Duplex,Ikeja +78000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +20000000.0,1,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +135000000.0,0,0,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,0,1,1,4,4,4,GRA,Detached Duplex,Ikeja +62500000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,1,1,4,4,6,Victoria Garden City,Detached Duplex,Lekki +260000000.0,0,0,0,4,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,0,0,Opebi,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,6,Victoria Island Extension,Detached Duplex,Victoria Island +310000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +280000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +150000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,1,1,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +78000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +80000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +300000000.0,1,1,1,5,6,6,Victoria Garden City,Detached Duplex,Lekki +62000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +97000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +73000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +130000000.0,1,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,3,0,0,Opebi,Detached Duplex,Ikeja +98000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +120000000.0,0,0,0,8,0,0,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,5,4,5,Chevron,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +55000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +49000000.0,0,0,0,3,2,4,Osapa London,Terraced Duplex,Lekki +59000000.0,0,0,0,5,6,7,Lekki Phase 2,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +57000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +76000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +39000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +57000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +410000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,0,3,3,5,Osapa London,Detached Duplex,Lekki +260000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +97000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +42000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +165000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +200000000.0,0,0,0,4,5,5,GRA,Detached Duplex,Ikeja +75000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +20000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +250000000.0,1,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +280000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +74000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +180000000.0,0,1,1,5,7,7,Victoria Garden City,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +42000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +92000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +68000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Omole,Detached Duplex,Ikeja +350000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +85000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +500000000.0,0,0,0,7,0,0,Other Ikoyi,Detached Duplex,Ikoyi +105000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +130000000.0,1,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +135000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,1,1,1,4,5,6,Ikota,Detached Duplex,Lekki +220000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,6,5,5,Ikota,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +47000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +53100000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +48000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +68000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +54000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +209000000.0,1,0,0,5,5,5,Ikota,Detached Duplex,Lekki +38000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,5,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,5,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +45000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +175000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +53000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +120000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,0,1,1,3,5,5,Other Victoria Island,Detached Duplex,Victoria Island +65000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +430000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,0,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,1,1,1,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +50000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +380000000.0,1,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +190000000.0,0,0,0,9,9,10,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +28000000.0,0,0,0,2,2,3,Chevron,Terraced Duplex,Lekki +95000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +200000000.0,0,0,0,7,7,7,Opebi,Detached Duplex,Ikeja +46000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +82000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,1,4,6,6,GRA,Detached Duplex,Ikeja +150000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,1,4,5,4,Osapa London,Terraced Duplex,Lekki +75000000.0,0,1,0,3,4,4,Other Ikeja,Terraced Duplex,Ikeja +120000000.0,0,0,1,5,4,5,Victoria Garden City,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,2,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +37000000.0,1,1,0,2,2,2,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +97000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +300000000.0,0,1,1,4,6,6,Other Ikoyi,Terraced Duplex,Ikoyi +80000000.0,0,0,1,3,3,4,Agungi,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,1,0,5,6,5,Ikota,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +285000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +120000000.0,1,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +300000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +450000000.0,0,0,0,4,6,6,Banana Island,Detached Duplex,Ikoyi +220000000.0,0,0,0,5,6,6,Agidingbi,Detached Duplex,Ikeja +128000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +500000000.0,0,1,0,7,7,7,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +160000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +260000000.0,1,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +230000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +450000000.0,0,1,0,6,7,7,Osapa London,Detached Duplex,Lekki +450000000.0,1,0,0,5,6,7,Other Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +100000000.0,0,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,GRA,Terraced Duplex,Ikeja +90000000.0,0,1,0,6,6,7,Ikota,Detached Duplex,Lekki +50000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,0,0,3,4,3,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +250000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +100000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +48000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +295000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +93000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +350000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,4,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Omole,Detached Duplex,Ikeja +75000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +19975000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +320000000.0,0,0,0,8,0,0,GRA,Detached Duplex,Ikeja +300000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +56000000.0,0,1,1,4,6,6,Osapa London,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,5,Ikate,Detached Duplex,Lekki +95000000.0,0,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +69000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +350000000.0,0,1,1,4,6,6,Other Ikoyi,Detached Duplex,Ikoyi +79000000.0,1,1,1,5,5,5,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +300000009.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +110000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +60000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +88000000.0,1,1,1,4,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +48000000.0,0,1,0,3,4,5,Other Lekki,Terraced Duplex,Lekki +270000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,4,Alausa,Detached Duplex,Ikeja +300000000.0,0,0,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +290000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Alausa,Detached Duplex,Ikeja +48000000.0,0,0,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,1,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +65000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +67000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +38000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +110000000.0,1,1,1,4,4,4,Ikate,Semi Detached Duplex,Lekki +380000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +90000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,6,7,7,Lekki Phase 2,Semi Detached Duplex,Lekki +62000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +32750000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +69000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +135000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +60000000.0,0,1,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +98000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,1,1,1,4,6,6,Opebi,Semi Detached Duplex,Ikeja +185000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +58000000.0,0,1,0,4,5,5,Allen Avenue,Detached Duplex,Ikeja +110000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +90000000.0,1,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +63000000.0,0,1,1,5,5,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,4,5,4,Onikoyi,Detached Duplex,Ikoyi +40000000.0,0,0,0,4,4,4,Oregun,Semi Detached Duplex,Ikeja +65000000.0,1,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +56000000.0,0,1,0,6,6,7,Osapa London,Semi Detached Duplex,Lekki +230000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +210000000.0,0,1,0,3,3,3,Other Victoria Island,Terraced Duplex,Victoria Island +70000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,0,4,6,7,Chevron,Semi Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +85000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +150000000.0,0,1,1,6,7,8,Adeniyi Jones,Detached Duplex,Ikeja +63000000.0,1,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +95000000.0,1,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +50000000.0,1,1,1,4,5,6,Chevron,Terraced Duplex,Lekki +340000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,5,3,4,Adeniyi Jones,Detached Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +70000000.0,1,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +72000000.0,0,0,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +60000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +35000000.0,1,1,1,2,3,3,Ikota,Terraced Duplex,Lekki +375000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +65000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +41000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +33000000.0,1,1,1,3,4,4,Chevron,Detached Duplex,Lekki +99000000.0,0,1,1,5,6,6,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,4,3,4,Old Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,5,7,6,Ikota,Detached Duplex,Lekki +70000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Ikota,Terraced Duplex,Lekki +85000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +62000000.0,0,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +57000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +52000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +220000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +42000000.0,1,1,1,3,3,4,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +49500000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +55000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +275000000.0,0,1,1,4,4,4,Ikate,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +115000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +35000000.0,0,1,0,3,4,4,Other Ikeja,Terraced Duplex,Ikeja +170000000.0,0,1,0,4,4,5,Oregun,Detached Duplex,Ikeja +83000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +170000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +250000000.0,0,1,1,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +49000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +52000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +42000000.0,0,0,0,5,5,5,Alausa,Semi Detached Duplex,Ikeja +70000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +80000000.0,0,1,1,5,7,6,Osapa London,Detached Duplex,Lekki +58000000.0,1,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +220000000.0,0,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +120000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +33500000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +78000000.0,0,0,0,4,5,5,Allen Avenue,Detached Duplex,Ikeja +30000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +63000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +450000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +280000000.0,0,0,0,8,9,9,Victoria Garden City,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +220000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +140000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,5,4,4,Alausa,Detached Duplex,Ikeja +35000000.0,0,0,0,4,5,4,Lekki Phase 2,Terraced Duplex,Lekki +95000000.0,1,1,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +135000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +45000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +200000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +500000000.0,0,0,0,5,5,7,Lekki Phase 2,Detached Duplex,Lekki +235000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +90000000.0,1,1,0,4,6,7,Chevron,Semi Detached Duplex,Lekki +210000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +65000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,1,1,0,6,6,7,Ikota,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Osapa London,Detached Duplex,Lekki +47799000.0,1,1,0,4,5,6,Ikate,Terraced Duplex,Lekki +125000000.0,0,1,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +42000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Agungi,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +58000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +150000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,7,Opebi,Semi Detached Duplex,Ikeja +54000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +56000000.0,0,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +380000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +48000000.0,0,1,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +140000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,4,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,6,5,Victoria Garden City,Detached Duplex,Lekki +37000000.0,0,1,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,1,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +100000000.0,1,1,0,3,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +235000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85500000.0,1,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +98000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +65000000.0,1,1,1,3,4,0,Ikate,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +145000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +185000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +100000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +130000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +60000000.0,0,1,1,3,3,4,Oniru,Detached Duplex,Victoria Island +375000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +450000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,1,4,6,6,Agungi,Detached Duplex,Lekki +350000000.0,0,0,1,5,6,6,Banana Island,Detached Duplex,Ikoyi +62000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +25000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +72000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,1,1,0,4,5,6,Other Lekki,Terraced Duplex,Lekki +82000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,1,1,5,5,7,Other Lekki,Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +140000000.0,1,1,0,4,6,5,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +175000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +145000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +60000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +36000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +350000000.0,0,0,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +285000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +55000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +94000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +83000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,4,Victoria Garden City,Terraced Duplex,Lekki +100000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +295000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Chevron,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +88000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +165000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +215000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +40000000.0,1,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +54000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +67000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +70000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +500000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +77000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +200000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +270000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +180000000.0,1,0,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +63000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +45000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +35000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +110000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,7,7,7,Chevron,Detached Duplex,Lekki +45000000.0,1,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +155000000.0,1,1,1,4,4,4,GRA,Terraced Duplex,Ikeja +120000000.0,0,0,0,4,3,4,Awolowo Way,Detached Duplex,Ikeja +295000000.0,0,0,0,6,8,9,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +50000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,3,5,4,Lekki Phase 2,Terraced Duplex,Lekki +45000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +55000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +390000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +26000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,0,5,6,5,Ikota,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +124500000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +235000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +95000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +51000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +41000000.0,0,1,0,4,2,2,Lekki Phase 2,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +190000000.0,0,0,0,3,3,4,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +30000000.0,0,1,0,3,6,6,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +115000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +145000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,4,5,Other Lekki,Semi Detached Duplex,Lekki +240000000.0,0,1,1,5,7,7,Oniru,Semi Detached Duplex,Victoria Island +470000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +380000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +50000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +70000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +85000000.0,0,1,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,1,0,0,3,3,4,Victoria Island Extension,Terraced Duplex,Victoria Island +80000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +120000000.0,1,1,1,4,6,6,GRA,Detached Duplex,Ikeja +170000000.0,0,0,0,4,4,4,Onikoyi,Semi Detached Duplex,Ikoyi +90000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,7,Osapa London,Semi Detached Duplex,Lekki +105000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +40000000.0,1,1,0,2,2,3,Ikota,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +52000000.0,0,1,1,4,5,6,Omole,Detached Duplex,Ikeja +55000000.0,0,0,0,6,7,7,GRA,Semi Detached Duplex,Ikeja +205000000.0,0,0,0,10,10,10,GRA,Semi Detached Duplex,Ikeja +95000000.0,0,1,0,3,4,3,Other Ikeja,Detached Duplex,Ikeja +95000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +160000000.0,1,0,0,5,5,5,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +125000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +115000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,1,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +98000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Agidingbi,Terraced Duplex,Ikeja +80000000.0,0,1,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +37000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +420000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,0,1,0,3,5,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +39000000.0,1,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Awolowo Way,Detached Duplex,Ikeja +240000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +106000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +100000000.0,1,0,0,4,6,6,Ikate,Terraced Duplex,Lekki +180000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +170000000.0,0,1,1,5,5,6,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +39000000.0,1,1,0,2,2,2,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +123000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +39500000.0,0,1,1,3,3,3,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +85000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,4,5,6,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,1,5,4,4,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +200000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +195000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +500000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,5,7,6,Chevron,Detached Duplex,Lekki +46000000.0,0,1,0,3,3,4,Agungi,Semi Detached Duplex,Lekki +200000000.0,1,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +380000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +75000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +60000000.0,0,1,0,5,7,8,Ikota,Detached Duplex,Lekki +38000000.0,0,1,0,5,4,5,Osapa London,Terraced Duplex,Lekki +43000000.0,1,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +220000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +46000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +65000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +92000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +215000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +470000000.0,0,0,0,4,4,4,Banana Island,Terraced Duplex,Ikoyi +110000000.0,0,1,0,5,5,5,Maryland,Semi Detached Duplex,Ikeja +70000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +285000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +76000000.0,0,1,0,6,6,7,Osapa London,Terraced Duplex,Lekki +200000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +400000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +59000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +40000000.0,0,1,1,4,5,6,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,1,0,5,6,7,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +185000000.0,0,0,0,6,5,6,Other Ikoyi,Detached Duplex,Ikoyi +125000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +165000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,1,0,7,7,7,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +177990000.0,1,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +120000000.0,0,1,0,4,4,4,Foreshore,Terraced Duplex,Ikoyi +150000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +26000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +72000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +65000000.0,0,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +40000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +230000000.0,0,1,1,5,4,5,Agidingbi,Detached Duplex,Ikeja +38000000.0,0,1,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +392000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +53000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,6,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +90000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +105000000.0,1,1,1,5,5,6,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +77000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,1,0,1,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +240000000.0,0,1,1,5,7,7,GRA,Detached Duplex,Ikeja +190000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +130000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,0,1,0,3,3,3,Allen Avenue,Detached Duplex,Ikeja +170000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +155000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +270000000.0,0,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +198000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +98000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,5,6,6,Other Ikeja,Semi Detached Duplex,Ikeja +40000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +235000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +70000000.0,0,1,1,5,5,6,Agungi,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +380000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +250000000.0,0,1,0,7,8,8,GRA,Detached Duplex,Ikeja +55000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +57000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +50000000.0,0,0,0,3,3,3,Other Ikeja,Semi Detached Duplex,Ikeja +50000000.0,0,0,0,4,5,6,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,1,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +27000000.0,0,0,1,2,2,3,Lekki Phase 2,Terraced Duplex,Lekki +285000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +370000000.0,0,0,0,9,9,9,Other Lekki,Detached Duplex,Lekki +165000000.0,0,0,0,5,7,7,Victoria Garden City,Detached Duplex,Lekki +77500000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +115000000.0,0,1,1,4,4,3,Lekki Phase 1,Semi Detached Duplex,Lekki +43000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,2,3,3,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,0,0,1,3,4,4,Lekki Phase 2,Detached Duplex,Lekki +260000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +39000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +350000000.0,1,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +48000000.0,0,0,0,4,4,4,Victoria Garden City,Terraced Duplex,Lekki +55000000.0,0,1,0,3,3,4,Ologolo,Terraced Duplex,Lekki +230000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,6,Ikate,Semi Detached Duplex,Lekki +56000000.0,0,0,1,3,3,4,Osapa London,Terraced Duplex,Lekki +53000000.0,0,1,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,4,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +17675000.0,0,1,1,3,0,0,Other Lekki,Terraced Duplex,Lekki +72000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Alausa,Detached Duplex,Ikeja +250000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +67000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,2,2,3,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,0,3,4,4,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,4,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +47500000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +300000000.0,1,1,1,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +45000000.0,0,0,0,2,0,0,Allen Avenue,Detached Duplex,Ikeja +40000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +40000000.0,0,1,0,2,2,3,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +79500000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,5,Ikate,Detached Duplex,Lekki +125000000.0,1,1,1,4,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +100000000.0,0,1,1,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +350000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,6,5,7,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +120000000.0,0,0,1,5,5,6,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +57000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +65000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +45000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +245000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +59000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +49900000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +120000000.0,0,0,0,5,3,3,Opebi,Terraced Duplex,Ikeja +37000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +100000000.0,0,0,0,5,6,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +210000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +200000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +380000000.0,0,0,0,5,5,6,Onikoyi,Semi Detached Duplex,Ikoyi +100000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +115000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,GRA,Terraced Duplex,Ikeja +240000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +80000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,1,3,5,5,Foreshore,Detached Duplex,Ikoyi +52000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,5,5,3,Chevron,Detached Duplex,Lekki +350000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +79000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +16000000.0,0,0,0,2,2,3,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +33000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +67000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,1,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Maryland,Detached Duplex,Ikeja +55000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,3,4,3,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,0,0,8,8,8,GRA,Detached Duplex,Ikeja +35000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +290000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +170000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Adeniyi Jones,Detached Duplex,Ikeja +300000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,1,1,1,6,6,7,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +140000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,5,2,2,Ikota,Detached Duplex,Lekki +300000000.0,0,0,1,4,5,5,Banana Island,Detached Duplex,Ikoyi +90000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +105000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +138000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +66000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +210000000.0,0,0,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +140000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,2,2,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,5,3,3,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,6,Osapa London,Detached Duplex,Lekki +149000000.0,0,1,1,5,6,7,Ikate,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +117000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +230000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +260000000.0,1,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +68000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +70000000.0,0,0,0,6,6,7,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,4,4,Opebi,Terraced Duplex,Ikeja +38000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +240000000.0,0,1,0,5,6,6,Alausa,Detached Duplex,Ikeja +380000000.0,0,1,0,5,5,7,Other Ikoyi,Detached Duplex,Ikoyi +90000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +95000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +290000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +79500000.0,1,1,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +60000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +107000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +340000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +180000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +185000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,5,4,4,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,5,Ologolo,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,1,1,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +260000000.0,0,1,0,4,5,5,Banana Island,Semi Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +320000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +43500000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +62000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +25000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,1,0,3,4,4,Other Ikoyi,Detached Duplex,Ikoyi +98000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +73000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,0,0,4,5,4,Agungi,Terraced Duplex,Lekki +75000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +79000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,6,Victoria Garden City,Terraced Duplex,Lekki +70000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +30000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +48000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,5,5,5,Opebi,Terraced Duplex,Ikeja +120000000.0,0,1,0,3,3,3,Ikate,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,6,Ikate,Detached Duplex,Lekki +67000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +38000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Omole,Semi Detached Duplex,Ikeja +60000000.0,1,0,1,5,5,6,Ikota,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +40000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +230000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,5,Alausa,Semi Detached Duplex,Ikeja +48000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,6,6,8,Lekki Phase 1,Detached Duplex,Lekki +108000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +50000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +120000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +135000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +47000000.0,0,0,0,3,3,4,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +14000000.0,0,1,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +78000000.0,1,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +45000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +88000000.0,0,0,0,4,6,6,Allen Avenue,Detached Duplex,Ikeja +190000000.0,0,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +250000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,0,0,0,5,7,6,Lekki Phase 1,Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,7,Ologolo,Detached Duplex,Lekki +95000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +18975000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +30000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,3,2,3,Airport Road,Detached Duplex,Ikeja +115000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +143000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +48000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +160000000.0,1,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +85000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +42000000.0,0,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +105000000.0,1,1,0,5,6,6,Ikate,Terraced Duplex,Lekki +130000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +57000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,0,0,3,0,0,Oregun,Detached Duplex,Ikeja +500000000.0,0,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +195000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +110000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +135000000.0,0,1,1,4,5,6,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +70000000.0,0,0,1,6,8,8,Chevron,Detached Duplex,Lekki +95000000.0,0,0,1,4,4,5,Parkview,Terraced Duplex,Ikoyi +37000000.0,0,0,0,4,5,5,Agungi,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,1,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Ologolo,Terraced Duplex,Lekki +36000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +200000000.0,0,1,1,5,5,5,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +47000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +85000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +69000000.0,0,0,0,4,4,3,Chevron,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +400000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +260000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +175000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +83000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +68000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,2,3,3,Other Lekki,Detached Duplex,Lekki +145000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,5,Osapa London,Terraced Duplex,Lekki +160000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +380000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +185000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +200000000.0,0,1,0,5,6,5,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +180000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,9,9,10,Ikate,Detached Duplex,Lekki +45000000.0,0,0,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +320000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +58000000.0,0,1,0,3,3,4,Ologolo,Terraced Duplex,Lekki +84000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,7,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,0,0,5,5,7,GRA,Detached Duplex,Ikeja +320000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,0,0,6,6,6,Adeniyi Jones,Detached Duplex,Ikeja +210000000.0,1,0,0,4,6,6,Foreshore,Semi Detached Duplex,Ikoyi +150000000.0,1,1,0,4,5,6,GRA,Detached Duplex,Ikeja +69000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +125000000.0,1,1,1,4,4,4,Oniru,Detached Duplex,Victoria Island +120000000.0,0,0,0,4,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,3,4,Oregun,Semi Detached Duplex,Ikeja +120000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,7,7,7,Adeniyi Jones,Detached Duplex,Ikeja +50000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +360000000.0,0,0,0,5,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +155000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +200000000.0,0,1,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +95000000.0,1,0,0,5,6,6,Ikota,Detached Duplex,Lekki +62000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +57000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +135000000.0,1,1,0,4,4,4,Oniru,Detached Duplex,Victoria Island +60000000.0,1,0,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +140000000.0,0,1,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +260000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +145000000.0,0,0,0,5,7,7,Chevron,Semi Detached Duplex,Lekki +360000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +55000000.0,1,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +106000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +87000000.0,0,1,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +500000000.0,0,1,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +44000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,0,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +300000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +79500000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +480000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +72000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +45000000.0,1,1,1,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +108000000.0,0,0,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +96000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,5,7,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,1,5,5,6,Ikate,Semi Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Other Ikeja,Terraced Duplex,Ikeja +85000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +63000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +340000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +47000000.0,0,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +38000000.0,0,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +42000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +130000000.0,0,1,1,3,3,4,Opebi,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Maryland,Detached Duplex,Ikeja +40000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +100000000.0,0,0,0,5,4,4,Alausa,Detached Duplex,Ikeja +85000000.0,0,0,0,5,5,5,Oregun,Detached Duplex,Ikeja +250000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +36000000.0,1,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +198000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,3,4,0,Other Ikoyi,Detached Duplex,Ikoyi +58000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +260000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +370000000.0,0,1,1,5,5,5,Banana Island,Detached Duplex,Ikoyi +125000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +120000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +38000000.0,0,0,0,4,5,5,Agungi,Terraced Duplex,Lekki +47000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +320000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +200000000.0,0,0,0,4,4,4,Parkview,Detached Duplex,Ikoyi +160000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +56000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +75000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +42000000.0,0,0,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +40000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +64000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +60000000.0,0,1,1,6,7,6,Lekki Phase 2,Terraced Duplex,Lekki +170000000.0,0,1,0,4,4,6,Opebi,Semi Detached Duplex,Ikeja +380000000.0,0,0,1,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +300000000.0,0,1,1,4,4,4,Banana Island,Terraced Duplex,Ikoyi +58000000.0,0,0,0,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +100000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Adeniyi Jones,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +120000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +440000000.0,0,1,0,7,7,7,Other Lekki,Detached Duplex,Lekki +150000000.0,1,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +160000000.0,0,0,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +35000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +59000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +88000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +68000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +80000000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,3,3,4,GRA,Detached Duplex,Ikeja +85000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,1,0,6,7,7,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +175000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +35000000.0,0,0,0,3,4,5,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +40000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,1,1,4,5,5,Ikota,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,6,7,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +83000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +125000000.0,0,0,1,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +480000000.0,0,0,0,6,6,7,Parkview,Detached Duplex,Ikoyi +85000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +95000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +93000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,1,4,4,5,Other Ikeja,Detached Duplex,Ikeja +51000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +95000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +43000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +39000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,4,6,Other Lekki,Detached Duplex,Lekki +137000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +75000000.0,1,1,1,4,4,5,Ikate,Detached Duplex,Lekki +140000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +410000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,3,Osapa London,Detached Duplex,Lekki +88000000.0,0,1,0,4,5,6,Ologolo,Detached Duplex,Lekki +85000000.0,0,0,0,4,3,4,Allen Avenue,Semi Detached Duplex,Ikeja +82000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +41000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +41000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,10,Victoria Garden City,Semi Detached Duplex,Lekki +92000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +83000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +125000000.0,1,1,1,7,7,7,Ikota,Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +60000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,6,7,Ikate,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +185000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +46000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +105000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +110000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +200000000.0,1,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,GRA,Terraced Duplex,Ikeja +320000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,7,GRA,Detached Duplex,Ikeja +70000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,1,5,7,7,Ikate,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +115000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +232000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +150000000.0,0,0,1,6,6,8,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +460000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +290000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,1,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Opebi,Terraced Duplex,Ikeja +90000000.0,0,0,0,3,3,2,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +97000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +63000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Opebi,Semi Detached Duplex,Ikeja +70000000.0,1,0,0,4,4,4,Alausa,Terraced Duplex,Ikeja +80000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,0,2,2,3,Ikate,Semi Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +71000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Other Ikeja,Semi Detached Duplex,Ikeja +150000000.0,0,1,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +71500000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +78000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,1,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +220000000.0,0,0,0,5,6,6,Onikoyi,Detached Duplex,Ikoyi +76000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Ikate,Terraced Duplex,Lekki +49500000.0,0,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,0,5,2,2,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,6,6,6,Allen Avenue,Detached Duplex,Ikeja +145000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,1,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,1,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,1,1,1,4,5,5,Oniru,Semi Detached Duplex,Victoria Island +70000000.0,0,0,0,3,3,4,Maryland,Semi Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +220000000.0,1,0,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +160000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +225000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,6,7,7,Other Ikeja,Detached Duplex,Ikeja +38000000.0,0,0,0,3,4,5,Chevron,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,3,Other Lekki,Semi Detached Duplex,Lekki +43000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +42000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +81000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +434000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,5,6,6,Other Lekki,Terraced Duplex,Lekki +46000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +260000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +97000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +220000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +45000000.0,1,0,0,2,2,3,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +129500000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +200000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +105000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +230000000.0,0,1,0,4,4,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +115000000.0,0,1,1,5,8,8,Chevron,Detached Duplex,Lekki +160000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,1,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +150000000.0,0,0,0,6,6,6,Agidingbi,Semi Detached Duplex,Ikeja +42000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +180000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,0,0,4,6,4,Victoria Garden City,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +58500000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +410000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +320000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +45000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,7,Oniru,Semi Detached Duplex,Victoria Island +105000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +395000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +120000000.0,0,1,0,5,7,8,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,0,0,0,4,3,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,6,6,7,Ikota,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +150000000.0,0,1,0,6,5,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,4,Osapa London,Terraced Duplex,Lekki +220000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +34000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +100000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,1,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +175000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +250000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +78000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,4,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +115000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +67000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,6,7,7,Awolowo Way,Detached Duplex,Ikeja +45000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +39000000.0,0,1,0,2,2,2,Chevron,Terraced Duplex,Lekki +55000000.0,1,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +33000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +450000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +80000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,1,0,1,4,4,4,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +125000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +330000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +83000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +320000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +67000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +37000000.0,1,1,1,4,5,5,Ikota,Detached Duplex,Lekki +58000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +88000000.0,0,1,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +56000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +350000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,4,6,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,1,1,0,4,5,5,Old Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +68000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,5,4,Ikate,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +57000000.0,0,1,1,6,6,7,Chevron,Terraced Duplex,Lekki +350000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +500000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +290000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +34000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +30000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +165000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +350035000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +350000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +130000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +450000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +110000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +295000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,1,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +130000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,5,5,5,Agungi,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Opebi,Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +25000000.0,0,1,0,2,0,0,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +53000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +100000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +48000000.0,1,0,0,3,0,0,Chevron,Detached Duplex,Lekki +480000000.0,0,0,0,4,5,6,GRA,Terraced Duplex,Ikeja +420000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +26437500.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +82000000.0,0,0,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +420000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +77000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +55000000.0,1,1,1,4,5,6,Other Lekki,Detached Duplex,Lekki +48000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +295000000.0,1,1,0,6,6,7,Lekki Phase 2,Detached Duplex,Lekki +290000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,1,1,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +37000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +45000000.0,1,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +35000000.0,0,0,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +90000000.0,1,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +70000000.0,0,0,1,4,5,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +85000000.0,0,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,7,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Omole,Detached Duplex,Ikeja +33000000.0,0,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,7,Banana Island,Terraced Duplex,Ikoyi +175000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +65000000.0,0,0,1,4,4,4,Chevron,Detached Duplex,Lekki +245000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +175000000.0,0,0,1,4,6,6,Agungi,Detached Duplex,Lekki +170000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,0,0,0,4,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +72000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,1,0,4,4,6,Agungi,Detached Duplex,Lekki +299999999.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +255000000.0,0,1,0,4,4,4,Foreshore,Detached Duplex,Ikoyi +65000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +39000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +62000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +52000000.0,0,0,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +35000000.0,0,0,0,2,0,0,Ikate,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Opebi,Terraced Duplex,Ikeja +65000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +42000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +88000000.0,1,0,1,6,4,4,Ikota,Detached Duplex,Lekki +45000000.0,1,1,1,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +500000000.0,1,1,1,4,5,5,Banana Island,Detached Duplex,Ikoyi +65000000.0,0,0,0,4,3,3,Victoria Garden City,Semi Detached Duplex,Lekki +62000000.0,1,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +110000000.0,1,0,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +380000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,0,1,0,3,5,5,Lekki Phase 2,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +50000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +125000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,7,Alausa,Detached Duplex,Ikeja +77000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +57000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +83000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +140000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +95000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +49500000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +140000000.0,0,0,0,5,4,6,Ikate,Detached Duplex,Lekki +350000000.0,1,1,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +300000000.0,0,0,0,5,5,7,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,5,2,2,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,1,4,4,4,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +187000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +290000000.0,0,1,0,6,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +82000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,0,0,5,5,5,GRA,Terraced Duplex,Ikeja +75000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +60000000.0,0,1,1,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +210000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +145000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +158000000.0,0,0,1,5,6,7,Agidingbi,Detached Duplex,Ikeja +125000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +87000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +400000000.0,1,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +13000000.0,0,0,0,5,4,4,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,1,0,3,3,4,Allen Avenue,Detached Duplex,Ikeja +150000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +72000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +80000000.0,0,1,1,4,8,8,Ikota,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +380000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +285000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +450000000.0,0,0,0,5,6,6,Onikoyi,Detached Duplex,Ikoyi +250000000.0,0,0,0,4,4,5,Airport Road,Semi Detached Duplex,Ikeja +105000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +105000000.0,0,1,1,4,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +85000000.0,0,1,0,5,5,6,Opebi,Detached Duplex,Ikeja +45000000.0,1,0,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +350000000.0,1,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +400000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +38000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +38500000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +105000000.0,0,0,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,0,0,1,4,5,5,Opebi,Detached Duplex,Ikeja +72000000.0,0,0,1,4,5,4,Osapa London,Terraced Duplex,Lekki +170000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +90000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +49500000.0,0,1,0,4,5,4,Chevron,Detached Duplex,Lekki +87000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +51000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +325000000.0,1,0,0,7,8,8,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,4,5,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,6,6,7,Ologolo,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +44000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +33000000.0,1,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +250000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +198000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,3,4,4,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +170000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +150000000.0,1,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +250000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +69000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,7,7,Osapa London,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +40000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,GRA,Semi Detached Duplex,Ikeja +350000000.0,0,0,0,3,0,0,Banana Island,Terraced Duplex,Ikoyi +115000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +64000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +39000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +140000009.0,0,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +245000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +20000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +53000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +76000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +300000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,1,4,6,6,Agidingbi,Detached Duplex,Ikeja +199999000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,4,GRA,Detached Duplex,Ikeja +135000000.0,1,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +300000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +43000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +72000000.0,0,0,0,4,3,4,Agungi,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +67500000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +190000000.0,1,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +52000000.0,1,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,6,Victoria Garden City,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +165000000.0,0,0,0,4,5,5,Foreshore,Detached Duplex,Ikoyi +89000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,4,4,4,Old Ikoyi,Detached Duplex,Ikoyi +67000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +88000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +500000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +77000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +180000000.0,1,1,1,5,5,5,Ikota,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +53000000.0,1,1,0,6,6,7,Chevron,Terraced Duplex,Lekki +56000000.0,1,1,1,4,6,6,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +30000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +38000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +37000000.0,1,1,0,3,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,6,6,6,Opebi,Detached Duplex,Ikeja +36500000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +17675000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +115000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +350000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,7,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Opebi,Terraced Duplex,Ikeja +70000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +47500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +155000000.0,0,0,0,4,5,5,Maryland,Terraced Duplex,Ikeja +40000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +30000000.0,0,1,0,2,2,2,Ologolo,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +195000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +148000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +375000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +55000000.0,0,1,1,4,4,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,5,Ikota,Detached Duplex,Lekki +380000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +220000000.0,0,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,1,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +68000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +65000009.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +90000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +295000000.0,0,0,0,8,8,8,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +102000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +125000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +37500000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +125000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +245000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +240000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +285000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +178000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +70000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,5,7,7,Old Ikoyi,Semi Detached Duplex,Ikoyi +37000000.0,0,1,0,2,3,3,Chevron,Terraced Duplex,Lekki +45000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,1,1,4,4,4,Ikate,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +50000000.0,0,0,0,3,0,0,Opebi,Detached Duplex,Ikeja +60000000.0,0,0,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +195000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +450000000.0,1,1,1,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +67000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,7,0,0,Omole,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +300000000.0,1,1,1,5,5,7,Chevron,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +10000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +59500000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,7,7,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +48000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +56000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +185000000.0,0,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +399999999.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +175000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +450000000.0,0,0,0,5,4,6,Other Lekki,Detached Duplex,Lekki +101000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,1,1,1,6,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Agidingbi,Detached Duplex,Ikeja +80000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,4,Ologolo,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +76000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +36000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +95000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +145000000.0,0,0,0,6,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +15500000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +170000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +55000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +37000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,4,Oregun,Detached Duplex,Ikeja +78000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Awolowo Way,Detached Duplex,Ikeja +107000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +38000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +225000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +97000000.0,0,1,0,4,4,4,Oregun,Detached Duplex,Ikeja +135000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,0,0,6,6,6,Ikota,Detached Duplex,Lekki +80000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,7,7,7,Lekki Phase 1,Semi Detached Duplex,Lekki +56000000.0,0,1,1,5,5,5,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +34000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +46000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +250000000.0,0,0,1,5,6,6,Ikate,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +270000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +150000000.0,1,1,1,3,3,4,Ikate,Semi Detached Duplex,Lekki +92000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,7,7,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +33000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,0,0,0,7,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +57000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,1,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +295000000.0,0,1,0,6,6,7,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +135000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +210000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +165000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +100000000.0,0,0,0,10,0,0,Ikota,Detached Duplex,Lekki +85000000.0,1,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +240000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,4,Agungi,Detached Duplex,Lekki +85000000.0,0,1,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +76000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +170000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Agungi,Terraced Duplex,Lekki +140000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +290000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +49000000.0,0,0,0,4,3,5,Chevron,Terraced Duplex,Lekki +235000000.0,0,1,0,5,6,7,GRA,Detached Duplex,Ikeja +265000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,6,7,Ikota,Semi Detached Duplex,Lekki +90000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +63000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +185000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +320000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +165000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +90000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +50000000.0,1,0,0,5,6,6,Chevron,Detached Duplex,Lekki +230000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,6,7,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +250000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +95000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,1,0,7,7,8,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +400000000.0,1,1,1,5,5,5,Banana Island,Terraced Duplex,Ikoyi +130000000.0,0,0,0,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +145000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +415000000.0,0,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +150000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +45000000.0,1,0,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +220000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +250000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +135000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +340000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +230000000.0,0,1,0,6,7,7,Adeniyi Jones,Detached Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +300000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +160000000.0,0,0,0,4,4,6,GRA,Semi Detached Duplex,Ikeja +175000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +450000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +290000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +65000000.0,0,0,0,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +36000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +60000000.0,1,1,0,5,4,5,Ologolo,Terraced Duplex,Lekki +130000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +41000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,6,6,7,Ikate,Terraced Duplex,Lekki +120000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +58000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +300000000.0,1,1,1,5,5,5,Oniru,Terraced Duplex,Victoria Island +400000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +300000000.0,0,0,0,5,6,7,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,6,6,Other Ikeja,Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +55000000.0,0,1,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +102000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +165000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +240000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +195000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +390000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,1,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +270000000.0,0,0,1,5,6,7,Ikota,Detached Duplex,Lekki +235000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,1,1,5,5,5,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,4,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,6,Ikate,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +88000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +32750000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +92500000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +60000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +72000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +200000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +190000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,1,0,1,6,6,5,Victoria Garden City,Detached Duplex,Lekki +500000000.0,1,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +125000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +300000000.0,0,0,0,4,3,5,Other Victoria Island,Terraced Duplex,Victoria Island +85000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +105000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,6,7,8,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +52000000.0,1,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +400000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,1,Ikota,Detached Duplex,Lekki +450000000.0,0,1,1,5,8,8,Opebi,Detached Duplex,Ikeja +145000000.0,1,1,0,5,5,5,Ikate,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Omole,Detached Duplex,Ikeja +200000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +77500000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +46000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +157000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +57000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +80000000.0,1,0,0,2,2,3,Ikate,Terraced Duplex,Lekki +150000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +83000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +203000000.0,1,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +50000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,2,2,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +83000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,6,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +78000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +225000000.0,0,0,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +37000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +68000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +76000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +118000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,7,0,0,Other Ikeja,Detached Duplex,Ikeja +65000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +67000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,4,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +500000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +65000000.0,1,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +27000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +115000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Adeniyi Jones,Terraced Duplex,Ikeja +67000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +450000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +42000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +98000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +62000000.0,1,1,0,3,4,4,Victoria Garden City,Terraced Duplex,Lekki +53000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +86000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +53000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +42000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +135000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,3,Adeniyi Jones,Detached Duplex,Ikeja +100000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +98000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +280000000.0,1,1,1,6,7,6,Osapa London,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,5,Other Lekki,Detached Duplex,Lekki +220000000.0,0,1,1,5,6,7,Alausa,Detached Duplex,Ikeja +80000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +78000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +145000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +150000000.0,1,1,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +140000000.0,0,1,0,6,7,6,Adeniyi Jones,Detached Duplex,Ikeja +49000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +31000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +200000000.0,1,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Agungi,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +165000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,0,0,7,7,7,Chevron,Detached Duplex,Lekki +54500000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +116000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +105000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +17675000.0,0,1,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,1,3,3,4,Banana Island,Detached Duplex,Ikoyi +125000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,5,4,5,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +53000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +330000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,1,1,1,2,3,3,Ikota,Detached Duplex,Lekki +460000000.0,0,1,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +160000000.0,1,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,1,0,3,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +90000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +120000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +160000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +83000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +105000000.0,1,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +235000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +100000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +110000000.0,0,1,0,5,7,8,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +61000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +75000000.0,1,1,0,5,4,5,Ikota,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,2,2,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +150000000.0,0,1,1,5,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +59000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,1,4,4,5,Agungi,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +360000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +330000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,1,1,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,0,1,4,6,6,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +200000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +275000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +100000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +64000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +145000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +56500000.0,0,1,0,3,3,3,Other Lekki,Semi Detached Duplex,Lekki +210000000.0,1,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +200000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +170000000.0,0,0,1,4,6,6,Parkview,Terraced Duplex,Ikoyi +280000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +125990000.0,1,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +32000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +165000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +67000000.0,1,0,0,4,4,5,Ikota,Detached Duplex,Lekki +44000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +78000000.0,0,0,0,3,3,4,Airport Road,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,1,0,4,4,4,Other Ikoyi,Semi Detached Duplex,Ikoyi +44000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Foreshore,Terraced Duplex,Ikoyi +75000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +195000000.0,0,1,1,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +73000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +45000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +52000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +37000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +73000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +93000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +90000000.0,0,0,0,3,0,0,Agidingbi,Semi Detached Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +70000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +57000000.0,1,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +110000000.0,0,1,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +200000000.0,0,0,0,6,7,8,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +80000000.0,1,1,1,5,5,6,Chevron,Terraced Duplex,Lekki +48000000.0,0,1,0,0,3,4,Ikota,Terraced Duplex,Lekki +400000000.0,0,0,1,5,7,6,Osapa London,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +55000000.0,0,1,0,4,5,5,Opebi,Terraced Duplex,Ikeja +120000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,6,6,7,Ikota,Detached Duplex,Lekki +59000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +175000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,0,0,3,3,4,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +54500000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +400000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,2,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,7,7,8,Other Ikoyi,Detached Duplex,Ikoyi +195000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +38000000.0,0,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +100000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Parkview,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +300000000.0,1,1,1,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,1,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +440000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +145000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,1,5,4,4,Other Lekki,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,6,6,6,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +105000000.0,0,1,0,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,4,Other Lekki,Terraced Duplex,Lekki +86000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,7,0,0,Adeniyi Jones,Detached Duplex,Ikeja +77000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,7,Omole,Detached Duplex,Ikeja +45000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +155000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,4,5,4,Banana Island,Detached Duplex,Ikoyi +36000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +90000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,6,6,6,Allen Avenue,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +185000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +200000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +48000000.0,1,0,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +110000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,2,2,3,Osapa London,Terraced Duplex,Lekki +63000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +175000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +60900000.0,0,1,0,3,3,4,Ologolo,Terraced Duplex,Lekki +155000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,1,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +100000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,6,6,7,Ikate,Detached Duplex,Lekki +300000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,4,Parkview,Terraced Duplex,Ikoyi +75000000.0,0,1,0,4,3,4,Ikota,Detached Duplex,Lekki +30000000.0,0,1,0,4,2,2,Chevron,Terraced Duplex,Lekki +160000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +55000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,0,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +390000000.0,1,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +37500000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +295000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +47000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +66000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +32000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,5,5,GRA,Terraced Duplex,Ikeja +130000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +31000000.0,0,0,0,3,3,3,Ikota,Detached Duplex,Lekki +23000000.0,1,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +160000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +78000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +69000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +140000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +480000000.0,1,1,1,4,4,4,Banana Island,Detached Duplex,Ikoyi +185000000.0,0,1,0,3,3,4,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +65000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +37000000.0,0,1,1,3,3,4,Ikota,Terraced Duplex,Lekki +155000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +73000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +39000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,3,0,0,Other Victoria Island,Detached Duplex,Victoria Island +37000000.0,0,1,0,2,3,4,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,0,0,5,4,5,Ikota,Detached Duplex,Lekki +130000000.0,1,1,0,4,5,6,Ikate,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Agungi,Detached Duplex,Lekki +300000000.0,1,1,1,4,4,4,Other Ikoyi,Semi Detached Duplex,Ikoyi +120000000.0,0,0,0,4,6,6,Other Ikeja,Detached Duplex,Ikeja +110000000.0,1,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +126000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +230000000.0,1,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +87000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +140000000.0,1,1,0,3,4,4,Oniru,Detached Duplex,Victoria Island +48000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +63000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,4,Alausa,Detached Duplex,Ikeja +66000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +210000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +35000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +250000000.0,0,0,0,6,6,6,Foreshore,Detached Duplex,Ikoyi +200000000.0,0,0,0,7,5,7,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,1,0,4,6,6,Victoria Garden City,Detached Duplex,Lekki +40000000.0,1,0,1,4,4,5,Ikota,Detached Duplex,Lekki +400000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,0,0,5,6,5,Alausa,Detached Duplex,Ikeja +350000000.0,0,1,1,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +270000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +210000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,6,6,7,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,1,1,4,5,6,Ikate,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +231000000.0,0,0,0,5,6,6,Old Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +76000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +135000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,1,5,6,6,Agidingbi,Detached Duplex,Ikeja +75000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,5,Ikate,Terraced Duplex,Lekki +220000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +99500000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +79000000.0,0,0,0,4,4,4,Ologolo,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,0,0,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,5,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,4,4,Opebi,Semi Detached Duplex,Ikeja +85000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +63000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +195000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Onikoyi,Detached Duplex,Ikoyi +250000000.0,0,0,0,4,4,4,Banana Island,Terraced Duplex,Ikoyi +75000000.0,1,1,1,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,3,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +410000000.0,0,0,0,7,7,9,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +400000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +250000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +60000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +29000000.0,0,1,0,3,3,3,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +65000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +46000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +190000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +250000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +40000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,0,7,7,8,Other Lekki,Detached Duplex,Lekki +24000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +50000000.0,0,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +58000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +88000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +28000000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +65000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,GRA,Detached Duplex,Ikeja +130000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +275000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +48000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +130000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +47000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +65000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +72000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +260000000.0,0,1,0,5,5,6,Other Victoria Island,Terraced Duplex,Victoria Island +90000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +120000000.0,1,0,1,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +125000000.0,1,1,1,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +40000000.0,0,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +44000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +98000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +96000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +269000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Allen Avenue,Terraced Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +270000000.0,0,0,0,5,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +235000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +30000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,4,5,6,Banana Island,Detached Duplex,Ikoyi +125000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +83000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +69000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +89000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +300000000.0,0,1,1,5,5,6,Banana Island,Terraced Duplex,Ikoyi +60000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +34000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,1,4,3,3,Ikate,Semi Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +400000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +27000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +360000000.0,1,1,1,4,5,5,Banana Island,Terraced Duplex,Ikoyi +200000000.0,0,0,0,4,5,5,Oniru,Detached Duplex,Victoria Island +80000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +320000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +50000000.0,1,0,0,4,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +92000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +47000000.0,1,1,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +160000000.0,0,0,1,4,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,4,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +160000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +57000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +90000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +49000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +68000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +57000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +30000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,7,7,Ologolo,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +300000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +73100000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +250000000.0,1,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +29000000.0,1,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +115000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +69000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +14000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +32000000.0,1,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Foreshore,Terraced Duplex,Ikoyi +43000000.0,1,1,0,3,0,0,Victoria Garden City,Terraced Duplex,Lekki +110000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +57000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +155000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +73000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +58000000.0,1,1,0,4,6,6,Chevron,Detached Duplex,Lekki +420000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +140000000.0,0,1,0,5,8,8,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +37000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +57990000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +35000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +155000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +42000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +220000000.0,0,1,0,5,5,5,Omole,Detached Duplex,Ikeja +400000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +205000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +155000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,6,Ologolo,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +125000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +155000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,1,4,4,5,Banana Island,Detached Duplex,Ikoyi +56000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +185000000.0,1,1,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +70000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +130000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +78000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +155000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,6,7,7,Osapa London,Detached Duplex,Lekki +120000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,1,1,0,5,6,7,Ikate,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +140000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +35000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +450000000.0,0,1,0,4,4,4,Old Ikoyi,Detached Duplex,Ikoyi +80000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +145000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +220000000.0,0,0,0,5,7,7,Victoria Garden City,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +46000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +370000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +66329000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +52000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +57000000.0,0,1,0,5,4,4,Chevron,Detached Duplex,Lekki +110000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +62000000.0,1,1,1,5,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ikota,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +180000000.0,0,1,1,5,7,7,Agungi,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +48000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +120000009.0,0,1,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +300000000.0,1,1,1,5,6,6,GRA,Detached Duplex,Ikeja +67000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +41000000.0,0,0,0,3,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +155000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +27000000.0,0,0,0,4,3,4,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +85000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +71500000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +280000000.0,0,0,1,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +110000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +47000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,1,1,1,5,5,7,Ikota,Detached Duplex,Lekki +35000000.0,0,0,1,3,3,3,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,1,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +69000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,6,7,7,Osapa London,Detached Duplex,Lekki +51000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +230000000.0,0,0,1,6,6,7,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +68000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +200000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +53000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +58000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,5,Parkview,Detached Duplex,Ikoyi +380000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +200000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +450000000.0,0,0,0,7,7,7,Ikate,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,6,7,7,Opebi,Detached Duplex,Ikeja +38500000.0,1,1,0,2,2,2,Lekki Phase 2,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +66000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +50000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +280000000.0,1,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,4,GRA,Semi Detached Duplex,Ikeja +95000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +400000000.0,0,0,0,10,10,0,Other Victoria Island,Detached Duplex,Victoria Island +320000000.0,0,1,0,6,7,6,Parkview,Detached Duplex,Ikoyi +155000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +135000000.0,1,0,1,5,5,6,Agidingbi,Detached Duplex,Ikeja +65000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +100000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +55000000.0,0,1,0,3,3,4,Agungi,Terraced Duplex,Lekki +53000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +250000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +158000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,0,0,3,0,0,Chevron,Terraced Duplex,Lekki +205000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +300000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +77000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +130000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +176000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +65000000.0,0,0,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,1,5,5,6,Ologolo,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +220000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,1,1,4,4,4,Old Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,6,7,6,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,1,1,1,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,0,0,4,3,3,Chevron,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +200000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +150000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +80000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +53000000.0,0,1,1,5,5,6,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +65000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +205000000.0,0,0,0,5,6,6,Old Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +38000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +170000000.0,0,1,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +37000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,3,Osapa London,Semi Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,0,1,4,4,4,Alausa,Detached Duplex,Ikeja +370000000.0,0,0,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +63000000.0,0,1,0,4,2,2,Osapa London,Detached Duplex,Lekki +92000000.0,0,0,0,4,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,7,7,8,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +72000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +160000000.0,1,0,0,4,5,6,GRA,Terraced Duplex,Ikeja +160000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,0,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +500000000.0,1,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +52000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +38000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +95000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +220000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +48000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +43000000.0,0,1,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +70000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,0,0,7,7,7,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +167000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,6,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,1,4,4,8,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +34800000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +125000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +320000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +10000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +68000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +72000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,0,1,1,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +450000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +135000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +90000000.0,1,1,1,4,5,5,Ikate,Detached Duplex,Lekki +68000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,1,1,6,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +200000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +370000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +42000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +300000000.0,1,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +45000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +65000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +120000000.0,0,1,0,5,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +50000000.0,0,0,0,3,5,5,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,6,6,6,Allen Avenue,Detached Duplex,Ikeja +270000000.0,0,1,1,5,7,7,Oniru,Detached Duplex,Victoria Island +135000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +58000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,1,5,6,6,GRA,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +27000000.0,0,0,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +155000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +35000000.0,1,0,0,4,4,4,Chevron,Detached Duplex,Lekki +50000000.0,1,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +500000000.0,0,1,1,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +30000000.0,1,0,0,3,4,4,Victoria Garden City,Detached Duplex,Lekki +365000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +100000000.0,1,1,0,4,5,6,Osapa London,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,6,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +40000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +73000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Osapa London,Terraced Duplex,Lekki +140000000.0,0,1,0,6,7,8,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +75000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +400000000.0,1,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Old Ikoyi,Detached Duplex,Ikoyi +45000000.0,0,0,0,0,0,4,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +160000000.0,1,1,1,5,6,6,Ikate,Detached Duplex,Lekki +185000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +300000000.0,0,0,0,7,7,7,Other Victoria Island,Detached Duplex,Victoria Island +48000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +320000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +48000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +120000000.0,0,1,0,4,5,4,Agungi,Detached Duplex,Lekki +39000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +67000000.0,1,1,0,4,5,5,Agungi,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +35000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +51000000.0,1,1,1,3,4,4,Other Lekki,Detached Duplex,Lekki +37000000.0,1,0,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +220000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +240000000.0,0,1,0,4,5,7,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,1,1,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +115000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +33000000.0,1,1,0,3,4,5,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,1,0,7,7,5,GRA,Detached Duplex,Ikeja +200000000.0,0,1,0,5,7,7,Oniru,Semi Detached Duplex,Victoria Island +430000000.0,0,0,0,6,6,7,Old Ikoyi,Detached Duplex,Ikoyi +240000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +35000000.0,0,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +44000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +140000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +76000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +98000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +400000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +150000000.0,1,0,0,4,4,5,GRA,Detached Duplex,Ikeja +230000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +150000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +72000000.0,1,0,0,4,5,5,Chevron,Detached Duplex,Lekki +92000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +57000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +47000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +235000000.0,0,0,0,10,0,0,GRA,Detached Duplex,Ikeja +480000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +301000000.0,1,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,0,0,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Adeniyi Jones,Detached Duplex,Ikeja +230000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +140000000.0,0,0,0,4,5,5,Parkview,Terraced Duplex,Ikoyi +28000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,1,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,0,0,5,6,5,Ikota,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +125000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +175000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +180000000.0,0,1,0,6,6,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Awolowo Way,Detached Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,7,7,GRA,Detached Duplex,Ikeja +125000000.0,0,1,0,3,3,4,Other Ikoyi,Terraced Duplex,Ikoyi +165000000.0,0,1,1,4,4,5,GRA,Terraced Duplex,Ikeja +140000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +35000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +45000000.0,0,0,0,2,3,3,Osapa London,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,4,Allen Avenue,Semi Detached Duplex,Ikeja +260000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +450000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,7,8,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +115000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,1,4,5,5,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +120000000.0,1,1,1,5,7,6,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +220000000.0,0,1,1,6,6,7,Agungi,Detached Duplex,Lekki +145000000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +42000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,6,Ikate,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +55000000.0,0,0,0,4,5,4,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +95000000.0,0,0,1,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +42000000.0,0,0,0,3,4,3,Ikota,Detached Duplex,Lekki +170000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +415000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +35000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +59000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +92000000.0,0,1,0,5,5,5,Awolowo Way,Semi Detached Duplex,Ikeja +110000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +105000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,1,Ikate,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +57000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +370000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,6,Victoria Garden City,Detached Duplex,Lekki +275000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +300000000.0,0,1,0,5,7,8,Chevron,Detached Duplex,Lekki +38000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,1,1,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +85000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +69000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +125000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +69000000.0,1,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +175000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,0,2,2,2,Ikate,Terraced Duplex,Lekki +49000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +35000000.0,0,0,0,5,5,5,Airport Road,Detached Duplex,Ikeja +100000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +170000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,1,1,1,4,5,5,Ologolo,Detached Duplex,Lekki +82000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +50000000.0,0,0,0,4,3,3,GRA,Terraced Duplex,Ikeja +43000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +280000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +69000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +290000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,1,0,0,4,4,4,Ikate,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +40000000.0,0,0,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +89000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +200000000.0,1,1,0,3,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +170000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +300000000.0,0,0,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +87000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +80000000.0,0,0,0,4,4,4,Other Ikeja,Terraced Duplex,Ikeja +100000000.0,0,0,0,3,4,0,Ikate,Semi Detached Duplex,Lekki +350000000.0,0,0,0,4,5,5,Banana Island,Terraced Duplex,Ikoyi +82000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +200000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,1,3,3,4,Oniru,Terraced Duplex,Victoria Island +73000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +60000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,4,5,Allen Avenue,Terraced Duplex,Ikeja +450000000.0,0,1,0,4,5,5,Onikoyi,Semi Detached Duplex,Ikoyi +90000000.0,0,1,0,4,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +48000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,0,0,9,8,8,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,1,1,4,4,4,Ikate,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,0,1,5,5,6,Agungi,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +310000000.0,0,1,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +55000000.0,0,0,0,6,7,7,Agidingbi,Detached Duplex,Ikeja +56000000.0,1,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +86000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Opebi,Terraced Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,4,Foreshore,Detached Duplex,Ikoyi +250000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +115000000.0,0,0,0,4,6,6,Other Victoria Island,Terraced Duplex,Victoria Island +115000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +185000000.0,1,1,1,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +67000000.0,1,0,1,5,6,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +280000000.0,0,0,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +125000000.0,0,1,0,4,5,6,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,0,0,3,0,0,Oregun,Terraced Duplex,Ikeja +450000000.0,0,0,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +155000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +170000000.0,1,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +117000000.0,1,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +40000000.0,1,0,1,4,4,5,Chevron,Detached Duplex,Lekki +69000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,Parkview,Detached Duplex,Ikoyi +145000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,1,4,6,7,Agungi,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +10000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Opebi,Terraced Duplex,Ikeja +62000000.0,1,1,0,4,8,8,Other Lekki,Terraced Duplex,Lekki +54000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +72000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +66000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +95000000.0,0,1,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +225000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +110000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Alausa,Terraced Duplex,Ikeja +86000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +56000000.0,0,1,0,6,6,6,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,4,Opebi,Terraced Duplex,Ikeja +105000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +230000000.0,1,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,5,6,6,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +105000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +140000000.0,1,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +30000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +40000000.0,1,1,0,2,3,4,Ikota,Terraced Duplex,Lekki +260000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +200000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +39000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Opebi,Terraced Duplex,Ikeja +37000000.0,0,0,0,3,3,0,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +135000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +400000000.0,0,0,0,7,7,8,Other Lekki,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +99000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +50000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Allen Avenue,Detached Duplex,Ikeja +112000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,0,0,0,4,5,6,Agungi,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +75000000.0,0,1,0,5,5,7,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +260000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +85000000.0,0,0,0,4,3,3,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +230000000.0,0,1,1,6,8,8,GRA,Detached Duplex,Ikeja +50000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +72000000.0,1,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,2,2,3,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +62500000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +62000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +30000000.0,0,0,0,3,0,0,Chevron,Terraced Duplex,Lekki +150000000.0,0,0,0,5,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +90000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +39500000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +59500000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +75000000.0,0,1,0,5,4,5,Ikota,Detached Duplex,Lekki +50000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,4,Adeniyi Jones,Terraced Duplex,Ikeja +65000000.0,0,1,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +32000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,5,6,5,Other Ikeja,Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +88000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +390000000.0,0,0,0,7,0,0,Other Victoria Island,Detached Duplex,Victoria Island +50000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,0,0,6,5,4,Lekki Phase 1,Semi Detached Duplex,Lekki +260000000.0,1,1,0,5,6,5,Old Ikoyi,Terraced Duplex,Ikoyi +100000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +90000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +140000000.0,0,0,0,7,8,8,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +285000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +310000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +110000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,3,0,0,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +270000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,3,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +72000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +125000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +250000000.0,1,1,1,9,9,10,Lekki Phase 2,Detached Duplex,Lekki +64000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +390000000.0,0,1,0,6,6,7,Other Ikoyi,Detached Duplex,Ikoyi +64000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,0,0,3,0,0,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +250000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +340000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,3,3,4,Banana Island,Terraced Duplex,Ikoyi +90000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +44000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,1,4,4,5,Opebi,Semi Detached Duplex,Ikeja +350000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +88000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +48000000.0,0,1,1,4,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +140000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,0,0,5,5,5,Allen Avenue,Detached Duplex,Ikeja +150000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +45000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +51500000.0,0,1,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +55000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +500000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +480000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +150000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +141000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +87000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +78000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +420000000.0,0,1,0,5,7,7,Onikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +125000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,3,Adeniyi Jones,Semi Detached Duplex,Ikeja +115000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +30000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +34000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Other Ikeja,Terraced Duplex,Ikeja +215000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +100000000.0,0,0,0,4,6,6,Opebi,Detached Duplex,Ikeja +45000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +370000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,1,0,0,Lekki Phase 1,Detached Duplex,Lekki +59000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +38000000.0,0,0,1,4,5,5,Chevron,Terraced Duplex,Lekki +38000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +127000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +78000000.0,1,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +40640000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +140000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,3,3,3,Ikate,Terraced Duplex,Lekki +68000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +380000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Omole,Detached Duplex,Ikeja +110000000.0,0,0,1,4,4,4,Allen Avenue,Detached Duplex,Ikeja +160000000.0,0,0,1,5,6,7,Chevron,Detached Duplex,Lekki +40000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +85000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,1,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +140000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +50000000.0,0,0,0,6,6,7,Opebi,Detached Duplex,Ikeja +185000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,1,1,5,6,6,Other Ikeja,Detached Duplex,Ikeja +100000000.0,0,1,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +135000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +38000000.0,0,0,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +180000000.0,1,1,1,4,4,4,Agungi,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +75000009.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +90000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +220000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +90000000.0,0,0,0,6,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +300000000.0,0,1,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +170000000.0,0,0,0,5,7,6,Chevron,Detached Duplex,Lekki +105000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +64000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +175000000.0,0,0,0,3,3,4,Maryland,Detached Duplex,Ikeja +150000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +155000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +95000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +48000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +200000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +74000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,4,Ikota,Detached Duplex,Lekki +160000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +280000000.0,0,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +33000000.0,1,1,0,3,3,4,Victoria Garden City,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +58000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +45000000.0,1,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +48000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +88000000.0,0,0,1,5,5,5,Ikate,Detached Duplex,Lekki +125000000.0,0,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +84000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,6,Ologolo,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +58000000.0,1,1,1,4,5,5,Ikota,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Ologolo,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +47000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +37000000.0,0,0,0,3,4,4,Chevron,Terraced Duplex,Lekki +240000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +360000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +110000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Awolowo Way,Terraced Duplex,Ikeja +160000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +100000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +240000000.0,0,1,0,5,6,6,GRA,Detached Duplex,Ikeja +65000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +29990000.0,0,0,0,4,4,4,Foreshore,Detached Duplex,Ikoyi +120000000.0,0,0,0,5,7,7,GRA,Semi Detached Duplex,Ikeja +130000000.0,0,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +105000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +145000000.0,0,0,1,4,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +85000000.0,1,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +59000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,4,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +40000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,1,0,6,6,6,Lekki Phase 2,Detached Duplex,Lekki +37000000.0,0,0,0,2,3,3,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +33000000.0,0,1,0,3,3,3,Chevron,Terraced Duplex,Lekki +190000000.0,0,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +112000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +230000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +200000000.0,1,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,5,7,7,Ologolo,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +480000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +35000000.0,0,0,0,3,4,0,Chevron,Semi Detached Duplex,Lekki +395000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +35000000.0,0,0,0,3,3,0,Victoria Garden City,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +450000000.0,0,0,0,4,5,4,Banana Island,Detached Duplex,Ikoyi +150000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +70000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,0,0,7,9,9,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,1,4,6,6,Other Ikoyi,Detached Duplex,Ikoyi +95000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +108000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +69000000.0,1,1,0,4,6,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,7,5,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,0,1,1,5,5,5,Ikate,Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +67000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +320000000.0,0,0,0,8,8,9,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,1,1,5,5,6,Oniru,Terraced Duplex,Victoria Island +50000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +128000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +240000000.0,1,1,1,5,6,6,GRA,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +140000000.0,1,1,1,5,5,5,Agungi,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +230000000.0,0,0,0,6,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +170000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +380000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,7,7,Adeniyi Jones,Detached Duplex,Ikeja +59000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +45000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,1,3,3,4,GRA,Terraced Duplex,Ikeja +65000000.0,1,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +71000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +155000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,1,0,1,5,5,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,6,6,Lekki Phase 2,Semi Detached Duplex,Lekki +155000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +33000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +67000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Victoria Garden City,Terraced Duplex,Lekki +59000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +44000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,1,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +170000000.0,1,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +80000000.0,0,0,0,5,5,5,Opebi,Semi Detached Duplex,Ikeja +60000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +38000000.0,1,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +250000000.0,0,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,1,0,5,6,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +58000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,1,1,0,2,2,3,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +200000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Ikate,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +33000000.0,0,0,0,3,3,5,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,1,1,1,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,0,0,3,3,3,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +100000000.0,0,1,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +180000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +145000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +41500000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +320000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +150000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +46000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +310000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +68000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +35000000.0,0,1,0,3,0,0,Adeniyi Jones,Semi Detached Duplex,Ikeja +190000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +86000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +115000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +150000000.0,0,0,1,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +250000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +51000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +170000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +57000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +73000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,0,4,Ologolo,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Alausa,Detached Duplex,Ikeja +58000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +280000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +160000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +210000000.0,1,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +250000000.0,0,0,0,5,5,6,Foreshore,Detached Duplex,Ikoyi +30000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +420000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +41000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +275000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +50000000.0,0,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +135000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Awolowo Way,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +36500000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +28000000.0,0,1,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +65000000.0,1,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +90000000.0,0,0,0,3,3,3,Allen Avenue,Terraced Duplex,Ikeja +280000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,5,4,4,Other Lekki,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +170000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +285000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +176000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +65000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +52000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,0,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +280000000.0,0,0,1,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +105000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +100000000.0,0,0,1,4,5,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +265000000.0,0,0,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +145000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +20000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +118000000.0,1,1,1,4,4,5,Ikate,Detached Duplex,Lekki +205000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +280000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +52000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +140000000.0,0,0,0,4,7,7,Allen Avenue,Detached Duplex,Ikeja +250000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +130000000.0,0,1,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +38000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +180000000.0,0,1,1,4,5,5,Oniru,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,5,5,Agidingbi,Detached Duplex,Ikeja +30000000.0,0,1,1,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +95000000.0,1,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,0,Other Ikeja,Terraced Duplex,Ikeja +145000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +80000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,7,5,Chevron,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,6,6,7,Agungi,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +110000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +175000000.0,0,0,0,3,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +360000000.0,0,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +45000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +78000000.0,1,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +120000000.0,1,1,1,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,1,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +63000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +280000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +37000000.0,1,1,0,2,2,3,Chevron,Terraced Duplex,Lekki +270000009.0,1,1,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +240000000.0,0,0,0,5,7,6,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +205000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +260000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +290000000.0,0,0,0,3,0,0,Banana Island,Detached Duplex,Ikoyi +56000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +205000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +300000000.0,0,0,0,7,7,7,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +62000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +40000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +135000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +78000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +270000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +400000000.0,0,1,1,5,5,6,Banana Island,Detached Duplex,Ikoyi +100000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,1,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +170000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,0,1,5,5,5,Ikate,Detached Duplex,Lekki +82000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +185000000.0,1,1,1,5,5,6,GRA,Detached Duplex,Ikeja +65000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +25000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +129000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,6,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,5,Agungi,Detached Duplex,Lekki +20000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +370000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +133000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +47000000.0,0,0,1,4,2,2,Osapa London,Detached Duplex,Lekki +78000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +100000000.0,0,1,1,5,6,6,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +300000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +370000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Opebi,Semi Detached Duplex,Ikeja +53000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +235000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +56000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +90000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +52000000.0,0,0,0,4,4,6,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,3,Opebi,Detached Duplex,Ikeja +76000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +450000000.0,0,0,0,7,0,0,GRA,Detached Duplex,Ikeja +110000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +57000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +32000000.0,1,0,0,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,7,Lekki Phase 1,Semi Detached Duplex,Lekki +52000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +75000000.0,1,1,0,4,5,5,Allen Avenue,Terraced Duplex,Ikeja +180000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +41000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +52000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,1,0,4,5,6,Agungi,Detached Duplex,Lekki +130000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +85000000.0,1,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +155000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +195000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +75000000.0,0,1,1,4,6,6,Ikate,Terraced Duplex,Lekki +70000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +270000000.0,0,1,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +43500000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Opebi,Semi Detached Duplex,Ikeja +58000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +35000000.0,0,0,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +100000000.0,1,0,0,5,5,6,Allen Avenue,Terraced Duplex,Ikeja +70000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +128000000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Agungi,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +230000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +62000000.0,0,1,1,4,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +70000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,4,Ikota,Detached Duplex,Lekki +38000000.0,1,1,1,3,4,0,Chevron,Terraced Duplex,Lekki +170000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +55000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +69000000.0,1,1,0,5,4,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +48000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,6,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +73000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +270000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +47000000.0,0,0,1,4,4,5,Opebi,Detached Duplex,Ikeja +110000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +85000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +70000000.0,0,1,0,4,6,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,0,1,4,4,5,Banana Island,Terraced Duplex,Ikoyi +120000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +38000000.0,1,1,1,3,5,5,Chevron,Terraced Duplex,Lekki +77000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,3,3,5,Other Lekki,Detached Duplex,Lekki +49000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +70000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +46000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,1,0,5,5,4,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +120000000.0,0,1,0,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +190000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,1,0,4,5,6,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,0,1,4,3,3,GRA,Semi Detached Duplex,Ikeja +58000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +110000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +33000000.0,1,1,1,3,4,4,Chevron,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +33000000.0,0,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +180000000.0,1,1,0,4,4,4,Ikate,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000005.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +145000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +98000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +220000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +100000000.0,0,1,1,4,7,6,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,8,GRA,Detached Duplex,Ikeja +270000000.0,1,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,1,1,1,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +108000000.0,1,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +35000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +63000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +64000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,0,4,5,5,Ologolo,Terraced Duplex,Lekki +80000000.0,1,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +68000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,0,1,5,5,5,Agungi,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +102000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,4,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,6,Osapa London,Semi Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +62000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +125000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +39000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +100000000.0,1,1,1,5,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +410000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,1,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +83000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +38000000.0,1,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +256000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +33000000.0,1,1,1,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +225000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +290000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +250000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +72000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +64000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,0,1,3,4,4,Ikate,Terraced Duplex,Lekki +28000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +105000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +260000000.0,0,1,0,5,7,8,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,1,0,4,3,3,Ikota,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +77000000.0,1,0,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +34000000.0,0,0,0,3,0,0,Other Ikeja,Terraced Duplex,Ikeja +140000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,2,0,0,Other Ikoyi,Detached Duplex,Ikoyi +130000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,3,0,0,Other Victoria Island,Terraced Duplex,Victoria Island +75000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +87000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +450000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,1,1,7,6,7,Ikota,Detached Duplex,Lekki +55000000.0,1,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +120000000.0,0,0,0,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +125000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +38000000.0,0,1,0,4,4,3,Lekki Phase 2,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,5,Ikota,Terraced Duplex,Lekki +250000000.0,1,0,1,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +300000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +160000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,1,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,0,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +80000000.0,0,1,1,4,5,6,Ikota,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +68000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +500000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +450000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,1,3,3,4,Ikate,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +52000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,5,6,4,Lekki Phase 1,Detached Duplex,Lekki +54000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +125000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +130000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +200000000.0,0,1,0,3,3,3,Other Victoria Island,Terraced Duplex,Victoria Island +45000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,0,1,7,8,8,Alausa,Detached Duplex,Ikeja +140000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +44815000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +180000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +210000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,1,5,5,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +36000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,1,0,0,4,5,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Ikate,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +145000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Awolowo Way,Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +110000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +86000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +11500000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +64000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +79500000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +41800000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +225000000.0,0,0,0,7,9,9,Lekki Phase 1,Detached Duplex,Lekki +79000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +51500000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +35000000.0,0,0,0,5,5,6,Victoria Garden City,Terraced Duplex,Lekki +49000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +41500000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +230000000.0,1,1,1,4,4,4,GRA,Detached Duplex,Ikeja +145000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +100000000.0,1,0,1,5,5,5,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Opebi,Detached Duplex,Ikeja +135000000.0,0,0,0,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +115000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +50000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +130000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +59000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +67000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +36000000.0,1,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,0,0,5,4,4,Parkview,Semi Detached Duplex,Ikoyi +55000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +93000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +170000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Ikota,Detached Duplex,Lekki +155000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +65000000.0,0,0,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +205000000.0,0,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +53000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +105000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,GRA,Terraced Duplex,Ikeja +480000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +270000000.0,0,0,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,1,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +47000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +280000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +63000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,1,0,1,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +39000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +150000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +180000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +75000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +73000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +62000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +145000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +348000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +118000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +120000000.0,1,0,1,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +500000000.0,0,0,1,3,5,5,GRA,Detached Duplex,Ikeja +115000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,1,1,0,5,4,5,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +160000000.0,1,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +270000000.0,0,0,0,8,8,9,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,1,0,5,7,7,Agungi,Detached Duplex,Lekki +250000000.0,1,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +120000000.0,1,0,1,5,4,4,Agungi,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +109000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +420000000.0,1,1,0,4,5,5,Banana Island,Terraced Duplex,Ikoyi +47000000.0,0,1,0,3,3,4,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +39800000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +380000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +135000000.0,1,1,0,3,3,4,GRA,Detached Duplex,Ikeja +124000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Maryland,Semi Detached Duplex,Ikeja +45000000.0,0,0,0,4,3,4,Ikota,Detached Duplex,Lekki +290000000.0,0,0,0,4,5,6,Osapa London,Detached Duplex,Lekki +46000000.0,0,1,0,4,3,4,Lekki Phase 2,Semi Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +59000000.0,0,0,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +35000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,1,1,4,5,4,Adeniyi Jones,Terraced Duplex,Ikeja +70000000.0,1,1,1,5,5,5,Other Victoria Island,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +70000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +85000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +170000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,1,5,5,5,GRA,Detached Duplex,Ikeja +140000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +35000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +68000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +190000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +67000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +300000000.0,1,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,0,1,0,6,6,7,Osapa London,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,4,4,Ikate,Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +70000000.0,0,1,0,5,4,5,Other Lekki,Terraced Duplex,Lekki +90000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,7,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +120000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,0,0,3,0,0,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +320000000.0,0,1,1,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +130000000.0,0,0,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +45000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +38000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +127000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +350000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +400000000.0,0,0,1,10,10,10,Opebi,Detached Duplex,Ikeja +130000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,6,Foreshore,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +85000000.0,0,0,0,4,6,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +33000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +130000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +27000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +160000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +62000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,4,5,GRA,Semi Detached Duplex,Ikeja +115000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +38000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +30000000.0,1,1,0,3,0,0,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +400000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +450000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +76000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,9,9,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +170000000.0,0,0,0,10,10,10,Foreshore,Terraced Duplex,Ikoyi +100000000.0,1,0,1,5,6,6,Ikate,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +130000000.0,1,1,0,4,5,5,GRA,Detached Duplex,Ikeja +200000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +350000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +380000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +49000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +125000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +135000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +57000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +58500000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +120000000.0,1,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +73000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +110000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +270000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,3,5,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +35000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +240000000.0,1,1,0,5,5,5,GRA,Detached Duplex,Ikeja +280000000.0,0,1,0,5,5,7,Oniru,Detached Duplex,Victoria Island +85000000.0,1,1,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +380000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +170000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +68000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +92000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +130000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +185000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +40000000.0,1,1,0,2,2,3,Chevron,Terraced Duplex,Lekki +56000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +76000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +130000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +140000000.0,0,1,1,4,6,6,Alausa,Detached Duplex,Ikeja +38000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +33000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +260000000.0,0,1,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +41000000.0,1,1,0,2,2,2,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,1,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Opebi,Terraced Duplex,Ikeja +65000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,1,1,0,4,4,4,Banana Island,Terraced Duplex,Ikoyi +420000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +45000000.0,1,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +138000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +130000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +84000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +140000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +160000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,1,6,6,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,1,5,4,6,Opebi,Detached Duplex,Ikeja +400000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +198000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,1,0,7,7,8,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +400000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +85000000.0,0,0,0,5,7,8,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +14800000.0,0,1,0,2,3,3,Other Lekki,Terraced Duplex,Lekki +120000000.0,1,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +380000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +83000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +40000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +52000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +50000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +57000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +90000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +260000000.0,0,0,1,5,7,7,GRA,Detached Duplex,Ikeja +48000000.0,1,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +37000000.0,0,0,0,3,4,4,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,1,4,4,3,Lekki Phase 2,Semi Detached Duplex,Lekki +185000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +65000000.0,0,0,0,4,5,5,Allen Avenue,Detached Duplex,Ikeja +280000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +138000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +120000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +54000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,0,0,4,3,4,Other Ikoyi,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +90000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +165000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +72000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +48000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +270000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +170000000.0,0,1,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,0,1,3,3,3,Chevron,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +300000000.0,1,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +45000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +65000000.0,0,1,0,3,3,4,Osapa London,Terraced Duplex,Lekki +50000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +138000000.0,0,0,0,4,6,7,Osapa London,Detached Duplex,Lekki +350000000.0,0,1,0,10,10,8,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +190000000.0,0,0,0,4,3,4,Parkview,Semi Detached Duplex,Ikoyi +110000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +40000000.0,1,1,0,2,2,3,Ikota,Detached Duplex,Lekki +33000000.0,1,1,1,3,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +170000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +100000000.0,0,1,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +450000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,1,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +390000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +160000000.0,1,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +200000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +49900000.0,0,1,1,5,6,6,Chevron,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +210000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +195000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +185000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,1,5,5,5,GRA,Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +250000000.0,0,0,0,5,5,6,Agidingbi,Detached Duplex,Ikeja +180000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,1,1,0,4,4,4,Alausa,Semi Detached Duplex,Ikeja +110000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +110000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +145000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +110000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +235000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +115000000.0,0,1,0,4,5,5,Opebi,Terraced Duplex,Ikeja +63000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Foreshore,Terraced Duplex,Ikoyi +170000000.0,1,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +79500000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +420000000.0,0,0,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +58000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +170000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +200000000.0,1,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +100000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +170000000.0,1,0,1,4,4,4,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,4,Agungi,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,0,0,6,5,6,GRA,Detached Duplex,Ikeja +57000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +87000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75009009.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +43000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +290000000.0,0,1,1,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +50000000.0,0,0,0,3,3,4,Agungi,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +47000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +67000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +270000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,5,Ikota,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +150000000.0,1,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +60000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +47000000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +280000000.0,1,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +220000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +240000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +112000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +100000000.0,1,1,0,5,5,5,Opebi,Detached Duplex,Ikeja +90000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +56000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +33000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +51000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +76000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +170000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,7,7,7,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +47000000.0,0,0,0,4,4,3,Osapa London,Terraced Duplex,Lekki +72000000.0,1,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +37000000.0,0,0,0,2,0,0,Other Lekki,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +55000000.0,1,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +420000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Detached Duplex,Victoria Island +230000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +75000000.0,0,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +85000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +37000000.0,0,0,1,4,4,5,Ikate,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +185000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Maryland,Detached Duplex,Ikeja +400000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +97000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,4,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,2,0,0,Ikate,Terraced Duplex,Lekki +115000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +61000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Ikate,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +135000000.0,1,1,1,4,5,5,Ikate,Detached Duplex,Lekki +59000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +63000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +250000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +59000000.0,0,1,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +185000000.0,0,0,0,3,0,4,Other Victoria Island,Detached Duplex,Victoria Island +150000000.0,0,1,0,5,7,7,Lekki Phase 1,Semi Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +235000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +300000000.0,1,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +90000000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Maryland,Semi Detached Duplex,Ikeja +58000000.0,0,0,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +64100000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +135000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,8,8,9,GRA,Detached Duplex,Ikeja +82000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +67000000.0,1,0,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +110000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +155000000.0,1,1,0,4,5,5,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +250000000.0,1,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +220000000.0,0,1,1,5,6,6,Omole,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,1,0,1,5,6,6,Other Ikeja,Detached Duplex,Ikeja +78000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +380000000.0,0,1,1,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +170000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +79000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +450000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +170000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,0,0,0,6,5,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +40000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +145000000.0,0,1,1,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,1,4,6,6,Agidingbi,Detached Duplex,Ikeja +320000000.0,0,1,0,4,4,5,Parkview,Detached Duplex,Ikoyi +86000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +77500000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +250000000.0,0,0,0,6,5,7,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +38000000.0,0,1,1,3,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,7,7,7,Other Lekki,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +74000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +55000000.0,0,0,1,4,4,4,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +34000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,3,4,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +220000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +56000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,0,0,3,0,0,Victoria Island Extension,Terraced Duplex,Victoria Island +65000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +76000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,0,0,5,5,6,Oregun,Semi Detached Duplex,Ikeja +60000000.0,1,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +235000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +45000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +30000000.0,0,1,0,2,3,0,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,1,4,6,6,Foreshore,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +53000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +165000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +175000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +250000000.0,0,0,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +300000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,10,10,10,Other Victoria Island,Detached Duplex,Victoria Island +180000000.0,0,1,0,5,6,8,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,3,Opebi,Semi Detached Duplex,Ikeja +210000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +79000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,1,0,0,5,5,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +160000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +26000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +125000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,0,0,4,3,5,Chevron,Terraced Duplex,Lekki +170000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,5,4,5,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,1,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +370000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +90000000.0,0,0,0,3,0,0,GRA,Terraced Duplex,Ikeja +68000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +165000000.0,0,1,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +140000000.0,0,1,0,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +390000000.0,0,0,0,7,7,8,Other Victoria Island,Detached Duplex,Victoria Island +55000000.0,1,1,1,4,6,6,Agungi,Detached Duplex,Lekki +62000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +62000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +130000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,7,0,0,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,3,4,3,Other Ikeja,Detached Duplex,Ikeja +70000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +88000000.0,1,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +78000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +55000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +44900000.0,0,1,0,2,2,3,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +380000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +40000000.0,1,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +79500000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,0,5,4,4,Osapa London,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +75000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +14000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Airport Road,Detached Duplex,Ikeja +85000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +95000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +350000000.0,1,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +65000000.0,1,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +189000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +55000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +83000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +43500000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +205000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +280000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +78000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Allen Avenue,Detached Duplex,Ikeja +260000000.0,0,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +85000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +75000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +67000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +39000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +98000000.0,0,1,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +31000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,3,3,4,Airport Road,Terraced Duplex,Ikeja +200000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +180000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Oniru,Detached Duplex,Victoria Island +195000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +88000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +35000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +190000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +50000000.0,0,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +38000000.0,0,0,1,3,3,3,Chevron,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,5,Allen Avenue,Terraced Duplex,Ikeja +70000000.0,1,0,0,6,6,7,Chevron,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +100000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,5,7,6,GRA,Detached Duplex,Ikeja +250000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +285000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Foreshore,Terraced Duplex,Ikoyi +52000000.0,0,0,0,4,3,3,Awolowo Way,Detached Duplex,Ikeja +70000000.0,0,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,1,0,1,4,4,5,Ologolo,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +56000099.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +320000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +48000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +110000000.0,0,1,1,5,6,7,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Maryland,Terraced Duplex,Ikeja +57000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,6,6,Osapa London,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +250000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +400000000.0,0,1,1,5,7,7,Other Ikoyi,Detached Duplex,Ikoyi +45000000.0,0,1,0,3,4,4,Lekki Phase 2,Terraced Duplex,Lekki +68000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +64000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +57000000.0,1,1,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,0,0,6,5,5,Other Ikeja,Detached Duplex,Ikeja +77000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +93000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +83000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +37000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +51000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +60000000.0,0,0,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +300000000.0,0,0,0,5,5,6,Onikoyi,Terraced Duplex,Ikoyi +90000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +43000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +35000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +86000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +100000000.0,0,0,1,4,4,5,GRA,Detached Duplex,Ikeja +35000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +40000000.0,1,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +46000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,8,8,9,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +45000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +145000000.0,1,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +60000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +200000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +40000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +145000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,1,0,1,4,5,5,Ikate,Terraced Duplex,Lekki +70000000.0,1,0,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +275000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +51000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,0,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +49500000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +200000000.0,1,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +115000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +62000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +75000000.0,0,0,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +36500000.0,0,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +265000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +37000000.0,0,0,1,4,4,4,Ikota,Detached Duplex,Lekki +87000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,1,0,1,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,5,Onikoyi,Semi Detached Duplex,Ikoyi +155000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +69000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +60000000.0,0,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +289000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +118000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +79000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +72000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +72000000.0,0,1,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,0,5,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +45000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +140000000.0,0,1,1,5,7,7,Agungi,Detached Duplex,Lekki +190000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +66000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,1,1,4,4,5,Victoria Garden City,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +110000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +90000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +290000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +140000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +46000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,1,1,1,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +198000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +43000000.0,1,1,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,0,1,0,4,6,6,Ikota,Detached Duplex,Lekki +360000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +280000000.0,0,0,0,5,6,6,Banana Island,Terraced Duplex,Ikoyi +60000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,6,6,Maryland,Terraced Duplex,Ikeja +120000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,0,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +165000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +98000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,0,3,0,4,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,0,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +175000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,6,6,7,Osapa London,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +250000000.0,0,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +155000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +110000000.0,1,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +180000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +45000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +38000000.0,0,0,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +125000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Parkview,Detached Duplex,Ikoyi +85000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +190000000.0,0,1,0,6,7,7,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +140000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +500000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +295000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +92000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +92000000.0,0,0,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,3,4,4,Chevron,Terraced Duplex,Lekki +62000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,5,5,Opebi,Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +37000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +73000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +185000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,1,5,6,6,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +20000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +41000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +127000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +52000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +197000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,0,1,1,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +90000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +105000000.0,1,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +240000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +75000000.0,0,1,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +280000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +88000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +135000000.0,0,1,1,4,7,7,Awolowo Way,Detached Duplex,Ikeja +90000000.0,0,0,0,4,5,5,Other Ikeja,Detached Duplex,Ikeja +60000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +82000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +61000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +100000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,7,8,8,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +56000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +330000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +35000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Awolowo Way,Detached Duplex,Ikeja +65000000.0,0,1,0,3,0,0,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +500000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +53500000.0,1,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +78000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +370000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +69000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +72000000.0,0,1,1,4,6,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,6,6,7,Airport Road,Semi Detached Duplex,Ikeja +95000000.0,0,1,1,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +200000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +185000000.0,0,1,1,5,5,6,GRA,Semi Detached Duplex,Ikeja +350000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +230000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,6,Osapa London,Semi Detached Duplex,Lekki +78000000.0,0,1,0,3,3,0,GRA,Terraced Duplex,Ikeja +220000000.0,0,1,0,6,6,7,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,3,Ikate,Terraced Duplex,Lekki +83000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +58000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +240000000.0,0,1,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +38000000.0,1,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +78000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +70000000.0,0,1,0,3,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Osapa London,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +360000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +55000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +300000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +175000000.0,1,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +140000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Opebi,Detached Duplex,Ikeja +90000000.0,1,1,0,5,5,5,Ikota,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +335000000.0,0,0,0,6,5,7,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +92000000.0,0,1,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +33000000.0,0,1,0,3,5,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,1,1,1,5,5,5,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +73000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,0,3,4,5,Ikota,Semi Detached Duplex,Lekki +380000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,5,Omole,Detached Duplex,Ikeja +57000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +69000000.0,1,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +300000000.0,1,1,1,5,7,7,Chevron,Detached Duplex,Lekki +67000000.0,0,0,0,5,5,1,Other Lekki,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +185000000.0,1,1,0,3,3,3,Other Victoria Island,Semi Detached Duplex,Victoria Island +55000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +65000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,6,5,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Agungi,Detached Duplex,Lekki +80000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +235000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,7,6,Lekki Phase 2,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Parkview,Detached Duplex,Ikoyi +58000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,0,Adeniyi Jones,Detached Duplex,Ikeja +28500000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +125000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +480000000.0,0,1,0,6,6,7,Lekki Phase 2,Detached Duplex,Lekki +39000000.0,0,0,0,4,6,4,Lekki Phase 1,Terraced Duplex,Lekki +59000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +72500000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,1,0,5,10,10,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +120000000.0,1,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +100000000.0,0,0,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +190000000.0,1,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +78000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +140000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +400000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +175000000.0,0,0,0,3,3,3,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +45000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Parkview,Detached Duplex,Ikoyi +150000000.0,0,1,1,5,6,6,Agungi,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,1,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +40000000.0,1,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +145000000.0,0,1,0,7,7,8,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +390000000.0,0,1,0,6,6,7,GRA,Detached Duplex,Ikeja +375000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +50000000.0,1,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,1,3,5,6,Oniru,Detached Duplex,Victoria Island +250000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +74000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +37000000.0,0,1,1,2,2,3,Chevron,Terraced Duplex,Lekki +145000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +40000000.0,1,1,1,3,4,4,Ikota,Terraced Duplex,Lekki +220000000.0,0,1,0,4,4,4,GRA,Detached Duplex,Ikeja +75000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +38000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,1,5,7,6,GRA,Semi Detached Duplex,Ikeja +120000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +43000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +40000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +100000000.0,1,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,1,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +330000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +78000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +200000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +127000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +53000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,5,5,Parkview,Semi Detached Duplex,Ikoyi +150000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +27000000.0,1,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,1,5,6,6,Other Ikeja,Detached Duplex,Ikeja +85000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +65000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,6,7,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +100000000.0,0,1,1,5,7,8,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,0,0,3,0,0,Old Ikoyi,Terraced Duplex,Ikoyi +120000009.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +450000000.0,0,0,0,4,5,5,Parkview,Detached Duplex,Ikoyi +140000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +55000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +90000000.0,0,0,0,5,5,6,Maryland,Detached Duplex,Ikeja +145000000.0,0,0,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +85000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +10000000.0,0,1,1,4,6,6,Osapa London,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +60000000.0,1,1,1,0,3,4,Osapa London,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +275000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +59000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +71000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +280000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +49500000.0,0,0,0,6,6,7,Chevron,Terraced Duplex,Lekki +58000000.0,1,1,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +350000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +450000000.0,0,0,0,5,5,4,Onikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,5,5,6,Ikota,Terraced Duplex,Lekki +47000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +270000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +55000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +195000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,5,6,6,Osapa London,Terraced Duplex,Lekki +55000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +370000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +400000000.0,1,1,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +110000000.0,0,0,0,4,3,3,Other Lekki,Detached Duplex,Lekki +385000000.0,1,0,1,5,5,8,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Omole,Detached Duplex,Ikeja +140000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +235000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +300000000.0,0,0,0,6,5,5,Other Lekki,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +320000000.0,0,0,1,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +128000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,1,1,4,8,9,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +68000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Allen Avenue,Detached Duplex,Ikeja +90000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +79500000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,1,1,0,4,6,6,Victoria Garden City,Detached Duplex,Lekki +120000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +67000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +185000000.0,0,0,0,3,0,0,Other Victoria Island,Semi Detached Duplex,Victoria Island +100000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +106000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +120000000.0,1,1,1,5,6,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +67000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +80000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,0,3,3,4,Osapa London,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +70000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +80000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +130013000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +45000000.0,1,1,0,2,3,3,Ikate,Terraced Duplex,Lekki +330000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +135000000.0,0,1,1,5,7,6,Agungi,Detached Duplex,Lekki +40000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +350000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +350000000.0,0,0,0,6,7,7,Lekki Phase 2,Detached Duplex,Lekki +390000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +32000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +500000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +62000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +59000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +120000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +160000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,1,0,0,2,2,3,Ikota,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +55000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +40000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +110000000.0,0,1,0,3,3,4,Ikate,Semi Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +210000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +48000000.0,1,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,3,3,1,Victoria Island Extension,Detached Duplex,Victoria Island +79500000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +50000000.0,0,0,1,4,4,4,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +33000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +280000000.0,0,0,1,5,6,6,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,4,5,5,Other Ikeja,Detached Duplex,Ikeja +170000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +170000000.0,1,0,0,4,5,5,Parkview,Terraced Duplex,Ikoyi +130000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +10000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +220000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +265000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +70000000.0,1,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +275000000.0,0,0,1,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +75000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +130000000.0,0,0,0,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +36000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +200000000.0,0,0,1,6,7,7,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +65000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +50000000.0,1,1,0,3,4,4,Ikota,Detached Duplex,Lekki +500000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,3,4,Parkview,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +270000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +300000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +390000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +68000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +33000000.0,1,1,0,3,5,5,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +160000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +450000000.0,0,0,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +80000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +225000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,1,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +200000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +59000000.0,1,1,0,4,6,6,Chevron,Detached Duplex,Lekki +500000000.0,0,1,0,5,5,8,Lekki Phase 1,Detached Duplex,Lekki +235000000.0,0,0,1,5,7,7,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +69000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +67000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +100000000.0,1,1,1,5,5,5,GRA,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +160000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +47000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +380000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,0,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +48000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +185000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,6,8,8,Banana Island,Detached Duplex,Ikoyi +105000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +37000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Allen Avenue,Terraced Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +133000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +240000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +53000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,1,1,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +110000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +360000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,7,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +48000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +42000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +87000099.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +43000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +92000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +40000000.0,1,1,1,3,4,4,Ikota,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +280000000.0,0,0,0,3,0,0,Banana Island,Terraced Duplex,Ikoyi +330000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,1,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,1,1,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +150000000.0,1,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +73000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,4,Victoria Island Extension,Terraced Duplex,Victoria Island +48000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +280000000.0,0,0,0,6,5,6,Lekki Phase 1,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +400000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,1,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +185000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +175000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +165000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +380000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +90000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +230000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +79000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +53000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +20000000.0,0,0,0,2,3,3,Omole,Terraced Duplex,Ikeja +80000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +72000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +400000000.0,0,1,0,6,6,8,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +180000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +180000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +68000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +72000000.0,0,1,0,5,5,7,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +90000000.0,1,1,1,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +350000000.0,1,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +86000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +400000000.0,1,1,0,5,7,8,Osapa London,Detached Duplex,Lekki +145000000.0,1,1,1,5,5,5,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,4,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +47000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +74000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +63000000.0,1,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +77000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,1,4,3,3,Ikate,Detached Duplex,Lekki +59000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +72000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +41000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +68000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +155000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,1,5,5,5,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,0,0,3,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +150000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +370000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,6,6,7,Maryland,Semi Detached Duplex,Ikeja +65000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +38000000.0,0,1,0,3,5,5,Chevron,Terraced Duplex,Lekki +95000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +126000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +32000000.0,0,0,0,2,0,0,Other Lekki,Detached Duplex,Lekki +470000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +140000000.0,1,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +49000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +140000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Allen Avenue,Terraced Duplex,Ikeja +150000000.0,1,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +71000000.0,0,0,0,4,6,7,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +42000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +67000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +180000000.0,0,1,1,5,8,10,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,0,6,6,7,Omole,Detached Duplex,Ikeja +150000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +125000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +155000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +70000000.0,1,1,0,4,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,4,Agungi,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +480000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +130000000.0,0,1,0,4,6,6,Oniru,Terraced Duplex,Victoria Island +75000000.0,0,0,0,8,8,9,Chevron,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +260000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +96000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +63100000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +145000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,5,10,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,6,6,7,GRA,Detached Duplex,Ikeja +42000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,0,0,4,5,4,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +42000000.0,0,0,1,4,5,5,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +68000000.0,0,0,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,0,0,5,6,7,Ologolo,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,Parkview,Terraced Duplex,Ikoyi +160000000.0,0,1,1,4,6,6,GRA,Detached Duplex,Ikeja +75000000.0,0,1,0,4,5,4,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Awolowo Way,Terraced Duplex,Ikeja +250000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,6,GRA,Terraced Duplex,Ikeja +80000000.0,1,1,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +59000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +380000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +78000000.0,0,0,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,0,1,4,4,4,Oniru,Detached Duplex,Victoria Island +300000000.0,1,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +265000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +80000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +67000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +45000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,5,6,6,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +45000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +135000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +46000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +169000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +250000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +75000000.0,0,0,1,4,6,7,Lekki Phase 2,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +125000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,0,4,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +115000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,6,7,7,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +82000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +138000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +380000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +250000000.0,1,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +270000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +70000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +55000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,1,Lekki Phase 2,Detached Duplex,Lekki +380000000.0,1,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,0,3,0,0,Agungi,Terraced Duplex,Lekki +190000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +220000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +80000000.0,1,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +290000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,2,3,4,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +200000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +33000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +175000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Victoria Garden City,Detached Duplex,Lekki +99000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +110000000.0,0,0,1,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,4,5,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +365000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,5,Adeniyi Jones,Terraced Duplex,Ikeja +160000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +33500000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +100000000.0,1,0,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +115000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +30000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +50000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +60000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +80000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +35000000.0,0,1,0,3,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +49000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +68000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +280000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,6,6,Ikate,Terraced Duplex,Lekki +75000000.0,0,0,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +125000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +95000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +330000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +38000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +430000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +90000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +280000000.0,0,1,0,4,4,6,Victoria Garden City,Semi Detached Duplex,Lekki +68000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +97000000.0,1,1,0,4,4,4,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +53000000.0,1,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +150000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Other Ikeja,Terraced Duplex,Ikeja +41000000.0,0,1,0,2,2,3,Ikota,Terraced Duplex,Lekki +195000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,1,0,1,4,4,4,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +98000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +170000000.0,0,1,0,5,6,5,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,1,6,7,7,Adeniyi Jones,Detached Duplex,Ikeja +75000000.0,0,0,0,4,5,4,Osapa London,Terraced Duplex,Lekki +45000000.0,0,0,0,3,3,4,Victoria Garden City,Semi Detached Duplex,Lekki +65000000.0,1,1,1,5,6,6,Chevron,Semi Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,4,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,5,6,6,Oniru,Terraced Duplex,Victoria Island +57000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +210000000.0,0,0,0,5,8,8,Chevron,Detached Duplex,Lekki +90000000.0,0,1,1,5,5,6,Agungi,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +400000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +105000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +80000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +98000000.0,0,0,0,6,8,8,Lekki Phase 2,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +440000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +62000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +275000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +400000000.0,0,0,0,7,7,7,Ikate,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Osapa London,Terraced Duplex,Lekki +130000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +148000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +180000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +130000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +69000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +78000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,5,4,6,Agungi,Detached Duplex,Lekki +500000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,4,Opebi,Detached Duplex,Ikeja +180000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +102000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +150000000.0,1,0,0,4,5,6,Oniru,Terraced Duplex,Victoria Island +450000000.0,0,0,0,6,6,8,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +165000000.0,1,1,0,5,5,5,Ikate,Detached Duplex,Lekki +190000000.0,0,0,0,5,6,6,Ologolo,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Other Ikeja,Semi Detached Duplex,Ikeja +64000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +128000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Alausa,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +83000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,1,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +45000000.0,1,1,1,4,5,5,Airport Road,Detached Duplex,Ikeja +45000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +92000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +97000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,3,Other Ikoyi,Detached Duplex,Ikoyi +175000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +67000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,1,1,1,5,6,7,Banana Island,Detached Duplex,Ikoyi +180000000.0,0,0,0,5,4,5,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,1,1,1,3,3,4,GRA,Terraced Duplex,Ikeja +62000000.0,0,0,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +55000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +100000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +360000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +140000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +170000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +61000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Alausa,Semi Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,0,0,6,5,7,Victoria Garden City,Detached Duplex,Lekki +55000000.0,1,1,1,4,6,3,Chevron,Semi Detached Duplex,Lekki +92000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,5,Osapa London,Terraced Duplex,Lekki +90000000.0,1,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +76000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +140000000.0,0,1,1,4,5,5,GRA,Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +37000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +200000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +360000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +210000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +77000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,0,5,5,6,Chevron,Terraced Duplex,Lekki +100000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +47000000.0,0,1,0,3,3,3,Other Lekki,Detached Duplex,Lekki +145000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,1,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +59000000.0,0,1,0,6,6,6,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,8,Chevron,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Awolowo Way,Semi Detached Duplex,Ikeja +270000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +185000000.0,0,1,1,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,10,10,0,Allen Avenue,Semi Detached Duplex,Ikeja +46000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +260000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,1,1,4,5,6,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +110000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,1,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +68000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +90000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,Alausa,Detached Duplex,Ikeja +57000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +100000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,7,7,8,Airport Road,Detached Duplex,Ikeja +18000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +112000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +42000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,6,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,6,6,6,Ikate,Detached Duplex,Lekki +160000000.0,1,0,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +260000000.0,0,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +56000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +40000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,1,5,4,5,Ikota,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +280000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +37000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +38000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +70000000.0,1,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +70000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +98000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +400000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +47500000.0,0,1,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +53500000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,3,3,Chevron,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,5,6,Ikate,Terraced Duplex,Lekki +250000000.0,0,1,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +60000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,7,5,Other Lekki,Terraced Duplex,Lekki +300000000.0,1,1,1,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ologolo,Terraced Duplex,Lekki +55000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +168000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +125000000.0,1,1,1,4,4,4,Osapa London,Terraced Duplex,Lekki +300000000.0,0,0,0,5,6,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +57500000.0,1,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +135000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,4,4,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +85000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +190000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,3,3,3,Osapa London,Terraced Duplex,Lekki +170000000.0,1,1,0,5,6,6,Ikate,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +425000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +200000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +56000000.0,0,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,1,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +85000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,1,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,3,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +59000000.0,1,1,1,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +59000000.0,0,0,0,4,6,6,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +35000000.0,0,1,0,3,3,4,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,3,3,4,Oregun,Detached Duplex,Ikeja +105000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +54000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +320000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +450000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +45000000.0,0,1,1,2,6,6,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,5,4,4,Other Lekki,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +32000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,4,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Maryland,Detached Duplex,Ikeja +60000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +260000000.0,0,1,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +97000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +125000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +11600000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +480000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +50000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +90000000.0,1,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,6,6,6,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +125000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,0,1,4,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Terraced Duplex,Lekki +70000000.0,1,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +126000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +460000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +65000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +125000000.0,1,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +48500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +175000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +68000000.0,0,1,0,4,5,5,Omole,Semi Detached Duplex,Ikeja +110000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +280000000.0,0,0,0,6,7,7,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +100000000.0,1,1,0,3,4,5,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,1,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,1,1,0,3,3,4,Chevron,Detached Duplex,Lekki +150000000.0,1,0,1,5,6,6,Omole,Detached Duplex,Ikeja +250000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +37000000.0,0,0,0,3,3,0,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +44000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +190000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,1,3,4,5,Lekki Phase 2,Terraced Duplex,Lekki +165000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,1,4,5,5,Oniru,Detached Duplex,Victoria Island +400000000.0,0,0,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +95000000.0,1,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +150000000.0,1,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +185000000.0,1,1,0,3,3,4,Other Victoria Island,Semi Detached Duplex,Victoria Island +60000000.0,0,1,1,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +140000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,3,2,2,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +120000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,1,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +400000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +110000000.0,0,0,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +130000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +62000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +52000000.0,1,1,1,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Agungi,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +230000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +290000000.0,0,0,0,5,6,7,Onikoyi,Detached Duplex,Ikoyi +140000000.0,1,1,1,5,7,7,Ikota,Detached Duplex,Lekki +38000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +45000000.0,1,1,1,3,3,4,Osapa London,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +65000000.0,0,0,0,3,4,4,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +200000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +58000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +69000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +97000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +77000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,6,6,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +140000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +165000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +38000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +83000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +46000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +180000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +130000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +90000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,6,Oniru,Detached Duplex,Victoria Island +430000000.0,0,1,0,5,6,6,Onikoyi,Detached Duplex,Ikoyi +130000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,4,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Osapa London,Detached Duplex,Lekki +62000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +40000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +230000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +170000000.0,1,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +85000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +125000000.0,0,0,0,5,7,8,Ikota,Detached Duplex,Lekki +37000000.0,0,0,0,4,6,6,Agungi,Terraced Duplex,Lekki +54000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,1,Ikate,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +145000000.0,1,1,0,5,6,6,Agungi,Detached Duplex,Lekki +15000000.0,0,0,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +68000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Oregun,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +40000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +10000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +38000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +350000000.0,1,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +230000000.0,1,1,0,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +20000000.0,0,0,1,3,3,3,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,0,6,6,6,Adeniyi Jones,Detached Duplex,Ikeja +58000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +48000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +26000000.0,0,0,0,5,4,5,Other Lekki,Semi Detached Duplex,Lekki +285000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +65000000.0,1,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +270000000.0,1,1,0,6,6,7,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,2,2,3,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,1,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +90000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,0,6,6,7,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,2,2,2,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +59500000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,7,6,5,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,0,0,1,4,6,7,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +46000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +95000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +135000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +290000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +250000000.0,1,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +79500000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Airport Road,Detached Duplex,Ikeja +69000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +112000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +50000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,1,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +165000000.0,0,0,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,0,0,5,6,6,Agidingbi,Detached Duplex,Ikeja +230000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,8,8,8,Adeniyi Jones,Detached Duplex,Ikeja +105000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +140000000.0,0,1,0,5,6,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +135000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +36000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +100000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +69000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +150000000.0,1,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,1,4,4,4,Chevron,Terraced Duplex,Lekki +170000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +100000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +69000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +85000000.0,0,0,0,4,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +75000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +65000000.0,0,1,1,3,4,3,Agungi,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +70000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +190000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +255000000.0,0,1,0,5,6,6,GRA,Detached Duplex,Ikeja +200000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,4,Other Victoria Island,Semi Detached Duplex,Victoria Island +67000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,1,4,5,5,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +250000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +56000000.0,0,0,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +310000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +265000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,1,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +69900000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +155000000.0,1,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +42000000.0,1,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +160000000.0,0,0,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +120000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +45000000.0,0,0,0,4,5,4,Ikota,Semi Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +85000000.0,0,1,0,3,3,4,GRA,Terraced Duplex,Ikeja +95000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,2,2,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +78000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +67000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +167000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +105000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +150000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +90000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,1,0,4,3,4,Chevron,Detached Duplex,Lekki +360000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +73000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +140000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +450000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +115000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +52500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +170000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +450000000.0,1,1,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +120000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +450000000.0,1,1,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +90000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +83000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +33000000.0,0,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +160000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +40000000.0,1,1,1,2,3,3,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,5,Alausa,Detached Duplex,Ikeja +70000000.0,0,1,0,5,7,7,Chevron,Detached Duplex,Lekki +285000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +260000000.0,0,0,0,4,4,4,Foreshore,Semi Detached Duplex,Ikoyi +80000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +50000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,4,5,6,Osapa London,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +180000000.0,0,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +100000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +184000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +37000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +350000000.0,1,1,1,5,4,5,Agidingbi,Detached Duplex,Ikeja +95000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +225000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +62000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +160000009.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +140000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +77000000.0,0,0,0,5,4,4,Osapa London,Detached Duplex,Lekki +360000000.0,1,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +125000000.0,1,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +245000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +145000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +57000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +66000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,1,1,1,4,4,4,Ikate,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +135000000.0,0,1,0,4,4,7,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +300000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +80000009.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +130000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +66000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +320000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +155000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,1,1,0,4,5,5,Waziri Adeola Odeku,Detached Duplex,Victoria Island +300000000.0,0,0,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +36000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +255500000.0,1,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +100010000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +98000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +430000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +190000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,4,0,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,1,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +205000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +111000000.0,0,0,0,5,5,5,Ikota,Terraced Duplex,Lekki +200000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +61000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +54000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +70000000.0,1,1,0,6,6,7,Ikate,Semi Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +320000000.0,0,0,0,3,0,0,Banana Island,Terraced Duplex,Ikoyi +40000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,2,0,0,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +70000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +63000000.0,0,1,1,4,5,5,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Victoria Island Extension,Semi Detached Duplex,Victoria Island +95000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +110000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +35000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +120000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +85000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +260000000.0,0,0,0,5,4,4,Banana Island,Semi Detached Duplex,Ikoyi +180000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +45000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +150000000.0,1,1,1,5,5,5,Ikate,Detached Duplex,Lekki +73000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +270000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,0,1,1,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +37000000.0,0,0,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +185000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +270000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +52000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +220000000.0,1,0,0,6,6,7,Chevron,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +140000000.0,1,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +75000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +295000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +255000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +95000000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,0,1,4,5,5,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,1,4,4,5,Allen Avenue,Detached Duplex,Ikeja +47000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +200000000.0,0,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +198000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,0,1,0,3,0,0,Opebi,Detached Duplex,Ikeja +180000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Oregun,Terraced Duplex,Ikeja +50000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +143000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +49500000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +185000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +175000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,0,0,3,3,0,Foreshore,Terraced Duplex,Ikoyi +150000000.0,0,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +55000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +300000000.0,0,0,0,4,5,5,Oniru,Semi Detached Duplex,Victoria Island +57000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +200000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +120000000.0,1,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,6,Ikate,Detached Duplex,Lekki +43000000.0,0,1,0,4,3,3,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,0,0,3,0,0,Maryland,Semi Detached Duplex,Ikeja +75000000.0,0,0,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +33000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +92000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +85000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +260000000.0,0,0,0,4,4,4,Old Ikoyi,Terraced Duplex,Ikoyi +175000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,4,6,6,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,1,1,4,3,4,Other Ikoyi,Detached Duplex,Ikoyi +250000000.0,0,0,0,4,6,6,GRA,Detached Duplex,Ikeja +206000000.0,0,0,0,3,3,4,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,0,1,4,4,5,GRA,Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +280000000.0,1,1,0,5,7,7,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +66000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,7,7,Opebi,Terraced Duplex,Ikeja +200000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,3,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,1,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +55000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +280000000.0,0,1,1,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +73000000.0,0,0,0,4,4,4,Ologolo,Terraced Duplex,Lekki +165000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Agidingbi,Detached Duplex,Ikeja +400000000.0,0,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +500000000.0,0,1,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +150000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +33000000.0,0,1,1,3,3,5,Chevron,Terraced Duplex,Lekki +110000000.0,0,0,1,5,5,4,Ologolo,Detached Duplex,Lekki +42000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +30000000.0,0,1,1,3,6,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +70000000.0,1,0,1,4,5,5,Chevron,Terraced Duplex,Lekki +72000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +55000000.0,0,1,1,4,3,3,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,0,0,4,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,4,Onikoyi,Detached Duplex,Ikoyi +66000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +98000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,6,4,4,GRA,Detached Duplex,Ikeja +125000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +47000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +110000000.0,1,1,1,4,5,5,Foreshore,Terraced Duplex,Ikoyi +60000000.0,0,1,0,5,5,7,Chevron,Detached Duplex,Lekki +270000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +58000000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +280000000.0,1,1,1,3,3,3,Banana Island,Detached Duplex,Ikoyi +75000000.0,0,0,0,5,5,5,Ikate,Terraced Duplex,Lekki +115000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +105000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +125000000.0,1,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,1,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +33000000.0,0,0,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +360000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +200000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +34500000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +138000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +37000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +46000000.0,1,1,0,3,0,0,Ikota,Terraced Duplex,Lekki +60000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +500000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +73000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +57000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +200000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +360000000.0,0,1,1,5,5,6,Banana Island,Detached Duplex,Ikoyi +280000000.0,0,0,1,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +120000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +500000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +82000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +270000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,5,6,Ikate,Terraced Duplex,Lekki +47000000.0,0,0,1,3,3,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,1,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +400000000.0,0,0,0,7,7,7,Victoria Island Extension,Detached Duplex,Victoria Island +68000000.0,1,1,0,4,4,3,Other Lekki,Detached Duplex,Lekki +175000000.0,1,1,1,5,6,7,Ikota,Detached Duplex,Lekki +61000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,5,5,5,Omole,Detached Duplex,Ikeja +200000000.0,0,0,0,5,7,6,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,4,4,Chevron,Detached Duplex,Lekki +130000000.0,1,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +95000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +60000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,7,7,6,Ikota,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +65000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +351000000.0,1,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +280000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +49000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +120000000.0,1,1,1,4,5,5,Oniru,Terraced Duplex,Victoria Island +115000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +190000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +60000000.0,1,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +75000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +125000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +150000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +145000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +198000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +56500000.0,0,1,0,4,3,2,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +300000000.0,0,1,0,4,4,4,Oniru,Semi Detached Duplex,Victoria Island +65000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +110000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,0,0,4,5,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +170000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +85000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +105000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +110000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Agidingbi,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,5,Waziri Adeola Odeku,Detached Duplex,Victoria Island +130000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +39000000.0,0,1,1,4,5,6,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,5,7,5,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +460000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +67000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,1,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +105000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,1,0,0,7,7,8,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,7,Other Victoria Island,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +69000000.0,1,1,1,4,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +56000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,0,3,4,4,Ikate,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +300000000.0,0,1,0,4,6,6,Other Victoria Island,Detached Duplex,Victoria Island +200000000.0,0,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +64000000.0,1,1,0,4,4,4,Ikota,Detached Duplex,Lekki +170000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +33000000.0,0,0,0,3,4,4,Ikota,Detached Duplex,Lekki +118000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,0,0,0,4,2,2,Chevron,Detached Duplex,Lekki +67000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +39000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +135000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Foreshore,Detached Duplex,Ikoyi +60000000.0,0,1,1,4,5,5,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +45000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +195000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +120000000.0,0,0,0,2,2,2,Other Victoria Island,Terraced Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +68000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,0,1,1,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +500000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +16675000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +99000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +47000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +78000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +69000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,1,3,4,4,Other Lekki,Terraced Duplex,Lekki +95000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +34000000.0,0,1,0,3,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +300000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +78000000.0,1,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +210000000.0,0,0,0,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +300000000.0,0,1,1,5,6,7,Osapa London,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,1,1,0,3,3,3,Oniru,Detached Duplex,Victoria Island +120000000.0,0,0,0,5,4,5,Foreshore,Terraced Duplex,Ikoyi +85000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +55000000.0,1,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +480000000.0,0,0,0,7,7,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +55000000.0,1,0,0,3,4,4,Ologolo,Terraced Duplex,Lekki +55000000.0,0,0,0,3,0,0,Agungi,Terraced Duplex,Lekki +110000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +140000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +30000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +400000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +56000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +198500000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +280000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +45000000.0,1,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +175000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +30000000.0,0,0,0,3,0,0,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +450000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +200000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,6,Ikota,Detached Duplex,Lekki +90000000.0,1,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +72000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +63000000.0,1,1,0,4,4,4,Agungi,Terraced Duplex,Lekki +55000000.0,1,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +325000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,6,5,5,Other Ikeja,Detached Duplex,Ikeja +160000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +78000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,1,1,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,1,1,0,5,4,5,Ikota,Detached Duplex,Lekki +460000000.0,1,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +175000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +140000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +170000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +68000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,4,6,7,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +90000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,6,6,7,Oregun,Detached Duplex,Ikeja +110000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +70000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +138000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +290000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +270000000.0,0,0,1,6,6,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +100000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,6,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +200000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,1,1,1,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +150000000.0,1,1,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +250000000.0,0,1,1,5,5,7,GRA,Detached Duplex,Ikeja +335000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +190000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +51000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,1,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +43000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +160000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +155000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,0,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +98000000.0,0,1,1,4,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +55000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +36000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +102000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +350000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,1,0,6,6,7,Omole,Detached Duplex,Ikeja +220000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +200000000.0,1,1,0,6,7,7,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,0,1,4,4,4,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,6,6,7,Opebi,Detached Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,GRA,Detached Duplex,Ikeja +190000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +82000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +68000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +100000000.0,0,1,0,6,7,7,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Agidingbi,Detached Duplex,Ikeja +65000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Allen Avenue,Detached Duplex,Ikeja +47000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Agidingbi,Semi Detached Duplex,Ikeja +50000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +145000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +90000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +240000000.0,1,0,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +420000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,5,5,Airport Road,Semi Detached Duplex,Ikeja +180000000.0,0,0,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +330000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,6,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +85000000.0,1,1,0,4,5,6,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Oregun,Detached Duplex,Ikeja +400000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,0,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +47000000.0,0,0,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +36500000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +46000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +69500000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,3,5,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +165000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,0,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,5,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +100000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,1,1,6,5,5,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +450000000.0,1,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +150000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +410000000.0,1,0,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +50000000.0,1,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,1,5,5,6,Agungi,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +43000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,0,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +158000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +83000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +180000000.0,0,0,0,4,6,6,Oniru,Detached Duplex,Victoria Island +60000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +45000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +400000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +135000000.0,1,1,0,3,3,4,Other Ikoyi,Detached Duplex,Ikoyi +50000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +370000000.0,0,1,1,9,9,10,Other Lekki,Detached Duplex,Lekki +62000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,1,0,1,5,5,6,Ikate,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +140000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +48000000.0,0,0,0,5,6,6,Lekki Phase 2,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,2,6,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Foreshore,Terraced Duplex,Ikoyi +55000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +340000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,4,5,5,Agungi,Terraced Duplex,Lekki +500000000.0,0,1,1,5,7,8,Banana Island,Semi Detached Duplex,Ikoyi +150000000.0,0,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +77000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +120000000.0,1,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +121000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,0,0,5,5,5,Maryland,Semi Detached Duplex,Ikeja +300000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +170000000.0,1,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +145000000.0,1,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +57000000.0,0,0,0,6,6,7,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Airport Road,Detached Duplex,Ikeja +188000000.0,0,1,0,5,6,7,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,10,10,10,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +65000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +450000000.0,0,1,0,9,9,10,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +35000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +36000000.0,1,1,0,3,4,4,Victoria Garden City,Terraced Duplex,Lekki +56000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,6,5,Ikota,Semi Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +180000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +200000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +230000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +270000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +175000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +160000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +75000000.0,0,1,1,5,4,6,Ologolo,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +30000000.0,1,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +80000000.0,0,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +320000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +180000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +189000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,3,Ikota,Terraced Duplex,Lekki +50000000.0,0,0,1,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +170000000.0,0,0,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +50000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,1,5,7,7,Opebi,Detached Duplex,Ikeja +165000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,1,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +68000000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +65000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,1,0,2,2,3,Ikate,Detached Duplex,Lekki +64000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +220000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,4,6,6,Ikota,Detached Duplex,Lekki +189000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +58000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +43000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +500000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +300000000.0,0,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +95000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,0,Chevron,Terraced Duplex,Lekki +48500000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +43000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,1,0,3,0,0,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +300000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,0,0,5,5,5,Alausa,Detached Duplex,Ikeja +42000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +100000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,0,1,4,4,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +199999000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,6,7,7,Adeniyi Jones,Detached Duplex,Ikeja +145000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +95000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +72000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,1,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +110000000.0,0,0,0,4,5,5,Allen Avenue,Detached Duplex,Ikeja +58000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,4,5,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +500000000.0,0,0,0,5,6,6,Victoria Island Extension,Detached Duplex,Victoria Island +55000000.0,1,1,1,3,4,4,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,4,5,5,Foreshore,Terraced Duplex,Ikoyi +120000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +54000000.0,0,1,1,4,6,6,Agungi,Semi Detached Duplex,Lekki +38000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +39000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +200000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +300000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +51000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +45000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +120000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +90000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +75000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +360000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +55000000.0,1,1,1,4,5,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +41000000.0,0,1,0,2,3,3,Ikota,Terraced Duplex,Lekki +200000000.0,0,0,0,4,4,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +65000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +52000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +165000000.0,1,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +340000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +64000000.0,1,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +185000000.0,1,1,0,3,4,4,Other Victoria Island,Semi Detached Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +270000000.0,1,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,6,7,Ologolo,Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +80000000.0,0,0,0,4,5,4,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +160000000.0,1,1,1,4,6,6,Victoria Garden City,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,6,GRA,Detached Duplex,Ikeja +60000000.0,0,0,0,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Alausa,Detached Duplex,Ikeja +75000000.0,1,0,0,5,6,6,Ikate,Terraced Duplex,Lekki +230000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +55000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +78000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +145000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +70000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +35850000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +120000000.0,0,0,1,4,4,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +60000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +40000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +500000000.0,0,1,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +140000000.0,0,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +57000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +73000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +190000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,6,5,Ikate,Terraced Duplex,Lekki +180000000.0,0,1,1,4,5,5,Agungi,Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Alausa,Terraced Duplex,Ikeja +57000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,1,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +55000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,1,1,5,5,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,4,Parkview,Terraced Duplex,Ikoyi +35000000.0,0,1,0,3,3,3,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +300000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +185000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,4,Allen Avenue,Terraced Duplex,Ikeja +52000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +230000000.0,0,1,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +33000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +135000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +270000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,5,4,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +66000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,6,7,Opebi,Terraced Duplex,Ikeja +145000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Ikate,Detached Duplex,Lekki +280000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +33000000.0,1,1,1,3,5,5,Chevron,Terraced Duplex,Lekki +85000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +60000000.0,0,1,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +450000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +220000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +45000000.0,1,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +195000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +73000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +36000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +170000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +220000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +140000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +300000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +68000000.0,0,0,0,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Victoria Island Extension,Semi Detached Duplex,Victoria Island +70000000.0,0,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +275000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +100000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +39600000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +160000000.0,0,0,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +300000000.0,1,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +82000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,7,7,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +30000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +198000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,1,1,5,6,6,Banana Island,Detached Duplex,Ikoyi +172000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +120000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +55000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +33000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +69000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,0,0,4,5,5,Opebi,Detached Duplex,Ikeja +82500000.0,1,1,0,4,6,6,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +150000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +280000000.0,0,0,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,GRA,Terraced Duplex,Ikeja +270000000.0,0,0,0,4,5,4,Other Ikoyi,Terraced Duplex,Ikoyi +68000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,3,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +75000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +125000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +366000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,6,4,4,GRA,Semi Detached Duplex,Ikeja +43000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +500000000.0,1,1,1,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +148000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +97000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,1,1,1,3,3,4,Chevron,Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +155700000.0,0,1,0,8,8,0,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Agungi,Terraced Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +78000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,2,3,Other Victoria Island,Terraced Duplex,Victoria Island +310000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +350000000.0,0,1,1,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,4,Lekki Phase 1,Detached Duplex,Lekki +77000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +110000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +350000000.0,1,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +50000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +270000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +115000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +58000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +200000000.0,1,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +145000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +500000000.0,0,1,0,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +55000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +49000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Ologolo,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +48000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +36000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +285000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +205000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +65000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +105000000.0,0,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +150000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +57000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +400000000.0,0,0,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +67000000.0,0,0,1,3,0,0,Other Lekki,Detached Duplex,Lekki +270000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +170000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +52000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +72000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +68000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +450000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +220000000.0,0,0,1,4,5,5,Alausa,Detached Duplex,Ikeja +60000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +150000009.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +43000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +45000000.0,1,0,1,4,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +62000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +75000000.0,1,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +280000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +37000000.0,1,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +400000000.0,0,0,0,5,6,7,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +49000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +140000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +47500000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +420000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +72000000.0,0,1,0,6,6,7,Agungi,Detached Duplex,Lekki +170000000.0,0,1,1,5,6,7,Ikota,Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +310000000.0,0,1,0,7,6,6,Lekki Phase 1,Detached Duplex,Lekki +87000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +37000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,1,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +227000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +28000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +48000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +105000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,7,Chevron,Detached Duplex,Lekki +360000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +35000000.0,0,1,1,4,5,5,Ologolo,Semi Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +95000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +45000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +360000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +76000000.0,0,1,1,4,5,6,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,1,1,5,7,7,GRA,Detached Duplex,Ikeja +60000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +67000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +68000000.0,1,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +42000000.0,0,1,0,2,2,3,Lekki Phase 2,Terraced Duplex,Lekki +68000000.0,0,1,0,4,4,5,Opebi,Terraced Duplex,Ikeja +105000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +105000000.0,0,0,0,5,5,5,Other Ikeja,Terraced Duplex,Ikeja +125000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +65000000.0,1,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +38000000.0,0,1,1,3,4,4,Ikota,Detached Duplex,Lekki +47000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +205000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +32000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,1,0,4,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +400000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +130000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +53000000.0,1,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +120000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Other Ikeja,Terraced Duplex,Ikeja +85000000.0,0,1,1,4,5,4,Adeniyi Jones,Detached Duplex,Ikeja +130000000.0,1,1,1,5,5,6,Ikate,Terraced Duplex,Lekki +70000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +51000000.0,0,0,0,3,4,4,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +215000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +122000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +230000000.0,1,1,1,5,8,8,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +108000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +165000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +150000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +500000000.0,0,1,1,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +36000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +24000000.0,0,0,0,3,3,0,Other Lekki,Terraced Duplex,Lekki +79000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +230000000.0,0,1,1,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +330000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +99000000.0,0,0,1,4,5,5,Agungi,Detached Duplex,Lekki +220000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +170000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +68000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +270000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +350000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +63000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +62000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,2,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Victoria Island Extension,Semi Detached Duplex,Victoria Island +75000000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +115000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,0,0,6,6,7,Opebi,Detached Duplex,Ikeja +232000000.0,0,0,0,3,0,0,Old Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,1,0,4,5,6,Agungi,Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,2,2,2,Chevron,Terraced Duplex,Lekki +300000000.0,0,1,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +70000000.0,0,0,0,3,0,0,Oregun,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +20000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,0,0,7,6,7,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,5,5,GRA,Detached Duplex,Ikeja +110000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +60000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +74100000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +150000000.0,0,1,0,5,7,7,Ikota,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +65000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +220000000.0,1,1,0,5,7,7,Ikota,Detached Duplex,Lekki +17500000.0,0,1,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,5,Lekki Phase 2,Terraced Duplex,Lekki +300000000.0,0,0,1,7,8,8,Adeniyi Jones,Detached Duplex,Ikeja +140000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +198000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +350000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +140000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +200000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +190000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +47000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +54000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,1,0,1,3,3,3,Lekki Phase 2,Detached Duplex,Lekki +275000000.0,0,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +170000000.0,1,0,1,5,6,7,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,Opebi,Terraced Duplex,Ikeja +198000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,5,4,4,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,1,4,3,3,Other Lekki,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Osapa London,Semi Detached Duplex,Lekki +150000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +20000000.0,0,0,1,4,6,6,Osapa London,Detached Duplex,Lekki +250000000.0,1,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +95000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,3,4,Chevron,Detached Duplex,Lekki +57000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +70000000.0,0,0,0,3,3,4,Other Ikeja,Terraced Duplex,Ikeja +60000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,6,6,Ikate,Terraced Duplex,Lekki +52000000.0,0,1,0,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,1,0,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +140000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +260000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +80000000.0,1,1,0,4,6,7,Ikate,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +145000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +190000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +115000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +265000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +11000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +250000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +320000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Victoria Island Extension,Detached Duplex,Victoria Island +155000000.0,1,1,0,5,5,7,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +98000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,3,3,4,Other Ikoyi,Terraced Duplex,Ikoyi +270000000.0,0,0,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +54000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +65000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +46000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,0,0,4,3,4,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,1,0,3,3,4,Victoria Garden City,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +105000000.0,1,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +63000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,6,5,Other Ikeja,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,5,4,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +68000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +52000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +78000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +62000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +330000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,5,5,Ologolo,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,3,3,3,Opebi,Detached Duplex,Ikeja +300000000.0,0,0,0,6,6,7,Chevron,Detached Duplex,Lekki +87000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,5,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +64000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +40000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +220000000.0,1,0,1,4,4,5,Onikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,3,4,4,Ikota,Detached Duplex,Lekki +59000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +170000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +170000000.0,1,1,0,5,5,5,GRA,Detached Duplex,Ikeja +100000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +53000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,6,6,Lekki Phase 2,Terraced Duplex,Lekki +41000000.0,0,0,1,2,2,2,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +90000000.0,0,1,0,4,6,6,Oregun,Semi Detached Duplex,Ikeja +69000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +69000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +70000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +39000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +33000000.0,0,0,0,4,4,3,Ikota,Terraced Duplex,Lekki +76000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +69000000.0,1,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +47000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,3,2,3,Lekki Phase 2,Terraced Duplex,Lekki +210000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +105000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +330000000.0,0,1,0,5,7,8,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +40000000.0,0,1,0,3,3,3,Adeniyi Jones,Semi Detached Duplex,Ikeja +62000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +98000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +50000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +49900000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +400000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki diff --git a/clean/ikeja.csv b/clean/ikeja.csv new file mode 100644 index 0000000..c667265 --- /dev/null +++ b/clean/ikeja.csv @@ -0,0 +1,6654 @@ +,Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood +0,Shops,Allen Avenue Roundabout Allen Avenue Ikeja Lagos,₦,"750,000/sqm",1,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1,Newly Built 5 Bedrooms Detached Triplex,"Eso Close, Off Oduduwa Crescent, Gra Ikeja, Lagos Ikeja Gra Ikeja Lagos",₦,"280,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,GRA +2,1800m2 Land,Off Adedayo Banjo Street Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3,5 Bedroom Fully Detached Duplex,Magodo Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikeja +4,Luxury Built 4bedroom Fully Detached Duplex,Ikeja Lagos,₦,"295,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikeja +5,Massive 5 Bedroom Fully Detached Duplex,Magodo Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikeja +6,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,GRA +7,Massively Built & Tastefully Finished Luxury Block Of 7flats Of 3bedroom Each For Sale!!!,Alausa Ikeja Lagos,₦,"500,000,000",0,1,0,3 beds,3 baths,3 Toilets,Alausa +8,"A Brand Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq, Gym + Swimming Pool Area For Sale!!!",Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +9,3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets,GRA +10,4 Bedroom Semi Detached House With Bq,Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +11,Luxury 2units Of 5bedroom Semi Detached Duplex+ A Room Bq For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,5 Toilets,GRA +12,Luxury 3bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +13,2 Units Of 5 Bedrooms Semi Detached Houses,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Opebi +14,Luxury 3 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +15,Luxury 4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +16,An Industrial Property Of 3 Bays Warehouse,Oba Akran Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +17,"A Newly Built (5) Bedroom Detached Duplex @ Omole Phase 1, Ikeja.",Maryland Ikeja Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,7 Toilets,Maryland +18,Newly Built 4 Bedroom Semidetached Duplex At Ajao Estate,Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets,Airport Road +19,4units Of 3 Bedroom Flat,Off Valley Estate Cement Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +20,Plaza On 1200sqms Land,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +21,Land,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +22,Luxury 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +23,Luxury 5 Bedroom Detached Duplex,Ikeja Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +24,Luxury 4 Bedroom Detached Duplex,Magodo Ikeja Lagos,₦,"295,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +25,Luxury 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +26,Mega Filling Station,Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +27,Furnished Mini Flat,Off Toyin Street Toyin Street Ikeja Lagos,₦,"17,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +28,"Commercial Property On 4 Floor Along Awolowo Way, Computer Village, Ikeja",Obafemi Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +29,Fenced 7½ Acres Of Land With Warehouses,Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +30,3bedroom Terrace House + Bq,Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,3 beds,5 baths,5 Toilets,GRA +31,4 Bedroom Wing Of Duplex,Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +32,A Unique Executive 41 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"1,400,000,000",0,0,1,0 beds,10 baths,10 Toilets,Allen Avenue +33,Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +34,4bedroom Flat With Bq,Opebi Ikeja Lagos,₦,"1,500,000/year",0,0,0,0 beds,0 baths,0 Toilets,Opebi +35,Available Land,Magodo Phase2 Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +36,A Strategic Commercial 5 Floors Building,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +37,Top Notch Tastefully Finished 4 Bedroom Terrace Duplex,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,GRA +38,3 Bedroom Duplex With A Mini Flat,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +39,Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Skarplight Estate Via Ikeja Ikeja Lagos,₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikeja +40,Land,Opic Estate Ikeja Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +41,"12,000 Sq.meter Land",Ikeja Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +42,Office Complex 9 Floors,Allen Avenue Allen Avenue Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +43,4bedroom Duplex In A Serene Neighborhood,Mares Garden Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +44,A Storey Building Of 20 Rooms ( Tenement),Oregun Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Oregun +45,Newly Built 7 Units Of 3 Bedroom Flat For Residential Or Commerical Purpose,"Nice Environment Off Allen Avenue Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"550,000,000",0,1,0,3 beds,4 baths,4 Toilets,Allen Avenue +46,Newly Built And Exquisite 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +47,A 5 Star Hotel,Airport Road Lagos State Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",1,1,1,0 beds,0 baths,0 Toilets,Airport Road +48,4bedroom Semi Detached Duplex With Bq,Ogundana Axis Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +49,A Newly Built 4 Bedroom Massionate Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +50,Land,Alausa Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +51,Newly Built And Beautifully Finished 3 Bedroom Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,0 baths,0 Toilets,Allen Avenue +52,Shops For Sale,Airport Road(ikeja) Ikeja Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Airport Road +53,A Functional 33 Rooms Hotel Built On 2100sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"3,800,000,000",1,0,0,10 beds,0 baths,0 Toilets,GRA +54,4bedroom Terrace Duplex With 2living Rooms And 2car Garage,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +55,Newly Built 3bedroom Flat,Off Opebi Road. Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +56,A Storey Building On Half Plot,Akorowunfayo Street Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +57,34 Modern Hotel Rooms Plus Conference Room And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +58,20000 Sq Mtr Land With Structure,Isaac John Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +59,Land,Otunba Jobi Fele Road Alausa Ikeja Alausa Ikeja Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +60,Lovely 7 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +61,4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +62,A Tastefully Brand New 5 Bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +63,4 Bedrooms Semi Detached Duplex,Within A Restricted Estate At Alausa Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +64,3 Bedroom Apartment,Close To Maryland Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets,GRA +65,4 Bedroom Terrace Duplex With A Room Bq,"Awuse Estate Opebi Ikeja, Lagos State Opebi Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +66,"Fully Furnished 6 & 3 Bed Duplexes, 2 Bed Apartment With Swimming Pool",Ajao Estate By Chivita Airport Road(ikeja) Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Airport Road +67,Newly Built En Suite Luxury 3 Bedroom Flat With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +68,Exquisitely Finished 5bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +69,Land,Off Kusiratu Abiola Oregun Ikeja Lagos,₦,"15,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +70,2 Acres Of Virgin Land,Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikeja +71,Newly Built 7 Units Of 3 Bedroom Flat. For Residential Or Commerical Purposes,"In A Nice Environment Off Allen Avenue Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"550,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +72,A 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +73,2 No's Of 5 Bedroom Semi Detached Duplex With Good Location,Ikeja Gra Ikeja Lagos,₦,"205,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +74,2 & 3 Bedroom Apartment,Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Awolowo Way +75,2 Storey Block Of 6 Flats,Off Salvation Road Opebi Ikeja Lagos,₦,"185,000",0,0,0,3 beds, baths, Toilets,Opebi +76,A Bare Plot Of Land Measuring 1167sqm,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +77,Parcel Of Land Approx 320sqm For Sales In Serene Environment,Oregun Ikeja Lagos,₦,"25,000,000/year",0,0,0, beds, baths, Toilets,Oregun +78,5 Bedroom Fully Detached Duplex With A Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +79,4bedroom Maisonette,"Opposite Lagos State Police Command,gra Ikeja. Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +80,4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +81,Brand New 4 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"255,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +82,4 Bedroom Terraced Duplex,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +83,1 Storey Building Of 21 Rooms,Oba Akran Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +84,5 Bedroom Detached House With 2 Room Bq,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +85,Luxury 4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +86,4 Bedroom Duplex,Alausa Ikeja Lagos,₦,"90,000,000/year",0,0,0,4 beds,4 baths,4 Toilets,Alausa +87,5bedroooms Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +88,Land,Magodo Ph1 Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +89,Newly Built 5bedroom Detach Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +90,Fantastic 4 Bedroom House Measuring 1445.906 Sqm,No 30 Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,5 baths,5 Toilets,Airport Road +91,Functioning Construction Company,Ikeja Ikeja Lagos,$,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +92,20000 Sq Mtr Land With Structure,Isaac John Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +93,Land,Channles Tv Hq Alausa Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +94,14106.827 Sqm Of Land,Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +95,5 Bedrooms Duplex And Two Bedrooms Boys Quarter,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +96,Newly Built Luxuriously Finished 2 Units 4 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +97,An Electrical Factory,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +98,5100sqm Land,Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +99,Elegant 6 Bedrooms Ensuite Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +100,6 Bedroom Duplex,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets,Allen Avenue +101,Furnished 1 Bedroom Flat In A Serene Close,Allen Avenue Ikeja Lagos,₦,"16,000,000",0,0,0,1 beds,2 baths,2 Toilets,Allen Avenue +102,"Clean 4 Nos Of 3 Bedroom Flat Off Allen Avenue Ikeja, Lagos. ( For Residential & Commerical Purpose)","Off Allen Avenue Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +103,Land,Between Anthony And Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +104,Newly Built 4 Bedroom Semi Detached Duplex + 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +105,For Sale:2bedroom Bungalow In An Estate At Allen Ikeja N12m Asking,Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,2 baths,2 Toilets,Allen Avenue +106,Tastefully Finished New 5 Bedroom Fully Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +107,Land,Kudirat Abiola Oregun Ikeja Lagos,₦,"380,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +108,Newly Built 4 Bedroom Maisonette With 1 Room Bq,"Boet Estate, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +109,2 Units 4bedroom Semi Detached Duplex With 2rooms Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +110,7unites Of 5bedroom Service And Fully Furnished Luxury Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"840,000,000",1,0,1,5 beds,4 baths,5 Toilets,Adeniyi Jones +111,Well Finished Hotel,"Gra, Ikeja Ikeja Lagos",₦,"2,300,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikeja +112,"Office Building On 3 Floors At Adebayo Akannde, Oregun",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Oregun +113,4 Bedroom Detached Duplex,Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +114,4 Units Of 3 Bedroom Flat On 732sqm,"Orimolade Street, Ogba Ikeja Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +115,Lovely Built 4bedroom Semi Detached Duplex,Salvation Road Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +116,2 And Half Plot Of Land With Story Building,Mangoro Ikeja Lagos,₦,"85,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +117,A Functional Hotel,Ikeja Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +118,4 Bedrooms Terrace And 5 Bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +119,Newly Built 3 Bedroom Flat + Bq,"In A Serene Environment Of Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,GRA +120,4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +121,2 Bedrooms Flat,Agidingbi Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agidingbi +122,Metro Hotel,"Airport Road, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"400,000,000",0,0,0,10 beds,10 baths,0 Toilets,Airport Road +123,A 10 Bedroom Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Adeniyi Jones +124,9 Floors Commercial Building,Allen Axis Allen Avenue Ikeja Lagos,₦,"2,000,000,000/year",0,0,1,9 beds,9 baths,9 Toilets,Allen Avenue +125,Executive 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +126,4 Bedroom Wing Of Duplex,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +127,5 Bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"100,000,000/sqm",0,0,0,5 beds,5 baths,7 Toilets,Alausa +128,4 Acres Of Land,Ikeja Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +129,Relatively New Five Bedroom Fully Detached Duplex With Bq,Off Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +130,5 Bedroom Duplex,Off Toyin Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikeja +131,2arces And 2plots At Kudirat Abiola Way Oregun Ikeja Lagos Suitable For Any Kind Of Purpose,Kudirat Abiola Way Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Oregun +132,A Well Furnished Spacious 3 Bedrooms Ensuite Bathroom Flat Upstairs With Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +133,Land,Opic Estate Via Ikeja Ikeja Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +134,4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +135,Prime Fenced 3120sqm Land,Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,GRA +136,8 Units Of Three Bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Opebi +137,A Full Functional Hotel Sitting,Ikeja Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikeja +138,Commercial Land/plot,Z Oregun Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +139,2 Bedroom Apartment,Maryland Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Maryland +140,A Cable Producing Factory,Ikeja Industrial Area Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +141,A Newly Built 4 Bedrooms Massionate,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +142,7000 Square Meters Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +143,Newly Built 3 Bedroom Flat In A Perfect Neighbourhood,Maryland Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets,Maryland +144,Newly Completed 5bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +145,Spacious 4 Bedroom Fully Detached Duplex,Salvation Road Opebi Ikeja Lagos,₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets,Opebi +146,Newly Built/furnished 4 Bedroom Fully Detached Duplex,Omole Phase 2 Unity Road Ikeja Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets,Airport Road +147,Block Of Terrace 1# 4bedroom + Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,0,4 beds,6 baths,6 Toilets,GRA +148,Block Of Flats Of 3 Bedrooms Each + Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,1,3 beds,4 baths,4 Toilets,GRA +149,"Industrial Property On 4.6 Acres Nested Within The Popular Ikeja Industrial Area, Ikeja, Lagos","Within Ikeja Industrial Area, Ikeja Ikeja Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +150,2 Bedroom Flat(all Rooms Ensuite),Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agidingbi +151,Exquisitely Built 3 Bedrooms Terrace Duplex,Agidingbi Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agidingbi +152,A Plot Of Land,Off Adebola Solanke Area Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +153,4 Bedrooms Terrace And 5bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +154,Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Terrace Duplex,Grandville Estate Ikeja Gra Lagos State. Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,GRA +155,Brand New 4 Bedroom Terrace Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +156,Bare Land In A Serene Environment,Remi Fani Kayode Avenue Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +157,Newly Built 4bedroom Duplex In A Serene Neighborhood,Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +158,Lovely 7 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +159,"Urgent Sale, 2400sqm Open Land Along Lagos To Ikorodu Road Between Anthony And Maryland",Between Anthony And Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +160,Newly Built 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +161,4 Bedroom Town House,Allen Avenue Ikeja Lagos,₦,"135,000,000",1,1,1,4 beds,5 baths,5 Toilets,Allen Avenue +162,Newly Built Four (4) Bedroom Terrace Duplex With A Room Bq,Femi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +163,5 Bedroom Detached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +164,5numbers Of 4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +165,Brand New 5 Bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +166,College,Agidingbi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +167,Mega Filling Station,Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +168,Standard Building On A Full Plot Of Land For Sale At Ikeja With C Of O And Maximum Security Which Can Be Used For Both Commercial And Residential Purpose,Off Airport Road Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Airport Road +169,5 Bedroom Semi Detached Duplex With Pent House And Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +170,Newly & Well Built To Taste A 4 Bedroom Spacious Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +171,Land Measuring 1034sqm With A 7bedroom Detached Duple,Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +172,Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +173,Full Plot Of Land,Off Airport Road Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +174,Brand New 4 Bedrooms Semi Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +175,Land,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +176,Spacious 4 Units Of 3 Bedroom Flat,Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Ikeja +177,3bed Rooms Flat,Off Allen Ikeja. Lagos Mainland Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +178,2 Wings 5bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +179,32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +180,3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +181,13 Luxury Hotel Rooms,Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +182,4 Bedroom Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +183,Hotel,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +184,4 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets,Maryland +185,6 Units Of Luxurious 3 Bedroom Flat With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +186,Newly Built 2units Of 4bedroom Semi Detached Duplex With Bq,Estate Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +187,A Corner Piece Land Measuring 1500sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +188,Land Measuring 1000sqm With A Demolishable Bungalow,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +189,2 Wings Of 3 Bedroom Duplex With A Miniflat As Bq,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oregun +190,Almost Completed 7numbers Of 3 Bedrooms Flats,Oladipo Kuku Street Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +191,5 Bedroom Detached Mansion,"Gbagba Crescent Estate Ogba, Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +192,5bedroom Semi Detached Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,7 baths,6 Toilets,GRA +193,4number Of 3bedroom Flat,Opebi Ikeja Opebi Ikeja Lagos,₦,"185,000,000",0,0,1,0 beds,0 baths,0 Toilets,Opebi +194,Luxury 4bedroom Semi Detached Duplex,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Ikeja +195,State Of The Art Fully Furnished And Serviced 5bedroom Fully Detached Mansion + Swimming Pool& Gym For Sale!!!,Awuse Estate Opebi Ikeja Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +196,A Corner Piece Dryland Measuring 1500sqm With A Demolishable Structure For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +197,A Newly Built & Tastefully Finished Luxury 3bedroom Flat + A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Opebi +198,Massive 9bedroom Fully Detached Duplex On 637sqm Landsize For Sale!!!,Ogundana Drive Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,9 beds,9 baths,9 Toilets,Allen Avenue +199,Land,Isheri North G.r.a Alausa Ikeja Lagos,₦,"25,000,000",1,1,0,0 beds,0 baths,0 Toilets,Alausa +200,Superb Newly Built 4 Bedroom Terraced Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +201,Exclusive Luxury And Spacious 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,0 baths,0 Toilets,GRA +202,Luxury 4bedroom Fully Detached Duplex+3rooms Bq For Sale!!!,Marwa Garden Estate Alausa Ikeja Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,4 Toilets,Alausa +203,"Solid, Massive & Tastefully Finished 4 Bedroom Semi Detached Duplex For Sale!!!",Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +204,Newly Built 3bedrooms Flat Apartment With Bq,Opebi Ikeja Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets,Opebi +205,A Functioning Standard 30 Rooms Hotel/courtyard,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"4,500,000,000",0,0,1,0 beds,0 baths,0 Toilets,GRA +206,Smart 3 Bedroom Terraced Duplex,Isheri North G.r.a Alausa Ikeja Lagos,₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets,Alausa +207,A Newly Built & Tastefully Finished Luxury 5bedroom Terrace Duplexes For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +208,"3 Bay Warehouse Each Consisting Of 15,000sq Ft",Morrison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +209,3 Acres,Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +210,Solid 2units Of 4bedroom Duplexes + Mini Flat (bq) On Land Measuring 1200sqm Landsize For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +211,Decent & Spacious 3bedroom Flat For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +212,A Newly Built & Tastefully Finished Luxury 2bedroom Flat For Sale!!,Toyin Street Ikeja Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Ikeja +213,"6units Newly Built & Tastefully Finished, Massive & Luxury 3bedroom Flats + (a Bq Each) For Sale!!!!",Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,3 Toilets,GRA +214,A Newly Built & Tastefully Finished Luxury 3bedroom Flats + A Room Bq For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +215,4 Units Of 3 Bedroom Flats Available For Sale At Oregun Ikeja,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Oregun +216,Newly Built 5bedrooms Duplex Fully Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +217,Newly Build 4 Bedroom Semi Detached,Magboro Ikeja Mangoro Ikeja Lagos,₦,"31,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +218,Newly Built 5bedrooms Fully Detached Duplex With Bq,Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Ikeja +219,Newly Built 4 Bedroom Terrace House,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +220,Dry Land Measuring 3600sqm For Sale!!!,Airport Road(ikeja) Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Airport Road +221,A Newly Built & Tastefully Finished Luxury 2buildings Consisting Of (6numbers Of 3bedroom Flat+ A Room Bq Each) For Sale!!!!,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +222,Newly Built 3bedrooms Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +223,A Brand New And Sweet 4bedrooms Semi Detached Duplex With A Boys Quarter,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +224,Massive 5bedroom Fully Detached Duplex + A Penthouse On 400sqm Landsize For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +225,Luxury 4bedroom Apartment,Mongoro Cement Close To Ikeja Mangoro Ikeja Lagos,₦,"43,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +226,800sqm Of Land,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +227,645sqm Of Bareland,Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +228,2 Semi Detached Houses Of 4bedroom + Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +229,Brand New 4 Bedroom Semi Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +230,Executive 6bedroom Duplex,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,8 beds,0 baths,0 Toilets,Allen Avenue +231,Newly Built 4bedrooms Terrace Duplex + 1 Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +232,A Block Of 12 Units Of Serviced 3 Bedrooms Flats,Oregun Ikeja Lagos,₦,"50,000,000",1,0,0,10 beds,10 baths,10 Toilets,Oregun +233,Fenced Land,Oba Akran Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +234,Fantastic 4 Bedroom Terrace Duplex House With Boys Quarter,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +235,"Land Measuring 3.5 Acres 12,668.479 (minimum Of 2,000m² To Be Sold @ 150k/sqm)","Off Adeniyi Jones, Ikeja (this Street Linked Adeniyi Jones And Awolowo Road, Ikeja Lagos",₦,"150,000/sqm",0,0,0, beds, baths, Toilets,Airport Road +236,Redevelopable Block Of 4 Units Of 2 Bedroom Flat On A Plot With 2 Room Boys Quarters,Olawaiye Street Anifowoshe By Computer Village Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +237,Redevelopable Property On A Land Measuring 994sqm,Ogundana Street Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +238,Prime Industrial Property,Ikeja Industrial Estate Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +239,Tastefully Finished Contemporary 7bedroom Duplex With A Room Boy's Quarter At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,1,0,7 beds,8 baths,8 Toilets,GRA +240,Fantastic 2unit Of 5bedroom Duplex With 2rooms Boy's Quarter,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +241,"Brand New , Exquisite And Luxurious 5 Bedroom Detached Duplex With A Room Boy's Quarter","Magodo Phase 2,ikeja Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Omole +242,5 Bedrooms Detached House,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets,Opebi +243,Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"430,000,000",1,0,0, beds, baths, Toilets,Allen Avenue +244,Brand New 5 Bedroom Detached House,Magodo Phase 2 Alausa Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Alausa +245,6 Bedrooms Detached & 4bedrooms Guest Chalet,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,7 baths,8 Toilets,Awolowo Way +246,"Magnificent, Superb And Stylishly Built 7bedroom Duplex With A Room Boy's Quarter At Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,7 beds,8 baths,8 Toilets,GRA +247,Newly Built 4 Bedroom Maisonette,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Awolowo Way +248,"Land Measuring 1,000m²","Herbert Macaulay Crescent, Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +249,Brand New 5 Bedroom Detached Duplex,Magodo Phase 2 Alausa Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Alausa +250,"Land Measuring 2,008m²","Directly Along Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,GRA +251,"Land Measuring 3,961m²","Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets,GRA +252,A Massive 7 Bedrooms Detached House All Rooms En Suite On Approximately 800sqm Land, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,8 baths,9 Toilets,Adeniyi Jones +253,4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,4 Toilets,GRA +254,Industrial Land With Sundry Developments,Ikeja Industrial Area Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +255,3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +256,Prime Industrial Property,Off Oba Akran Avenue Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +257,"Prime , Well Located And Fenced 2000sqm Land",Ikeja Gra Ikeja Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +258,"Brand New, Exquisite And Luxurious 5 Bedroom Fully Detached Duplex",Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +259,An Exquisite 5bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +260,Land,Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +261,Brand New Exquisite And Luxurious 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,1,4 beds,4 baths,5 Toilets,GRA +262,Spacious 5bedroom Detached Duplex,"Magodo Phase 2, Alausa Ikeja Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Alausa +263,Land For Sale (603 Square Metres),Off Adebola Solanke Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +264,"Brand New, Exquisite And Luxurious 7 Bedroom Detached Duplex",Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,7 beds,7 baths,5 Toilets,GRA +265,"Contemporary, Brand New 3 Bedroom Terrace House With Boys Quarter",Ikeja Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +266,Prime And Well Located 5001sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,GRA +267,4bedrooms Terrace And 5bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +268,Luxury 4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +269,Tastefully Finished Contemporary 7 Bedroom Detached Duplex With 2 Room Boy's Quarter,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets,GRA +270,Warehouse / Factory Block,Off Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +271,Exquisitely Well Designed Brand New 4 Bedroom Semi Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +272,Superbly Finished Two(2) Unit Of (5)bedroom Semi Detached,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +273,Residential Plot Measuring 600m²,"Weara Estate, Off Adeniyi Jones, Ikeja Lagos",₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +274,"Regular Shaped, Firm And Dry 500sqm Land",Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +275,Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +276,2 Bay Warehouse,Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +277,Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +278,Fully Detached Building,"Along Adeniyi Jones Road, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +279,5 Bedroom Duplex Plus 2 Bedroom Flat Bq,"Off Awolowo Way,ikeja Awolowo Way Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +280,4units Of 3bedroom Flat,Mangoro Cement Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +281,Brand New 4 Bedroom Duplex With Bq,Ajao Estate Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,4 Toilets,Other Ikeja +282,Executive 4 Bedroom Semi Detached Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"90,000,000",1,1,1,4 beds,6 baths,6 Toilets,Opebi +283,"1,500sqm Fenced & Gated Vacant Land In A Lovely Environment","Oduduwa, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"525,000,000",0,0,0, beds, baths, Toilets,GRA +284,Hotel,Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +285,"Distress Sale; Land Size 39,000sqm",Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +286,2 Wings 4 Bedroom Duplex,"Julie Estate,oregun Oregun Ikeja Lagos",₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oregun +287,Brand New 5 Bedroom Detached House,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +288,A Demolishable 8bedroom Duplex On 3000sqm Land Corner Piece In A Serene Estate,Akinola Cole Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0,8 beds,7 baths,8 Toilets,Adeniyi Jones +289,Fully Furnished 7 Units Of 5 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +290,Executive 6bedroom Duplex With 2bdroom Flat Bq In Good Location,Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,1, beds, baths, Toilets,Airport Road +291,Standard Big 4flat Of 3bedroom,Opebi Ikeja Opebi Ikeja Lagos,₦,"130,000,000",0,0,1,3 beds,0 baths,0 Toilets,Opebi +292,Newly Built 4bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +293,Detached House On Approximately 3000sqm,Awuse Estate Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +294,2 Units Of 5 Bedrooms Flats, Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +295,Exquisitely Built 3 Bedroom Flats With Bqs,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +296,1330sqm Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"380,000,000",1,0,0,0 beds,0 baths,0 Toilets,GRA +297,Land In Ikeja Gra Lagos,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000/sqm",0,0,0, beds, baths, Toilets,GRA +298,Functional Hotel Of 30 Rooms,"Allen Avenue, Allen Avenue Ikeja Lagos",₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +299,A Land Measuring 1200sqm With A Structure,In Secured Estate Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +300,"5 Bedroom Mansion With State Of The Art Fully Furnished And Finished With Turkish Furnitures With Swimming Pool,gym Cctv,intercom .",Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Opebi +301,4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +302,An Exquisitely Finished 7 Bedroom Detached House,Serene Estate .. Adeniyi Jones Ikeja Lagos,₦,"270,000,000",1,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +303,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,GRA +304,A Standard 5bedroom Duplex,Akowonjo Oba Akran Ikeja Lagos,₦,"47,000,000",0,0,0,5 beds, baths, Toilets,Other Ikeja +305,2 Units Of Tastefully Finished 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +306,Commercial Property,Oba Akran Ikeja Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +307,"Over 2 Hectares Of Land (24,000 Square Meters Land) In A Secure & Gated Mini Estate","Off Oba Akinjobi, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"350,000/sqm",0,0,0, beds, baths, Toilets,GRA +308,Modern 6 Bedroom Bungalow + 2 Rooms Bq,"Adeniyi Jones Estate, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +309,"Massive Strategically Located 16,000sqm Land Directly On Adeniyi Jones Ikeja",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"2,200,000,000",0,0,0,6 beds,6 baths,5 Toilets,Adeniyi Jones +310,Almost New Massively Built 7bedroom Exquisitely Finished Detached Duplex On 800sqm Land,Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,1,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +311,Land,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +312,5 Bedrooms Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +313,1800sqm Fenced & Gated Vacant Land,"Oduduwa, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +314,A Commercially Viable Property,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,4 Toilets,Adeniyi Jones +315,A Parcel Of Land Measuring Approx 1’663m2,Serene Estate Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +316,New Luxury 5bedroom Fully Detached Duplex,Opebi Ikeja Opebi Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets,Opebi +317,Warehouses And Offices On 3 Acres,Oba Akran Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +318,Building,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +319,Executive 3 Bedroom Apartment,Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets,Opebi +320,Brand New 4 Bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +321,Executive Mini Flat,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"23,000,000",0,0,0,1 beds,1 baths,1 Toilets,Allen Avenue +322,A Block Of 4 Flats,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +323,Exquisitely Finished State Of The Art 5 Bedroom Mansion With Swimming Pool Bq,Awuse Estate Opebi Ikeja Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Opebi +324,Nice 4 Bedroom Fully Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Alausa +325,"Massive 5 Bedroom Duplex + 2 Numbers Of 3 Bedroom Flats On 1,200sqm","Slightly Off Obafemi Awolowo Way, Ikeja, Lagos. Obafemi Awolowo Way Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +326,4 Bedroom Detached Duplex,. Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +327,2 Storey Open Plan Office Building,Alausa Ikeja Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +328,New Luxury 4bedroom Terrace Duplex In A Good Location,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,6 baths,6 Toilets,GRA +329,Standard 3bedroom Flat,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +330,A Classy 600sqm Bareland,Oshogbon Close Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +331,"Newly Built 6 Bedroom Fully Detached House With Swimming Pool, 2 Rooms Bq","Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,GRA +332,Wonderfully Built 7 Bedroom Fully Detached House + Penthouse,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,7 beds,7 baths,8 Toilets,GRA +333,A 4bedroom Terrace Duplex With Swimming Pool In Awuse Estate Opebi,Awuse Estate Opebi Ikeja Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +334,Standard 4numbers Of 3 Bedroom And Two Numbers Of 2bedroom With C Of O,Cement Ikeja Beside Local Airport Mangoro Ikeja Lagos,₦,"53,000,000",0,0,1,3 beds,4 baths,4 Toilets,Other Ikeja +335,Brand New 5 Bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +336,4 Bedroom Maisonette,Rowland Court Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +337,Newly Built 3 Bedroom Standard,Allen Avenue Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +338,Brand New 3bedrooms Apartments,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +339,Standard Commercial Demolishable Bungalow,Awolowo Way Awolowo Way Ikeja Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +340,4 Bedroom Maisonettes,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +341,6 Unit Of Uncompleted 4bedroom Terrace Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +342,6 Bedroom Fully Detached Duplex With 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Allen Avenue +343,An Exquisite 4 Bedroom Detached Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +344,Land,"Along Opebi Road, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +345,"Lovely 5 Bedroom Fully Detached House On 1,000sqm Land",Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +346,Twin 5 Bedroom Duplexes,Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +347,5 Bedroom Duplex,. Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Opebi +348,"Demolishable House For Outright Sale In An Estate At Off Allen Avenue,ikeja.the Asking Sales Price Is 150 Million Naira,and The Title Of The Property Is Certificate Of Occupancy","Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +349,5 Bedroom Detached Duplex With Bq,Off Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +350,Classical And Newly Built 5bedroom Detached Duplex With Bq @ikeja Gra,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +351,Newly Built & Lovely Furnished 5 Bedroom Fully Detached House,"Awuse Estate, Opebi, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"470,000,000",0,1,1,5 beds,5 baths,6 Toilets,Opebi +352,Block Of 4 Flat,Opebi Ikeja Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +353,Standard Big 4bedroom Semi Detached Duplex With Bq,Opposite Mko Abiola Garden Alausa Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds, baths, Toilets,Alausa +354,3 Bedroom Flat Plus A Room Bq,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +355,6bedroom Detached Duplex,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,1,1,0 beds,0 baths,0 Toilets,Allen Avenue +356,Strategically And Commercially Viable 1240sqm Bareland,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,2 baths,0 Toilets,Agidingbi +357,Land,Oregun Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +358,Land,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +359,Brand New 4bedroom Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +360,115 Rooms 4 Star Hotel,"Along Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"5,500,000,000",0,0,1,0 beds,0 baths,0 Toilets,Allen Avenue +361,Newly Built 5 Bedroom Fully Detached House + Bq,"Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +362,Newly Built 2 Units Of 4 Bedroom Semi Detached,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +363,25 Acres Of Land,Off Acme Road Adeniyi Jones Ikeja Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +364,9 Acres Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +365,"18 Rooms Office Space /hotel On Two Storey Building In The Heart Of Alausa Very Close To Shoprite, Sectariate Etc For Sale",Alausa Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets,Alausa +366,An Office Block,Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +367,Newly Built To Taste 4 Bedroom Terrace Duplex In A Serene Estate,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +368,30 Rooms Hotel With An Open Rooftop On 4floors, Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +369,"20,000sqm Land (4 Acres)",Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"5,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +370,4 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,GRA +371,1350sqm Bare Land For Residential In A Serene Estate(ashogbon),Ashogbon Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +372,Luxury 4bedroom Terrace Duplex + A Room Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +373,"New 5 Bedroom Mansion With Swimming Pool, Bq, Cctv In A Lovely Estate","Ikeja, Lagos. Opebi Ikeja Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Opebi +374,680sqms Land,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +375,6 Bedroom Flat,In A Close Mangoro Ikeja Lagos,₦,"150,000/sqm",0,1,0,3 beds,2 baths,3 Toilets,Other Ikeja +376,2units Of 5bedroom Duplex,Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +377,4numbers Of Mini Flat,Street Mangoro Ikeja Lagos,₦,"45,000/sqm",0,1,0,3 beds,3 baths,2 Toilets,Other Ikeja +378,Ongoing 8 Units Of 4 Bedroom Flat,Remi Fanikayode Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +379,5 Bedroom Duplex With Boys Quarter,Ayo Rosijii Ikeja Gra Ikeja Lagos,₦,"300,000,000",1,0,1,5 beds,5 baths,5 Toilets,GRA +380,3 Bedroom Flat With Bq,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +381,1.3 Units Of Newly Built 4 Bedroom,Ikeja Gra Ikeja Lagos,₦,"50,000,000",1,0,0,5 beds,8 baths,8 Toilets,GRA +382,Land,Oregun Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +383,4 Bedroom Flat & 3 Numbers Of 2bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +384,Land Of 5100 Sqm With A Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,GRA +385,6 Bedroom Finished & Detached Duplex,"Ajao Estate, Airport Road(ikeja) Ikeja Lagos",₦,"80,000,000",0,1,0,6 beds,6 baths,7 Toilets,Airport Road +386,A Brand New 3 Bedroom Luxury Apartment For Sale,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +387,4bedroom Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +388,4 Bedroom Semi Detached Duplex With Bq,Alausa Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +389,Major Development On Site Is An L Shaped Five Floor Hotel,"53, Bashiru Shittu Street, Magodo Gra Lagos Ikeja Lagos",₦,"1,157,078,821",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +390,Newly Built 4bedroom Duplex With Bq,"Adeniyi Jones Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +391,3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +392,Fully Fenced Plot Of Land Measuring 1304.44 Oregun Mixed Development,"Block 4, Guesstimate Avenue Of Etal Road, Oregun Mixed Development Oregun Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Oregun +393,Land,Alausa Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +394,5 Bedrooom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +395,7 Units Of Fully Furnished Top Notch 4 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"720,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +396,4 Bedroom Flat,Mangoro Mangoro Ikeja Lagos,₦,"38,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +397,4 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets,Opebi +398,5 Bedroom Semi Detached Duplex With Bq,Alausa Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +399,6 Units Of 3 Bedroom Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +400,Newly Built 3 Bedroom Flat,Ajanaku Street Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Opebi +401,Fully Furnished 7units Of 5bedooms,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,8 Toilets,Adeniyi Jones +402,Land Measuring 657 Square Metres,Opebi Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +403,A Brand New 3 Bedroom Luxurious Apartme,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +404,Newly Built 8 Bedroom Apartment On 2 Wings 4 Bedroom Each,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,1,8 beds,9 baths,9 Toilets,GRA +405,4 Bedroom Terrace Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +406,A Newly Built 5 Bedrooms Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +407,4 Bedroom Semi Detached Duplex,Minimah Estate Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Airport Road +408,2 Units Of Four Bedroom Semi Detached Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,6 Toilets,Opebi +409,A Brand New 3 Bedroom Luxurious Apartment,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +410,Fenced 1800 Sqm Swampy Land,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +411,Factory/warehouse/commercial Building,Oba Akran Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +412,4 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +413,Commercial Building ( Office Complex) Of 5 Floors,"Tokunbo Ali Street, Off Toyin Street Toyin Street Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +414,1.184 Hectares Of Dry Bare Land Fenced Round In A Choice Location,Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Oregun +415,645sqm Land*,"Opebi,awuse Estate Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +416,4 Number 2bedrooms Flat At Off Toyin Street Ikeja Going For #130m Net Doc Rc,Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +417,5 Bedroom Detached Mansion*,Gbagba Crescent Estate Ogba Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +418,For Sale: 4 Bedroom Terrace Duplex With Bq All Room Ensuite Newly Built Locate Off Allen Avenue Inside Estate Gated Areas Price 150m Negotiable,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +419,6bedrooms Detached House*,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +420,4 Bedrooms Semi Detached Duplex *,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +421,Luxury 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,GRA +422,"Lovely 4 Nos Of 3 Bedroom Flat Back Of Shoprite, Alausa Ikeja, Lagos.",In A Clean Enviroment @ Back Of Shoprite Alausa Ikeja Alausa Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Alausa +423,4 Bedrooms Semi Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +424,Relatively New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +425,Land,Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +426,Land,Obafemi Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +427,Office Building,Opebi Road Ikeja Lagos Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +428,4 Star Hotel,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +429,Land,Oba Akran Road Ikeja Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +430,Four Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Ikeja +431,2 Numbers Of 4 Bedroom Semi Detached Duplex + Bq,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"210,000,000",0,1,0,0 beds,0 baths,0 Toilets,Awolowo Way +432,4 Bedroom Detached Duplex,T Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +433,4 Bedroom Semi Detached Duplex,"Awuse Estate, Opebi Ikeja,lagos Opebi Ikeja Lagos",₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Opebi +434,Half Plot Of Land,Onigbongbo Maryland Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +435,Multi House Commercial Property In A Good Location,Slightly Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +436,5 Bedroom Fully Detached Duplex,Magodo Shangisha Phase 2 Alausa Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Alausa +437,A Story Building Of 16 Rooms,Off Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +438,"6 Acres Of Land N1.4b/acre N7.2b (all) Lagos State C Of O At Ikeja Gra Oba Akinjobi Street. N350,000 Per Sqm",Ikeja Gra Ikeja Lagos,₦,"7,200,000,000/sqm",0,0,0, beds, baths, Toilets,GRA +439,4 Bedroom Flat With Bq,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +440,An Empty (two) 2 Plots Dry Land.,Opposite Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +441,3bedroom Flat,"David's Court, Off Kudirat Abiola Way Oregun Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +442,An Old Structure Of 4bedroom Fully Detached,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +443,Newly Built 4 Bedroom Terraces Duplex With Bq In An Estate Off Adeniyi Jones Ikeja,In A Lovely Serene Estate Environment Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +444,Factory,Oba Akran Ikeja Lagos,₦,"16,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +445,Land,Abiola Cresent Toyin Street Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +446,4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +447,A Standard 10 Bedroom Duplex,Off Allen Avenue Ikeja Lagos,₦,"185,000,000",0,0,0,10 beds,9 baths,9 Toilets,Allen Avenue +448,Executive 7 Bedroom Fully Detached Duplex With 2 Rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,1,7 beds,8 baths,8 Toilets,Adeniyi Jones +449,Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +450,Lovely Modern 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +451,4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +452,550sqm Of Land,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +453,2 Units Of 4 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Maryland +454,Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +455,Executive 2 Bedroom Bungalow,Otedola Estate Omole Ph2 Ikeja Lagos,₦,"40,000,000",0,0,1,2 beds,3 baths,3 Toilets,Omole +456,5 Bedroom Detached Duplex With 2rooms Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +457,"2000sqm With Structure On It For Sale Directly On Opebi Road, 500m Asking",Road Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Opebi +458,Land,Alausa Ikeja Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +459,"Functional Hotel In Ikeja, Lagos",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +460,"Office Building On 3 Floors, Sitting On 774.223sqm Land",Ikeja Mobolaji Bank Anthony Way Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +461,Newly Built 4bedroom Maisonette With A Room Bq,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +462,5bedroom Fully Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +463,4 Bedroom Duplex With 2 Rooms Bq,Mko Gardens Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Alausa +464,Land,"13b, Isaac John St Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +465,Lovely 4 Bedroom Terrace Duplex With Swimming Pool,"@ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +466,Executive 4 Bedroom Semi Detached Duplex,Omole Extension Via Ikeja Ikeja Lagos,₦,"90,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +467,Newly Built 5 Bedroom Detached House With A Bq For Sale In Adeniyi Jones Ikeja,Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +468,7 Bedroom Detached Duplex,Onipetesi Mongoro Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +469,Executive Brand New 4 Bedroom Fully Detached Duplex,Magodo Ph1 Estate Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikeja +470,Two Numbers Of 3 Bedrooms Duplex And A Mini Flat Bq,Off Oregun Road Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oregun +471,1251sqm Land,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +472,1400sqm Commercial Land For Sale Directly On Oregun Road. Title Is C Of O,Directly On Oregun Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +473,2 And Half Acres Of Land,Opposite Elephant House Alausa Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +474,"1,965sqm Of Empty Land Lying","Isaac John Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,GRA +475,"1,100sqm Land By Bamishile Street, Tarred And Gated Street Off Allen Avenue,ikeja Lagos.",Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +476,Tastefully Built Fully Detached 5 Bedroom Duplex,Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +477,Distress Lovely Modern 6 Nos Of 3 Bedroom Flat Plus Penthouse,"In A Crescent Environment, Maryland Ikeja, Lagos Maryland Ikeja Lagos",₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Maryland +478,Brand New Ensuites Four Bed Detached,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +479,4bedroom Terrace Duplex With A Bq And Swimming Pool,Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +480,Executive Brand New 5 Bedroom Semi Detached Duplex With Bq,Opic Estate Via Ikeja Ikeja Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikeja +481,.550sqm Of Land,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +482,Newly Built 5 Bedroom House+ Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +483,Perfectly Built 4 Bedroom Terraces Duplex With A Bq Inside An Estate,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +484,4bedroom Fully Detached With Swimming Pool In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +485,603.246sqm Bare Land,Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +486,"1 Bedroom Flat For Sale With 2 Toilets In A Mini Estate Off Allen Avenue, Ikeja",Allen Avenue Ikeja Lagos,₦,"14,000,000",0,1,1,1 beds,1 baths,2 Toilets,Allen Avenue +487,Lovely 4bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Allen Avenue +488,Furnished Mini Flat, Allen Avenue Ikeja Lagos,₦,"23,000,000",0,0,0,1 beds,1 baths,2 Toilets,Allen Avenue +489,Executive Brand New 5 Bedroom Duplex With Bq,Ojodu Berger Ikeja Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikeja +490,A Storey Building On Half A Plot Of Land,Unity Road Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +491,Executive 5 Bedroom Fully Detached Duplex With A Room Bq,Omole Ph1 Ikeja Lagos,₦,"140,000,000",0,0,1,5 beds,6 baths,6 Toilets,Omole +492,250sqm Land In An Estate,Estate Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +493,671 Square Meters Land,Along Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +494,9517.06sqmtr Of Empty Land,"Celestial Street, Behind Zenith Bank, Agidingbi. Agidingbi Ikeja Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Agidingbi +495,Newly Built 4 Bedroom Detached House With Bq,Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +496,3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +497,2 Unit Of 3 Bedroom Bungalow,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +498,Executive Newly Built To Taste 6 Bedroom Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +499,Executive 3 Bedroom Bungalow,"Off Makogi Magboro Road, Ikeja Lagos",₦,"30,000,000",0,0,1,3 beds,4 baths,4 Toilets,Airport Road +500,4 Bedroom Semi Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Alausa +501,3 Bedroom Apartment,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +502,Hotel With 58 Rooms,Ikeka Allen Avenue Ikeja Lagos,₦,"1,000,000,000",1,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +503,"Tastefully Finished 5 Bedroom Detached Duplex (all Ensuite) With Fully Fitted Kitchen, Study Room, Jacuzzi, Cctv, Intercom, Automated Gate, Central Multi Media System, Family Lounge, Ante Room And A Room Boys Quarter In",Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +504,24 Units Apartment With 6 Units Of 3 Bedrooms Inclusive,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets,Airport Road +505,5 Bedrooms Detached Duplex (all Ensuite),Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +506,1600sqm Of Land With A Demolishable Building,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +507,Beautifully Built 3bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +508,5 Floors Building With 10units Of Open Space For Offices,Off Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +509,*a Brand New 5bedroom Semi Detached Duplex At Maryland: N95 Million Only.* Title: C Of O,Maryland Maryland Ikeja Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Maryland +510,2000sqmts Land,Magodo Shangisa Phase 2 Alausa Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +511,A 32 Rooms Hotel With Excellent Facilities,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",1,1,1,10 beds,10 baths,10 Toilets,GRA +512,5 Bedroom Terrace Detached Duplex With 2 Living Room And Adequate Parking Space,Located In A Close Estate Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +513,A Well Finished Newly Built 3 Bedroom Flat With A Room Boys Quarter,Isaac John Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +514,4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +515,4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +516,520sqm Land,Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +517,"A Commercial Property On 1004sqm For Sale Directly On Maryland Bustop, Beside Zenith Bank",Maryland Bustop Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +518,Exclusive 3 Bedrooms Semi Detached Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +519,Available Land,Lateef Jakande Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +520,Functional Hotel,Ikeja Allen Avenue Ikeja Lagos,₦,"320,000,000",0,0,1,0 beds,0 baths,0 Toilets,Allen Avenue +521,Land,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +522,Well Furnished Fully Detached { 4 Bedroom Duplex } With 3 Bedroom Boys Quarter,Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +523,2numbers Of 5bedroom Duplex And A Number Of 4bedroom Duplex On 900sqm Of Land,Allen Avenue Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +524,4flats Of 3bedrooms Each,Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,3 Toilets,Opebi +525,3 Bedroom Flats,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"50,000,000",1,1,1,3 beds,4 baths,0 Toilets,Other Ikeja +526,3 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +527,4 Flats Of 2 Bedroom,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +528,Ikeja Semi Detached House,Justice Coker Estate Alausa Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Alausa +529,Newly Built 5bedroom Detach Duplex Wth Bq In Omole Phase 1,Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Agidingbi +530,4bedroom Semi Detached House,Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +531,Finished 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +532,3 Bedroom Flat,Ladipo Kuku Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +533,4 Bays Warehouse +office Complex,Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +534,4 Plots Of Land,Ikeja Along Under Bridge Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +535,New Luxury 3 Bedrooms Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,0 Toilets,GRA +536,New House,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,1,1,9 beds, baths, Toilets,GRA +537,5 Numbers Of 3 Bedrooms Flat,Fola Adebayo Off Tolulope Moonlight Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +538,Private Jet For Sale,Airport Road(ikeja) Ikeja Lagos,$,"3,000,000",0,0,0,1 beds, baths, Toilets,Airport Road +539,Brand New 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +540,4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +541,2 Newly Built 4 Bedroom Wing Of Terrace,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +542,Warehouse,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +543,New House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds, baths, Toilets,GRA +544,Newly Built 5 Bedroom Detached Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +545,Luxury 3 Bedroom Flat,Orange Estate Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +546,Luxury 2 Bedroom Flat,Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +547,Land,"Isaac John Street, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +548,Commercial Building,Off Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +549,2 Bay Warehouses,Eleganza Road Oregun Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +550,Land,Adeniyi Jones For Sale Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +551,A Lovely 4bedroom Semi Detached Duplex At Maryland,. Maryland Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Maryland +552,3 Bedroom Flat,"Off Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +553,270 Plots Flat Land,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +554,Land,Mende Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +555,Land,Opebi Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +556,3 Bedrooms Terraced Duplex,After Berger Bus Stop Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikeja +557,4bedroom Detached House With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +558,4 Units Of 3bedrooms Duplex With 1room Bq N75m Per Unit. 2 Units Available,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +559,A Well Maintained Four Bedroom Duplex,Alausa Ikeja Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Alausa +560,A Plot Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +561,Luxury Commercial Property With A Elevator,Ikeja Lagos,₦,"2,000,000,000",1,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +562,A Newly Built 3 Bedroom Semi Detached Duplex,Off Salvation Road Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +563,5 Bedrooms Semi Detached Duplex,Cornerstone Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +564,Brand New Carcass Of 4 Bedroom Terrace Duplex With Bq On A Two Floor With Well Spacious Sitting Room,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +565,8 Units Of 4bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +566,5 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +567,Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +568,3 Bedroom Terrace Duplex,Alfred Garden Estate Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oregun +569,Land,Z Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +570,New 3 Bedroom Block Of Flats,Odunduwa Way Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,0 Toilets,GRA +571,Super Massive 4 Bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +572,"*blocks Of Flat, Comprising 2nos 3bedrooms And 2nos 2bedrooms* On A Full Plot With Parking Space", Ikeja Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +573,5bedroom Vacant Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,GRA +574,4 Bedroom Detached Duplex,S Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +575,Fully Detached Brand New Exquisite 4 Bedroom Duplex At Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +576,5 Bedroom Detached Duplex,Awuse Y Opebi Ikeja Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,0 Toilets,Opebi +577,5 Bedroom Terrace With Penthouse,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +578,Land,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +579,Land,At Ladipo Bataye Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +580,New House,Anthony Enahoro Estate Ogba Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths, Toilets,Other Ikeja +581,2 Wings Of 4bedroom Duplex,Adeboye Solanke Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +582,Tastefully Finished 2 Nos. Of 4 Bedroom Semi Detached House With Bq Each,Ikeja Gra Ikeja Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +583,5bedrooms Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +584,4 Units Of 2 Bedrooms & 2 Bedroom & 4 Units Of Mini Flats,Behind Ahamadiya Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +585,29 Rooms Hotel,Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +586,Luxury Built And Exquisitely Finished 4bedroom Detached Duplex And Semi Detached + A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +587,Joint Venture Land,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,GRA +588,5bedroom Detached House,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +589,A Modern 3 Bedroom Luxury And Spacious Flat,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +590,4bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"150,000,000",1,0,1,5 beds,6 baths,6 Toilets,Omole +591,"Newly Built Tastefully Finishing 4 Nos Of 4 Bedroom Terrace Duplex+ Bq In A Cool Environment, Off Allen Avenue, Ikeja, Lagos. 90% Ready.","In A Cool Environment, Off Allen Avenue, Ikeja Lagos. Allen Avenue Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Allen Avenue +592,3 Bedroom Duplex,Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Ikeja +593,6 Bedroom House,Shonibare Estate Maryland Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,7 Toilets,Maryland +594,New 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +595,1100sqm Land In Shonibare Estate,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +596,2 Nos Of 3 Bedroom Flat Fully Detached Bungalow,"In A Lovely Serene Estate, Off Adeniyi Jones Avenue, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +597,A Block Of Four Flats,"Mangoro, Ikeja Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +598,1000sqm Land,"Off Toyin, Mko Abiola Cresent Toyin Street Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +599,A Newly Built 5 Bedroom Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +600,760sqm,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +601,603sqm Of Land In A Fantastic Location,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +602,Massive Land For Sale At Kudirat Abiola Way Ikeja Lagos,Kudirat Abiola Way Origin Ikeja Oregun Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +603,4bedroom Detached House Plus 2 Bedroom Boys Quarters,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +604,2 Plot Of Land At Opebi Link To Oregun Under Bridge,Opebi Ikeja Lagos,₦,"60,000,000/sqm",0,0,0, beds, baths, Toilets,Opebi +605,Newly Built 4bedroom Terrace Duplex With A Room Bq,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +606,4 Bedroom Fully Detached Duplex,Alausa Ikeja Lagos,₦,"100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +607,Exquisitely Finished 5bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +608,Hotel,Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +609,3 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +610,A Landed Commercial Property On 680m2 Land,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +611,Commercial Prroperty,Allen Avenue Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +612,Functional School In Ikeja,Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +613,Office Complex On 3 Floors,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +614,Available Land,Alausa Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +615,"5,252.196sqm Of Corner Piece Bareland",Awolowo Way Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +616,Two Nos Of 3 Bedrooms Flats Plus 2 Nos Of 2 Bedroom Flats + 2 Big Shops,Obafemi Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Awolowo Way +617,4 Bedroom Duplex,.. Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +618,Executive 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Omole Ph2 Via Ikeja Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikeja +619,Hotel,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +620,Executive 2 Wings Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,1,5 beds,6 baths,6 Toilets,GRA +621,2numbers Of 2 Bedroom Flat,Moshalasi Alagbado Ikeja Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +622,Executive Brand New 5 Bedroom Fully Detached Duplex,Omole Ph1 Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets,Omole +623,603.246sqm Bareland,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +624,6 Bedroom Detached Duplex,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +625,New House,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,1,1,5 beds,0 baths,0 Toilets,GRA +626,Newly & Well Built To Taste Luxury 3 Bedroom Flat With A Room Bq,Maryland Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,0 baths,0 Toilets,Maryland +627,New House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets,GRA +628,5bedroom Detach Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,GRA +629,32 Rooms Hotel,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"3,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +630,3 Bedroom Flat With Bq + Swimming Pool,Adeniyi Jones Ikeja Lagos,₦,"58,000,000",1,0,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +631,Spacious 6 Bedroom Fully Furnished And Serviced Duplex Plus Bq,"Ajao Estate , Canoe Axis Airport Road(ikeja) Ikeja Lagos",₦,"70,000,000",1,1,1,6 beds,7 baths,7 Toilets,Airport Road +632,Newly Built 6 Units Of 4 Bedroom Semi Detached Duplex With Bq & Others Amenities,"Okupe Estate, Maryland, Lagos Maryland Ikeja Lagos",₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Maryland +633,A Landed Property Suitable For All Kind Of Mixed Used Purpose Aside From Filling Station,"Directly On Opebi Road, Ikeja Opebi Ikeja Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Opebi +634,"5 Units Of 4bedroom Terrace Duplexes With Bq, Gym, Swimming Pool On 1,600 Sqm","Oduduwa Crescent, Gra Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +635,Block Of 4 Units Of 3bedroom,"Opebi Road, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +636,Lovely 5 Bedroom Terrace Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Allen Avenue +637,4 Bedroom Condo Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +638,Luxury 3bedroom Terraced Duplex,Maryland Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Maryland +639,6 Bedroom Duplex,Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikeja +640,Land,At Obafemi Awolowo Way Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +641,Located 550sqm Of Land,Off Oluyole Bustop Oregun Ikeja Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +642,Land,"Directly On Opebi Rd, Ikeja, Lagos Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +643,4&5 Bedroom Fully Detached,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,GRA +644,9acres Of Land,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +645,Land,Awuse Estate Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +646,Land,"Awolowo Way, Ikeja Awolowo Way Ikeja Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +647,5200 Sqms Fenced Bare Land,Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +648,6 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +649,Newly Built Of About Finished 5 Bedroom Duplex With 2 Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +650,Executive Finished Mini Flat,"In An Estate, Off Allen Avenue, Ikeja Lagos Allen Avenue Ikeja Lagos",₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets,Allen Avenue +651,4 Units Of 4 Bedroom Terrace House,Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +652,Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Omole Ph1 Ikeja Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets,Omole +653,Lovely Modern 4 Bedroom Massionate,"In An Mini Estate, Inside Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +654,Land,Oba Akinjobi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +655,Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",1,1,1,5 beds,6 baths,6 Toilets,GRA +656,"18,300sqm Good Topography Empty Land",Off Awolowo Way Ikeja Lagos State . Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +657,"Corner Piece Bare Land Measuring 5,252 Square Meters",Awolowo Way Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +658,Standard 4 And 5bedroom Detached Duplex With A Room Bq,Ikeja Lagos,₦,"180,000,000",1,0,1,5 beds,6 baths,6 Toilets,Other Ikeja +659,"700 Sqm Land For Sale @ Lopez Close, Off Wole Ogunjimi Street, Agbaoku Cda, Opebi Ikeja",Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Opebi +660,Executive 6 Bedroom Duplex,Dideolu Estate Ikeja Lagos,₦,"150,000,000/day",1,0,1,6 beds,7 baths,7 Toilets,Other Ikeja +661,12000sqm 3 Acres Of Land Directlt Facing A Major Road,Oba Akran Road Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +662,Newly Built 3 Bedrooms Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,0 baths,0 Toilets,GRA +663,Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +664,"11,958.48sqmtrs Of Empty Land Behind Conoil Filling Station",Behind Conoil Filling Station At Oregun Off Kudirat Abiola Way. Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +665,5 Storey Building Office Complex With Pent House And Ample Parking Space,Allen Avenue. Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +666,575sqm Land. Title C Of O,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +667,Newly Built 6 Numbers 3 Bedrooms Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +668,Newly Built 2 Nos Of 4 Bedroom Semi Detached Duplex + Bq,"Shonibare Estate, Ikeja Mobolaji Bank Anthony Way Ikeja Lagos",₦,"210,000,000",0,1,0,4 beds,5 baths,5 Toilets,Awolowo Way +669,Newly Built 4 Bedrooms Semi Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +670,"420sqm Land Directly On Akran, Ikeja.",Road Oba Akran Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +671,4 Units Of 3 Bedroom Flat + 4 Rooms Bq,"@ Omolade Okoya Estate, Adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +672,Functional Hotel Of 18 Rooms On Approximately 1000sqmts With; Hall A Lounge,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +673,4 Units Of 3bedrooms Duplex With 1room Bq,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +674,Brand New Block Of Six Units Of 3 Bedroom Flat With A Bq, Mangoro Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +675,"Lovely 4bedroom Semi Detached House, All Rooms Ensuite With1rooms Bq",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,GRA +676,Executively Built Hotel In Ikeja Lagos,"Allen Avenue, Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,1, beds, baths, Toilets,Allen Avenue +677,"5bedroom Semi Detached In Adeniyi Jones, Ikeja Lagos",Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +678,Hotel In Ikeja Lagos Nigeria,Opebi Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Opebi +679,Mixed Use 3plots,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +680,"2,000m2 Plot (with A Duplex And Bungalow) At Remi Fani Kayode Avenue, Ikeja Gra. If",Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,GRA +681,"3 Bay Warehouse On 2.8 Acres Of Land For Sale In Morrison Cresent, Oregun",Morrison Cresent Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oregun +682,Land Measuring 1000sqm With A Demolishable Bungalow,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +683,5 Numbers Of 5 Bedrooms Terrace, Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +684,A Duplex On 700sqm,Directly On The Road Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +685,2 Bedroom Flat,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Ikeja +686,2 Wing 4 Bedroom Semi Detached Duplex,Off Salvation Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,8 beds,8 baths,10 Toilets,Opebi +687,4bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +688,Newly Renovated 4 Bedrooms Semi Detached Duplex In An Estate,Alausa Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +689,Luxury Built And Exquisitely Finished 4bedroom Duplex + 1rm Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +690,"Jv For Residential Or Commercial Purpose* *(premium)* 200m *location:* Ikeja Cbd Rd, Alausa Ikeja Lagos *value:* 600m *land Size:* 5,230sqm *title Doc:* C Of O *agency/facilitation:* Is 5% Of Land Value ...... Semi Direct",Alausa Ikeja Lagos,₦,"600,000,000/sqm",0,0,0, beds, baths, Toilets,Alausa +691,3 Bedroom Blocks Of Flats,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,0 Toilets,Adeniyi Jones +692,"A Detached Bungalow 1,800 Sqm","Oba Ladejobi Street, Gra, Off Oba Akinjobi Way, Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +693,Lovely Newly Built 3 Bedroom Terrace Duplex + Bq With Others Good Amenities,Off Allen Avenue Ikeja Lagos,₦,"77,000,000",0,1,0,3 beds,4 baths,4 Toilets,Allen Avenue +694,Newly Built 4 Bedroom Terrace Duplex + Bq,"In An Serene Estate Environment, Off Adeniyi Jones Ave, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +695,4 Bedroom Aristotle Built Semi Detached Duplex + Bq,Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Ikeja +696,"Newly Built Tastefully Finishing 4 Bedroom Terrace Duplex (self Compound With Separate Gate) +1 Rm Bq Off Allen Avenue, Ikeja, Lagos (residential/commerical Purpose).","In An Estate Off Allen Avenue, Ikeja Lagos. Allen Avenue Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Allen Avenue +697,32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +698,Fully Detached Commercial Property On 671sqm Of Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +699,Clean 3 Bedroom Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +700,510sqm Of Land With Demolishable Structure Directly On The Road,Directly On Allen Avenue Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +701,Fully Serviced 2 Bedroom Apartment,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agidingbi +702,5bedroom Fully Detached Duplex With A Room Bq,Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Awolowo Way +703,Newly Built 5bedroom Duplex With A Pent House And A Bq At Adeniji Jones Ikeja Lagos With All You Can Imagine,Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +704,5 Bedroom Flat All Room Ensuite With A Bq,In A Secure Estate In Maryland Maryland Ikeja Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Maryland +705,*a Five Bedroom Fully Detached Duplex In Ajao Estate Going For 60 Million Naira With C Of O*,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Airport Road +706,Tastefully Built 3 Bedroom Flat Serviced With A Bq, Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +707,4 Bedroom Flat With Selfcon At Akute Area Ikeja Lagos,Emmanuel Bus Stop After Police Station Ajuwon Road Akute Ikeja Lagos. Ikeja Lagos,₦,"16,000,000",0,0,0,4 beds,2 baths,2 Toilets,Other Ikeja +708,A Bungalow Of 3bedroom Flat With 2 Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"6,000,000/year",0,0,0,3 beds,3 baths,3 Toilets,GRA +709,32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +710,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +711,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +712,Land,Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +713,6 Bedroom Twin Detached Duplex,Fani Kayode Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +714,Fully Detached House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +715,7bedroom Ensuite Detached House,Mangoro Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +716,Executive 4 Bedroom Semi Detached Duplex With Bq,Magodo Ph1 Via Ikeja Ikeja Lagos,₦,"95,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +717,3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +718,Lovely Modern 5 Bedroom Fully Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +719,Land,"Directly On Opebi Rd, Ikeja, Lagos Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +720,4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +721,Executive 58 Rooms Hotel,"Off Allen Avenue Ikeja, (via Off Toyin Str, Ikeja Lagos Allen Avenue Ikeja Lagos",₦,"100,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +722,Newly Built 4 Bedroom Semi Detcahed Duplex,"In A Serene Environment Off Obafemi Awolowo Way, Ikeja, Lagos. Awolowo Way Ikeja Lagos",₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Awolowo Way +723,Lovely Modern 5 Bedroom Fully Detached Duplex,"In A Lovely Serne Environment, @ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +724,Land,Obafemi Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +725,Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +726,Spacious 4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +727,Tastefully Finishing 4 Bedroom Semi Detached Duplex,Off Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Awolowo Way +728,Land,Opebi Road Ikeja Opebi Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +729,A Large Vacant Land,Alade Aromire Street. Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +730,Land,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +731,4 Units Of Flats Plus A Mini Warehouse,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Opebi +732,Executive And Very Standard Spacious Newly Built 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikeja +733,A Modern 4bedroom Duplex With 2nos Of 3bedroom Flat,. Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +734,Decent 3 Bedroom Duplex With Boys Quarter,Alfred Garden Estate Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +735,Executive 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets,GRA +736,3 Hectares Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +737,Land Measuring 930sqm,"Off Toyin Street, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +738,Executive 6 Bedroom Fully Detached Duplex With 2 Bedroom Bq,Ikeja Via Opic Estate Ikeja Lagos,₦,"40,000,000/year",0,0,1,6 beds,7 baths,7 Toilets,Other Ikeja +739,4 Bedroom Duplex With A Room Bq,Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +740,Executive Brand New 4 Bedroom Semi Detached Duplex,Arepo Via Ikeja Ikeja Lagos,₦,"30,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikeja +741,New House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets,GRA +742,"4 Nos Of 2 Bedroom Flat Off Toyin Str, Ikeja Lagos","Unity Rd, Off Toyin Str, Ikeja, Lagos. Toyin Street Ikeja Lagos",₦,"180,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikeja +743,Newly Built 4 Numbers Of 4 Bedroom Terraced Houses,D Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +744,New House,Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,1,0,4 beds, baths, Toilets,GRA +745,Two Plots Of Land With Bungalow, Ikeja Gra Ikeja Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +746,36600. (9 Acres) Of Land,Oba Akran Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +747,Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets,GRA +748,An Executive Newly Built Semi Detached 4 Bedroom Duplex With A Room Bq,Off Allen Avenue Estate Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +749,Newly Built Luxury Block Of Flats Of 3 Bedroom Fully Serviced Plus 1 Room Bq,"Off Isaac John Street, By Joel Ogunaike Ikeja Gra Lagos State. Ikeja Gra Ikeja Lagos",₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,GRA +750,A Brand New 4 Bedroom Semi Detached Duplex,Agbaoku Estate Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +751,4 Numbers Of 4 Bedroom Terrace Duplex With A Room Bq And Swimming Pool On 1300sqm,Ikeja Gra Ikeja Lagos,₦,"480,000,000",1,0,0,4 beds, baths, Toilets,GRA +752,*super Sale In Bayo Dejonwo Estate,"Bayo Dejonwo Estate, Onigbongbo Maryland.. Maryland Ikeja Lagos",₦,"200,000,000/sqm",0,0,1,5 beds,5 baths,7 Toilets,Maryland +753,A Massive And Strongly Built Commercial Open Space Structure,"Adeniyi Jones, Ikeja. Adeniyi Jones Ikeja Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +754,Ultra Modern Purpose Built Office Complex,Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,1,0, beds, baths, Toilets,Allen Avenue +755,New House,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,1,0,7 beds,0 baths,0 Toilets,GRA +756,5b/r Bungalow With 5bedroom Detached Duplex And 3bedroom Bungalow + A Mini Flat Bq,"Adekunle Fajuyi Way, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +757,17600sqm,"Kudurat Abiola Way, Oregun Road Ikeja Lagos Oregun Ikeja Lagos",₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +758,New House,Mangoro Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +759,Land,Alausa Ikeja Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Alausa +760,Newly Built 4 Bedroom Semi Detached Duplex + Bq,"In A Cool Environment, Awuse Estate, Opebi Ikeja, Lagos. Opebi Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +761,"Steel Manufacturing Company , Ikeja",Oregun Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Oregun +762,Approximately 2000sqm On Adekunle Fajuyi Way Ikeka Gra.,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"400,000,000/sqm",0,0,0, beds, baths, Toilets,GRA +763,Brand New 4bedroom Semi Detached Duplex With A Room Bq,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +764,3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"3,500,000/year",0,0,0,3 beds,0 baths,0 Toilets,Opebi +765,Available Land,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +766,Land,Rev Ogunbiyi Street. Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +767,Warehouse For Sale,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +768,"5 Bedroom Luxury Semi Detached Duplex, With Mini Flat Bq",Obasa Estate Off Oba Akran Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +769,Bungalow,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +770,Office Complex,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +771,Newly Built 5 Units Of 3bedroom With Bq,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +772,Brand New Ensuites Three Bedrooms,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +773,Hot Joint Venture 1442sqm,In A Lovely Serene Environment Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +774,"Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq, In The Heart Of Ikeja",D Allen Avenue Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +775,"*just Out For Jv Deal!* A Demolishabel Property Located In A Close Off Chivita Rd, Ajao Estate Oshodi, Lagos *location:* Ajao Estate, Airport Road, Oshodi, Lagos *land Size:* 1’627sqm *proposal:* Terrace Houses *premium:* No Premium *sharing Formula:* T",Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"200,000,000/sqm",0,0,0, beds, baths, Toilets,Airport Road +776,Relatively New 3 Bedrooms Townhouse,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +777,"A Commercial Building Embodies With Massive Space Of 10units Open Space For Offices With Ample Parking, Suitable For All Kind Of Commercial Activities","Tokunbo Alli, Off Toyin Street. Ikeja. Toyin Street Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +778,New House,College Road Inside Estate Ikeja Lagos,₦,"100,000,000",0,1,0,0 beds,5 baths,0 Toilets,Other Ikeja +779,3bedroom Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +780,1600sqm With A Demolishable Building,Inside An Estate Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +781,"Lovely Sweet 3 Bedroom Flat With Pop Finishing, Interlocking Compound",Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +782,Executive 4 Bedroom Fully Detached Duplex,Morgan Estate Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +783,A Storey Building,Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +784,Available Land,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +785,Redevelopable Detached House On 601.751sqm Of Land,Off Salvation Road Opebi Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Opebi +786,Residential Building,Acme Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +787,4 Bedroom Self Detached Duplex With A Room Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +788,Bungalow Inside An Estate,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +789,4 Bedroom Duplex,Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +790,"5 Bedroom, All En Suite",Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +791,4bedroom Duplex In A Serene Environment,Agidingbi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agidingbi +792,A Landed Property Measures 727sqms,Canao Area Of Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +793,4bedroom Detached House With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +794,Newly Built Block Of 3 Bedroom Flat Plus A Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +795,Newly Built Executive 6 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,7 Toilets,Maryland +796,Brand New Massive Five Bedroom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +797,Executive 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +798,Land,Maryland Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +799,4 Bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +800,A Block Of 4 Flats & 1 Number Of 4 Flat,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +801,Executive Fully Serviced 4 Bedroom Fully Detached Duplex With A 2 Room Bq And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"225,000,000",1,0,1,4 beds,5 baths,5 Toilets,GRA +802,6 Bedroom Flat,Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +803,Storey Building Comprises Of 4 Numbers Of 3 Bedrooms Flat And 2numbers Of 2 Bedroom,Awolowo Way Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +804,Commercial 1115square Meters Of Land With Building At Agidingbi Ikeja,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,9 beds,8 baths,8 Toilets,Agidingbi +805,5bedroom Duplex Semi Detached In Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Opebi +806,Office Space/event Center,Salvation Street Opebi Ikeja Lagos,₦,"500,000,000",0,1,1,10 beds,10 baths,10 Toilets,Opebi +807,A 4 Star 117 Rooms Hotel,Ikeja Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +808,Blocks Of 2bedroom & 4 Bedroom Apartment,Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,1,6 beds,8 baths,8 Toilets,Airport Road +809,Structurally 4 Units Of 3 Bedrooms Apartments,Igbasan Street Opebi Ikeja Lagos,₦,"115,000,000",0,0,0,3 beds,2 baths,2 Toilets,Opebi +810,4 Units Of Flats,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Ikeja +811,"Five Bedroom Duplex At Gra Ikeja Lagos With A Room Bq , Swimming Pool And Gym ,separate Transformer Full Security .... #280m With Cofo",Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +812,Brand New; Well Finished And Fully Serviced Unit Of 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +813,10 Acres Of Land,Agidingbi Ikeja Lagos,₦,"5,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +814,Luxury Built And Exquisitely Finished 4bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +815,Newly Built 5 Units Of 5bedroom Terrace Duplex With A Bq Way At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +816,Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +817,Newly Built 6bedroom Duplex Apartment,Ikeja Lagos,₦,"95,000,000/day",1,1,1,6 beds,7 baths,7 Toilets,Other Ikeja +818,Standard 3 Bedroom Flat And 9 Units Of Mini Flat,12 Odunuga Street Opebi Ikeja Lagos,₦,"150,000,000",1,0,1,3 beds,4 baths,4 Toilets,Opebi +819,Commercial 6 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +820,4 Bedroom Spacious Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +821,5 Storey Building Purposely For Commercial With Penthouse,Allen Avenue Ikeja Lagos,₦,"670,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +822,3 Bedroom Flat,Ladipo Kuku Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +823,5 Bedroom Detached Duplex (all Ensuite),Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets,GRA +824,New House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,0,5 beds,6 baths, Toilets,GRA +825,4 Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +826,New And Modern 2 Numbers 4 Bedroom Semi Detached Houses,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets,GRA +827,Blocks Of 8 Flats Of 4 Bedrooms,Cement Area Ikeja Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +828,3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,0 baths,0 Toilets,GRA +829,Land,"Awolowo Way, Ikeja Awolowo Way Ikeja Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +830,Land,"Sobo Arobiodu Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +831,Warehouse,Oregun Ikeja Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +832,1200sqm Land,Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +833,New House,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths, Toilets,Adeniyi Jones +834,A Unit Of Luxury 2 Bedroom Flat,Dediolu Estate Ogba Ikeja Lagos,₦,"40,000,000",1,1,0,2 beds,0 baths,0 Toilets,Other Ikeja +835,Newly Built 3 Bedroom Terrace Duplex With Bq With Others Good Amenities,In An Estate Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"77,000,000",0,1,0,3 beds,4 baths,4 Toilets,Allen Avenue +836,3acres Of Land With Warehouse And Office Building,Oba Akran Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +837,3 Bedroom Flat,Ahamadiya Ikeja Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +838,Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +839,Structurally Sound Five (5) Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +840,3 Plot Of Land In An Estate Off Adeniyi Jones, Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +841,1000sqm Of Land Directly Facing The Road,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Agidingbi +842,Well Structured Hotel,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +843,Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +844,"Flat Sales: Luxurious 5 Bedroom Flat For Sales In An Estate, Oregun Ikeja, Lagos.","@ Peace Estate, Off Oregun Rd, Ikeja, Lagos. Oregun Ikeja Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oregun +845,4 Units Of 2 Bedroom Flat,"Off Toyin Str, Ikeja, Lagos Unity Road Ikeja Lagos",₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets,Airport Road +846,"Newly Built, Tastefully Finished 4bedroom Terrace Duplex With Bq, Pool And Generator",Awuse Estate Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +847,New 4 Bedroom Semi Detached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +848,These Are The Real Pictures Of The 4plots Of Land At Oregun Ikeja Lagos Suitable For Any Kind Of Purpose,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oregun +849,3bedroom Flat With A Room Bq And A Room For Maid At Oregun,Peace Estate Oregun Ikeja Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets,Oregun +850,24 Units Serviced Apartment (6 Units Of 3 Bedrooms Inclusive),Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets,Airport Road +851,Available Land,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +852,"4 Bedroom Duplex With A Basement, A 3 Bedroom Flat All Room En Suite.", Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +853,1600 Sqmts At Adekunlle Fajuyi Gra Ikeja,Adekunle Fajuyi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +854,1000sqm Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +855,A Standard Suitable Corner Piece That Measures 720 Sqmts Suitable For Commercial Purposes Located In Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +856,4 Nos 3 Bedroom Flat On 500 Sqmts,Ogba Off College Road Ikeja Lagos,₦,"45,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +857,9 Acres Of Land Good For Commercial It Can Be Slightly Negotiable,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +858,2 Numbers Of 5 Bedroom Fully Detached Duplex With Bq Plus Penthouse,"In A Serene Environment @ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +859,994sqm Corner Piece With Demolishable Structures,"Ogundana Street, Off Allen Avenue. Ikeja Allen Avenue Ikeja Lagos",₦,"175,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +860,Newly Built 4 Bedroom Self Compound Terrace With Bq,Wemabod Estate Unity Road Ikeja Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Airport Road +861,Lovely Clean 4 Bedroom Semi Detached Duplex + Bq,"In A Cool Prestigious Cornerstone Estate, Alausa Ikeja, Lagos Alausa Ikeja Lagos",₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Alausa +862,4 Numbers Of 3bedroom Flats,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +863,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq, Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +864,New House,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,GRA +865,Furnished 1 Bedroom Flat,"Off, Mini Estate Allen Avenue Ikeja Lagos",₦,"16,000,000",0,1,0,1 beds,1 baths,2 Toilets,Allen Avenue +866,3 Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,0 beds,5 baths,0 Toilets,GRA +867,New House,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,0 Toilets,GRA +868,2 Units Of 4bedroom Fully Detached Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +869,Block Of Four Units Of 3 Bedroom Flat,Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +870,8 Bedrooms Mansion,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,1,8 beds,0 baths,0 Toilets,Adeniyi Jones +871,New House,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Allen Avenue +872,One Acre And Half Plot Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +873,Full Plot Of Land In Awuse Estate Opebi Ikeja,Awuse Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"63,000,000",0,0,0, beds, baths, Toilets,Opebi +874,Executive 4 Bedroom Detached Duplex,Heritage Estate Via Ikeja Ikeja Lagos,₦,"72,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +875,New House,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikeja +876,Brand New And Fully Serviced Unit Of 3bedroom Flat With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +877,A Commercial Land,"Directly On Awolowo Road, Ikeja. Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +878,637 Sqm Of Land,Inside An Estate Off Allen Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +879,Land,"Off Allen ,ikeja Allen Avenue Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +880,12 Units Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +881,1500sqm Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +882,Land Measuring 2400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +883,A Well Built 4 Bedroom Spacious Detached Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +884,Two Wings 5 Bedroom Duplex With Bq,Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +885,Commercial Building,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +886,700sqm Land,Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +887,Land Measuring 600sqm,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +888,40 Units Of 3 Bedroom Terrace Duplex,Oduduwa Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +889,6 Bedroom Flat At Ikeja,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,1,6 beds,5 baths,5 Toilets,Awolowo Way +890,8 Units Of 3 Bedroom Luxury Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +891,A Storey Building Sitting On 400 Square Meters Of Land,Alade Market Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +892,4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +893,4 Bedroom Duplex,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +894,Newly Built 5 Bedroom Duplex At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +895,6 Unit Of 3bedroom Flat,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +896,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Gra Alausa Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agidingbi +897,Land Measuring 550sqm With A 5bedroom Bungalow And 1unit Of 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +898,4 Bedroom Flat,T Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +899,5 Bedroom Spacious Detached Duplex With 2rooms Bq,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,0 Toilets,Other Ikeja +900,Newly & Well Built To Taste Luxury 4 Bedroom Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +901,Newly & Well Built To Taste Luxury 4 Bedroom Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +902,Spacious 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +903,A Cornerpiece Land Measuring 400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +904,Newly Built 4 Bedroom Detach Duplex,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"400,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +905,57 Bedroom Hotel,Toyin Street Ikeja Lagos,₦,"950,000,000",1,0,1,10 beds, baths, Toilets,Other Ikeja +906,5 Bedroom Duplex,Ikeja Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +907,Block Of 4 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"140,000,000",0,0,1,3 beds,3 baths,4 Toilets,Opebi +908,4bedroom Terrace Duplex + Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +909,Standard Full Plot Of Land With Lovely Bungalow,Mangoro Bustop Before Cement Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +910,3bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Opebi +911,Block Of 4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"160,000,000",0,0,1,3 beds,3 baths,3 Toilets,Opebi +912,Newly Built 4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +913,Land,Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +914,5 Bedroom Townhouse With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +915,A Bungalow Sitting On Half Plot Of Land,Ogunsiji Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,1,1 beds,1 baths,2 Toilets,Allen Avenue +916,5 Bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +917,2 Units Of 5 Bedroom Duplex And 1 Units Of 4 Bedroom Duplex,Niki African Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,5 Toilets,Allen Avenue +918,4 Units Of 3 Bedroom Flat, Mangoro Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +919,Land Measuring 1062sqm With A Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +920,An Empty Land Cornerpiece,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +921,4 Bedroom Duplex,Mobil Estate Agidingbin Near Alausa Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +922,Land Measuring About 580sqm,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +923,4 Bedroom Detached Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +924,Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +925,4 Bedrooms Fully Detached Duplex With 1 Room Bq,"Akora Estate, Adeniyi Jones Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +926,Luxury 4bedroom Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +927,Executive Built Massive Hall On 3 Story Building,Very Close To Computer Village Oba Akran Ikeja Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikeja +928,3bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Opebi +929,Newly & Well Built To Taste A 5 Bedroom Spacious Detached Duplex With A Room Bq,Awolowo Way Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +930,4 Units Of Office Space,"Yaya Abatan, Ogba Ikeja Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +931,5 Bedroom Duplex,Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +932,Dry And Fenced 504sqm Land In Ikeja Gra. Lagos Mainland.cofo,Ikeja Gra.lagos Mainland Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +933,Luxurious 7 Bedroom Fully Detached Duplex + 2 Rooms Bq, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +934,"Well Furnished Fully Detached 4bedrooms Duplex, With 3 Bqs",Marwa Gardens Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +935,Standard Full Plot Of Land Measuring More 670sqm With Bungalow,Onipetesi Estate Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +936,A Newly Built 3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +937,"A Well Furnished Fully Detached 4bedrooms Duplex, With 3bqs",Marwa Gardens Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +938,3 Bedrooms Flat,Akora Villa Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +939,Newly Built Luxury 3 Bedroom Flat With Bq,Ikeja Adeniji Jones. Lagos Mainland Adeniyi Jones Ikeja Lagos,₦,"56,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +940,3 Bedroom Flat Forsale At Awuse Estate Ikeja,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Other Ikeja +941,4 Bedroom Spacious Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +942,780sqm Land,Ogba Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +943,An Empty Land,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +944,4bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +945,5 Bedroom Duplex Plus 2 Unit's Of 3 Bedroom Flat At Opebi Ikeja,Ajanaku Opebi Ikeja Lagos,₦,"165,000,000",0,0,1,5 beds,5 baths,6 Toilets,Opebi +946,2 Units Of 4 Bedroom Semi Detached Duplex, Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Alausa +947,Lovely Built Standard Spacious 3 Bedroom Flat Of 4 Units Less Than 10 Minutes Drive To Airport And Maximum Security,Enclosed Street At Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Ikeja +948,5 Bedroom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +949,Land Measuring 550sqm With A 5bedroom Bungalow And 1unit Of 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +950,5 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +951,Furnished 1 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +952,Newl Built Lovely Four Bedroom Terrace Houses With A Room Bq Each,"Adegbeyeni Street, Off Allen Avenue Ikeja Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +953,4 Bedroom Fully Detached Duplex With 1 Room Bq,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +954,Newly Built 4 Bedroom Duplex,Salvation Road Opebi Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +955,4 Bedroom Detach Duplex At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +956,Block Of 6 Units Of 3 Bedroom Flat,"Afariogun, Off Awolowo Way Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,2 baths,3 Toilets,Awolowo Way +957,5 Bedroom Terrace Duplex With Penthouse And A Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +958,5 Bedroom Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +959,Newly Built 8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"52,000,000",0,1,1,3 beds,3 baths,4 Toilets,Opebi +960,Well Built 4 Bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +961,Land Measuring 500sqm,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +962,5 Bedroom Spacious Detached Duplex With 2rooms Bq,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,0 Toilets,Other Ikeja +963,Block Of Flats,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +964,A Land Measuring 1300sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +965,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +966,4bedroom Duplex With Cofo,Adeniyi Jones Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +967,Two Duplexes Comprising Of A Five Bedroom Duplex And A Two Bedroom Duplex,Elepe Royal Estate Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +968,2 Wings Of 5 Bedroom Duplex,G Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Alausa +969,6 Unit Of Fully Detached 5 Bedroom + Bq,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets,GRA +970,1200sqm Land,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +971,A 10 Bedroom Duplex Sitting On 3 Plots, Opebi Ikeja Lagos,₦,"400,000,000",0,0,1,10 beds,10 baths,10 Toilets,Opebi +972,Lovely Plot Of Land Measuring More Than Quarter Plot Fenced Compound Gate At Sunday Farm Estate Cement Ikeja With Maximum Security,Sunday Farm Estate Cement Ikeja Mangoro Ikeja Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +973,A Brand New 4 Bedroom Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +974,3bedroom Bungalow,Agidingbi Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agidingbi +975,2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +976,Land,Street Oregun Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +977,Shopping Complex,Street Mangoro Ikeja Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikeja +978,Luxury Fully Functional And Furnished 30 Room Hotel,By Allen Avenue Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,1,10 beds,10 baths,10 Toilets,Allen Avenue +979,Commercial Land Of 500,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +980,Executive 3bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,5 baths,5 Toilets,Adeniyi Jones +981,Executive 5 Bedroom Duplex In Ikeja,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +982,Newly Built 4bedrooms Fully Detached Duplex With Bq In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +983,18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +984,Newly Built 5bedrooms Duplex Fully Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +985,5 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"5,000,000/year",0,0,0,5 beds,0 baths,0 Toilets,Awolowo Way +986,Very Solid Blocks Of 8 Units Of 3 Bedroom Apartment,Beco Estate Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +987,Lovely Newly Built 4 Bedroom Semi Detached Duplex,Off Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +988,Newly Built 3bedroom En Suite,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +989,Newly Built 5bedrooms Duplex Fully Detached With Bq And Security House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +990,Newly Built 4bedrooms Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +991,Newly Built 4bedrooms Masionnette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +992,A Well Maintained 2nos Of 8bedroom Duplex+ Another 5bedroom Duplex (both Semi Detaches) On 698.22sqm Landsize In An Estate..,Z Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,8 beds,8 baths,8 Toilets,Allen Avenue +993,Dry Land Measuring 1300sqm With A Demolishable Structure For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +994,Newly Built 3bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,4 Toilets,Opebi +995,4 Bedroom Duplex Standing Alone,Mangoro Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +996,Modern Brand New 5bedroom Fully Detached Duplex(all Rooms Ensuite+bq) For Sale!!!!,R Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +997,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +998,3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"73,987,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +999,Super Spacious Two Units Of 5 Bedroom With Boys Quarters,Off Opebi Road Or Salvation Road Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Airport Road +1000,2 Units Of Uncompleted 4bedrooms Bungalows,Olusosun Oregun Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oregun +1001,Executive 7 Bedroom Detached Duplex,In An Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,0 baths,0 Toilets,Adeniyi Jones +1002,Brand New 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +1003,Dry Land Measuring 1034sqm With A 7bedroom Detached Duplex + 2units Of Mini Flats (as Bq),Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1004,Lovely 5 Bedroom Detached Duplex In An Estate,Awuse Estate Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +1005,Mega Filling Station With 14 Double Pumps And A Car Wash,Ikeja Along Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1006,A Piece Of Land Measuring 1415 Sqm,In An Estate Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1007,A Luxurious 4bedroom Terrace With Ensuite Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +1008,Beautiful Blocks Of 3 Bedroom Flats In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1009,A Very Decent Property Consisting Of 6 Units Of 3 Bedroom Flat Is Available,Alausa Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1010,Block Of Flats With Boys Quaters For Each Flat,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1011,4 Bedroom Flats With A Bq,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets,Opebi +1012,A Luxurious 6 Unit Of 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1013,Newly Built 4bedrooms Semidetached Duplex With Bq,Ikeja Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +1014,Newly Built 4 Bedrooms Fully Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +1015,Tastefully Structured And Finished 4 Bedroom Terrace Duplex Plus Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1016,Newly Built Luxurious 4bedrooms Townhouse,Oregun Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oregun +1017,20 Plots Available,Opebi Ikeja Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1018,A 32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +1019,Newly Built 5bedrooms Duplex Fully Detached With Bq At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,7 Toilets,GRA +1020,A Newly Built & Tastefully Finished 4bedroom Semi Detached Duplexes + A Room Bq For Sale!!!,Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Airport Road +1021,A Functional Steel Manufacturing Company,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1022,Luxury & Tastefully Finished 4 Bedroom Terraced Duplex For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +1023,Newly Built 4 Bedroom Semi Detached Duplex In Ikeja,Ikeja Lagos,₦,"165,000,000",0,0,0,4 beds, baths, Toilets,Other Ikeja +1024,Luxurious Newly Built 3bedrooms All Ensuite,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +1025,Brand New 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +1026,5 Bedroom Detached Duplex With Bq,Olu Akerele Street Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1027,Luxurious Newly Built 3 Bedrooms Apartment,Ikeja Gra Ikeja Lagos,₦,"83,087,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +1028,Newly Built 4 Bedrooms Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1029,Newly Built 4bedrooms Semidetached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1030,6 Units Of 4bedrooms Uncompleted Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1031,Newly Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1032,Luxury & Tastefully Finished 5bedroom Fully Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +1033,Newly Built 3 Bedrooms Blocks Of Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +1034,Newly Built 4bedrooms Fully Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +1035,Newly Built 4bedrooms Fully Detached Duplex With Bq Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +1036,A Demolishable Old Structure Consisting Of 8bedroom Duplex + 2nos Of 2bedroom Flats For Sale!!!,Opebi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Opebi +1037,A Brand New 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1038,A Functional Hotel For Lease,Awolowo Way Ikeja Lagos,₦,"20,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1039,A Newly Built & Tastefully Finished Luxury 4bedroom Fully Detached Duplex+ A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1040,Very Spacious And Decent 3 Bedroom Flats,Awuse Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +1041,Newly Built 4 Bedroom Terrace Duplex All Ensuite,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1042,A Newly Built Beautiful 3bedroom With A Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +1043,Newly Built 5bedroom Terrace Duplex With Bq,Opebi Ikeja Lagos,₦,"120,000,000",0,1,1,5 beds,0 baths,0 Toilets,Opebi +1044,Newly Built 4bedrooms Semidetached Duplex In A Beautiful Estate,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1045,Decent 6 Numbers Of 2 Bedroom Flats In A Serene Environment,Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1046,5 Bedroom Duplex Fully Detached,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets,GRA +1047,5 Acres Of Land,Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1048,Newly Built 5bedrooms Fully Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Opebi +1049,"Luxury 5 Bedroom Duplex At Gbagba,",Gbagba Crescent Ogba Ikeja Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +1050,Luxurious Newly Built 4bedrooms Duplex Fully Detached & Semi Detached Houses On Three Floor In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +1051,Standard 4 Units Of 3 Bedroom With A Bq In An Estate In Mangoro,Mangoro Ikeja Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1052,Lovely 34 Modern Hotel Rooms,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +1053,Nicely Structured 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +1054,30 Rooms Hotel & 200 Seaters Hall,Ikeja Lagos,₦,"5,000,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +1055,Tastefully Finished 4 Bedroom Flats With Bq,Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +1056,Newly Built 4 Bedrooms Terrace With A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"720,000,000",1,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +1057,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,GRA +1058,Estate Land In Opebi On Promo Till June 30th,Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Opebi +1059,Newly Built 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,GRA +1060,An Exquisite 25 Room Functional Hotel,"Off Lateef Jakande Road, Ikeja Lagos. Ikeja Lagos",₦,"400,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Ikeja +1061,Newly Built 5 Bedrooms Semidetached Duplex & Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1062,Buy And Build Land In Maryland On Promo Till June 14th,Land Is Between Maryland And Opebi In Ikeja Axis Maryland Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Maryland +1063,An Hotel With 34 Rooms In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,GRA +1064,Newly Built 5 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,GRA +1065,4 Bedroom Luxury Penthouse,Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,0 beds,0 baths,0 Toilets,GRA +1066,2 Number Block Of 6 Flats Of 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,3 Toilets,GRA +1067,Structured 6 Bedroom Duplex,Off Allen Avenue. Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1068,Newly Built 3 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +1069,1400sqm Of Land,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1070,Functional Plaza,Omole Phase2 Alausa Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1071,Land,Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1072,900sqm Land With Two Units Of 3 Bedrooms Bungalow And 3 Bedrooms Bq,Akinola Cole Crescent Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,3 beds,0 baths,0 Toilets,Adeniyi Jones +1073,2 Storey Building Of 432sqm Of Land,Iyalle Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds, baths, Toilets,Alausa +1074,"Vast Fenced And Gated Bare Land Measuring 17,000m²","Adeniyi Jones And Obafemi Awolowo Way, Ikeja Lagos",₦,"150,000/sqm",0,0,0, beds, baths, Toilets,Awolowo Way +1075,3 Bedroom Apartment With Bq,Rose Gardens 3 Bedroom Apartment With Bq 5 Minutes Drive From Journalist Estate Arepo And Punch Newspaper And Few Minutes From Alausa Ikeja Mangoro Ikeja Lagos,₦,"16,320,000/day",0,0,0,6 beds,6 baths,6 Toilets,Other Ikeja +1076,A Fully Detached Commercial Property On Land Measuring 671m²,"Directly Facing Awolowo Way, Awolowo Way Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1077,Warehouse Space Measuring 2000 Sqms,Oregun Ikeja Lagos,₦,"2,400,000/year",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1078,6 Bedroom Fully Detached Duplex + 3 Bedroom Bq,"Gated Close, Off Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,6 beds, baths, Toilets,Allen Avenue +1079,Newly Built 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"122,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1080,2 Units Of Tastefully Finished 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1081,Land,Opebi Road Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1082,Plots Of Estate Land In Prime Location,"Easton Towers, 15 Minutes From Airport Maryland Ikeja Lagos",₦,"32,000,000",0,0,0, beds, baths, Toilets,Maryland +1083,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ogunlowo Estate Off Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +1084,"Land Measuring 2,200m²","Directly Facing Adeniyi Jones, Adeniyi Jones Ikeja Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1085,"Land Measuring 4,189.29m²","Directly Along Opebi Road, Opebi Ikeja Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +1086,"Land Measuring 1,314m²","Directly Along Oregun Road, Oregun Ikeja Lagos",₦,"190,000,000",0,0,0, beds, baths, Toilets,Oregun +1087,Land With Dilapidated Structure Measuring 900m²,Toyin Street Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1088,Land Measuring 550m²,"Ladoke Akintola Street, Ikeja Gra Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets,GRA +1089,4 Bedroom Flat Plus Additional 3 Numbers Of 2 Bedroom Flat,Mangoro Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +1090,A Block Of 4 Flats,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1091,Solid Vacant 2 Units Of 5 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1092,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ogunlowo Estate Off Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +1093,Brand New Fully Detached 7 Bedroom House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,7 beds,7 baths,8 Toilets,GRA +1094,"A Newly Built 4 Nos 4 Bedroom Terrace Houses On 1,500m² Land","Off Awolowo Way, Ikeja Lagos",₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Awolowo Way +1095,3 Bedroom Flat On 1st Floor (3 Units In The Compound),Off Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +1096,"Commercial Land Measuring 1,000m²","Directly Along Lateef Jakande Road, Agidingbi Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1097,3 Bedrooms Flat (1st Floor),"9 Ladipo Kuku Street, Allen Avenue Ikeja Lagos",₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +1098,A Bareland Measuring 600sqm & 300sqm @ 120m & 70m Respectively,"Ashogbon Estate, Adeniyi Jones Ikeja Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1099,Land Measuring 2020.548sqm,Tunde Osilaja St. Off Osho St. Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1100,"Cornerpiece Land Measuring 1,000m²","Ogundana Street,, Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1101,Land Measuring 769.185 Sqm,Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1102,Land,"Awuse Estate, Opebi Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets,Opebi +1103,A Strategic Commercial 5 Floors Building Embody With Massive Space Of 10units Open Space For Offices With Car Parking Enough For Minimum Of 11cars,"Tokunbo Alli Str Slightly Off Toyin Street, Toyin Street Ikeja Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1104,18 Rooms Office Complex,Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1105,3700sqm,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1106,Jv 1442sqm Land,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1107,Luxury Built And Exquisitely Finished 5bedroom Detached,Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets,Other Ikeja +1108,380sqm Corner Piece Of Land,Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1109,1000 Sqm Of Land With A Demolishable Bungalow,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1110,Standard 6bedroom Detached Duplex + 3bedroom,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,0 baths,0 Toilets,Opebi +1111,Functional Construction Company,Ikeja Lagos,$,"25,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1112,Newly Built 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +1113,1000 Sqm Of Land, Ikeja Lagos,₦,"269,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1114,5100sqm,Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1115,A Standard Well Designed Hotel With 32 Rooms,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1116,Land,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1117,300 Sqm Plot Of Land,Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1118,4bedroom Duplex And 3 Bedroom Semidetached Duplex,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Alausa +1119,932sqm With A Demolishable Building,Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1120,4units Of 3bedroom Flat,Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1121,Joint Venture In Ikeja,Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Opebi +1122,12blocks Of Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,GRA +1123,Newly Built 3 Bedroom Finished Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1124,5bedroom Detached All Room Ensuite,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1125,2000m2 Joint Venture,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1126,Super Brand New 4besroom Duplex,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Other Ikeja +1127,12blocks Of Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,GRA +1128,A Standard 7bedroom Duplex +pool,Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Ikeja +1129,1600sqm Of Land,Opebi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1130,Newly Built And Exquisitely Finished 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1131,Corner Piece Fenced Land 1400aqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1132,500sqm Land,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1133,A Standard 5bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Alausa +1134,18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1135,1200sqm Of Land,Oregun Ikeja Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1136,2 Bay Warehouse With Office Building On One Acre Of Land With C Of O,Z Oregun Ikeja Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1137,"A Functional 17 Rooms Hotel, Club House/ Guest House Sitting On 3 Plots Of Land",Salvation Road Opebi Opebi Ikeja Lagos,₦,"550,000,000",1,0,0,10 beds,10 baths,10 Toilets,Opebi +1138,Land,Adeniyi Jones Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1139,Commercial Building On 5 Floors,"Toyin Street, Ikeja, Lagos. Toyin Street Ikeja Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1140,Commercial 5 Floors Office Building Facing Major Road On 2225sqm Land,Allen Opebi Road Allen Avenue Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1141,A Standard 5 Storey Building Complex,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Opebi +1142,466sqm Of Commercial Land,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"70,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1143,For Sale 560sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1144,1000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1145,For Sale 7 Bedroom Duplex With 2 Room Bq With C Of O,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets,Opebi +1146,Standard 5 Bedroom Fully Detached Duplex All Room Ensuites With Bq,Balogun Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +1147,4 Bedroom Detached House + Bqs,Aromire Avenue Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +1148,A Spacious Warehouse,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1149,Standard 3 Bay Warehouse And Office Building On 18759sqm Land,Off Adeniyi Jones By Oba Akran Ikeja Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1150,A Lovely 5bedroom Detached Duplex,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1151,Solid Structure 4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1152,Warehouse Of Approximately 9000 Sqm (7bay Warehouses),Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1153,Executive New 5bedroom Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets,Agidingbi +1154,A Standard 5bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1155,A Plot Of Land Imeasuring 620sqm In A Gated Estate,Off Oba Akran Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1156,Standard 100000 Sqm Land With Warehouse And Office Building,Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1157,7 Nos Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1158,Executive New Luxury 5bedroom Fully Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,6 baths,6 Toilets,Alausa +1159,A Distress Sale Of Bareland Measuring 750sqm At Adeniyi Jones Ikeja Lagosng 750sqm At Adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Lagos Ikeja Lagos,₦,"130,000,000/sqm",0,0,0, beds, baths, Toilets,Other Ikeja +1160,Newly Built 5 Bedroom Detached Duplex,Omole Phase2 Estate Alausa Ikeja Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Alausa +1161,A Standard 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1162,One Acre Of Land,Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1163,3000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1164,New 3bedrooms Terraced Duplex With Bq,Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikeja +1165,A Block Of 3 Units Of 3 Bedroom Flat With 2 Bedroom Pent House,Oregun Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oregun +1166,New 3bedroom Flat With Detached Bq And Swimming Pool In Gated Estate C Of O,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"56,000,000",0,0,0,3 beds,5 baths,5 Toilets,Adeniyi Jones +1167,4 Bedroom Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +1168,A Lovely 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1169,1000sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"350,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1170,"1,466sqm Of Land",Maryland Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1171,Commercial And Industrial 5200sqm Land With C Of O,Alausa Ikeja Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Alausa +1172,4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +1173,2 Plots Of Land,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1174,2 Units Of 5 Bedroom Duplex All Rooms Ensuite Plus Visitors Toilet,"Adeniyi Jones,,ikeja Adeniyi Jones Ikeja Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1175,Solid Block Of 6flatsof 4nos Of 3bedroom And 2nos Of 2bedroom,Cement Area Ikeja Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +1176,5 Bedroom Detached Duplex,D Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +1177,For Sale 1000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1178,4 Bedroom Duplex With 3 Bedroom Bungalow,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"95,000,000/day",0,0,0,4 beds,4 baths,4 Toilets,Oregun +1179,One Wing Of 4 Bedroom Duplex With One Unit 4 Bedroom Flat And One Unit Of 3 Bedroom Flat On 500sqm Land, Oregun Ikeja Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1180,4 Nos Of 3 Bedroom Flat,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +1181,1300sqm Land,Off Isaac John Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"320,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1182,897. 750sqm Of Land,Adedotun Dina Close Maryland Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1183,4 No Of 3 Bedroom Flat Consisting 2 Blocks,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +1184,A Standard 6 Units Of3 Bedroom Flats, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +1185,A Standard 4bedroom,Allen Avenue Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +1186,Luxury 5bedroom Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"125,000,000",0,0,1,5 beds,6 baths,6 Toilets,Agidingbi +1187,2 Units Of 4 Bedroom Semi Detached Duplex With Bq At Opebi,Off Salvation Road Opebi Opebi Ikeja Lagos,₦,"80,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Opebi +1188,A Standard 3bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1189,Brand New 8 Units 3 Bedroom Flats,"Awuse Estate, Opebi Ikeja Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +1190,Exquisite Newly Built 8 Units Of 3 Bedroom Flats With Modern Facilities,Awuse Estate Opebi Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets,Opebi +1191,"6 Bedroom Duplex All Rooms Ensuite Plus Visitors Toilet,2 Rooms Bq,with An Ample Parking Space","Alausa,ikeja Alausa Ikeja Lagos",₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Alausa +1192,An Executive 5bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,GRA +1193,"3 Units 4 Bedroom Flat All Rooms Ensuite With An Ample Parking Space For Outright Sale At Off John Olugbo Street,ikeja.the Asking Sales Price Is 80 Million Naira.the Property Is Suitable For Both Residential & Commercial Purpose","Off Awolowo Way,ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +1194,4 Nos Of 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1195,New Luxury 4bedroom Terrace Duplex With Bq,Gated Estate Allen Ikeja Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,7 baths,7 Toilets,Allen Avenue +1196,600sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1197,"Development On Site Consist Of Warehouse, Office,admin Building,lodge",Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Ikeja +1198,Relatively New And Well Built Finished 3 Bedroom Townhouse, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,3 Toilets,Adeniyi Jones +1199,Land,Aromire Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1200,New 4bedroom Fully Detached Duplex With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"140,000,000",0,1,1,4 beds,6 baths,6 Toilets,Alausa +1201,Blocks Of Flat With Bq Sitted On 550sqm Of Land,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1202,New Luxury 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,1,3 beds,4 baths,4 Toilets,GRA +1203,1000sqm Of Land,Ogundana Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"170,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1204,Solid 5bedroom Detached Duplex With 2living Rooms,Alausa Ikeja Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +1205,2 Wing Of Semi Detached 4 Bedroom Duplexes,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1206,Mixed Use 2 Plots Of Land,Oregun Beside Nnpc Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1207,A Standard Semi Detached,Ikeja Gra Ikeja Lagos,₦,"180,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,GRA +1208,A Standard 7floors Office Building,Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1209,An Executive 5bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1210,New 5 Bedroom Duplex,Omole Phase1 Agidingbi Ikeja Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agidingbi +1211,998sqm Of Land,Alausa Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1212,"9 Bedroom Detached Mansion + Swimming Pool, Penthouse",Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets,GRA +1213,New Luxury 5bedroom Fully Detached Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,7 baths,7 Toilets,GRA +1214,New Luxury 4bedroom Terrace Duplex With Bq In A Gated Estate,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,6 baths,6 Toilets,Agidingbi +1215,8 Units Of 4bedrooms Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,4 Toilets,GRA +1216,Fully Detached 5 Bedroom Duplex Plus A Room Bq,"Estate,adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"85,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1217,Block Of 4 Flats Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1218,A Block Of 3 Bedrooms Flats,Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +1219,2000sqm Of Land For Sale At Gra Ikeja Off Isaac John,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,GRA +1220,A Standard 4floor Complex,Oregun Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1221,Land,Acme Road Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1222,Commercial Building On 3 Floors With A Massive Car Park Lot On A Major Road,"Along Mobolaji Bank Anthony Way, Maryland/ikeja, Lagos. Mobolaji Bank Anthony Way Ikeja Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1223,3 Bedroom Spacious & Luxury Flat,Ikeja Gra Ikeja Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,GRA +1224,3bedroom Flat,Mende Maryland Ikeja Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Maryland +1225,5 Bedroom Detached House,"Omole Phase2 Estate, Alausa Ikeja Lagos",₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Alausa +1226,Functional 25 Rooms Hotel,"Ikeja, Lagos. Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1227,Standard 4 Flats Of 3 Bedroom,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1228,Executive 3 Bedroom Flat Apartment With Bq,Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,5 baths,5 Toilets,Allen Avenue +1229,An Executive 4bedroom Semi Detached Duplex,Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1230,Well Built Three Units Affordable 4 Bedrooms Terrace Duplexes,Ikeja Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +1231,1600sqm Parcel Of Land With C Of O,Off Ajanaku Str Awuse Estate Opebi Opebi Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Opebi +1232,1000sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1233,1850sqm Land, Ikeja Gra Ikeja Lagos,₦,"690,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1234,9 Bedroom Detached House With 2 Guest Room,Ikeja Gra Ikeja Lagos,₦,"610,000,000/sqm",0,0,0,9 beds,9 baths,9 Toilets,GRA +1235,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +1236,Newly Built 5 Bedroom Detached Duplex With Bq,Olu Akerele Street Ikeja Lagos Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikeja +1237,Relatively New 3 Bedroom Maisonette,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +1238,A Standard 7bedroom Fully Detached,Ajao Axis Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,0,0,7 beds,0 baths,0 Toilets,Airport Road +1239,*contemporary 7units Of 3 Bedrooms Flats,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +1240,New Luxury 5bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,1,5 beds,7 baths,7 Toilets,GRA +1241,"1,115sqm Of Land",Alausa Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1242,Commercial 2000sqm Parcel Of Land Suitable For Church,Off Salvation Opebi Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +1243,4 Bedroom Duplex,Oregun Ikeja Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oregun +1244,Luxury 4 Units Of 3bedroom With 2bedroom Flat,Ajao Estate International Airport Road Close To Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,1,0 beds,0 baths,0 Toilets,Airport Road +1245,3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"92,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +1246,Well Built And Finished 2 Wings Of 4 Bedroom Duplex With Bq Each,Juli Estate Oregun Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +1247,2493sqm Of Land,Ladoke Akintola Crescent Ikeja Gra Ikeja Lagos,₦,"873,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1248,New 5bedroom Detached With Swimming Pool And Keyless Entry Voice Recognition,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,6 baths,6 Toilets,Alausa +1249,2439sqm Land,Off Oba Akinjobi Way Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1250,"2,500 Square Meters Land In A Serene Estate","Talabi Estate, Adeniyi Jones, Ikeja. Adeniyi Jones Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1251,Standard Two 4bedroom Duplex Each With Personal Compound On 658sqm,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,1,4 beds,6 baths,6 Toilets,GRA +1252,Standard Commercial Plot Of Land With C Of O,Anifowoshe Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1253,New 5bedrooms Duplex In Ikeja,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Allen Avenue +1254,New Luxury 8units Of 3bedroom Each With Bq In An Estate,Opebi Ikeja Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +1255,Newly Built 4 Bedroom Terrace With Bq In A Serene Enviroment,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +1256,4 Bedroom Duplex With 3 Bedroom Bungalow At Oregun,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"95,000,000/day",0,0,0,4 beds,4 baths,4 Toilets,Oregun +1257,For Sale 3600sqm Of Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1258,5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1259,Executive 5 Bedroom Duplex With Bq And Two Sitting Rooms,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,7 baths,7 Toilets,GRA +1260,A Story Building For Outright Sale At Off Mobolaji Bank Anthony,"Off Mobolaji Bank Anthony Way By General Hospital,ikeja Mobolaji Bank Anthony Way Ikeja Lagos",₦,"40,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +1261,"4,356.123sqm Of Land",Oba Akran Ikeja Lagos,₦,"820,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1262,New 5bedrooms Fully Detached Duplex,Omole Phase 1 Oregun Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oregun +1263,Standard 2 Wing Of 5bedroom Duplex,Off Isolo Way Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets,Airport Road +1264,2000m2 Land,"Oba Ladejobi, Ikeja Gra, Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,GRA +1265,A Lovely 4bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Alausa +1266,Executive Luxury 2bedroom Flat Apartment,Ikeja Awolowo Way Ikeja Lagos,₦,"20,000,000",0,0,1,2 beds,3 baths,3 Toilets,Awolowo Way +1267,4 Bedroom Newly Built Semi Detached Duplex With A Bq With All Modern Facilities Are Available.,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"90,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Allen Avenue +1268,57 Hotel Rooms Executive Suites With Hall Of Capacity At Toyin Ikeja Lagos,Toyin Street Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1269,Newly Built 4 Bedroom Semi Detached Duplex With All Modern Facilities,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000/day",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1270,1500sqm Of Land,Awolowo Way Ikeja Lagos,₦,"400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1271,Functional 26rooms Hotel With Vip Bar,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1272,3 Plots Of Land,Awolowo Way Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1273,Land,Awolowo Way Ikeja Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1274,Land,Adeniyi Jones Ikeja Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1275,Commercial Event Hall With Office Building On 2800sqm Land,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1276,57 Hotel Rooms, Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1277,1500sqm Land,Off Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"490,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1278,A Standard 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000/year",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +1279,Commercial Miniflat Office Space#,Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,1,1 beds,2 baths,2 Toilets,Awolowo Way +1280,Land,Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1281,A Standard Fully Detached,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1282,10 Bedroom Detached House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1283,Functional 30rooms Hotel And Suite,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1284,Commercial 3 Flat Of 2 Bedroom,Opebi Ikeja Opebi Ikeja Lagos,₦,"120,000,000",0,0,1,2 beds,3 baths,3 Toilets,Opebi +1285,A Fantastic Open Office Complex,Allen Avenue Allen Avenue Ikeja Lagos,₦,"2,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1286,Standard Vacant 4 Bedroom Semi Detached Duplex,Gated Estate By Mko Abiola Garden Alausa Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Alausa +1287,4bedroom Semi Detached Duplex With Bq,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,1,0 beds,0 baths,0 Toilets,Adeniyi Jones +1288,For Sale 1800sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1289,Multipurpose Commercial Building,Awusi Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1290,30 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1291,An Office Block Comprising Of About 16 Flats Of 2 Bedroom And 3 Bedrooms On 5 Plots Of Land,Alausa/ Agidingbi Alausa Ikeja Lagos,₦,"720,000,000",0,0,0,10 beds,10 baths,10 Toilets,Alausa +1292,Luxury 188rooms 5star Hotel On 8900sqm Land,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"6,000,000,000",0,0,1, beds, baths, Toilets,Airport Road +1293,1000sqm Of Land With A Demolishable Structure,Opebi Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1294,3 Bay Warehouses,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1295,New Luxury 3bedroom Apartment With Detached Room Bq And Swimming Pool,Akora Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,5 baths,5 Toilets,Adeniyi Jones +1296,A Standard 5bedroom Fully Detached Duplex,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Alausa +1297,Luxury New Executive 4bedroom Semi Detached Duplex,Off Allen Ikeja Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1298,Complete Luxury 5bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets,GRA +1299,New Luxury 3bedroom Flat With Bq And Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,5 baths,5 Toilets,GRA +1300,550sqm Of Land,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1301,Exquisitely Finished 7 Bedroom Detached House Sitting On 1500sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +1302,Standard Solid 2 Numbers Of 5 Bedroom Duplex Front And Back On 730sqm Land,Allen Ikeja Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +1303,670sqm Land,Mende Maryland Lagos Maryland Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1304,"18,300sqm Of Dry Land",Awolowo Way Ikeja Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1305,A Commercial Plot,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1306,35 Hotel Rooms At Ikeja With C Of O,Airport Road(ikeja) Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1307,6 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets,Allen Avenue +1308,Luxury Executive 5bedroom Detached Duplex With Bq,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"158,000,000",0,0,1,5 beds,6 baths,7 Toilets,Agidingbi +1309,A Standard 5 Storey Building Complex,Opebi Ikeja Lagos,₦,"130,000,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1310,A Luxury 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1311,335sqm Of Land,Maryland Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1312,7 Units Of 5 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +1313,Executive 4bedroom Semi Detached Duplex With Bq,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,6 Toilets,Airport Road +1314,A Demolishable Old Structure Consists Of 8 Bedroom Duplex + 2 Nos Of 2 Bedroom,Opebi Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1315,4 Bedroom Fully Serviced Detached Duplex With 2 Rooms Bq And Swiming Pool, Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +1316,Uncompleted Structure,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1317,4 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"105,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1318,Super Executive 5 Bedroom Fully Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1319,6plots Of Land (1acre Of Land ) In An Estate,Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Opebi +1320,500sqm Land,Off Independent Way Ikeja Lagos Ikeja Lagos,₦,"62,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1321,A Well Finished 5 Bedroom Detached Duplex With A Room Bq And 2 Sitting Room,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +1322,2 Plots Of Land Fenced,Oregun Ikeja Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1323,Newly Built 5 Bedroom Duplex With Bq,Opebi Ikeja Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,5 Toilets,Opebi +1324,Block Of 4 Numbers Of 3 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +1325,Executive 4 Numbers Of 4 Bedroom Terrace Duplex On 1500sqm Land,Nice Location Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,1,4 beds,5 baths,5 Toilets,Awolowo Way +1326,4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,6 Toilets,GRA +1327,720sqm Plot Of Land In A Close,Off Allen Ikeja Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1328,7 Bedroom Fully Detached Duplex With C Of O At Gra Ikeja Lagos,Z Ikeja Gra Ikeja Lagos,₦,"710,000,000/year",0,0,0,7 beds,7 baths,7 Toilets,GRA +1329,Commercial Land With Factory On About 800sqm Land,Mongoro Close To Ikeja Along Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1330,4 Bedroom Duplex On 705sqm Of Land,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +1331,A Plot Of Land Imeasuring 620sqm In A Gated Estate,Off Oba Akran Awolowo Way Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1332,"6 Units Of 2 Bedroom Flats Plus 2 Shops,and A Pent House","Unity Street,off Toyin Street,ikeja Toyin Street Ikeja Lagos",₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +1333,729sqm Land, Agidingbi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1334,For Sale 3 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +1335,New Luxury 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,6 baths,6 Toilets,GRA +1336,4 Bedroom Detached House,Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +1337,1070sqm Land With A Detached Building,"Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"265,000,000",0,0,0, beds, baths, Toilets,GRA +1338,New 5bedroom Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,7 Toilets,Alausa +1339,A Massive Land Measuring 7000sqm,Oregun Ikeja Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1340,5star Hotel Of 32rooms With Hall Of 200capacity,"G,r,a Ikeja Lagos Ikeja Gra Ikeja Lagos",₦,"2,300,000,000",0,0,0, beds, baths, Toilets,GRA +1341,1200sqm Of Land In An Estate,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1342,Executive Luxury 4bedroom Maisonette With Bq,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,6 baths,6 Toilets,Opebi +1343,Solid Block Of 4flats Of 3bedroom Each Off Opebi Oregun Link Road,Opebi Oregun Link Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +1344,Cornerpiece 2 Blocks Of 4 Flats Consisting 3 Bedrooms Each On 2 Plots Of Land, Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agidingbi +1345,75 Plots Of Land With Supreme Court Judgement In An Estate,Mende Maryland Lagos Maryland Ikeja Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Maryland +1346,"3 Story Building Plus Pent House At Off Toyin Street,ikeja","Off Toyin Street,ikeja Toyin Street Ikeja Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1347,Blocks Of 2 Numbers Of 3 Bedroom And 2 Numbers Of 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +1348,Luxury Executive 7bedroom House With 2bq On 800sqm.c Of O,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,1,7 beds,9 baths,9 Toilets,Adeniyi Jones +1349,1500sqm Land,Ajao Rd Ikeja Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1350,Standard Detached House On 3000sqm Land In Good Location,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,1, beds, baths, Toilets,Adeniyi Jones +1351,1017m2 Of Land,... Ikeja Gra Ikeja Lagos,₦,"268,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1352,New Luxury 4bedroom Terrace Duplex In A Good Location,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,1, beds, baths, Toilets,GRA +1353,5000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1354,A Lovely Five Storey Building Sitting On Almost 5 Plots,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,5 beds, baths, Toilets,Opebi +1355,935 Sqm Of Land, Agidingbi Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1356,Luxury 2 Units Of 5bedroom Duplex,Juli Estate Oregun Ikeja Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oregun +1357,640sqms Table Land,Omole Phase1 Agidingbi Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1358,1000sqm Of Land,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"320,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1359,For Sale 5500sqm Of Land,Awolowo Way Ikeja Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1360,Newly Built 5 Bedroom Semi Detached Duplex With Bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +1361,Luxury Executive 3bedroom Flat Apartment,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,1,0 beds,0 baths,0 Toilets,Allen Avenue +1362,Luxury 5 Bedroom Detached House With 2 Rooms Bq And Swimming Pool,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"260,000,000",0,1,1,5 beds,7 baths,7 Toilets,Alausa +1363,Standard Executive Newly Built 3 Bedroom Flat With A Room Bq,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Opebi +1364,Honourable And Astonishing 5 Bedroom Fully Detached Duplex With Swimming Pool At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1365,New Luxury 2bedroom Flat Apartment In A Gated Estate,Dideolu Estate Ogba Close To Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets,Adeniyi Jones +1366,"1,560sqm Of Land",Opebi Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1367,5 Bedroom Fully Detached Duplex With Bq,Balogun Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikeja +1368,Land,Aromire Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1369,Blocks Of 3 And 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Adeniyi Jones +1370,500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1371,Standard Commercial Property Of 3storey Building On 1000sqm,Kudirat Abiola Way Oregun Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oregun +1372,A Standard Well Designed Fully Functional 32 Rooms Hotel,Gra Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,1,0 beds,0 baths,0 Toilets,GRA +1373,Furnished 4 Bedroom Semi Detached Duplex,"Ikeja, Lagos. Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +1374,32 Hotel Rooms With Pool And Facilities, Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +1375,New Luxury 5bedroom Fully Detached Duplex With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets,Alausa +1376,New Luxury 5bedroom Fully Furnished Fully Detached Duplex With Bq Swimming Pool,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"450,000,000",0,1,1,5 beds,8 baths,8 Toilets,Opebi +1377,Luxury 4bedroom Terrace Duplex With Bq,Oregun Ikeja Oregun Ikeja Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets,Oregun +1378,Luxury 3bedroom Flat With Bq,Oregun Ikeja Oregun Ikeja Lagos,₦,"60,000,000",0,1,1,0 beds,0 baths,0 Toilets,Oregun +1379,For Sale 640sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1380,For Sale 1500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1381,Nite Shift Shopping Complex On 2000sqm,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1382,Hotel/ Shortlets Apartment With 13 Rooms,Opebi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1383,Newly Built 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +1384,6 Numbers Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +1385,School,Valley Estate Cement Bus Stop Ikeja Lagos Mangoro Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1386,2 Units Of 5 Bedroom Duplex + 1 Unit Of 4 Bedroom Duplex + 1 Room Bq Each On 950sqm,"On Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +1387,A Standard 5bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1388,Functional Nail Factory,Ikeja Lagos Opebi Ikeja Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1389,"Block Of 8 Numbers Of 4 Bedroom Flats On 2,000 Square Meters Land","Valley View Estate, Agidingbi, Ikeja, Lagos. Agidingbi Ikeja Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1390,A Standard 5bedroom Duplex,Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +1391,Commercial Demilishable Structure On 2000sqm Land Facing Major Express,Major Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1392,7 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"310,000,000",0,0,1,7 beds,7 baths,7 Toilets,Adeniyi Jones +1393,970sqm Of Dryland In A Very Good Estate,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1394,Commercial 30room Hotel On 800sqm Land,Off Airport Mafoluku Oshodi Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1395,A Lovely 5 Bedroom Detached Duplex,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +1396,A Plot Measuring 1000sqm With Demolishable,Ogundana Str Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1397,New Luxury 5bedroom Detached House With 2bedroom Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"210,000,000",0,0,1, beds, baths, Toilets,Agidingbi +1398,1200sqm Of Land,Agidingbi Ikeja Lagos,₦,"230,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1399,Land,Awolowo Way Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1400,One Acre Of Land Along Aromire Avenue Ikeja,Adeniyi Jones Ikeja Lagos,₦,"1,400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1401,1500sqm Of Dry Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1402,"5 Bedroom Duplex, 5 Bedroom Bungalow & 3 Bedroom Bungalow + Bqs On 1,500sqm Land","Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"370,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +1403,1200sqm Of Land,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"380,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1404,Standard 25 Rooms Hotel In A Good Location,Ikeja Ikeja Lagos,₦,"30,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +1405,An Executive 4bedroom Duplex,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1406,Luxury 5bedroom Detached Duplex With Office Reception Area,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,1, beds, baths, Toilets,GRA +1407,Executive 4bedroom Terrace Duplex With Swimming Pool And Gym,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets,GRA +1408,2 Acres Of Land,Alausa Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1409,Prime Commercial Land Measuring 1000sqm And 700sqm,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1410,4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1411,12units Of 3bedroom @ Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"980,000,000",0,0,0, beds, baths, Toilets,GRA +1412,A Immaculate Well Designed 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,GRA +1413,A Lovely 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1414,3 Bedroom Flats,Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +1415,6 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"140,000,000/day",0,1,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +1416,New Luxury 4bedroom Fully Detached Duplex With Bq,Gated Estate Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"135,000,000",0,1,1,4 beds,7 baths,7 Toilets,Awolowo Way +1417,1700sqm Land,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"555,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1418,Luxury Functional 25room Hotel,Acme Agidingbi Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1419,"New Luxury 7bedroom Mansion With Bq, Swimming Pool",Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,1,7 beds,9 baths,9 Toilets,GRA +1420,3.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1421,32 Room Hotel In Gra Ikeja,... Ikeja Gra Ikeja Lagos,₦,"2,300,000,000/day",1,0,1,10 beds,10 baths,10 Toilets,GRA +1422,A Block Of 6 Flats & 12 Units Of Lock Up Shops,"Ogba, Ikeja, Lagos. Ikeja Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1423,4 Units Of 3 Bedroom Terrace Duplex With Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1424,New Luxury 4bedroom Semi Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"115,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agidingbi +1425,Complete Luxury Fully Furnished 5bedroom Mansion With Bq,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets,Opebi +1426,Standard Full Plot Of Land,Ajao Estate By Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1427,Standard 650sqm Land In A Nice Area,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1428,4 Bedroom Detached House + 2 Bedroom Bq In A Serene & Gated Estate,"Peace Court Estate, Adeyemo Alakija, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1429,Standard 2 Block Building Of 14flat Of 3bedroom Furnished,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"500,000,000",0,0,1,3 beds,4 baths,4 Toilets,Airport Road +1430,Executive 7bedroom Duplex With 2flat Of 2bedroom,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"200,000,000",0,0,1,7 beds,8 baths,8 Toilets,Alausa +1431,1200sqm Of Land,Oregun Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1432,Executive 5bedroom Bungalow With 2bedroom Bq On 1025sqm,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"170,000,000",0,0,1, beds, baths, Toilets,Other Ikeja +1433,Standard 1000sqm Land In A Good Location,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1434,4 Units Of 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1435,Luxury Commercial 9floors On 4plots,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1436,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Maryland +1437,1300sqm Of Bareland,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1438,A Standard 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1439,4bedrooms Detached Duplex With Bq In Adeniyi Jones Ikeja,Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1440,Lovely 5 Bedroom Detached En Suite Duplex On Two Floors With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +1441,2 Units Of 5 Bedroom Detached Mansion + Swimming Pool,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets,Opebi +1442,A Commercial Property Suitable For Shoppping Complex With C Of O, Alausa Ikeja Lagos,₦,"270,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1443,4 Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"97,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +1444,A Bareland Measuring 1600sqm Land,Opebi Ikeja Lagos Ikeja Lagos,₦,"230,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1445,Luxury 5bedroom Detached Duplex With Bq On 378sqm Land,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets,Alausa +1446,Newly Built 5 Bedroom Detached Duplex,Magodo Phase2 Estate Alausa Ikeja Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Alausa +1447,Executive Luxury 3bedroom Flat Apartment In Good Location,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,4 Toilets,Alausa +1448,Standard 1289sqm Land With Demolishable Structure In A Good Location,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,GRA +1449,Newly Built 4 Bedroom Duplex,Olowora Behind Omole Phase2 Alausa Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Alausa +1450,A Standard 4bedroom Detached Duplex,Alakija Unity Road Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Airport Road +1451,Nice 5bedroom Detached Duplex With 2bq And Uncompleted.680sqm Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,1,5 beds,7 baths,7 Toilets,GRA +1452,Demolishable 4 Bedroom Duplex Structure Of 3600sqm,Adeniyi Jones Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +1453,New Luxury 5number Of 4bedroom Duplex With Bq On 1400sqm Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"780,000,000",0,1,1,0 beds,0 baths,0 Toilets,GRA +1454,Executive Luxury 3 Bedroom Flat With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,5 baths,5 Toilets,Alausa +1455,Luxury Executive 4bedroom Maisonette,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets,Adeniyi Jones +1456,"1,088sqm Land", Allen Avenue Ikeja Lagos,₦,"140,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1457,Beautifully Superb 4 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1458,13 Room Hotel,Toyin Toyin Street Ikeja Lagos,₦,"180,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +1459,Brand New 4bedrooms Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +1460,A Single Bay Warehouse,Oregun Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1461,4 Big Warehouses With An Office Complex Sitting On 2.129 Acres Of Land, Alausa Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1462,Commercial 4 Floors Office Complex In An Accessible Location,Oregun Ikeja Oregun Ikeja Lagos,₦,"180,000,000",0,1,1,0 beds,0 baths,0 Toilets,Oregun +1463,New Luxury 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,1,0 beds,0 baths,0 Toilets,GRA +1464,Serviced 5 Bedroom Terrace Duplex With Bq,Gated Estate Adeniyi Jones Ikeja Lagos,₦,"123,000,000",1,1,1,5 beds,7 baths,0 Toilets,Adeniyi Jones +1465,Executive 25room Hotel With Lift Swimming Pool And Conference Hall,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,1,0 beds,0 baths,0 Toilets,Airport Road +1466,4 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1467,Executive 5bedroom Detached Duplex,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1468,A Standard 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1469,4000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1470,A Standard 3 Bedroom,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +1471,Land,Oregun Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1472,"8,900m² With Hotel Structure",Airport Road Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1473,32 Rooms Fully Functional Hotel,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",1,0,1,10 beds,10 baths,10 Toilets,GRA +1474,3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1475,For Sale 1500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1476,Commercial Dry Land,Old Toll Gate Alausa Ikeja Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets,Alausa +1477,Commercial 4206sqm Land,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1478,26 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1479,Land,Adeniyi Jones Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1480,An Acre Of Land,Alfred Garden Olusosun Oregun Ikeja Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1481,3.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1482,Perfect Corner Piece Land Measuring 400sqm,Magodo Gra Phase 2 Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +1483,5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Maryland +1484,657sqm Of Land,Opebi Ikeja Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1485,5 Bedroom Wing Of Duplex With Miniflat Bq,Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agidingbi +1486,"1,248sqm Of Land",Along Amaraolu Off Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1487,1820sqm Of Land With Structure,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1488,For Sale 6 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +1489,A Newly Built 3bedroom,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +1490,Executive 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +1491,New Luxury 3bedroom Flat Apartment,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikeja +1492,A Dry Bareland Measuring 466sqm With C Of O And Deed Of Assignment,Oregun Lagos Oregun Ikeja Lagos,₦,"70,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1493,Standard 15 Plot Together Selling Per 800sqm,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1494,New 7 Blocks Of 3 Bedrooms Flats With Bq,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets,GRA +1495,For Sale 800sqm Of Land,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1496,1600sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1497,A Fantastic Newly Built Luxury 5bd Fully Detached Duplex With Bq,"Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Awolowo Way +1498,2000sqm Land, Ikeja Gra Ikeja Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1499,New Luxury 4bedroom Semi Detached Duplex Terrace With Bq Personal Compound,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agidingbi +1500,New Luxury 5bedroom Detached Duplex In A Good Location,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"220,000,000",0,1,1, beds, baths, Toilets,Agidingbi +1501,New Luxury 4bedroom Semi Detached Terrace Duplex In A Good Location,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"88,000,000",0,0,0,4 beds,6 baths,6 Toilets,Allen Avenue +1502,"2 Wings Of 4 Floors Buildings With Tenated Flats, Offices And Bq",S Allen Avenue Ikeja Lagos,₦,"375,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1503,9500sqm Of Land For Commercial/ Residential Purpose,Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1504,1000sqm Corner Piece Land With Demolishable Structure. With C Of O At Allen,Ogundana Allen Avenue Ikeja Lagos,₦,"170,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1505,A Lovely Land Fenced With Gate,"Ibijoke Street, Off Oregun Road Oregun Ikeja Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1506,Commercial Land Of 3300 Sqm Land Good For School Estate And Hotel,Adeniji Jones Close To Allen Ikeja Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1507,An Executive 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1508,5bedroom Fully Detached Duplex On 600sqms,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets,Adeniyi Jones +1509,A Lovely 4 Bedroom Semi Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1510,Luxury Executive 4bedroom Terrace Duplex In A Good Location,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,1,4 beds,6 baths,6 Toilets,GRA +1511,4 Bedroom Semi Detached Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1512,"2plots Of Land Measuring 1,252sqm With C Of O",Etal Avenue Near Nnpc Oregun Oregun Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Oregun +1513,Commercial Detached House On 671sqm Land Facing Major Road,Major Awolowo Way Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets,Awolowo Way +1514,New Luxury 4bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,1,4 beds,6 baths,6 Toilets,GRA +1515,Two Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs,Opebi Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +1516,A Lovely 5bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Opebi +1517,Superb Luxury Ensuites Modern & Tastefully Finished Fully Detached 5bd Duplex + Rm Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1518,Standard 6number Of 3bedroom 6rooms Penthouse.c Of O,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,1, beds, baths, Toilets,Airport Road +1519,New Carcass 4bedroom Terrace Duplex With Bq,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,6 baths,6 Toilets,Adeniyi Jones +1520,800sqm Land, Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1521,Duplex Sitting On 600sqm Of Land,S Oregun Ikeja Lagos,₦,"55,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1522,Luxury 4number Of 3bedroom Terrace Duplex With Bq Swimming Pool Inverter Garden And Generator,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,1,3 beds,5 baths,5 Toilets,GRA +1523,Luxury 5bedroom Detached Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1524,940sqm Of Land Fenced Bareland, Alausa Ikeja Lagos,₦,"280,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1525,Paradise And Spacious 5 Bedroom Fully Detached At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1526,4 Bedroom Fully Detached Duplex With Bq,Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +1527,Newly Built 4 Bedroom Terrace House + Bq,"Maryland, Ikeja, Lagos. Maryland Ikeja Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +1528,Newly Built 5 Bedroom Semi Detached Duplex With Pent House At Adeniyi Jones,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"105,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +1529,New And Modern 5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +1530,680sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1531,Newly Built 6 Bedroom Fully Detached House + Bq,"Adeniyi Jones, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +1532,5 Bedroom Detached Duplex With Bq,Behind Lagoon Hospital Ikeja Lagos Balogun Ikeja Lagos,₦,"120,000,000/day",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +1533,Newly Built 5 Bedroom Fully Detached Duplex +1 Room Bq On 480sqm2 Land, Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +1534,A Corner Piece Of 4 Bedroom Fully Detached Duplex With 3 Rooms Bq On 500sqm Of Land,Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +1535,9000sqm Of Land,Reverend Ogunbiyi Crescent Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1536,3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +1537,4 Bedroom Terrace Duplex With Bq With C Of O,Adeniyi Jones Ikeja Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1538,4 Bedroom Terrace,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1539,940sqm Of Commercial Fenced Bareland,Alhausa Alausa Ikeja Lagos,₦,"280,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1540,"A 2 Bay Warehouses With 12, 000sqft With Office Building With C Of O",Oregun Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1541,Newly Built 4bedroom Fully Detached Duplex With Bq,Awuse Estate Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,6 baths,6 Toilets,GRA +1542,5 Bedroom Semi Detached Duplex All Room En Suites With Bq,Aladura Estate Anthony Village Mobolaji Bank Anthony Way Ikeja Lagos,₦,"92,000,000",0,1,0,5 beds,5 baths,5 Toilets,Awolowo Way +1543,457sqm Of Land In A Very Secured Estate,Maryland Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1544,Commercial 5bedroom Duplex Plus 4rooms Bq,Off Opebi Ikeja Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +1545,New 4bedroom Terrace Duplex With Bq In A Gated Estate,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,1,4 beds,6 baths,6 Toilets,Adeniyi Jones +1546,1900sqm Land, Ikeja Gra Ikeja Lagos,₦,"580,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1547,3 Numbers Of 4 Bedroom Duplexes + Bq & Gate House,"By Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"230,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +1548,New 5bedroom Detached Duplex With Bq And Swimming Pool,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"225,000,000",0,1,1,5 beds,6 baths,6 Toilets,Alausa +1549,6 And Half Plot Of Land,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1550,7 Bedroom Fully Detached Duplex With 2 Rooms Bq,D Adeniyi Jones Ikeja Lagos,₦,"200,000,000/day",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +1551,For Sale 1800sqm Of Land,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1552,Newly Built 5 Bedroom With Boy's Quarter,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,5 Toilets,Adeniyi Jones +1553,6 Bedroom Duplex Plus 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1554,4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +1555,Newly Built 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"2,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +1556,3 Bedroom Maisonette,"King's Court, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +1557,3 Bedroom Flat,Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1558,5 Bedroom Duplex With A Room Bq,Toyin Street Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +1559,2 Numbers Of 3 Bedroom Flat And And A 5 Bedroom Duplex,Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds,9 baths,9 Toilets,Other Ikeja +1560,Land,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1561,Land,Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1562,4 Bedroom Duplex Plus 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Ikeja +1563,Newly Built 5 Bedroom Duplex,Isaac John Ikeja Gra Ikeja Lagos,₦,"770,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1564,Pharmaceutical Company,"Sapara Close, Off Oba Akran Avenu Ikeja Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1565,Warehouse,"Kudirat Abiola Way, Oregun Ikeja Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1566,Newly Built 5units Of 4bedroom Terrace Duplex,Mende Maryland Maryland Ikeja Lagos,₦,"80,000,000/sqm",0,1,1,4 beds,6 baths,6 Toilets,Maryland +1567,Shopping Mall,Street Mangoro Ikeja Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1568,A Brand New 12 Units Of 3 Bedroom Apartment,Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +1569,5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1570,4 Bed Rooms Semi Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Airport Road +1571,3 Bedroom Apartment,Osolo Way/international Airport Road(ikeja) Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1572,800sqm Land,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1573,Land Of 1700sqm,Adekunle Fajuyi Street Ikeja Gra Lagos Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1574,4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +1575,4bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000/sqm",0,0,0,4 beds,7 baths,7 Toilets,GRA +1576,4bedroom Terrace Duplex*,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1577,Land,Alausa Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1578,Land,Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1579,A Story Building,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,10 beds,0 baths,0 Toilets,Adeniyi Jones +1580,A Foreclosed 5 Star Hotel,Airport Road(ikeja) Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1581,Blocks Of Rooms On 45ft By 150ft Plot,2rd Junction Oke Ira Ogba Ikeja Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1582,Brand New & Excellently Finished 3bedroom Apartment,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Opebi +1583,Fully Detached 5 Bedroom Duplex,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets,GRA +1584,Blocks Of Flat With 26 Rooms,Haruna Ogba Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1585,Approximately 530 Sqm Dry Plot Of Land,Within The Well Planned & Serene Juli Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1586,A Commercial Building On 5 Floors,Tokunboh Alli Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths,10 Toilets,Other Ikeja +1587,Brand New And Luxury 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,1,3 beds,3 baths,4 Toilets,GRA +1588,5 Bedroom Duplex,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +1589,Tastefully Finished 3 Bedroom Flat With Boys Quarter,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +1590,Dry & Firm Cornerpiece 500m2 Land For Sale At Omole Phase 1 Extension @ Agidingbi,Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1591,Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1592,Newly Built 7 Numbers Of 4 Bedrooms Terrace Duplex With A Room Bq On 1800 Sq Meters Of Land In An Estate,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"800,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1593,Available Land,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1594,Warehouses With Office,Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1595,4bedroom Terrace Duplex + 1 Room Bq,Off Salvation Road Opebi Ikeja Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +1596,Newly Built 2units 5bed Room Semi Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1597,A Tasty 4 Bedrooms Terrace Duplex With A Bq,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +1598,Newly Built 5bedroom Detached,"Akere, Ikeja Lagos State Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +1599,2 Units Of Four Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"9,000,000",0,0,0,4 beds,6 baths,0 Toilets,Opebi +1600,4 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1601,Adeniyi Jones Ikeja 5bedroom Detached House,. Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1602,Newly Built 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,8 Toilets,GRA +1603,5 Bedroom Semi Detached Duplex,Magodo Phase 2 Gra Estate Ikeja Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1604,A 527 Sqm Bare Land,Estate On Kudirat Abiola Way Oregun Ikeja Lagos,₦,"40,000,000/sqm",0,0,0, beds, baths, Toilets,Oregun +1605,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1606,4 Bedroom Semi Detached Duplex,"Off Allen, Off Bamishile Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +1607,Land,"Opic Estate, Isheri North Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1608,2nos. Warehouses/factories,Morrison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +1609,"A Plot Of Land For Sale In Serene Area Of Opebi, Lagos State.",Opebi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Opebi +1610,Plots Of Land, Maryland Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Maryland +1611,Commercial Property,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1612,117 Rooms Hotel,The Hotel Is Just 5km Away From The Murtala Muhammed International Airport And Across The Road Is The Ikeja Shopping Mall. Airport Road(ikeja) Ikeja Lagos,$,"30,000,000",0,0,1,0 beds,0 baths,0 Toilets,Airport Road +1613,5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1614,Massive 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,6 beds,6 baths,7 Toilets,Opebi +1615,Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Maryland Ikeja Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Maryland +1616,"5 Bedrm Luxurious Flat ,with Guest And One For The Maid...making It 5 Bedrm Flat In Peace Estate Off Oregun.....55m Asking....it Comes With An Elevator Ib",Off Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths, Toilets,Oregun +1617,Newly Built 4 Bedroom Semi Detached Duplex And A Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +1618,Executive Newly Built 3bedroom Flat,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,4 baths,5 Toilets,GRA +1619,5bedroom Detached House On A Land Area Of 639sqm,Allen Avenue Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,4 baths,0 Toilets,Allen Avenue +1620,Luxurious 3 Bedroom Flat With A Boys Quarter,"Ikeja Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1621,5 Bedroom Fully Detached Duplex,Allen Allen Avenue Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Allen Avenue +1622,5 Bedroom Detached Duplex,"Magodo, Ikeja Ikeja Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1623,Distress Sale Of 3 Acres Of Land,Along Oba Akran Ikeja Lagos Oba Akran Ikeja Lagos,₦,"12,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1624,4 Flats Of 3 Bedrooms, Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Ikeja +1625,Available Land,Oregun Ikeja Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1626,Luxury 5bedroom Detached Duplex +bq & Pool,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +1627,5 Bedroom Detached Duplex,Ikeja Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1628,9 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1629,3 Bedrooms Apartment,Maryland Maryland Ikeja Lagos,₦,"55,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Maryland +1630,3 Bedrooms Block Of Flat,Opebi Salvation Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,4 Toilets,Opebi +1631,Fully Detached House With 10 Rooms,Ikeja Lagos,₦,"100,000,000",1,1,0,10 beds,8 baths,10 Toilets,Other Ikeja +1632,3500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,GRA +1633,A Functional 33 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,800,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +1634,Brand New Tastefully Finished 3 Bedroom Flat,Merit Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +1635,Newly Built 3bedroom Apartment,Off Toyin Street Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +1636,450 Square Meters Of Land,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1637,"An Office Complex On Four (4) Floors With A Total Of 1,000sqm Lettable Space",Allen Road Ikeja Allen Avenue Ikeja Lagos,₦,"650,000,000/year",0,0,0,0 beds,0 baths,4 Toilets,Allen Avenue +1638,4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1639,Newly Built 4bedroom Detached Duplex,"Opebi, Ikeja Lagos. Opebi Ikeja Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +1640,5 Bedroom Terrace Duplex And A Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1641,Complex Shop,Street Ikeja Lagos,₦,"180,000,000/sqm",0,0,0,10 beds,1 baths,2 Toilets,Other Ikeja +1642,Fully Furnished With Modern Finishings (1bedroom Flat) Miniflat,Allen Allen Avenue Ikeja Lagos,₦,"18,000,000",0,1,1,1 beds,1 baths,0 Toilets,Allen Avenue +1643,4 Bedroom Flat,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +1644,Newly Built 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +1645,Exotic 6 Bedroom Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Airport Road +1646,Brand New 4bedroom Semi Detached Duplex With A Room Bqm,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,6 Toilets,Opebi +1647,Tastefully Finished Fully Detached 5 Bedroom Duplex,Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,6 beds,7 baths,8 Toilets,Adeniyi Jones +1648,*do You Mind The Cheapest Four (4) Bedroom Duplex In In Town?*,Opebi Ikeja Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets,Opebi +1649,Tastefully Finished 3 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +1650,"12,000 Sq.meter Land",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1651,Land Size: 13 Acres,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1652,Land,Oregun Oregun Ikeja Lagos,₦,"27,000,000",0,0,1,0 beds,0 baths,0 Toilets,Oregun +1653,6 Units Of 3 Bedroom Corner Piece Apartments (mainly Office Complex),Off Toyin Street Ikeja Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,2 Toilets,Other Ikeja +1654,10800sqm Of Land,Oba Akran Ikeja Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1655,6 Numbers Of 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1656,5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +1657,4 Bedrooms Fully Furnished Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1658,18300sqm Of Land,Off Awolowo Way Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1659,5 Bedroom Duplex With 3 Bedroom Bungalow,After Chrisland Schools Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1660,5 Bedroom Fully Detarched Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1661,4 Bedrooms Semi Detached Duplex,Akai Road Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +1662,4 Bed Rooms Terraced Duplex With Bq,Maryland Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +1663,Spacious 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1664,4 Bed Room Terrace Duplex,Opebi Estate Opebi Ikeja Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets,Opebi +1665,4 Bedroom Terrace Duplex For Sale At Ajao Estate.,"Ajao Estate, Along Air Port Road, Ikeja Lagos Airport Road(ikeja) Ikeja Lagos",₦,"70,000,000",0,1,0, beds, baths, Toilets,Airport Road +1666,Land,Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1667,Newly Built Four Bedroom With Bq,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Allen Avenue +1668,Brand New 8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +1669,6350sqm Land,Mko Abiola Garden Road Alausa Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1670,A Re Developable Property,"Along Awolowo Way, Ikeja Lagos. Awolowo Way Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1671,Tasty 4 Bedrooms Terrace Duplex With A Bq,Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +1672,5 Bedroom Luxurious Flat,Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1673,4 Bedrooms Detached Duplex With A Room Bq.,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1674,Newly Built 4 Bedroom Duplex With Bq,Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,5 Toilets,Opebi +1675,6 Bedroom Duplex,Airport Road(ikeja) Ikeja Lagos,₦,"75,000,000",0,1,0,6 beds,0 baths,0 Toilets,Airport Road +1676,"3 Numbers Of 4 Bedrooms Condo Duplex With A Room Bq On 400 Sq Meters Of Land Each At Opebi, Ikeja,",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +1677,8 Units Of Spacious And Exquisite 4 Bedroom Duplex Plus A Room Bq,Awuse Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets,Opebi +1678,Land,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1679,1000 Sqms Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +1680,A Plot Of Land,"Salvation Str., By Salvation B/stop Toyin Street Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1681,Brand New 3 Bedroom Apartment With A Room Bq,Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1682,Tastefully Finished 3 Bedroom Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +1683,Tastefully Finished 4 Bedroom Duplex,Omole Phase 2 Ikeja Lagos,₦,"52,000,000",0,1,1,4 beds,5 baths,6 Toilets,Omole +1684,Exquisite 4 Bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets,Alausa +1685,A Luxury 5 Bedrooms Duplex With A Bq And A Security House,Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +1686,Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1687,Large 10 Bedroom Detached House,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,0 baths,0 Toilets,Adeniyi Jones +1688,Newly Built 3bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Opebi +1689,Hotel Space,Awolowo Way Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1690,Office / Commercial Building Of 5 Floors,Ogba Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1691,4 Bedroom Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1692,2 Units Of 5 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,7 Toilets,GRA +1693,Luxurious 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,5 Toilets,GRA +1694,Joint Venture Land,Maryland Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1695,A Functional Steel Manufacturing Company,Oregun Industrial Area Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1696,A 4 Star Luxurious Hotel,Ikeja Lagos,$,"30,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Ikeja +1697,Block Of Flats,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +1698,7 Bedroom Fully Detached House,Opebi Ikeja Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets,Opebi +1699,Land,Magodo Close To Phase 2 Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +1700,Newly Built 3 Bedrooms Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +1701,Tastefully Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1702,Land,Oregun Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1703,Magnificently Finished 2 Units Of 5 Bedroom Super Luxury Detached Houses With 2 Living Room,Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +1704,5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +1705,Newly Built 5bedroom Semi Detached Duplex Wth Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1706,Spacious 2 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Adeniyi Jones +1707,5 Bedrooms Detached Bungalow,Joel Ogunaike Street G.r.a Ikeja Ikeja Gra Ikeja Lagos,₦,"970,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +1708,"Large 10 Bedroom Detached House, 2 Bedroom Flat Chalet, 4 Garages, And 4bqs",Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Adeniyi Jones +1709,A Tastefully Furnished And Finished 4 Bedrooms Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1710,3 Bedroom Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +1711,4 Bedroom Detached Duplex With 2bq, Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1712,A Landed Commercial Property On 680m2 Land Directly On The Road,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1713,Newly Built 4 Bedroom Semi Detach Duplex,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1714,Brand New And Luxurious 3 Bedroom Flat With A Boys Quarter At Ikeja Gra Lagos. Price #135m. Title Cofo,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets,GRA +1715,A Plot Of Land,Opebi Road Ikeja Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1716,Newly Built Four Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +1717,4bedroom Terrace Duplx Wth A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1718,Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1719,9 Acres Of Land,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1720,A 4 Bedroom Flat Plus Additional 3 Units Of 2bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikeja +1721,Just Out 4 Bedroom Detached Duplex With Bq On 350sqm Land Fenced And Gated With C Of O, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1722,Newly Built 7 Numbers Of 4 Bedrooms Terrace Duplex With A Room Bq On 1800 Sq Meters Of Land In An Estate,Adeniyi Jones Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1723,4bedroom Flat,Toyin Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,2 Toilets,Allen Avenue +1724,Land,Beside River Valley Estate Ojodu Berger Lagos Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1725,Demolishable Structures,Ikeja Gra Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1726,4 Bedroom Semi Detached Duplex,Allen Ikeja Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikeja +1727,Land,Agidingbi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1728,Office Complex,Street Mangoro Ikeja Lagos,₦,"180,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1729,Newly Built Three Bedroom Apartment,Allen Avenue Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets,Allen Avenue +1730,Land,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1731,"For Sale;3 Bedroom Flat With A Store Room Price: 37m,",Ikeja Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1732,Good Investment: A Newly Built 4 Nos 4 Bedroom Terrace House, Ikeja Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +1733,4 Bedroom Semi Detached Duplex With A Room Bq For Sale Ikeja Gra N140m Asking #130 Million Net With C Of O,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,GRA +1734,650m Land,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1735,An Office Complex,Allen Road Ikeja Allen Avenue Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1736,Newly Built 4 Bedroom Duplex With A Room Bq In An Estate,In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1737,"Newly Built 7bedroom Duplex At Ajao Estate, Airport Road Lagos For Sale","Ajao Estate, Along Airport Road, Airport Road(ikeja) Ikeja Lagos",₦,"85,000,000",0,1,0,7 beds,7 baths,8 Toilets,Airport Road +1738,1720sqm Land,Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1739,4 Bedroom Terrace Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1740,A Block Of 2 Numbers Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1741,A Corner Piece Bare Land Of 1600sqm If Land,In An Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1742,Tenement House @ Off Toyin Street Ikeja,Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1743,New And Tastefully Finished 4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +1744,2units Of 3 Bedrooms Flat Bungalow,In An Estate At Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +1745,Newly Built 4bedroom Semi Detach Duplex Wth Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1746,5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1747,Exquisite 4 Bedroom Terrace Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +1748,"A Piece Of Land Measuring 5,300sqm",Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1749,Newly Built 3 Units Of 4 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1750,Commercial Land Measuring About 1000sm,Alausa Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Alausa +1751,Newly Built 5 Bedroom Detached Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,0 baths,0 Toilets,Adeniyi Jones +1752,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,0 baths,0 Toilets,GRA +1753,4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,1,4 beds,0 baths,0 Toilets,GRA +1754,Luxury 132 Units Of 2 & 3 Bedroom Flat + Bq (delivering Sep. 2022) Mortgage Plan Available,Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1755,Sleek 5 Bedroom Detached Home,Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1756,Contemporary 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1757,"18,300sqm Land",Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1758,3bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets,GRA +1759,Jv For Residential Or Commercial Purpose* *(premium)* 200m,"Ikeja Cbd Rd, Alausa Ikeja Lagos Alausa Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Alausa +1760,"Well Designed Exquisitely Finished & Massively Built Luxury Ensuites Modern 4bd Terrace Duplex With Bq @ Ikeja Gra,",Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1761,Vacant 4bedroom Detached House+2 Bq With Small Garden On 460sqm Land Size,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +1762,"5 Bedroom Fully Detached House Plus 2 Bedroom Out House,2 Bq",Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1763,Well Built 5bedroom Detached Duplex With Bq Swimming Pool Cinema,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +1764,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1765,519 Sqms Dry Land,Old Tollgate Alausa Ikeja Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets,Alausa +1766,Land,Off Showemimo Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1767,4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1768,4 Bedroom Semi Detached Duplex With Pent House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets,Allen Avenue +1769,5bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1770,1.2 Hectares Of Land,Oregun Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1771,5 Bedroom Semi Detached Pent House,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,7 baths,7 Toilets,Allen Avenue +1772,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +1773,Newly Built 4 Bedroom Detached Duplex In A Serene Environment + 1bq,Off Allen Allen Avenue Ikeja Lagos,₦,"130,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Allen Avenue +1774,4 Bedroom Terraced House With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,0 Toilets,GRA +1775,"Land Measuring 1000sqm With A Demolishable Bungalow, In A Prime And Secured Estate",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1776,5 Bedroom Semi Detached Duplex Ikeja Gra 120m,Ladipo Ikeja Gra Ikeja Lagos,₦,"120,000,000/sqm",1,0,1,5 beds,5 baths,4 Toilets,GRA +1777,3 Bedroom Flat,Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +1778,New 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1779,Full Plot Of Land, Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1780,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Wemimo Ikeja Gra Ikeja Lagos,₦,"176,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1781,2 Units Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,GRA +1782,Open Office Space,Oregun Ikeja Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1783,A 5 Bedroom Detached Duplex Is Available,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +1784,New 4bedroom Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1785,Newly Built 4 Bedroom Terrace Duplex With A Standard Bq,Weara Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,5 beds,4 baths,5 Toilets,Adeniyi Jones +1786,4 Bedroom Terraced Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +1787,Existing Exquisitely Finished 7 Bedrooms Detached House With 2 Sitting Rooms,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +1788,New And Modern 5 Bedroom Detached House With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"280,000,000",1,1,0,5 beds,4 baths,5 Toilets,GRA +1789,Well Maintained 4 Bedroom Semi Detached Duplex,Howson Wright Estate Oregun Ikeja Lagos,₦,"57,000,000",0,0,0,4 beds,3 baths,4 Toilets,Oregun +1790,Newly Built 5 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,7 baths,7 Toilets,GRA +1791,2 Units Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +1792,4 Bedroom Terraced Duplex With Swimming Pool,Maryland Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,Maryland +1793,Luxurious 4 Flat House,Ejigbo Area Airport Road(ikeja) Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets,Airport Road +1794,4 Bedroom Duplex,Cornerstone Estate Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Alausa +1795,Block Of 6flats Newly Completed,Off Allen Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +1796,A Block Of 3 Bedroom Flats Is Available,Oremeta Oregun Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Oregun +1797,3 Bedroom Flat With A Room Bq Plus Swimming Pool,Akora Adeniyi Jones Ikeja Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +1798,Newly Built 4bedroom Semi Detach Duplex Wth Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1799,A 5 Bedroom Detached Duplex Is Available For Sale, Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Allen Avenue +1800,Luxury5 Bedroom Detached Duplex With A Room Bq,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,4 baths,5 Toilets,Agidingbi +1801,5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +1802,Newly Built 5bedroom Fully Detached Duplex With Bq,Omole Phase One Gra Agidingbi Ikeja Lagos,₦,"350,000,000",1,1,1,5 beds,4 baths,5 Toilets,Agidingbi +1803,A 4 Bedroom Semi Detached Duplex Is Available,"Awolowo, Allen Avenue Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +1804,Fully Detached 5 Bedroom Duplex And Bq,Adeniyi Jones Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,7 baths,7 Toilets,Adeniyi Jones +1805,Land,Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1806,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +1807,Newly Built 5 Bedroom Smart House With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,GRA +1808,5 Bedroom Super Luxury Duplex In Omole Phase 1estate In Ikeja,Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +1809,32 Rooms Luxury Hotel Ikeja Grab My Direct,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"3,300,000,000/sqm",1,1,1,10 beds,10 baths,10 Toilets,GRA +1810,2 Block Of 3 Bedroom Flat,Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1811,4 Bedroom Semi Detached Duplex With A Room Bq,Off Awolowo Road Awolowo Way Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Awolowo Way +1812,"12,000sqm (3 Acres) Land","Oba Akran Avenue, Ikeja Oba Akran Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1813,5 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets,GRA +1814,13 Luxury Rooms Hotel,Balogun Bustop Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +1815,Closable Joint Venture Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1816,5 Bedroom Bungalow With 2 Rooms Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +1817,A 5 Bedroom Detached Duplex Is Available,"Ogunlowo Street, Awolowo Way Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1818,Contemporary 5 Bed Fully Detached Duplex With Bq Forsale,Awuse Estate Opebi Ikeja Lagos,₦,"550,000,000",0,1,1,5 beds,6 baths,6 Toilets,Opebi +1819,5 Bedroom Duplex Is Available,Obafemi Awolowo Way Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds, baths,6 Toilets,Alausa +1820,650sqm Of Land With A 2 Bedroom Flat Bungalow,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,0 Toilets,Adeniyi Jones +1821,5 Bedroom Mini Flat Flat / Apartment,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +1822,5 Bedroom Detached Duplex,Omole Phase 2 Agidingbi Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,4 baths,5 Toilets,Agidingbi +1823,Nice 4 Bedroom Terrace Duplex With Bq At Gra Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1824,Nice 4 Bedroom Flat,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +1825,Newly Built & Tastefully Finished 5bedroom Detached Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1826,Nice Fully Detached 4 Bedroom Duplex With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1827,Well Maintain Block Of Flats Of 4unit Of 3bedroom Flat,Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +1828,Fully Detached House With 10 Rooms,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1829,Well Titled 4units Of 3bedrooom Flat,Ojodu Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1830,New 3 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +1831,Modern Spacious 2bedrooms With 2units Of Mini Flats,Awolowo Way Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1832,Newly Built 6 Units Of Luxury 3 Bed Room Flats With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +1833,Premium & Luxury 4 Bedrom Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +1834,Brand New 4 Units Of 4 Bedrom Semi Detached Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1835,6 Bedroom Fully Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +1836,Exquisitely Designed Contemporary 5 Bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +1837,Standard 4units Of 3bed Room Flat,Magodo Phase 1 Gra Agidingbi Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1838,Executive 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +1839,Plots Of Land,Omele Agidingbi Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1840,A Corner Piece Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1841,Land,Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1842,117 Rooms & Suites Hotels,Allen Avenue Ikeja Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1843,4 Units Of 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1844,Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1845,Land,By Mma2 Intersecting The Junction To Int'l Airport Ikeja Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1846,Newly Built 4 Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1847,Neat Luxury 4 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1848,Block Of 6 Units Of 3 Bedroom Each With Bq On 1 Acre Of Land Ikeja Gra Lagos Nigeria,Ikeja Gra Ikeja Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,GRA +1849,Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1850,Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1851,5 Bedroom Luxurious Flat,Peace Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1852,Land,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1853,Brand New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1854,Land,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1855,Tastefully Furnished 6 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1856,Block Of 12 Numbers 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1857,A Newly Built Block Of 8units Of 3bedrooms Flat With A Room Bq,Awuse Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1858,3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1859,Land,Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1860,Well Built 5bedroom Spacious Detached Duplex,Off Awolowo Way Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1861,A Land Measuring 1300sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1862,Fully Furnished Full Detached 4bedrooms Duplex,Marwa Gardens Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1863,Land,Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1864,Finished 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1865,Land,Ladipo Bateye Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1866,Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1867,Land,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1868,Land Measuring 2400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1869,Luxury 4bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1870,Land,Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1871,An Uncompleted 10 Floors Office Structure,Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1872,Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1873,3 Bedroom Luxurious Flat,David's Court By Peace Estate Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1874,Well Built 4 Bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1875,Office Complex,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1876,Land Measuring 1300sqm,Adeniyi Jones Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1877,26 Rooms Hotel,Off Awolowo Way Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1878,300m2 Land,Ajisafe Street Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1879,4 Bedroom Semi Detached House,Emina Crescent Off Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1880,Open Plan Office Commercial Property,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1881,Factory With Warehouse,"Acme Road, Ogba Industrial Estate Ikeja Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1882,Land,Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1883,Well Built 4 Bedroom Spacious Detached Duplex,Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1884,Land,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1885,Land,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1886,5 Bedroom Fully Detached With 2bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1887,Well Built4 Bedroom Spacious Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1888,4 Units Of 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1889,Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1890,Finished 4 Bed Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1891,Warehouse,Off Kudirat Abiola Way Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1892,Open Plan 5 Storey (1000sqm Each Floor) Commercial Plaza,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1893,Brand New 4 Bedrom Semi Detached House,Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1894,8 Units Of 3 Bedrooms Apartments,Awushe Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1895,5 Bedroom Detached House With Bq,Agbaoku Estate Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1896,Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1897,2(numbers) Of 3 Bedroom Terrace Houses,Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1898,4 Bedroom Condo Duplex With 1 Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1899,Land,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1900,3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +1901,5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1902,"9,140 Sqm Land",Along Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1903,Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1904,Magnificently Finished 2 Units Of 5 Bedroom Detached Houses,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1905,6 Units Of Mini Flats & 3 Units Of 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1906,Available Land,Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1907,Newly Built 8 Units Of 4 Bedroom En Suite,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1908,Land Measuring 24 Acres,Ikeja Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1909,3 Units Of 2 Bedroom Flat,Ayobo Alausa Ikeja Lagos,₦,"150,000,000/sqm",0,0,1,3 beds,3 baths,3 Toilets,Alausa +1910,Brand New 4bedroom Terrace Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,1,0 beds,0 baths,0 Toilets,GRA +1911,Brand New 4bedroom Fully Detached Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,1,4 beds,4 baths,5 Toilets,GRA +1912,Brand New 4bedroom Semi Detached Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets,GRA +1913,4 Bedroom Luxury Apartment,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets,Opebi +1914,"A 7 Bay Empty Warehouses With Administrative Blocks And 9,000sqm Land",Kudirat Abiola Way Oregun Road Alausa Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1915,A Tastefully Finished 5bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,7 baths,8 Toilets,GRA +1916,2 Bedroom Luxury Apartment,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"40,000,000",1,1,0, beds, baths, Toilets,Opebi +1917,A Tastefully Finished 5bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,7 baths,8 Toilets,GRA +1918,4 Bedroom Maisonette With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"141,487,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +1919,Luxury 3 Bedroom Mansionette With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"83,587,000",1,1,0,0 beds,0 baths,0 Toilets,GRA +1920,New 4 Bedroom Terrace House Duplex + Swimming Pool,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +1921,Fully Furnished 1 Bedroom Studio Hotel Apartment,5 Minutes Drive To Muritala Mohammed International Airport Maryland Ikeja Lagos,₦,"33,000,000",1,1,0,0 beds,0 baths,0 Toilets,Maryland +1922,Fully Furnished 1 Bedroom Studio Hotel Apartment,5 Minutes Drive To Muritala Mohammed International Airport Maryland Ikeja Lagos,₦,"30,000,000",1,1,0,0 beds,0 baths,0 Toilets,Maryland +1923,2000sqm Land For Joint Venture In Prime Location,Awuse Estate Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1924,Newly Built 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1925,5 Bedroom Fully Detached Triplex,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"110,000,000",1,1,0, beds, baths, Toilets,Opebi +1926,Luxury 5 Bedroom Maisonette Duplex With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"166,187,000",1,1,0,0 beds,0 baths,0 Toilets,GRA +1927,5 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +1928,A Newly Built 5 Bedroom Detached Duplex With A Bq,Awuse Estate Opebi Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +1929,3 Bay Warehouse For Sale,Acme Road. Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Agidingbi +1930,4.58 Acres Of Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1931,Partly Furnished 6bedroom Detached House With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,6 beds,0 baths,0 Toilets,GRA +1932,3 Bedroom Block Of Flats,Off Adeniyi Road Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +1933,Commercial Land,Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +1934,"Joint Venture Land Of 62,000sqm",Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"18,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1935,5bedroom Duplex + Two Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"230,000,000,000",0,1,1, beds, baths, Toilets,GRA +1936,"A Cornerpiece Of Land Measuring 400sqm With A Demolishable Structure On It, In A Prime And Secured Estate",Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +1937,Tastefully Built 5 Units Of 3 Bedroom Blocks Of Flat,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Airport Road +1938,Land,Adeniyi Jones Ikeja Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1939,"10,800sqm Bareland",Oba Akran Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1940,"18,300sqms Bareland","Ajao Road, Off Awolowo Way Adeniyi Jones Ikeja Lagos",₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1941,2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"17,000,000/year",0,0,0,2 beds,0 baths,0 Toilets,Adeniyi Jones +1942,3 Bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +1943,Available Land,Oregun Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1944,Renovated Twin 4 Bedroom Semi Detached Duplex,Salvation Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +1945,3 Bedroom Luxury Apartment + Bq (offplan),Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"87,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +1946,Available Land,Akeem Balogun Street Agidingbi Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1947,Available Land,Agidingbi Ikeja Lagos,₦,"2,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +1948,Luxury 5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +1949,Available Land,Alausa Ikeja Lagos,₦,"3,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +1950,4 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets,Allen Avenue +1951,A 5 Bedroom Semi Detached House With 2room Boys Quarter,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,6 Toilets,Allen Avenue +1952,A 2 Storey Building Hotel Of 26 Rooms,By Shopright Ikeja Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Alausa +1953,A Fenced And Gated Land With Warehouses,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1954,4 Bedrooms Terrace Duplex With Maidroom,Ikeja Gra Ikeja Lagos,₦,"195,000,000",1,0,0,4 beds,4 baths,5 Toilets,GRA +1955,4 Bedrooms Fully Detached Duplex And Maidroom,Ikeja Gra Ikeja Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +1956,Block Of Flats,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Airport Road +1957,2 Bedroom Setback,Ikeja Along Airport Road(ikeja) Ikeja Lagos,₦,"53,000,000,000",0,0,0,2 beds,2 baths,2 Toilets,Airport Road +1958,4 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets,Allen Avenue +1959,Brand New Luxurious 7 Units Of 3 Bedroom Flat With Bq,"Off Issac John Street, Off Joel Ogunaike Street Ikeja Gra Ikeja Lagos",₦,"616,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1960,House,Z Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,1,0 beds,0 baths,0 Toilets,GRA +1961,3 Bedrooms Flat With Maidroom,Off Adeniyi Jones Ikeja Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +1962,5 Bedroom Semi Detached Duplex With A Room Self Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1963,A Five Storey Building,Opebi Road Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +1964,Lovely 4bedroom Semi Detached House,Off Ayoola Coker Street Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1965,5 Bedrm Luxurious,Inside Estate Oregun Ikeja Lagos,₦,"55,000,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oregun +1966,19 Number Unit 2bedroom And 1 Number Unit 3bedroom Flat, Toyin Street Ikeja Lagos,₦,"900,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikeja +1967,4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1968,Exquisitely Finished 4 Bedroom Fully Detached Duplex With 1 Bq,Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +1969,Fenced Land,Ikeja Along Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1970,1000 Sqm In Gra Ikeja Available. Title Fed C Of O, Ikeja Gra Ikeja Lagos,₦,"269,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +1971,"Fully Detached Five Bedroom Duplex With A Room Bq, Security Post ,massive Compound In An Estate Adeniyi Jones.",Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +1972,3bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"87,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +1973,3 Acres Of Land,Niwi Close Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +1974,6 Units Of 4 Bedroom Contemporary Terrace Houses Plus A Room Bq, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +1975,A Solid Sand Filled Land Measuring 600sqm **** Its A Corner Piece Land,Opebi Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Opebi +1976,466sqm Dry Bare Land Suitable For Commercial Purpose Except Supermarket,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +1977,This Is A 4 Bedroom Condor Duplex With Cinema And A Bq Self Serviced, Opebi Ikeja Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +1978,Mini Flat, Allen Avenue Ikeja Lagos,₦,"19,000,000",0,1,0,1 beds,1 baths,2 Toilets,Allen Avenue +1979,Brand New 4 Bed Room Semi Detach Duplex In Any Estate In Ikeja 75m Net,Awolowo Way Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Awolowo Way +1980,"4,300sqm Corner Piece Bare Land",Along Awolowo Road Awolowo Way Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +1981,6 Units Of Luxurious 3 Bedroom Flat With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +1982,4 Bedroom Detached Duplex With 1 Room Bq, Adeniyi Jones Ikeja Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +1983,"Just Out..2,000sqm On Ajisafe Street Ikeja Gra. *price...600m..call Me Now*",Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,GRA +1984,"1,000sqm Corner Piece With Demolishable Structures",Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +1985,4 Bedroom Semi Detached Duplex With A Room Bq At Alhaja Kofoworola St. Ikeja. 90m,Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +1986,Nice 600 Sqm Land In Gra Ikeja For Urgent Sale *price...115m* (fast Response Pls) Title..letter Of Allocation,Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,GRA +1987,Lovely 4 Bedroom Detached Duplex,Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +1988,"4 Plots Of Land Adjacent To Toyin Street Ikeja, Good For Any Commercial Purposes Title: C Of O Price' 350m Asking",Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +1989,An Executive And Very Solid Block Of 4 Units 3 Bedroom Flat On 650sqm Land,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +1990,Plots Of Land,Along Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +1991,Unit Of 4 Bedroom Duplex Luxury Massionette,"Bisbell Vineyard ,awuse Estate Opebi,ikeja Opebi Ikeja Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +1992,Bare Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +1993,4units Of 3bedroom Flat One Storey And 2units Of 2bedroom Bungalow,Ifako Ijaye Ogba Ikeja Agidingbi Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Agidingbi +1994,4units Of 3bedroom Flat One Storey And 2units Of 2bedroom Bungalow,"Ifako Ijaye Ogba,ikeja Agidingbi Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Agidingbi +1995,1 Bedroom Studio Apartments,"Adekunke Fajuyi/glorious Ville Court, Ikeja Gra Ikeja Lagos",₦,"40,000,000",1,1,0,0 beds,0 baths,0 Toilets,GRA +1996,3 Bedroom Apartment,Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +1997,Affordable 3 Bedroom Apartment,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +1998,Newly Built 4 Bedroom Massionette,"Boet Estate, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"130,000",0,1,0,4 beds,6 baths,6 Toilets,Adeniyi Jones +1999,A Landed Commercial Property On 680m² Land Directly On The Road,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2000,5 Bedroom Duplex,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikeja +2001,5 Bedroom Fully Detached Duplex,Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikeja +2002,A Well Finished 5bedroom Fully Detach Duplex With Bq,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +2003,Newly Built 5bedroom Detached House,Magodo Alausa Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,7 baths,7 Toilets,Alausa +2004,"8 Blocks Of 3bedroom, All Ensuite Sitting On Over 1200sqm Land","Cement, Onipetesi Ikeja Mangoro Ikeja Lagos",₦,"150,000,000",0,0,0,8 beds,10 baths,10 Toilets,Other Ikeja +2005,A Tastefully Finished 2 Blocks Of 12 Nos Of 3bedrooms Luxury Flats With Bq Each.,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2006,4 Bedroom Duplex,Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2007,Exquisitely Finished 7bedroom Detached House With 2 Sitting Rooms,Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +2008,Newly Built 2 And 3 Bedroom Flat,Obafemi Awolowo Way I Alausa Ikeja Lagos,₦,"63,000,000",0,0,0,2 beds,2 baths,3 Toilets,Alausa +2009,A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2010,2000sqm Land,"Oba Akinjobi Street, Ikeja Gra Ikeja Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2011,Hot Joint Venture,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +2012,5 Bedroom Detached House,Lawal Street Oregun Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oregun +2013,A Functional School,Alausa Alausa Ikeja Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Alausa +2014,Jv Residential Land,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oregun +2015,Single Bay Warehouse,Billings Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2016,A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2017,Functioning Hotel,By Shoprite Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2018,A Developable Property,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2019,Mega Filling Station,Dopemu Akowonjo Axis Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2020,Land,Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2021,Sweet Joint Venture,Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2022,Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2023,Block Of 4 Numbers Of 3 Bedroom,Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +2024,Warehouse,Billings Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2025,Land,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2026,5 Floors Office Building,Along Allen Avenue Ikeja Lagos Nigeria Allen Avenue Ikeja Lagos,₦,"900,000,000",1,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2027,Solid 5 Bedroom Detached Duplex,Magodo Phase 1 Ikeja Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets,Omole +2028,A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2029,4 Bedroom Fully Detached Duplex+ 3 Rooms Bq,Marwa Garden Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,0,1,4 beds,5 baths,5 Toilets,Alausa +2030,Land,Along Isaac John Street Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2031,Land,Along Oba Akran Avenue Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2032,Joint Venture Land,Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2033,Land,Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2034,Plastic & Hair Attachment Manufacturing /recycling Factory,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2035,Fenced And Gated 1969sqmt Land,Awuse Estate Opebi Ikeja Lagos Nigeria Opebi Ikeja Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Opebi +2036,Land,Odediran Estate Off Opebi Link Bridge Road Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2037,4 Acres Of Land Fenced With Gate,Along Adeniyi Jones Ikeja Lagos Nigeria Adeniyi Jones Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2038,Demolishable Corner Piece Story Building,Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2039,4 Bedroom Terrace Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2040,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +2041,Beautifully Built 5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2042,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2043,4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2044,Classic 4 Beddroom Detached Duplex With Bq,"Queen's Garden Annexii, Isheri North Gra Agidingbi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +2045,Fine Plots Of Land,Alagbado Ikeja Lagos,₦,"13,500/sqm",0,0,0, beds, baths, Toilets,Other Ikeja +2046,Land,Alausa Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2047,5 Bedrooms With Bq,Awuse Estate. Opebi Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,6 baths,6 Toilets,Opebi +2048,Hotel,Allen Round About Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2049,Block 4 Numbers 3bedroom Flats With 2numbers 2bedrooms Bungalow Bq,Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2050,Block 6numbers 3bedrooms Flats,"Beside Shopping Mall, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2051,3 Bedroom Terrace Duplex,Minimah Estate Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +2052,Land,Obafemi Awolowo Way Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2053,Prime Commercial Property,"Ipm Road, Alausa, Ikeja, Lagos Alausa Ikeja Lagos",$,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2054,Luxury 4 Units Of 3 Bedrooms Terrace Duplex,"Rev Ogunbiyi Street, Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +2055,"Distress Sale: 12,000sqm (3 Acres) Along Oba Akran Avenue, Ikeja, Lagos",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2056,"Distress Sale: 12,000 Sqm By Oba Akran Avenue, Ikeja, Lagos","By Oba Akran Avenue, Ikeja, Lagos Oba Akran Ikeja Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2057,"Prime Commercial Property In Alausa Ikeja (close To Lagos State Secretariat, Alausa)","Ipm Road, Alausa, Ikeja, Lagos Alausa Ikeja Lagos",$,"1,400,000",0,0,0, beds, baths, Toilets,Alausa +2058,"9,000sqm Plot With Commercial Property","Oregun Road (kudirat Abiola), Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2059,"New 4 Units Of Terrace Houses On 1,500sqm","Obafemi Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +2060,2 Acres Cornerpiece Bareland,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2061,"For Sale: 1,200sqm Plot Off Allen Avenue, Ikeja, Lagos, Nigeria",Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2062,"17,600sqm Plot With Demolishable Structures","Oregun Road (kudirat Abiola Way), Oregun, Ikeja, Lagos, Nigeria Oregun Ikeja Lagos",₦,"3,800,000,000",0,0,0, beds, baths, Toilets,Oregun +2063,"9,000 Sqm With 7 Bay Warehouses","Kudirat Abiola Way (oregun Road), Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2064,4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"50,000,000/month",0,1,0,0 beds,0 baths,0 Toilets,GRA +2065,Tastefully Finished 3 Bedroom Apartment,Signatoria Court Ikeja Lagos,₦,"79,990,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikeja +2066,A Newly Built 5bedroom Fully Detached Plus Bq And Swimming Pool Fitted Kitchen.,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +2067,Executive Newly Built 5 Bedroom Semidetached Duplex,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +2068,A Newly Built 4 Bedroom Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +2069,Available Land,No. 11 Ladipo Oluwale Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2070,Available Land,Ikeja Gra Ikeja Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2071,Fenced 10 Acres Of Land With 8 Bays Warehouse,Agidingbi Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2072,Hotel,Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2073,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2074,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2075,Brand New Luxury 6 Units Of 3 Bedrom Flats With A Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2076,Available Land,Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2077,Available Land,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2078,Office Block Comprising Of About 16 Flats Of 2 Bedroom & 3 Bedrooms On 5 Plots Of Land, Alausa Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2079,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2080,Available Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2081,Available Land,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2082,Available Land,Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2083,Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2084,Available Land,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2085,Available Land,Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2086,Available Land,Ikeja Gra Ikeja Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2087,Available Land,Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2088,Available Land,Adeniyi Jones Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2089,Land With Warehouse,Alausa Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2090,Available Land,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2091,760sqm Land,"Saadatu Street, Off Kudirat Abiola Way Oregun Ikeja Lagos",₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2092,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2093,Luxury 3 Bedroom Flats With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2094,Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2095,New 6 Bedroom Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +2096,Available Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2097,Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2098,Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2099,Available Land,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2100,Available Land,Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2101,Office Space,Anifowose Ikeja Lagos,₦,"4,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2102,Commercial Building,Toyin Street Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2103,Available Land,Adeniyi Jones Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2104,"Land Measuring 1,537 Square Meters",Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2105,Available Land,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2106,Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2107,Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2108,Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2109,Available Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2110,Available Land,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2111,Luxurious 3 Bedroom Flat With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2112,Available Land,"13b, Isaac John Street Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2113,Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2114,Available Land,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2115,"4 Units Of 3 Bedroom Terraced Duplex, With A Room Bq",Reverend Ogunbiyi Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +2116,Available Land,Alausa Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2117,6 Units Of 3 Bedroom Flat And Bq,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2118,A Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2119,Available Land,No.9 Ladipo Oluwale Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2120,Available Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2121,Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2122,Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2123,935sqm Fenced Land,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2124,Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2125,Available Land,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2126,Available Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2127,Available Land,Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2128,A Well Situated Parcel Of Land With A Duplex And A Bungalow,Remi Fani Kayode Rd. Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2129,4 Units Of 1bedroom Flat,Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2130,Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2131,Available Land,Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2132,Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2133,Hotel,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2134,Available Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2135,Available Land,Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2136,Available Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2137,8 Bedroom Detached House,Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,8 beds,8 baths,9 Toilets,Opebi +2138,Three Bedroom With Bq,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2139,Detached Bungalow,Oba Ladejobi Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2140,Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2141,Available Land,Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2142,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2143,Brand New 5 Bedroom Fully Detached Duplex With 1 Bq,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Other Ikeja +2144,Lovely 3 Bedroom Flat All Rooms En Suite,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,1,3 beds,3 baths,3 Toilets,Adeniyi Jones +2145,A Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2146,A Warehouse Of 2.129 Acres At Oregun Industrial Layout,Oregun Industrial Layout Alausa Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Alausa +2147,A Brand New 4 Bedroom Terrace Duplex With A Pool & Bq,It's In An Estate Off Allen Allen Avenue Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +2148,A Plot Of 497sqm Off Allenave,Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2149,A Functional Hotel At Gra Ikeja,Gra Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,1, beds, baths, Toilets,GRA +2150,Land,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2151,1100 Sqm Of Land And Property,Balogun Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2152,A Semi Detached 5bedroom Duplex At Adeniyi Jones,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +2153,A Tastefully Finished 2 Blocks Of 12 Nos Of 3bedrooms Luxury Flats With Bq Each.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000/sqm",0,0,1,3 beds,3 baths,3 Toilets,GRA +2154,A Well Finished 5bedroom Fully Detach Duplex With Bq,"Off Awolowo Road Lagoon Hospital, Ikeja Awolowo Way Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Awolowo Way +2155,"Luxury 3 Bedroom Flat/apartment With Excellent Facilities Eg Gym, Swimming Pool,",Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +2156,5 Bedroom Luxury Flat,David's Court Oregun Ikeja Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oregun +2157,430sqm With A Block Offices/apartment,"Idyalla Street Near Shoprite Alausa, Ikeja. Alausa Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Alausa +2158,4bedrooms Detached Duplex & 3bq's (corner Piece),Marwa Gardens Ikeja Lagos Ikeja Lagos,₦,"180,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +2159,"Land Measuring 24,000 Sqmts (6acres)",Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2160,"3 Bedroom Flat (4 Units) 648sqm, Fenced Round",Adeleke Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets,Allen Avenue +2161,Approximately 9000sqm,"Situated Along Kudirat Abiola Way (oregun Road), Alausa Ikeja Lagos. Alausa Ikeja Lagos",₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Alausa +2162,4 Bedroom Semi Detached Duplex And A Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +2163,"3 Bedroom Flat (4 Units) 648sqm, Fenced Round",Adeleke Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets,Allen Avenue +2164,6 Bedroom Duplex,"Nigeria Airforce Base Shasha, Ikeja Lagos",₦,"250,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikeja +2165,Office Building,Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2166,6unite Of 3bedroom Flat In Magodo Phase1,Magodo Phase1 Mangoro Ikeja Lagos,₦,"250,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Ikeja +2167,671sqm Commercial Plot,Oregun Ikeja Lagos,₦,"250,000,000/month",0,0,0, beds, baths, Toilets,Oregun +2168,"24,000 Square Meters (6 Acres)",Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2169,5+ Bay Empty Warehouse,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2170,Functional And Luxury 5star With 380 Rooms & Various Restaurant,Airport Road(ikeja) Ikeja Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Airport Road +2171,"4 Bays Of Warehouse On 15,000sqms",Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Oregun +2172,4 Star Luxury Hotel,Ikeja Lagos,₦,"11,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2173,25 Acres Land,Ikeja Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2174,2346.075sqm Land,Off Toyin Street Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2175,Warehouse,Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2176,5 Bedroom Semi Detached Duplex With 1 Bq,Off Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +2177,4 Flats Of 3 Bedroom,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2178,4bedroom Maisonette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +2179,4bedroom Maisonette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2180,Massive 2nos Of 3br Duplex And A Mini Flat Bq,Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2181,6 Plot Of Land With Registered Title In Ikaja Gra,Imeja Gra Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,GRA +2182,"5 Storey Building Purposely For Commercial With Penthouse On Allen Avenue Major Road, Ikeja Lagos",Allen Avenue Ikeja Lagos,₦,"670,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2183,3 Bedroom Duplex,Oregun Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oregun +2184,A Modern 4 Bedroom Duplex,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2185,4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +2186,Brand New Luxurious 4 Bedrooms Apartment,Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2187,Luxury 4 Star Hotel,Allen Avenue Ikeja Lagos,₦,"4,000,000,000",1,1,1,10 beds,6 baths,6 Toilets,Allen Avenue +2188,4 Bedroom Detached Duplex,M K.o/.maruw Garden Alausa Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets,Alausa +2189,A Landed Commercial Property,Street Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2190,5bedroom Semi Detech Duplex,Estate In Maryland Maryland Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Maryland +2191,4 Luxury Bedroom Duplex With Bq All Rooms Ensuite,Ikeja Gra Lagos State Nigeria Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,GRA +2192,A Functional Steel Manufacturing Company,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2193,5 Bedroom Duplex,Ogba Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikeja +2194,4 Acres Of Commercial Land,"Ajao Road, Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"2,392,500,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2195,Newly Built 5 Bedroom Duplex,Along Lagoon Hospital Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Adeniyi Jones +2196,2 Units Of 5 Bedroom Semi Detached Duplexes And A Separate One Storey Building Comprising 2 Studio Flats,"Off Salvation Road, Opebi Ikeja Lagos Opebi Ikeja Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +2197,Fully Detached Commercial Bungalow With Registered Conveyance,Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2198,Available Land,Oregun Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2199,A Cable Factory,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2200,Existing Office Complex With C Of O,Allen Avenue Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2201,Newly Built 4nos Of 4bdrm Terrace House With C Of O,Awolowo Way Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Awolowo Way +2202,Newly Built 4 Bed Room Flat,Ikelade Opebi Ikeja Lagos,₦,"200,000",0,1,0,5 beds,5 baths,2 Toilets,Opebi +2203,Newly Built And Luxury 4 Units Of 4 Bedroom Duplex With 1 Room Bq,"Off Sobo Ariobiodun Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets,GRA +2204,"Massive 4,000 Sqm Land For Mixed Development With Lag C Of O",Sobo Ariobiodun Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,GRA +2205,Brand New Luxury 16 Units Of 3 Bedrom Flats With Bq,Off Oba Akinjobi Street Ikeja Gra. Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,GRA +2206,Direct Premium Luxury 4 Bedrom Duplex With 1 Room Bq,"Off Harold Shodipo Street, Ikeja Gra Ikeja Lagos",₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +2207,Brand New Luxury Built 2 Units Of 5 Bedroom Fully Detached Duplex With 1 Room Bq,Off Sobo Ariobiodun Street Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2208,Direct Luxury 4 Bedroom Semi Detached Duplex With A Room Bq And Luxury Communal Swimming Pool,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"148,000,000",0,1,0,4 beds,4 baths,6 Toilets,GRA +2209,"Superb 1,200 Sqm Land In Beautiful Serene Neighborhood","Off Harold Shodipo Street, Off Joel Ogunaike Street Ikeja Gra With Lagos State C Of O Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,GRA +2210,Brand New Luxurious & Tastefully Finished 7 Units Of 3 Bedroom Flats,"Off Issac John Street, Off Joel Ogunaike Street. Ikeja Gra Ikeja Lagos",₦,"88,000,000",1,1,0,3 beds,4 baths,5 Toilets,GRA +2211,2 Units Of 3bedrooms Flat,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,5 Toilets,GRA +2212,"A Strategic 1,600 Sqm Commercial Land","Directly On Issac John Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +2213,Brand New Luxury 4 Bedroom Town House/mansionnette Duplx With A Room Bq,Awushe Estate Opebi Opebi Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Opebi +2214,A Corner Piece Commercial 2 Wings Of 2 Storey Building With Shops On 2 Plots,By Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +2215,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Off Sobo Ariobiodu Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +2216,An Existing Event Centre,An Existing Event Centre Directly On Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2217,Premium 4 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2218,4 Bedroom Semi Detached,Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"160,000,000/sqm",0,0,1, beds, baths, Toilets,GRA +2219,26rooms Luxuy Guest House,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"260,000,000",1,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +2220,4bedroom Semi Detached House Tastefully Finished With One Room Bq.,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2221,4 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2222,7 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"290,000,000",0,0,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +2223,3 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,GRA +2224,5befroom Semi Detached Hse,Alausa Ikeja Lagos,₦,"85,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Alausa +2225,26 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2226,5 Bedroom Semi Detached Duplex With Bq,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2227,5 Bedrooms And A Room Bq,Weara Estate Ashogbon Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2228,Land,Via Akira Estate Adeniyi Jones Ikeja Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2229,5 Bedroom Detached House,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +2230,4 Bedroom Semi Detached House,Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +2231,Property Available,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2232,4 Star Luxury Hotel,Ikeja Lagos,₦,"11,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2233,3 Bedroom Flats With One Bq Each,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2234,5 Bedroom Semi Detached House With 2rooms Bq,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +2235,7bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +2236,"4 Bedroom Detached House, With One Room Bq.",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2237,"Lovely 4,bedroom Detached House",Fanikayode Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2238,Newly Built 4bedroom Semi Detached Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +2239,5 Bedroom Detached House,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +2240,26 Standard Rooms Hotel,Obafemi Awolowo Way Ikeja Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2241,4 Bedrooms And A Room Bq,Weara Estate Ashogbon Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2242,Land,Off Kudeti Adeniyi Jones Ikeja Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2243,3 Bedroom Flat All Rooms Ensuite With One Room Bq.,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2244,"4,bedroom Detached House",Ayola Coker Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2245,5bedroom Detached House,Via Agbaku Street Opebi Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +2246,Exquisitely Finished 4 Bedroom Terrace Apartments,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2247,"A 2 Storey Building With 21 Rooms On 2 Floors,",Iyalla Street Beside Shoprite Alausa Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,10 beds,9 baths,8 Toilets,Alausa +2248,4 Bedroom Detached Duplex,Anthony Lagos Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +2249,A Block Of 4 Flat,Richfield Estate Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000/year",0,0,1,2 beds,3 baths,3 Toilets,Airport Road +2250,5 Bedroom Detached Duplex,Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Maryland +2251,6bedroom Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"190,000,000",1,1,1,6 beds,7 baths,7 Toilets,Airport Road +2252,Commercial Property Office Space,Agege Motor Road Ile Zinc Bus Stop Mangoro Ikeja Lagos,₦,"120,000,000",0,0,0,8 beds,0 baths,0 Toilets,Other Ikeja +2253,A Lovely And Nice Exquisite Well Finished 5bedroom Fully Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +2254,Newly Built Tastefully Finished En Suite 3bedroom Flat In A Serene Environment,Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds, baths, Toilets,Opebi +2255,Massive 8 Bedroom Duplex,Opebi Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +2256,18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2257,Modern Luxury 3 Bedroom Ensuite Apartment,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"81,000,000",1,1,1,3 beds,4 baths,4 Toilets,Adeniyi Jones +2258,Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2259,Property,Odudu Was Way Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,3 baths,2 Toilets,GRA +2260,C Of O For A Luxury Hotel,10 Minutes Drive From International Airport... Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +2261,Very Standard Five Bed Room Duplex With Boys Quarters,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets,GRA +2262,Three Bedroom Bungalow,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,1,3 beds,3 baths,4 Toilets,GRA +2263,112 Luxury Room Hotel,Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"6,000,000,000",0,0,1,10 beds,10 baths,10 Toilets,Allen Avenue +2264,5 Star Hotel Of 195rooms,Murtala Muhammed Expressway Airport Road(ikeja) Ikeja Lagos,$,"12,000,000",1,0,1,10 beds,10 baths,10 Toilets,Airport Road +2265,Old Building Sitting On 941sqm Land,Ipodo Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2266,Brand New 3bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2267,Well Maintained (6) Units Of 3 Bedroom & (3) Units Of 2 Bedroom Flat,Ogba Oba Akran Ikeja Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +2268,Two Wings Of 5 Bedroom Corner Piece Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,4 baths,4 Toilets,Adeniyi Jones +2269,Two Wings 5 Bedroom Corner Piece Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,4 baths,4 Toilets,Adeniyi Jones +2270,100% Dry Land Along Alausa Ikeja/ Berger Road For Buy And Build With A C Of O,Rose Choice Garden Ikeja Lagos,₦,"15,000,000/day",0,0,0, beds, baths, Toilets,Other Ikeja +2271,3 Bedroom Flat Apartment,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,4 baths,4 Toilets,GRA +2272,2&3 Bedroom Apartments In New Premium Mini Estate,Allen Avenue Ikeja Lagos,₦,"49,000,000",1,1,0,2 beds,2 baths,3 Toilets,Allen Avenue +2273,Luxury 3 Bedroom Flat,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Awolowo Way +2274,4 Bedrooms Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths, Toilets,GRA +2275,Newly Built 5bedrooms Detached House With A Rm Bq In Ikeja Gra For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +2276,5100 Square Metres Of Land With A Building On It,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,GRA +2277,Newly Built Tastefully Finished 5 Bedrooms Fully Detached House With A Rm Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,4 baths,0 Toilets,GRA +2278,8 Bedroom Fully Detached Duplex For Sale And Lease,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets,GRA +2279,Newly Built 4bedrooms Town House With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +2280,Fenced Bare Land,Commercial Neighborhood Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2281,Prestige Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets,GRA +2282,Tastefully Finished 5 Bedrooms Detached Duplex With A Room Bq And A Pool,Off Isaac John Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +2283,5 Bedroom Semi Detached Terrace Houses (serviced) For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,GRA +2284,Newly Built 4bedrooms Terrace With A Rm Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +2285,Newly Built 4 Bedroom Terrace With A Room Bq In A Serviced Estate,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +2286,Newly Built 4bedrooms Terrace With A Rm Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +2287,Newly Built 3 Bedroom Flat With A Room Boys Quarter,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,1,1,3 beds,3 baths,3 Toilets,GRA +2288,Newly Built 4bedrooms Semi Detached Duplex With Room Bq In Ikeja Gra,Off Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +2289,Newly Built 4 Bedroom Terrace Carcass With A Room Bq,Off Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"91,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +2290,4 Units Of 4 Bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +2291,Available Land,Adeniyi Jones Ikeja Lagos,₦,"2,380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2292,Available Land,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2293,Fairly Used Four Bedroom Semi Detached Duplex All Rooms Ensuite One Too With Bq,Gra Ikeja Off Ayoola Coker Street Ikeja Gra Ikeja Lagos,₦,"145,000,000/year",0,0,1,4 beds,4 baths,5 Toilets,GRA +2294,Off Plan Contemporary 2 Bedroom Apartment,Musa Akor Close Allen Avenue Ikeja Lagos,₦,"49,612,500",1,1,0,2 beds,2 baths,3 Toilets,Allen Avenue +2295,"On Going Project Very Luxurious 4bedroom Duplex With Pool,2kitchens,gym,3living Rooms,laundry,pantry,& Private Garage",Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets,GRA +2296,Newly Built Luxurious Spacious 4 Bedroom Condo Duplex With Bq,Opebi Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Opebi +2297,Newly Built 8 Units Of 5 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2298,Newly Built 8 Units Of 5 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2299,The Best Western Plus Hostel,"Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"5,050,050,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2300,3.1 Acres Of Dry & Fenced Land In A Prime Area,Oba Akran Oba Akran Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2301,Dry Land In A Prime Area,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2302,5 Bedroom House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +2303,4 Units Of 3 Bedroom Luxury Apartments With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +2304,3bedroom Luxury Apartments With Swimming Pool,Z Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +2305,Brand New 5bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2306,Luxury 3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"67,500,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +2307,Brand New 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2308,3units Of Newly Built 4bedroom Semi Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2309,4bedroom Semi Detached Duplex With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2310,Brand New 4bedroom Fully Detached House With A Room,Off Allen Avenue Opebi Rd Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +2311,3bedroom Fully Detached House With A Room Bq,Off Allen Opebi Rd. Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +2312,4 Units Of Brand New 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2313,2 Plots Of Land With C Of O,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2314,Lovely 4 Bedroom Semi Detached Duplex With Bq With Modern Facilities,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets,GRA +2315,Hotel On 2 Floors By Shoprite Alausa Ikeja,By Shoprite Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Alausa +2316,Serviced 4 Units 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"480,000,000",0,0,0,4 beds,5 baths,6 Toilets,GRA +2317,Bare Land Measuring 500sqm,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"370,000/sqm",0,0,0, beds, baths, Toilets,GRA +2318,Available Land,7mins Drive From Alausa Mangoro Ikeja Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2319,4 Bedroom Duplex With 2 Rooms Bq,Maruwa Garden Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,6 baths,7 Toilets,Allen Avenue +2320,Two And Half Acres Of Land With C Of O,Opposite Shoprite Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2321,Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,Palmgrove Estate Opebi Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +2322,4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2323,Land Measuring 1890sqm,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2324,Land Measuring 1840sqm At Oba Ladejobi,Oba Ladejobi Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,GRA +2325,A Block Of 12 Flats Of 3 Bedrooms Each,Ikeja Gra Ikeja Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +2326,2 Units Of 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2327,6 Bedroom Detached Duplex,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets,GRA +2328,"Land Measuring 640sqm At Gra, Ikeja","Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets,GRA +2329,Land Measuring 3900sqm, Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2330,5 Bedroom Detached Duplex With Swimming Pool,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2331,3 Bedroom Flat,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +2332,A Block Of 12 Flats,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +2333,4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,GRA +2334,Selling: 4 Bedroom Semi Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2335,Selling: 4 Bedroom Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2336,Plots Of Land Measuring 500sqm Each, Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2337,Land Measuring 779sqm,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"280,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2338,Land Measuring 500sqm,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2339,Land Measuring 700sqm,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2340,"Fully Fenced Land Measuring 4500sqm At Gra, Ikeja",Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,GRA +2341,4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2342,Fenced Land Measuring 6000sqm,Ikeja Gra Ikeja Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2343,4 Stars Hotel,Ikeja Allen Avenue Ikeja Lagos,$,"5,500,000,000",1,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +2344,5 Bedroom Detached Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"350,000,000/sqm",0,1,1,6 beds,7 baths,7 Toilets,GRA +2345,Commercial Land,Joel Ogunnaike Street Gra Ikeja. Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2346,Multiple Bay Warehouses With Offices & Big Open Space,Agidingbi Ikeja Lagos,₦,"700,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2347,A Bay Warehouse On 5.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2348,Mega Filling Station,Abeokuta Express Way Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2349,Multiple Bay Warehouses With Office Building & Staff Quarters,Oba Akran Ikeja Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2350,4units Of 3bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"500,000,000/year",1,1,1,3 beds,3 baths,4 Toilets,GRA +2351,Gra Blocks Of 3 Bedrooms Flat With A Room Bq,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +2352,(2) Two Storey Commercial Office Building,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2353,8 Flats 3 Bedroom,Awuse Estate Opebi Ikeja Lagos,₦,"440,000,000/sqm",0,1,0,10 beds,0 baths,0 Toilets,Opebi +2354,"Block Of 6 Flats Of 3 Bedrooms At Allen Avenue, Ikeja",Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000/sqm",0,0,0, beds,10 baths, Toilets,Allen Avenue +2355,Well Kept 4 Flats Of 3 Bedrooms,Awuse Estate Opebi Ikeja Lagos,₦,"140,000,000/sqm",0,0,0,10 beds,0 baths,0 Toilets,Opebi +2356,Land,Opposite Gra Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2357,4 Units Of 3 Bedrooms Flat,Off Mobolaji Bank Anthony Way Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2358,3 Bedroom Apartment,Off College Road Ogba Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +2359,32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2360,Plastic & Hair Attachment Manufacturing /recycling Factory,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2361,Land,Ojodu Berger Express Way Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2362,"A Massive House That Has 3bedroom Duplex ,4bedroom Flats And Two Self Contain Attached To The Duplex With 3bed At The Back.",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +2363,4 Bedroom Terrace,Mko Gardens Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,3 Toilets,Alausa +2364,Petrol Station, Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2365,5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2366,Filling Station,Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2367,Available 24 Plots,Agidingbi Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2368,Filling Station,Alausa Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2369,2 Wings Of 5 Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +2370,4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2371,6 Bedroom Fully Detached Duplex,Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets,Awolowo Way +2372,6 Bedroom Twin Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2373,Land,Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2374,Newly Built 5 Bedroom Semi Detached Duplexes,Akinwumi Estate Mende Maryland Ikeja Maryland Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Maryland +2375,Luxury 4 Bedroom Terrace Duplex Tastefully Finished, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2376,Petrol Station, Ikeja Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2377,Filling Station,Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2378,2 Storey Building Hotel Of 26 Rooms,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2379,2 Plot Of Land,Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2380,4 Bedroom Detached Duplex And 2 Bedrooms Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +2381,"Warehouse On 12,000sqmt Land",Ikeja Along Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +2382,6 Bedroom Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikeja +2383,6 Unit Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2384,Petrol Station,Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2385,5 Bedroom Detached Duplex With A Bq,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +2386,Mini Estate With 12 Units Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2387,15 Plots Of Land,Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2388,3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2389,A Block Of 4 Numbers Of 3 Bedroom Flat,Apata Street Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2390,2 Storey Building,Maryland Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +2391,Landed Commercial Property,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2392,Newly Built 7numbers 4bedroom Terrace Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2393,Executive And Beautiful 2 Bedroom Flat,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,1,2 beds,3 baths,3 Toilets,Adeniyi Jones +2394,7 Bedroom Detached House,Salvation Rd. Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,Opebi +2395,4 Bedrooms Semi Detached Duplex + A Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2396,2 Wing 5bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2397,Newly Built 5bedroom Detach Duplex,Omole Phase One 1 Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Omole +2398,Hot Joint Venture,Off Sobo Aribiodun Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2399,4 Bedroom Detached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2400,Fully Detached Of 4 Bedrooms Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2401,7 Bedroom Fully Detached Mansion With Underground Packing Space With Swimming Pool An Open Terrace Space House.with Bq,Ikaja.gra Well Gatted And Secure Environment Ikeja Gra Ikeja Lagos,₦,"690,000,000",0,0,0,7 beds, baths, Toilets,GRA +2402,Available Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2403,4 Bedroom Semi Detached,Omole Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Omole +2404,Four(4) Bedroom Fully Detached Duplex With Bq,"Cornerstone Estate, Opposite Mko Gardens Alausa Ikeja Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2405,2 Wings Of 5bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2406,Land Measuring 750 Sqm,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2407,6 Units Of 3 Bedrooms Flats,Alausa Ikeja Lagos,₦,"230,000,000",0,0,0,3 beds,0 baths,0 Toilets,Alausa +2408,5bed Fully Detached Duplex,Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Awolowo Way +2409,Newly Built 5bedroom Detach Duplex Wth Bq,Omole.phade 2 Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Omole +2410,Joint Venture Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2411,800ssq Of Land,Off Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2412,A 2500sqm Land Size,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2413,5bedroom Duplex Plus I Room Bq,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +2414,4 Bedroom Terrace Duplex With Bq .,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2415,Shopping Complex,Opebi Near Salvation Street Ikeja Lagos With C Of O Title And Other Amenities Opebi Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2416,5 Bed,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,GRA +2417,Newly Built Smart Massive 7 Bedroom Mansion,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +2418,"A Plot Of Land Fence And Gated At Cocosheen Street Off Ogunmodede Street,allen Bus Stop Ikeja",Allen Avenue Ikeja Lagos,₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets,Allen Avenue +2419,A Parcel Of Land Squarely And With Sound Topography Within A Serene Neighborhood,"Location: In An Estate, Off Adeniyi Jones, Ikeja, Lagos* *land Size: 1,400sqm* Adeniyi Jones Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2420,Newly Built 5 Bedroom Duplex+2 Servant Room With Proposed Swimming Pool On 550sqm Land, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +2421,4 Bed,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets,GRA +2422,Warehouse,Oba Akran Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2423,Preskan Hotel & Suits,Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,0 baths,0 Toilets,Airport Road +2424,Joint Venture In An Estate Opposite Omole Phase 1,Omole Phase 2 Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +2425,Hotel/ Short Let Apartments,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2426,"4 Bedroom Detached House, Plus 1bedroom Bq",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2427,Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikeja +2428,Newly Built 5bedroom Detach Duplex With Bq,Omole Phase One Ikeja Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agidingbi +2429,"Grand, Serene Fully Detached Five Bedrooom Duplex",Ikeja. Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,GRA +2430,Easton Towers Estate,Peace Estate Maryland. Maryland Ikeja Lagos,₦,"50,000,000",1,0,0,0 beds,0 baths,0 Toilets,Maryland +2431,4bedroom Terrace,Off Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds,5 baths,4 Toilets,GRA +2432,6 Storey Office Building For Sale At Oba Akran Avenue Ikeja,Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2433,Parcel Of Land Measuring Approximately 4189.29sqm Suitable For Commercial Purpose At Opebi Road Ikeja Lagos. Engi.,Opebi Road Ikeja Lagos Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +2434,8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +2435,School Building,Mangoro Mangoro Ikeja Lagos,₦,"265,000,000",0,0,1,4 beds,6 baths,5 Toilets,Other Ikeja +2436,3 Acres Of Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2437,A Foreign Functional Construction Company,Ikeja Lagos,$,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2438,4 Bed Room Fully Detach Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +2439,5 Bed Room Fully Detach Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,0,5 beds, baths, Toilets,GRA +2440,9 Floor Of A Commercial Building,Allen Avenue Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2441,5 Bedroom Fully Detach Duplex,.. Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2442,4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +2443,5 Bed Room Fully Detach Duplex,Opebi Ikeja Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets,Opebi +2444,5 Bedroom Fully Detached Duplex, Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +2445,Furnished 1 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,1 Toilets,Allen Avenue +2446,Tastefully Finished 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2447,3 Bedroom Luxury Apartment + Maid Room,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Adeniyi Jones +2448,5400sqm Land,Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2449,Available Land,New International Airport Ikeja Lagos,₦,"1,850,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +2450,A 1300sqms Land With A Demolishable Structure,Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2451,"5 Storey Building Of Office Space And Show Rooms Sitting On 2,225 Sqm With C Of O",Opebi Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Opebi +2452,Land,Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2453,Commercial Building For Sale In Ikeja,Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2454,Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2455,Sale Or Lease Of Land,Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2456,4 Units Of 3 Bedroom Flat,Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +2457,"Jv Land Off Allen Avenue, 4008sqm,",Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2458,Land,Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2459,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2460,2 And Half Plot Land,Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2461,5200sqmgra Land,X Ikeja Gra Ikeja Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2462,Twin Duplex,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2463,(4 Units) 4 Bedroom Terraced House In A Serene Gated Estate,Moa Gardens Adeyeri Estate Ogba Ikeja Lagos Nigeria Ikeja Lagos,₦,"33,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikeja +2464,9517.06sqm Ikeja Empty Land,S Agidingbi Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2465,"Jv Land Of 9.44 Acres, At International Airport Road Ikeja",Airport Road(ikeja) Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +2466,"Alausa Ikeja Land ,2200sqm Corner Piece Land",Alausa Ikeja Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Alausa +2467,7100sqm Corner Piece Land,E Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2468,1965sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +2469,5000sqm Jv Land,Billings Way Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2470,5bedroom Detached Duplex With Bq,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +2471,A Detached House Of 6 Bedroom Plus Bq,Oladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"350,000,000/year",1,0,1,6 beds,6 baths,5 Toilets,GRA +2472,Newly Built 4bedroom Terrace Duplex With Bq In A Serene Environment,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2473,3 Bedroom Duplex With Automatic Gate,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +2474,5bedroom Detached House With Bq,"Omofade Crescent, Omole Phase 1 Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Omole +2475,4 Units Of 3 Bedroom Flat With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2476,Brand New 3 Bedroom Flat With Pool And Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,0 beds,0 baths,0 Toilets,GRA +2477,Fine Plots Of Land,Queen’s Park Estate Mowe Ofada Ikeja Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Other Ikeja +2478,Units Of 2 And 3 Bedroom Apartment,"Isheri North, G.r. Ikeja Lagos",₦,"23,500,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +2479,Fine Plots Of Land,Maravillas Estate Alausa Ikeja Lagos,₦,"9,600,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2480,Fine Plots Of Land,"By Isheri North Gra, Opic Ikeja Lagos",₦,"9,600,000",0,0,0, beds, baths, Toilets,Other Ikeja +2481,"Luxury Serviced Land Few Minutes Away From The Intl Airport & Sheraton, Maryland, Ikeja",Maryland Ikeja Lagos,₦,"32,000,000",1,0,0, beds, baths, Toilets,Maryland +2482,Rent To Own Made Easy, Adeniyi Jones Ikeja Lagos,₦,"49,900,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2483,5 Bedrooms Fully Detached Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,5 baths,6 Toilets,Agidingbi +2484,A Very Lovely 4 Bedroom Semi Detached Duplex With A Pent House,Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2485,"New Modern 5 Bedroom Detached Duplex With 2 Room Bq, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2486,3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Adeniyi Jones +2487,32 Rooms Hotel,Gra Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets,GRA +2488,6 Bedroom Fully Detached Duplex On 1062sqm Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,0 Toilets,GRA +2489,4 Bedroom Duplex,Oba Dosumu St Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +2490,3 Bedroom Luxury Apartment,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2491,5 Bedrooms Semi Detached Duplex For N100m Each,Estate Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2492,Newly Built 6 Bedroom Duplex With Bq In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +2493,A Block Of 8 Bedrooms And Bqs On Over 700sqm,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,8 beds,8 baths,9 Toilets,Allen Avenue +2494,Office Complex,Off Unity Road Unity Road Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Airport Road +2495,Newly Built 6 Bedroom Duplex With Bq In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +2496,Luxurious 5 Bedroom Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",1,0,1,5 beds,6 baths,6 Toilets,GRA +2497,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2498,"An Office Complex On Five Floors And A Penthouse Along Allen Avenue, Ikeja, Lagos",Allen Avenue Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2499,"A Large Parcel Of Land The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2500,"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, Directly On Opebi Road, Ikeja, Lagos.land Size: 2225.265 Square Meters",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +2501,1250 Directly Along Joel Ogunaike Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,GRA +2502,Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex Plus Gatehouse. This Property Is Sitting On A Land Measuring 908 Square Meters With A Registered Conveyance As Title Documents. Property Is Located Slightly,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2503,"Commercial Property Suitable For Supermarket, Shopping And Office Complex", Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2504,"Industrial Warehouses. With Office On 14,acres Of Land (56,035m2)",Ikeja Lagos,₦,"7,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2505,"A Large Parcel Of Land. The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2506,4 Bedroom Detached Houses In Ikeja,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets,GRA +2507,Commercial Building On 5 Floors Measuring 100 Square Meters Per Floor,Allen Avenue Ikeja Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2508,"Redevelopable Property Strategically Located Along Awolowo Way, Few Minutes Before Ikeja Bus Stop 671 Square Meters",Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2509,"A Bay Warehouse And A Block Of 6 Flats. Land Size: 9,312 Sqm",D Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2510,"3750sqm Land Directly On Oba Akinjobi Way (high Density Area) With Gov.consent,",Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,GRA +2511,The Property Is 6 Units Of 3 En Suite Bedroom Apartments With A Bq Each,Magodo Shangisha Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets,Other Ikeja +2512,5 Bedrooms Duplex On 340sq Of Land,Magodo Shangisha Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +2513,3 Bedroom Flat With Bq, Ikeja Gra Ikeja Lagos,₦,"59,200,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2514,"5,000sqm Land",S Ikeja Gra Ikeja Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2515,3 Bay Warehouse At Oba Akran Ikeja,Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2516,4 Bed Fully Detached Duplex With Bq,Magodo Phase 2 Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,Omole +2517,"Two Well Located Vacant Contiguous Properties, The First Is A Dilapidated Twin Duplex With Bq And The Other Is A Detached Bungalow. Each Sits On 1,200 M2 Land Directly On Ladipo Oluwole Street Off Adeniyi Jones Avenue",Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2518,9 Bedroom Fully Detached House With Swimming Pool Cinema And Gym,Ikeja Gra Ikeja Lagos,₦,"635,000,000",0,0,0,8 beds, baths, Toilets,GRA +2519,"12,000 Square Meters (3 Acres)",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2520,"1,442sqm Plot On A Cool Close In An Estate",Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2521,4 Bedroom Semi Detached With Bq At Ikeja,Awolowo Way Ikeja Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets,Awolowo Way +2522,"Fenced Land Of About 1200 Square Meters For Sale At Arowojobe Estate, Also Known As Greenland Estate, Maryland.",Maryland Ikeja Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets,Maryland +2523,2 Units Of Newly Built Tasteful 5 Bedrooms Semi Detached Duplex With Bq,X Maryland Ikeja Lagos,₦,"89,000,000",0,0,0,5 beds,0 baths,0 Toilets,Maryland +2524,4 Acres Of Land On Lateef Jakande Road Agidingbi Ikeja* Is Available For Sale,Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Agidingbi +2525,Newly Built Luxuriously Finished 6 Units Of 4 Bedroom Detached Duplexes Plus A Room Bq Each,Okupe Estate Maryland Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Maryland +2526,"Redevelopable Mixed Development Property Is Available For Sale.off Salvation Road, Opebi Ikeja Lagos",Opebi Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Opebi +2527, 4 Bedroom Detached Houses In Ikeja,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets,GRA +2528,Newly Built Luxuriously Finished 2 Units 4 Bedroom Semi Detached Duplexes + A Room B.q, Ikeja Gra Ikeja Lagos,₦,"598,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2529,New 3 Bedroom Flat With Bq,Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agidingbi +2530,5 Bedroom Detached House With 3 Rooms Service Quarters On 1600 Square Meters Of Land,Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,5 beds, baths, Toilets,GRA +2531,"1,250sqm On Joel Ogunaike Street Gra Ikeja",Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,GRA +2532,"4 Star Luxury Hotel Situated At, Ikeja, Lagos Nigeria.",Ikeja Lagos,$,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2533,33 Room Hotel Functional,Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2534,"18,759.48 Square Meters Land",Ladipo Oluwole Street Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2535,1800sqm Land With Building On It At Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,GRA +2536,"A Massive Commercial Building Of 8 Floors Strategically Located On *allen Avenue, Ikeja*. Property Has Ample Parking Space And Adequate Security.",Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0,8 beds, baths, Toilets,Allen Avenue +2537,111 Room Fully Functional Hotel On 4000sqm,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2538,"Office Complex On Three Floors On About 780sqm Land With Ampleparking Space At Mobolaji Bank Anthony Way, Maryland",Mobolaji Bank Anthony Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2539,"Hotel"" Comprising Of 57 Bedrooms Hotel, With 30 Seater Restaurant, Expansive Lounging Area, 150 Seater Conference Hall, Swimming And Gym",Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2540,Fully Furnished 6 Bedroom Detach Duplex In Isheri Magodo*40kva Generator.,Magodo Isheri Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds, baths, Toilets,Other Ikeja +2541,"Industrial Property On 4.6 Acres Nested Within Ikeja Industrial Area, 18.759.48sqm (over 4.6 Acres Of Land)",Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2542,"Warehouses With Offices On 7½ Acres Of Land (30,048m2)with C Of O",Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2543,"Dry Corner Piece Bareland Measuring 12000 Square Meters (3 Acres) Along The Ever Busy Oba Akran Avenue, Ikeja Lagos.",Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2544,Industrial Property On 4.6 Acres 18.759.48sqm (over 4.6 Acres Of Land),Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2545,"Industrial Warehouse, 6 Nos Of 3bedroom Flat, Factory Shed, Store House, Generator House, Canteen/convenient Building And 2 Nos 3bedroom Semi Detached Bungalows On 9,000sqm. C Of O",Kudirat Abiola Way Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2546,Newly Built Luxuriously Finished 6 Units Of 4 Bedroom Detached Duplexes Plus A Room Bq Each, Maryland Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +2547,"5 Bedroom Mansion With 1 Room Bq With An Olympic Sized Swimming Pool And 4 Units Of 3 Bedroom Flat On 1860sqm Of Land Location:herbert Macaulay Street,ikeja G.r.a",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,6 beds, baths, Toilets,GRA +2548,"A Commercial Building On 3 Floors With Total Land Area Of 600sqm At Adebayo Akannde Street Off Kudirat Abiola Way And Off Billings Way, Oregun",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Oregun +2549,3 Bay Warehouse At Ikeja Oba Akran,Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2550,4bedroom Terrace Duplex On 3floors + Bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"99,500,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2551,5 Units Of 3 Bedroom Flat In A Good And Gated Street In Oregun Ikeja Is Out For Sale,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Oregun +2552,"Massive 6 Bedrooms Fully Detached Houseland Measuring 1,200 Square Metres",Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Airport Road +2553,Block Of 4 Nos Of 3b/r Flats,Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2554,A Redevelopable Mixed Development Property Is Available For Sale.,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds, baths, Toilets,Opebi +2555,3 Bedroom New Terrace,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets,Allen Avenue +2556,Fully Detached Duplex With Bq And 5 Bedroom At Ikeja,Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Other Ikeja +2557,Brand New 4 Bedroom Semi Detached Duplex With Penthouse And 1 Bq,Ikeja Gra Ikeja Lagos,₦,"148,500,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2558,816sqm Mixed Use Land With Old Building On It,Ikeja Gra Ikeja Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,GRA +2559,Tastefully Built* And *spacious* 4 Bedroom Semi Detached Duplex At Magodo Phase One,Magodo Phase 1 Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Omole +2560,"Newly Built 4nos 4bedroom Terrace Houses With An Ample Parking Space, Pop Finishes And All Ensuite Spacious Rooms.",Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2561,2 Acres Directly On Oregun Road.title: Registered Conveyance.,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2562,7 Nos. 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"248,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2563,7bedroom Fully Detached Duplex + 2 Rooms Bq On 792.609sqm Land,Harmony Enclave Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,0 baths,0 Toilets,Adeniyi Jones +2564,"Brand New Luxuriously Finished 4 Units Of 4 Bedroom Triplex With Ample Parking Space In Anthony, Maryland, Lagos",Anthony Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Maryland +2565,4 Bedroom Fully Detached Duplex With Bq,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"138,000,000",0,1,0,4 beds, baths, Toilets,Awolowo Way +2566,5 Bedroom Fully Detached Duplex With Gym & Pool In Magodo Shangisha On 487sqm. At Magodo Shangisha,Magodo Shangisha Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets,Other Ikeja +2567,Blocks Of 3 Bedroom Flat With A Bq, Ikeja Gra Ikeja Lagos,₦,"89,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2568,"32 Units Of 4 Bedroom And 1 Room Bq Luxury Terrace Houses, Ante Room, Massive Family Living Room, Generous Kitchen And Palatial Master Bedroom And Rooms On 6300sqm",G Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2569,3 Plots With C Of O At Ooebi Ikeja,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Opebi +2570,"Super Luxury Massive 7 Bedroom Detached Smart House With 4 Sitting Rooms And Underground Swimming,2 Room Bq And Spacious Parking Lot", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +2571,"A Fenced And Gated 2.6 Acres (approximately 9,000sqm) Land Along The Ever Busy Kudirat Abiola Way (oregun Road), Ikeja Lagos Nigeria.",Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2572,Commercial Building,Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2573,"Industrial Warehouses. With Office On 14,acres Of Land (56,035m2) On *acme Road",Acme Road Ikeja Lagos,₦,"7,800,000,000",0,0,0, beds, baths, Toilets,Airport Road +2574,A Massive Commercial Building Of 8 Floors Strategically Located,R Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2575,"1,442sqm Plot On A Cool Close In An Estate",Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2576,"An Office Complex On Four Floors With A Pent House At Anifowose, Off Awolowo Way, Ikeja, Lagos",Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2577,"A Large Parcel Of Land . The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2578,5 Bedroom Fully Detached Duplex With Bq,Magodo Shangisha Ikeja Lagos,₦,"184,000,000",0,0,0,5 beds, baths, Toilets,Other Ikeja +2579,2 Units Of Newly Built And Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Maryland +2580,5 Bedrooms Detached House With 2 Rooms Service Quarters. Land Size: 610 Square Meters,Opebi Ikeja Lagos,₦,"94,000,000",0,0,0,5 beds, baths, Toilets,Opebi +2581,"Warehouses With Offices On 7½ Acres Of Land (30,048m2)with C Of O",E Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2582,5 Bedroom Fully Detached Duplex With Swimming Pool,Magodo Phase 2 Shangisha Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +2583,"Bareland Measuring 18,275.809sqm (price Per Sqm)",Ajao Estate Road Ikeja Lagos,₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +2584,Commercial Property,Ikeja Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2585,Newly Built 5bedroom Fully Detached Duplex Plus Boys Quarter @ Magodo 2 3 Units Available,Magodo Phase 2 Ikeja Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets,Omole +2586,10000sqm Land Along Billings Way,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2587,3 Acres Location. Oba Akran Title Cofo,Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2588,500 Sqm At Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,GRA +2589,"(24) Units Of Apartments, Which Comprises Six (6) Units Of Three (3) Bedroom Apartments With A Room Bq (each) Per Block (four Blocks In Total).",Ajao Estate Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2590,Redevelopable Property On 994square Meter Land.,Ogunlana Street Allen Avenue Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2591,"Bare Land Measuring 1,200sqm (fenced) In A Secured Gated Estate",Joel Ogunaike Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"445,000,000",0,0,0, beds, baths, Toilets,GRA +2592,"2 Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs, Swimming Pool, Remote Gate, Etc.",Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +2593,"New 4 Bedroom Townhouse With A Room Bq.location: , Ikeja Gra.",Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Other Ikeja +2594,"Lovely 4 Bedrooms Fully Detached Duplex With A Room Bq Is Located In A Very Secured Estate And Features Spacious Compound, Stamped Concrete Floor, Spacious Living Room And Family Lounge, Dining Area, All Rooms En Suite, Fully Fitted Kitchen, Spacious Mast",Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Omole +2595,900sqm Land With Detached House On It,Shonibare Estate Maryland Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +2596,"10 Luxury Homes Made Up Of Maisonettes, Apartments And Penthouses",Shonibare Estate Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,GRA +2597,1200sqm Fenced Land For Sale At Arowojobe Estate (greenland Estate) Maryland*,Maryland Ikeja Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets,Maryland +2598,4 Nos Of 3 Bedroom Duplex Semi Detached House. Can Park 3 Cars Each. Off Salvation Road Opebi 90% Remaining Sanitary Wares & Compound Flooring.,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Opebi +2599,Four Units Of Tastefully Finished 4 Bedroom Terraces With Modern Fittings At Ikeja,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,GRA +2600,4 Bedroom Semi Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Omole +2601,"*5 Bedroom Detached Duplex With Swimming Pool And Cinema, Study And Box Room For Sale In Omole Phase 1 Ikeja*",Omole Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Omole +2602,4 Bedroom Luxury Maisonette, Ikeja Gra Ikeja Lagos,₦,"81,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2603,"4 Bays Warehouses, 3 Floors Residential Block, Gate House And Generator House On 6,639sqm",Ikeja Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2604,Prime Industrial Property On 2 Acres,Ebutte Metta Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2605,"3 Bay Warehouses, Office/admin Building, Stores, Workshop, Gatehouse/reception, Drivers Lodge, Changing Rooms, Conveniences, Generator Houses And Other Ancillary Buildings.","Off Ladipo Oluwole Street, Off Oba Akran / Adeniyi Jones, Ikeja Oba Akran Ikeja Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2606,Semi Detached House With Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2607,"An Office Complex On Five Floors And A Penthouse With Dedicated Transformer, Elevator, Generating Sets, Ample Parking Space Etc.",Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2608,Hotel For Sale At Ikeja 5 Star Quality,Alausa Ikeja Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Alausa +2609,Tastefully Built* And *spacious* 4 Bedroom Semi Detached Duplex At Magodo Phase One,Magodo Phase 1 Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Omole +2610,"Hotel In Ikeja 111 Room On 4,000+ Sqm Pric",Ikeja Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2611,Four Units Of Tastefully Finished 4 Bedroom Terraces With Modern Fittings At Ikeja,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,GRA +2612,9 Bedrooms Detached House, Ikeja Gra Ikeja Lagos,₦,"640,000,000",0,0,0,9 beds,0 baths,0 Toilets,GRA +2613,"3 Bay Warehouses, Office/admin Building, Stores, Workshop, Gatehouse/reception, Drivers Lodge, Changing Rooms,18,759.48 Square Meters Land.","Off Ladipo Oluwole Street, Off Oba Akran / Adeniyi Jones, Ikeja Lagos Ikeja Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2614,"Event Center That Can Seat 800 People With Offices And Extra Mini Hall On 2,000sqm With Ample Parking Space That Can Park 40 Cars",Ikeja Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2615,"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, And All Sitting On 2225.265sqm Land Area.",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +2616,4 Bed Semi Detached Duplex,Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Maryland +2617,"A Massive Commercial Building Of 8 Floors Strategically Located On *allen Avenue, Ikeja*. Property Has Ample Parking Space And Adequate Security.",Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0,8 beds, baths, Toilets,Allen Avenue +2618,"Two (2) Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs, Swimming Pool, Remote Gate,",S Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +2619,5bed Semi Detached Duplex,Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds, baths, Toilets,Maryland +2620,"Land Area Of Approximately 20,760 Square Metres Industrial Land With Sundry Developments",Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2621,2250 Square Meters (more On Ground) Commercial Property Suitable & Ideal For A Resort,Magodo Phase 2 Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +2622,Newly Built 3 Bedroom Flat With Bq,Maryland Ikeja Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets,Maryland +2623,Storey Building At A Strategic Location( Suitable For Commercial Purposes),Computer Village Ikeja Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2624,"17,000sqm (5acres)",Adeniyi Jones Ikeja Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2625,Redevelopable Detached Property Sitting On 3000 Square Meters Land In A Prime Area Off Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2626,4000sqm Commercial Land In The Heart Of The Central Business District Alausa,Alausa Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Alausa +2627,Brand New 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"53,000,000",0,0,0,3 beds, baths, Toilets,Opebi +2628,2 Wings 5bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2629,"Land Measuring *5400sqm Corner (piece Land) On Awolowo Way Ikeja, Opposite Airport Hotel Ikeja* Is Available For Sale",Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2630,Prime Land 1000sqm At Lateef Jakande Ikeja,Lateef Jakande Omole Land Agidingbi Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Agidingbi +2631,A Newly Built 5bedm Fully Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Omole +2632,"One Acre Maryland, Ikeja, Lagos.few Mins Away From Muritala Muhammad International Airport.",Maryland Ikeja Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Maryland +2633,"Very Big Detached Duplex Of Land Size: 1080 Square Meters 6 Bedroom And 2 Units Of 2 Bedroom Apartments (bq) Behind With Swimming Pool, Ample Parking, Gatehouse, Etc.",Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,GRA +2634,4 Bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets,GRA +2635,".superb Finished 5 Bedroom Detached Luxury House With 2 Room Bq On 1,000m2 Land",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds, baths, Toilets,GRA +2636,2units Of 5bedroom Semi Detached Duplexes And A Fully Detached 5bedroom Duplex Can Park 9 Cars,Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +2637,A 1000sqm Land With A Demolish Able Structure,S Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2638,"20,000 Sqm Land",Ajao Road Adeniyi Jones Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2639,7 Bedroom Detached House With 2 Sitting Rooms (all Rooms En Suite) With An Open Terrace Up With A Room Bq Sitting On 1500m2 Land,D Adeniyi Jones Ikeja Lagos,₦,"295,000,000",0,0,0,7 beds,0 baths,0 Toilets,Adeniyi Jones +2640,610 Square Meters5 Bedrooms Detached House With 2 Rooms Service Quarters.,Opebi Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Opebi +2641,Redevelopable Mixed Development Property With A Land Size Of 601.751 Square Meters, Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2642,"Super Luxury Massive 7 Bedroom Detached Smart House With 4 Sitting Rooms And Underground Swimming,2 Room Bq And Spacious Parking Lot", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +2643,"A Large Parcel Of Land. The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2644,4 Bedroom Terrace In A Mini Serviced Estate,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2645,"A Very Big Detached Duplex On 1080sqm Land Of 6 Bedroom And 2 Units Of 2 Bedroom Apartments (bq) Behind With Swimming Pool, Ample Parking, Gatehouse, Etc",Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,GRA +2646,Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex Plus Gatehouse. This Property Is Sitting On A Land Measuring 908 Square Meters With A Registered Conveyance As Title Documents. Property Is Located Slightly,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2647,"2 Wings Of 4 Floor Building With Tennated Flats, Offices, Boys Quaters And Other Structures. Land Space : 1,698.388sq.m",Allen Avenue Ikeja Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2648,"7 Bays Empty Warehouses Approximately 9000 Square Meters With Admini Blocks Suitable For Redevelopment To Shopping Mall, Event Center, Corporate Headquarters, Church.",Kudirat Abiola Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2649,"Office Complex On 4floors (open Plan Floor) Off Kudirat Abiola Way, Oregun.",Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oregun +2650,Fully Functional 32 Room Hotel On 2000sqm In Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,10 beds, baths, Toilets,GRA +2651,"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, Is Available For Sale. Land Size: 2225.265 Square Meters",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +2652,"New Mini Estate Of Eight(8) Units Of 5bedroom Fully Detached Duplex Plus Bq On Two Floors Each Duplex Contains Five Bedrooms, Two Living Rooms, One Study And A Bq* There Is Also A Swimming Pool And A Gym*",Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,5 beds, baths, Toilets,GRA +2653,1800sqm Land With Building On It On Herbert Macaulay Street Gra Ikeja Gated And Secured Street In Gra,Ikeja Gra Ikeja Lagos,₦,"635,000,000",0,0,0, beds, baths, Toilets,GRA +2654,Office Block On 10 Floors With Pent House,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2655,"3 Bay Warehouse Of 15000 Sq Ft Per Bay Making 45,000 Sq Ft Rental Space On 2 Acres",Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2656,Functional 58 Room Hotel On Cornerpice Land Bordering 3 Streets On 2400sqm Land,Toyin Street Ikeja Lagos,₦,"800,000,000",0,0,0,10 beds, baths, Toilets,Other Ikeja +2657,"Office Complex On 4floors (open Plan Floor) Off Kudirat Abiola Way, Oregun.",Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oregun +2658,"Hotel In Ikeja 111 Room On 4,000+ Sqm Pric",Ikeja Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2659,"(24) Units Of Apartments, Which Comprises Six (6) Units Of Three (3) Bedroom Apartments With A Room Bq (each) Per Block (four Blocks In Total).",Ajao Estate Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2660,Redevelopable Detached Property Sitting On 3000 Square Meters Land In A Prime Area Off Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2661,"A Fully Detached Commercial Property Along Awolowo Way, Ikeja Lagos. Size: 671 Square Meters Land.",Ikeja Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2662,School,S Ikeja Lagos,₦,"980,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2663,Commercial Property At Osolo Way Ajao Estate Tittle Deed Of Conver,Osolo Ajao Estate Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2664,Commercial Property At Osolo Way Ajao Estate Tittle Deed Of Conver,Osolo Ajao Estate Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2665,2000sqm Demolishable 2units Of 3bedroom Semi Detached Bungalow With Bq Each Sitting On A Large Expanse Of Land,Ikeja Gra Ikeja Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2666,4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"157,000,000",0,0,0,4 beds, baths, Toilets,GRA +2667,Approximately 9000 Square Meters. 7 Bays Empty Warehouses With Administrative Blocks,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2668,Magnificently Finished & Large 5 Bedroom Fully Detached Duplex With Bq Within An Exclusive Estate,0 Opebi Ikeja Lagos,₦,"100,010,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +2669,"Block Of 6 Flats On 1,000sqm Land For Sale In Magodo Phase 2, Lagos",Omole Phase 2 Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Omole +2670,"Ikeja Prime Land 18,300sqm (5acres)",D Adeniyi Jones Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2671,3 Bedroom Flats With A Room Service Quarters Each.,Oregun Ikeja Lagos,₦,"49,000,000",0,1,0,3 beds, baths, Toilets,Oregun +2672,"Prime Fenced And Gated Bare Land Land Size: 3,118.813 Sqm",Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,GRA +2673,5 Bedroom Detached House Sitting On 1400 Sqm Off Opebi Road,Opebi Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Opebi +2674,5 Bedroom Semidetached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"124,500,000",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +2675, 7 Bedrooms Including 2 Master Bedrooms Underground Car Park Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"715,000,000",0,0,0, beds, baths, Toilets,GRA +2676,7 Bedroom Brand New Mansion With Swimming Pool On 900sqm,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,7 beds, baths, Toilets,GRA +2677,3 Bay Warehouse 15000sqft Each,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +2678,Semi Detached Duplex With Standard Modern Facilities,Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2679,"Twin Duplex At Adeboye Solanke Street, Off Allen Avenue With Bq And Registered Conveyance",Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2680,"Dry Corner Piece Bareland Measuring 12000 Square Meters (3 Acres) Along The Ever Busy Oba Akran Avenue, Ikeja Lagos.",Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2681,"Vacant And Massive Strategically Located Property Sitting In The Heart Of Adeniyi Jones Avenue, Ikeja Lagos. This Property Comprises Over 20 Apartments And Duplexes (old Buildings). Land Size: 16,000 Square Meters",Adeniyi Jones Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2682,Land Measuring 1000sqm With A Small Bungalow., Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2683,908 Square Meters Old/demolishable Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2684,9 Acres Of Land Off Oba Akran Ikeja Lagos..,Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2685,Finished Four Bedroom Detached Town House With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2686,4 Bedroom Terrace House With Bq Built 2 Floors Above Ground Is Selling. (last Unit),Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds, baths, Toilets,GRA +2687,Two Blocks Of 7 Nos Of 3 Bedroom Flat Each Making 14 Flats In All(fully Furnished) With Generator,Ajao Estate Ikeja Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2688,Newly Built Elegant 5 Bedrooms Detached House + Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000/sqm",0,1,0,5 beds,4 baths,4 Toilets,GRA +2689,Newly Built 3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +2690,900 Sqm2 Empty Plot Of Land,"Agidingi, Alausa Ikeja Alausa Ikeja Lagos",₦,"250,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2691,Land,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2692,Fully Furnished Five Bedrooms Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2693,Fully Furnished Five Bedrooms Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2694,5 Units Of Five Bedroom Fully Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2695,2 Wings Of 5 Bedroom Duplex With Bq,Adeboye Sholanke Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Allen Avenue +2696,4 Bedroom Condo Duplex Available,Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets,Opebi +2697,Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2698,2009 Hawker 900xp Jet,Ikeja Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2699,It's A Solid Sand Filled Land Measuring 600sqm ****,Z Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2700,5 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Allen Avenue +2701,4bedrooms Terrace Apartments At Glorious Ville Courts Situated In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets,GRA +2702,Land For Sale At Magodo Gra Phase 2,Magodo Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2703,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2704,5 Bedroom Detached House Plus Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2705,Fenced And Gated Land,Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2706,4 Bedroom Terrace Buildings,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,0,4 beds, baths, Toilets,GRA +2707,5bedroom Fully Detached Duplex Plus Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2708,3 Bedroom Flat,"Orimolade Estate, Akora Villa Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2709,Half Plot Of Land Is Available F,Ado Odo Street Off Ogunsholu Street Mangoro Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2710,Two Nos 1000 Sq. Metres,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"150,000,000/sqm",0,0,0, beds, baths, Toilets,Awolowo Way +2711,"6 Bedroom Fully Detached Duplex, For Sale/lease With 4 Mini Flats And A Self Contain",Aina Ajobo Ogba Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets,Other Ikeja +2712,Hotel,Toyin Street Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2713,Newly Built 5 Bedroom Detached Duplex,Omole Phase One Agidingbi Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agidingbi +2714,Available Lands,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2715,Corner Piece 2 Wings Of 2 Storey Building,Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2716,Available Land,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2717,"32room Hotel In Gra Ikeja With Hall,gym, Pool, Lounges,bars And 5 Office Rooms. Land Size 4000m2",X Ikeja Gra Ikeja Lagos,₦,"3,300,000,000,000",0,0,1,10 beds,10 baths,10 Toilets,GRA +2718,Available Land,Ikeja Gra Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2719,Property On 1200sqm,Harmony Enclave Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +2720,A Commercial Property,S Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +2721,1400sqm Land For Jv,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2722,945sqm Of Land,Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2723,3300sqm Land With Demolisbale Structure,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2724,Empty Land Of 650sqm At Omole Phase2,Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2725,4br Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2726,"Joint [email protected] Awuse Estate Opebi,ikeja Lagos,",Awuse Estate Opebi Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Opebi +2727,Available Land,Oba Ladejobi Street Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2728,4 Bedroom Redevelopable Duplex With Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Opebi +2729,Available Lands,Ikeja Gra Ikeja Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2730,Available Lands,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2731,3000sqm Land On Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2732,Available Lands,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2733,Strategic Commercial 5 Floors Building,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2734,1300sqm Land,Oba Akran Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2735,Vacant Gated And Fenced Land,Maryland Opebi Ikeja Lagos,₦,"32,000,000",0,0,0,1 beds,0 baths,0 Toilets,Opebi +2736,4bedroom Semi Detached Duplex,Ayoola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +2737,2500sqm Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +2738,Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2739,"4,616 Sqm Strategic And Perfect Squared Land",Ariobodun's Street Ikeja Gra Ikeja Lagos,₦,"877,040,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2740,Joint Venture Mobolaji Bank Anthony Way Ikeja,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2741,Available Land With Structure,Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2742,Available Land,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2743,Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2744,2 Bay Warehouse,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2745,Available Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2746,Warehouse,"Acme Avenue, Agidingbi Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2747,Available Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2748,Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2749,Available Land,Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2750,4 Units Of 4bedroom Terrace Duplex + Bq,Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +2751,800sqm Land,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2752,Available Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2753,"Joint Venture In Awuse Estate, Opebi, Ikeja, Lagos.",Awuse Estate. Opebi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Opebi +2754,5bedroom Detached Duplex,Off Awolowo Way Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Awolowo Way +2755,"Building Leasing/1,740 Sqm Directly On Oduduwa Way, Gra Ikeja",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,GRA +2756,Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2757,Available Land,Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2758,550 Sqm Land Off Oba Dosumu Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,GRA +2759,Available Lands (various Sizes),Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2760,Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2761,Available Land,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2762,Best Western Hotel,Allen Avenue Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2763,Land Of 650sqm At Omole Phase2,... Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2764,32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2765,Large Portion Of Land,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2766,4br Terrace Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,0,0,4 beds,5 baths,5 Toilets,GRA +2767,"Superb Bare Land Measuring 1,200sqm In Gra Ikeja",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,GRA +2768,"Top Notch Lands In Easton Tower Estate, Maryland, Opebi Ikeja",Maryland Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Opebi +2769,12000sqm Bare Land(3 Acres),Along Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2770,Available Land,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2771,Newly Built 6 Bedroom Detached With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +2772,Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2773,Northbrooks...be Home,Ikeja Lagos,₦,"3,500,000",1,0,0, beds, baths, Toilets,Other Ikeja +2774,1no 4br Flat With 4nos 2bedroom Flat,Oregun Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oregun +2775,Newly Built 4 Bedroom Terrace House,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2776,Newly Built 2 Units 4 Bedroom Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +2777,550 Sqm On Oduduwa Street Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,GRA +2778,Vacant Bungalow On 1300 Sqm Land,Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2779,26 Rooms Commercial Tenement Building,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2780,"Executive New 6 Bedroom Duplex,",Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikeja +2781,Available Lands (various Sizes),Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2782,A Sophisticated Lagos Based Hotel,Gra Allen Avenue Ikeja Lagos,₦,"7,000,000,000",0,0,1,10 beds,10 baths,10 Toilets,Allen Avenue +2783,Joint Venture Land,Adeniyi Jones Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2784,Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2785,Building On 734sqm,Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2786,Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2787,Available Land,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +2788,Newly Built 3bedroom Flat,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +2789,Joint Venture At Shonibare Estate,Shonibare Estate Maryland Ikeja Lagos,₦,"935,000,000",0,0,0, beds, baths, Toilets,Maryland +2790,Storey Building Of 17 Rooms Tenement Building,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2791,Available Land With Structure,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2792,Available Land,Ikeja Gra Ikeja Lagos,₦,"135,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,GRA +2793,1000sqm Land Within Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2794,Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2795,4189.29sqm With Building Approval,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +2796,2 Blocks Of 4 Units 3 Bedroom Flat,"Hakeem Balogun Street, Alausa Ikeja Lagos",₦,"190,000,000",0,0,0,3 beds,0 baths,0 Toilets,Alausa +2797,A Bungalow Commercial Property,Obafemi Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2798,A Strategic Commercial 5 Floors Building Embodies A Massive Space Of 10 Units Open Spaces Of Offices,Tokunbo Alli Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikeja +2799,A Very Clean And Spacious Luxury 4 Bedrooms Fully Detached Duplex With 2 Rooms Servant Quarters,D Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets,GRA +2800,Exquisitely Finished And Massive Five Bedroom Detached Duplex With Bq,Omole Phase 1 Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,1,0,6 beds,7 baths,7 Toilets,Adeniyi Jones +2801,Almost New Massive All Rooms Ensuite 7bedrooms Detached House,Adeniyi Jones Ikeja Lagos,₦,"310,000,000",0,1,0,7 beds,9 baths,9 Toilets,Adeniyi Jones +2802,Demolishable Shanties,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2803,Luxury 4 Bedroom Terrace,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2804,Land,Opebi Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2805,Land,Oba Akran Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2806,Newly Built 5 Bedroom Fully Detached Duplex,E Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +2807,Distress 4 Bedroom Detached Mansion,Off Salvation In Fern Valley Estate Opebi Ikeja Lagos,₦,"127,000,000",0,0,1,4 beds,5 baths,6 Toilets,Opebi +2808,"Magnificently Finished And Large 5bedroom Duplex With 1 Guest Toilet Jacuzzi Within An Exclusive Estate In Opebi,ikeja,",Opebi Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Opebi +2809,Newly Built 3 Bedroom Apartment + Bq In A Serene Environment,Unity Road Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,5 Toilets,Airport Road +2810,Newly Built 2 Bedroom Apartment In A Serene Environment,Unity Road Ikeja Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Airport Road +2811,30 Bedroom Hotel On 5 Floors In The Heart Of Allen Avenue Ikeja,Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +2812,8 Bedroom Duplex + 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,9 Toilets,GRA +2813,4 Bedrooms Detached Duplex. Newly Built,Estate Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds, baths,5 Toilets,Opebi +2814,"Fully Detached 6 Bedroom Duplex With A Room, Massive Compound ,up To Two Floors , Security Post In An Estate Adeniyi Jones . 140m",Adeniyi Jones Estate Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,4 baths,4 Toilets,Other Ikeja +2815,5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2816,3 Bedrooms Flat. Under Construction.,Gated Neighborhood Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +2817,Newly Built 4 Bedroom Duplex + Bq,Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,1,4 beds,4 baths,5 Toilets,Allen Avenue +2818,Newly Built 4 Bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,5 Toilets,GRA +2819,Newly Built 3 Bedrooms Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +2820,25 Rooms Hotel,Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,1,10 beds, baths, Toilets,Agidingbi +2821,3 Numbers Of 4 Bedrooms Condo Duplex With A Room Bq On 400 Sq Meters Of Land,Opebi Ikeja Lagos,₦,"90,000,000/sqm",0,0,0,4 beds,3 baths,4 Toilets,Opebi +2822,2 Unit Of 4 Bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets,GRA +2823,2 Bedrooms Flat. Newly Built,Street Unity Road Ikeja Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,2 Toilets,Airport Road +2824,Newly Built 5bedroom Fully Detached Duplex,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +2825,4 Bedrooms Detached Duplex Newly Built,Estate Opebi Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +2826,9 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets,GRA +2827,"4 Bedrooms. Duplex, Condo. Newly Built",Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +2828,4 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2829,6 Bedroom Duplex + Flats,Toyin Street Ikeja Lagos,₦,"200,000,000",0,0,1,6 beds,7 baths,7 Toilets,Other Ikeja +2830,Land,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2831,Newly Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +2832,Land,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2833,A Full Plot Of Land At Cocosheen Street Off Ogunmodede Street Off Allen Bus Stop Ikeja.,Cocosheen Street Off Ogunmodede Street Off Allen Bus Stop Ikeja. Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2834,Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2835,Brand New Luxurious & Tastefully Finish 7 Units Of 3 Bedroom Flats With A Room Bq,"Off Issac John Street, Off Joel Ogunaike Street Gra Ikeja Lagos",₦,"616,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2836,6 Units Of 4bed Terrace Houses Plus A Rm Bq & 2 Units Of 4bed Penthouse With 2rms Bq,Oba Ladejobi St Off Joel Ogunnike Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"185,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,GRA +2837,Brand New 4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2838,Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq,Allen Avenue Ikeja Lagos,₦,"135,000,000",0,1,0,0 beds,0 baths,0 Toilets,Allen Avenue +2839,4 Bedroom With Bq Terrace Apartments,Rev Ogunbiyi Street Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2840,Jv Deal Mobilaji Bank Anthony Way,Mobilaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +2841,Building. Good For Commercial Use, Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2842,"9,000 Square Meter Warehouse",Acme Industrial Road Ikeja Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2843,5 Nos Of 5 Bedroom Triplex All Room En Suite 1sitting Room On Each Floor,Omolade Okoya Estate Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +2844,Jv Of 1000sqm Corner Piece Land Off Allen Ikeja,Off Allen Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2845,"For Sale: A 5bedroom Semi Duplex With Mini Flat Bq, The Compound Can Park Up To 6cars Off Aba Akran Avenue Ikeja",Off Oba Akran Oba Akran Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +2846,"Multipurpose Hall Or Church Use Space On 2,800 Sqm Land With Ample Parking Available For Sale",Adeniyi Jones Ikeja Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +2847,4 Bedroom Terrace Duplex,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +2848,5 Units Of 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets,GRA +2849,Available Land,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2850,5 Units Of 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets,GRA +2851,Land,Oba Akinjobi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2852,3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2853,4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2854,4 Bedroom Fully Terraced Duplexes With Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2855,A Luxury Hotel,Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2856,Land,Oba Akran Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2857,Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq,Secured Estate Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2858,Newly Built 4bedroom Semi Detached Duplex In Ikeja G R A,E Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +2859,3 Units Of 5 Bedroom Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2860,Brand New 4 Bedroom Terraced Duplexes Sale,Off Salvation Street Opebi Ikeja Lagos,₦,"85,000,000",1,1,0, beds, baths, Toilets,Opebi +2861,Ikeja Duplexes Sales,Allen Avenue Ikeja Lagos,₦,"1,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2862,4 Bedroom Terrace Duplex,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +2863,Newly Built 6 Bedroom Fully Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +2864,5 Bedroom Terraced Duplex With A Maids Room,Salvation Road Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,7 baths,7 Toilets,Opebi +2865,Fairly Used 12 Units Of 3 Bedroom Flats .,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +2866,Luxury 9 Bedroom Mansion,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets,GRA +2867,Land,By Opebi/oregun Link Road Oregun Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Oregun +2868,An Office Complex On Three On Three Floors On About780sqm Land With Ample Parking Space,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"280,000,000/day",1,0,0, beds, baths,10 Toilets,Awolowo Way +2869,Land,"At Osho Street, Opebi Ikeja Lagos",₦,"40,000,000/day",0,0,0, beds, baths, Toilets,Opebi +2870,Land,Opebi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Opebi +2871,"An Office Complex On Five Floors And A Penthouse With Dedicated Transformer, Elevator, Generating Sets, Ample Parking Space, Etc.",Allen Avenue Allen Avenue Ikeja Lagos,₦,"600,000,000/day",1,0,0, beds, baths,10 Toilets,Allen Avenue +2872,Two Units Of Three Bedroom Terraces With A Room Boys Quarter Each,Adegbeyemi Street Allen Avenue Ikeja Lagos,₦,"75,000,000/day",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +2873,5 Floors Office Building,Toyin Street Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2874,Tastefully Finished 5 Bedrooms Detached Duplex (all Ensuite),Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2875,Estate Land,Ikeja Lagos,₦,"2,700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2876,Commercial Property Of Offices.,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +2877,5 Bedrooms Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2878,4 Bedrooms Detached Duplex With A Room Bq, Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2879,3 Floors Office Building,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2880,Brand New 6 Bedrooms Detached Duplex With A Room, Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +2881,Knightsbridge Hotel Situated On 4 Plots, Toyin Street Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +2882,Newly Built 12 Units Of 3 Bedrooms,Oregun Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oregun +2883,5 Bedrooms Detached Duplex With A Room Bq,"Off Oduduwa Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2884,Land,Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2885,Brand New 5 Bedrooms Semi Detached Duplex With A Penthouse & A Bq, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2886,5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +2887,Building,Adeniyi Jones Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2888,"2 Units Of 4 Bedrooms Bungalows On 3,300m2.",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +2889,4 Bedrooms Semi Detached Duplex With 1 Room Bq, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +2890,"5 Bedroom Fully Detached Duplex With A Room Bq And A Gate House In A Lovely And Secured Close In Ikeja Gra,",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +2891,4 Bedroom Semi Detached Duplex With 1room Bq 120 Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2892,An Uncompleted Building Located In The Heart Of Ikeja Business Central District. Governor's Consent,Oba Akran Oba Akran Ikeja Lagos,₦,"200,000,000/sqm",0,1,0,0 beds,0 baths,0 Toilets,Other Ikeja +2893,An Uncompleted Building Located In The Heart Of Ikeja Business Central District. Governor's Consent,Oba Akran Oba Akran Ikeja Lagos,₦,"200,000,000/sqm",0,1,0,0 beds,0 baths,0 Toilets,Other Ikeja +2894,Dry Plots Of Land,Opebi Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Opebi +2895,A Corner Piece Of Land Measuring 1400sqm,"Oba Akinjobi Street, Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2896,Filling Station,Alausa Ikeja Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +2897,Detached Corner Piece House On About 2000sqmtrs Land,"Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2898,Dry Plots Of Land,Opebi Ikeja Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets,Opebi +2899,Newly Built 4 Bedroom Terraced Duplex With A Room Bq,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2900,Newly Built 5br Fully Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"350,000,000/month",0,1,0,5 beds,7 baths,7 Toilets,GRA +2901,4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +2902,3 Bedroom Luxury Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2903,Fully Furnished 5bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"102,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +2904,Very Neat 7bedroom Fully Detached Duplex,Onipetesi Mangoro Ikeja Lagos,₦,"75,000,000/year",0,0,0,7 beds,7 baths,8 Toilets,Other Ikeja +2905,Brand New 4 Bedroom Terrace Duplex,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,GRA +2906,Luxury 40units 3bedrooms Terrace,Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets,GRA +2907,Brand New Block Of Flats,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +2908,Newly Built 5units Of 5bedroom Terraced Duplex With A Bq,By Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2909,A Modern 4 Bedroom Duplex With 2numbers Of 3bedroom Flats,Oregun Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Oregun +2910,7 Bedroom Detached House + 8 Numbers Office Annex,Along Salvation Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,Opebi +2911,1400sqm Cornerpiece Property Off Opebi Road With Old Duplex,Cornerpiece Property Off Opebi Road Opebi Ikeja Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets,Opebi +2912,"Buy Easton Towers Opebi, Ikeja And Win Free Ticket To Zanzibar For 2",Behind Sheraton Hotel Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Opebi +2913,"Easton Towers Opebi, Ikeja.",Behind Sheraton Hotel Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Opebi +2914,Standard 8 Units Of 3 Bedroom Flat,Z Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +2915,Very Lovely 3 Bedroom Duplex,Off Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +2916,Beautiful 5 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Allen Avenue +2917,Brand New Exquisite 4 Bedroom Fully Detached Duplex Available For Sale At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",1,0,0,4 beds, baths, Toilets,Adeniyi Jones +2918,Lovely 4 Bedroom Detached Duplex With Boy's Quarter,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2919,Full Plot Of Land,A Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2920,Newly Built 4 Bedroom Terraced Duplex With Boy's Quarter,Z Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2921,Newly Well Built 4 Bedroom Terraced Duplex With Boysquarter Available For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,$,"120,000,000",0,0,0,4 beds, baths, Toilets,GRA +2922,One Acre (6 Plots) Of Land,Along Muritala Mohammed Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +2923,A Unit Of 4 Bedroom Semi Detached Duplex With Boy's Quarter, Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +2924,Luxury Brand New 5 Bedroom Detached Duplex Available For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,GRA +2925,Very Decent 6 Units Of 3 Bedroom Flats With Boys' Quarter,Alausa Ikeja Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets,Alausa +2926,Nice 4 Units Of 3 Bedroom Flats,Z Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +2927,Beautiful 4 Bedroom Fully Detached Duplex With Boy's Quarter,Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2928,3 Storey Office Building,Irewole Avenue Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +2929,6 Numbers Of 2 Bedroom Flat With 2 Nos Mini Flat,Olu Adetunji Close Off Haruna Bus Stop Opebi Ikeja Lagos,₦,"50,000,000",0,0,1,2 beds,2 baths,2 Toilets,Opebi +2930,Unlock Luxury In The Heart Of Ikeja Gra,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"58,990,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2931,Newly Built 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +2932,Unlock Luxury In The Heart Of Ikeja Gra,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"58,990,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2933,5bedroom Duplex With 1room,Opebi Ikeja Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,5 Toilets,Opebi +2934,Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Omole Phase 2 Ikeja Lagos,₦,"56,000,000",0,0,1,5 beds,5 baths,5 Toilets,Omole +2935,4 Bedroom Duplex With 2nos Of 3bedroom Flats,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +2936,"Bungalow On 1,500 Square Meters Land", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +2937,9 Bedroom Mansion Available For Sale Or Lease,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,9 beds,9 baths,9 Toilets,GRA +2938,"2,000 Square Meter Land Available For Sale",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,GRA +2939,"9,000 Square Meter Warehouse",Acme Industrial Road Ikeja Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +2940,Newly Built 4 Bedroom Semi Detached Duplex With Bq Available For Sale,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +2941,Studio Apartment (room + Living Room + 2 Toilets + 1 Bathroom A Bq),Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2942,3 Bedroom Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +2943,4 Bedroom Terrace Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2944,Newly Built 5 Bedroom Detached Duplex With Bq Y,Magodo Shagisha Ikeja Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Ikeja +2945,Newly Built 6 Bedroom Detached Duplex With A Bq,Omole Phase 1 Ikeja Lagos,₦,"180,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets,Omole +2946,1 Unit 4 Bedroom 2 Storey Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +2947,5 Bedroom Duplex In A Serene Environment,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets,Adeniyi Jones +2948,2 Storey Duplex In A Secured Estate,In An Estate Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,6 beds,5 baths,6 Toilets,Adeniyi Jones +2949,"5 Bedroom Detached Duplex, Off Allen Avenue",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,6 Toilets,Allen Avenue +2950,5 Bedroom Detached Duplex With A Mini Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +2951,5bedroom Duplex With 1rm Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",1,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +2952,4 Bedroom Terrace Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2953,Tastefully Finished 4bedroom With 1rm Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2954,Newly Built 2 Storey 4 Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +2955,5 Bedroom Terrace Duplex Off Awolowo Way,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +2956,Hotel,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +2957,Tastefully Finished 4bedroom Duplex In A Very Beautiful And Serene Neighborhood,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets,Adeniyi Jones +2958,5 Bedroom Detached Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2959,2 Storey 6 Bedroom Duplex In A Serene Estate,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"138,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +2960,4 Bedroom Duplex In An Estate,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +2961,Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2962,Detached Property,Alli Balogun Str Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +2963,Distress Sale In Ikeja Gra: 4 Bedrooms Terrace Duplex With A Room B.q,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths, Toilets,GRA +2964,Detached House On Approximately 3000sqm,Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2965,Fresh 5 Bedroom Semi Detached Duplex Available, Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Allen Avenue +2966,Very Clean 5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2967,Good 4 Units Of 3 Bedroom Flat,"Oke Oriya, Aruna Bus Stop Ikeja Lagos",₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +2968,Lovely 6 Units Of 2 Bedroom Flat, Ikeja Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikeja +2969,Newly Built Luxury Finished 5bed Room (semi Detached Self Compound) + Bq Each.,Off Adeniyi Jone Ikeja. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +2970,Newly Built Luxury Finished 5bed Room (semi Detached Self Compound) + Bq Each.,Off Adeniyi Jone Ikeja. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +2971,5 Bedroom Full Detached Duplex On 300sqm Of Land,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2972,5 Bedroom Full Detached Duplex On 300sqm Of Land,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +2973,Tastefully Finished 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +2974,Lovely 4 Bedroom Detached Duplex,Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +2975,Newly Built 3 Bedroom Flat,"Close To Rightgate Hotel, Oladosu St. Ikeja Toyin Street Ikeja Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +2976,Semi Detached 4 Bedroom Flat Duplex,"Oduduwa Way, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +2977,Newly Built 3 Bedroom Flat With Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets,GRA +2978,Luxury 4 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +2979,Luxury 3 Bedroom Terrace House,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +2980,5100 Sqm With A Block Of 6 Numbers 3bedroom Flats On It,"Off Sasegbon Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"2,500,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +2981,4 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"52,000,000",0,0,0,4 beds,3 baths,3 Toilets,Awolowo Way +2982,5 Bedrooms Duplex With Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +2983,Luxury 3 Bedroom Flat,Oba Aladejobi St. Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,1,3 beds,3 baths,3 Toilets,GRA +2984,"4.17 Acres Of Land, Former Alade Market","Alade Market, Allen, Ikeja. Allen Avenue Ikeja Lagos",₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +2985,6.5 Acres Of Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +2986,"Land 3,700sqm Along Oba Akinjobi Way","Oba Akinjobi, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"2,600,000,000",0,0,0, beds, baths, Toilets,GRA +2987,5 Bedroom Duplex With 1 Room Bq,"Off Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds, baths,5 Toilets,Awolowo Way +2988,Four Bedroom Terrace Duplex At A Good Enviroment,"Off Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Awolowo Way +2989,3 Bedroom Flat (crackers),2nd Round About Oba Akinjobi St. Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"61,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +2990,2 Units Of 5 Bedroom Duplex Flat With Bq.,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +2991,5 Bedroom Flat With 2 Bq,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,4 baths,4 Toilets,Adeniyi Jones +2992,Luxury 5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets,GRA +2993,Luxury 5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +2994,3 Numbers Of 3bedroom Flats On 350sqm With C Of O,Off Awolowoway Ikeja Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets,Awolowo Way +2995,3 Bedroom Terrace Duplex With Bq,"Alfred Garden Estate, Ikeja Ikeja Gra Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds, baths, Toilets,GRA +2996,4 Bedroom Flat Duplex With Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +2997,Luxury 3 Bedroom House,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +2998,Fully Detached 4 Bedroom Flat Duplex,"Oduduwa Way, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +2999,4bedroom Terrace Duplex In A Good Location At Ikeja,"Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +3000,Land In Commercial Area,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3001,4 Bedroom Duplex,"Omole Phase 2 Extension, Olowora Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3002,Very Neat Twin Block Of 6nos 3bedroom Flats,Off Toyin Street Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3003,Corner Piece Block Of 6 Nos 3bedroom Flats,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +3004,Fenced And Gated 250sqm In An Estate,Adeniyi Jones Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3005,Newly Built Bedrooms Detached House With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets,GRA +3006,5bedroom Detached Duplex With Bq In An Estate Adeniyi Jones Avenue Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths, Toilets,Adeniyi Jones +3007,4bedroom Detached Duplex +bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +3008,Fenced 500sqm With Foundation On It. Cofo,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3009,Brand New 4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3010,"Unique 4 Bedroom Duplex For Rent At Opebi, Ikeja Lagos",Opebi Ikeja Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets,Opebi +3011,"Very Lovely 4 Bedroom Duplex Ikeja Gra, Lagos", Ikeja Gra Ikeja Lagos,₦,"120,000,000/sqm",0,0,0,4 beds,0 baths,0 Toilets,GRA +3012,Very Lovely 4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +3013,Beautifully Structured 4 Bedroom Detached Duplex,In An Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +3014,Over 4 Acres Of Land For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3015,Brand New And Tasteful 5 Bedroom Twin Duplex Plus Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"187,000,000",0,0,0,5 beds, baths, Toilets,GRA +3016,Very Lovely 3 Bedroom Semi Detached Duplex,Omole Phase 1 Gra Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agidingbi +3017,Executively Structured 4 Bedroom Detached Duplex Plus Study Room, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3018,"Tastefully Structured 4 Bedroom Detached Duplex Plus A Room Bq For Sale Off Adeniyi Jones, Ikeja.",Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +3019,"3 Bay Warehouse Each Consisting Of 15,000 Sq Ft With Office Space Totaling 45,000 Sq Ft On 2 Acres Of Land", Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3020,Superb 4 Bedroom Semi Detached Duplex, Ikeja Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3021,Standard Self Contained,Anifowose Oba Akran Ikeja Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3022,Tastefully Finished 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +3023,Well Built 4 Bedroom Semi Detached Duplex Plus Bq With Security House, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +3024,Executively Structured 2 Wings Of 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3025,Spacious And Standard 4 Bedroom Detached Duplex, Opebi Ikeja Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +3026,A Newly Built Fantastic 4 Nos Of 4 Bedroom Duplex,Awolowo Way Awolowo Way Ikeja Lagos,₦,"80,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +3027,A Functional Steel Manufacturing Company Comprising Of 3 Bay Production Block,Oregun Industrial Area Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3028,Newly Built 4 Bedroom Bungalow,"4, Mende Street Maryland Ikeja Lagos",₦,"56,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Maryland +3029,Just Out At Akora Est Adeniyi Jones 4bedrm Detached Duplex With Bbq On 350sqm Land Fence And Gated,Akora Est Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds, baths, Toilets,Adeniyi Jones +3030,Four (4) Bedroom Duplex,Opebi Ikeja Opebi Ikeja Lagos,₦,"47,000,000",0,0,1,4 beds,0 baths,0 Toilets,Opebi +3031,"6 Floor Commercial Building, Wt Pent House.",Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3032,5bedrooms Detached House Plus Bq On Fani Fayode Street Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,8 baths,8 Toilets,GRA +3033,A Bare Land Located At Opebi/oregun Link Road,Opebi/oregun Link Road Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Opebi +3034,A Building Comprising Of Various Shop Outlets And Car Lots Spots In A Commercial Area Of Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3035,5 Bedroom Duplex,Adeniyi Jones Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets,GRA +3036,Five Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets,Adeniyi Jones +3037,Four Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds, baths, Toilets,GRA +3038,4 Bedroom Duplex,Adelaja Street Magodo Residential Scheme 11.oq Allen Avenue Ikeja Lagos,₦,"100,000,000/year",0,1,1,4 beds,4 baths,4 Toilets,Allen Avenue +3039,Commercial Property,Off Medical Road Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Airport Road +3040,600sqm Land With Structure On It At Anthony,Anthony Area Maryland Ikeja Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets,Maryland +3041,"4 Bedroom Detached Duplex With Attached 5 Room Bungalow Sitting On 2,000 Sq. Land. Deed Of Lease",Land Measuring About 2000 Sqmt Ikeja Gra Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3042,Functional Steel Company,Oregun Industrial Estate Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Oregun +3043,4 Bedroom Semi Detached Duplex With A Room Bq,"Ikeja, Opebi, Lagos. Opebi Ikeja Lagos",₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets,Opebi +3044,"1050sqm Mixed Used Land For Sale At Oregun, Ikeja With C Of O",Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3045,6 Units Of 3 Bedroom Flat With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +3046,2000sqm Land,Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3047,"A Functional Steel Manufacturing Company Comprising Of 3bay Production Block, Office Block, Plants And Machinery. Land Size : 14,480sqm. Title: C Of O Price: N 7b",Oregun Industrial Area Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3048,Land,Olorunfunmi Estate Oregun Ikeja Lagos,₦,"27,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3049,5 Bedroom Fully Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,7 Toilets,GRA +3050,4 Bedroom Duplex With A Room Boys Quarter,... Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,6 Toilets,GRA +3051,4 Bedroom Detached Duplex With 2 Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,6 Toilets,GRA +3052,5bedroom Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,7 Toilets,GRA +3053,5bedroom Detached House In Adeniyi Jones. Title : C Of O. Land Size: 400sqm Price : N140m Agent Mike,. Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,7 Toilets,Adeniyi Jones +3054,Landed Property,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,$,"1,300,000",0,0,0,10 beds, baths, Toilets,Adeniyi Jones +3055,Fully Detached 5 Bedroom Duplex In A Quite Environment,Awuse Estate Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Opebi +3056,Storey Building,Lateef Jakande Way Agidingbi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets,Agidingbi +3057,Nice Building For Commercial Purpose,"Kodesoh Street,close To Computer Village Toyin Street Ikeja Lagos",₦,"300,000,000/sqm",0,0,1,10 beds,10 baths,0 Toilets,Other Ikeja +3058,Well Maintained 2 Number Of 4 Bedroom Apartment, Opebi Ikeja Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,4 Toilets,Opebi +3059,Land For Sale With C Of O,Along Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"3,000,000,000",1,0,0, beds, baths, Toilets,Other Ikeja +3060,Existing Office Complex,65 Allen Avenue Allen Avenue Ikeja Lagos,₦,"650,000,000",1,0,1, beds, baths, Toilets,Allen Avenue +3061,4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +3062,4 Bedroom Duplex,Eugbayi Street Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,GRA +3063,9 Acres Of Land,"Niwil Close Off Oba Akran Avenue, Ikeja Oba Akran Ikeja Lagos",₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3064,Newly Built 4 Bedroom Massionettes With Bq,"Awuse Estate, Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +3065,Newly Built 4 Bedroom Massionettes With Bq And Fitted Kitchen,"Awuse Estate, Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +3066,"4 Units Of 4 Bedroom Terrace Duplexes At Opebi, Ikeja Lagos","Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Opebi +3067,Land, Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3068,5 Bedroom Triplex With Bq,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds,5 baths,5 Toilets,GRA +3069,5 Bedroom Triplex With Bq,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,5 Toilets,GRA +3070,6 Bedroom Triplex At Gra Ikeja,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +3071,6 Bedroom Triplex At Gra Ikeja,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +3072,2 Plots Of Land,26 Akeem Balogun Off Agidigbin Ikeja Agidingbi Ikeja Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets,Agidingbi +3073,Nicely Structured 4 Bedroom Semi Detached Duplex, Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3074,Well Standard 4 Units Of 4 Bedroom Terraced Duplex,Off Obafemi Awolowo Way Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Awolowo Way +3075,Newly Structured 4 Bedroom Terraced Duplex Plus Bq, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3076,4 Bedroom Duplex Plus A 3 Bedroom Apartment Plus A 5 Bedroom Bungalow,Off Opebi Link Rd Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +3077,"Hot Hot Hot... Landed Property Consisting Of 4 Bedroom Duplex With Basement, Plus A 3 Bedroom Apartment Plus A 5 Bedroom Bungalow On A Piece Of Land Measuring 857.58sq For Sale At Ikeja",Off Opebi Link Rd Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +3078,Beautifully Finished 4 Bedroom Detached Duplex For Sale At Opebi. Ikeja,Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Opebi +3079,4 Bedroom Terrace Duplex With Bq (off Plan),"Alfred Court, Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Allen Avenue +3080,Uncompleted Building With 6 Floors Approval,Off Awolowo Road Oba Akran Ikeja Lagos,₦,"200,000,000",1,1,1,10 beds,10 baths,10 Toilets,Other Ikeja +3081,Plots Of Land,Off Awolowo Road Oba Akran Ikeja Lagos,₦,"450,000,000",0,0,1,10 beds,10 baths,10 Toilets,Other Ikeja +3082,Hotel,... Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3083,Functional Hospital With All Modern Equipment's On 2plots Of Land,Awolowo Way Ikeja Lagos Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3084,1200sqms Land With Aproval For Contruction,"Lopes Close,off Opebi,ikeja Opebi Ikeja Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3085,3600sqms (1 Acres) Land,"Ajao Estate,international Airport,ikeja Airport Road(ikeja) Ikeja Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +3086,Land With Setback Bungalow,"Opebi,ikeja,behind Tfc Opebi Ikeja Lagos",₦,"95,000,000",0,0,0,2 beds,2 baths,2 Toilets,Opebi +3087,Luxury 6units Of 6bedroom Mansionette On 3floors,Ikeja Lagos Ikeja Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Ikeja +3088,7 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets,Adeniyi Jones +3089,Land, Obafemi Awolowo Way Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3090,Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,GRA +3091,2 Acres Of Land, Agidingbi Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +3092,Land,Along Muritala Muhammed International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +3093,4 Bedroom Terraced House With Bq,Awuse Estate Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3094,Land, Agidingbi Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3095,Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3096,Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3097,Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,GRA +3098,Land,Along Kodesoh Street Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3099,4 Units 3 Bedroom Flat,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +3100,335sqm Of Land With A Structure To Lintel Level,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets,Adeniyi Jones +3101,5 Bedroom Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +3102,"Luxury And Very Clean 6br Duplex All Round Tiles, All Ensuite, Guest Toilet With Fitted Kitchen",Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,6 beds, baths, Toilets,Opebi +3103,A Mixed Development Land For Sale @adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3104,For Sale! Prime Office Block On 10 Floors With Penthouse,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3105,4bedroom Fully Detached* Houses For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,4 beds, baths, Toilets,GRA +3106,Newly Built 4 Bedroom Detached Duplex,Magodo Gra Phase 2 Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +3107,21 Rooms Hotel For Sale,Alausa Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Alausa +3108,Tastefully Finished 4 Bedroom Detached Duplex With Bq At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +3109,4 Bedroom Duplex With 2room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +3110,Exquisitely Finished 4 Units 4 Bedroom Detached House With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3111,3 Bedroom Luxury Flat,Queens Drive Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +3112,5 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,GRA +3113,40 Units Of Terrace Duplex With 4bedroom And A Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3114,4 Units Of 3 Bedroom Flat At Alade Close,Alade Close Ikeja Lagos,₦,"80,000,000",0,0,0,12 beds,12 baths, Toilets,Other Ikeja +3115,5 Bedroom Duplex At Bella Vista Court,Bella Vista Court Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3116,Two Wings Dipped Of Four Bedroom Each + Bq [new And Vacant], Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +3117,Executive 5bedrooms Detached Duplex For Sale At Ikeja Gra. (280m Asking),Ikeja Gra. Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +3118,Executive Presidential 4 Bedroom Terrace Duplex,Ikeja Opebi Lagos. Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3119,Brand New 4 Bedrooms Semi Detached Duplex,Omole Phase2 Ikeja Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Omole +3120,58 Rooms Hotel For Sale At Ikeja,Off Toyin Off Allen Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +3121,"*3 Bedroom Apartment In Two Unique Locations On The Mainland Side Of Lagos* *location 1 Orchard Pace Shasha Akowonjo* Orchard Place, Shasha, Is A Beautiful Gated Community Of 72 Tastefully Built 3 Bedroom Apartment Units, Closely Linked To The Lagos S",Akowojo Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +3122,2600sqm Cornerpiece Bareland On Oduduwa Way For 300k Per Sqm 3600sqm On Sowemimo For 200k Per Sqm (2500sqm 3000sqm Possible) 1500sqm Cornerpiece Land On Oba Akinjobi For For 360m 7000sqm Cornerpiece Land On Harold Shodipo Crescent For 300k Per Sqm.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,GRA +3123,"This Is Inside An Estate In Off Adeniyi For Sale, 6,200sqm With Old 2wings 5bedroom Semi Detached Duplexs And Stand Alone 6bedroom Duplexs With Massive Ample Space In The Compound Fully Vacant Possessions Good For Real Estate Development Hospital ?? Head",Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000,000",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +3124,A 4flat Of 3bedroom At Williams Estate Ikeja Lagos State,William Estate Ikeja Lagos State Airport Road(ikeja) Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets,Airport Road +3125,"5 Bedroom Duplex, All En Suite",Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,1,5 beds, baths, Toilets,GRA +3126,4 Bedroom Semi Detached Duplex With 1 Room Bq,Off Toyin Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3127,Lovely Fully Detached 5 Bedrooms Duplex In Ikeja G R A With C Of O, Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets,GRA +3128,2 Plots Of Land,26 Akeem Balogun Off Agidigbin Ikeja Agidingbi Ikeja Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets,Agidingbi +3129,Affordable Luxury 2 Bedroom Apartments With A Let To Own Scheme,"Salvation Road, After Wema Bank, Omega Courts Opebi Ikeja Lagos",₦,"28,000,000",1,1,1,2 beds,3 baths,3 Toilets,Opebi +3130,"Move In To An Affordable Luxury 4 Bedroom Apartments. Two Units Remaining, Pay Within (1 15) Years","Salvation Road, After Sheraton, Awuse Estate,omega Courts Opebi Ikeja Lagos",₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Opebi +3131,"Get Your Keys To An Affordable Luxury 4 Bedroom Apartments. Two Units Remaining, Pay Within (1 15) Years","Salvation Road, Awuse Estate, After Sheraton Opebi Ikeja Lagos",₦,"42,000,000",1,1,1,4 beds,5 baths,5 Toilets,Opebi +3132,Brand New And Cute Two (2) Bedroom Bungalow,"Cocosheen Street, By Ikeja Medical Center Allen Avenue Ikeja Lagos",₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets,Allen Avenue +3133,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +3134,4 Units Of 4 Bedroom Detached Duplex And 4 Units Of Mini Flats,"Sasegbon Street, Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3135,5 Bedroom Detached House With Bq, Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +3136,Newly Built 3 Bedroom Flat,Omole Phase 2 Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Omole +3137,23 Bedrooms Guest House,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3138,Mixed Use Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3139,Commercial Land Measuring About 1000sm, Alausa Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +3140,4 Bedrooms Duplex Has A Unique Design And Detached, Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +3141,Block Of Flat On 2 Floors,"Shanu Street, Off Afariogun Street Awolowo Way Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,0 Toilets,Awolowo Way +3142,Nicely Built 4 Bedroom Duplex, Oba Akran Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3143,Fully Detached 6 Bedroom Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +3144,3 Bedroom Luxury Serviced Flat, Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +3145,Commercial Land,"Olowu Street, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3146,Mixed Use Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3147,32 Bedroom Hotel, Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3148,3 Bedroom Flat,Lakewood Court Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +3149,Newly Built And Spacious 4 Bedroom Semi Detached Duplex With Bq,Off Awolowo Way Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +3150,Commercial Property,.. Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3151,32 Bedroom Hotel, Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3152,4 Bedroom Semi Detached Duplex,"Olu Akerele Street, Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,3 baths,4 Toilets,Allen Avenue +3153,5 Bedroom Detached Duplex,.... Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3154,3 Bedroom Luxury Apartment, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Adeniyi Jones +3155,4 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3156,Storey Building House,Anifowoshe Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +3157,4 Bedroom Terraced Duplex,"Opebi Road, Omega Courts, Casavilla Estate, Opebi Ikeja Lagos",₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3158,4 Bedroom Detached Duplex,"Mko Gardens, Alausa Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +3159,Residential Land Measuring 300sqm, Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3160,4 Bedroom Terrace Duplex,.... Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3161,2 Bedroom Flat,"Atunisi Street Omole Ext 2, Omole Phase 2 Ikeja Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Omole +3162,7 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +3163,4 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,5 Toilets,Opebi +3164,4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3165,Commercial Land,"Lateeef Jakande Road, Agidingbi Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +3166,4 Bedroom Detached Duplex,"Voera Just 20mins Drive To Shoprite, Alausa Ikeja Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +3167,4 Bedroom Detached Duplex,"Off Bank Anthony Way, Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Awolowo Way +3168,5 Bedroom Terraced Duplex,"Salvation Road, Omega Courts, Opebi Ikeja Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +3169,Newly Built 4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +3170,5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +3171,3 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3172,Mixed Use Land,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3173,Hotel/ Guest House,.. Ikeja Gra Ikeja Lagos,₦,"144,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3174,Warehouse, Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3175,Block Of Flats,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3176,4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +3177,5 Bedroom Detached Duplex,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,4 Toilets,Oregun +3178,Land For Sale,Ikeja Gra Ikeja Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3179,4 Bedroom Semi Detached Duplex,"Off Opebi Road, Opebi Ikeja Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3180,7 Bedroom Detached House + Swimming Pool,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +3181,Newly Built Semi Detached 5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +3182,3 Bedroom Flat In An Estate, Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oregun +3183,4 Bedroom Terraced Duplex,20 Mins Drive To Allen Roundabout Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,5 Toilets,Allen Avenue +3184,Shop/ Office Space,"New Alade Market, Alausa Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +3185,4 Bedroom Detached Duplex,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oregun +3186,3 Bedroom Flat,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +3187,Block Of Flats,Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3188,Warehouse,"Off Oregun Road, Oregun Ikeja Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3189,400sqm Land,Oloko Crescent Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +3190,17 Bedroom Hotel / Guest House,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3191,Office Space For Sale.,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3192,4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,6 baths,5 Toilets,Adeniyi Jones +3193,Warehouse For Sale,Oregun Industrial Estate Oregun Ikeja Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3194,4 Bedroom Semi Detached Duplex,Wemabod Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +3195,4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,3 Toilets,Adeniyi Jones +3196,Mall,... Mobolaji Bank Anthony Way Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3197,4 Bedroom Detached Duplex, Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +3198,Commercial Land,Murtala Muhammed Airport Highway Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +3199,2 Bedroom Block Of Flats,Marie's Court Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,GRA +3200,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +3201,Executive 2 Wing Duplex Of 8 Bedroom With 6 Bedroom Fully Detached, Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,8 beds,0 baths,0 Toilets,GRA +3202,Land,"Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3203,Commercial Land,Olowu Street Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3204,Mixed Use Land,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3205,3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3206,4 Bedroom Semi Detached Duplex,.... Allen Avenue Ikeja Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3207,3 Bedroom Block Of Flats,.... Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3208,5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +3209,4 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"232,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3210,4 Bedroom Semi Detached House,"Mko Garden Estate, (marwa) Alausa Ikeja Lagos",₦,"122,000,000",0,0,0,5 beds,3 baths,0 Toilets,Alausa +3211,5 Bedroom Detached Duplex,"Gated And Secured Estate Short Drive To, Ikeja Gra, Ikeja Lagos",₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets,GRA +3212,Land,Joel Ogunaike Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3213,5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3214,3 Bedroom Bungalow,Near Shoprite Alausa Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets,Alausa +3215,3 Bedroom Detached Bungalow.,"Otedola Estate, Alausa Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Alausa +3216,Newly Refurbished Modern Office Complex, Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3217,Filling Station,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +3218,Office Space, Toyin Street Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3219,5 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +3220,5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3221,Residential Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3222,4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3223,Standard 9 Units Of 2 Bedrooms Apartment With 4 Shops On Full Plot,Cement Ikeja Lagos,₦,"28,000,000",0,0,0,2 beds,3 baths,0 Toilets,Other Ikeja +3224,Block Of Flats,A Serene Close Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3225,4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3226,Mixed Use Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3227,4 Bedroom Semi Detached Duplex,"Awuse Estate, Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3228,5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +3229,Office Space,"Off Oregun, Oregun Ikeja Lagos",₦,"2,800,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3230,5 Bedroom Block Of Flats,"Ola Ayinde Road, Off Mobolaji Bank Anthony Way Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,4 baths,4 Toilets,Awolowo Way +3231,4 Bedroom Luxury Penthouse.,127 Oba Ladejobi Street Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3232,4 Bedroom Detached Duplex,Palm View Estate Just 15 Mins Drive To Shoprite Alausa Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +3233,3 Bedroom Flat For Sale,"Off Oba Akinjobi Road, Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +3234,4 Bedroom Terrace Duplex,.... Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3235,Flat,"Off Allen Avenue Ikeja, Allen, Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3236,Mixed Use Land,Omole Phase 1 Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +3237,4 Bedroom Flat,Opebi Ikeja Lagos,₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3238,Mixed Use Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3239,4 Bedroom Detached Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3240,A Non Functioning Hotel Situated On *4 Plots* Of Land Is For Sale Along Ajegunle,"Ajegunle, Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3241,"A Clean Two Wings Of 5bedroom Duplex With Registered Conveyance Located At *gbemisola Street Off Awolowo Way, Ikeja* #130million",Awolowo Way Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +3242,A Storey Building (hotel),Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3243,Uncompleted Fully Detached House,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3244,200m2 Of Land,"Oduduwa Crescent, Ikeja Gra Ikeja Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets,GRA +3245,Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0,1 beds, baths, Toilets,GRA +3246,Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets,GRA +3247,"Marvellous Pictures Available For A Serious Client For Sales Of This Direct Luxury 6no Of 3 Bedflat Inside A Spacious St At Back Of Shoprite, Alausa Ikeja For 90m! D Yearly Lease Value Of This Wonderful Investment Is More Than 9m P. A! Luxury 3 Floors",Alausa Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Alausa +3248,2 Plots Of Land,Along Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3249,Ikeja Large Lands For Sale,Awolowo Way Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3250,2 Wings Duplex Of 5 Bedroom,"Agidingbi, Behind Mega Chicken Agidingbi Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3251,4 Acres Of Land,Oba Akran Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3252,Lovely 4bedroom Detached House With 2nos 2bedroom Flat On 730sqm Land, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +3253,Uncompleted Fully Detached House,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3254,"Brand New, Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq",.. Allen Avenue Ikeja Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Allen Avenue +3255,Block Of 4 Flat Of 3 Bedroom Each,"Orishe Street, Off Awolowo Way Ikeja Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3256,3 Acres Of Commercial Land,Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3257,A Story Building On A Full Plot Of Land,"Oluwu Street, Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets,GRA +3258,6 Plot Of Land,Henry Cari Street Oba Akran Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3259,"For Sale: An Architectural Master Piece In Awuse Estate, Opebi Ikeja, Lagos ( Direct Brief) Title : C Of O Price : #90m Per Unit Negotiable Contact Me For More Information",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +3260,"3 Bedroom Bungalow +4bq M1,260m2","Joel Ogunaike Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,3 beds, baths, Toilets,GRA +3261,Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,GRA +3262,"A Well Maintained 5 Bedrooms Detached House With 3 Bedrooms B/q On 1,000m2 Big Plot, For Outright Sale.",Opebi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Opebi +3263,Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"185,000",0,0,0, beds, baths, Toilets,GRA +3264,400m2 Of Land,"Oduduwa Crescent, Ikeja Gra Ikeja Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets,GRA +3265,Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"190,000",0,0,0, beds, baths, Toilets,GRA +3266,Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0, beds, baths, Toilets,GRA +3267,A Bungalow On 810.112sqm Lands,"No. 511 Meteorological Quarters, Kodesho Road, Ikeja Ikeja Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3268,"A Well Maintained 5 Bedrooms Detached House With 3 Bedrooms B/q On 1,000m2 Big Plot, For Outright Sale. Good For; Office H/q, Hospital, Guest House, Club, Bank Etc. Location: Slightly Off Opebi Road, Ikeja. Title: C Of O. Price: #200m.",Opebi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Opebi +3269,1/2 Plot Of Land,"Egbede Close, Beside Airport Hotel, Ikeja Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3270,"Land Size Of 2,500m2",Talabi Street Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3271,7 Plots Of Land,"Opposite Ajao Estate, Airport Road(ikeja) Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Airport Road +3272,Plot Of Land,"Seidu Ajibowu Street, Off Adeshina Street Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3273,Warehouse For Sale,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oregun +3274,Ikeja Large Land For Sale,Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3275,A Bungalow,Oba Akran Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3276,Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"255,000",0,0,0, beds, baths, Toilets,GRA +3277,Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0, beds, baths, Toilets,GRA +3278,Fully Furnished 5 Bedroom Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets,GRA +3279,8 Acres Of Land,Oba Akran Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3280,6 Bedroom Fully Detached House,Aba Johnson Akura Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0, beds,6 baths, Toilets,Adeniyi Jones +3281,Brand New Five Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets,Other Ikeja +3282,2 Wings Of 5 Bedroom Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3283,5bedroom Detached With Bq.,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +3284,A Block Of Flat,Ajasa Street Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3285,Land For Sale,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +3286,502 Sqmts Land Area To Cut Out Of An Existing Building..(well Shaped),Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3287,Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"270,000",0,0,0, beds, baths, Toilets,GRA +3288,One Acre Of Land Besife First Bank Along Oba Acran Ikeja,Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3289,5 Bedroom Bedroom Fully Detached Duplex On 680m2,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +3290,"3 Plots & Half Directly On Agidingbi Road, Cadbury Ikeja, Lagos. 100% Ok For Any Kind Of Commercial Purpose On Agidinbi Road, Ikeja. Price: 450 Million Asking.",Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3291,A Block Of 4 Flats Of 3 Bedroom Each + A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3292,"Very Hot Land For Sale In Awuse Estate A Nicely Located Dry Land Measuring 300sqm In A Very Serene Area Of Awuse Estate, Opebi Ikeja, Lagos Title : Registered Conveyance Price : #65m",Opebi Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Opebi +3293,Vacant Commercial Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,GRA +3294,4 Flats Of 3broom Flat Each All Rooms Ensuites Seat On 700sqm Of Land,"Ogba, Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3295,"Six, 3 Bedroom Flat On 2 Plot Off Toyin Street, Back Of Saint Leo’s Church, Ikeja, Lagos.",Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Ikeja +3296,Plot Of Land,Oba Akran Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3297,A Prime And Fenced 9 Acre Of Land With Good Title,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3298,One Acre Of Land Along Awolowo Way Opposite Airport Hotel Ikeja,Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3299,"A Clean 6nos Of 3bedroom Flats On 1,168.618 Square Meters With Cofo Located Off *sunday Adigun Street At Back Of Shop Rite, Alausa Ikeja* #90million",Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,4 Toilets,Alausa +3300,C Of O,Joel Ogunnaike Road Ikeja Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,1,0, beds, baths, Toilets,GRA +3301,5000 Square Meter Land At International Mm1 Airport Road Before Mobile Filling Station Mafoluku Oshodi Way.,Mafoluku Mm1 Airport Road(ikeja) Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Airport Road +3302,Tastefully Finished Brand New 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3303,Luxury 5bedroom Detached Duplex In A Serene Environment,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3304,"Factory/warehouse On 17,600 Square Meters",Oregun Ikeja Lagos,₦,"2,750,000,000",0,0,0, beds, baths, Toilets,Oregun +3305,Plot Measuring 600 Square Meters,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3306,"Fuel Station Directly Off Agidingbi Road, Ikeja",Agidingbi Ikeja Lagos,₦,"690,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3307,"5 Bedrooms Duplex On 1000 Sqmts Near Allen Avenue, Ikeja",Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +3308,4 Bedroom Terrace Duplex With A Room Bq,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3309,Luxury 3 Bedroom Serviced Flat,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +3310,A Newly Built 3 Unit Terrace Building Of 4 Bedrooms Duplex With Bq In Serene Neighborhood,Abba Johnson Crescent Akora Villas Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +3311,A Newly Built Semi Detached 5 Bedrooms Duplex With Bq In Serene Neighborhood,"Awori Close Akora Villas Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +3312,A Newly Built 2 Unit 5 Bedrooms Duplex With Bq In Serene Neighborhood,Awori Close Akora Villa's Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +3313,A Lovely Good And Nice Newly Built 3bedroom Flat In Ikeja All Rooms Ensuit,Cocosheen Close Ikeja Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets,Allen Avenue +3314,Luxury 4bedroom Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3315,Well Maintained Commercial Property,Along Opebi Allen Road Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3316,Brand New Block Of 8 Units 3 Bedroom Flats With Bq,... Opebi Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3317,Warehouse On 13000sqm,Off Oregun Road Ojota By Philp Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3318,Warehouse, Ikeja Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3319,4 Bedroom Duplex,Off Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3320,4 Units 3 Bedroom Flat, Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3321,Land, Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3322,5 Bedroom Detached Duplex,"Lola Holloway St, Omole Phase 1 Ikeja Lagos",₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Omole +3323,Plot Of Land,... Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3324,4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3325,4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3326,4 Bedrooms Terrace Duplex In A Very Quiet Neighbourhood,Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3327,Beautiful Land In A Serene Environment,Omole Phase 2 Extention Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3328,A Well Maintained Up/down Tenament Building,Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3329,An Office Complex On 5 Floors,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3330,4 Nos Of 3 Bedrooms Flat,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Oregun +3331,6 Nos Of 3 Bedrooms Flat With 2 Bq On 1200sqm,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3332,Tenament Building House.,Awolowo Way Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3333,9 Acres Of Land,Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3334,Prime Commercial Property Selling!! Prime Commercial Property Selling!!!!. Location Ikeja...5 Acres Of Land Within Wemabod Ikeja Selling. Location Ikeja...acre Goes For 400m Asking. A Plot 70m Asking,Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3335,Newly Tasteful Built 3 Nos Of 4 Bedrooms Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,GRA +3336,Tastefully Finished 4 Bedroom Detached Duplex With 2 Rooms Bq,Serviced Estate Ikeja Lagos,₦,"150,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Ikeja +3337,Executive 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets,GRA +3338,4 Bedroom Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3339,Newly Built 5 Units 5 Bedroom Duplex,Along Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,7 Toilets,Adeniyi Jones +3340,Newly Built 4bed Room Detached Duplex,Hu Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets,GRA +3341,Nice 6 Bedroom Fully Detached Duplex With Modern Facilities At Adeniyi Jones Ikeja Lagos 75m,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +3342,New 4 Bedroom Terrace Duplex With Modern Facilities At Adeniyi Jones Ikeja Lagos 65m,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3343,Tastefully Structured 4 Bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,GRA +3344,Beautiful 4 Bedroom Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,GRA +3345,"Brand New And Well Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3346,Beautifully Structured 4 Bedroom Terraced Duplex Plus Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths, Toilets,GRA +3347,"Beautifully Structured 3 Bedroom Semi Detached Duplex For Sale At Opebi Estate, Ikeja",Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds, baths, Toilets,Opebi +3348,Executively Built 4 Bedroom Condo Duplex Plus A Room Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3349,Beautifully Structured 4 Bedroom Detached Duplex Plus Bq Plus A Sit Out Terrace For Sale At Ikeja,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +3350,"Brand New 4 Units Of 3 Bedroom Detached Duplex For Sale At Opebi Estate, Ikeja",Opebi Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds, baths, Toilets,Opebi +3351,Properties For Sale... 6 Units Of Newly Built 3 Bedroom Flats For Sale,Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets,Allen Avenue +3352,"Standard 5 Bedroom Duplex With 2 Rooms Bq For Sale At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Adeniyi Jones +3353,"Hot Properties... 4 Bedroom Terraced Duplex Plus A Bq For Sale At Oregun, Ikeja",Majiyagbe Oregun Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oregun +3354,"Fresh Out... 6 Units Of 3 Bedroom Flats For Sale At Allen Avenue, Ikeja. 40m Per Flat",Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets,Allen Avenue +3355,Sale Sale Sale... 3 Bedroom Terraced Duplex For Sale At Ikeja,Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikeja +3356,4 Plots Of Dry Land,Satellite Town Near Peter Nemesi Street Behind Nasco Estate Ikeja Gra Ikeja Lagos,₦,"10,500,009",0,0,0,0 beds,0 baths,0 Toilets,GRA +3357,5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +3358,Hotel For Sale,.. Ikeja Gra Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3359,"*direct Sales At Give Away Price* *newly Built Lovely 4bedroom Duplex With 2nos Of 2bedroom Flat On 650sqm With 2bedroom Flat Ensuite Bq.* *location: Omolade Shonibare Magodo Isheri Lagos, The Owner Is Relocating* *more Pictures Available* Title: Receipt",Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikeja +3360,Newly Built 3 Bedroom Apartment With Excellent Facilities,"Shasha, Akowonjo Ikeja Lagos",₦,"22,000,000",0,1,0,3 beds,2 baths,3 Toilets,Other Ikeja +3361,4bedroom Luxury Semi Detached Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +3362,Serviced + Furnished 4bedroom Flats Ensuite +penthouse,"Off Kudirat Abiola Way, Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oregun +3363,1074sqm Land With Uncompleted Structure,Agidingbi Road. Ikeja Agidingbi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3364,Brand New 3wings Of 4bedroom Semi Detached Duplexes,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikeja +3365,Newly Built 4bedroom Condo Duplex With 1bedroom Bq,"Oroleye Street,off Abel Oreniyi Salvation,opebi Ikeja Opebi Ikeja Lagos",₦,"90,000,000",0,1,1,4 beds, baths, Toilets,Opebi +3366,Block Of 4 Units Of 3 Bedroom Flat Off Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,2 baths,2 Toilets,Adeniyi Jones +3367,500sqm Mixed Development Land In Agidingbin For Sale,Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3368,72 Units Of 3 Bedroom Apartment,Allen Avenue Ikeja Lagos,₦,"22,000,000",0,1,1,3 beds, baths, Toilets,Allen Avenue +3369,"Eight Flat At Ikeja Block Of 8 Flats Comprises Of 3brm, 2brm, Mini Flat, Location: Okeira Ogba Ikeja Lagos. Title: S/r Price 50m Negotiable",Okeira Ogba Alausa Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,5 Toilets,Alausa +3370,Filling Station For Sale In Alausa 240713,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Alausa +3371,32 Apartment Hotel,Awolowo Way Awolowo Way Ikeja Lagos,₦,"320,000,000",1,0,1, beds, baths, Toilets,Awolowo Way +3372,Full Detached 5 Bedroom With Bq In A Private Estate Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3373,Newly Built 4bedroom Duplex In Ikeja Area,Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3374,5 Bedroom Fully Detached Duplex For Sale In Adeniyi Jones 170703,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3375,2 Detached Duplex & 3bedroom Mini Flat,Adeniyi Jones Ikeja Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,7 beds,8 baths,8 Toilets,Allen Avenue +3376,2 Ditached Duplex And 3bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3377,5 Bedroom Detached Duplex For Sale In Ikeja Gra 150716,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,1,5 beds,5 baths,5 Toilets,GRA +3378,5 Bedroom Apartment For Sale In Adeniyi Jones 150709,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +3379,Landed Property In Peace Estate Btw 40m To 70m,Peace Estate Maryland Ikeja Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets,Maryland +3380,Newly Built Brand New 3 Bedroom Flat Of 4 Units With Pop Kitchen Cabinets Wardrobes Water Heater All Rooms Ensuilt With Visitors Interlock Compound And Maximum Security,Punch Estate Airport Ikeja Mangoro Ikeja Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Ikeja +3381,Luxury 6bedroom Fully Detached Duplex In A Serene Environment,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,6 beds,7 baths,7 Toilets,Adeniyi Jones +3382,Executive Brand New 4 Bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +3383,Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets,Awolowo Way +3384,Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets,Awolowo Way +3385,Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets,Awolowo Way +3386,Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0,5 beds,4 baths,4 Toilets,Awolowo Way +3387,5 Bedroom Semi Detached Duplex,"3 Wura Esan Close,off Ashongbon Adeniyi Jones Ikeja Lagos",₦,"125,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +3388,Newly Built 4 Units Of 4 Bedroom Terrace Duplex,Oluwaleyimu Street Ikeja Toyin Street Ikeja Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +3389,Newly Built 5 Bedroom Fully Detached Duplex For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,6 beds,8 baths,8 Toilets,GRA +3390,4 Bedroom Terrace Duplex For Sale,Lavender Close Marwa Garden Ikeja Alausa Ikeja Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,4 Toilets,Alausa +3391,Newly Built 5 Bedroom Terraces,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths, Toilets,Adeniyi Jones +3392,2000sqm On Obasa For 200k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets,GRA +3393,3000sqm On Sowemimo For 200k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets,GRA +3394,2000sqm On Herbat Marculey For 210k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"210,000",0,0,0, beds, baths, Toilets,GRA +3395,4 Bedroom Flat For Sale In Agidingbi 08jul05,Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agidingbi +3396,"*commercial Building For Sale* ,",Off Toyin Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3397,Newly Built 4 Bedrooms Terrace Duplex In A Gated Estate At Maryland N40m Net,Maryland Maryland Ikeja Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Maryland +3398,Newly Built 4 Bedroom Terrace Duplex At Opebi N55m,Off Salvation Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3399,3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,1,3 beds,4 baths,4 Toilets,Adeniyi Jones +3400,A Block Of 4 No's 3 Bedroom Flat At Off Toyin Street Ikeja N80m,Off Toyin Street Toyin Street Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +3401,4 Bed Room Fully Detach Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,4 Toilets,GRA +3402,A Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,GRA +3403,A Superb And Luxurious Tastefully Finished 4 Bedroom Duplex Fully Detached With One Room Bq,"Off Odudua Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +3404,4 Bedroom Detached Duplex With A Room,... Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3405,Land Of 3000sqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3406,10 Bed Hotel Guest House,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,10 beds,10 baths,10 Toilets,GRA +3407,"Land Area: 2,230 Sqm For Sale",Awuse Estate Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,0 baths,0 Toilets,Opebi +3408,Luxury 5 Bedroom Detached Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,4 beds,3 baths,4 Toilets,GRA +3409,Luxury 5 Bedroom Detached House,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +3410,4 Bay Warehouse,Morrison Crescent Oregun Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Oregun +3411,4bedroom Terrace Duplex For Sale At Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +3412,3 Bedroom Flat,.... Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3413,"Ikeja Joint Venture,4088 Sqmt Of Land",Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3414,5 Bedrooms Duplex And 3 Rooms Bq On 1000sqm Land With C Of O Document Off Opebi Ikeja N180m,Opebi Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +3415,5 Bedroom Detached Duplex,... Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3416,Hey Come See Land For Free,Toyin Street Ikeja Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3417,Well Built Block Of 4 Nos 3 Bedroom Flat At Off Toyin Street Ikeja N110m,Off Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +3418,4 Plots Of Bareland (2650sqm) Fenced And Gated,"Et Al Avenue , By Kudirat Abiola Way.. Oregun Ikeja Lagos",₦,"400,000,000",0,1,0, beds, baths, Toilets,Oregun +3419,75 Rooms Hotel,Mobolaji Bank Anthony Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,500,000,000",0,1,1,10 beds,10 baths,10 Toilets,Awolowo Way +3420,Newly Built 5bed Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +3421,3 Bedroom Flat,... Allen Avenue Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3422,Twin 4 Bedroom Duplex With Pent House,"Magodo Gra Phase1, Lagos Nigeria. Ikeja Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikeja +3423,6bedroom Duplex For Sales At Oregon Ikeja,Oregon Road Oregun Ikeja Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,7 Toilets,Oregun +3424,Newly 4bed Room Duplex Detach Wit 1bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets,GRA +3425,4 Flat Of 3bedroom On A Plot Of Land For Sale At Onipetesi Mangoro,Onipetesi Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3426,4 Flat Of 3bedroom On A Plot Of Land For Sale At Onipetesi Mangoro,Onipetesi Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3427,Newly Built 7 Units Of Fully Equipped And Finished 5 Bedroom Luxury Terrace Building,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,7 Toilets,Adeniyi Jones +3428,Newly Built 5 Bedroom Detached Duplex At Ikeja Gra N250m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3429,Old Building On Two Plot Of Land,3 Sadiku Street Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,8 baths,6 Toilets,Agidingbi +3430,3 Bedroom Flat For Sale In Ikeja 15jun29,Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Ikeja +3431,4 Bedroom Fully Detached Duplex For Sale In Ikeja 15jun24,Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikeja +3432,4 Bedroom Terrace Duplex For Sale In Ikeja 15jun22,Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3433,C Of O,Ikeja Lagos,₦,"35,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3434,With C Of O 35m Net,Ikeja Lagos,₦,"35,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3435,4 Bedroom Fully Detached Duplex For Sale In Ikeja 13jun19,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3436,25 Plots Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3437,5 Bedroom Duplex + 2 Mini Flat Bq,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets,Oregun +3438,"One Acre Of Land , 6plot Of Land For Sale Inside Awuse Estate Ikeja",Awuse Opebi Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Opebi +3439,Executive 5 Bedroom Fully Detached Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +3440,Brand New 6bedrooms Detached Duplex With A Bq At Adeniyi Jones Ikeja For Sale.,Adeniyi Jones Ikeja Lagos. Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +3441,One Acre Of Land For Sale In A Close At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3442,Executive Brand New 3 Numbers Of 4 Bedroom Terrace Duplexes With Bq Each,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +3443,Executive 4 Bedroom Terrace Duplex With A Bq,Awuse Estate Opebi Ikeja Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,5 Toilets,Opebi +3444,5 Bedroom Duplex For Rent In Adeniyi Jones 09jun23,Adeniyi Jones Ikeja Lagos,₦,"4,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3445,Building On A Land For Sale In Alausa 09jun11,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Alausa +3446,3bedroom All Room Are Suit,Mangoro Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikeja +3447,Block Of 4 Flat 3 Bedroom Flats,Off Obafemi Awolowo Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3448,5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3449,5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3450,4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3451,Newly Built Luxurious 3 Bedroom Apartment In Adeniyi Jones Is For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3452,2 Storey Building Of 9 Bedroom For Sale In Mangoro 07jun31,Mangoro Ikeja Lagos,₦,"75,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Ikeja +3453,Brand New 4 Bedroom Detached House At Allen Avenue Ikeja. Price: 80m,Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +3454,Newly Built 6 Bedroom Semi Detached Duplex At Opebi Ikeja N60m,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Opebi +3455,12 Units Of 3 Bedroom Flat For Sale In Ikeja 03jun02,Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3456,Warehouse On 3 Acres,Kudirat Abiola Obafemi Awolowo Way Ikeja Lagos,₦,"25,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3457,4 Bedroom House For Sale In Oregun 02jun20,Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +3458,4 Bedroom Terrace Duplex For Sale In Ikeja 30apr8,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3459,4 Bedroom Semi Detached House For Sale In Ikeja 27apr23,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3460,Hotel For Sale In Ikeja 12may18,Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3461,4 Bedroom Detached Duplex For Sale In Ikeja 14apr40,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3462,Commercial Building For Sale In Ikeja 9may42,Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3463,57 Rooms Hotel For Sale In Ikeja 13may52,Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +3464,4 Bedroom Fully Detached House For Sale In Ikeja 25apr38,Ikeja Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3465,5 Bed Duplex With Block Of Flats For Sale At Off Ogba Iju,Ogba Ikeja Oregun Ikeja Lagos,₦,"55,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oregun +3466,Executive 4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +3467,Executive Brand New 2 Wings Of 4 Bedroom Semi Detached Duplex With Bq,Adekunle Villa Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +3468,5 Bedroom Fully Detached Duplex For Sale In Ikeja 28apr16,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3469,5 Bedroom Terrace Duplex For Sale In Ikeja 18apr33,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3470,3 Bedroom Flat For Sale In Ikeja 4apr14,Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3471,3 Bedroom Flat For Sale In Ikeja 30apr21,Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3472,5 Bedroom Detached Duplex For Sale In Ikeja 30apr9,Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3473,3 Bedroom Flat For Sale In Ikeja 30mar35,Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3474,4 Bedroom Detached House For Sale In Ikeja 6may9,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3475,5 Bedroom Detached House For Sale In Omole 30mar24,Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3476,4 Bedroom Duplex For Sale In Ikeja 14apr29,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3477,6 Bedroom Fully Detached Duplex For Sale In Ikeja 15apr34,Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikeja +3478,5 Units Of 4 Bedroom Terrace Duplex For Sale In Ikeja 7apr23,Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3479,5 Bedroom Semi Detached Duplex,.. Alausa Ikeja Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +3480,4 Bedroom Semi Detached Duplex For Sale In Ikeja 27apr20,Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3481,4 Bedroom Semi Detached Duplex For Sale In Ikeja 12may19,Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3482,4 Bedroom Terrace Duplex For Sale In Ikeja 30mar14,Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3483,6 Bedrooms Mansionette For Sale In Ikeja 18apr30,Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikeja +3484,5 Bedroom Duplex For Sale In Ikeja 14apr8,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3485,Executive Brand New 6 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,6 beds,7 baths,7 Toilets,Adeniyi Jones +3486,5 Bedroom fully Detached Duplex For Sale In Ikeja 25apr45,Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3487,6 Bedroom Duplex For Sale In Ikeja 23apr8,Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikeja +3488,4 Bedroom Semi Detached Duplex For Sale In Ikeja 25apr4,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3489,4 Bedroom Fully Detached Duplex For Sale In Ikeja 11may44,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3490,2 Units Of 4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3491,5 Units Of 4 Bedroom Duplex For Sale In Ikeja 5may37,Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3492,Block Of 6 Units Of 3 Bedroom Flats For Sale In Ikeja 12may30,Ikeja Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3493,4 Bedroom Detached House For Sale In Ikeja 13may40,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3494,5 Bedroom Detached House For Sale In Ikeja 13may42,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3495,5 Bedroom Duplex For Sale In Ikeja 27mar10,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3496,3 Bedroom Flat For Sale In Ikeja 25apr62,Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3497,4 Bedroom Duplex For Sale In Ikeja 8apr25,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3498,Filling Station For Sale In Ikeja 9may36,Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3499,5 Bedroom Terrace Duplex For Sale In Ikeja 23apr1,Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3500,4 Bedroom Detached Duplex For Sale In Ikeja 7apr28,Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3501,58 Rooms Hotel For Sale In Ikeja 01jun52,Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3502,3 Bedroom Flat For Sale In Ikeja 28apr19,Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3503,4 Bedroom Duplex For Sale In Ikeja 25apr47,Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3504,5 Bedroom Fully Detached Duplex For Sale In Ikeja 22apr26,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3505,4 Bedroom Duplex For Sale In Ikeja 2apr35,Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3506,3 Bedroom Flat For Sale In Ikeja 12may20,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3507,Land For Sale In Ikeja 11may38,Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3508,8 Units Of 5 Bedroom Detached House For Sale In Ikeja 21apr15,Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3509,3 Bedroom Flat For Sale In Ikeja 11may4,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3510,5 Bedroom Terrace Duplex For Sale In Ikeja 23apr5,Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3511,36000sqm Land For Sale In Ikeja 22may6,Ikeja Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3512,5 Bedroom Terrace For Sale In Ikeja 9may35,Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3513,4 Bedroom Terrence Duplex For Sale In Ikeja 23apr50,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3514,4 Bedroom Duplex For Sale In Ikeja 8apr25,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3515,4 Bedroom Fully Detached House For Sale In Ikeja 13may12,Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3516,4 Bedroom Duplex For Sale In Ikeja 25apr3,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3517,3 Bedroom Apartment For Sale In Ikeja 24apr22,Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3518,5 Bedroom Duplex For Sale In Ikeja 21apr13,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3519,4 Bedroom Duplex For Sale In Ikeja 18apr43,Ikeja Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3520,5 Bedroom Fully Detached Duplex For Sale In Ikeja 30apr14,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3521,330 Sq M Land For Sale, Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3522,Fully Detached 4 Bedroom Duplex For Sale In Ikeja 3apr38,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3523,6 Units Of 3 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +3524,5 Bedroom Duplex For Sale In Ikeja 14apr12,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3525,Land For Sale In Ikeja 22may9,Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3526,5 Bedroom Fully Detached Duplex For Sale In Ikeja 22apr70,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +3527,3 Storey Commercial Building For Sale In Ikeja 12may31,Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3528,3 Bedroom Serviced Apartment For Sale In Ikeja 01jun36,Ikeja Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3529,4 Bedroom Fully Detached Duplex For Sale In Ikeja 22mar19,Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3530,4 Bedroom Terrace Duplex For Sale In Ikeja 27apr39,Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3531,4 Bedroom Terrace Duplex For Sale In Opebi 28may13,Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +3532,12 Units Of 3 Bedroom Flats For Sale In Ikeja 7apr24,Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3533,3 Bedroom Semi Detached Duplex For Sale In Ikeja 12may33,Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3534,4 Bedroom Terrace Duplex For Sale In Ikeja 22may7,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3535,4 Bedroom Detached House For Sale In Ikeja 18apr42,Ikeja Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3536,4 Bedroom Semi Detached Duplex For Sale In Ikeja 18may20,Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +3537,15 Nos Of 3 Bedroom Flat For Sale In Ikeja 22apr68,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3538,New 4 Bedroom Semi Detached Duplex In A Serene Environment,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +3539,Bare Land,Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,GRA +3540,Newly Build 4bedroom Terrace Houses With A Room Bq Fully Furnished,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3541,Newly Built 6 Nos Of 3 Bedroom Flats In A Serene Environment In The Heart Of Allen Ikeja Sold Per Flat,Off Ogumodede Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +3542,Newly Built 4 Bedroom Semi Detached Duplex,.. Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,GRA +3543,Block Of 4 Flats (2 No 3 Bedroom Flats & 2 No 2 Bedroom Flats) + Bq (2 No 2 Bedroom Flats) Built On Approximately 624sqm,Toyin Street Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Ikeja +3544,A Wing Of 4 Bedroom Duplex With Bq,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +3545,"5bedroom House + 2extra Rooms +2rmbq, Swimming Pool, Parking Space For At Least 8cars, On 500sqm.",Omole Phase 1 Agidingbi Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Agidingbi +3546,"For Sale : Newly Built 4 Bedroom Terrace Houses With A Room Bq Fully Furnished With Everything Necessary At Wemabod Estate, Off Adeniyi Jones, Ikeja, Lagos",Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +3547,Land With C Of O,Oregun Oregun Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Oregun +3548,Duplex,36 Omo Le Phase One Agidingbi Ikeja Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,3 Toilets,Agidingbi +3549,Newly Built 4br Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3550,Classic 4br Terrace House,Esugbayi Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,0,0,4 beds,5 baths,5 Toilets,GRA +3551,A Bungalow On 850 Sqmeter Along The Road... Presently It Is Being Used For Carlot,Awolowo Way Opp Lagoon Hospital Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets,Awolowo Way +3552,A Newly Built 7 Unit Terrace Of 5 Bedroom Duplex With Bq,"Ikare Close Orimolade Estate, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"70,000,000",1,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +3553,Newly Built 5 Bedrooms Duplex With Bq In A Serene Neighborhood,"Akinola Cole Crescent, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3554,Newly Built 4 Bedroom Duplex In A Serene Neighborhood,"Abba Johnson Crescent, Akora Villa Estate Adeniyi Jones Ikeja Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +3555,5 Bedroom Fully Detached Duplex + Bq, Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +3556,Newly Built 3 Units Of 3 Bedrooms Terrace Duplex Self Compound, Ikeja Lagos,₦,"34,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +3557,A Virgin Land For Sale In Ikeja Gra Size : One Acre,Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,GRA +3558,Fully Detach 5 Bedroom Duplex At Ikeja,Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,5 beds,5 baths,6 Toilets,GRA +3559,A Block Of 4 Flat Of 3 Bedrooms For Sale At Oregun Ikeja,"Oregun, Ikeja Lagos Oregun Ikeja Lagos",₦,"70,000,000",1,1,1,3 beds,3 baths,2 Toilets,Oregun +3560,"Sales!!! 2 Plots Together Directly On Kudiratu Abiola Way, Oregun Ikeja, Lagos",Kudiratu Abiola Way Oregun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Oregun +3561,2000sqm Land At Corner Piece In G Capper Maryland Ikeja Lagos.,Maryland Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Maryland +3562,5bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3563,For Sale! : 3bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3564,3 Bedrooms (6 Blocks Of Flats) House With Very Big Compound And Bq For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +3565,Now Selling: Six (6) Units Of Newly Built Luxury 3bedroom Flats + Bq @ Gra Ikeja Lagos,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds, baths, Toilets,GRA +3566,"4bedroom Semi Detached Duplex Self Compound @the Front , 5bedroom Semi Detached Duplex @ The Back, And Each Duplex Has 2rooms Bq",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,GRA +3567,Don't Let Your Kids Ask Why You Never Invested In Ibeju Lekki,18 Samuel Awoniyi Street Opebi Ikeja Lagos,₦,"800,000",0,1,0, beds, baths, Toilets,Opebi +3568,Verified C Of O Land In Mowe Ofada,Ladipo Kasumu Allen Avenue Ikeja Lagos,₦,"1,000,000",0,1,0, beds, baths, Toilets,Allen Avenue +3569,Verified And Secured Estates,50 Ladipo Kasumu Allen Avenue Ikeja Lagos,₦,"850,000",0,1,0, beds, baths, Toilets,Allen Avenue +3570,Bareland Of Size 977sqm For Sale,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"180,000,000",0,0,0,1 beds,1 baths,1 Toilets,Awolowo Way +3571,4 Bedroom Detached House For Sale At Ikeja Ik212,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +3572,5 Bedroom Fully Detached Duplex For Sale At Opebi Ikeja Ik262,Opebi Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +3573,Units Of 3 Bedroom Flat For Sale At Adenuyi Jones Ik857,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3574,Ensuite 5 Bedroom Duplex For Sale At Ikeja Gra Ik268,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,GRA +3575,4 Bedroom Terrace Duplex For Sale At Awuse Estate Opebi Ik326,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3576,4 Bedroom Semi Detached Duplex For Sale At Adekunle Villa Ikeja Ik307,Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +3577,1436sqm Open Plan Office,.. Oregun Ikeja Lagos,₦,"43,080,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3578,Newly Built Semi Detached 4bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3579,Plot Of Land For Sale At Oregun Ikeja Ik621,Oregun Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Oregun +3580,32 Rooms Hotels For Sale At Ikeja Ik780,Ikeja Lagos,₦,"1,990,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +3581,Warehouse On 1 Acre Of Land,Oregun Oregun Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3582,4 Units Of 5 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Ik173,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3583,2 Units Of 3bedroom Flat And 2rooms Bq For Sale At Ikeja Adeniyi Jones,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +3584,4 Bedroom Detached Duplex For Sale At Allen Avenue Ikeja Ik601,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +3585,4 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Ik776,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3586,Newly Built 5 Bedroom Detached Duplex For Sale Off Adeniyi Jones Ikeja Ik600,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3587,5 Bedroom Duplex For Sale At Ikeja Ik787,Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +3588,Fenced And Gated Estate In Ibeju Lekki,Toyin Street Ikeja Gra Ikeja Lagos,₦,"850,000",0,1,0, beds, baths, Toilets,GRA +3589,For Sale 4 Bedroom Fully Detached Duplex With Bq Newly Built,Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Opebi +3590,600 Sqm Land In A Gated And Serene Part For Sale At Ikeja #08,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,GRA +3591,"A Four Bay Warehouse + Admin Building Sitting On Two And Half Acres Of Land For Sale At Oregun, Lagos #10",Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oregun +3592,"Newly Built 5bedroom Duplex + Bq (adeniyi Jones,ikeja)",Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +3593,3 Bedroom Apartments With 1 Bedroom En Suite Bq,Sarah's Court Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3594,Newly Built 9units Of 3 Bedroom With Swimming Pools At Heart Of Lagos Ikeja With C Of O And Maximum Security,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,3 beds,0 baths,0 Toilets,Adeniyi Jones +3595,Newly Built 3 Storey Office Building With A Penthouse And C Of O At Capital Of Lagos Ikeja,Anifowoshe Ikeja Lagos,₦,"120,000,000",0,1,1,0 beds,0 baths,0 Toilets,Other Ikeja +3596,Acres Of Land For Sale At Gra Ikeja With C Of O And Maximum Security,. Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +3597,4 Bedroom Terrace Duplex For Sale At Toyin Ikeja Ik153,Toyin Street Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +3598,3 Bedroom Apartment For Sale In Ikeja Ik110,Ikeja Lagos,₦,"7,500,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +3599,Newly Built 4 Bedroom Terrace Duplex For Sale At Opebi Ikeja Ik112,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3600,6 Bedroom Detached Duplex On 1600sqm For Sale At Ikeja Gra Ik145,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +3601,4 Bedroom Semi Detached Duplex For Sale,Salvation Opebi Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3602,New And Tastefully Finished 4 Numbers Of 5 Bedroom Semi Detached Duplex And A 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,4 baths,4 Toilets,Adeniyi Jones +3603,Newly Built 5 Bedroom Detached Duolex With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3604,For Sale 4 Bedroom Duplex At Opebi Estate Lkeja Lagos N50m Asking,Opebi Estate Opebi Ikeja Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Opebi +3605,Land With C Of O For Sale In Omole Phase Ii Scheme Ii (berry Court ),Omole Phase Ii Estate Alausa Ikeja Lagos,₦,"21,000,000",1,1,0, beds, baths, Toilets,Alausa +3606,For Sale : Distressed Sale Reduced Price:three Bedroom Apartment Flat Inside The Amazing Citiview Estate Its Just 5minutes Drive From Alausa Secreteriat Ikeja,The Apartment Is Inside Citiview Estate 5minutes Drive From Alausa Ikeja Alausa Ikeja Lagos,₦,"28,000,000",0,1,0,3 beds,3 baths,4 Toilets,Alausa +3607,3 Bedroom Semi Detached Duplex For Sale With Self Compound,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3608,Twin Duplex Of 5 Bedroom,Off Lateef Jakande Rd Agidingbi Ikeja Lagos,₦,"45,000,000",0,0,0,5 beds, baths, Toilets,Agidingbi +3609,Newly Built 4bedroom Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +3610,4 Bedroom Fully Detached Duplex In A Serene Area,Opebi Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Opebi +3611,5 Bedroom House For Sale In Ikeja,Adedayo Banjo Street Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +3612,"Units Of Luxury And Spacious 3bedroom Flats @ Oregun, Ikeja. Price: N35,000,000",Oregun Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds, baths, Toilets,Oregun +3613,2000sqm Of Land With An Old Structure,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3614,Purposely Built Residential Quarters,Ogundana Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3615,"Shop For Sale At Alade Market, Awolowo Way, Ikeja",Alade Market Obafemi Awolowo Way Ikeja Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3616,"5 Acres Of Land At Awolowo Way, Ikeja",Awolowo Way Ikeja Lagos,$,"20,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3617,"2 Units Of Newly Built 5 Bedroom Detached House + Bq @ Ikeja Gra, Each C Of O",Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds, baths, Toilets,GRA +3618,5 Bedroom Detached Duplex For Sale At Magodo Gra Yb017,Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +3619,4 Bedroom Semi Detached Duplex For Sale In Opebi Yb047,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3620,Tastefully Built 5 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Yb011,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3621,Nicely Built 5 Bedroom House With Bq For Sale In Ikeja Yb016,Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +3622,4 Bedroom Duplex For Sale In Ikeja Gra Yb039,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3623,Newly Built 4 Bedroom Terrace Duplex For Sale At Adeniyi Jones Ikeja Yb046,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3624,All Room Ensuite 4 Bedroom Terrace Duplex For Sale Opebi Yb020,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3625,3 Bedroom Detached House For Sale In Ikeja Yb012,Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +3626,4bedroom Fully Detached Duplex With A 2bedroom Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +3627,3 Bedroom Terrace Duplex For Sale In Ikeja 09yb001,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3628,"Land Size:3700sqm, With Registered Conveyance.",. Maryland Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Maryland +3629,Newly Built And Well Finished 5 Bedroom Duplex,. Ikeja Gra Ikeja Lagos,₦,"150,000",0,1,0,5 beds,5 baths,7 Toilets,GRA +3630,Executive 12 Rooms Functional Hotel,Off Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",1,0,1, beds, baths, Toilets,Opebi +3631,Executive Block Of 4 Flat Of 3 Bedroom Each,At The Back Of Jabita Hotel Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,1,3 beds,4 baths,4 Toilets,Awolowo Way +3632,Mixed Development Land Measuring 4000sqm,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3633,Executive 18 Rooms Hotel For Sale,Ikeja Ikeja Lagos,₦,"450,000,000",1,0,1, beds, baths, Toilets,Other Ikeja +3634,112 Rooms All Ensuite Rooms For Sale,Allen Avenue Ikeja Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3635,Executive Brand New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets,GRA +3636,A Petrol Station On 4 Plots Of Land With 5 Pumps,Alausa Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Alausa +3637,A 12 Rooms Functional Hotel On About 600sqm Land All Rooms En Suites,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +3638,A 4 Bedroom Terrace Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3639,5 Bay Warehouse With Administrative Blocks On 9000sqm Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +3640,Functional Hospital For Sale,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1, beds, baths, Toilets,Allen Avenue +3641,"It Sits On About 350 Sqm, Has It's Own Compound And Is Located In Gra 1000 Sqm Bare Land In Ikeja Goes For 190 200 Million, So The Price Of This Facility At 135m Is Not Bad, Unless You Want Sth Bigger.",Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,GRA +3642,Office Space 5.5m,Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3643,Office Space 4.3milljon,Ikeja Lagos,₦,"43,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3644,4 Bedroom Duplex For Sale #135m,... Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3645,A Lovely 4 Bedroom Detached Duplex With Bq At Magodo Gra Shangisha Phase 2,... Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikeja +3646,"Rent To Own, Pay Rent For 2 15 Years And Own Your Home. En Suite Furnished 4 Bedroom Apartment With Modern Facilities. Pay Equity Contribution And Park In While You Pay The Balance Installmentaly Between 2 15 Years.","Omega Court,opebi Ikeja Lagos",₦,"37,500,000",0,1,1,4 beds,6 baths,6 Toilets,Opebi +3647,2000sqmt Of Land (180k Per Square Meter),Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"180,000",0,0,0, beds, baths, Toilets,GRA +3648,5000 Square Meter Prime Land,Akin Adejobi Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,GRA +3649,4000 Square Meter Of Land @ Obasa Street,Obasa Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,GRA +3650,4400 Square Meter Of Land @ Isaac Jones,Isaac Jones Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,GRA +3651,5 Bedroom Semi Detached House With 1 Nos Boys Quarters (bq),... Maryland Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Maryland +3652,2 Bedroom Apartment At Opebi Ikeja For Sale,Salvation Road Opebi Ikeja Lagos,₦,"28,000,000",0,1,0,2 beds,5 baths,5 Toilets,Opebi +3653,Property For Sale At Ikeja Gra,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +3654,"A 714sqm Cornerpiece Parcel Of Land, Fenced With Gate In Awuse Estate, Opebi, Ikeja Lagos",Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +3655,A Prime Land With Demolishable Or Refurbishable Structures.,Awuse Estate Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets,Opebi +3656,A Building,Obafemi Awolowo Way Ikeja Lagos,₦,"15,000,000",0,1,0,4 beds,5 baths,5 Toilets,Awolowo Way +3657,A Large Parcel Of Land Measuring 29 Plots,"Ajao Road, Off Adeniyi Jones Avenue Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3658,A Parcel Of Land Measuring Approximately 2600sqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3659,Newley Built Luxury 3bedroom Apartment And Bq,Opebi Ikeja Lagos,₦,"82,000,000",1,1,0,3 beds,3 baths,4 Toilets,Opebi +3660,Newly Built 4 Bedroom Apartment With Ample Car Parking Space,Along Salvation Road Opebi Ikeja Lagos,₦,"37,500,000",0,1,0,4 beds,6 baths,6 Toilets,Opebi +3661,"*4.5 Acres On Oregun Road, Ikeja, Lagos* *sited On 17,600 Square Metre ( 4.5 Acres).* *property With A Warehouse (demolishable)* *suitable For Highrise Hotel, Private Residential Estate, Event Centre Or Any Other Mixed Development Use.* *located On Billin",Oregun Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Oregun +3662,"8,400sqm Residential Land For Sale In Ikeja Gra* *location:: Adeyemo Alakija Street* *it Is Fenced And Gated With Security* *lagos State C Of O. And It Also Has Building Approval.* *can Be Sold In Bits* *per Sqm:: #200k* *the Whole Land Is : N1.7b*",Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,GRA +3663,"17,900sqm) Of Land With Scanty Demolishable Structure For Sale* *location: Off Awolowo Way Ikeja Lagos* *it Is Fenced And Gated Facing The Road* *lag State C Of O.* *price...n2.5b*",Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3664,"4000sqm Land At Adeniyi Jones* *location: Off Adeniyi Jones, Ikeja Lagos* *the Property Has An Old Building On It* *title: Cofo And Governor's Consent* *price...n500 Million Asking*",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3665,"4,100sqm Land At Adekunle Fajuyi Way* *location: Shogunle Bus Stop On Adeniyi Jones, Ikeja Gra* *the Property Has A Structure That Can Be Renovated Or Demolished Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Mi",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3666,"One And Half Acres Of Land Opposite Airport Hotel* *location: Along Awolowo Way Ikeja Lagos* *it Is Fenced And Gated Facing The Road* *title: C. Of O., D. P. R. License And Approval For Filling Station.* *price...n1.8b*",Awolowo Way Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3667,"9acres Of Land On Oba Akran Ikeja* *location: Oba Akran Close To Naijarite, Ikeja* *the Property Has A Structure That Can Be Renovated Or Demolished Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Million For An",Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3668,*for Sale: On Ikeja Gra Lagos Cornerpiece Plot Measuring 5900sqm With Lagos State Cofo Selling For N2.5bn,Gra Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,GRA +3669,1000 Square Meter Of Land At Oduduwa Crescent,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets,GRA +3670,30 Plots Of Land @ Ajao Street (70m Per Plot),Ajao Street Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3671,"5000sqm Land At Oregun Alausa* *location: Kudirat Abiola Way, Oregun, Ikeja* *the Property Has A Temporary Structure That Serves As Admin Office With Toilet, Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Million",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Oregun +3672,"4000sqm Land At Adeniyi Jones* *location: Ladipo Oluwole Street Off Adeniyi Jones, Ikeja* *the Property Has A Solid 2wings Of Open Plan Office Space, Fenced And Gated* *title: Wemabod* *price...n650 Million Asking*",Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3673,"(8,600sq.m) Land Beside Maryland Mall (shoprite,)* *location: Beside Maryland Mall Directly Facing Ikorodu Road* *registered Conveyance.* *price...n1.5billion*",Maryland Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Maryland +3674,"*7,100 Sqm Of Fenced And Gated Land On Bank Anthony Way Maryland* *with Office Complex. Can Be Comfortably Used For An Estate, Shopping Mall, 5 Star Hotel Or Church* *title Governors Consent.* *price N1.8b.* *half Of This Life Plot Of Land Can Also Be",Maryland Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Maryland +3675,"2600sqm On Mobolaji Bank Anthony Way, Maryland, Beside Keystone Bank, Near Ikeja Army Cantonment*. *consisting Of One Storey Building And A Bungalow With Appurtenances.* *the Property Is Quite Strategic And Can Be Used For A Mall, Office Complex, Residen",Mobolaji Bank Anthony Way Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3676,Newly Built 3units Of 3 Bedroom Semidetached Duplex In Ikeja Around Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds, baths, Toilets,Adeniyi Jones +3677,For Sale || 5 Bedroom Fully Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3678,3 Bedroom Condonium For Sale,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +3679,C Of O,Awolowo Opebi Ikeja Lagos,₦,"1,000,000,000",0,1,0, beds, baths, Toilets,Opebi +3680,An Exquisite 6bedroom Detached Duplex At Ikeja In A Very Serene Environment And Very Accessible.,Ikeja Adeniyi Jones Lagos. Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +3681,A Block Of 6no 3bedroom Flat Available For Sale In Ikeja,Adekunle Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,3 Toilets,GRA +3682,Functional Hotels Comprising 24 Rooms/a Story Building.,Off Allen Avenue Ikeja Lagos,₦,"230,000,000",1,0,1,0 beds,0 baths,0 Toilets,Allen Avenue +3683,Newly Built 8unit Of 5bedroom Terrence Duplexs With A Room Bq Inside An Estate In Off Adeniyi Jones Ikeja All The Rooms Are Ensult With Guest Toilet ?? Fixed Kitchen Cabinet Quality Marble Spanish Tiles On The Floor With Ample Parking Space In The Compoun,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3684,"Four Blocks Of Three Bedroom Flats For Sale Off Allen Avenue ,ikeja Lagos State. Title: Cofo .price: #120m. Negotiable",Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +3685,Newly Built 5 Bedroom Detached Duplex,Bamishile Estates Off Allen Avenue. Allen Avenue Ikeja Lagos,₦,"65,000,000",1,1,1,5 beds,6 baths,6 Toilets,Allen Avenue +3686,Lovely Built 3 Bedroom Flats & 2 Bedroom Flats.,Bayo Ajayi Streets. Alausa Ikeja Lagos,₦,"80,000,000",1,0,1,1 beds,1 baths,1 Toilets,Alausa +3687,Lovely Built 4 Bedroom Duplex With Bq,Awuse Estate. Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets,Opebi +3688,Newly Built 8 Units Of 5bedroom Duplex With Bq At Ikeja In A Good Environment.,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3689,This Is Newly Built 3nos Of 4bedroom Terrence Duplexs With A Room Bq Inside An Estate In Off Adeniyi Jones Ikeja..document: C Of O...going For 85m,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3690,Executive Brand New 3 Units Of 4bedroom Duplex In A Good Environment And Very Serene.,Adeniyi Jones Off Allen. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3691,3 Bedroom Flat,"3 Olaoshe Close, Agege, Off Ikeja Along Airport Road(ikeja) Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Airport Road +3692,Newly Built 4bed Duplexe,Off Toyin Toyin Street Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikeja +3693,Newly Built 4bed Duplexe,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +3694,"Commercial Property Sitting On 2,600 Sqm",Opebi Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Opebi +3695,"Hot Sales Land With Buildings Demolished Already On 2,600sqm", Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3696,3 Bedroom Deluxe Apartments,"End Of Fatai Doherty Close, Off Akin Laguda, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +3697,"Lovely 3bedroom Flat With 1,room Service Quotres",Bamiselle Street Allen Avenue Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +3698,"Tastefully Newly Built 3,bedroom Duplex",Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +3699,"Newly Built 4bedroom Semi Detached Duplex With Bq Fitted Kitchen, Jacuzzi, Spacious Sitting Room Etc",In A Well Secured Estate Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +3700,Newly Built 4bedroom Semi Detached Duplex With Bq,"Off Adeniyi Jones, Ajao Road Adeniyi Jones Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +3701,A Nice 5bedroom Detached House + 4bedroom Duplex Bq On 2plots Of Land Along Adekunle Fajuyi Way Near Maryland Ikeja G R A Ikeja Lagos. With C Of O #250million.,Maryland Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Maryland +3702,"Newly 4,bedroom Detached House",Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets,GRA +3703,"Luxurious 4bedroom Terrace Duplex On 3floors With Bq, Spacious Rooms In A Mini Court",In Well Secured Estate Opebi Ikeja Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +3704,4 Bedroom Semi Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3705,5 Bedroom Detached Duplex,"Ikeja Gra, Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +3706,3 Bedroom Detached Bungalow,Otedola Estate Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Alausa +3707,2 Bedroom Apartment In Opebi Ikeja,Opebi Ikeja Lagos,₦,"28,000,000",0,1,1,2 beds, baths,1 Toilets,Opebi +3708,4 Units 4 Bedroom + 1room Bq Condo Duplex,Awuse Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3709,"An Old 4 Bedroom Wing Of Duplex (needs Renovation) With A Bq, Gate House, Etc. Built On 350 Square Meters Land",Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +3710,Newly Built 4 Bedroom Duplex In An Estate In Maryland,Arowojobe Estate Maryland Ikeja Lagos,₦,"63,000,000",0,1,1, beds,3 baths,5 Toilets,Maryland +3711,"2 Wings Of 4 Bedroom Duplex At Itelorun Close, Adekunle Village","5, Itelorun Close, Adekunle Village Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3712,30m2 Office Space,Alausa Shopping Mall Alausa Ikeja Lagos,₦,"20,000,000",1,0,0, beds, baths, Toilets,Alausa +3713,"More Than 5 Bay Empty Warehouses With Administrative Blocks Suitable For Redevelopment Of Shopping Mall, Event Center, Corporate Headquarters, Church, Hospital, Hotel, Etc...",Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +3714,Entire Store For Sale,Opebi Ikeja Lagos,₦,"15,000,000",0,0,1,4 beds,1 baths,1 Toilets,Opebi +3715,4 Plots Of Land Going For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Opebi +3716,Cornerpiece Land And Building In Gra Ikeja,No. 2 Isaac John Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +3717,3 Plots Of Land,Awuse Estate Ikeja Lagos Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3718,Land Size 1200sqm,"Joel Ugonaike, Road Ikeja Gra Ikeja Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3719,"For Sale: Luxury 4bedrom Condo With Bq At( Awuse Estate) Opebi, Ikeja",Oroloye St Off Abel Oreniyi Opebi Ikeja Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets,Opebi +3720,Plots Of Land For Sale In Magodo Heights,Magodo Jubilee/ Cmd Road Alausa Ikeja Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets,Alausa +3721,"A Four (4) Bedroom House, All Rooms En Suite With Two (2) Living Sitting Rooms, One Study, One Ante Room, One(1) Visitors Toilet, One (1) Kitchen, One (1) Pantry/store And Two Rooms (2) Boys/maid Quarter En Suite With Kitchenette.","House 7, Peace Court, 2/4 Adeyemo Alakija, Gra Lkeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"200,000,000",0,0,0,4 beds, baths, Toilets,GRA +3722,5 Bedrooms Detached Duplex In Omole Phase I20m Negotiable,Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Oregun +3723,Newly Built 5 Bedroom Duplex,Akinola Cole Crescent Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,4 baths,5 Toilets,Adeniyi Jones +3724,Functional 58 Rooms Hotel In A Busy Commercial Location,Toyin Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3725,*brand New 5bed Duplex For Sale @ Magodo!! Slvmrsbiso*. A Newly Built 5bedroom Duplex All En Suite Ample Parking Space Barbed Fence Wire Automated Gate Cctv Cam Chandalier Fitted Fitted Kitchen Swimming Pool Laundry Room Gate House Study Room,Magodo Shangisha Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3726,Semi Detached 4bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3727,4 Units 4 Bedroom Duplex @ Aderniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Adeniyi Jones +3728,2 Wings Of Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +3729,Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"420,000",0,0,0, beds, baths, Toilets,GRA +3730,Land For Sales,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,GRA +3731,"Newly Built And Tastefully Finished 3 Bedroom For Sale Off Allen, Ikeja",Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets,Allen Avenue +3732,"Brand New 5 Bedroom Duplexes For Sale At Opebi, Ikeja",Salvation Road Opebi Ikeja Lagos,₦,"85,000,000",1,1,1,5 beds,4 baths,6 Toilets,Opebi +3733,"Fully Detached 5 Bedrooms Duplex For Sale, Ikeja Gra",Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +3734,Affordable Land For Sale At Opebi Allen Ikeja Lagos,Opebi Allen Ikeja Lagos Opebi Ikeja Lagos,₦,"40,000,000",1,1,0, beds, baths, Toilets,Opebi +3735,Warehouse For Sale,"Ikosi Road ,oregun Industrial Estate, Ikeja Lagos. Oregun Ikeja Lagos",₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Oregun +3736,Filling Station For Sale At Agidingbi Ikeja,Agidingbi Agidingbi Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3737,4 Bedroom Duplex,"Omole Phase1, Ikeja Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Omole +3738,New 4 Bedroom Duplex With Bq And Modern Facilities At Omole Phae 1 Ikeja Lagos,Omole Phase 1 Ikeja Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +3739,5 Bedroom Detached Duplex Ensuite With Bq,Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +3740,7 Acres Of Land For Sale,Hakeem Bello Alausa Ikeja Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Alausa +3741,"3 Bedroom Flats, Semi Detached Apartments",Ikeja Gra 2 Ikeja Gra Ikeja Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +3742,8 Units Of 3 Bedroom Flats In Ikeja Gra 1 With Bq For Sale,Ikeja Gra 1 Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +3743,Commercial Property 3 Floors Office Structure With 2 Large Warehouses Structure, Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3744,Fully Detached 7 Bedroom Duplex With 4rooms Bq For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +3745,Medical Facility For Sale,Lagos Mainland Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,GRA +3746,1 Acre Of Land Fenced And Gate,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Airport Road +3747,Executive Newly Built 4 Bedroom Seni Detached Duplex With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +3748,Warehouse On A 3 Acres Of Land For Sale At Oregun Ikeja,Oregun Ikeja Oregun Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Oregun +3749,Executive Brand New 5nos Of 5 Bedroom Terrace Duplex With A Room Bq,"Estate Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +3750,Brand New Executive 5bedroom Fully Detached Duplex With 2 Bq For Sale At Ikeja.,Ikeja Adeniyi Jones Via Allen Bus Stop. Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3751,Newly Built Detached 5bedroom Duplex For Sale At Adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3752,4bedroom Duplex With A Room Bq For Sale At Allen Avenue,Akin Taylor Estate Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +3753,4 Bedroom Office Space,Oregun Road Oregun Ikeja Lagos,₦,"1,500,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +3754,Tastefully Finished 8 Numbers Of 5 Bedroom Luxury Terrace Houses With Bq Each,"Akora Estate, Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +3755,5 Bedroom Duplex,Oduduwa Crescent. Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,1,5 beds,6 baths,6 Toilets,GRA +3756,4 Bedroom Terrace Duplex,. Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3757,A Demolishable Property For Sale On 4000 Sqm At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"375,000,000",0,1,0, beds, baths, Toilets,Adeniyi Jones +3758,5 Bedroom Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets,GRA +3759,Newly Built Fully Detached 5bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3760,Executive 5 Bedroom Duplex With A Room Bq,"Adeniyi Jones Estate, Ikeja Adeniyi Jones Ikeja Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +3761,Executive Brand New 5 Units Of 5bedroom Terrace Duplexes At Ikeja Adeniyi Jones For Sale.,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3762,Executive Brand New 8units Of 4bedroom Terrace Duplex For Sale At Ikeja Adeniyi Jones.,"Ikeja Adeniyi Jones, Off Allen Bus Stop. Adeniyi Jones Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3763,Executive Brand New 5 Bedroom Duplex With 2 Rooms Bq,Estate Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +3764,Furnished And Service 5 Bedroom Fully Detached Duplex With Swimming Pool,G.r.a Ikeja Ikeja G.r.a Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +3765,4 Bedroom Semi Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets,Alausa +3766,Executive 4 Bedroom Terraced Duplex With Bq,"Opebi, Ikeja Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +3767,Newly Built 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets,GRA +3768,A Newly Built Semi Detached 4bedroom Duplex For Sale At Adeniyi Jones,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3769,Newly Built All Ensuit 5bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3770,Furnished 4bedroom Terraced Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3771,Executive Brand New 8unit Of 4 Bedroom Terrace Duplexes With A Room Bq,Estate Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +3772,Newly Built 4bedroom Duplex With A Bq For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3773,2 Wings Of 3 Bedroom Duplex For Sale At Ikeja,Sir Gabriel Taylor Estate Allen Avenue Ikeja Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +3774,Blocks Of Flat For Distress Sale At Opebi.,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +3775,Lovely 6 Bedroom Fully Detached House With 4 (no) 2 Bedrooms Flat For Sale At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds, baths, Toilets,GRA +3776,Brand New 5 Bedroom Luxury Town House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +3777,Tastefully Furnshed 4 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +3778,"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,GRA +3779,Land For Sale @ Omole Phase Ii (best Option To Purchase),Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Ikeja Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3780,"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,GRA +3781,"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,GRA +3782,"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,GRA +3783,"Land Measuring 2,500 Sqm",Allen Avenue By Opebi Roundabout; Opebi Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3784,5 Storey Building Along Allen Avenue Road,Along Allen Avenue Close To Opebi Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3785,18000sqm (1.8 Hectares),Ajao Road Off Adeniyi Jones/awolowo Way Adeniyi Jones Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3786,Land Measuring 3 Acres,"Alausa, Ikeja Alausa Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +3787,40 Units Of 3 Bedroom Terrace Duplexes With An Inbuilt Maids' Room,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,1,0,4 beds,3 baths,4 Toilets,GRA +3788,Bareland Measuring 2600sqm,Afolabi Awosanya Street Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3789,"Land Measuring 2 Plots (1,428.761sqm)",On Oba Akran Road Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3790,Land Measuring 4200 M2,Awuse Estate; Opebi Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3791,A Well Built 4bedroom Terraces In Maryland,Mende Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +3792,Land Measuring 2 And A Half Plots,"Agidingbi Junction, Awolowo Way Ikeja Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3793,Berry Court Omole Phase 2 Extension,Magodo Ikeja Lagos,₦,"21,000,000",1,1,0, beds, baths, Toilets,Other Ikeja +3794,Newly Built 5 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"235,000,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +3795,5 Bedroom Detached Duplex With 2 Rooms Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +3796,"*for Sale: Fuel Station Off Agidingbi Road, Ikeja* Petrol Station For Sale With Transferable Dpr Licence Location Alausa Ikeja",Agidigbi Agidingbi Ikeja Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Agidingbi +3797,Newly Built 4 Bedroom Duplex With Modern Day Structure,"Amazing Grace Estate, Airport Road(ikeja) Ikeja Lagos",₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Airport Road +3798,Brand New 5 Bedroom Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3799,Newly Built 5 Bedroom Fully Detached Duplex,An Estate Off Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +3800,A Relatively New 5bedroom Duplex With A Bq Sitting On 450sqm Of Land,Omole Phase One Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets,GRA +3801,Massive Commercial Building On Land Measuring 2000sqm At Isaac John Street,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,GRA +3802,Luxury New Mansion This Property Finished Fully 5 Bedroom Detached Duplex And 2 Rooms Boy's Quarter,Ikeja Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +3803,For Sale On Allen Major Road,... Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3804,600sqm Land At Berry Court Estate Omole,Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3805,Newly Completed And Furnished 5 Bedroom Duplex With Bq,Magodo Phase 2 Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets,Omole +3806,In Allen Avenue (4 Storey Building The Wing Of Formal Mama Cass Restaurant,Allen Avenue Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3807,3700sqm Land For Sale At Ikeja,"Oba,akinjobi Way Ikeja Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3808,"Mixed Develop Land For Sale 1,500sqmat Ikeja Gra","At Adekunle Fajuyi Way,ikeja Gra Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,GRA +3809,"Residential Land For Sale 836sqm [email protected] Akintola Street Gra,","Ladoke Akintola Street Gra,lagos State Ikeja Gra Ikeja Lagos",₦,"160,000,000",0,0,0, beds, baths, Toilets,GRA +3810,A Massive Warehouse For Sale 1 Acres,Oba Akran Road Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3811,"20,000sqm Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3812,3486m² Mixed Develop Land Ikeja Gra For Sale,@adekunle Fajuyi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,GRA +3813,1600sqm Residential Land For Sale At Ikeja Gra,"Ladipo Bataye Street, Gra Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +3814,Purely Residential Land For Sale 1956sqm Ikeja Gra,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,GRA +3815,"Prime Land For Sale 1,500sqm For Sale At Ikeja Gra","At Showemimo Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +3816,Certificate Of Occupancy (c Of O),Gra Ikeja (ajisafe Opposite Senator Amosun House). Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3817,"5,500m² Land At Oba Akinjobi Way. Ikeja Fine Sale",Oba Akinjobi Way Ikeja Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3818,Multistory Commercial/industrial Building,Plotc 2a Ikosi Road Oregun Ikeja Oregun Ikeja Lagos,₦,"1,633,500,000",0,0,0, beds, baths, Toilets,Oregun +3819,4 Bedroom Detached Duplex With 2 Rooms Detached (bq),"Ikeja Gra, Ajisafe Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3820,"Bare Land 1,260sqm @joel.ogunnaike Str,ikeja For Sale","Joel Ogunnaike Start,ikeja Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +3821,"1,500sqm Land For Sale At Eso Close,ikeja Gra","At Eso Close,off Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,GRA +3822,Bare Land For Sale 3700sqm At Oduduwa Crescent Ikeja,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +3823,Prime Land For Sale Ikeja Gra Size:3400sqm,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +3824,"4,100sqm Land For Sale At Ikeja",At Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3825,"1000sqm Bare Land For Sale At Oduduwa Crescent, Ikeja Gra","Ladoke Akintola Street Gra,lagos State Ikeja Gra Ikeja Lagos",₦,"160,000,000",0,0,0, beds, baths, Toilets,GRA +3826,1625sqm Prime Land For Sale At Ikeja Gra,Adekunkle Fajuyi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +3827,"500sqm Prime Land At Oduduwa Cr,ikeja Grafor Sale","Oduduwa,crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"98,000,000",0,0,0, beds, baths, Toilets,GRA +3828,"Mixed Develope Land 1,100sqm At Oba Akinjobi Way Ikeja Gra",@oba Akinjobi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +3829,Newly Built 4 Bedroom Duplexes,"Off Oremeta Street, Oregun,ikeja Oregun Ikeja Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +3830,Registered Surveys,Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3831,A Newly Built 5 Bedroom Duplex Terrace With B/q,"Off Joel Ogunaike Street, G R A Ikeja. Ikeja Gra Ikeja Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +3832,A Newly Built 5 Bedroom Duplex Terrace With B/q,"Off Joel Ogunaike Street, G R A Ikeja. Ikeja Gra Ikeja Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +3833,A Brand New House 4bedroom Terrace Duplex With 1room Bq For Sale With Modern Finishing For Sale,"Off Opebi Road Ikeja, Opebi Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +3834,8 Units Of 4 Bedroom Plus Bq Condo Duplex At Awuse Estate Opebi.,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +3835,4 Bedroom Fully Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +3836,Tastefully Finished 4 Bedroom Fully Detached Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +3837,2 Bedroom Flat For Sale,Marries Court Ikeja Gra Ikeja Lagos,₦,"54,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +3838,188 Rooms 4 Star Hotel For Sale,Mma Road Airport Road(ikeja) Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +3839,32 Rooms Hotel For Sale,Maryland Maryland Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Maryland +3840,4 Bedroom Semi Detached With Bq,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3841,2 Units Of 1800 Square Meters Bare Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +3842,8 No. Luxurious Newly Built 5 Bedroom Fully Detached Duplex In A Mini Estate With Swimming Pool And Gym,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,7 Toilets,GRA +3843,4 Bdrm Det. Hse Plus 4 (nos) 60% Completed Terrace Apts On 2481 Sqm,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +3844,"Residential Land Measuring 3700 Square Meters For Sale At Ikeja Gra, Ikeja.",Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +3845,"4 Bedroom Fully Detached Duplex For Sale At Awuse Estate, Opebi",Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3846,6 Bedroom Duplex For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds, baths, Toilets,GRA +3847,Luxury 112 Rooms Hotel For Sale,Allen Avenue Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +3848,Six (6) Acres Of Land Located Along Airport Road (local Airport) Ikeja,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"2,340,000,000",0,0,0, beds, baths, Toilets,Airport Road +3849,Newly Built 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,6 beds,7 baths,7 Toilets,Opebi +3850,Newly Built 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"58,000,000",0,1,0,6 beds,7 baths,7 Toilets,Opebi +3851,Newly Built 3 Bedroom Flat At Off Allen Avenue Ikeja N40m,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +3852,"Newly Built 4 Bedroom Duplex With A Room Bq And 2 Sittings, Swimming Pool In A Mini Estate",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +3853,"30rooms Hotel Wit Open Roof Top On 1000sqm On Allen Avenue,ikeja Lagos","Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +3854,Irrestitble Five Bedroom Semi Detached Duplex + Bq At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +3855,For Sale: 2bedroom +bq,Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,2 beds, baths, Toilets,GRA +3856,A Commercial Building For Sale,Balogun Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3857,"Berry Court, Omole Phase Ii Extension Scheme Ii",Omole Phase 2 Extension Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +3858,Big Shop For Sale Directly On Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3859,Big Shop For Sale Directly On Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3860,Shop For Sale Directly On Awolowo Way Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3861,Shop For Sale Directly On Awolowo Way Ikeja,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3862,Newly Built Four Bedroom Terraced Duplex At Ikeja, Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,4 Toilets,Opebi +3863,Newly Built 5bedroom Fully Detached House With A 2 Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3864,Residential Land,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3865,Tastefully Furnished And Finished 5 Bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +3866,Newly Built 2units Of 5bedroom Maisonette With A Room Bq Each,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3867,Newly Built 2 Units Of 4bedroom Terrace Duplex With A Room Bq In A Serene Environment,"Opebi, Ikeja Opebi Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3868,Residential Land At Awuse Estate,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3869,Newly Built Of 7 Units Of 5bedroom Terraces And A Detached House With A Room Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3870,"Corner Piece Plots Of Land Measuring 1,968.76sqm",Agbaoku Street Off Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Opebi +3871,Affordable Land In Omole Phase Ii Lagos,Omole Phase Ii Extension Ikeja Lagos,₦,"16,000,000",1,1,0, beds, baths, Toilets,Other Ikeja +3872,Affordable Lands For Sale At Isheri North Lagos,Isheri North Ikeja Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets,Other Ikeja +3873,12 Units Of 4 Bedroom Condo Duplex Plus A Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +3874,2 Units Of Newly Built Terrace Duplexes,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +3875,Executive 12 Rooms Luxury Hotel,Balogun Off Lagoon Hospital Awolowo Way Ikeja Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3876,Lovely 5bedroom Detached Duplex With 2rooms Bq At Ikeja Behind Shoprite.,"Ikeja, Alausa Behind Shoprite. Alausa Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +3877,Luxurious 12 Rooms Hotel For Sale And Leasing Too At Ikeja Balogun.,Ikeja Balogun Bus Stop Off Awolowo Way. Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3878,Hotel At Ajao Estate Along Int. Airport,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +3879,Executive 5 Bedroom Duplex With Two Rooms Bq,Behind Shoprite Alausa Ikeja Alausa Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Ikeja +3880,A Brand New 3 Bedroom Semi Detached Duplex,Sariki Aro Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +3881,A Fully Detached 10 Bedroom Duplex With 1 Room B/q,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,10 beds,4 baths,4 Toilets,Allen Avenue +3882,85m 2units Of 4bedroom Duplex Dor Sale At Oregun Ikeja Lagos,Oregun Ikeja Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +3883,"Warehouse On A Property Of Approximately 6,800m2.", Oregun Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +3884,Executive 4 Bedroom Fully Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3885,Mansion, Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,9 baths,9 Toilets,GRA +3886,2 Plots Of Land Available In Oregun,Oregun Ikeja Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets,Oregun +3887,Newly Built & Tastefully Finished 5 Bedroom Detached House + Bq,. Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3888,Land Measuring 1251sqm (45m/plot),"Alhaji Muili Street By Oluyole Bus Stop, Kudirat Abiola Way Oregun Ikeja Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets,Oregun +3889,"Newly Built Four(4) Bedroom Terrace House Having All Ensuite Bathrooms, Dedicated Garage And Self Serviced Inside Awuse Estate",Awuse Estate Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +3890,For Sale 2500sqm Of Land At Mobolaji Bank Anthony Ikeja,Along Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3891,Newly Built 4/5 Bedroom Terrace Duplexes + Bq & Elevator,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3892,Skeletal 5 Floors Of Open Plan Offices Plus Warehouse Spaces Attached And Banking Hall,Acme Road Agidingbi Ikeja Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets,Agidingbi +3893,"Newly Built, Tastefully Finished, Luxury & Furnished Block Of 6nos 3brm Apartments + Bq Each & Pool @ Allen Avenue, Ikeja. #100m/flat",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets,Allen Avenue +3894,"*urgent Sale:* ???? *a Well Maintained/fairly New & Tastefully Furnished 4brm Terrace Duplex + Bq & Gen In A Serviced Mini Estate @ Opebi, Lagos.* *price: #85m.",Opebi Opebi Ikeja Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Opebi +3895,"*urgent Sales:* ???? *table Land Measuring 500sqm @ Oduduwa Crescent, Ikeja Gra, Lagos.* *price: #100m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,GRA +3896,"*urgent Sales:* ???? *a Demolishable Detached House + Bq On 3,700sqm Land @ Ikeja Gra, Lagos.* *price: #750m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +3897,"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 600sqm & 680sqm @ Odùduwà Cr., Ikeja Gra, Lagos.* *price: #150m Each, G. Consent.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +3898,"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 1,600sqm With Demolishable Bungalow Off Sowemimo Street, Ikeja Gra, Lagos.* *price: #260m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,GRA +3899,"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 870sqm @ Ikeja Gra, Lagos.* *price: #170m, G. Consent.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +3900,4 Bedroom Flat,"Sasegbon Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +3901,A Newly Built 3 Bedroom Terrace Building And Fully Seviced,Remi Fani Kayode Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +3902,A Newly Built 5 Bedroom Duplex In A Serene Neighborhood,Hamony Eastate Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +3903,Newly Built 4 Bedroom Duplex With 2 Sitting Room And A Store,"Church Street, Opebi Ikeja Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3904,3 Bedroom Flat With Boys Quarter,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +3905,Luxury 3 Bedroom Flat,"Remi Fani Kayode Street, Ikeja, Gra Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +3906,A Nice Looking 5 Bedroom Semidetach Duplex With Bq,Esugbayi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,6 beds,6 baths,6 Toilets,GRA +3907,A Luxury 3 Bedroom Terrace Building Fully Serviced And Well Furnished Kitchen With Swimming Pool.,Adeyemi Alakija Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +3908,"A New Terrace 4 Unit House, 4 Bedroom Duplex With Bq,furnished And Fully Ensuit In A Good Environment And Good Locatio",Ogunlowo Street Off Lagoon Hospital Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Awolowo Way +3909,5 Bedroom Duplex With 2 Rooms Boys Quarter,Dosumu Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +3910,Newly Built 5bedroom Duplex With Boys Quarter,"Victoria Odeniran Street, Salvation Opebi Ikeja Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Opebi +3911,Exquisite Semi Detached 5bedroom Duplex,Merit Residence Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +3912,Certificate Of Ownership,"3 Wura Esan Close,off Ashongbon Street Adeniyi Jones Ikeja Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +3913,40 Rooms Hotel/guest House,. Awolowo Way Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3914,Block Of 3 Bedroom Flats,Around Alade Market Allen Avenue Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds,2 baths,3 Toilets,Allen Avenue +3915,2 Plots Of Land,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3916,Newly Built Semi Finished Apartments,... Opebi Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Opebi +3917,4 Bedroom Terrace,Magodo Shangisha Alausa Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +3918,Exquisite Four Bedroom Duplex At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3919,Very Clean 5 Bedroom Semi Detached Duplex At Oregun Ikeja N55m,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oregun +3920,For Sale: Purpose Built Office Complex On 4 Floors Arranged In 2 Wings At Off Obafemi Awolowo Way Ikeja N110m,Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Awolowo Way +3921,A Tastefully Furnished 3bedroom Flat Upstairs And Vacant Possession.,Minima Estate Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,1,1,3 beds, baths,3 Toilets,Airport Road +3922,5 Bedroom Detached House With 3 Rooms Service Quarters On 2000 Square Meters Of Land,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,3 baths,4 Toilets,GRA +3923,"An Aluminium Manufacturing Company Comprising Of Equipment, Plant & Machinery, 2 Big Warehouses And Office Blocks",Billings Way Oregun Ikeja Oregun Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Oregun +3924,"4bedroom Duplex With 2 Rooms Bq In An Estate @ Adeniyi Jones, Ikeja 70m",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +3925,Property Comprising An Old (demolishable) Building & Bareland On Approximately 4000 Square Meters (1 Acre),Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3926,For Sale!!! 2 Units Of 6 Bedrooms Fully Detached Duplex With A Maid Bq At The Back,Awori Close Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds, baths, Toilets,Adeniyi Jones +3927,"Berry Court, Omole Ph 2 Extension 18m Per Plot",Omole Phase 2 Ikeja Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Omole +3928,Brand New 5 Bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,1,0,5 beds, baths, Toilets,GRA +3929,"4 Bedroom Terrace Duplex With A Room Bq In A Serene Close At Off Opebi Road, Ikeja Lagos.",Off Opebi Road Ikeja Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Opebi +3930,Newly Built 5 Bedroom Terrace Duplexes,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3931,Newly Built 5 Bedroom Terrace Duplex With Bq,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3932,Newly Built And Clean 5 Bedroom Terrace Duplexes In A Well Secured Estate.,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +3933,"Newlybuilt, Well Finished With State Of The Art Finishings 4 Bedroom Semi Detached Duplex, All Round Tiles, All Rooms Ensuite With Guest Toilet, Fitted Wardrobes Fitted Kitchen Cabinets With Shelves, Pop Ceiling, 3 Units",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +3934,Newly Built And Well Finished 4 Bedroom Terrace Duplex,Off Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +3935,Brand New 8 Units Of 4 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3936,3.8 Acres On Off Awolowo Way Ikeja Lagos. With A Deed Of Registered Conveyance,Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3937,Executive Newly Built 2wings 4 Bedroom Duplex With A Room Bq,Estate Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +3938,40 Units Of 3 Bedroom Terrace Duplexes With A Room Bq,At Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,3 beds, baths, Toilets,GRA +3939,Executive 6 Units Of Serviced Three Bedroom Flat,Off Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +3940,Executive 4 Bedroom Duplex With A Bq,Off Allen Bus Stop Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +3941,Executive Brand New 4 Bedroom Terrace With Two Rooms Bq,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +3942,Executive 4 Bedroom Semi Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Allen Avenue +3943,4 Bedroom Duplex,"Off Bayo Shodipo Street, Off Akinremi Street, Anifowoshe Ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Awolowo Way +3944,Executive 4wings Of 3 Bedroom Duplex Each Duplex Have Bq,Off Toyin Ikeja Toyin Street Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,4 baths,3 Toilets,Other Ikeja +3945,Newly Built 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Maryland +3946,Newly Built 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Maryland +3947,Newly Built 5 Bedroom Detach Duplex With A Room Bq In A Serene Estate,Akinola Cole Estate Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,1,6 beds,7 baths,8 Toilets,Adeniyi Jones +3948,900sqm Land With C Of O,Oba Akran Oba Akran Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3949,It Is Lovely Dry Land At Ikeja,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +3950,C Of O,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Opebi +3951,12 Rooms Hotel With C Of O,Balogun Bustop By Lagoon Hospital Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3952,Distress Sale: Dry And Fenced Land Measuring 1000sqm,Foluso Alade Street Opebi Ikeja Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +3953,1 And Half Plot Of Land,Aromire Street Allen Avenue Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds, baths, Toilets,Allen Avenue +3954,Newly Built 4 Bedroom Detached Duplex With Bq,Allen Allen Avenue Ikeja Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets,Allen Avenue +3955,One Acre Of Land With A Building, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +3956,9 Acres Of Commercial Land,Off Oba Akran Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3957,Beautifully Furnished 4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,0 baths,0 Toilets,Adeniyi Jones +3958,5 Bay Empty Warehouses With Administrative Blocks,"Along Kudirat Abiola Way (oregun Road), Alausa Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +3959,"Prime Land Measuring 10,000 Sqm",... Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +3960,Brand New Serviced 3bedroom Flat For Sale In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +3961,Absolutely Exquiste Brand New 4bedroom Terrace In Ikeja Gra For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +3962,Solid 3000sqm Land For Sale,Off Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3963,A Newly Build 4flat Of 3bedroom Flat At Punch Estate Ikeja Lagos,Punch Estate Mangoro Ikeja Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikeja +3964,Block Of Four 3bedroom Flat At Punch Estate By Airport Ikeja Lagos Title C Of O,Punch Estate Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3965,Newly Built 4bedroom Detached Duplex At Gra Ikeja Lagos,Femi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets,GRA +3966,A Bungalow On A Full Plot Of Land Ikeja Lagos,Adepeju Mangoro Ikeja Lagos,₦,"24,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3967,Brand New 5bedroom Duplex Detached With 2rooms Bq At Ikeja Gra On 300 Sqm Title C Of O,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets,GRA +3968,"Block Of 5 Nos Of 3bedroom & 3 Shops,1 Unit Of Mini Flat Warehouse Corner Piece Of 546 Sqm At Opebi Ikeja Title C Of O",Opebi Opebi Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Opebi +3969,A 900 Sqm At Oregun Ikeja Facing Major Road,Oregun Major Road Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oregun +3970,A Story House And Bq On A 1+ A Plot Of Land At Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3971,4 Numbers Of 3bedroom Flat Selling Per Flat Up And Dawn At Ikeja By Local Airport Inside Punch Estate,Punch Estate Airport Road(ikeja) Ikeja Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets,Airport Road +3972,"(7) Seven Plots Of Land At Punch Estate Ikeja By Airport,his Good For Hospital, Company, Hotel,schools,etc",Punch Estate At Babaponmile Mangoro Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3973,"Four Floor Building At Kodesho Ikeja,it Vacant Formally Used By Federal Ministry Of Labour",Kodesho Awolowo Way Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +3974,8 Flat On A Full Plot Land At Onipetesi Estate Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +3975,"*unbeatable Deal In Magodo Gra Phase 1!* *the Plush, Magodo Gra...epitome Of Luxury* *the Plush* Is The True Definition Of Quality Living With The Very Best Of All Modern Amenities. Guaranteed Roi In The Plush Is Projected To Be At Well Over 150% In 24 M",Magodo Gra Alausa Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,Alausa +3976,Newly Built Bungalow,Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,1,0,7 beds,7 baths,7 Toilets,GRA +3977,A Brand New 4 Bedroom Detached Duplex With A Room Self Contain,Grace Estates Close To Mma2 Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets,Airport Road +3978,Block Of 6 Units Of 2 Bedroom Duplex At Ikeja,21 Adesina Street Obafemi Awolowo Way Ikeja Lagos,₦,"155,000,000",0,0,0,2 beds,2 baths,3 Toilets,Awolowo Way +3979,2 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Ikeja,"31 Fani Kayode, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +3980,Brand New 4 Bedrooms Semi Detached Duplex With A Room Bq,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +3981,Brand New 4 Bedroom Semi Detached Duplex,Allen Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +3982,4bedroom Detached Duplex With 2rooms Bq,Via Oba Akran Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +3983,"2,000sqm Of Land","Adeniyi Jones, Ikeja Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +3984,Four Bedroom Duplex For Commercial Use At Ikeja, Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3985,2 Units Of Four Bedroom Duplex Plus Bq At Ikeja,Adeboye Solanke Street Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +3986,Luxurious Four Bedroom Terrace At Ikeja, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +3987,Fully Detached Five Bedroom Duplex With Four Room Bq At Ikeja,Corner Stone Estate Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +3988,Exquisitely Finished 4 Bedroom Flat For Sale At Ikeja,Off Adeniyi Jones Street Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths, Toilets,Other Ikeja +3989,5 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +3990,"Well Finished 3 Bedroom Terrace Duplex, Oba Dosumu",Oba Dosumu Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +3991,Brand New 4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +3992,Service 3 Bedroom Flat,Mende Villa Maryland Ikeja Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets,Maryland +3993,Tastefully Finished 4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +3994,Prestigious Hotel, Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +3995,Tastefully Finished 3 Bedroom Flat With Excellent Facilittes, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +3996,5 Bedrooms Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +3997,Spacious Dry Land (price Per Sqm), Ikeja Gra Ikeja Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +3998,5 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +3999,30 Plots Of Dry Land,Off Awolowo Road Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4000,Tastefully Finished 4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4001,"For Sale At Ikea Adeniyi Jones 1600sqmt Of Land At Akora Estate, Govt Consent",Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4002,2600sqm Land With Buildings Demolished Already With C Of O,Bisalap Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4003,"3,600sqm Land",By Oregun Road Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4004,"36,000 Sqm Bare Land On 9 Acres At Ikeja",... Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4005,Uncompleted Building Sitting On 700 Sqm, Oba Akran Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4006,2 Plots Of Land With A Solid Bungalow,... Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4007,40 Units Of 5 Bedroom Townhouses In Ikeja Gra, Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4008,Arces And Plots Of Land,Ikeja Ikeja Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4009,4 Acres Land,Agidingbi Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4010,Executive 5 Bedrooms Detached House,"3, Ogundana Allen Avenue Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,4 baths,5 Toilets,Allen Avenue +4011,4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4012,Luxurious 3 Bedrooms Flats,"2,talabi Adeniyi Jones Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +4013,Lovely Built 3 Bedroom Terrace Apartment With Bq At Ikeja Gra N50m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,GRA +4014,Two Wings Of 4 Bedroom Detached Duplexes With Bq,"Opebi End, Henry Adefowope Street, Opebi Ikeja Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,3 Toilets,Opebi +4015,Solid Plot Of Land,"24, Talabi Adeniyi Jones Ikeja Lagos",₦,"95,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4016,4 Bedroom Terraced Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +4017,Newly Completed 4 Bedroom Duplexes + Bq,. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4018,Luxurious 5bedrooms Detached House,"10,regina Coker Balogun Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +4019,A High Rise Office Building,5 7 Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +4020,Luxurious 5 Bedrooms Detached House,"10,regina Coker Awolowo Way Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +4021,2000 Sqms Land The Title Of The Property Is Governors Consent,"Mende,maryland,ikeja,lagos Mainland Maryland Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +4022,5 Acres Land With Registered Conveyance,Off Ajao Road Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +4023,Vacant 5bedroom Detached House With Mini Flat Bq On 600 Sqm Of Land Title C Of O Location At A Close In Omole Phase 1 Ikeja Lagos Going For 100 Million,Omole Of Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +4024,Newly Built And Well Finished 4 Bedroom Duplex With A Room Bq In A Good Secured Estate At Opebi,Opebi Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4025,Newly Built 4 Bedroom Duplex With A Room Bq Attached For Sale,Ogunsoji Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4026,Fully Detached 4 Bedroom Duplex With Bq,Off Agidingbi Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +4027,"Fenced And Gated Land Measuring 1,150sqm",Joseph Close Off. Alhaji Asabi Close Off Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4028,Land Measuring 2600 Sqm,Off Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4029,One Acre On Ladipo Oluwole,"Off Adeniyi Jones & Off Oba Akan, Close To Guinness Area Beside Chrisland School Oba Akran Ikeja Lagos",₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4030,"Land Measuring 8,820 Sqm",Ladipo Oluwole Street Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4031,"Land Measuring 2,400sqm",Ajao Road Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4032,Tate Of The Art 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +4033,"Newly Built And Well Finished 3 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq , All Round Tiles, Fitted Wardrobes, Pop Ceiling, Fitted Kitchen Cabinets And Shelves, Separate Gates.",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +4034,Brand New 4 Units Of 4 Bedroom Terrace,Church Street Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +4035,Warehouse,Oregun Close Oregun Axis Oregun Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Oregun +4036,Land Measuring 1 Acre,Ladipo Oluwole Street; Off Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4037,8 Units Brand New 5 Bedroom Terrace Duplex With 1b/r Bq,"Ikare Close, Orimolade Section, Akora Estate Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,5 Toilets,Adeniyi Jones +4038,680sqm Land, Oregun Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4039,"5 Bedroom House +2 Extra Rooms For Study And Luggage , + 2 Roombq, Swimming Pool, Big Compound Space ...150m Asking Negotiable",Omole Estate Awolowo Way Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds, baths,5 Toilets,Awolowo Way +4040,Fully Detached 4 Bedroom Duplex With Bq,Off Agidingbi Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +4041,Newly Built 4 Bedroom Terrace Duplex,Off Oregun Road Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oregun +4042,"Newly Built With State Of The Art , Well Finished And Clean 5 Bedroom Terrace Duplexes",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4043,Luxurious 4 Bedroom Apartment + Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +4044,Luxurious 3 Bedroom Apartment With Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +4045,Commercial Land Measuring 1 Acre,Directly Along International Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +4046,1100sqm Land In Ikeja,Central Business District (cbd) Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,7 Toilets,Alausa +4047,4 Bedroom Duplex With Guest Chalets Situated On 3482sqm Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4048,4 Bedroom Duplex + Bq, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4049,"2 Wings Of 5 Bedroom Duplex With A Bq And Lobby On 670 Sq Metres Land Within An Estate, Agidingbi, Off Acme Road, Ikeja. C Of O. N100m Asking.",Of Awolowo Way Awolowo Way Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +4050,A House,Oladapo Street Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Oregun +4051,5 Bedroom Duplex,Emmanuel Ikeja Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +4052,750sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4053,"2,000sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4054,500sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4055,Newly Built 8 Bedroom Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,8 Toilets,GRA +4056,500sqm Of Land,Gra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4057,13 Rooms Hotel,Tonade Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +4058,Newly Built Duplex With Swimming Pool And Gym +boys Quarter,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"420,000,000",1,1,1,6 beds,6 baths,7 Toilets,GRA +4059,Two Wings Duplex Of 4 And 3 Bedrooms + 1 Room Bq At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +4060,A Function School With 22 Class Room,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets,Opebi +4061,Newly Executive 6 Bedroom Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +4062,"8,200sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4063,3 Bedroom Semi Detached House With A Lovely Mini Flat Bq,Howson Wright Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,0 Toilets,Oregun +4064,An Exclusive Hotel On 2090 Square Metres,Toyin Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4065,4 Bedroom Duplex,. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4066,"10,460 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4067,3 Acres Of Land,Off Acme Road Ikeja Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4068,A Decent 4bedroom Terrace Duplex For Sale,Ogundana Estate Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +4069,5 Plot Of Land For Sale At Oregun Ikeja Lagos,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4070,Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4071,Brand New 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,5 Toilets,Adeniyi Jones +4072,A 5 Bedroom Duplex With 2 Rooms Bq,Crescent Estate Maryland Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Maryland +4073,A 4 Bedroom Terraced Duplex,Allen Avenue Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4074,4 Units Of 3bedroom Flat With Registered Conveyance For Sale In Ikeja,Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,2 Toilets,Airport Road +4075,A Coner Piece Plot Of Land,By Adeniyi Jones Oba Akran Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4076,Nice Block Of 3 Bedroom,Adeleke Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,2 baths,2 Toilets,Allen Avenue +4077,Land Measured 2700sqm With Old Bungalow,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4078,A Secondary School For Sale At Opebi Ikeja,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets,Opebi +4079,Brand New 4 Bedroom Terrace Duplex,"Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,1,4 beds,5 baths,4 Toilets,Adeniyi Jones +4080,A 4 Bedroom Detached House With A Room Bq,April Haven Court Ikeja G.r.a Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4081,1000sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4082,Lovely 5 Bedroom Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,5 Toilets,Airport Road +4083,"A Warehouse On Opebi On 1,800sqm",Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4084,Land For Sale,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4085,Block Of 4(nos ) 3bedroom Flat Off Allen Avenue Ikeja Lagos,Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +4086,A 350sqm Of Land,Allen Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4087,"1,000sqm Of Land",Opebi Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4088,Nice 3 Bedroom Flat,Allen Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,2 baths,3 Toilets,Allen Avenue +4089,2 Newly Built Fully Detached Duplex With A Room Bq,Off Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,5 Toilets,Adeniyi Jones +4090,All Room Ensuit 5 Bedroom Duplex With Cofo,Omole Phase2 Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +4091,A 230sqm Of Land,Phase 1 Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4092,5 Bedroom Duplex,Emmanuel Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +4093,5bedroom Duplex At Omole1 For Sale,Omole Omole Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +4094,A 5 Bedroom Detached Duplex,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +4095,4 Bedroom Duplex At Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +4096,School For Sale,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets,Opebi +4097,School For Sale,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets,Opebi +4098,Hotel For Sale,Tonade Area Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +4099,A 550sqm Of Land,Ogunusi Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4100,2nos 5bedroom Duplex +bq,Akinremi Street Obafemi Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,4 Toilets,Awolowo Way +4101,A 6 Bedroom Detached House With 2 Rooms Bq,Off Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4102,Lovely Built 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +4103,A Unit Of 3 Bedroom Flat,Abiodun Close Allen Avenue Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,2 baths,3 Toilets,Allen Avenue +4104,Land Measured 2700sqm With Old Bungalow,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,9 beds,8 baths,8 Toilets,GRA +4105,2nos Of 4bedroom Duplex,"2, Bayo Sodipo Oba Akran Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Ikeja +4106,6 Bedroom Duplex,Ladioke Akintola Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4107,5 Bedroom Duplex With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4108,3 Bedroom Flat For Sale,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets,Allen Avenue +4109,5 Bedroom Flat,Oregun Alausa Ikeja Lagos,₦,"38,000,000",1,1,0,5 beds,5 baths,5 Toilets,Alausa +4110,Averagely New 3bedroom Flat,Tejumoye Close Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,3 Toilets,Allen Avenue +4111,St Gloria School On An Acre Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +4112,A 3 Bedroom Flat,Mende Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +4113,Newly Built Terrace 4 Bedroom Duplex With 2 Rooms Bq At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +4114,A Wing Of 4 Bedroom Semi Detached House Plus 1 Bq,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +4115,4 Units Of 4 Bedroom Fully Detached Duplexes In A Mini Estate At Gra Ikeja.,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +4116,An Helicopter Service Property On 2 Acres Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +4117,C Of O,Isaac John Ikeja Gra Ikeja Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4118,A Five Bedroom Duplex,Faithfulness Omole Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +4119,Hotel For Sale,Tonade Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +4120,Fully Detached 5 Bedroom House At Ikeja Gra,Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4121,Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4122,A Mansion House,Seun Street Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4123,1000sqm Of Land,Gra Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4124,An 850sqm Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +4125,Nice 6 Bedroom Duplex With Boys Quarter,Ogundana Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets,Allen Avenue +4126,Open Plan Office Space Of 4bedroom Flat,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,4 beds,2 baths,2 Toilets,Allen Avenue +4127,Hotel With Restaurant,Tonade Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +4128,"4,000sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4129,4numbers Of 3bedroom Flat With Registered Conveyance For Sale In Ikeja,Dopemu Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,2 Toilets,Airport Road +4130,A 5 Bedroom Detached House,Off Sobo Arobiodu Street Ikeja G.r.a Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4131,5 Bedroom Duplex,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4132,A 3bedroom Flat Size Good For An Office Or Residential,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets,Allen Avenue +4133,Brand New 6 Bedroom Duplex With A Room Bq,Off Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,6 Toilets,Adeniyi Jones +4134,A 4 Bedroom Detached House With A Room Bq,Off Oduduwa Crescent Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4135,A 5 Bedroom Detached House With 2 Rooms Bq,Isaac Jones Street Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4136,3 Bedroom Terrace House + A Room Bq, Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +4137,5 Bedroom Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4138,"3,000 Square Metres Office Space",Off Agidingbi Agidingbi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4139,Well Finished 4 Bedroom Semi Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4140,3 Bedroom Flat,Off Oregun Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +4141,10 Bedroom House,Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +4142,4 Bedroom Duplex,Ikeja Gra Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets,Awolowo Way +4143,Governors Consent,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Adeniyi Jones +4144,Luxury 3 Bedroom Apartments With Excellent Facilities,Gra Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +4145,6 Units Of Newly Built 2 Bedroom Flat With 2 Rooms Bq At Ikeja,Oritse Street Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,3 Toilets,Awolowo Way +4146,Land For Sale At Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4147,6 Floors Of 500 Sqm Office Space In Ikeja,Opposite Refuge Mortgage Bank Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,6 Toilets,Opebi +4148,Irresistible Eight Bedroom Detached Duplex At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,8 Toilets,Adeniyi Jones +4149,Decent Complex + Penthouse At Ikeja, Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4150,Newly Built 4 Bedroom Duplex At Ikeja,Longe Street Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +4151,4 Units Of Newly Built 4 Bedroom Duplex + Bq At Ikeja, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4152,Newly Completed And Tastefully Finished 2wings 4bedrooms Semi Detached House Duplex With 2rooms Massive Penthouse On Each Unit On 2 Floors,Opebi Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4153,Newly Built 4 Bedroom House At Pristine,Pristine Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,GRA +4154,Brand New 5 Bedroom Terrace Houses With 1 Room Service Quaters,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +4155,2100sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4156,4200sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4157,Executive 5 Bedroom Detached Duplex At Sobo Arobiodun Street,Sobo Arobiodun Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4158,Full Plot Of Land At Ogunshefunmi Street,Ogunshefunmi Street Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4159,Land,. Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4160,4 Bedroom Terrace Duplex,Royal Estate Alausa Alausa Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +4161,4 Bedroom Terrace Duplex,M K O Alausa Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Alausa +4162,Well Finished And Well Maintained 3 Bedroom Flat In A Block Of 6 Flats,Opebi Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +4163,700sqm Of Land At Oduduwa Crescent,Oduduwa Crescent Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4164,6500sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4165,5 Bedroom Duplex On Isaac John Street,Isaac John Street Ikeja Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4166,3800sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4167,"3, 4, 5 Bedroom Terraces And Semi Detached Duplexes",Ikeja Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4168,Seven Bedrooms Detached House With4 Living Rooms And 2 Floor Backhouse,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +4169,Land,Opebi Allen Opebi Ikeja Lagos,₦,"40,000,000",0,1,0,0 beds,0 baths,7 Toilets,Opebi +4170,4 Bedroom Detached House With 2 Rooms Bq, Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oregun +4171,A Block Of Flats,Pade Odanye Close Off Adeniyi Jones Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4172,"Affordable Land For Sale In Magodo Gra, Ikeja(adloyaty)",Magodo Gra Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,GRA +4173,3 Bedroom Flat,Pade Odanye Close Off Adeniyi Jones Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4174,Fantastic 4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,1,4 beds,5 baths,5 Toilets,GRA +4175,The Berry Court,Omole Phase 2 Ikeja Lagos,₦,"5,000,000",1,1,0, beds, baths, Toilets,Omole +4176,Newly Built 8 Unit Of Luxury 4bedroom Detached Houses On Three (3) Floor,"Ikeja Gra, Ikeja, Lagos State Ikeja Gra Ikeja Lagos",₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +4177,2 Bedroom Triplexes Omega Court Phase 1 And 2,"Victoria Odediran Street, Salvation Road Opebi Ikeja Lagos",₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Opebi +4178,"???? Semi Direct Brief For Sale Oduduwa Crescent Gra Ikeja Lagos Old Detached House On 2,000 Sq Meter Priece: 400 Million Asking Title: Lagos State Registered Title Call: Taiye [redacted]91 Oretayos Global Services","Oduduwa Crescent Ikeja Gra, Ikeja Lagos Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,GRA +4179,"90% Completed 4units Of 4 Bedroom Detached House, Plus 4units Of 60% Completed Terrace Aparments On 2481 Sq Mt Land",Sasegbon Street Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +4180,Purpose Built Office Complex On 4 Floors Arranged In 2 Wings And A Penthouse. Other Ancillary Building Includes A Generator House And A Gate House,Afisman Drive Off Akinremi Street Anifowose Ikeja Lagos Oba Akran Ikeja Lagos,₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +4181,"For Sale: Purpose Built Office Complex On 4 Floors Arranged In 2 Wings And A Penthouse. Other Ancillary Building Includes A Generator House And A Gate House @ Afisman Drive, Off Akinremi Street, Anifowose, Ikeja. N110m (negotiable).","Afisman Drive, Off Akinremi Street, Anifowose, Ikeja. N110m (negotiable). Adeniyi Jones Ikeja Lagos",₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets,Adeniyi Jones +4182,"3 Bedroom Fully Detached, Terrace And Flats",Ikeja Ikeja Gra Ikeja Lagos,₦,"135,125,000",1,1,0,3 beds,3 baths, Toilets,GRA +4183,5 Bedroom Semi Detached Duplex With Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths, Toilets,GRA +4184,8 Nos. 5 Bedroom Terrace Duplex + 1 Room Bq,Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths, Toilets,Adeniyi Jones +4185,News Newly Built 4 Bedroom House With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +4186,Newly Built Terraced 4bed Suplex,Estate Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Allen Avenue +4187,Dry Standard Plot Of Land,Opebi Link Road Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4188,Newly Built 6 Bedroom Duplex All Ensuite,Gra Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4189,Solid 7 Bedroom Detached House + Pent House With A Storey Building Of 2 Nos 2 Bedroom Flat,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +4190,2 Units Of 4 Bedroom Flat With 2 Units Of 2 Bedroom Bq,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oregun +4191,"Deluxe 5 Bedroom Terraced Duplex In Akora Villas Estate, Adeniyi Jones","Akora Villas Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4192,"A Strategically Located 4,000sqm Land Fenced And Gated Within A Close On Oduduwa Crescent Ikeja G.r.a","Oduduwa Crescent, Ikeja G.r.a Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +4193,8 Bedroom House For Sale At Ikeja Gra,Lkeja Gra Lagos Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4194,2 Units Of 4 Bedroom Flat,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets,Oregun +4195,600sqm Of Land For Sale At Omole Phase 2 Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets,Other Ikeja +4196,600sqm Of Land For Sale At Omole Phase 2 Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets,Other Ikeja +4197,"1900sqm At Joel Ogunaike Opposite Country Club, Ikeja Gra N680m",Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,GRA +4198,"A Functioning 20 Rooms Hotel For Sale Off Allen Ave, Ikeja",Ogundana Street Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets,Allen Avenue +4199,Two Plot Of Land Opebi Road,Opebi Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4200,Block Of 6 Flats,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +4201,Tastefully Finished 5 Bedroom Duplex With Bq,Adeniyi Jones Axis Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4202,3bed Room Flat,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +4203,Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4204,3 Town Houses In One Compound,Allen Avenue Allen Avenue Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4205,6 Bed Room Duplex, Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +4206,4bed Room Duplex,Magodo Shangisha Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Ikeja +4207,Two Wing Duplex,Toyin Toyin Street Ikeja Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +4208,Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4209,Block Of 4 Flats,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,10 beds,9 baths,9 Toilets,Awolowo Way +4210,3story Building,Ikeja Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths,9 Toilets,Other Ikeja +4211,Newly Built Luxurious Fully Furnished Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +4212,"18,300sqm (4.5acres) Land For Sale",... Obafemi Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4213,A 4 Bedroom Detached House With 2 Rooms Bq,Off Adeniji Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4214,Commercial Building Facing A Very Busy Major Highway For Sale @ Distress Price,Ikeja Lagos,₦,"70,000,000",1,0,0,8 beds,8 baths,8 Toilets,Other Ikeja +4215,Luxury 5 Bedroom Fully Detached House,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4216,"Land Measuring 5, 100 Sqm For At Joel Ogunaike Ikeja Gra Lagos",Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,GRA +4217,"Land Measuring 1,200 Sqm For Sale At Olowu Ikeja Lagos",Olowu Street Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4218,"1, 600 Land Fenced And Gated For At Ikeja Gra Lagos",Off Sowemimo Strret Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,GRA +4219,"Land Measuring 2, 550 Sqm For Sale At Ladoke Akintola Ikaja Gra Lagos",Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,GRA +4220,"4, 000 Sqm Of Land For Sale Off Adeniyi Jones Avenue Ikeja Lagos",Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4221,5bedroom Super Luxury Detached Duplex Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4222,"5 Bedrooms Storey Building Luxury Tastefully, Finished, With Swimming Pools At Ikeja Gra",Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4223,Land Measuring 670 Sqm On Corner Piece For Sale At Ajao Estate Lagos,Ajao Estate Lagos Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Airport Road +4224,800 Sqm Of Land For Sale At Oba Akran Ikeja Lagos,Oba Akran Street Oba Akran Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4225,"Land Measuring 27, 000 Sqm For Sale At Oba Akran Ikeja Lagos",Oba Akran Street Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4226,1.6 Hectares (4 Acres) Of Land For Sale Close Muritalla Mohammed Airport Mm2 Ikeja Lagosa,Airport Road Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +4227,Land Measuring 500 Sqm For Sale At Off Isaac John Ikeja Gra Lagos,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,GRA +4228,500 Sqm Of Land For Sale At Off Oduduwa Close Ikeja Gra Lagos,Oduduwa Close Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,GRA +4229,2 Acres Of Land For Sale At Opebi Allen Ikeja Lagos,Opebi Allen Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Opebi +4230,"5,391 Sqm Of Land For Sale A Long International Airport Road Lagos",International Airport Road Lagos Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Airport Road +4231,Newly Built 3 Units Of 3 Bedrooms Semi Detached Duplex Self Compound,Ikeja Lagos,₦,"34,000,000",0,1,0,3 beds,4 baths,5 Toilets,Other Ikeja +4232,2500 Square Metres Land, Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4233,7 Bedroom Detached House,Off Salvation Road Opebi Ikeja Lagos,₦,"295,000,000",0,0,0,7 beds,7 baths,8 Toilets,Opebi +4234,A Tastefully Finished 3 Bedroom M Block Of Flat,Abule Ogba Ikeja Lagos,₦,"16,500,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +4235,Warehouse Factory Block On 2.948 Acres Of Land,Off Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4236,Luxury 6 (nos) Serviced 3 Bedroom Apartment,Off Bamishile Street Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +4237,Newly Built 5 Bedroom Town House,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4238,3 Bedroom Flat With Boy's Quarters, Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,2 baths,3 Toilets,Oregun +4239,A Well Finished & Fully Furnished 3 Bedroom Serviced Apartment,Ikeja Lagos,₦,"5,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Ikeja +4240,Newly Built 4 Bedroom Town House,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4241,5 Bedroom Terrace Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4242,Newly Built (80% Completed)4 Bedroom Terrace Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets,Adeniyi Jones +4243,Fully Serviced 4 Bedroom Terrace Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4244,5 Bedrooms Fully Detached Luxury Duplex With Bq,Off Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +4245,5 Bedroom Fully Detached House, Mobolaji Bank Anthony Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Awolowo Way +4246,Fully Detached House On 2870 Sqm Land,Off Shobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,4 baths,4 Toilets,GRA +4247,2 Wings Semi Detached 4 Bedrooms Duplex,Street Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,3 Toilets,Allen Avenue +4248,5 Bedroom Duplex With Servants' Quarters,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4249,5 Bedrooms Detached Duplex With 1 Room Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4250,4 Bedrooms Terrace Duplex With Bq,Street Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4251,1000m2 Double Winged 4 Bedrooms Semi Detached Duplex(dilapidated Building/tenement House),Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4252,4 Bedrooms Terrace Building With 1 Bedroom Bq,Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4253,3 Bedroom Terrace Duplex,Mimimah Estate Airport Road(ikeja) Ikeja Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +4254,10 Acres Of Land At Ikeja,Oba Akran Ikeja Lagos,₦,"800,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4255,"Land, Apartment, House",Omole Phase 2 Extension Awolowo Way Ikeja Lagos,₦,"5,000,000",1,1,0,4 beds,4 baths,4 Toilets,Awolowo Way +4256,4units Of Exquisitely Designed And Luxuriously Finished Semi Detached Duplexes For Sale At Adeniyi Jones Ikeja Lagos Nigeria,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +4257,8units Of Brand New 5bedroom Fully Detached Houses For Sale In Ikeja Gra.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,GRA +4258,84rooom Hotel For Sale In Ikeja Close To The International Airport.,Off Mobolaji Bank Anthony Way. Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,700,000,000",1,0,1, beds, baths, Toilets,Awolowo Way +4259,How To Get Luxury Apartments At Affordable Prices In Nigeria,Ikeja Lagos,₦,"3,500,000",1,1,0, beds, baths, Toilets,Other Ikeja +4260,3 Bedroom Estate Flat In Ikeja Gra For Sale,Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,3 beds,3 baths,4 Toilets,GRA +4261,4 Bedroom Semi Detached Duplex For Sale In Omole Phase Kw 2341,Omole Phase 1 Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets,Omole +4262,5 Bedroom Detached Duplex For Sale In Omole Phase 1 Kw 2340,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets,Omole +4263,Land For Sale In Omole Ikeja For N16m,Omole Ikeja Lagos,₦,"16,000,000",0,1,0, beds, baths, Toilets,Omole +4264,Uncompleted Block Of Flats,Bradford Street Off Kudirat Abiola Way Oregun Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +4265,Dry 100% Land,Magodo Gra Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,GRA +4266,"A Plot Of Land Measuring 974sqm On Awolowo Way, Ikeja",... Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4267,New Well Finished 5 Bedroom Duplex,Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4268,Newly Built Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +4269,Detached 5 Bedroom Duplex Plus 2 Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4270,Newly Built 3 Bedroom Flat At Ikeja,Awolowo Way Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Awolowo Way +4271,714sqm Land With Demolishable Bungalow For Sale I,... Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4272,Warehouse On 9 Acres In Ikeja Industrial Estate For Sale:, Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4273,Newly Built 4 Bedroom Detached House At Ikeja Gra N160m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +4274,6 Units Of 3 Bed Room Flat @ Allen Avenue,Allen Avenue Allen Avenue Ikeja Lagos,₦,"650,000,000",1,1,0,3 beds,2 baths,3 Toilets,Allen Avenue +4275,Plots Of Land,0 Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4276,5 Bedroom (all En Suite) Bungalow For Sale In Ikeja Kw 1409,Magodo Phase 2 Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths, Toilets,Omole +4277,2 Nos Of 5 Bedroom Semi Detached Duplex For Sale Kw 1404,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths, Toilets,Allen Avenue +4278,"3,000sqm Of Land",Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4279,Hotel For Sale At Ikeja Kw 1946,Opebi Ikeja Lagos,₦,"180,000,000",0,0,1,10 beds,10 baths,10 Toilets,Opebi +4280,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4281,Massive Plaza For Sale (kw1201),Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Opebi +4282,Exquisite 5 Bedroom Duplex For Sale In Omole Phase 1 Kw 2096,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets,Omole +4283,6 Storey Building Office Complex For Sale At Ikeja Kw 1421,Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +4284,4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4285,6 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4286,3 Bedroom Duplex For Sale In Ikeja Kw 1757,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths, Toilets,Adeniyi Jones +4287,5 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4288,4 Bedroom Semi Detached Duplex. (kw 184),Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,6 baths,6 Toilets,Oregun +4289,Duplex,0 Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4290,4 Bedroom Terraced Duplex,Opebi Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +4291,Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4292,Block Of 18 Luxury Flats,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +4293,New And Exquisitely Finished 5 Bedroom Terraced Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4294,4 Bedroom Terraced Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4295,4 Bedroom Bungalow With 1 Room B/q For Sale In Ikeja Kw 1394,Gbemisola Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,2 baths, Toilets,Allen Avenue +4296,Exquisitely Finished 4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,4 baths,0 Toilets,Allen Avenue +4297,Tastefully Designed 5 Bedroom Detached Duplex With 1 Room B/q For Sale At Ikeja Gra Kw 1462,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths, Toilets,GRA +4298,Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4299,Land Measuring 2500 Square Metres,Alausa Cbd Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +4300,For Sale: 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4301,6 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +4302,A Well Maintained Fully Detached 5 Bedroom Duplex,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"135,000,000",1,0,1,5 beds, baths, Toilets,Agidingbi +4303,2 Bedroom Flat,0 Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,GRA +4304,6 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4305,2 Plots Of Land For Sale At Ikeja Kw 2108,Wempco Road Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4306,Newly Built And Tastefully Designed 5 Bedroom Semi Detached Duplex For Sale In Ikeja Gra Kw 1465,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths, Toilets,GRA +4307,4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4308,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,5 Toilets,GRA +4309,Amazing Brand New 4 Bedroom Detached Duplex For Sale In Allen Avenue Ikeja Kw 1573,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Allen Avenue +4310,Newly Built 4 Bedroom Semi Detached Duplex,Omole Phase 2 Extension Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,2 baths,3 Toilets,GRA +4311,25 Acres Large Industrial Land With Structures,Industrial Estate Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4312,Functional Ceramic Tiles Producing Factory Sitting On 8 Acres Of Land,. Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4313,House For Sale. A Purposed Designed Commercial Property With Approval For 6 Floors.,Oba Akran Ikeja Lagos,₦,"300,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4314,188 Rooms 4 Star Hotel,Airport Road Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +4315,For Sale: A Newly Built Semi Finished 5 Bedroom Semidetached Unit With An Attached Bq; Job Vacancy!!! A Qualified Estate Surveyor With 5 Years Experience And Has Passed Niesv Exams Should Send Applications And Cv To [redacted],Salvation Road Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,5 beds, baths, Toilets,Opebi +4316,4 Bedroom Terrace Duplex With 1bedroom Bq,Maryland Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +4317,Massive 5 Floor Commercial Property,Acme Road Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +4318,Tastefully Finished 4 Bedroom Semi Detached Duplex,Omole Estate Phase Ii Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,3 baths,3 Toilets,GRA +4319,"2nos Of A Storey Buildings Of 6flats Of 3bedroom Flats, 4flats Vacant Already Of Land Measured 856.703sqm With [email protected] Ogba Ikeja",Oba Akran Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +4320,Four Bedroom Terrace Building With Bq,"Awuse Estate, Opebi Opebi Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Opebi +4321,"Outright Sale: A Large Warehouse With An Administrative Block Of Offices Built On 1acre Of Land. Price: ? 950,000,000 (negotiable).",Morrison Cresent Oregun Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Oregun +4322,Berry Court Omole Phase2,Omole Phase 2extension Ikeja Gra Ikeja Lagos,₦,"16,000,000",1,1,0, beds, baths, Toilets,GRA +4323,"4 Bedroom Duplex With 3 Bedroom B/q All Ensuite At Awuse, Estate Opebi",Awuse Estate Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,6 baths,6 Toilets,Opebi +4324,Berry Court Apartment,Imole Phase 2 Extension Ikeja Gra Ikeja Lagos,₦,"60,000,000",1,1,1, beds, baths, Toilets,GRA +4325,An Exclusively Built 5 Bedroom Duplex With Bq In A Conducive Environment Of Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,5 Toilets,Adeniyi Jones +4326,Buy A House And Win A Car,Omole Phase 2 Ikeja Gra Ikeja Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets,GRA +4327,Full Plot Of Land With 2 Nos Of 2 Bedroom, Oregun Ikeja Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Oregun +4328,4 (nos) 4 Bedrooms Detached Houses Plus 60% Completed 4 (nos) 4 Bedroom Terrace Apartments,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4329,Nice 3bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +4330,4 Bedroom Duplex,Allen Av Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4331,Newly Built 4 Bedroom Terrace Duplex For Sale At Opebi Ikeja N55m,Off Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4332,4 Bedroom Semi Detached Duplex At Howson Wright Estate Olusosun N40m,Olusosun Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +4333,Newly Built 4 Bedroom Terrace Duplex At Opebi Ikeja N68m,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4334,Brand New & Tastefully Finished 4 Bedroom Fully Detached Duplex At Allen Avenue Ikeja N63m,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +4335,A Standard Full Plot,Off Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4336,Luxury New 4bedroom Duplex,Nice Environment Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Allen Avenue +4337,5 Bedroom Duplex, Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +4338,Luxury 3bedroom Flat For Sale,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +4339,Newly Built Of 4br Terrace Duplex + 1rm Bq In Opebi Ikeja #50m,Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4340,Well Maintained 5bed Room Duplex,Omole Ikeja Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Omole +4341,5 Bedroom Duplex,Ikeja Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4342,3 Bedroom Apartment Unit With Payment Option, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,2 baths,0 Toilets,Adeniyi Jones +4343,Newly Built 3 Bedroom Terrace Duplex At Adeniyi Jones Ikeja N40m,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +4344,4 Bedroom Duplex,Allen Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4345,For Sale. A Block Of 4flat Of 3bedroom Each At Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Awolowo Way +4346,Property For Sale Olowu Street Ikeja,Olowu Street Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4347,A Plain Solid Dry Land Measuring About 500sqm,Off Odegbami Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0, beds,0 baths,0 Toilets,Adeniyi Jones +4348,Newly Built 5bedrooms Duplex With A Room Bq,Omole Estate Phase 1 Agidingbi Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agidingbi +4349,4 Nos 3 Bedrooms Flats,"4,ogunnusi Rpadroad Agidingbi Ikeja Lagos",₦,"25,000,000",0,0,0,3 beds,6 baths,6 Toilets,Agidingbi +4350,The Plush Estate Magodo Gra,Magodo Gra Phase 1 Isheri Off Berger Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4351,5 Bedroom Luxury Detached House With 3 Rooms Servant Quarters,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +4352,3 Bay Warehouses With Offices Inside And A Service Reception,Morison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oregun +4353,Great Land Offer At Magodo Phase 2......readily Available,Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +4354,A Semi Deterch Duplex In Opebi,Opebi Allen Avenue Ikeja Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Allen Avenue +4355,4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +4356,5 Bedroom Duplex At Cement Ikeja With C Of O,Cement Mangoro Ikeja Lagos,₦,"18,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +4357,"Newly Built And Tastefully Finished 2 Units Of Luxury 5 Bedroom Fully Detached Houses + Bq Each In An Estate Off Adeniyi Jones, Ikeja, Lagos.",Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4358,"Tastefully Finished 3 Bedroom Flats (1st Floor) And 4 Bedroom (ground Floor) All Ensuite With 2 Units Of Mini Flat Bq At Marwa Brook Estate, Cbd Agidingbi, Ikeja.",Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4359,"Modern Tastefully Finished And Well Built 5 Bedroom Fully Detached With Spacious Fitted Kitchen In An Estate At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4360,Distress Sale Four Bedroom Duplex,Airport Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +4361,House,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +4362,Estate Land For Sale; Berry Court Omole Phase Ii Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets,Other Ikeja +4363,Fairly New 4 Bedroom Terrace House With 1 Room Boys Quarter,Oroleye Street Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4364,Well Maintained 7 Bedroom Duplex With 4rooms Bq Inside Estate Off Adenyi Jonse On Land Is 750sqm.,"In Well Secured Estate, Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos",₦,"135,000,000",0,0,0,7 beds,7 baths,7 Toilets,Adeniyi Jones +4365,Prime Commercial Land 4.17 Acres Corner Piece At Allen Avenue Round About,Bounded By Obafemi Awolowo Road. Allen Avenue. Ikeja Medical Road And Afolabi Aina Street. Awolowo Way Ikeja Lagos,₦,"3,500,000,000",0,1,0, beds, baths, Toilets,Awolowo Way +4366,2 Wings Of 4 Bedrooms Duplexes,"Alhaji Jimoh Street, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +4367,4 Plots Of Dry Land With C Of O At Oregun,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Oregun +4368,4 Bedroom Duplex With A Room Bq,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Other Ikeja +4369,Luxury Hotel + Pool,At Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +4370,Newly Built 3bedroom Terrace Duplex With Modern Finish,"Off Adeniyi Jones, Off Ajao Road Adeniyi Jones Ikeja Lagos",₦,"35,000,000",0,1,0,3 beds,2 baths,3 Toilets,Adeniyi Jones +4371,Land Measuring About 5948sqm For Commercial Purposes,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4372,Luxury Hotel,Off Open I Allen Way Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +4373,"8 Units Of 5 Bedroom Fully Detached Duplex Plus Inbuilt Bq + S/pool, With Modern Finishing In A Mini Court .",At Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"255,000,000",0,1,0,5 beds,6 baths,6 Toilets,GRA +4374,"Units Of 4, 3 And Mini Flats","Marwa Brook Street,cbd. Agidingbi Ikeja Lagos",₦,"65,000,000",0,0,0,7 beds,0 baths,0 Toilets,Agidingbi +4375,"8 Units Of Newly Built Of 5 Bedroom Terrace Duplex On 2floors With Bq Each,pumping Machine ,dedicated Central Generator Etc.",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +4376,A Black Of Demolishable Duplex With Bq On 810sqm Of Land In A Well Secured Environment,At Off Allen Road Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4377,2 Nos Of 3 Bedroom Flat,Off Allen Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Opebi +4378,Functional Event Centre,Off Oregun Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4379,"4bedroom Bungalow With 2sitting Room Plus 2rooms Bq On 680sqm In An Estate, Adeniyi Jones ,ikeja",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets,Adeniyi Jones +4380,"Newly Built 6 No's Of 3 Bedroom Luxury Flats With 1 Room Service Quarter Each On 1,000sq Meters,s/pool, Fitted Kitchen, Cctv Security, Elevator, Etc",Off Allen Road Allen Avenue Ikeja Lagos,₦,"600,000,000",0,1,0,3 beds,4 baths,4 Toilets,Allen Avenue +4381,Massive Hotel At Ikeja,Muritala Muhammed Way Airport Road(ikeja) Ikeja Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +4382,A Beautiful Furnished 4bedroom Terrace Duplex (pay And Start Cooking) Of (4units In The Compound) With A Bq In An Estate,In A Secured Serene Environment At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Adeniyi Jones +4383,8 Plots Of Land,Along Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +4384,Four Units Of Tastefully Finished 4 Bedroom Terrace Duplexes With A Room Bq.,Off Opebi Road Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +4385,5 Bedroom Detached Duplex In A Well Secure Estate At Adeniyi Jones Ikeja,In A Well Secured Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +4386,"Executive Newly Built 5 Bedroom House On 3floors With A Study, 3 Sitting Areas, Fully Fitted Kitchen, Cctv, Intercom Etc",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +4387,Four Units Of Tastefully Finished 4 Bedroom Terrace Duplexes With A Room Bq.,Off Opebi Road Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Opebi +4388,6units Of 4br Terrace Duplex,Allen Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4389,A Block Of Demolishable Building On Full Plot Of Land In A Well Secured At Adeniyi Jones,In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets,Adeniyi Jones +4390,Six Bedrooms Semi Detached Duplex, Airport Road(ikeja) Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets,Airport Road +4391,"5 Bedroom Fully Detached Duplex On 2foors With Spacious Rooms, Fitted Kitchen, Etc In An Estate At Adeniyi Jones Ikeja",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +4392,The Centurion Collection (ikeja Government Reserved Areas),"Olugbayi Street, Ikeja, Gra Ikeja Gra Ikeja Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +4393,4 Bedroom In Prime Location In Ikeja,Salvation Road Opebi Ikeja Lagos,₦,"37,500,000",1,1,0,4 beds,4 baths,5 Toilets,Opebi +4394,Off Plan 2 Bedroom Apartments In Opebi,Salvation Road Opebi Ikeja Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Opebi +4395,Newly Built 5bedroom Triplex At Prime Location In Opebi,Salvation Road Opebi Ikeja Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Opebi +4396,"2units Of 3 Bedroom Duplex, 2units Of 3 Bedroom Apartment With 1unit Of 2 Bedroom Flat",Oregun Oregun Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +4397,6 Bedroom Duplex With 2 Rooms Bq On 1000 Square Metres,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4398,"4 Spacious Bedroom Terrace Development With A Study, A Laundry, A Room Bq And 3 Cars Parking",Ali Balogun Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4399,"1781 Square Meters Land At C B D Alausa, Ikeja",Central Business District Alausa Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Alausa +4400,"Luxury 5 Bedroom Detached House At Awuse Estate, Opebi","Henry Adefowope Street, Awuse Estate Off Opebi Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +4401,4 Bedroom Flat With Bq,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4402,Newly Built 6 No. Luxurious Flats For Sale,"Cocosheen Close, Off Allen Avenue, Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,2 baths,3 Toilets,Allen Avenue +4403,Corner Piece Two Wing Duplexes Of 4bedrooms Each With Bq,"52, Ajanaku Street, Opebi, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"230,000,000",0,0,0,4 beds,6 baths,6 Toilets,Opebi +4404,Newly Built Three Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,GRA +4405,Six (6) Bedroom Terrace Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +4406,Newly Built Four Bedroom Semi Detached Duplex In A Serene Environment,Odegbami Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4407,Five Bedroom Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +4408,Luxury Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,1,0,6 beds,5 baths,6 Toilets,GRA +4409,4 Bedroom Terrace House With 2 Sitting Rooms In Ikeja,Opposite Police Command Headquarter Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4410,5 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,1,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4411,One Acre Of Land In A Serene Neighborhood,Inside Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,GRA +4412,Plaza / Complex / Mall For Sale,"2, Tokunboh Alli Street, Off Toyin Street, Ikeja, Lagos., Allen, Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0, beds,8 baths,10 Toilets,Allen Avenue +4413,Lovely 5 Bedroom Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4414,Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4415,Lovely 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4416,Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4417,Petrol Filling Stations For Sale On 4 Plots Of Land With A Story Building And Shops,Secretariat Alausa Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Alausa +4418,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4419,Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4420,Lovely 4 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4421,Lovely 3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +4422,6 Bedroom Detached Duplex With A Bq And Swimming Pool,Omole Phase 2 Ikeja Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets,Omole +4423,4 Bedroom Semi Detached Duplex At Opebi, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4424,4 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +4425,Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4426,Nice 4 Bedroom Terrace Duplex,Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4427,A Well Built 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4428,4 Bedrooms Detached Duplex With A Bq,Omole Phase 1 Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +4429,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4430,Exquisite 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"92,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4431,A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4432,Exquisite 6 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4433,4 Bedroom Semi Detached Duplex With A Bq,Omole Phase 2 Extension Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikeja +4434,Exquisite 4 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4435,6 Bedroom Duplex For Sale At Amen Estate Allen Ave Ikeja..going For 130m.,Amen Estate Allen Allen Avenue Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,7 baths,7 Toilets,Allen Avenue +4436,"5 Bedroom Terrace Duplex For Sale At Ikeja Gra ,,going For 125m...very Spacious....good Security,pool And Other Facilities",Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4437,A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4438,5 Bedrooms Detached Duplex With A Bq And Swimming Pool,Omole Phase 2 Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4439,Lovely 6 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"125,000,000",0,0,0,6 beds,6 baths,7 Toilets,Omole +4440,Lovely 8 Units Of 3 Bedroom Flat,Omole Phase 1 Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Omole +4441,4 Bedroom Semi Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +4442,5 Bedroom Duplex With A Bq,. Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4443,Lovely 5 Bedroom Semi Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4444,This Is Newly Built 6nos Of 3beroom Flat For Sale Inside An Estate In Off Adeniyi Jones Ikeja All The Rooms Are Ensult With Guest Toilet ?? Ground Floor Fixted Kitchen Cabinet Quality Marble Spanish Tiles On The Floor 50m Slightly Negotiable,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +4445,A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4446,5 Bedroom Detached Duplex,. Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4447,Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4448,Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4449,Exquisite 5 Bedroom Detached Duplex,Omole Phase2 Ikeja Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4450,For Sale Or Lease Rooms Luxury Hotel Ikeja Balogun Bus Stop Off Lagoon Hospital Awolowo Way Ikeja ...gov Consent And C Of O 150m Asking.. Lease 12m X 5yrs,Off Balogun Awolowo Way Ikeja Lagos,₦,"150,000",0,0,1,10 beds,10 baths,10 Toilets,Awolowo Way +4451,Land,Omole Phase 1 Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4452,Lovely 2 Units Of 2 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4453,Lovely 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4454,4 Bedroom Detached Duplex,Allen Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4455,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4456,Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4457,Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4458,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"116,000,000",0,0,0,5 beds,0 baths,6 Toilets,Omole +4459,Exquisite 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4460,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4461,4 Units Of 2 Bedrooms Flat,Ogba Ikeja Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikeja +4462,Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4463,4 Bedroom Terraced Duplex With A Bq,. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4464,Lovely 4 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4465,Lovely 6 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4466,Lovely 6 Bedroom Detached Duplex,Ogba Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikeja +4467,5 Bedrooms Detached Duplex With A Bq For Sale,Off Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4468,5 Bedroom Terraced Duplex,"Opebi, Ikeja Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Opebi +4469,Four(4) Bedroom Semi Detached Duplex,Allen Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4470,Hotel/guest House,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4471,Hotel/guest House,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +4472,For Sale 4 Unit Of 4 Bedroom Terrace Duplex In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",1,1,0,4 beds,5 baths,5 Toilets,GRA +4473,Block Of Flats For Sales,"Onipetesi Estate,mangoro, Ikeja Lagos",₦,"38,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4474,Hotel/suite/guest House,Off Toyin Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4475,For Sale Newly Built 5 Bedroom Detached House In An Estate In Adeniyi Jones,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4476,Hotel/guest House,"Awolowo Way, Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4477,Block Of Flats For Sales,"Onipetesi Estate, Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4478,Land For Sale In Ikeja ( In Camberwall Estates ),"Abijo, Gra Ikeja Gra Ikeja Lagos",₦,"11,500,000",1,1,1, beds, baths, Toilets,GRA +4479,A Fully Fenced Land Measuring 5800sqm With A Demolishable Old Building.,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4480,Newly Built 3 Bedroom Flat With Swimming Pool Gym Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"69,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +4481,Newly Built 4 Bedroom Detached House In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,GRA +4482,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Omole +4483,Bongalow For Sale,Off Alade Street Ikeja Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4484,4bedroom Detached Jenny,Coker Estate Alausa Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Alausa +4485,A Prime Plot Measuring Approximately 3919 Sqms With C Of O At Opebi,Off Henry Adefowope Crescent Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Opebi +4486,Terrace Duplex For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets,Adeniyi Jones +4487,Newly Built 5bedroom Terrace Duplex And A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +4488,4bedroom Duplex And Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,GRA +4489,It Is A Two Wing Of Duplex Left Wing Is A 6 Br Right Wing Is 4 Br Duplex + 2br Flat.,Off Seriki Aro Obafemi Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +4490,A Fully Detached Duplex With Bq Sitting On 2000sqm Of Land All Ensuite,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,9 beds,9 baths,10 Toilets,GRA +4491,A Semi Detached Duplex(one Side) For Sale,Afisman Drive Off Akinremi Street Anifowoshe Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets,Awolowo Way +4492,"4 Bedroom, 2 Living Room Semi Detached Duplex(one Side Only)",Afisman Drive Anifowoshe Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets,Awolowo Way +4493,"Forsale: Beautifully Furnished (pay And Start Cooking) 4 Bedroom Terrace Duplex (4units In The Compound But 2 Units Available For Sale) With A Bq In An Estate At Off Adeniyi Jones Avenue, Ikeja Lagos.",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +4494,Full Plot Of Land With Demolishable Bungalow For Sale At Alausa Ikeja N35m,Alausa Alausa Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Alausa +4495,Semi Detached Duplex For Sale,Off Isaac Johnson Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4496,Furnished 5 Bedroom Duplex,Off Isaac John Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,6 baths,6 Toilets,GRA +4497,6 Bedroom Detached House With 4 Rooms B/q And Guest Charlet With Swimming Pool On 2000sqm,Along Oduduwa Way Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,GRA +4498,Commercial Property,Along Aromire Road Allen Round About Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4499,Guest House For Sale,Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Opebi +4500,Mixed Use Development Land,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4501,Land,Ajisafe Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,GRA +4502,5 Bedroom Duplex With 3 Room Bq,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4503,Land For Sale In Ikeja,"38, Oduyemi Street, Anifowoshe Ikeja. Lagos Ikeja Gra Ikeja Lagos",₦,"600,000",1,1,0, beds, baths, Toilets,GRA +4504,726sqm Land Off Toyin Street.,Toyin Street Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4505,600sqm Land Off Awolowo Way,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4506,Land For Sale In Ikeja,"38, Oduyemi Street, Anifowoshe Ikeja. Lagos Ikeja Gra Ikeja Lagos",₦,"600,000",1,1,0, beds, baths, Toilets,GRA +4507,780sqm Along Salvation Road,Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Opebi +4508,1400m2 Residential Land,Anuoluwapo Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Opebi +4509,"For Sale: 6units Of 3brm Flat, All Rooms En Suite",Ikeja Lagos,₦,"27,000,000",0,1,0,3 beds,2 baths,2 Toilets,Other Ikeja +4510,Fully Detached 4 Bedroom Duplex With Bq,Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4511,An Open Plan Purpose Built Office Complex On 5 Floor With 3 Floor Bq,Tokunboh Alli Street Off Toyin Street Toyin Street Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4512,Newly Built 3nos Terraced Duplexes With 1 Room Bq (each),Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4513,Newly Built 8nos Of 4 Bedroom Terraced Duplexes With 1 Room Bq(each),Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4514,Corner Piece 9 Acres Of Land Directly On Oba Akran Avenue.,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4515,1150m2 Plot Of Land,Ashabi Cole Alausa Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Alausa +4516,Land,Agidingbi Agidingbi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4517,Land, Adeniyi Jones Ikeja Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4518,5 Bedroom Fully Detached Duplex For Sale,Anifowoshe Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4519,Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4520,Land For Sale At Sasogbon,Sasogbon Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4521,12 No Of Luxury 4bedroom Condo Duplex Plus A Room Bq.,. Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Opebi +4522,Land Measuring 1781.28sqm At Cbd Agidingbi/alausa Ikeja Lagos.,. Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4523,4 No Of 5bedroom Fully Detached Duplex Situated In A Serene Environs @ Okeja Gra.,. Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +4524,Newly Built 5 Bedroom Duplex,Omole Phase1 Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Omole +4525,Ultra Modern Building, Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4526,2 Wings Semi Detached House,Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Allen Avenue +4527,Land,"Omole Phase 2,magodo Ikeja Gra Ikeja Lagos",₦,"18,000,000",1,0,0, beds, baths, Toilets,GRA +4528,3 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths, Toilets,GRA +4529,"Property For Sale In Ikeja Gra, 2 Plots, Asking 300m",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,GRA +4530,Newly Built 4 Bedroom Duplex Plus Bq In A Serene Area,1 Ogunsiji Close Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"74,999,999",0,0,0,4 beds,5 baths,6 Toilets,Allen Avenue +4531,Land,Aromire Road Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Airport Road +4532,Newly Built 4 Bedroom Terraced Duplex With Bq,"Ibadan Close,off Agbaoku Street, Opebi Opebi Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4533,840sqm Of Land,Remi Fani Kayode Street Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,GRA +4534,5 Bed Room Duplex With 2room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"185,000,000",1,1,1,5 beds,5 baths,6 Toilets,GRA +4535,Tastefully Built Five Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4536,"A Super Finished 4bedrooms Semi Detached Duplex With Bq On Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4537,"7 Units Brand New Duplex For Sale At Adeniyi Jones, Ikeja",Abba Johnston Crescent Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +4538,Luxurious 3bedroom Flat With Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +4539,"Purposefully Built 34 Rooms Hotel Structure With Swimming Pool N 3 Conference Halls (60,50,16 Seaters Hall) On Land Size Of 2400sqmts Plot",Ikeja Gra Area Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,1,3 beds, baths, Toilets,GRA +4540,4 Nos Exquisitely Finished 5 Bedroom Semi Detached House,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"108,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4541,Exquisitely Finished 5 Bedroom Detached House With Bq In A Mini Estate Off Adeniyi Jones Avenue,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4542,20 Units Of Luxury 2 Bedroom Flats In A Serviced Mini Estate,Allen Avenue/ Toyin Street Allen Avenue Ikeja Lagos,₦,"700,000,000",1,0,0,2 beds,2 baths,2 Toilets,Allen Avenue +4543,5 Bedroom Duplex,"Omole Phase 1, Agidingbi Ikeja Lagos",₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agidingbi +4544,Luxury 6 Bedroom Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +4545,Newly Built Luxury 6 Bedroom Duplex In Akora Estate,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +4546,3 Units Of 4 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +4547,C Of O,Oba Akinjobi Road Ikeja G R A Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +4548,"A Brand New Luxury And Tastefully Finished 4bedroom Semi Detached Duplex With Bq On Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4549,"An Acre Of Land Measuring Over 4000sqm Slightly Off Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4550,Newly Built 4 Bedroom Luxury Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,GRA +4551,6 Bedroom Duplex For Sale,G Cappa Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets,Awolowo Way +4552,"Newly Built A Storey Building With, Mini Flats And Room Selfs","Onilekere Cement Ikeja, Lagos Nigeria. Mangoro Ikeja Lagos",₦,"25,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Ikeja +4553,"Newly Built A Storey Building With, Mini Flats And Room Selfs","Onilekere Cement Ikeja, Lagos Nigeria. Mangoro Ikeja Lagos",₦,"25,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Ikeja +4554,"4 Bedroom Home Ensuite With 2 Sitting Rooms, 1 Study Ante Room, Kitchen, Pantry. 2 Rooms Bq Ensuite With Kitchentte. There Is No Conversion And Is A Single House. Title: Global C Of O, Government Consent And Deed Of Assignment. Price Negotiable.","House 7 Peace Court, 2/4 Adeyemo Alakija Street, Ikeja, Gra Opposite Dstv Ikeja Gra Office, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +4555,C Of O,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +4556,C Of O,Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Allen Avenue +4557,Newly Built 4br Terrace Duplex + 1rm Bq In Opebi Ikeja #50m,Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4558,"A Strategically Located 7,000 Sqm Of Land",Off Joel Ogunaike Street Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4559,"Emerald Garden Series.... For Your Residential & Commercial Plots @ Shimawa, Ikorodu, Ibeju Lekki, Mowe Ofada And So On","Ib, Alfred Olaiya Street Opebi Ikeja Lagos",₦,"4,200,000",0,1,0, beds, baths, Toilets,Opebi +4560,Land,Cbd Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4561,Dry Land,"Boundary With Magodo Phase Ii, Omole Phase Ii Ikeja Lagos",₦,"18,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4562,Land,Magodo Phase Ii Ikeja Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4563,100% Dry Land,Opic Isheri Ikeja Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets,Other Ikeja +4564,Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4565,4 Bedroom Terrance Duplex For Sale,Off Opebi Rd Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4566,4bedroom Semidetached Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +4567,Titans Empire Builders Prosperity And Property Is Sure,Allen Avenue Ikeja Lagos,₦,"38,000",0,1,0,3 beds,3 baths,3 Toilets,Allen Avenue +4568,Four Storey Building, Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4569,Brand New 8 Nos Of 5 Bedroom Terrace, Adeniyi Jones Ikeja Lagos,₦,"640,000,000",0,1,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4570,"A Well Maintained 5 Bedroom Fully Detached Duplex With 2 Sitting Rooms, 2 Boys Quarters (rooms), And Facilities",Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,7 beds, baths, Toilets,Omole +4571,Fully Serviced Luxury Apartments With Bq And A Common Swimming Pool,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,0,0,3 beds, baths, Toilets,GRA +4572,"Brand New 8 Nos Of 5 Bedroom Terrace All  Room Ensuit With 1 Room Bq On 1600sq Land In A Super Secure Serene Environment, Title C Of O.  Location : Akora Estate, Adeniyi Jones, Ikeja Lagos. ",Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +4573,6 Units Of 3 Bedroom Flat,Majekodunmi Street Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds, baths, Toilets,Allen Avenue +4574,Six Nos Of 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4575,4 Units Of Semi Detached Houses With Bq,Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,GRA +4576,Newly Built 4 Bedroom House With Bq,"Ibadan Close, Off Agbaoku Street Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Other Ikeja +4577,For Quick Sale!!!! 4600sqm Land,"Directly On Aromire Road, Ikeja Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets,GRA +4578,5bedroom Duplex With 2 Room Bq For Sale At Ikeja Gra,Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,6 baths,6 Toilets,GRA +4579,5 Bedroom Duplex,Ogunsolu Mangoro Ikeja Lagos,₦,"13,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Ikeja +4580,"A Dry Land For Sale At Asibi Cole Road, Off Lateef Jakande Road, Agidingbi Alausa Ikeja I","Alhaji Asabi Cole Road, Off Lateef Jakande Road, Agidingbi Alausa Ikeja Alausa Ikeja Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Alausa +4581,8 Units Of 5 Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4582,"3 Bedroom Of Six Units With, Each Bq. C Of O For Sale. Preferred Corporate Tenant For The Whole Blocks.",Off Allen Allen Avenue Ikeja Lagos,₦,"300,000,000",1,1,1,3 beds,3 baths,4 Toilets,Allen Avenue +4583,Land Near Murtala Muhammed Airport For Sale,Near Murtala Muhammed Airport Airport Road(ikeja) Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets,Airport Road +4584,"Newly Built And World Class Luxury 3 Bedroom With Bq, Cctv Cameras, Elevator/staires, Swimming Pool, Gym, 24hrs Light+security, Streetlight, Frontdesk Service, 200kva Standby Gen, Serviced And Kitchen Furniture Fitted. {each Flat #95million (asking)...}",Off Allen Allen Avenue Ikeja Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,5 Toilets,Allen Avenue +4585,Land Near Murtala Muhammed For Sale,Close To Murtala Muhammed Airport Airport Road(ikeja) Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Airport Road +4586,"7,000 Sq.m. Land",On Harold Sodipo Street Beside Avicenna School Ikeja Gra Ikeja Lagos,₦,"250,000",0,0,0, beds, baths, Toilets,GRA +4587,One Acre Of Land,. Oba Akran Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4588,One Acre Of Land,. Oba Akran Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4589,2 Acres Of Land,On Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4590,One Acres Of Land,. Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4591,A Vacant Land,20 Sodipo Close Olusosun Ikeja Lagos Oregun Ikeja Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets,Oregun +4592,5 Bedroom Detached House +2 Nos.mini Flats Bq,Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Allen Avenue +4593,Block Of Apartments For Sale In Salvation Estate Ado Owode Ajah Lagos,"20, Oduyemi Street Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +4594,"A 2 In 1 Double Shop For Sale Opposite Mko Abiola Gardens In Ikeja. Very Suitable For Trading, Storage And Services",Mko Abiola Gardens Road Ikeja Alausa Ikeja Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets,Alausa +4595,Terraced Duplex For Sale," methodist Street Awuse Estate,off Opebi Road, Salvation Bus Stop, Ikeja Lagos State, Opebi, Ikeja, Lagos Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4596,For Sale Four Bedroom Terraced House In Ikeja Gra,Reverend Ogunbiyi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,GRA +4597,Its On Over 500sqm Land At Magodo Gra Phase 1,Magodo Ikeja Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets,Other Ikeja +4598,Ikeja City Estate,"29,ajao Road Off Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4599,"A Plot Of Land Measuring 650sqm By Balogun Bus Stop,ikeja.lagos",Balogun Balogun Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4600,"A Plot Of Land Measuring 620sqm With C Of O Off Awolowo Way,ikeja.lagos",Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +4601,"A Corner Piece Land Measuring 750sqm Fenced With C Of O At Omole Phase I,lagos.",Omole Phase I Omole Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Omole +4602,Brand New 4 Bedroom Detached Duplex At Maryland N90m,Maryland Maryland Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Maryland +4603,5 Bedroom Maisonette Duplex,Salvation Road Opebi Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4604,6plots Of Land At Ikeja Airport Hotel Axis,"Opp, Airport Hotel Oba Akran Ikeja Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4605,5 Bedroom Terraced Duplex," allen, Ikeja Lagos",₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets,Allen Avenue +4606,Newly Built Two Storey Building,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +4607,Newly Built Tastefully Finished Duplex, Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4608,5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4609,Detached House,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,9 Toilets,Adeniyi Jones +4610,Block Of 2 Bedrooms Flat, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4611,Four Bedroom Duplex + Bq, Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikeja +4612,Land, Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4613,Superbly Finished (4) Bedroom Apartment,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4614,4no 3bedroom Flat With 4rooms Bq,Boet Estate. Adeniyi Jones Ikeja Lagos,₦,"120,000",0,0,0,4 beds,3 baths,2 Toilets,Adeniyi Jones +4615,4bedroom Terrace Duplex For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +4616,Well Finished 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,GRA +4617,Land,Ajao Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4618,Jv On 750sqm At Ogba Gra,"Ogba Gra, Behind Exellence Hotel Agidingbi Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4619,1 Acre Of Land For Sale At Wemco Rd,Wemco Rd Agidingbi Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4620,"Brand New 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,GRA +4621,"Tastefully Finished 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets,GRA +4622,"Tastefully Finished 3 Bedroom Flat, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets,GRA +4623,"Tastefully Finished 5 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,GRA +4624,1 Acre Of Land For Sale At Alausa Cbd,Alausa Cbd Alausa Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Alausa +4625,Land, Oba Akran Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4626,4bedroom Detached Duplex For Sale,Alfred Gardens Oregun Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +4627,"Tastefully Finished 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,GRA +4628,1 Acre Of Land For Sale At Oregun Rd,Kudirat Abiola Road Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Oregun +4629,1 Plot Of Land Strategically Located,Wemco Road Agidingbi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4630,Quarter Plot Of Land For Sale At Ogba,Ajayi Road Ogba Agidingbi Ikeja Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4631,4 Units Of 3 Bedroom Flats At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,12 beds,12 baths, Toilets,GRA +4632,"Executive 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,GRA +4633,Land,Alhaji Jakande Road Agidingbi Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +4634,Block Of 4 Flats On Land Measuring 648sqm,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4635,A School With Over 500 Students For Sale At Oregun Ikeja Lagos.,Oregun Ikeja Oregun Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Oregun +4636,Residential Land," fagba Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4637,4 Bedroom Terraced Duplex," adeniyi Estate, Ogba, Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +4638,Land," samuel Abegunde/off Ajayi Road, Oke Ira, Ogba, Ikeja Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4639,Land," kayode Street, Ogba, Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4640,4 Bedroom Duplex,Salvation Road Opebi Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4641,Luxury 3 Bedroom Flat,Oduduwa Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,GRA +4642,Exquisitely Finished 5 Bedroom Terrace Duplex With A Bq,Alakija Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4643,Fully Serviced Well Built And Maintained 4 Bedroom Terrace Duplex,Talabi Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4644,4 Flats Of 3 Bedroom Flat,Adeleke Obafemi Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4645,Newly Build 5bedrooms Duplex In Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4646,Newly Build 2bedrooms Duplex In Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Adeniyi Jones +4647,"Sarah Court, Adeniyi Jones, Ikeja* Title Registered Deed Of Assignment 3 Br Serviced Apartment With Bq N60m 4 Br Serviced Apartment With Bq N70m",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +4648,3 Bedroom Block Of Flats," gra, Ogba, Ikeja Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +4649,4 Bedroom Flat," medium Housing Estate, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Ikeja +4650,3 Bedroom Flat," off Wempco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +4651,3 Bedroom Flat," off Wemco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +4652,4 Bedroom Detached Duplex," giogious Estate, Ogba, Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4653,3 Bedroom Mini Flat," ogba Gra, Off Wempco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +4654,5 Bedroom Detached Duplex," akilo, Ogba, Ikeja Lagos",₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +4655,Landed Property With Survey,Power Line Area Unity Road Ikeja Lagos,₦,"9,000,000",0,0,0, beds, baths, Toilets,Airport Road +4656,3 Storey Building Of 12 Flats Of 2/3 Bed Room With Warehouse,"34 Kadiri Street Ikeja, Oregun Oregun Ikeja Lagos",₦,"250,000,000",0,0,0,2 beds,3 baths,2 Toilets,Oregun +4657,3 Bedroom Detached Bungalow," along Akinwale Street, Off Thomas Salako Street, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +4658,Residential Land," kayode Street, Ogba, Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4659,5 Bedroom Detached Duplex," ogba Estate, Ogba, Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +4660,12 Bedroom Block Of Flats," ogba, Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4661,4 Bedroom Detached Duplex," ogba Estate, Ogba, Ikeja Lagos",₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikeja +4662,4 Bedroom Terraced Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +4663,8 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,8 beds,0 baths,0 Toilets,Adeniyi Jones +4664,New And Vacant 5 Bedroom Semi Detached House,Harmony Estate Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4665,5 Bedroom Detached Duplex For Sale," ikeja Gra, Ikeja, Lagos Ikeja Gra Ikeja Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4666,5 Bedroom Semi Detached Duplex For Sale," adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4667,7 Bedroom Detached House,"Opebi Area, Opebi Ikeja Lagos",₦,"295,000,000",0,0,0,7 beds,5 baths,5 Toilets,Opebi +4668,4 Bedroom Semi Detached Bungalow House,Oregun Oregun Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oregun +4669,"Half Plot Of Land Measuring 299 Sq Metres In Julie Estate Irequn, Ikeja.","Julie Estate, Oregun Oregun Ikeja Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Oregun +4670,5 Bedroom Semi Detached Duplex For Sale," adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4671,2 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,0 baths,0 Toilets,Allen Avenue +4672,2 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,0 baths,0 Toilets,Allen Avenue +4673,Partially Furnished And Serviced 5 Bedroom Fully Detached Duplex With A Swimming Pool,. Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,GRA +4674,Land,Awuse Estate Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4675,Bungalow,Igbasan Opebi Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4676,4 Nos 3 Bedroom Flat, Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oregun +4677,5 Bedroom Semi Detached Duplex,Itelorun Close Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4678,4 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +4679,Land,Regina Omolara Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4680,Office Structure On 3 Floors, Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4681,Two Nos Of Shops, Awolowo Way Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,0 baths,0 Toilets,Awolowo Way +4682,236 Sqm Two Storey Building, Awolowo Way Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4683,Prime Office Complex On 3 Floors,Close To Ikeja City Mall Awolowo Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4684,4538 Sqm Land,Aromire Road Adeniyi Jones Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4685,3 Bedroom Block Of Flats, Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,4 Toilets,Awolowo Way +4686,Residential Land," omole Phase 2, Ikeja Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4687,1024sqm Fenced Plot Of Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4688,Land, Adeniyi Jones Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4689,Newly Built Two Wings Of 4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +4690,Two Wings Of 5 Bedrooms Duplex,Off Toyin Toyin Street Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +4691,4 Bedroom Terraced Duplex, off Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Adeniyi Jones +4692,Residential Land, Opebi Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4693,1000 Sqm Land,Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4694,7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4695,6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4696,6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4697,6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4698,7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"530,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +4699,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4700,5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4701,4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4702,3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +4703,3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4704,8000 Square Meters Of Land, Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4705,18000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4706,2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4707,3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4708,3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4709,2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4710,3900 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4711,2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4712,1000 Square Meters Land, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4713,500 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4714,8000 Square Meters Of Land, Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4715,4000 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4716,500 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4717,3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4718,850 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4719,Two Wings Of 12 Rooms Duplexes, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,10 beds,0 baths,0 Toilets,GRA +4720,Executive 5 Bedroom Fully Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4721,5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4722,Executive 4 Bedroom Terrace With Bq, Ikeja Gra Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +4723,Executive 3 Bedroom With Bq, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +4724,Distress Sales A Plot Of Land Measuring 1400sqm At Omole Phase I,Omole Phase I Omole Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4725,"A Plot Of Land Measuring 4000sqm(one Acre) Off Adeniyi Jones,ikeja.lagos",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +4726,"Over Five Plots Of Land At Awuse Estate,opebi,ikeja.",Awuse Opebi Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Opebi +4727,A Plot Of Land Measuring 5856sqm Fenced With Gate,Sasegbon Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4728,8number Of 5 Bedrooms Terraces + 1 Room Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4729,Land," omole Phase 2, Ikeja Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4730,4 Bedroom Terrace Duplex With A Room Bq, Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +4731,4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +4732,4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +4733,12 Rooms Functional Hotel, Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4734,Land, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4735,4 Bedroom Detached Duplex, Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +4736,Tastefully Finished And Furnished 30 Rooms Hotel, Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4737,Newly Built Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4738,Newly Built Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,5 Toilets,Adeniyi Jones +4739,5 Bedrooms With 2 Rooms Bq Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4740,10 Bedrooms Detached House,Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +4741,Luxury Brand New Detached 5 Bedroom Duplex With 2 Rooms Bq,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4742,Luxury Brand New Detached 5 Bedroom Duplex With 2rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4743,Brand New 5 Bedroom Detached Duplex,Off Showemimo Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4744,5 Bedroom Detached Duplex,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4745,Brand New 5 Bedroom Detached Duplex,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4746,Brand New 5 Bedroom Detached Duplex,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4747,Partially Furnished 5 Bedroom Detached Duplex With A Room Bq,Michael Ogun Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4748,Brand New 5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4749,5 Bedroom Detached Duplex," estate, Ogba, Ikeja Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +4750,20000 Sqm Commercial Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4751,8400sqm Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4752,8000 Square Meters Of Land,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4753,7100 Sqm Land,Harold Shodipo Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4754,4000 Sqm Land,Showemimo Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4755,3800 Sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4756,3700 Sqm Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4757,3200 Sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4758,3000 Square Meters Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4759,3482sqm Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4760,2100 Sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4761,2000sqm Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4762,1989 Sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4763,1600 Sqm Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4764,1500 Square Meters Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4765,1500 Square Meters Land + 5 Bedroom Duplex,Showemimo Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4766,1100 Square Meter Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4767,1000 Square Meters Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4768,995sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4769,500 Sqm Of Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4770,500 Sqm Of Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4771,500sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4772,4 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Omole +4773,4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4774,A Dry Land For Sale In A Gated Estate Measuring 700sqm .title Is Registered Deed,Valley Estate Cement Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4775,5nos Luxury 5 Bedroom Semi Detached House,Serene Close Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4776,Serviced Luxury 2 Bedroom Flat,Maries Court Ikeja G.r.a Ikeja Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4777,Shop For Sale,Alade Allen Avenue Ikeja Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4778,Land For Sale,Oluwalogbom Agidingbi Ikeja Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Agidingbi +4779,A Multipurpose Property,Allen Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4780,Mixed Use Land," ogba, Ikeja Lagos",₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4781,5 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Omole +4782,3 Bedroom Flat,Robin Close Marwa Garden Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets,Alausa +4783,Newly Built 5 Bedroom Detached House With Bq, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Allen Avenue +4784,200sqm Warehouse,"Off Kudirat Abiola Way, Oregun Ikeja Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4785,5 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4786,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4787,Commercial Building,Adekunle Fajuyi Rd Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4788,"1,800m2 Residential Land",Oduduwa Way. Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4789,"1,160m2 Prime Residential Land",Abimbola Close Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4790,Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Jones Adeniyi Jones Ikeja Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4791,20000m2 Commercial Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4792,Hotel, Toyin Street Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4793,Brand New 5 Bedroom Semi Detached Duplex On 400m2 Land With 2 Rooms Bq,Remi Fani Kayode St. Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4794,Brand New 5 Bedroom Semi Detached Duplex On 350m2 Land With A Room Bq,Adeyemo Alakija St. Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4795,"2,000m2 Mixed Dev Land",Sobo Arobiodu St. Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4796,580m2 Prime Residential Land,Abimbola Close Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4797,500m2 Residential Land,"Oba Dosumu St, Ikeja Gra Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4798,"1,989m2 Commercial Land",Isaac John St. Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4799,609m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"122,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4800,500m2 Residential Land,Remi Fani Kayode St. Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4801,"3,800m2 Prime Residential Land",Oduduwa Gated St. Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4802,"3,482m2 Mix Dev Land",Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4803,3620m2 Residential Land,Oba Dosumu St Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4804,1500m2 Mixed Used Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4805,"5,000m2 Commercial Land",Joel Ogunnaike St. Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4806,Decently Used 3 Bedroom Detached Duplex,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +4807,5 Bedroom Terrace Duplex With A Room Bq,Adeyemo Alakija St Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4808,"2 Nos Of 5 Bedroom Duplexes, Each On 500m2 Land And With A Room Bq Each",Ladoke Akintola St. Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4809,800m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4810,500m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4811,"1,200m2 Commercial Land",Joel Ogunnaike St. Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4812,1835.179m2 Residential Land,"Ladoke Akintola St, Ikeja Gra Ikeja Lagos",₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4813,"8,400m2 Residential Land",Adeyemo Alakija St. Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4814,"Brand New 8 Bedroom Detached Duplex On 1,200m2 Land With 2 Rooms Bq",Oba Dosumu St. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,8 beds,8 baths,9 Toilets,GRA +4815,"Fairly Used 5 Bedroom Detached Duplex On 1,000m2 Land",Off Ladoke Akintola St Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4816,5 Bedroom Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +4817,1000m2 Residential Land,"Oba Dosumu St, Ikeja Gra Ikeja Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4818,Brand New 5 Bedroom Detached Duplex On 500m2 Land With A Room Bq,Off Showemimo St. Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4819,1500m2 Land,"Showemimo St, Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4820,3700m2 Commercial Land,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4821,Fairly New 5 Bedroom Detached Duplex On 500m2 Land With 2 Rooms Bq,Off Sobo Arobiodu St Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4822,3 Bedroom Flat With A Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +4823,"1,000m2 Mixed Dev Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4824,Land,Gra Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4825,Fairly Used 5 Bedroom Semi Detached Duplex On 800m2 Land With 2 Rooms Bq,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4826,Executive Detach Duplex,Thomas Okoya Estate Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Adeniyi Jones +4827,Commercial Property Facing Lagos/abeokuta Express,Facing Lagos/abeokuta Express Mangoro Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4828,C Of O,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Opebi +4829,Beautiful 3 And 4 Bedroom Semi Detached Houses With Additional One Bedroom Bq Each, Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +4830,750 Sqm Warehouse, Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4831,Event Centre,"Off Oregun Road, Ikeja Oregun Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Oregun +4832,4 Bedroom House,"Ogundoyinbo Street, Ogba Agidingbi Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets,Agidingbi +4833,4 Unit Of 3 Bedroom,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +4834,Comtemporary Designed 5 Bedroom Semi Detached House,Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4835,Warehouse Factory Block, Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4836,Furnished Four(4) Bedroom Detached Houses, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4837,Magnificent Six(6) Bedroom Mansion, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4838,Majestic 5 Bedroom Detached House, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +4839,4 Units Of 3 Bedroom Flats, Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +4840,Brilliantly Designed Four(4) Bedroom Maisonette, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4841,Aluminium Manufacturing Company, Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4842,Executive 4 Bedroom Terrace Duplex At Adeniyi Jones,Wemabod Estate; Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,4 Toilets,Adeniyi Jones +4843,4 Bedroom House,Oladoyinbo Street Ogba Ikeja Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets,Agidingbi +4844,Land With Warehouse, Awolowo Way Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +4845,Magnificent Six(6) Bedroom Mansion, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +4846,Designed 5 Bedroom Semi Detached House, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4847,Block Of Flats, Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4848,10 Bedroom Semi Detached Duplex," adekunle Fajuyi, Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0,10 beds,9 baths,10 Toilets,GRA +4849,2 Bedroom Flat," by Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4850,2 Bedroom Flat," by Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4851,2 Bedroom Block Of Flats,  Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,3 baths,3 Toilets,GRA +4852,6 Units 3 Bedroom Flats,"Oluwaleyinmu Street /amore Street, Off Toyin Street Ikeja Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +4853,2 Bedroom Flat," reverend Ogunbiyi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4854,A Full Plot Of Land At Outskirts Of Omole Phase2,Outskirts Of Omole Phase2 Omole Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Omole +4855,Office Space," opebi Rd, Opebi Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4856,4 Bedroom Detached Duplex," omole Phase 2, Omole Phase 2, Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +4857,2 Bedroom Flat," off Oba Akinjobi Way., Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,GRA +4858,Majestic Storey Building For Sale,River Valley Estate Ikeja Lagos,₦,"90,000,000",1,0,1,5 beds,2 baths,2 Toilets,Other Ikeja +4859,4.17 Acres For Sale @ Ikeja,Allen Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4860,"2 Wing Of 5 Bedroom, Well Finished And All Rooms En Suite With One Room Bq","Omofade Crescent, Omole Phase 1, Ikeja. Agidingbi Ikeja Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agidingbi +4861,6 Bedroom Detached House,Olutoye Crescent. Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +4862,Land, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4863,4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +4864,Luxury 4 Bedroom Terrace Duplex,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Adeniyi Jones +4865,Land Measuring 416.704 Sqms.,Opebi Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4866,5 Bedroom Detached Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,GRA +4867,4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4868,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +4869,Newly Built 12 Unit Of 4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,GRA +4870,Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +4871,4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,GRA +4872,New 4 Bedroom Terrace House,"Off Salvation Road, Opebi Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +4873,2 Units Of 2 Bedroom Terrace Duplex,"Extension, Omole Phase 2 Omole Ikeja Lagos",₦,"20,000,000",0,0,0,2 beds,3 baths,3 Toilets,Omole +4874,Luxurious 5bedroom Fully Detached Duplex With 2 Rooms Bq,"Omole Phase 2, Lagos Omole Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +4875,Highly Luxurious 4bedroom Semi Detached Duplex With Bq,Omole Phase 2 Extension Omole Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Omole +4876,Brand New 6 Bedroom Mansion,"Omole Phase 2, Beside Otedola Jubilee Estate Omole Ikeja Lagos",₦,"260,000,000",0,1,0,6 beds,6 baths,7 Toilets,Omole +4877,Luxurious 5 Bedroom Detached Duplex,Omole Phase 2 Omole Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Omole +4878,Executive 12rooms Luxury Hotel Space For Either Sale Of Lease,Balogun Bus Stop Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +4879,Brand New 5bedroom Detached Duplex,"Kayode Taiwo, Magodo Gra Phase 2 Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +4880,Tastefully Finished 5 Bedroom Duplex With A Room Bq,"Magodo Gra, Isheri Omole Ikeja Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets,Omole +4881,Land For Sale,Olayinka Street. Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Opebi +4882,A Plot Of Land For Sale,Olayinka Street Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Opebi +4883,Duplex,Ikare Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,7 baths,7 Toilets,Adeniyi Jones +4884,Duplex,Ikare Close Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Adeniyi Jones +4885,1800sqm Property For Sale At Ikeja,Olorunisola Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets,Allen Avenue +4886,6 Nos Of 2 Bedroom Flats,Ayinde Sanni Close Oregun Ikeja Lagos,₦,"57,000,000",0,0,0,10 beds, baths, Toilets,Oregun +4887,4 Bedroom Semi Detached House,Gra Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,4 beds,6 baths,6 Toilets,GRA +4888,5 Bedroom Terraced Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets,Opebi +4889,5 Bedroom Semi Detached House.,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,6 Toilets,GRA +4890,4 Bedroom Semi Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +4891,6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +4892,7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,GRA +4893,Beautifully Furnished 4 Bedroom Terrace Duplex,Off Adeniyi Jones Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4894,3 Bedroom Apartment With Study Room And A Bq,Peace Estate Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,5 baths,6 Toilets,Oregun +4895,Lagos State Government C Of O,Bayo Ajayi Agidingbi Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,5 baths,5 Toilets,Agidingbi +4896,3 Bedroom Bungalow With Various Boy's Quarters,Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds, baths, Toilets,GRA +4897,Land For Sale At Unilag Estate Magodo Ikeja Lagos State,Unilag Estate Magodo Ikeja Lagos State Opebi Ikeja Lagos,₦,"37,000,000",1,1,1,4 beds,5 baths,5 Toilets,Opebi +4898,4bedroom Semi Detached Duplex,"Mko Gardens, Alausa, Lagos. Alausa Ikeja Lagos",₦,"95,000,000",0,0,0,4 beds,3 baths,4 Toilets,Alausa +4899,Land,Coca Cola Awolowo Way Ikeja Lagos,₦,"72,000,000",0,1,0, beds, baths, Toilets,Awolowo Way +4900,Land For Sale Off Olutosin Ajayi Street,Off Olutosin Ajayi Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4901,4 Units Of A 4 Bedroom Detached Duplex, Allen. Allen Avenue Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +4902,Lovely 4 Unit Blocks Of Luxurious Flats,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,3 Toilets,Adeniyi Jones +4903,6 Units Of 3 Bedroom Luxury Flats.,Allen. Allen Avenue Ikeja Lagos,₦,"720,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +4904,Fully Detached Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets,GRA +4905,Allocation Document,"Agege Motor Road, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"3,500,000",0,1,0, beds, baths, Toilets,Airport Road +4906,Allocation Document,Allen Ikeja Lagos,₦,"4,000,000",0,1,0, beds, baths, Toilets,Allen Avenue +4907,Contemporary Five (5) Bedroom Semi Detached Houses,Off Isaac John Street And Minutes Drive From Radisson Blu Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +4908,Plot Of Land,Off Obafemi Awolowo Rd Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +4909,4 Bedroom Bungalow Penthouse All Rooms En Suit With Mini Flat Bq + Securityhouse On Full Plot With Enough Parking Space...c Of O,Araromi Maryland Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +4910,8 Units Of 4 Bedroom Terraces,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4911,3 Bedroom Of Six Units With C Of O For Sale.,Allen Allen Avenue Ikeja Lagos,₦,"100,000,000",1,1,1,3 beds,4 baths,4 Toilets,Allen Avenue +4912,Semi Detached Duplexes For Sale,Akin Taylor Estate Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +4913,For Sale At Gra Ikeja 5 Nos Of 5 Bedroom Semi Detached Duplex Houses,Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4914,Luxury 4 Bedroom Terrace Duplex With Bq,Off Agbaoku Opebi Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +4915,4 Units Of 3 Bedroom Flat,"Off Oregun, Olusosun Oregun Ikeja Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +4916,"6 Units Of Luxury And Well Finished Serviced 3 Bedroom With Bq,", Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +4917,3 Bedroom Flat,Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +4918,4 Nos Of Terrace Duplex And Bq,Off Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +4919,5 Bedroom Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +4920,4 Bedroom Terrace Duplex With Bq,Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +4921,3 Bedroom + Miniflat,Awuse Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Opebi +4922,Luxury 36 Rooms Hotel (a Combination Of Standard Suites And Single Rooms),"Off Mma, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Airport Road +4923,5 Bedroom Detached House With Bq,Obakinjobi Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +4924,New 4 Bedroom Terrace With Bq,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +4925,10 Bedroom Commercial Property,Ogba Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +4926,Land,Not Far From Gani Fawehinmi's Library Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4927,Newly Built 4 Bedroom Duplex,"Magodo Phase 1,magodo Isheri Ikeja Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +4928,Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4929,House, Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,2 baths,4 Toilets,GRA +4930,4 Bedroom Apartment,Off Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +4931,3 Bedroom Apartment,Off Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,0 Toilets,Adeniyi Jones +4932,Anike Courts,"Opebi Allen, Ikeja Opebi Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +4933,C Of O,Off Awolowo Way Ikeja Very Close To Lagos Airport Hotel. Awolowo Way Ikeja Lagos,₦,"150,000,000",0,1,0,10 beds,10 baths,10 Toilets,Awolowo Way +4934,Well Finished 4 Bedroom Duplex,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oregun +4935,Lovely 4 Bedroom Townhouse & Bq,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4936,7bedroom Detach House,Opebi Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,7 beds,7 baths,8 Toilets,Opebi +4937,4bedroom Duplex With Bq At Oregun,Oregun Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +4938,4 Flat 3bedroom And 4flat On 2bedroom In Full Plot Of Land With C Of O,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds, baths,4 Toilets,Other Ikeja +4939,Mixed Use Land," opebi Link Road, Opebi Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4940,Mixed Use Land," awolowo Way, Alausa Ikeja Lagos",₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +4941,Mixed Use Land,Awolowo Way Alausa Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +4942,Fenced 178 Sqm Mixed Use Land With C Of O,Central Business District; Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +4943,4 Bedroom Semi Detached Duplex,Ogundana Close; Allen Avenue Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +4944,Executive 4bedroom Detached Duplex With Bq For Sale At Omole Phase2,"Omole Phase 2, Ikeja Omole Ikeja Lagos",₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Omole +4945,New Depulex House For Sale,Oyero Street Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4946,Exclusively Finished 5 Bedroom Terrace Duplex In Ikeja Gra,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4947,Exclusive Office Suite At The Modern Ahcn Towers,Cipm Alausa Ikeja Lagos,₦,"600,000",0,0,0,0 beds,10 baths,0 Toilets,Alausa +4948,5 Bedroom Flat On 1500 Sqm, ladoke Akintola Street; Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4949,2 Wings Of 4 Bedroom Duplex For Sale,Gbemisola Street Allen Avenue Ikeja Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +4950,5 Bedroom Fully Detached Duplex & 1 Bq,Estate At Abc Bus Stop Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4951,5 Bedrooms Semi Detached Duplex + Bq,Samuel Awoniyi Off Salvation Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +4952,5 Bedrooms Semi Detached Duplex And 1bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4953,Blocks Of Terrace House,Opebi Ikeja Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4954,5 Bedroom Semi Detach Duplex,Off Salvation Opebi Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Opebi +4955,3 Bedroom Flat & 1 Bq,Alade Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4956,6 Bedrooms Fully Detached Duplex & 2 Bedroom Flat Bq Up & A Room Self Contain Down,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4957,4 Bedroom Bq Terrace House,Awuse Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +4958,5 Bedroom Semi Detached Duplex,Harmony Enclave Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4959,5bedroom Semi Detach Duplex,Ikeja Gra Esugbayi Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets,GRA +4960,"3 Bedroom Flat, Visitor Room And 1bq",Off Salvation Road Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +4961,4 Bedroom Fully Detach Duplex,Awuse Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +4962,Newly Built 5 Bedroom Duplex With B/q,"Akora Estate, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +4963,5 Bedroom Detached Duplex,Rev. Ogunbiyi Area Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +4964,Cofo,Remi Fani Kayode Avenue Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,GRA +4965,Direct Brief Bank Distress Sale Of A Luxurious Hotel Complex,Opebi Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Opebi +4966,Residential Land,. Ikeja Gra Ikeja Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +4967,Three Bedroom Flat,Ondo Close Allen Avenue Ikeja Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,3 Toilets,Allen Avenue +4968,9 Acres Of Land For Sale At Oba Akran Avenue Ikeja,Ikeja Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +4969,3 Bedroom House For Sale, Ikeja Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikeja +4970,6 Bedroom Duplex,Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,7 baths,7 Toilets,GRA +4971,Commercial Land For Sale, Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4972,5 Bedroom Detached Duplex," along Adeniyi Jones Street, Oba Akran Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +4973,10 Bedroom Detached Duplex,"Atere Junction Omele Phase 2, Omole Phase 2 Ikeja Lagos",₦,"87,000,000",0,0,0,10 beds,10 baths,10 Toilets,Omole +4974,Hostel," off Salvation Road, Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +4975,"Factory On 17,600 Sqm Land",Plot 1a Billing Way; Oregun Ikeja Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +4976,Lands,Magodo Omole Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4977,Mixed Use Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +4978,Brand New And Tastefully Finished 6 Bedroom Fully Detached Duplex With 2 Rooms Bq,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +4979,Newly Built 5 Bedroom Luxury Duplex,Cole Street; Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,5 Toilets,Adeniyi Jones +4980,Commercial Property,. Allen Avenue Ikeja Lagos,₦,"230,500,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4981,Residential Land,Omole Phase 2 Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +4982,Serviced 4 Bedroom Flat With Servants Quarters,Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +4983,Commercial Land,Between Allen Road; Allen Avenue Ikeja Lagos,₦,"230,500,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +4984,5 Bedroom Detached Duplex,Wempco Road Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,4 baths,6 Toilets,Agidingbi +4985,Well Built And Brand New 4 Bedroom Semi Detached (carcass) Duplex,Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Opebi +4986,4 Bedroom Terraced Duplex,. Toyin Street Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikeja +4987,Commercial Land, along Awolowo Way Ikeja Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths, Toilets,Awolowo Way +4988,5 Bedroom Detached Duplex," omole Phase 2, Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths, Toilets,Omole +4989,Industrial Land, Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths, Toilets,Other Ikeja +4990,Block Of Flats,Onipetesi Estate Mangoro Ikeja Lagos,₦,"38,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +4991,Block Of Flats,Onipetesi Estate Mangoro Ikeja Lagos,₦,"40,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +4992,Residential Land," independent Street, Anifowoshe, Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths, Toilets,Other Ikeja +4993,Commercial Land,. Oba Akran Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +4994,"Luxury 6bedeoom Mansion For Sale At Omole Phase2, Otedola","Phase2, Otedola Omole Ikeja Lagos",₦,"260,000,000",0,0,0,6 beds,7 baths,7 Toilets,Omole +4995,8 Units Of 5 Bedroom Terraced Duplex, off Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +4996,"6bedroom Mansion For Sale At Omole Phase2, Opp Alausa Ikeja","Omole Phase2, Otedola Omole Ikeja Lagos",₦,"260,000,000",0,0,0,6 beds,7 baths,7 Toilets,Omole +4997,4 Bedroom Semi Detached Duplex," abba Johnson Crescent, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets,Adeniyi Jones +4998,4 Bedroom Semi Detached Duplex,  Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,0 Toilets,Allen Avenue +4999,4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,GRA +5000,Residential Land,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5001,Exquisitely Finished And Furnished 4 Bedroom Detached Duplex With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5002,Residential Land," pen Cinema, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5003,4 Bedroom Detached Duplex," off Lateef Jakande Road, Omole Phase 1, Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets,Omole +5004,Newly Built 4 Bedroom Fully Detached Duplex With C Of O At Omole Phase 2,Omole Phase 2 Omole Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Omole +5005,"Ikeja Gra, Luxury 7 Bdr Detached Duplex, Excellent Finish",Off Lagos Country Club Road Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,7 beds,9 baths,9 Toilets,GRA +5006,4 Bedroom Terraced Duplex,. Ikeja G.r.a Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,GRA +5007,Land,Alausa Alausa Ikeja Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets,Alausa +5008,4 Bedroom Detached Duplex,. Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikeja +5009,98 Bedroom Hotel,Allen Roundabout Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths, Toilets,Allen Avenue +5010,Office Space,. Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,3 baths,3 Toilets,Adeniyi Jones +5011,6 Bedroom Detached Duplex,  Ikeja Gra Ikeja Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,0 Toilets,GRA +5012,Duplex,Boet Estate Abc Busstop Adeniyi Joness Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +5013,"12 Rooms Luxury Hotel For Sale Off Awolowo Way, Ikeja",Balogun Busstop Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5014,5 Bedroom Duplex,Boet Estate Abc Busstop Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,Adeniyi Jones +5015,"Luxurious 4bedroom Semi Detached Duplex For Sale At Omole Phase2, Otedola Ikeja",Omole Phase2 Omole Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Omole +5016,Luxurious 12room Guest/hotel For Ikeja 150m,Olu Akerele Awolowo Way Ikeja Lagos,₦,"150,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +5017,5 Bedroom Detached Duplex With 2 Rooms Servants Quarters On 700 Sqm,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5018,4 Bedroom Detached Duplex," dideolu Estate, Ogba, Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikeja +5019,Land,"Treasure Park And Gardens Phase, Alausa Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5020,Residential Land With Governor's Consent,Remi Fani Kayode Street; Ikeja Gra Ikeja Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5021,Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5022,Residential Land,Off Agbaoku Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5023,Omil Agu Land And Property,Treasure Park Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets,Airport Road +5024,"Fully Detached 5bedroom Duplex With 2rooms Bq At Alausa , Ikeja",Behind Shoprite Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets,Alausa +5025,Lands For Sale,Tresure Park And Greden Alausa Ikeja Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets,Alausa +5026,Land,Behind New Redeemed Camp Ikeja Gra Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5027,4 Bedroom Detached Duplex, . Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikeja +5028,Fully Detached 4 Bedroom Duplex + 1 Room Bq With C Of O,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5029,Residential Land At Ikeja,Awuse Estate Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5030,Existing 3 Bedroom Duplex With Bq,Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +5031,Executive 5bedroom Fully Detached Duplex For Sale At Omole Phase2,Omole Phase2 Omole Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets,Omole +5032,Furnished Guest House With Governor's Consent,Ikeja Lagos,₦,"150,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikeja +5033,5 Bedroom Detached Duplex," adekunle Fajuyi Way, Ikeja Gra Ikeja Lagos",₦,"500,000,000",0,0,0,5 beds,7 baths,0 Toilets,GRA +5034,Executive 6 Bedroom Duplex And 2 Bedroom Bungalow On A Full Plot,Sanyaolu Street Off Oregun Road Ikeja Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,6 Toilets,Oregun +5035,4 Bedroom Terraced Duplex, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +5036,6 Bedroom Detached Duplex,Akin Lakanu Close Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,1,6 beds,8 baths,8 Toilets,Adeniyi Jones +5037,5 Bedroom Detached Duplex," off Opebi Allen Road, Opebi Ikeja Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,0 Toilets,Opebi +5038,5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Omole +5039,New 4bedroom Duplex At Omole Phase2,Omole Phase2 Omole Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets,Omole +5040,4 Bedroom Detached Duplex,  Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikeja +5041,Hotel,Gra Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,1,10 beds,10 baths,0 Toilets,Awolowo Way +5042,Brand New Luxurious 4 Bedroom Fully Detached Duplex,Omole Phase2 Omole Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Omole +5043,4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Allen Avenue +5044,6 Units 3 Bedroom Luxury Apartments With Bq, Allen Avenue Ikeja Lagos,₦,"600,000,000",1,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +5045,11 Plots Of Land In Ikeja Computer Village,Computer Village Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",1,1,0,0 beds,0 baths,0 Toilets,Airport Road +5046,Newly Built 4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets,Allen Avenue +5047,4 Wing Of 3 Bedroom Duplex, Toyin Street Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Ikeja +5048,3 Units Of 4 Bedroom Duplex,2 4 Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,GRA +5049,Newly Built 5 Bedroom Detached Duplex With A Room Bq,In An Estate Off Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5050,5 Bedroom Fully Detached Duplex,Akinola Crescent Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,5 Toilets,Adeniyi Jones +5051,6 Bedroom Semi Detached Duplex,Off Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Agidingbi +5052,5 Bedroom Fully Detached House,"Off Ajose Street, Mende Maryland Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +5053,5 Bedroom Fully Detached House,"Off Ajose Street, Mende Maryland Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +5054,Luxury 3 Bedroom Apartment With One Room En Suite Bq, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +5055,Land,Omole Phase 2 Ikeja Gra Ikeja Lagos,₦,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets,GRA +5056,New 2 Bedroom Duplex,Olowora Omole Ikeja Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,2 Toilets,Omole +5057,A Block Of 3 Bedroom Flats,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets,GRA +5058,Luxury 5 Bedroom Terraced Duplex,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5059,A Plot Of Land,Salvation Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5060,Executive 4 Bedroom Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,4 Toilets,Adeniyi Jones +5061,Brand New 3bedroom Flats Plus Bq,Off Allen Avenue Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Allen Avenue +5062,5 Bedroom Semi Detached Duplex,Off Aromire Street Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5063,Registered Deed Of Assignment,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +5064,Houses,Honda Places Adeniyi Jones Ikeja Lagos,₦,"16,500,000",0,1,1,3 beds,4 baths,4 Toilets,Adeniyi Jones +5065,5994sqm Fenced Land,Asogbon Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5066,3815sqm Land At Ikeja Gra,Adekunle Fajuyi Gra Ikeja G.r.a Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5067,5 Bedroom Detached Duplex With A Room Bq,Omole Phase 2; Omole Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +5068,4 Bedroom Terrace House,Ayo Rosiji Street; Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5069,Luxury 4 Bedroom Apartment With One Room Bq, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +5070,5 Bedroom Detached House, Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5071,2 Bay Warehouse On 2000 Square Meters,Oregun Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5072,3 Bedroom Terraced Duplex For Sale,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +5073,Clean And Well Finished 3 Bedroom Serviced Flat With A Room Boys Quarters,Allen Avenue Allen Avenue Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +5074,Lovely Built Duplex,. Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Allen Avenue +5075,Newly And Tastefully Finished 5units Of 5bedroom Terrace In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5076,Luxury 4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5077,Exquisite 5 Bedroom Terraced Duplex,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5078,Lovely 5 Bedroom Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5079,Detached House,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,4 Toilets,GRA +5080,Tastefully Finished 4 Bedroom Detached House,. Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5081,Tastefully Finished 5 Bedroom Town House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5082,"Newly Built With State Of The Art , Well Finished And Clean 5 Bedroom Terrace Duplexes In A Well Secured Estate.",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5083,Very Clean 4 Bedroom Duplex With A Room Bq,. Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +5084,Luxury 5 Bedroom Detached Duplex,Sowemimo Street Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5085,A Plot Of Land 520 Sqm,Omofade Omole Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +5086,Land For Sale At Allen Avenue Ikeja Lagos,Allen Avenue Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5087,Lovely 5 Bedroom Semi Detached Duplex,Omole Phase 1 Fm Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5088,A Tenement Story Building With 16 Rooms + 2 Bedroom And A Bq For Sale.,Oba Akran Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikeja +5089,4 Bedroom Semi Detached,"Off Salvation Road, Awuse Extension. Opebi Ikeja Lagos",₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5090,Brand New 4bedroom Terrace,Off Opebi Road Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5091,Newly Built 4 Bedroom Detached Duplex With Bq All Rooms En Suit,Estate Off Allen Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +5092,Fantastic Newly Built 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,4 Toilets,Omole +5093,Fenced 3600 Sqm Of Bare Land,Off Oregun Road Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5094,6 Bedroom Detached Duplex,Lagos Ikeja Lagos,₦,"105,000,000",0,0,0,6 beds,5 baths,5 Toilets,Other Ikeja +5095,6 Bedroom Duplex,Ogba Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets,Agidingbi +5096,5 Acres Of Land With 6 Bay Ware House,Oregun Road Oregun Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5097,4 Bedroom Terrace House In Adeniyi Jones, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +5098,Newly Built 4 Bedroom Terrace Duplex + Bq + Pool,In An Estate Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets,Opebi +5099,Superb Perfectly Finished 5 Units Of 5 Bedrooms Duplex,Merit Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5100,2 Wings Duplex, Allen Avenue Ikeja Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5101,Lovely 12 Bedroom Terrace Duplex,Off Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,10 beds,8 baths,9 Toilets,Opebi +5102,Luxury 5 Bedroom Detached Duplex,"Near Fani Kayode Street, Gra Ikeja Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5103,14 Plots Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5104,Neat 5 Bedroom Semi Detached House,Ayo Rosiji Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets,GRA +5105,Tastefully Finished 5 Bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5106,410sqm Land,Off Opebi Link Road Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5107,Lovely 4 Bedroom Duplex With A Room Bq,Adeniyi Jones Lkeja Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5108,Luxury 5 Bedroom Townhouse For Sale,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5109,Luxurious Terrace 4 Bedroom Townhouse,Off Salvation Rd Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +5110,Tastefully Finished 4 Bedroom Semi Detached House, Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +5111,4 Bedroom Duplex And A Storey Building Boys Quarter,"Adekunle Fajuyi, Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5112,Nice 2 Bedroom Bungalow, Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Opebi +5113,"1,200sqm Land",Cbd Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5114,Nice 3 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +5115,Lovely 3 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +5116,Beautiful 5 Bedroom Duplex,Bamishile Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +5117,Lovely 5 Bedroom Duplex,Off Adeniyi Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5118,Nice 6 Bedroom Duplex,Ondo Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets,Allen Avenue +5119,Nice 4 Bedroom Duplex,Julie Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oregun +5120,Superbly Built 3 Bedroom Duplex,Minima Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +5121,Lovey 4 Bedroom Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5122,4 Unit Of 3 Bedroom,"Seriki Aro Avenue, Ajao Ikeja Gra Ikeja Lagos",₦,"53,000,000",0,0,0, beds, baths, Toilets,GRA +5123,4bedroom Duplex,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5124,1300sqm Fenced Land,Jobi Fele Way Cbd Alausa Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5125,Fenced Land Measuring 6000sqm,"By J A Paul, Cbd Alausa Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5126,"Land Measuring 2,000sqm",Off Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5127,Beautiful Well Functioning Hotel,Off Toyin Street Toyin Street Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikeja +5128,735 Sqm Of Land,Phase 1 Magodo Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5129,4 Bedroom Duplex,"Alakija, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +5130,2 Acres Of Land,Along Toyin Street Toyin Street Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5131,5 Bedroom Detached House With 2 Rooms Bq, Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oregun +5132,5 Bedroom Exquisite House,Bankole Cole Cresent Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5133,5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +5134,A 5 Bedroom Terrace Duplex,Ladoke Akintola Str. Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,5 Toilets,GRA +5135,5 Bedroom Terrace Duplex,Esugbayi Street Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets,GRA +5136,5 Bedroom Terrace Duplex,Remi Fani Kayode Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets,GRA +5137,Blocks Of 32 Units Of 3 Bedroom Flat,Isaac John Street Ikeja G.r.a Ikeja Lagos,₦,"2,600,000,000",0,0,0,3 beds,0 baths,3 Toilets,GRA +5138,10 Units Of 5 Bedroom Terrace Duplex,Obama Dosumu Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets,GRA +5139,Newly Built 5 Bedroom Executive Detached Duplex,At Omole Phase 2 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Omole +5140,Plot Of Land,Omole Phase 1 Near Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5141,A 350sqm Of Land,Opebi Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5142,20 Rooms Boutique Hotel,Western Side Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +5143,3 Plots Of Land With A Complex On It,Isaac John Ikeja G.r.a Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5144,8 Plots Of Land Approved For Petrol/filling Station,Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5145,Beautiful 4 Bedroom Duplex With Bq,Talabi Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +5146,Exquisite 5 Bedroom Semi Detached Duplex,"Victoria Odeniran Street,off Salvation,opebi Ikeja Opebi Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +5147,Half Plot Of Land,Juli Estate Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5148,9 Floors Commercial Building, Allen Avenue Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5149,Existing Hotel With International Standard,Olu Okerele Street Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Adeniyi Jones +5150,Nice 5 Bedroom House Sitting On 1000sqm,Just By Chrisland School Opebi Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +5151,Lovely 5 Bedroom Detached House With Bq,Ogundana Street Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,4 baths,6 Toilets,Allen Avenue +5152,"7,000 Square Meter Land",Bank Anthony Way Maryland Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5153,Land,Kayode Ikeja Gra Ikeja Lagos,₦,"152,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5154,Exquisite 5 Bedroom Duplex With Bq,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5155,Land,Behind Latter Rain Assembly Auditorium Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5156,1826sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5157,670m2 Land, Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5158,5units Of 4 Bedroom Terrace Duplex | Off Plan, Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +5159,4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5160,5 Bedroom Semi Detached Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agidingbi +5161,Massive 4 Bedroom Detached Duplex With Bq,Opp.dstv Office Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5162,Shop Space,New Alade Market Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5163,8 Square Metres Shops Space,New Alade Market Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5164,Land,Along Agidingbi Road Wempco T Junction Agidingbi Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5165,Land,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5166,4 Bedroom Duplex Office Space Building, Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +5167,4 Bedroom House, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5168,Double Corner Piece Land In Maryland,Directly Facing Ikorodu Road Maryland Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Maryland +5169,Newly And Well Finished 5 Bedroom Terrace Duplex,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +5170,Lovely 5 Bedroom House,"Kudirat Abiola Way, Ikeja Alausa Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +5171,5 Bedroom Furnished Terrace Duplex + Bq,Mini Estate Off Allen Allen Avenue Ikeja Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +5172,Warehouse Plus 2 Storey Building Office Block,"Oregun Road, Ikeja Oregun Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5173,Fully Detached Royal 4 Bedroom Duplex,"Oduduwa Road, Off Isaac John Ikeja Gra Ikeja Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5174,4 Bedroom Detached Duplex,Opebi Allen Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5175,Semi Detached Royal 4 Bedroom Duplex,"Oduduwa Road, Off Isaac John Ikeja Gra Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5176,Exquisitely Built 5 Bedroom Detached Duplex With Bq,Magodo Gra Phase 1 Alausa Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5177,Plots Of Bare Land,Off Opebi Road Opebi Ikeja Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5178,"3,700 Square Metre Bare Land",Along Toyin Street Toyin Street Ikeja Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5179,Lovely 5 Bedroom Fully Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5180,Exquisitely Built 5 Bedroom Detached Duplex,Herbert Macaulay Crescent Ikeja Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5181,9 Plots Of Land At Adeniyi Jones Ikeja, Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5182,Brand New 5 Bedroom Terrace House At Adeniyi Jones Ikeja,Molade Okoya Thomas Street Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5183,Land,Opebi Road Along Agbaolu Street Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5184,Lovely Six Flat Complex,Majekodunmi Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,2 baths,3 Toilets,Allen Avenue +5185,Land For Sale,Agidingbi Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5186,1900sqm Fenced Plot Of Land,Off Lateef Jakande Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5187,Lovely 2 Units Of 6 Bedroom Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +5188,5 Bedroom Detached Duplex For Sale At Ikeja,Joel Ogunaike Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5189,"65,000sqm Of Land At Lagos Ibadan Expressway",Lagos Ibadan Expressway Ikeja Lagos,₦,"37,500",0,0,0, beds, baths, Toilets,Other Ikeja +5190,New 4bedrm Terrace House,Church Street Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5191,Land Measuring 1500 Square Metres,Alausa Cbd Alausa Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5192,500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5193,5 Bedroom Detached Duplex For Sale At Ikeja,Joel Ogunaike Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5194,Bare Land, Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5195,Land,"Oroleye Street, Salvation Bustop Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5196,Well Finished Detached House With Challet And 4 Rooms Bq,"Off Oduduwa Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"850,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5197,4 Bedroom Terraced Duplex With Bq,Awuse Estate Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +5198,Brand New 5 Bedrooms Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5199,Brand New 4 Bedroom Terrace Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5200,One Arce Of Land,Awolowo Ikeja Opposite Airport Hotel Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5201,Land,0 Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5202,25 Rooms Hotel, Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5203,Luxurious Hotel Complex,Plot 4 & 5 Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5204,Land For Sale,Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5205,"Tastefully Furnished 5bedroom Duplex With Chalets, Bq & Swimming Pool",Ikeja Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,7 Toilets,GRA +5206,Land,Dideolu Court Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5207,Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5208,4 Bedroom Maisonette Duplex + 1bq Carcass @ Savvy Court Estate (under Development),Ogundana Close Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +5209,Land At Zeder Pavilion Estate. Agindingbi Ikeja. (rc),2 Minutes Drive From Zenith Bank Plc Agidingbi Ikeja Lagos,₦,"40,500,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5210,Hotel Complex, Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5211,6 Nos. 3 Bedroom Flat All Ensuite,Alausa Alausa Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Alausa +5212,Full Plot Of Residential Land Measuring 750sqm,River Valley Estate Ikeja Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5213,"Mo Tower, Allen Avenue",Allen Avenue Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +5214,5 Set Of Luxurious 5 Bedroom Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5215,50 Acres Plots Of Land,Isheri North Gra Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5216,4 Units Of 3 Bedroom Flat With Bq, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +5217,Newly Built 5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5218,Land,Industrial Estate By Adeniyi Jones Ikeja Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5219,505.5sqm Of Land At Ladoke Akintola,Ladoke Akintola Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5220,822.24sqm Of Land On Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5221,Land For Sale,Oba Akran Ave Ikeja Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5222,30 Rooms Hotel For Sale At Ikeja,Off Ikeja Guinness Roundabout Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5223,3972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5224,Brand New 4 Bedroom Terrace Duplex,Salvation Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5225,5 Bedroom Duplex,"3, Bode Amoo Close Adeniyi Jones Ikeja Lagos",₦,"200,000,000",0,0,0,5 beds,3 baths,4 Toilets,Adeniyi Jones +5226,A 5 Bedroom Duplex,Omomle Phase 1 Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agidingbi +5227,5 Flats Of Detached Bungalow On One And Half Plot Of Land,"Oba Akran, Ikeja Oba Akran Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5228,Newly Built 5 Bedroom Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5229,2780sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5230,16 Nos Of 4 Bedroom Terraces All Rooms Ensuite With A Room Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5231,Fantastic 5 Bedroom Detached House,Sunday Adigun Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +5232,5 Bedroom Duplex,Omole Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Omole +5233,4 Bedroom Semi Detached Duplex, Oregun Ikeja Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +5234,5 Bedroom Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,4 Toilets,Alausa +5235,Land,Along Agbaoku Street Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5236,Luxurious Hotel Complex For Sale At Ikeja,Opebi Link Road Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Airport Road +5237,7 Bedroom Bungalow,"Off Opebi,ikeja Lagos Mainland Opebi Ikeja Lagos",₦,"85,000,000",0,0,0,7 beds,5 baths,5 Toilets,Opebi +5238,Twin Duplex,Omole Phase 2 Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Omole +5239,3 Bedroom Duplex, Oregun Ikeja Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +5240,5 Bedroom Flat,"Estate Off Oregun, Ikeja. Oregun Ikeja Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oregun +5241,"Newly Built 4 Bedroom Semi Duplex With A Room Bq In Allen, Ikeja",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +5242,4 Bedroom Duplex With A Bq, Allen Avenue Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Allen Avenue +5243,5 Bedroom Fully Detached Duplex, Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agidingbi +5244,3 Bedroom Flat,Raji Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,3 Toilets,Allen Avenue +5245,4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5246,1200sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5247,4 Bedroom Duplex And A Storey Building Boys Quarter,At Adekunle Fajuyi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +5248,Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5249,5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +5250,5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +5251,1000sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5252,Land,Adeyemo Alakija Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5253,1000sqm Of Land At Sasegbo Street,Sasegbo Street Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5254,Dry Land At Christal Villa Queen's Court,Lekki Obafemi Awolowo Way Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5255,2528sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5256,3 Bedroom Terrace Duplex For Sale At Ikeja,Oba Dosunmu Street Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5257,4080sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5258,3 Bedroom Flat,Bamidele Close Off Billing Way Behind 10 Degree Event Centre. Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oregun +5259,5 Bedroom Luxury Terrace House,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5260,Commercial Property, Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5261,Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5262,5 Bedroom Detached Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5263,5 Bedroom Fully Detached Duplex With A Room Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5264,4 Units Of Four Bedroom Terrace Duplex At Ikeja,10 Church Street Off Irewole Street Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5265,"8 Bedroom Duplex With 2 Units Of 5 Bedroom Duplex On 1,000 Square Metres Of Land",Off Opebi Road Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,8 beds,0 baths,0 Toilets,Opebi +5266,Newly Built And Well Finished 2 Bedroom Flats Of 6 Flats,Close Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,2 beds,2 baths,3 Toilets,Allen Avenue +5267,Bedroom Detached Duplex, Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +5268,Land Measuring 1879 Sqm,Cbd Alausa Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5269,3 Bedroom Bungalow + Bq,Onipetesi Estate Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +5270,2.5 Acres Of Land,By Christ Embassy Church Oregun Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5271,5 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5272,"Newly Built Bedroom Duplex With 2 Rooms Bq On 1,340 Square Metres Of Land",Dosunmu Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets,GRA +5273,100000sqm Of Land For Sale At Ikeja,Acme Road Ikeja Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +5274,2 Nos 5 Bedroom Brand New Semi Detached Duplexes, Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5275,Guest House,Salvation Road Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5276,Newly Built 4 Nos Of 4 Bedroom Terrace Duplex,At Magodo Gra Phase 1 Ikeja Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Omole +5277,6 Bedroom Mansion With 2 Rooms Bq,At Omole Phase 2 Ikeja Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets,Omole +5278,6 Bedroom Detached Mansion,Omole Phase 2 Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Omole +5279,6 Bedroom Detached Duplex,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +5280,Luxury Homes At Rose Court,"Akora Villas, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Adeniyi Jones +5281,2 Wings 5 Bedroom Duplex With 2 Nos 2 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +5282,4 Bedroom House For Sale,"Continental Way, Magodo G.r.a Ikeja Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5283,2 Wings 5 Bedroom Duplex With 2 Nos 2 Bedroom Flat,Folawewo Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Allen Avenue +5284,1535sqm Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5285,2000sqm Of Land For Sale At Ikeja Gra,Sowemimo & Fani Kayode Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5286,Land,Fani Kayode & Ladoke Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5287,5 Bedroom Terrace Duplex,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5288,5 Bedroom Fully Detached Duplex With 2 Bedroom Flat Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5289,Land,Behind Alfred Garden Oregun Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5290,4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5291,5 Bedroom Detached Duplex, Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +5292,Office Space, Mangoro Ikeja Lagos,₦,"110,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikeja +5293,4 Bedroom Duplex With A Bq In Ikeja,Opposite Omole Phase 1 Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agidingbi +5294,Four Unit Of 4 Bedroom Terrace+ Boys Quarters,Off Adbaoku Street Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5295,"Land Measuring 3,972sqm At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5296,"Land 2,000sqm Along Mobolaji Bank Anthony Way",Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5297,3 Units Of Newly Built 4 Bedroom Fully Detached Duplex In Ikeja,"34b Remi Fani Kayode, Ikeja Gra Ikeja Lagos",₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5298,5 Bedroom Duplex,Odudu Crescent Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5299,4 Nos Of 3b Edrooms Flat +2nos Of 2 Bedrooms Flat In Nice At Opebi,Off Church Street Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Opebi +5300,4 Bedroom Terrace Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5301,5989sqm Of Land For Sale At Ikeja Gra,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5302,1000sqm Of Land On Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5303,Land,Oregun Mixed Development Scheme Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5304,Land,Oba Akinjobi Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5305,Detached Duplex With A Bq At Ikeja Gra,Fani Kayode Road Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,6 beds,5 baths,6 Toilets,GRA +5306,Newly Built 4 Bedroom Duplex At Ikeja,Longe Street Agidingbi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agidingbi +5307,1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5308,3482sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5309,Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5310,4214sqm Of Land At Sobo Arobiodu Street,Sobo Arobiodu Street Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5311,A Plot Of Land,"Adeleke Solanke Close, Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5312,5 Bedroom Funished Duplex,Salvation Opebi Alen Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Ikeja +5313,Land,Omolade Okoya Thomas Estate Adeniyi Jones Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5314,Land,"Ladipo Oluwole , Adeniyi Jones Ikeja Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5315,Land,"Lola Holloway,omole Phase 1 Adeniyi Jones Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5316,Newly Built 4 Bedroom Terrace Duplex,Salvation Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5317,A Cornerpiece Block Of 4 Flat Of 3 Bedroom Flat,Allen Avenue/toyin Street Ikeja Lagos State Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +5318,Prime Bare Land On 3 Plots At Opebi,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5319,A Clean 3 Bedroom Luxury Flat,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +5320,"Vacant 12(units) Lock Up Shops, Offices And 3(units)3 Bedroom Flat Offices",Awolowo Way Opposite Computer Village Ikeja Lagos Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5321,Executive 5 Bedroom Mansion,Ikeja Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5322,"A Plot Of Land Measuring 2,235 Square Meters",Remi Fani Kayode Street Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5323,3 Bedroom Fully Detached Duplex,Ajao Estate Isolo Airport Road(ikeja) Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +5324,Land, Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5325,4000sqm Of Land For Sale At Ikeja Gra,Adeyemo Alakija Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5326,4 Bedroom Detached Duplex With Two Rooms Bq,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5327,4 Plots Of Land At Remi Fanikayode Street,Remi Fanikayode Street Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5328,2000sqm Of Land At Joel Ogunaike Street,Joel Ogunaike Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5329,"New Block Of 20 Units Of 3 Bedroom Flats, All Rooms Ensuite With A Room Bq",Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"5,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +5330,Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5331,7 Bedroom Fully Detached House,Off Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets,Adeniyi Jones +5332,Fenced Acre Of Land,Ladipo Obateye Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5333,A Five Bedrooms Duplex+mini Flat Boysquarter On 580sqm,Off Ajanaku Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,4 baths,5 Toilets,Opebi +5334,5edrooms Duplex+ 2rooms Bq On,Off Abel Oreniyi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds, baths,5 Toilets,Opebi +5335,Five Bedroom Detached + Bq On 500sqm,Off Babinton St Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5336,Mall ( Off Plan),Allen Round About Allen Avenue Ikeja Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5337,6 Bedroom Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +5338,4 Bedroom Terrace Duplex,Ibadan Close Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5339,A Prime Fenced Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5340,Office Complex, Oba Akran Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,10 Toilets,Other Ikeja +5341,A Prime Fenced Land On Two And Half Acres With Warehouse And Offices Structure,Agidingbi Road Ikeja Lagos Agidingbi Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5342,Tastefully Finished 2(nos) Of 4 Bedroom Duplex,Ikeja Gra Lagos State Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5343,4 Bedroom Terrace Duplex,Ayo Rosiji Crescent Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5344,4 Bedroom Terraced Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5345,5942sqm Of Land At Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5346,Land,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5347,3900sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5348,Land,Fani Kayode Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5349,8200sqm Of Land At Adeyemo Alakija Street,Adeyemo Alakija Street Ikeja Lagos,₦,"1,650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5350,4 Blocks Of 3 Flats And Bq House,Olutoye Creasent Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,3 Toilets,Adeniyi Jones +5351,3872sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5352,"5 Bedroom Detached House, Duplex With Bq",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5353,Land (joint Venture),"Oroleye Street, Salvation Bustop Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5354,4 Units Of 5 Bedroom Detached Building,"8, Michael Ogun Ikeja Gra Ikeja Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5355,Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5356,Land,Off Unity Road By Toyin Street Ikeja Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5357,Land,By Abiola Crescent Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5358,Luxury 4 Bedrooms And 3 Bedroom + 1 Bq, Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +5359,3 Bedroom And 4 Bedroom With 1 Bq, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +5360,Brand New 3 Bedroom Duplex,Omole Phase 1 Estate Omole Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Omole +5361,"4 Bedroom Flat At Magodo Gra, Shangisa, Ketu, Lagos",Adeniran Street Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +5362,4 Bedroom Semi Detached Duplex At Opebi, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5363,Newly Built 5 Bedroom Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Allen Avenue +5364,C Of O, Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agidingbi +5365,Land,Lopez Close Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5366,4 Bedroom Duplex,5a Adediron Street Magodo Gra Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Alausa +5367,5 Bedroom Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agidingbi +5368,8 Units Of 4 Bedroom Terrace Duplex,"Boet Estate, Adeniyi Jones Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Adeniyi Jones +5369,4 Bedroom Semi Detached Duplex,Salvation Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5370,3 Bedroom Flat,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets,Adeniyi Jones +5371,4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +5372,Full Detached House With Pool,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,7 beds,7 baths,5 Toilets,GRA +5373,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5374,Land,Fadeyi Bus Stop Maryland Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5375,Land,An Estate Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5376,"Genuine And Dry Plots Of Estate Land At Magodo Gra, Lagos","Magodo Gra Phase 2, Shangisha Ikeja Lagos",₦,"40,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikeja +5377,"Plots Of Dry Estate Land At Magodo Gra, Lagos","Magodo Gra, Phase 2, Shangisha Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5378,Half Plot Of Land Along Oregun/opebi Link Bridge.,Along Opebi Oregun Link Bridge Opebi Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5379,Duplex In Ikeja Gra,Micheal Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,8 beds,10 baths,10 Toilets,GRA +5380,Land,Opebi Village Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5381,1532sqm Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5382,Executive 6 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +5383,Flat Apartment,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5384,Commercial Bareland At Alausa Ikeja Lagos,Radio Bus Stop Alausa Ikeja Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5385,Newly Built 4 Bedroom Duplex(corner Piece),Oroleye Street Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5386,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5387,6000sqm Of Land For Sale At Oba Akinjobi,Oba Akinjobi Way Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5388,Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5389,Newly Built 4 Bedroom Duplex,Oroleye Street Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5390,4000sqm Of Land For Sale At Adeyemo Alakija,Adeyemo Alakija Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5391,2 Bedroom Flat At Magodo Gra,Off Basheer Shittu Ikeja Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikeja +5392,4 Bedroom Duplex At Magodo Gra,Off Basheer Shittu Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +5393,3 Bedroom For Sale,Allen Awolowo Way Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Awolowo Way +5394,Land,"5 Mins Drive From Lagos State Secretariat, Cmd Road Ikeja Gra Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5395,4 Bedroom Terrace Duplex With A Room Bq,"Akora Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +5396,Plots Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"765,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5397,Luxury New 2nos 6 Bedrooms Detached House,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +5398,Neat Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5399,5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikeja +5400,Classic 6 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"60,000,000",0,0,0,6 beds,6 baths,0 Toilets,Other Ikeja +5401,Land,"Alausa, Ikeja, Lagos Ikeja Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5402,5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikeja +5403,Land,"Ikeja, Lagos Ikeja Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5404,7 Bedroom Detached House,"Ikeja, Lagos Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5405,Uncompleted 2/3 Bedroom Flat,"Ikeja, Lagos Ikeja Lagos",₦,"15,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5406,Land,"Ikeja, Lagos Ikeja Lagos",₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5407,3 Bedroom En Suite,"Ikeja, Lagos Ikeja Lagos",₦,"24,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikeja +5408,2 Plots Of Land With C Of O,"Ikeja, Lagos Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5409,2 Plot Of Land With C Of O,"Ikeja, Lagos Ikeja Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5410,4 Bedroom Terrace Duplex+ Bq, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5411,5 Bedroom Semi Detached Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5412,Flat / Apartment,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +5413,Newly Built 5 Bedroom Fully Detached With One Room Bq.,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikeja +5414,Newly Built 4 Bedroom Terrace Duplexes With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikeja +5415,Executive 4 Bedroom Duplex With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikeja +5416,Luxury Block Of Flats,"Ikeja, Lagos Ikeja Lagos",₦,"400,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Ikeja +5417,Newly Built House,"Ikeja, Lagos Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikeja +5418,5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikeja +5419,5 Bedroom Duplex With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikeja +5420,5 Bedroom Detached Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikeja +5421,5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikeja +5422,A Vacant 6 Blocks Of 2 Bedrooms On 1 Acre Of Land,Ladoke Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,2 beds,4 baths,4 Toilets,GRA +5423,Estate Land,"Ikeja, Lagos Ikeja Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5424,5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5425,Land, Obafemi Awolowo Way Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5426,Prime Commercial Corner Piece Bare Land Measuring 6000sqm,Sobo Arobiodu Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5427,Executive 3 Bedroom Flat,"Ikeja, Lagos Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Ikeja +5428,Vacant 5 Bedroom Fully Detached House,Alausa Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +5429,4 Bedroom Duplex,"Shomolu, Lagos, Lagos Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +5430,Half Plot Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5431,6 Bedroom Duplex With 2 Bedroom Bungalow,"Ikeja, Lagos Ikeja Lagos",₦,"55,000,000",0,0,0,6 beds,6 baths,0 Toilets,Other Ikeja +5432,One Acre Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5433,2 Units Of 3 Bedroom Flat With A 4 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,4 baths,0 Toilets,Other Ikeja +5434,5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"87,000,000",0,0,0,5 beds,2 baths,0 Toilets,Other Ikeja +5435,3 Bedroom Flat,"Off Pako Bus Stop, Dopemu Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Ikeja +5436,Newly Built Four Bedroom Terrace Duplex For Sale In Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5437,Land,Folusho Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5438,4 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"110,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikeja +5439,Building,"Ikeja, Lagos Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,10 baths,0 Toilets,Other Ikeja +5440,Lovely 6 Bedroom Detached Duplex,Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets,Adeniyi Jones +5441,Luxury 5 Bedroom Duplex,Offladoke Akintola Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5442,Shop,New Alade Market Allen Avenue Ikeja Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5443,Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5444,Fenced Bare Lan,Oladosu Street. Unity Road Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5445,4 Bedroom Duplex (ongoing Construction),Channels Avenue Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +5446,Land, Obafemi Awolowo Way Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5447,14 Plots Of Land,"Lateef Jakande Road, Agidingbi. Agidingbi Ikeja Lagos",₦,"840,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5448,5 Bedroom Duplex, Ikeja Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikeja +5449,Shopping Mall, Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5450,Land, Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5451,Tastefully Finished 3 Bedroom Flats,"Shonibare Estate, Maryland Lagos State Maryland Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +5452,Exquisite 5 Bedroom Duplex And 4 Bedroom Duplex,Adegbite Off Sule Street Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5453,2 & 3 Bedroom Flat,Arowojobe Maryland Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Maryland +5454,5 Bedrooms Duplex With 2 Large Office Space,Emmanuel Keshi Street Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Ikeja +5455,Newly Built 3bedroom Flat + 1bq,Ogba Ikeja Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +5456,3 Bedroom Flat,Awuse Estate Ikeja Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +5457,1200sqm+ Structure House,Magodo Ikeja Lagos,₦,"180,000,000",0,0,0,9 beds,10 baths,0 Toilets,Other Ikeja +5458,5 Bedroom Detached Duplex + Bq,Magodo Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,5 baths,5 Toilets,Other Ikeja +5459,37 Acres Of Land,Maryland Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5460,6 Acres Of Land,Awolowo Rd Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5461,5 Bedroom Luxury Semi Detached Duplex,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +5462,Land,Maryland Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5463,Land For Sale In Magodo,Magodo Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5464,920sm Land,Toyin Street Ikeja Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5465,A Plot Of Land,Isheri Ikeja Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5466,Detached House, Mobolaji Bank Anthony Way Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5467,Distressed Sale Pig Farm,Oke Aro Ikeja Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5468,New Duplex For Sell Ikeja,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,0 Toilets,Opebi +5469,Plot Of Land,Magodo Gra Ikeja Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5470,4 Bedroom Duplex,Ogundan Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +5471,5 Bedroom Detached Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikeja +5472,"Buy One, Refer 3 15 New Buyers, And Get 200% Of Your Money Back",Imota Ikeja Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5473,Uncompleted Building,Magodo Ikeja Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5474,Fully Furnished Office Space,Ogba Ikeja Lagos,₦,"460,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5475,A Story Building,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets,Allen Avenue +5476,"Alakuko, Alagbado",Alagbado Ikeja Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +5477,An Exclusive Estates Land Offer!,Ikeja Gra Ikeja Lagos,₦,"3,500,000",0,1,0,0 beds,0 baths,0 Toilets,GRA +5478,3 Bedroom Apartment (off Plan),Agbeke Balogun Agidingbi Ikeja Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,3 Toilets,Agidingbi +5479,5 Bedroom Duplex, Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Maryland +5480,3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets,Opebi +5481,An Industrial Property,Off Oregun Road Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikeja +5482,Land,Cane Village Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5483,"Fully Detached Duplex With 5 Bedrooms, Guestroom, And A Bq",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,4 baths,4 Toilets,GRA +5484,A Newly Completed 6 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds,4 baths,4 Toilets,GRA +5485,5 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,3 baths,3 Toilets,Opebi +5486,5 Bedroom Detached Duplex +1 Room Bq, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets,GRA +5487,5 Bedroom Detached Duplex With 1 Room Bq, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,4 baths,4 Toilets,GRA +5488,Jv Land,"Off Isaac John, Ikeja Gra Ikeja Lagos",₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,GRA +5489,5 Bedroom Semi Detached House + Bq, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5490,4 Bedroom Duplex,15 Onamila Crescent Valley Estate Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +5491,Commercial Property,Oba Akran Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5492,Land,Oregun Oregun Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5493,2 Units Of 3 Bedroom Flat,Off Opebi Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Opebi +5494,Land ( Joint Venture ), Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5495,Land, Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5496,4 Bedroom Twin Duplex With Bq,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +5497,Land,Kajola Str Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5498,5 Bedroom Terrace Apartment (off Plan),Opebi Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5499,4 Bedroom Flat,Soji Adegbenga Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Allen Avenue +5500,Land, Opebi Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5501,Land,Alausa Oregun Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5502,A Luxury Apartment,Salvation Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5503,Storey Building At Unity Road,Unity Road Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Airport Road +5504,Land,Alhaji Bankole Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5505,Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5506,Land,Kudirat A Biola Way Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5507,6 Bedroom Detached House With 2 Rooms Bq,Mole Phase2 Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Omole +5508,Land,"Off Adeniyi Jones, Adeniyi Jones Ikeja Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5509,4 Bedroom Terrace House, Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agidingbi +5510,Land, Agidingbi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5511,5 Bedroom Duplex And A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5512,6 Bedroom Duplex,Awushe Estate Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,7 Toilets,Opebi +5513,4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5514,5 Nos. Mini Flats And 3 Nos. Room Self Contained Apartments + Shop,"Asenuga Street, Off Osho Street, Opebi Link Bridge, Opebi Opebi Ikeja Lagos",₦,"100,000,000",0,0,0,2 beds,2 baths,2 Toilets,Opebi +5515,4 Storey Building,Bayo Shodipo Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5516,4 Bedroom Fully Detached House + Bq,"House 5, Peace Court, 2/4, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5517,4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets,GRA +5518,5 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5519,Land, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5520,Hotel, Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5521,Hotel For Sale At Ikeja, Awolowo Way Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5522,Land, Agidingbi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5523,3 Bedroom Flat, Toyin Street Ikeja Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +5524,Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5525,Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5526,Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5527,Hotel, Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +5528,4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5529,5 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5530,Land, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5531,Land,Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5532,Old Lastma Office At Anthony For Sale,Old Lastma Office Mobolaji Bank Anthony Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5533,4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5534,4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5535,4 Bedrooms Detached Duplex,Off Oregun Road Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +5536,5 Storey Building,Acme Road Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5537,3 Bedrooms Serviced Apartment, Oregun Ikeja Lagos,₦,"38,500,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +5538,3 Bedrooms Flat,Omole Phase 2 Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Omole +5539,2nos 4 Bedroom Flat And 2 Nos 3 Bedroom Flat,Ajalli Str Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +5540,4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5541,Storey Building, Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5542,Land,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5543,Land ( Joint Venture ),Michael Ogun Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5544,Land, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5545,Land, Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5546,Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5547,4 Bedroom Duplex With A Bq,"Lily Drive, M.k.o Abiola Gardens Alausa Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Alausa +5548,A 5 Bedroom Duplex With 2 Bungalow In Gra Ikeja,Gra Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5549,Land For Sale, Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5550,Land, Oba Akran Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5551,4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5552,Land ( Joint Venture ),Bolanle Close Allen Avenue Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5553,Land,"Oba Dosunmu, Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5554,1000 Square Meter Land,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5555,5 Bedroom Flat,Sumola Street Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets,Maryland +5556,Land,Cbd Close Union House Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5557,8 Units Of 3 Bedroom Flat,Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +5558,Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"5,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5559,Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5560,Land,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5561,Land,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5562,Land,Joel Ogunnaike Street Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds,0 baths,0 Toilets,Other Ikeja +5563,Land,Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5564,Land,Oba Akinjobi Way Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5565,Land,Oba Dosunmu Street Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5566,Land,Ladoke Akintola Street Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5567,Land,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5568,Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5569,Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5570,Land,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5571,Land,Ladoke Akintola Street Ikeja Lagos,₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5572,Land,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds,0 baths,0 Toilets,Awolowo Way +5573,30 Rooms Hotel At International Airport Road Ikeja For Sale,International Airport Road Ikeja Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5574,Land,Joel Ogunnaike Street Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5575,Land,Oduduwa Crescent Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5576,Land,Ajisafe Street Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5577,Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5578,Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5579,Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"353,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5580,Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5581,Land,Abimbola Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5582,Land,Joel Ogunnike Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5583,Land,Remi Fani Kayode Street Ikeja Lagos,₦,"200,000,000",0,0,0, beds,0 baths,0 Toilets,Other Ikeja +5584,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0, beds,0 baths,0 Toilets,GRA +5585,Land,Oba Dosunmu Street Ikeja Lagos,₦,"175,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5586,Land,Oba Dosunmu Street Ikeja Lagos,₦,"156,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5587,Land,Remi Fani Kayode Street Ikeja Lagos,₦,"153,000,000",0,0,0, beds,0 baths,0 Toilets,Other Ikeja +5588,Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5589,Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5590,Land,Remi Fani Kayode Street Ikeja Lagos,₦,"100,000,000",0,0,0, beds,0 baths,0 Toilets,Other Ikeja +5591,Land,Oba Dosunmu Street Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5592,4 Nos Of 4 Bedroom Detached Duplexes,Michael Ogun Off Sobo Arobiodun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5593,5bedroom Semi Detached Townhouse Duplex,Ladoke Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5594,Land,"Awowojobe Estate, Maryland Ikeja Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5595,Land, Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5596,Land, Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5597,Land, Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5598,Land, Allen Avenue Ikeja Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5599,Land, Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5600,5 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5601,A Prime Fenced Land On 3 Acres,Cbd Alausa Ikeja Lagos Alausa Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5602,A Clean And New 5 Bedroom Fully Detached House,Sunday Adigun Street Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +5603,A Prime Fenced Land At Ikeja Gra,Bateye Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,GRA +5604,A Prime Fenced Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5605,5 Bedroom Luxury Terrace Duplex At Opebi Ikeja,Max Estate Off Salvation Road Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Opebi +5606,1200sqm Of Land For Sale At Abimbola Street,Abimbola Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5607,1200sqm Of Land For Sale At Ikeja,Joel Ogunnike St. Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5608,1000sqm Of Land For Sale At Remi Fani Kayode Street,Remi Fani Kayode St. Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5609,Land For Sale At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5610,975m2 Land For Sale At Oba Dosumu Street,Oba Dosumu St. Ikeja Lagos,₦,"175,500,000",0,0,0, beds, baths, Toilets,Other Ikeja +5611,870m2 Land For Sale At Oba Dosumu Street,Oba Dosumu St. Ikeja Lagos,₦,"156,600,000",0,0,0, beds, baths, Toilets,Other Ikeja +5612,4 Bedroom Semi Detached House With 2 Rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Adeniyi Jones +5613,28 Rooms Hotel, Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5614,Land,Bank Anthony Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5615,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"353,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5616,Land,Abimbola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5617,Land,Joel Ogunnike Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5618,Land,Joel Ogunnike Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5619,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5620,9 Hectares Of Land For Sale At Ikeja,"Adekunle Fajuyi Street, Gra Ikeja Ikeja Lagos",₦,"110,000",0,0,0, beds, baths, Toilets,Other Ikeja +5621,Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5622,Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"175,050,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5623,Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"156,060,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5624,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"153,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5625,Land,Oduduwa Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5626,Land,Oduduwa Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5627,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5628,Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5629,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"98,400,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5630,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5631,4 Bedroom Bungalow,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5632,Land,Behind Elizade Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5633,4 Bedroom Townhouse,Off Wemco Oba Akran Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +5634,3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Opebi +5635,Exquisitely Finished 4 Units F 4 Bedroom Detached House With Bq,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5636,Land,Magodo Phase 2 Alausa Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5637,Land,Isheri Igando Express Road Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5638,Land,Isheri Igando Express Road Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5639,Plot Of Land With 2 Bungalows And Office Space,Johnson Street Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +5640,5 Bedroom Detached House With Bq,"Along Abeokuta Express Road, Dopemu, Ikeja Lagos",₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +5641,Factory,Acme Road Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +5642,Lace Factory On 1 Acre Of Land At Ikeja Industrial Scheme,"Ikeja Industrial Scheme By Acme Road, Ikeja Ikeja Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5643,Shop Space,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"5,800,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5644,Land ( Joint Venture ), Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5645,"3,782 Square Meter Of Land In G.r.a Ikeja",Gra Ikeja Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5646,1 Acre Of Land,Lopez Close Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5647,6 Bedroom Mansion + 2 Living Rooms,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,000,000,000",0,0,0,6 beds,0 baths,0 Toilets,Adeniyi Jones +5648,5 Bedroom Detached Duplex,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5649,5 Bedroom Detached House,"Herbert Macaulay Crescent , Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,7 baths,8 Toilets,GRA +5650,A Plot Of Land,Oba Dosunmi Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5651,4 Bedroom Semi Detached Duplex + 2 Room B.q,"Ikeja Gra, Ikeja Gra Ikeja Lagos",₦,"111,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5652,5 Bedroom Duplex On 2 Floors,"Joel Ogunnaike Street, Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +5653,4 Bedroom Fully Detached Duplex,"Ajisafe Street, Isaac John, Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,6 baths,6 Toilets,GRA +5654,1 Plot Of Land On Tarred Road Close To Balogun,Close To Balogun Busstop Ikeja Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5655,6300 Sqm Of Land At Ikeja,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,GRA +5656,New Luxury 2 Bedroom Serviced Apartments,"Ayonubi, Toyin Street Ikeja Lagos",₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikeja +5657,Land,Alfred Olaiya Street Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5658,5 Bedroom Fully Detached Duplex,"Maryland Estate, Maryland Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Maryland +5659,New Luxury 2 Bedroom Ensuite Apartments,Ayonubi Close Toyin Street Ikeja Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikeja +5660,Dry Land,"Alausa, Alausa Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5661,3 Bedroom Serviced Apartment,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Allen Avenue +5662,Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5663,Land,Atoyetubo / Ajao Estate Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5664,Land,Atoyetubo / Ajao Estate Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5665,Acre Of Land On Kudirat Abiola Way,Kudirat Abiola Way Ikeja Lagos,₦,"355,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5666,6300sqm Of Land For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,GRA +5667,Two Bungalows,Johnson Street Obafemi Awolowo Way Ikeja Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5668,Commercial Property,Close To Zenith Bank Awolowo Way Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5669,5 Bedroom Semi Detatched Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"375,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5670,Plot Of Land,Opebi Link Bridge Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5671,Gra Mansion,"Ikeja, Gra Ikeja Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +5672,A Brand New 4bedroom Duplex + Bq,"Off Allen Avenue, Close To Former Alade Market Allen Avenue Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +5673,Duplex + 2room Bq,Shonibare Estate Maryland Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Maryland +5674,Office Block Directly On Opebi Road,Opebi Road Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5675,5bed Detached Duplex,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5676,5 Bedroom Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Alausa +5677,5 Bedroom Semi Detached Duplex With Bq,Off Salvation Way Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +5678,3 Bedroom Flat,By Punch Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikeja +5679,Land For Sale,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Maryland +5680,Land For Sale,Mende Maryland Ikeja Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Maryland +5681,Mansion,No 29 Oroleye Street Salvation Road Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5682,Land ( Joint Venture ), Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5683,Land ( Joint Venture ), Alausa Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5684,Land ( Joint Venture ),Shonibare Estate Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5685,Land ( Joint Venture ),Femi Feni Kayode Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5686,Land,Atoyetubo/ajao Street Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5687,Former Hotel Building,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5688,Luxurious Hotel,Opebi Link Road Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Awolowo Way +5689,5 Bedroom Detached Duplex With A Bq,Omole Phase 2 Near Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +5690,5 Bedroom Detached Duplex,Omole Phase 1 Near Alausa Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Alausa +5691,5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5692,8 Bedroom Duplex,Dosunmu Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets,GRA +5693,3 Bedroom Apartment,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"63,500,000",0,0,0,3 beds,3 baths,4 Toilets,Adeniyi Jones +5694,5 Bedroom Detached Duplex With A Bq,Omole Phase 2 Near Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +5695,5 Bedroom Detached Duplex With A Bq,Omole Phase 1 Near Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +5696,Commercial Property,Airport Exit Airport Road(ikeja) Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Airport Road +5697,A Newly Built 8 Bedroom Duplex With Swimming Pool For Sale In Gra Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,8 beds,8 baths,8 Toilets,GRA +5698,A Newly Built 5 Bedroom Duplex With A Room Bq For Sale In Ikeja,Ikeja Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5699,A Mansion On 1500 Square Metres,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Airport Road +5700,Plot Of Land,Kola Amodu Crescent Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5701,4 Bedroom Detached Duplex +2 Rooms Bq,Estate Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,6 Toilets,GRA +5702,2 Nos Of 5bedroom Detached Houses With A Room Bq,Off Abah Johnson Adeniyi Jones Ikeja Lagos,₦,"140,000,009",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5703,Bungalow For Sale,Off Olowo Ikeja Awolowo Way Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5704,A 825.75sqm Land,"Wasimi, Onigbogbo Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5705,Bare Land,"Regina Omolara Street, Off Agbaoku Crescent. Opebi Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5706,2 Units Of 3 Bedroom Flat With A 4 Bedroom Duplex,"Ewututu,off Mma Road Airport Road(ikeja) Ikeja Lagos",₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets,Airport Road +5707,New 4 Bedroom House For Sale At Ikeja,Magodo Gra 1 Ikeja Ikeja Lagos,₦,"69,900,000",0,0,0, beds, baths, Toilets,Other Ikeja +5708,4 Units Of 2 Bedroom Flats For Sale,Magodo Gra1 Isheri Ikeja Ikeja Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths, Toilets,Other Ikeja +5709,7 Units Of A 3 Bedroom Flat Building,Cement Bus Stop Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +5710,2 Unit Of 4 Bedroom Flat,"Anifowoshe Ikeja Very Close To Computer Village, Obafemi Awolowo Way Ikeja Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +5711,"Property For Rent At No 1, Sasegbon Street Gra Ikeja Lagos.","1, Sasegbon Street Gra Ikeja Lagos. Ikeja Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5712,2 Blocks Of 4 Flats Of 3 Bedroom Flats,Ikeja Lagos Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,3 Toilets,Airport Road +5713,48.9 Acres Of Land,Koreta Street Agidingbi Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5714,Land For Sale,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5715,2 Storey Building,A Close Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5716,3 Bedroom Set Of Flat,"Alaba Street, Off Oworosoki Road Ikeja Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Airport Road +5717,"8,000 Square Meters Of Land",Adekunle Fajuyi Way Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5718,"6,061 Square Metres Of Land",Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5719,"5,942 Square Metres Of Land",Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5720,"4,200 Square Metres Of Land",Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5721,"4,200 Square Metres Of Land",Oba Akinjiobi Way Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5722,Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5723,"3,972 Square Metres Of Land",Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5724,Land For Sale,Ladoke Akintola Street Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5725,Land For Sale,Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5726,Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5727,"3,361 Square Metres",Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5728,"2,972 Square Metres Of Land",Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5729,"2,724 Square Metres Of Land",Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5730,Land For Sale,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5731,"2,528 Square Metres Of Land",Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5732,"1,989 Square Metres Of Land",Isaac John Street Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5733,"1,915 Square Metres Of Land",Isaac John Street Ikeja Lagos,₦,"325,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5734,"1,895 Square Metres Of Land",Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5735,"1,800 Square Metres Of Land",Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5736,"1,532 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5737,"1,500 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5738,"1,275 Square Metres Of Land",Ajisafe Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5739,"1,200 Square Metres Of Land",Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5740,"1,200 Square Metres Of Land",Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5741,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +5742,"1,000 Square Metres Of Land",Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5743,"1,000 Square Metres Of Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5744,Land For Sale,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5745,Land For Sale,Oduduwa Stree (gate Street) Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5746,Land For Sale,Ajisafe Street Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5747,Land For Sale,Ajisafe Street Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5748,573 Square Metres Of Land,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5749,520 Square Metres Of Land,Adeyemo Lakija Street Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5750,500 Square Metres Of Land,Oduduwa Stree (gate Street) Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5751,500 Square Metres Of Land,Ladoke Akintola Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5752,A 4 Plot Of Land,Adefowope Crescent Opebi Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5753,A Luxury 4 Bedroom Duplex With 2 Bq,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +5754,Landed Property,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5755,Land For Sale,Remi Fani Kayode Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5756,Land,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5757,3 Bedroom Flat,Off Bamgbose Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikeja +5758,Old Storey Building,Anifowoshe Oba Akran Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5759,A Three Bedroom Flat.,Ezekiel Street Toyin Street Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +5760,Tastefully Built 32 Units Of 3 Bedroom Luxury Flats All Room Ensuite,Ikeja Gra Lagos State Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +5761,4 Acres Of Land,Agidingbi Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5762,4 Bedroom Terraced Apartment,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5763,Landed Property For Sale,Land /properties For Sale 1. A Plot Of Land With Tenement Houses On 600 Square Meters. Price:#25m @ Otunba Str Ojodu Ikeja Lagos 2. A Plot Of Land On 686 Square Meters Along Abiodun Adeyemi Str Ojodu Ikeja Lagos Nigeria. Price:#24m 3. A Plot At 54 Aina Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5764,Land ( Joint Venture ),Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5765,Land ( Joint Venture ),Awuse Estate Opebi Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5766,Land ( Joint Venture ),"Adeniyi Jones Street, Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5767,Land ( Joint Venture ),Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5768,Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5769,1143m2 Land For Sale At Ikeja Gra,Joel Ogunnaike Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5770,Land,Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5771,Land For Sale,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5772,Land,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5773,20 Acres Of Land For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"81,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5774,Newly Built 3 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Adeniyi Jones +5775,An Uncompleted Building,Oba Akran Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5776,A Tastefully Finished 7 Bedroom Detached House For Sale At Ikeja,Anthony Village Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5777,Land ( Joint Venture ),"Adeniyi Jones,ikeja,lagos. Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5778,Land ( Joint Venture ),"Anifowose, Heart Of Ikeja Lagos Agidingbi Ikeja Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5779,Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5780,Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5781,Land For Sale,Opebi Road Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5782,5 Bedroom Detached House,Adekule Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +5783,"(direct Brief) 5bedroom Detached House On 800sqm Land For Sale In River Valley Estate Ojodu Berger, Ikeja.",River Valley Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5784,5 Bedroom Semi Detached Duplex,"Idowu Adebanjo Street, Off Omofade Crescent, Omole Phase 1 Agidingbi Ikeja Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agidingbi +5785,Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5786,4 Bedroom Semi Detached Duplex For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,GRA +5787,4 Bedroom Fully Detached Duplex For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +5788,5 Bedroom Fully Detached Duplex For Sale At Ikeja,"Ikeja Gra, Lagos Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5789,5 Bedroom Duplex For Sale At Ikeja Gra,By Shobo Arobiodu Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5790,2 Units Of 4 Bedroom Flats With 2 Units Of 2 Bedroom Flat On 799 Square Metres,"Gbemisola Str ,off Allen Av, Ikeja Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,2 baths,10 Toilets,Allen Avenue +5791,2 Units Of 4 Bedroom Flat With 2 Units Of 2 Bedrooms Flat,"Gbemisola Str ,off Allen Av, Ikeja Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,2 baths,4 Toilets,Allen Avenue +5792,Bareland On 765 Square Metres,"Sylvia Crescent Opp Zenith Bank, Anthony Maryland Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5793,7 Acres Of Land At Ikeja For Sale,Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5794,Fully Fenced Bareland,Anuoluwapo Close/regina Omolara Street Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5795,4 Bedroom Fully Detached House Plus Two Rooms Boys Quarters,"House 1, Peace Court, 2/4, Adeyemo Alakija Street Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5796,3 Bedroom Apartment,"Peace Estate, By Clay Bus Stop, Oregun Lagos Oregun Ikeja Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,0 Toilets,Oregun +5797,5 Bedrooms Furnished Duplex At Magodo,Phase2 Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Alausa +5798,Exqusitely Finished 6 Units Of 5 Bedroom Terrace Duplex,Bella Vista Terraces Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5799,Block Of Office Space On 3 Floors,Cipm Avenue Ikeja Alausa Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths, Toilets,Alausa +5800,Land For Sale,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5801,Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5802,Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5803,Land For Sale,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5804,Land For Sale,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5805,Land For Sale,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5806,Land For Sale,Sowemimo Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5807,Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5808,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5809,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5810,Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5811,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5812,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5813,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5814,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5815,Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5816,8 Bedroom Duplex With A Bq,"Dosunmu Street Off Isaac John Street, Gra Ikeja Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,8 beds,8 baths,8 Toilets,GRA +5817,Land (title C Of O),Ikeja Ikeja Lagos,$,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5818,18725.8 Square Metres Of Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5819,5 Bedroom Detached Duplex With Bq,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +5820,Land ( Joint Venture ),Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5821,Land ( Joint Venture ),"Off Opebi Allen At Salvation, Opebi Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5822,Land,Opebi Allen Avenue Ikeja Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5823,8000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5824,6061m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5825,5942m2 Of Land For Sale At Ikeja Gra,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5826,4200m2 Of Land For Sale At Sobo Arobiodu Street,Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5827,4200m2 Of Land For Sale At Ikeja Gra,Oba Akinjiobi Way Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5828,4000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5829,3972m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5830,3872m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5831,"3,482m2 Of Land For Sale At Ikeja Gra",Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5832,3361m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5833,2972m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5834,2724m2 Of Land For Sale At Ikeja Gra,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5835,2700m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5836,2528m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5837,1989m2 Of Land For Sale At Ikeja Gra,Isaac John Street Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5838,1895m2 Of Land For Sale At Ikeja Gra,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5839,1800m2 Of Land For Sale At Ikeja Gra,Ladipo Bateye Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5840,1532m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5841,1500m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5842,1275m2 Of Land For Sale At Ikeja Gra,Ajisafe Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5843,1200m2 Of Land For Sale At Shodipo Street,Off Harold Shodipo Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5844,1200m2 Of Land For Sale At Ikeja Gra,Obo Arobiodu Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5845,Land For Sale At Bateye Street,Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5846,1000m2 Of Land For Sale At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5847,1000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5848,928m2 Of Land For Sale At Ikeja Gra,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5849,740.162m2 Of Land For Sale At Ikeja Gra,Oduduwa Street Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5850,575m2 Of Land For Sale At Ikeja Gra,Ajisafe Street Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5851,573m2 Of Land For Sale At Ikeja Gra,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5852,520m2 Of Land For Sale At Ikeja,Adeyemo Alakija Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5853,500m2 Of Land For Sale At Oduduwa Street,Oduduwa Street Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5854,500m2 Of Land For Sale At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5855,475m2 Of Land For Sale At Remi Fanikayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5856,464m2 Of Land For Sale At Ikeja,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5857,Luxury House With C Of O,Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets,Omole +5858,4 Floors Commercial Building,Toyin Street Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds,0 baths,0 Toilets,Other Ikeja +5859,A Tastefully Finished 4 Bedroom Duplex With Boys Quarters,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +5860,Open Plan 5floor Office Building,Off John Olugbo St. Unity Road Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,4 Toilets,Airport Road +5861,Land For Sale,Bankole Oregun Lagos Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5862,312sqm Of Land For Sale At Ikeja,Ajao Road Ikeja Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets,Airport Road +5863,36 Plots Of Land For Sale At Ikeja,Ajao Road Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Airport Road +5864,4 Bedroom Semi Duplex For Sale At Ikeja,Omole Phase 1 Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Omole +5865,Land,Cbd Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5866,Land,Alausa Secretariat Alausa Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5867,Empty Land,Off Shrine Alausa Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5868,4 Bedroom Duplex,Adekunle Fakunle Street Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5869,Purpose Built School On 3floors With Play Area,Bank Anthony Way Maryland Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5870,Exquisitely Finished 5 Bedroom Detached House,Herbert Macaulay Crescent Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5871,Twin Terrace 4 Bedroom Duplex,Julie Estate Oregun Ikeja Lagos,₦,"81,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +5872,Plots Of Land,Beside Zenith Bank Agidingbi Ikeja Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5873,Luxury 4 Unit Of Furnished 4 Bedroom Detached House,Sobo Arobiodun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5874,4 Bedroom Terrace House With A Room Bq,Opebi Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +5875,A Multi Storey Building With Warehouse/ Factory,Ikosi Road Oregun Via 7up Oregun Ikeja Lagos,₦,"1,633,500,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5876,Ipd,Adeyemi Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5877,Old Tenament Building,8 Shanu Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5878,Land ( Joint Venture ),Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5879,Land ( Joint Venture ),Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5880,Land ( Joint Venture ),Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5881,Land ( Joint Venture ),Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5882,4 Numbers Of All Ensuite 5 Bedrooms Semi Detached Duplex With Bq,Kehinde Akinsette Close Maryland Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Maryland +5883,Twin Duplex,Julie Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oregun +5884,Shop,Olowu Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,10 Toilets,Awolowo Way +5885,Land For Sale,Alausa Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5886,6 Units Of 5 Bedroom Terrace Duplex With 1 Room Bq Each,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +5887,4 Bedroom Terrace Building,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +5888,An Exquisitely Finished 5 Bedrooms Semi Detached Duplex,Off Ajanaku Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Opebi +5889,Exquisite Hotel,Off Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5890,Hotel,Ikaja Ikeja Gra Ikeja Lagos,₦,"6,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,GRA +5891,Posh 6 Bedroom Detached House,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +5892,Fantastic 6 Bedroom Terraced Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +5893,4 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5894,8 Bedroom Mansion,G. R. A Ikeja Gra Ikeja Lagos,₦,"465,000,000",0,0,0,8 beds,9 baths,10 Toilets,GRA +5895,5 Bedroom Detached Duplex + An Ensuite Bonus Room,Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +5896,5 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5897,4 Bedroom Terrace Duplex In Ikeja,Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5898,2 Plots Of Land,Agbaoku Street Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +5899,4 Bedroom Duplex,G. R. A Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +5900,Exclusive Semi Detached 5 Bedroom House In Ikeja Gra,G. R. A Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +5901,Semi Detached 4 Bedroom Duplex At Ikeja,Allen Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +5902,5 Acres Of Land,Oregun Oregun Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5903,6 Acres Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5904,2900sqm Of Land At Opebi,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Opebi +5905,2 Bedroom Flat + Bq At Ikeja,Allen Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets,Allen Avenue +5906,Land,Ogunsolu Street. Mangoro Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +5907,"Newly Built 8bedroom Duplex With 2 Rooms Bq And Swimming Pool On 1,340 Square Metres",Dosumu Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets,GRA +5908,6 Bedroom House For Sale At Ikeja,Oba Akinjobi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +5909,8 Bedroom House For Sale At Ikeja,Dosumu Street Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5910,Land For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets,Other Ikeja +5911,2 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5912,2 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5913,3 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5914,4560sqm Of Land For Sale At Ikeja,Alausa Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Alausa +5915,5 Bedroom Duplex,Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +5916,5 Bedroom House For Sale At Ikeja,Along Cement Road Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Airport Road +5917,5 Bedroom Duplex,Aba Johnson Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Adeniyi Jones +5918,Warehouse,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,10 beds,0 baths,0 Toilets,Adeniyi Jones +5919,Land For Sale,"Oregun Road, Kudirat Abiola Way Oregun Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +5920,Land,Off Agbaoku Street Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5921,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5922,2 Wings Of 4 Bedroom Semi Detached House,Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +5923,Land ( Joint Venture ),Tunde Gafaru Close Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5924,Land,"Admiral Oduwaye Street, Omole Phase 1, Lagos State Alausa Ikeja Lagos",₦,"800,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5925,3 Bedroom Flat,Akinola Cole Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5926,40 Units Of 3 Bedroom Luxury Terrace Duplexes For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5927,"16 Rooms Hotel With 2 Challets, A Bar, Restuarant And To Functional Generators On 1,100 Square Metres Of Land",Off Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5928,An Acre Of Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5929,"3,600 Square Metres Of Land",Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5930,"8,100 Square Metres Of Land",Behind High Court Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5931,"8,000 Square Metres Of Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5932,"2,000 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5933,5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5934,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5935,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5936,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5937,Land For Sale,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5938,Land For Sale,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5939,Land For Sale,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5940,4 Bedroom Duplex,Opebi Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +5941,4 Bedroom Detached House With Bq On 60 Square Metres Of Land,Opebi Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Opebi +5942,6 Bedroom Duplex In Ikeja,Opebi Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,6 Toilets,Opebi +5943,Luxurious 4 Bedroom Terraced Duplex,Okunnu Terraces Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Adeniyi Jones +5944,7 Bedroom Detached House,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"9,000,000",0,0,0,7 beds,7 baths,7 Toilets,GRA +5945,Land For Sale,Tunde Gafaru Close Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5946,5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5947,4 Bedroom Bungalow,Lagos Ibadan Expressway Ikeja Gra Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +5948,5 Bedroom Duplex And A Bq,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +5949,40 Units Of 3 Bedroom Terraced Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,GRA +5950,4 Bedroom Terraced Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +5951,Attractive 2000 Sqm Land,"Agba Oku Estate. Opebi, Ikeja Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5952,Attractive 2000 Sqm Land,"Agba Oku Estate. Opebi, Ikeja Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5953,Land For Sale,Awolowo Way Opp Alausa Mall Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +5954,2 Bedroom Detached House At Ikeja,Ikaja Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,4 Toilets,GRA +5955,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5956,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5957,Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5958,Land For Sale,Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5959,Land For Sale,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5960,Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5961,Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5962,2 Bedroom Detached House In Ikeja,Bolanle Close Allen Avenue Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Allen Avenue +5963,Land For Sale,Issac John Street Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5964,A Property 2 Block Of 2 Storeys Building,Off Coker Road Illupeju Lagos Maryland Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +5965,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5966,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5967,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5968,Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5969,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5970,Land For Sale,Oba Akinjobi Way. Ikeja Gra Ikeja Lagos,₦,"405,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5971,Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5972,Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5973,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5974,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5975,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5976,Land For Sale,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5977,Land For Sale,Off Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5978,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5979,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5980,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5981,Land For Sale,Shasegbon Street Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5982,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5983,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5984,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +5985,8 Unit Of 4 Bedroom Terrace Duplex + 2 Roombq,Efuleye Close Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +5986,Land,Wole Ogunjimi Street Off Agbaoku Street Opebi Ikeja Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +5987,Land For Sale,Besides Total Filling Station Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5988,3 Bedroom Bungalow,Femi Otedola Estate Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Alausa +5989,4 Bedroom Semi Detached Duplex,Oba Akran Ikeja Oba Akran Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +5990,6 Bedroom Duplex,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +5991,Land For Sale,Cbd Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5992,Land For Sale,Awolowo Way Opp Alausa Mall Alausa Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +5993,2 Bedroom Detached House,Bolanle Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Allen Avenue +5994,3 Bedrooms Semi Detached Duplex In Ikeja,Howson Wright Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oregun +5995,Semi Detached Duplex,Ladipo Bateye Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +5996,Land For Sale,Ladipo Oluwole Agidingbi Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5997,Half Plot Of Land In Ikeja,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +5998,Land For Sale,Off Agidingbi Agidingbi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +5999,Land,Olowu Ikeja. Airport Road(ikeja) Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +6000,Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6001,"4 Bedroom Detached House, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +6002,2 Plots Of Land At Ikeja,Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6003,Office Complex With Warehouse,Alausa Alausa Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,3 Toilets,Alausa +6004,Fully Detached 4 Bedroom Duplex,Shonny Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Awolowo Way +6005,Land For Sale,Opebi Road Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6006,Land,Opebi Township Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6007,Land For Sale,Opebi Township Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6008,Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6009,Land For Sale,G Cappa Estate Maryland Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6010,Land For Sale,Etsoye Close Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6011,Land For Sale,Akinsete Close Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6012,Land For Sale,Olaperi Street Maryland Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6013,Land For Sale,Shony H'way Maryland Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6014,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6015,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6016,Land For Sale,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6017,Bare Land Measuring 1781.28,Cbd Ikeja Agidingbi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6018,Land For Sale,Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6019,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6020,Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6021,Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6022,Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6023,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6024,Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6025,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6026,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"405,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6027,Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6028,Land,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6029,Land,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6030,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6031,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6032,Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6033,Land For Sale,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6034,Land For Sale,Off Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6035,Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6036,Land For Sale,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6037,Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6038,Land For Sale,Shasegbon Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6039,Land For Sale,Ladipo Bateye Street Balogun Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6040,Land,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6041,1200sqm Of Land At G Cappa Estate,G Cappa Estate Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6042,1400sqm Of Land At Akinsete Close,Akinsete Close Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6043,1100sqm Of Land At Olaperi Street,Olaperi Street Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6044,820sqm Of Land At Shony Way,Shony Way Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6045,2972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6046,2724sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6047,2700sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6048,Dry Land For Sale At Ladoke Akintola,Ladoke Akintola Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6049,Warehouse,Opebi Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,1 beds,0 baths,3 Toilets,Opebi +6050,2007sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6051,1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6052,1895sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6053,1800sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6054,1500sqm Of Dry Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6055,1275sqm Of Land At Oba Dosumu Street,Oba Dosumu Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6056,1200sqm Of Land Off Harold Shodipo Street,Off Harold Shodipo Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6057,1000sqm Of Land On Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6058,928sqm Of Land At Remi Fani Kayode Gra,Remi Fani Kayode Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +6059,573sqm Of Land At Shasegbon Street,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6060,500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6061,464sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6062,Newly Built 5 Bedroom Fully Detached House,"Ikeja Gra, Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +6063,4 Bedroom Semi Detached Duplex,Off Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6064,Landed Property,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6065,4 Bedroom Terrace Duplex + Bq,Church Street Opebi Ikeja Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +6066,2 Acres Of Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6067,6061sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6068,5942sqm Of Land On Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6069,3872sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6070,3482sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6071,3361sqm Of Land On Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6072,2972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6073,2724sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6074,2700sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6075,2528sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6076,2007sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6077,1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6078,1895sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6079,1800sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6080,1500sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6081,1000sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6082,928sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6083,888sqm Of Land At Oba Ladejobi Street,Oba Ladejobi Street Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6084,550sqm Of Land At Shasegbon Street,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6085,500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6086,464sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6087,5 Bedroom Detached Duplex For Sale,"The Citiview Homes Is Eight Minute Drive From Magodo/alausa Secretariat, Lagos State Seat Of Power. Arepo., Alausa, Ikeja, Lagos Ikeja Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6088,2 Nos 3 Bedroom Duplex With 2 Nos 3 Bedroom Flat,Community Road Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Allen Avenue +6089,Newly Improved 5 Bedroom Semi Detached Duplex,Alhaji Shittu Alausa Ikeja Lagos,₦,"94,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +6090,Tastefully Finished 4 Bedroom Terrace Duplex At Ikeja,Oroleye Opebi Ikeja Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +6091,5 Bedroom Terrace Duplex At Ikeja,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6092,6 Units Of 5 Bedroom Terrace Duplex At Ikeja,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6093,4 Bedroom Detached House,Opposite Omole Phase 1 Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agidingbi +6094,Plot Of Land In Ikeja,"Off Fajebe Street, Onipetesi Estate, Mangoro Ikeja Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6095,"Luxury 4, 5 Bedroom Semi Detached Townhouse At Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +6096,Nice 5 Bedroom Semi Detached Duplex In Ikeja,"Akin Osiyemi Street, Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets,Allen Avenue +6097,2 Bare Plots Of Land,"Mechanic Village, Agidingbi Agidingbi Ikeja Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6098,Land,Shrine Agidingbi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6099,1200 Square Metres Of Land,Ipodo Street Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6100,800 Square Metres Of Land,Anuoluwapo Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6101,2403 Square Meetres Of Land,Along Ajao Road Adeniyi Jones Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6102,Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6103,2 Acres Of Land For Sale,"Gra , Ikeja , Lagos. Ikeja Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6104,Land For Sale On Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6105,4 Bedroom Semi Detached House,Off Allen Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +6106,2 Wings Of Partly Furnished And Fitted Duplexes With Modern Finishing,"2, Esugbayi Street Off Sobo Arobiodu Street,ikeja Gra Ikeja Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,GRA +6107,"6,000 Square Metres Of Land",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6108,"2,200 Square Metres Of Land",Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6109,5 Bedroom With 2 Bq And A Swimming Pool,Magodo Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6110,Land For Sale,"Ladoke Akintola Street. Ikeja Gra , Lagos . Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6111,"Land For Sale In Ogba, Opposite Excellence Hotel",Shorinmade Street Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6112,Newly Built 3 Bedroom Flat,"Adekoya Street, Mende Estate. Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6113,6 Bedroom Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,6 beds,7 baths,7 Toilets,GRA +6114,2 Bedroom Detached Duplex,Bolanle Close Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Allen Avenue +6115,4 Bedroom Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6116,Newly Built Serviced 4 Bedroom Terrace Duplex,Talabi Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Adeniyi Jones +6117,7000sqm Of Land On Bank Anthony Way,Bank Anthony Way Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6118,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6119,Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6120,Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6121,Land,Sasegbon Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6122,Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6123,Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6124,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6125,Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6126,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6127,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6128,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6129,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"517,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6130,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6131,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6132,Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6133,Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6134,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6135,Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6136,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6137,Land,Off Harold Shodipo Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6138,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"216,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6139,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6140,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6141,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6142,Land,Oba Ladejobi Ikeja Gra Ikeja Lagos,₦,"164,280,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6143,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"167,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6144,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"147,980,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6145,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"167,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6146,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"152,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6147,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"12,350,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6148,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"12,270,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6149,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"107,350,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6150,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"91,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6151,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6152,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6153,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6154,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6155,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"85,500,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6156,Brand New 4 Bedroom Fully Detached Duplex,"Gra , Ikeja , Lagos Ikeja Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6157,Detached,Joel Ogunnaike Gra Ikeja Ikeja Lagos,₦,1,0,0,0, beds, baths, Toilets,Other Ikeja +6158,Nice Duplex (13 Rooms Office Space) In Ikeja,"53 Ogundana Street, Off Community Lane, Allen Avenue Ikeja Lagos",₦,"200,000,000",0,0,0, beds,10 baths,0 Toilets,Allen Avenue +6159,5 Bedroom Detached House For Sale,"Adeyemo Alakija Street, Gra Ikeja Lagos Ikeja Lagos",₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6160,2 Nos Of 4 Bedroom Duplex,Adeboye Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +6161,18 Executive Rooms For Commerical Use,Behind Ikeja Shopping Mall. Obafemi Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Awolowo Way +6162,Shopping Mall,Olowu Street Ikeja Mobolaji Bank Anthony Way Ikeja Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6163,Newly Built 4 Bedroom Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +6164,1000 Square Meters Of Land In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +6165,Land (measuring 6000 Sqm) In Ikeja G.r.a,Ikeja G.r.a Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,GRA +6166,Land (measuring 1000 Sqm) In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +6167,Shopping Complex,Olowu Mobolaji Bank Anthony Way Ikeja Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6168,Land (measuring 1000 Sqm) In Ikeja,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6169,Newly Built 4 Bedroom Town House In Ikeja,Off Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6170,To Let: Block Of 20 Luxury Serviced Flats At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"7,000,000",0,0,0,3 beds,3 baths, Toilets,GRA +6171,For Sale: 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,GRA +6172,Plot Of Land In Ikeja,Oregun Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Oregun +6173,Locked Up Shop,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"5,700,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +6174,A Demolish Able Bungalow On 1 Plot Of Land For Sale,Ologun Street Ikeja Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6175,5 Bedroom Bungalow,Off Agbaoku Street Opebi Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets,Opebi +6176,"3,700 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6177,"1,000 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6178,500 Square Metres Of Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6179,"4,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6180,"2,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6181,"1,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6182,500 Square Metres Of Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6183,Lovely 4 Bedroom Detached Duplex In Ikeja,Ogunusi Road Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Airport Road +6184,"3 Bedroom Duplex With Swimming Pool On 3,482.56 Square Metres Of Land",Adekunle Fajuyi Road Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +6185,Lovely Built 5 Bedroom Duplex At Akintola Adeguwa,Akintola Adeguwa Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6186,Commercial Land For Sale At Muritala Mohammend Airport,Muritala Mohammend Airport Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Airport Road +6187,Newly Built 4 Bedroom Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,GRA +6188,Newly Built 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +6189,Newly Built 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,GRA +6190,4 Bedroom Terrace House,Off Bolanle Close By. Ikeja Medical Center Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Allen Avenue +6191,3 Units Of 4 Bedroom Duplex Office Space,"70 (a,b,c) Off Allen Avenue, By Nikky Africana Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +6192,10 Acres Of Land,Lateef Jakande Agidingbi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6193,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Ikeja,Aranpasanwu Street Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +6194,Twin Terrace Duplex In Adeyemo Alakija Street Ikeja Gra,Adeyemo Alakija Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6195,4 Bedroom Terrace House Atisheri North,Isheri North Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6196,Newly Built 4br Semi Detached House In An Estate Ikeja,Off Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +6197,4 Acres Of Land,Jakande Road Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6198,2 Wings Of 5 Bedroom Duplex,Toyin Street Toyin Street Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6199,660 Square Metres Of Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6200,Lovely 6 Bedroom Fully Detached Duplex In Ikeja.,"4b Awori Close Akora Estate, Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Adeniyi Jones +6201,Neatly Built 6 Bedroom Fully Detached Duplex In Ikeja.,"4a Awori Close, Akora Estate Adeniyi Jones Ikeja Lagos",₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,Adeniyi Jones +6202,Newly Built 6 Bedroom Fully Detached Duplex In Ikeja,"No. 24 Oba Akinjobi Street, Close To Abiola Close, Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +6203,Newly Built 5 Bedroom Terrace Duplex In Ikeja,"10 Adeyemo Alakija Street, Off Sobo Arobiodun Street, Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6204,Land Measuring 2600sqm,Off Opebi Allen Road Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6205,Nice 5 Bedroom Fully Detached Duplex In Ikeja.,"30 Aba Johnson Crescsent, Off Onipinla Lane Harmony Estate Adeniyi Jones. Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6206,4 Bedroom Detached House,Magodo 14 Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Alausa +6207,2 Units Of Newly Built 5 Bedroom Duplex In Ikeja,"Clifford Osawaru Close, Off Alalija Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6208,Newly Built 4 Bedroom Duplex In Ikeja,"7b Adeyemo Alakija Street, Ikeja Gra Ikeja Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6209,2000 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6210,3.9 Acres Of Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6211,334 Square Metres Of Land,Oyero Street Adeniyi Jones Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6212,900 Square Metres Of Land,Opposite Trinity Mall Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6213,Decent 5 Bedroom Semi Detached Duplex With Bq,"Henry Adefope Street,awuse Estate,opebi,ikeja Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Opebi +6214,3482.56 Square Metres Of Land With Dilapidated 3 Bedroom Duplex,Adekunle Fajuyi Road Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,0 baths,0 Toilets,GRA +6215,8 Bedroom Detached House With Bq And A Swimming Pool,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets,GRA +6216,4 Bedroom Terraced House With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,GRA +6217,Vacant Office Complex On 4 Floors,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6218,Plot Of Land,Kadiri Street Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6219,A 6 Storey Building For Sale On A Commercial Road In Ikeja Fairly New,Oba Akran Oba Akran Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6220,750 Sqm Warehouse For Sale,"Beside Total Filling Station, Ojota, Close To Olusosun Oregun Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6221,2 Units Of 4 Bedroom Duplex In Ikeja,Adeboye Solanke Street Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +6222,Open Plan Office Space On 4 Floors,Along Toyin Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6223,Land (registered Conveyance And Survey Plan),Oyetubo Street/ Ajao Road Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6224,120 By 60 Feet Land,Agidingbi Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6225,Piece Of Land For Sale,"Through Nnpc Opposite Firstbank, Behind Elizade Oregun Ikeja Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6226,Newly Refurbished 5 Bedroom Duplex,Kayode Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +6227,Newly Refurbished 5 Bedroom Duplex,Kayode Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Adeniyi Jones +6228,4 Units Of 5 Bedroom Detached Duplex Houses + 1 Room Bq,Hubert Macaulay Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6229,Newly Built 4 Bedroom Detached Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +6230,2 Units Of Newly Built 5 Bedroom Duplex In Ikeja,"29 Fani Kayode Street, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6231,Newly Built 4 Bedroom Detached Duplex In Ikeja,"6a Oduduwa Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6232,Newly Built 5 Bedroom Duplex In Ikeja G.r.a,Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,GRA +6233,Tastefully Finished Purposely Built Galleria On 4 Floors,"Opebi, Ikeja, Lagos Ikeja Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6234,12 Room Luxury Hotel At Olu Akerele,Olu Akerele Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6235,An Executive & Luxurious Hotel Complex With 85 Rooms,Opebi Link Road Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Airport Road +6236,5 Bedroom Duplex,"Off Sule Street, Mangoro Mangoro Ikeja Lagos",₦,"55,000,000",0,0,0,9 beds,8 baths,8 Toilets,Other Ikeja +6237,Luxury Five Bedroom Duplex In Magodo Phase 2,Basheer Shittu Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6238,Land,Henry Adefowope Street Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6239,4 Bedroom Semi Detached House,Allen Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Allen Avenue +6240,Hotel,Opebi Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Opebi +6241,2 Unit Of 3 Bedroom Flat,Behind 10 Degree Event Center Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets,Oregun +6242,5 Units Of 5 Bedroom Semi Detached Duplex In Ikeja,"36b Ladoke Akintola, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6243,2 Units Of Newly Built 5 Bedroom Semi Detach Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,GRA +6244,Newly Built 4 Bedroom Fully Detach Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,GRA +6245,3 Bedroom Pent House With 2 Living Rooms,Oregun Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +6246,3 Bedroom Apartment With A Studio Room And A Maids Room,Oregun Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oregun +6247,5 Bedroom Detached Duplex,Off Oba Akinjobi Street. Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +6248,A 1000 Square Meter Land In Maryland,Beside Rhema Church Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6249,3 Acres Of Land Along Muritala Mohammed Airport Road,Muritala Mohammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +6250,5 Bedroom Detached Duplex,Magodo Gra Phase 2 Alausa Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Alausa +6251,4 Bedroom Semi Detached Duplex At Magodo Shangisha,"Magodo, Shangisha Ikeja Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6252,500 Square Metres Of Land,Ladoke Akitola Street Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6253,500 Square Metres Of Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6254,5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6255,Exquisitely Finished 5 Bedroom Duplex On 500 Square Metres With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +6256,6 Bedroom Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,6 beds,0 baths,0 Toilets,GRA +6257,Land,Anifowoshe Obafemi Awolowo Way Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6258,5 Bedroom Detached House Plus Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6259,800 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6260,3 Acres Of Land,Muhammed Airport Road Beside Mobil Filling Station Airport Road(ikeja) Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +6261,Land,Opebi/allen Junction. Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6262,4 Hectares Of Land,Along Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6263,3 Acres Of Land,"Beside Mobil Filling Staion,along Muritala Mohammed Airport Road Airport Road(ikeja) Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +6264,1.6 Hectares Of Land,"Mm2 Airport, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +6265,Land,108 Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6266,Land,"46,adeniyi Jones Road Adeniyi Jones Ikeja Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6267,An Acre Of Land With Structures On 2 Floors,Ladoke Akintola Road Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6268,An Acre Of Land,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6269,7 Bedroom Mansion Plus 2 Units Of Office Space For Sale,"13, Abba Johnson Crescent, Adeniyi Jones Ikeja Lagos",₦,"285,000,000",0,0,0,7 beds,6 baths,6 Toilets,Adeniyi Jones +6270,3 Acres Of Land On Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +6271,3 Acres Of Land Along Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +6272,A Block Of 6 Units Of 3 Bedroom Flat Off Toyin Street,Off Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0,18 beds,18 baths, Toilets,Other Ikeja +6273,Newly Built 4 Bedroom Flat In Ikeja,Ayo Rosiji Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6274,3 Acres Of Land On Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Airport Road +6275,5 Bedrooms Duplex,Ogunlowo Close Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6276,Newly Built 4 Units Of 4 Bedroom Flat,Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +6277,3900 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6278,1950 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6279,1000 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6280,2900 Square Metres Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6281,5 Bedroom Detached House,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,GRA +6282,Newly Built 4 Bedroom Detached House,B Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6283,Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets,GRA +6284,Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6285,"Partially Furnished 7 Bedroom Semi Detached House, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,GRA +6286,Lavished Finished 5 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,GRA +6287,Well Built 4 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,GRA +6288,Land,Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6289,Land,Oregun Road Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6290,Land,Fajuyi Adekunle Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6291,Land,Issac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6292,Land,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6293,10 Acres Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6294,4100 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6295,4000 Square Metres Of Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6296,3900 Square Metres Of Lan,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6297,10 Acres Of Land,Lateef Jakende Road Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6298,10 Bedroom Detached Duplex + 2 Room Bq,Ikeja G.r.a Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,GRA +6299,1050 Square Metres Of Land,"Ajanku Street, Awuse Estate Opebi Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6300,1400 Square Metres Of Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6301,6500 Square Metres,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6302,4000 Square Metres,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6303,Block Of Flats At Cement,Cement Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets,Other Ikeja +6304,Plot Of Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6305,10 Bedroom Detached Duplex + 2 Rooms Bq In Ikeja,"5, Micheal Otedola Street Off Joel Ogunnaike(lagos Country Club) Ikeja Gra Ikeja Lagos",₦,"800,000,000",0,0,0,10 beds,8 baths,8 Toilets,GRA +6306,"An Industrial Property , Facing Mobolaji Johnson Avenue",Mobolaji Johnson Way Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6307,Shops,New Alade Market Allen Avenue Ikeja Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Allen Avenue +6308,4 Bedroom Detached House,15 Opebi Road Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +6309,A Functional School (primary And Secondary) On 1400 Square Metres Of Land,Oregun Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6310,"4 Units Of 5 Bedroom Detached Duplex Houses, Off Oduduwa Crescent",Off Oduduwa Crescent Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6311,Brand New 5 Bedroom Fully Detached Duplex,Adeniyi Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6312,Newly Built 5 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +6313,Tastefully Finished And Spacious 5 Bedroom Fully Detached House At Ikeja Gra,"Gra, Ikeja Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6314,Luxurious Newly Built 4 Units Of 4 Bedroom Duplex,Off Opebi Opebi Ikeja Lagos,₦,"63,000,000",0,0,0,4 beds,5 baths,5 Toilets,Opebi +6315,8 Units Of 3 Bedroom Flats,Gbemisola Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Allen Avenue +6316,Newly Built 5 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +6317,A Newly Renovated 5 Bedroom Twin Duplex,Off Wemco Around Alausa Shoprite Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6318,Duplex At Ikeja Gra,"Gra, Ikeja Ikeja Lagos",₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6319,A Newly Built 4 Bedroom Terrace Duplex In Ikeja,"16, Church Street, Off Salvation Road Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Opebi +6320,2000 Sqm Of Land,Off Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6321,Executive Semi Detached In Ikeja Gra,"Michael Ogun St, Ikeja Gra Ikeja Lagos",₦,"185,000,000",0,0,0, beds, baths, Toilets,GRA +6322,Fenced Gated Land,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6323,6 Bedroom Semi Detached Duplex With 2 Rooms Bq,Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets,GRA +6324,Newly Built 5 Bedrooms Duplex Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +6325,A Twin Duplex Of 4bedroom With 2rooms Bq,"Awoniyi Elemo Str, Airport Road(ikeja) Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Airport Road +6326,Land,Juli Estate Oregun Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6327,Land,Juli Estate Oregun Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6328,One & Half Plot Of Bare Land At Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6329,Plot Of Land,Opebi Road Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6330,530 Sqm Of Land,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6331,1050 Sqm Of Land,Along Opebi Ling Bridge Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6332,2500sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,GRA +6333,"Well Finished 5 Units Of 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,GRA +6334,"Executive 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,GRA +6335,5 Bedroom Detached House On 3 Floors With A Pent Floor And A Room Bq,Abba Johnson Crescent Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6336,Half Plot Of Land,"9 Wasimi Street,off Ikorodu Road Maryland Ikeja Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6337,Home That Brings Comfort,Ladoke Akintola Ikeja Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6338,House For Sale,Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Allen Avenue +6339,"Well Finished 2 Wings Of 5 Bedroom Duplex, Adeyemo Alakija Street",Adeyemo Alakija Street Ikeja Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6340,Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6341,Land,"Wasimi, Maryland Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6342,4 Bedroom Terrace Duplex + Bq,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +6343,A 4 Bedroom Terrace Duplex,Emeka Ayaogu Housing Estate Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6344,4 Bedroom Terrace Duplex,Emeka Anyaoku Housing Estate Beside Police Hq Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,GRA +6345,Land,Mangoro Bstop Mangoro Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6346,4 Bedroom Terrace Duplex,Emeka Anyaoku Housing Estate Beside Police Hq Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,3 baths,3 Toilets,GRA +6347,Land,"Ajanaku Street, Awuse Estate Opebi Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6348,Land,Beco Cocrete Mongoro Bustop Mangoro Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6349,4 Bedroom Terrace House + Bq,Rev. Ogunbiyi Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +6350,A 4 Bedroom Terrace Duplex,Emeka Ayanku Housing Estate Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6351,A 5 Bedroom Duplex,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6352,A 5 Bedroom Duplex With 2 Rooms Bq,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6353,Land,Adebayo Banjo Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6354,Serviced Open Space For Office Use,Cmd Road Alausa Ikeja Lagos,₦,"640,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +6355,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6356,Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6357,Land,Aromire Awolowo Way Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6358,Single Bay Warehouse On 1200sqm Land,Acme Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agidingbi +6359,Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6360,Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6361,Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6362,Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6363,Land,Sobo Arobiodun Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6364,Land,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6365,Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6366,Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6367,Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6368,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6369,Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6370,Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6371,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6372,Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6373,Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6374,Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6375,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6376,Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6377,Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6378,Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6379,Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6380,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6381,Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6382,A 4 Storey Building,"Bayo Shodipo Street, Off Afisman Drive Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,10 Toilets,GRA +6383,"Exquisite 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,GRA +6384,"Executive 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +6385,"Well Finished 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,GRA +6386,"Executive 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +6387,Executive 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,GRA +6388,Uncompleted 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,GRA +6389,"Tastefully Finished 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,GRA +6390,Tastefully Finished 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +6391,Well Finished 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,GRA +6392,Land,Agbaoku Area Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6393,Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6394,Land,Awolowo Road Awolowo Way Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6395,Land,Ikeja Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6396,4 Bedroom Terrace Duplex For Sale In Opebi Ikeja,"Church Street, Opebi Ikeja Ikeja Lagos",₦,"62,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6397,Tastefully Finished 5 Bedroom Detached At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,GRA +6398,Paper Mill,Billings Way Oregun Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6399,4 Bedrooms Semi Detached House With 3 Rooms Servant Quarters,"Mko Garden Estate(marwa) , Hibiscus Street Alausa Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Alausa +6400,7 Acres Land,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6401,Luxury 5 Bedrooms Fully Detached Duplex With Servant Quarters,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +6402,Land,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6403,Land,Awolowo Road Alausa Ikeja Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +6404,Land,Mobolaji Johnson Avenue Alausa Ikeja Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Alausa +6405,Land,Ikosi Road By Daystar Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6406,Land,Along Muritala Mohammed International Airport Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Airport Road +6407,2 Units Of A 3 Bedroom Flat Building,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,1 baths,1 Toilets,Oregun +6408,A 4 Bedroom Terrace Duplex,Ikeja Gra Estate Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6409,5 Units Of A 3 Bedroom Flat Building,"Oba Akran Road, Beside Guinness Factory Oba Akran Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +6410,2 Bedroom Flat,Ikosi Road Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds,1 baths,2 Toilets,Oregun +6411,5 Bedroom Duplex,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets,GRA +6412,Land,"Toyin Street, Ikeja Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6413,6 Units Of 4 Bedroom Terrace House All Rooms En Suite With 1 Rooms Bq,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Opebi +6414,8 Units Of 5 Bedroom Terrace Houses All Rooms En Suite With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +6415,4 Bedroom Terrace In Ikeja,Awuse Estate Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Opebi +6416,Land,Oba Akran Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6417,Office Space,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Adeniyi Jones +6418,A 5 Bedroom Detached House With A Chalet,"Agbalajobi Crescent, Ogba Gra, Off Wempco Road, Ogba Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6419,"A 1,500sqm Land",Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6420,7 Bedroom House On Wemco Road,Wemco Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6421,1000sqm Of Land With Units Of Flats,Omole Phase 1 Estate Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6422,Land,"Off Adeniyi Jones, Ikeja Ikeja Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6423,Land,"Obafemi Awolowo Way, Ikeja Ikeja Lagos",₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6424,Land,Mobolaji Bank Anthony Way Ikeja Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6425,5 Bedroom Duplex,Off Gra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikeja +6426,5 Bedroom Duplex,Offgra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikeja +6427,1000sqm Of Land At Olowu Street,Olowu Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6428,Full Plot Of Land At Ipodo,Ipodo Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6429,Half Plot Of Land Close To Ikeja Shopping Plaza,Close To Ikeja Shopping Plaza Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6430,"5 Bedroom Detached House, By Adeniyi Jones",By Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +6431,Land,Anifowoshe Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6432,Office Complex With 3 Open Plan Space,Onipetesi Industrial Estate Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6433,Land,Coca Cola Bustop Ikeja Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6434,"A 18,000sqm Of Land",Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Awolowo Way +6435,"A 4,000sqm Of Land",Fani Kayode Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6436,"A 4,000sqm Of Land",Ladoke Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6437,"A 4,000sqm Of Land",Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6438,"A 1,400sqm Office Space",Fani Kayode Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6439,"A 2,000sqm Of Land",Gra Ikeja Gra Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6440,"A 1,000sqm Of Land",Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6441,A 500sqm Of Land,Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6442,Tastefully Finished 5 Bedroom Fully Detached Duplex At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +6443,4 Bedroom,Methodist Church Street. Opebi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Opebi +6444,A 5 Bedroom Detached House With 2 Rooms Bq,"Olaribiro Street, Behing Alade Market Awolowo Way Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Awolowo Way +6445,4 Bedroom Duplex,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets,GRA +6446,A 900sqm Of Land,Off Salvation Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Opebi +6447,"A 2,842sqm Of Land",Kudirat Abiola Way Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6448,A 10 Acre Of Land,Oregun Road Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oregun +6449,A 5 Bedroom Duplex With A Room Bq,"Along Amori Odumosu, Close By Thomas Okoya Estate Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Adeniyi Jones +6450,A 4 Bedroom House With A Bq,Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6451,A 4 Bedroom Townhouse With A Bq,"Adekunle Fajuyi Way,ikeja Gra Ikeja Gra Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6452,6 Bedroom Detached,Immanuel Street Maryland Ikeja Lagos,₦,"144,000,000",0,0,0,6 beds,5 baths,5 Toilets,Maryland +6453,2000 Sqm Plot Of Land At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +6454,Executive 5 Bedroom Terrace Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +6455,Offices Complex At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Adeniyi Jones +6456,1200sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,GRA +6457,1400sqm Of Land At Ikeja Gra,Ikeja Gra Lagos Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6458,3 Bedroom Duplex,Shonibare Maryland Maryland Ikeja Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6459,3 Bedroom Flat,Mende Maryland Maryland Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Maryland +6460,4 Bedroom Duplex,Maryland Maryland Ikeja Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +6461,"Newly Built 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,GRA +6462,A Shop Space,New Alade Market Ikeja Ikeja Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6463,"2,700sqm Of Land At Oduduwa Crescent",Oduduwa Crescent Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6464,"3,699sqm Of Land At Remi Fani Kayode Street",Remi Fani Kayode Street Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6465,780sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6466,"2,780sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6467,"5,000sqm Of Land At Joel Ogunaike Street",Joel Ogunaike Street Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6468,"2,000sqm Of Land At Joel Ogunaike Street",Joel Ogunaike Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6469,"1,173sqm Of Land At Ayoola Coker Street",Ayoola Coker Street Ikeja Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6470,"2,007sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6471,"2,505sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6472,500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6473,"1,989sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6474,"3,972sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6475,"3,482.56sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6476,392sqm Of Land At Oduduwa Street,Oduduwa Street Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6477,"1,980sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6478,"1,115sqm Of Land At Oduduwa Way",Oduduwa Way Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6479,"4,200sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6480,"5,942sqm Of Land At Sasegbon Street",Sasegbon Street Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6481,"1,826sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6482,"1,000sqm Of Land At Sasegbon Street",Sasegbon Street Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6483,"3,900sqm Of Land At Oba Akinjobi Way",Oba Akinjobi Way Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6484,"4,214sqm Of Land At Sobo Arobiodu Street",Sobo Arobiodu Street Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6485,"1,400sqm Of Land At Remi Fani Kayode Street",Remi Fani Kayode Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6486,"1,007sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Awolowo Way +6487,"1,383sqm Of Land At Ayoola Coker Street",Ayoola Coker Street Ikeja Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6488,"2,100sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6489,750sqm Of Land At Ayoola Coker Street,Ayoola Coker Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6490,500sqm Of Land On Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6491,"3,872.95sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6492,"1,000sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6493,Warehouse,Off Senu Street Ikeja Ikeja Lagos,₦,"27,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +6494,3 Bedroom Flat,Amusa Oluyide Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,1 baths,1 Toilets,Other Ikeja +6495,A 5 Bedroom Duplex,Sobo Arobiodu Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6496,Warehouse,Oba Akran Ikeja Ikeja Lagos,₦,"2,020,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6497,Land,Along Bayo Shodipo Ikeja Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6498,Land,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6499,Shopping Mall With Office Suites,Ikeja Ikeja Ikeja Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6500,Half Plot Of Land,Olowu Street Ikeja Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6501,5 Bedroom Semi Detached Duplex,Ladoke Akintola Street Ikeja G.r.a Ikeja Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6502,6 Bedroom,"No 8 Immanuel Street Maryland, Off Mobolaji Bank Anthony Way, Ikeja Ikeja Lagos",₦,144,0,0,0, beds, baths, Toilets,Other Ikeja +6503,A 1179sqm Of Land,Lateef Jakande Road Ikeja Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6504,5 Bedroom Semi Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,GRA +6505,A 3 Bedroom Flat With A Room Bq,Allen Ikeja Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6506,A 5 Bedroom Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6507,Outright Sale,"Ladoke Akintola, Ikeja G.r.a Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,GRA +6508,Lot 113: Isheri North Residential Scheme Of 828sqm Of Land For Sale,Isheri North Residential Scheme Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6509,4 Bedroom Semi Detached House,Magodo Gra 2 Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikeja +6510,Conveyance,"Olowu Street, Ikeja Lagos Ikeja Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6511,"1,586sqm Of Land","Beco Concrete, Mongoro Bus Stop Ikeja Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6512,4 Bedroom Terrace House + 1 Room Bq,"G.r.a, Ikeja Ikeja G.r.a Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6513,A 5 Bedroom Detached Duplex With A Miniflat,Omole Phase 1 Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6514,4 Story Commercial Building At Ikeja,Towards Ikeja Local Govt Office Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6515,A 6 Bedroom Duplex,Omole Phase 2 Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikeja +6516,A 5 Bedroom Duplex,Omole Phase 2 Ikeja Ikeja Lagos,₦,"27,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +6517,Newly Built 5 Bedroom Duplex With Underground Swimming Pool And Bq At G.r.a Ikeja,"G.r.a Ikeja, Lagos Ikeja Lagos",₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6518,Buildings With Swimming Pool On 2007m2 Of Land,Adekunle Fajuyi Road Ikeja Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Airport Road +6519,5 Bedroom Duplex At Ikeja Gra,Gra Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,GRA +6520,An 85% Complete 4 Bedroom Detached House,Minimah Estate Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6521,Land,Billings Way Ikeja Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6522,Land,Akinwunmi Street Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6523,A 1000sqm Of Land,Oduduwa Way Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6524,5 Acres Of Land,Ladipo Oluwole Street Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6525,"A 22,000sqm Of Land",Obafemi Awolowo Way Ikeja Ikeja Lagos,₦,"6,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6526,A 5 Acres Of Land,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6527,"A 7,625sqm Of Land",Obafemi Awolowo Way Ikeja Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6528,"A 1,960sqm Of Land",Off Agbaku Street Ikeja Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6529,"A 2,007sqm Of Land",Adekunle Fajuyi Way Ikeja G.r.a Ikeja Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6530,"A 3,482sqm Of Land",Adekunle Fajuyi Way Ikeja G.r.a Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6531,"A 5,942sqm Of Land",Sasegbon Ikeja G.r.a Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6532,"A 4,000sqm Of Land",Mobolaji Bank Maryland Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6533,"A 9,000sqm Of Land",Billings Way Ikeja Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6534,"A 4,200sqm Of Land",Billings Way Ikeja Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6535,"A 27,000sqm Of Land",Oba Akran Avenue Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6536,4 Bedroom Detached House,"G.r.a, Ikeja Ikeja G.r.a Ikeja Lagos",₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6537,6 Bedroom Duplex,"Sunday Farm Estate, Cement Ikeja Ikeja Lagos",₦,"50,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikeja +6538,A 5 Bedroom Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6539,A 5 Bedroom Terraced Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6540,A 6 Bedroom Detached Duplex,Oladipo Bateye Ikeja G.r.a Ikeja Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +6541,2 Plots Of Land,Maryland Ikeja Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6542,57 Rooms Hotel,Ikeja Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6543,5 Bedroom Detached Duplex,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +6544,2 Blocks Of 6 Units 3 Bedroom Flats,Maryland Ikeja Maryland Ikeja Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6545,A Fully Plot Of Land,Opebi Ikeja Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6546,A 3 Bedroom Office,Murtala Mohammed Int'l Airport Road Ikeja Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6547,5 Bedrooom Detached Duplex,Sobo Arobiodu Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,GRA +6548,Registered Deed,Shonibare Estate Maryland Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,6 Toilets,Maryland +6549,Orchid Court,Micheal Ogun Ikeja G.r.a Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6550,Warehouse/office Space,Oba Akran Road Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6551,5 Bedroom Detached +1bq,Herbert Macaulay Gra Ikeja Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikeja +6552,7 Bedroom Detached House+home Office,Ada Johnson Crescent Off Adeniyi Jones Ikeja Ikeja Lagos,₦,"230,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Ikeja +6553,A Paper Mill,Mobolaji Johnson Road Ikeja Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6554,3 Units 5 Bedroom Flats,Okupe Estate Maryland Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6555,A 5 Bedroom Terrace,Opebi Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6556,A 5 Bedroom Townhouse House,Opebi Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6557,Detached House,Sobo Arobiodun Street Ikeja G.r.a Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6558,Property For Sale In Ikeja,Yinusa Adeniji Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6559,"A Plot Of Land, Fenced And Gated",Behind Afeni Driving School Lagos Abeokuta Express Ikeja Ikeja Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6560,3 Bedroom Luxury Terrace House,Mende Villa Estate Ikeja Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikeja +6561,5 Bedroom Bungalow+2bq,Off Ajose Street Maryland Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets,Maryland +6562,Open Plan For Office,Adeniyi Jones Ikeja Ikeja Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6563,3 Bedroom Flat A With A Bq,Ajose Street Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6564,5 Bedroom Duplex +bq,Folashade Abike Street Omole Phase 2 Ikeja Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6565,A 5 Bedroom Detached Duplex With A Room Bq On A 700sqm Land,Opebi Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6566,Warehouse,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6567,A 5 Bedroom Duplex With A Bq,Folashade Abike Street Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6568,A 5 Bedroom Duplex,Gra Ikeja Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6569,A 6 Bedroom Duplex With A Bq,Gra Ikeja Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikeja +6570,A 4 Bedroom Duplex With A Bq,Gra Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6571,A Land,Back Of Rccg Camp Ground Ikeja Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6572,A Land,River View Estate Ikeja Ikeja Lagos,₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6573,A Block Of Office On 946sqm,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6574,Hotel,Airport Road Ikeja Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6575,Hotel,Secretariat Ikeja Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6576,Office Space,Oba Akran Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6577,A 4 Bedroom Duplex,Alausa Ikeja Ikeja Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6578,Office Space,Adeniyi Jones Ikeja Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6579,3 Blocks Of Primary & Secondary School,"Oregun, Ikeja Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6580,Hostel Accommodations,Idiroko Estate Maryland Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6581,5 Bedrooms Fully Detached House + Chalet,"Opebi, Ikeja Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Ikeja +6582,4 Bedroom Flat With 2 Room Chalet,Talabi Estate Ikeja Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6583,5 Bedroom Duplex,Henry Adefope Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6584,Warehouse/ Admin Block,Alausa Ikeja Ikeja Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6585,4 Bedroom Flat,"Mende, Maryland Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +6586,A Very Big School,Ogba Ikeja Ikeja Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6587,3 Bedroom Flat,"Off Isaac John, Ikeja G.r.a Ikeja Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,GRA +6588,Plot Of Land,Isheri North Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6589,5 Bedroom Detached House + 2 Room Bq,Ajose Maryland Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +6590,"4 Units Of 2 Bedroom Flats, One And Half Plot",Governor Road Ikeja Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6591,For Sale,Off Adeniyi Jones Avenue Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,2 baths, Toilets,Other Ikeja +6592,6 Units Of 4 Bedroom Terrace Town Houses,"Adeyemo Akapo, Omole Phase 1 Estate. Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja +6593,A 4 Bedrooms Semi Detached Duplex,Gra Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6594,A 4 Bedroom Duplex,Gra Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6595,Certificate Of Occupancy,"Dry Land Near Ikeja International Airport, Facing The Expressway. Ikeja Lagos",₦,900,0,0,0, beds, baths, Toilets,Other Ikeja +6596,Shop For Sale,"Folashade Bola Tinubu Ojo Airport Market, Ikeja Along, Off Ikeja Along Bridge. Opposite Ikeja Local Government Ikeja Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Ikeja +6597,6 Units Of 4 Bedroom Terrace Duplex With A Room Bq,Gra Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6598,2 Big Warehouses,Oluwole Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6599,A 4 Bedroom Terrace Duplex With A Room Bq,Alausa Area Ikeja Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6600,4 Units Of 3 Bedroom Flats,Off Toyin Street Ikeja Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +6601,A 3 Bedroom Flat With A Room Bq,Off Allen Avenue Ikeja Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6602,A 3 Bedroom Terrace Duplex,Alfred Garden Estate Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6603,For Sale,Atinuke Olabanji Street Off John Olugbo Street Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6604,Detached Duplex For Sale,"Tithe Farm Street, Opic, Isheri North, Lagos Ikeja Lagos",₦,"65,500,000",0,0,0, beds, baths, Toilets,Other Ikeja +6605,Luxury Flat,Off Allen Avenue Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikeja +6606,"For Sale Description: Two Story Building (4nos 2bedroom Flat Plus 2nos 2 Bedroom Flat With An Open Roof. Location:bayode Oluwole St, Off Balogun B/s,",No 3 Bayode Oluwoe Street Off Awolowo Way Balogun Bustop Ikeja Lagos Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6607,5 Bedroom Duplex With 1 Room Bq At Omole Ph 2,Omole Estate Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Omole +6608,2 Duplexes & 2 Bedroom Bungalow Via International Airport Road,International Airport Road Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Airport Road +6609,5 Bedroom Terrace Duplex,Ayo Ola Koker Street Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6610,5 Bedroom Fully Detached Duplex For Sale,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,GRA +6611,6 Units Of A 3 Bedroom Flat,Off Toyin Street Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikeja +6612,A 5 Bedroom Duplex Apartment With A Bq,Omole Phase 1 Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6613,A 3 Bedroom Flat Apartment With A Bq,Omole Phase 1 Ikeja Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6614,A 5 Bedroom Duplex With A Room Bq,Minimal Estate Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6615,A 5 Bedroom Duplex With A Room Bq,Minimal Estate Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6616,8 Bedroom Raised Bungalow At Felicia Koleosho Street,Felicia Koleosho Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6617,A 4 Bedroom Duplex With A 2 Bedroom Flat Bq,Mko Abiola Garden Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6618,2 Acres Of Land Off Toyin Street,Off Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikeja +6619,A 6 Bedroom Duplex Mansion,Harold Sodipo Cresecent Ikeja G.r.a Ikeja Lagos,₦,"365,000,000",0,0,0,6 beds,6 baths,7 Toilets,GRA +6620,5 Units Of 5 Bedroom Duplex With 1 Room Bq,Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6621,4 Units Of 5 Bedroom Duplex,Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6622,2 Wings Of 4 Bedroom Terrace Duplex With 2 Room Bq,"Adeyemo Alakija Street, Ikeja G.r.a Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,GRA +6623,2 Wings Of 5 Bedroom Terrace Duplex With 1 Room Bq,No 25 Remi Fani Kayode Ikeja G.r.a Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,GRA +6624,A Plot Of Land,Off Adeniyi Jones Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6625,2 Wings Of 4 Bedroom Duplex With 2 Rooms Bq,No 14 Akin Osiyemi Street. Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6626,Serviced 3 Bedroom Flat,Abbi Street Maryland Ikeja Lagos,₦,"4,500,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6627,5 Bedroom Duplex With 1 Room Bq,Olaperi Street Maryland Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +6628,5 Units Of 3 Bedroom Flat,Oyedele Ogunniyi Maryland Ikeja Lagos,₦,"165,000,000",0,0,0,3 beds,2 baths,3 Toilets,Maryland +6629,4 Units Of 4 Bedroom Duplex,Sasegbon Street. Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6630,6 Bedroom Mansionatte With 2 Rooms Bq,Oba Akinjobi Street. Ikeja Ikeja Lagos,₦,"420,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikeja +6631,3 Bedroom Duplex With 1 Room Bq,No 6 Michael Ogun Street Ikeja Ikeja Lagos,₦,"97,500,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6632,4 Bedroom Dethached Duplex With 1 Room Bq,Ayola Coker Street Maryland Ikeja Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +6633,3 Bedrooms Terrace Duplex + A Room Bq,Alfred Garden Estated Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6634,Newly Built 2 Units Of 4 Bedroom Detached Houses,"Shonebare Estate, Maryland Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Maryland +6635,Land,"Along Oba Akran Avenue, Ikeja Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6636,Factory,"Off Adeniyi Jones/off Oba Akran Avenue, Ikeja Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6637,4 Bedroom Duplex + A Room Bq,"Ikeja Gra, Ikeja Ikeja Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6638,A 32 Room Functional Hotel,"Idiroko Estate, Ikeja Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6639,4 Bedroom Duplex,No 7 Tola Adewunmi Street. Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Maryland +6640,Land At Ikeja Gra,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,GRA +6641,Shop,Alade Market Ikeja Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6642,4 Bedroom Terrace Duplex,"Ikare Close, Orimade Crescent Ikeja Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6643,3 Bedroom Flat With 1 Room Bq,Ajose Street. Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6644,Newly Built 3 Bedroom Semi Detached Duplex,Olukuye Street Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Maryland +6645,5 Bedroom Detached House With 1 Room Bq,"Olaperi Street, Maryland Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Maryland +6646,A Plot Of Land For Sale,Adeniyi Jones Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6647,A Plot Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikeja +6648,3 Bedroom Flat,No 26 Oreleye Street. Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikeja +6649,5 Bedroom Duplex,No 33 Omodara Street. Ikeja Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6650,5 Bedroom Detached House,"Oduduwa Crescent, Ikeja Ikeja Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikeja +6651,Brand New 4 Bedroom Detached House With Bq,"Showemimo Street, Gra, Ikeja Ikeja Lagos",₦,"205,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikeja +6652,4 Bedroom Terrace In Alausa | Agidinbgi | Oregun,Coker Estate Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikeja diff --git a/clean/ikoyi.csv b/clean/ikoyi.csv new file mode 100644 index 0000000..a340d4c --- /dev/null +++ b/clean/ikoyi.csv @@ -0,0 +1,9276 @@ +,Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood +0,Newly Built 5 Bedroom Fully Detached Duplex,"Oniru Estate Victoria Island, Awolowo Road Ikoyi Lagos",₦,"250,000,000",1,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +1,"Luxury 5 Bedroom Terrace With Private Elevator, Cinema And Spa",Banana Island Estate Banana Island Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,7 baths,7 Toilets,Banana Island +2,Luxury 5 Bedroom Triplex Penthouse With Private Pool & Spa,Banana Island Estate Banana Island Ikoyi Lagos,$,"4,000,000",1,1,0,5 beds,8 baths,8 Toilets,Banana Island +3,5 Bedroom Detached Duplex With 2 Staff Quarters And Two Sets Of Kitchen,Off Cameron Road Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,8 baths,9 Toilets,Other Ikoyi +4,Land Size: 1800 Sqm + Waterfront Dry Bareland,"Zone Q, Banana Island, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5,Luxury 3 Bedroom Apartment With 2 Maid's Room,Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"370,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6,Luxury 3 Bedroom Apartment With 2 Maid's Room,Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7,Luxury Serviced 3bedroom Terrace Duplex,Falomo Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8,12 Units Of 3 Bedroom Flat With 1 Room Bq Each,"Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"95,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +9,4 Bedroom Fully Detached House + 1 Room Bq,Off Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +10,Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +11,New 4 Bedroom Terrace House+ Bq,Banana Island Ikoyi Lagos,₦,"670,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +12,Premium 3 Bedroom Apartment + Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +13,Luxury Waterfront 5 Bedroom House,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +14,Newly Built 5 Bedroom Fully Detached House +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +15,Newly Built 5 Bedroom Detached House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +16,New & Premium 4 Bedroom Semi Detached Terrace House +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,0,0,4 beds,4 baths,0 Toilets,Banana Island +17,Premium 4 Bedroom Terrace House +bq+pool+gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +18,Luxury 4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +19,Newly Built 4 Bedroom Apartment,Ikoyi Central Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +20,Classy 3 Bedroom Terrace House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,3 Toilets,Parkview +21,Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,0 Toilets,Banana Island +22,"Very Closable Waterfront Land 3,827.031sqmts",Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +23,4 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,300,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +24,New 5 Bedroom Detached House + Bq,Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +25,Lavishly Built 5 Bedroom Detached House,"Cooper Road, Old Ikoyi Ikoyi Lagos",₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +26,Fresh 6 Bedroom House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +27,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +28,Smart And Super Lucurious 5bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +29,Brand New 3 Bedroom Apartment& Bq In A Serene Secured Estate Environment For Sale !!!,Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +30,Fully Serviced 4 Bedroom Pent House Luxuriously Finished,Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +31,4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"20,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +32,Newly Built 4bedrooms Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +33,5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +34,4 Bedroom Terrace Duplex,Along Banana Island Road Ikoyi Lagos,₦,"420,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +35,Luxury 5bedroom Maisonette,Banana Island Estate Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +36,A Newly Built & Tastefully Finished Luxury & Contemporary Fully Serviced 3bedroom Flat + A Room Bq For Sale!!!,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,1,3 beds,3 baths,3 Toilets,Onikoyi +37,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"290,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +38,Lovely 3 Bedroom Maisonette,Parkview Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,4 baths,4 Toilets,Parkview +39,Luxury And Beautiful Finished 3 Bedroom Luxurious Apartments,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +40,Executive 5 Bedroom Fully Detached House On Two Floors.,Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +41,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +42,4bedroom Pent House With Bq,Old Ikoyi Ikoyi Lagos,₦,"385,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +43,3bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +44,Brand New 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +45,5 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +46,Luxury 4 Bedroom Terraced Duplex,Off Macpherson Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +47,"Waterfront 5 Bedroom Fully Detached Duplex With A Pool, Cinema And Bq",Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +48,Luxury Massive 5 Bedroom Semi Detached Home,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +49,2 Bedroom Apartment,Ikoyi Lagos,₦,"165,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +50,6 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +51,"Beautiful Luxury Fully Automated 4,bedroom Pent House Maisonette Apartments",Old Ikoyi Ikoyi Lagos,₦,"385,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +52,5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +53,3 Bedroom Apartment,Tango Towers Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +54,Brand New 5bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +55,Brand New 3 Bedroom Apartment& Bq In A Serene Secured Estate Environment,Gerard Road Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +56,Luxury Fully Automated 3 Bedroom Home,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +57,Brand New 4 Bedroom Mainsonette With A Bq, Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +58,This 5bedroom Semi Detached & 6bedroom Fully Detached Are In The Market,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +59,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +60,Contemporary 5 Bedroom Detached Duplex & 2room Bq.,Banana Island Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +61,Luxury Finished Two Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"120,000,000",1,1,0,2 beds,3 baths,3 Toilets,Banana Island +62,Luxury Vintage Mansion,Banana Island Ikoyi Lagos,₦,"1,600,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +63,Brand New 4 Bedroom Detached Duplex With Bq & Swimming Pool (water Front),Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +64,5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +65,Sea View Luxury Serviced 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +66,Contemporary Massive 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +67,Executive 4 Bedroom Fully Detached Duplex With B.q|,Ikoyi Lagos,₦,"340,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +68,Tastefully Finished 3 Bedroom Apartment With All Fittings Specially Imported And Installed.,Osborne Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +69,Luxury 2 Bedrooms Automated Home,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,3 baths,3 Toilets,Old Ikoyi +70,5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +71,Lovely Waterfront Three Bedroom Apartment With A Maid's Room,"Marion Apartments, Banana Island Road Banana Island Ikoyi Lagos",₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +72,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +73,Contemporary 5 Bedroom Detached House With Boys Quarter,Shoreline Estate Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +74,Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +75,Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,3 baths,3 Toilets,Old Ikoyi +76,Beautiful Luxury Fully Automated 1 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",1,1,1,1 beds,2 baths,3 Toilets,Old Ikoyi +77,Waterfront Luxury 5 Bedroom Fully Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets,Onikoyi +78,4floors+panoramic Waterview Exquisite 5 Bedroom Semi Detached House On 4 Floors With An Elevator And A Spacious Room Staff’s Quarter,Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +79,5 Bedroom Waterfront Home,Banana Island Road Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +80,Newly Built 5bedroom Duplex With Swimming Pool And 2bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +81,Vacant 4 Bedroom Detached House +( A Gym & A Room Bq) On 600sqm Landsize For Sale!!!,Queens Drive Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +82,Spacious 4 Bedroom Flat With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +83,Brand New 3bedroom Flat With A Bq !!!,Banana Island Ikoyi Lagos,₦,"198,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +84,Luxury 4 Bedroom Apartment At The Belmonte,Bourdillon Ikoyi Lagos,$,"1,600,000",0,0,0,4 beds,4 baths, Toilets,Other Ikoyi +85,Brand New 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +86,Luxury And Exclusive 3 Bedroom Flat,Ikoyi Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +87,Fully Serviced 2 Bedroom Apartment With A Boy’s Quaters,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets,Old Ikoyi +88,Newly Built 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +89,Luxury Finished 4 Bedroom Penthouse.,Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +90,Newly Built 2 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +91,5 Bedroom Semi Detached Duplex With Elevator,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,5 baths,5 Toilets,Onikoyi +92,Lovely 3 Bedrooms Apartment,Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +93,Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +94,5 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"940,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +95,4 Bedroom Luxury Apartment At The Residence With 2 Servant Quaters,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds, baths, Toilets,Banana Island +96,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +97,Fully Automated Luxury With Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +98,4 Bedroom Fully Detached With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"360,000,000",1,1,0,4 beds,5 baths,6 Toilets,Banana Island +99,4 Bedroom Townhouse,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +100,Smart Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +101,Newly Built Fully Detached 4 Bedroom Duplex,Banana Island Road Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +102,Fully Serviced 4 Bedroom Luxuriously Finished,Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +103,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex For Sale!!!!,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +104,5 Bedroom House With 2 Rooms Bq,Shoreline Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +105,Massive 6 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"1,900,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +106,3 Bedroom Apartments With 1 Bq Are Located In A Secured Estate.,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Parkview +107,Brand New 3 Bedroom Flat With A Bq,Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +108,Ongoing 5 Bedroom House,"The Authograph, Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +109,5bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +110,Newly Built 5 Bedroom Fully Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +111,Newly Built 4 Bedroom Terrace Houses With 1 Room Service Quarters,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +112,26 Numbers Of Premium 3 Bedroom Apartments,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,600,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +113,5 Bedroom Detached House + Bq + Pool Etc,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",1,0,0,5 beds,5 baths,6 Toilets,Banana Island +114,Exquisitely Finished 5 Bedroom Detached House With Cinema & Private Elevator,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +115,Super Luxury & Modern 3 Bedroom Flat With Bq,Gerald Road Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +116,Luxury Built 5 Bedroom Fully Detached Duplex With 2room Bq On 600m² Land,"Hanour Point Estate, Ikoyi Lagos",₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +117,6bedroom Detached Mansion,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +118,Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",1,0,1,2 beds,2 baths,3 Toilets,Banana Island +119,Brand New 5 Bedroom Detached House With Private Jetty,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +120,Luxury 6 Bedroom Fully Detached Duplex,In A Prestigious Neighborhood Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +121,Luxury 4 Bedroom Terrace House + Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +122,Brand New Exquisitely Finished 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +123,Newly Built 4 Bedroom Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +124,"Waterfront Land Measuring 1,691m²",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Onikoyi +125,Well Furnished 2 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,1,2 beds,2 baths,2 Toilets,Parkview +126,Fully Detached 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +127,Excellent 4 Bed Semi Detached Duplex With Swimming Pool And Gym In Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Ikoyi +128,Spacious And Luxury One Bedroom Apartment On Banana Island Road Ikoyi,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"72,000,000",1,0,0,1 beds,1 baths,2 Toilets,Onikoyi +129,A 4bedrooms Semi Detached House + Bq,Dolphin Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +130,Fully Serviced 2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +131,"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +132,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +133,2 Bedrooms Flat,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,2 beds,3 baths,3 Toilets,Onikoyi +134,Newly Built 5 Bedroom Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,005,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +135,Newly Built Waterfront 5 Bedroom Detached House + 2 Rooms Bq,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +136,Spacious And Luxury One Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"72,000,000",1,0,0,1 beds,1 baths,2 Toilets,Onikoyi +137,4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +138,5 Bedroom Penthouse Apartment On Multiple Floors + Elevator,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"2,000,000",1,0,0,5 beds,5 baths,6 Toilets,Onikoyi +139,Ecquisitely Finished & Brand New 5 Bedroom Detached Duplex On 4 Floors With Elevator & Cinema (video Available On Request),Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +140,Renovated 4bedrooms Terrace + Bq,Parkview Estate Ikoyi Lagos,₦,"8,000,000",1,0,0,4 beds,5 baths,5 Toilets,Parkview +141,"Land Measuring Approximately 1,662m² And Riped For Immediate Development.","Elegushi Road (formerly Club Road), Old Ikoyi, Ikoyi Lagos",₦,"1,250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +142,Newly Built 5 Bedroom Fully Detached House,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +143,Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +144,Luxury 4 Numbers Of 3 Bedroom Terrace Houses,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +145,3bedrooms Apartment + Bq,Banana Island Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +146,Smart Luxury 3 Bedroom Blocks Of Flat And Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +147,Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +148,4 Bedroom Terrace House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +149,3bedrooms Condo Apartment + Bq,Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +150,Newly Built 5 Bedroom Detached Duplex,"Ikoyi, Lagos, Nigeria Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +151,Brand New 4 Bedroom Terrace Duplex With A Bq;,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +152,Fully Serviced 3 Bedroom Apartments,Banana Island Road Banana Island Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +153,Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq;,Shoreline Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +154,Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +155,Land For Jv,Off Gerald Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +156,900sqm Land In A Gated Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Foreshore +157,Brand New 5 Bedroom Semi Detached Duplex + Bq,Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +158,4 Bedroom Fully Detached Duplex,Off Bourdillion Road Old Ikoyi Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +159,Remodeled 4 Bedroom Duplex With 2 Rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +160,Newly Built Serviced 6 Bedroom Detached Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +161,Luxurious Executive 4bedroom Terrace Duplex,Kingsley Road Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +162,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +163,Luxury Furnished & Serviced 2bedroom Flat+ A Room Bq For Sale!!!,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,2 baths,2 Toilets,Other Ikoyi +164,Luxurious Executive 5 Bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +165,Luxury 2 Bedroom Apartments With An Elevator,Ikoyi Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +166,Automated 6 Bedroom With Pent House Duplex,Ikoyi Lagos,₦,"1,900,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +167,Well Maintained 4 Bedroom Duplex,Off Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,3 baths,4 Toilets,Old Ikoyi +168,Contemporary Massive 5 Bedroom Fully Detached Duplex,Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +169,Furnished 2 Bedroom Flat With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets,Parkview +170,26 Firmly Built Luxurious 3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Old Ikoyi +171,"Land 2,008sqm Land",Milverton Road* Off Bourdillon Road Ikoyi Lagos,₦,"770,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +172,Luxe 3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,5 Toilets,Old Ikoyi +173,Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +174,For Sale 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +175,Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +176,Executive Newly Build 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +177,Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +178,New Executive 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +179,New Amazing 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +180,5 Bedroom Fully Detached House With Two B.q,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +181,Executive 5 Bedroom Fully Detached Duplex Available,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +182,5bedroom Fully Detached Duplex With Swimming Pool And Jetty,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +183,"Modern, Luxurious And Beautifully Finished 3 And 4 Bedrooms Flat",... Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +184,3 Bedroom Flat,Off Kingsway Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +185,5 Bedroom Semi Detached Duplex For Sale!!!!,Mojisola Onireke Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +186,New 3 Bedroom Apartment With Great Facilities,Off Alfred Rewane Road Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +187,4 Bedroom Penthouse Masionette,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +188,Newly Built 4 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"485,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +189,6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +190,1134sqm Vacant Residential Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,360,000,000",0,0,0, beds, baths, Toilets,Banana Island +191,Beautiful 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +192,"Luxurious Units Of 2, 3 Bedroom Flats And 4 Bedroom Maisonette",Old Ikoyi Ikoyi Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +193,1938sqm Corner Piece Residential Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,520,000,000",0,0,0, beds, baths, Toilets,Banana Island +194,6 Bedroom Detached Duplex With Swimming Pool,Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikoyi +195,1002sqm Fenced Land For Residential Development,Off Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +196,5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +197,Fully Serviced 4 Bedroom Semi Detached Duplex,Z Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +198,3 Bedroom Apartment,S Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Parkview +199,3 Bedroom Flat,Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +200,Land,Along Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,750,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +201,New 4 Bedroom Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +202,5 Bedroom Duplex With Lots Of Features,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +203,Luxury 5bedroom Fully Detached Duplex For Sale!!!,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +204,Amazing Newly Built 5 Bedroom Semi Detached House With Two Room's B.q,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +205,5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +206,Well Furnished 2 Bedroom With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets,Parkview +207,4bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +208,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"320,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +209,24 Units Of Luxury 3 Bedroom Apartment & 3 Penthouses,Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +210,5 Bedroom Fully Detached Duplex,A Very Nice Environment Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +211,Bare Land,Olori Mojisola Estate Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +212,Newly Build 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +213,Luxury Furnished 2 Bedroom With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets,Parkview +214,3 Bedroom Flat With A B.q,S Gerard Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +215,Fully Detached House With 1 Room Bq On 340sqm Land,Raymond Street Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +216,5 Bedroom Luxury Penthouse Apartment,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,7 Toilets,Old Ikoyi +217,Waterfront With Jetty 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +218,5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +219,Luxury At Its Finest 4bedroom Maisonette.,Gerard Road Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +220,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +221,3004sqm/670k Waterfront Land,Ikoyi Lagos,₦,"670,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +222,New 6 Bedroom Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +223,Newly Built 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +224,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +225,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +226,"A Clean And Well Finished 4bedroom Semidetatched Duplex With A Bq, Spacious Ensuite Bedrooms,",Gerard Road Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +227,Amazing New 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,0 beds,0 baths,0 Toilets,Banana Island +228,Smart 3 Bedroom Ensuite Maisonettes (off Plan),Bourdillon Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +229,4 Bedroom Massionette Plus Bq,Elizabeth Grace Court 3 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets,Foreshore +230,Brand New Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +231,Fully Serviced 4bedroom Terrace House With A Room,Off Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +232,Well Furnished 6 Units Of One Bedroom Flat,... Ikoyi Lagos,₦,"80,000,000",1,0,0,1 beds,1 baths,1 Toilets,Other Ikoyi +233,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +234,Residential/commercial Land For Sale!!!,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +235,1135 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +236,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +237,5000sqm Fenced Land,Along Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +238,Luxury 3 Bedroom Apartments With A Room Servant Quarter,"Gerrard Road, Mason Apartments Old Ikoyi Ikoyi Lagos",₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +239,6 Bedroom Fully Detached Duplex, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +240,4 Bedroom Townhouse,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +241,6 Bedrooms Detached Duplex,Bourdillon Street Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,6 beds,6 baths,8 Toilets,Other Ikoyi +242,2 Storey Furnished Guesthouse,Ikoyi Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +243,Executive New 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +244,3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +245,Newly Built Serviced 5 Bedroom Semi Detached Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +246,Newly Built Serviced 4 Bedroom Terraced Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,6 Toilets,Banana Island +247,New Unit Of 4 Bedroom Serviced Apartment With Bq,Alexandra Road Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +248,"A Newly Built & Tastefully Finished Luxury Well Finished 4units Of 4bedroom Terrace Duplexes + A Penthouse,a Room Bq & A Study For Sale!!!",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +249,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex On 2floors +2rooms Bq For Sale!!!,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +250,6 Bedroom House,Ikoyi Lagos,$,"5,000,000",0,1,0,6 beds,0 baths,0 Toilets,Other Ikoyi +251,6 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +252,Residential Plot Of Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +253,2008sqm Mixed Used Property,Directly On Milverton Road Old Ikoyi Ikoyi Lagos,₦,"1,365,440,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +254,900 Sqm Land,Osborne Phase 2 Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +255,"1,700sqms Land",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +256,570.473sqns Land,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +257,Land,Royal Palm Drive Osborne Phase 2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",1,0,0,0 beds,0 baths,0 Toilets,Foreshore +258,3 Bedroom Apartment With Bq,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +259,Newly Built 5 Bedroom Detached,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +260,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"955,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +261,Serviced 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +262,4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +263,2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"185,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +264,Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +265,3 Units Of Abandoned 12 Floors,Off 2nd Avenue Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +266,Superbly Finished Automated 5 Bed Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +267,Land,"Alexander Road, Old Ikoyi Ikoyi Lagos",₦,"2,350,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +268,Luxury 6 Bedroom House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +269,Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool,Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds, baths, Toilets,Other Ikoyi +270,Brand New 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +271,Brand New 4 Bedroom Maisonette;,Parkview Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +272,Brand New & Smart 5 Bedroom Fully Detached Duplex With Bq;,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +273,Brand New 3 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"380,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +274,Newly Built 5 Bedroom Detached House + Bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +275,5 Bedroom Automated Maisonette;,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +276,3 Bedroom Apartment With Bq,Located In A Safe And Secure Environment Chevron Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +277,Spacious 4 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +278,Direct Cash Ready Buyers Only Newly Built 5 Bed Maisonette On 2 Floors + Pool,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +279,Brand New Exquisitely Finished 4 Bedroom (corner Unit),Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +280,Luxury 5 Bedroom Penthouse With Excellent Facilities,Ikoyi Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +281,Prince Ademola Osinuga Exclusive! Reasonably Priced Newly Built 4 Bedroom Semi Detached House In Parkview @n280m!,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +282,Brand Bew 5 Bedroom Penthouse With A Bq;,Off Banana Island Road Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +283,Superb Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +284,Contemporary 5 Bedroom Detached House With Boys Quarter,Onikoyi Road Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,7 Toilets,Onikoyi +285,Newly Built 5 Bedroom Fully Detached House + Bq,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +286,Fresh / Newly Built 5 Bedroom Fully Detached House + Swimming Pool + Elevator + 2bq Etc In Banana Island Estate @n1.7b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +287,Luxurious 5bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +288,Well Built Luxury 3 Bedroom Apartment + Bq + Pool + Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +289,One Of The Best Investment Deals In The Market! Top Floor 4 Bedroom Apartment + Bq Etc @n300m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +290,Newly Built 5 Bedroom Fully Detached House + Bq,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +291,Well Priced 6 Bedroom Terrace House + Bq+pool,Banana Island Estate Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +292,Direct Cash Clients Only New 5 Bedroom Semi Detached House + Bq Etc In A Mini Estate Within Banana Island Estate @n600m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +293,Luxury Semi Detached 5 Bedroom House + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +294,Luxury 4 Bedroom Apartment +bq+pool+elevators,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +295,Newly Built 4 Bedroom Semi Detached House +massive Rooftop,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +296,Fenced And Gated 2storey Building On A Land Measuring 484sqyrds,Norman Williams Awolowo Road Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +297,Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,In A Premium Neighborhood Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +298,Block Of 8 (nos) 4 Bedrooms Luxury Flats,Hameed Kasumu Street Ikoyi Lagos,₦,"1,950,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +299,Waterfront Fully Detached 4 Bedroom House,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,0 Toilets,Old Ikoyi +300,Newly Built 6 Bedroom Fully Detached Villa,Ikoyi Ikoyi Lagos,$,"5,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +301,Waterfront 3 Bedroom Apartment +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +302,Exquisitely Finished 5 Bedroom Detached Duplex With Ample Parking & Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +303,Newly Built 3 Bedroom Apartment,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"225,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +304,Brand New 4 Bedroom Maisonette With A Bq;,Banana Island Ikoyi Lagos,₦,"490,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +305,Newly Built 4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +306,Newly Built 3 Bedrooms Flat,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +307,Luxury Waterfront 3 Bedroom Apartment + Bq,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Onikoyi +308,Executive Elegant Brand New Royal 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +309,Newly Built 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +310,Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000/sqm",1,1,1,6 beds,6 baths,7 Toilets,Banana Island +311,Newly Built 5 Bedroom Semi Detached With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +312,Well Sized & Reasonably Priced 4 Bedroom Fully Detached House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +313,Fully Detached 4 Bedroom House + Bq @n750m,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +314,Newly Built 4 Bedroom Semi Detached Terrace House + Bq,"Banana Island Estate, Banana Island Ikoyi Lagos",₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +315,Newly Built & Strategically Located 4 Bedroom Maisonette On 2 Floors+bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +316,"4,200m2 Waterfront Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +317,"Strategic Waterfront Land With Jetty Measuring Approximately 2,700m² (video Available On Request)","Alexander Road By The Lekki Bridge Roundabout, Ikoyi Lagos",₦,"2,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +318,Executive Royalty Spacious 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Banana Island Road Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +319,Luxury 4 Bedroom Detached Duplex With Bq;,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +320,Newly Built & Affordable 3 Bedroom Apartment +bq,Parkview Estate Old Ikoyi Ikoyi Lagos,₦,"112,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +321,Direct Cash Ready Buyers Newly Built Luxury 3 Bedroom Apartment + Elevator + Bq In A Mini Estate Within Ikoyi @n122m,Ikoyi Ikoyi Lagos,₦,"122,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +322,Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +323,5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +324,Land,"Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,575,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +325,Well Built 5 Bedroom Fully Detached House + Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +326,4 Bedroom Terrace House With Bq,Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +327,5 Bedroom Detached House With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +328,Brand New Super Luxury Executive 2 Unit Of 5 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +329,Fresh 8 Nos Luxury & Furnished 4 Bedroom Apartments + Bq + Elevators,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"1,500,000,000",1,1,1,10 beds,10 baths,10 Toilets,Parkview +330,Brand New 6 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,$,"1,400,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +331,Newly Built 5 Bedroom Fully Detached House + 2bq+parking For Up To 10cars+pool+elevator Etc @n850m,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +332,5 Bedroom Luxury Detached Duplex With Private Elevator In A Prestigious Address,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +333,Newly Built Luxury 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +334,Land,Lawrence Road Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +335,Premium 4 Bedroom Semi Detached Terrace House + Bq+ Gym + Pool,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +336,Affordable 4 Bedroom Terrace House +bq+swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0, beds, baths, Toilets,Old Ikoyi +337,2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",1,1,1,2 beds,2 baths,2 Toilets,Banana Island +338,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +339,4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"460,000,000",1,0,0,4 beds,0 baths,0 Toilets,Banana Island +340,4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"400,000,000",1,0,0,4 beds,3 baths,4 Toilets,Banana Island +341,4 Bedroom Terrace Houses,Banana Island Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths, Toilets,Banana Island +342,Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +343,Newly Built 5 Bedroom House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +344,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +345,2250 Sq.metres Land For Sale,Magbon Close Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +346,Furnished 5 Bedroom Penthouse With Amazing Facilities,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Old Ikoyi +347,4 Bedroom Penthouse Flat With A Bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +348,4 Bedroom Maisonette With Bq;,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +349,Fully Detached 4 Bedroom House +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +350,Exquisitely Finished 3 Bedroom Apartment With Bq, Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +351,Luxury 2 Bedroom Apartment With Amazing Features,Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +352,Luxury 4 Bedroom Waterfront 4 Bedroom Semi Detached Terrace House + Bq,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +353,Newly Built 3 Bedroom Apartment + Bq+pool+elevators,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +354,Beautiful Ultra Luxury 7 Bedroom Vila With Fountain Pool + Elevator Etc,Parkview Estate Parkview Estate Ikoyi Lagos,$,"3,500,000",0,1,0,7 beds,7 baths,8 Toilets,Parkview +355,Finished 6 Bedroom Terrace House;,Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +356,Newly Built 4 Bedroom Semi Detached,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +357,4 Bedroom Luxury Apartments,"The Residence Apartments Along Banana Island Road Between Rebecca Court & Olive Tree Parish Church, Ikoyi Lagos",₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +358,Excellent Prime Plot Of Land Measuring 1000sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +359,Newly Built 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +360,Highly Competitive Family Friendly 3 Bedroom Apartment + Tennis+ Squash,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +361,Luxury 3 Bedrooms Apartment + 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +362,3 Bedroom Luxury Apartment With Bq,Olori Mojisola Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +363,New & Highly Classy 4 Bedroom Maisonette On 2 Floors +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +364,Newly Built 3 Bedroom Apartment +pool +gym+ Adequate Parking,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +365,New 4 Bedroom Terrace House + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +366,Newly Built Lovely 8 Units Of 4 Bedroom Semi Detached Duplex With Bq And Swimming Pool,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +367,Very Affordable 3 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +368,Brand New Modern 4 Bedroom Massionette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +369,Well Serviced 4 Bedroom Apartment +bq+pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"195,000,000",1,0,0,4 beds,3 baths,4 Toilets,Old Ikoyi +370,"Fully Serviced, Ocean View 3 Bedroom Flat","Ocean Parade, Banana Island Ikoyi Lagos",₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +371,Newly Built 5 Bedroom House + Bq + Cinema + Pool,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +372,Newly Built 4 Bedroom Apartment +bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,0 Toilets,Banana Island +373,Prince Ademola Osinuga New 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +374,6 Floor Block Of Serviced Flats,Off Alfred Rewane(kingway) Road Ikoyi Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +375,Luxurious 5 Bedroom Mansion,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +376,4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +377,Spacious 4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +378,Fresh & Furnished 5 Bedroom Semi Detached Terrace House + Bq + Swimming Pool + Gym Etc In Banana Island Estate @n650m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +379,Luxury 5 Bedroom Fully Detached Duplex In Premium Location,In A Serene Estate Neighborhood Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +380,4 Bedroom Penthouse Apartment On A Whole Floor + Bq+gym+ Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"1,400,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +381,Beautiful 5 Bedroom Top Floor Apartment +great View + 2 Rooms Bq+3 Cars Vip Parking Etc @$1.350m,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"1,350,000",1,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +382,Luxury 2 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +383,Prince Ademola Osinuga Offers! One Of The Most Notable Oceanview 5 Bedroom Penthouse Apartment @$2m, Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +384,Decently Finished 5 Bedroom Semi Detached Duplex In Ikoyi, Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +385,Reasonably Priced 4 Bedroom Apartment +bq+gym+pool Etc In Old Ikoyi @n165m,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +386,Brand New Excellent Spacious Super Luxury 3 Bedroom Block Of Flats,Banana Island Road Ikoyi Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +387,Brand New 4 Bedroom Terrace With A Room Bq;,Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +388,4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +389,Tastefully Finished 4 Bedroom Serviced Apartment,Alexander Road Gerard Road Ikoyi Lagos,₦,"270,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +390,Very Well Built & New 4 Bedroom Apartment + Bq + Pool+gym,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +391,Premium & Newly Built 4 Bedroom Semi Detached House,Ikoyi Ikoyi Lagos,₦,"242,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +392,Direct Cash Ready Buyers Only New 5 Bedroom Maisonette On 2 Floors + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +393,Newly Built Waterfront 5 Bedroom Detached House + 2 Rooms Bq,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +394,Massive Luxury Block Of 6flats On A Land Measuring 1600sqm,Banana Island Ikoyi Lagos,$,"7,000,000",0,0,0, beds, baths, Toilets,Banana Island +395,Luxury 3 Bedroom Apartment + Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +396,5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +397,Luxury 4 Bedroom Terrace House + Bq,Banana Island Ikoyi Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +398,Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +399,Brand New 3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +400,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +401,Executive Massive 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +402,Serviced 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +403,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +404,Brand New 4 Bedroom Flat;,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +405,Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +406,A Luxury 5 Bedroom Fully Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +407,New & Well Built 6 Bedroom Detached House + 2bq+ Elevator + Etc In A Mini Estate Within Banana Island Estate @n700m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +408,Newly Built 5 Bedroom Semi Detached Duplex With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +409,"Waterfront Plot For Sale (1,157 Square Meters)",Banana Island Ikoyi Lagos,₦,"1,041,300,000",1,0,0, beds, baths, Toilets,Banana Island +410,4 Bedroom Luxury Masionette + Bq,Osborne Estate 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +411,Fully Furnished 3 Bedroom Flat + 1 Room.bq,Club Road Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +412,4 Bedroom Semi Detached Duplex,"Ikoyi, Lagos Nigeria Ikoyi S.w Ikoyi Lagos",₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +413,Cash Ready Buyers Newly Built 5 Bedroom Detached House In A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +414,4 Bedroom Fully Detached House + Bq + Rooftop,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +415,Newly Built 4 Bedroom Detached House + Bq+pool+gym,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Onikoyi +416,Luxuriously Finished 5 Bedroom Semi Detached House With Bq,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,7 Toilets,Old Ikoyi +417,Premium 4 Bedroom Terrace House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +418,Newly Built Well Sized 4 Bedroom Semi Detached Terrace House + Bq+ Pool+ Gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"640,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +419,Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"115,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +420,Premium & Bargain Newly Built 3 Bedroom Apartment + Bq + Elevator, Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +421,Newly Built 4 Bedroom Detached House + Pool + Gym,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +422,Massively Built 5 Bedroom Fully Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +423,Tastefully Finished 5 Bed Fully Detached Duplex In Ikoyi,Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets,Other Ikoyi +424,Luxury 4 Bedroom Apartment + Bq+pool+ Gym @n205m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"205,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +425,Direct Cash Ready Buyers Only Newly Built 4 Bedroom Penthouse Apartment + Elevator Etc,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"470,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +426,Amazing New 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000/sqm",1,0,1,5 beds,5 baths,6 Toilets,Banana Island +427,Serious Cash Ready Buyers 5 Bedroom Semi Detached House + Bq+pool,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +428,Renovated 4 Bedroom Terrace House With A Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +429,A Demolishable Storey Building On 500 Square Metres,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,6 Toilets,Other Ikoyi +430,Newly Built Premium Unfurnished 4 Bedroom Penthouse Apartment On A Whole Floor,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +431,Newly Built Spacious 5 Bedroom Maisonette House With 2 Rooms Bq And Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +432,Highly Functional & Reasonably Priced Waterfront Investment! 4 Bedroom Semi Detached Terrace House +2bq+tennis+pool,Banana Island Estate Banana Island Ikoyi Lagos,$,"700,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +433,4 Bedroom Town House With 2 Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +434,Spacious 3 Bedroom Terrace With A Bq;,Osborne Phase 1 Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +435,Magnificent & Newly Built 5 Bedroom Waterview 5th Floor Apartment On A Whole Floor + Bq+pool+gym @$1.5m,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,5 baths,6 Toilets,Onikoyi +436,2100 Sq.metres Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +437,Newly Built 4 Bedroom Detached House + Bq,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +438,Direct Cash Ready Buyers Newly Built 4 Bedroom Semi Detached House + Bq+ Pool,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +439,A Classic View Waterfront 3 Bedroom Block Of Flats With Swimming Pool And Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +440,Luxury And Fully Serviced Three (3) Bedroom Apartment With Bq,Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +441,Newly Built All Ensuite 3 Bedroom Apartment +bq+elevator+pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +442,Luxury 3 Bedroom Apartment + Bq + Tennis,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +443,"Waterfront Land Measuring 1,800sqm With Dilapidated Building","Ademola Street, Off Awolowo Road, Ikoyi S.w Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +444,Amazing 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +445,Luxurious Two Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +446,New 4 Nos 3 Bedroom Terrace Houses + Bq+ Swimming Pool + Gym +etc In Banana Island Estate @n2.4b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Banana Island +447,Freshly Upgraded Multiple Units Of 3 Bedroom Apartments,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +448,Tastefully Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +449,Exiting 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +450,Newly Built 3 Bedroom Flat With A Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +451,Direct Cash Ready Clients Only Well Priced Family Friendly 3 Bedroom Apartment + Tennis+ Squash+ Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +452,4 Bedroom Semi Detached Terrace House + Bq,Banana Island Ikoyi Lagos,₦,"475,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +453,Beautiful 3 Bedroom Luxury Apartment With Bq,In A Serene Premium Neighborhood Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +454,"1,984.8sqm Of Land","Osborne Foreshore Estate, Ikoyi Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +455,Luxurious 4 Bedroom,Banana Island Ikoyi Lagos,₦,"430,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +456,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +457,Newly Built 5 Bedroom Fully Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +458,Newly Built 4 Bedroom Semi Detached House + Bq,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +459,Brand New 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +460,Newly Built 3 Bedroom Apartment + Bq + Pool + Elevator,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +461,Newly Built 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +462,5 Bedroom Apartment;,Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +463,Direct Cash Ready Clients Only Well Sized Newly Built 5 Bedroom Semi Detached House @n580m,Ikoyi Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +464,Beautifully Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +465,Newly Built 4 Bedroom Terrace House+bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +466,Class Leading Newly Built & Large Size 4 Bedroom Apartment + Bq + Pool + Gym,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0, beds, baths, Toilets,Old Ikoyi +467,Newly Built 4 Bedroom Terraced Duplex With Ample Parking Space,Banana Island Ikoyi Lagos,₦,"20,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +468,Direct Cash Ready Buyers Newly Built 5 Bedroom Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +469,Direct Cash Ready Buyers Only! Luxury Waterfront 3 Bedroom Apartment + Squash + Gym+pool Etc @n150m,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +470,Newly Built Fully Detached 5 Bedroom House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +471,"Strategically Located Mixed Use Land 5,286sqmts",Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +472,The Most Reasonably Priced Detached Waterfront Property + Jetty + Swimming Pool Etc In Banana Island Estate Yet @n1.2b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +473,Recently Upgraded 4 Bedroom Terrace House + Bq + Private Garage Etc In Banana Island Estate @n450m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +474,Super Affordable 4 Bedroom Apartment + Bq+pool+gym @n210m,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +475,Luxury 4 Bedroom Apartment +bq+ Gym+pool @n210m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +476,Newly Built 5 Bedroom Maisonette On 2 Floors + Bq @n550m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +477,Waterfront Luxury 3 Bedroom Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"320,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +478,Fresh & Newly Built 5 Bedroom Maisonette House On 2 Floors + Bq+pool+gym+etc,Banana Island Estate Banana Island Ikoyi Lagos,₦,"505,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +479,Serviced 4 Bedroom Apartment With Excellent Facilities,Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +480,Newly Built 3 Bedroom Flat With A Bq;,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +481,Luxury Waterfront 4 Bedroom Apartment + Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +482,Super Affordable Fully Detached 5 Bedroom House +2rooms Bq,Parkview Estate Ikoyi Lagos,₦,"370,000,000",1,0,0,5 beds,5 baths,6 Toilets,Parkview +483,Newly Built Lavishly Luxury 3 Bedroom Apartment With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +484,Spacious 3 Bedroom Apartment,"Gbenga Ashafa Street, Unit 1b Parkview Estate Ikoyi Lagos",₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +485,Newly Built 4 Bedroom Penthouse Apartment +bq,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Onikoyi +486,Tastefully Spacious Luxury 5 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +487,Land (880 Square Metres),Shoreline Estate Banana Island Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +488,The Most Reasonably Priced Waterfront Detached House In Banana Island Estate @n1.220b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +489,Executive Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +490,Direct Cash Ready Buyers Only Newly Built 5 Bedroom Detached House + Bq @n430m,Ikoyi Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +491,Exquisitely Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,$,"1,200,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +492,"Brand New 2 Bedroom Flat Located Off Alexander Road, Ikoyi.",Off Alexander Road Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +493,5 Bedroom (all Ensuite) Fully Detached House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +494,Prince Ademola Osinuga Deal! Newly Built 6 Bedroom Semi Detached House In Central Ikoyi @n330m Non Negotiable!,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,6 beds,6 baths,7 Toilets,Old Ikoyi +495,Newly Built 5 Bedroom Semi Detached House,... Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +496,Brand New Units Of 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +497,"Sophisticated 24 Units Of 3 Bedroom Flat With Bq,",Banana Island Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +498,"Brand New 3 Bedroom Flat With A Bq Located Off Alexander Road, Ikoyi.",Off Alexander Road Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +499,Well Built High End 4 Bedroom Apartment +bq In In A Mini Estate,Ikoyi Central Old Ikoyi Ikoyi Lagos,$,"1,400,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +500,New 5 Bedroom Semi Detached House +bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +501,"Land Measuring 2,295sqm @ 590k/sqm","Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,360,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +502,Excellent Prime Plot Of Land Measuring 498sqm,Banana Island Ikoyi Lagos State Ikoyi Lagos,₦,"625,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +503,Fully Furnished 3 Bedroom Terraced House,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +504,Direct Ready Buyers Newly Built Waterfront Detached House + 2bq @n600m,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +505,5 Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +506,1566 Sq.metres Land,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"625,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +507,Premium 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +508,Luxury 5 Bedroom Semi Detached House + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +509,Massively Built Super Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +510,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +511,Top Notched Finishing Super Luxury 5 Bedroom Semi Detached Duplex Sitting On 400sqm Room Bq With Swimming Pool,Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +512,Massively Built Furnished 5 Bedroom Terrace Duplex With Swimming Pool And Bq For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +513,Beautiful 6 Bedroom Fully Detached,Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +514,Brand New 4 Bedroom Flat,Parkview Estate Ikoyi Lagos,$,"500,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +515,Luxury 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +516,Newly Built 3 Bedroom Apartment + Bq + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +517,Fully Furnished 3 Bedroom Apartment With Amazing Facilities,Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +518,Luxury 2 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +519,Prince Ademola Osinuga Mega Deal! Ultra Luxury 4 Bedroom Apartment In Central Ikoyi @n190m!!,Old Ikoyi Ikoyi Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +520,Very Cheap! Fresh Newly Built 5 Bedroom Maisonette On 2 Floors +bq+pool+gym Etc In Banana Island Estate @n500m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +521,Newly Built 5 Bedroom Detached House + Bq,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +522,Massively Built Super Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +523,Waterfront 3 Bedroom Apartment +bq+tennis+ Garden,Banana Island Estate Banana Island Ikoyi Lagos,$,"1,200,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +524,Fully Furnished 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +525,5 Bedroom Semi Detached House + Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"400,000,000",1,0,0,5 beds,5 baths,6 Toilets,Banana Island +526,Serious Cash Ready Clients Only Newly Built Detached House Within A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +527,Luxury 4 Bedroom Riverside Apartment,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +528,Luxury 2 Bedroom Apartment With Amazing Facilities,Ikoyi Lagos,₦,"270,000,000/year",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +529,Amazing Top Floor 4 Bedroom Apartment+bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,500,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +530,Ultra Luxury Ocean View 6 Bed Fully Automated Detached Mansion,Banana Island Ikoyi Lagos,$,"5,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +531,Direct Buyers Only Fresh & Newly Built 5 Bedroom Detached House + Private Elevator Etc In Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +532,One Of The Most Practical Waterfront 4 Bedroom Semi Detached Houses,Banana Island Estate Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +533,Newly Built Premium 4 Bedroom Semi Detached Terrace House + Bq+ Gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +534,"Land Measuring 1,240sqm","Lugard Road, Old Ikoyi Ikoyi Lagos",₦,"700,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +535,Brand New Luxury 6 Bedroom Townhouse With Bq,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +536,Brand New 4 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"15,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +537,Prince Ademola Osinuga Award Wining 5 Bedroom Penthouse Apartment On 3 Floors,Off Onikoyi Road Ikoyi Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +538,Spacious 3 Bedroom Flat With A Bq,Osborne Phase 1 Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +539,Opulent 5 Bedroom Fully Detached Duplex In Premium Location,In A Serene Estate Neighborhood Ikoyi Lagos,₦,"650,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +540,Topmost Floor 4 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,500,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +541,Direct Cash Ready Clients New 5 Bedroom Semi Detached Terrace House + Elevator,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +542,Luxury 3 Bedroom Apartment With Excellent Facilities,Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +543,New 4 Bedroom Semi Detached Terrace House @n310m,Onikoyi Road Old Ikoyi Ikoyi Lagos,₦,"310,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +544,Direct Cash Ready Clients Only Newly Built 4 Bedroom Maisonette,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +545,Newly Built 3 Bedroom Apartment + Bq + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +546,5 Bedroom Semi Detached House On 3 Floors + Bq + Swimming Pool Etc,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +547,Affordable & New 3 Bedroom Apartment (just 1 Unit Left) + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +548,Newly Built 3 Bedroom Apartment + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +549,Direct Cash Ready Clients Newly Built 5 Bedroom Detached House In A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +550,English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"520,000,000",0,1,0,6 beds, baths, Toilets,Other Ikoyi +551,"Land Measuring 2,700m²","Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,755,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +552,Direct Cash Ready Buyers Only Massive Investment Deal With 54 Apartments,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"12,300,000,000",1,0,0,10 beds,10 baths,10 Toilets,Old Ikoyi +553,Newly Built 4 Bedroom Semi Detached Terrace House,Off Onikoyi Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +554,Well Priced Newly Built 4 Bedroom Penthouse Apartment + Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +555,Gorgeous 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Prestigious Neighborhood Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +556,Spaciously Built Super Executive Water Front 6 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Ikoyi Banana Island Ikoyi Lagos,₦,"1,700,000,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +557,Exquisite Luxury 6 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +558,Fresh / Newly Built 5 Bedroom Semi Detached House In A Mini Estate Within Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"580,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +559,Newly Built 3 Bedroom Waterfront Apartment + Bq + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"225,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +560,Newly Built 6 Bedroom Semi Detached Terrace House +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +561,4 Bedroom Terrace House + Bq + Swimming Pool,Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +562,Luxury 3 Bedroom Apartment + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +563,Top Notched Finishing Brand New 6 Bedroom Fully Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +564,Newly Built Waterview 3 Bedroom Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +565,Luxury 3 Bedroom Ground Floor Apartment + Bq+ Pool + Squash + Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +566,Prince Ademola Osinuga Offers New Fully Detached House + Private Pool + Cinema Room + Gym + 2 Rooms Bq Etc In Banana Island Estate @n1.7m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +567,Well Built Fully Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +568,Newly Built 6 Bedroom Fully Detached House +2bq+elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +569,Direct Cash Ready Clients Only Newly Built Luxury 5 Bedroom Detached House + Pool + Elevator Etc In Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +570,Outstanding Top Floor 5 Bedroom On Multiple Floors + Pool+gym+etc @$2m,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets,Onikoyi +571,New Fully Detached 5 Bedrooms House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +572,"Newly Built, Contemporary Design, Luxurious, 6 Bedroom (en Suite) Mansion",Off Alexandra Road Ikoyi Lagos,₦,"1,400,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +573,Beautiful 5 Bedroom Fully Detached With Private Cinema;,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +574,Newly Built Fully Detached 5 Bedroom House +bq+ Cinema+ Swimming Pool+elevator,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +575,5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +576,Brand New Super Luxury 3 Bedroom Apartment With Swimming Pool And Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +577,4bedroom Duplex With Bq,Dolphin Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +578,Newly Built 4 Units Of 4 Bedroom Terrace House,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +579,Solid 5bedroom Duplex With 2rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +580,A Luxury 6bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikoyi Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +581,4 Bedroom Duplex + Bq,Banana Island Ikoyi Lagos,₦,"255,500,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +582,Exquisitely Finished 5 Bedroom Detached Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +583,Land,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"895,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +584,Twin Highrise,Old Ikoyi Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +585,3 Bedroom Apartment+bq,Banana Island Banana Island Ikoyi Lagos,₦,"187,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +586,Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +587,3 Bedroom Terrace House,Glover Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +588,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +589,Vacant 2000m2 Land In A Serviced Estate,"Parkview Estate, Ikoyi, Lagos Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Parkview +590,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +591,Newly Built 4 Bedroom Villas,Second Avenue Axis Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +592,Fully Serviced 2 Bedrooms Luxury Apartment,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +593,New 5 Bedroom Semi Detached Duplex 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,8 baths,8 Toilets,Banana Island +594,"Newly Built 5 Bedroom Fully Detached Smart House + Elevator, Pool, Gym, Cctv Cameras","Off Thompson Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"950,000,000",0,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +595,Luxury 3 Bedroom,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +596,Well Built And Serviced 4 Bedrooms Terrace Duplex With Pool,"First Avenue, Banana Island Ikoyi Lagos",₦,"450,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +597,Newly Built 4 Bedroom Penthouse Apartments,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",1,1,1,4 beds,4 baths,5 Toilets,Onikoyi +598,Serviced 3 Bedroom Flat & 1 Room Bq With Access To Swimming Pool & Gym Facilities,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +599,"Brand New, 90% Finished 5 Bedroom Detached House House",Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +600,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +601,Newly Built 3 Bedroom Apartment,Off Bourdillon Old Ikoyi Ikoyi Lagos,$,"1,300,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +602,Newly Built 5 Bedrooms Detached House With Pool,Off Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +603,Newly Built 4 Bedrooms Terrace Duplex With Pool,First Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +604,806sqm Bareland,Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,4 baths,4 Toilets,Foreshore +605,Luxury Vintage Mansion Of 9 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,9 beds,9 baths,10 Toilets,Banana Island +606,Newly Built 5 Bedrooms Detached House,2nd Avenue Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +607,Newly Built 3 Bedroom Flat,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +608,Fantastic 2br Flat,Near Ikoyi Club Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +609,Plots Of Land,3rd Avenue Facing Waterfront Banana Island Ikoyi Lagos,$,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +610,Land In Shoreline Estate Ikoyi Lagos State Nigeria,Shoreline Estate Off Turnbull Road Ikoyi Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +611,2 Bedroom Waterfront Apartment,Bayview Estate Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +612,3 Bedroom Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +613,Massive 4bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +614,3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +615,Newly 5 Bedrooms Waterfront Detached House With Pool In Ikoyi Lagos,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +616,3 Bedroom Luxury Apartment,Banana Island Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +617,Newly Built Luxury 3 Bedroom Flats +bq,Bourdillon Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +618,Newly Built 3 Bedroom Apartments,Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +619,Designed 3 Bedroom Terraced Duplex,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,5 baths,5 Toilets,Other Ikoyi +620,5bedroom Detached Duplex,Onikoyi Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +621,Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +622,3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +623,4 Bedroom Massionette,Probyn Bourdillon Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +624,3 Bedroom Apartment + Bq,Banana Island Ikoyi Lagos,₦,"219,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +625,Land,Meckwen Road Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +626,Newly Built 4 Bedroom Maisonette Apartments,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +627,4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +628,Land Measuring 11700 Square Meters On Gerard Road Ikoyi Lagos,Gerard Road Ikoyi Lagos,₦,"5,700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +629,1 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",0,0,0,1 beds,0 baths,0 Toilets,Old Ikoyi +630,2 Plots Of Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +631,5 Bedrooms Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,5 beds,0 baths,6 Toilets,Banana Island +632,Newly Built 5 Bedroom Detached House,Cameron Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +633,4 Bedroom Semi Detached Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +634,26 Units Luxurious 3 Bedroom Apartment,Ikoyi Lagos,₦,"4,500,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +635,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +636,Decently Spaced 5 Bedrooms Fully Detached Mansion,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +637,Land,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +638,Contemporary Massive 5 Bedroom Fully Detached Duplex,Very Serene And Secure Environment Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +639,4 Bedrooms Townhouse,Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +640,Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,5 baths,5 Toilets,Banana Island +641,5 Bedroom Detached House,Glover Road Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +642,"Brand New And Smart 6 Bedrooms Detached House With Pool In Aquapoint Estate, Ikoyi Lagos",Aqua Point Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,6 beds,5 baths,6 Toilets,Banana Island +643,8 Bedroom Fully Detached Mansion In An Estate,"Osborne Foreshore Estate Phase 1, Ikoyi, Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"750,000,000",0,1,0,8 beds,8 baths,9 Toilets,Foreshore +644,Newly Built 4 Bedroom Penthouse Apartment,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,0,1,4 beds,5 baths,4 Toilets,Banana Island +645,Cameron Place: 4 Bedroom Maisonettes Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +646,Luxury Furnished 6 Bedroom Mansion With 2 Room Bq And Swimming Pool,Gated Estate Banana Island Ikoyi Lagos,$,"500,000,000",0,1,1,6 beds,8 baths,8 Toilets,Banana Island +647,Newly Built 6 Bedrooms Detached House On 900 Square Meters Land,"Off Queen Drive, Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +648,Cheap Land Of 2500sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +649,"Fully Automated 5 Bedrooms Detached Duplex With 2 Bqs, Private Elevator",Ikoyi S.w Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +650,Waterfront 2 Units Of 5 Bedroom Fully Detached Houses + 2 Rooms Bq Each,"Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +651,Kings Court (5 Detached Units),Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +652,5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Shoreline Estate Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +653,Newly Built 4 Bedroom Detached House + Bq In An Estate,"Ikoyi, Lagos. Ikoyi Lagos",₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +654,Serviced 12 Units Of 3 Bedrooms Apartments With Pool,Tony Aromosele. Street Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Parkview +655,Newly Built Luxury 4 Bedrooms Terrace Duplex With Pool,2nd Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +656,Executive Mansion,Osborne Foreshore 1 Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +657,Newly Built 4 Bedroom Apartments,1st Avenue Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +658,871sqm Commercial Building,Falomo Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +659,5 Bedroom Fully Detached With Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +660,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +661,Newly Built 3 Bedroom Flat,Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +662,Newly Built 4 Units Of 4bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +663,Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +664,Newly Built 4 Bedroom Terrace,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +665,Brand New 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +666,Fully Furnished And Exquisite 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",1,0,1,2 beds,2 baths,3 Toilets,Banana Island +667,"5 Bedroom Terrace Duplex With Bq, Swimming Pool, And Gym",E Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +668,Land,"On Mekunwen Road, Off Bourdillion & Queens Road Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +669,3 Bedrooms All Ensuit With A Rooftop Sport Bar,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +670,Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +671,Land On Bourdillon Road Ikoyi,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +672,Solid 4 Bedroom Fully Detached Duplex ( Suitable For Commercial & Residential Purpose),"Off Awolowo Road, South West Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +673,Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +674,Luxury 3 Bedroom,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +675,5bedroom Detached Duplex,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +676,A 1339sqm Commercially Viable Land,Alfred Rilwane Road Gerard Road Ikoyi Lagos,₦,"600,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +677,Luxury 5bedroom Detached Duplex With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +678,3 Bedroom Maisonette,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +679,Newly Built & Fully Furnished & Serviced Luxurious 4 Units Of 5 Bedroomterraces + Bqs In An Estate,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"800,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +680,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +681,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +682,3 Bedroom Luxury Flat,. Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +683,Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +684,Land,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +685,11 Units Of 3 Bedroom Apartment,Ikoyi Lagos,₦,"2,500,000,000",1,1,0,10 beds,10 baths,9 Toilets,Other Ikoyi +686,New Block Of 26 Units Of Exquisite Spacious 3bedroom Flat,Off Turnbull Toad Ikoyi Lagos Ikoyi Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +687,Office Building,Ribadu Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",1,1,0,10 beds,0 baths,10 Toilets,Other Ikoyi +688,Luxury And Magnificent 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +689,Finished 5 Bedroom Fully Detached Duplex,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +690,Land Measuring 1000 Square Meters In Abacha Estate Ikoyi Lagos,Abacha Estate Ikoyi Abacha Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +691,4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,0 Toilets,Banana Island +692,Newly Built 4 Bedrooms Penthouse With Pool,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +693,2 Units Of Newly Luxuriously Built 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +694,Fully Serviced 3 Bedroom Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +695,Superbly Finished Automated 5 Bed Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +696,Newly Built 4 Bedroom Villas,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +697,Luxurious 3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +698,900 Sqm Land,Osborne Phase 2 Ikoyi Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +699,Newly Built Luxury 5 Bedrooms Furnished Terrace Duplex With Pool In Banana Island Estate Ikoyi Lagos,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +700,Newly Built (3) Blocks Of 24 Flats Of 3 Bedrooms & 3 Units Penthouses (27units In Total). Each Units With Elevator. And Industrial Borehole,Off Bourdillon Way Bourdillon Ikoyi Lagos,₦,"7,000,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +701,New Executive 4 Bedroom Terrace Duplex With 2rooms Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,4 beds,6 baths,6 Toilets,Banana Island +702,Newly Built 4 Bedrooms Maisonette With Pool,Luggard Avenue Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +703,Commercial Building On 439sqm With Land Certificate In A Good Location,Off Awolowo Way Ikoyi Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,0,1, beds, baths, Toilets,Other Ikoyi +704,4 Bedroom Luxury Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +705,Luxury 5 Bedrooms Automated Maisonette,Ikoyi S.w Ikoyi Lagos,$,"1,500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +706,Strategically Located Residential Bareland Of 1687sqm Waterfront In Onikoyi Mojisola Estate Ikoyi / Can Be Sold In Half,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Onikoyi +707,A 5bedroom Terrace Duplex + 2sitting Rooms & Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +708,Newly Built 5 Bedrooms Detached Hosue,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +709,Massive 3bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +710,4 Bedroom Serviced Terrace House With 2 Rooms Boy’s Quarters,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,7 baths,7 Toilets,Banana Island +711,Land,Luggard Avenue Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +712,5 Bedroom Fully Detached House,Off Lawrence Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +713,High Rise 4br Flat With Bq,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +714,Land,Alexandra Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +715,6bedroom Detached Apartment,Banana Island Ikoyi Lagos,₦,"1,600,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +716,"Landed Property On Meckwen Road, Ikoyi, Lagos","Mecknwen Road, Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"570,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +717,Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +718,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +719,A Standard 4bedroom Semi Detached,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +720,Exquisite Building With Luxury Apartments,Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +721,"2,000m2 Residential Land","Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +722,Land,Meckwen Road Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +723,Land,Ikoya Avenue Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +724,Three Bedroom Flat,2nd Avenue Extension Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +725,Land,Kalabari Close Off Queen Drive Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +726,3 Bedroom Terraced Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +727,Block Of Flats (27 Flats),Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +728,Land Measuring 2500 Square Meters In Osborne Estate Ikoyi Lagos,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Foreshore +729,Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +730,Luxury And Spacious 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,1 beds,1 baths,4 Toilets,Banana Island +731,Massive Furnished 5bedroom Duplex,It's Located At Banana Island Estate Banana Island Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +732,Newly Built 5 Bedroom,Second Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +733,5 Bedroom Semi Detached Duplex ( Self Compound),"Alexander Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +734,Ground Floor 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +735,Luxury 4bedroom Terrace Duplex All Ensuit + A Room Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +736,Fantastic 2 Bedroom Spacious Apartment, Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +737,5 Bedroom Fully Detached,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000/sqm",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +738,5 Bedroom Terraced Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +739,4 Bedroom Super Luxury Flat With 2 Bq,Glover Old Ikoyi Ikoyi Lagos,$,"875,000",1,0,0,4 beds,5 baths,6 Toilets,Old Ikoyi +740,Serviced Fully Furnished 3 Bedroom With Bq,Onikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +741,5bedroom Fully Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +742,Newly Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,4 beds,5 baths,4 Toilets,Banana Island +743,Land,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +744,Waterfront Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Onikoyi +745,Mansion,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +746,"3 Bedroom Fully Furnished With Swimming Pool, Gym And World Class Fittings",Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,1,3 beds,3 baths,4 Toilets,Banana Island +747,5 Bedroom Fully Detached House +;3 Rooms Bq,"Off Gerrard Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +748,Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +749,Newly Built 5 Bedroom House,Second Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +750,Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +751,2 Bedroom Luxury Flats,. Ikoyi S.w Ikoyi Lagos,₦,"85,000,000",1,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +752,A Family House With 9 Bedrooms All Rooms Ensuit,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,10 Toilets,Banana Island +753,"6 Bedrooms Detached Waterfront House With Pool In Banana Island ,ikoyi Lagos","2n Avenue Banana Island Estate Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"1,700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +754,750m2 Prime Land,Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +755,Land Measuring 3000sqmtrs,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"435,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +756,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +757,5 Bedroom Massionatte With 2 Rooms Bq,Bourdillon Ikoyi Lagos,₦,"1,000,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +758,Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +759,"2 Bedroom Waterfront Apartment With Gym, Swimming Pool And Elevator Forsale",Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds, baths, Toilets,Other Ikoyi +760,24 Units Of 3bedroom Flat,Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +761,Land,Parkview Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +762,Land,Parkview Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +763,4 Bedroom Maisonette,Awolowo Awolowo Road Ikoyi Lagos,$,"90,090,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +764,Newly Built 4bedroom Semi Detached Duplex,Banana Island Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +765,Newly Built 3 Bedroom Flat,"Olori Mojisola, Along Banana Island Ikoyi Lagos",₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +766,Luxury Waterview 4 Bedroom Terrace House,Patrick Habour Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +767,A Standard 5bedroom Terrace Duplex With Swimming Pool,Banana Island Ikoyi Lagos,₦,"800,000,000/year",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +768,Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +769,Spacious 5 Bedroom Semi Detached Home With A Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +770,Luxury 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +771,4 Bedroom Terrace Duplex,Estate Ikoyi S.w Ikoyi Lagos,₦,"420,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +772,3 Bedroom Apartment With Bq,Oniru Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +773,Fantastic Contemporary Terrace Building,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +774,Luxury Five Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +775,"Magnificently Spaced 5 Bedroom Fully Detached Mansion With Swimming Pool, Elevator, Cinema",Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +776,Massive 6 Bedroom Fully Detached Duplex,Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,1,6 beds,6 baths,7 Toilets,Other Ikoyi +777,5 Bedroom Fully Detached Duplex With 2 Bq,Kings Court Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +778,"Fully Automated 6 Bedrooms Furnished Mansion With A Cinema, Elevator, Pool , Gym",Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +779,Well Spaced 4bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +780,A New Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +781,4 Bedroom Terrace Houses With Bq,Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +782,Hotel,Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +783,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +784,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +785,Cedarwood Luxury Duplexes,Ikoyi Lagos,₦,"197,500,000",1,1,1,4 beds, baths, Toilets,Other Ikoyi +786,Beautiful Mordern 3 Bedroom Penthouse With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +787,Superbly Finished Automated 5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +788,A Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Penthouse,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +789,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +790,Luxurious 5 Bedroom Apartment,Estate Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +791,Top Notch Quality 2 Bedroom Flat With Bq And Gym,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,2 Toilets,Old Ikoyi +792,Waterfront 3 Blocks Of 21units Of 4bedroom Penthouse And 3bedroom Flats,Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +793,Land,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +794,4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +795,3 Bedroom Flat With Bq,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds, baths, Toilets,Other Ikoyi +796,Land,"Mekunwen Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +797,Land,Bourdillon Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +798,4 Units Of 2 Bedrooms Apartments,Ikoyi Lagos,₦,"185,000,000",1,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +799,Newly Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +800,Land,"Lawrence Road, By Wheatbaker Hotel, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +801,Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +802,Lands,Old Ikoyi Ikoyi Lagos,₦,"1,440,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +803,3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"380,000,000",1,0,0,3 beds, baths, Toilets,Banana Island +804,Land,Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +805,Luxury 5bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +806,5bedroom Semi Detached House,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000/year",0,0,0,5 beds,5 baths,5 Toilets,Onikoyi +807,"An Exclusive And Elegant Block Of Apartments,",Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Parkview +808,4 Bedroom Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +809,Fenced 300sqm Plot Of Land,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +810,Brand New 5bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +811,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +812,Land,Gerard Road Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +813,Exotic 3 Bedroom Flat With Bq,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +814,4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,0 baths,0 Toilets,Banana Island +815,7 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Ikoyi +816,Land,Off Keffi Road Baidu Street Ikoyi S.w Ikoyi Lagos,₦,"120,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +817,1040 Sqm Land,"Keffi Street, South West Ikoyi Lagos. Ikoyi S.w Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +818,Newly Built 6 Bedroom Fully Detached Mansion With 2bq,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,8 beds,8 baths,9 Toilets,Banana Island +819,4 Bedroom Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +820,Brand New 6 Bedroom Terrence Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +821,4 Units Of 5 Bedroom Fully Detached Duplex,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +822,3bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +823,4 Bedroom Terrace Duplex,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +824,Ikoyi Banana Island,Ikoyi S.w Ikoyi Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +825,Newly Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,1,5 beds,5 baths,6 Toilets,Banana Island +826,Full Building,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +827,3 Bedroom Furnished Luxury Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets,Foreshore +828,3 Bedroom Flat,Bourdillon Ikoyi Lagos,₦,"125,000,000",1,0,0,3 beds,2 baths,3 Toilets,Other Ikoyi +829,Waterview 5 Bedrooms Flat,"Shoreline Drive Estate, Ikoyi. Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,4 baths,5 Toilets,Other Ikoyi +830,5 Bedroom Terraced Duplex,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +831,5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +832,6 Bedroom Detach Duplex,Banana Island Ikoyi Lagos,$,"1,800,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +833,A Brand New Fully Finished 4 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +834,"Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema,bq",Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +835,Newly Built Block Of Detached And Semi Detached Duplex In An Exotic Mini Estate,Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +836,Newly Built 5 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +837,500sqm Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +838,Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +839,Spacious And Well Designed Fully Serviced 3bedroom Apartments,Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +840,"1500 Sqm Well Shaped,gated & Fenced Plot Of Land",Banana Island Ikoyi Lagos,₦,"125,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +841,Land,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +842,"3,200sqm Land",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +843,Superb 5bedroom Luxuriously Finished House With 2 Bq And A Swimming Pool On Two Floors In Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Banana Island +844,Land,Glover+dtch Bldg Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +845,Land,Shaw Rd Old Ikoyi Ikoyi Lagos,₦,"830,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +846,3 Bedroom Luxury Flats,Off Kingsway Road Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +847,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +848,Land,Exclusive Location Parkview Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +849,Land,Glover Old Ikoyi Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +850,Land,Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +851,Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq All Rooms Ensuite In A Clean & Secured Environment At Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,6 baths,5 Toilets,Banana Island +852,Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"1,075,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +853,Land,Turnbul Street Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +854,"13,711.7sqm Of Residential Land",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +855,"Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi Gated Estate Location: Ikoyi, Lagos:",Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Ikoyi +856,Brand New 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +857,Waterfront 5 Bedrooms Detached Duplex With Swinming Pool,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +858,"4,700sqm Land",Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +859,Luxury 4 Bedroom,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +860,Land,Alfred Rewane/osborne Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +861,Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +862,Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"830,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +863,3bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +864,"Land Size: 6,400 Sqm",Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +865,Newly Built 3 Bedroom Flat,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +866,Flamboyant 3 Bedrooms Apartments With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +867,3 Bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +868,4bedroom Terrace Duplex With Bq At Kingsway Road Ikoyi Lagos,Kingsway Ikoyi Lagos Ikoyi Lagos,₦,"250,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +869,Ocean View 6 Bedrooms Fully Detached Duplex,"Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,1,1,6 beds,6 baths,7 Toilets,Old Ikoyi +870,4 Bedroom Flat,Ocean Parade Banana Island Ikoyi Lagos,$,"2,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +871,Luxurious Finish 5 Bedroom Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +872,5bedroom Semi Detached Duplex,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Onikoyi +873,Luxury 5bedroom Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +874,"Fantastic 5bedrooms Detached Duplex With 2rooms Bq , Study Room, Bar And Sauna",Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +875,3 Bedroom Partly Furnished Serviced Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,0,1,3 beds,3 baths,4 Toilets,Foreshore +876,800 Sqm Of Land Located In A Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Foreshore +877,Land,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +878,Land,Turnbull Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +879,4812+ Square Meters Of Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +880,4 Bedroom Terrace Duplex,"4 Kingsway Close, Off Alfred Rewane Road, Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +881,Land,Awolowo Road Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +882,Land (880 Square Metres),Shoreline Estate Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +883,Land,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +884,A Bare Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,748,500,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +885,3 Bedroom Flat Maisonnate With Bq,Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,3 beds,0 baths,0 Toilets,Onikoyi +886,Lovely 4 Bedroom Terrace House With Bq,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +887,Luxury 3 Bedrooms Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +888,Luxurious 5 Bedroom Smart Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +889,Lovely Serviced 3 Bedroom Flat With Bq And Gen,Bourdillon Ikoyi Lagos,₦,"150,000,000",1,0,1,0 beds,0 baths,0 Toilets,Other Ikoyi +890,Newly Built 5 Bedroom Detached House,3rd Ave Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +891,11 Units Of 5 Bedroom Classic Contemporary Stand Alone Units,Mixed Use Area Banana Island Ikoyi Lagos,₦,"980,000,000",0,1,0,5 beds,5 baths,1 Toilets,Banana Island +892,A Block Of 24 Units Luxury Flats,Banana Island Ikoyi Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Banana Island +893,Offplan Sale Of Luxury Apartments In Ikoyi,Ikoyi Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +894,Block Of Luxury Apartments,Turnbull Road Gerard Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +895,"This Castle Has Got 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space, 7 Bathrooms, 2 Rooms Maids Quarters",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +896,Newly Built Luxury 4 Bedroom Smart House,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +897,Luxury 4bedroom Maisonette,Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +898,Fantastic 5 Bedroom Fully Detached Duplex House Jnf,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +899,Offplan Sale Of 24 Units 3 Bedroom Luxury Apartments,Femi Okunnu Road (formerly Cooper Road) Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +900,Fairly New 3 Bedroom With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +901,3bedroom Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +902,7 Bedroom Detached,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Ikoyi +903,A 4 Bedroom All En Suite Serviced Apartment,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +904,2 Bedroom Flat,Dolphin Estate Ikoyi Lagos,₦,"22,000,000",0,0,1,2 beds,2 baths,3 Toilets,Other Ikoyi +905,"1,700sqm Land",Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +906,Brand New 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +907,Fully Service Ensuite 3bedroom Luxury Apartments +bq,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +908,Land,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +909,"Spacious 11 Units Of 3 Bedrooms Apartments With Swimming Pool, Gym, Elevator &bq",Ikoyi Lagos Ikoyi Lagos,₦,"2,200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +910,4 Bedroom Serviced Apartment,Banana Island Road Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +911,Land,Mekuwen Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +912,4400m² Land,Glover Rd Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +913,Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +914,Finished 3 Bedroom Apartments,Ikoyi Lagos,₦,"220,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +915,Fully Serviced 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +916,Land,Ikoyi Lagos,₦,750,0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +917,Newly Built 4 Bedroom Apartment/ Duplexes Within An Exquisite And World Class Residential Property On 20 Floors.,Bourdillon Ikoyi Lagos,$,"1,500,000",1,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +918,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +919,1312 Sqm Land With A Structure Of 8units Of 3 Bedroom Flat,Awolowo Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +920,Land,Kalabari Old Ikoyi Ikoyi Lagos,₦,"670,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +921,Land,Bourdillon Rd Old Ikoyi Ikoyi Lagos,₦,"4,035,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +922,"5,000sqm 10,000sqm Waterfront Vacant Land",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +923,"Elegantly Finished 3 Bedroom Apartment With Gym, Communal Pool And A Room Bq",Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +924,Luxury 3bedroom Serviced Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +925,"18,000²m Land",Kingsway Rd Old Ikoyi Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +926,Newly Built 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +927,4 Bedroom Masionete,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +928,Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +929,6300m² Land,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +930,4 Bedroom All Ensuite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +931,Newly Built Waterfront 5 Bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +932,Land,Directly On Bourdillon Road Bourdillon Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +933,"3,700sqm Corner Piece Land",Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +934,A 3 Bedroom Flat Apartment,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +935,"5 Bedrooms Detached Duplex With Pool, Cinema, Gym, Rooftop Terrace And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +936,A Lovely 3bedroom Terrace,Orange Mews Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,1,3 beds,0 baths,0 Toilets,Foreshore +937,4313 Sqm Of Land,Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +938,"Luxuriously Finished 4 Bedroom Terrace Duplex With Bq, Swimming Pool And Gym Jnf",Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,6 Toilets,Old Ikoyi +939,Executive 3bedroom Serviced Apartment,Osborn Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +940,"4,400sqm Land",Old Ikoyi Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +941,3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +942,4300sqm Land,Alexander Ave Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +943,Fantastic 3 Bedroom Flat,Off Banana Link Road Ikoyi Lagos,₦,"175,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Ikoyi +944,Luxury 4 Bedroom Semi Detached Duplex Plus Bq,"Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"500,000,000",1,1,1,4 beds,5 baths,5 Toilets,Banana Island +945,Luxury 5 Bedrooms Detached House + 1 Room Bq,Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +946,Newly Built 5bedroom Maisonette Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,1,5 beds,6 baths,5 Toilets,Banana Island +947,"4,880sqm Land",Kingsway Rd Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +948,6 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +949,Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +950,Exquisitely 4 Bedroom Super Luxury Apartment,Banana Island Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +951,Beautifully Finished 5 Bedroom Detached House With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +952,Modern 3 Bedroom Terraced House,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +953,4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"520,000,000",1,0,1,0 beds,0 baths,0 Toilets,Banana Island +954,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +955,Brand New 5 Bedroom Detached House,2bd Ave Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Banana Island +956,Luxuriously Finished 3 Bedroom Apartment With A Bq,"Along Banana Island Road, Onikoyi, Ikoyi Lagos",₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +957,3bedroom Apartment With A Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,4 baths,4 Toilets,Onikoyi +958,Newly Built 4 Bedroom Terraces,"Osborne Foreshore Estate Phase 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Foreshore +959,Exotic Smart & Fully Automated 5 Bedrooms Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +960,Jv At Club Road Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +961,Exquisitely Newly Built Luxury 3bed Maisionette In A Well Secures Gated Estate,Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +962,Water Front Mansion,Banana Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,10 beds,8 baths,9 Toilets,Banana Island +963,Amazing 5 Bedrooms Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +964,Luxury 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +965,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,000,000,000",1,0,1,0 beds,0 baths,0 Toilets,Banana Island +966,4bedroom Water Front Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +967,4bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds, baths, Toilets,Parkview +968,4 Bedroom Semi Duplex With 2 Rooms Bq,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +969,Oniru Beach Front Land,Oniru Beach Lagos Old Ikoyi Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +970,Fully Serviced Tastefully Finished 2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Ikoyi +971,Furnished 2 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +972,Newly Built 5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +973,Brand New Fully Serviced 3 Bedroom Flat,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",0,1,1,3 beds,3 baths,4 Toilets,Foreshore +974,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +975,Tastefully Finished 4 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,1,0 beds,0 baths,0 Toilets,Old Ikoyi +976,Land,Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +977,Luxurious 5 Bedroom Smart Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +978,Land,Milverton Old Ikoyi Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +979,"26,000sqm Land",Ikoyi Crescnt Old Ikoyi Ikoyi Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +980,"18,000m² Of Land",Afred Rewane Road Old Ikoyi Ikoyi Lagos,$,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +981,Land,Lawrence Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +982,"19,200²m Land",Off Oba Elegushi Old Ikoyi Ikoyi Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +983,Land,Bourdillon Rd Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +984,5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +985,2 Bedroom Apartment,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +986,"5 Bedrooms Detached Duplex With Pool, Cinema, Gym, Rooftop Terrace And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +987,Land,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +988,4bedrooms Terrace+bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +989,"5,400m² Land",Glover Rd Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +990,Land,Lawrence Old Ikoyi Ikoyi Lagos,₦,"1,012,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +991,Land,Mekuwen Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +992,Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,8 Toilets,Other Ikoyi +993,Fantastic 4 Bedroom Town House With Bq,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +994,Newly Built Ultra Modern 2 Bedrooms Apartment,Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +995,"Fashionable 5 Bedrooms Detached Duplex With Swinming Pool, Gym, And Elevator",Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +996,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Ikoyi +997,Fantastic 5 Bedroom Detached House With Bq,Shoreline Estate Ikoyi Lagos,₦,"400,000,000",1,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +998,Fantastic 6 Bedroom Detached House With Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,0 baths,0 Toilets,Foreshore +999,Exquisitely Serviced 3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds, baths, Toilets,Other Ikoyi +1000,Lovely 4 Bedroom Terrace,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +1001,"Luxurious 5bedroom Fully Detached Duplex, At Banana Island, Lagos",Banana Island Ikoyi Lagos,₦,"1,600,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Banana Island +1002,4 Bedroom Flat,"Banana Island Road, Ikoyi Banana Island Ikoyi Lagos",₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +1003,Luxury Finished En Suite 5 Bedroom Detached House With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1004,1000sqm Of Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1005,Land,Turnbull Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1006,Land,Alexander Avenue Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1007,"Waterfront Plot (1,157 Square Meters)",Banana Island Ikoyi Lagos,₦,"1,041,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1008,4 Bedroom Semi Detached Duplex,Off Banana Island Road Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +1009,Newly Built 5 Bedroom Detached House,2nd Ave Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Banana Island +1010,A Well Maintained 3 Bedroom Flat With A Room Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1011,A Well Built 4 Bedroom Townhouse + 2 Unit Of 2 Bedroom,"2nd Avenue Off Osborne Road Ikoyi, Lagos 2nd Avenue Extension Ikoyi Lagos",₦,"750,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Ikoyi +1012,Water Front Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +1013,3bedrooms Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1014,3bedroom Ensuite Apartments,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,0 Toilets,Onikoyi +1015,5 Bedrooms Maisonnetts With 2 Rooms Boy's Quarter,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1016,5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1017,Well Built 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,0 baths,0 Toilets,Old Ikoyi +1018,26 Firmly Built Luxurious 3 Bedroom Apartments.,Ikoyi Lagos,₦,"4,500,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1019,Serviced Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1020,Waterfront Land,Alexander Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1021,Luxury 2 Bedroom Apartment,Ikoyi Lagos,₦,"165,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1022,Brand New 1unit Of 5bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1023,8 Units Of 3 Bedroom Flat,Old Ikoyi Awolowo Road Ikoyi Lagos,₦,"1,000,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +1024,4 Bedroom Duplex With Bq,Dolphin Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1025,Contemporary 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1026,"Luxury 4 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Banana Island Road Ikoyi Lagos,₦,"360,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1027,Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1028,A Shopping Complex,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1029,5 Bedroom Detached Duplex,Onikoyi Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1030,Luxurious Serviced 2 Bedroom Apartment,Ikoyi Lagos,₦,"175,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Ikoyi +1031,Serviced Contemporary 5 Bedroom Apartment,Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1032,Luxury 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"420,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1033,4 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,5 Toilets,Banana Island +1034,Prime Parcel Of Land 1000sqm,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1035,3 Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +1036,Fully Serviced 6 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +1037,5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1038,Luxury Executive 4 Bedrooms Detached Duplex With Bq,Old Ikoyi Lagos Island Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1039,Newly Built Luxury 4 Bedrooms Terraced Duplex With Bq,Ikoyi Lagos Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1040,5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1041,Land,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1042,3 Bedroom Apartment Ikoyi,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1043,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1044,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1045,4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1046,10 Unit Of 3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"2,400,000,000",0,1,0,3 beds,3 baths,3 Toilets,Parkview +1047,6bedroom Detached Duplex,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,000,000,000",0,1,1,6 beds,6 baths,7 Toilets,Onikoyi +1048,Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1049,Newly Renovated Waterfront 5 Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +1050,Luxurious Finished Fully Detached 5 Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +1051,5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,2/sqm,0,0,0,5 beds,6 baths,6 Toilets,Banana Island +1052,Executive Newly Built 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +1053,Land,Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1054,Land,Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1055,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1056,Beautifully Finished 4 Bedroom Semi Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1057,Well Finished 4 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1058,2 Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1059,Newly Built 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"20,000,000",1,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +1060,5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +1061,4 Bedroom Duplex,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Ikoyi +1062,20000 Sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Parkview +1063,1112sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1064,Opulent Quality 5 Bedroom Fully Detached Duplex,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1065,9000sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1066,1006sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1067,4 Bedroom Fully Detached Duplex With A Bq,Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1068,4 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1069,Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bqs,Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1070,Beautifully Built 5 Bedroom Detached Duplex With Bq,"Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"777,000,000/year",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +1071,Newly Built 5 Bedroom En Suite Detached House On 3 Floors,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1072,"Newly Built, Units Of 4 Bedroom En Suite Detached And Semi Detached Houses On 2 Floors Within A Serviced Premises",Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1073,Luxury Water View Apartments,Banana Island Road Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1074,4500sqm Land Forsale,Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1075,2800sqm Land Forsale,Banana Island Ikoyi Lagos,₦,"1,290,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1076,24 Units Of 3 Bedroom Flats*,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1077,3004sqm Land*,Alexander Road Ikoyi Lagos,₦,"670,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1078,3000sqm Land*,Adeyemi Lawson Off Bourdillon Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1079,"*12,000sqm* Waterfront Land In A Residential Axis Of Banana Island",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1080,"5,400sqm* Waterfront Land In A Residential Axis Of Banana Island",Banana Island Ikoyi Lagos,₦,"1,300,000,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1081,1700sqm Land Waterfront Mojisola N1.5billion,Waterfront Mojisola Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1082,1700sqm Waterfront Land Mojisola Onikoyi N1.5billion,Mojisola Onikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1083,2100sqm And 2700sqm Lands,Mekwen Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +1084,2100sqm Land,2nd Avenue Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1085,900sqm Land,Shoreline Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1086,1000sqm Non Waterfront Land,Residential Side Of Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1087,Spacious 3 Bedroom Flat + Bq & Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets,Parkview +1088,Luxury Serviced 3 Bedroom Furnished Apartment +1 Room Bq On The 2nd Floor,Queens Drive Falomo Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Ikoyi +1089,5 Bedroom Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1090,Executive Well Furnished 5 Bedroom Terrace With Swimming Pool And Gym Inside A Secured Estate,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1091,Executive 4 Bedroom Terraced House,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +1092,3/4 Bedroom Ultra Luxury Apartment With 2 Bq.,Old Ikoyi Ikoyi Lagos,₦,"1,850,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1093,4bedroom Semi Detached Duplex With A Beautiful View,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1094,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1095,3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1096,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1097,4 Bedroom Flat In Banana Island, Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,1,4 beds,5 baths,5 Toilets,Banana Island +1098,3 Bedroom Apartment,Ikoyi Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1099,5 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,0 beds,5 baths,6 Toilets,Parkview +1100,Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"700,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +1101,4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1102,4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1103,A Newly Built & Tastefully Finished Luxury 4bedroom Semi Detached Duplex On 300sqm Land For Sale!!!,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,4 Toilets,Onikoyi +1104,Waterfront Plot Measuring 4800sqms,Waterfront Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +1105,1134sqms Land,Zone J Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1106,New 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +1107,Serviced Massive 5 Bedroom Fully Detached House With 2bq,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,7 Toilets,Banana Island +1108,Ocean View Executive Massive 6 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,6 beds,6 baths,8 Toilets,Banana Island +1109,2 Bedroom Apartment,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1110,Smart Contemporary 4 &5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1111,Newly Build 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +1112,Executive Newly Built 5 Bedroom Duplex With Amazing Facilities,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1113,4 Bedroom Massionette Plus Bq,Elizabeth Grace Court Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,1,4 beds,5 baths,5 Toilets,Parkview +1114,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"115,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1115,Exquisite 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1116,Luxurious 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1117,Spacious 6bedroom Detached Duplex With Swimming Pool And 2 Bq, Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,8 Toilets,Other Ikoyi +1118,Well Furnished Executive Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1119,6 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +1120,Brand New 3bedroom Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +1121,"Water View Brand New Luxury 5bedroom Fully Detached With Swimming Pool, Cinema",Ikoyi Lagos,₦,"580,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Ikoyi +1122,Executive New 4 Bedroom For Sale,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1123,"12,100 Sqm Waterfront Land", Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1124,Executive 7 Bedroom Fully Detached Duplex.,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,7 beds,7 baths,8 Toilets,Banana Island +1125,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1126,Newly Built 4 Bedroom Flat,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1127,Amazing 4 Bedroom Flat With Good Facilities,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1128,Luxurious 4 Bedroom Flat,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1129,4 Bedroom Terrace With Pool & Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +1130,Luxury 4 Bedroom Duplex With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1131,"2,100 Square Meters Land",Z Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1132,"Water View Brand New Luxury 5bedroom Fully Detached With Swimming Pool, Cinema",Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1133,6 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +1134,Executive New 6 Bedroom With Good Facilities,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +1135,Amazing New 6 Bedroom,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +1136,Executive Massive 4units Of 4bedroom Maisonette, Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1137,New Executive 3 Bedroom Flat With Sea View & Swimming Pool, Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1138,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1139,Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1140,Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1141,Well Finished 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1142,Newly Built 5 Bedroom Terrace For Sale With Amazing Facilities,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1143,Newly Built 5 Bedroom Terrace With Executive Facilities Comes With Swimming Pool And Gym Excellent View,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1144,Executive Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1145,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq On 1700sqm Landsize For Sale!!!,Ikoyi Lagos,₦,"2,000,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1146,3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1147,"4,723sqm Waterfront Bareland",Zone L9 Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1148,"26,000sqm Ikoyi Crescent",Ikoyi Crescent Banana Island Ikoyi Lagos,₦,"11,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1149,Waterfront 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1150,2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1151,3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1152,Newly Built Six Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,$,"1,450,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +1153,Amazing 4 Bedroom Terraced Duplex House,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +1154,Fully Furnished Luxury 5bedroom Terrace With Two Staff Quarters Available, Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1155,2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1156,"6100sqm Of Land At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +1157,Brand New Luxury & Exquisitely Finished 5bedroom Fully Detached Duplex + A Room Bq On 450sqm Landsize,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,1,6 beds,6 baths,6 Toilets,Banana Island +1158,4 Numbers 5 Bedroom Fully Serviced Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1159,Lovely 4 Bedroom Terrace Duplex With A Bq In Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Foreshore +1160,Luxury 4bedroom Terrace Duplex + (3sitting Rooms & A Room Bq ) For Sale!!!,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,4 Toilets,Other Ikoyi +1161,"5 Bedroom Detached Duplex With Swimming Pool, Cinema,elevator And Gym",Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1162,A Luxury 6bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikoyi Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1163,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1164,6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1165,"Waterfront 3,607 Square Meters (with Structure)",Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Foreshore +1166,Vacant 54 Highrise Luxury Apartments(house) For Sale!!!,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +1167,5 Bedroom Detached Duplex With An Elevator And A Pool,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +1168,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1169,Amazing 3 Bedroom Flat With Executive Facilities,Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,1,3 beds,3 baths,4 Toilets,Banana Island +1170,Executive 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,1,3 beds,3 baths,4 Toilets,Banana Island +1171,Luxury 4 Bedroom Fully Detached House With A Bq,Gerard Road Ikoyi Lagos,₦,"340,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1172,4bedroom Penthouse Is Literally The Top Floor Experience.,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1173,Fully 6bedroom Detached Duplex With 2bq And Swimming Pool Available For Sale .,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1174,New Amazing 5 Bedroom Terrace With Good Facilities Inside Banana Island Come's With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1175,Furnished 5 Bedroom Terrace Duplex For Sale Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1176,3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1177,4bedroom Penthouses With Top Class Facilities For Your Living Comfort Or Investment.,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1178,4units Of 3 Bedroom Terrace Apartment Sited In A Well Secured Estate At Ikoyi Lagos.,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1179,Beautifully Built 4 Bedroom Semi Detached Duplex Situated In Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1180,Luxury 3 Bedroom Apartments Within A Serviced Estate With Top Notch Facilities,Old Ikoyi Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1181,Newly Built 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1182,Newly Built 5 Bedroom Fully Detached Duplex With Excellent Facilities Comes With A Rooftop,Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +1183,Newly Built 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1184,"Luxurious Units Of 4 And 5 Bedroom Smart Maisonette With Swimming Pool,elevator And Gym",Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1185,Executive Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1186,Fully Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1187,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1188,Brand New 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1189,5 Bedroom Fully Detached Duplex With A Bq(waterfront),Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +1190,Newly Built Fully Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +1191,Luxurious Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1192,"Block Of Flats On A Land Size Measuring 5,299.745 Sqm",Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1193,4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1194,Luxury 4 Bedroom Maisonette And 4bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,6 Toilets,Old Ikoyi +1195,5 Bedroom Fully Detached Duplexes At Ikoyi Lagos,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1196,Luxurious Unit Of 3bedroom Apartment And 4 Bedroom Maisonette,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1197,Luxurious 4 Bedroom Terrace Duplex With Bq For Sale,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1198,"Furnished , Well Built 6 Bedroom Fully Detached Duplex With 2 Rooms Bq",Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1199,A Newly Built & Tastefully Finished Luxury 6bedroom Fully Detached (mansion) On 600sqm Landsize For Sale!!!, Ikoyi Lagos,₦,"1,400,000,000",0,1,1,6 beds,6 baths,6 Toilets,Other Ikoyi +1200,5 Bedroom Semi Detached Terrace Duplex With Bq,Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1201,Luxurious 5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1202,Luxury 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +1203,4 Bedroom Penthouse Apartment,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1204,Amazing 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1205,Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1206,"2,700 Square Meters Land",Mekunwen Road Banana Island Ikoyi Lagos,₦,"1,755,000,000",0,0,0, beds, baths, Toilets,Banana Island +1207,"2,3 And 4 Bedroom Terrace Apartment Sited In A Well Secured Estate At Ikoyi Lagos.",Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1208,Beautifully Built 5 Bedrooms Fully Detached House In A Mini Estate, Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1209,4 Bedroom Maisonette,Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1210,"Luxurious, Stylish And Uber Contemporary 3 And 4 Bedroom Apartments, Maisonettes And Penthouses",2 Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +1211,Brand New Units Of 3 Bedroom Penthouse With Bqs At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1212,Prime Lands In Banana Island,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Banana Island +1213,4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1214,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1215,4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1216,Amazing 5 Bedroom Terrace With Two B.q, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,1,5 beds,5 baths,6 Toilets,Banana Island +1217,Land In Ikoyi,On Turnbull Road Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1218,5 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1219,3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1220,Available Are The Penthouse And 3/4 Bedroom Apartments, Ikoyi Lagos,$,"1,400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1221,"Luxury Units Of 2, 3 & 4 Bedroom Apartments Within A Serviced Estate With Top Notch Facilities",Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1222,Brand New Units Of 3 Bedroom Flats With Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1223,New Furnished 5 Bedroom Duplex For Sale In Banana Island Comes With Swimming Pool & Gym,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1224,Executive Luxury 4 Bedroom For Sale,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1225,Newly 4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1226,Solid Five (5) Bedroom Fully Detached Duplex,Mosley Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +1227,Newly 6 Bedroom For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +1228,Amazing Facilities 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1229,Amazing Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +1230,Fully Automated 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1231,Newly Built Semi Detached Duplex With Rooftop And Elevator,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1232,Newly Built 5 Bed Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1233,Newly Built Executive 5 Bedroom Fully Detached,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1234,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1235,Luxurious 5 Bedrooms Fully Detached House In An Estate, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +1236,Brand New Exquisitely Fully Detached Duplex With Bq And Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1237,11 Classic Contemporary Stand Alone Units With 5 Bedrooms,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Banana Island +1238,6 Bedroom Detached Duplex With Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Parkview +1239,5 Bedroom Massionette With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +1240,Decently Finished 3 Bedroom Apartment With Bq,Gerard Road Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Ikoyi +1241,Fully Serviced 3 Bedroom Apartment With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Onikoyi +1242,"6 Bedroom Fully Detached Duplex With Swimming Pool, Gym And Cinema",Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1243,3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +1244,3 Bedroom Apartment With Bq And 4 Bedroom Maisonett With Bq,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1245,Well Built 3 Bedroom Flat Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,4 baths,4 Toilets,Old Ikoyi +1246,Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1247,Brand New 3 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +1248,4 Bedroom Apartment Units With 3 Bq.,Old Ikoyi Ikoyi Lagos,$,"1,600,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1249,Tastefully Finished 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1250,Waterfront Land Measuring 4100 Sqm, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1251,Beautifully Built 4 Bedroom Fully Detached Duplex Situated In Ikoyi,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1252,Contemporary Massive 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets,Old Ikoyi +1253,"Waterview Plot Measuring 1,135sqms N1.1million Per Sqm",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds,4 baths, Toilets,Banana Island +1254,4 Bedroom Terrace That Comes With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1255,1 Unit Of 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1256,Newly Executive Furnished 3 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,3 beds,3 baths,4 Toilets,Banana Island +1257,6 Bedroom Fully Detached Duplex Sitting On 500sqm,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1258,5 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1259,4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1260,2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,2 beds,2 baths,2 Toilets,Banana Island +1261,Newly Built 5 Bedroom Fully Detached,Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1262,Newly Built Waterfront 5bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1263,4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1264,Luxury Residential Development Of 3 Bedroom Apartments (off Plan),Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets,Foreshore +1265,4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1266,20 Units Of Fully Serviced 3 Bedroom Flats,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +1267,Luxurious 4 Bedroom For Sale Come's With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +1268,New 6 Bedroom With Amazing Facilities For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,1,6 beds,6 baths,6 Toilets,Banana Island +1269,Exquisite 5bedrooms Detached House In Banana Island Ikoyi,Off 2nd Avenue Banana Island Foreshore Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,1,5 beds,5 baths,7 Toilets,Banana Island +1270,Classic Finished 2 Units Of 5 Bedrooms Fully Detached House In Banana Island,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,1,5 beds,5 baths,7 Toilets,Banana Island +1271,Luxury 3 Bedroom Apartment,Z Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1272,3 Bedroom Maisonette With Open Roof Terrace And Bq,Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1273,2 Units Of Luxury 5 Bedroom Fully Detached Duplexes + 2room Bq Each On 512sqm Landsize For Sale!!!!,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1274,Executive 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1275,Waterfront Six Bedroom House With Jetty.,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +1276,Newly Luxurious 3 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,1,3 beds,3 baths,4 Toilets,Banana Island +1277,Well Standard 3 Bedroom Apartment,Dolphin Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikoyi +1278,An Impeccably Designed 5 Bedroom Semi Detached Duplex With A Beautiful View,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1279,5bedroom Semi Detached With + 2 Bqs,Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Foreshore +1280,Luxurious 3 Bedroom Apartments,Z Bourdillon Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1281,Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Banana Island +1282,Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1283,Exquisite 4 Bedroom Duplexes With 2 Sitting Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +1284,Newly Built 5 Units Of 5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,$,"1,300,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +1285,Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1286,Tastefully Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1287,Luxury High Rise 4 Bedrooms Apartment With 2 Bq (on The 19th Floor)*,Bourdillon Ikoyi Lagos,$,"3,200,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1288,4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +1289,A Standard 5bedroom Detached,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Parkview +1290,4bedroom Fully Detached Duplex With A Bq,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +1291,7 Bedroom Waterfront Fully Furnished Palatial Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +1292,Waterfront Brand New 4 Bedroom Penthouse,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1293,Brand New 4 Bedroom Marionette House,Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1294,4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1295,2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"420,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +1296,4 Bedroom Maisonette Waterfront Apartments,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1297,"2, 4 Bedroom Marionette Waterfront Apartments",Ikoyi Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1298,3 & 4 Bedroom Waterfront Apartments,Ikoyi Lagos,₦,"15,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1299,Land,Zone H 37 Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1300,Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1301,Land,Parkview Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +1302,Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1303,8 Units Of 3 Bedroom Flats,Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +1304,Land,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +1305,Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1306,Beautiful 4 Bedroom Semi Detached Duplex With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1307,Fully Automated 4 Bedroom Maisonette With A Self Contained Bq;,Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1308,5 Bedroom Detached House,Ikoyi Lagos,₦,"650,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1309,Lovely Prime Plot Of Land Measuring 1090sq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,308,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1310,Beautiful 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1311,Newly Built 4 Bedroom Penthouse Maisonette With A Bq;,Ikoyi Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1312,"Land Measuring 1,000sqm",Zone P77 Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +1313,"Waterfront Land Measuring Approximately 3,700m²","Zone L , Off 4th Avenue In A Close, Banana Island Ikoyi Lagos",₦,"4,070,000,000",0,0,0, beds, baths, Toilets,Banana Island +1314,"Fully Serviced, 5 Bedroom Fully Detached House With Open Roof Terrace",Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1315,Newly Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1316,Beautiful 4 Bedroom Terrace Duplex With A Bq;,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1317,"Brand New Fully Serviced 2, 3 Bedrooms & A 4 Bedroom Penthouse",Ikoyi Lagos,₦,"120,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1318,Luxury 3 Bedroom Apartment With Bq In Premium Location,In A Serene Neighborhood Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1319,"Land Measuring 4,812sqm","Zone L, Plot 9, Banana Island Ikoyi Lagos",₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1320,Fully Serviced 12 Units Of 3bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +1321,Newly Built 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1322,Beautiful 3 Bedroom Flat With Bq;,Ikoyi Lagos,₦,"125,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1323,Ongoing 3 Bedroom Flat With A Bq;,Osborne 2 Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1324,Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Off Banana Island Road Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1325,"Waterfront Bareland Measuring 1,939m²","Zone Q, Banana Island Ikoyi Lagos",₦,"2,132,900,000",0,0,0, beds, baths, Toilets,Banana Island +1326,Beautifully Built 4 Bedroom Luxury Flat With 2 Rooms Bq;,Ikoyi Lagos,₦,"480,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1327,Newly Built 4 Bedroom Terrace Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +1328,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1329,Nicely Built 4 Bedroom Contemporary Penthouse;,Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1330,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1331,Newly Built 5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1332,5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,$,"1,500,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +1333,Newly Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1334,Exquisitely Finished 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1335,Waterfront 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1336,Newly Built 3 Bedroom Flat With 1 Room Bq,Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1337,Luxury 4 Bedroom Mansionette With Gym + Pool + Elevator,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1338,Spacious And Investment Friendly 3 Bedroom Flat With Bq;,Gerard Road Ikoyi Lagos,₦,"135,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1339,Newly Built 6 Bedroom Fully Detached Duplex;,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1340,Beautifully Built 3 Bedroom Flat With A Bq;,Off Oba Adeyinka Road Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1341,"Renewable Property On 2,000m² Land","2nd Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1342,Newly Built 4 Bedroom Penthouse Flat;,Ikoyi Lagos,₦,"395,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1343,50% Completed 5 Bedroom Semi Detached Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +1344,Luxury Built And Spacious 5 Bedroom Fully Detached Duplex With A 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1345,Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1346,Spacious 4 Bedroom Semi Detached Duplex With A Bq;,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1347,Luxury 4 Bedroom Semi Detached Duplex With Elevator In A Beautiful Estate,Banana Island Ikoyi Lagos,₦,"580,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1348,Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1349,Newly Built 4 Bedroom Terrace Duplex With A Bq,Osborne 2 Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1350,Luxury 3 Bedroom Apartment In Premium Location,Waterfront Apartments Banana Island Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,3 baths,3 Toilets,Banana Island +1351,Spacious 4 Bedroom Terrace Duplex With A Bq;,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1352,Beautiful 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1353,Land,"Mosafejo Close, Old Ikoyi Ikoyi Lagos",₦,"2,503,200,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1354,Super Spacious 5 Bedroom Luxury Maisonette,In A Prestigious Neighborhood Ikoyi Lagos,$,"1,200,000",1,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +1355,Spacious 4 Bedroom Maisonette With Bq,E Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1356,Brand New Exquisitely Finished 4 Bedroom Maisonette,Ikoyi Ikoyi Lagos,₦,"390,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1357,15 Units Of State Of The Art 4 Bedroom Flat (490m/unit),"Ikoyi Forshore Along Banana Island Road, Ikoyi Lagos",₦,"480,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1358,Spacious And Luxurious 4 Bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1359,Brand New 4 Bedroom Maisonette:,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1360,Beautiful 5 Bedroom Luxury Maisonette With Swimming Pool,In A Serene Neighborhood Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1361,Luxury 4 Bedroom Apartment In Premium Location,In A Serene Neighborhood Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +1362,Beautiful 3 Bedroom Flat With A Bq;,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +1363,Beautiful 3 Bedroom Apartment With Bq,In A Serene Neighborhood Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1364,Lovely 3 Bedroom Apartment + 1 Maid Room,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1365,Beautiful 5 Bedroom Fully Detached Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1366,Contemporary 5 Bedroom Semi Detached Duplex With Ocean View,Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1367,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1368,Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq;,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1369,Luxury 3 Bedroom Apartment In Prime Location,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1370,Tatsefully Finished And Furnished 3 Bedrooms Flat,Mosley Road Ikoyi Lagos,₦,"250,000,000",1,0,1,3 beds,3 baths,4 Toilets,Other Ikoyi +1371,Luxuriously Finished 5 Bedroom Semi Detached House With Bq;,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1372,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1373,Newly Built 5 Bedroom Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1374,Exquisitely Finished 5 Bedroom Ultra Luxurious Penthouse On 2 Floors With Private Cinema For Sale,Old Ikoyi Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1375,Beautiful 4 Bedroom Penthouse Flat With A Bq;,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1376,Beautiful 5 Bedroom Detached Duplex With 2 Rooms Bq;,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1377,Newly Built 3 Bedroom Flat;,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1378,Spacious 5 Bedroom Fully Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +1379,Brand New Exquisitely Finished 5 Bedroom Mediterranean Styled House,Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1380,Brand New 3 Bedroom Flat With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1381,Spacious 3 Bedroom Flat With A Bq;,Gérard Road Ikoyi Lagos,₦,"220,000,000/year",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1382,Brand New 5 Bedroom Fully Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1383,Newly Built 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1384,Beautiful 5 Bedroom Fully Detached House With A Bq,Banana Island Ikoyi Lagos,$,"2,500,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1385,Brand New 6 Bedroom Terrace Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1386,Brand New 5 Bedroom Fully Detached Duplex;,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1387,Tastefully Built 5 Bedroom Fully Detached Duplex;,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1388,Luxury 5 Bedroom Detached Duplex With Elevator In A Beautiful Estate,Banana Island Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1389,Spacious 4 Bedroom Semi Detached Duplex With A Room Bq;,Banana Island Road Ikoyi Lagos,₦,"360,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1390,Exquisitely Finished 4 Bed Semi Detached Duplex With Swimming Pool And Gym,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1391,Massively Super Luxury 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Ikoyi Bourdillon Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,4 baths,6 Toilets,Other Ikoyi +1392,Units Of 4 Bedroom Maisonette;,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1393,Executive Super Luxury Spacious 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikoyi Bourdillon Ikoyi Lagos,₦,"720,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1394,"Standard 5 Bed Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1395,Brand New 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1396,Luxury 3 Bedroom Apartment With Excellent Finishing,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +1397,Newly Built 2 Bedroom Flat;,Ikoyi Lagos,₦,"115,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1398,5 Bedroom Semi Detached Duplex With 1 Room Bq And 1 Studio Bq;,Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1399,"Land Measuring 1,800m²","Zone R, Banana Island Ikoyi Lagos",₦,"1,530,000,000",0,0,0, beds, baths, Toilets,Banana Island +1400,Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1401,Brand New 6 Bedroom Semi Detached With A Bq;,Banana Island Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1402,Fully Automated 5 Bedroom Maisonette With A Self Contained Bq;,Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1403,"Land Measuring 1,000m²","Zone J44, Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +1404,Spacious 4 Bedroom Penthouse Flat With 2 Rooms Bq;,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1405,Tastefully Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1406,5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"560,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1407,Nicely Built 4 Bedroom Terrace Duplex With A Bq,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1408,Amazing And Spacious 4 Bedroom Penthouse Flat,D Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1409,Brand New 5 Bedroom Fully Detached With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1410,Waterfront Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1411,Newly Built 4 Bedroom Penthouse Maisonette With 1 Room Bq;,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1412,Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq;,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1413,"Land Measuring 2,500m²","Osborne Phase 2, Ikoyi Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1414,Brand New 2 Bedroom Apartment:,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +1415,"Waterfront Bareland Measuring 4,600m²","Zone J15, Banana Island Ikoyi Lagos",$,"11,000,000",0,0,0, beds, baths, Toilets,Banana Island +1416,Beautifully Built 6 Bedroom Fully Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1417,"Land Measuring 28,000m²","Directly On Bourdillon Road, Bourdillon Ikoyi Lagos",₦,"16,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1418,Nicely Built 4 Bedroom Terrace House;,Ikoyi Lagos,₦,"255,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1419,Beautifully Designed 5 Bcdroom Semi Detached House With 2 Room Underground. (finishing Materials On Ground),"Mcpherson Street, Ikoyi Lagos",₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1420,Luxurious 5 Bedroom Semi Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1421,"3 Bedroom Apartment, 4 Bedroom Apartment & 2 Penthouses;",Ikoyi Lagos,₦,"650,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1422,"Exquisitely Finished, Brand New 4 Bedroom Penthouse (video Available On Request)",Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1423,5 Bedroom Fully Detached House With 2 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +1424,Ultra Luxury 4 Bedroom Maisonette In A Strategic Location,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1425,3 Bedroom Fully Serviced Flat (carcass),"River Side Apartments Along Banana Island Road, Ikoyi Lagos",₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +1426,Lovely Studio Apartment:,Old Ikoyi Ikoyi Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,2 Toilets,Old Ikoyi +1427,Units Of 3 Bedroom Fully Automated Apartments;,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1428,Beautiful 5 Bedroom Detached With 2 Rooms Bq,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1429,Beautiful 5 Bedroom Detached House With 2 Rooms Bq;,Off Kingsway Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1430,Newly Built 3 Bedroom Flats Apartment;,Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1431,Beautiful 5 Bedroom Detached House With 2 Rooms Bq;,Off Kingsway Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1432,Brand New 5 Bedroom Fully Detached Duplex With 1 Room Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1433,Serviced 4 Bedroom Terrace Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1434,Newly Built 5 Bedroom Fully Serviced Maisonette Plus Maid's Room;,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1435,Lovely Finished And Fully Serviced 4 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,$,"750,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +1436,Tastefully Built 3 Bedroom Penthouse Maisonette With Bq;,Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +1437,Newly Built 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1438,A Tastefully Finished 1 Unit Of Brand New 5 Bedroom Semi Detached Duplex With Elevator,"Olori Mojisola Estate, Off Banana Island Road, Ikoyi Lagos",₦,"520,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1439,Spacious 4 Bedroom Terrace Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1440,"4 Bedroom Terrace With Swimming Pool, Gym, Home Office",Banana Island Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +1441,"Strategic Residential Plot Measuring 2,033sqm","Abacha Estate, 2nd Avenue Extension Ikoyi Lagos",₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1442,Luxury 5 Bedroom Mansionette With Elevator + Swimming Pool In A Beautiful Estate,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1443,Newly Built 5 Bedroom Fully Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"20,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1444,Newly Built 5 Bedroom Terrace With 2 Rooms Bq;,Bank Road Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1445,"Newly Built 24 Flats Of 3 Bedrooms Each And 3 Penthouses On 3,600m²","Off Bourdillon, Ikoyi Lagos",₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1446,Luxury 5 Bedroom Semi Detached House With A Bq;,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1447,Brand New 2 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +1448,Beautiful 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1449,Land Measuring 2876sqm,Kingsway Road Ikoyi Lagos,₦,"2,300,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1450,Spacious And Luxury Built 3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,$,"1,200,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1451,3 Bedroom Serviced Apartment In Premium Location,Bayview Apartments Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +1452,Brand New Contemporary 6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1453,Luxury 3 Bedroom Apartment With 2 Maid Rooms In Prime Location,The Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"370,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1454,Luxury 4 Bedroom Semi Detached Duplex In A Beautiful Location,Banana Island Ikoyi Lagos,₦,"480,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1455,Brand New 5 Bedroom Fully Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1456,Waterfront 4 Bedroom Massionette With A Bq;, Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1457,Spacious 3 Bedroom Flat With Bq,Glover Road Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1458,4 Bedroom Semi Detached Duplex With Swimming Pool,Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1459,Direct Clients Only Newly Built 5 Bed Fully Detached House + Private Elevator + Swimming Pool + Cinema Room Etc In Parkview @n550m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +1460,Tastefully Built 5 Bedroom Fully Serviced Maisonette Plus Maid's Room, Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1461,Nice Prime Plot Of Land Measuring 941sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,035,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1462,4bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1463,5 Bedroom Fully Detached Duplex With 2 Room Bq On 522m²,"Off Queen's Drive, Ikoyi Lagos",₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1464,Newly Built 4 Bedroom Penthouse Flat With A Bq;,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1465,Nicely Built 4 Bedroom Terrace Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1466,Spacious 4 Bedroom Detached With A Room Bq;,Banana Island Road Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1467,Luxury 3 Bedroom Apartment,In A Serene Neighborhood Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1468,"Land Measuring 1,134m² @ 1.2m/sqm","Zone J60, Banana Island Ikoyi Lagos",₦,"1,360,800,000",0,0,0, beds, baths, Toilets,Banana Island +1469,Smart And Spacious 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1470,Brand New 3 Bedroom Apartment;,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1471,Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1472,"Waterfront Land Measuring 2,060m²","Zone J, Located Off 2nd Avenue, Banana Island Ikoyi Lagos",₦,"2,369,000,000",0,0,0, beds, baths, Toilets,Banana Island +1473,"Land Measuring 1,500m²","Zone A19, Banana Island Ikoyi Lagos",₦,"1,950,000,000",0,0,0, beds, baths, Toilets,Banana Island +1474,Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1475,Fully Automated Classic 5 Bedroom Fully Detached Duplex,In A Prestigious Serene Neighborhood Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1476,Brand New 3 Bedroom Flat With A Bq;,Off Alfred Rewane Road Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1477,Waterfront 3 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1478,Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1479,Beautiful 5 Bedroom Detached With 2 Rooms Bq;,Off Banana Island Road Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1480,Spacious 4 Bedroom Terrace Duplex With A Bq;,Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1481,Newly Built 5 Bedroom Maisonette With A Bq;,Banana Island Road Ikoyi Lagos,$,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1482,Brand New 4 Bedroom Penthouse:,Old Ikoyi Ikoyi Lagos,₦,"385,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1483,Premium Plot Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1484,Spacious 2 Bedroom Flat;,South West Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1485,New 4 Bedroom Semi Detached Terrace House + Bq + Swimming Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1486,Brand New 3 Bedroom Maisonette:,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1487,5 Bedroom Semi Detached Duplex,"Shoreline Estate, Ikoyi Lagos",₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1488,Brand New 1 Bedroom Apartment;,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",0,1,0,1 beds,1 baths,2 Toilets,Old Ikoyi +1489,Nicely Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1490,"Strategically Located Parcel Of Land Measuring 6,300sqm","2nd Avenue, Ikoyi Lagos",₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1491,Units Of 4 Bedroom Maisonette Penthouse;,Ikoyi Lagos,₦,"385,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1492,Smart And Luxurious 4 Bedroom Terrace Duplex With 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1493,Nicely Built 4 Bedroom Semi Detached Duplex With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1494,Brand New 3 And 4 Bedroom Maisonette With A Room Bq,"Lugard Avenue, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1495,Brand New 3 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1496,Brand New 4 Bedroom Terrace Duplex With A Private Elevator For Each Unit;,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1497,Spacious Tastefully Finished 4 Bed Terrace Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +1498,3 Bedroom Fully Serviced Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1499,Peak Quality Ocean View 5 Bedroom Semi Detached Duplex In A Prestigous Address,Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +1500,Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1501,"Land Measuring 2,000m²","Milverton Road, Old Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1502,Joint Venture Of 900sqm,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1503,6400sqm Joint Venture,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1504,4 Bedroom Flat With A Room Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1505,5 Bedroom Semi Detached House With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1506,1200 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1507,Lovely 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1508,Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1509,1400sqm For A Joint Venture,Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1510,1800sqm For A Joint Venture,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1511,Filling Station,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1512,3123 Sqm,Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1513,Standard 5bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1514,4bedroom Terrace Duplex With Room Bq,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +1515,Land In Shoreline Estate Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +1516,1939aqm,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0, beds, baths, Toilets,Banana Island +1517,Joint Venture 900 Sqm,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1518,100 Plots Of Land,Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1519,21000 Sqm Land,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1520,4 Bedroom Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +1521,3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"93,000,000",0,0,0,3 beds,3 baths,3 Toilets,Parkview +1522,2523sqm Land,Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1523,800sqm Land,Ikoyi Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1524,A Standard 4bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1525,5300sqm Of Land,Lugard Ikoyi Lagos Ikoyi Lagos,₦,"2,600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1526,Brand New 5 Bedroom Detached House With A Private Cinema,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1527,Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1528,A Standard 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1529,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1530,4800sqm Land,Banana Island Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1531,6000 Sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1532,5200sqm Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1533,A Fantastic 5bedroom Fully Detached,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +1534,Newly Built 6 Bedroom Detached Mansion,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,6 baths,6 Toilets,Old Ikoyi +1535,New Luxury Executive 3bedroom Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikoyi +1536,Executive Luxury 2 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"168,000,000",0,1,1,2 beds,3 baths,3 Toilets,Other Ikoyi +1537,Luxurious 4 Bedroom Terrace With A Room Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1538,Brand New 4bedroom Luxury & Palatial Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1539,Massive Luxury 5 Bedroom Detached House,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1540,Luxury 24 Unit Of 3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"6,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1541,3 Units Of 4 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,1,3 beds,3 baths,4 Toilets,Onikoyi +1542,Newly Built 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1543,Land Measuring 1393 Sqm With 57 Meters Frontage With Cofo,Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1544,4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,1,4 beds,6 baths,6 Toilets,Banana Island +1545,Land,Old Ikoyi Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1546,5000sqm Of Land Corner Piece,Lugard Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1547,Brand New 26 Unit Of 3 Bedroom Flats,Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1548,"26,000sqm Of Land",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1549,Serviced 4 Bedroom Flat With 24hrs Light,S Bourdillon Ikoyi Lagos,₦,"160,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +1550,Luxury 3 Bedroom Flat With Swimming Pool, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1551,"Plot Measuring 1,869sqms Milverton Road, Ikoyi.",Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1552,Brand New 3bedroom Flat With A Bq !,Banana Island Ikoyi Lagos,₦,"198,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1553,City View 3 Bedroom Apartment With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +1554,Luxury 3 Bedroom Maisonette,D Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1555,6900sqms Land, Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1556,Executive 24 Units Of 3bedroom And 8 Units Of 2bedroom Penthouse On 11255sqm Land,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1557,Newly Built 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1558,4 Bedroom Detached Duplex + Bq And Swimming Pool,Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1559,4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1560,5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1561,Brand New 5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1562,Luxury 4 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1563,Well Built 6 Bedroom Fully Detached House With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +1564,Luxury Fully Detached 6 Bedroom And 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +1565,Non Waterfront Land Measuring 688 Sqm With 32 Meters Frontage,Banana Island Banana Island Ikoyi Lagos,₦,"585,000,000",0,0,0, beds, baths, Toilets,Banana Island +1566,A Well Level And Mixeduse Piece Of 600sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +1567,Exquisitely Newly Built 4nos Of 4bedroom Terrace Duplex + Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets,Old Ikoyi +1568,4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +1569,New & Furnished 1 Bedroom Flat In A Lovely Serviced Estate,"Osborne, Ikoyi, Lagos. Ikoyi Lagos",₦,"89,000,000",1,1,1,1 beds,2 baths,2 Toilets,Other Ikoyi +1570,Exquisitely Service 3bedroom Ground Floor And First Floor With S/pool,Mosley Ikoyi Mosley Road Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1571,Newly Built Exquisite 5 Bedroom Fully House In A Serviced Estate,"Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +1572,4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1573,1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +1574,New 5bedroom With Swimming Pool 3siting Room 2bq Elevator And Cinema On 450sqm,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets,Other Ikoyi +1575,Exquisite Ikoyi Waterfront Home,Atlanta Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,600,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1576,3944sqm Of Land,James George Street Ikoyi Lagos Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1577,24 Units Luxury Flats,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"7,000,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1578,7 Bedroom Fully Detached House + 2 Rooms Bq On 580sqm,"Off Awolowo Road, Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1579,Luxury 4bedrooms Terrace House With 2bq,Close 107 Banana Island Ikoyi Lagos,₦,"430,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1580,Elite 5 Bedroom Detached Duplex With 2 Rooms Bq And Pool, Ikoyi S.w Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1581,5400sqm Of Land With Pile Foundation For Twin High Rises 15 Storey Luxury Towers,Glover Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1582,"Vacant Plot Measuring 2,000sqms",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1583,Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1584,4 Bedroom Condominum,"Ikoyi, Lagos Ikoyi S.w Ikoyi Lagos",₦,"370,000,000",1,1,1,4 beds,5 baths,6 Toilets,Other Ikoyi +1585,"Land Measuring 2,550sqms For Sale In Ikoyi",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1586,3100sqm Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1587,New Luxury 6bedroom Detached Duplex With Private Elevator And Swimming Pool,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,1,1, beds, baths, Toilets,Old Ikoyi +1588,Ultra Luxury Pent House,Banana Island Ikoyi Lagos,$,"9,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1589,Land Of 3133sqm,Ikoyi Lagos,₦,"1,535,170,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1590,Exquisite 6 Bedroom Detached House With Elevator,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,7 Toilets,Old Ikoyi +1591,Mini 2 Bedroom And 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"89,000,000",1,1,1,2 beds,1 baths,2 Toilets,Other Ikoyi +1592,For Sale 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",0,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +1593,3800sqm On Corner Piece With C Of O,Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1594,A Lovely 3 Bedroom Flat,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +1595,"A Large Expanse Commercial Land 6,302sqm Fenced",Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1596,"Land Measuring 1,462.046sqms",Banana Island Ikoyi Lagos,₦,"1,608,250,600/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1597,A Partitioned Land Measuring 1134.583sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1598,Executive 4bedroom House With Carpark Of 5cars,Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,1,5 beds,7 baths,7 Toilets,Other Ikoyi +1599,2500sqm Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1600,Commercial 6plots Of Land Close To Radio Nigeria Ikoyi,Ikoyi Closer To Radio Nigeria Ikoyi S.w Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1601,Luxury 5 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1602,2500sqm Of Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1603,12 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,1,0,3 beds,3 baths,3 Toilets,Parkview +1604,5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +1605,Luxury Furnished 5bedroom Detached Duplex,Off Queen Drive Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,1,1,5 beds,8 baths,8 Toilets,Other Ikoyi +1606,Luxurious 5 Bedroom Contemporary Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1607,5 Bedroom Fully Detached Duplex With 2rooms Bq,Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Ikoyi +1608,Finished 5 Bedrooms Semi Detached Duplex In Ikoyi,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1609,Luxury 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1610,11 Units Of 3 Bedroom Apartments With Bq, Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +1611,Bareland Measuring 1200sqm,Bank Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"650,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1612,Luxury 11units Of 3bedroom Flat + Bq,Located In A Very Good Neighbood Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",1,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +1613,Brand New 4nos Of 5 Bedroom Fully Serviced Maisonette Plus Maid's Room For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1614,Exquisitely Finished 3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1615,Luxury 4 Bedroom Terrace Duplex For Sale In Osborne Phase Ii,Osborne Foreshore Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +1616,Brand New 4 Bedroom Terrace,G Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +1617,2 Units Luxury 6 Bedroom Fully Detached Duplexes With Private Elevator,Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Ikoyi +1618,Luxury 26 Units Of 3 Bedroom Flats,T Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Old Ikoyi +1619,Lovely Estate Made Up Of (16) Units Of 4 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1620,Massive 3 Bedroom Carcass,Osborne Foreshore Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Foreshore +1621,2 Units Of New And Modern Luxury Residential Blocks Of Flats,Ikoyi S.w Ikoyi Lagos,₦,"17,000,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1622,Newly Built 5bedroom Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1623,Luxury 5bedroom Detached House With Bq In A Serene And Secure Environ,Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +1624,Lovely 3bedroom Townhouse,Ikoyi Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +1625,Waterfront Standard 8200sqm Land,Off Awolowo Road Southwest Ikoyi Awolowo Road Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1626,5 Bedroom Detached Duplex,Off Close 220 Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1627,Standard 4bedroom Detached Duplex On 480sqm With Land Certificate,Off Awolowo Way South West Ikoyi Awolowo Road Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1628,For Sale One Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"75,000,000",0,1,0,1 beds,1 baths,1 Toilets,Old Ikoyi +1629,5 Bedroom Detached Duplex Stand Alone For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1630,"Distressed Hot Sale: 3,944 Square Meters Land","James George Street, Ikoyi, Lagos. Dolphin Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1631,6 Units Of 3 Bedroom Apartment With A Penthouse,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1632,(j61) 500 Sqm Of Land Front Plot Is Now For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1633,4 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1634,5 Bedroom Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1635,A Standard 3bedroom Flat,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1636,Tastefully Finished 3bedroom Apartment In An Estate,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Parkview +1637,"2, 3 & 4 Bedroom Waterfront Homes",. Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +1638,A Newly Built Serviced Four(4) Storey Commercial Office Complex.,Ikoyi S.w Ikoyi Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1639,"Brand New 5 Bedroom Detached Duplex With A Room Bq For Sale In Onikoyi, Off Banana Island Road","Onikoyi, Off Banana Island Road Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1640,"10,000sqms Land For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1641,533sqms Land With 24 Meters Frontage For Sale In Ikoyi,Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1642,"Land Measuring 2,000sqms With 51 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1643,"2,500 Square Meters Waterfront Land","Alexander Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1644,New Luxury 3 Bedroom Flat With Bq,Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikoyi +1645,Newly Built 5 Bedroom Contemporary Design Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1646,Super Spacious 5 Bedrooms Luxury Maisonette,Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +1647,Massive 2000sqm On Zone H,S Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1648,3100sqm Of Land In Banana Island Ikoyi With C Of O,Banana Island Ikoyi Lagos,₦,"2,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1649,Luxury Ocean View 3 Bedroom Flat, Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1650,2 & 4 Bedroom Apartments,. Banana Island Ikoyi Lagos,₦,"857,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +1651,Plot Of Land Measuring 740sqm,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1652,Luxury 3 Bedroom Flat,T Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +1653,Waterfront Fully Detached 5 Bedroom House With Jetty & 2 Bqs,"Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1654,"3,100 Square Meters Parcel Of Land","Bank Road Off Macgregor Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1655,Waterfront Land Of 2750sqm On Alexander With Small 2 Bungalows With Federal C Of O,Alexander Avenue Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1656,12 Units Of 3 Bedroom Flat,Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +1657,Luxurious And Modern 4 Bedroom Apartment,Glover Axis Old Ikoyi Ikoyi Lagos,$,"1,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1658,6 Bedroom Detached House And Bq,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +1659,Brand New 4 Bedroom Maisonette With Gym,Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1660,3 Bedroom Maisonette With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Onikoyi +1661,Standard Luxury 3bedroom Terrace Duplex With Bq,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,3 beds,5 baths,5 Toilets,Foreshore +1662,Exquisitely Finished 5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1663,370sqm Of Land,Keffi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1664,1097sqm Of Land Corner Piece,Awolowo Road Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1665,Executive Luxury 3bedroom With Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"249,000,000",0,1,1,3 beds,5 baths,5 Toilets,Banana Island +1666,Waterfront 5 Bedrooms Detached Duplex With Jetty & 2bq,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1667,Massive 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1668,600sqms Land Available In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1669,Brand New 4 Bedroom Semi Detached House,Z Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1670,"Waterfront Plot Measuring 4,611sqm",Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1671,3 Bedroom Flat For Sale In Ikoyi Lagos.,Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1672,Massive 4 Bedroom Semi Detached With Swimming Pool And Gym,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +1673,984sqm Land,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1674,"Parcel Of Land Measuring 1,937 Square Meters Cornerpiece Land","Plot P2, On 2nd Avenue, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +1675,4 Bedroom Detached House With Bq,Ikoyi S.w Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1676,Luxury Waterfront 4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1677,Finished And Spacious 3bedrooms Apartments With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1678,"(l13b) 2,923.345 Sqm Land Is Now For Sale In Banana Island Ikoyi Lagos",Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1679,Luxury 3 Bedroom Flat,S Ikoyi S.w Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1680,Exquisite & Luxurious 5 Bedroom Fully Detached Mansion In A Prestigious Estate,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1681,Serviced 3bedrooms Flat With Bq In Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,4 baths,4 Toilets,Parkview +1682,4 Bedroom Terrace Duplex With Bq,Ikoyi Osborne Estate Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"127,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Foreshore +1683,Standard Mixed Use Acre Of Land 3944sqm With C Of O,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1684,New Executive 3bedroom Flat Apartment In A Good Location,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,1,1,3 beds,4 baths,4 Toilets,Onikoyi +1685,Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +1686,4 Bedroom Maissonette With Bq And Elevator,Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1687,Luxury Newly Built 3 Bedroom Flat With Bq,Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,5 baths,6 Toilets,Other Ikoyi +1688,2 Units Luxury 6 Bedroom Fully Detached,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1689,1500sqm Of Land,Lugard Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1690,1250sqm Of Land Fenced And Gated,Club Road Old Ikoyi Lagos L Old Ikoyi Ikoyi Lagos,₦,"820,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1691,Waterfront 5bedroom Duplex,Gated Estate Off Banana Island Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Ikoyi +1692,"Waterfront Plot Measuring Almost 3,600sqms For Sale In Osborne Phase 1",Osborne Foreshore Estate Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Foreshore +1693,Luxury 5 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +1694,5 Bedroom Semi Detached Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +1695,"Newly Built 4 Bedroom Terrace Duplex With Bq, Swimming Pool, Gym And Dedicated Transformer",Ikoyi Lagos,₦,"720,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1696,Luxury And Spacious 2 Bedroom Flat,D Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1697,5 Bedroom Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +1698,1000sqm Of Land For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +1699,Luxury And Spacious 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,0,0,2 beds,2 baths,2 Toilets,Banana Island +1700,For Sale 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +1701,"1,700m2 Waterfront Plot + 50 Meters Waterfront Frontage","Mojisola Onikoyi Estate, Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Onikoyi +1702,An Executive 4bedroom Duplex + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1703,4 Bedroom Service Apartment,Alexander Avenue Ikoyi Lagos Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1704,4 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"230,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1705,2300sqm Of Water Front Land For Joint Venture,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1706,Brand New Luxury 4 Bedrooms Semi Duplex With A Room Bq,"Onikoyi, Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +1707,Waterfront 4bedroom Detached Duplex With 2bq,Waterfront Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,1,4 beds,6 baths,6 Toilets,Foreshore +1708,"6,930 Square Meters Land","Glover Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"4,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1709,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"310,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +1710,5 Bedroom Fully Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1711,High Class Opulent Luxury 5 Bedroom Automated Maisonatte,Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1712,Luxury Brand New 5 Bedroom Detached House With A Massive Swimming Pool,Banana Island Ikoyi Lagos,₦,"25,000,000/year",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +1713,Executive 4bedroom Maisonette With Bq Swimming Pool And Gym And Elevator,Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1714,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"780,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +1715,Tastefully Built 4bedroom Fully Detached Duplex With A Bq,Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,6 baths,7 Toilets,Other Ikoyi +1716,Waterfront Luxury 5bedroom Detached Duplex With Swimming Pool And Jetty,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Ikoyi +1717,New Executive 5bedroom House With 2room Bq,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,8 baths,8 Toilets,Old Ikoyi +1718,Tastefully 6units Of 3br Flat + 2units Of 4br Mansionette + Pool + Bq,Located In A Very Good And Secure Neighborhood Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1719,Luxurious 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1720,An Executive 2 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +1721,533sqms Land With 27 Meters Frontage For Sale In Ikoyi,Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1722,"Water Front Plot Of Land On 5,005sqm",S Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1723,Brand New 2 Bedroom Flat,Ikoyi S.w Ikoyi Lagos,₦,"175,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1724,2917sqm Of Bareland,Ikoyi Osborne Estate Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"680,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1725,Brand New 3 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1726,4 Bedroom Terrace Duplex,Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1727,Beautiful 4 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1728,Luxury 5 Bedroom Fully Detached Duplex With One Room Bq, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1729,Waterfront Smart Home Fully Detached Duplex,Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1730,Vacant 4 Floors Former Bank Premises On 700sqm Of Land,Awolowo Road Ikoyi Lagos,₦,"650,000,000",1,0,0,4 beds,7 baths,7 Toilets,Other Ikoyi +1731,Furished 6bedroom Home,Ikoyi Old Ikoyi Ikoyi Lagos,$,"5,000,000",0,1,1,6 beds,6 baths,7 Toilets,Old Ikoyi +1732,"2,000sqms Land For Sale In Ikoyi",Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1733,Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1734,Brand New Luxury 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1735,"New, Luxuriously Finished, Furnished & Serviced 3 Bedroom Ensuite Flat In An Estate","Osborne, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"164,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1736,4 Bedrooms Semi Detached House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +1737,Land Measuring 500sqm,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1738,Newly Built 24 Flats Of 3 Bedroom Flats With Pent Houses All Room Ensuites At No 12 Adeyemi Lawson Off Bourdillon Ikoyi With C Of O And Governors Consent,Bourdillon Ikoyi Lagos,₦,"7,600,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1739,Water Front Of 3 Blocks Of 21 Units Of 4 Bedroom Penthouse And 3 Bedroom Flat On 6100sqm Of Land,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1740,Luxurious 3 Bedroom Apartment With A Maid's Room,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1741,Finished 3 Bedroom Spacious Apartment With Bq,Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1742,Ultra Luxury Maisonettes,Banana Island Ikoyi Lagos,$,"2,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1743,Beautiful Luxury Automated Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,6 baths,6 Toilets,Old Ikoyi +1744,Contemporary Designed 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +1745,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1746,3004sqm Waterfront Plots Of Land In Old Ikoyi,Alexander Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"670,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1747,"1,639sqms Land", Old Ikoyi Ikoyi Lagos,₦,"819,500,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1748,Decently Finished 3 Bedroom Apartments With Bq And Pool, Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1749,Spacious 5 Bedroom Penthouse All Room Ensuite In A Serene Neighbourhood,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,7 baths,7 Toilets,Banana Island +1750,"2, 033sqm Of Land With Lagos State C Of O",2nd Avenue Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1751,"Plot Measuring 2,250sqms",Ikoyi Lagos,₦,"1,250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1752,Water Front Land Of 2200sqm,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1753,"Land Measuring 3,400sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1754,Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1755,"An Exquisitely Furnished 5 Bedroom Luxury Detached House On 1,800sqm",Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +1756,1620sqm Of Land Fenced And Gated With C Of O,Club Road Old Ikoyi Lagos L Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1757,"11,500sqm Of Land",Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1758,Water Front 2 Units Of Fully Detached 5 Bedroom Duplexes,Off Banana Island Road Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1759,Water Front Plot Of Land On 4611sqm,S Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1760,Corner Piece Land Measuring 943sqms For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Banana Island +1761,A Standard 5bedroom Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +1762,3200sqm Of Land With Demolishable Structure On Bank Road,Mcgregor Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1763,"Land Measuring 1,566sqms With 50 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1764,Newly Built 4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1765,Luxury 6 Bedrooms Townhouse With Bq & Pool,Ikoyi S.w Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +1766,"Land Measuring 2,184sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,201,200,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1767,"For Sale Newly Built 5 Bedroom Fully Furnished Maisonette With Ensuite Rooms With 2 Rooms Bq , Swimming Pool, Gym, Elevator, Fully Furnished At Banana Island Foreshore Ikoyi Lagos",Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1768,Waterfront Plot Of Land For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"1,018,160,000",0,0,0, beds, baths, Toilets,Banana Island +1769,Executive 9 Bedroom Mansion On 766sqm Land,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,9 beds,9 baths,9 Toilets,Banana Island +1770,Newly Built 5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1771,Well Built 3 Bedrooms Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +1772,"6 Bedroom Fully Detached Duplex With Pent House, Private Elevator , Swimming Pool And Other Facilitie",Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Ikoyi +1773,Luxury 4 Bedrooms Terrace Duplex,Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +1774,Residential Plot Measuring 1500sqm,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1775,New 3 Bedroom Flat,Shoreline Estate Gerard Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1776,Water Front 4600sqm Of Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1777,"Non Waterfront Measuring 1,000sqm With Pile Foundation For Sale In J 44, Banana Island",Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +1778,An Executive 5 Bedrooms Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +1779,"10 Units Of 3 Bedroom Flats, With 1 Unit 4 Bedroom Penthouse With Swimming Pool",D Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1780,An Excellent Ensuites Modern 4 Bedroom Manssionette,Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1781,(plot P2) 1937 Sqm Of A Corner Piece Land For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +1782,Complete Luxury Smart 2bedroom Apartment,By Ikoyi Golf Ikoyi Lagos,₦,"170,000,000",0,1,1,2 beds,3 baths,3 Toilets,Other Ikoyi +1783,4800sqm Of Massive Water Front In A Mixed Used Land,Banana Island Ikoyi Lagos,₦,"4,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1784,Luxury 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1785,4 Bedroom Terrace Duplex,.. Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +1786,"Land Measuring 1,566sqms With 47 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +1787,5 Bedroom Detached House With A Swimming Pool,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1788,Brand New 6 Bedroom Detached House,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets,Old Ikoyi +1789,Luxury 2bedroom Flat,Bourdillon Ikoyi Lagos,₦,"175,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1790,3 Block Of Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +1791,"A Vacant High Rise Property Comprising 54 Apartments Of 1, 2 And 4 Bedroom Apartments At Ikoyi Lagos",Ikoyi Lagos,₦,"16,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1792,Spacious 4 Bedroom Terrance Duplex,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +1793,Waterfront 2 Numbers Of Fully Detached 5 Bedroom Duplexe,Off Banana Rd Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +1794,"1,950sqm Of Residential Land",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1795,New 5bedroom Detached Duplex With Bq And Gym,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,7 baths,6 Toilets,Banana Island +1796,"2,923 Square Meters Parcel Of Land","Zone L, Plot 13b, Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1797,Executive 4bedroom Terrace Duplex With Bq Swimming Pool,Packview Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,1,4 beds,6 baths,6 Toilets,Parkview +1798,Luxury 3 Bedroom Flat Is Now For Sale In Old Ikoyi Lagos.,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1799,Luxurious 3 Bedroom Apartment,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +1800,6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +1801,500 Square Meters Front Plot,"Plot J61, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Banana Island +1802,New 11 Flat Of 3bedroom With Bq Each.swimming Pool And Elevator,Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikoyi +1803,A Standard 5bedroom Terraced Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Foreshore +1804,Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1805,4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +1806,Land,Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1807,A Lovely 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1808,Well Built 3 Bedroom Apartment With Luxury Facilities,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +1809,4 Units Of 4 Bedroom Massionate + 4 Bedroom Pent House,Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1810,4numbers Of 5bedroom Terrace Duplex With Bq Swimming Pool On 1984sqm Land,Osborne Phase 1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1811,4bedroom Terrace Plus Boys Quarter,Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,6 baths,6 Toilets,Old Ikoyi +1812,5 Bedroom Fully Detached House + 2 Rooms Bq On 600sqm,"Off Bourdillion Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"720,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1813,"Waterfront Measuring 1,900sqm For Sale In Zone Q, Banana Island",Banana Island Ikoyi Lagos,₦,"2,185,000,000",0,0,0, beds, baths, Toilets,Banana Island +1814,New Luxury Villa,2nd Avenue Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1815,Brand New 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1816,Luxurious 3 Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +1817,Lovely 3 Bedroom Flat + 1 Room Bq With Swimming Pool & Gym,"Gerrad, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1818,New Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"140,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Ikoyi +1819,Luxury 3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1820,Vacant 2295m2 Land,"Mekunwen Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,377,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1821,Luxury 3 Bedroom All Room En Suite With A Room Bq With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,5 Toilets,Banana Island +1822,Fully Furnished 4 Bedroom Terrace With A Room Bq For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +1823,"Luxuriously Finished 4 Bedrooms Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi S.w Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +1824,Giovanni Residence: 4 Bedroom Terrace At Banana Island,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +1825,Fully Sericed 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +1826,Massive Land On 1350 Sqm Is Now For Sale In Banana Island Ikoyi Lagos. Located On Residential Zone E,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1827,A Standard 4bedroom Fully Detached With Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +1828,2568sqm Of Land Fenced And Gated,Club Road Old Ikoyi Lagos L Ikoyi Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1829,4 Bedroom Terrace Duplex With 2 Rooms Bq,Living Gold Estate Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +1830,Luxury 4 Unit Of 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +1831,Brand New 5 Bedroom Detached House With A Room Staff Quarter, Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1832,1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +1833,Water Front Land Of 3600sqm With A Duplex,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1834,"Classy 5 Bedrooms Fully Detached Home With Private Elevator, And Cinema",Ikoyi S.w Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1835,"Luxury 6 Bedroom Fully Detached Duplex With Private Elevator, Gym, Swimming Pool With Pent House",Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +1836,Four Units Of 4 Bedroom Terrace Duplex,Onikoyi Estate Lagos Banana Island Ikoyi Lagos,₦,"165,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +1837,4 Bedroom Maisonette,Emerald Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +1838,"Oligarch Standard 5 Bedrooms Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1839,Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1840,A Block Of 6 Flats,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1841,An Executive 3bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Banana Island +1842,Three Bedroom Flat,Ikoyi Parkview Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +1843,Luxury 4 Bedroom Semi Detached House,W Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1844,Newly Built 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +1845,Luxury 3 Bedroom Flat With A Beautiful Ambience,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +1846,A Standard High Rise Property,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1847,"Contemporary 5 Bedrooms Fully Detached Duplex With Swimming Pool In Ajah, Lekki",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +1848,"1,000 Square Meters Land With Piling Foundation Done","Plot J44, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +1849,Serviced 4 Bedroom Terrace House With Swimming Pool & Gym,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +1850,Newly Built 5 Bedroom Fully Detached House + Bq,"Bourdilon, Ikoyi, Lagos. Bourdillon Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1851,"Land On 1,420sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"923,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1852,"3,600m2 Mixed Development Land","Glover Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1853,New Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikoyi +1854,3800sqm Of Land With Old Structures,Glover Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1855,"Brand New Five Bedroom Fully Detached House, All Room Ensuite With 2room Bq",Golden Estate Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,8 Toilets,Banana Island +1856,3 Bedroom Terrace Duplex,E Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1857,Brand New 4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1858,Luxury 5 Bedroom Fully Detached Duplex In Banana Island.,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1859,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Banana Island +1860,Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +1861,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Ikoyi +1862,"4,313 Square Meters Parcel Of Land","Alexander Road, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1863,Block Of Flats On 400 Sqm Land,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +1864,Brand New Luxury 3 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1865,Brand New 5 Bedroom Fully Detached House With A Room Bq,S Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1866,Beautifully Finished 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1867,5 Floor Of Exclusive Residential Estate Of 15 Units Of Luxury Flats,"Ikoyi, In Close Proximity To Ikoyi Club, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1868,5 Bedroom Semi Detached House,"Mojisola Onikoyi Estate,ikoyi. Banana Island Ikoyi Lagos",₦,"210,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +1869,Enormous 6 Bedrooms Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000,000",0,1,0,6 beds,7 baths,7 Toilets,Old Ikoyi +1870,W A T E R F R O N T Land,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1871,Corner Piece Land Measuring 943sqms,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Banana Island +1872,"Land Measuring 1,700sqms For Sale In Ikoyi",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1873,Luxury 4 Bedroom Flat With Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1874,Newly Built 5 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +1875,5 Bedroom Fully Detached,. Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +1876,For Sale 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +1877,A Standard 24units Of 3bedroom Flats,Bourdillon Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +1878,Shopisticated 24 Units Of 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"195,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1879,"A 2 , 3 And 4 Bedroom Apartment",Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1880,5 Bedroom Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1881,City View 3 Bedroom Apartments With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +1882,An Executive Hotel Of 58 Rooms,Old Ikoyi Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1883,Luxurious 4 Bedroom Penthouse,Bourdillon Bourdillon Ikoyi Lagos,$,"1,900,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1884,1137sqm Land,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1885,Lovely 4 Bedroom Terrace Duplex,Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1886,Luxury Brand New 3 Bedroom Apartment With One Room Bq,Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +1887,1950sqm Of Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1888,Waterfront Land Measuring 1000 Sqm,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Banana Island +1889,5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1890,A Newly Built And Unique 5bedroom Duplex,Turnell Avenue Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1891,1200sqm Of Land,Old Ikoyi Ikoyi Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1892,Plot Measuring 875sqms For Sale In Ikoyi,Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1893,Luxury 3 Bedroom Flat With Excellent Facilities,Z Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1894,New Luxury 4bedroom Semi Detached Duplex With Bq Swimming Pool And Gym,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1895,An Executive 5 Bedroom Fully Detached Duplex, Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1896,High Rise Property Of Two Building 54 Flat Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,1,4 beds,0 baths,0 Toilets,Old Ikoyi +1897,Vacant 4592m2 Land,"Mekunwen Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,986,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1898,4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +1899,5 Bedroom Semi Detached Duplex With A Room Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1900,New Luxury 5bedroom Maisonette With Bq Swimming Pool And Elevator,Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Ikoyi +1901,Newly Built 5 Bedroom Fully Detached House With Luxury Facilities, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1902,Brand New Luxury 4 Bedroom Flat With 2 Rooms Staff Quarters,H Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1903,4300sqm Of Land With Structure With C Of O,Mcgregor Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1904,Brand New 4 Bedroom Terrace Duplex Within A Secured Estate Is Now For Sale Is Now For Sale At Ikoyi Lagos,Ikoyi S.w Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1905,Luxury Water View Apartments,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +1906,Automated 5 Bed Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1907,3600sqm Of Land,Bourdillon Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1908,"Land Measuring 3,400.882sqm",Zone J Third Avenue Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1909,4 Bedroom Fully Detached Duplex With S/pool And Gym,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +1910,Luxury Service 4bedroom With Bq,Off Bourdilon Bourdillon Ikoyi Lagos,₦,"160,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1911,Water Front Plot Of Land On 1939sqm,S Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1912,Fantastic 2 Bedroom Ensuite Flat With Swimming Pool & Gym,"Gerrad, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +1913,Large Land Of 6578sqm On Residential Zone For Sale.,Banana Island Ikoyi Lagos,₦,"5,920,200,000",0,0,0, beds, baths, Toilets,Banana Island +1914,Vacant Plot Measuring 1000sqm,Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1915,"2,677 Square Meters Parcel Of Land","Mekunwen Road, Ikoyi, Lagos. Bourdillon Ikoyi Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1916,4300sqm Of Land With C Of O,Alexander Avenue Ikoyi Lagos Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1917,A Vacant High Rise Property Of 54 Apartments,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1918,Water Front 5 Bedroom Detached House,Off Banana Island Road Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +1919,"1,157 Square Meters Waterfront Parcel Of Land","Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,041,000,000",0,0,0, beds, baths, Toilets,Banana Island +1920,New Executive 6 Bedroom Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000/year",0,1,1,6 beds,0 baths,0 Toilets,Other Ikoyi +1921,5 Bedroom Duplex With Bq,Ikoyi Lagos,₦,"720,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1922,Newly Built 5 Bedroom Maisonatte,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +1923,Contemporary Design 5 Bedroom Detached Villa,Ikoyi S.w Ikoyi Lagos,₦,"1,850,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +1924,"Luxury 3 Bedroom Flat With Excellent Facilities In Osborne, Ikoyi.", Osborne Foreshore Estate Ikoyi Lagos,₦,"95,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +1925,Water Front 5 Bedroom Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +1926,Brand New 4bedroom Terrace,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1927,"6,500sqms Land For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"4,400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1928,Finished Combined Commercial And Residential Building,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +1929,"Brand New 3 Bedroom Apartment With Swimming Pool, Gym Etc",Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1930,New Luxury 5bedroom Maisonette With Swimming Pool Gym And Elevator,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,7 baths,7 Toilets,Banana Island +1931,Brand New 4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1932,Brand New 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1933,4 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1934,A Mini Estate Consisting 21units Of 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +1935,Luxury 4 Bedroom Penthouse,H Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +1936,For Sale 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +1937,Massive 4 Bedroom Terrace Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +1938,"1,500m2 Land","Lugard Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,012,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +1939,Executive 4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Ikoyi +1940,"1,500 Square Meters Residential Parcel Of Land","Plot A19, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,150,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +1941,A Very Fertile And Mixed Use Land Of 1200sqm,Ikoyi Lagos,₦,"468,000",0,0,0, beds, baths, Toilets,Other Ikoyi +1942,4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +1943,Exquisite 6 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",1,1,1,6 beds,6 baths,7 Toilets,Other Ikoyi +1944,Luxury 3 Bedroom Flat,S Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1945,Water Front Land Of 1134sq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1946,"2,002sqm Of Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1947,Lovely 4 Bedroom Semi Detached,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1948,A Decent Semi Detached 4bedroom + 2room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Foreshore +1949,Massive Commercial Detached House,K Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +1950,Waterfront Plot For Sale In Onikoyi,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"495,000,000",0,0,0, beds, baths, Toilets,Onikoyi +1951,Luxurious Furnished 5 Bedrooms Terrace Smart House In Ikoyi,Ikoyi Ikoyi Lagos,$,"1,200,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +1952,Luxury Newly Built 4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,4 beds,6 baths,6 Toilets,Banana Island +1953,Block Of 12 Unit Flats,Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +1954,New Luxury Automated 5bedroom Detached With 3bq And 6parking Space,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,1,5 beds,8 baths,8 Toilets,Banana Island +1955,5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1956,"4 Bedroom Luxury Terraced With Swimming Pool, Elevator, A Room Staff Quarter",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +1957,For Sale Executive 2 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,2 Toilets,Old Ikoyi +1958,New Luxury Executive 3bedroom Maisonette With Bq,Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Ikoyi +1959,Newly Built 4 Bedroom,Glover Axis Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +1960,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets,Other Ikoyi +1961,Massive 5 Bedroom Fully Detached,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +1962,7 Bedroom Duplex,Off Awolowo Way Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,5 baths,7 Toilets,Other Ikoyi +1963,5 Bedroom Fully Detached Duplex,"Ikoyi, Lagos State Ikoyi Lagos",₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1964,3000sqm Land,Adeyemi Lawson Off Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1965,5 Bedroom Detached Home With Private Elevator,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",1,1,1,5 beds,5 baths,0 Toilets,Other Ikoyi +1966,Newly Built 5 Bedroom Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +1967,Plots Of Land,Cameron Road Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1968,Luxurious 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +1969,Luxury 5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +1970,Serene 500sqmts Of Duplex,Alhaji Bashorun Off Norman Williams Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +1971,Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1972,Land,Banana Island Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1973,Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1974,Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1975,A Newly Built 3 Bedroom Apartment,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets,Onikoyi +1976,Land,Dolphin Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1977,Amazing 2 Bedroom Penthouse,Eighteen65 Residence Fatai Durosimi Street Victoria Island Ikoyi Lagos,₦,"250,000,000/month",0,1,0,2 beds,2 baths,2 Toilets,Other Ikoyi +1978,Breathing 3 Bedroom Maisonette,Eighteen65 Residence Fatai Durosimi Street Victoria Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +1979,Land,Highbrow Ikoyi Crescent Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1980,Land,Highbrow Ikoyi Crescent Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1981,Land,"Mekunwen Rd, Ikoyi Ikoyi Lagos",₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1982,Land,Alexander Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1983,Land,Alexander Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1984,Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +1985,Spacious 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +1986,Land,Along Kingsway Road Ikoyi Ikoyi Lagos,₦,"10,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1987,Executive 3 Bedroom Flat Apartments,Off Banana Highland Road Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +1988,Land,"Gerrard Road, Ikoyi Lagos Gerard Road Ikoyi Lagos",₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1989,Land,"Alfred Rewane/osborne Rd,ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +1990,Land,"Alexander Road, Ikoyi Ikoyi Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1991,Land,2nd Avenue Ikoyi With A Structure 2nd Avenue Extension Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1992,Land,Acacia Drive Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1993,Land,Royal Palm Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1994,Land,"Alexandra Road,ikoyi Ikoyi Lagos",₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1995,Land,Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1996,Land,Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1997,Land,Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1998,6 Units Of 4 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +1999,1 Unit Of 2 Bedroom Flat,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2000,6 Units Of 3bedroom Flat,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2001,Land,Lawrence Road Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2002,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2003,5 Bedroom Detached House,Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2004,Land,"Eko Akete Estate Obalende, Ikoyi Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2005,Well Spaced 4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +2006,5 Bedroom Detached Duplexes,Olori Mojisola Estate Off Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2007,Land,Shoreline Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2008,Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2009,25 Units Of Luxury Flats,"Off 2nd Avenue, Banana Lsland Residential Zone Banana Island Ikoyi Lagos",₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2010,Land,"H Zone, Banana Island Ikoyi Lagos",₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2011,Land,Banana Island Banana Island Ikoyi Lagos,₦,"975,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2012,Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2013,Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2014,Land,Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2015,Land,Kingsway| Cameron Road Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2016,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2017,Land,Parkview Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2018,Land,Parkview Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2019,Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2020,4 Bedroom Semi Detached Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2021,3 Units Of 4 Bedroom Terrace Houses,Off Tumbull Drive Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2022,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2023,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2024,"5,400sqm Prime Land",Glover Raod Old Ikoyi Ikoyi Lagos,₦,"55,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2025,"11,000sqm Prime Land",Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2026,Newly Built 5 Bedroom Full Detached House,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +2027,800sqm Land,Banana Island Ikoyi Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2028,820sqm Land,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2029,813sqm Land,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2030,Land Measuring 1000.099sqm,Residential Zone Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2031,*luxury 4 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"360,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2032,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2033,Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2034,5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2035,Luxury 3 Bedroom Townhouse With Bq,Ikoyi Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2036,Luxury 5 Bedroom Semi Detached With Bq,Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2037,Luxury 4 Bedroom Terrace Duplex & Maisonette With Bq,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2038,Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2039,Luxury 4 Bedroom Detached Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2040,Luxury 4 Bedroom Townhouse With Bq,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2041,Spaciously Well Built 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2042,Spacious 4 Bedroom Terrance Duplex,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2043,4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2044,Luxury Maisonette,Ikoyi Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2045,Land,Dolphin Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2046,A 5 Bedroom Semi Detach Duplex,Osborne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Foreshore +2047,Newly Built 4 Bedroom Semi Detached Duplex,Falomo Ikoyi Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +2048,4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2049,6 Bedroom Smart Home,Shoreline Banana Island Ikoyi Lagos,₦,"1,400,000,000",1,1,1,6 beds,6 baths,7 Toilets,Banana Island +2050,Luxuriously Finished 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +2051,Beautiful Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +2052,Brand New 6 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2053,"11 Units Of 3 Bedroom Apartment With Bq, Swimming Pool And Elevator For Sale In Ikoyi",Parkview Estate Ikoyi Lagos,₦,"200,000,000/day",0,1,0,3 beds,3 baths,3 Toilets,Parkview +2054,2 And 3 Bedroom Apartments,Onikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2055,Luxury Five Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +2056,Newly Built 5 Bedroom Fully Detached Duplex,Estate Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2057,Luxury 4 Bedroom Maisonette House,Cedarwood Luxury Maisonette Awolowo Road Ikoyi Lagos,₦,"197,000,000/day",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2058,4 Bedroom Serviced Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2059,Beautifully Finished 5 Bedroom Semi Detached Duplex With Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"360,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +2060,5bedroom Semi Detached Duplex With [email protected] Island,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Banana Island +2061,Exquisite Mansion Of 5befroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2062,Luxury Maisonette,Ikoyi Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2063,12 Nos X 3 Bedroom Serviced Apartment For Sale,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Parkview +2064,Brand New 4 Bedroom Terrace Duplex With A Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +2065,Luxury Brand New 5 Bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +2066,Luxury 4 Bedroom Maisonette,Ikoyi Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2067,4bedroom Penthouse,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2068,Tastefully Finished 5 Bedroom Fully Detached Duplex For Sale In Ikoyi,5 Bedroom Fully Detached Duplex Falomo Ikoyi Lagos,₦,"370,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +2069,Ultra Luxurious 5 Bedroom Terrace With 2 Bedroom Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2070,4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2071,Brand New 3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2072,Beautiful Modern 3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2073,5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2074,5 Bedrooms Fully Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2075,27 Flats With Penthouses,Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2076,Smart Luxury 5 Bedroom Semi Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +2077,3 Bedroom Apartment,Alexander Court Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2078,Newly Built Exclusive 3(numbers) 4 Bedroom Detached Houses,Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2079,"Superbly Finished Automated 5 Bed Fully Detached House With Elevator, Cinema, Gym And Swimming Pool",Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +2080,5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +2081,A Building For Cooperate Office Use On 5 Floors,Awolowo Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2082,4 Bedroom Terraced House On 3 Floors With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +2083,Executive 2bedroom Flat With One Toilet & Bathroom On The First Floor At Dolphin Highrise Dolphin Estate.,Estate Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,2 beds,1 baths,1 Toilets,Other Ikoyi +2084,Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2085,4 Bedroom Duplex,Ikoyi Lagos,₦,"50,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Ikoyi +2086,Newly Built 4 Bedroom Maisonette With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,1,4 beds,5 baths,6 Toilets,Banana Island +2087,A Newly Built Block Of 4 Numbers 5 Bedroom Maisonettes With 2 Room Boy’s Quarter,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2088,5 Bedroom Fully Detached Duplex + Bq,Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2089,Massive 5 Bedroom Fully Detached Duplex 2 Room Bq With Pool,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2090,Brand New Luxurious 6 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +2091,5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2092,5 Bedroom Fully Detached Duplex 2 Room Bq With Swimming Pool,Bourdillon Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2093,Brand New 5 Bedroom Detached Duplex On 2 Floors + Bq + Lagoon View,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2094,6 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +2095,1000sqm Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2096,New House Clean 8 Units Of 5 Bedroom Fully Detached Duplex With Swimming Pool And Gym,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +2097,Newly Built 11 Units Of 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"2,200,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +2098,939sqm Waterfront Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2099,Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2100,Land,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2101,"Newly Built 3 Bedroom Flat + Bq, 24hrs Electricity",Park View Esate Parkview Estate Ikoyi Lagos,₦,"115,000,000",0,1,0,3 beds,4 baths,4 Toilets,Parkview +2102,Land,Macpherson Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2103,A Six Bedroom Mansion With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"2,800,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +2104,Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2105,Spacious 3 Bedroom Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000/sqm",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +2106,A Commercial Building,"Along Kingsway Road, Ikoyi Lagos Nigeria Ikoyi S.w Ikoyi Lagos",$,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2107,2008sqms Land*,Milverton Road Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2108,Land,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2109,Newly Built 6 Bedroom Detached Duplex With Bq,Queen’s Drive Ikoyi S.w Ikoyi Lagos,₦,"1,900,000,000",1,1,0,6 beds,6 baths,5 Toilets,Other Ikoyi +2110,Fully Serviced 2bedroom Massionette,Copper Road Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2111,4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2112,Newly Built Luxury 5 Bedroom Duplex In Ikoyi,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2113,Offplan Sale In Banana Island 5 & 6 Bedroom Full Detached And Semi Detached,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000/sqm",1,1,1,6 beds,6 baths,6 Toilets,Banana Island +2114,5 Bedroom Semi Detached House With Swimming Pool + Bq,Mcpherson Macpherson Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2115,Newly Built 3 Bedroom Luxury Apartment,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,2 beds,2 baths,3 Toilets,Banana Island +2116,4 Bedroom Semi Detached Duplex,Dolphin Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,1 Toilets,Other Ikoyi +2117,"Astounding 2 Bedroom Apartment For Sale, Old Ikoyi",Ikoyi Lagos,₦,"250,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2118,5 Bedroom Semi Detached House,Off Banana Island Road Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +2119,4 Bedrooms Maisonette Penthouse,Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2120,8 Bedroom Fully Detached Duplex For Sale,Osborne Foreshore Estate Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000/sqm",1,0,0,8 beds,8 baths,8 Toilets,Foreshore +2121,Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2122,Newly Built 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2123,Newly Built 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2124,New 5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,1 Toilets,Onikoyi +2125,Newly Built 4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2126,Luxury Spacious 4 Bedroom Penthouse On The 16th,Bourdillon Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +2127,Blocks Of Flat On 2 Storey Building,Norman Williams Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets,Old Ikoyi +2128,Brand New Fully Serviced 3 Bedroom Flat,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",1,1,0,3 beds,3 baths,3 Toilets,Foreshore +2129,Newly Built 3 Bedroom Luxury Apartment,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2130,3 Units Of 4 Bedroom Semi Detached Luxury House,Parkview Estate Ikoyi Lagos,₦,"450,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Parkview +2131,Luxurious 2 Units Of 5 Bedroom Fully Detached Houses,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +2132,Four Storey Building Consisting Of Units Of 3 Bedroom Flat (off Plan), Ikoyi S.w Ikoyi Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2133,Newly Built Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Parkview +2134,4 Bedroom Terrace Duplex,Off Banana Island Road In Am Estate Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,0 baths,0 Toilets,Banana Island +2135,Stunning 2 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2136,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2137,An Executive Well Maintained Serviced 4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +2138,Newly Built Luxury 5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"698,000,000",1,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +2139,Brand New Luxury Fully Serviced 2 Bedroom With Pool,Bourdillon Ikoyi Lagos,₦,"190,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Ikoyi +2140,4 Bedroom Semidetached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +2141,27 Units Of Blocks Of Flat,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"6,000,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2142,Executive Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,6 baths,6 Toilets,Banana Island +2143,Newly Built 6 Bedroom Detached Duplex,Ikoyi Lagos Nigeria Ikoyi Lagos,₦,"2,800,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +2144,Fully Furnished Luxury 4 Bedroom Penthouse With Bq,Banana Island Ikoyi Lagos,$,"3,000,000",1,0,1,4 beds,0 baths,0 Toilets,Banana Island +2145,5 Bedrooms Maisonette,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2146,3 Bedroom Apartment,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +2147,Furnished 3 Bedrooms Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2148,4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2149,Newly Built 4 Bedroom In A Serene Environment,Off Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +2150,4000 Sqm,Ikoyi Lagos Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2151,2000sqm,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2152,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2153,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2154,Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2155,2bedroom Penthouse,Parkview Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets,Parkview +2156,Luxury House,Off Banana Island Road Ikoyi: Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2157,2bedroom Service Apartment,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2158,Water Front Land At Park View,Parkview Estate Ikoyi Lagos,₦,"700,000,000/sqm",0,0,0, beds, baths, Toilets,Parkview +2159,Prime Plot Of Land Measuring 1000sqm,Ikoyi Bourdillon Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2160,Service 2 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +2161,A Massive Tastefully Finished 4 Bedroom Modern Luxurious Flat,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2162,Brand New 4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +2163,A Waterfront Estate With 21 Units Of Apartments,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"6,500,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +2164,Super Luxurious Terrace Duplex Of 5 Bedroom With Bq,"Off Bourdillion Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2165,2600 Sqm Land In Park View Water Front,Park View Water Front Land Parkview Estate Ikoyi Lagos,₦,"900,000,000/sqm",0,0,0, beds, baths, Toilets,Parkview +2166,Executive Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikoyi +2167,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2168,6000 Sqm,Ikoyi Lagos Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2169,8 Units Of 3 Bedroom Flats,Awolowo Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +2170,6 Bedroom Duplex With Bq On 690 Sqm,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,6 beds,5 baths,5 Toilets,Other Ikoyi +2171,4 Bedroom Maisonette Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets,Parkview +2172,Land For Sale At Park View,Parkview Estate Ikoyi Lagos,₦,"420,000,000/sqm",0,0,0, beds, baths, Toilets,Parkview +2173,5bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2174,Newly Built 4bedrooms Semi Detached House,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2175,Land,Olorimojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2176,A 5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq,"Osborne Foreshore Estate Phase 1, Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +2177,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2178,Waterfront 5 Bedroom Fully Detached With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2179,For Sale Exquisite Power Luxury Island 5 Bedroom Fully Detached Duplex With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000/year",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +2180,Waterfront Four Bedroom Semi Detached House With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Ikoyi +2181,Automated 4 Bedrooms Duplex Terrace With Two Bq Rooms,Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2182,4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2183,5000 Square Meters Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2184,1000 Sqm Land,Facing Alfred Railway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +2185,5 Bedroom Fully Detached,Olori Mojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,1,5 beds,5 baths,5 Toilets,Onikoyi +2186,Fantastic House With Jetty,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +2187,Luxury 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +2188,"Corner Piece And Waterfront 1,939sqm Parcel Of Land",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2189,"6,340 Sqm",Ikoyi Lagos Ikoyi Lagos,₦,"3,804,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2190,Newly Built 5units Of 5bed Room Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +2191,5 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2192,Waterfront 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2193,Newly Built 5bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2194,Land,Banana Island Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2195,Waterfront 3 Bedrooms Apartment With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"235,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2196,Light Automated 5 Bedrooms Duplex,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,7 baths,7 Toilets,Banana Island +2197,Plot Of Land Measuring 647sqm In Banana Island Residential Zone E,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +2198,Topnotch 3 Bedroom Flats And Studio Apartments,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +2199,A 7bedroom Duplex Mansion,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2200,Newly Built Five Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +2201,850sqm Land, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2202,"1,245 Square Meters Of Land",Gerald Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2203,4bedroom Semi Detached Duplex With Bq,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +2204,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2205,Executive Newly Built Standard And Tastefully Finished 3 Bedroom Apartment With A Room Bq In A Secured Estate,Ikoyi Lagos Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +2206,5bedroom Fully Detached Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",1,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +2207,"5/4/3 Bedroom Detached And Semi Detached Duplexes, Massionatte, And Apartments With Jetty And Boat Club",Ikoyi South Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2208,"2 Bedroom Smart House With Cctv, Staff House, Gym Etc",Off Ikoyi Golf Course Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2209,Luxury 5 Bedroom Terrace Duplex,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2210,10 Units Of 3bedroom Flat With 4bedroom Penthouse,Ikoyi Lagos Ikoyi Lagos,₦,"2,400,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2211,4 Bedrooms Apartment,Milverton Road Off Alexandra Gerard Road Ikoyi Lagos,₦,"380,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +2212,5 Bedrooms Fully Detached Duplex With A Swimming Pool And Bq,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2213,Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2214,Brand New Pent House, Banana Island Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2215,"19,200 Sqm",Ikoyi Ikoyi Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2216,5 Bedrooms Luxury Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"25,000,000,000",0,1,1,5 beds,5 baths,4 Toilets,Old Ikoyi +2217,4 Bedroom Apartment + Pool +gym In Ikoyi,Off Bourdillon Road Ikoyi Lagos. Bourdillon Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2218,Executive 2 Bedroom Flat, Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,3 baths,4 Toilets,Other Ikoyi +2219,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000,000",1,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +2220,25 Units Of Luxury Flats,Banana Island Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2221,Spacious 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2222,Newly Built 5bedroom Semi Detached House With A Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2223,Newly Built 6 Bedrooms Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +2224,Standard 3 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"125,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2225,7bedroom Detached Duplex At Banana Island Lagos,"Banana Island, Foreshore Estate, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"7,000,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +2226,Land,Parkview Estate Ikoyi Lagos,₦,"330,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2227,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2228,3 Bedroom Apartment,By Parkbiew Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Parkview +2229,Newly Built 3 Bedroom Apartment,Olori Mojisola Esate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,1,3 beds,3 baths,4 Toilets,Onikoyi +2230,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2231,4 Bedroom Luxurious Flat,Alexander Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2232,24 Flats Of 3 Bedroom And 3 Penthouses,Bourdllon Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2233,2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"175,000,000",1,1,0,2 beds,0 baths,0 Toilets,Other Ikoyi +2234,Sophisticated Standard 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,10 baths,10 Toilets,Banana Island +2235,3 Bedroom+ Bq En Suite Flat, Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +2236,"Residential Apartment For Sale 2.bedroom Flats With C Of O. Fitted Kitchen., Adult Pool, Gym In S Secured Environment",Gerrad Road Gerard Road Ikoyi Lagos,₦,"120,000,000",1,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2237,5bedroom Semi Detached,Olori Mojisola Esate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,5 baths,6 Toilets,Onikoyi +2238,Land,Parkview Estate Ikoyi Lagos,₦,"440,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2239,1900sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2240,5 Luxurious Bedroom House, Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,0,1,5 beds,5 baths,7 Toilets,Banana Island +2241,Newly Built Three Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +2242,Luxury 6 Bedroom Townhouse,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,7 baths,9 Toilets,Other Ikoyi +2243,Luxurious 4 Bedroom Penthouse Apartment With Bq,Banana Island Ikoyi Lagos,$,"2,500,000",1,0,0,4 beds,0 baths,0 Toilets,Banana Island +2244,4 Bedrooms Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2245,Top Notch 3 Bedroom Flat With C Of O,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +2246,5 Bedroom Detached House & Boys Quarters,Banana Island Ikoyi Lagos,₦,"2,400,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2247,4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2248,5bedroom Contemporary Detached Duplex,"Ikoyi Banana Island, Lagos Nigeria Banana Island Ikoyi Lagos",₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2249,Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2250,1 And 2 Bedroom Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",1,1,0,2 beds,2 baths,2 Toilets,Old Ikoyi +2251,5bedroom Detached Duplex,"Banana Island, Ikoyi Lagos Nigeria Banana Island Ikoyi Lagos",₦,"2,750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2252,4 Bedroom Luxurious Apartment Oceanview (6th Floor),"Banana Island Road, Ikoyi, Lagos State Banana Island Ikoyi Lagos",₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2253,"A 5 Bedroom Fully Furnished Penthouse Suite On 2 Floors With Pool, Gym, Etc.","Along Alexander Road, Ikoyi Lagos. Ikoyi Lagos",₦,"400,000,000",1,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +2254,Tasteful 5 Bedroom Detached Duplex.,Reeve Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +2255,Luxury 6bedroom Mansion,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +2256,Lovely 4 Bedroom Semi Detached Dolphin Duplex,Itafaji Street Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2257,Newly Built 4bedrooms Fully Detached House With A Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2258,"Standard 4 Bedroom Terraced (penthouse) Duplex, Ikoyi",Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2259,2 Bedroom Fully Furnished Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,3 baths,3 Toilets,Banana Island +2260,"Exquisitely Finished 6bedroom Duplex, With Jetty.",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2261,Brand New 2 Bedroom Flat,"Lugard Road, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,2 beds,0 baths,0 Toilets,Old Ikoyi +2262,4 Bedroom Duplex,"Royal Palm Drive, Osborne Phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"285,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +2263,24 Luxury Flats Of 3 Bedroom With Lift,Banana Island Ikoyi Lagos,₦,"14,000,000,000",1,1,0,3 beds,10 baths,0 Toilets,Banana Island +2264,Waterfront Bare Dry Land,"Acacia Drive, Osborne Phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2265,800sqm Of Land,"Royal Palm Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2266,500sqm Of Land,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2267,4bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +2268,26 Units Of 3 Bedroom Flat,Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2269,5bedroom Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2270,2527sqm Of Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2271,690 Sqm Plot Of Land,Off Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2272,4 Bedroom Terraced Duplex With Bq,Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2273,4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2274,3 Bedroom Terraced Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +2275,New 3bedroom Flat +bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +2276,Land Measuring 500sqm,"Aqua Point Estate, Onikoyi Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2277,7 Bedroom Fully Detached House With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +2278,Primely Located 500sqm Corner Piece Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2279,Available Land,Ruxton Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2280,Land,Osborne Phase1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2281,Luxury 6 Bed Room With Bq,Ikoyi Lagos,₦,"1,500,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2282,Land Measuring 1929sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2283,4 Bedroom Semi Detached,Ikoyi Lagos,₦,"380,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2284,Brand New 4 Bedroom Detached House,Banana Highland Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2285,Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +2286,Land,Banana Island Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2287,Land,Acacia Drive Osborne Phase2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2288,Luxurious 4 Bedroom Waterfront Apartment In Banana Island With Swimming Pool,Banana Island Ikoyi Lagos,₦,"185,000,000",0,1,0,4 beds, baths, Toilets,Banana Island +2289,Land Measuring 3800m² Fenced With Gate,Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2290,Land,Alfred Rewane Road Ikoyi Lagos,$,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2291,Waterfront Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +2292,"Brand New 4bedroom Mainsonette Ikoyi, Lagos",Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Ikoyi +2293,Serviced 3 Bedroom Penthouse,Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2294,Fantastic 4 Bedroom Penthouse Masionette,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2295,1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2296,4 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2297,2 Bedroom Apartment,Banana Island Road Ikoyi Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets,Banana Island +2298,Luxurious Water Front 24 Units Apartments With Bq, Banana Island Ikoyi Lagos,₦,"11,000,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +2299,5 Bedroom Terrace House,Osbourne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,0 Toilets,Foreshore +2300,Land Measuring 1000sqm,Lawrence Street Old Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2301,Well Furnish 4bedrooms Semi Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"290,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +2302,4 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2303,Luxury 2 Bedroom Apartment,"Alimosho Street, Dolphin Estate Ikoyi Lagos State. Bourdillon Ikoyi Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2304,1139sqm Land With A Demolishable Structure,Kingsway Road Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2305,Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2306,Massively Built 4 Bedrooms Townhouse,Idanre Close Osborne Foreshore Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2307,2000sqm With A Demolishable Structure,Adeyemi Lawson Of Bourdillon Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2308,2 Bedroom Apartment Fully Serviced,Ikoyi Lagos,₦,"175,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2309,Available Land,Parkview Estate Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2310,Well Sited 900sqm Of Land,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +2311,3133 Sqm Of Land,Facing Bank Road And Mcgregor Roads Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2312,"A Waterfront Land Measuring 4,750 Sqm",Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2313,Land,Ikoyi Lagos,₦,"780,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2314,Elizabeth Grace Court 3,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Foreshore +2315,Available Land,Ojota Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2316,Fully Serviced 4 Bedroom Flat With Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2317,Land Measuring 1000sqm,"Lawrence Street, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2318,Newly Built 6 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +2319,Luxury 4 Bedroom Penthouse Maisonette,Old Ikoyi Lagos Ikoyi Lagos,₦,"550,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +2320,"Standard 5 Bed Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2321,A Beautifully Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +2322,Land,Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2323,3bedrooms Apartment For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +2324,"Brand New Luxury & Spacious 6 Bedroom Fully Finished And Fully Serviced Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Shoreline Estate Ikoyi Lagos State. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",1,1,0,6 beds,7 baths,7 Toilets,Onikoyi +2325,Executive 3 Bedroom Waterfront Apartments,Z Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2326,"Block Of 12 Units 3 Bedroom Flats On 2,400sqm Plot + Swimming Pool & Gym",Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Parkview +2327,25 Units Of Luxury Flats,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,0 Toilets,Banana Island +2328,Newly Built 3 Bedroom Apartment,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets,Onikoyi +2329,3 Bedroom Flat,Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2330,4800 Sqmeter Water Front Plot,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2331,5 Bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2332,New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2333,"Exquisitely 6 Bedrooms Detached Duplex With Cinema Room, Pool, Elevator",Banana Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2334,Luxury Serviced 3 Bedroom Furnished Apartment + 1 Room Bq,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds, baths, Toilets,Old Ikoyi +2335,25 Units Of Luxury Flats,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2336,"Newly Built Luxury Waterfront 4 Bedroom Fully Finished And Fully Serviced Detached Duplex With Air Conditioning ,fully Fitted Kitchen And 2 Rooms Bq",Osbourne 1 Foreshore Estate Lagos State. Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +2337,5bedroom Terrace Duplex,D Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +2338,"Luxury 3 Bedroom Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +2339,"Brand New, Luxury And Well Finished 4 Bedroom Flat With A Room Servant’s Quarter At Abraham’s Court Estate, Rumens Road, Ikoyi, Lagos.","Abraham’s Court Estate, Rumens Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"205,000,000/year",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +2340,8 Units Of 5 Bedrooms Terrace Building With Swinming Pool Gym Centre,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +2341,5bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,5 Toilets,Banana Island +2342,2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +2343,"1,800sqm Land",Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2344,4000 Sq.m Waterfront Plot, Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2345,A Waterfront Bare Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2346,"5,300sqm Land",Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2347,Land Measuring 5400² Fenced With Filling Foundation And Lasg Consent,Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2348,4 Bedroom Duplex With 2 Room Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2349,"3,280sqmt Land",Onitana Street Off Frist Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2350,Well Built 4 Bedroom Luxury Terraced Duplex,"Off Bourdillon Road, Ikoyi, Lagos Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2351,"Land Measuring 1,900sqm",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2352,5 Bed Fully Detached Home With Private Elevator,Ikoyi Lagos,₦,"950,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +2353,Land,Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2354,Land,Mobolaji Johnson Ikoy Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2355,Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2356,Brand New 5 Bedroom With 2 Room Bq,Glover Road Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2357,Land,Ilabere/ Ilu Drive Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2358,1 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"100,000,000",1,0,1,1 beds,1 baths,2 Toilets,Banana Island +2359,"1,000sqms Mixed Used Land",Milverton Road Old Ikoyi Ikoyi Lagos,₦,"855,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2360,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2361,"2,500sqm Land",Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2362,1891.69 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2363,Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2364,Land,Osborne Phase1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2365,Executive 4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2366,Distress Sale Of 4 Bedroom Pent Floor + 2 Rooms Bq And 4 Parking Spaces,Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2367,Luxury Home Off Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +2368,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2369,"Contemporary, Elegant And Luxurious Hotel",Osborne Foreshore Estate Ikoyi Lagos,₦,"4,300,000,000",0,0,0, beds, baths, Toilets,Foreshore +2370,Brand New 5bedroom Fully Detached Duplex,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +2371,3 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +2372,Newly Built 4 Bedroom Duplex,Ruston Road Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2373,Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +2374,4bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2375,4bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2376,500sqm Of Land,Osborne Phase 2 Ikoyi Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2377,Massionette House,Banana Lsland Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2378,"Superbly Finished Automated 5 Bed Fully Detached House With Elevator, Cinema, Gym And Swimming",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2379,Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2380,Waterfront 3 Bedroom Flat With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,4 baths,4 Toilets,Foreshore +2381,2 Units Luxury 6 Bedroom Flats,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2382,Land,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2383,Luxury 4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Onikoyi +2384,About 875sqm Land,Mekuwen Off Bourndillion Road. Bourdillon Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2385,4500/sqmts Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2386,Land Measuring 900sqm,Shoreline Estate Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2387,"5,553sqm Of Land In Ikoyi",Mekunwen Ikoyi Lagos,₦,"1,804,725,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2388,1700 Square Meters Waterfront Land, Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2389,Elite Class Fully Automated 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,6 baths,6 Toilets,Old Ikoyi +2390,"Newly Built 5 Bedroom Detached House With Bq, Gate House And Pool",Gerard Road Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2391,Ultra Luxury 4 Bedroom Maisonette + Bq With Suspended Swimming Pool (delivering Jan 2022),Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +2392,"Brand New Luxury 3 Bedroom Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +2393,Executive 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,1,5 beds,6 baths,6 Toilets,Banana Island +2394,6 Unit Of 3 Bedroom Apartment And A Penthouse With 1bq Each,Mojisola Onikoyi Area Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +2395,Brand New Block Of 24 Units 3 Bedroom Flats + 3 Units Of 3 Bedroom Penthouses,Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2396,Fully Serviced 3bedroom Apartment,Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2397,Newly Built Luxury 4 Bedroom Fully Serviced Terrace Duplexes,"40 Bourdillon, Old Ikoyi Ikoyi Lagos",$,"2,000,000",1,1,1,4 beds,5 baths,5 Toilets,Old Ikoyi +2398,"4,700sqm Land For Sale On Alexander Avenue, Ikoyi, Lagos",Ikoyi Lagos,₦,"3,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2399,Luxury 3 Bedroom Serviced Upper Floor Apartment,"Old Ikoyi, Lagos State. Old Ikoyi Ikoyi Lagos",₦,"280,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2400,"Luxuriously Finished 4 Bed Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi Lagos,₦,"700,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2401,Newly Built Luxury 5 Bedroom Maisonnete In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +2402,3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Parkview +2403,Luxury 3 Bedroom Apartment,Glover Road Old Ikoyi Ikoyi Lagos,$,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2404,A Mansion With Bq,Ikoyi Lagos,₦,"1,100,000,000",0,0,0,8 beds,0 baths,0 Toilets,Other Ikoyi +2405,740sqm Land,Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2406,1000.008sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2407,Jv At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2408,5 Bedroom Duplex,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2409,"2,600sqm Land",Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2410,6000sqm Of Land,Second Avenue Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2411,5bedroom Fully Detached Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2412,Very Hot Waterfront Land On Residential Zone,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +2413,1344sqm Of Well Located Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Foreshore +2414,3 Bedroom Apartment And A Penthouse With A Bq,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +2415,Land,Macgregor Ikoyi Lagos,₦,"300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2416,Luxury Blocks Of Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"123,000,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +2417,"1,000sqm Of Land",2nd Avenue Estate 2nd Avenue Extension Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2418,Luxurious 3 Bedroom Waterfront Apartment,Banana Island Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,0 baths,0 Toilets,Banana Island +2419,A Luxury 5 Bedroom Fully Detached Duplex + Bq With Waterfront View,"Patrick Habour Estate , Off Onikoyi , Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets,Onikoyi +2420,Land Measuring 7000m² Fenced With Gate,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2421,Executive 2 Bedroom Apartment,Turnbull Road Ikoyi Lagos,₦,"110,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2422,Brand New 4bedroom Mainsonette With A Bq,Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +2423,"Prestigous Super Classy 5 Bed Fully Detached Home With Private Elevator, And Cinema",Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +2424,"Luxury 3 Bedrooms Apartment With Swinming Pool, Gym Centre, Bq",Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2425,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +2426,Well Finished 2 And 3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +2427,Land,Ikoyi Lagos,₦,"530,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2428,4bedroom Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2429,Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2430,Luxury 3 Bedroom Serviced Upper Floor Apartment,Mojisola Onikoyi Estate Ikoyi. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Onikoyi +2431,Very Hot Waterfront Land On Residential Zone,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0, beds, baths, Toilets,Banana Island +2432,High Rise Building,"Off Kingsway Road, Ikoyi Lagos",₦,"15,000,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +2433,Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2434,Luxury 6 Bedroom Fully Detached,Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2435,3 Bedroom Luxurious Apartment Available,Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +2436,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2437,800sqm Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2438,Luxury 6 Bedrooms Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2439,4 Bedroom Terrace Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Foreshore +2440,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"178,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2441,Waterfront 5 Bedrooms Detached Duplex With Swinming Pool,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2442,Brand New And Solidly Built 5 Bedroom Semi Detached Duplex With Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Foreshore +2443,5 Bedrooms Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Onikoyi +2444,7 Bedrooms Fully Detached Duplex On 3 Floors Plus A Mini Flat,Parkview Estate Ikoyi Lagos,₦,"1,700,000,000",0,1,0,7 beds,7 baths,8 Toilets,Parkview +2445,Luxury Finished 3 Bedroom Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +2446,A Brand New Extremely Luxury 4 Bedroom Flat +bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +2447,24000sqm Of Land, Bourdillon Ikoyi Lagos,₦,"6,570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2448,"Luxury Estate On 2710sqm Land Of 10 Units Of 3bedroom Flats,3 Units Of 2bedroom Flat, 2 Units Of 1bedroom Flat","Onikoyi Road, Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2449,4580sqm Land Up,Gerard Road Old Ikoyi. Gerard Road Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2450,Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2451,Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2452,Land,Glover Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2453,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2454,Serviced 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2455,"4,800sqm Land (can Sell 2800sqm , 2400sqm And 2000sqm)",Kings Way Road Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2456,Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2457,"2,000sqm Land",Banana Island Ikoyi Lagos,₦,"1,025,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2458,Luxury Newly Built 4 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2459,"Well Located Land Measuring 1,119sqm",Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"690,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +2460,Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2461,1891.69 Sqms Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2462,Newly Built 5 Bedroom Detached Duplex With Maids Room,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2463,Serviced 3 Bedroom Apartment With Maid’s Room,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2464,Luxury 6 Bedroom Fully Detached,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2465,Furnished 5 Bedrooms Luxury Detached Mansion,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,1,5 beds,5 baths,6 Toilets,Old Ikoyi +2466,Perfect 4 Bedrooms Semi Detached Duplex With Swimming And Gym,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2467,"1,139sqm Commercial Land",Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2468,Brand New 5 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +2469,Land,Zone L Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2470,4600sqm Of Land,Macgregor Street Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2471,3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2472,Very Lovely 5 Bedrooms Fully Detached And Serviced Mansion,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2473,Land Measuring 1015sqm,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2474,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2475,Luxury 4 Bedroom Apartment,Alexander Avenue Ikoyi Lagos,₦,"250,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2476,Land,Z Banana Island Ikoyi Lagos,₦,"560,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2477,Available Land,Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2478,"1,180sqm Land",Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2479,4 Units Of 4 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2480,Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq,"Kingsway Road Ikoyi, Lagos State. Old Ikoyi Ikoyi Lagos",₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +2481,Executive Exquisitely Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,4 Toilets,Other Ikoyi +2482,24 Units Of 3bedrooms Flat And 3 Pent Houses,Ikoyi Lagos,₦,"7,500,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +2483,Excellent 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2484,6 Bedroom Fully Detached Smart Home,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,7 baths,8 Toilets,Banana Island +2485,Land,Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2486,4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2487,3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2488,6100 Sqmeter Water Front*,Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2489,Newly Built 3 Bedroom,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +2490,Land,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2491,3000 Sqm Of Land,Directly On Alexander Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2492,Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2493,A Newly Built 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +2494,Well Finished Waterfront 5 Bedroom Detached Duplex With 2 Bq At Onikoyi,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Onikoyi +2495,Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Off Kingsway Road Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2496,Luxury 5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2497,A Beautifully Built 4 Bedroom Terraced Duplex With A Room Bq,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +2498,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2499,"Lush 5 Bedroom Detached House For Sale In Banana Island,ikoyi,lagos.",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +2500,"Well Situated Plot Of Land Measuring 1,002sqm",Milverton Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2501,Land With An Uncompleted Structure,2nd Avenue Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2502,"5 Bedroom Duplex With Bq, Master's And Madam Bedroom, Family Lounge Etc (2 Units Left)", Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2503,Exquisitely Designed & Finished Contemporary Oceanview 6 Bedroom Detached Luxury Mansion,Ikoyi Lagos,$,"5,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2504,Luxury 5 Bedroom Mansion,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,0 Toilets,Onikoyi +2505,Land,Along Turnbull Road Ikoyi Lagos,₦,"440,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2506,Newly Built 3bedroom Apartment With Bq Suaited In A Serene Environment,Cooper Road Ikoyi S.w Ikoyi Lagos,$,"1,000,000/year",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2507,11 Units Of Brand New 3 Bedroom Flats With Boys Quarters, Ikoyi Lagos,₦,"2,400,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2508,Brand New 4 Bedroom Terrace,Dillon Parkview Estate Ikoyi Lagos,₦,"130,000,000/sqm",1,1,0, beds, baths, Toilets,Parkview +2509,Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2510,"A Land Measuring 1,245sqm",Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2511,Ultra Luxury Ocean View 6 Bed Fully Automated Detached Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds, baths, Toilets,Other Ikoyi +2512,Executive 4 Bedroom Semi Detached And Fully Detached Duplex,Off Turnbull Road Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2513,Luxury 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +2514,"6,000sqm Land",Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2515,304sqm Of Land,Off Keffi Road Ikoyi Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2516,"Newly Built Luxury 8 Bedroom Fully Finished And Fully Serviced Duplex With Air Conditioning ,fully Fitted Kitchen And 2 Rooms Bq",Osbourne 1 Foreshore Estate Lagos State. Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",1,1,0,8 beds,9 baths,9 Toilets,Foreshore +2517,4 Bedroom Maisonnette With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +2518,Available Land,Bedwell Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2519,Water Front Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2520,A Beautifully Built And Well Furnished 5 Bedroom Detached Duplex With 3 Rooms Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +2521,"Luxury Newly Built 5 Bedroom Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +2522,Mixed Used Land,"Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2523,Luxury 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2524,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2525,500sqm Of Land,Off Alexander Avenue Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2526,20 Unit Of 3 Bedroom Apartment With 1bq Each,Onikoyi Road Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Onikoyi +2527,1900sqms Joint Venture, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2528,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2529,Luxury Brand New 3 Bedroom Serviced Upper Floor Apartment,Old Ikoyi Lagos State. Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2530,746sqm Of Well Titled Land In A Serene Gated Estate,Second Avenue Estate Abacha Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +2531,3 Bedroom Flat With Bq,Thompson Avenue Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2532,Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Ikoyi +2533,"4,400sqm Land For Sale At Kingsway Close, Ikoyi, Lagos",Ikoyi Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2534,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2535,"Corner Piece 4,506sqm For Joint Venture",Bayo Kuku/gerard Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2536,2 Bedroom Luxury Apartment + Bq,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2537,Four Bedroom Apartment Available,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2538,Newly Built Furnished Three (3)bedroom Terrace Plus Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +2539,2600sqm Of Land,Club Road/oba Elegushi Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2540,3100sqm Of Land In A Fantastic Location,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +2541,3000sqm Fenced & Gated Waterfront Land With Jetty,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Foreshore +2542,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2543,Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2544,Luxuriously Finished Newly Built 7 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,7 beds,7 baths,7 Toilets,Banana Island +2545,"Land Measuring 5,000sqm",Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2546,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +2547,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"1,000,000,000",1,1,1,5 beds,6 baths,6 Toilets,Banana Island +2548,"Brand New, Contemporary And Tastefully Finished 5 Bedroom Fully Detached Duplex, With 3 Bedroom Boys Quarter",Off Turnbull Road Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2549,Land,Ikoyi Lagos,₦,"1,075,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2550,Presidential 6 Bedrooms Detached Duplex With Swimming & Gym,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2551,4 Bedroom Fully Detached Duplex,Maitama Sule Street Awolowo Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2552,Land,Acacia Drive Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2553,Land,Banana Island Ikoyi Lagos,₦,"850,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2554,Land Measuring 1090sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2555,Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2556,Super Luxury 30 Bedroom Boutique Hotel,Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2557,3 Bedroom Terraced Duplex With Bq,Osborne Phase 2 Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +2558,Land,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2559,3 Units Of 4 Bedroom Terraced Duplex,Onikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +2560,"Executive 5bedroom Duplex, In An Estate At Ikoyi",Ikoyi Lagos,₦,"400,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Other Ikoyi +2561,"Prime 1,000sqm Residential And Fenced Land",Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2562,Decently Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +2563,4bedroom Semi Detached Duplex,Mc Pherson Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2564,Newly Built Luxury 4 Bedroom Fully Serviced Apartment With 2 Rooms Servant’s Quarters,"Banana Island Road, Plot 6, Block 7, Osborne Foreshore Estate Ikoyi Lagos",₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets,Foreshore +2565,5 Bedroom Semi Detached Duplex With A Room Bq,Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +2566,Luxury 3bedroom Flat,2nd Avenue Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +2567,"Executive 5bedroom Detached Duplex Apartment With A Room Bq, At Ikoyi",Ikoyi Lagos,₦,"600,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Other Ikoyi +2568,5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +2569,"Banana Island, Ikoyi Within The Mixed Development Zone. It Consists Of Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters",Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +2570,Relatively New 8bedroom Flat In A Serene Neighborhood,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,9 baths,9 Toilets,Foreshore +2571,Land,Zone Q Waterfront Banana Island Ikoyi Lagos,₦,"1,150,000/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2572,Newly Built Executive And Luxurious 3 Bedroom Apartment With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +2573,Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2574,11 Units Of 3 Bed Luxury Apartments With Bq,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2575,Exclusive 3 Bedroom Apartment,2nd Avenue Estate Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2576,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +2577,5 Bedroom Terrace House,Osbourne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,0 Toilets,Foreshore +2578,Beautiful Water Front Detached House For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +2579,"Status 5 Bedrooms Detached Duplex With Swimming Pool, Gym And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2580,7 Bedroom Fully Detached House With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +2581,Beautiful 4 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2582,8200 Sqms Water Front Land,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2583,Excellent 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +2584,12 Bedroom Maisonette And 1 Penthouse,Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +2585,Luxury 1 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"82,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2586,4 Bedroom Terraced Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +2587,4 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,6 Toilets,Parkview +2588,"Elizabeth Grace Court 1,",Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets,Parkview +2589,"5,561sqm Of Land In Ikoyi",Ikoyi Crescent Ikoyi Lagos,₦,"1,807,325,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2590,"8,000sqm Plot Of Land In Old Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +2591,"4,100sqm Waterfront Land", Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2592,A Land Size Of 1134 Square Meter Residential Plot,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2593,6bedrooms Fully Detached Duplex For Sale In Ikoyi,... Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +2594,601sqm Of Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"270,450,000",0,0,0, beds, baths, Toilets,Old Ikoyi +2595,Lovely 5 Bedrooms Detached Duplex Newly Built With Swinming Pool & Gym Centre,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2596,6 Bedroom Detached Duplex For Sale Inside Banana Island Ikoyi,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths, Toilets,Banana Island +2597,Newly Built 4 Bedroom Terraced Duplex With A Bq,Kingsway Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +2598,Hot Joint Venture,"Osborne Phase 2, Ikoyi, Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2599,Luxury 4 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2600,Land,Bank Road Old Ikoyi Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2601,"1,000sqm Of Waterfront Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2602,"Luxiourious 9bedroom Detached Manson, At Banana Island, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"17,000,000/day",1,0,1,9 beds,10 baths,10 Toilets,Old Ikoyi +2603,A Well Maintained 2 Bedroom Flat,Off Awolowo Road Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds, baths, Toilets,Banana Island +2604,4 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2605,Land,Banana Island Ikoyi Lagos,$,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2606,Corner Piece Land Of 536sqm Suitable For Any Development,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2607,About 11500sqm With Old Structure Up,Gerard Road Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2608,Tastefully Built 3bedroom Maisonette In A Secured And Serene Environs,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2609,"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen","Ilubirin , Osbourne 2 Ikoyi. Osborne Foreshore Estate Ikoyi Lagos",₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets,Foreshore +2610,Land Measuring 4000m²,Banana Island Ikoyi Lagos,₦,800,0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2611,A Brand New 4 Bedroom Terraced Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +2612,3bedroom All Ensuit,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2613,An Exquisitely Furnished 5 Bedrooms Luxury Detached House,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,1,5 beds,5 baths,6 Toilets,Old Ikoyi +2614,Land,Osborne Phase2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2615,Fully Furnished 4 Bedrooms Mansionette With Bq,Osborn 2 Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +2616,Newly Built 5 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +2617,Land Measuring 800sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2618,4500/sqmts Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2619,"Luxury 5 Bedroom Duplex With Servant Quarter Location: Ikoyi,jw",Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2620,3 Bedroom Flat With A Bq,Banana Islamd Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2621,Newly Built 4 Bedrooms Semi Detached House,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +2622,Opulent Quality 5 Bed Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,7 Toilets,Old Ikoyi +2623,5bedrooms Massionette,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2624,Land,Along Cooper Road Ikoyi Lagos,₦,"550,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2625,46000 Sqms Land,Old Ikoyi Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2626,Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2627,Smart And Furnished 5bedroom Duplex,Banana Island Ikoyi Lagos,₦,"2,400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Banana Island +2628,1700sqm Waterfront Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2629,Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2630,"A Corner Piece Land Measuring 2,500 Sqm",Osborne Ph2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Foreshore +2631,Spacious 4 Bedroom Terrance Duplex,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2632,5 Bedroom Detached House With Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2633,8200 Sqms Waterfront Land,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2634,Land,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2635,Land,Ligali Ayorinde Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2636,5 Bedroom Fully Detached Duplex With 2room Bqs,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2637,3 Bedroom Furnished Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"26,000,000",0,0,1,3 beds,4 baths,4 Toilets,Banana Island +2638,Serviced 3 Bedroom Flat With Bq,Banana Link Road Ikoyi Lagos,₦,"260,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +2639,A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2640,Well Finished Filling Station,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2641,Fully Automated 5 Bed Detached Duplex With 2 Bqs,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2642,Newly Built 4 Units Of 2bedroom Apartments,Ikoyi Lagos,₦,"175,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +2643,Newly Built Luxurious 5 Bedroom Detached House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2644,Land,Ligali Ayorinde Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2645,5bedrooms Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +2646,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +2647,*for Sale* Newly Built 4bedroom Fitted Terrace Duplex In *parkview Estate* ( *10 Units Available * ) *title: C Of O & Deed Of Sublease* *price: #160,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +2648,Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2649,Newly Built High Rise Building 24flat 3bedroom +3 Penthouse,Adeyemi Lawanson Street Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2650,A Very Good 1000sqm Land At Banana Island,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Banana Island +2651,Ongoing 3 Bedroom Bq Off Plan Sales, Awolowo Road Ikoyi Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2652,A 1000sq Meter With 30 Meter Width,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2653,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +2654,"5,000sqm Land",Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2655,A Land Size Of 4611 Sqmeter Water Front Plot,Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2656,Luxury 4bedrooms Duplex,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +2657,Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2658,Luxury 4 Bedroom Maisonette With Maid’s Room.,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +2659,Luxury 3 Bedroom Apartment In Parkview Estate Ikoyi,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Parkview +2660,Luxury 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"115,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2661,4bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2662,Exclusively Built 3 Bedroom Flat With A Bq Located In An Estate, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2663,"Executive 5bedroom Fully Detached Duplex With 2room Bq, At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"850,000,000/day",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +2664,1500sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2665,"Brand New, Contemporary And Tastefully Finished 5 Bedroom Semi Detached Duplex With 2 Bedroom Boys Quarter",Off Turnbull Road Ikoyi Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2666,A Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +2667,4 Bedroom All En Suite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2668,"1,600sqm And 2,400sqm Land",Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2669,"1,200sqm Land",Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2670,"3,600sqm Land",Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2671,5bedrooms Ultra Modern Luxury Terrace Duplex For Sale At Banana Island,Inside Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets,Banana Island +2672,Luxury Fully Automated 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2673,Luxury 4 Bedroom Terraced Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2674,Land,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2675,A Newly Built 3 Bedroom Flat With A Room Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +2676,"Block Of Flats At Norman Williams Street, Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Old Ikoyi +2677,Luxury 4 Bedrooms Terrace Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +2678,Luxurious 3 Bedroom Apartment With Study,Olori Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2679,Luxury 6 Bed Townhouse With Bq And Swimming Pool,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds, baths, Toilets,Other Ikoyi +2680,500sqm Of Land In A Fantastic Location,Parkview Estate Ikoyi Lagos,₦,"236,000,000",0,0,0, beds, baths, Toilets,Parkview +2681,3 Bedroom Fully Serviced Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2682,Water Front 4 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +2683,6 Block Of Flats,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Old Ikoyi +2684,About 1000sqm Land,"2nd Avenue, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2685,Newly Built Beautifully Finished 6 Bedroom Fully Automated Magnificent & Detached House, Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,1,6 beds,6 baths,7 Toilets,Banana Island +2686,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +2687,A High Rise Building In Ikoyi .the Square Meter Is 5322 Meter,S Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2688,Brand New Luxury 2 Bedroom Serviced Upper Floor Apartment,Bourdillon Ikoyi Lagos,₦,"180,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2689,4bedroom Water Front Property,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2690,5bedroom Newly Built Luxurious Mansion For Sale At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +2691,Exactly 3400sqm With Old Structure,Bourdillon Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2692,Newly Built 24 Flats Of 3 Bedrooms Each And 3 Penthouses,Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2693,"6,900sqm Of Land",Queen's Drive Ikoyi Lagos,₦,"2,271,750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2694,4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2695,Exquisitely Luxury Finished 6 Bedroom Mansion Pr,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +2696,Ultra Luxury 4 Bedroom Maisonette + Bq With Suspended Swimming Pool (delivering Dec. 2022),Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,0, beds, baths, Toilets,Foreshore +2697,Brand New 4 Bedroom Semi Detached House With Bq,Banana Island Ikoyi Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2698,"A Demolishable Building Consisting 1 Unit 3 Bedroom Flat, Units 2 Bedroom Flat & 2 Units Sefcontain Apartments Plus Bq",Off Alexander Road Lagos State. Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2699,A Well Maintained 3 Bedroom Flat,Off Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +2700,Land,Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2701,Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2702,Tastefully Built 5 Bedroom Detached Duplex In Ikoyi,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +2703,"Luxurious And Modern 5 Bedroom Detached Waterfront Duplex With Bq, Pool And Elevator", Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2704,Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2705,A Land Measuring 900 Sqm,Shoreline Estate Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2706,5 Bedroom Fully Detached Duplex,Zone B Banana Island Ikoyi Lagos,₦,"1,500,000,000/sqm",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +2707,Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,3 beds,3 baths,4 Toilets,Banana Island +2708,2500sqm Of Land,Macpherson Avenue Macpherson Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2709,5 Bedroom Detached Residence,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2710,800 Square Meters Of Land For Joint Venture,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2711,Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2712,Land,Z Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2713,A Well Built 4 Bedroom Terraced Duplex Wit A Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +2714,5bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +2715,Land Measuring 1245sqm,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2716,5 Bedroom Detached House,Aqua Point Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +2717,4 Bedroom All En Suite Serviced Apartment With Bq,Off Bourdillon Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2718,4 Bedroom Terrace Duplex,Turnbull Road Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2719,Land Of Sale At Off Gerrard Road Ikoyi,Gerrard Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2720,Luxury 6 Units Of 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Banana Island Ikoyi Lagos,$,"15,000,000",1,0,1,3 beds,3 baths,4 Toilets,Banana Island +2721,Elizabeth Grace Court 3,"Osbourne Foreshore 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Foreshore +2722,Exquisitely Furnished 5 Bedroom Fully Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +2723,Waterfront 700sqm Available,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2724,6bedroom Detached House For Sale Inside Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +2725,Luxury 6 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +2726,600sqm Of Land,Keffi Street Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +2727,Land,Old Ikoyi Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2728,3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Parkview +2729,746sqm Of Land,Second Avenue Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2730,Well Upgraded 2 Bedroom Apartment,Alimosho Street Dolphin Estate Ikoyi Lagos,₦,"25,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2731,18 Units Of 3 Bedroom Flats And And 3 Penthouses,S Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2732,Land,Old Ikoyi Ikoyi Lagos,₦,"3,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2733,4 Bedroom Residence,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +2734,Luxurious 24 Units Of 4 Bedrooms Flat With Bq,Banana Island Ikoyi Lagos,₦,"11,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2735,A Beautifully Built 4 Bedroom Maisonnette With A Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +2736,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2737,Magnificent 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +2738,Luxury And Exquisitely Finished 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +2739,4 Bedroom Duplex With 2 Rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +2740,Spacious And Lovely Environment 4 Bedroom,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +2741,5bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2742,5 Bedroom Apartment/maisonette.,Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2743,Executive Luxury 4 Bedroom Terrace Duplex With 2 Rooms Bq.,Banana Island Ikoyi Lagos,₦,"450,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2744,3 Bedroom Terraced Duplex,Around Bourdillon Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +2745,5 Bedroom Semi Detached Townhouse,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths, Toilets,Banana Island +2746,3 Bedroom Luxury Apartments,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +2747,4 Bedroom Maisonette With Bq,Off Alfred Rewane. Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +2748,5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2749,Land,Olori Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,0 beds,0 baths,0 Toilets,Onikoyi +2750,4bedroom Maisonette Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Parkview +2751,"Joint Ventures 2,400sqm Land",Off Queen Drive Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2752,6 Bedroom Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,$,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +2753,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2754,Contemporary 6 Bedroom Fully Detached Mansion With 2 Maid Rooms,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,1,6 beds,6 baths,7 Toilets,Banana Island +2755,3 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +2756,Fully Furnished 4bedroom Penthouse At Oniru,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2757,5 Bedroom Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +2758,Exquisitely Finished 4 Bedroom Maisonatte With A Room Bq,Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +2759,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2760,Waterfront Luxury 5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2761,Fully Serviced Four(4) Bedroom Terrace With Staff Quarter’s,Banana Island Ikoyi Lagos,₦,"520,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2762,5 Bedroom Contemporary House And A Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2763,1100sqm Waterfront Land With Old Structure,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2764,5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +2765,Tastefully Finished 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2766,740sqm Land,Thurnbul Rd Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2767,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +2768,Massive 5 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +2769,Luxury 4 Bedroom Duplex,By Banana Island Estate Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,4 beds,4 baths,4 Toilets,Banana Island +2770,Excellent 3 Bedroom Apartment With A Boys Quarter,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +2771,Four Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2772,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +2773,6 Bedroom Contemporary House And A Bq,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +2774,5 Bedrooms Fully Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2775,4 Bedroom Semi Detached Duplex With 2 Rooms Bq.,Osborne Estate Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,0 Toilets,Foreshore +2776,Serviced 5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +2777,"Water Front Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Banana Island Ikoyi Lagos,₦,"580,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +2778,5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +2779,2 Bedroom Smart Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +2780,Luxury 4 Bedroom With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +2781,Land,Ilubirin Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2782,Land,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"770,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2783,2805 Sqm Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2784,Land,"Oworoshoki, Victoria Island, Ikoyi Ikoyi Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2785,5bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +2786,3 Bedroom With An Attached Bq At Ikoyi,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths, Toilets,Other Ikoyi +2787,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2788,4 Bedroom Maisonette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +2789,Magnificent Edifice On An Exclusive Island,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +2790,"Joint Venture 10,000 Sqm",Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2791,Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,7 beds,8 baths,8 Toilets,Other Ikoyi +2792,6000sqm Plot Of Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2793,4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +2794,"This Lovely 5 Bedroom Semi Detached Duplex With Two Bqs, Three Living Rooms And A Study Is Located In A Secured Estate",Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2795,3 Bedroom Pent House,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +2796,"4 Bedroom Terraces With Bq, Swimming Pool And Gym",Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +2797,1340sqm Of Land,Close Off Acacia Osborne Foreshore Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2798,"6 Bedrooms, 2 Unique Living Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +2799,Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2800,Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2801,2500sqm Corner Piece Land.,Bayo Kuku And Kingsway Road Opposite The Garden Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2802,"Serviced 3 Bedroom Apartment With Swimming Pool, Gym, Cinema",Ikoyi Lagos,₦,"155,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2803,"Serviced Luxury 3 Bedroom Apartment With Swimming Pool, Gym And Bq",Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2804,Waterfront 4 Bedroom Semi Detached House With A Bq,Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2805,5 Bedroom Maisonette With 2 Rooms Boy's Quarter, Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +2806,Land,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2807,Joint Ventures Land,Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2808,Brand New 4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2809,4 Bedroom Detached House,Dolphin Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2810,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2811,4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2812,2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2813,4 Bedroom Terrace,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2814,4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2815,4 Bedroom Terrace House,Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2816,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2817,Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2818,6 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +2819,Deluxe 5 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2820,Luxury Finished 4 Bedroom Townhouse,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2821,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2822,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2823,1661.827 Square Meters Land,Oba Elegushi Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2824,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2825,Available Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2826,10 Unit Of 3 Bedroom Flat With Bq And One 4 Bedroom Penthouse With Bq,Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2827,Available Land,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2828,Available Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2829,Available Land,Royal Palm Drive Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2830,2700 Square Meters Waterfront Property,Alexander Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2831,Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2832,Available Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2833,Available Land,"Mekwuen Road, Off Queens Drive Ikoyi Lagos",₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2834,Available Land,Bedwell Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2835,Fully Furnished Luxury 4 Bedroom Massionette With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +2836,1700m² Waterfront Land,Olori Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2837,Available Land,Alexandra Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2838,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2839,Waterfront Brand New 4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +2840,3 Bedroom Fully Detached House,Awolowo Road Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +2841,4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2842,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2843,Newly Built 5 Bedroom Luxury Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2844,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2845,Luxury 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +2846,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +2847,6 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +2848,Luxury 4 Bedroom Apartments,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +2849,"Luxury 3 Bedroom Duplex With A Study, Gym, Swimming Pool", Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2850,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2851,Available Land,Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2852,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2853,3 Bedroom Flat,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2854,4 Bedroom Terraces With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +2855,Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2856,Waterfront Brand New 5 Bedroom Semi Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +2857,Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2858,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2859,Awe Inspiring 3bedroom Apartment+bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2860,4 Bedroom Maisonette Apartment.,Cecilia Noyes Place Banana Island Ikoyi Lagos,$,"950,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +2861,5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2862,3 Bedroom Apartment,Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2863,"About 1,800sqms Of Land With 5 Bedroom",Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2864,4 Bedroom Flat,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2865,6 Bedrooms Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2866,Available Land,Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2867,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2868,Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2869,Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2870,4 Bedroom Pent House,Thompson Prive Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +2871,Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2872,Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2873,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2874,Massive 6 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2875,Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2876,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2877,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2878,4 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2879,Available Lands,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2880,Luxury Finished 4 Bedroom Semi Detached,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2881,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2882,Available Land,Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2883,Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2884,"3 Bedroom Flat With Swimming Pool, Gym And Bq",Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2885,Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2886,Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2887,Well Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2888,Exquisitely Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2889,Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2890,Available Land,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2891,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2892,Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2893,Land,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2894,Available Land,Bedwell Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2895,4 Bedroom Penthouse Maisonette With Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2896,4bedroom Massionette,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +2897,Brand New 4 Bedroom Terrace Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2898,3 Bedroom Apartment.,Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Foreshore +2899,Executive Massive 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2900,Luxury 5 Bed Semi Detached Smart Home With A Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2901,Available Land,Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2902,Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2903,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2904,Available Lands,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2905,2 Bedroom Serviced Apartments,Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +2906,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2907,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2908,Luxury Finished 4 Bedroom Townhouse,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2909,Land,Bourdillon Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2910,Well Built 3 Bedroom Apartment,Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2911,Luxury 3 Apartments,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2912,Available Land,Bourdillon Ikoyi Lagos,₦,"73,500/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2913,4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2914,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2915,Available Land,Mekwen Land Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2916,Available Land,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2917,Waterfront Brand New 5 Bedroom Fully Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +2918,Available Land,Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2919,Furnished 5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2920,5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +2921,4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2922,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2923,3 Bedroom With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +2924,3 Bedroom Massionette With A Bq,Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +2925,3 Bedrooms Flat,Off Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +2926,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2927,Available Land,Banana Island Ikoyi Lagos,$,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2928,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2929,Breathtaking 6 Bedroom Contemporary Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,350,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +2930,4 Bedroom Unit,Ikoyi Lagos,$,"4,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2931,Land,Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2932,Luxury 3bedroom Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +2933,4 Bedrooms Terraces Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2934,Available Land,Club Road Off Glover Road Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2935,Available Land,Glover Road Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2936,3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2937,4000sqmts Land,Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2938,Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"560,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2939,5 Bedroom Fully Detached House With A Room Bq Swimming Pool And Gym Elevator,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2940,6 Bedrooms Terrace,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2941,Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +2942,Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2943,4 Bedroom Semidetached Duplex With Bq,Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2944,Luxury 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2945,Deluxe 5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2946,4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2947,Available Land,Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2948,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,0 Toilets,Banana Island +2949,Available Land,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2950,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2951,Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2952,Magnificent 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2953,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2954,Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2955,Available Land,Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2956,"Corner Piece Plot Measuring 1,767sqm",Off Queens Drive Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2957,Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2958,4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +2959,Spacious 5 Bedroom Detached With A Bq,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +2960,3 Bedroom Apartment,Adeyemi Lawson Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +2961,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2962,Deluxe 5 Bedroom Terraced Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,$,"1,700,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2963,Available Land,2nd Avenue Extension Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2964,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2965,Newly Built 4 Bedroom Waterfront Massionette,Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2966,Top Notch Well Spaced 4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +2967,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +2968,Available Land,Bourdillon Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2969,Exquisite 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2970,Available Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +2971,6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +2972,Available Land,Bourdillon Ikoyi Lagos,₦,"735,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2973,Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2974,4 Bedroom Terrace House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2975,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2976,Available Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +2977,Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2978,Luxury 5 Apartment With Swimming Pool,Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2979,"5 Bedroom Fully Detached Duplex With Swimming Pool, Private Elevator And 2 Room Bq",Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +2980,Brand New 4 Bedroom Semi Detached House Plus 2 Rooms Servant Quarters,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +2981,Plots Of Land,Banana Lsland Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +2982,Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2983,5 Bedroom Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2984,Quality 2 Bedroom Flat With Bq And Gym,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +2985,Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2986,Duplex With Bq,Lugard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2987,Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2988,5 Bedroom Spaced Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2989,High Class Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +2990,Luxurious 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2991,Duplex With Bq,Lugard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +2992,2 Bedroom Serviced Apartments, Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +2993,Newly Built 2 Bedroom Flat With Swimming Pool And Gym,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +2994,Luxury 3 Bedroom All En Suite With A Room Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,5 Toilets,Banana Island +2995,"Luxury 3 Bedroom Flat, Pent House",Osborne Phase2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +2996,3 Bedroom Serviced Apartments With A Room Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +2997,Smart 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +2998,4 Bedroom Penthouse With A Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +2999,Land,Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3000,Storey Buildings,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3001,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3002,3 Bedroom Flats,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3003,Exquisitely Finished 5 Bedrooms Detached Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +3004,5bedroom Fully Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3005,5 Bedroom Penthouses,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3006,3 Bedroom Flat Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3007,3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3008,Duplex With Bq,George Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3009,"Standard Automated 5 Bedroom Detached Duplex With Swimming Pool Cinema, Etc.",Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +3010,Exquisitely Finished 5 Bedroom Detached Smart House,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3011,Well Built 5 Bedroom?? Fully Detached Houses With 2 Rooms Bq All Rooms Ensuite In A Clean & Secured Environment At Banana Island.,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +3012,2800m2 Water Front Land In Good Location,Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +3013,4 Units Of 5bedroom(all En Suite) Terrace,Osborne Foreshore Estate Ikoyi Lagos,₦,"980,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +3014,5 Bedroom Fully Detached,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3015,4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3016,6 Bedroom Fully Detached House,Off Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +3017,10 Unit Of 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3018,Decently Built 4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3019,Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3020,Duplexes With Bq,Fowler Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3021,Beautifully 3 Bedroom Flat Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3022,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +3023,Brand New 5bedroom Fully Detached Duplex With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3024,Luxury 6 Bedroom Mansion With Swimming Pool, Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,0 baths,0 Toilets,Other Ikoyi +3025,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3026,Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3027,Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3028,4 Bedroom Terraced Apartment,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3029,Fully Fitted 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +3030,1000 Sqm Prime Land,Off Bourdillon Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3031,Land,Bourdillon Road Ikoyi Lagos,₦,"4,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3032,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"4,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3033,Land,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3034,Luxury 4 Bed Maisonette,Old Ikoyi Ikoyi Lagos,₦,"365,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3035,Luxury 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3036,4 Bedroom Detached House With Bq,Banana Island Road Ikoyi Lagos,₦,"335,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +3037,"2,500sqm Land",Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3038,10 Blocks Of 3 Bedroom Flats,Off 2nd Avenue Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3039,10 Blocks Of 3 Bedroom Flats,Off 2nd Avenue Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3040,690sqm Land,Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3041,Luxury 4 Bedroom Riverside Apartment,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3042,Land,Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3043,"Furnished 5bedrooms Detached House,",Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3044,Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3045,"1,093sqm Dry Land",Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3046,6 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3047,3100 Sqm Of Land,Osborne 2 Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3048,Plots Of Land,Ruxton Avenue Ikoyi Lagos,₦,"2,240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3049,Acres Of Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3050,"2,071sqm Land",Mekuwen Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3051,2000sqm Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3052,Plots Of Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3053,2000sqm Land,Adeyemi Lawson Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3054,1661.827 Land,Oba Elegushi Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3055,"3,578sqm Land",Queens Drive Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3056,2997sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3057,2000sqm Land,Osborne 1 Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3058,800sqms Land,Osborne Phase One Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3059,"1,340sqm Land",Osborne Layout Ilubirin Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3060,Plots Of Land,Kingway Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3061,Luxury 2 Bedroom Apartments,Ikoyi Lagos,₦,"170,000,000",1,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +3062,Land,Royal Palm Drive Osborne Phase 2 Ikoyi Lagos,₦,"350,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3063,8 Plots Of Water Front Land,Zone L Water Front Banana Island Ikoyi Lagos,₦,"550,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3064,Super Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"320,000,000",0,0,1,3 beds,4 baths,4 Toilets,Other Ikoyi +3065,Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3066,Land,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +3067,4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3068,6 Bedroom Fully Detached,Banana Island Ikoyi Lagos,₦,2/day,1,1,1,6 beds,7 baths,6 Toilets,Banana Island +3069,Land,Banana Island Ikoyi Lagos,₦,"1,000,000/month",1,1,1,4 beds,4 baths,4 Toilets,Banana Island +3070,Standard Modern Vacant 4floors,Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3071,450sqm Mixed Use Land,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3072,Newly Built 6 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,8 baths,8 Toilets,Other Ikoyi +3073,Newly Built 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +3074,Land,Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3075,Land,Ikoyi Lagos,₦,"760,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3076,2 Bedroom Apartment,Ikoyi Lagos,₦,"160,000,000",1,0,0,2 beds,2 baths,0 Toilets,Other Ikoyi +3077,"6 Bedroom Fully Detached Duplex With Elevator, Swimming Pool",Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000,000",0,1,0,6 beds,6 baths,8 Toilets,Old Ikoyi +3078,Massive 5 Bedroom Detached House With Elevator And Swimming Pool,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +3079,Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3080,Contemporary 5 Bedroom Fully Detached Duplex With 3 Rooms Bq,"Shoreline Estate, Off Turnbull Road Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +3081,5 Bedroom Fully Detached Duplex With Swimming Pool,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +3082,3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +3083,5 Bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"580,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +3084,Newly Built 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3085,"4 Bedroom Terrace Duplex With Gym, Swimming Pool And Maid Room",Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,6 Toilets,Banana Island +3086,4 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3087,4 Bedroom Masionette,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3088,Executive Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +3089,Luxury 4 Bedroom Terrece Duplex With 2 Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +3090,Newly Built 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +3091,New Modern 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +3092,3000sqm Waterfront Land,Alexander Road Ikoyi Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3093,5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +3094,Tastefully Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3095,4 Bedroom Penthouse Apartment,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3096,Newly Built 3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3097,4 Bedroom Penthouse,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Ikoyi +3098,Brand New 5 Bedroom Fully Detached Duplex Smart Home,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3099,3 Bedroom Flat Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets,Onikoyi +3100,"4313 Sqm Land On Alexander Road, Ikoyi",Alexander Road Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3101,5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +3102,4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3103,Newly Built 5 Bedroom Semi Detached With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +3104,Super Luxurious High Rise 4 Bedroom Maisonette With Bq,Elizabeth Grace Court 3 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Foreshore +3105,5 Bedroom Contemporary Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3106,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3107,"5 Bedroom Fully Detached House With Elevator, Cinema, Swimming Pool",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,7 Toilets,Old Ikoyi +3108,Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3109,Fully Serviced 4bedroom Duplex,Osborne Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3110,Premium Land,Oniru Ikoyi Lagos Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3111,5400sqms Land,Gerard Road Ikoyi Lagos,₦,"3,780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3112,Charming And Elegantly Built 7 Bedroom Duplex Mansion With Private Jetty,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +3113,Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3114,Newly Built Luxury 5 Bedroom Semi Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3115,Direct Sale Of 3500sqm Of Land In Osborne Phase 2,Osborne Phase Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets,Foreshore +3116,Beautifully Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3117,Newly Built 5 Bedroom Detached,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets,Banana Island +3118,Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3119,New 4 Bedroom Semi Detached Duplex With Bq At Parkview Estate Ikoyi,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3120,"Exquisitely Finished 6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And 2 Room Bq",Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +3121,4 Bedroom Semi Detached Duplex,Banana Island Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3122,An Exquisite 4 Bedroom Terrace,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3123,"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,₦,"5,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3124,Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3125,1 Unite Of 4 Bedroom Maisonette And 5 Units Of 3bedroom Flat With 1roomm Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +3126,15 Plots Of Land,Parkview Estate Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3127,Joint Venture Land,Falomo Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3128,5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3129,Land,Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3130,7 Bedrooms Mansion,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,1,0,7 beds,7 baths,8 Toilets,Banana Island +3131,Luxury 5 Bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3132,New Fully Detached 4 Bedroom Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3133,Exquisite 3 Bedroom Flat With Boys Quarters,"New Ikoyi, In Close Proximity With Banana Island Ikoyi Lagos",₦,"225,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +3134,4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +3135,"Joint Venture Land Size: 4,200m²",Alfred Rewane Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3136,"Luxurious 5 Bedroom Semi Detached Duplex With Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3137,A Demolishable Property,Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3138,Luxury 9 Bedroom Fully Detached Mansion With 2room Bq,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,1,0,9 beds,9 baths,10 Toilets,Banana Island +3139,New 5 Bedroom Fully Detached Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3140,"Joint Venture Land 5,391sqm",Shoreline Estate Ikoyi Off Banana Island Old Ikoyi Ikoyi Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3141,Premium Waterfront Land,Oniru Ikoyi Lagos Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3142,Land Size Of 4600sqm,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3143,Land,Land Facing Kingsway Rd Rumens Nd Web Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"18,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3144,4bedroom Terrace With A Room Bq,Osborne Phase Ii Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3145,7 Bedroom Mansion,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +3146,Land,Ikoyi Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3147,Luxury 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3148,Land,Shoreline Estate Off Banana Island Falomo Lagos Falomo Ikoyi Lagos,₦,"4,043,250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3149,Newly Built 5bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3150,"Luxury Finished 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +3151,"Luxurious Units Of 4 And 5 Bedroom Smart Maisonette With Swimming Pool,elevator And Gym With A Room Bq",Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3152,3 Bedroom Flat Ground Floor,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +3153,11 Units Of Brand New 3 Bedroom Flats With Boys Quarters,Ikoyi Lagos,₦,"2,300,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3154,5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3155,"Luxuriously Finished 4 Bed Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3156,"3,124.159 Sqm",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3157,5 Bedroom Fully Detached Duplex,Shoreline Estate Ikoyi Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3158,Luxury Newly Built 5 Bedroom Fully Detached With Boys Quarter,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3159,4 Bedroom Terrace Duplex With A Room Boys' Quarter,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3160,Lovely 4 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,4 Toilets,Parkview +3161,"10,400 Sqm Of Water Front Land",Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3162,Land,Bourdillon Ikoyi Bourdillon Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3163,4bedroom Luxury & Palatial Maisonette + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +3164,Lovely Estate Made Up Of 16 Units Of 4 Bedroom Terrace With Bq In A Serene Environment Fully Serviced In A Mini Estate,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3165,"5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinema Room",X Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3166,Waterfront Sand Filled And Gated Land Measuring 7358sqm,Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3167,Brand New 4bedroom Maisonette + Bq,Banana Island Lagos Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +3168,2000sqm Waterfront Land,Ikoyi South West Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3169,Luxury 5 Bedroom Duplex,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3170,2 Bedroom And 3 Bedroom Flats,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3171,Four Bedroom Super Luxury Apartment,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3172,4 Bedroom Terrace Duplex With A Room Boys' Quarter,Off Bourdilion Ikoyi Bourdillon Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3173,Land,Bourdillon Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3174,4bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +3175,4574.5sqm Land,Dolphin Okoyi Dolphin Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3176,Luxury 5 Bedroom Terrace For Sale In A Lovely Estate,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3177,Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3178,Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3179,Land,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3180,"5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",W Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3181,Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +3182,Newly Built Charming 4 Bedroom Semi Detach Duplex,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +3183,Luxury 5 Bedroom Automated Maisonette,Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3184,Waterfront Land, Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3185,Property Description 6 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"2,500,000,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +3186,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3187,Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3188,Office Space,Off Keffi Street Ikoyi Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3189,Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3190,Fully Serviced 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"200,000,000",1,0,0, beds, baths, Toilets,Other Ikoyi +3191,Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3192,Available Land,Abacha Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3193,Standing Five (5) Units Of 5 Bedroom Mansions With Boys Quarters,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3194,Exquisitely Finished 3bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3195,Brand New 3 Bedroom Flat With A Room Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3196,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3197,5 Bedrooms Smart House,"Salvation Estate, By Shoreline Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3198,Luxury 5 Bedroom Detached With 2 Rooms Bq,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3199,Brand New 3 Bedroom Flat With A Room Bq,Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +3200,Brand New 6 Bedrooms Scientifically Automated & Magnificently Crafted Mansion,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3201,18 Units 3 Bedroom Flats 3 Units Penthouse,Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3202,5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3203,3 Bedroom Flat With A Room Bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3204,Massive 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3205,Super Luxury And Smart 4bedroom Maisonette,Lugard Avenue Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3206,Modern 4 Bedroom Detached House With 2 Rooms Bq In A Serene Neighborhood,"Oroke Drive, Ikoyi Lagos Bourdillon Ikoyi Lagos",$,"1,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3207,Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3208,Automated 5bedrooms Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3209,5 Bedroom Fully Detached Duplex,Shoreline Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3210,Exquisite 5 Bedrooms Detached House,Banana Island Ikoyi Lagos,$,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3211,"A Newly Built 30 Units Of 2, 3 Bedroom Luxury Apartments With Penthouse And Other Appurtenances",Glover Road Ikoyi Lagos,$,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3212,Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3213,5 Bedroom Terraced Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3214,4 Bedroom Terrace Without Bq,Along Orchid Orchid Hotel After Chevron Toll Gate Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Banana Island +3215,Luxury 4 Bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3216,8 Bedroom Waterfront Mansion,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3217,Newly Built 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3218,Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3219,Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3220,Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3221,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3222,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3223,Tastefully 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3224,Luxury 4 Bedroom Maisonette,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3225,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3226,Fully Serviced 3bedrooms Flat,Thompson Road Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3227,Newly Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3228,Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3229,Fully Detached 5 Bedroom Smart Houses,Off Queen's Drive Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3230,Well Finished 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3231,Prime Land,Osborne Phase 1 Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3232,Brand New 2 Wings Of 24 Unit 4 Bedroom Luxury Apartments,Banana Island Ikoyi Lagos,$,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3233,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3234,2 Modern Highrise Buildings,Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3235,Brand New 4bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3236,1120m2 Land,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3237,Massive 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3238,Well Maintained Vacant 4 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3239,Land,Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3240,Luxury Block Of 12 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3241,Prime Land,Osborne Phase 1 Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3242,Five Units Of Luxuriously And Exquisitely Designed 5 Bedroom Mansions,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3243,30 Bed Boutique Hotel,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3244,Luxury 5 Bedroom Semi Detached With Bq,Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3245,Land,Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3246,Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3247,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3248,3 Bedrooms Apartment,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3249,3bedroom Flat,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3250,Land,Osborne 2 Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3251,Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3252,Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3253,4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3254,Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3255,"5,269 Sqm Waterfront Land","Acacia Drive, Osborne 2 Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3256,Luxury 5 Bedroom Apartment & Maisonette With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3257,Fully Serviced Spacious 8 Units Of 3bedrooms Flat,Parkview Estate Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3258,Units Of Luxurious 4 Bedroom Serviced Apartments With Boys Quarters,Salisbury Court Parkview Estate Ikoyi Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3259,A Newly Built And Well Maintained Block Of Flats Of 3 Bedrooms,Ikoyi Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3260,6 Bedroom Mansion,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3261,Waterfront Lands,Osborne Phase 2 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3262,4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3263,Block Of 10 Luxurious Executive 3 Bedroom Flats And A Massive 4 Bedroom Pent House Apartment,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3264,Land,Old Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3265,Luxury Tower Of 10 Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3266,Brand New 4bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3267,6 Bedrooms Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"561,465,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3268,6 Bedroom Mansion,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3269,Brand New 4bed Luxury & Palatial Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Banana Island +3270,Super Luxury 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3271,Land,Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3272,4bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3273,Executive 2 Bedroom Apartment,Tango Towers Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3274,Spacious 5 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3275,Luxury Built 5 Bedroom Fully Detached Duplex,Harbor Point Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3276,Waterfront 3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3277,Luxury Fully Serviced 5bedrooms Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3278,Waterfront Plot Of Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3279,Land,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,2 beds,0 baths,0 Toilets,Old Ikoyi +3280,Land,Off Alexander Abacha Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3281,Land,Off Gerrard Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3282,Newly Built 3bedrooms Apartments With Bq +swimming Pool +gym,S Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +3283,5 Bedrooms Semi Detached Duplex House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +3284,4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +3285,2 Bedroom Massionette (0033a),Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,2 beds, baths, Toilets,Banana Island +3286,6 Bedroom Fully Detached House (pcl 158),Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +3287,4 Bedroom Semi Detached Duplex (pcl 214),Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +3288,Luxury 4bedrooms Penthouse And 4bedrooms Maisonettes House,4th Avenue Lucrezia Towers By Sujimoto Banana Island Ikoyi Lagos,$,"2,200,000",1,1,1,4 beds,4 baths,6 Toilets,Banana Island +3289,5 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +3290,Newly Built 4bedrooms Semi Detached Duplex House With Bq +swimming Pool +gym,Z Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +3291,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3292,Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3293,Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3294,Exquisitely Built Semi Detached 4 Bedroom Duplex.,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3295,3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"72,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikoyi +3296,400sqm Land,Off Keffi Road Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3297,5 Bedroom Fully Detached House With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"1,700,000,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +3298,2 Bedroom Serviced Apartments,"Bayview Apartments, Inside Banana Banana Island Ikoyi Lagos",₦,"145,000,000",1,1,1,2 beds,3 baths,3 Toilets,Banana Island +3299,Luxury Flat,Banana Island Road Ikoyi Lagos,₦,"150,000,000/year",1,1,0,0 beds,4 baths,4 Toilets,Banana Island +3300,2 Bedroom Serviced Apartment,Inside Banana Banana Island Ikoyi Lagos,₦,"145,000,000",1,1,0,2 beds,3 baths,3 Toilets,Banana Island +3301,4 Bedroom Terrace Houses On Two Floors,Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +3302,New House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths, Toilets,Banana Island +3303,New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds, baths, Toilets,Banana Island +3304,New 3 Bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,1,3 beds,4 baths,0 Toilets,Banana Island +3305,New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds, baths, Toilets,Banana Island +3306,2 Bedroom Serviced Apartment,Inside Banana Banana Island Ikoyi Lagos,₦,"145,000,000",1,1,1,2 beds,3 baths,3 Toilets,Banana Island +3307,4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +3308,3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +3309,Luxury 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,0 baths,0 Toilets,Parkview +3310,5 Bedroom Detached Luxury Villa,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3311,New House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,0,5 beds,6 baths, Toilets,Banana Island +3312,New Luxury 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,0 baths,0 Toilets,Banana Island +3313,New House,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000,000",1,1,0,10 beds,0 baths,0 Toilets,Old Ikoyi +3314,5 Bedrooms Luxury Detached House, Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,1,1,5 beds,6 baths,0 Toilets,Old Ikoyi +3315,House,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,0 Toilets,Banana Island +3316,4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +3317,Tastefully Designed 5 Bedroom Detached House On 3 Floors,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +3318,11 Units Of 3 Bedroom Apartments With Bq, Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",1,1,0,3 beds,10 baths,0 Toilets,Old Ikoyi +3319,3 Storey Building,Awolowo Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3320,Land,Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3321,New House,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,6 baths,0 Toilets,Old Ikoyi +3322,Tastefully Finished Waterfront 2 Units Of 5bedroom Fully Detached Duplex,"Olori Mojisola Estate, Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +3323,Nice 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"110,000,000",1,1,1,2 beds,3 baths,0 Toilets,Banana Island +3324,4 Bedroom Semi Detached With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,4 baths,0 Toilets,Foreshore +3325,New House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3326,2 Bedroom Smart Luxury Apartment,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,3 baths,0 Toilets,Old Ikoyi +3327,New House,Bourdillon Ikoyi Lagos,₦,"300,000,000",1,1,1,3 beds, baths, Toilets,Other Ikoyi +3328,New House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +3329,Water Front Newly Built Three (3)bedroom Flat Plus Boys Quarter,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,4 baths,0 Toilets,Banana Island +3330,Land,Banana Island Ikoyi Lagos,₦,"900,000",1,0,0, beds, baths, Toilets,Banana Island +3331,4 Bedroom Terrace With Bq,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +3332,Serviced 4 Bedroom Terrace House,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +3333,New House,Banana Island Ikoyi Lagos,₦,"2,850,000,000,000",1,1,0,6 beds, baths, Toilets,Banana Island +3334,3bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +3335,New House,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,7 baths,0 Toilets,Old Ikoyi +3336,Newly Built 3 Bedroom Serviced Flat Plus Boys Quarter,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,0 baths,0 Toilets,Banana Island +3337,New House,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,7 baths,0 Toilets,Old Ikoyi +3338,New House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,6 baths, Toilets,Onikoyi +3339,4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"530,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +3340,Land,Banana Island Ikoyi Lagos,₦,"1,200,000",1,0,0, beds, baths, Toilets,Banana Island +3341,4 Bedroom Terrace With 1 Room Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +3342,New House,Off Bouadillon Bourdillon Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds, baths, Toilets,Other Ikoyi +3343,New House,Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,1,1,5 beds, baths, Toilets,Other Ikoyi +3344,House,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,0 Toilets,Foreshore +3345,New House,Old Ikoyi Ikoyi Lagos,₦,"925,000,000",0,1,0,5 beds, baths, Toilets,Old Ikoyi +3346,Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,0 baths,0 Toilets,Old Ikoyi +3347,Land,Banana Island Ikoyi Lagos,₦,"950,000",0,0,0, beds, baths, Toilets,Banana Island +3348,4 Bedroom Terrace Duplex With A Room Boys' Quarter,Bourdillon Ikoyi Lagos,₦,"380,000,000",1,1,1,4 beds,0 baths,0 Toilets,Other Ikoyi +3349,4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +3350,5 Bedroom Contemporary Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,0 baths,0 Toilets,Banana Island +3351,Ocean View 6bedroom Detached Luxury Mansion With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",1,1,0,6 beds,0 baths,0 Toilets,Old Ikoyi +3352,Two Units Of 5 Bedroom Fully Detached Houses With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +3353,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3354,4 Bedroom Maisonette With Maid’s Room,Iroko Close Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets,Foreshore +3355,New 3 Bedroom Block Of Flats,Onikoyi Off Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,3 beds,0 baths,0 Toilets,Banana Island +3356,5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,0 baths,0 Toilets,Old Ikoyi +3357,5bedroom Fully Serviced Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,0 Toilets,Banana Island +3358,5 Bedroom Semi Detached Duplex On 3 Floors, Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,6 baths,0 Toilets,Banana Island +3359,New House,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,0 baths,0 Toilets,Old Ikoyi +3360,Luxury 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3361,New House,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,0 Toilets,Old Ikoyi +3362,5 Bedroom Detached House,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000,000/sqm",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +3363,12 Units Of 3 Bedroom Flats + Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +3364,Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",1,0,0, beds, baths, Toilets,Banana Island +3365,New House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +3366,4 Bedroom Luxury Townhouse With Maid's Room,"Kwara Street, Zone 11, Residential Area Banana Island Ikoyi Lagos",₦,"580,000,000",1,0,0,4 beds,5 baths,6 Toilets,Banana Island +3367,Refurbishable Fully Detached 6bedroom Duplex,Off Norman Williams Street Via Awolowo Rd Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Ikoyi +3368,4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +3369,A Luxury And Automated 5bedroom Detached House,Banana Banana Island Ikoyi Lagos,₦,"960,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +3370,House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,0 Toilets,Old Ikoyi +3371,6 Bedroom Detached Duplex With Cofo In Ikoyi,Off Norman Williams Street Ikoyi S.w Ikoyi Lagos,₦,"195,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikoyi +3372,New House,Glover Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths, Toilets,Old Ikoyi +3373,New House,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,2 beds, baths, Toilets,Old Ikoyi +3374,"A Virgin Land Measuring 3,944 Sqm",Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3375,New House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,0,5 beds, baths, Toilets,Banana Island +3376,4 Bedroom Terrace House With Boys Quarter,Park View Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,4 Toilets,Parkview +3377,New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0, beds,5 baths, Toilets,Banana Island +3378,New House,Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,1,0,10 beds, baths, Toilets,Old Ikoyi +3379,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,0 baths,0 Toilets,Banana Island +3380,3bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,100,000",1,0,1,3 beds,0 baths,0 Toilets,Onikoyi +3381,Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Off Kingsway Road Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,0 Toilets,Other Ikoyi +3382,Newly Built 3 Bedrooms Apartments,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,0 Toilets,Old Ikoyi +3383,4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,0 baths,0 Toilets,Parkview +3384,Land,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3385,New House,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds, baths, Toilets,Old Ikoyi +3386,New House,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds, baths, Toilets,Old Ikoyi +3387,House,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths, Toilets,Banana Island +3388,6 Bedrooms Terrace House With 1 Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,6 beds,0 baths,0 Toilets,Banana Island +3389,New House,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds, baths, Toilets,Old Ikoyi +3390,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3391,4bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,0 baths,0 Toilets,Parkview +3392,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"225,000,000",1,0,0,0 beds,0 baths,0 Toilets,Foreshore +3393,4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets,Parkview +3394,New House,Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,1,5 beds, baths, Toilets,Banana Island +3395,Old House,Ikoyi S.w Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +3396,Four Units Of 5 Bedrooms Massionette Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,0 baths,0 Toilets,Banana Island +3397,4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +3398,A Tastefully Finished 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"435,000,000",0,1,0,5 beds,6 baths,7 Toilets,Onikoyi +3399,4 Bedroom Condo With Family Living Room + Bq,"Probyn Road, Off Bourdillon, Ikoyi. Old Ikoyi Ikoyi Lagos",₦,"470,000,000",1,1,0,4 beds,5 baths,6 Toilets,Old Ikoyi +3400,4 Bedroom Luxury Terrace Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +3401,House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",1,1,0,3 beds,0 baths,0 Toilets,Onikoyi +3402,Luxury 5 Bedroom Villa With Bq,Olawale Dawodu Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3403,Modern Fully Fitted Block Of 24 Luxury Apartments Of 3 Bedrooms With Bq,Banana Island Ikoyi Lagos,₦,"12,500,000,000",0,1,0,3 beds,0 baths,0 Toilets,Banana Island +3404,Land,Banana Island Ikoyi Lagos,₦,"4,275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3405,4 Bedroom Terrace Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +3406,5 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"500,000,000",0,0,1,5 beds,0 baths,0 Toilets,Other Ikoyi +3407,Land,Banana Island Ikoyi Lagos,₦,"4,275,000,000",0,0,0, beds, baths, Toilets,Banana Island +3408,Land Measuring 4500 Sqm,Kingsway Road Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3409,2639sqm On 2nd Ave Ikoyi For Sale,2nd Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3410,2400sqm Land,Gerard Road Ikoyi Lagos,₦,"1,450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3411,Land Measuring 3394sqm,Off Second Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3412,2000sqm Land,Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3413,Joint Venture Land Of 5391sqm Very Close To Banana Island,Shoreline Estate Ikoyi Lagos,₦,"4,043,250,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3414,Land Measuring 3100sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3415,1500sqm At Ikoya Road Ikoyi For Sale,Ikoya Old Ikoyi Ikoyi Lagos,₦,"975,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3416,4000sqm Land On Bourdillon Road Ikoyi,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"3,600,000,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +3417,"Block Of Flat, 8 Units Of 3 Bedroom Flat With 1 Room Bq Each",Victoria Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +3418,"Super Luxurious Maisonette With Elevator,lounge,swimming Pool,security",Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +3419,Land,Lugard Old Ikoyi Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3420,2247sqm On Magbon Close Ikoyi For Sale,Magbon Close Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3421,7 Bedroom Demolishable Duplex,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Ikoyi +3422,Land Measuring 6000 Square Meters,"2,000,000,000 Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3423,Land Measuring 6000 Square Metres In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3424,2539sqm On Milverty Road Ikoyi For Sale,Milverty Road Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3425,3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3426,High Rise Apartments 26flats,Ge Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3427,2200sqm Of Land At Ikoya Road Ikoyi,Ikoya Road Old Ikoyi Ikoyi Lagos,₦,"1,386,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3428,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3429,Land Measuring 7000 Sqm,Thompson Ave Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3430,Land For Sale In Ikoyi,Ikoya Old Ikoyi Ikoyi Lagos,₦,"546,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3431,Land,2nd Avenue Ikoyi Lagos State 2nd Avenue Extension Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3432,Land Measuring 2633 Sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3433,3 Bedroom Flat,Osborne Foreshore 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,4 baths,4 Toilets,Foreshore +3434,4224sqm Waterfront On Queen's Drive Ikoyi,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"3,600,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3435,6980sqm Land For Sale On Glover Road,Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3436,Commercial Land,Club Road Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3437,3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,$,"1,300,000/year",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +3438,4574.5sqm Land,James George Estate Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3439,2000sqm Of Land For Sale In Ilabere Street,Ilabere Sreet Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3440,1600sqm For Sale On Milverty Road Ikoyi,Milverty Road Old Ikoyi Ikoyi Lagos,₦,"1,040,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3441,A Luxury 4 Bedroom Duplex,Opposite Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,6 Toilets,Banana Island +3442,4500sqm For Sale In Kingsway Road Ikoyi,King's Way Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3443,7 Bedroom Duplex Mansion,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3444,3429sqm Corner Piece On Temple Road Ikoyi,Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3445,2700sqm Water Front In Alexander Road,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3446,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3447,Luxury 3bedroom Terrace House With Bq,Mosley Road Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3448,High Rise Office Complex,Afred Rewane Old Ikoyi Ikoyi Lagos,$,"54,000,000/sqm",1,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3449,Joint Venture Land Available On Gerald Road By Bayo Kuku,Bayo Kuku Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3450,Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3451,Land Measuring 5200 Sqm,Lugard Ave Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3452,Land,Second Ave 2nd Avenue Extension Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3453,A Land Measuring 4200 Corner Piece Available,Afred Rewane Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3454,2419sqm On Rumens Street Ikoyi For Sale,Rumens Street Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +3455,A Block Of 26 Flats,Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3456,5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3457,Joint Venture,"Alfred Reward Road, Ikoyi Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3458,Land,Gerard Road Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +3459,9500sqm Bareland,Banana Island Ikoyi Lagos,₦,"1,250,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +3460,4 Bedroom Terrace Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets,Parkview +3461,Commercial Property,Banana Island Ikoyi Lagos,₦,"1,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +3462,4 Storey Building,Old Ikoyi Ikoyi Lagos,₦,"4,700,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets,Old Ikoyi +3463,Well Built 6 Bedroom Fully Detached House,Bourdillon Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3464,Smart 4 Bedroom Flat In Serene Environment,Efcc Bus Stop Awolowo Road Ikoyi Lagos,₦,"197,500,000",1,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +3465,4 Bedroom Luxury Maisonette,Banana Island/ikoyi Banana Island Ikoyi Lagos,₦,"188,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +3466,2units 4 Rooms Duplex,Lekki Scheme I Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +3467,36 Units Of 3 Bedroom Flat,Adeyemi Lawson Street Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3468,Block Of Flats,Adeyemi Lawson Off Bourdillon Bourdillon Ikoyi Lagos,₦,"6,500,000,000/year",1,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +3469,Magnificent 5 Bedroom Fully Detached Duplex With 2 Bq And Pool,Old Ikoyi Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3470,17 Units Of 3 Bedroom Flats,Ikoyi Lagos,₦,"1,700,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3471,4 Bedroom Waterfront Apartment @ Ocean Parade Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +3472,5 Bedroom Luxury Duplex With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +3473,5 Bedroom Fully Detached Home,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3474,Land,Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3475,Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3476,Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3477,Spacious 2 Units Of 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3478,Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +3479,5 Bedroom Terrace House,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3480,Luxury 3 Bedrooms Flat,Bourdillon Ikoyi Lagos,₦,"270,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3481,Lovely 16 Units Of Three Bedroom Terrace Duplex,Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3482,Luxury Posh 2 Bedrooms Apartment With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +3483,Luxury 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +3484,Luxury 4 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3485,Luxury 3 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,1,3 beds,0 baths,0 Toilets,Other Ikoyi +3486,4 Bedroom Flat,"Abraham's Court, Rumens Road, Off Kingsway Road Ikoyi Lagos",₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +3487,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3488,Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3489,5 Bedroom With Bq Duplexes Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3490,4bedroom Terrace,Ikoyi Lagos,₦,"275,000,000",1,1,1, beds, baths, Toilets,Other Ikoyi +3491,4 Bedroom Fully Detached Duplex With A Mini Lounge.,Macpherson Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3492,4 Bedrooms Terrace Duplex With Maidroom(fully Serviced),Old Ikoyi Ikoyi Lagos,₦,"230,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3493,Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3494,Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3495,Newly Built Five Bedroom Fully Detached Triplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +3496,Land,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3497,29units Of 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3498,Jenture Venture Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3499,Luxury 4bedroom Apartment,Alexander Rd Macpherson Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3500,3 Bedroom Apartment,Ikoyi Lagos,₦,"32,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3501,Luxury Fully Automated 1 Bedroom Apartments,Ikoyi Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,1 Toilets,Other Ikoyi +3502,5 Units Of Super Luxury 4 Bedroom,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3503,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3504,Land,Alexandra Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3505,Land,Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3506,5 Bedroom Terrace,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3507,3 Bedrooms Apartment With Maidroom (fully Serviced),Road Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +3508,Newly Built 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",1,1,0,2 beds,2 baths,2 Toilets,Banana Island +3509,5 Units Of Super Luxury 4 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3510,3 Bedrooms Luxury Apartment With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3511,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000,000",1,1,1,0 beds,0 baths,0 Toilets,Banana Island +3512,5 Bedrooms Apartment With Maidroom,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +3513,Luxury 4 Bedroom Terrace Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"415,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +3514,5 Bedroom Fully Detached Duplex With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +3515,Luxury 3 Bedroom Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3516,Land 1500 Sqm,Banana Island Ikoyi Lagos,₦,"1,250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3517,Newly Built Luxury Five (5)bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3518,Luxury 4 Bedroom Detached Duplex With Pool And Jetty,Aqua Point Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +3519,4 Bedroom Apartments With 1 Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3520,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,1,0 beds,0 baths,0 Toilets,Banana Island +3521,4 Bedrooms Terrace Duplex With Maidroom(fully Furnished),Parkview Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3522,Newly Built 5 Bedroom Duplex With 2bqs,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,1, beds, baths, Toilets,Banana Island +3523,"This Luxury Finished 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space, 7 Bathrooms, 2 Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,1,6 beds,6 baths,7 Toilets,Banana Island +3524,"This Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Private Elevator",Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3525,5 Bedroom Semi Detached Self Compound+bq,Z Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3526,Luxury 5 Bedroom Detached Waterfront Duplex, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3527,Updated List Of Plots Available,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3528,Luxury Built Waterview 5 Bedroom Fully Detached Duplex With Swimming Pool,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets,Onikoyi +3529,Luxury Built 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3530,2600sqm At Oba Elegushi Rd ( Former Club Road) Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +3531,4 Bedroom Apartment Oceanfront, Banana Island Ikoyi Lagos,$,"1,500,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +3532,5bed Semi Detached +2room Bq., Mojisola Onikoyi Estate Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3533,1300 Sqm Land, Gerard Road Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3534,Beautiful 4 Bedroom Detached Waterfront Houses In A Fully Serviced Mini Estate With Each Unit Facing Water With Own Jetty,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3535,"5 Bedroom Fully Detached Duplex With Cinema,home Office,fully Fitted Kitchen,swimming Pool Etc",Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +3536,High Class Opulent Luxury 5 Bedroom Automated Maisonette,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3537,Fully Detached 5bedroom Duplex +3rm Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3538,5 Bedroom Luxury Pent House Oceanview Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,7 Toilets,Onikoyi +3539,"5 Bedroom Fully Detached Duplex With Cinema, Home Office, Fully Fitted Kitchen, Swimming Pool Etc",E Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +3540,2 Blocks Of Luxury 3/4 Bedroom Apartments.,Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,5 baths,6 Toilets,Other Ikoyi +3541,Brand New 3bedroom Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +3542,Well Built Three(3) Bedroom Apartment,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3543,Luxury 2 Bedroom Flat With A Bq,Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +3544,Luxury 2 Bedroom Flat With A Bq,Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3545,Newly Built 5 Bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +3546,A 5bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +3547,Luxury 5 Bedroom Automated Maisonette,Ikoyi Ikoyi S.w Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3548,A Brand New 3bedroom Apartment With A Bq.,Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3549,A 2 Bedroom Flat With Furnishes,Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",1,0,1,2 beds,2 baths,3 Toilets,Banana Island +3550,A 3bedroom Apartment With A Bq,Ikoyi Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3551,Solidly Built 6 Bedroom Mansion With Private Master's Bedroom,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"2,000,000,000",1,1,0,6 beds,7 baths,7 Toilets,Other Ikoyi +3552,5 Bedroom Mansion,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3553,A Modern 3 Bedroom Flat With A Bq,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3554,4 Bedroom Flat On The 6th Floor With Gym And Pool,Off Alfred Rewane Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3555,2 Storey Building With 2 Units Of 3 Bedroom Flat +bq,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3556,5 Bedroom Detached House,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3557,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3558,Outstanding Decently Spaced 5 Bed Fully Detached,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3559,5 Bedroom Mansion,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3560,Excellent 4 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3561,Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3562,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3563,5 Bedroom Duplex At Mojisola Onikoyi Foreshore Estate Off Banana Island,Off Banana Island Banana Island Ikoyi Lagos,₦,"655,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3564,Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3565,4 Bedroom Massionette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +3566,Super Spacious 5 Bedroom Luxury Maisonette, Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3567,Fully Automated 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +3568,Luxury 5 Bedroom Semi Detached Smart Home With A Bq, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3569,Fully Automated 5 Bed Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3570,City View 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +3571,Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3572,2 Units Of 6 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +3573,Beautifully Finished 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3574,"11 Units Of 3 Bedroom Apartments With Bq,",Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3575,Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +3576,Tastefully Finished 2 Bed Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3577,Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3578,6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3579,4 Bedroom Semi Detached,Waterfront Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +3580,Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3581,3 Bedroom Flat (en Suite) With Balcony,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +3582,Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3583,Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3584,Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3585,Luxury 4. Bedroom Maisonette With Bq,Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +3586,4 Bedroom Luxury Terrace House,Off Bourdillon Road Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3587,4 Bedroom Luxury Apartment,Off Alexander Road Ikoyi Lagos Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3588,3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3589,6units Of 3bedroom Flat Apartment,Queens Drive Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3590,Standard 5 Bed Fully Detached House,Main Ikoyi Town Road 2nd Avenue Extension Ikoyi Lagos,₦,"850,000,000/sqm",0,1,1,6 beds,6 baths,7 Toilets,Other Ikoyi +3591,5 Bedroom Mansion With Swimming Pool,2nd Avenue Extension Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Ikoyi +3592,5 Bedroom Masionette,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Ikoyi +3593,Newly Luxury 4 Bedroom Detached Duplex On 2 Floors,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3594,Decently Finished 3 Bed Apartment With Swimming Pool And Gym,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3595,Luxurious 5 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3596,Affordable 3 Bedroom Flat,Park View Estate Gerard Road Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3597,Fully Furnished 4 Bedroom Mensionate With A Bq,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Foreshore +3598,Newly Built 4 Bedroom Terrace House With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3599,1400sqm Land,Off Queen Drive Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3600,4 Bedroom Condominium,Bourdillon Ikoyi Lagos,₦,"452,615,624",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3601,3 Bedroom Apartments With Swimming Pool,Off Alexander Way Parkview Estate Ikoyi Lagos,₦,"180,000,000/sqm",0,1,0,3 beds,0 baths,0 Toilets,Parkview +3602,Clean 5 Bedroom Duplex With A Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,5 Toilets,Foreshore +3603,4 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +3604,Luxury 4 Bedroom Apartment,Ikoyi Lagos,$,"875,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3605,Massive 4 Bedroom Duplex With Separate Boys' Quarters Sitting On 500sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"255,000,000",0,1,0,4 beds,4 baths,4 Toilets,Foreshore +3606,Luxury And Fully Furnished 3 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,3 Toilets,Banana Island +3607,Smart Home 4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",0,0,1,4 beds,0 baths,0 Toilets,Old Ikoyi +3608,Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3609,5 Bedroom Detached House For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +3610,Newly Built 4bedroom Duplex,Ikoyi Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths, Toilets,Other Ikoyi +3611,Smart Home 4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +3612,3 Bedroom Apartment With A Study Room And 1 Room Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +3613,5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,0 baths,0 Toilets,Old Ikoyi +3614,Newly Built Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3615,Luxury 6 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,250,000",1,1,0,6 beds,6 baths,6 Toilets,Banana Island +3616,6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3617,Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3618,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3619,3 Bedroom Fully Serviced Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3620,Newly Built 24 Unit Of 4 Bedroom Luxury Apartments,Banana Island Ikoyi Lagos,$,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets,Banana Island +3621,A Plot Of Land Measuring 890sqm,Okotie Eboh Awolowo Road Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3622,A Parcel Of 4600sqm Land,Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3623,4 Bedroom + Bq With Federal Government Consent,"Elizabeth Grace Court 3, Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,1,0, beds, baths, Toilets,Foreshore +3624,Sweet Joint Venture,"Mekunwen Street, Off Queen Drive Ikoyi Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3625,5 Bedroom + Bq And Pool,Luxurious House Mansionette At Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3626,Super Luxury 6 Bedroom Mansion,Ruxton Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3627,Superb Residential Land,Ikoyi Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3628,4 Bedroom Terrace Plus Boys Quarter,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3629,A Plot Of Land Measuring 2000sqm,Close 101 Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3630,Brand New 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3631,A Massive Parcel Of Land,Gerard Road Ikoyi Lagos,₦,"6,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3632,A Land Measuring 2918sqm Waterfront,Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3633,Landed Property,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +3634,Land Property Of 1134sqm,Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3635,Luxury 3bedrooms Apartment With Excellent Facilities,Banana Island Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +3636,A Plot Of Land Measuring 4000sqm,Close 101 Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3637,Land,Glover Road Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3638,A Plot Meaning 2000sqm Waterfront,Close 101 Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3639,A Plot Of Land Measuring 1245sqm,Gerrard Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3640,Fantastic Joint Venture Land,Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3641,A Parcel Of 3133sqm Land,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3642,A Lovely Parcel Of 2600sqm Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3643,Joint Venture,"Old Ikoyi, Off Glover Road Ikoyi Lagos",$,"1,700/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +3644,Luxurious Contemporary 5 Bedroom Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +3645,A Parcel Of 6000sqm Land,Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3646,A Parcel Of 4300sqm Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3647,Super Luxury Twin Highrise,Old Ikoyi Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3648,5 Bedroom Luxuriously Finished House With 2 Bq,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3649,Land,Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3650,1139sqm Land,"Rumens Street, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3651,Land,Glover Road Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3652,Land,Alexander Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3653,Newly Built 4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3654,Land,Abacha Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3655,Joint Venture,"Mcdonald Road, Old Ikoyi Ikoyi Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +3656,Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3657,A Sweet Parcel Of 746sqm Land,Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +3658,Renovated Serviced 4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3659,2 Units Of 3 Bedroom Luxury Flat,Mojisola Onikoyi Estate Off Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Onikoyi +3660,Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +3661,5 Star Hotel,Osborne Foreshore Estate Ikoyi Lagos,$,"9,000,000",0,1,0,0 beds,0 baths,0 Toilets,Foreshore +3662,Exquisitely Built Luxury 3bedrooms Flat Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +3663,5 Bedroom Fully Detached With Swimming Pool,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets,Onikoyi +3664,Luxurious 5 Bedroom Fully Detached Houses,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3665,A Parcel Of 14000sqm Land,Ikoyi Lagos,₦,"18,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3666,3 Bedrooms Apartment With Bq.,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +3667,Sweet Joint Venture,Cameron Road By Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3668,Mini Estate Block Of Flats,2nd Avenue Extension Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3669,A Five Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3670,4 Bedroom + Bq With Federal Government Consent At Elizabeth Grace Court,Elizabeth Grace Court With Federal Government Consent Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Parkview +3671,Land,Off Queen Avenue Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3672,6 Bedrooms Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3673,Land,Old Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3674,4 Bedroom Terrace (brand New),Bourdillon Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3675,Brand New Waterfront 4 Bedroom Semidetached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3676,Waterfront 4 Bedroom Semi Detached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3677,4 Bedroom Duplexes With 2 Sitting Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +3678,Prime Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3679,4 Bedroom Maisonnet Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Parkview +3680,Fully Detached House With Bq,Off First Avenue Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3681,Landed Property In Banana Island,Off Second Avenue Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +3682,Landed Property,Third Avenue Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +3683,4 Bedroom Terrace Duplex With Boys Quarter,Ikoyi Lagos,₦,"14,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +3684,Dry Landed Propery,Second Avenue Banana Island Ikoyi Lagos,₦,"2,125,000,000",0,0,0, beds, baths, Toilets,Banana Island +3685,"Land Measuring 1,500 Sqm In Banana Island",Off Second Avenue Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +3686,Lovely 4bedroom Terrace,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +3687,Family House With 9 Bedrooms All Rooms Ensuite,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,9 Toilets,Banana Island +3688,Five (5) Bedroom Duplex,Ikoyi Lagos,₦,"595,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +3689,Six (6) Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3690,26 Units Of Luxurious 3 Bedroom Apartments,Gerard Road Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3691,Four (4) Bedroom Terraced House With Bq,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Parkview +3692,Four (4) Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3693,Four (4) Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +3694,Six (6) Bedroom Mansion,Shoreline Estate Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,7 baths,7 Toilets,Banana Island +3695,Five (5) Bedroom Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets,Parkview +3696,Four (4) Bedroom Terrace Duplex,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +3697,2 Bedroom Serviced Apartments With A Room Bq,Bayview Apartments Banana Island Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets,Banana Island +3698,Family House With 9 Bedrooms All Rooms Ensuite,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,9 Toilets,Banana Island +3699,Exquisite 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +3700,Seven (7) Bedroom Contemporary Town House With Private Elevator,Ikoyi Lagos,₦,"240,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Ikoyi +3701,Five (5) Bedroom Contemporary Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +3702,Luxury 3 Bedrooms Apartment,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +3703,5 Bedroom Luxurious Fully Detached Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"1,150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +3704,Newly Built 3 Bedroom Apartment,Falomo Ikoyi Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +3705,Three (3) Bedroom Flat,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +3706,Three (3) Bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3707,Three (3) Bedroom Flat With Bq,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3708,Three (3) Bedroom Flat, Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3709,Very Spacious 4 Bedrooms Luxury Apartments,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +3710,Five (5) Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3711,Five (5) Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +3712,Wonderful Houses,Ikoyi Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,0 Toilets,Other Ikoyi +3713,Three (3) Bedroom Flat With Bq,Ikoyi Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3714,Six (6) Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +3715,Hot Joint Venture Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3716,3bedrooms Apartment,Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3717,3 Bedroom Apartment,Z Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,4 baths,5 Toilets,Other Ikoyi +3718,4 Bedroom Penthouse,Z Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +3719,3bedroom Apartment Ikoyi,Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3720,5 Bedroom Semi Detached House,Z Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,6 Toilets,Other Ikoyi +3721,5 Bedroom Detached House,D Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3722,Newly Built 5 Bedroom Semi Detached House For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +3723,Newly Built 6 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"1,200,000,000",1,0,0,6 beds,7 baths,8 Toilets,Banana Island +3724,4 Bedroom Semi Detached House For Sale In Ikoyi,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +3725,4 Bedroom Semi Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +3726,5 Bedroom Detached House In An Estate For Sale In Ikoyi,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,7 baths,8 Toilets,Other Ikoyi +3727,5 Bedroom Semi Detached House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3728,5 Bedroom Detached House,S Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3729,3 Bedroom Apartments,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Ikoyi +3730,4 Bedroom Semi Detached Duplex,Z Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,5 baths,6 Toilets,Other Ikoyi +3731,4bedroom Terraced Duplex Ikoyi,Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3732,Fully Serviced 3 Bedroom Apartment,E Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Ikoyi +3733,4 Bedroom Maisonette For Sale In Ikoyi,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +3734,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets,Banana Island +3735,6 Bedroom Fully Detached Smart House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3736,Massive Plots For Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3737,5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3738,Off Plan 4 Bedroom 2 Storey Apartment With Two Bqs,The Skyvilla Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,6 baths,7 Toilets,Other Ikoyi +3739,3 Bedroom Waterfront Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,4 baths,5 Toilets,Other Ikoyi +3740,4 Bedroom Terraced Duplex For Sale In Ikoyi,Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3741,3 Bedroom Flat, Ikoyi Lagos,₦,"190,000,000",1,0,0,3 beds,4 baths,5 Toilets,Other Ikoyi +3742,Newly Built 5 Bedroom Detached House,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3743,Fully Furnished 5 Bedroom Smart House For Sale In Ikoyi,"...,. Ikoyi Lagos",$,"1,200,000,000",0,0,1,5 beds,7 baths,8 Toilets,Other Ikoyi +3744,B Bedroom Semi Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3745,5 Bedroom Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,7 baths,8 Toilets,Other Ikoyi +3746,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,7 baths,8 Toilets,Banana Island +3747,Newly Built 5 Bed Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +3748,Massive 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"1,550,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +3749,Rare Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +3750,Massive 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +3751,Luxurious And Smart 4 Bedroom Maisonette + Bq,Elizabeth Grace Court 3 Estate In Osborne Foreshore Estate Home Of Luxury For People Of Class And Royalty Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets,Foreshore +3752,Newly Built 3 Bedroom Flat,Awolowo Road Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +3753,Newly Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +3754,Newly Built 4bedrooms Maisonette Duplex + Bq,Elizabeth Grace Court 1 Estate Ikoyi A Place Of Comfort And Luxury Parkview Estate Ikoyi Lagos,₦,"170,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Parkview +3755,800 Sqm,"Osbourne Phase I, Ikoyi, Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3756,"2,500 Sqm Waterfront Plot","Osbourne Phase 2, Ikoyi, Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3757,"For Sale: 5 Bedrooms Exquisitely Furnished Super Luxury Mansion, Off Queen's Drive, Ikoyi, Lagos, Nigeria","Off Queen's Drive, Old Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",$,"6,100,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +3758,Brand New Waterfront 5 Bedroom Detached Home,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3759,Luxury Old Ikoyi Fully Furnished Penthouse,"Along Alexander Road, Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"500,000,000",1,0,1,5 beds,5 baths,6 Toilets,Old Ikoyi +3760,Land,Soule Close Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +3761,"Prime 6,698.374sqm Plot On Lugard Road, Old Ikoyi, Lagos, Nigeria","Lugard Road, Old Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"4,823,000,000",1,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3762,"1,850sqm Plot","Mojisola Onikoyi Estate, Off Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3763,"2,500 Sqm Land","L23 Banana Island Estate, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3764,Spacious 6 Bedrooms Detached House + Bq,Norman Williams Street South West Awolowo Road Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3765,Brand New Luxury 4 Bedroom Masionette + 1 Room Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3766,"For Sale: Parkview Estate, Ikoyi, Lagos, Nigeria Super Luxury 6 Bedroom Mansion","Parkview Estate, Ikoyi, Lagos Parkview Estate Ikoyi Lagos",₦,"2,300,000,000",0,0,0,6 beds, baths, Toilets,Parkview +3767,"5 Bedroom Fully Detached Duplex + 2rooms Bq Off Queen's Drive, Ikoyi, Lagos, Nigeria","Off Queen's Drive, Old Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3768,Brand New 4 Bedroom Maisionette,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +3769,Waterfront Home,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +3770,For Sale: Parkview Estate Ikoyi 5 Bedroom Detached Luxury Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"365,000,000",0,0,0,5 beds,6 baths, Toilets,Parkview +3771,"Prime Shoreline Estate Koyi, Lagos Plot",Shoreline And Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"720,000",0,0,0, beds, baths, Toilets,Old Ikoyi +3772,"1160sqm Medium Density Plot Of Land On Bank Road, Ikoyi, Lagos, Nigeria","Bank Road , Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"835,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +3773,"Old Ikoyi, Lagos Super Luxury 5 Bedroom Mansion On 1,800sqm",Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3774,"Brand New Waterfront 4 Bedroom Terrace Plus Bq For Sale Off Banana Island Road, Ikoyi Lagos","Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +3775,Old Ikoyi Brand New Luxury Pent House Masionette Of 4 Bedroom + 2 Rooms Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3776,"For Sale: Commercial Property Directly On Awolowo Way, Sw Ikoyi, Lagos, Nigeria",Awolowo Road Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +3777,"3,200sqm Land Directly On Banana Island Road, Ikoyi, Lagos",Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3778,Verified Alexander Avenue Old Ikoyi Plot,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"3,309,750,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3779,Luxury 3 Bedroom Apartment With Bq,Gerard Road Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +3780,4 Bed Terraced House,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +3781,Brand New Waterview 5 Bed House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3782,5 Bedroom Apartment,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +3783,5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3784,Brand New 5 Bedroom House,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3785,Self Serviced Brand New 5 Bedroom Detached Home,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3786,Fully Fitted 4 Bedroom Smart Home,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3787,5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +3788,3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,$,"900,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +3789,567.291 Square Meter Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3790,Newly Built 5 Bed Luxury Maisonette,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +3791,Ultra Modern 4 Bedroom Apartment,Ime Heights Ikoyi Lagos,₦,"132,990,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3792,4 Bed Luxury Maisonette,Riverside Apartment Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +3793,5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,$,"1,000,000",1,1,0,5 beds,7 baths,7 Toilets,Banana Island +3794,567.291 Square Meter Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +3795,Magnificent 5 Bedrooms Maisonette,Bourdillon Ikoyi Lagos,$,"1,100,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +3796,4 Bed Luxury Maisonette,The Aria Ikoyi Lagos,₦,"65,990,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +3797,Luxury 3bedroom Flat,Joshua Okeowo Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,3 beds,3 baths,4 Toilets,Onikoyi +3798,Magnificent And Mighty 5 Bedrooms Detached Duplex And Bq,Off Boudilon Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,7 baths,6 Toilets,Other Ikoyi +3799,Newly Built Bedrooms Terraces,Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,8 Toilets,Other Ikoyi +3800,Five Bedrooms Detached Duplex For Sale In Ikoyi,Ikoyi Lagos,₦,"1,700,000,000",1,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +3801,Well Furnished Two Bedrooms Apartment For Sale In Ikoyi,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,1,2 beds,3 baths,4 Toilets,Banana Island +3802,4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3803,5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3804,"Bare Land Measuring 1,500sqm",Mcewen Street Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3805,Exquisite 3 Bedroom Apartment Plus Bq (offplan),Banana Island Ikoyi Lagos,₦,"170,500,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +3806,Super Smart 5 Bedrooms Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +3807,1950sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3808,2 Units Of Structure On 2 Floors,Muri Okunola Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3809,Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3810,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3811,1500sqm Land,Lugard Avenue Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3812,5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3813,Fully Serviced 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3814,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3815,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3816,Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3817,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +3818,Available Land,Bourdillon Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3819,5 Bedrooms Detached House,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3820,Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3821,939. Sqm Mixed Zone Plot,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3822,Available Land,Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3823,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3824,6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +3825,A 6 Nos 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3826,Block Of Flats,Macpherson Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3827,Block Of Flats,Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3828,1615sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3829,897sqm Bare Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3830,Serviced 4 Bedroom Terrace Duplex Plus A Room Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3831,Available Land,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3832,Luxury Fully Detached 5 Bedroom With 2room Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3833,Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3834,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3835,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3836,Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3837,Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3838,6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +3839,Available Land,Banana Island Ikoyi Lagos,₦,"690,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3840,Available Land,Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3841,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3842,19200sqm Land With Old Structure,Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3843,5 Bedroom Penthouse,Banana Island Ikoyi Lagos,$,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3844,Available Land,Old Ikoyi Ikoyi Lagos,₦,"560,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3845,2 Acres Of Land,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3846,Available Land,Old Ikoyi Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3847,Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3848,4200sqm Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3849,2000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3850,Exquisitely Designed Luxury 5 Bedroom Terrace House With 2 Bq,Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3851,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3852,5414.69sqm,Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3853,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3854,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3855,Luxurious 2 Units Of 5 Bedroom Fully Detached Houses With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3856,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3857,6 Bedroom Detached Duplex + 2 Bedroom Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets,Foreshore +3858,Available Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3859,3944sqm Land,"Alagbon, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3860,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3861,740sqm Land,Off Alexander Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3862,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3863,3000sqm,Ikoyi Lagos,₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3864,2 Bedroom Flat,Banana Island Ikoyi Lagos,$,"280,000",0,0,0,2 beds,2 baths,2 Toilets,Banana Island +3865,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3866,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3867,Available Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3868,Available Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3869,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3870,Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +3871,Available Land,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3872,1160sqm Bare Land,Ikoyi Lagos,₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3873,5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3874,984sqm With A Demolishable Building,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3875,5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3876,500 Sqm Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3877,Available Land,Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3878,Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3879,6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +3880,1134sqm Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3881,6 Bedroom Detached Duplex + 2 Bedroom Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets,Foreshore +3882,Newly And Tastefully Finished 5 Bedroom Detached Smart House,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3883,Brand New 6 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +3884,5500sqm Corner Piece Land,Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3885,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3886,Available Land,Banana Island Ikoyi Lagos,₦,"690,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3887,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3888,Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3889,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3890,Functional Hotel,Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3891,Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3892,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3893,Available Land,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3894,Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3895,Available Land,Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3896,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3897,"Waterfront 2,060 Sqm Land", Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3898,Available Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3899,5 Bedrooms Fully Detached Houses,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +3900,Available Land,Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3901,3 Bedroom Flat,Banana Island Ikoyi Lagos,$,"480,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +3902,4 Bedroom Flat,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +3903,4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +3904,2600sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3905,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3906,Land,Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3907,2 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikoyi +3908,Available Land,Mekunwen Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3909,900sqm Land,Awolowo Road Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3910,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3911,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3912,1136sqm Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3913,Opulent Quality 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3914,Available Land,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3915,4200sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3916,1000sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3917,4611sqm Waterfront Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3918,495sqm Corner Piece Land,Awolowo Road Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3919,1500 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3920,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3921,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +3922,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3923,Available Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3924,26000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3925,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3926,800sqms Bare Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3927,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3928,16 Units Of 4 Bedroom Terrace Plus Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +3929,3200sqm Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3930,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3931,Available Land,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3932,Available Land,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3933,Available Land,Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3934,Available Land,Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3935,Available Land,Old Ikoyi Ikoyi Lagos,₦,"675,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3936,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3937,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3938,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3939,Tastefully Finished 5 Bedroom Detached House With Bq,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +3940,1 Bedroom Flat,Banana Island Ikoyi Lagos,$,"200,000",0,0,0,1 beds,1 baths,2 Toilets,Banana Island +3941,Available Land,Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3942,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3943,5 Bedroom Detached Smart House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3944,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3945,5 Bedroom Semi Detached + Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3946,4 Bedroom Maisonette,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +3947,875 Square Meters Land,Mekunwen Road Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3948,"3,700 Sqms Prime Land",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3949,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3950,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3951,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3952,New 5 Bedroom Fully Detached House With Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3953,624.655sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3954,6931sqm Land,Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3955,Available Land,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3956,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3957,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3958,Residential Plot,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3959,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3960,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3961,Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,1 baths,0 Toilets,Banana Island +3962,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3963,5 Bedroom Semidetached House,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3964,Available Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3965,Value Centric 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3966,Luxury 8 Bedroom Mansion With 2 Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,8 beds,8 baths,9 Toilets,Foreshore +3967,Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3968,Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3969,500 Sqmts Land,Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3970,4800sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3971,"2,500sqmts Water Front Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3972,Bare Land Of 4300sqm,Alexander Avenue Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3973,Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3974,Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3975,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3976,10000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3977,5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3978,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3979,Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3980,4594sqm Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3981,Available Land,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3982,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +3983,Available Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +3984,2750sqm,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3985,Cornerpiece 4600sqm Vacant Plot,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +3986,5 Bedroom Contemporary Detached Duplex,Bana Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +3987,Luxiriously Finished 4bedroom Terrace Duplex And Bq,Ikoyi Lagos,₦,"700,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +3988,Exquisitely Finished & Spacious 3 Bedroom Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,0 baths,0 Toilets,Other Ikoyi +3989,Mansion,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,1,1,0 beds,0 baths,0 Toilets,Old Ikoyi +3990,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,3 baths,4 Toilets,Foreshore +3991,Exquisitely Finished & Spacious 3 Bedroom Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,0 baths,0 Toilets,Other Ikoyi +3992,3 Bedroom Flat With Bq,Banana Island Road Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +3993,A 500sqm Plot At Osborn Phase 2,Osborn Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +3994,5 Bedroom Semi Detached Houses,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +3995,Massive 6 Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,6 baths,6 Toilets,Parkview +3996,Ultra Luxurious 5 Bedroom Terrace With 2 Bedroom Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +3997,4 Bedroom Semi Detached Duplex,Osborne Estate Phase 1 Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +3998,Five Bedrooms Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,7 Toilets,Old Ikoyi +3999,Two Bedrooms Apartment For Sale In Ikoyi,Ikoyi Lagos,₦,"1,500,000,000",1,1,1,2 beds,3 baths,4 Toilets,Other Ikoyi +4000,Newly Built Three Bedrooms Apartment,Ikoyi South West Ikoyi S.w Ikoyi Lagos,$,"1,500,000",0,1,0,5 beds,4 baths,5 Toilets,Other Ikoyi +4001,English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +4002,Luxuriously Finished 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4003,Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4004,Spacious 5 Bedroom Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +4005,Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4006,Waterfront 5 Bedroom Duplex + Jetty,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4007,Exquisitely Furnished 5 Bedrooms Luxury Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +4008,5 Bedroom Detached House,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4009,Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +4010,Modern 5 Bedroom Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +4011,Newly Built 5bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4012,Waterfront 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +4013,Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +4014,Waterfront 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +4015,Spacious 5 Bedroom Terrace,Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,6 baths,6 Toilets,Banana Island +4016,Exquisite And Luxury 3 Bedroom Flat With State Of The Art Facilities,"Joe Faraday Close, Off Banana Island Estate Road, Mojisola Onikoyi Estate, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"180,000,000",1,0,0,3 beds,3 baths,4 Toilets,Onikoyi +4017,650sqm Commercial/residential Land Ikoyi,Off Norman Williams Street Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4018,2677sqm Land,Mekunwen Street Okoyi Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4019,2 Bedroom,Lugard Road Ikoyi Lagos,₦,"250,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Ikoyi +4020,3 Bedroom,Lugard Road Ikoyi Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4021,Luxury 4 Bedroom Duplex,"Dolphin Estate, Ikoyi Dolphin Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4022,"2,500m² Land Situated At L23, Banana Island With Lagos State Ratification.",Banana Island Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4023,Block Of Flats(27 Flats),Old Ikoyi Ikoyi Lagos,₦,"75,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4024,Bedroom Luxury Flats With Swimming Pool And Other Lifestyle Facilities,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4025,4 Bedroom Apartment,Lugard Road Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +4026,Brand New 5 Bedroom Fully Detached Duplex,"...,. Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4027,Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4028,15 Floors Commercial Building For Office Space,Kingsway Road Ikoyi Lagos,$,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4029,2500sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Banana Island +4030,2000sqm Land,Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4031,3500sqm Land,Old Ikoyi Ikoyi Lagos,₦,"1,750,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4032,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4033,1600sqm Land,Tumbull Drive Ikoyi Lagos,₦,"960,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4034,4 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Old Ikoyi +4035,1000sqm Corner Piece Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4036,Exquisitely Finished 5 Bedrooms Detached Duplex With State Of The Art Lightings And Sanitary Ware In All The Rooms,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +4037,Brand New Fully Detached 5 Bedroom Fully Detached Duplex With 2 Bq Fully Fitted House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4038,Brand New 5 Bedroom Fully Detached Masterpiece House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4039,Waterfront Six(6) Bedroom Fully Detached House With Waterfront Swimming Pool Gym,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +4040,Brand New Self Serviced 5 Bedroom Semi Detached Duplex,Off Alexander Road Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4041,Fully Fitted 3 Bedroom Terrace,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,4 Toilets,Other Ikoyi +4042,3 Bedroom Fully Fitted Apartment, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4043,Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4044,4000sqm Land,Off Macpherson Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4045,Fully Detached 5bedroom +3room Bq House, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4046,Fully Fitted 4 Bedroom Semi Detached Home With 2 Living Rooms & Bq,Off Alexander Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4047,Newly Built 4 Bedroom Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4048,2015sqm Land,Off Macpherson Ikoyi Lagos,₦,"1,309,750,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4049,"4 Bedroom Semi Detached Apartment, 2 Extra Rooms And A Bq",Banana Island Ikoyi Lagos,₦,"610,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4050,Tastefully Finished 5 Bedroom Duplex With A Bq,Banana Island Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4051,3000sqm Land,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4052,1200sqm Waterfront Land,Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4053,"19,200sqm Land",Oba Adeyinka Oyekan Old Ikoyi Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4054,Available Land,Abacha Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4055,Fully Fitted 4 Bed Apartments With Swimming Pool Gym Squash Tennis,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4056,4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4057,10 Room House Designed As A Guest House And A 3 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Parkview +4058,Fully Furnished Fully Fitted 4 Bedroom Penthouse Maisonette Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4059,1500sqm Land,Glover Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4060,Two Units 5bed Semi Detached + 2rmbq House,Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4061,1000sqm Land,Ikoya Avenue Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4062,4 Bed Mansionette,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +4063,Available Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4064,3 Bedroom Flat,Bella Vista Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +4065,Available Land,Off First Avenue Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4066,Available Land,Banana Island Ikoyi Lagos,₦,"985,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4067,1200sqm Land,Shoreline Estate Ikoyi Lagos,₦,"840,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4068,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4069,3 Bedroom Apartments With Bq,Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Ikoyi +4070,4500sqm Land,Off Macpherson Ikoyi Lagos,₦,"2,925,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4071,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4072,4100sqm Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Foreshore +4073,1125sqm Land,Of Macpherson Road Ikoyi Lagos,₦,"618,750,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4074,"2,033sqm Residential Plot",Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4075,10000sqm Land,Ikoyi Club Side Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4076,2400sqm Waterfront Land,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Parkview +4077,Fully Fitted And Serviced 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4078,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4079,Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4080,Available Land,Glover Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4081,2 Bedroom Apartment,Off Alexander Road Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +4082,5343sqm Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4083,874sqm Land,Island Shoreline Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4084,Penthouse,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4085,500sqm Land,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +4086,1937sqm Corner Piece Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +4087,Dilapidated Detached House,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4088,Fully Fitted 2 Bedroom Maisonette On 205sqm Land, Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +4089,"Water Front Plot Measuring 1,939 Sqm",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +4090,3 Bedroom Apartments On 300sqm Land (off Plan), Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4091,Commercial Highrise ( Fully Tenanted) No. Of Floors 15,Kingsway Road Ikoyi Ikoyi Lagos,$,"120,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4092,Bare Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4093,Available Land,Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4094,Fully Detach House With 2 Bed Chalet And 3 Bedroom Bq,Off Macpherson Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4095,5 Bedrooms Detached Houses With All Rooms Ensuite One Room Boys Quarter Each,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4096,Fully Fitted 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4097,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4098,6 Bed Room House With 3 Room Bq Renovation Needed,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +4099,Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4100,Land,2nd Avenue Extension Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4101,"Corrner Piece Plot Measuring 1,000 Sqm",Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +4102,1400sqm Cornerpiece Land,Banana Island Ikoyi Lagos,₦,"1,680,000,000",0,0,0, beds, baths, Toilets,Banana Island +4103,4 Bedroom High Rise Apartment,Ikoyi Lagos,$,"3,850,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4104,Off Plan Brand New Four(4) Bedroom Terraces,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +4105,1200sqm Land,Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0, beds, baths, Toilets,Banana Island +4106,8 Bedrooms Mansion All Rooms Ensuite,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +4107,5200sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,560,000,000",0,0,0, beds, baths, Toilets,Foreshore +4108,Corner Piece Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4109,3000sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Foreshore +4110,6 Bedrooms Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +4111,5 Bedroom Fully Fitted House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4112,2100sqm Bareland,Off Queensdrive Ikoyi Lagos,₦,"1,260,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4113,Four (4) Bedroom Fully Fitted Apartment In A Private Estate With Lawn Tennis Gym Swimming Pool,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4114,4 Bedroom Terrace Houses,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4115,Well Built Property With 3 Bedroom Apartments With Bqs And Basement Car Parks,Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4116,"5,400sqm Land",Glover Road Mosley Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4117,2 Bedroom Apartments And Fully Fitted 3 Bedroom Penthouse Maisonette,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets,Old Ikoyi +4118,4 Bedroom Detached Duplex With Bq,2nd Avenue Extension Ikoyi Lagos,₦,"2,000,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4119,6 Nos Of 3 Bedroom Flat With Swimming Pool & Gym,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4120,935sqm Land, Banana Island Ikoyi Lagos,₦,"748,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4121,Brand New 3 Bedroom Fully Fitted And Furnished Terrace,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,1,3 beds,3 baths,4 Toilets,Banana Island +4122,Brand New Fully Fitted Smart 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4123,Available Land,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4124,1600sqm Land,Kuramo Close Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4125,Stylishly Fully Fitted 5 Bedroom Detached House,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4126,1550sqm Land With Fully Detached House,Mark Close Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4127,"3,200sqm Land With Demolishable Structure",Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4128,Waterfront 8 Units Of 5 Bedroom Terrace With Private Swimming Pool,Off Alexander Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4129,Land,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4130,Fully Detached 5 Bedroom Contemporary House,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4131,7000sqm Available Land,Off Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4132,5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4133,1100sqm Land,Parkview Estate Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Parkview +4134,Land,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4135,30 Rooms Hotel ( Brand New),Ikoyi Lagos,$,"12,000,000",0,0,0,10 beds, baths, Toilets,Other Ikoyi +4136,4 Bedroom Terrace Houses With All Rooms Ensuite.,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4137,Brand New 5 Bedroom Automated Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4138,"Brand New Water View 5 Bedroom Detached Duplex, 1 Study Fully Fitted Fully Equipped Cinema Room Swimming Pool", Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4139,Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4140,4 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +4141,Fully Detached 6 Bedroom; 2 Living Rooms ; 3 Kitchens; Cinema; Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +4142,3 Bedroom Apartments With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4143,1000sqm Land,Off Mobolaji Johnson Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4144,"Luxury Flats Consisting Of 26 X 3 Bedroom, 2 X 2 Bedeooms X 2 Penthouses",Glover Road Ikoyi Lagos,$,"35,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4145,Brand New Waterfront 4 Bedroom 1 Study Room Fully Fitted Terrace With Swimming Pool And Bq, Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4146,30 Bedroom Turkey Boutique Hotel,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4147,Mansionette & Penthouses,Lugard Avenue Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4148,3200sqm Land,Off Queensdrive Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4149,4 Bedroom Maisonette Apartment,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4150,1300sqm Land,Ikoya Street Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4151,4 Bedroom House, Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4152,3 Bedroom Fully Fitted Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +4153,Brand New 10 Bedroom Fully Furnished Detached House,Ikoyi Lagos,₦,"2,100,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +4154,Luxury 3 Bedroom All Ensuite Apartment With Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +4155,Available Land,Cooper Road Ikoyi Lagos,₦,"680,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4156,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4157,Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4158,Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4159,"26,000sqm Land",Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4160,4100sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,640,000,000",0,0,0, beds, baths, Toilets,Foreshore +4161,1700sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,275,000,000",0,0,0, beds, baths, Toilets,Banana Island +4162,"Brand New Fully Fitted 3 & 4 Bedrooms, 2 Bq Each Luxury Apartments With 5star Reception", Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4163,Brand New Fully Detached 5 Bedroom Fully Detached Duplex With 2 Bq Fully Fitted House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4164,Available Land,Alexandra Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4165,Ikoyi 1000sqm Waterfront Land,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4166,1150sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,041,300,000",0,0,0, beds, baths, Toilets,Banana Island +4167,3 Bedroom Apartment,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4168,3300sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,155,000,000",0,0,0, beds, baths, Toilets,Parkview +4169,4 Bedroom 2 Living Rooms 1 Study Detached House On 600sqm,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4170,Available 2300sqm Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4171,4 Bedroom Terrace With Bq Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4172,2750sqm Waterfront With Jetty & House,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4173,5 Bedroom Multi Level Duplex,Thompson Road Ikoyi Lagos,$,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4174,"3,100sqm Land",Banana Island Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4175,Fully Detached Automated 5 Bedroom Contemporary House,Banana Island Ikoyi Lagos,₦,"820,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4176,Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4177,950sqm Corner Piece Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Parkview +4178,"4,300sqm Land",Bedwell Road Old Ikoyi Ikoyi Lagos,₦,"675,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4179,5 Bedroom Fully Detached And Fitted House With A Bq,Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +4180,5 Bedrooms Fully Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4181,2 Bedroom Luxury Flat,Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikoyi +4182,Brand New 4 Bedroom Full Automation Massionettes, Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +4183,Brand New 5 Bedroom Automated Detached Duplex With 2 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4184,1200sqm Land, Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4185,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4186,4244sqm Waterfront Land,Queens Drive Ikoyi Lagos,₦,"3,183,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4187,3 Bedroom Flat,Abacha Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4188,Serviced 5 Bedroom Penthouse,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +4189,5 Bed Brand New Fully Detached Semidetached Houses With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4190,6 Units Uncompleted Semidetached And 2 Bedroom Bq Each,Off Queens Drive Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4191,Fully Fitted 5 Bedroom House With 2 Living Room,Off Bourdillon Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4192,950sqm Land,Tumbull Drive Ikoyi Lagos,₦,"570,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4193,7000sqm Land,Gerard Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4194,Hotel,Osborne Foreshore Estate Ikoyi Lagos,$,"7,500,000",0,0,0, beds, baths, Toilets,Foreshore +4195,5 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4196,5200sqm Waterfront Land,Ph2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Foreshore +4197,Land,"Club Road, Old Ikoyi Ikoyi Lagos",₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4198,1400sqm Plot With 5 Bed House & Swimming Pool,Off Bourdillon Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4199,5000sqm Waterfront Land,Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Parkview +4200,1550sqm Land,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4201,500sqm Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Banana Island +4202,Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4203,Available Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4204,Three(3) Bed Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,4 Toilets,Old Ikoyi +4205,Fully Fitted 3 Bedroom Apartment,Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4206,Maisonette,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4207,4 Bedroom Flat,Alexander Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4208,Four (4) Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +4209,4 Bedroom Semi Detached Duplex With 3 Rooms Chalet,Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +4210,Available Land,Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4211,600sqm Land,Banana Island Ikoyi Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets,Banana Island +4212,Available Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4213,1700sqm Land,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4214,4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4215,740sqm Land,Off Alexander Road Ikoyi Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4216,5 Bedroom Fully Detached House With Detached Maids Quarters,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4217,Self Service 4 Bedroom Terrace With Own Compound, Ikoyi Lagos,₦,"340,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4218,3385sqm Land,Off Alexander Ikoyi Lagos,₦,"1,692,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4219,4 Bedroom Maisonette,Z Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4220,5 Bedroom Detached House,Ikoyi S.w Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4221,Luxury fully Fitted 5 Bedrooms  detached House,Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4222,4 Bedroom Detached House With 2 Room Bq,Off Awolowo Road Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4223,Available Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4224,Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4225,5 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4226,3 Bedroom High Rise Apartment,Ikoyi Lagos,$,"1,850,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4227,934sqm Land, Banana Island Ikoyi Lagos,₦,"747,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4228,Land,Lugard Street Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4229,500m2 Land,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Banana Island +4230,Waterfront Land,"Alexander, Old Ikoyi Ikoyi Lagos",₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4231,1500sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +4232,4 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4233,Brand New 3 Units Of 4 Bedroom Terrace,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4234,Rand New 11 Units Fully Fitted 3 Bed Apartments And 4 Bed Penthouse Apartment With A Bq Each,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4235,1950sqm Land,Second Avenue Ikoyi Lagos,₦,"1,170,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4236,A Block Of 10 Units Luxurious Apartments, Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4237,Waterfront Fully Detached House On 3600sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4238,3 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4239,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4240,1200sqm Land, Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4241,4 Bedroom All Rooms En Suite With Lawn Tennis Squash Swimming Pool & Gym,Banana Island Ikoyi Lagos,$,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4242,2000sqm Land,Off Queens Drive Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4243,Colonial 6 Bedroom Detached House With Bq,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +4244,Fully Fitted 1 Bedroom Apartment,Ikoyi Lagos,₦,"85,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Ikoyi +4245,1700sqm Waterfront Land,Off Banana Island Ikoyi Lagos,₦,"1,275,000,000",0,0,0, beds, baths, Toilets,Banana Island +4246,4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +4247,"Exotically Built 3 Units Of 4 Bedroom Terrace Apartment With A Waiting Room, Bq, Swimming Pool And Gym.",Off Alexander Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4248,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4249,Well Maintained Building,Ribadu Road Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4250,Commercial Property,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4251,6900sqm Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4252,1850sqm Land,Off Alexander Road Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4253,2400sqm Land,Gerard Road Ikoyi Lagos,₦,"1,025,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4254,1600sqm Land,Kuramo Close Ikoyi Lagos,₦,"624,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4255,Block Of 27 Flats Of 3 Bedrooms,Off Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4256,Block Of Flats With The Pent House On 2 Floors, Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4257,4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4258,Waterfront 8 Units 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4259,584sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +4260,600sqm Land For Joint Venture,Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4261,1700sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,190,000",0,0,0, beds, baths, Toilets,Banana Island +4262,600sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +4263,5 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4264,Brand New Fully Fitted 3 Bedroom Apartment With A Bq,Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4265,Available Land,Abacha Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4266,4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4267,1200sqm Land,Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0, beds, baths, Toilets,Banana Island +4268,Full Detached House With 1 Room Bq,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4269,1600sqm Land,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"624,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4270,400sqm Land, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4271,3 Bedroom Flat,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4272,2600sqm Land,Off Mekwen Ikoyi Lagos,₦,"1,820,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4273,Ikoyi Offplan Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4274,3 Bedroom Luxury Flat,Off Alexander Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4275,3133sqm Land,Old Ikoyi Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4276,Available Land,Ikoyi Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4277,Waterfront 2 Bedroom Serviced Apartments,Ikoyi Lagos,₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +4278,Fully Fitted En Suite 1/3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"14,000,000/year",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4279,Off Plan 4 Bedroom Maisonette,Zz Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4280,1100sqm Land, Banana Island Ikoyi Lagos,₦,"990,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4281,Brand New 5 Bedroom Detached Duplex With Elevator,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +4282,"Superb And Spacious 5bedroom Detached Duplex With Bq,",Park View Estate Parkview Estate Ikoyi Lagos,₦,"600,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Parkview +4283,Newly Built 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +4284,Massive Ocean View Furnished Bedroom Mansion With Pool And Cinema,Macpherson Ikoyi Lagos,₦,"1,400,000,000",0,1,1,6 beds,8 baths,7 Toilets,Other Ikoyi +4285,2060 Square Meters Dry Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4286,"26,000 Square Meters Of Land",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4287,Luxury 11 Units Of Flat Consisting Of 10 3 Bedrooms And 4 Bedroom Penthouse With Elevator,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4288,A Massive 5 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths,0 Toilets,Onikoyi +4289,Fully Furnished 5 Bedroom Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4290,Brand New 5 Bedroom Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Onikoyi +4291,Luxury Built 3 Bedroom Maisonette,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Ikoyi +4292,Filling Station,Zone J Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4293,Value Centric 4 Bed Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4294,4 Bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,0 baths,0 Toilets,Parkview +4295,Newly Built 4 Bedroom Terrace,Banana Island Banana Island Ikoyi Lagos,$,"1,500,000",1,1,1,4 beds,5 baths,5 Toilets,Banana Island +4296,Newly Built 5 Bedroom Penthouse (offplan),Banana Island Banana Island Ikoyi Lagos,$,"3,500,000",1,1,1,5 beds,6 baths,6 Toilets,Banana Island +4297,Land,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4298,4 Bedroom Maisonettes,"L14, Close 101, 1st Ave, Mixed Development Banana Island Ikoyi Lagos",$,"2,500,000",1,1,1,4 beds,6 baths,6 Toilets,Banana Island +4299,Newly Built 3 Bedroom Flat,Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4300,4812sqmtrs Mixed Use Land For Sale At Banana Island Estate Ikoyi,"Banana Island Estate, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"4,330,800,000",0,0,0, beds, baths, Toilets,Banana Island +4301,5200 Sqmtrs Of Land,"Lugard Street, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4302,4610 Residential Land For Sale At Banana Island Estate Ikoyi,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,$,"5,300,000,000",0,0,0, beds, baths, Toilets,Banana Island +4303,"3 Bedroom Penthouse Maisonette For Sale At Osborne Phase 2 Estate, Ikoyi","Osborne Estate Phase 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets,Foreshore +4304,3 Bedroom Flat,"Banana Island Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"250,000,000",0,1,1,3 beds,3 baths,4 Toilets,Banana Island +4305,Brand New 7 Bedroom Detached House,"Banana Island Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"2,200,000,000",0,1,0,7 beds,7 baths,8 Toilets,Banana Island +4306,C Of O,"Akindele Animashaun Street, Beside (twinwaters Plaza) Waterfront Oniru Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4307,Plot Measuring 876sqms,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4308,Plot Measuring 740sqms,Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4309,"Plot Measuring 1,000sqms",Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4310,Affordable Land With Fgn Consent,Banana Island Ikoyi Lagos,₦,"555,000,000",0,0,0, beds, baths, Toilets,Banana Island +4311,800sqm Land,Oyal Palm Drive Osborne 2 Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4312,5bedroom Fully Detached Water View House, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +4313,840sqm Land, Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4314,Land Measuring 740sqms,Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4315,Former Bank Premises On 4floors With Registered Deed,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4316,2 Bedroom Flat,... Banana Island Ikoyi Lagos,₦,"120,000,000",1,0,1,2 beds,3 baths,3 Toilets,Banana Island +4317,6bedroom Castle With C Of O, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,1,6 beds,7 baths,7 Toilets,Banana Island +4318,2 Bedroom Furnished Apartment,"...,. Banana Island Ikoyi Lagos",₦,"120,000,000",1,1,0,2 beds,3 baths,3 Toilets,Banana Island +4319,Newly Built 5bedroom Detached Duplex,Onikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4320,Plot Measuring 876sqms,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4321,"Macgregor Road 1,566sqms With 47 Meters Frontage",Macgregor Road Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4322,"Bank Road 2,000sqms With 51 Meters Frontage",Ikoyi Lagos,₦,"620,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4323,4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4324,Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4325,Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4326,5 Bedroom Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +4327,Plots Of Land,Keffi Str By Awolowo Road Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4328,Land,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4329,"Plot Measuring 1,125sqms",Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4330,Newly Built 5bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"1,200,000,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +4331,Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4332,840sqm Land For Sale,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4333,Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4334,5 Bedroom Terrace House With A Room Bq,Banana Island Ikoyi Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4335,"Bank Road 1,566sqms With 50 Meters Frontage","Bank Road , Ikoyi Ikoyi Lagos",₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4336,"Plot Measuring Almost 1,700sqms",Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4337,3bedroom Flat(water Front)with Bq, Banana Island Ikoyi Lagos,₦,"190,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +4338,Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +4339,Macgregor Road 533sqms With 24 Meters Frontage,Macgregor Road Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4340,Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4341,Land,Alfred Rewane Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4342,Available Land,Ikoyi Lagos,₦,"4,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4343,"2,295sqms Land", Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4344,Available Land,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4345,"2,295sqms Land For Sale",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4346,"Plot Measuring Almost 1,700sqms",Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4347,5 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +4348,4 Bedroom Flat,Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +4349,Land,Banana Island Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4350,5 Bedroom Detached House With 2 Rooms Boys Quarters,Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +4351,"Plot Measuring 1,000sqms",Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4352,Prime Plot Of Land With Lasg Land Certificate,Bourdillion Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4353,Available Land,Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4354,Available Land,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4355,Land With C Of O,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +4356,6bedroom Semi Detached House With Bq 2(nos) 4bedroom Massionete + Bq 2 (nos) Luxury 3bedroom Flats + Bq.,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"5,500,000",0,0,0,6 beds,8 baths,8 Toilets,Old Ikoyi +4357,World Class Luxury 3 Bedroom Apartment With A Maid Room,"Old Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets,Old Ikoyi +4358,Luxuriously Finished 5 Bedroom Penthouse,Off Glover Rd Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +4359,Exquisitely Finished 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets,Banana Island +4360,Offplan Sales In Banana Island With Flexible Payment Plan 3 Nos Of 5 Bedrom Waterfront Detached Houses,Off Second Avenue Bananaisland Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +4361,Luxury Brand New 3 Bedroom Flat With A Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"195,000,000",1,1,1,3 beds,4 baths,5 Toilets,Banana Island +4362,Massive 2 Units Of 4 Bedrom Semi Detached House With 2 Room Bq Each,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +4363,Waterfront Plot Mixed Use Development Land. Size: 4800sqms,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4364,An Exquisitely First Class Finished Cornerpiece Property On Large Ground Consisting.....6 Bedroom Semi Detached Spacious House + Bq.... 2 Nos 4 Bedroom Massionete + Bq....2 Nos 3bedroom Flats,Off Boudillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4365,Brand New Luxury Finished 5 Bedroom Detached Duplex With A Bq Located Within Beautiful Secured Banana Island Ikoyi.,Off 3rd Avenue Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +4366,".luxury 3 Units Of 4 Bedroom Terrace Duplex With Servant's Room,",Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4367,Newly Built Luxury 3 Bedroom Apartment With A Bq,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4368,Empire Court 3 & 4 Bedroom Ultra Luxury Apartments With 2 Bq,Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4369,Filling Station,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4370,Ultra Luxury 6 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,7 Toilets,Old Ikoyi +4371,Newly Built Luxury 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4372,Luxury 3 Bedroom Apartment With A Room Boy’s Quarter,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4373,Luxury 5 Bedroom's Penthouse With A Private Elevator In Oniikoyi,"Off Banana Island Road, Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"285,000,000",1,0,0,5 beds,6 baths,6 Toilets,Onikoyi +4374,3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,1,3 beds,0 baths,0 Toilets,Other Ikoyi +4375,5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4376,4 Bedrooms Detached House With Bq,"Oroke Drive, Off Queens Drive Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4377,"5,400sqm Land",Falomo Ikoyi Lagos,₦,"5,400/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4378,5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"730,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4379,Elizabeth Grace Court 1,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,0 Toilets,Parkview +4380,Newly Built 5 Bedroom Contemporary Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,7 baths,7 Toilets,Banana Island +4381,Luxurious 2 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets,Old Ikoyi +4382,Newly Built Automated 5 Bedroom Fully Detached,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +4383,4 Bedroom Maisonette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4384,4 Bedroom Maisonette + Bq And 2 Penthouses + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4385,22 Floors Of Maisonette,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +4386,C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4387,Luxury 5 Bedroom Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,6 Toilets,Parkview +4388,22 Floors Of Maisonette,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4389,6 Bedroom Fully Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,7 baths,7 Toilets,Old Ikoyi +4390,C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +4391,"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,$,"1,000,000",0,1,0,5 beds,7 baths,7 Toilets,Other Ikoyi +4392,Magnificent 6 Bedroom Fully Detached Duplex With Private Elevator And Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,7 baths,8 Toilets,Old Ikoyi +4393,C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +4394,"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,$,"1,200,000",0,1,1,5 beds,7 baths,7 Toilets,Other Ikoyi +4395,Magnificent Quality 5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +4396,A Royal Finished 8 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,8 Toilets,Banana Island +4397,5 Bedroom Fully Detached Smart Duplex,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4398,4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +4399,4 Bedroom Town House (triplex),Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +4400,4 Bedroom Penthouse Apartment,Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4401,4 Bed Super Luxury Apartment With Bq,Banana Island Ikoyi Lagos,₦,"233,000,000",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +4402,4 Bed Super Maisonnette With Bq,Royal Palms Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"76,990,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +4403,4 Bed Luxury Terrace Duplex,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"125,990,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +4404,4 Bedroom Luxury Maisonnette Duplex With Bq (off Plan),"No 1, Onikoyi Road Ikoyi Lagos",₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Onikoyi +4405,3/4 Bedroom Luxury Terraces Duplex With Bq (off Plan),Osborne Foreshore Estate Ikoyi Lagos,₦,"177,990,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +4406,3 Bedroom Apartment With Bq (off Plan),Riverside Ii Banana Island Ikoyi Lagos,₦,"170,500,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +4407,4 Bed Luxury Maisonette With Bq ( Off Plan),Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,5 baths,0 Toilets,Other Ikoyi +4408,Super Luxury 3 Bedroom Apartment With Bq (offplan),Osborne Foreshore Estate Ikoyi Lagos,₦,"86,000,000",1,0,0,3 beds,3 baths,4 Toilets,Foreshore +4409,4 Bedroom Maisonette Duplex With Bq (offplan),Banana Island Ikoyi Lagos,₦,"178,000,000",1,0,0,4 beds,5 baths,5 Toilets,Banana Island +4410,Exquisite 4 Bedroom Maisonette Duplex With Bq,Alexander Road Banana Island Ikoyi Lagos,₦,"175,000,000/day",1,0,0,4 beds,5 baths,5 Toilets,Banana Island +4411,"Bareland Banana Island Water Front Plot, Size :2060sqm",Off Second Avenue Banana Island Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0, beds, baths, Toilets,Banana Island +4412,4 Bedroom Duplex With Bq,Off Kingsway Road .ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4413,Bare Land 4600sqm Water Front Plot Banana Island Ikoyi,Off Second Avenue Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0, beds, baths, Toilets,Banana Island +4414,Direct Sale 6100 Sqm Banana Island Ikoyi,Residential Zone J And P Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets,Banana Island +4415,"Bareland, Plot J44 1000sqm Banana Island Ikoyi",In A Close Off Second Avenue Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +4416,Bare Land Plot :j60d :1134sqm Banana Island Ikoyi,"Off 3rd Avenue , Plot :j60d Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +4417,5 Bedroom Luxury Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"136,990,000",1,0,0,5 beds,6 baths,6 Toilets,Foreshore +4418,Joint Venture 4200sqm Land Gerard Road Old Ikoyi,Residential Highbrow Gerard Road Old Ikoyi Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4419,Block Of 3bedrooms Apartment,Norman Williams South West Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4420,Joint Venture Land 4570sqm,Residential Plot Jzone Street Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +4421,3 Bedroom Apartment With Bq (offplan),Banana Island Ikoyi Lagos,₦,"170,500,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +4422,"Banana Island Water Front Land: Plot : L9, Size: 4600sqm",Mixed Zone Plot : L9 Banana Island Ikoyicommercial Land Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +4423,Newly Built 4bedroom Duplex With Bq,Off Bourdillon Old Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +4424,A Lovely Mini Flat,Osborne Foreshore Estate 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets,Foreshore +4425,1939 Sqm Water Front Land,Water Front Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +4426,An Exquisitely Finished 5 Bedroom Semi Detached Duplex With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4427,"Corner Piece Plot Measuring 5,414.69 Square Meters With Pile Foundations For Twin 15 Storey Luxury Towers",Glover Road Ikoyi Lagos,$,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4428,4 Bedroom Maisonette With Governor's Consent In A Good Location.,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Foreshore +4429,An Exquisitely Finished 5 Bedroom Semi Detached Duplex With An En Suite Basement And A Room Bq,Banana Island Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4430,"A Waterfront 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4431,4 Bedroom Maisonette Duplex,"Elizabeth Grace Court 1, Parkview Estate Ikoyi Lagos",₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4432,"A Contemporary 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4433,5 Bedroom Fully Detached Duplex,... Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4434,2bedroom Luxury Apartment,Bourdillon Ikoyi Lagos,₦,"112,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Ikoyi +4435,2800sqm Land,Kalabari Off Queen Drive Falomo Ikoyi Lagos,₦,"1,960,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +4436,2300sqm Land,Mekwen Off Queen Drive Falomo Ikoyi Lagos,₦,"1,380,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4437,Luxurious 3bedroom Apartment,Bourdillon Ikoyi Lagos,₦,"159,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +4438,1bed Studio Apartment,Bourdillon Ikoyi Lagos,₦,"89,000,000",1,1,0,1 beds,2 baths,2 Toilets,Other Ikoyi +4439,5 Bedroom House,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +4440,Over 1000sqm Land,Foreshore Estate Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4441,5 Bedroom Duplex,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,5 beds,5 baths, Toilets,Old Ikoyi +4442,Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4443,Newly Built & Fully Serviced 3 Bedroom Apartment,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4444,Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4445,Newly Built & Fully Serviced 2 Bedroom Apartment,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"130,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +4446,Captivating 5 Bedroom Detached Duplex With Pool, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +4447,Eye Catching Luxury 4 Bedroom Maisonette With Bq,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +4448,4 Bedroom Terrace Duplexes,"Turnbull Road, (opp. Banana Island Road) Ikoyi Lagos Ikoyi Lagos",₦,"240,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +4449,1200sqm Land,Bode Olajumoke Street Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4450,5 Bedroom Detached Duplex With Swimming Pool.,"Ikoyi, Lekki Ikoyi Lagos",₦,"700,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +4451,"11 Units Of 3 Bedroom Apartments With Bq, Elevator, And Swimming Pool", Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4452,4 Bedroom Luxury Maisonette In The Plus Residence Ikoyi,Cedarwood Luxury Beside Efcc Office Ikoyi Lagos,₦,"197,500,000/day",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +4453,4 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +4454,5 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4455,3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4456,Luxury Duplexes,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4457,Tastefully Built 5 Bedroom Fully Detached House With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +4458,Executive 4bedroom Maisonette With A Bq,Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4459,3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4460,4bedrooms Semi Detached Duplex With Bq,Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4461,Luxury 5 Bedrooms Fully Detached Duplex With 2 Rooms Boys Quarters,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4462,5 Bedroom Semi Detached Duplex With 2 Rooms Boys Quarters,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4463,4 Bedrooms Terraces With 1 Room Boys Quarter,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4464,5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +4465,Lovely Environment 4 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4466,Apartments,Z Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4467,Land,Old Ikoyi Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4468,4 Bedroom Top Notch Maisonette,Old Ikoyi Ikoyi Lagos,$,"1,100,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4469,8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +4470,Land,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4471,12 Bedroom Maisonette And 1 Penthouse Villa,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4472,Luxury 4 Bedroom Terrace.,Banana Island Ikoyi Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4473,Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4474,Newly Built Five Bedrooms Detached House,"Banana Island ??,ikoyi Banana Island Ikoyi Lagos",$,"1,500,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +4475,Luxurious 5bedroom Detached Duplex Very Spacious With Modern Finishing,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds, baths,6 Toilets,Other Ikoyi +4476,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4477,Luxury 5 Bedroom Detached Duplex With Bq For Sale,Ikoyi Lagos,₦,"1,000,000,000",1,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +4478,5 Bedroom Luxury Detached Duplex With Private Elevator,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4479,Smart 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4480,English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +4481,Well Apportioned 5 Bedroom House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4482,5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4483,6 Bedroom Duplex,Ikoyi Off Banana Island Road Ikoyi Lagos,₦,"1,400,000,000,000/year",0,1,1,6 beds,0 baths,7 Toilets,Banana Island +4484,Luxury 4 Bedroom Maisonette And 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"300,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +4485,9 Bedroom Mansion Detached House,Banana Island Ikoyi Lagos,₦,"16,000,000,000",0,0,0,9 beds,9 baths,10 Toilets,Banana Island +4486,Ultra Luxury 3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4487,Newly built 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4488,3 Bedroom Flat,Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4489,Brand New 5 Bedroom Fully Detached Duplex,Off Kingsway Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4490,4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4491,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4492,"Luxury, Sleek 4 Bedroom Residences",Close To Banana Island Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4493,Brand New Modern 4 Bedroom Massionette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4494,5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4495,Offering Ultra Luxury 3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4496,3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4497,5 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4498,5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4499,Luxe 3 Bedroom Apartments,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4500,Luxury 3 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4501,5 Bedrooms Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4502,3 Bedroom Fully Automated Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4503,Hotel,Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4504,Luxury 3 Bedrooms Apartment With 1 Room B/q,Glover Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +4505,Presidential 5bedroom Fully Detached House With Bq Living Room,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4506,Elegant Built 2 Bedroom Smart Luxury Apartment,"Off Ikoyi Golf Course, Ikoyi, Lagos Ikoyi Lagos",₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Ikoyi +4507,Fully Detached Six Bedrooms Mansion With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +4508,4 Bedroom Maisonette And A Room Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4509,Newly Built 4 Bedroom Maisonette + Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4510,3 Bedroom Apartment And A Room Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4511,Brand New 2 Storey Furnished Guesthouse,Ikoyi Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4512,6 Bedroom Full Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,8 baths,9 Toilets,Old Ikoyi +4513,Luxurious 5 Bedroom Fully Furnished Maisonette,Banana Banana Island Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,7 baths,8 Toilets,Banana Island +4514,4bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4515,Lovely 3 Bedroom Flat Maisonnette With Bq And Furnitures And More,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,4 baths,5 Toilets,Onikoyi +4516,4 Bedroom Semi Detached With Swimming Pool,Ikoyi Lagos,₦,"210,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +4517,Waterfront 5 Bedroom Duplex With Servant Quarter,Ikoyi Lagos,₦,"580,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4518,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4519,5 Bedroom Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4520,Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,1,5 beds,7 baths,7 Toilets,Banana Island +4521,1000sqms Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4522,"Great Plot At J Zone 2,500sqms",J Zone Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +4523,4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4524,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4525,Luxury 5 Bedroom Duplex With Servant Quarters,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +4526,5200sqms Plot,Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4527,Brand New 28 Rooms Guest House,Ikoyi Lagos,$,"14,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +4528,Luxury 4 Bedroom Flat With Gym And Has World Class Finishing,Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4529,850 Sqms Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4530,5 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4531,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4532,"Great Plots 1,180sqms",G Zone Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Banana Island +4533,Newly Built 4 Bedroom Terraced Duplex In A Highbrow Neighborhood,Ikoyi Lagos,₦,"200,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +4534,4 Bedroom Maisonettes And 2 Penthouses,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets,Foreshore +4535,5 Bedroom Luxury Duplex,Ikoyi Ikoyi Lagos,₦,"930,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +4536,5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4537,Finished Spacious 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4538,4 Units Of 5 Bedroom Terraced Duplex,Osborne Foreshore Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +4539,Available Land,Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4540,Fully Furnished 8 Nos. Of 4 Bedroom Luxury Flats,Parkview Estate Ikoyi Lagos,₦,"1,900,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +4541,Luxury 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"8,500,000/year",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +4542,4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4543,Well Renovated 4 Bedroom Terrace Duplex + A Room Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,5 baths,5 Toilets,Parkview +4544,1134sqm Land,Block J Plot 60 D Banana Island Ikoyi Lagos,₦,"1,360,800,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4545,5 Bedrooms Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4546,Luxury 4 Bedroom Duplex,Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +4547,Luxury And Brand New 3 Bedroom Flat,Ikoyi Lagos,₦,"112,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4548,Exquisite 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +4549,Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets,Other Ikoyi +4550,Luxurious Finished 7 Bedroom Fully Detached Duplex,Bananq Island Banana Island Ikoyi Lagos,₦,"5,000,000,000",1,1,1,7 beds,7 baths,8 Toilets,Banana Island +4551,Newly Renovated Block Comprising Of 12 Number 3bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Parkview +4552,5bedroom Fully Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4553,Tastefully Finished 4 Bedroom Fully Detached,Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +4554,Newly Built And 4bedroom Semidetached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +4555,Newly Built 5bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +4556,Newly Built 5 Bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +4557,The Executive 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"665,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +4558,36 Units Of Luxury 4 Bedrooms Flat,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"720,000,000/sqm",0,0,0,10 beds,0 baths,0 Toilets,Old Ikoyi +4559,Massive Block Of 8 Flats Of 3 Bedrooms,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"1,600,000,000/sqm",0,1,0,10 beds, baths, Toilets,Parkview +4560,Block Of 10 Flats Of 3 Bedrooms At Bourdilllion Road For Sale,"Bourdilllion Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"1,100,000,000/sqm",0,0,0,10 beds, baths, Toilets,Other Ikoyi +4561,4 Bedroom Pent House For Sale,Onikiyi Estate By Banana Banana Island Ikoyi Lagos,₦,"180,000,000/sqm",0,0,0,4 beds, baths, Toilets,Banana Island +4562,Luxury 4 Bedrooms Flat Located Rummens Road For Sale,Rumens Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,10 beds, baths, Toilets,Old Ikoyi +4563,4 Bedroom Detached Duplex With A Room Bq,Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4564,Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +4565,Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Foreshore +4566,8 Bedrooms Mansion, Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,8 beds,0 baths,0 Toilets,Parkview +4567,Land,Mekwuen Road Ikoyi Lagos,₦,"1,755,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4568,Land, Banana Island Ikoyi Lagos,₦,"1,360,800,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4569,Luxury 2 Bedroom Flat, Ikoyi Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +4570,Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4571,Luxury 3 Bedroom Apartment, Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4572,H.code Properties: Guesthouse,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,$,"14,000,000/year",1,1,1,10 beds,10 baths,10 Toilets,Onikoyi +4573,Quality Ocean View 5 Bedroom Semi Detached Duplex In A Prestigous Address,Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +4574,Nicely Built Ocean View 5 Bedroom Semi Detached Duplex In A Prestigious Location,Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4575,5 Bedroom Detached Home,Banana Island Ikoyi Lagos,₦,"17,000,000/month",0,1,0,5 beds, baths, Toilets,Banana Island +4576,4 Bedroom Maisonette Duplex With Bq,Addyholly Grace Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Parkview +4577,4bedroom Maisonette Wit Bq In An Rise Building With Private Swimming Pool,Addyholly Elizabeth Grace Osbourne Fourshore Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets,Foreshore +4578,3 Bedroom Apartment With C Of O,Addyholly Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4579,Newly Built 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4580,6 Unit Of 3 Bedroom Flat,Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4581,Property Consists Of 2 Numbers Standing (high Rise),Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4582,Newly Built Luxury 5 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4583,"Newly Built, 3 Bedroom Luxury Apartment",Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4584,Tastefully Finished Luxury 4 Bedroom Wing Duplexes,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4585,4 Bedroom Maisonette,Parkview Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4586,Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4587,Mansion,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +4588,"Newly Built, 3 Bedroom Luxury Apartment",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4589,Luxury 5 Bedroom Detached Duplex With Swimming Pool For Sale,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +4590,Luxury 4 Bedroom Semi Detached Duplex With Bq!!!,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +4591,Newly Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"465,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4592,Luxury 4bedroom Apartments For Sale In Banana Island Lagos Nigeria.,Banana Island House Banana Island Ikoyi Lagos,₦,"200,000,000/day",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +4593,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4594,5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4595,4 Bedroom Maisonette Duplex With Bq,Elizabeth Grace Court 1 Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +4596,4 Bedroom Maisonette Duplex With Bq,Elizabeth Grace Court 1 Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +4597,4 Bedroom,Parkview Estate Ikoyi Lagos,₦,"170,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +4598,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +4599,Super Luxurious 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +4600,Land Measuring 500sqm,R21 Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4601,Luxury 4 Bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,1,4 beds,5 baths,6 Toilets,Parkview +4602,Federal C Of O,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Onikoyi +4603,Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +4604,Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,3 beds,4 baths,4 Toilets,Banana Island +4605,4 Bedroom Condominium With 2 Boys Quarters,"Probyn Close, Off Bourdillon Road Old Ikoyi Ikoyi Lagos",₦,"398,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4606,Luxury 4 Bedroom Semi Detached Duplex With A Boys Quarter,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"420,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4607,Brand New 5 Bedroom Fully Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +4608,Tastefully And Luxuriously Built 5 Bedroom Maisonette With A Bq In A Serene And Secured Neighborhood,Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +4609,Tastefully Built 2 Bedroom Flat With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,1,2 beds,2 baths,3 Toilets,Banana Island +4610,Luxury 4 Bedroom Apartment With 2 Rooms Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +4611,Newly Built 2 Bedroom Flat For Sale In Secure And Serene Estate In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"112,000,000",1,1,1,2 beds,2 baths,3 Toilets,Old Ikoyi +4612,Luxury 4 Bedroom Townhouse With 2 Boys Quarters,Federal Government Layout Banana Island Ikoyi Lagos,₦,"470,000,000/month",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +4613,5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Foreshore +4614,"3,400.882 Sqm Land",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4615,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4616,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4617,Luxury 3 Bedroom Flats,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4618,Well Built 6 Bedroom Detached House All Rooms Ensuite,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +4619,11 Units Of 3 Bed Apartments With Bq,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4620,5 Units Of 5 Bedroom Semi Detached Duplex But Only 2 Units Remaining, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4621,2 & 3 Bedrooms Apartment With Swimming Pool And Gym,Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +4622,Luxury Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,0 baths,0 Toilets,Parkview +4623,Super 6 Bedroom Detached Duplex With 2 Rooms Bq,With Swimming Pool Gym Etc Title: Governor's Consent Parkview Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Parkview +4624,A Brand New 3 Bedrooms Flat Pent House,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +4625,Units Of 2 And 3 Bedroom Apartments,Onikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4626,An Architectural Masterpiece Which Consists Of 6 Bedrooms And 2 Bq In Banana Island Features/amenities 1. Land Area Is Approx 700sqm 2. Fully Furnished Spanish Kitchen With Miele Appliances,Inside Banana Estate Ikoyi Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4627,The Longest House 2 Bedroom Apartment And 3 Bedroom. With Bq. In Eko Alactic,Ight And A Minimum Of 3 Night Is What Is Obtainable At Eko Pearltowers. Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,2 beds, baths, Toilets,Banana Island +4628,Land,Ikoyi Lagos,₦,"650,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4629,4 Units Of 5 Bedroom Maisonettes With Maid's Room,Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4630,Contemporary 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +4631,Land,Balrabe Musa Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4632,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4633,Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4634,Excellent 4 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4635,Land,Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4636,Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4637,5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4638,Luxurious Finished 7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +4639,Luxurious Finished 7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +4640,3 Bedrooms Flats,Osborne Foreshore Estate Ikoyi Lagos,₦,"8,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +4641,Beautifully Finished 5 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4642,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4643,7 Bdedroom Waterfront Fully Furnished Palatial Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +4644,Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4645,Luxury 3 Bedroom Flat With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +4646,Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4647,Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4648,Brand New 4 Bedroom Maisonette With A Bq,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4649,Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4650,Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4651,3 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4652,3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +4653,4 Bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4654,A Luxury Fully Automated 5 Bed Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"923,000,000,000",1,1,0,5 beds,8 baths,7 Toilets,Old Ikoyi +4655,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +4656,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4657,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Ikoyi +4658,Elizabeth Grace Court,Parkview Estate Ikoyi Lagos,₦,"170,000,000/month",0,1,0,10 beds,10 baths,10 Toilets,Parkview +4659,Newly Built 5 Bedroom,Onikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4660,Newly Built Luxurious 4bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4661,Available Land,Banana Island Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4662,"9 No Of 1 Bed Room Flat, 20 No Of 2 Bed Room Flat, 24 No Of 4bed Room Flat, 1 No Of 5 Bed Room Penth House",Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4663,5bed Room Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +4664,5 Bed Room Fully Detach Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +4665,32 Units Of 3 Bedroom Flat Plus 24 Units Of 4 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"10,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +4666,Land In Ikoyi,Macpherson Ikoyi Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4667,3 Bedroom Flat,D Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Onikoyi +4668,5 Bedroom Semi Detached Duplex With 2rooms Underground Bq Attached In Ikoyi,Macpherson Ikoyi Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +4669,5 Bedroom Semi Detached Duplex With 2rooms Underground Bq Attached In Ikoyi,Macpherson Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +4670,17 Rooms Furnished Guest House,"Osborne Foreshore, Second Avenue, Osborne Towers Osborne Foreshore Estate Ikoyi Lagos",$,"2,000,000",0,0,1,10 beds,10 baths,10 Toilets,Foreshore +4671,Land In Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Banana Island +4672,Brand New 4 Bedroom Fully Detached Duplex With Servant Quarters,Osbourne Estate Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +4673,Luxury Vintage 9 Bedroom Detached Mansion On 766.416sqm,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,9 beds,10 baths,10 Toilets,Banana Island +4674,60units Of Luxury 3bedroom Apartments And Studio Apartments,Garrald Building Old Ikoyi Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4675,5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4676,5bedroom Maisonette With Servant Quarters,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",1,0,0,5 beds,5 baths,6 Toilets,Banana Island +4677,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4678,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4679,5 Bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +4680,9 Bedroom Detached Mansion On 766.416sqm,Banana Island Ikoyi Lagos,₦,"2,700,000,000",0,0,0,9 beds,0 baths,0 Toilets,Banana Island +4681,Six Bedroom Semi Detached Luxurious Building With Private 8 Car Parking Space,Olawale Dawodu Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,1,6 beds,6 baths,7 Toilets,Old Ikoyi +4682,Luxury 4bedroom Maisonette Duplex,Acacia Close Osborne Foreshore Estate Ikoyi Lagos,₦,"79,000,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +4683,"A Brand New Tastefully Finished 5 Bedroom Duplex With 2 Room Bq At Parkview Estate, Ikoyi. Title: C Of O",Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,6 baths,6 Toilets,Parkview +4684,Renovated 4bedroom Duplex,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +4685,5 Bedroom Penthouse,D Old Ikoyi Ikoyi Lagos,₦,"10,001,000",0,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +4686,11 Units Of Brand New 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4687,Luxury 4bedroom Maisonette Duplex,Alexander Way Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Foreshore +4688,Luxury Vintage 9 Bedroom Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4689,5 Bedroom Fully Detached Duplex With A Private Elevator And A Boys Quarter (bq),Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0, beds, baths, Toilets,Banana Island +4690,Newly Built 3 Bedroom Apartment In A Serene Environment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4691,3 Bedroom Apartment With Bq,"...,. Ikoyi Lagos",₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4692,Terrace Sale Ikoyi Lagos,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets,Foreshore +4693,Luxury 8 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,10 baths,10 Toilets,Banana Island +4694,Land For Sale Ikoyi,Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Parkview +4695,600sqms Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4696,"Osborne Phase 2 Land,5200sqm Waterfront",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +4697,5 Bedroom Super Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"99,999,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +4698,3 Bedroom Luxury Maisonnette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"61,990,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +4699,Waterfront Land Banana Island Ikoyi,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets,Banana Island +4700,"Osborne Phase 1, Land",Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4701,"Parkview Estate Land, 1357sqm With Demolishshable Structure, Can Be Split Into 678sqm",Parkview Estate Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Parkview +4702,4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"49,990,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4703,"Banana Island Land Reclamation Of 164 Acres, Ikoyi",Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets,Banana Island +4704,2000sqm Land With 4 Bedroom Detached Duplex Plus Bq,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4705,"Osborne Phase 2 Land, 2915sqm",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Foreshore +4706,"Ikoyi, Orsborne, Foreshore 4 Bedroom Maisonette + Bq",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"70,990,000",1,1,0,5 beds,5 baths,6 Toilets,Foreshore +4707,3500sqm Land With Structure,Temple Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4708,"Ikoyi Land For Sale, 900sqm. 350 Million Asking",Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4709,Top Notch Sky Scraper 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +4710,"Parkview Estate Land, 876 Sqm, With Demolishshable Structure On It",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Parkview +4711,Parkview Mansion Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"680,000,000",1,0,1,10 beds,10 baths,10 Toilets,Parkview +4712,"Osborne Phase 1, Land Size 584 Sqm For Sale",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +4713,8 Master Bedroom Luxury Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,0 baths,0 Toilets,Parkview +4714,"Ikoyi Land For Sale, James George Street, 3994sqm",James George Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4715,Parkview Estate Ikoyi 540sqm,Ikoyí Parkview Estate Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Parkview +4716,4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"69,999,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4717,"Osborne Phase 1, Waterfront Plot",S Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4718,Block Of 6 Flats Apartments, Banana Island Ikoyi Lagos,₦,"3,500,000,000",1,1,1,4 beds,4 baths,4 Toilets,Banana Island +4719,26000sqm Land,Off Gerad Road Ikoyi Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4720,"Parkview Estate , Land For Sale. Corner Piece, 950sqm",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Parkview +4721,Banana Island Waterfront Land. 2000sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets,Banana Island +4722,4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"49,990,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4723,Queen's Drive Old Ikoyi Land,Z Old Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4724,Waterfront View Plots Of Land,"Acacia Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +4725,2700sqm Land With 6 Bedroom Detached Duplex,Ikoyi Makween Road Ikoyi S.w Ikoyi Lagos,₦,"1,620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4726,"Osborne Phase 2 Land , 2915 Square Meters",Z Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4727,4 Bedroom Luxury Duplex,Osborne Foreshore Waterfront Osborne Foreshore Estate Ikoyi Lagos,₦,"29,990,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +4728,"Parkview Estate Land, 1000sqm Land Size On Agodogba",Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Parkview +4729,"Parkview Estate Land, Size 950sqm. With Demolishshable Structure",Parkview Estate Ikoyi Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets,Parkview +4730,"Osborne Phase 1 Land, Size 548sqm",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +4731,Banana Island Land 1060 Square Meters.,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4732,Landed Property,Behind Golden Gate Restaurant Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4733,"Osborne Phase 2 Land, 2500sqm",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Foreshore +4734,"Banana Island Land, 2 Locations, 500 Square Meters Each.",Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Banana Island +4735,Banana Island Luxury Flats ( Waterfront Views),Banana Island Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +4736,Dry Land Fenced With Gate,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4737,Land,Osborne Foreshore 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4738,Newly Built Three Bedrooms Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,1,3 beds,3 baths,4 Toilets,Banana Island +4739,An Exquisite 3 Bedroom Luxury Apartment In A Serene Environment,Gerard Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +4740,Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +4741,Neatly Built 3 Bedroom Pent House With Maid's Room,Onikoyi Banana Island Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +4742,Foreign Designed Luxury 5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4743,Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4744,Brand New And Contemporary Finished 5 Bedroom Detached House With Bq Swimming Pool,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4745,29 Units Of Spacious 3 Bedroom Waterfront Apartments,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +4746,Renovated 5 Units Of 5 Bedroom Terrace,Banana Island Ikoyi Lagos,$,"1,400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4747,Parkview Mansion,S Parkview Estate Ikoyi Lagos,₦,"680,000,000",1,0,0,10 beds,10 baths,10 Toilets,Parkview +4748,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +4749,"5 Bedroom Fully Detached Duplex, With Jetty For Sale","Ikoyi, Lagos Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths, Toilets,Other Ikoyi +4750,Luxury And Spacious 7 Bedrooms Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4751,Exquisitely Finished Units Of 3 Bedroom Apartments + A Room Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4752,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +4753,6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +4754,3 Bedroom Apartment With Gym And Swimming Pool.,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +4755,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4756,Well Built 4 Bedroom Terrace Duplex With A Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4757,3 Bedroom Apartment With Bq,"Ikoyi, Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4758,4 Bedroom Massionette,Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +4759,5 Bedroom Fully Detached Duplex With 2 Room Bq,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +4760,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +4761,Luxury 4 Units Of 5 Bedrooms Maisonette,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4762,Self Serviced 4 Bedroom Terrace Duplex At Ikoyi,Ikoyi Parkview Estate Ikoyi Lagos,₦,"155,000,000/sqm",0,0,0,4 beds,4 baths,5 Toilets,Parkview +4763,5 Bedroom Fully Detached Duplex With 2bqs,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4764,Fully Finished 3 Bedroom Apartments, Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4765,Luxury And Spacious 2 Bedroom Flat,Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4766,Block Of Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +4767,5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4768,Exquisitely Finished Units Of 2 Bedroom Apartments + A Room Bq,Onikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4769,Waterview 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4770,5bedrooms Fully Detached Duplex With Bq,X Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +4771,5 Bedroom Terrace House With Two Living Room,"Osborne Foreshore Estate, Phase 1 Ikoyi Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Foreshore +4772,8 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +4773,4 Bedroom Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +4774,3 Bedroom Flat Penthouse,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +4775,3bedrooms Apartment With Bq,Z Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +4776,5 Bedroom Duplex, Old Ikoyi Ikoyi Lagos,₦,"750,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +4777,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +4778,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +4779,"Smart Home 5 Bedroom Semi Detached Duplex With 3 Rooms Bq, Banana Island",Banana Island Ikoyi Lagos,₦,"485,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4780,Luxury 5 Bedroom Massionette,Banana Island Ikoyi Lagos,$,"1,000,000",1,0,0,5 beds,6 baths,7 Toilets,Banana Island +4781,3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +4782,3 Bedroom Apartment,Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4783,3 Bedroom Apartments With 1bq,Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +4784,6 Bedroom Fully Detached Mansion For Sale,"Ikoyi, Lagos Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4785,Luxury 3 Bedroom Apartment,Awolowo Road Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,2 Toilets,Other Ikoyi +4786,4 Bedroom Duplexes,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,5 baths,4 Toilets,Banana Island +4787,"Automated Massion , Magnificent & Fully Furnished 10 Bedroom",Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4788,Partitioned Land,Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4789,5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +4790,4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4791,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +4792,Brand New 5 Bedroom Fully Detached House With 2 Room Bq Swimming Pool And Elevator Cinema Room Inside Park View Estate Ikoyi.,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,1,0, beds, baths, Toilets,Parkview +4793,"Newly Built Luxury 5bedroom Semi Detached Duplex With Bq For Sale In A Mini Estate, Onikoyi.",In A Mini Estate In Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"360,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +4794,Beautifully Finished 5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4795,Luxury 5 Bed Semi Detached Smart Home With A Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +4796,"Super Spacious 5 Bedroom Luxury Maisonette With Swimming Pool, Gym And Elevator", Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4797,Excellent 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym, Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4798,"Deluxe 5 Bedroom Terrace Duplex With 2 Bq Location: Banana Island, Lagos.",Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4799,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4800,4 Units Of Luxury 3 Bedroom Terrace With A Room Bq Each,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +4801,5 Bedroom Fully Detached House With Swimming Pool Ample Parking 5 To 6 Cars Cinema 2 Room Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4802,24 Units Of 4 Bedroom Flat At Ocean Parade,Banana Island Ikoyi Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Banana Island +4803,A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House.,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4804,2500m2 With Federal C Of O At Osbourne Phase 2,Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Foreshore +4805,Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool,= Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4806,Waterfront 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym On 650sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4807,"Prime 6,931sqm Land At Glover Road",Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4808,Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4809,4 Bedroom Semi Detached House With Bq,Parkview Estate Ikoyi Lagos,₦,"255,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4810,Waterfront 4300sqm At Queens Drive,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4811,5 Bedroom Terrace Duplex With Bq And Lush Gardens,Bank Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4812,A Vacant Block Of All En Suite 10 Units Of Luxury Apartments Comprising The Followings: 1). 1 Unit Of 5 Bedroom Luxury Penthouse 2). 1 Unit Of 4 Bedroom Luxury Penthouse 3). 3 Units Of 3 Bedroom Maisonettes 4). 3units Of 3 Bedroom Flats 5). 1 Unit Of 2,Ikoyi Lagos,₦,"4,000,000",1,1,0, beds, baths, Toilets,Other Ikoyi +4813,Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4814,"1,939sqm Mixed Development Water Front Plot",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4815,5 Bedroom In Osbourne Phase 1 With 2 Spacious Living Rooms Terrace House And One Room Bq At The End Unit Of The Building With A Nice Size Corner Piece Yard,Osbourne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"182,000,000",0,0,0,5 beds,0 baths,0 Toilets,Foreshore +4816,"Big Waterfront Plot For Development In Osborne Phase 2 Estate, Ikoyi* Plot Measuring 4,000sqms With Lasg Cofo",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Foreshore +4817,3 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"199,500,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4818,Block Of Flats Lying On 2500sqm Of Land.,Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4819,Block Of 6 Flats, Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4820,4 Bedroom Condominium With Family Living Room And A Maids Room, Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4821,A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House.,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4822,"Highrise With Penthouse And 26 Units, 3 Bedroom Flats &bq",Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4823,Brand New Penthouse, Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4824,Fully Serviced Brand New Luxury 2 Bedroom Apartment,"Ring Road, On The Right, By The Water Next To Osborne 2, Opposite Dolphin Ikoyi Lagos",₦,"112,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +4825,Exquisitely Finished 5 Bedrooms Fully Detached Duplex With Service Quarters.,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4826,5 Bedroom Detached Smart House With 8 Car Park Space And Elevator,Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0, beds, baths, Toilets,Old Ikoyi +4827,A 5 Bedroom Fully Furnished Penthouse Suite On 2 Floors With Pool,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4828,"Prime 4,397sqm Land At Glover Road",Gerard Road Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4829,Waterfront 5 Bedroom Luxury Detached House On 1300sqm With Jetty Access,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4830,"8 Bedroom House With 3 Parlors, 4 Bedroom Bq, Swimming Pool And 1500sqm Land Size",W Parkview Estate Ikoyi Lagos,₦,"670,000,000",0,0,0,8 beds,0 baths,0 Toilets,Parkview +4831,"The Development Comprises Of 24 3 Bedroom Luxury Apartments. These Modern And Contemporary Apartments Are Equipped With Fully Fitted Kitchens And Appliances, Pre Wiring For Smart Home Automation Systems, Ensuite Bedrooms, Walk In Closets, Balconies And A",Old Ikoyi Ikoyi Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets,Old Ikoyi +4832,4bedrooms Semi Detached Duplex With Bq,Z Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4833,Block Of Flat On 1000sqm, Awolowo Road Ikoyi Lagos,₦,"510,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4834,"Ojora Ikoyi *3,137* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4835,2 Units Of 5 Bedrooms Detached Duplex With Classical Finishing,Z Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4836,Block Of 8 (nos) 4 Bedroom Luxury Flats With Service Quarters. The Property Features State Of The Art Finishes.,Old Ikoyi Ikoyi Lagos,₦,"1,950,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4837,5 Bedroom Semi Detached House With Bq Almost Completed In Shoreline Estate Just Before Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets,Onikoyi +4838,"Land Description: 1,500sqmt On A 19",Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Banana Island +4839,English Style 6 Bedroom Fully Detached Mansion,E Old Ikoyi Ikoyi Lagos,₦,"740,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +4840,5 Bedroom Maisonnette In An Exclusive Mini Estate Of 4 Units In Banana Island,Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4841,5 Bedroom Semi Detached In Am Estate In Ikoyi,Ikoyi Lagos,₦,"295,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4842,54 Apartment High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House 5299.745 Sqm.,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4843,4 Bedroom Semi Detached House With Swimming Pool And Bq,Parkview Estate Ikoyi Lagos,₦,"349,000,000",0,0,0,4 beds, baths, Toilets,Parkview +4844,Sales Alexander Ikoyi Waterfront Land Size!: 2750mt2title: Fed Govt C Of O.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4845,5 Bedroom Semi Detached House With Underground Swimming Pool And Bq,Old Ikoyi Ikoyi Lagos,₦,"545,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4846,Block Of Flats Lying On 2500sqm Of Land.,Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4847,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Gym In A Mini Estate In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"645,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4848,Contemporary 5 Bedroom Fully Detached House In Mini Estate Ikoyi,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4849,Land Measuring 2917sqm Situated In Osborne Scheme 2,Z Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4850,6931sqm Land At Glover Road Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4851,3100sqm Bank Rd Ikoyicofo,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4852,"Serviced Luxury 5 Bedroom Fully Detached House, 2 Bq, Fully Fitted Kicthen, Ac In All Rooms & Fire Alarm System.",Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4853,54 Apartment High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House 5299.745 Sqm.,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4854,Lands,E Old Ikoyi Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4855,Sales Alexander Ikoyi Waterfront Land Size!: 2750mt2title: Fed Govt C Of O.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4856,4 Bedroom Apartment (en Suite),Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets,Old Ikoyi +4857,Joint Venture Of 4600sqm Waterfront Bare Land,Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4858,3 Bedroom Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"232,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +4859,Stunning 8 Units Of 4 Bedroom Semi Detached Townhouse,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +4860,Detached House On 5 Floor With 8 Car Park Spaces In Estate At Ikoyi,Old Ikoyi Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4861,"26,000 Square Metersoff Gerrard Road, Ikoyi Lagos",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4862,1940sqm Land, Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4863,3 Bedroom Maisonnette,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4864,Land In Old Ikoyi 2750mt2 Title: Fed Govt C Of O. 1500mt2 Can Be Reclaimed From The Water.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4865,"8 Units Of 4 Bedroom Terrace, A Private Elevator, Dumb Waiter ( Freight Lift ) And A Service Quarter On Four (4) Floors.",Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds, baths, Toilets,Banana Island +4866,Four Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4867,"Waterfront Residences In Banana Island* Built On On *6,200sqms*, This Project Has 18 Flats Units Of 3 Bed Flats And And 3 Penthouses",Banana Island Ikoyi Lagos,₦,"6,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +4868,3 Bedroom Luxury Apartments, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4869,"1150 Sqm Land At Magbon Close, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"718,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4870,"Vacant Old Structure On 2,645 Square Meters Plot.", Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4871,Apartment,Bourdillon Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4872,New 3 Bedroom Flats, Old Ikoyi Ikoyi Lagos,₦,"129,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4873,4600 At Mcgregor Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4874,Four Bedroom Terrace Duplex On Two Floors,L Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4875,44 Units Of Luxury Furnished 4 Bedroom,Bourdillon Ikoyi Lagos,$,"1,600,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +4876,Lands,E Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4877,"Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi, Lagos:",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"590,000,000",0,0,0,5 beds, baths, Toilets,Onikoyi +4878,4 Bedroom Luxury Apartment In A Fully Serviced Highrise Apartment,Bourdillon Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4879,"Land For Sale At South West Ikoyi, 889.463m²",Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4880,"1,467.046 Square Meters Land",Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4881,3 Bedroom Luxury Flat,Bella Vista Estate Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +4882,New Block Of Flat At Old Ikoyi 15 Units Of Luxurious 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,$,"9,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4883,"The Waterfront Property Is A 4 Bedroom Unit Sitting On 4 Floors And On Land Size Of 1,200sqm",Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4884,Apartments,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4885,Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool??*, Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4886,Higrise Apartment Luxuriously Built In 4 Buordillon Tower In Prestigious Ikoyi For Sale,Bourdillon Ikoyi Lagos,$,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4887,A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4888,5 Bedroom Detached House With 2 Room Bq In An Estate In Ikoyi,Ikoyi Lagos,₦,"375,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4889,Block Of 8 (nos) 4 Bedroom Luxury Flats With Service Quarters. The Property Features State Of The Art Finishes.,Old Ikoyi Ikoyi Lagos,₦,"1,950,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4890,3 Bedroom Luxury Flat,Bellavista Estate Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4891,"Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi.",Osborne Foreshore Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +4892,"Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi.",Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4893,"Waterfront Land Measuring 3,632m²",W Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4894,Parkview Estate Ikoyi Lagos876 Square Meters,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Parkview +4895,2 Units Of 3 Bedroom Flat, Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +4896,"Building On A Piece Of Land Split Into 3 Units Of 3bedrooms, And The Other 2units Made Up Of 2 Bedrooms Each",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Onikoyi +4897,24 Units Of 4 Bedroom Highrise Luxury Apartments In Ocean Parade Estate Banana Island,Banana Island Ikoyi Lagos,$,"35,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +4898,4 Bedroom Semi Detached House With Bq,Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +4899,3 Bedroom Duplex With Bq Luxuriously Built,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +4900,3 Bedroom Flats With Bq Brand New,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +4901,"Prime 6,500sqm Land At Ikoyi Crescent",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4902,5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Old Ikoyi Ikoyi Lagos,₦,"780,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +4903,500sqm Available Land, Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4904,Penthouse,Banana Island Ikoyi Lagos,$,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4905,"5200m2 With Embankment, Federal C Of O & Lagos State Regularisation",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Foreshore +4906,1500 Dry Bare Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Foreshore +4907,Luxury Highrise Apartments For Sale At 4 Buordillon Tower Ikoyi,Bourdillon Ikoyi Lagos,$,"4,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4908,"Bedwell Ikoyi *16,895* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4909,Land,Mcgregor Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4910,Land,Bank Road Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4911,2 Bedroom Flat, Ikoyi Lagos,₦,"218,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +4912,Land Use High Density Bedroom Colonial House With Bqland Size 2000sqm,Old Ikoyi Ikoyi Lagos,₦,"670,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4913,"4bedroom(all Room Ensuite) Penthouse With Service Quaters In A Service Apartment Location: Tango Towers, Along Bourdillon Road, Ikoyi, Lagos.",Buordillon Road Old Ikoyi Ikoyi Lagos,$,"1,700,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4914,5bedroom Duplex With Bq And Pool Inside Banana Island.,Banana Island Ikoyi Lagos,₦,"740,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4915,"3,500 Square Metres With A Demolishable Colonial Building Is Now Available",D Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4916,Waterfront Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4917,2000sqm Waterfront Land At Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +4918,27 Units Of 3 Bedroom Flats With Penthouse,Lawson Street Ikoyi Lagos,₦,"6,200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4919,"Top Notch Exquisitely Finished Terraces , Maisonettes And Penthouses",Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Banana Island +4920,New 5 Bedroom Fully Detached Duplex With Bq Swimming Pool Cinema And Bq At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"980,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4921,Penthouse At Old Ikoyi With Ultra Luxury,Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4922,2 Units Of 5 Bedroom Duplex Penthouse,Banana Island Ikoyi Lagos,$,"3,500,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4923,3 Bedroom Luxuriously Built Apartment On Buordillon Ikoyi,Bourdillon Ikoyi Lagos,$,"1,800,000",1,1,1,3 beds, baths, Toilets,Other Ikoyi +4924,4 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +4925,6 Units Of 4 Bedroom Terrace Houses. Each Unit Features: All Rooms Ensuite 2 Room Service Quarters 2 Car Garage,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +4926,4080sqm Land, Bourdillon Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4927,Land,Glover Road Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4928,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4929,5 Bedroom Semi Detached House With Bq And Open Rooftop Terraces Fitted Kitchen And Ample Parki5,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4930,"Land Size: 1,950 Sqmsbanana Island Waterfront Mixed Use Zone Plot*",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Banana Island +4931,6 Bedrooms Water Front On 1000sqm Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4932,5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4933,Ultra Luxury 5 Bedroom Detached House With Elevator Swimming Pool Gym Ample Parking,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4934,Waterfront 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym On 650sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4935,5 Bedroom Terrace House On 2 Floors With Bq And Fitted Kitchen,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4936,"Ruxton Ikoyi *2,348* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4937,Brand New 4 Bedroom Detached House With Acs Sitout Terrace Fitted Kitchen Bq,Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4938,5 Bedroom Semi Detached With Bq In An Estate In Ikoyi,Ikoyi Lagos,₦,"275,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4939,4 Bedroom Semi Detached House With Bq At Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets,Onikoyi +4940,6 Bedroom Fully Detached Smart Home With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,6 beds, baths, Toilets,Old Ikoyi +4941,Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4942,3 Bedroom Apartment With 2 Sitting Rooms & Bq,S Old Ikoyi Ikoyi Lagos,₦,"172,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +4943,"Shoreline Estate, Ikoyi* Plot Measuring 876sqms",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Onikoyi +4944,1170sqm Land For Sale @ Ikoyidimension: 18 Meters By 65 Meter,Off Alfred Rewane Ikoyi Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4945,A Vacant Block Of All En Suite 10 Units Of Luxury Apartments Comprising The Followings: 1). 1 Unit Of 5 Bedroom Luxury Penthouse 2). 1 Unit Of 4 Bedroom Luxury Penthouse 3). 3 Units Of 3 Bedroom Maisonettes 4). 3units Of 3 Bedroom Flats 5). 1 Unit Of 2,Ikoyi Lagos,₦,"4,000,000,000",1,1,0, beds, baths, Toilets,Other Ikoyi +4946,3944 Sqm Land, Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4947,"2553 Sqm Of Land On Milverton Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4948,4554sqm Land,Off Queens Drive Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4949,"Shoreline Estate, Ikoyi* Plot Measuring 1,015sqms With State C Of O",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Onikoyi +4950,3 Bedroom Duplex With Bq,Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4951,"1,600sqm Land", Ikoyi Lagos,₦,"490,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4952,2500sqm At Rumen Ikoyicofo,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4953,1500sqm Land,Lugard Street Old Ikoyi Ikoyi Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4954,"6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +4955,"26,000 Square Metersoff Gerrard Road, Ikoyi Lagos With Fed C Of O",Off Geread Road Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4956,4500sqm Land At Old Ikoyi At Mckween,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4957,"4,300sqm Land With Registered Title", Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4958,4600sqm Waterfront Land At Banana Island Ikoyi,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets,Banana Island +4959,Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool??*, Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4960,3 Bedroom Brand New Fully Fitted Luxury Service Apartments,Ring Road Ikoyi Lagos,₦,"159,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4961,4 Bedroom Luxury Apartments With Bq,Ocean Parade Banana Island Ikoyi Lagos,$,"1,200,000",1,1,0,4 beds,0 baths,0 Toilets,Banana Island +4962,"4,000 & 4,244 Land At Queen Drive, Ikoyi. Title: C Of O",Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4963,Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4964,1200sqm Land, Parkview Estate Ikoyi Lagos,₦,"456,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +4965,A Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",1,0,1, beds, baths, Toilets,Old Ikoyi +4966,Demolishable Buidling On 1000sqm At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"490,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4967,Twenty Four Units (24) Of Two (2) Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets,Old Ikoyi +4968,"Spectacular Architecture, 5 Bedrooms Semi Detached House; Nestled Within A Prestigious Estate",Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4969,"Land Size: 1,950 Sqmsbanana Island Waterfront Mixed Use Zone Plot*",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Banana Island +4970,"Studio, 2, 3 And 4 Bedroom Apartments",Before 3rd Mainland Ilubirin City Ikoyi Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4971,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +4972,Land,Glover Road Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +4973,Fully Detached House With 1 Room Bq For Commercial 340sqm Land,Raymond Njoku Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +4974,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +4975,"A 5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq At The End Unit Of The Building With A Nice Size Corner Piece Yard,",Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",1,0,0,5 beds, baths, Toilets,Foreshore +4976,2300sqm Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +4977,5 Bedroom Detached Luxury Smart House With Penthouse On With Elevator And 8 Car Park Spaces,Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,1,0,5 beds, baths, Toilets,Old Ikoyi +4978,Magnificent And Well Finished 5 Bedroom Detached House In A Residential Zone,W Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +4979,4300sqm At Queens Drive Ikoyi,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4980,5 Bedroom Terrace Duplex In Gulliano By Sujimoto Banana Island,Banana Island Ikoyi Lagos,₦,"595,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4981,Digital Luxury Apartments And Duplexes With Bq,Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +4982,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +4983,3 Bedrooms Flat With Bq And Pool,Parkview Estate Ikoyi Lagos,₦,"97,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +4984,"Serviced Luxury 5 Bedroom Fully Detached House, 2 Bq, Fully Fitted Kicthen, Ac In All Rooms & Fire Alarm System.",Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets,Old Ikoyi +4985,"Tastefully Finished 4 Units Of 5 Bedroom Fully Serviced Maisonette Plus Maids Room Sitting On 1,088sqm Land",W Banana Island Ikoyi Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4986,4 Bedroom Semi Detached House With Bq Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds, baths, Toilets,Parkview +4987,"6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",G Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +4988,"House On 4,088sqm On Bourdillon Rd, Ikoyi With Lagos State Title (91 Yrs Unexpired Residue)",Bourdillon Ikoyi Lagos,₦,"755,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +4989,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema Gym And Open Roof Terrace In Mini Estate In Banana Island,Banana Island Ikoyi Lagos,₦,"740,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4990,Waterfront 5 Bedroom Fully Detached Duplex With Jetty,Ikoyi Lagos,₦,"615,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +4991,Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4992,Great Buy 4 Bedroom Terrace Duplex With Bq Waterfront Garden Ample Parking,Ikoyi Lagos,₦,"195,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +4993,Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +4994,Waterfront 6 Bedrooms Detached House With Swimming Pool Cinema And Gym,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets,Banana Island +4995,"5 Bedroom Semi Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +4996,Waterfront 5 Bedroom Detached Luxury Smart House In Banana,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +4997,"A Commercial Building Consisting Of 15 Floors Of Office Spaces Inclusive Of The Ground Floor, Each Floor Measuring Approximately 1000 Square Meters Together With Facilities",Old Ikoyi Ikoyi Lagos,$,"110,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +4998,5 Bedroom Semi Detached House With Bq Almost Completed In Shoreline Estate Just Before Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets,Onikoyi +4999,"4,088sqm On Bourdillon Rd, Ikoyi With Lagos State Title (91 Yrs Unexpired Residue)",Bourdillon Ikoyi Lagos,₦,"735,000/sqm",0,0,0, beds, baths, Toilets,Other Ikoyi +5000,"4,300sqm Land Along",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5001,Waterfront Land At Alexander 2800sqm,Old Ikoyi Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5002,New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +5003,"Land Measuring 3,500 Square Metres With A Demolishable Colonial Building Is Now Available On Temple Road, Old Ikoyi, Lagos.*",Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5004,An Ultra Luxury 4 Bedroom Apartment, Bourdillon Ikoyi Lagos,$,"1,800,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5005,4 Bedroom Semi Detached Duplex With Bq In A Service Estate,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets,Parkview +5006,4bedroom(all Room Ensuite) Penthouse With Service Quaters In A Service Apartment.,Bourdillon Ikoyi Lagos,$,"1,700,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5007,Partitioned Land Measuring 3100sqm, Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5008,Land,Gerard Road Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5009,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +5010,Land Measuring 2917sqm Situated In Osborne Scheme 2,Z Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5011,Land,Mckween Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5012,2500sqm At Old Ikoyi With Demolishable Building,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5013,Land,Alexander Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5014,2750mt2 Water Front Land,Alexandria Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5015,Land In High Density Old Ikoyi 6400sqm,Old Ikoyi Ikoyi Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5016,Waterfront 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"159,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5017,"Furnished And Unfurnished 1st Floor, 3 Bedroom Apartment + 2rooms Bq.",S Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +5018,"Strategically Located:2,000sqm Land", Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5019,4 Bedroom Deluxe Penthouse With Bq And Elevator,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds, baths, Toilets,Old Ikoyi +5020,2 Bedroom Lovely And Luxurious Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5021,A 4 Bedroom All En Suite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5022,Lavishly Finished 5 Bedrooms Detached House On 4 Floors, Old Ikoyi Ikoyi Lagos,₦,"798,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +5023,4 Bedroom Semi Detached House With Bq At Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets,Onikoyi +5024,3 Bedroom Apartment (en Suite) ,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +5025,A Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Bourdillon Ikoyi Lagos,₦,"4,000,000,000",1,1,0, beds, baths, Toilets,Other Ikoyi +5026,Fully Detached Houses,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +5027,"11,743sqm Prime Land At Gerrard Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5028,"Fantastic Fully Detached 5bedrooom Duplex, Excellent 2bedroom Bq",Q Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5029,"Waterfront Estate Within Banana Island Estate, On 8100sqm Land Three Blocks Each With 6 Units 3 Bedroom Apartments And 1 Unit Penthouse, Totaling 21 Units Of Apartments.",Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets,Banana Island +5030,Spacious 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5031,Brand New 3 Bedroom Serviced Flat,"Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"210,000,000",1,0,1,3 beds,3 baths,3 Toilets,Foreshore +5032,Luxury 3 Bedroom Apartment With Excellent Facilities,Parkview Parkview Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Parkview +5033,Land,Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5034,4 Bed Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5035,4 Bedrooms Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5036,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5037,Luxury Tastefully Finished 5 Bedroom Fully Detached Duplex,D Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5038,4 Bedrooms Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5039,Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5040,Land,Banana Island Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5041,Luxurious 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5042,Land,Oba Elegushi Road (former Club Road) Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5043,5 Bedrooms Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5044,Land,Banana Island Ikoyi Lagos,₦,"5,250,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5045,Exquisitely And Luxuriously Built 2 Units Of 5 Bedroom Detached Duplex With 2 Rooms Bq,Off Alfred Rewane Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5046,Contemporary 5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5047,Luxury Finished 6 Bedrooms,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +5048,Land,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5049,5 Bedroom,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5050,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5051,Topnotch Finished 3 Bedroom Apartment + Bq + Swimming Pool + Gym + Jetty,Banana Island Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +5052,Exquisitely Finished New Palatial 6 Bedroom Mansion,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5053,Land,Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5054,Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5055,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5056,4 Bedroom,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5057,Newly Built 6 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"610,000,000",1,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +5058,Beautifully Finished 5 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5059,State Of The Art 5 Bedroom Luxuriously Finished House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5060,Land,Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5061,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"351,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5062,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,4 baths,4 Toilets,Banana Island +5063,Luxury Finished 6 Bedrooms Mansion With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +5064,6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +5065,Land,Banana Island Ikoyi Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5066,4 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5067,Land,Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5068,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5069,Land,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5070,Luxury 8 Bedroom Mansion In Ikoyi,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +5071,Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5072,New 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +5073,3 Bedroom Waterfront Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +5074,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"301,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5075,Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5076,"5,star Hotel For Sale In Ikoyi Lagos State",Ikoyi S.w Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +5077,4800sqm Of Bare Land,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5078,8bedroom Fully Detached Mansion,"Osborne Phase 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000,000",0,0,0,8 beds,8 baths,10 Toilets,Foreshore +5079,1939sqm Waterfront Land,Zone Q In Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5080,3200sqm Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5081,Blocks Of Flat,Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +5082,Six Bedrooms For Sale In Ikoyi,Ikoyi West Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000/year",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +5083,Luxury Flat,Ocean Parade Banana Island Ikoyi Lagos,₦,"480,000,000/sqm",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +5084,Newly Built Five Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,150,000,000",0,1,0,5 beds,5 baths,7 Toilets,Banana Island +5085,"1,800 Sqm Waterfront Land",Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5086,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5087,Land (price Per Sqm),Ruxton Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5088,Joint Venture Land,Bourdillon Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5089,Available Land,Alhaji Bashorun Street Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5090,Available Land,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5091,Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5092,Land Per Sqm,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5093,Water Front Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5094,Luxury Eight Bedroom En Suite Mansion With Bq And Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,1,8 beds,8 baths,9 Toilets,Parkview +5095,5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5096,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5097,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5098,Available Land,Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5099,Land,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5100,Land,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5101,1900sqm Waterfront Land,"Zone Q,banana Island Banana Island Ikoyi Lagos",₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5102,Available Land,Gerrard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5103,Available Land,Magbon Close Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5104,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +5105,4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5106,"Joint Venture, Bourdillon. Ikoyi*",Bourdillon Bourdillon Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5107,Exquisite Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5108,4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5109,Super Luxury 8 Bedroom Mansion With Bq And Swimming Pool In Parkview Estate,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,1,1,8 beds,8 baths,8 Toilets,Other Ikoyi +5110,Available Land,Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5111,5000sqm Waterfront Land With Jetty,J43 Banana Island Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5112,Available Land,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5113,14 Room Mansionette + Penthouse,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5114,4088sqm Land With A Massive 7 Bedroom Fully Detached House With Bq,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5115,7000sqm Land (high Density),Gerard Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5116,Joint Venture Development On 4570.473sqm Waterfront Banana Island Lagos,Banana Lsland Foreshore Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5117,Available Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5118,Available Land,Gerard Road Ikoyi Lagos,₦,"462,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5119,5 Bedroom Detached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5120,"Waterfront Banana 4570.473sqm Jv, Banana Island, Ikoyi","Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"750,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5121,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5122,Block Of 3bedroom Flat With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5123,4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5124,24 Units Of 3 Bedrooms Flats,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5125,Land Per Sqm,Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5126,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5127,Brand New 3 Bedroom Penthouse Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +5128,4611sqm Waterfront Land,"Zone J 15,banana Island Banana Island Ikoyi Lagos",$,"10,000,000",0,0,0, beds, baths, Toilets,Banana Island +5129,"4,088sqm Land",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5130,6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +5131,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"210,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5132,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5133,Available Land,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5134,Land Per Sqm,Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5135,Demolishable Detached House,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5136,4 Bedroom Smart Maisonette,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5137,Land (price Per Sqm),Off Queens Drive Ikoyi Lagos,₦,"680,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5138,New 3bedroom Apartment,Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5139,Available Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5140,Land,James George Street Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5141,Available Land,Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5142,Luxury 5 Bedroom Detached Duplex With Bq For Sale,Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +5143,Joint Venture Development,Bourdillon Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5144,Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5145,Luxury Sea View 5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +5146,Land (price Per Sqm),Cooper Road Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5147,Lagoon Front 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5148,3 Bedroom Apartment With A Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5149,"3,500sqm With A Demolishable Colonial Building",Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5150,Waterfront 5 Bedroom Detached House With 3 Rooms Bq,"Osborne Foreshore Estate,ph 1 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +5151,Available Land,Turnbull Rd Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5152,Available Lands (various Prices),Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5153,Available Land,Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5154,Available Land,Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5155,Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5156,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5157,Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5158,1 Acre Of Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5159,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5160,5 Bedroom Fully Detached Smart House With Swimming Pool,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5161,A Commercial Office Complex Of 15 Floors With Each Floor At 1000sqm,Old Ikoyi Ikoyi Lagos,$,"120,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5162,3100sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5163,Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5164,"4 Bedroom Flat(serviced On 5th Floor) With Swimming Pool,24hrs Electricity,24hrs Security,gym Etc","Rumens Road,off Kingsway Road Old Ikoyi Ikoyi Lagos",₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5165,8 Bedroom Duplex Mansion,Old Ikoyi Road Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,1,8 beds,8 baths,8 Toilets,Parkview +5166,Land Per Sqm,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5167,Newly Built 3 Bedroom Pent House,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets,Foreshore +5168,5 Bedroom Terrace Duplex Luxury Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,6 baths,7 Toilets,Banana Island +5169,Available Land,Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5170,Exquisitely Finished 3 Bedroom En Suite Serviced Block Of Flats,D Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5171,1950sqm Land With A Detached Duplex,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"1,267,500,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +5172,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5173,Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5174,8 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,8 beds,0 baths,0 Toilets,Banana Island +5175,Land,Shoreline Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5176,1804sqm Waterfront Land,"Osborne Foreshore Estate,ph 1 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Foreshore +5177,Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5178,"11 Units Of Brand New 3 Bedroom Flats With Boy's Quarters,",An Estate Ikoyi Lagos,₦,"2,300,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5179,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5180,Cornerpiece Old Ikoyi Land For Joint Venture:,Reeve Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5181,950sqm Cornerpiece Land,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5182,Land,Ikoyi Lagos,₦,"168,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5183,Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5184,City View 3 Bed Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5185,Decently Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5186,Newly Built 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,0 baths,0 Toilets,Banana Island +5187,4 Bedroom Townhouse With A Room Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,4 Toilets,Onikoyi +5188,4 Bedroom Townhouse With A Room Bq At Mojisola Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,4 Toilets,Onikoyi +5189,4 Bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,8 Toilets,Other Ikoyi +5190,A 4 Bedroom All En Suite Serviced Apartment With Bq,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5191,Newly Renovated 4 Bedroom 4th floor Flat,Alexander Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Ikoyi +5192,3 Bedroom +bq Duplex In Ikoyi,Osborne Foreshore Osborne Foreshore Estate Ikoyi Lagos,₦,"50,990,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +5193,Newly Built 5 Bedroom Fully Detached Duplex All Rooms En Suite With A Room Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets,Banana Island +5194,31 Exclusive Residences Comprising Of Enormous All En Suite 3 Bedroom Duplexes,Ikoyi Lagos,₦,"206,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5195,The Overlook Condominiums,"3, Okotie Eboh Street, Awolowo Road Ikoyi Lagos",₦,"206,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +5196,9 Storey Building Of Executive Flats,Okotie Eboh Street Ikoyi Lagos,₦,"206,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +5197,"5,300 Water Front Land",Z Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5198,Newly Built 5 Bedroom Mansions With Boys Quarter,"Off Abia Street, Banana Island Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5199,1000sqm Plot Of Land,Parkview Estate Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Parkview +5200,4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5201,Newly Built Luxury 5 Bedroom Detched Mansion, Banana Island Ikoyi Lagos,₦,"1,600,000,000",1,0,0,0 beds,0 baths,0 Toilets,Banana Island +5202,100% Dry Land With Government Excision Suitable For Residential,Bolorunpelu Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5203,"Exclusive 4 Bedroom Terrace With Gym, Swimming Pool.",F Osborne Foreshore Estate Ikoyi Lagos,₦,"148,500,000",1,1,0,4 beds,4 baths,0 Toilets,Foreshore +5204,Newly Built 5 Bedroom Maisonette,Off Alfred Rewane Road/mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5205,Luxury 3 Bedroom Duplex,Ikoyi Lagos,₦,"135,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +5206,4 Bedroom Terrace Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +5207,Massive 8bedroom Fully Detached And 2 Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"950,000,000,000",0,0,0,8 beds, baths, Toilets,Foreshore +5208,Off Plan Fully Detached Duplex,Ikoyi Crescent Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5209,4 Bedroom Maisonette,Alexander Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5210,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5211,Uniquely Designed 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"595,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +5212,Luxury 5 Bedroom Semi Detached Duplex In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"305,000,000",0,1,0,5 beds,7 baths,8 Toilets,Old Ikoyi +5213,Brand New Spacious 3 Bedroom Apartment,Second Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5214,Well Built 6 Bedroom Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,8 baths,8 Toilets,Banana Island +5215,Exquisitely Finished 6 Bedroom Fully Detached House,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +5216,Brand New Luxury 3 Bedroom Apartment,Off Glover Road Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +5217,4 Bedroom Semi Detached House With 2 Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Parkview +5218,15000 Sqm Land For Outright Sale Off Bourdillion Road Ikoyi,Off Bourdillion Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5219,Beautifully Finished 6 Bedroom Fully Automated Magnificently & Newly Built Detached House,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,7 baths,7 Toilets,Banana Island +5220,Brand New 6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +5221,"Exquisitely Finished 5 Bedroom Detached With 2 Rooms Bq Available For Sale In Parkview Estate,ikoyi",Parkview Right Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets,Parkview +5222,5 Bedroom Fully Detached Mansion,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +5223,5 Bedroom Luxury Detached Duplex,Second Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5224,5 Bedroom Fully Detached Mansion With Swimming,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +5225,Luxury 4 Bedroom Terrace Duplex,Off Alexander Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +5226,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5227,Beautiful And Clean Three Bedroom Apartment With One Room Maid's Room,R Ikoyi Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets,Other Ikoyi +5228,Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5229,4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5230,Serviced 4bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +5231,"960sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Foreshore +5232,"4 Bedroom Maisonette Penthouse With Pool, Gym, Fully Fitted Kitchen", Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5233,New Contemporary Built And Tasteful Finished 5 Bedrooms Fully Detached,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5234,Serviced 4bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Parkview +5235,3 Bedroom Luxury Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +5236,"New 4bedroom Semi Detached House With Bq In Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +5237,"1000sqm Land In Osborne Phase 1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0, beds, baths, Toilets,Foreshore +5238,Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5239,"480sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Foreshore +5240,8 Bedroom Mansion,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +5241,"Ultra Modern 5 Bedroom Terrace Duplex, 2 Bq's Each",Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5242,Luxury 3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5243,5 Bedroom Penthouse Apartment With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5244,New Contemporary Built And Tasteful Finished 5 Bedrooms Fully Detached,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5245,"745sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000/sqm",0,0,0, beds, baths, Toilets,Foreshore +5246,"2500sqm Land On Rumens Road, Ikoyi Lagos",Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5247,3 Bedroom Apartment,Bella Vista Estate Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5248,Distress Sale: 800sqm Land,S Osborne Foreshore Estate Ikoyi Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5249,New 5bedroom Fully Detached House With 2rooms Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +5250,Distress 3 Bedroom Pent House Maisonette With Bq,Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +5251,"8units 3bedroom Flat With Bq, 2units 4bedroom Penthouse Maisonette Duplex With Bq And 1 Unit 1 Bedroom Flat",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,8 beds,8 baths,9 Toilets,Old Ikoyi +5252,"8 Bedroom Mansion At Osborne Phase1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,1,0,8 beds,8 baths,9 Toilets,Foreshore +5253,"1500sqm Land In Osborne Phase 1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0, beds, baths, Toilets,Foreshore +5254,New 5 Bedroom Semi Detached House With Bq,S Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Foreshore +5255,Distress Sale 4bedroom Pent House Maisonette With Bq And With Elevator,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5256,"2500sqm Land On Oba Eleguishi Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5257,"3100sqm Land On Bank Road, Ikoyi Lagos",Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5258,3 Bedroom Apartment,Macpherson Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5259,"18,000m2 Land With Frontage Directly Facing Kingsway Rd And Two Other Streets N15b",Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5260,Luxury New 4bedroom Terrace Duplex With Bq At Osborne Phase1 Estate Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +5261,3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +5262,3 Bedroom Luxury Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +5263,"840sqm Land On Cooper Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets,Old Ikoyi +5264,"4 Bedroom Luxury Pent House Maisonette With Bq, Pool, Gym Etc In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5265,*excellently Built 5 Bed Semi Detached Duplex In Ikoyi,Ikoyi Lagos,₦,"350,000,000,000",0,1,1, beds, baths, Toilets,Other Ikoyi +5266,4 Bedroom Semi Detached Duplex With Bq,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5267,Land For Sale At Banana Island,Off 2nd Avenue Close To Mike Adenuga House Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Banana Island +5268,English Style 6 Bedroom Fully Detached Mansion,S Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5269,Lovely Mini Estate Available,Banana Island Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +5270,"Super Spacious 5 Bedroom Luxury Maisonette With Swimming Pool, Gym And Elevator",3 Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,0 baths,0 Toilets,Other Ikoyi +5271,Newly Built And Well Maintained 3 Bedroom Flat Luxury Apartment + Bq,Gerard Road Ikoyi Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5272,Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs, Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,0 baths,0 Toilets,Other Ikoyi +5273,Newly Built And Well Maintained 3 Bedroom Flat + Bq (6th Floor),S Gerard Road Ikoyi Lagos,₦,"165,000,000",0,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +5274,Fully Fenced And Gated Corner Piece Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Foreshore +5275,3 Bedroom Luxury Terrace Duplex,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,3 beds,3 baths,4 Toilets,Banana Island +5276,Land,Old Ikoyi Ikoyi Lagos,₦,"545,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5277,Prime Corner Piece Plot Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Foreshore +5278,570sqm Residential Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Foreshore +5279,A New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5280,Spacious And Luxurious 4bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5281,Executive Brand New Tastefully Built 5bedrooms Detached Duplex For Sale At Banana Island Ikoyi.,Banana Island Ikoyi. Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5282,Luxurious Units Of 6 Bedrooms Fully Detached Duplex With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +5283,Luxury Finished 6 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +5284,Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5285,Water Front Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5286,5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5287,Available Land,Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5288,Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5289,5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5290,Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5291,Water Front Plot,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5292,Luxury Finished 6 Bedrooms House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +5293,Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5294,Available Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5295,Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5296,"Waterfront 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinema",Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5297,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5298,"Brand New 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5299,Newly Built 5 Bedroom Semi Detached Duplex With En Suite Basement,Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5300,Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5301,Brand New 5 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets,Old Ikoyi +5302,3 Bedroom Apartment,Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5303,5 Bedroom Detached House + Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5304,4 Bedroom Semi Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5305,4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5306,Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5307,5 Bedroom Fully Detached Duplex With Roof Top Terrace And 2 Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5308,4 Bedroom Semi Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5309,"5 Bedroom Semi Detached Duplex + Rooftop Terrace,",Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5310,Land Measuring 1600sqm,Off Turnbull Road Ikoyi Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5311,"5 Bedroom Fully Detached Duplex, Swimming Pool, Private Elevator",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +5312,4 And 5 Bedroom Smart Maisonette,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5313,4nos All Ensuite 5bedroom Maisonette Plus Bq,Banana Island / Onikoyi Road Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5314,Luxury 5 Bedroom Luxury Detached Duplex With Swimming Pool,Lekki County Banana Island Ikoyi Lagos,₦,"135,000,000",0,1,1,5 beds,6 baths,6 Toilets,Banana Island +5315,??luxury 4 Bedroom Semi Detached Duplex With Swimming Pool??*,Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds, baths, Toilets,Other Ikoyi +5316,An All Ensuite 4bedroom Semidetached Duplex Plus Bq,Dolphin Estate / Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +5317,"2,923.345 Sqm. Land", Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5318,5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5319,A Newly Renovated 5bedroom Semi Detached Duplex,S Dolphin Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5320,Luxury Waterfront 5 Bedroom Duplex With Servant Quarter,Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5321,A Newly Built & Well Maintained Block Of Flats Of 3 Bedrooms,"Gerrard Rd,ikoyi, Lagos State Ikoyi Lagos",₦,"165,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5322,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5323,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5324,Ikoyi Sales,Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5325,4 Bedroom Penthouse Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5326,Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5327,3 Bedroom Serviced Apartment With A Room Bq, Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5328,8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +5329,Block Of Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5330,Newly 4 Bedroom Semi Detached House With Bq,Off Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5331,5 Bedroom Luxuriously Finished House With 2 Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5332,6 Bedroom Detached House With Swimming And Cinema,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +5333,Block Of 29 Units Of 3 Bedroom Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5334,5 Bedrooms Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5335,4 Bedroom Semi Detached House,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5336,7 Bedroom Duplex With 2 Rooms Self Contained Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets,Parkview +5337,Newly Built 3 Bedroom Flat With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Foreshore +5338,3 Bedroom Flat With Bq,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +5339,Four Bedroom Massionate,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5340,Mansion,Z Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,10 baths,10 Toilets,Parkview +5341,2 Number Brand New Storey Buildings,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5342,7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +5343,4 Bedroom Maisonette With Bq,2nd Avenue Extension Ikoyi Lagos,₦,"15,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5344,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5345,Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5346,6 Bedroom Fully Detached Mansion,Shoreline Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +5347,Mini Flat,Z Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,1 beds,2 baths,2 Toilets,Other Ikoyi +5348,Off Plan Sales,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",1,1,0, beds, baths, Toilets,Foreshore +5349,Block Of 10 Units Of 4 Bedrooms Flats,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5350,"8bedroom [email protected] Estate,ikoyi",Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets,Parkview +5351,"6 Bedrooms, 2 Unique Living Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,7 baths,8 Toilets,Banana Island +5352,Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5353,4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5354,Newly 5 Bedroom Detached House With 2 Rooms Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5355,8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5356,Apartment,Z Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5357,3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +5358,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5359,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5360,Tastefully 5bedroom Fully Detached Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,1,5 beds,5 baths,6 Toilets,Parkview +5361,Mansion On 1500sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5362,4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5363,3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5364,5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5365,5 Bedrooms All En Suite In Ikoyi,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5366,3 Bedrooms Apartment (18 Units),Banana Island Bella Vista Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +5367,4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5368,Luxury 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +5369,4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5370,3 Bedroom Flat (29units),Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5371,3 Bedrooms Apartment With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +5372,5bedrooms Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5373,8 Bedroom Commercial Building On 550sqm,Awolowo Road Ikoyi Lagos,₦,"550,000,000",0,0,0,8 beds,0 baths,0 Toilets,Other Ikoyi +5374,7 Bedroom Fully Detached Duplex + Bq,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Ikoyi +5375,7 Bedroom Fully Detached Duplex + Bq,Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Ikoyi +5376,Lovely Mini Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000",1,0,0,1 beds,1 baths,0 Toilets,Foreshore +5377,4 Bedroom Flat With Bq,Parkview Estate Ikoyi Lagos,₦,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +5378,3 Bedrooms Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5379,5 Bedrooms Fully Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5380,5 Bedrooms Fully Detached And Serviced Mansion,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5381,Exquisitely Built Waterview 5 Bedroom Mansion,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5382,Newly Built 5 Bedroom Apartment With Bq,D Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,0 Toilets,Other Ikoyi +5383,New Built High 2 Units High Rise Blocks Of Flats,"Off Kings Way Road , Ikoyi . Ikoyi Lagos",₦,"15,000,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +5384,Brand New 6 Bedroom Automated Luxury Mansion,Shoreline Estate Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +5385,5 Bedroom Fully Detached With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5386,Land,A Zone Banana Island Ikoyi Lagos,₦,"950,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5387,Newly Built 3 Bedrooms Apartment (60 Units),Ikoyi Lagos,₦,"170,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Ikoyi +5388,4612sqm Waterfront Residential Land,Zone J Banana Island Ikoyi Lagos,$,"10,000",0,0,0, beds, baths, Toilets,Banana Island +5389,*land,J Zone Banana Island Ikoyi Lagos,₦,"5,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5390,4 Bed Penthouses,Lugard Avenue Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5391,Lovely 4 Bedroom Flat @ikoyi,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +5392,Luxury 4 & 5 Bedroom Penthouse,Lugard Avenue Macpherson Ikoyi Lagos,₦,"750,000,000/year",0,0,0, beds, baths, Toilets,Other Ikoyi +5393,Lovely 3 Bedroom Flat,Ikoyi Lagos,₦,"240,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5394,A Luxury 4 Bedroom Terrace Duplex @ Ikoyi,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +5395,New 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5396,"2306sqm Land, Zone J, Residential Plot",Zone J Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0, beds, baths, Toilets,Banana Island +5397,Luxury 8 Bedrooms Mansion At Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"650,000,000/year",0,0,0,8 beds,8 baths,9 Toilets,Parkview +5398,*land For Sale,H Zone Banana Island Ikoyi Lagos,₦,"2,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5399,11 Units Luxurious 3 & 4 Bedrooms Flats,Off 2nd Avenue Extension Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5400,Waterfront Luxury 3 Bedroom Apartment,Marion Apartment Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +5401,4 Bedroom Maisonette,"Block 4, Plot 4, Joe Faraday Street, Olori Mojisola Avenue, Off Banana Island Rd. Ikoyi. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets,Onikoyi +5402,Luxury 3 Bedroom Flat,Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +5403,5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5404,Luxury 5 Bedroom Semi Detached Duplex For Sale!!!!,Ikoyi Lagos,₦,"450,000,000",1,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +5405,Luxury 5 Bedroom Maisonette For Sale!!!!,Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +5406,Luxury 3 Bedroom Flat For Sale,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +5407,3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +5408,Luxury 3 Bedroom Flat With A B.q,Glover Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +5409,Luxury 4 Bedroom Flat For Sale,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +5410,"Newly Built Luxury 3 Bedroom Apartment With Gym, Communal Pool And A Room",Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Ikoyi +5411,Newly Built 4bedroom Terrace House With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5412,"Newly Built High Rise Property Comprising Of 3 Bedroom Flats, 4 Bedroom Maisonette, 4 Bedroom Penthouse",Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"260,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +5413,Water View 500sqm Bareland In Banana Island Lagos,Banana Island Banana Island Ikoyi Lagos,$,"1,200,000/sqm",1,0,0, beds, baths, Toilets,Banana Island +5414,Luxury 4 Bedroom Semi Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",1,0,1,4 beds,4 baths,5 Toilets,Onikoyi +5415,Newly Built 3 Bedrooms Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,4 Toilets,Banana Island +5416,30 Units Of Luxury Fully Serviced 3 Bedroom Flat (off Plan),Bourdillon Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +5417,Luxuriously Structured 5 Bedroom Semi Detached Duplex Plus Bq For Sale At Ikoyi,Banana Island Rd Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5418,"Luxury 8 Bedroom And 4 Parlours Castle In Osborne Foreshore Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,8 beds, baths, Toilets,Foreshore +5419,Very Lovely 4 Bedroom Terraced House With Boys Quarter,Z Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +5420,Beautifully Designed 5 Bedroom Ultra Luxury Terrace Duplex For Sale At Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +5421,Innovation!!! Luxury!!!!! Grandeur!!!!!!!,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"135,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +5422,Luxury Redefined The Aria,Royal Palms Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +5423,Newly Built 5bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,8 baths,8 Toilets,Parkview +5424,The 31 Luxury Units Literally Overlook The Ikoyi Golf Course As Well As The Lagos Polo Club.,Okotiebo Old Ikoyi Ikoyi Lagos,₦,"202,331,250",0,1,0,10 beds,10 baths,10 Toilets,Old Ikoyi +5425,4 Bedroom Terrace Duplex With A Bq, Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,1,4 beds,4 baths,5 Toilets,Banana Island +5426,Land,Glover Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5427,Luxury 4 Bedroom Semi Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5428,4 Bedroom Fully Detached Duplex With Bq Available,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5429,Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5430,Available Land,Ikoyi Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5431,Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5432,Water Front Land,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5433,3 Bedroom Apartment With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +5434,"Beautiful, Single Family Semi Detached Home With 3 Bqs",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,6 beds, baths, Toilets,Onikoyi +5435,2 Units Of 3 Bedroom Luxury Apartment Available,Banana Island Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +5436,"Beautiful, Single Family Semi Detached Home With Original Tile Floors",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"275,000,000",0,1,0,6 beds, baths, Toilets,Onikoyi +5437,"Beautiful, Single Family Terraced Duplex Home With Original Tile Floors",Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds, baths, Toilets,Parkview +5438,Modern Design Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds, baths, Toilets,Banana Island +5439,"Luxurious 4 Bedroom Maisonette At The Ime Height, Ikoyi","Ime Height, Alexander Road Gerard Road Ikoyi Lagos",₦,"132,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5440,Available Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5441,Available Lands (various Prices),Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5442,Available Land,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5443,A Mixed Use Land,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Parkview +5444,Furnished 4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,1,4 beds,4 baths,5 Toilets,Parkview +5445,Newly Built 5 Bedroom Detached Duplex For Sale,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,7 baths,7 Toilets,Parkview +5446,A Well Situated 1085sqm Land Available At Banana Island For Urgent Grab,Banana Island Ikoyi Lagos,$,"2,100,000",0,0,0, beds, baths, Toilets,Banana Island +5447,Newly Built 5 Bedroom Penthouse In Ikoyi,... Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5448,4 Bedrooms Fully Detached Duplex,Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5449,2917.73sqm Waterfront Land,Osborne Phase 2 Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5450,5 Bedroom Semi Detached Duplex With Bq Attached,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,6 baths,6 Toilets,Foreshore +5451,A Classic Super Luxury 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +5452,"6,000 Sqm Of Land On 2nd Avenue, Ikoyi, Lagos",On Second Avenue Few Blocks Away From Defence House 2nd Avenue Extension Ikoyi Lagos,₦,"3,600,000,000,000",1,0,0, beds, baths, Toilets,Other Ikoyi +5453,4 Bedrooms Semi Detached,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5454,3bedroom Flat,Norman Williams Street Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5455,"2,401sqm Land",Mekunwen Street Off Queens Drive Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5456,Massive Land @ Bourdillon Road Is Ready For Outright,Bourdillon Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5457,Huge Land For A Jv?? Waterfront Banana ??,Banana Island Ikoyi Lagos,₦,"3,450,000,000",0,0,0, beds, baths, Toilets,Banana Island +5458,Available High Rise Building Apartments,"17/17a, Olu Holloway Road. Ikoyi Lagos",₦,"12,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5459,Massive Land On Cameron Road Ikoyi,Cameron Road Ikoyi Lagos,₦,"1,288,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5460,"5,200sqms Joint Venture",Ajanaku Street Off Salvation/opebi Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5461,Good Size Land On Polo Road Ikoyi,Polo Road Ikoyi Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5462,Massive Land @ Falomo Close,Falomo Close Falomo Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5463,Well Built 4 Bedroom Semi Detached House With A Staff Room,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +5464,"Hot New 5,400sqms Jv @ Glover Road, Old Ikoyi",Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5465,Very Massive Land,Alexander Ave Ikoyi Lagos,₦,"2,388,750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5466,3 Bedroom Apartments,20 Bourdillon Ikoyi Lagos,₦,"370,000,000/sqm",1,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +5467,Luxury 4 Bedroom Terrace Duplex With Bq,"Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"300,000,000",0,0,1,4 beds,5 baths,5 Toilets,Banana Island +5468,3 Bedroom Luxury Houses,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5469,Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5470,Brand New Tastefully Finished 5bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,5 beds,8 baths,8 Toilets,Banana Island +5471,Luxury 3 Bedroom House,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5472,4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +5473,Luxury 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5474,Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5475,Luxury 4 Bedroom House,Banana Island Road Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5476,Luxury 5 Bedroom Detached House,Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +5477,5 Bedroom Fully Detached Duplex,Onikoyi Lagos Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +5478,"Land For Sale At Banana Island, Ikoyi",Zone A Banana Island Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5479,Brand New Tastefully Finished 5bedroom Semi Detached House,Banana Island Road Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +5480,Luxury 3 Bedroom House,Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5481,Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5482,Luxury 6 Bedroom Semi Detached House,Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5483,"Land For Sale At Cooper Road,ikoyi",Cooper Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5484,Luxury 4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5485,Luxury 5 Bedroom Detached House,Banana Island Road Banana Island Ikoyi Lagos,₦,"1,350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5486,3 Bedroom Full Service Pad, Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5487,"4 Bedroom Luxury Apartment With Bq In Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Banana Island +5488,Brand New 4 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +5489,5 Bedroom Luxury Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5490,Luxury Serviced 3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5491,5 Bedroom Fully Detached Duplex With 2 Bq Pool,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5492,Beautiful 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5493,Lovely 3 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +5494,3 Bedroom Apartment Plus 1 Room Bq,8 Thompson Avenue Bourdillon Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,2 baths,3 Toilets,Other Ikoyi +5495,A Land,Osborne Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5496,6 Bedrooms Detached Duplex 2wings,Banana Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +5497,Land,Old Lkoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5498,Land,"*average Sized Plots On Macgregor Road, Old Ikoyi* Old Ikoyi Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5499,A Land,Bananas Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +5500,Land,"Meckwueen Rd,ikoyi Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5501,"2,330 Square Meters","20a, Gerrard Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5502,Fully Fenced And Gated Corner Piece Plot Of Land, Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5503,Luxury 5 Bedroom With En Suite Basement And Bq,Ikoyi Lagos,₦,"320,000,000",0,1,1,5 beds, baths, Toilets,Other Ikoyi +5504,3 Bedroom Luxury Apartment With 2 Rooms Bq,Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,0,3 beds,6 baths,6 Toilets,Other Ikoyi +5505,Amazing 4 Bedroom Terrace Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +5506,Newly Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0, beds, baths, Toilets,Banana Island +5507,Land For Sale At Ikoyi With Federal C Of O,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5508,Land For Sale At Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Parkview +5509,"Waterfront Plot, Mojisola Onikoyi Estate, Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Onikoyi +5510,Land Measuring 3133sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5511,Land For Sale At Bank Road Ikoyi,Bank Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5512,New Built 4 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5513,New Built 4 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5514,Luxury Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +5515,Prime Water Front Plot Of Land,"Osborne Phase 2 Ikoyi, Lagos Ikoyi S.w Ikoyi Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5516,Plot Of Land,"Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"800,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5517,3bedroom Luxury Terrace Duplex,"Banana Island, Lagos Banana Island Ikoyi Lagos",₦,"290,000,000",0,0,0,3 beds, baths, Toilets,Banana Island +5518,Block Of 27 Flats Of 3 Bedrooms,Off Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +5519,Luxury 6 Bedroom Mansion,"Shoreline Estate, Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,0,0,6 beds, baths, Toilets,Other Ikoyi +5520,Penthouse,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,6 baths, Toilets,Other Ikoyi +5521,"Distress Sale: Plot Of Land For Sale In Lekki, Lagos",Bourdillon Ikoyi Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5522,Luxurious High Rise With European Finishes,Glover Road Ikoyi Lagos,$,"35,000,000",1,0,1, beds, baths, Toilets,Other Ikoyi +5523,Newly Built 5 Bedroom Detached House For Sale In A Serene Environment,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +5524,6 Bedroom Detached Duplex For Sale,Ikoyi Lagos,₦,"750,000,000",0,0,0,7 beds,6 baths,7 Toilets,Other Ikoyi +5525,3 No 5 Bedroom Semi Detached Houses At Parkview Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +5526,Newly Built 3bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,3 beds,3 baths,4 Toilets,Banana Island +5527,2500sqm Of Land,Park View Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5528,15 Units Of 4 Storey Ikoyi Property,Awolowo Road Ikoyi Lagos,₦,"2,000,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5529,Newly Built 5 Bedroom Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000/year",1,1,0,5 beds,6 baths,6 Toilets,Foreshore +5530,Newly Built 5 Bedroom Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000/year",1,1,0,5 beds,6 baths,6 Toilets,Foreshore +5531,Luxurious 5 Bedroom Detached Duplex With Bq, Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5532,Luxury 3 Bedroom Flat,Moseley Road Mosley Road Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths, Toilets,Other Ikoyi +5533,4 Bedroom Luxury Duplexes,4 Kingsway Close Off Kingsway Road. Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5534,4 Bedroom Duplex With A Room Bq,Oniru Victoria Island Ikoyi S.w Ikoyi Lagos,₦,"120,000,000/year",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +5535,4 Bedroom Terraced Apartment For Sale In Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +5536,Luxury Tower 3 Bedroom Apartment,Tango Towers Bourdillon Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5537,5 Bedroom Terrace Duplex,Off Macpherson Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5538,Land ( Joint Venture ),Glover Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5539,1430sqmland,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5540,2500sqm Waterfront Land For Joint Venture,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Foreshore +5541,1600sqm Land,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5542,Brand New Self Service Fully Fitted 5 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5543,Brand New Luxury Fully Fitted 4 Bedroom Apartment,Off Tumbull Drive Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5544,Brand New Fully Tenanted 15 Floor High Rise,Old Ikoyi Ikoyi Lagos,$,"45,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5545,Luxury Serviced 4bedroom Flat Plus 1room Bq,Abraham's Court Runens Rd Off Kingsway Ikoyi Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +5546,596sqms Land,"Osborne Foreshore 1 Estate,ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5547,Newly Built 4 Bedroom Sea View Apartment,1st Avenue Banana Island Ikoyi Lagos,$,"1,008,750",1,0,0,4 beds,4 baths,5 Toilets,Banana Island +5548,Urgent Luxury 2nos Of 5bedrom Duplex And 2bedroom Duplex Closer To The Gate,Parkview Estate Ikoyi Lagos Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Parkview +5549,5 Bedroom Detached House With A Bq,Off 5th Avenue Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5550,4 Luxurious Units Of 3 Bedroom Apartments With Payment Plan,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +5551,Executive 5 Bedrooms Semi Detached Duplex With An Elevator.,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5552,Fully Serviced Luxury 4 Bedroom Apartments With 2 Rooms Servant’s Quarters,Bourdillon Ikoyi Lagos,₦,"400,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +5553,24 Number Large And Super Luxury 3 Bedrooms With 2 Bqs) And Two Penthouses,Glover Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +5554,Land,Cooper Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5555,Land,Ruxto Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5556,Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Banana Island +5557,Land, Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5558,Land,Club Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5559,Masterpiece 5 Bedroom Townhouse,Banana Island Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +5560,Units Of Contemporary Themed 3 Bedroom Apartments,Gerard Road Ikoyi Lagos,₦,"96,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5561,5 Bedroom Semi Detached Duplex,Residents Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5562,Land,Ruxton Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5563,Land,Reeve Road Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5564,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5565,Land, Bourdillon Ikoyi Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5566,Land, Banana Island Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5567,Land,J Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5568,5 Bedroom Terrace House + Bq,Off Queens Drive Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5569,4 Bedroom Terrace Duplex For Sale,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5570,Land,Ruxton Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5571,Land, Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5572,"1,000sqms With [31 Meters Frontage And 839sqms N470m [24 Meters Frontage]",Waterfront Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets,Banana Island +5573,4bedroom Terrace Duplex And 5bedroom Duplex Penthouse,Off Gerard Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5574,Luxury Water Front Residence 4/5bedroom Home,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,5 Toilets,Banana Island +5575,Land,Oba Elegushi Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5576,4 Bedroom Semi Detached Duplex With A Bq,.. Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5577,Exquisite 4 Bedroom Apartment,Banana Island Area Banana Island Ikoyi Lagos,₦,"320,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +5578,Units Of 4 Bedroom Terrace Duplex & A Room Bq,Old Ikoyi Gerard Road Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5579,"5 Bedroom Detached Duplex With 1 Bq And Swimming Pool, Cinema",Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5580,5 Bedroom Duplex,"Banana Island, Banana Island Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5581,4bedroom Duplex With A Room Bq For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +5582,Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5583,Luxurious Newly Built Fully Detached Five (5) Bedroom Duplex.,Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5584,Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5585,Four (4) Bedroom Stand Alone Homes Ensuite With Bq,"Cooper Road Off Bourdillon, Ikoyi Ikoyi Lagos",₦,"230,000,000",0,1,0,4 beds,5 baths,4 Toilets,Other Ikoyi +5586,6 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +5587,1839sqm Waterfront Bareland @ Banana Island,Banana Island Ikoyi Lagos,₦,"1,011,450,000",0,0,0, beds, baths, Toilets,Banana Island +5588,6 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5589,5bedroom Duplex With 2rooms Bq For Sale At Banana Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +5590,4007 Sqm For Sale In Queens Drive Ikoyi Lagos,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5591,Land,Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5592,4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5593,3 Bedroom Luxury Flat At Queens Drive,Queens Drive Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +5594,6 Bedroom Duplex With Cinema,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5595,Brand New 5 Bedroom Duplex At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5596,5 Bedroom Detached Duplex With 3 Rooms Bq,Estate Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5597,Old Duplex At Dolphin Estate,Dolphin Estate Ikoyi Lagos,₦,"73,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5598,Newly Built 4 Bedroom Town House At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5599,500sqm Of Land,Abacha Abacha Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5600,4 Bedroom Terrace Duplex At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5601,5 Bedroom Mansion Exquisitely Finished,Banana Island Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +5602,5 Bedroom Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +5603,4 Units Of 3 Apartment,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +5604,4 Units Of 3 Bedroom Flat At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,12 beds,16 baths, Toilets,Old Ikoyi +5605,3 Bedroom Luxury Flat,Mosley Mosley Road Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5606,3 Bedroom Luxury Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5607,5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +5608,3 Bedroom Luxury Flat,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5609,"2,754sqm Plot Residential Zone Banana Island",Banana Island Ikoyi Lagos,₦,"570,000",0,0,0, beds, baths, Toilets,Banana Island +5610,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +5611,6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,0,6 beds,6 baths,7 Toilets,Banana Island +5612,Functional Filling Station,"Awolowo Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +5613,4 Bedrooms Terrace Duplex,"Inside A Nice And Serene Area At Living Gold Estate, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5614,Newly Built 5 Bedroom Semi Detached Duplex With Servant Quarter,Olori Mojisola Off Banana Island Onikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,1,5 beds,7 baths,8 Toilets,Banana Island +5615,3 Bedrooms Apartment,Alexander Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +5616,Brand New 4 Bedrooms Detached Duplex,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5617,Brand New 5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5618,Brand New 5 Bedrooms Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets,Parkview +5619,Brand New And Luxurious 3 Bedrooms Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5620,5 Bedroom Duplex,Falomo Mojisola Onikoyi Estate Ikoyi Lagos,$,"45,000,000",0,0,0,5 beds,4 baths,5 Toilets,Onikoyi +5621,Office Building,Kings Way Road Mojisola Onikoyi Estate Ikoyi Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +5622,4 Bedrooms Terrace Houses/5 Bedrooms Pent Houses,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5623,Land,Ikoyi Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5624,Luxury Beautiful 4bedroom Terrace Duplex With 1room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5625,Luxurious 5 Bedroom Detached Duplex With Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5626,Well Built 4 Bedroom Semi Detached Duplex For Sale In Osborne Foreshore Phase 2,Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +5627,Lovely Brand New 4 Bedroom Fully Detached Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5628,Newly Built 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5629,8 Bedroom Mansion, Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,0 baths,0 Toilets,Foreshore +5630,Luxury 6 Bedroom Detached Duplex, Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Ikoyi +5631,6 Units Of Fully Serviced 5 Bedroom Detached And 4 Units Of 5 Bedroom Semi Detached House," Granary Mansions, Banana Island Ikoyi Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5632,5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,1,1,5 beds,8 baths,8 Toilets,Banana Island +5633,Exquisitely Fully Furnished 3 Bedrooms Terraced Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5634,3 Units Of Fully Serviced 5 Bedroom Terrace Town House, Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5635,Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5636,Three Bedroom Semi Detached Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +5637,5 Bedrooms Detached Duplex Newly Built With Pool Gym, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5638,Newly Built 5 Bedroom Duplex With 1 Room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5639,Luxury 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5640,Fully Fitted Automated 5 Bedroom Contemporary House, Banana Island Ikoyi Lagos,₦,"820,000,000",0,0,0,5 beds,5 baths,0 Toilets,Banana Island +5641,4 Bedroom Terrace Duplex With A Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5642,4 Bedroom Luxury Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +5643,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5644,Brand New 4 Bedroom Semi Detached House,Mitchell Okotcha Street Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5645,5 Bedroom Terraced Duplex With Bq,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5646,4 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5647,7 Bedroom Detached House,.. Banana Island Ikoyi Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5648,Block Of Flats,"Banana Island Road, Banana Island Ikoyi Lagos",₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5649,3 Bedroom Luxury Apartment (off Plan Sales),Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5650,5 Bedrooms Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5651,Mixed Use Land,"Jubril Amin Street, Parkview Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5652,Luxury 4 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5653,4 Bedroom Terrace Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"399,999,999",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5654,3 Bedroom Serviced Flat,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +5655,5 Bedroom Semi Detached House,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5656,Residential Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5657,Exquisitely Finished 4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5658,4 Bedroom Terraced Duplex,"Milverton Road, Off Alexander Avenue, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +5659,650sqm Dry Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5660,5 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5661,3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5662,Luxuriously Well Finished 5 Bedroom Detached House With Bq,Secured Estate On Bannan Island Road Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5663,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5664,4 Units Of Luxury 4 Bedroom Terrace Duplex,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5665,5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5666,Hotel/ Guest House,.. Osborne Foreshore Estate Ikoyi Lagos,$,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5667,4 Bedroom Terraced Duplex,"Off Royal Palm Drive, Osborne Foreshore Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,5 Toilets,Foreshore +5668,7 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5669,8 Bedroom Detached Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5670,5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5671,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5672,3 Bedroom Flat,"Off Keffi Road South West Ikoyi, Falomo Ikoyi Lagos",₦,"350,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +5673,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5674,Off Plan 3 Bedroom Luxury Flat With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +5675,5 Bedroom Fully Detached Duplex Plus 2 Rooms Bq,Directly Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5676,4 Bedroom Semi Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5677,Residential Land,"Lugard Avenue, Old Ikoyi Ikoyi Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5678,Mixed Use Land,George Street Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5679,Executive 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5680,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5681,4 Bedroom Terraced Duplex,"2nd Avenue, Banana Island Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5682,3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5683,4 Bedroom Flat,"Okotie Eboh Close South West Ikoyi, Falomo Ikoyi Lagos",₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +5684,5 Bedroom Detached Duplex,.... Old Ikoyi Ikoyi Lagos,₦,"595,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5685,4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5686,5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +5687,3 Bedroom Flat,... Mojisola Onikoyi Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +5688,6000 Sqm Of Mixed Used Land,"Kingsway Road, Old Ikoyi Ikoyi Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5689,4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5690,Detached Duplex,"Banana Island, Ikoyi Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5691,5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5692,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5693,5 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5694,Tastefully Finished 6 Bedroom House With 2 Rooms Servant Quarters,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +5695,3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Parkview +5696,3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"7,500,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5697,4 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +5698,2 Bedroom Flat,Awolowo Road Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,2 beds,1 baths,2 Toilets,Other Ikoyi +5699,4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5700,3 Bedroom Flat,... Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5701,5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5702,4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"235,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5703,4 Bedroom Semi Detached Duplex,... Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5704,Off Plan 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5705,3 Bedroom Block Of Flats,Osborne Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5706,Premium Luxury 3 Bedroom Apartment,Glover Road Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5707,3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5708,4 Bedroom Detached Duplex,.... Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5709,5 Bedroom Fully Detached House,Off Bourdilion Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5710,5 Bedroom Terraced Duple,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5711,4 Bedroom Semi Detached Duplex,.... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5712,Fully Detached 5 Bedrooms Duplex, Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +5713,5 Bedroom Semi Detached Duplex,... Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5714,Luxurious 5 Bedroom Penthouse And 4 Bedroom Terrace Duplex, Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5715,Block Of Flats,Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5716,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5717,5 Bedroom Semi Detached Duplex,.... Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5718,Mixed Use Land,"Bourdillon Road, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5719,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5720,4 Bedroom Flat With 3 Rooms Bq,.. Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +5721,Residential Land,Banana Island Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5722,20 Units Of 5 Bedroom Semi Detached Duplex,"Oni Ikoyi, Banana Island Banana Island Ikoyi Lagos",₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5723,Plots Of Land, Banana Island Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5724,5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +5725,Newly Built 6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +5726,6 Bedroom Detached Duplex,"Off Gerrard Rd, Old Ikoyi Ikoyi Lagos",₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +5727,5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5728,3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5729,Residential Land,"Off Udi Street In Osborne Foreshore, Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5730,5 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +5731,4 Bedroom Semi Detached Duplex,"Adeyemi Lawson, Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,4 beds,0 baths,5 Toilets,Old Ikoyi +5732,4 Bedroom Terrace Duplex,5th Avenue Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5733,3 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +5734,Existing 4 Bedroom Terraced House,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5735,6 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5736,3 Bedroom Block Of Flats,Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5737,4 Bedroom Semi Detached Duplex,Close To Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5738,4 Storey Building Suitable For Office Spaces,Norman Williams Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5739,4 Bedroom Terrace Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +5740,4 Bedroom Penthouse,.... Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5741,5 Bedroom Semi Detached Duplex,... Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5742,5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5743,5 Bedroom House,"Biado Close, Off Keffi Street Awolowo Road Ikoyi Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Ikoyi +5744,4 Bedroom Flat,"Bourdillon Rd, Old Ikoyi Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,6 Toilets,Old Ikoyi +5745,Residential Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5746,4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5747,2 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5748,Luxury 4 Bedroom Terrace Duplex,Rexton Road Off Alexanda Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +5749,4 Bedroom Terraced Duplex,. Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +5750,Mixed Use Land,Kingsway Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5751,5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5752,Residential Land,"Nassarawa Street, Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5753,24 Units Of 4 Bedroom Luxury Apartments,Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"5,500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5754,7 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,0 baths,0 Toilets,Parkview +5755,Spacious 5 Bedroom Luxury Detached House, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5756,5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +5757,6 Bedroom Detached House On 3700sqm For Sale In Old Ikoyi With 5 Bedroom Guest Chalet Price 1.6b Asking Title Lagos C Of O,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikoyi +5758,Bourdillon Land For Sale,Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5759,4 Bedroom Semi Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Foreshore +5760,"Detached Building And Outbuildings 2900m2 Land At Cameroon Road, Ikoyi Lagos.","Cameron Road, Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5761,"Fenced Land Measuring *4,600 Square Meters* In A Choice Zone Of Banana Island (residential Zone)",Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +5762,Ikoyi Land For Sale,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Parkview +5763,"*luxury Townhouse In Banana Island* 5bedroom Duplex House With 3sitting Rooms, 2 Rooms Bq For 500m Without Furniture And 550m With Grade A Furnitures On 560sqm. Private Elevator, Kohler Kitchen With Bosch Appliances And Tv, Swimming Pool, Gym, Walk In C",Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +5764,Land For Sale* @ Ikoyi,Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5765,A Striking Modern Waterfront Property With Stunning Views Newly Constructed In One Of The Most Luxurious Neighborhood Of Ikoyi Lagos Nigeria. Land Size: 1800 Square Meters Location: Banana Island Estate Ikoyi Lagos Nigeria. Title Documents: Certifica,Ikoyi Lagos,₦,"3,000,000,000",1,1,1, beds, baths, Toilets,Other Ikoyi +5766,Joint Venture In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +5767,4 Bedrooms Detached House In Shore Land Estate For Sale @ Ikoyi. Title: C Of O Price; 300m.,Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5768,Brand New 4 Bedroom Terrace Duplex,"Ikoyi Club, Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +5769,6300 Sqmts @ Bourdillon Road Ikoyi.,Bourdillon Ikoyi Lagos,₦,"400,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5770,6bed Room Fully Detach Duplex With 3living Room,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0, beds, baths, Toilets,Banana Island +5771,"A Block Of 6 (2) Bedrooms Flats, With A Very Spacious Car Park For Sale In Old Ikoyi.... Land Size: 1,300sqm Location: Ikoyi Title: Governor’s Consent Price: 500m.",Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5772,Ikoyi Land For Sale,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5773,Ikoyi Land For Sale*,Bourdillon Ikoyi Lagos,₦,"2,650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5774,"Ground Floor Three Bedroom Flat @adeyemi Lawson Street, Ikoyi","Adeyemi Lawson Street, Ikoyi Lagos",₦,"115,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5775,6bed Room Duplex In Ikoyi Banana Island...3billion,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Banana Island +5776,2 (nos) 5 Bedroom Duplexes,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Parkview +5777,Self Service Brand New 4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Parkview +5778,6 Bedroom Detached House On 3700sqm For Sale In Old Ikoyi With 5 Bedroom Guest Chalet Price 1.6b Asking Title Lagos C Of O,Ikoyi Lagos,₦,"6,000,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikoyi +5779,"1,600 Sqmts At Turnbull Road Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Onikoyi +5780,"*for Sale* Speaking To Mandate. Luxury Waterfront 6 Bedrooms Fully Detached House With Bq, 3 Living Rooms , Fitted Kitchen, Box Room And Study, Cctv , Swimming Pool, Gym And Jetty On 600 Sqmts Of Land At Banana Island Ikoyi Lagos. Price : N850 Millions",Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Banana Island +5781,"A 21 Rooms Beautiful And Stylish Guest House With Modern Facility For Sale @ Osborne Foreshore Estate Ikoyi. Title: C Of O. Price N1 Billion, 800m Net.",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +5782,6bed Room Fully Detach Duplex With 3living Room,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,1, beds, baths, Toilets,Banana Island +5783,2000 At Oba Elegushi Off Glover Road. Price:1b/fed.cofo,Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5784,3500m2 Of Land,"Alexander Road, Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5785,1100 At George Street Price:400m,Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5786,4 Bedroom Detached House On 520m2,Abacha Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5787,A Prime Fenced Land @ Ikoyi,2nd Avenue Extension Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5788,A Well Improved And Tastefully Finished 4 Bedroom Flat With Bq In A Complex Of Luxury Apartments.,Bourdillon Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5789,1200sqm Prime Corner Piece Land,... Gerard Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5790,"*for Sale*water View Luxury Five 5bedroom Semi Detached Duplex Plus Bq And Swimming Pool,elevator, Three Living Room, Roof Top Balcony For Rent In Banana Island",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +5791,Land Measuring 1800sqm At Banana Island,Banana Island Ikoyi Lagos,₦,"675,000",0,0,0, beds, baths, Toilets,Banana Island +5792,70% Built Luxury Five(5) Detached Duplex With 2living Room And 2room Boys Quarter Within An Estate Off Onikoyi Lagos* With Swimming Pool Land Size 750sqm* *p,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets,Onikoyi +5793,"*for Sale*water View Luxury Five 5bedroom Semi Detached Duplex Plus Bq And Swimming Pool,elevator, Three Living Room, Roof Top Balcony For Rent In Banana Island",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +5794,2100sqmfor Sale In Kings Way Road Ikoyi,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +5795,Hot Sale In Old Ikoyi 2397.081sqm For Sale,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5796,Residential Waterfront Land Measuring 3400sqm In Osborne Phase1 For Sale,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +5797,Land For Sale,Banana Island Ikoyi Lagos,₦,"530,000",0,0,0, beds, baths, Toilets,Banana Island +5798,1000sqm Land For Sale In Banana Isaland,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +5799,Strategically Located Land In Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +5800,2600sqm Land For Sale,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5801,3600sqm Land For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5802,"2300sqm Land At Zone A Banana Island, Lagos",Banana Island Ikoyi Lagos,₦,"1,270,000,000",0,0,0, beds, baths, Toilets,Banana Island +5803,3700sqm Land For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5804,6 Bedroom Fully Automated House, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +5805,Well Built 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5806,Ten Units Of 4 Bedroom Semi Detached Houses,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Onikoyi +5807,Waterfront Plot,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5808,"Plot Measuring Almost 2,400sqms With 99 Years Lagos State C Of O Lease",Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5809,5 Bedroom Detached House On 500 Square Meters,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +5810,"Plot Measuring 1,000sqms Or 2,000sqms Or 4,000sqms",Banana Island Ikoyi Lagos,₦,"530,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5811,"Plot Measuring 2,300 Square Meters",Okotie Eboh Street Old Ikoyi Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5812,Three Units Of 4 Bedroom Terraces,Off Wheatbaker Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5813,"Plot Measuring 1,020 Square Meters With Lagos State C Of O",Bank Road Macgregor Street Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5814,"A Colonial Looking Detached House On 4,400 Square Meters",Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5815,"Plot Measuring 4,400 Square Meters",Ruxton Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5816,Ongoing Development 24 Units Of 3 Bedroom Maisonettes With 1 Room Bq,Glover Road Old Ikoyi Ikoyi Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5817,Two Units Of Semi Detached 5 Bedroom Duplexes,Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5818,"Property On Land Measuring 6,300 Square Meters",Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5819,Residential Zoned Plots,Zones A And B Banana Island Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Banana Island +5820,Three Units Of 4 Bedroom Terraces With Bq,... Osborne Foreshore Estate Ikoyi Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +5821,"Newly Built 5 Bedroom Duplex With Swimming Pool For Sale In Banana Island Ikoyi, Lagos",Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +5822,Luxury 3 Bedroom Apartment, Osborne Foreshore Estate Ikoyi Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,4 Toilets,Foreshore +5823,Lovely Brand New 4 Bedroom Semi Detached Duplex,Awolowo Road Ikoyi Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5824,Fully Furnished State Of The Art 4 Bedroom Waterfront Detached Duplex With 2 Rooms Boys Quarter,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5825,5 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5826,Residential Land,Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5827,Waterfront Block Of 10 Units Of 3 Bedroom Flats,"Ademola Street, Off Awolowo Road Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5828,Serviced 3 Bedroom Flat With A Room Bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,3 Toilets,Parkview +5829,Waterfront Contemporary Luxury 4bedroom Terrace Duplex And 4bedroom Penthouse Duplex,Waterfront Residential Zone Banana Island Ikoyi Lagos,$,"1,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5830,Exclusively Finished 4bedroom Duplex For Sale At Banana Island Ikoyi Lagos,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,6 Toilets,Banana Island +5831,Land,Old Ikoyi Ikoyi Lagos,₦,"375,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5832,Luxury 5 Bedrooms Semi Detached Duplex,310 Close Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5833,Uncompleted 5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +5834,"Landsize: 2,645sqm",... Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5835,800sqm Residential Land,Osborne Phase 1 Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5836,Luxury Fully Furnished 3 Bedroom Flat,"Adeyemi Lawson Road, Behind Queen's Drive Parkview Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +5837,Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5838,Land For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"530,000",1,0,0, beds, baths, Toilets,Banana Island +5839,Beautiful 5bedroom Duplex For Sale Inside Banana Island With Pent House,Onikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +5840,5 Bedroom Duplex With Miniflat Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +5841,Stunningly Built Four (5) Bedroom Duplex,Along Onikoyi Road Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +5842,Land,Olawale Daisy Road Banana Island Ikoyi Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5843,6 Bedroom Detached Duplex,Thompson Street Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +5844,4 Thousand Square Meters Of Land,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5845,Beautiful 5bedroom Duplex For Sale Inside Banana Island With Pent House,Onikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +5846,"Magnificent, Spacious And Stunningly Built Four (4) Bedroom Terraced Duplex",Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +5847,Residential Land,Off Kingsway Road Ikoyi Lagos,₦,"314,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5848,5 Bedroom Detached Duplex For Sale On The Heart Of Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"600,000,000,000",0,0,1,5 beds,5 baths,5 Toilets,Old Ikoyi +5849,Beautifully Finished 4 Bedroom Terrace Duplex With 1 Room Bq,Ikoyi Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +5850,Luxury Built 6 Bedroom All Rooms En Suite Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,6 beds,6 baths,7 Toilets,Banana Island +5851,5 Bed Room Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets,Banana Island +5852,5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,8 baths,8 Toilets,Banana Island +5853,Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters,Banana Island Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5854,Brand New 4bedroom Luxury Terrace House With A Room Bq For Sal,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5855,Brand New 5 Bedroom Luxury Terrace House With A Room Bq For Sale,Macpherson Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5856,Brand New 5bedroom Fully Detached Duplex,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5857,4 Bedroom Tastefully Finished Terrace For Sale,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,4 Toilets,Onikoyi +5858,Luxury Brand New 4 Bedroom Terrace Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5859,Land,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5860,Newly Built 5 Bedrooms Semi Detached House With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +5861,3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"118,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +5862,5 Bedroom Detached Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +5863,"3,600 Sqm Land(400,000/sqm)",... Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5864,Newly Built Luxurious 4bedroom Terrace Duplex For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,4 Toilets,Banana Island +5865,Newly Renovated 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +5866,Ongoing Off Plan Development Of 5 Units Of 5 Bedroom Semi Detached Maisonettes,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5867,Newly Built 4bed Room Duplex,Oniru Ikoyi Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,4 Toilets,Other Ikoyi +5868,3 Bedroom Water Front Apartment With Swimming Pool An And A Bq Parking Slot And Boy Quarter,Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5869,"Tastefully Structured 5 Bedroom Townhouse For Sale At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +5870,Serviced Brand New 4 Bedroom Terrace Duplex For Sale In Parkview,Parkview Estate Ikoyi Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +5871,"Tastefully Structured 4 Bedroom Detached Duplex Plus Bq For Sale At Bourdillion, Ikoyi",Bourdillon Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +5872,"Its Brand New... 5 Bedroom Duplex For Sale At Mojisola Onikoyi Off Banana Island Rd , Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets,Onikoyi +5873,"Tastefully Built 4 Bedroom Flat With Bq For Sale At Rumens Street Off Bourdilon Road, Ikoyi",Bourdillon Ikoyi Lagos,₦,"101,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5874,"Luxuriously Built 36 Rooms Hotel Plus 2 Executive Suites For Sale At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Parkview +5875,Brand New Detached 4 Bedroom And 2 Rooms Bq Sitting On 500sqm, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +5876,5 Bedroom Fully Detached With 2 Rooms Boys Quarter For Sale In Banana Island,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,6 baths,6 Toilets,Onikoyi +5877,Executive 3 Bedroom Flat,... Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +5878,Serviced 3br Apartment At Mojiola Onikoyi Estate N130mill (85% Completed),Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets,Onikoyi +5879,"Exquisite 4br Town Housewith Bq At Off Bourdillon Rd, Ikoyi",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +5880,Luxury 4 Bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,5 baths,6 Toilets,Old Ikoyi +5881,Waterfront Land At Banana Island,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +5882,"Waterfront Plot In Measuring 1,200sqms",Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5883,"Newly Built Luxury 5bedroom Semi Detached Duplex With Maids Room With Swimming Pool,gym",Banana Banana Island Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +5884,Beautiful Lagoon View Massive 5bedrooms Duplex Penthouse With 2rooms Bq For Sale,Off Gerard Road Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +5885,Off Plan Sale 4 Bedrooms Terrace Houses,Residents Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +5886,"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5887,"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5888,"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5889,High Streets Plots For Sale In Old Ikoy,Bourdillon Bourdillon Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5890,"For Sale Smaller Plots In Ikoyi 600sqm, 1000sqm , 700sqm And 1450sqm",Ikoyi Areas Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5891,"2,400sqms Land For N280,000 Per Sqms",Aso Street Parkview Estate Ikoyi Lagos,₦,"672,000,000",0,1,0,0 beds,0 baths,0 Toilets,Parkview +5892,"Waterfront Plots For Sale , 800sqm, 500sqm,and 420sqm",Banana Island Banana Island Ikoyi Lagos,₦,"275,000,000",0,1,0,0 beds,0 baths,0 Toilets,Banana Island +5893,Luxury 5 Bedroom Semi Detached Duplex For Sale In Mojisola Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +5894,52 Flats Of 3 Bedrooms With Bq,... Ikoyi Lagos,₦,"10,000,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Ikoyi +5895,15 Units Of 3 Bedroom Flat,... 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Ikoyi +5896,Land Measuring 1200sqm,Shoreline Estates Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +5897,Beautiful Massive Luxury 5 Bedroom Detached Mansion For Sale,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Ikoyi +5898,A Brand New & Spacious 3 Bedroom Apartments With A Bq,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +5899,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths, Toilets,Banana Island +5900,Luxury Beautiful Service 8units 5bedroom Fully Detached’s Duplex With 1room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5901,5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"370,000,000",0,1,1,5 beds,5 baths,5 Toilets,Banana Island +5902,Newly Built 5 Bedroom Semi Detached Duplex With Servant Quarters,Olori Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,000,000,000",0,1,1,5 beds, baths, Toilets,Onikoyi +5903,A 5 Bedroom Semi Detached Duplex For Sale At Onikoyi Lagos,Olori Mojisola Onikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Foreshore +5904,4bedroom Terrace Duplex And One 5bedroom Penthouse,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"245,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +5905,Well Finished 4bedroom Semi Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +5906,4bedroom Terrace Duplex And 5bedroom Penthouse Off Plan Sales,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Ikoyi +5907,Newly Built Luxury 4 Bedroom Terrace House,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,0 Toilets,Foreshore +5908,A Luxurious 4 Bedroom Maisonette (penthouse),"Joe Faraday, Off Banana Island Road, Ikoyi. (frankforte Height) Mojisola Onikoyi Estate Ikoyi Lagos",₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets,Onikoyi +5909,Prime Fenced Land For Sale,Second Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5910,The Penthouse Apartments Aduke Court Ikoyi,"Off Bourdillion, Ikoyi Bourdillon Ikoyi Lagos",₦,"500,000,000",0,1,1,4 beds,5 baths, Toilets,Other Ikoyi +5911,Masterpiece 5bed Townhouse,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +5912,5bed Detached House With 2bed Bq,Banana Island Banana Island Ikoyi Lagos,₦,"470,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +5913,Brand New 4 Bedroom Terrace Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5914,Luxury Brand New 5 Bedroom Semi Detached Duplex For Sale In Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +5915,Magnificent 5 Bedroom Fully Detached Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5916,A Brand New Luxury 3 Bedroom Flat Is Now Available For Sale In Mojisola Onikoyi Estate Ikoyi With,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Onikoyi +5917,Serviced 4bedroom Detached Duplex For Sale At Alexander Old Ikoyi,Alexander Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +5918,5bedroom Semi Detached Duplex For Sale At Awolowo Road Ikoyi,Okotiebo Awolowo Road Ikoyi Lagos,₦,"160,000,999",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +5919,A Brand New Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,4 beds,5 baths,4 Toilets,Banana Island +5920,"*federal Government Allocation* 8,200sqm Land Located On The Corner Piece Between Turbo Road And Bannan Island Road.",Banana Island Road Ikoyi Lagos,₦,"2,378,000,000",0,0,0, beds, baths, Toilets,Banana Island +5921,Land Size: 4600m² For Sale, Gerard Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5922,2 Bedroom Flat,... Ikoyi Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5923,4 Bedroom Terrace Duplex For Sale,Ikoyi Ikoyi Lagos,₦,"250,000",1,1,1,4 beds,4 baths,4 Toilets,Other Ikoyi +5924,5 Bedroom Duplex For Sale In Onikoyi 08jul08,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Onikoyi +5925,5 Bedroom Block Of Flats, Banana Island Ikoyi Lagos,₦,"181,400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5926,8 Bedroom Terrace Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"129,990,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5927,4 Bedroom Luxury Maisonette,... Osborne Foreshore Estate Ikoyi Lagos,₦,"60,990,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5928,Contemporary 3 Bedroom Serviced Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +5929,Waterfront 4 Bedroom Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Banana Island +5930,Luxury 5 Bedroom Semi Detached Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +5931,Contemporary 3 Bedroom Serviced Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"175,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +5932,State Of The Heart Waterfront 5 Bedroom Semi Detached Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +5933,Luxury Duplex,Glover Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,7 beds,7 baths,7 Toilets,Old Ikoyi +5934,First Class Luxury Duplex,Gloval Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Ikoyi +5935,3 Bedroom Terrace Duplex For Sale In Banana Island 03jul12,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,1,3 beds,3 baths,3 Toilets,Banana Island +5936,5 Bedroom Semi Detached Duplex For Sale In Banana Island 03jul07,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,5 baths,5 Toilets,Banana Island +5937,C Of O,Off Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Foreshore +5938,*distressed Sale* Land For Sale On Bourdillion Road.,Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +5939,"Bare Land Measuring 1,730 Square Meters & Rectangular In Shape",Alexander Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5940,Luxury 3 Bedroom Flat With Boys' Quarters,Awolowo Road Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +5941,Block 0f 2 No 2 Bedroom Flat,Alh. Bashorun Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,4 Toilets,Other Ikoyi +5942,Four(4) Bedroom Terrace Duplex With Governor's Consent,Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +5943,6 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5944,6 Bedroom Detached Duplex,... Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +5945,4 Bedroom Block Of Flats, Osborne Foreshore Estate Ikoyi Lagos,₦,"59,900,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5946,5 Bedroom Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5947,Five Bedroom Fully Detached Duplex With 2bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +5948,4 Bedroom Semi Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5949,4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5950,"Luxury 4 Bedroom Flat For Sale At Bourdillon, Old Ikoyi",Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +5951,Plot Measuring *405sqms With Fgn Cofo Selling For N245m*,Off Ondo Street Banana Island Ikoyi Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets,Banana Island +5952,Brand New 4 Bedroom Detached House With 2 Rooms Bq With Parking For 4 6 Vehicles On 450sqms,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5953,4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5954,3 Bedroom Flat,... Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5955,5 Bedroom Detached Duplex,... Ikoyi Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +5956,5 Bedroom Semi Detached House For Sale In Banana Island 22jun03,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +5957,A 7 Bdrm Waterfront Det. Hse With 3 Rm Bq On 6400 Sqm* Land,"Jubril Aminu Str. Off Tony Eromosele Str. Parkview, Ikoyi. Ikoyi Lagos",₦,"1,400,000,000",1,1,1,7 beds,7 baths,7 Toilets,Parkview +5958,"Penthouse, Comprising Of A Chapel And Gym, 8 Bedrooms Ensuite Osborne Phase 2, Ikoyi, Lagos",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",1,0,0,8 beds,7 baths,7 Toilets,Foreshore +5959,Architectural Masterpiece Which Consists Of 16 Ultra Luxury Maisonettes And 2 Pent Houses Of 4 Bedrooms Each.,Banana Island Banana Island Ikoyi Lagos,$,"1,300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +5960,"A Gated Cul De Sac, Waterfront 4nos Newly Built 5bedroom Semidetached Houses Situates In Banana Island, Ikoyi, Lagos",Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +5961,Brand New Self Service 3 Bedroom Terrace Duplex For Let At Osborne Phase 2 Ikoyi Lagos.,Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Foreshore +5962,Luxury Waterfront 3 Bedroom Flat For Sale In Banana Island Ikoyi.,Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +5963,Five Bedroom,Banana Island Ikoyi Lagos,₦,"540,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +5964,A Newly Built Semi Detached 5bedroom Duplex For Sale At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +5965,Jv Banana Island,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Banana Island +5966,5 Bedroom Standalone Home With A Swimming Pool And 24 Hour Power Supply For Sale At Bank Road Ikoyi,In A Serviced Estate At Bank Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5967,4 Bedroom Terrace Duplex,... Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +5968,6 Bedroom Waterfront Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +5969,5 Bedroom Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +5970,Luxury 3 Bedroom Apartment With Detached Bq,Adeyemi Lawson Street Bourdillon Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +5971,4 Bedroom Apartment,... Old Ikoyi Ikoyi Lagos,$,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +5972,5 Bedroom Detached House For Sale In Ikoyi 17jun03,Ikoyi Lagos,₦,"475,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +5973,4 Bedroom Detached Duplex,... Mojisola Onikoyi Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +5974,"For Sale In Banana Island 1,279sqm Location Plot G Price 650m",Residents Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Banana Island +5975,4 Bedroom Apartment For Sale At Parkview Estate Ikoyi,"Parkview Estate Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"190,000,000",0,1,0,4 beds, baths, Toilets,Parkview +5976,5 Bedroom Detached Duplex For Sale,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5977,"5 Bedroom Fully Detached,house.","Banana Lsland,ikoyi Banana Island Ikoyi Lagos",₦,"850,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +5978,"Fully And Exquisitely Furnished Luxury 5 Bedroom Penthouse Flat For Sale At Bella Vista Towers, Banana Island","Bella Vista Towers, Banana Island Banana Island Ikoyi Lagos",$,"5,000,000",1,0,1,5 beds,5 baths,6 Toilets,Banana Island +5979,Newly Built Luxury 6 Bedroom Fully Detached Duplex For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets,Banana Island +5980,Luxury 5 Bedroom Detached Duplexes And Townhouses With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5981,Newly Built Luxury 5 Bedroom Detached Duplex For Sale In Shoreline Estate Ikoyi,Shoreline Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +5982,"1,000sqm Land Wit 4bedroom Detached House.",Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +5983,Joint Venture On A Plot Of Bare Land At Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Foreshore +5984,Luxury 4 Bedroom Terrace Duplex With 2 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +5985,Classically Finished 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +5986,Luxury 3 Bedroom Flat Pent House With Excellent Facilities,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +5987,5 Bedroom Detached Duplex For Sale,Ikoyi Bourdillon Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5988,Tastefully Finished 3 Bedroom Flat With A Room Bq And Excellent Facilities,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +5989,Tastefully Finished 5 Bedroom Terrace Duplex With 2 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +5990,"2 Units 5bedroom Semi Detached Duplex In A Waterfront Mini Estate With Jetty Access,elevator",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +5991,Luxury 4 Bedroom Terrace Duplex For Sale In Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +5992,Luxury Brand New 3 Bedroom Flat For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +5993,Massive 5 Bedroom House For Sale Off Awolowo Road Old Ikoyi Lagos On 660sqm,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +5994,52 Flats Of 3 Bedroom With Bq,Gerard Street Ikoyi Lagos. Gerard Road Ikoyi Lagos,₦,"10,000,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Ikoyi +5995,Newly Built Luxury 5 Bedroom Semi Detached Duplex For Sale In Onikoyi Banana Island,Banana Island Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +5996,4 Bedroom Terrace Duplex For Sale In Ikoyi 10jun28,Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Ikoyi +5997,5 Bedroom Semi Detached Duplex For Sale In Ikoyi 10jun25,Ikoyi Lagos,₦,"320,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Ikoyi +5998,New Five Bedroom Terrace House On 4 Floors Having An Inbuilt Elevator,Off Bourdillon & Also Accessible From Queens Drive Bourdillon Ikoyi Lagos,₦,"240,000,000",0,1,0,5 beds,4 baths,5 Toilets,Other Ikoyi +5999,5 Bedroom Semi Detached Duplex For Sale In Ikoyi 09jun38,Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Ikoyi +6000,5 Bedroom Detached House For Sale In Ikoyi 09jun37,Ikoyi Lagos,₦,"475,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6001,3 Bedroom Apartment For Sale In Banana Island 09jun25,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,3 baths,3 Toilets,Banana Island +6002,Movamo Court,"Close 216, Second Avenue, Banana Island Ikoyi Lagos",₦,"4,500,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6003,Newly Built 5 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds, baths, Toilets,Banana Island +6004,4 Bedroom Terrace Duplex For Sale In Ikoyi 07jun17,Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Ikoyi +6005,5 Bedroom Detached House,Bode Olajumoke Crescent Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Parkview +6006,(off Plan Development) Luxurious 3 Bedroom Flats With State Of The Art Finishing And Fitted Kitchens,Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,3 beds, baths, Toilets,Foreshore +6007,Terraced 4 Bedroom Duplex For Sale,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6008,Newly Built 6 Bedroom Duplex,"Plot J52 314 Close, Second Avenue, Banana Island Ikoyi, Eti Osa Local Government, Lagos Banana Island Ikoyi Lagos",₦,"1,500,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +6009,7 Bedroom Detached Duplex For Sale In Banana Island 06jun11,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,1,7 beds,7 baths,7 Toilets,Banana Island +6010,Luxurious 4bedroom Terrace Duplex With 2room Bqfor Sale,Parkviwe Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +6011,4 Bedrooms Luxury Townhouse With 2 Maids Room,"Zone M, Federal Government Layout Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +6012,Premium 4 Bedroom Maisonette With A Maids Room,Probyn Road (osinowo Road) Off Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6013,4 Bedroom Semi Detached House For Sale In Ikoyi 03jun16,Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6014,"Block Of 6 (2) Bedrooms Flats, With A Very Spacious Car Park For Sale In Old Ikoyi....",Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +6015,5 Bedroom Residential Building With Boys Quaters,Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6016,5 Bedroom Office Building,Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6017,7 Bedroom Semi Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"900,000,000",1,0,0,7 beds,7 baths,8 Toilets,Banana Island +6018,5 Bedroom Duplex For Sale In Ikoyi 02jun16,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6019,4 Bedroom Fully Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,1,4 beds,4 baths,5 Toilets,Banana Island +6020,8 Bedroom Apartment For Sale In Banana Island 21mar01,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,7 Toilets,Banana Island +6021,3 Bedroom Flat For Sale In Banana Island 12may39,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6022,4 Bedroom Maisonette For Sale In Banana Island 30may76,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6023,5 Bedroom Duplex For Sale In Banana Island 28may11,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6024,4 Bedroom Apartment For Sale In Banana Island 15apr1,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6025,5 Bedroom Fully Detached Duplex For Sale In Ikoyi 22apr28,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6026,Land For Sale In Ikoyi 23apr12,Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6027,4 Bedroom Flat,.. Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6028,4 Bedroom Terrace For Sale In Ikoyi 4apr5,Ikoyi Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6029,5 Bedroom Detached House For Sale In Banana Island 01jun25,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6030,5 Bedroom Town House For Sale In Banana Island 25apr43,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6031,5 Bedroom Townhouse For Sale In Banana Island 29apr47,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6032,5 Bedroom Detached House For Sale In Banana Island 28apr4,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6033,3 Bedroom Maisonnette For Sale In Ikoyi 23apr11,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +6034,4 Bedroom Duplex For Sale In Ikoyi 29apr50,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6035,4 Bedroom Detached Duplex For Sale In Banana Island 3apr33,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6036,5 Bedroom Detached Duplex For Sale In Ikoyi 7apr10,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6037,3 Bedroom Terrace House For Sale In Banana Island 15may12,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6038,Land For Sale In Ikoyi 13may48,Ikoyi Lagos,₦,"250,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6039,3 Bedroom Terrace For Sale In Banana Island 9may38,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6040,4 Bedroom Terrace House For Sale In Banana Island 30apr4,Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6041,4 Bedroom Terrace Duplex For Sale In Banana Island 16apr2,Banana Island Ikoyi Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6042,Storey Building For Sale In Ikoyi 11may37,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6043,5 Bedroom Semi Detached House For Sale In Banana Island 8may26,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6044,11 Units Of 2 And 3 Bedroom Flats For Sale In Ikoyi 31mar33,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikoyi +6045,5 Bedroom Semi Detached Duplex For Sale In Ikoyi 5may31,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6046,36 Rooms Hotel For Sale In Ikoyi 15may28,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +6047,Land For Sale In Ikoyi 25apr5,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6048,4 Bedroom Luxury Masionette For Sale In Banana Island 22apr62,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6049,Land For Sale In Ikoyi 13may49,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6050,5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6051,5 Bedroom Semi Detached Duplex For Sale In Ikoyi 6may48,Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6052,3 Bedroom Apartment For Sale In Ikoyi 29apr25,Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +6053,5 Bedroom Townhouse For Sale In Banana Island 4apr36,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6054,5 Bedroom House For Sale In Banana Island 15may11,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6055,4 Bedroom Detached Duplex For Sale In Banana Island 7apr4,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6056,5 Bedroom Fully Detached Duplex For Sale In Ikoyi 16may19,Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6057,5 Bedroom Semi Detached Duplex For Sale In Banana Island 9may26,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6058,5 Bedroom Detached Duplex For Sale In Ikoyi 30may27,Ikoyi Lagos,₦,"280,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Ikoyi +6059,5 Bedroom Fully Detached For Sale In Ikoyi 6apr45,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6060,5 Bedroom Terrace House For Sale In Ikoyi 28mar2,Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6061,5 Bedroom Detached Duplex For Sale In Banana Island 22mar20,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6062,Well Finished And Serviced 4 Bedroom Town House With 1 Room Boy's Quarter,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6063,4 Bedroom Maisonette,.. Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6064,Land For Sale In Ikoyi 23apr13,Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6065,5 Bedroom Duplex For Sale In Ikoyi 9may47,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6066,Newly Built 5 Bedroom Semi Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6067,Luxury Brand New 4 Bedroom Detached Duplex,.. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +6068,House For Sale In Ikoyi Lagos,"Abacha Estate, Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6069,Land For Sale In Banana Island Ikoyi Lagos,M27 Close Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6070,A Well Built 3 Storey Building Hotel With 21rooms,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,1,10 beds,10 baths,10 Toilets,Other Ikoyi +6071,Newly Built Luxury 5 Bedroom Furnished Terrace Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +6072,Luxury 5 Bedroom Fully Detached Duplexes For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6073,Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Residents Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6074,Brand New 5 Bedroom Semi Detached Duplex With A Room Bq,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +6075,Beautiful Built Luxurious 4 Bedroom Semi Detached Duplex For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6076,Luxurious 6bedroom Fully Detached Mansion For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets,Old Ikoyi +6077,Luxurious 4 Units Of 4 Bedroom Terrace And 2 Units Of Penthouse In Banana Island,"Plot 6c, Zone M, Federal Government Layout, Banana Island Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +6078,4 Bedrooms And One Additional Bedroom As Boy’s Quarter (all Rooms En Suite),"26, Probyn Road (onisiwo Road), Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"270,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +6079,Luxuriously Finished Waterfront Four(4) Bed Semidetached Houses For Sale/lease In Banana Island Ikoyi Lagos....,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Banana Island +6080,Luxury 4 Bedroom Flat For At Old Ikoyi,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"12,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6081,"5 Bedroom Fully Deteached Duplex,corner Piece With 2 Room Bq",Norman Williams Street South West Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6082,Tastefully Finished Five Bedroom,Banana Island Lagos State Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Banana Island +6083,12 Unit Of 3 Bedroom Flat For Sale At Ikoyi,Parkiew Parkview Estate Ikoyi Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets,Parkview +6084,Brand New 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6085,Newly Built Detached 5 Bedroom Duplex For Sale,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,7 Toilets,Parkview +6086,Lagoon View Luxury Duplex With Elevator,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6087,4 Bedroom Detached House Off Olori Mojisola Onikoyi,Onikoyi Banana Island Ikoyi Lagos,₦,"385,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6088,1209.134 Sqm ... Shoreline Estate Off Banana Island Road,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Banana Island +6089,2300sqm Banana Island Residential Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,265,000,000",0,0,0, beds, baths, Toilets,Banana Island +6090,2000 Sqm,Ikoyi Lagos,₦,"1,150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6091,C Of O,Banana Island Ikoyi Lagos,₦,"850,000,000,000",1,1,1,5 beds,7 baths,7 Toilets,Banana Island +6092,"10units Of 3bedroom Flats With 1bq Each ,with Swimming Pool,gym",Residents Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +6093,Luxurious Contemporary 4 Bedroom Detached Duplex For Sale,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6094,Luxuriously Finished And Well Built 6bedroom Detached Duplex With Garden/swimming Pool For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +6095,5bedroom Fully Detached’ Duplex In A Mini Service Estate,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6096,Newly Built Luxury 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +6097,"Kaydar’s Gate , Luxury 4 Bedroom Town House & Pent Floor Apartments","Zone M, Federal Government Layout , Off Onikoyi Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +6098,Skyvilla Luxury 4 Bedroom Condominiums With 1 Bq Sitting On 3 Floors Each,"26 Probyn Road , (onisiwo Road) Bourdillon Ikoyi Lagos",₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6099,4 Plots Of Land For Sale Together Inside Parkview Estate Ikoyi,Park View Estate Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Parkview +6100,4 Units Of 4 Bedroom Terrace Duplex For Sale At Osbourne Ikoyi Vi300,Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,10 beds,10 baths,10 Toilets,Foreshore +6101,5 Bedroom Detached Duplex For Sale At Banana Island Ik781,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6102,23 Flats 12 Flats Of 2 Bed Each With Bq& 11 Flats Of 3 Bed Each With Bq,Old Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Old Ikoyi +6103,5 Bedroom Semi Detached Terrace Duplex For Sale At Ikoyi Vi436,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +6104,Newly Built And Luxury 5 Bedrooms House Plus Swimming Pool,"Banana Island Foreshore Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6105,Newly Built 4bed Room Duplex,Hy Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,5 Toilets,Banana Island +6106,Waterfront Land Measuring 4922sqm At Zone J Banana Island,Zone J Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Banana Island +6107,Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +6108,Orient Style Luxury 5 Bedroom Villa,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6109,3 Bedroom And 4 Bedroom Penthouse. The 3 Bedroom Flat Comes With 2 Bq Biggest 3 Bedroom Flat In Ikoyi/vi Covering 350sqm 250m,Ikoyi/ Victoria Island Gerard Road Ikoyi Lagos,₦,"250,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +6110,Newly Built 5 Bedroom Detached House,Off Banana Island Ikoyi Lagos,₦,"504,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6111,"1, 736 Sqm Land For Sale In Old Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6112,"Waterfront Land Measuring 3,600.226sqm At Osborne Phase 1, Ikoyi",Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6113,"2,000sqm Land For Sale On Aqua Point Estate, Banana Island",Banana Island Ikoyi Lagos,₦,"250,000",0,0,0, beds, baths, Toilets,Banana Island +6114,"1000sqm Bare Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6115,"Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land At The Residential Part Of Banana Island Estate, Ikoyi Lagos.",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets,Banana Island +6116,"820sqm Land For Sale In Mojisola Onikoyi Estate, Ikoyi, Lagos",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,Onikoyi +6117,"500sqm Bare Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6118,"1000 Square Metres Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6119,"Waterfront Land Measuring 1,800sqm For Sale In Banana Island, Ikoyi, Lagos",Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Banana Island +6120,"Fenced And Gated Bare Land Of 2340sqm For Sale At Old Ikoyi, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6121,"1400 Sqm Bare Land Waterfront For Sale At Shoreline Estate, Ikoyi",Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6122,Strategic Land Measuring 4500sqm (1acre),Alfred Rewane Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6123,"3500 Sqm Bareland, Suitable For Commercial / Residential Use",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6124,"600 Square Metres Land For Sale At Park View Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Parkview +6125,500 Sqm Land For Sale In Old Ikoyi. Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6126,"2 Nos Of 500 Square Metres Land For Sale At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Banana Island +6127,2100 Sqm,Banana Island Banana Island Ikoyi Lagos,₦,"840,000,000",0,1,0, beds, baths, Toilets,Banana Island +6128,Ensuite 4 Bedroom Duplex For Sale At Ikoyi Vi130,Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6129,Furnished Elegantly Built 5 Bedroom Luxurious Duplex For Sale At Banana Island Vi143,Banana Island Ikoyi Lagos,₦,"760,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6130,Land For Sale At Bourdillion Ikoyi,"Bourdillion, Old Ikoyi Bourdillon Ikoyi Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6131,2547sqm Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6132,1450 Sqm For Sale At 1st Avenue,"1st Avenue, Off Kingsway Road. Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"560,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6133,Magnificent 5 Bedroom Detached House For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6134,Masterpiece 5 Bedroom Townhouse That Screams Luxury Down To The Last Shard Of Glass,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +6135,Newly Built 6 Bedroom Duplex In A Serene Location,Banana Island Ikoyi Lagos,₦,"1,300,000,000",1,1,1,6 beds,6 baths,6 Toilets,Banana Island +6136,Elegant 5 Bedroom Duplex With Bq For Sale In Ikoyi Lk037,Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +6137,Newly Built Luxurious And Contemporary Five Bedroom Fully Detached Duplex In Old Ikoyi,Street Inside Mojisola Onikoyi Estate Old Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +6138,Contemporary 4 Bedroom Detached Duplex With 2 Bq For Sale In Banana Island Vi048,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6139,Banana Island For Sale At Land Size: 2300sqm,Zone A Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets,Banana Island +6140,Newly Built And Serviced 4 Bedroom Terrace,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Foreshore +6141,Two Block Of Luxury Residential High Rise Apartments With 54 Apartments,Great Street On Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6142,Newly Built A Block Of Luxury 8 (no) 3 Bedroom And 2 (no) 4 Bedroom,.. Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +6143,Banana Island Land With 2000sqm In Land Sizw,Zone B Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets,Banana Island +6144,Banana Island Land With 2000sqm In Land Size,Zone B Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets,Banana Island +6145,A Newly Built Five Bedroom Luxurious And Fully Detached House Inside An Estate In Old Ikoyi,Street Inside Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +6146,3600sqm Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6147,2192 Sqm At Queen Drive,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6148,4095sqm Waterfront At Osborne Phase 2,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Foreshore +6149,"1800sqm For Sale On Adeyemi Lawson , Ikoyi",Adeyemi Lawson Macpherson Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6150,2600sqm Land Along Kingsway Road,"Kingsway Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6151,4236 Sqm Land At Parkview Estate,Parkview Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6152,900 Sqm For Sale At Osborne Phase 2,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Foreshore +6153,1800 Sqm Of Waterfront Land For Sale @ Ikoyi Banana Island Road,Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Banana Island +6154,4 Bedroom Terrace Duplex,Ikoyi Lagos,$,"780,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6155,For Sale; Beautifully Finished 4 Bedroom Townhouse In Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6156,4 Bedroom Apartment (pent House),Wemabod Towers Gerard Road Ikoyi Lagos,₦,"300,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +6157,Superb 3 Bed Apartment In Upscale Ikoyi,Olori Mojisola Onikoyi Street Banana Island Ikoyi Lagos,₦,"175,000,000",1,1,0,3 beds,3 baths,3 Toilets,Banana Island +6158,2 Bedroom Hotel Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"85,000,000",1,1,1,2 beds,2 baths,3 Toilets,Banana Island +6159,Spacious 1 Bedroom Hotel Apartment For Sale,Banana Island Road Banana Island Ikoyi Lagos,₦,"60,000,000",0,1,0,1 beds,1 baths,2 Toilets,Banana Island +6160,1344sqm Of Dry Land In Osborne Foreshore 2,Ghh Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Foreshore +6161,3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6162,3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6163,3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6164,Ikoyi Terrace Update. Description: A Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6165,2600 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6166,600 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6167,500 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6168,1000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6169,4300 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6170,A Superb 5 Bedroom Detached House And 3 Bedroom Bq On 1100sqmt,Mitchell Okocha Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,8 baths,8 Toilets,Parkview +6171,A Unit Of Unique Luxury 4 Bedroom Fully Serviced Apartment Measuring 528.334 Square Meters Within A Newly Built Block,Ikoyi Lagos,₦,"420,000,000",1,1,0, beds, baths, Toilets,Other Ikoyi +6172,5bedroom Fully Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +6173,Luxury Brand New 3 Bedroom Flat For Sale In Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Parkview +6174,"1,000 Residential Land On A Serene And Secure Street On Old Ikoyi Road, Lagos State, With C Of O",Old Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6175,"12 Units Of 3 Bedroom Apartment With 1 Room Bq Each, Gym, Generator, Gate House, Swimming Pool, Etc.","Sir Tony Eromosele Crescent, Parkview Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"950,000,000",1,0,1,3 beds,3 baths,3 Toilets,Parkview +6176,4 Bedroom Terrace House For Sale In Ikoyi Yb028,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6177,4 Bedroom Semi Detached Triplex For Sale In Ikoyi Yb030,Ikoyi Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6178,4 Bedroom Terrace Duplex For Sale In Ikoyi Vi002,Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6179,5 Bedroom Detached + Bq + Fitted Kitchen + Cctv Camera.,Off Ajayi Obembe Street Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6180,"Quick Sale; Land Measuring 1,949.923sqm In Banana Island",Banana Island Banana Island Ikoyi Lagos,₦,"550,000",0,0,0, beds, baths, Toilets,Banana Island +6181,Off Plan Of Luxurious 4 Bedroom Maisonette In Ikoyi,Probyn Street Bourdillon Ikoyi Lagos,₦,"270,000,000",1,1,0,6 beds,6 baths,6 Toilets,Other Ikoyi +6182,A 12 Nos Of 3 Bedroom Apartment With 1 Room Bq Each,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +6183,A Fenced Land Measuring 1736 Square Meters On Alexandra Road,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6184,A 7 Units Of 4 Bedroom (all Rooms Ensuite & Jacuzzi In Master Bedroom) Luxury Apartment (waterfront View) At Banana Island,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6185,"A 24 Units Of 4 Bedroom Luxury Apartments, Including 6 Penthouses Each With Inbuilt Bq",Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6186,"Bareland Sitting On 1,730 & Rectangular In Shape Located Along Alexandra Road, Ikoyi",Alexandra Road Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6187,A 7 Units Of 4 Bedroom (all Rooms Ensuite & Jacuzzi In Master Bedroom) Luxury Apartment (waterfront View) At Banana Island,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6188,A Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors,Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6189,"An Old Vacant Fully Detached / Demolishable Building On 2,672 Sqm Land",Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6190,Newly Built 4bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6191,A 5 Bedroom Wing Of Duplex On Approximately 350 Square Meters,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Onikoyi +6192,4 Bedroom Serviced Flat For Urgent Sale In Ikoyi,"Abraham's Court, Rumens Road, Off Kingsway Road Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6193,Functioning Hotel For Sale,Queens Drive Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6194,A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6195,4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +6196,Luxury 5 Bedroom Fully Detached Duplex,Off Banana Island Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +6197,4bed Room Penthouse,Ju Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Parkview +6198,Newly Built 3bed Room Maisionette,Hu Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,1,3 beds,3 baths,4 Toilets,Foreshore +6199,Service Massive Luxury 5bedroom Fully Detached’ Duplex With Swimming Pool And 2bq For Sale,Off Lugard Ave Old Ikoyi Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6200,Banana Island Sale Update ? 2000sqm 1.2b Zone B Lagos C Of O Direct Brief,Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Banana Island +6201,5 Bedroom Duplex, Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +6202,Brand New Service 3bedroom With Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,3 baths,3 Toilets,Parkview +6203,4 Bedroom Detached House With 1 Nos Boys Quarters (bq),... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6204,"Off Plan: Two Units Of 5 Bedroom Detached Houses With Bq, Cinema Room, Swimming Pool,",Glover Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6205,"Luxury Newly Built 5 Bedroom Semi Detached Duplex With 2bqs, Swimming Pool, Gym For Sale",Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6206,"Ornerpiece Plot Measuring 6,300sqsms With Lagos State Cofo ",Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6207,4 Bedroom Semi Detached House With Two (2) Nos Of Boys Quarters (bq),... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6208,Newly Built Exotic 5 Bedroom Detached House For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6209,Newly Built 3 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"250,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6210,Modern State Of Art 5 Bedroom Detached Duplex For Sale In Banana Island Ikoyi Lagos With.,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6211,Exotic 5 Bedroom Semi Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"300,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6212,Large Parcels Of Lands At Various Location In Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Banana Island +6213,Detached 5bedroom Duplex For Sale At Parkview Estate Ikoyi Lagos With A Bq,Park View Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +6214,"A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land At The Residential Part Of Banana Island Estate, Ikoyi Lagos.",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6215,Newley Built 4bedroom Apartment With A Self Bq,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +6216,Luxurious 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,1,5 beds, baths, Toilets,Banana Island +6217,4 Bedroom Terrace With A Maids Room 250m Asking,Ojora Road Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds, baths, Toilets,Other Ikoyi +6218,"The Property Consist Of 4 Unit Of Luxury 3 Bedroom Flat Tastefully Finished With A Room Domestic Quarters,",Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +6219,26 Numbers Of 3 And 4 Bedroom Deluxe Apartment,"Gerard, Ikoyi Gerard Road Ikoyi Lagos",₦,"5,500,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6220,"Newly Built Luxury 4bedroom Semi Detached Duplex With Maids Room With Swimming Pool,gym",Nice Street Banana Island Ikoyi Lagos,₦,"26,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6221,Newly Built 4 Bedroom Terrace Duplex With A Fitted Kitchen And A Boy’s Quarters,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +6222,"1608 Sqm Of Land For Sale @ Osborne Phase One, Ikoyi, Lagos.",Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Foreshore +6223,Newly Built Fully Serviced Luxurious 4 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6224,For Sale!!! Brand New 4 Bedrooms Fully Detached House Features: • All Rooms Ensuite • 2 Living Rooms • Fitted Kitchen • Central Air Conditioning System • Swimming Pool • Inbuilt Speakers • Balcony • 2 Rooms Bq • Box Room • Ample Parking • Walk In Closet,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6225,Luxury 3 Bed Room Flat,Beside The Ocean Parade Tower Banana Island Ikoyi Lagos,₦,"69,990,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +6226,A 2 Bedroom Flat With A Room Bq,.. Banana Island Ikoyi Lagos,₦,"130,000,000",0,1,0,2 beds,2 baths,2 Toilets,Banana Island +6227,4095sqm Land,Phase 11 Osborne Foreshore Estate Ikoyi Lagos,₦,"870,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6228,Block Of 10 Apartments(3 Bedrooms & 4 Bedroom Flats),Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",1,1,1,3 beds,4 baths,4 Toilets,Banana Island +6229,Renovated 4 Bedroom Semi Detached House On 3 Floors.,"Chris Ali Street, 2nd Avenue. Abacha Estate Ikoyi Lagos",₦,"350,000,000",1,0,1,4 beds,5 baths,5 Toilets,Other Ikoyi +6230,Lovely Built 8 Bedroom Waterfront Mansion,Banana Island Banana Island Ikoyi Lagos,₦,"3,815,000,000",1,1,1,8 beds,9 baths,9 Toilets,Banana Island +6231,Lovely Built 3 Units 4 Bedrooms Terrace Duplex With Room Bq,Osborne 2 By Oceans View. Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",1,1,1,4 beds,5 baths,5 Toilets,Foreshore +6232,4 Bedroom Terrace Semi Detached Apartment,"Acacia Drive, Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos",₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets,Foreshore +6233,"*for Sale: Ornamentally Built 8 Bedroom Fully Detached Edifice Sitting On 2,300 Square Metre Land On Banana Island*",Banana Island Ikoyi Lagos,₦,"4,500,000,000",1,1,1,8 beds, baths, Toilets,Banana Island +6234,Property On A Large Expanse Of Land,Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6235,Newly Built 2 Bedroom All Rooms Ensuite Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"70,000,000",1,1,1,2 beds,2 baths,3 Toilets,Banana Island +6236,"Luxury Newly Built 5 Bedroom Detached Duplex With 2bqs, Swimming Pool, Gym Cinema For Sale",Resident Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6237,"Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court Located Off Bourdillon Road, Ikoyi Lagos.",Off Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +6238,Luxury And Sophisticated 3 Bedroom Apartments In A Highly Prestigious Neigbourhood In Ikoyi,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +6239,6 Units Of 5 Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters. Swimming Pool,Resident Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6240,5 Bedroom Detached House With 2 Room Bq,Bode Olajumoke Street Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6241,"Sale???????????? Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi. Title: C.of.o Price: 2.5billion",Old Lkoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6242,"2 Units Of 5 Bedroom With Two Room Bq Each, All Sitting On Over 1000sqm",Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Parkview +6243,"Block Of 2 Units Of 4 Bedroom Flat With 2 Rooms Bungalow Boys’ Quarter At , Ikoyi: N200m",Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Other Ikoyi +6244,5 Bed Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6245,All Ensuit 10 Units Of 3bedroom Flat Water Front For Sale At Awolowo Road Ikoyi,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +6246,Wing Of 5bedroom Semi Detached Duplex For Sale At Parkview Estate Ikoyi,Park View Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Parkview +6247,Newly Built 3 Bedroom Flat For Sale In Mojisola Onikoyi Estate Ikoyi Lagos.,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +6248,"Bank Sale 4500 Sqm ,ikoyi Glover Road",No 44 Glover Road Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6249,Plot Mesuring 1540sqms In D Zone With Lagos State Cofo,Ikoyi Banana Island Ikoyi Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets,Banana Island +6250,"*for Sale In Shoreline Estate, Ikoyi* Plot Measuring 805 Sqms With *lagos State Cofo* N320m",Shoreline Estates Ikoyi Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6251,Corner Piece Plot Measuring 1540sqm,Zone D Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6252,5bedroom Fully Detached Duplex For Sale At Onikoyi Estate Ikoyi,Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Onikoyi +6253,2600sqm Land Size With Old/demolishable 5bedroom Duplex For Sale,Off Glover Road Close To Ikoyi Police Station Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",1,1,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6254,"Luxury Service 4bedroom Flats With Swimming Pool,gym And Elevator",Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6255,4 Bedroom Terrace Duplex With Bq For Sale In Onikoyi,Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6256,Ikoyi And Victoria Island Properties,Ikoyi And Vi Ikoyi S.w Ikoyi Lagos,₦,"6,000,000",0,1,0,5 beds,4 baths,5 Toilets,Other Ikoyi +6257,Terraced Duplex For Sale Chic City Living,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +6258,Juicy Ikoyi,Royal Palm Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Foreshore +6259,A 21 Rooms Guest House At Osborne Foreshore Estate Ikoyi.,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,1,10 beds,10 baths,10 Toilets,Foreshore +6260,4 Bedroom Luxury Flat/ Apartment,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6261,"Plot Of Land Measuring 898.419m2 At Osborne Ii, Ikoyi. N150m",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets,Foreshore +6262,"5 Bedrooms Fully Detached House + Bq + Fitted Kitchen With Heat Extractor In A Compound That Can Take Up To 7 Cars. At Parkview Estate, Ikoyi. =300m. Direct Brief!",Parkview Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths, Toilets,Parkview +6263,Detached Duplex,"Banana Island, Ikoyi Lagos",$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6264,4 Bedrooms Detached House In Shore Land Estate For Sale @ Ikoyi Title: C Of O,Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6265,A Plot Of Land About 654sqm At Bourdillon Road Ikoyi Lagos,Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6266,Newly And Luxuriously Built 3 Bedroom Block Of Flats With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds, baths,4 Toilets,Banana Island +6267,"Plot Measuring 1,540sqms In D Zone With Lagos State Cofo",Ikoyi Banana Island Ikoyi Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets,Banana Island +6268,"Newly Built 4 Bedrooms Detached Duplex, Banana Island Lagos","Banana Island, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6269,"Plot Measuring Almost 2,600 Square Meters",Glover Road Old Ikoyi Ikoyi Lagos,₦,"930,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6270,"Luxurious 3 Bedroom Apartment, Ikoyi Lagos",Mojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +6271,"Land Measuring 3,600.226sqm With Cofo In Osborne Road, Ilubinrin Foreshore, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"800,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +6272,Land Measuring 3600sqm,.. Ikoyi Lagos,₦,"1,440,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6273,Land Measuring 5100sqm,.. Ikoyi Lagos,₦,"2,500,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6274,Land Measuring 4000sqm,.. Ikoyi Lagos,₦,"2,800,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6275,"Land Measuring 500sqm With Cofo In Webb Road, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"200,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +6276,"Land Measuring 500sqm With Cofo In Copper Road, Ikoyi, Logos For Sale",Ikoyi Lagos,₦,"230,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +6277,"Land Measuring 611sqm With Cofo In Mekwun Road Of Queens Drive, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +6278,All Ensuit 5bedroom Duplex For Sale At Ikoyi Bank Road,Ikoyi Club Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6279,"1735sqm Land Directly On Alexandra Road,ikoyi","Alexandra, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6280,"1500sqm Land With A Rear Bungalow On Gerald Road,ikoyi","Directly On Gerald Road,ikoyi Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6281,4bedroom Fully Detached Duplex For Sale At Ikoyi,Boirdllon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6282,5 Bedroom Fully Detached Duplex & 2 Bedroom,Park View Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,1,1,5 beds,6 baths,6 Toilets,Parkview +6283,Lovely Built 8 Bedroom Detached Duplex On 2300sqm.,Banana Island. Banana Island Ikoyi Lagos,$,"10,000,000",1,1,1,8 beds,8 baths,8 Toilets,Banana Island +6284,Luxury 3 Bedroom Penthouse And A Maid Room,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Foreshore +6285,Luxury 3 Bedroom Serviced Flat For Sale,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +6286,Lovely 4 Bedroom Terrace For Sale,Ikpyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6287,Brand New 5 Bedroom Tastefully Finished Semi Detached House For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6288,"For Sale; Luxury 5 Bedroom Detached House With A Two Room Bq At Banana Island, Ikoyi",Ikoyi Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6289,Brand New 5 Bedroom Tastefully Finished Detached House For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6290,Off Plan Sales; 6 Units Of Luxurious And Contemporary 4 Bedroom Terraces With A Maids Room Attached At Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +6291,Brand New 5 Bedroom Semi Detached House For Sale,Ikoyi Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6292,Brand New 3 Bedroom Tastefully Finished Serviced Flat,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Onikoyi +6293,"For Sale, Brand New Luxury And Tastefully Finished Pent House Off Queen's Drive, Ikoyi",Queen's Drive Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +6294,"Off Plan Sale, Park View Estate Ikoyi 4 Units Of Contemporary Styled Fully Detached Homes With Maids Room Each",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds, baths, Toilets,Parkview +6295,Brand New 3 Bedroom Tastefully Finished Serviced Flat For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +6296,Brand New 2 Bedroom Luxury Serviced Flat At Banana Island,Banana Island Estate Ikoyi Lagos,₦,"90,000,000",0,1,0,2 beds, baths, Toilets,Banana Island +6297,Brand New 4 Bedroom Tastefully Finished Detached House,. Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6298,Brand New 5 Bedroom Tastefully Finished Detached House For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets,Banana Island +6299,5 Bedroom Detached Duplex With 2 Bq For Sale,Banana Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6300,5 Bedroom Semi Detached Duplex For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6301,Newly Built 3 Bedroom Flat With Bq At Onikoyi Estate Banana Island,Onikoyi Estate Banana Island Ikoyi Lagos,₦,"140,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +6302,Prime Land Measuring 2600sqm,Along Gerald Road Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6303,"8 Bedroom Exquisitely Finished Ultra Elitist And Modern Water Front Mansion On 1800sqm Land,",Waterfront Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,8 baths,9 Toilets,Banana Island +6304,1482sqm Land In Osborne,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,5 baths,0 Toilets,Foreshore +6305,Land Measuring 5300m2,Queensdrive (waterfront) Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6306,State Of The Art 2 Bedroom Apartment,"25, Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Onikoyi +6307,Exquisite 5 Bedroom All Rooms Ensuite Semi Detached Duplex + A Room Bq,Oni Ikoyi Area Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6308,"Land Measuring 28,000sqm", Bourdillon Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6309,Luxury One Bedroom Serviced Apartment,"25, Shitta Bay Street, Along Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"50,000,000",1,1,0,1 beds,1 baths,2 Toilets,Onikoyi +6310,Exquisitely Finished 8 Units Of 4 Bedroom Duplex With A Bq,Off Alexandra Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6311,Land Measuring 1000sqm,Webb Road Ikoyi Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6312,Land Measuring 5 Acres,Oba Awolowo Way Awolowo Road Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6313,"Land Measuring 3,566m² (360k/m²)","Cameron Street, Ikoyi Lagos",₦,"1,283,760,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6314,Brand New Executive 4 Bedroom Detached Duplex For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6315,Bareland Measuring 5800sqm (rectangular In Shape),"Olumegbon Street, Off Alfred Rewane Road, By Bat Building Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6316,"Newly Built, Luxury 5 Bedroom Detached House With 2 Rooms Bq And A Swimming Pool.",Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +6317,Luxury 5 Bedroom Detached House With 2 Rooms Bq And Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6318,Luxury 3 Bedroom Serviced Flat With 1 Room Bq,Onikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6319,"Exquisitely Built 5bedroom Detached House With 2 Room Bq,cinema Room, 2car Indoor Parking ,4 Outdoor Parking And Swimmimg Pool",Ikoyi Banana Island Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6320,"Brand New Contemporary Finished Waterview 5 Bedroom Fully Detached Mansion With 2 Room Boys Quarters With Swimming Pool,gym",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"695,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +6321,500sqm Bare Land For Sale On Cooper Road Ikoyi. Title: Fed Cofo N225m Net,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"225,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +6322,"5 Detached House On 1,200sqms + Bq",Bourdillion Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +6323,Waterfront View 5 Units Of Massive Luxury 5 Bedroom Terrace House + 2 Room Bq With Rooftop Lounge Private Elevator,Bourdillion Bourdillon Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +6324,"New Luxury 5 Bedroom Mansion With S/pool, 3 Bq, Study Room, Gym Room, Laundry Room, Very Large Compound On 1200sqm Land",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,8 baths,7 Toilets,Parkview +6325,Plot Measuring1000sqm At J Zone Banana N450k Per Sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Banana Island +6326,"Plot Measuring Almost 2,400 Square Meters With Lagos State Cofo",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"820,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6327,Cornerpiece Plot Directly Off 2nd Avenue Measuring 500sqm Selling For N500k Per Sqm,2nd Avenue Banana Island Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Banana Island +6328,Exquisitely Finished 10units Of 4bedroom Semi Detached In A Mini Estate,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6329,Plot Measuring 1200sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"698,000,000",0,0,0, beds, baths, Toilets,Banana Island +6330,"Contemporary Architecture, Impeccable Finishing With Luxury At Its Finest, 4 Bedroom Terrance With Bq",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +6331,Finished Fully 5 Bedroom Detached Duplex With Swimming Pool And 2 Rooms Boy's Quarter And Cinema Room,Paved Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,7 baths,7 Toilets,Onikoyi +6332,Finished Fully Finished 5 Bedroom Detached Duplex With Air Condition And 2 Rooms Boy's Quarter,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets,Onikoyi +6333,Front Plot Measuring 1350sqms With Lagos State Title Available For Sale,Queen's Drive Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths,6 Toilets,Other Ikoyi +6334,"Exquisitely Built Elegant 5 Bedroom Semi Detached Duplex With Elevator, Gymnasium And 2bq",Residential Zone Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6335,Exquisitely Built 4 Bedroom Terraced Duplex,By Ikoyi Club Old Ikoyi Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6336,4 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6337,"For Sale: Large And Strategically Located Plot Measuring 8,000 Square Meters With Lagos Title Selling For N3.5bn",Glover Road Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6338,"For Sale: Large And Strategically Located Plot Measuring 4,400 Square Meters With Lagos Title Selling For N1.9bn",. Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6339,"4,500 Square Metres Of Land On Gerrard Road, Ikoyi. For Sale! Title: Federal Government Certificate Of Occupancy. Sale Price: ?1,500,000,000",Gerard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6340,Plot Measuring 1000sqm At M Zone Banana,Ikoyi Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Banana Island +6341,"Luxury Exquisitely Built Elegant 4 Bedroom Terrace Duplex With Swimming Pool, Gymnasium, All Rooms En Suite",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6342,Rear Plot For Sale Measuring 700sqm,Glover Road Ikoyi Lagos,₦,"295,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6343,Cornerpiece Plot Directly Off 2nd Avenue Measuring 700sqm Selling For N500k Per Sqm,2nd Avenue Banana Island Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Banana Island +6344,Rear Plot For Sale Measuring 1400 Sqm On Glover Road,Glover Road Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths,2 Toilets,Other Ikoyi +6345,"Luxury Newly Built 5bedroom Duplex With Swimming Pool,cinema,study Room And 2bq For Sale",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6346,"A Land (4,325 Sqms)",Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6347,Luxury Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq And Swimming Pool,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +6348,"Plot Measuring 26,000 Square Meters With Lagos State Cofo",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6349,Super Luxury All En Suite 4 Bedroom Maisonette With An Attached Maid's Room,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +6350,"*for Sale In Mixed Use Zone Of Banana Island, Ikoyi* Back Plot Measuring 850sqms Selling For N380k Per Sqm",Mixed Used Zone Banana Island Ikoyi Lagos,₦,"323,000,000",0,0,0, beds, baths, Toilets,Banana Island +6351,Massive Land Measuring 850sqm Avalaible For Sale,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets,Banana Island +6352,"For Sale: Large And Strategically Located Plot Measuring 6,300 Square Meters With Fg Cofo Selling For N1.8bn",2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6353,Vacant Plot Measuring Up To 1750sqms Available For Sale,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6354,Plot Measuring 1000sqm Second Avenue,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6355,"Plots Measuring 26,000 Square Meters On Glover Road With Lagos State Cofo And Building Plan Approval Selling For N450,000 Per Sqms.",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6356,Well Designed Luxury (masterpiece)5 Bedroom Detached Mansion With Swimming Pool And Cinema Studio And Bqs,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +6357,"Massive Luxury 10bedroom Fully Detached Mansion With Lift Elevator , Cinema Studio,bar,gym And Swimming Pool + 3rm Bq At Osborne Phase1",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Foreshore +6358,Luxury Semi Detached Newly Built 5 Bedroom Duplex,Parkview Estate Road Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +6359,Newly Built Luxious 5bedroom Fully Detached Duplex For Sale With Swimming Pool And Cinema Available.,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,6 baths,6 Toilets,Onikoyi +6360,Luxury Finished 3 Bedroom House And Other Luxury Features,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,4 baths,4 Toilets,Onikoyi +6361,"Luxury Newly Built 6bedroom Detached Duplex With Swimming Pool,cinema And 2bq At Ikoyi",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +6362,"Cornerpiece Plot Directly Off 2nd Avenue Measuring 1,200sqms",2nd Avenue Banana Island Ikoyi Lagos,₦,"698,000,000",0,0,0, beds, baths, Toilets,Banana Island +6363,"Plot Measuring 4,600sqms With Lagos State Cofo","Mekunwen Road, 2nd Avenue Extension Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6364,"Luxury Exquisitely Built Elegant 6bedroom Duplex With 2bqs,swimming Pool And Cinema",0ff Bodylon Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +6365,#superite Africa New Listing# @ Banana Island Fresh For Sale Contemporary Luxury At Its Very Best. Features: 5bedroom Fully Detached Duplex With 3 Living Rooms And 2b/q. Swimming Pool And Cinema Studio,Residential Zone Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +6366,"Luxurious 3 Bedroom Flats, With 1 Room Bq",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6367,Perfectly Well Laid 5 Bedroom Detached Duplex With 2 Room Bq And A Cinema Room,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6368,5 Bedroom Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6369,4 Bedroom Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6370,4 Units Of Luxury 4 Bedroom Terrace Houses With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets,Onikoyi +6371,Luxurious Ongoing Massive 3 Bedroom Terrace Duplex With Swimming Pool With Bqs,Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6372,Luxury 4 Bedroom Apartment,Ocean Parade Towers Banana Island Ikoyi Lagos,$,"1,200,000,000",0,0,0,4 beds,5 baths,6 Toilets,Banana Island +6373,"Plot Measuring 4,600sqms With Lagos State C Of O Selling","Mekunwen Road, Old Ikoyi Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6374,Block Of Flats For Sale In Ikoyi Description* High Rise Property Comprising 2 Nos Block Of Buildings A(9 Floors) & B(10 Floors),Ikoyi Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +6375,Plot Measuring1000sqm At B Zone Banana N650k Per Sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000",0,0,0, beds, baths, Toilets,Banana Island +6376,"Ongoing Luxury 8 Units Of 5 Bedroom Terrace House With Swimming Pool, Gym",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +6377,"Old Detached House On 1,000 Sqms Directly On Bourdillon Road – With 92 Years Unexpired Lease/lagos State Cofo",Ikoyi Bourdillon Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6378,Land For Sale Measuring 2700sqm With Lagos State C Of O.,Glover Road Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6379,"2,600 Square Metres On Gerrard Road, Ikoyi Title: Good And Transferable Sale Price: ?900,000,000",Gerard Road Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6380,Finished Fully 5 Bedroom Detached Duplex With Study Room And 1 Rooms Boy's Quarter,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Onikoyi +6381,Luxury Newly Built 5 Bedroom Fully Detached Duplex With Cinema And 2 Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6382,"2,623 Square Meters Of Land For Sale Location: Oba Adeyinka Oyekan, Avenue Ikoyi Title: Good Price: ?800,000,000.00",Oba Adeyinka Ave Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6383,"Newly Built Luxury 4bedroom Terrace Duplex With Swimming Pool,gym And Bq",Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +6384,Plot Of Land Measuring 650sqm Available In Banana Island,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Banana Island +6385,Architectural Masterpiece Which Consists Of 16 Ultra Luxury Maisonettes And 2 Pent Houses Of 4 Bedrooms Each In Banana Island,Ikoyi Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6386,An Upmarket Boutique Hotel Styled With Anonymity And Privacy Concerns. It Is 95% Complete,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"4,200,000,000",0,0,0, beds, baths, Toilets,Foreshore +6387,"5bedroom Mansion With 2bq.2kitchen.studyroom ,laundry Room.very Large Compound With Carport. Massive Finished For Sale At Parkview",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,7 baths,7 Toilets,Parkview +6388,"Luxury Waterfront Newly 3bedroom Flats With 1bq ,swimming Pool,gym Kid Play Ground",Residential Zone Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +6389,"Lovely 4 Bedrooms Terrace Duplex, Banana Island Road, Ikoyi","Banana Island Road, Ikoyi Lagos Ikoyi Lagos",₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6390,"3000.0001 Square Meters Of Land For Sale Location: Bank Road, Ikoyi Title: Certificate Of Occupancy Certificate Of Occupancy",Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6391,Finished Fully Finished 5 Bedroom Detached Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +6392,"Exquisitely Built Elegant 4bedroom Fully Detached Duplex With, Gymnasium, Swimming Pool, For Sale I",Residents Zone Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +6393,Plot Of Land For Sale,2nd Avenue Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Banana Island +6394,Luxury Townhouse At Magbon Close,At Magbon Close Macpherson Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6395,Dry Land Very Hot,Mekwen Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6396,"Fully Serviced 4bedroom Semi Detached House With 2room Service Quarters,green Area And Ample Parking Space.",Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +6397,1000sqm Bare Land For Sale,At Cooper Road Ikoyi Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6398,5bedroom Detached Duplex,"Osborne 2, Ikoyi,lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",0,1,0,5 beds, baths,4 Toilets,Foreshore +6399,3bedroom Exclusive Apartment For Sale,"10club Road,ikoyi Ikoyi Lagos",₦,"205,000,000",1,0,0,3 beds,2 baths,2 Toilets,Other Ikoyi +6400,Newly Built 5 Bedroom Stand Alone Duplex With 2 Rooms Bq.,Ikoyi Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +6401,5 Bedroom Fully Detached Duplex,. Banana Island Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,0 Toilets,Banana Island +6402,2000sqm Bare Land For Sale,Mojisola Onikoyi Behind Shoreline Estate Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6403,2340sqm Of Are And Gated Land For Sale,4b Iru Close Off Queen Drive Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6404,Brand New 5 Bedroom Detached House + 1bq,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Onikoyi +6405,Newly Built 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds, baths, Toilets,Other Ikoyi +6406,"Land Measuring 1,735sqm",Alexander Street Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6407,7 Bedroom Detached House With Jetty,Banana Island Banana Island Ikoyi Lagos,₦,"920,000,000",0,0,0, beds, baths, Toilets,Banana Island +6408,30 Rooms Hotel For Sale,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Foreshore +6409,"New And Tastefully Finished 5 Bedroom Fully Detached House With Swimming Pool, Cinema Room, & 3 Room Bq",Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +6410,A Twin High Rise Property Of  a 9 Floors & B 10 Floors Consists Of A & B,Olu Holloway Road Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6411,5 Bedroom Fully Detached @ Banana Island Road,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Banana Island +6412,"4brm Fully Detached House @ Off Glover Road, Ikoyi",Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds, baths, Toilets,Old Ikoyi +6413,5 Bedroom Duplex For Sale,Park View Estate Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6414,Newly Built Luxury 3 Units Of 4 Bedroom Townhouses/terraced Duplexes With Swimming Pool,Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6415,"Brand New 3 Bedroom Apartment With Bq At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets,Parkview +6416,4 Bedroom Maisonette Duplex ( Off Plan ),Osborne Foreshore Ii Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"62,700,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +6417,4 Bedroom Maissnate Duplex ( Off Plan ),Banana Island Road Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +6418,Luxury 5 Bedroom Terrace Duplexbrand With Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6419,Luxury 5 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6420,Tastefully Finished 5 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +6421,Luxury 5 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6422,Brand New 5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6423,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6424,Tastefully Finished 5 Bedroom Detached Duplex With 2 Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets,Banana Island +6425,3 Bedroom Luxury Apartment ( Off Plan ),"Ikoyi, Osborne Foreshore Ii Estate Osborne Foreshore Estate Ikoyi Lagos",₦,"47,700,000",1,1,0,3 beds,3 baths,4 Toilets,Foreshore +6426,1200sqm Of Land,Old Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds,2 baths, Toilets,Old Ikoyi +6427,Luxury 4 Bedroom Terrace Duplex With 1 Room Bq, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6428,Brand New 4 Bedroom Flat With Excellent Facilities, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6429,Brand New 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +6430,Luxury 3 Bedroom Maisonette With Excellent Facilites,. Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6431,C Of O,Off Macpherson Street Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6432,Brand New 5 Bedroom Tastefully Finished Luxury Detached House,. Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6433,"Brand New 4 Bedroom Luxury Finished Terrace House At Ilabere, Old Ikoyi", Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6434,Brand New 5 Bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6435,Brand New 4 Bedroom Luxury Service Flat, Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6436,Brand New 5 Bedroom Tastefully Finished Detached House, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"440,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +6437,Newly Built 5bedroom Detached House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6438,5 Bedrooms Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,1,5 beds,6 baths, Toilets,Banana Island +6439,Hotel Forsale In Park View Ikoyi,Joseph Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",1,0,0,10 beds,10 baths,10 Toilets,Parkview +6440,1000sqm Land For Sale At Osborne Phase 1,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Foreshore +6441,5 Bedroom Townhouse With 2 Bed Bq At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +6442,Water Front View Land Forsale At Off Queen Drive Ikoyi Lagos Land Size: 5000 Sqm Price: 2.7b,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6443,1000 Sqm Of Land J Zone In Banana Island,Off 3rd Avenue Banana Island Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Banana Island +6444,611 Square Metres Of Back Land For Sale At Old Ikoyi,Mekuwen Street Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6445,4 Bedroom Semi Detached Houses With Swimming Pool And A Pool House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds,4 baths,5 Toilets,Parkview +6446,Hotel In Parkview,Richard Street Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,10 beds,0 baths,0 Toilets,Parkview +6447,"A Fenced And Gated Land With A Structure On It At Osborne Phase 2 Land Size: 1,416 Sqm Price: 250m Title Document: Federal Certificate Of Occupancy",Osborne 2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +6448,Well Maintained 4 Bedroom Semi Detach Duplex For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6449,Water Front View Land At Banana Island By 2nd Avenue Ikoyi Zone: J51 Land Size: 1000 Sqm Price: 440m Title Document: Federal Certificate Of Occupancy,Banana Read Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0,10 beds, baths, Toilets,Banana Island +6450,4 Rooms Terrace House At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +6451,"Residetial Land Forsale At Off Oba Elegushi Or Old Club Road Ikoyi Lagos Land Size: 2,700 Sqm Price: 1.2b Title Document: Federal Certificate Of Occupancy",Obaelegushi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6452,Land For Residential / Commercial Bulding At Mobolaji Johnson Avenue Ikoyi,Mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6453,Newly Built 5bedroom Duplex In A Serene Environment,Queen Street Banana Island Lagos Banana Island Ikoyi Lagos,₦,"550,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +6454,Newly Built 5bedroom Duplex In A Serene Environment,Queen Street Banana Island Lagos Banana Island Ikoyi Lagos,₦,"550,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +6455,6 Nos 4 Bedroom Town House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6456,Land,"Second Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6457,"Land Measuring 2,496sqm","Osborne Phase 2, Block 9, Plot 22 Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Foreshore +6458,Seven (7) Bedrooms Luxury Detached House Plus Bq, Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Ikoyi +6459,800 Sqm Land, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6460,3182 Sqm Land, Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6461,Immaculately Finished 4(four) Bedroom Detached House For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,5 baths,4 Toilets,Banana Island +6462,Brand New Executive 5bedroom Duplex With 2 Bq At Banana Island.,"Banana Island, Off Ikoyi. Banana Island Ikoyi Lagos",₦,"700,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +6463,Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Plus Bq, Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6464,4 Bedroom Terrance Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,4 Toilets,Banana Island +6465,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6466,The Overlook Condominiums 31 Luxury Units Of 2 4 Bedrooms,Okotie Eboh Street Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +6467,2nos Building For Sale In Ikoyi,Olamijuyin Ave Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets,Parkview +6468,Newly Built 5 Bedroom All Ensuite Mansion In A Serene Environment,"Mojishola, Onikoyi Banana Island Ikoyi Lagos",₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6469,Distress Sale Of Luxury Flats,3rd Avenue Banana Island Ikoyi Lagos,₦,"135,000,000",1,1,1,3 beds,5 baths,5 Toilets,Banana Island +6470,Distress Sale Of Flat Tango Tower,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,5 baths,5 Toilets,Other Ikoyi +6471,1200sqm Landed Property At Parkview,Off Tony Eromosele Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Parkview +6472,A Bare Land In A Serene Part Of Old Ikoyi,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6473,Magnificent 6 Bedroom Mansion At Banana Island Ikoyi Lagos N5b,Banana Island Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +6474,Distress Vendor Property,Off Oyinkan Abayomi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0, beds, baths, Toilets,Old Ikoyi +6475,Fresh Plots Of Land,Mosley Road Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6476,Strategic Residential Plots,Sokoto Street Banana Island Ikoyi Lagos,₦,"550,000",0,0,0, beds, baths, Toilets,Banana Island +6477,Spacious 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Onikoyi +6478,Fully Detached 5 Bedrooms House + Swimming Pool In Banana Island,"Directly Off 3rd Avenue, Banana Island, Lagos. Banana Island Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +6479,Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors (but Share Common Compound) With Bq,Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds, baths, Toilets,Other Ikoyi +6480,"Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors Off Bourdillion, Ikoyi",Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6481,"Lovely 4 Bedrooms Terrace Duplex, Parkview Ikoyi","Tori Court, Gbenga Asafa Rd Parkview Estate Parkview Estate Ikoyi Lagos",₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +6482,1500sqm Land With A Rear 3bedroom Bungalow Directly On Gerald Road,Gerrald Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6483,"Semi Mandate, 6bedroom Detached House On 2,000sqm Well Finished Property With Cofo",Banana Island Banana Island Ikoyi Lagos,₦,"5,100,000,000",0,0,0, beds, baths, Toilets,Banana Island +6484,"5 Bedroom Wing Of Duplex On Approximately 350 Square Meters Located At Olori Mojisola Onikoyi Street, Off Banana Island Road, Ikoyi Lagos.",Onikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets,Banana Island +6485,Exquisitely Serviced And Furnished 2bedroom Flat,Second Avenue Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,1,2 beds,2 baths,3 Toilets,Old Ikoyi +6486,Land Measured 4050 Square Metres,King's Way Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6487,Luxurious 3 Bedroom Condo Flat For Sale,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +6488,645sqm Land, Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6489,"3,500 Sqm Bareland",... Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6490,"3,520 Sqm Bareland", Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6491,"Location: Banana Island Size : 19,400sqm Waterfront | Block K & L Price: 6.5bn Title: Federal C Of O",Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets,Banana Island +6492,3 Bedroom Medici With Bq Milverton Ikoyi,Bourdillon Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +6493,5 Bedroom Fully Detached Duplex With 2 Bq Ikoyi,Ikoyi Lagos,₦,"585,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Ikoyi +6494,Banana Island 5 Bedroom With Bq Pool And Gym,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +6495,Water Front Land 9 Joint Venture), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Banana Island +6496,Banana Island 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +6497,5 Bedroom Detached Duplex With 2 Bq Banana Island,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,7 Toilets,Banana Island +6498,Guiliano By Sujimoto 1 Unit Left Amazing Deal,Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,1 beds,1 baths,1 Toilets,Banana Island +6499,4 Bedroom Terrace With Pool Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6500,"5 Bedroom Semi Detached Duplex With Bq , Fitted Kitchen And Rooms",Adeyemi Lawson Road Macpherson Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +6501,Irresistible Four Bedroom Terrace Duplex At Ikoyi, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6502,"1,426 Sqm Land",... Old Ikoyi Ikoyi Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6503,Newly Built 5 Bedroom Detatched Duplex With B Q And Swimming Pool And Cinema,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +6504,1500 Square Meter Of Land For Sale Mekunwe Old Ikoyi,Mekunwe Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +6505,1400 Square Meters Land For Sale At Gerrard Old Ikoyi Lagos,Gerrard Old Ikoyi Ikoyi Lagos,₦,"520,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +6506,1500 Square Meters Of Land For Sale At Lugard Old Ikoyi,Lugard Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets,Old Ikoyi +6507,Newly Built 5 Bedroom Duplex With Swimming Pool And Cinema, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,1,5 beds,5 baths,5 Toilets,Onikoyi +6508,Newly Built 4 Bed Room Terrace With A Study Apartment, Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets,Old Ikoyi +6509,3 Bedroom Flat With One Room Bq,Off Banana Island Road Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +6510,"2,000sqm Land",... Parkview Estate Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6511,"1,000sqm Land For Sale",... Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6512,Brand New 6 Bedroom Detached House With 2 Room Bq, Banana Island Ikoyi Lagos,₦,"970,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +6513,Land,"Acacia Drive, Osborne 2 Ikoyi Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6514,Land,"Mahogany Way, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6515,Lovely And Spacious 3 Bedroom Apartment,... Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +6516,Fully Automated 4 Bedrooms Fully Detached House, Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6517,Land,"Thompson Road, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6518,"1,008sqm Land For Sale", Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6519,6 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"1,750,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +6520,Super Luxury Six Units Of Absolutely Super Luxury Detached Houses,Queens Drive Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +6521,1000 Sqm Dry Land,Zone J60 Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6522,Fenced Land,Kingsway Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6523,5 Bedroom Fully Detached Contemporary Family Villa ( Off Plan), Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6524,Waterfront 7 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +6525,Dry Land,Zone J49 Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6526,Land,"Alexandra Road, Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6527,5 Bedroom Detached House In Old Ikoyi,... Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +6528,"1,566 Sqm Land","Cameron Road, Ikoyi Lagos",₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6529,500 Sqm Land,Cooper Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6530,Land,"Cooper Road, Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6531,900sqm Land,"Acacia Drive, Osborne 2, Ikoyi Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6532,1980 Sqm Land,Zone P1 Banana Island Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6533,Land, Banana Island Ikoyi Lagos,₦,"1,155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6534,Fully Automated Brand New 5 Bedroom Detached House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6535,"Sweet Corner Piece 1,300sqm Dry Land",Zone D Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6536,5 Bedroom Detached Duplex Plus 1 Bedroom Flat Guest Chalet, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6537,Luxury 4 Bedroom Terrace Duplex With An Extra Guest Room,Off Alexander Drive Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6538,Land,"Elma Street, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6539,5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6540,510sqm Land,"Olagunsoye Oyinlola Street,2nd Avenue Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6541,Luxury 5 Bedroom Fully Detached Duplex With Bq, Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +6542,Fenced Land,Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6543,Land,"Alexandra Road, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6544,2000 Sqm Dry Land,Zone J60 Banana Island Ikoyi Lagos,₦,"920,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6545,611 Sqm Of Bareland,Mekuwen Road Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6546,Luxuriously Finished 3 Bedroom Apartment With Bq,... Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6547,Land,"Zone J1, Banana Island Ikoyi Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6548,566 Sqm Land,"Cameron Road, Ikoyi Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6549,Super Luxury 5 Bedroom Detached House + Swimming Pool, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6550,1300 Sqm Land,Cooper Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6551,Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6552,4 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +6553,Waterfront Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6554,Waterfront Land,"Mahogany Way, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6555,Tastefully Finished 5 Bedrooms Semi Detached House, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Parkview +6556,Luxury 5 Bedrooms Fully Detached Duplex With 3 Living Rooms + Bq, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6557,Bare Land,"Glover Road, Ikoyi Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6558,Land,"Glover Road, Ikoyi Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6559,Fully Detached 5 Bedroom House,"Mojisola Onikoyi,off Banana Island Road Banana Island Ikoyi Lagos",₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6560,1000 Sqm Bare Land,Zone J51 Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6561,Land,Kingsway Road Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6562,5 Bedroom En Suit Duplex ( Off Plan), Banana Island Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6563,Six Bedroom Penthouse Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +6564,Land,Oba Adeyinka Oyekan Rd (2nd Avenue) Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6565,450 Sqm Land,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6566,4 Bedroom Detached Duplex With 2 Bedroom Staff Quaters, Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +6567,Land,"Off Banana Island, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6568,Tastefully Built 2 Bedroom Apartment, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets,Onikoyi +6569,5 Bedroom Fully Detached Duplex,"Onikoyi Estate, Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +6570,Land, Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6571,Bare Land,"Gerard Road, Ikoyi Lagos",₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6572,Land, Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6573,Fenced 623 Sqm Land,Zone P53 Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6574,Brand New 4 Bedroom Terrace Duplex With Bq,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +6575,3 Bedroom Luxury Apartments Ikoyi (pre Construction Sale), Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +6576,"Fenced And Gated Bare Land Of 2,340 Sqm",Iru Close Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"820,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6577,Tastefully Finished 5 Bedrooms Semi Detached House Plus A Room Servant Quarters, Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +6578,Brand New 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +6579,1000sqm Residential Plot,Zone J Plot 60 Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Banana Island +6580,6 Bedroom Detached House,... Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +6581,5 Units Of 4 Bedroom Terrace Houses (off Plan), Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +6582,Land,"Zone P1, Banana Island Ikoyi Lagos",₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6583,Luxury 2 Bedroom Apartment,Off Alexander Drive Ikoyi S.w Ikoyi Lagos,₦,"100,000,000",1,0,1,2 beds,0 baths,0 Toilets,Other Ikoyi +6584,Waterfront Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6585,Clean And Lovely 4bedroom Terrace Off Bourdillon Ikoyi For Sale,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6586,Newly Built Executive 2 Bedroom Flat At Banana Island Ikoyi N95m,Banana Island Banana Island Ikoyi Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets,Banana Island +6587,*for Joint Venture: 3077.907sqm,Joint Venture Ikoyi Gerrard Road 08063022968 08080842955 Gerard Road Ikoyi Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6588,1000 Sqm At Banana Island Ikoyi Lagos,Zone A18 Banana Island Ikoyi Lagos,₦,"525,000,000",0,0,0, beds, baths, Toilets,Banana Island +6589,Exquisitely Finished 4 Bedroom Terrace Duplex With 1 Room Bq,Right Hand Side Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6590,A Prime Plot Of Land Measuring 6302 Sqm,Second Avenue; Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6591,Luxury 3 Bedroom Apartment For Sale In Ikoyi,Gerard Rpad Gerard Road Ikoyi Lagos,$,"1,600,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6592,Land Measuring 3200sqm,Eleko Close Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6593,3 Bedroom Terrace Duplex With One Room Boy's Quarters For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Foreshore +6594,Newly Built 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6595,3 Bedroom Apartment For Sale,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +6596,Newly 4 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6597,Newly Built 5 Bedroom Semi Detached For Sale,Banana Island Ikoyi Lagos,₦,"420,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +6598,5 Bedroom Colonial House For Sale,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6599,Newly Built 5 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6600,Newly Built 4 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6601,Newly Built 4 Bedroom Terrace Duplex For Sale,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +6602,Newly Built 4 Bedroom Terrace Duplex With A Study For Sale,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6603,3 Bedroom Terrace Duplex For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +6604,Newly Built 5 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6605,Newly Built 5 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6606,Newly Built 3 Bedroom Apartments For Sale,Banana Island Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +6607,Executively Built 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6608,Newly Built 4 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +6609,Massive 5 Bedroom Detached Duplex With Excellent Facilities, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6610,"4 Bedroom Luxury Flats With A Room Bq For Sale At Parkview Estate, Ikoyi Lagos.",Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +6611,Ocean View 8bedroom Mansion,Dabiri Street Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,8 beds,10 baths,10 Toilets,Parkview +6612,Newly Built Luxurious 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6613,Beautiful Five Bedroom Semi Detached Duplex At Ikoyi,Olamijiyin Avenue Off Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6614,Fully Furnished 4 Bedroom Serviced Apartment,Milverton Road Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6615,Fully Furnished 3 Bedroom Flat At Ikoyi,Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +6616,"Oceanview Serviced Three 3 Bedroom Luxury Flat At Banana Island, Ikoyi, Lagos","Banana Island, Ikoyi, Lagos Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +6617,Well Finished And Crafted 2 Bedroom Terrace Duplex Plus Bq,Off Alexander Road Gerard Road Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,2 Toilets,Other Ikoyi +6618,5 Bedroom Fully Detached House With A Bq,Olusegun Aina Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +6619,Well Finished And Crafted 4 Bedroom Terrace Duplex Plus Bq,Off Alexander Road Gerard Road Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Ikoyi +6620,One Block Of 15 Floors,Kingsway Temple Old Ikoyi Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6621,"Three 3 Bedroom Block Of Flat At Justice Court, Maroko Close,off Queens Drive, Ikoyi, Lagos","Justice Court, Off Queens Drive, Ikoyi, Lagos Ikoyi Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +6622,Waterfront Land, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6623,1000 Sqm Bare Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6624,Land,"Cameron Avenue, Ikoyi Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6625,4 Bedroom Terrace Duplex, Parkview Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6626,Luxury 4 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6627,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6628,6300sqm Fenced Land, 2nd Avenue Extension Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6629,5 Bedroom Tastefully Finished Detached Duplex,2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6630,Luxury 5 Bedroom House With Private Pool,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +6631,Land,Zone G Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6632,"For Sale, Brand New 5bedroom Detached House Plus 2room Be In A Mini Estate With Swimming Pool",Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,7 beds, baths, Toilets,Parkview +6633,5 Bedroom Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6634,8800sqm Land, Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6635,7 Bedroom Mansion On 2000sqm Land, Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +6636,Luxury 5 Bedroom Detached Duplex,Gbenga Ashafa Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6637,Tastefully Finished Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6638,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Parkview Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6639,5 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6640,6 Bedroom Exquisitely Finished Detached House, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +6641,4 Bedroom Flat,Off Awolowo Road Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6642,Land,"Kingsway Road, Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6643,For Sale: Brand New 5bedroom Detached House Plus 2rm Be In A Mini Estate,Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0, beds, baths, Toilets,Parkview +6644,Brand New And Exquisite 3 Bedroom Flat,Off Banana Island Road Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6645,Tastefully Finished 5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +6646,Luxury 4 Bedroom Flat With 2 Room Bq,. Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6647,Tastefully 5 Bedroom Fully Detached With Bq And Excellent Facilities,Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6648,Tastefully Finished 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +6649,15000 Square Meters Land, Ikoyi S.w Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6650,"Land Measuring 19,400 Sqm",Zones K & L Water Front Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6651,3 Bedroom Terrace Plus Bq In Banana Island,Banana Banana Island Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +6652,Waterfront Land, Banana Island Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6653,1800sqmt With Extensions To 400sqm Fenced Plot,Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Foreshore +6654,Fenced And Dry Plot Of Land, Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6655,5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6656,7400 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6657,Brand New 5 Bedroom Detached House With 1 Room Bq,"Onikoyi, Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +6658,Brand New And Massive 5 Bedroom Semi Detached House With Bq, Banana Island Ikoyi Lagos,₦,"25,000,000",0,0,1,5 beds,0 baths,0 Toilets,Banana Island +6659,24 Units Of 4 Bedroom Luxury Apartments+6 Penthouses Each With Inbuilt Bq Self Contain,... Banana Island Ikoyi Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6660,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"530,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6661,Land, Banana Island Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6662,5 Bedroom Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6663,Luxury 5 Bedroom Semi Detached Duplex With 2 Room Bq,. Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6664,Ornamentally Built 8 Bedroom Fully Detached Edifice, Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,8 beds,0 baths,0 Toilets,Banana Island +6665,6800 Sqm Land, Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6666,Well Finished 2 Bedroom En Suite Flat,Second Avenue Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,2 beds,2 baths,2 Toilets,Old Ikoyi +6667,Fully Serviced 4 Bedroom Semi Detached House,Off Second Avenue Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6668,Luxurious 4 Bedrooms Terraced Duplex,"Milverton Road, Off Alexander Avenue Ikoyi Lagos",₦,"260,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Ikoyi +6669,New Jv With Demolished Building On It,On Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6670,Beautiful And Luxury 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +6671,Massive And Well Built 6 Bedroom Mansion With Penthouse 4 Rooms Boys Quater,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +6672,2 Units Of 5 Bedroom Semi Detached Luxury House,Abayomi Fatusin Street Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +6673,Land,Olori Mojisola Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6674,2500sqm Waterfront Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,8 Toilets,Foreshore +6675,Luxury 3 Bedroom Pent Flat For Sale At Osborne Phase 1,Osborne Phase 1 Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +6676,Luxury 3 Bedroom Duplex,Off Bourdilion Bourdillon Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +6677,Luxury 3 Bedroom Pent Flat For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths, Toilets,Parkview +6678,This Is A Luxury 5 Bedroom Fully Detached Duplex With Servant Quaters Located In Ikoyi. Superb. Price...650m Negotiable.,In A Very Good Area Of Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +6679,2200sqm,Bourdillon Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6680,4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6681,4 Bedroom Terrace, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6682,4 Bedroom Terrace Duplex, Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6683,4 Bedroom Duplex, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6684,"Land Measuring 5,542sqm",Webb Road (olawale Dawodu) Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6685,Luxury 3 Bedroom Flat For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths, Toilets,Banana Island +6686,1000sqm Land,Ruxton Road Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6687,Land,Zone M Banana Island Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6688,4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6689,Land Measuring 5500sqm,"Wale Daodu Street, Former Webb Road, Off Kingsway Road, Close To Ikoyi Registry Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6690,4 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6691,4 Bedroom Terrace, Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6692,4 Bedroom Duplex For Sale In Ikoyi, Bourdillon Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6693,Luxury Brand New 3 Bedroom Flat,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +6694,Flat Apartment, Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,5 baths,5 Toilets,Banana Island +6695,Luxury Brand New 2 Bedroom Flat,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Ikoyi +6696,2000sqm At Ilabere Avenue,Ilabere Avenue Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6697,Brand New 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +6698,1500sqm In Osborne Phase 2,"Acacia Drive, Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6699,Land Measuring 1500sqm,Cameron Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6700,3 Bedroom Flat,Banana Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6701,Luxury 3 Bedroom Pent Flat,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +6702,Tastefully Finished 6 Bedroom Detached Duplex For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Banana Island +6703,Exquisite 4 Bedroom Semi Detached Duplex For Sale At Banana Island Foreshore,Banana Island Foreshore Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Banana Island +6704,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Bourdillon Bourdillon Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6705,6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +6706,7 Bedroom Exclusively Finished And Furnished Fully Detached Houses With Bq,Waterfront Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,1,7 beds,7 baths,8 Toilets,Banana Island +6707,2500sqm Prime Plot,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6708,Luxury Brand New 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +6709,1000sqm Land,Off Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6710,Partitioned Land Measuring 1500sqm,Ikoya Close Ikoyi Lagos,₦,"510,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6711,1450sqm Residential Land, Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6712,3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6713,3 Bedroom Flats, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6714,Tastefully Finished 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,3 beds,3 baths, Toilets,Old Ikoyi +6715,4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6716,2500m2 Of Land,"Plot 8a, Block 6 Osborne Foreshore Estate Ikoyi Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6717,"Land Measuring 1,861sqm","Zone L, Residential Zone Banana Island Ikoyi Lagos",₦,"745,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6718,Land Measuring 2496sqm,"Osborne Phase 2, Block 9 Plot 22 Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6719,An Executive Mansion,Ikoyi Parkview Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6720,1482sqm Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6721,Luxury 5 Bedroom Terrace, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +6722,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6723,Land Measuring 1000sqm (cornerpiece),Mojisola Onikoyi Ikoyi Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6724,Brand New 6 Bedroom Detached House With A Room Boys Quarter At Banana Island,Ogun Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,5 baths,6 Toilets,Banana Island +6725,Exquisitely Built Spacious 5 Bedroom Terrace Duplex (rose Of Sharon),Falomo Close Off Queensdrive Macpherson Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6726,Tastefully Finished 6 Bedroom Sitting On 950 Sqm,Banana Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +6727,Land,321close Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6728,4000 Sqm Land Located On Glover Road Ikoyi,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Onikoyi +6729,Land For Sale,Iru Close Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6730,Land For Sale,Reeves Road Ikoyi Gerard Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6731,3 Bedroom Flat,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"199,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +6732,Land,Aromire Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6733,Land,Alexander Avenue Ikoyi Lagos,₦,"1,350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6734,3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6735,A 3 Bedroom Flat In A High Rise Building,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +6736,Land,Rumens Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6737,Land Measuring 2950 Sqm,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6738,Land Measuring 2647sqm,Cooper Road Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6739,Land,J Zone Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6740,Land,Club Road Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6741,Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6742,5 Bedroom Duplex,Ogun Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6743,Newly Built Luxurious And Contemporary Fully Detached Duplex In Old Ikoyi,An Old Ikoyi Street Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds, baths,6 Toilets,Old Ikoyi +6744,Empty Land Of 4534 Sqmt, Gerard Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,0 baths,3 Toilets,Other Ikoyi +6745,Land For Sale,Reeves Road Gerard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6746,Land Measures 2500 Square Metres,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6747,Land,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6748,2200 Square Metres,Bourdillon Way Ikoyi Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6749,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6750,Land For Sale,J44 Zone B Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6751,835 Square Metres,Off Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6752,Land,George Street Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6753,Land For Sale,Temple Road Gerard Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6754,"2,000sqm Of Land",Banana Isand Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6755,Land Measuring 2300sqm,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"851,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6756,A 3 Bedroom Flat,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +6757,"A 1,700sqm Of Land",Turnbull Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6758,1400sqm Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"574,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6759,Land For Sale,Lugard Avenue Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6760,5 Bedroom House,327close Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +6761,"For Sale :banana Island Ikoyi Land Bare Land/ Corner Piece Land Measuring 1,297 Square Metres In Residential",Residential Plot Zone D3 Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0, beds, baths, Toilets,Banana Island +6762,Land,Bourdillon Road Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6763,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6764,Land,Ojora Road Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6765,6 Units Of 4 Bedroom Flats,Ikoyi Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6766,Newly Built Terrace House,"Ruxton Street, Ikoyi Lagos Bourdillon Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +6767,Land Measuring 611 Square Metres,Mekuwen Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6768,Land For Sale,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6769,"For Sale: Banana Island Bare Land At Zone P. Plot P53 , Size: 623.659square Metres .title: Lagos State Governors Consent",Residential Zone Plot P53 B1 Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,0, beds, baths, Toilets,Banana Island +6770,Land Measuring 2700,Glover Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6771,Land,Waterfront Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6772,Land Measures 2191 Square Metres Waterfront,Off Third Avenue Banana Island Ikoyi Lagos,₦,"1,007,860,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6773,Luxurious 4 Bedroom And 2 Bedroom Terraces At Alexander Ikoyi,Alexander Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikoyi +6774,Land For Sale,Oroke Drive Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6775,Semi Detached Duplex Ensuite,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,1,4 beds,4 baths,5 Toilets,Parkview +6776,Land Measures 500 Square Metres,Banana Island Banana Island Ikoyi Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6777,One Acre Of Land At James George Estate Ikoyi Lagos,James George Estate Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6778,Land 1500 Square Metres,Ruxton Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6779,Certificate Of Occupancy,Bourdillon Street Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +6780,Land Measures 5000sqm Cooper Road,Copper Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6781,4 Bedroom Semi Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",1,1,1,5 beds,5 baths,5 Toilets,Parkview +6782,Land For Sale,Iru Close Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6783,4 Bedroom Semi Detached Duplex,Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +6784,6 Nos Of 3 Bedroom Flat,Water Front Residential Zone Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6785,Land Measures 2300 Square Metres,Gerrard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6786,Land,Alexander Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6787,This Land Has A A Federal Certificate Of Occupancy,D3 Residential Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets,Banana Island +6788,Land,Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6789,A High Rise Building,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6790,Land,Luggard Road Ikoyi Lagos,₦,"830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6791,5 Bedroom Semi Detached Duplex,J Zone Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +6792,Land Measures 4500 Square Metres,Gerrard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6793,Luxurious 6 Bedroom Detached Duplex,Nicon Town Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets,Old Ikoyi +6794,New 4 Bedroom Townhouse,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,1 Toilets,Parkview +6795,One Acre Of Land,Alagbon Beside Ebony's House 2nd Avenue Extension Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6796,"3 Bedroom Luxury Serviced Apartment For Sale (on Milverton Road, Ikoyi, Lagos)",21 Milverton Road Ikoyi Lagos,₦,"199,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +6797,3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6798,Land,Macpherson Avenue Macpherson Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6799,Land Measuring 2700 Sqm,Glover Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6800,Luxury 4 Bedroom Duplex,Living Gold Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets,Banana Island +6801,Land,Reeves Road Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6802,Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6803,Land For Sale,Reeves Road Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6804,Executive Brand New 5 Bedroom Duplex For Sales At Ikoyi.,... Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +6805,Land Measures 7500,Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6806,Land Measures 3500sqm,Aromire Street Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6807,Land,Glover Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6808,"A 19,000sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6809,A Standard Semi Detached 4 Bedroom Duplex For Sale At Parkview Ikoyi,Parkview Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +6810,Land Measuring 2476,Club Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6811,Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6812,6 Bedroom Duplex At Ikoyi,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"850,000,000",1,1,0,6 beds,6 baths,7 Toilets,Parkview +6813,Land Measure 4000,Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6814,"For Sale: Bare Land In Residential Plot Zone B Banana Island Ikoyi. Land Size: 2000.01square Metres ,title Is A Lagos State Governors Consent",Residential Plot Zone B Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0, beds, baths, Toilets,Banana Island +6815,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6816,1525 Square Metres,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6817,Land For Sale,Temple Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6818,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6819,A Plot Of Land,Udi Street Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6820,For Sale Five Bedroom Fully Detached Duplex In Old Ikoyi Lagos,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6821,4bedroom Luxury Duplex, Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6822,Land Measures 7000 Square Metres,Mosley Road Ikoyi Mosley Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6823,Land,Barrow Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6824,Land,James George Street Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6825,Land,Ruxton Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6826,Corner Piece Land,Kingsway Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6827,8 Bedroom Detached House,. Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,8 beds,8 baths,8 Toilets,Banana Island +6828,5800 Land,Off King's Way Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6829,"A 1,250sqm Of Land",Temple Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6830,Land For Sale,Temple Road Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6831,"A 2,250sqm Of Land",Temple Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6832,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6833,Land,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6834,"For Sale : Dolphin Estate Ikoyi , A Superb Detached Wing Of Four Bedroom Duplex House With Two Bedrooms Boys Quarter House",Apapa Road Dolphin Estate Dolphin Estate Ikoyi Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6835,One Acre Of Land At Jemes George Ikoyi,James George Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6836,Land Measures 1000 Square Metres,Bourdillon Way Ikoyi Bourdillon Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6837,4 Bedroom Semi Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,5 Toilets,Parkview +6838,Land,J Zone Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6839,Demolishable 14 Rooms On 650 Square Metres Of Land,"S/w Old Ikoyi, Moshalashi Street Old Ikoyi Ikoyi Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6840,Land,Temple Road Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6841,Land,Ruxton Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6842,7 Bedroom House,327close Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +6843,Plot Of Land With 14 Rooms,Moshalashi Ikoyi S.w Ikoyi Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6844,5 Bedroom Detached Duplex,B Close Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +6845,Land,Temple Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6846,5 Bedroom Duplex + Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +6847,Land For Sale,J44 Zone B Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6848,Land Of 3000 Sqm,Mcpherson Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6849,Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6850,24 Units Of 4 Bedroom Luxury Flat,Banana Island Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6851,Corner Piece Land,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6852,5100sqm Of Land In Ikoyi For Sale,Old Ikoyi Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6853,Jv Banana Island Old Ikoyi,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Banana Island +6854,Land,Banana Island Way Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6855,1600sqm Land,Copper Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6856,653.991sqm Of Land At Banana Island,"Banana Island, Borno Street Ikoyi Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6857,3 Bedroom Flat,Temple Road Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +6858,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6859,5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6860,Luxury 3 Bedroom Flat With Excellent Facilities,Banana Island Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6861,Executive 4 Bedroom Duplex,Osborne Foreshore Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +6862,5 Bedroom Terraced Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6863,3 Bedroom Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +6864,3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +6865,5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6866,6 Unit 3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +6867,Luxury 4 Bedroom Town House Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6868,Luxury 3 Bedroom Meisonnette Pent House,Old Ikoyi Ikoyi Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +6869,Brand New 5 Bedroom Semi Detached House With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6870,Luxury 3 Bedroom Flat With Excellent Facilities,Ikoyi Parkview Estate Ikoyi Lagos,₦,"14,500,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +6871,Tastefully Finished 5 Bedroom Detached Duplex,Gbenga Ashafa Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +6872,Tastefully Finished Luxury 5 Bedroom Detached Duplex With Excellent Facilities, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6873,Exquisite 4 Bedroom Duplex,Dolphin Estate Dolphin Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +6874,Tastefully Finished 5 Bedroom Waterfront Detached House With 1 Room Boy's Quarter In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6875,4 Bedroom Terrace Duplex In Ikoyi,Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6876,"5 Bedroom Detached House On 950sqm In Banana Island, Ikoyi",Banana Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6877,"Tastefully Finished 5 Bedroom Sea View Semi Detached House In Banana Island Estate, Ikoyi",Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +6878,"A Uniquely Built, Exquisite, And Massive Seven (7) Bedroom Detached House",Ikoyi Ocean View Estate Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,10 Toilets,Parkview +6879,"1,730sqm Bare Land For Sale At Hot Ikoyi Axis Lagos!",Alexandra Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6880,Brand New High Quality Luxuriously Finished Five Star Master Piece Three(3) Bed Waterfront Apartment With Jetty,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +6881,Waterfront 1500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6882,2500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"620,000,000",0,0,0, beds, baths, Toilets,Foreshore +6883,5200m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Foreshore +6884,1500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Foreshore +6885,898m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Foreshore +6886,1350m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +6887,Mixed Development Land For Sale At Banana Island Zone Q 1800sqm,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Banana Island +6888,Land, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6889,Land (jv),Lawrence Road Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6890,Exquisite 5 Bedroom House With Bq + Swimming Pool,Banana Island Estate / Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6891,Luxury 4 Bedroom Terrace,"Milverton Road, Banana Island, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6892,Exquisite 5 Bedroom House With Swimming Pool + Cinema House,Banana Island / Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +6893,Newly Built Five Bedroom Semi Detached Duplex For Sale,Residential Waterside Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6894,For Sale Osborne Phase Two: 1344 Sq Mt Land At Block 1 Plot 8.,Osborne Phase 2 Extension Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Foreshore +6895,Very Lovely 4 Bedroom Terrace Duplex,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +6896,2 Bedroom Apartment,"102 Close, Banana Island Ikoyi Lagos",₦,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +6897,Land,Mike Adenuga Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6898,1550sqm Waterfront Plot,"Olori Mojisola Shoreline Estate Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +6899,Land,Osborne Forshore Phase 2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6900,5 Bedroom Luxury Detached Duplex | Off Plan, Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6901,Land,"Nativity Close , Parkview Estate Ikoyi Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6902,5 Bedroom Detached Duplex On 950 Sqmter,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6903,6 Bedroom House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +6904,1405 Square Metres Prime Development Land,"Turnbull Road, Old Ikoyi, Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6905,2 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +6906,Land,Osborne Foreshore 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6907,Luxurious 4 Bedroom Terrace House,Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Foreshore +6908,4 Bedroom Terrace,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +6909,3 Bedroom Apartment,Mojisola Onikoyi; Off Banana Island Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +6910,4 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +6911,4bedroom Semi Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6912,3 Bedroom Apartments With 2 Maid's Room And 5 Bedroom Maisonette With 2 Maid's Room And A Roof Terrace,"Plot 22, Bourdillon Road, Ikoyi, Lagos Bourdillon Ikoyi Lagos",₦,"260,000,000",1,1,0,3 beds,5 baths,5 Toilets,Other Ikoyi +6913,For Sale In Ikoyi 3 Bedroom Apartment,Mosley Road Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6914,4000 Sqmt Land, Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6915,Magnificent 6 Bedroom Mansion, Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6916,Newly Built Luxury And Exquisitely Finish Property,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths, Toilets,Other Ikoyi +6917,3 Bedroom Luxury Apartments With 2 Maids' Room & 5 Bedroom Maisonette With 2 Maids' Room,"39, Bourdillon Road, Ikoyi, Lagos Bourdillon Ikoyi Lagos",₦,"350,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Ikoyi +6918,Fully Furnished Lovely 20 Units Of Semi Detached Duplexes For Sale At Oni Koyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,5 baths,5 Toilets,Onikoyi +6919,Luxury Brand New 2 Bedroom Apartment For Sale At Most Prestigious Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths,3 Toilets,Banana Island +6920,Captivating 5 Bedroom Fully Detached Duplex With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets,Banana Island +6921,Perfectly Finished 5 Bedroom Detached Duplex With State Of The Art Finishing For Sale At Ikoyi.,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets,Banana Island +6922,Brand New 5 Bedroom Terrace Duplex Available For Sale At Ikoyi,Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Ikoyi +6923,"Waterfront Land Measuring 1, 500 Sqm For Sale At Mahogany Way Osborne Phase 2 Ikoyi Lagos",Mahogany Way Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Foreshore +6924,500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos,Waterview Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6925,"3, 500 Sqm Of Bareland On Alexander Ikoyi Lagos",Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6926,"2, 500 Sqm Of Land For Sale Kuramo Ikoyi Lagos",Kuramo Close Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6927,"2,000 Sqm Dry Land For Sale At Ikoyi Lagos",Off Kingway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6928,"Land Measuring 1,350 Sqm For Sale At Mahogany Way Osborne Phase 2 Ikoyi Lagos",Mahogany Way Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Foreshore +6929,611 Sqm Of Bareland Land For Sale Off Queen Drive Ikoyi Lagos,Off Queen Drive Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6930,"1,000 Sqm Of Land With 5 Detached Bedroom House At Bourdlon Ikoyi Lagos",Bourdilon Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Other Ikoyi +6931,"4,500 Sqm Of Land For Sale At Banana Island Ikoyi Lagos", Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6932,"1, 470 Sqm Of Land For Sale At Osborne Foreshore Phase 2",Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Foreshore +6933,"2,000 Sqm Of Land For Sale Off Kingway Road Lkoyi Lagos",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6934,"2,100 Sqm O2,100 Sqm Of Land For Sale At Glover Road Ikoyi Lagos Close To",Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6935,"4,500 Sqm Of Land For Sale At Banana Island Ikoyi Lagos",Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6936,"Land Measuring 4, 325 Sqm For Sale At Kingways Road Ikoyi Lagos",Kingway Road Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6937,"1,392 Sqm Of Land For Sale Ruxton Ikoyi Lagos",Luggard Avenue/moboliji Off Kingsway Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6938,"4,600 Sqm Of Land For Sale Off Glover Road Ikoyi Lagos","Glover Road, Old Ikoyi Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6939,850 Sqm Of Land For Sale At Shoreline Estate Off Banana Island Lagos,Shoreline Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6940,"4,700 Sqm Of Land Waterfront At Osborne Foreshore 1 Ikoyi Lagos",Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +6941,"Apartment With 12 Number Of 3 Bedroom Flats On Space Of 1, 394 Sqm At Parkview Ikoyi Lagos",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,3 beds,3 baths,3 Toilets,Parkview +6942,"1,200 Sqm Of Land For Sale At Obalende Close To Passport Office Ikoyi Lagos",Passport Offfice Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6943,"Land Measuring 1, 500 Sqm For Sale At Acacia Drive Osborne Phase 2 Ikoyi Lagos",Acacia Drive Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Foreshore +6944,500 Sqm Of Land,Copper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6945,600 Sqm Of Land For Sale At Luggard Avenue Off Kingway Road Ikoyi Lagos,Lugard Avenue/ Moboliji Off Kingway Road Lkoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6946,500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos, Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6947,"2, 000 Sqm Of Land Bareland For Sale At Glover Road Ikoyi Lagos",Glover Road Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6948,"3,100 Sqm Of Land At Glover Road Ikoyi Lagos",Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +6949,"3,500 Sqm Of Land For Sale At Kingway Road Ikoyi Lagos",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6950,"2, 500 Sqm Of Land",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +6951,500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos,Olori Mogishola Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +6952,Luxury 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,1, beds,5 baths,8 Toilets,Old Ikoyi +6953,3000 Square Meters Of Land,Bank Road Ikoyi S.w Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6954,"A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq, Banana Island, Ikoyi Lagos.?",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,4 beds,4 baths,5 Toilets,Banana Island +6955,1200 Square Meter Plot Of Land,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6956,"Luxurious, Fully Furnished 3 Bedroom Flat In Ikoyi",Ikoyi Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Ikoyi +6957,Luxury Serviced 4 Bedroom Flat With Bq,Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6958,Luxury & Exclusive 3 Bedroom Flat,Off Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6959,Luxury 3 Bedroom Apartment,Off Gerard Road Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6960,6units Of 2 Bedroom Flat With 2units Of 1 Bedroom Flat With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +6961,5 Bedroom Duplex On A Corner Piece,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +6962,4000 Square Meters Of Land,Glover Road Falomo Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6963,2623 Square Meters Of Land,Oba Adeyinka Oyekan 2nd Avenue Extension Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6964,Luxury Fully Furnished 3 Bedroom Flat For Sale,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +6965,For Sale: Tasteful 4 Bedroom Terrace Duplex With Two Living Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +6966,2000 Square Metres Of Land,Gerrad Road Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6967,Casa Beira Mar(banana Island),Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +6968,5 Bedrooms Terrace Duplex With Bq,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +6969,"Block Of Flat On 3000sqm Off Awolowo Road, Ikoyi",Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +6970,4 Bedrooms Fully Detached Duplex With Bq,Estate Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6971,4 Bedrooms Terrace + Bq,"Parkview, Parkview Estate Ikoyi Lagos",₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +6972,3 Bedroom Flat In Ikoyi,Macpherson Macpherson Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +6973,A 4bedroom Luxury Townhouse + Bq In Ikoyi,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +6974,Federal C Of O,"Ikoyi Oba, Ademola Oyekan Ikoyi Lagos",₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +6975,For Sale 3bedrooms Flat + Bq At Parkview Estate Ikoyi N90m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +6976,A Unit Of Unique Luxury 4bedroom Fully Serviced Apartment Measuring 528.334sqm,"Ikoyi Foreshore (close To Banana Island), Ikoyi. Banana Island Ikoyi Lagos",₦,"460,000,000",1,0,0,4 beds,0 baths,0 Toilets,Banana Island +6977,Uniquely Built 7 Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6978,"Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court Located Off Bourdillon Road, Ikoyi.","Off Bourdillon Road, Ikoyi. Bourdillon Ikoyi Lagos",₦,"230,000,000",1,0,1,5 beds, baths, Toilets,Other Ikoyi +6979,"Newly Built Luxury 5 Bedroom Semi Detached Duplex In A Well Planned Low Density, High Profile, Serene And Relaxing Residential Court Located Within Banana Island Estate, Ikoyi, Lagos.","Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds, baths, Toilets,Banana Island +6980,Four (3) Bedroom Apartments And A 6 Bedroom Penthouse With A Pool And Gym On 1600sqms,Banana Island Ikoyi Lagos,₦,"2,800,000,000",1,1,1,9 beds,9 baths,10 Toilets,Banana Island +6981,Land In Banana Island Ikoyi Lagos,M27 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6982,Luxury 3 Bedroom Flat Plus Bq,Banana Island Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +6983,Land In South West Ikoyi,"Off Awolowo Road, Sw Ikoyi Ikoyi S.w Ikoyi Lagos",₦,"230,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +6984,A Serviced Four Bedroom Fully Detached Duplex With A Boys Quarters For Sale In Ikoyi,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +6985,A Newly Built 5 Bedroom Semi Detached Duplex With A Fitted Kitchen And A Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +6986,A Newly Built 4 Bedroom Semi Detached Terrace Duplex With A Fitted Kitchen And A Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +6987,"Ikoyi Residential Plot Measuring 2,346sqm", Ikoyi Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6988,"Land Measuring 1,300 Square Meters", Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +6989,4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Parkview +6990,5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +6991,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +6992,Luxurious 4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +6993,"3,600sqm (6plots) Bare [email protected] Ikoyi & Joint Venture!",... Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +6994,Luxurty 4 Bedroom Duplex With 2 Rooms Service Quarters For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths, Toilets,Old Ikoyi +6995,600sqm Land For Sale In Osborne With C Of O,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Foreshore +6996,"Land Size: 2,370sqm Hot Jv In Parkview Ikoyi", Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +6997,"4 Units Of 4 Bedrooms Town House, Bourdillon",Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +6998,4 Bedroom Town House,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Ikoyi +6999,6302sqm Land Ikoyi, 2nd Avenue Extension Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7000,"2 Block Of 9 Floor Luxury Apartments On 5,299.745sqm Land",Olu Holloway Rd. Ikoyi Lagos,₦,"7,000,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7001,Brand New 4 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Onikoyi +7002,Luxury 3 Bedroom Apartment For Sale,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +7003,Luxury 5 Bedroom Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +7004,5 Bedroom Terraced Duplex For Sale In Ikoyi Kw 2004,Bourdilion Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths, Toilets,Old Ikoyi +7005,4 Bedroom Terraced Duplex,0 Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7006,5 Bedroom Detached Duplex,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7007,4 Bedroom Maisonette At Banana Island (kw1207),Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0, beds, baths, Toilets,Banana Island +7008,5 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7009,"Fenced And Gated 1,208 Sqm",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7010,Beautifully Finished 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7011,4 Units Of 4bedroom Waterfront Apartment (kw1196),Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Banana Island +7012,4 Bedroom Semi Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7013,4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7014,4 Bedroom Terraced House Sits On 2 Floors For Sale In Ikoyi Kw 1406,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths, Toilets,Other Ikoyi +7015,4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7016,3600sqm Land,"Cameron Road, Ikoyi Dolphin Estate Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7017,Renovated 5 Bedroom Semi Detached House With 2 Rooms Bq,Chris Alli Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7018,Luxurious 6 Bedroom Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +7019,6 Bedrooms Fully Detached Duplex In Park View Estate 320 Million,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,6 beds,7 baths,6 Toilets,Parkview +7020,Block Of 10 Luxury 3 Bedrooms Flats,"Ikoyi Southwest, Off Awolowo Road Ikoyi Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7021,"2,200 Sqm Water Front Land","Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7022,1488sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7023,"1,400 Sqm Land",Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7024,"Newly Finished Very Spacious 3 Bedroom Flat For Sale In Parkview Estate, Ikoyi",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +7025,Serviced 5 Bedroom Terrace Triplex With Bq,Iro Close Off Oyinkan Abayomi Drive Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7026,1500 Sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7027,3 Bedroom Block Of Flats,. Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7028,Spacious Well Built 4 Bedroom Terrace For Sale In Park View Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7029,Newly Built 4 Bedroom Flat For Sale In Parkeview Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Parkview +7030,"5,726 Sqm Land",Alfred Rewane Road Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7031,Residential Land,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7032,"Fully Fenced 1,476 Sqm Land",Along Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7033,"5,107 Sqm Land","Glover Road, Ikoyi Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7034,4 Bedroom Terraced Duplex,. Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7035,Land, Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7036,Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7037,Land, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7038,Old Detached House, Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7039,Land, Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7040,Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7041,Detached Duplex In Park View Estate,Park View Estate Ikoyi Lagos,₦,"950,000,000",1,1,1,7 beds,6 baths,6 Toilets,Other Ikoyi +7042,Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7043,"Land Measuring 500sqm For Sale, Located In Banana Island",Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Banana Island +7044,Luxury Brand New 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7045,Land For Sale In Parkview Estate,Prof. Jubril Aminu Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,1,0, beds, baths, Toilets,Parkview +7046,New And Luxury Finished 5 Bedroom Detached House At Parkview Estate Ikoyi,Layi Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7047,Luxurious 5 Bedroom Duplex With Bq For Sale,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,7 baths,7 Toilets,Banana Island +7048,Shop For Sale In A Nice Location,Ikoyi Falomo Ikoyi Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7049,"1500m² Bare Land, Estate Ikoyi",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Foreshore +7050,4 Bedroom Apartment,Glover Road Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7051,Luxury 4 Bedroom Flat,Glover Road Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7052,12 Plots Of Land,Banana Island Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7053,"Waterfront 2nos Of 7bedroom Detached Houses With Bq, Swimming Pool, Gym, Jetty And Other Facilities On 580sqm Each",Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,1, beds, baths, Toilets,Banana Island +7054,Penthouse With Indoor Swimming Pool,Around Tinubu Center Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets,Banana Island +7055,"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema",Ikoyi Lagos,₦,"480,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7056,A Tastefully Built 4 Bedroom Detached Duplex,"Gloval Road, Via Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",1,1,1,4 beds,6 baths,6 Toilets,Old Ikoyi +7057,Detached Duplex,Granary Mansion Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets,Banana Island +7058,A Tastefully Built 4 Bedroom Detached Duplex,"Gloval Road, Via Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",1,1,1,4 beds,6 baths,6 Toilets,Old Ikoyi +7059,5 Bedroom Semi Detached Duplex On 350sqm,Olori Mojisola Onikoyi Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +7060,Newly Built 4 Bedroom Terrace House,Living Gold Estate Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +7061,Tastefully Finished And Luxurious Wing Of 4 Bedrooms Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"530,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +7062,Newly Built 5 Bedrooms Luxury Terrace House At Old Ikoy,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7063,Brand New 4 Bedroom Luxury Service Flat With A Room Boys Quarters,Off Kingsway Road; Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7064,Fully Detached 6 Bedroom House,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +7065,Tastefully Finished 3 Bedrooms Luxury Flat At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7066,Land,"Osborne Foreshore Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7067,Brand New 4 Bedroom Luxury Finished Terrace House, Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7068,Luxury 3 & 2 Bedroom Serviced Flat At Ikoyi,Ikoyi Ikoyi Lagos,₦,"12,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +7069,5 Bedroom Fully Detached Duplex With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7070,3bedroom Water Front And 2bedroom Luxury Service Flat,Banana Island Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7071,Fully Detached 6 Bedroom House For Sale In Banana Island,Banana Island Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7072,Newly Built 5 Bedrooms Semi Detached House At Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7073,Tastefully Finished 3 Bedroom Flat,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7074,Newly Built 4 Bedrooms Town House,"Off Alexander Road, Ikoyi Ikoyi S.w Ikoyi Lagos",₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7075,Brand New 5bedroom Tastefully Finished Luxury Terrace With A Pent House And Maid Room At Ikoyi For Sale,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7076,Newly Built 5 Bedrooms Luxury Terrace With A Pent House,"Off Bourdillon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7077,Property For Sale Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +7078,Property For Sale Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +7079,Property For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +7080,Guest House In Osborne For Sale,Osborne Osborne Foreshore Estate Ikoyi Lagos,$,"10,000,000",0,0,1,10 beds,10 baths,10 Toilets,Foreshore +7081,Massive 5 Bedroom Fully Detached Duplex,Off Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,1,5 beds,5 baths,6 Toilets,Old Ikoyi +7082,Massive 8 Units Of 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +7083,5 Bedroom Bedroom Fully Detached House,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +7084,Luxury 5 Units Of 4 Bedroom Terrace Duplex,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7085,30rooms Fully Furnished Hotel,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7086,Luxury Finished 5 Bedroom Detached House With Cinema Room,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Onikoyi +7087,Luxury 3 Bedroom Apartment With 2 Sitting Rooms And Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +7088,Luxury And Modern 5 Bedroom Semi Detached House,Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7089,"Luxury 3 Bedroom Flat @ Banana Island, Ikoyi,",Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets,Banana Island +7090,"Waterfront Plot Measuring 1,540 Square Meters In Shoreline Estate",Shoreline Estate Ikoyi Lagos,₦,"645,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7091,Joint Venture Proposition For A Serious Developer,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7092,"Newly Built And Luxury 4 Bedroom Terrace With Green Area, Pool And Gym",Ikoyi Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7093,Hot Lands,Off Gerald Road Bourdillon Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7094,"Luxury 5 Bedroom Fully Detached House With 2 Rooms Bq, Swimming Pool And Cinema",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,7 Toilets,Onikoyi +7095,Residential Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7096,Luxury 9 Units Of 3 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Banana Island +7097,Brand New And Spacious 5 Bedroom Duplex,Ikoyi Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7098,Five (5) Bedroom Terraced Duplex With Private Lift,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,6 baths,5 Toilets,Old Ikoyi +7099,15 Floors Newly Built Office Complex,Alfred Rewane Rd Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7100,Land Measuring 1300sqm,Mobasoji Johnson Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7101,Luxury And Newly Built 4 Bedroom Terrace With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7102,"4 No's Of 5bedroom Terrace Duplex With A Bq, Swimming Pool, Gym And A Garden Etc",Located Inside Osborne Phase 1* Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Foreshore +7103,4 Bedroom Duplex,Off Osborne Estate Road Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +7104,Luxury Mini Flat, Banana Island Ikoyi Lagos,₦,"50,000,000",1,1,1,1 beds,1 baths,2 Toilets,Banana Island +7105,4 Bedroom Terrace Duplex,Ocean Parade Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +7106,Luxury 5 Bedroom Penthouse With Maid Room And Open Terrace,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets,Onikoyi +7107,Half Plot Of Land,. Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7108,Massive 4bedroom Furnished Terrace Duplex,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7109,8 Bedroom Detached House,Off Kwara Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0,8 beds,8 baths,8 Toilets,Other Ikoyi +7110,5 Bedroom Terrace Duplex,Off Milverton Road Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7111,Tastefully Finished 5 Bedrooms Terrace + Bq, Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +7112,Massive 7 Bedroom Waterfront Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,7 beds,7 baths,8 Toilets,Banana Island +7113,Luxury And Brand New Fully Serviced 4 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7114,Luxury 4 Bedroom Semi Detached Duplex,2 Avenue Abacha Estate Ikoyi Lagos,₦,"210,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7115,8 Bedroom Mansion With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,1,0,8 beds,9 baths,9 Toilets,Foreshore +7116,7300 Square Meters Of Land At Ikoyi,Along Kingsway/ Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +7117,3bedroom Luxury Flat For Sale (26mansionette),Glover Road Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +7118,Brand New Fully Fitted All Rooms Ensuite Four (4) Bedroom Semi Detached House,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7119,Brand New 8 Units Fully Detached And Fully Fitted All Room Ensuite 4 Bedrooms,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7120,Brand New Luxurious 4 Bedroom Semi Detached Houses With Maid Apartment,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7121,Newly Built 4 Bedroom Semi Detached,Falomo Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7122,C Of O,Olori Mojisola Shoreline Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Onikoyi +7123,Commercial Building Sitting On Approximately 4326 Square Meters,Alfred Rewane Awolowo Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7124,Land With C Of O,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7125,Land With C Of O,Alexander Avenue Ikoyi Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7126,For Sale: Two Different Mortgage Banks Located In Ikoyi/abuja/enugu In Nigeria.,Two Different Mortgage Banks Located In Ikoyi/abuja/enugu In Nigeria Ikoyi S.w Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7127,Land Of 6302sqm With C Of O, 2nd Avenue Extension Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7128,"Martins Courts Glover Road, Ikoyi, Lagos, Nigeria",Glover Road Gerard Road Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,2 baths,2 Toilets,Other Ikoyi +7129,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7130,Demolishable Building For Sale In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7131,"Land Measuring 900sqm For Sale, Located In A Residential Area In Banana Island",Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0, beds, baths, Toilets,Banana Island +7132,Newly Built Duplex For Sale At Ikoyi,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths, Toilets,Other Ikoyi +7133,Land, Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7134,Land,Kingsway Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7135,Land ( Per Sqm), Banana Island Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7136,"House For Sale In Ikoyi. A 5 Bedroom Fully Detached Duplex In Old Ikoyi, Lagos.",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths, Toilets,Old Ikoyi +7137,Land ( Per Sqm), Banana Island Ikoyi Lagos,₦,"580,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7138,"Luxury 7 Bedroom Detached Duplex For Sale At Banana Island, Ikoyi.",Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,7 beds, baths, Toilets,Banana Island +7139,5 Bedroom Luxury Terrace Ensuite,Ilabere Avenue Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7140,Office Complex,Mulliner Tower Old Ikoyi Ikoyi Lagos,₦,"110,000",1,0,0, beds, baths, Toilets,Old Ikoyi +7141,2000sqm Land,"Web Road, Old Ikoyi Ikoyi Lagos",₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7142,"1000sqm Web Road, C Of O","Wed Road ,old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"345,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7143,2169sqm Land For Sale At Banana Island Ikoyi N420k/sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"420,000",0,0,0, beds, baths, Toilets,Banana Island +7144,Fully Serviced 3 Bedroom Flat In Block Of 12 Flats With Fitten Kitchen,"Adeyemi Lawson,ikoyi, Lagos Island Old Ikoyi Ikoyi Lagos",₦,"120,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +7145,"1000sqm Land For Sale At Shoreline Estate N300,000/sqm",Shoreline Estate Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7146,Lovely 4 Bedroom Terraces With Bq(offplan), Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +7147,5 Bedroom Semi Detached House Sitting On Approximately 800sqm Land At Thompson Avenue Ikoyi,Thompson Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths, Toilets,Old Ikoyi +7148,2500 Sqm Water Front Land,"Acacia Driveosborne 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Foreshore +7149,Newly Built 3 Bedroom Flat All Room Ensuite,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Onikoyi +7150,"Newly Built 5 Bedroom Detached House With Wonderful Finishing,swimming Pool And A Roof Top Balcony",Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +7151,Newly Built 5 Bedroom Detached House With A Wonderful Finishing In Banana Island Estate,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +7152,4 Bedroom Massionette House In A Secured Estate,Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets,Banana Island +7153,Newly Built 5 Bedroom Semi Detached House With Nice Finishing,Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Parkview +7154,Prime Parcel Of Land,Along Alexandra Avenue Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7155,Fed C Of O,Alexandra Avenue Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,6 Toilets,Old Ikoyi +7156,4bedroom Maisonette Plus Bq,Close To Ocean Parade Banana Island Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets,Banana Island +7157,Property For Sale,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7158,Joint Venture,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,1,0, beds, baths, Toilets,Foreshore +7159,Newly Built Four Bedroom Duplex Detached,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7160,5bedroom Semi Detached Duplex Plus Bq,Off 3 Avenue Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7161,Land For Joint Venture,Onikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,1,0, beds, baths, Toilets,Foreshore +7162,"Well Finished, Luxury Four (4) Bedroom Terrace House With An Attached One Room Maid's Quarter",Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Foreshore +7163,C Of O,Close To Kwara Street Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7164,"Vacant 12 (nos) 3 Bdrm Apartments With 1 Rm Bq Each Plus Gym, Generator House, Gate House And Swimming Pool On 1394 Sq Mt Land",Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",1,0,0,3 beds,3 baths,4 Toilets,Parkview +7165,A Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7166,"6300sqm Land Sale At Oba Adeyinka Oyekan Avenue, 2nd Avenue Road, Ikoyi Lagos","Oba Adeyinka Oyekan, 2nd Avenue Road, Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"1,750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7167,"A Plot Of Land Measuring 2497.0815sqm On Gerrard Road,ikoyi.lagos",Gerrard Road. Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7168,"A Plot Of Land Measuring 1500sqm On Gerrard Road,ikoyi.lagos",Gerrard Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7169,Exquisite 5 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7170,Magnificent 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +7171,4 Bedroom Terrace Duplex In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7172,Lovely 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,1 baths,2 Toilets,Banana Island +7173,A Luxurious 3 Bedroom Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +7174,2 Units Of 4 Bedroom Semi Detached Terrace Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7175,6 Units Of 3 Bedroom Flat In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7176,Neat 4 Bedroom Semi Detached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +7177,Luxury 5 Bedroom Flat In Ikoyi, Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7178,An Elegant 5 Bedroom Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7179,2 Wings Of 5 Bedroom Fully Detached Duplex,Ikoyi Awolowo Road Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Ikoyi +7180,4 Bedroom Semi Detached Terrace,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7181,A Lovely 5 Bedroom Semi Detached Duplex,Ikoyi Gerard Road Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7182,Newly Furnished 4 Bedroom Semi Detached Duplex With 24hours Power For Sale.,Gerard Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7183,Building (block Of Flats) In Ikoyi,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7184,Exquisite 3 Bedroom Flat In Banana Island,Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7185,A Tastefully Built 5 Bedroom Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7186,A Lovely 4 Bedroom Terrace Duplex In Ikoyi, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7187,3 Units Of Lovely 3 Bedroom Flat In Ikoyi,Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +7188,A 4 Bedroom Terrace House,Ikoyi Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7189,8 Units Of Tastefully Built 4 Bedroom Terrace Duplex In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7190,A Good 4 Bedroom Terrace Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +7191,5 Units Of 4 Bedroom Terrace Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7192,2 Units Of Tastefully Finished 3 Bedroom Flat In Ikoyi,Abacha Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7193,A Tastefully Built 2 Bedroom Flat In Ikoyi,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +7194,A Nice 3 Bedroom Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +7195,An Elegant 6 Bedroom Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +7196,Lovely 4 Bedroom Semi Detached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +7197,6 Units Of 3 Bedroom Flat,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7198,A Lovely 5 Bedroom Semi Detached Duplex In Ikoyi For Sale.,Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7199,5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7200,Lovely 4 Bedrooms Semi Detached Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7201,6 Units Of 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7202,Lovely 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7203,Newly Furnished 4 Bedroom Semi Detached Duplex With 24hours Power,Ikoyi Gerard Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7204,Newly Built 4 Bedroom Terrace Duplex With A Room Bq In Ikoyi,Vi Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +7205,5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7206,Land, Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7207,Lovely 3 Bedroom Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +7208,6 Bedrooms Fully Detached Duplex For Sale,Ikoyi Parkview Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +7209,2 Units Of 2 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +7210,4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7211,4 Bedroom Semi Detached Duplex In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"101,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7212,2 Units Of 5 Bedroom Terrace Duplex In Ikoyi, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7213,6 Units Of 4 Bedroom Mezonet,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7214,A Tastefully Built 4 Bedroom Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +7215,An Executive 5 Bedroom Semi Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7216,A Very Spacious Office Space In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,7 Toilets,Old Ikoyi +7217,An Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +7218,Lovely 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7219,Description: 3 Units Of 3 Bedroom Luxury Flats With 1 Rm Bq Location: Mojisola Onikoyi Estate Off Banana Island Road. Ikoyi. Amenities: Fully Fitted Kitchen & Wardrobes. Video Door Entry. Surround Music System. Air Conditioners. Intercom. Cctv. Ds,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Banana Island +7220,882m2 Plot Land At Abacha Estate,Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7221,500m2 Land At Cooper Rd Ikoyi.,Copper Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7222,Land For Sale On Gerald Road,Gerald Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7223,6500sqm Of Land On Glover Road,Glover Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7224,8000sqm Of Land Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7225,3500sqm Of Land At Lugard Avenue,Lugard Avenue Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7226,5600sqm Of Land Off Kingsway Road,Off Kingsway Road Ikoyi Lagos,₦,"350,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7227,6000sqm Of Land At Queens Drive,Queens Drive Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7228,4050sqm Of Land On Kingsway Road,Kingsway Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7229,5200sqm Of Land By Alakija,By Alakija Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7230,4000sqm Of Land On Gerald Road,Gerald Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7231,5000sqm Of Land On Queens Drive,Queens Drive Ikoyi Lagos,₦,"2,500,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7232,2800sqm Of Land On Glover Road,Glover Road Ikoyi Lagos,₦,"1,300,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7233,5897sqm Of Land Off Kingsway Road,Off Kingsway Road Ikoyi Lagos,₦,"1,800,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7234,3150sqm Of Land On Cameron Road,Cameron Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7235,Land,Water Front Residential Land Banana Island Ikoyi Lagos,₦,"1,640,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7236,Land,Off Alexander Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7237,Land For Sale,Zone J Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Banana Island +7238,Land For Sale,Zone M. Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Banana Island +7239,4 Bedroom Terrace Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7240,Land For Sale,"Zone M,banana Island Banana Island Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Banana Island +7241,Fully Serviced 3 Bedroom Apartment,"Bannana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"165,000,000",1,0,0,3 beds,3 baths,4 Toilets,Banana Island +7242,Nicely Finished 4 Unit Of 3bedroom Flat With A Room Bq At Onikoyi Off Bannana Island Road.,. Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +7243,Waterfront Units Of Luxurious 5 Bedroom Semi Detached Duplexes With Bq, Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +7244,Executive 5 Bedroom Detached House With 2 Rooms Bq. (serviced) Location ??ikoyi Lagos Nigeria Price: 450m,Bourdillon Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Ikoyi +7245,Executive 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7246,Luxury 5 Bedroom Detached House With Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7247,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Off Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7248,Executive 5 Bedroom Detached House,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7249,Luxurious Brand New 5 Bedroom Detached House With 2 Room Bq, Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7250,"4 Bedroom Maisonette For Sale Onikoyi, Opposite Rebecca Court, Banana Island Off Plan",Rebecca Court Banana Island Ikoyi Lagos,₦,"129,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +7251,3 Bedroom Flat,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +7252,4 Bedroom Premium Apartment For Sale,Onikoyi Banana Island Ikoyi Lagos,₦,"85,500,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +7253,Waterfront 4 Bedroom Semi Detached Duplex," Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"150,000,000",1,0,1,4 beds,4 baths,5 Toilets,Foreshore +7254,3 Units Of Luxurious 3 Bedroom Terrace Duplexes Plus A Room Bq Location ??banana Island Ikoyi Lagos. Price: N275m Per Unit.,Banana Island Ikoyi Lagos,₦,"290,000,000",1,1,0,3 beds,4 baths,4 Toilets,Banana Island +7255,Well Furnished 3 Bedroom Apartment For Sale In Parkview Estate,Lekki Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +7256,Executive 5 Bedroom Detached House With 2 Rooms Bq And A Roof Top Terrace. (serviced) Location ??ikoyi Lagos Nigeria Price: 320m,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7257,Newly Built 6 Unit Of 5 Bedroom Luxury Detached Houses With Boys Quarters,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,7 Toilets,Banana Island +7258,5 Bedroom Terrace At Old Ikoyi,Lekki Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7259,Lovely 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7260,2 Bedroom Apartment For Sale At Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,2 Toilets,Banana Island +7261,5 Bedroom Duplexes Plus A Room Bq Location ??banana Island Ikoyi Lagos. Price: N400m,Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +7262,3 Bedroom Apartment At Old Ikoyi,Lekki Ikoyi Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7263,Lovely 5 Bedroom Semi Detached House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7264,"For Sale, Lease And Rent",Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0, beds, baths, Toilets,Banana Island +7265,Waterfront Block Of Flats At South West Ikoyi,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7266,4 Bedroom Luxury Terrace Duplex,Oloto Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7267,Super Finished 5 Bedroom Town House,Off Glover Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7268,Newly Built State Of An Art High Rise Located In Ikoyi,Bourdillion Bourdillon Ikoyi Lagos,$,"1,500,000",1,1,1,4 beds,3 baths,3 Toilets,Other Ikoyi +7269,Newly Built Smart Home In Ikoyi,Shoreline Drive Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,5 baths, Toilets,Old Ikoyi +7270,Well Finished 5 Bedroom Fully Detached Duplex For Sale In Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Onikoyi +7271,700 Square Metres,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +7272,Land Measuring 450m2,Off Ilubrin Estate Osborne Osbourne Ikoyi Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7273,Land,Banana Island Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7274,4 Bedroom Terrace Duplex With Bq,Osborne Two Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +7275,Waterfront Bareland At Zone J 60,J 60 Residential Area Of Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +7276,7 Bedroom Duplex And 2 Bedroom Bq.,Off Awolowo Way Falomo Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Ikoyi +7277,Plot Of Land,Nativity Close Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7278,1200 Square Metres,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +7279,5 Bedroom Terrace Duplex,Off Macpherscson Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7280,4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7281,Fully Furnished 8 Bedroom Mantion,Kwara Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,9 baths,10 Toilets,Foreshore +7282,Fully Furnished 8 Bedroom Mansion,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,8 baths,8 Toilets,Foreshore +7283,Fully Furnished 5 Bedroom Duplex +bq,Kwara Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,5 baths,6 Toilets,Foreshore +7284,Newly Built 5 Bedroom Flat,I Piccadilly Street Ikoyi S.w Ikoyi Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,3 Toilets,Other Ikoyi +7285,Newly Built 4 Bedroom House On 3 Floors.,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,6 Toilets,Banana Island +7286,4 Bedroom Semi Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +7287,2 5 Bedroom Duplexes,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +7288,Newly Built 4 Bedroom Terrace,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7289,5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7290,Detached House,Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7291,"Waterfront Blk Of 10 Units Of 3 Bedrm Flats All Rooms Ensuite With 10 Rms Bq , Elevator, Gym,water Treatment Plant, N Office @ Old Ikoyi",Off Awolowo Road Old Ikoyi Lagos Awolowo Road Ikoyi Lagos,₦,"900,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +7292,Fully Detached Semi Serviced 4 Bedroom Duplex For Sale @ Banana Island Ikoyi,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +7293,2000m2 Bare Land With Federal C Of O On Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7294,Breathtaking Luxury & Exotic Finished 6 Bedroom Penthouse For Sale At Ikoyi Lagos N300m,Ikoyi Bourdillon Ikoyi Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets,Other Ikoyi +7295,A Tastefully 4 Bedroom Town House With A Room Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7296,Luxury 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7297,Newly Built 3 Bedroom Apartment With Bq At Parkview Estate Ikoyi N85m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"85,000,000",1,1,0,2 beds,3 baths,4 Toilets,Parkview +7298,En Suit 3 Bedroom Flat+ 1 Detached Servant Quarters, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +7299,A Newly Built And Luxury 24 Unit Of 3 Bedroom Flat,Banana Island Estate Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Banana Island +7300,A Fenced 750 Sqm Of Land,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Foreshore +7301,1208sqm Land, Parkview Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7302,Land For Sale At Ikoyi Crescent,Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7303,A Fenced Plot Of Land,"Plot 3, Behind Banana Island Apartment. Banana Island Ikoyi Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Banana Island +7304,"2600sqm Land On Gerard Road, Ikoyi.",Gerard Road Gerard Road Ikoyi Lagos,₦,"850,000,850",0,0,0, beds, baths, Toilets,Other Ikoyi +7305,Land In Ikoyi,Ikoyi Crescent Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Foreshore +7306,Old 3 Units Of 3 Bedrm Flat,"69, Norman Williams Street, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,3 beds,2 baths,2 Toilets,Old Ikoyi +7307,"4 Bedroom Detached Duplex ...a Showpiece Home Is Now For Sale In Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets,Banana Island +7308,10 Units Of 3 Bedroom Flats,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Onikoyi +7309,3 Bedroom Apartment With Boys Quarters,Titanium Towers Gerard Road Ikoyi Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7310,"Banana Island. 2476 Square Meters, 1900 Square Meters Totaling 4376 Square Meters. N450k Per Square Meter(net)",Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Banana Island +7311,"1,250sqm Semi Direct Plot Of Land","J51 (d) Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"500,000",0,0,0, beds, baths, Toilets,Banana Island +7312,Semi Direct Plot Of Land (1050sqm),"M27 C Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"410,000,000",0,0,0, beds, baths, Toilets,Banana Island +7313,2000 Sqm Waterfront Sandfilled Bareland,Acacia Drive Osborne2 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0, beds, baths, Toilets,Foreshore +7314,750sqm Solid Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Foreshore +7315,1000sqm Mixed Use Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Foreshore +7316,Corner Piece Mixed Use Land,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7317,63room Hotel For Sale On Victoria Lsland,Ikoyi S.w Ikoyi Lagos,₦,"2,300,000,000",1,1,1, beds, baths, Toilets,Other Ikoyi +7318,6 Units Of Fully Detached 5 Bedroom House With Bq And 4 Units Of Semi Detached 4 Bedroom House With Private Study And Bq,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,5 beds, baths, Toilets,Old Ikoyi +7319,"3,300 Square Meter Land", Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7320,Brand New 5 Bedroom Semi Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7321,"Residential Or Commercial 4,000sqm Bareland With C Of O.",Bareland Facing Road At Onikoyi Along Banana Entrance Gate . Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,1 beds,1 baths,1 Toilets,Onikoyi +7322,"Commercial Land In 3 Deffrent Locations In Ikoyi, Lagos","Alexander Rd, Kingsway Rd, Osborne Road, Oba Adeyinka Oyekan Rd (2nd Avenue) Old Ikoyi Ikoyi Lagos",₦,"2,600,000,000",0,0,0,1 beds,1 baths,1 Toilets,Old Ikoyi +7323,Exquisitely Finished 4 Bedroom Semi Detached Terrace Duplex,. Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7324,Elite 5 Bedroom Terrace House With Bq, Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +7325,Brand New 5 Bedroom Fully Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets,Parkview +7326,5bedroom Detached Duplex In Banana Island,Banana Island Road32 Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +7327,3bedroom Flat,Off Bank Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7328,Newly Built Semidetach Duplex,232 Ogun Street Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7329,4 Bedroom Townhouse For Sale And Rent Option Sale Price: N180m Asking Rent: N9m Per Annum.,"Rumens Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds, baths, Toilets,Old Ikoyi +7330,"The Biggest Plot In Old Ikoyi: 26,000sqm On Glover Road With Lagos State Cofo And Building Plan Approval",Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7331,Plot Of Land @ Banana Island (waterfront),Close 310 Plot J60 Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Banana Island +7332,Brand New Lovely 4 Bedroom Luxury Apartment For Sale In Ikoyi,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7333,"A Plot Of Land Measuring 1725sqm On Alexander Ave,ikoyi.lagos",Alexander Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7334,"A Plot Of Land Measuring 1736sqm On A Corner Piece Alexander By Bourdilion Rd,ikoyi Lagos.",Bourdilion Bourdillon Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7335,"A Plot Of Land Measuring 1113sqm On A Corner Piece On Bourdilion Road,ikoyi.lagos",Bourdilion Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7336,A Plot Of Land Measuring 3500sqm On A Corner Piece On Alexander Road.ikoyi Lagos,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7337,"A Plot Of Land Measuring 700sqm With Fed C Of O On Lugard Rd,ikoyi.lagos",Lugard Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7338,"A Plot Of Land Measuring 1000sqm At J Zone Banana Island,ikoyi.lagos",J Zone Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +7339,High Rise Luxuriously Built Furnished Three (3) Bedroom Apartment For Sale In Ikoyi Lagos ...,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds, baths, Toilets,Other Ikoyi +7340,Newly Built 5 Bedroom Fully Detached Luxurious House With Swimming Pool.,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7341,1000sqm Plot Of Land,J2 Banana Island Ikoyi Lagos,₦,"599,000,000",0,0,0, beds, baths, Toilets,Banana Island +7342,4 Bedroom Detached Duplex With Boys Quarter,Alhaji Bashorun Street Off Norman Williams Street Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7343,Newly Built 5 Bedroom Fully Detached Luxurious House With Swimming Pool.,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7344,2600sqm Of Land,Gerard Road Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7345,4500sqm Of Land,Gerard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7346,"Plot Of Land Measuring 1,137.690sqm",Funso Martin's Street Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Parkview +7347,Land Available,Kingsway Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7348,Luxury 4 Bedroom Terrace Duplex,Ruxton Road Ikoyi Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7349,Covenant Real Estate Limited,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7350,820sqm Land Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7351,2000sqm Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7352,1000sqm Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7353,Luxury 1 Bedroom Apartment (off Plan),"25 Banana Island Rd, Ikoyi. Banana Island Ikoyi Lagos",₦,"50,000,000",1,1,0,1 beds,1 baths,2 Toilets,Banana Island +7354,Corner Piece Land On Awolowo Road,Awolowo Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7355,Serviced 3 Bedroom Apartment In Ikoyi,"Off Queens Drive, Ikoyi Ikoyi Lagos",₦,"90,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +7356,Luxury Four(4) Bedroom Terrace Duplex In Ikoyi,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Foreshore +7357,3 Bedroom Apartment,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +7358,Five Bedroom Detached House On Glover Road,Glover Road Ikoyi Lagos,₦,"307,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7359,Brand New Luxury 5 Bedroom Terrace House In Ikoyi,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Old Ikoyi +7360,4 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"98,000,000",0,0,0,4 beds,5 baths,6 Toilets,Parkview +7361,3 Bedroom Apartment, Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +7362,5 Bedroom Terrace House,"Off Queens Drive, Old Ikoyi Ikoyi Lagos",₦,"305,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +7363,"Lovely Brand New 4 Bedroom Flat In Parkview, Ikoyi",Parkview Ikoyi Ikoyi Lagos,₦,"98,000,000",0,0,0,4 beds,5 baths, Toilets,Parkview +7364,Luxury Five(5) Bedroom Fully Detached House ( Off Plan),"Glover Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +7365,Brand New Luxury 5 Bedroom Terrace House,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"330,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7366,Brand New And Serviced Four(4) Bedroom Terrace House, Bourdillon Ikoyi Lagos,₦,"255,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +7367,Brand New Luxury 5 Bedroom Terrace Duplex In Ikoyi,Off Queens Drive Ikoyi Lagos,₦,"305,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7368,26000sqm Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7369,4 Bedroom Terraced Duplex," ojora Road, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7370,2bedroom Luxury Apartments,Off Onikoyi Street Banana Island Ikoyi Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths,3 Toilets,Banana Island +7371,Lovely Finished 3 Bedroom Apartment At Parkview Estate Ikoyi Lagos N90m,Femi Pedro Parkview Estate Ikoyi Lagos,₦,"90,000,000",1,0,0,2 beds,3 baths,4 Toilets,Parkview +7372,Newly Built Luxury 3 Bedroom Flat For Sale At Ikoyi Lagos N95m,Off Queens Drive Macpherson Ikoyi Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7373,Newly Built Executive 3 Bedroom Flat At Bamana Island Ikoyi Lagos N130m,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Banana Island +7374,Newly Built 3 Bedroom Penthouse Flat At Ikoyi Lagos N140m,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,400,000",1,1,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7375,5 Bedroom Terrace For Sale,"Park View Estate,ikoyi Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7376,4 Bedroom Semi Detached House,Osborne Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7377,5 Bedroom Semi Detached Houses With Bqs,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7378,4 Bedroom Terrace Duplex,K Falomo Ikoyi Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7379,5 Bedroom Super Luxury Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7380,Luxury 5 Bedroom Fully Detached Duplex,"Park View Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7381,4 Units Of Tastefully Finished 3bed Ensuite Flats For Sale,Queens Drive Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7382,5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7383,6 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +7384,Brand New 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7385,5 Bedroom Terrace House,Off Queens Drive Falomo Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7386,"5 Bedroom Detached House With 2 Rooms Servant Quarters,",Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7387,Some Cheap Ikoyi Sales You Will Love...,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7388,Luxurious Mansion For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",1,1,1,10 beds,10 baths,10 Toilets,Banana Island +7389,Exquisite 5 Bedrooms Terraced Duplex With State Of The Art Facilities, Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,5 Toilets,Banana Island +7390,3 Bedroom Terrace House With Study For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7391,An Exquisite 4 Bedroom Penthouse In The Heart Of Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7392,Fully Detached 5 Bedroom Colonial House For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +7393,Newly Built,Ikoyi Ikoyi Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7394,3bedroom Flat In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +7395,5 Bedrooms Detached House For Sale,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Parkview +7396,4 Bedroom Terrace Duplex For Sale,Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7397,Newly Built 4 Bedroom Semi Detached Duplex,Glover Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7398,Apple Island,Apple Island Ikoyi Lagos,₦,"350,000,000",0,1,0, beds, baths, Toilets,Other Ikoyi +7399,6 Bedroom Detached Duplex," ojomu Road, By Ikoyi Roundabout, Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,6 beds,6 baths,6 Toilets,Old Ikoyi +7400,Luxurious 4 Bedroom Terraced Duplex,"George Street, Ikoyi Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7401,Fully Detached 5 Bedroom Duplex In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Banana Island +7402,Governor Consent,Ikoyi Community Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7403,A 5 Bedroom Semi Detached House With A Bq,Olamijuyin Avenue Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7404,A 5 Bedroom Detached House With A Room Bq,3rd Avenue Banana Island Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7405,5 Bedroom Semi Detached House With A Room Bq,"Off Gbenga Ashafa Street, Parkview Estate Ikoyi Lagos",₦,"185,000,000",1,0,0,5 beds,5 baths,6 Toilets,Parkview +7406,A 7650sqm Water Front Land,Zone J Banana Island Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7407,"5 Bedroom Semi Detached House On 3 Floors With Fitted Kitchen, Elevator, 2 Rooms Bq Etc","Gbenga Ashafa Street, Onikoyi Parkview Estate Ikoyi Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets,Parkview +7408,"3 Nos 5 Bedroom Semi Detached House On 3floors With Fitted Kitchen, 1 Room Bq Etc","Gbenga Ashafa Street, Onikoyi Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,6 baths,5 Toilets,Parkview +7409,5 Bedroom Detached House With Two Rooms B/q,Professor Jubril Aminu Street Parkview Estate Ikoyi Lagos,₦,"300,000,000",1,0,0,5 beds,5 baths,6 Toilets,Parkview +7410,A 4 Bedroom Detached House With 3 Rooms Boys Quater,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7411,4 & 5 Bedroom Luxury Semi Detached Houses With B/q,Olamijuyin Avenue Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7412,6 Bedroom Duplex With A 2 Rooms Maid Quarters,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,8 Toilets,Banana Island +7413,Newly Constructed Four Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +7414,Exquisitely Built 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7415,Luxury 5 Bedroom Terrace House,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +7416,"Newly Built, Well Designed And Finished 4 Bedroom Terraced Duplex",Off Bourdillion Road; Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7417,Ambassadorial And Lavishly Finished Seven (7) Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +7418,Magnificent 3 Bedroom Terrace Duplex,Off Bourdillon Road Falomo Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7419,Tastefully Modernized 5 Bedroom Executive Mansion,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7420,"Uniquely Built, Exquisite And Massive 7 Bedroom Detached House",Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets,Parkview +7421,Luxurious And Well Finished 4 Bedroom Terraced Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7422,Massive And Well Built Five (5) Bedroom Detached House,. Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +7423,A Well Finished 5 Bedroom Detached House,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7424,"Well Designed, Finished, And Fitted 4 Bedroom Detached Duplex",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7425,"A Newly Built, Well Designed, Luxury 5 Bedroom Semi Detached Duplex",Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets,Old Ikoyi +7426,Brand New 4 Bedrooms Terrace House,James George Dolphin Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7427,4000sqm Jv On Banana Island Qa1,Ikoyi Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +7428,3600sqm Jv Land On Banana Island J15,Ikoyi Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +7429,3 Bedroom Flat On Osborne Towers,Osborne Towers Ikoyi Ikoyi Lagos,$,"1,500,000",0,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7430,Newly Built 5 Bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,5 Toilets,Banana Island +7431,Newly Built 5 Bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,6 Toilets,Banana Island +7432,5000sqm At Bourdillon For Joint Venture,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7433,1270sqm Of Land,Off 3rd Avenue Plot J51 Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets,Banana Island +7434,Land For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"430,000",0,0,0, beds, baths, Toilets,Banana Island +7435,Luxury 5 Bedroom Duplex With Swimming Pool For Sale,By Rexton Close To Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7436,Newly Built 5 Bedroom Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +7437,House For Sale," agodogba Avenue,parkview Estate, Parkview, Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7438,5 Bedroom Detached Duplex," ayodogba, Parkview, Ikoyi Lagos",₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +7439,Brand New 3 Bedroom Flat,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +7440,Mixed Use Land," norman Williams Off Awolowo Road, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7441,5 Bedroom Detached House,Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +7442,Prime Land Of About 2250 Sqm, Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7443,5 Units Of 5 Bedroom Ensuite Luxury Terrace House,Queens Drive Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7444,Residential Land For Sale," banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7445,"4,500 Square Meters Land, Title Is Certificate Of Occupancy","Gerard Road,ikoyi Gerard Road Ikoyi Lagos",₦,"1,500,000,000",1,0,0, beds, baths, Toilets,Other Ikoyi +7446,"3 Nos. High Rise Residential Block Of 12 Floors, 3 Bedroom Apartments With Bq",Alagbon Ikoyi Lagos,₦,"8,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7447,3 Bedroom Apartment,"Club Road, 2nd Avenue Extension Ikoyi Lagos",₦,"190,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +7448,5 Unit Of 3 Bedroom Apartment House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,1,1,3 beds,3 baths,4 Toilets,Foreshore +7449,"2,600 Square Metres Land For Sale","Gerard Road, Ikoyi Gerard Road Ikoyi Lagos",₦,"900,000,000",1,0,0, beds, baths, Toilets,Other Ikoyi +7450,3 Bedroom Flat / Apartment,Mosley Mosley Road Ikoyi Lagos,₦,"300,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7451,5 Bedroom Semi Detached Duplex House,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Banana Island +7452,Exquisitely Finished Waterfront 5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7453,Ornamentally Built 8 Bedroom Fully Detached Edifice, Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,0 baths,0 Toilets,Banana Island +7454,New 3 Bedroom Mansionette With Bq, Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,0 baths,0 Toilets,Parkview +7455,Brand New 5 Bedroom Fully Detached House With 2 Rooms Bq, Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets,Parkview +7456,Brand New 2 Bedroom Terrace House, Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,1,0,2 beds,0 baths,0 Toilets,Old Ikoyi +7457,Brand New 4 Bedroom Fully Detached House With Bq,Glover Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets,Old Ikoyi +7458,Brand New 5 Bedroom Detached House With A Room Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets,Banana Island +7459,5 Bedroom Penthouse Mansionette With Bq,Shoreline Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +7460,Luxury 3 Bedroom Flat With Bq,Shoreline Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +7461,Brand New 5 Bedroom Fully Detached House With Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +7462,Block Of 8 Nos 3 Bedroom Flat With 2 Nos 4 Bedroom Mansionette Penthouses With Bq, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7463,8 Bedroom Mansion, Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,10 baths,10 Toilets,Foreshore +7464,Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7465,Brand New Serviced 4 Bedroom Fully Detached House With Bq,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +7466,Brand New 3 Bedroom Flat With Bq,. Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,1,0,3 beds,0 baths,0 Toilets,Parkview +7467,2500 Square Meter Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7468,1300 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7469,1500 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7470,Luxury 3 Bedroom Terrace With Bq,Off Alexander Road Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,5 baths,5 Toilets,Other Ikoyi +7471,New 4 Bedroom Terrace House With Bq, 2nd Avenue Extension Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7472,4 Bedroom Serviced Semi Detached House, Banana Island Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,0 baths,0 Toilets,Banana Island +7473,New 4 Bedroom Semi Detached House With Bq,Okotie Eboh Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7474,New 3 Bedroom Semi Detached House With Bq,Okotie Eboh Ikoyi S.w Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Ikoyi +7475,Brand New 5 Bedroom Fully Detached House, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +7476,Brand New 5 Bedroom Fully Detached House With Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,Onikoyi +7477,Luxury Waterfront 6 Bedrooms Fully Detached House With Bq, Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +7478,3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +7479,2 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets,Parkview +7480,3 Bedroom Maissonette, Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +7481,Block Of Flats And Mansionette, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +7482,812 Sqm Land,Shoreline Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7483,Brand New 8 Bedroom Semi Detached House + Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,8 beds,0 baths,0 Toilets,Banana Island +7484,Brand New 4 Bedroom Penthouse + Bq, Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,1,0,4 beds,0 baths,0 Toilets,Parkview +7485,3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +7486,700 Sqm Land,Lugard Ikoyi Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7487,1500 Sqm Land, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7488,2500 Square Meters Land, Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7489,5100 Sqm Land, Ikoyi S.w Ikoyi Lagos,₦,"1,785,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7490,9000 Sqm Land,Club Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7491,1200 Sqm Land,"Cameron Road, Ikoyi Lagos",₦,"39,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7492,500 Sqm Land,"Web Road, Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7493,3 Bedroom High Rise Flat With Bq, Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +7494,4 Bedroom Terrace With Bq, Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +7495,4 Bedroom Semi Detached House With Bq, 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7496,"Exquisite 5 Bedroom Fully Detached House With Swimming Pool, Gymnasium And Club House With Children Play Ground",Park View Estate Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets,Parkview +7497,Luxurious Four Bedroom Terrace Duplex At Ikoyi,"Femi Okunnu, Ikoyi Lagos",₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7498,Land,Ikoyi Residential Scheme 1 Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7499,Residential Land, Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7500,5 Bedroom Detached Duplex," banana Island, Banana Island Ikoyi Lagos",₦,"630,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7501,High Rise Of 13 Storey Building, Gerard Road Ikoyi Lagos,₦,"8,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7502,6500sqm Fenced Land, 2nd Avenue Extension Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7503,"Land Measuring 3964 Sq Mtrs At James George Street By Alagbon Close , Off Old Federal Secretariat, Ikoyi, Lagos","Land Measuring 3964 Sq Metrs At James George Street, By Alagbon Close, Off Old Federal Secretariat, Ikoyi, Lagos. Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7504,4 Bedroom Fully Detached House, Macpherson Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7505,Self Serviced New Four Bedroom Terrace, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,Parkview +7506,5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7507,Fully Detached 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7508,5 Bedroom Terrace Duplex,210 Close Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7509,1400 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7510,"Land Measuring 3,674 Sq Mtrs At Reeve Road, Ikoyi, Lagos.","Reeve Road, Off Glover Road, Ikoyi, Lagos. Ikoyi Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7511,4 Bedroom Detached House + Bq, Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7512,Mixed Use Land," queensdrive, Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7513,3 Bedroom Flat, Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7514,5 Bedroom Detached Duplex," parkview, Ikoyi Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Ikoyi +7515,Mixed Use Land, Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7516,"Luxury Four Bedroom Semi Detached House, A Room Bq With Two Units Of Two Bedroom Flat And One Unit Miniflat.",Abia Street Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets,Banana Island +7517,Luxury Finished Five Bedroom Terrace With A Room Staff Quarters.,"Off Bourdillon Street, Ikoyi Bourdillon Ikoyi Lagos",₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7518,5 Bedroom Fully Detached Duplex,Bourdillon Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7519,A Plot Of Land Measuring 1560sqm, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7520,A Bareland Measuring 2000sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7521,A Plot Of Land Measuring 576sqm With Raft Foundation, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7522,A Plot Of Land Measuring 1000sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7523,A Plot Of Land Measuring 2200sqm On Bourdilion Road,Bourdilion Road Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7524,"A Plot Of Land Measuring 5000sqm On Queens Drive,ikoyi Lagos",Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7525,A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7526,"A Plot Of Land Measuring 2500 Sqm Waterfront At Osborne Phase 2, Ikoyi",Osborne Phase 2; Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7527,"A Super Finished 4bedrooms Semi Detached Duplex With Bq Newly Built On Milverton Road,ikoyi.lagos",Milverton Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7528,"A Plot Of Land Measuring 576sqm At Onikoyi,ikoyi.lagos", Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7529,"A Plot Of Land Measuring 2509 Sqm Waterfront With Embarkment On Royal Palm Avenue,osborne Phase 2, Ikoyi","Royal Palm Avenue; Osborne 2, Osbourne Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7530,A Plot Of Land Measuring 2000sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7531,A Plot Of Land Measuring 1000sqm,Femi Pedro Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7532,"A Waterfront Plot Of Land Measuring 2000 Sqm On Awolowo Road, Ikoyi",Awolowo Road; Ikoyi S.w Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7533,A Plot Of Land Measuring 1000sqm,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7534,A Plot Of Land Measuring 500sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7535,A Plot Of Land Measuring 500sqm,Cameron Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7536,A Plot Of Land Measuring 1000sqm,Cameron Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7537,"A Plot Of Land Measuring 1500sqm On Mekuwen Street,old Ikoyi.lagos",Mekuwen Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7538,A Bareland Measuring 2275sqm,Shew Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7539,A Plot Of Land Measuring 500sqm, Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7540,A Distress Sales A Plot Of Land Measuring 4000sqm,James George Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7541,A Plot Of Land Measuring 2200sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7542,A Plot Of Land Measuring 900sqm,Mobolaji Johnson Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7543,A Plot Of Land Measuring 3000sqm,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7544,A Plot Of Land Measuring 1100sqm, Parkview Estate Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7545,A Plot Of Land Measuring 1000sqm, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7546,A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7547,A Plot Of Land Measuring 1000sqm,Lugard Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7548,A Plot Of Land Measuring 1560sqm, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7549,A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7550,A Plot Of Land Measuring 2200sqm With A Demolishable Building, Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7551,A Plot Of Land Measuring 1129sqm At Banana Island J Zone.ikoyi.,J Zone Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Banana Island +7552,"A Plot Of Land Measuring 20000sqm On Kingsway Road,ikoyi Lagos.",Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets,Onikoyi +7553,A Plot Of Land Measuring 1000sqm,Bedwell Street Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7554,"A Plot Of Land Measuring 7400sqm On Kingsway Road,ikoyi.lagos",Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +7555,A Plot Of Land Measuring 5106sqm,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7556,4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +7557,5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7558,Residential Land,  Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7559,Brand New 3 Nos 3 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +7560,1736 Sqm Land, Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7561,Furnished 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"5,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +7562,4 Bedroom Brand New Exquisitely Built And Serviced Maisonette, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +7563,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7564,5 Bedrooms Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7565,5 Bedroom Exquisitely Finished Detached House With 1 Room Bq, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7566,Brand New 5 Bedroom Detached, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7567,5 Bedrooms Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7568,3 Bedroom Block Of Flats," banana Island, Banana Island Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7569,4 Bedroom Detached Duplex," off 3rd Avenue, Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +7570,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7571,4 Bedroom Terrace Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Parkview +7572,5 Bedroom Semi Detached Duplex," mojisola Onikoyi Estate, Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7573,Mixed Use Land, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7574,Mixed Use Land," off Awolowo Road, South West, Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7575,5 Bedroom Detached House, Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +7576,2250sqm Land, Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7577,Waterfront Land, Banana Island Ikoyi Lagos,₦,"7,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7578,1500 Sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7579,1089 Sqm Bare Land, Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7580,Luxury 3 Bedroom Flat,Parkview Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +7581,1500 Square Meters Land,"Mahogany Way, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7582,5200 Square Meter Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7583,2500 Square Meter Land,Water Front Plots On Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7584,1500 Square Meters Land,"Acacia Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7585,1350 Square Meters Land,"Mahogany Way, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7586,2 Nos Of 5 Bedroom Duplex,Bode Olajumoke Crescent Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +7587,4 Bedroom Terrace, Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7588,4 Bedroom Detached House, Abacha Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7589,5 Bedroom Terrace Duplex,210 Close Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7590,1371 Square Meters Land,Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7591,3500 Square Meter Land,Alexander Road/ Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7592,"2,900 Sqmt Bare Land",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7593,Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7594,Fenced & Gated Bareland Of 2340sqm In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7595,Fenced Plot Of Land Size 700sqm,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7596,10 Classic Units Of 3 Bedroom Flats + 2 Units Of 3 Bedroom Penthouse+ 2 Units Of 2bedroom Flats + 1 Unit Of 2 Bedroom Penthouse Sitting On 2000sqm Of Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +7597,"Fenced & Gated Mixed Used Bare Land Measuring 7,300 Sqm",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7598,Waterfront Plot 5100sqm With A Lagos State Title.,Ademola Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7599,2000sqm Land On Zone J60,Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7600,Block Of 6 (3) Bedroom Flats With 6 Room Bq,Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7601,Land On 1000sqm Land (not Waterfront),Zone Banana Island Ikoyi Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7602,1000sqm Waterfront Land,Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7603,Land,Ikoyi Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7604,Block Of 3 Bedroom Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7605,Fenced Detached House Located On Size 1000sqm,Bourdillion Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7606,Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7607,Land,Ikoyi Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7608,1000sqm Bare Land For Sale On Cooper Road Ikoyi.,Cooper Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7609,5 Bedroom Detached Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +7610,Office Space," norman Williams, Falomo Ikoyi Lagos",₦,"170,000,000",0,0,0,0 beds,6 baths,7 Toilets,Other Ikoyi +7611,5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7612,Fully Detached Duplex,"Off Bourdilon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7613,4 Bedroom Detached House, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7614,Federal Cofo,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7615,5 Bedroom Wing Of Duplex,Olori Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"230,000,000",1,0,0,5 beds,6 baths,6 Toilets,Onikoyi +7616,Luxury 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7617,5 Bedroom Detached House With Bq, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7618,4 Bedroom Terrace,Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Parkview +7619,Exquisite Four(4) Bedroom Terrace House,Parkview Estate Off Alexander Road Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7620,For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +7621,Luxury 30 Rooms Hotel,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",1,1,1, beds, baths, Toilets,Foreshore +7622,5 Bedroom Terrace For Sale,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,4 Toilets,Other Ikoyi +7623,4 Bedroom Semi Detached Duplex,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7624,Land,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7625,4 Bedroom Terrace For Sale,Off Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets,Old Ikoyi +7626,Superb Four (4) Bedroom Detached House, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7627,Large Expanse Of Land,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7628,4 Bedroom Terrace House, Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7629,4 Bedroom Terrace For Sale,Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,3 Toilets,Parkview +7630,5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7631,4 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7632,3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7633,3 Bedroom Flat,  Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7634,5 Bedroom House, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7635,Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex,Off Bourdillon Road Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7636,3 Bedroom Flat,  Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7637,3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7638,5 Bedroom House," directly Off 3rd Avenue, Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7639,Land,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7640,5 Bedroom Detached Duplex," banana Island, Banana Island Ikoyi Lagos",₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7641,Mixed Use Land For Sale @ Ikoyi,Elm Street Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Foreshore +7642,5 Bedroom House," gerrard Road, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +7643,4 Bedroom Flat," off Onikoyi Lane, Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +7644,3 Bedroom Flat," glover Road, Old Ikoyi Ikoyi Lagos",₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +7645,Duplex,Along Banana Estate. Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7646,Massive 7 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +7647,Luxury 4bedroom Detached Duplex,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +7648,Duplex,Banana Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7649,Detached Duplex,2 Street Banana Island Ikoyi Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Banana Island +7650,Residential Land, Banana Island Ikoyi Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7651,Off Plan Sale Of 4 Bedroom Luxury Apartment With A Maids Room,2nd Avenue Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7652,Fully Serviced Luxurious Four (4) Bedroom Town House With One (1) Servant's Quarters,"2, Bank Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets,Old Ikoyi +7653,"Luxury 2 Bedroom Apartment (under Construction) N7,5000,00 Initial Deposit And Spread Payment Over 24 Months. Project Delivery In 30 Months",Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"7,500,000",1,1,1,2 beds,2 baths,2 Toilets,Banana Island +7654,Some Extra Explanation On Poisson,"13b Femi Adebule Street, 13b Ikoyi S.w Ikoyi Lagos",₦,"10,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Ikoyi +7655,Land, Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7656,2100 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7657,4800 Sqm Of Land For Sale At Ikoyi,Kingsway Road Ikoyi Lagos,₦,"2,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7658,1000sqm Of Land At Temple Road,Temple Road Ikoyi Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7659,3000sqm Of Land At Ilabere Road,Ilabere Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7660,4000 Sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7661,3106.587sqm Of Land For Sale At Ikoyi,Cameron Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7662,537sqm Of Land For Sale At Ikoyi,Macpherson Avenue Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7663,Land For Sale At Old Ikoyi,James George Street Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7664,Dry Land For Sale On Milverton Road,Milverton Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7665,1100sqm Of Land For Sale At Ikoyi,"Plot 2a, Templeroad Ikoyi Lagos",₦,"475,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7666,1000sqm Of Land At Shaw Road,Shaw Road Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7667,Land For Sale At Ikoyi,Gerald Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7668,Land For Sale At Cameron Road,Cameron Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7669,900sqm Of Land For Sale At Ikoyi,Temple Road Ikoyi Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7670,1645sqm Of Land At Turnbull Road,Turnbull Road Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7671,800sqm Of Land At Glover Road,Glover Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7672,"4,534sqm Empty & Fenced Land",Gerrard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7673,550sqm Land For Sale At Ikoyi,Ademola Street Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7674,999.90sqm Of Land On Shaw Road,Shaw Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7675,Land For Sale At Okunola Martin's Close,Okunola Martin's Close Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7676,Rear Plot On Copper Road,Copper Road Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7677,Land For Sale At Ikoyi,Milverton Road Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7678,1000sqm Of Land At Lugard Road,Lugard Road Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7679,Land For Sale,Aromire/kingsway Road Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7680,1000sqm Of Land At Milverton Road,Milverton Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7681,Property For Sale On Okotie Eboh Street,Okotie Eboh Street Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7682,2200sqm Of Land For Sale At Glover Road,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7683,1400sqm Of Land At Turnbull Road,Turnbull Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7684,2811sqm Of Land For Sale At Glover Road,Glover Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7685,"7,100sqm Of Empty & Fenced Land",Gerrard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7686,1001 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7687,2000 Sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7688,4 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7689,Enchanting 4 Bedroom Terrace House,"Ruxton Road Old Ikoyi, Off Bourdilon Road Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7690,Exquisite Four(4) Bedroom Terrace House,Parkview Estate Off Alexander Road Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7691,5 Units Of Detached Houses, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7692,Luxury Semi Detached House,Eko Street Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7693,Nice 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +7694,4 Bedroom Terrance House,. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7695,4 Bedroom Terrance Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7696,4 Bedroom Terrace House, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7697,Giuliano De' Medici By Sujimoto Construction Penthouse,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +7698,Giuliano De' Medici By Sujimoto Construction Terrace,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets,Banana Island +7699,Lucrezia By Sujimoto Construction (off Plan) Penthouse,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +7700,Lucrezia By Sujimoto Construction (off Plan) Maisonettes,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,4 beds,4 baths,5 Toilets,Banana Island +7701,The Medici By Sujimoto Construction,"Milverton, Ikoyi Bourdillon Ikoyi Lagos",₦,"260,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7702,Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7703,Block Of Flats,Off Boudillion Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +7704,Land,Shoreline Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7705,Land,Mobolaji Johnson Street Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7706,Land, Ikoyi Lagos,₦,"340,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7707,4 Bedroom Semi Detached House With Bq,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +7708,Brand New 3 Bedroom Flat With Bq, Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Parkview +7709,Brand New 4 Bedroom Penthouse Maisonette With Bq, Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +7710,4 Bedroom Terrace House With Bq,Osborne Phase2 Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7711,Land,Lugard Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7712,Land,Bank Road And Macgregor Road Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7713,Land,Club Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7714,Land,Lugard Road Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7715,Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets,Banana Island +7716,Certificate Of Occupancy,"Thompson Avenue, Falomo Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7717,Govrnor's Consent,"Thompson Avenue, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +7718,4 Bedroom Duplex,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7719,4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7720,4 Bedroom Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets,Banana Island +7721,Governors Consent C Of O,Beside Shoreline Estate Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Ikoyi +7722,5 Bedroom Duplex,Road 217 Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,8 Toilets,Banana Island +7723,Glencove Terrace Osborne Foreshore,"6 Iroko Street, Osborne Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"165,000,000",1,0,0,4 beds,6 baths,6 Toilets,Foreshore +7724,4 Bedroom Maisonette With A Room Bq,Queens Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Onikoyi +7725,Land,@31 Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7726,Exquisite 4 Bedroom Terraced Duplex For Sale In Old Ikoyi,Off Bourdillon Avenue Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds, baths, Toilets,Old Ikoyi +7727,3 Bedroom Flat,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7728,6bedroom,Parkview Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,7 baths,7 Toilets,Parkview +7729,3 Bedroom Flat,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,2 baths,2 Toilets,Old Ikoyi +7730,4 Bedroom Detached Duplex For Sale,  Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7731,5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7732,Mixed Use Land Joint Venture,. Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7733,5 Bedroom Terraced Duplex For Sale, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets,Banana Island +7734,4 Bedroom Terraced Duplex With Bq,. Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +7735,"5 Bedroom Semi Detached For Sale In Parkview Estate, Ikoyi",Off Layi Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7736,Large Commercial Property,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7737,Four Units Of Five Bedroom Semi Detached House,Adeyemi Lawson Street Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +7738,5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7739,Mixed Use Land, kingsway Road By Rumens Road Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7740,Residential Land,Zone K Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7741,Residential Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7742,5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"670,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7743,5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7744,4 Bedroom Terraced Duplex With Bq,. Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7745,4 Bedroom Detached Duplex With Bq,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7746,5 Bedroom Detached Duplex For Sale,  Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7747,Residential Land,. Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7748,Residential Land For Sale," bourdilon, Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7749,5 Bedroom Detached Duplex For Sale, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7750,5 Bedroom Detached Duplex With Bq,. Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7751,3 Bedroom Flat For Sale,  Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +7752,2 Bedroom Flat For Sale, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,3 baths,3 Toilets,Banana Island +7753,1 Bedroom Mini Flat For Sale, Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,0 beds,2 baths,2 Toilets,Banana Island +7754,5 Bedroom Semi Detached Duplex With Governor's Consent,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7755,"2,025 Sqm Residential Land With C Of O",Zone B7; Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7756,Residential Land With C Of O,J Zone; Banana Island Ikoyi Lagos,₦,"435,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7757,5 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"780,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7758,4 Bedroom Terraced Duplex,Milverton Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +7759,Mixed Use Lands,Bank Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7760,5 Bedroom Semi Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7761,Residential Land For Sale, Banana Island Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7762,Residential Land For Sale,  Banana Island Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7763,Mixed Use Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7764,Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7765,Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7766,5 Bedroom Semi Detached Duplex For Sale," adeyemi Lawson Off Mcpherson, Old Ikoyi Ikoyi Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +7767,4 Bedroom Terraced Duplex For Sale," off Mcphson, Old Ikoyi Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7768,4 Bedroom House For Sale, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +7769,Residential Land,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7770,5 Bedroom Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Onikoyi +7771,4 Bedroom Semi Detached Duplex,. Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7772,5 Bedroom House For Sale,  Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7773,Land,Zone J Before Movano Court Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7774,Luxury Serviced 4 Bedroom Flat,Ocean Parade Towers Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +7775,Mixed Use Land,Ilabere Avenue Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7776,4 Bedroom Terraced Duplex,Ruxton Street Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7777,5 Bedroom Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"1,800,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7778,Flat For Sale,  Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7779,5 Bedroom Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"1,800,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7780,Residential Land,  Banana Island Ikoyi Lagos,₦,"520,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7781,5 Bedroom House,  Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7782,3 Bedroom Flat For Sale," off Joshua Okeowo Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +7783,4 Bedroom Terraced Duplex," off Bourdillon Road, Old Ikoyi Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7784,Newly Built And Contemporary Designed En Suite 5 Bedrooms Duplex With 2 Rooms Maid's Quarters,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets,Parkview +7785,4 Bedroom Duplex,Salisbury Court Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets,Parkview +7786,5bedroom Detached House With S/pool Table, Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +7787,1002 Sqm Land With Governor's Consent,Aso Street; Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7788,New | 5 Bedroom Fully Detached Duplex | Self Serviced,"Residential Area, Banana Island Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7789,3 Bedroom Apartment,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7790,Off Plan | 1 Bedroom Luxury Apartment | Serviced,Banana Island Road Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets,Banana Island +7791,Off Plan | Luxury 5 Bedroom Terrace Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7792,4 Bedroom Luxury Semi Detached Town Houses,Off Alfred Rewane Road 2nd Avenue Extension Ikoyi Lagos,₦,"480,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7793,Finished Luxury 4 Bedroom Terraced Triplex In Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7794,4 Bedroom Luxury Apartment,Off Alfred Rewane (kingsway Road) Ikoyi S.w Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7795,Newly Finished 3 Bedroom Apartment With Servant Quarters,Off Queens Drive Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7796,4 Bedroom Terrace Duplex,Off Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7797,An Ocean View 8 Bedroom Triplex With A Swimming Pool And 8 Rooms Bq,Jubril Aminu Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,10 baths,8 Toilets,Other Ikoyi +7798,Privately Gated 5 Bedroom Fully Detached Triplex,Off Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7799,4 Bedroom Terrace House,"Off Layi Bembe Road, Parkview Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7800,Stunning. Unique. And Very Upscale 6 Bedroom Fully Detached Triplex,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +7801,4 Bedroom Semi Detached Terrace | Off Plan,Off Osbourne Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7802,3 Bedroom Luxury Semi Detached Town Houses,Off Alfred Rewane Road 2nd Avenue Extension Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7803,An Ocean View Luxury 8 Bedroom Triplex,Jubril Aminu Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,10 baths,8 Toilets,Parkview +7804,Privately Gated 5 Bedroom Semi Detached Duplex,Residential Area Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7805,4 Bedroom Semi Detached Terrace | Off Plan,Off Second Avenue Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7806,Fully Furnished 3 Bedroom Luxury Penthouse,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7807,Exquisitely Finished 2 Bedroom Luxury Apartment,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,1 baths,2 Toilets,Banana Island +7808,Exquisitely Finished 3 Bedroom Luxury Apartment,Off Onikoyi Road Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7809,4 Bedroom Apartment,Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"7,200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +7810,Off Plan | 2 Bedroom Luxury Apartment | Serviced,Banana Island Road Banana Island Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +7811,Privately Gated 4 Bedroom Terrace Duplex,Turnbull Road Ikoyi S.w Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7812,Fully Furnished 3 Bedroom Luxury Apartment,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7813,3 Bedroom Luxury Apartment,Ocean Parade Estate Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7814,3 Bedroom Luxury Terraced Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +7815,Top Class 4 Bedroom Luxury Terrace Duplex,Off Alexander Road Ikoyi Lagos,₦,"280,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7816,30 Bedroom Luxury Hotel With Penthouse Suite,Off Osbourne Road Osborne Foreshore Estate Ikoyi Lagos,$,"9,000,000",0,0,0,10 beds,10 baths,10 Toilets,Foreshore +7817,Newly Finished 2 Bedroom Apartment,Off Queens Drive Ikoyi Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +7818,Luxurious 5 Bedroom Semi Detached 3 Floo House,New Ikoyi Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,7 beds,8 baths,7 Toilets,Other Ikoyi +7819,Bare Land, Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7820,4 Bedroom House,. Bourdillon Ikoyi Lagos,$,"1,600,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7821,Newly Built 5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7822,3 Bedroom Terraced Duplex With Bq,The Medici Terraces; Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +7823,4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,5 baths,6 Toilets,Banana Island +7824,Residential Land,Zone K Banana Island Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7825,4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,5 baths,5 Toilets,Banana Island +7826,Residential Land,Zone L Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7827,2 Bedroom Flat,. Banana Island Ikoyi Lagos,₦,"85,000,000",1,0,1,2 beds,2 baths,3 Toilets,Banana Island +7828,4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"360,000,000",1,1,1,4 beds,5 baths,5 Toilets,Banana Island +7829,5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7830,Residential Land,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7831,Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7832,Mixed Use Land,. Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7833,Residential Land,. Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7834,4 Bedroom Terraced Duplex," banana Island Road, Mojisola Onikoyi Estate, Ikoyi Lagos",₦,"190,000,000",0,0,0,4 beds,4 baths, Toilets,Onikoyi +7835,Residential Land," j 35 Residential Zone, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"630,000,000",0,0,0,0 beds,0 baths, Toilets,Banana Island +7836,Mixed Use Land, Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,0 beds,0 baths, Toilets,Banana Island +7837,Mixed Use Land, Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths, Toilets,Banana Island +7838,Residential Land,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7839,Mixed Use Land," close 104, Banana Island Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths, Toilets,Banana Island +7840,3 Bedroom Flat,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +7841,3 Bedroom Terraced Duplex," osborne Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",0,0,0,3 beds,3 baths,0 Toilets,Foreshore +7842,5 Bedroom Detached Duplex," mike Adenuga Crescent, Banana Island Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,0 Toilets,Banana Island +7843,4 Bedroom Terraced Duplex," osborne Foreshore Estate Phase Ii, Ikoyi Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikoyi +7844,5 Bedroom Detached Duplex,Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,4 baths,5 Toilets,Parkview +7845,6 Floors Office Space,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,9 baths,0 Toilets,Banana Island +7846,Luxurious 8bedroom Mansion At Osborne Ph1,Osborne Ph1 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,1,0,8 beds,8 baths,9 Toilets,Foreshore +7847,New 4 Bedroom Semi Detached Duplex + Bq With C Of O On 500 Sqm,Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +7848,Newly Built & Contemporary 5 Bedroom Detached Duplex + 1 Room Bq With C Of O,Mojisola Onikoyi Estate; Off Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7849,Luxurious 4 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths, Toilets,Old Ikoyi +7850,3 Bedroom House," maroko Close, Oyinkan Drive, Ikoyi Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +7851,Fully Serviced 4 Bedroom Flat + Bq & Swimming Pool With C Of O,Off Okotie Eboh; Off Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7852,Residential Land,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7853,Serviced 4 Bedroom Terraced Duplex Units With Servants Quarters,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7854,Residential Land, Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7855,5 Bedroom Semi Detached Duplex,. Ikoyi Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Ikoyi +7856,5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,6 baths,6 Toilets,Banana Island +7857,5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets,Banana Island +7858,"Land For Sale In Banana Island, Ikoyi, Lagos.",. Banana Island Ikoyi Lagos,₦,"400,000",0,0,0, beds, baths, Toilets,Banana Island +7859,Mixed Use Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7860,5 Bedroom Detached Duplex,Third Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7861,Newly Built 4 Bedroom Detached Duplex,Off Bourdillon Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7862,"The Amlads Place, Banana Island Road. (luxury 1 & 2 Bedroom Apartment","Prestigious Olori, Onikoyi, Banana Island Road Banana Island Ikoyi Lagos",₦,"52,000,000",1,1,0,1 beds,2 baths,2 Toilets,Banana Island +7863,Luxuury Tastefully Furnishd 3 Bedroom Flat With 1 Room Bq,Awolowo Road; Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,1,3 beds,4 baths,4 Toilets,Old Ikoyi +7864,5 Bedroom Detached Duplex,Off Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets,Onikoyi +7865,Commercial Land,Bourdilion; Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7866,4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7867,Mixed Use Land,"Web Road, By Kingsway Road Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7868,Mixed Use Land,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7869,Mixed Use Land,Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7870,Residential Land,. Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7871,5 Bedroom Detached Duplex With 2 Rooms Bq With Governor's Consent,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7872,Residential Joint Venture Land,Adeyemi Lawson; Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7873,Residential Land,"Osborne Phase 2, Osborne Osborne Foreshore Estate Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7874,1930 Sqm Joint Venture Land With C Of O,Block P Plot 11; Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7875,Land,Zone J43 Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,0 beds,0 baths,0 Toilets,Banana Island +7876,Land,Alexander Avenue Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7877,4 Bedroom Detached Duplex," eleko Close Off Macpherson Road, Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0,4 beds,4 baths,0 Toilets,Old Ikoyi +7878,Residential Land," phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7879,5 Bedroom Detached Duplex," end Avenue, Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,0 Toilets,Banana Island +7880,A 3 Bedroom Flat,Kosofe Road Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikoyi +7881,5 Bedroom Semi Detached Duplex,  Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,0 Toilets,Banana Island +7882,Mixed Use Land," thompson Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7883,6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"610,000,000",0,0,0,6 beds,6 baths,0 Toilets,Banana Island +7884,3 Bedroom Flat, off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,1,3 beds,3 baths,4 Toilets,Old Ikoyi +7885,5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,6 Toilets,Banana Island +7886,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,0 Toilets,Banana Island +7887,5 Bedroom Detached Duplex," 3rd Avenue, Banana Island Ikoyi Lagos",₦,"675,000,000",0,0,0,5 beds,7 baths,0 Toilets,Banana Island +7888,4 Bedroom Semi Detached Duplex," 2nd Street, Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds,3 baths,0 Toilets,Foreshore +7889,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +7890,Four Bedroom Terrace Duplex,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Foreshore +7891,4 Bedroom Terraced Duplex (off Plan)," alexander Road, Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikoyi +7892,7 Bedroom Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,1,7 beds,7 baths,8 Toilets,Parkview +7893,5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets,Banana Island +7894,4 Bedroom Semi Detached Duplex,. 2nd Avenue Extension Ikoyi Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Ikoyi +7895,4 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Parkview +7896,Luxurious 4 Bedroom Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,4 Toilets,Onikoyi +7897,Luxury 30 Bedroom Fully Furnished Guest House,2 Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7898,5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +7899,Almost Completed 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7900,Luxurious Newly Built Block Of Flats,. Ikoyi Lagos,₦,"120,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Ikoyi +7901,Cheapest Newly Built 2 Bedroom Flat Inside Banana Island,Mixed Use Zone Banana Island Ikoyi Lagos,₦,"90,000,000",1,1,0,2 beds,2 baths,3 Toilets,Banana Island +7902,1500sqm Plot Of Land,Gerard Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,2 beds,1 baths,1 Toilets,Old Ikoyi +7903,3 Bedroom Flat With Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Old Ikoyi +7904,Corner Piece Of Land Available,Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7905,Newly Built 4 Bedroom Duplex,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Onikoyi +7906,Contemporary Newly Redeveloped House In Old Ikoyi,Mcpherson Avenue Bourdillon Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Ikoyi +7907,Newly Built 3 Bedroom Serviced Apartment With A Room Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets,Old Ikoyi +7908,Waterfront Land,Queensdrive Bourdillon Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7909,Newly Built 5 Bedroom Spacious Semi Detached Duplex With A Room Bq,Off Laye Ajayi Membe Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Parkview +7910,Brand New 4 Bedroom Maisonette,Old Ikoyi Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Parkview +7911,Elegant 3 Bedroom Semi Detached House,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Ikoyi +7912,4 Bedroom Terrace Duplex,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7913,Exquisite 4 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,6 baths,6 Toilets,Parkview +7914,4 Bedroom Flat,Oakwood Residence Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7915,898sqm Land,Elm Street Osbourne Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7916,Tastefully Built 5 Bedroom Duplex,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +7917,"Waterfront 1500 M2 On Mahogany, Osborne","Mahogany Off Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7918,"5200 M2 & 2500 M2 Waterfront Plots On Acacia Drive, Osborne 2",Acacia Drive; Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +7919,Corner Piece 3500 M2 On Alexander Road/onikoyi Road,Alexandra; Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +7920,"10,700 M2 On Corner Of Rumens/bourdillon Road",Rumens Road; Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7921,5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7922,5 Bedroom Luxury House,Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7923,"Magnificent 5 Bedroom Fully Detached Mansion With Garrage, Gym On 4000sqm Land",Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7924,Architectural Master Designed Brand New 5 Bedroom Mansion,Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,350,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7925,1400 Square Meter Land,Onikoyi Parkview Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7926,2000 Square Meter Land In Ikoyi,Lugard Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7927,1500 Sqm Land,Osborne 2 Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7928,1800 Sqm Land,Adeyemi Lawson Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7929,1004 Square Meter Land,Cooper Road Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7930,500 Square Meter Land,Ruxton Street Gerard Road Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7931,Two & Three Bedroom Flat,Off Aso Road Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Parkview +7932,A Plot Of Land Measuring 8000sqm,Alakija Road Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7933,A Plot Of Land Measuring 1130sqm,Kingsway Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7934,A Plot Of Land Measuring 2800sqm,Ruxton Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7935,A Plot Of Land Measuring 2200sqm,Maroko Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7936,A Plot Of Land Measuring 2200sqm,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7937,A Plot Of Land Measuring 2600sqm,Iru Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7938,A Plot Of Land Measuring 1650sqm,Club Road Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7939,A Plot Of Land Measuring 2200sqm,Lugard Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7940,A Nos Of 500sqm Plots Side By Side,Off Kingsway Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7941,"Newly Built And Well Finished 5 Bedroom Spacious Detached Duplex With A Room Bq, Fitted Kitchen, Etc.",Off Banana Island Road; Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +7942,3 Bedrooms House With C Of O,Norman Williams; Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +7943,Land, Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Parkview +7944,"4,000sqm Prime Land",Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7945,A Well Position Plot Of Land Measuring 500sqm,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7946,Newly Built And Superbly Finished 4 Bedroom Fully Serviced Apartment With 2 Rooms Bq,Off Orsborne Road Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7947,Newly Built With State Of The Art Finished 5 Bedroom Detached Duplex With A Room Bq,2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7948,Land,Bank Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7949,3 Bedroom Flat For Sale, awolowo Road Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +7950,4 Bedroom Semi Detached Duplex For Sale, oniru Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +7951,4 Bedroom Terraced Duplex For Sale, off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikoyi +7952,5 Bedroom Semi Detached Duplex With In Built Bq, zone H Plot 40; Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +7953,Lovely 2 Bedroom Flat For Sale,Banana Island Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +7954,Luxury 5 Bedroom Detached Duplex With Excellent Finish,Off Mike Adenuga Crescent; Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7955,Luxury 8 Bedroom Detached Mansion,Off Mike Adenuga Drive Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,8 beds,8 baths,9 Toilets,Banana Island +7956,Newly Constructed And Tastefully Finished 3 Bedroom Serviced Apartment With Bq,Chris Ali Street Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +7957,Mini Estate Of 4nos Of 4 Bedroom Detached Houses On 4500sqm,Off Bourdilloin Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +7958,"Newly Built (ongoing Project) Waterfront 3 Bedroom Serviced Apartment With A Room Bq Each, And Fitted Kitchen",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +7959,Lovely Built 5 Bedroom Semi Detached House,Parkview Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7960,4 Bedroom Duplex,. Dolphin Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7961,Four (4) Bedroom Terrace Duplex,Mekunwen Road Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7962,Tastely Finished 3 Bed Room Flat In Banana Island For Sale,3rd Avenue Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +7963,Luxury Built 4 Bedroom Apartments,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +7964,3 Bedroom Terrace With Boys Quater,Milverton Road Gerard Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7965,Exquisitely Finished 5 Bedroom Fully Detached House,Banana Island Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7966,Luxurious 4 Bedroom Terrace Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +7967,A 3 Bedroom Flat Fully Furnished,Off Queens Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +7968,An Elegant Duplex,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,8 beds,5 baths,0 Toilets,Banana Island +7969,A Mansion At Banana Island,. Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7970,4 Bedroom Detached Duplex, . Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +7971,Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7972,Units Of 4 Bedroom Serviced Apartments,"Probyn Street, Old Ikoyi Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +7973,Brand New Luxurious 5 Bedroom Duplex,Residential Zone Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7974,Exotic 5 Bedroom Detached Duplex With Swimming Pool,"Off 5th, Avenue Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7975,Lovely 4 Bedroom Terraced Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7976,Exquisite Five Bedroom Semi Detached Duplex,Zone H Plot 40 Ogun Street Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7977,Exquisitely Built 8 Bedroom Mansion,Zone C Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,8 beds,9 baths,9 Toilets,Banana Island +7978,Lovely 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +7979,Newly Built 5 Bedrooms Corner Piece Semi Detached Duplex With Bq,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Onikoyi +7980,Luxury 5 Bedroom Waterfront Mansion With Guest Chalet,2nd Avenue Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7981,Luxury Block Of Five Flats, Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +7982,Plots Of Land, Old Ikoyi Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +7983,4 Bedroom Terraced Duplex With A Room Bq,Oshbore Foreshore Estate Phase 1 Ikoyi Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +7984,"1,036m2 Bare Land At Copper Road Ikoyi","1,036 Meter Square Bareland @ Copper Road Ikoyi Lagos Ikoyi Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +7985,Duplex Penthouse,Gerard Road Gerard Road Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +7986,Carcass 2 Bedroom Flat,Mixed Used Zone Banana Island Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +7987,5 Bedroom Detach House | Off Plan, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7988,Land For Sale,Parkview Estate Off Ago Palaceway Okota Parkview Estate Ikoyi Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +7989,3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +7990,Shop,Falomo Falomo Ikoyi Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +7991,5 Bedroom Semi Detached House | Off Plan, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +7992,Apartments For Sale At Banana Island Letout.com.ng,Banana Island Banana Island Ikoyi Lagos,₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets,Banana Island +7993,Luxury 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +7994,"4 Bedroom Terrace + Bq,", Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +7995,Land,Zone J Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7996,4 Bedroom Duplex With Bq,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +7997,Land,Zone J Banana Island Ikoyi Lagos,₦,"4,080,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +7998,Beautifully Finished 3 Bedroom Flat,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +7999,Fully Detached 7 Bedroom House With 5 Bedroom Boysquarters, Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets,Parkview +8000,4000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8001,Top Notch 4 Bedroom Duplex,Ilabere Avenue Ikoyi S.w Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8002,Beautifully Furnished 8 Bedroom Castle,Banana Island Estate Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,9 Toilets,Banana Island +8003,Land,Zone B Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8004,6 Bedrooms Luxuriously Built House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +8005,5 Bedroom Detached Duplex,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +8006,Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8007,10 Bedroom Duplex, Ikoyi Lagos,₦,"3,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8008,An Unique And Tremendously Finished 3 Bedroom Apartment,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8009,3 Bedroom Duplex, Gerard Road Ikoyi Lagos,₦,"9,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8010,4 Bedroom Terrace Duplex,Milverton Rd. Ikoyi Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +8011,Luxury 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +8012,600m² Of Land For Sale At Osborn Phase 2,Osborn Phase 2 Ikoyi Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8013,801sqm Land,"Osborne Phase 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8014,Luxurious Mega Mansion,Off 3rd Avenue Banana Island Ikoyi Lagos,$,"3,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8015,"Luxury 3 Units Of 4 Bedroom Terrace Duplex In The Exclusive Osborne 2 Estate, Ikoyi",Orsborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8016,Tastefully 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8017,Exquisite Four Units Of 3 Bedroom Flats,Onikoyi Road Off Banana Island Ikoyi Lagos State Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +8018,Brand New 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8019,3 Bedroom Flat,Queens Drive Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8020,6 Units Of 3 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +8021,"Water Front 1,604sqm Land","Royal Palm Drive, Osborne Phase 2 Ikoyi Lagos",₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8022,5200m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8023,898m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8024,1500m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8025,Corner Piece 3500m2 Of Land,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8026,"10,700m2 Of Land",Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8027,Land,Zone J Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8028,Land,Zone M Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8029,2300 Sqm With Embankment On Royal Palm Drive,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8030,Newly Built And Tastefully Finished Wing Of Duplex With 2 Room Bq,"Parkview, Ikoyi Parkview Estate Ikoyi Lagos",₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8031,Well Finished 5 Bedroom Terrace For Sale At Ikoyi,"Plot 8, Iru Close Off Queens Drive Ikoyi Lagos",₦,"195,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8032,3 Bedroom Apartment For Sale At Ikoyi,Adeyemi Lawson Street Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8033,Land, Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8034,4 Bedroom Detached House + 2 Rooms Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +8035,2000sqm Of Land,Banana Islands Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8036,2000sqm Of Land,Banana Islands Ikoyi Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8037,Bare Land Measuring 1000sqm,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8038,Land, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8039,Land (joint Venture), Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8040,Land, Banana Island Ikoyi Lagos,₦,"1,620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8041,3000sqmts Of Land,Bank Road Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8042,Land (joint Venture),Zone L Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8043,Spacious Furnished 5 Bedroom Fully Detached House For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8044,Land, Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8045,Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8046,3700m2 Of Land At Ikoyi,George Street Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8047,5 Bedroom Detached House With Bq, Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +8048,5 Bedroom Detached House With Bq,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8049,Newly Built Luxury Finished 4 Bedroom Terrace Duplex With Swimming Pool,Osborne Phase2 Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Ikoyi +8050,Brand New 2 Bedroom Luxury Apartment,Off Layi Obembe Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Parkview +8051,700 Square Meter Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8052,Block Of Serviced Luxury Flats,Gerard Road Gerard Road Ikoyi Lagos,₦,"11,000,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +8053,Land, Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8054,Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8055,Luxury High Rise 27 Units Of 3 Bedroom Flats And 2 Units Of 5bedroom Maisonette,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,300,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8056,Land, Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8057,2000 Sqm Land For In Parkview Ikoyi,N/a Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8058,Land,Glover Road Ikoyi Lagos. Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8059,Land,J 46 Banana Island Ikoyi Lagos,₦,"1,680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8060,Waterproof Land Measuring 1400 Square Meters,Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8061,Land,Banana Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8062,Luxury Built 4 Bedroom Terrace Duplex,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikoyi +8063,5 Bedroom Penthouse Suite, Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8064,"New 4 Bedroom Terrace House + Bq,","Off Gbenga Ashafa, Parkview Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8065,2800sqm Joint Venture Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8066,Land,Shoreline Estate Off Turnbull/banana Island Road. Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8067,Land,Zone J Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8068,Land, Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8069,Storey Building, Old Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +8070,Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8071,3 Bedroom Luxury Flat With A Room Bq,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8072,500sqm Land,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8073,Tastefully Finished 4 Bedroom Luxury Terrace Apartment With A Room Boys Quarter,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8074,Brand New 3 Bedroom Luxury Flat With Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8075,Block Of Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8076,Land, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8077,Land (joint Venture),Zone E Banana Island Ikoyi Lagos,₦,"340,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8078,"2,000sqm Of Land At Lugard Road, Ikoyi",Lugard Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8079,Brand New 6 Bedroom Fully Detached House With 2 Rooms Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +8080,Land For Sale At Osborne Foreshore Estate Ikoyi Lagos,Udi Street Osborne Foreshore Estate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,1 beds,0 baths,1 Toilets,Banana Island +8081,3 Bedroom Luxury Service Flat,Shalom Apartment Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8082,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8083,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8084,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8085,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8086,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8087,Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8088,4 Bedroom House (pending Construction),Banana Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8089,Fully Detached 5 Bedroom House ( Off Plan),Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8090,5 Bedroom Duplex | Off Plan, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8091,Land,J 35 Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Banana Island +8092,Land,Lugard Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8093,8 Units Of 3 Bedroom With Bq,Ikoyi Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Ikoyi +8094,3 Bedroom Flat, Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8095,667sqm Land, Banana Island Ikoyi Lagos,₦,"325,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8096,917sqm Land, Banana Island Ikoyi Lagos,₦,"447,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8097,"A 1,414sqm Land","Off Queen's Drive, Iru Close Ikoyi S.w Ikoyi Lagos",₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8098,10 Bedroom Duplex,Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"2,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Foreshore +8099,Land Measuring 2940sqm,Mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8100,5 Bedroom Duplex,"Off Reeve,old Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +8101,"2000 Sqm Waterfront Land On Acacia Road,",Acacia Road Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8102,Land,Zone J Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8103,Land(joint Venture),Banana Island L3 Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8104,"Urgent Sale*36 Room Luxurious Hotel Situated On 1,450 Square Meter In Ikoyi With Diverse Cuisine Options, First Class Meeting & Business Facilities, Swimming Pool Asking Price: N2.5b Negotiable",Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Onikoyi +8105,Land, Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8106,2 Blocks Of 26 (units) 3 Bedroom Flats With 1 Room Bq Each Plus Swimming Pool,"Gerrard Road, Ikoyi Gerard Road Ikoyi Lagos",₦,"9,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8107,4 Bedroom Luxury Terrace House + Bq,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8108,5bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8109,6 Bedroom Fully Detached House + 3 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,6 beds,6 baths,7 Toilets,Parkview +8110,"A 1,936.279sqm Land","Plot 20, Zone K Banana Island Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8111,Land (joint Venture),Lugard Road By The George Hotel Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8112,Land,"Banana Island, Bamisoro, On Mike Adenuga Area Ikoyi Lagos",₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8113,4 Bedroom Duplex,Off Alexandra/bourdilon Street Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8114,Land (joint Venture),Zone G Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8115,5 Units Of 4 Bedroom Terrace Duplex,"Turnbull Road, Ikoyi, Lagos Gerard Road Ikoyi Lagos",₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8116,4 Bedroom Duplex With A Bq,Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8117,4 Bedroom Terrace Duplex,"Osbourne Phase 2 Estate, Ikoyi. Osborne Foreshore Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +8118,3 Units Of 5 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"960,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8119,839sqm Land At Abacha Estate, Abacha Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8120,8000 Sqm Of Land For Sale At Ikoyi,George Street Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8121,Fenced 9500sqm Of Land At Ikoyi,Macdonald Street Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8122,9 Units Of 4 Bedrooms With A Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8123,Land, Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8124,House,Waterfront At Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8125,5 Bedroom Semi Detached House,Bank Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8126,1500sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Banana Island +8127,Land, Banana Island Ikoyi Lagos,₦,"365,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8128,5 Bedroom Terraced Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8129,"A 1,500sqm Land",Eko Atlantic City Ikoyi S.w Ikoyi Lagos,$,"2,625,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8130,Newly Built 3 Bedroom Flat,Abacha Abacha Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8131,12 Units Of 4 Bedroom & One Bedroom Town House ( Off Plan),Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Old Ikoyi +8132,"A 1000 Sqm Land On Temple Road,ikoyi . Lagos",Temple Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8133,Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8134,"A Block Of Six Flats With Bq On Gerald Road,ikoyi.lagos",Gerald Road Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +8135,A Tastefully And Well Finished 4 Bedroom Terrace,Bode Olajumoke Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +8136,A Fantastic And Newly Finished 4 Bedroom Terrace,Queen's Drive Macpherson Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +8137,A Nice And Newly Built 5 Bedroom Semi Detached Duplex,Off Eko Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Parkview +8138,A Newly And Fantastically Finished 5 Bedroom Town Houses With Fitted Kitchen,Cooper Bourdillon Ikoyi Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +8139,"A Plot Of Land Measuring 1000sqm At Ruxton,ikoyi,lagos",Ruxton Str Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8140,3 Bedroom Duplex, Ikoyi Lagos,₦,"5,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8141,Nice 3 Bedrooms Flat,. Ikoyi S.w Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Ikoyi +8142,Newly Built 12 Units Block Of 3 Bedroom Flat,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8143,4 Bedroom Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,4 Toilets,Other Ikoyi +8144,Land Fo Sale,J Close Series Water Front Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8145,"A 4,000sqm Of Land",Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8146,Water Front Land,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8147,Land, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8148,7 Bedrooms Duplex, Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,7 beds,7 baths,8 Toilets,Parkview +8149,Land (joint Venture),Alexander Bourdillon Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8150,500 Sqm Of Land For Sale At Old Ikoyi,Reeve Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8151,Land, Banana Island Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8152,Land,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8153,Land,Gerard Road Old Ikoyi Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8154,Office Complex,Alfred Rewane Road Old Ikoyi Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8155,Block Of 6 Flats At Ikoyi,7 Sumbo Jibowu Street Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8156,5 Bedrrom Town House, Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +8157,24 (units) 4 Bedroom Apartments With 1 Room Bq Each.,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8158,4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8159,4 Bedroom Terraced Duplex,Ruxtn Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +8160,Serviced 5 Bedroom Fully Detached Duplex With A Study Room,Cameron Green 2nd Avenue Extension Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +8161,5 Bedroom Terraced Duplex For Sale,Ir Close Old Ikoyi Ikoyi Lagos,₦,"205,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +8162,3 Bedroom Flat,Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8163,3 Bedroom Flat,Onikoyi Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets,Onikoyi +8164,Lovely 5 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8165,2900 Sqm Of Land For Sale At Old Ikoyi,Temple Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8166,Land,Onikoyi Along Banana Island Road Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8167,Luxury 5 Bedroom Terrace Duplex,"Off Alexandra Old Ikoyi, Old Ikoyi Ikoyi Lagos",₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8168,Royal Oak Terrace Is A Development Of 4bedroom Terrace Apartments,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8169,5 Bedroom Semi Detached Duplex,Around The Queens Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets,Old Ikoyi +8170,A 5 Bedrooms Detached Duplex With Two Bedroom Bq,Onikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8171,655sqm Land, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8172,4285 Sqm Of Land For Sale At Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8173,Sparkling 4 Bedroom Terrace Duplex At Ikoyi,"Royal Palm Drive, Osborne Foreshore, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8174,1000sqm Land, Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8175,A Wing Of 3 Bedroom Maisonette,"Olori Mojisola Street, Onikoyi Extension Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Onikoyi +8176,5 Bedroom Mansion, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8177,Land,Zone J Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8178,Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"5,110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8179,Land,"Zone L, Waterfront Land. Banana Island Ikoyi Lagos",₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8180,5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8181,Land,Cameron Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8182,631sqm Land, Banana Island Ikoyi Lagos,₦,"307,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8183,Dry Land With Existing Building For Sale,Kingsway /alfred Rewane Road Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8184,5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8185,6 Bedroom Detached House With Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +8186,3 Bedroom Flat,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8187,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8188,3 Bedroom House For Sale At Ikoyi,Okotie Eboh Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8189,Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8190,Well Finished 2 Bedroom Pent House Flat For Rent,Park View Estate Ikoyi Lagos,₦,"5,000,000",0,0,0,2 beds,2 baths, Toilets,Other Ikoyi +8191,Land, Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8192,Land, Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8193,6 Bedroom Detached Duplex,M Zone Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +8194,Land,P58 Banana Island Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8195,"3 Bedroom Masionette With Bq, Elevator, Pool And Gym",Banana Island Extension Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8196,Land,J Close Series Water Front Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8197,An Acre Land,Marocco Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8198,4 Bedroom And 3 Bedroom Luxury Apartment, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8199,4 Bedroom Luxury Terrace House, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8200,Newly Built And Tastefully Finished 6 Bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"490,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +8201,4 Bedroom Detached House,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8202,Newly Built 4bedroom Luxury Terrace House With A Maid's Room For Sale At Old Ikoyi,Alexander Old Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8203,5 Bedroom Terrace House With A Room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8204,1200 Sqm Of Land For Sale At Ikoyi,2nd Avenue Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8205,2 Bedroom Flat,Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Parkview +8206,Newly Built 5 Bedrooms Luxury Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8207,4 Bedroom Terrace Duplex,Living Gold Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8208,3650 Sqm Of Land For Sale At Ikoyi,Aromire Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8209,4396 Square Metres Of Land,J Close Series Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8210,Land For Sale,Acacia Drive Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8211,Block Of 3 Bedroom Flats,Banana Island Road Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +8212,Land,Olagunsoye Oyinlola Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8213,2 Units Of 5 Bedroom Luxury Detached House With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8214,Land For Sale,Off Shore Osborne Foreshore Estate Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8215,"5 Bedrooms Fully Detached House With 2room Boy's Quarter At Parkview Estate,ikoyi.",Park View Estate Ikoyi Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8216,6 Bedroom Detached House,Off Thompson Street Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,6 beds,0 baths,0 Toilets,Old Ikoyi +8217,Newly Built 4 Bedrooms Luxury Terrace House,"Osborne Foreshore Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8218,Tastefully Furnished Luxurious 2 Bedrooms Service Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +8219,26 Units Of 3 Bedroom Flats,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,520,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +8220,Exclusively Finished 2 Bedroom Apartment In A Block Of Flat,Banana Island Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,2 beds,2 baths,2 Toilets,Banana Island +8221,"3 Bedroom Masionette With Bq, Elevator, Pool And Gym",Banana Island Extension Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8222,Luxury 4 Bedroom Terrace Duplex,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"127,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8223,5 Bedroom Duplex +penthouse +bq,Banana Island Banana Island Ikoyi Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8224,Land,J 35 Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8225,Land,"Roxton Street, Ikoyi. Ikoyi S.w Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8226,Brand New Tastefully Finished 6 Bedroom Fully Detached House With Bq, Banana Island Ikoyi Lagos,₦,"620,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +8227,Brand New 4bedroom Luxury Semi Detached House For Sale.,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8228,800sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Banana Island +8229,Land, Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8230,3200 Sqm Of Land At Cameron,Cameron Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8231,Blocks Of Luxury 26nos Of 3bedroom Flats On 13 Floors,Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8232,"Newly Built And Tastefully Finished 4 Bedroom Luxury Terrace House With A Room Boy's Quarter At Parkview Estate, Ikoyi.",Park View Estate Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8233,A Very Good Land Off Awolowo Road., Awolowo Road Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8234,Very Catchy Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8235,14 Bedroom Detached House, Ikoyi Lagos,$,"3,200,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8236,4 Bedroom Terrace Houses With 1 Unit Pent House With Bq At Osborne 2,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8237,Land At Banana Island,At Banana Island Road Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8238,4 Bedroom Terraced Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8239,5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8240,3 Bedroom Detached House, Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Foreshore +8241,Block Of 4 Units 3 Bedrooms Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +8242,Land,Ogun Street Osborne Foreshore Estate Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8243,3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Old Ikoyi +8244,Land At Banana Island Ikoyi,G5 Street Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8245,2800 Sqm [email protected] Gerald Road Ikoyi,Gerald Road Ikoyi Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8246,Land,Zone Q Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8247,28 Luxury Flats For Sale,Dolphin Estate Dolphin Estate Ikoyi Lagos,$,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8248,Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8249,4 Bedroom Terrace House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8250,Serviced 4 Bedroom Semi Detached House,Orsborne Phase 1 Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8251,5 Bedroom Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8252,4 Bedroom Terrace House,Orsborne Phase 1 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8253,Land At Amen Estate Phase Ii,Nile Banana Island Ikoyi Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8254,Land,Shoreline Estate Onikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8255,Land,Opposite Adenuga's House Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8256,5 Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +8257,Land,Olagunsoye Oyinlola Street Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8258,"Ikoyi, 4 Bedroom Detached House, C Of O",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8259,Land,Royal Palm Avenue Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8260,A 3 Bedroom With Bq,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"220,000,000",0,0,0,3 beds,3 baths,3 Toilets,Banana Island +8261,Land,Maroko Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8262,5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"231,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +8263,Luxury 3 Bedroom Serviced Flat,Banana Island Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8264,3 Bedroom Luxury Service Flat With A Maid Room,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8265,5 Bedroom Semi Detached House With 2 Room Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8266,5 Bedroom Semi Detached House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8267,4 Bedroom Terrace House With A Room Bq,Osborne Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8268,Luxury 5bedroom Terrace House,Falomo Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +8269,Exquisitely Furnished 8 Bedroom Mansion,Osborn Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,8 baths,9 Toilets,Foreshore +8270,6 Bedroom Exquisitely Finished Detached House,2nd Avenue Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Ikoyi +8271,Land (joint Venture), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8272,3 Bedroom Flat At Banana Island.,3rd Avenue Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Ikoyi +8273,A Tastefully Finished Mansion, Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8274,4 Bedroom Terrace Duplex,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +8275,House, Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Banana Island +8276,4 Bedroom Town House And Penthouse In Ikoyi,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8277,Lovely 6 Bedroom Detached Duplex At Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +8278,8 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"5,200,000,000",0,0,0,8 beds,0 baths,0 Toilets,Banana Island +8279,5 Bedroom House, Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +8280,Land At Amen Estate Ii,Nile Banana Island Ikoyi Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8281,2 Bedroom Flat+bq At Ikoyi,Queens Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Onikoyi +8282,Mini Estate,Glover Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +8283,4 Bedroom Semi Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8284,Newly Built 4 Bedroom Duplex,"3b Oroke Drive Off Queens Drive, Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,5 beds,5 baths,3 Toilets,Other Ikoyi +8285,Twin Duplexes Furnished With Acs And Jacuzzis At Abacha Estate Ikoyi,Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Ikoyi +8286,Newly Built 4 Bedrooms Duplex,Off Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8287,Tastefully Finished New 5bedroom Duplex At Banana Island Ikoyi,Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8288,Lovely 5 Bedrm Duplex,"Ikoyi Obalende, Lagos, Lagos Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikoyi +8289,Distressed Sale 4 Bedroom Semi Detached House + Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,6 baths,6 Toilets,Banana Island +8290,Ikoyi 1200 Sqm Shoreline Estate Price 270m Net,Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8291,Land,Lugard Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8292,A 1000sqm Land,Roxton Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8293,5 Bedroom Detached House With Bq,Off 5th Avenue Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8294,Lovely 4 Bedroom Detached Duplex,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,0 Toilets,Other Ikoyi +8295,8 Bedroom Fully Detached Edifice,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,8 Toilets,Banana Island +8296,15 Units 3 Bedroom Flat Ensuite With Bq,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"2,500,000,000",0,0,0,3 beds,4 baths,0 Toilets,Other Ikoyi +8297,Well Built 5br Detach Duplex +1maid Room.,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"220,000,000",0,0,0,6 beds,5 baths,0 Toilets,Other Ikoyi +8298,"5bedroom Well Built Full Detach,.","Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"260,000,000",0,0,0,5 beds,6 baths,0 Toilets,Other Ikoyi +8299,Newly Built All Ensuite 4bedroom Terrace With Bq,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"1,000,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Ikoyi +8300,"Prime Water Front Bare Land Measuring 1,800sqm",Ogun Street Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Foreshore +8301,"Prime Bare Land Measuring 1,500sqm","Block 3, Plot 5, Osborne Foreshore Estate Ikoyi Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Foreshore +8302,"Prime Bare Land Measuring 1,000sqm",Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"265,000,000",0,0,0, beds, baths, Toilets,Onikoyi +8303,1000 Square Meters Of Land,"Eti Osa, Lagos Ikoyi Lagos",₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8304,Land,Eti Osa Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8305,Land,Bourdillon / Rumen Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8306,Land,Onikoyi Parkview Estate Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8307,5 Bedroom Detached Duplex,Club Road Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Ikoyi +8308,Land,Elm Street Osborne Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8309,4 Bedroom Terrace Duplex,Layi Ajayi Bembe Street. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8310,4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +8311,Exclusively Finished 2 Bedroom Apartment,Zone Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +8312,3 Bedroom Flat,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8313,5bedroom Semi Detached House,Bourdillon Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8314,3 Bedroom Flat,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8315,4 Bedroom Terraced Duplex,Ruxtn Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +8316,3 Bedroom Flat,Onikoyi Street Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets,Onikoyi +8317,5 Bedroom Semi Detached Duplex,Queens Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +8318,Land,Adetokunbo Ademola Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8319,Land (joint Venture),J15 Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8320,Block Of Flats,Okotie Eboh Close Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8321,4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"7,500,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +8322,Fenced Two Plots Of Land,"Aja, Eti Osa Ikoyi Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8323,Land,Eti Osa Ikoyi Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8324,3 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8325,2 Bedroom Penthouse Duplex, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +8326,3 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,2 baths,3 Toilets,Banana Island +8327,2 Bedroom Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,1 baths,2 Toilets,Banana Island +8328,Land,Eti Osa Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8329,8 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"5,200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8330,Luxury 3 Bedroom Apartment,"2nd Avenue, Ikoyi Abacha Estate Ikoyi Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8331,4 Bedroom Terrace Duplex,Alade Odonewu Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +8332,En Suite 3 Bedroom Serviced Apartment,Bourdillon Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Ikoyi +8333,Well Upgraded 4 Bedroom Serviced Apartment,"Ikoyi , Lagos. Ikoyi Lagos",₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8334,4 Bedroom Terrace House With Bq,"Solomon Court,mojisola Onikoyi Banana Island Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8335,4 Bedroom Terrace House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8336,5 Bedroom Detached House With Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8337,5 Bedroom Detached House With Bq,"Mojisola Onikoyi Off Banana Lsland, Ikoyi. Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8338,5 Bedroom Semi Detached Duplex With A Room Bq,Zone A Banana Island Ikoyi Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +8339,5 Bedroom Detached Duplex,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8340,3 Bedroom Maisonette,Olori Mojisola Street Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8341,3 Bedroom Flat On 13 Floors,Gerrard Road Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8342,Mansion,Road C Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,8 beds,8 baths,9 Toilets,Banana Island +8343,3 Bedroom Luxury Flat In Awolowo Towers,"Awolowo Road Ikoyi, Lagos Nigerian Ikoyi Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8344,3 Bedroom Apartment,Banana Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8345,4 Bedroom Terrace House,Solomon Court Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8346,7 Bedroom Mansion, Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +8347,2nos 5 Bedroom Detached Houses, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8348,7 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,7 beds,0 baths,0 Toilets,Banana Island +8349,5 Bedroom Detached Duplex With Bq, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8350,7 Bedroom Detached House,Street Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,7 beds,7 baths,8 Toilets,Parkview +8351,Land,Nativity Parkview Estate Ikoyi Lagos,₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8352,Land, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8353,3 Bedroom Apartment With 1 Room Bq, Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,3 beds, baths, Toilets,Old Ikoyi +8354,5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8355,3 Bedroom Flat, Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8356,Massive 4bedroom Terrace,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +8357,Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8358,Land,Plot J60 Banana Island Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8359,Land,Lagidi Ayorinde Street Behind Mobil Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8360,Land,Adetokunbo Ademola Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8361,Land, Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8362,Land,Zone D10 Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8363,Land,Zone D10 Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8364,Block Of Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Banana Island +8365,3bed Room Flat,"Olori Majishola Street Offf Banana Lsland Road, Ikoyi S.w Ikoyi Lagos",₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8366,4 Bedroom Flat + Bq,"Okotie Eboh , Ikoyi S.w Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8367,6 Units Of Terrace Houses,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8368,6 Units Of Terrace Houses,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8369,Plot Of Land,Parkview Parkview Estate Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8370,Land, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8371,Land, Bourdillon Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8372,Land, Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8373,Land, Abacha Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8374,5 Bedrooms Detached House, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8375,4 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8376,4 Bedroom Apartments(shell Units),Banana Island Road Banana Island Ikoyi Lagos,₦,"94,500,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8377,6 Bed Detached House + Bq,Onikoyi Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +8378,4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8379,4 Bedroom Townhouse,Off Glover Street Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8380,5bedroom Detached House,"Osborne Phase Ii, Osborne Foreshore Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,8 beds,8 baths,8 Toilets,Foreshore +8381,C Of O Available,George Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Parkview +8382,5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,7 Toilets,Parkview +8383,4 Bedroom Apartment,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8384,43 Bedroom Hotel,Queens Drive Oyinkan Abayomi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8385,Luxury 4 Bedrooms Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8386,3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,4 baths,4 Toilets,Old Ikoyi +8387,2 Bedroom Flat/ Apartment, Old Ikoyi Ikoyi Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +8388,2 Bedroom Flat, Ikoyi S.w Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Ikoyi +8389,Land,Zone J 61 Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8390,Land, Banana Island Ikoyi Lagos,₦,"60,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8391,Land, Banana Island Ikoyi Lagos,₦,"60,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8392,Land,Zone R Plot 9 Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8393,Land,Zone E J44 Waterfront Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8394,Hotel, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8395,Land,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8396,Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8397,4 Bedroom Terraced Apartment With A Room Bq, Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +8398,Land ( Joint Venture ),Jamestown's George Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8399,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8400,6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,8 baths,8 Toilets,Banana Island +8401,5 Bedrooms Semi Detached Duplex,Club Road Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +8402,4 Bedroom Flat,Bourdillon Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8403,4 Units Of Luxury 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8404,Very Nice And Well Finished 5 Bedroom Terrace House With A Room Attached Boys Quarters,Parkview Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8405,Superb 6 Bedroom Fully Detached Mansion, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +8406,Land,Zone C Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8407,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8408,Land ( Joint Venture ),Osborne Phase 2 Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8409,Land ( Joint Venture ),Osborne Phase 2 Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8410,Land ( Joint Venture ),Osborne Phase 1 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8411,Land ( Joint Venture ),James George Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8412,Land ( Joint Venture ),Along Onikoyi Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8413,Land, Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8414,3 Bedroom Apartment, Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Ikoyi +8415,2 Bedroom Apartment,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,2 beds,0 baths,0 Toilets,Banana Island +8416,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8417,4 Bedroom Terraced Duplex With Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8418,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8419,"3,500 Square Metres Of Land",Alexander Road Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8420,Serviced 3 Bedroom Flat,Adeyemi Lawson Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8421,4 Bedroom Terrace House,Sir Tony Eremoselle Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets,Parkview +8422,4 Bedroom Terrace Duplex,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +8423,Land ( Joint Venture ),Zone M24 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8424,Newly Built 2 Blocks Of 26nos Of 3 Bedroom Luxury Flats Serviced,Old Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8425,Newly Built 2 Bedrooms Luxury Flats Serviced With Boys Quarters,Queens Drive Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets,Old Ikoyi +8426,3 Bedroom Duplex,Rustin Road Lagos State Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8427,4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8428,3 Bedroom Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"84,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8429,Lovely 3bedroom Terrace Duplex,"Milverton Street, Old Ikoyi Ikoyi Lagos",₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8430,Land 400sqm In South/west,South/west Ikoyi Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8431,Filling Station,Road Falomo Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8432,5 Bedroom Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"310,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Ikoyi +8433,4 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8434,Commercial Property,Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8435,Water Front Land,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8436,4 Bedroom Dedtched House,Off Normal Williams Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8437,4 Bedroom Detached House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8438,A Block Of 2 Units 4 Bedroom And 4 Units 3 Bedroom With Bq,3rd Avenue Banana Island Ikoyi Lagos,₦,"1,350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8439,4 Bedroom Detached Duplex With Mini Flat Bq,Alhaji Bashorun Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8440,Brand New And Well Finished 3 Bedroom Flat With Bq,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8441,Tastefully Finished Blocks Of Luxury 26 Nos Of 3 Bedroom Flats,"Gerrard Road, Ikoyi Ikoyi Lagos",₦,"8,000,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8442,4 Bedroom Bungalow With 2 Rooms Bq, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Old Ikoyi +8443,2 Bedroom Apartment,Road 107 Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,2 beds,0 baths,0 Toilets,Banana Island +8444,4bedroom Detached House With 1room Bq, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8445,5bedroom Detached House With 1room Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8446,3 Bedroom Flat,Closed Road Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +8447,Newly Renovated Detached Building Along Raymond Njoku Ikoyi,Raymond Njoku Street Sw Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8448,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8449,Land ( Joint Venture ),"Plot 9, Close 1 & 2 Banana Island Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8450,Land ( Joint Venture ),Plot Qa1 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8451,Land ( Joint Venture ),Osborne Phase 1 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8452,Land,King George Road Onikan Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8453,Land ( Joint Venture ),0nikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8454,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8455,Land ( Joint Venture ),Zone L3 Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8456,Land ( Joint Venture ), Gerard Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8457,Land ( Joint Venture ),Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8458,Land ( Joint Venture ),James George Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8459,Land, Bourdillon Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8460,Land ( Joint Venture ), Bourdillon Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8461,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8462,A Good Functioning Filling Station For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8463,Exquisitely Fully Furnished 4 Bedroom Terrace Duplex With 1 Bedroom Bq In Ikoyi,Ikoyi Ikoyi Lagos,₦,"295,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8464,3units 4bedroom Terraces With Bq, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8465,7 Bedroom Mansion, Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,7 beds,7 baths,7 Toilets,Parkview +8466,5 Bed Room Duplex Ikoyi,Park View Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8467,4 Bedroom Terraced Duplex,Abijo Ikoyi Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +8468,700sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets,Banana Island +8469,1000sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Banana Island +8470,Land,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8471,Land,Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8472,Land,Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8473,Land,Onikoyi Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +8474,Land,Abacha Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8475,Land,Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8476,Land,Zone J Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8477,Land,Zone J Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8478,Land,Zone J Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8479,Land,Zone J Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8480,Land,Zone J Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8481,Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8482,Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8483,Land,Bourdillion Rd Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8484,Land,Bourdillion Rd Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8485,Land,Bourdillion Rd Bourdillon Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8486,Land,Off Glover Rd Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8487,Land,Rumen Rd Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8488,Land,Temple Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8489,Land,Temple Rd Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8490,Land,Temple Rd Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8491,Land,Agodogbo Street Parkview Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8492,4 Bedroom Detached House,Norman Williams Street Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +8493,4 Bedroom Detached House + Bq,"Ademola, Awolowo Road Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Ikoyi +8494,400sqm Of Land At Ikoyi,Glover Road Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +8495,500m2 Of Land At Ikoyi,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +8496,4 Bedroom Super Luxury Appartment,"Off Kingsway Road, Falomo Ikoyi Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8497,10 Unit Of 4 Bedroom Apartment + Bq,"Rumen, Falomo Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Ikoyi +8498,Plot Of Land (500sqm) At Mojisola Onikoyi Off Banana Island Road,"Mojisola Onikoyi Off Banana Island Road, Ikoyi, Lagos Ikoyi Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8499,2000sqm Land On Temple Road,Temple Road Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8500,2000sqm Of Land At Oni Ikoyi,Oni Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8501,Land,7 Iru Close Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8502,Land,18 Alexander Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8503,Land,9 Kingsway Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8504,Land,Glover Road Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8505,Land,Off Queens Drive Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8506,Land,Along Mekwen Street Old Ikoyi Ikoyi Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8507,Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8508,Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8509,Land,Zone J Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8510,Land,Lugard Avenue Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8511,Land,Rumens Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8512,Land, Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8513,Land,25 Ikoyi Crescent Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8514,Land,14 Ikoyi Crescent Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8515,Land,"Mojisola Onikoyi Off Banana Island Road, , Banana Island Ikoyi Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8516,Land,Zone K & L Waterfront Banana Island Ikoyi Lagos,₦,"6,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8517,850 Sqm Of Land At Ikoyi,Mojisola Onikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8518,800 Sqm Og Land At Shoreline Estate,"Shoreline Estate Onikoyi, Lag Ikoyi Lagos",₦,"210,000,000",0,0,0, beds, baths, Toilets,Onikoyi +8519,1100 Sqm Of Land At Temple Road,Temple Rd Ikoyi Ikoyi Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8520,Land, Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8521,Land, Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8522,Land,74 Alexander Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8523,Land,72 Alexander Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8524,Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8525,4 Bedroom Duplex,"Agodogba, Parkview Estate Ikoyi Lagos",₦,"450,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +8526,3bed Room Flat,Olori Majishola Street Offf Banana Lsland Road. Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8527,4 Bedroom Terraced Duplex With A Room Bq, Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Ikoyi +8528,Service 3 Bedroom Terrace House + Bq,"Mcpherson Street, Bourdillon Ikoyi Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8529,Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8530,5 Bedroom Duplex,Raymond Njoku Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +8531,C Of O,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8532,3 Bedroom Apartment,Bayo Kuku Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8533,House Duplex,Dipo Orepitan Crescent 2nd Avenue Extension Ikoyi Lagos,₦,"1,000,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Ikoyi +8534,Land,Olagunsoye Oyinlola Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8535,Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8536,Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8537,Land ( Joint Venture ),Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8538,Land,"Bourdillon / Rumens Street, Old Ikoyi Ikoyi Lagos",₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8539,Water Front Land,Queens Drive Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8540,Land, Banana Island Ikoyi Lagos,₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8541,Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8542,Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8543,Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8544,Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8545,Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8546,Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8547,4 Bedroom Penthouse,Gerrard Road Gerard Road Ikoyi Lagos,$,"2,400,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8548,4 Bedroom Luxury Apartment,Bourdillon Bourdillon Ikoyi Lagos,$,"1,250,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8549,5 Bedroom Duplex With 2 Rooms Bq For Sale At Ikoyi,Park View Estate Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8550,2100sqm Of Land For Sale At Ikoyi,Ilabere Drive Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8551,2600sqm Of Land For Sale At Ikoyi,"Kuramo Close, Off Ilabere Ikoyi Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8552,2700sqm Of Land For Sale At Kuramo Close,"Kuramo Close, Off Ilabere Ikoyi Lagos",₦,"980,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8553,8 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,8 beds,0 baths,0 Toilets,Parkview +8554,2100sqm Of Land At Ilabere Drive,Ilabere Drive Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8555,4 Bedroom Fully Furnished With Bq,Milverton Road Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +8556,Bedroom Fully Furnished Luxury Apartment With Bq,"Milverton, Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8557,Land,L Zone Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8558,Land,Zone D Banana Island Ikoyi Lagos,₦,"148,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8559,Land For Sale,Okotie Ebo Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8560,Land For Sale,Okotie Ebo Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8561,5 Bedroom Fully Detached With A Bq,"Olusegun Aina, Parkview Estate Parkview Estate Ikoyi Lagos",₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8562,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8563,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8564,Land ( Joint Venture ), Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8565,Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8566,Land ( Joint Venture ),Queens Drive Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8567,Land ( Joint Venture ), Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8568,Land ( Joint Venture ), Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8569,Land (joint Venture),James George Street Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8570,Land, Bourdillon Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8571,Land,Aromire Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8572,Land,Alexander Avenue Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8573,Land,George Street Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8574,Land For Sale,Alexander Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8575,Land For Sale,Kingsway Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8576,Land For Sale, Bourdillon Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8577,Land,Glover Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8578,Land,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8579,Luxury 4 Bedroom Luxury Townhouse At Banana Island Road,Banana Island Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Banana Island +8580,4 Bedroom Luxury Town House,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8581,Land,Lugard Avenue Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8582,Furnished 4 Bedroom Detached House With 2 Mini Flat,Alhaji Bashorun Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Ikoyi +8583,4 Bedroom Lluxury Terrace House At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Parkview +8584,6 Bedroom Detached House With A Room Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Banana Island +8585,4 Bedroom Luxury Terrace House,"Parkview Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8586,Federal C Of O,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8587,7000sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8588,400 Square Metres Of Land,Off Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8589,Brand New 5 Bedroom Fully Detached House For Sale At Ikoyi,Parkview Ikoyi Ikoyi Lagos,₦,"255,000,000",0,0,0, beds, baths, Toilets,Parkview +8590,5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +8591,6 Bedroom Duplex In Ikoyi,Ikoyi Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,7 baths,7 Toilets,Banana Island +8592,Luxurious 5 Bedroom Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Old Ikoyi +8593,Land For Sale,Banana Island Ikoyi J Zone Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8594,Land For Sale,"Plot 13, Blk X, Osborne Foreshore 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8595,3 Bedroom Luxury Flat,Chris Ali Cr Abacha Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8596,Land For Sale,"Shoreline Estate, Banana Island Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8597,6 Bedroom Detached House With 2 Rooms Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets,Banana Island +8598,2800sqm Of Land For Sale At Ikoyi,Ruxton Road Oid Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8599,3100sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8600,Block Of Flats,. Dolphin Estate Ikoyi Lagos,₦,"18,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Ikoyi +8601,Governor's Consent,Onikoyi Street Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Onikoyi +8602,530 Sqm Of Land For Sale At Ikoyi,Macpherson Avenue Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8603,400 Sqm Of Land For Sale At Ikoyi,Barrow Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8604,3000 Sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8605,2800 Sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8606,2000 Sqm Of Land For Sale At Lugard Road,Lugard Road Ikoyi Lagos,₦,"930,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8607,1200 Sqm Of Land For Sale At Ojora Road,Ojora Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8608,1897 Sqm Of Land For Sale At Ikoyi,Cooper Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8609,1000 Sqm Of Land For Sale At Ikoyi,Temple Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8610,1500 Sqm Of Land For Sale At Ikoyi,Club Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8611,3800 Sqm Of Land For Sale At Ikoyi,James George Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8612,4300 Sqm Of Land For Sale At Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"1,650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8613,4200 Sqm Of Land For Sale At Ikoyi,Gerrard Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8614,5500 Sqm Of Land For Sale At Ikoyi,Rumens Road Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8615,10600 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8616,4000 Sqm Of Land For Sale At Old Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8617,Newly Built 4 Bedroom Town House Off Alexander Road,Off Alexander Road Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8618,Newly Built 5 Bedroom Luxury Terrace,Off Bourdillon Road Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8619,4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +8620,Hotel,Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8621,Land For Sale,No. 44bcd Gerrard Road Ikoyi Lagos Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8622,Land For Sale,No 44e Gerrard Road Ikoyi Lagos. Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8623,Land For Sale,Bourdilon/rumens Ikoyi Bourdillon Ikoyi Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8624,4 Bedroom Luxury Terrace Apartment,Off Femi Pedro Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8625,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8626,4 Bedroom Flat,Makunwe Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +8627,4 Bedroom Semi Detached Duplex,"Banana Island, Banana Island Ikoyi Banana Island Ikoyi Lagos",₦,"480,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8628,"Neatly Used And Well Built 5bedrooms Spacious Fully Detached Duplex At Parkview Estate, Ikoyi","Parkview Estate, Ikoyi Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8629,Land ( Joint Venture ),Queens Drive Ikoyi. Bourdillon Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8630,Luxurious 6 Units Of 3 Bedroom Flats On 2 Floors + Swimming Pool And Gym,"Ondo Street, Banana Island Banana Island Ikoyi Lagos",₦,"1,400,000,000",0,0,0,3 beds,3 baths,4 Toilets,Banana Island +8631,5 Bedroom Wing Of Duplex + Bq In Ikoyi,At Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8632,Land ( Joint Venture ),Macdonald Street Ikoyi. Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8633,Land ( Joint Venture ),Macdonald Street Ikoyi. Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8634,Land ( Joint Venture ),Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8635,Land ( Joint Venture ),Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8636,Land ( Joint Venture ),Glover Road Ikoyi Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8637,"10,621.345sqm Of Land For Sale At Ikoyi",Rumens Road Off Bourdillion Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8638,Land For Sale,Bourdillon Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8639,3 No's Of 4 Bedroom Terrace Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8640,Well Built 5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Parkview +8641,Land ( Joint Venture ),44e Gerard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8642,Land ( Joint Venture ),Banana Island Plot L3 Waterfront Land Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8643,Land For Sale,Lagoon Rd Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8644,Land For Sale,"Banana Island, A21 Zone Banana Island Ikoyi Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8645,Copper Mirama,"1 Copper Road,ikoyi,lagos. Ikoyi Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8646,Land ( Joint Venture ),1. Agodogba Park View Ikoyi Parkview Estate Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8647,2 Units Of 3 Bedroom Flat,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8648,2 Bedroom Duplex,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Ikoyi +8649,Tastefully Furnished 2 Bedroom Service Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths, Toilets,Banana Island +8650,500sqm Of Land For Sale At Ikoyi,Queens Drive Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8651,Luxury 5 Bedroom Terrace For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8652,Tastefully Finished 4 Bedroom Semi Detached Duplex At Banana Island Estate,Banana Island Estate Ikoyi Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets,Banana Island +8653,Exquisitely Finished 5 Units Of 4 Bedroom Terrace Houses,Kuramo Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +8654,4 Bedroom Terraced Apartment,By Banana Island Entrance Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8655,5 Bedroom Luxury Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets,Parkview +8656,Luxurious 4 Bedroom Terrace House,Banana Island Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets,Banana Island +8657,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8658,Land For Sale,"27a & B,rumens Road Off Bourdillon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8659,7 Bedroom Mansion With 4 Room Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,7 beds,7 baths,7 Toilets,Parkview +8660,4 Numbers Luxury 4 Bedrooms Terrace House With 1 Room Bq,Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8661,"4 Bedrooms Semi Detached House In A Mini Estate With Pool, Gym, Lawn Tennis Court & A Private Club",Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8662,Old 4 Bedrooms Semi Detached House On 125 Square Metres Of Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +8663,"5 Bedrooms Detached House With 4 Rooms Bq & 2rooms Guest Chalet On 3,200 Square Metres Of Land",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8664,"7,100+ Sqm Plot Of Land For Sale At Ikoyi Lagos",Gerrard Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8665,Fully Furnished 4 Bedroom Town House,Tony Eromosele Parkview Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8666,3 Bedroom Duplex For Sale At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +8667,Land ( Joint Venture ),44e Gerrard Road Ikoy Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8668,Land ( Joint Venture ),Gerard Road Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8669,Land ( Joint Venture ),44e Gerrard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8670,Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8671,Land ( Joint Venture ),K4 Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8672,2 Bedroom Carcass,Close 107 Banana Island Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +8673,Detached House On 544 Square Metres,Close 224 Off 222 Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +8674,5 Bedroom Detached House,Gated Estate Off Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8675,"4 Bedroom Semi Detached At At Osborne Phase I, Ikoyi, Lagos",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +8676,Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8677,Land ( Joint Venture ),Banana Island Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8678,Land ( Joint Venture ),Lawrence Street Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8679,Land ( Joint Venture ),Macdonald Street Ikoyi. Macpherson Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8680,Land ( Joint Venture ),Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8681,Land ( Joint Venture ),K Zone Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8682,Newly Built 4 Bedroom Semi Detached House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +8683,Newly Built 4 Bedroom Luxury Terrace House At Osborne Foreshore Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Foreshore +8684,Newly Built 5 Bedroom Luxury Terrace House At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +8685,4 Units Of Luxury 5 Bedroom Terrace House + 1 Room Bq Each,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8686,3 Bedroom Flat + 1 Room Bq,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8687,4 Bedroom Duplex With Bq,Onikoyi Palace Road Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets,Parkview +8688,4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +8689,4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +8690,Lovely Built 5 Bedroom Terrace,Mosley Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Ikoyi +8691,Land For Sale,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8692,Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8693,Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8694,Land ( Joint Venture ),Adekunle Fajuyi Road Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8695,Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8696,Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8697,Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8698,3 Bedroom Flat,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8699,3 Bedroom Flat,Banana Island Gate Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +8700,Exquisitely Finished 3 Bedroom Apartments At Glover Road,Glover Road Ikoyi Lagos,₦,"375,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8701,Land For Sale,"Zone P,58, Banana Island Banana Island Ikoyi Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8702,Land For Sale,J61 Banana Island . Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8703,Exquisite 4 Bedroom Apartments At Tango Towers,Bourdillon Road Ikoyi Lagos,₦,"375,000,000",0,0,0,4 beds,4 baths, Toilets,Other Ikoyi +8704,6 Bedroom House For Sale At Ikoyi,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Parkview +8705,3 Bedroom Flat For Sale At Tango Towers,Tango Towers Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8706,Land ( Joint Venture ),Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8707,1248sqm Of Land For Sale At Ikoyi,Off Alexandra Road Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8708,1900sqm Of Land For Sale At Milverton Road,Milverton Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8709,900sqm Of Land For Sale At Temple Road,Temple Road Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8710,1000sqm Of Land For Sale At Onikoyi Foreshore Estate,Onikoyi Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Foreshore +8711,Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8712,Land For Sale,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8713,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8714,Land For Sale,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8715,Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8716,Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8717,Land For Sale,Shaw Road Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8718,Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8719,Land For Sale,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8720,Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8721,Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8722,Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8723,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8724,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8725,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8726,Land,Gerald Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8727,1000sqm Of Land For Sale At Lugard Road,Lugard Road Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8728,7000sqm Of Land For Sale At Thomson Street,Thomson Street Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8729,Luxury 3 Bedroom Flat,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +8730,3116sqm Of Land For Sale At Ilabere,Ilabere Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8731,800sqm Of Land For Sale At Mojisola Onikoyi Foreshore Estate,Mojisola Onikoyi Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Foreshore +8732,5000sqm Of Land For Sale At Rumens,Rumens Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8733,500sqm Of Land For Sale At Banana Island,Banana Island Residential Estate Ikoyi Lagos,₦,"255,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8734,1400sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Parkview +8735,700sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Parkview +8736,1208sqm Of Land For Sale At Parkview Estate,Off Tony Eremosele Street Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8737,500sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Parkview +8738,1000sqm Of Land For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Banana Island +8739,1300sqm Of Land For Sale At Mekwen,Mekwen Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8740,"2 Units Of 3 Bedroom Luxury Flats With 1 Room Bq Each, Swimming Pool, Gym And Club House.",Old Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8741,Land ( Joint Venture ),Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8742,Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8743,"4,373.23sqm Of Land For Joint Venture At Lawrence Street",Lawrence Street Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8744,3 Bedroom Luxury Flat,Mosley Road Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8745,Brand New & Well Finished 5 Bedroom Detached House With Bq,Mojisola Onikoyi Street Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Onikoyi +8746,Land ( Joint Venture ),Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8747,"19,000 Of Land Waterfront",Banana Island Zone K Banana Island Ikoyi Lagos,₦,"1,750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8748,Top Notch 4 Bedroom Terrace,Falomo Close Bourdillon Ikoyi Lagos,$,"2,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +8749,Beautiful 3 Bedroom Apartment In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"134,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +8750,5 Bedroom Detached House+ An Ensuite Bonus Room,Bananai Island Road Gerard Road Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Ikoyi +8751,2 Units Of 4 Bedroom House For Sale At Ikoyi,Queens Drive Ikoyi Lagos,₦,"781,250,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8752,"Executive Well Finished 2 Units Of 6 Bedroom Detached Duplex, With 2 Bedroom Bq Each",Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets,Foreshore +8753,Executive Well Finishde 5 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Parkview +8754,Executive Well Finishde 4 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets,Parkview +8755,3 Bedroom Flat,Gerald Road Gerard Road Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8756,5 Bedroom Detached House With A Room Servant Quarters,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,0 Toilets,Banana Island +8757,A Block Of 10 3 Bedroom Flat,Ikoyi Water Front Awolowo Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8758,12 Units Of 3 Bedroom Apartment,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,3 baths,3 Toilets,Parkview +8759,7 Units Of 3 Bedroom Terrace Houses With A Room Bq,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Foreshore +8760,3 Bedroom Flat,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8761,10 Bedroom Flat,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"5,000,000",0,0,0,10 beds,3 baths,3 Toilets,Other Ikoyi +8762,"4 Bedroom Semi Detach Duplex With 1 Room Bq,",Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets,Parkview +8763,Land For Sale,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8764,Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8765,Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8766,Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8767,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8768,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8769,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8770,Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8771,Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8772,Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8773,Land For Sale,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8774,Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8775,Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8776,Land,Shaw Road Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8777,Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8778,Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8779,5 Bedroom Duplex,Inside Banana Island Banana Island Ikoyi Lagos,₦,"340,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +8780,Architectural Masterpiece Hotel,No 70 Queens Drive Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8781,Land For Sale,No. 13 Turnbull Road. Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8782,Land For Sale,No 13 Gerrard Road Gerard Road Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8783,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"765,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8784,Land ( Joint Venture ),"Mcdonald, Ikoyi. Bourdillon Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8785,Land ( Joint Venture ),Off Bourdilon Bourdillon Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8786,Land ( Joint Venture ),Awolowo Road Awolowo Road Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8787,Land ( Joint Venture ),Lawrence Street Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8788,Land ( Joint Venture ),Zone K4 Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8789,"2,000 Square Metres Of Land",Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8790,"2,008 Square Metres Of Land",Abacha Esate Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8791,"2,700 Square Metres Of Land",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8792,4385 Square Metres Of Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8793,"2,500 Square Metres Of Land",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8794,Land ( Joint Venture ),Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8795,Land ( Joint Venture ),Banana Island Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8796,5 Bed Detached Duplex,Onikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +8797,Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8798,Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8799,Land For Sale,Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8800,Land For Sale,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8801,Luxury 5 Bedroom Detached House,Mojisola Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets,Banana Island +8802,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8803,Water Front Residential Land,Banana Island Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8804,Commercial Property,"Ribadu Road Off Awolowo Road, Southwest. Awolowo Road Ikoyi Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8805,Land For Sale,Zone Q2 Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8806,Land For Sale,J1 & P1 Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8807,Land For Sale,Banana Island J44b Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8808,5 Bedroom Detached House,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Banana Island +8809,Land For Sale,Zone L2 Banana Island. Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8810,Land For Sale,Zone L1 Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8811,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8812,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8813,4 Bedroom Flat With A Bq In Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8814,Land For Sale,James George Estate Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8815,Land For Sale,Zone6 Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8816,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8817,Land For Sale,No. 44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8818,Land For Sale,No 44e Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8819,Land For Sale,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8820,Commercial Property,Ribadu Road Awolowo Road Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8821,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8822,Land For Sale,Rumens Street Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8823,Land For Sale,Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8824,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8825,A Storey Building,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8826,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8827,Land For Sale,Queens Drive Mosley Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8828,Land For Sale,No. 36 Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8829,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"3,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8830,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8831,Land For Sale,Oyinkan Abayomi Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8832,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8833,12 Units Of Brand New Semi Detached Town Houses,Lugard Avenue Ikoyi Lagos,₦,"4,220,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8834,5 Bedroom Fully Detached House With 2 Room Bq Sitting On 500 Sqm Land .,"Near Bode Olajumoke Crescent, Park View Estate Parkview Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Parkview +8835,5 Bedroom Terrace,"Mosley Road, Old Ikoyi Ikoyi Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +8836,Brand New Fully Detached 5 Bedroom Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Parkview +8837,Land For Sale,Oba Palace Road Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8838,Land,Oba Palace Road Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8839,Land,Parkview Esate Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8840,Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8841,Land For Sale,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8842,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8843,Land For Sale,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8844,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8845,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"3,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8846,Land For Sale,Oyinkan Abayomi Drive Bourdillon Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8847,4 Bedroom Flat With A Room Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +8848,4 Bedroom Apartment,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Foreshore +8849,4 Units Of 3 Bedroom Flat With A Bq,Adeyemi Lawson Off Queens Drive Ikoyi. Macpherson Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8850,Land For Sale,"Alexander Avenue, Gerard Road Ikoyi Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8851,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8852,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8853,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8854,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8855,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8856,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8857,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8858,4 Nos 3 Bedroom Flat With Attached Bq,Off Queens Drive Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Ikoyi +8859,4553sqn Of Land Off Gerrard Road,Off Gerrard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8860,Land For Sale,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8861,Land For Sale,Milverton Road Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8862,Land For Sale,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8863,Land For Sale,Shell Trustee Close Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8864,"Master Piece 4 Bedroom Penthouse In Bellavista,",Banana Island Banana Island Ikoyi Lagos,$,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8865,"Master Piece 4 Bedroom Penthouse In Bellavista,",Banana Island Banana Island Ikoyi Lagos,$,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets,Banana Island +8866,Land For Sale,No 33 Copper Road Off Bourdillon Street Bourdillon Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8867,Land For Sale,Osborne Foreshore Estate Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8868,2500sqm Of Land On Mekwuen Road,"Mekwuen Road, Off Bouurdillon Road Ikoyi Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8869,Land For Sale,Osborne Foreshore Estate Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8870,Land For Sale,Gerard Road Gerard Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8871,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8872,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"365,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8873,Fully Furnished 12 Blocks Of 3 Bedroom Flat With Attached Bq,Off Queens Drive Macpherson Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Ikoyi +8874,Land For Sale,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8875,Commercial 6 Bedroom Duplex,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Ikoyi +8876,Beautiful And Well Finished 3 Bedroom Flat With Bq,Olusegun Aina Parkview Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +8877,Well Furnished 3 Bedroom Flat Apartment For Sale,"Ikoyi , Lagos . Ikoyi Lagos",₦,"110,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8878,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8879,Land,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8880,Land,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8881,Land For Sale,Osborne Phase 2 Old Ikoyi Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8882,Land For Sale,Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8883,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8884,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8885,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8886,Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8887,Land,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Foreshore +8888,Land,Facing Atlantic Ocean Bourdillon Ikoyi Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8889,4 Bedroom Semi Detached Duplex,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Foreshore +8890,3098sqm Land With Old Structure,Ipeu/ Mekwen (corner Piece) Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8891,4 Bedroom Apartment In Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8892,Land,"Zones K & L, Waterfronts Banana Island Ikoyi Lagos",₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8893,Plot Of Land For Sale At Lugard Avenue,Lugard Avenue Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8894,"Newly Built 5 Bedrooms Detached Aesthetic House, Ikoyi",Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8895,5 Bedrooms Duplex,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +8896,Well Upgraded 4 Bedroom Serviced Apartment,Bourdillon Bourdillon Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Ikoyi +8897,Furnished 3 Bedroom Serviced Apartment For Sale,"Ikoyi ,lagos Ikoyi Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8898,Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8899,8 Bedroom Semi Detached House,Alhaji Masha Close Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,8 beds,6 baths,0 Toilets,Other Ikoyi +8900,5 Bedroom Duplex,Foreshore Line Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Foreshore +8901,5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"370,000,000",0,0,0,5 beds,4 baths,5 Toilets,Banana Island +8902,5 Units Of Privately Gated Terrace Duplex With 4 Bedroom And A Bq. Location,Turnbull Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Banana Island +8903,A 3098sqm Land With Old Structures,Meukwen Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Ikoyi +8904,Brand New Tastefully Finished 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Banana Island +8905,A Block Of Flats,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +8906,Furnished 3 Bedroom Apartment (serviced) With Bq,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Ikoyi +8907,Land For Sale On Mulliner Road,"Mulliner Road, By Ikoyi Club Ikoyi Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8908,Water Back Vacant Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +8909,4 Bedroom Terrace House For Sale,Park View Estate Ikoyi Lagos State Ikoyi Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8910,"3,774sqm Of Land At Ikoyi","Ikoyi , Lagos Ikoyi Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8911,Land,"Zone L, Plot 20, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8912,Bare Land For Sale,"Ikoyi , Lagos Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8913,3000sqm Of Land At Alexandra,Alexandra Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8914,Fine Affordable 5 Bedroom Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +8915,Tastefully Finished 5 Bedroom Fully Detached House,Beside Banana Island Estate Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Banana Island +8916,5 Bedroom Fully Detached Duplex,Beside Banana Island Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Banana Island +8917,Super Luxurious 4 Bedroom Terrace Duplex,Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8918,"12,00 Square Metres Of Land",Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8919,"Newly Built 4 Bedroom Semi Detached Duplex, Parkview Estate",Park View Estate Ikoyi Ikoyi Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8920,2 Units Of 4 Bedrooms Semi Detached Duplex Plus Bq,Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Ikoyi +8921,5 Bedroom Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Banana Island +8922,5 Bedroom Semi Detached House,Eleanora Lagoon Court Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Foreshore +8923,Land For Sale At Reeve Road,Reeve Road Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8924,12 Nos. Of 3 Bedroom Serviced Flats,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +8925,Modern 4 Bedroom Terrace House,Mekuwen Street Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets,Banana Island +8926,Exquisitely Finished Luxury 5 Bedroom Duplex + Swimming Pool,Stratongate Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8927,4 Bedroom Duplex,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Foreshore +8928,Cheapest Plot Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8929,3 Bedroom Flat,Hameed Kasumu Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8930,3 Bedroom Apartment,Glover Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +8931,A Newly Built 3 Bedroom Terrace Duplex,Lateef Jakande Avenue Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8932,"5,000sqms Of Land In Ikoyi",Glover Road Ikoyi Lagos,₦,"3,750,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8933,4 Bedroom Flats For Sale,Off Alexandra Road Ikoyi Lagos,₦,"199,000,000",0,0,0,4 beds,5 baths, Toilets,Other Ikoyi +8934,Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8935,Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8936,Land,Gerrard Road Parkview Estate Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8937,Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8938,Land,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8939,3 Bedroom Luxurious Service Flat Off Queen Drive,Off Queen Drive Ikoyi Lagos,₦,"87,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +8940,"1,608 Square Metres",Osborne 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8941,"2,000 Square Metres Of Land",M11 Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8942,1092 Sqm Of Land,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8943,5200 Sqm Land,Folarunsho Alakija Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8944,"1,200 Square Metres Of Land",Olagunsoye Oyinola Street Dolphin Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8945,"1,092 Square Metres Of Land",Parkview Esate Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8946,"5,200 Square Metres Corner Piece Land",Folorunsho Alakija Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8947,Spacious 4 Bedroom Serviced Apartment In Ikoyi,Okotie Eboh Close Ikoyi Lagos,₦,"109,500,000",0,0,0,4 beds,4 baths, Toilets,Other Ikoyi +8948,Land,Alakila Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8949,Land,44egerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8950,Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8951,"5,100 Sqm Of Good Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8952,"A Good Land Measuring 5,100 Sqm In Ikoyi",Queen's Drive Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8953,A Plot Of Land,Udi Street Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8954,"4,050 Square Metres Of Land",Kingsway Road Falomo Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8955,6000 Square Metres Of Land,Cameron Road Falomo Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8956,6000 Square Metres Of Land,Ojora Road Gerard Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8957,6000 Square Metres Of Land,Queens Drive Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8958,6000 Square Metres Of Land,Aromire Road Falomo Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8959,2000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8960,"2,200 Square Metres Of Land",Bourdillon Road Bourdillon Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8961,"5,500 Square Metres Of Land",Webb Road Falomo Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8962,"5,800 Square Metres Of Land",Aromire Road Falomo Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8963,2000 Square Metres Of Land,Temple Road Gerard Road Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8964,Bare Land,Alexander Avenue Gerard Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8965,2 Units Of Newly Built 4 Bedroom Detached Duplex In Ikoyi,Olusegun Olusemo Drive Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Parkview +8966,1879 Square Metres Of Land,Milverton Street Falomo Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8967,6300 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8968,A Nice 4 Bedroom Semi Detached Terrace Duplex In Ikoyi,Onikoyi Road Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths,4 Toilets,Parkview +8969,"5,200 Square Metres Of Land",Folorunsho Alakija Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8970,"Empty Fenced Land Measuring Approximately 7,100 Square Metres.",Gerard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8971,"Empty Fenced Land Measuring Approximately 4,534square Metres Of Land",Old Ikoyi Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8972,5 Bedroom Detached House,Ojoro Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +8973,5 Bedroom Fully Detached House With Bq & Swimming Pool,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8974,4000sqm Of Land On Gerrard Close,Gerrard Close Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8975,Brand New 5 Bedroom Duplex On Reeve Road,Reeve Road Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8976,3 Bedroom Luxury Flat On Gerald Road,Gerald Road Ikoyi Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +8977,2 Bedroom Flat (1st Floor) In Ikoyi,Banana Estate Banana Island Ikoyi Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets,Banana Island +8978,Land,Plot 12 Parkview Estate Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8979,5000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8980,2000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8981,Brand New 5 Bedroom Terrace For Sale In Ikoyi,Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8982,5 Bedroom Duplex With A Bq And 5 Bedroom Semi Detaxched Duplex With A Bq,Parkview Esate Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Parkview +8983,674 Square Metres Of Land,Zone P Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8984,1800 Square Metres Of Land,Zone F Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8985,1000 Square Metres Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8986,5 Bedroom Detached House With Sqimming Pool,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +8987,"5,897sqm Of Land Off Kingsway Road",Off Kingsway Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8988,5 Bedroom Detached House With A Swimming Pool And A Green Area,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +8989,Land,Milverton Street Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +8990,7 Bedroom Detached House,3rd Avenue Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,7 baths,8 Toilets,Banana Island +8991,7200 Square Metres,Glover Road Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8992,Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8993,Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +8994,3 Bedroom Flat,Awolowo Awolowo Road Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +8995,2 Bedroom Apartment,Ahmed Kasimu Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Parkview +8996,Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +8997,Land,Gerrard Road Parkview Estate Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +8998,Uncompleted Hotel Complex At Queens Drive,Queens Drive Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +8999,"Land Measuring 10,000sqm For Sale","Onikoyi Road, Ikoyi, Lagos Ikoyi Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9000,"Land Measuring 11,600sqm For Sale",Gerrard Road Ikoyi Lagos,₦,"4,900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9001,Land Measuring 3116sqm For Sale,Ilabere Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9002,Land Measuring 3944.34sqm For Sale,James George Close Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9003,Good 1000sqm Of Land Off Awolowo Way,Off Awolowo Way Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9004,3700 Sqm Plot Of Land On Ojora Road,Ojora Road Ikoyi Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9005,Corner Piece Land On Kingsway Road,Kingsway Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9006,"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9007,Plot Of Land On Alexandra Road,"9 A, Alexandra Road Ikoyi Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9008,6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9009,"Luxury Furnished 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9010,"Luxury Serviced 3 Bedroom Apartment, Ikoyi",Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +9011,Well Finished 5 Bedroom Duplex At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +9012,"Well Finished 5 Bedroom Detached Duplex, Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9013,Well Finished 4 Bedroom Detached Duplex,Noman Williams Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9014,Luxury & Exclusive Hotel Complex For Sale,Queens Drive Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9015,3 Bedroom Apartment,Banana Lsland Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,4 baths,4 Toilets,Banana Island +9016,Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9017,A Plot Of Land At Macdonald Road,Macdonald Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9018,Land For Sale At Alexandra,Alexandra Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9019,Land For Sale Glover Road,Glover Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9020,Land,Bayo Kuku Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9021,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9022,Land,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9023,Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9024,4400 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9025,Serviced Luxury 8 Units Of 2 Bedroom Flats With 4 Rooms Servant Quarters,Ondo Road Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,2 beds,2 baths,3 Toilets,Foreshore +9026,7000 Square Metres Of Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9027,4000 Square Metres Of Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9028,6500 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9029,8000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9030,5600 Square Metres Of Land,Aromire Road Falomo Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9031,3300 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +9032,5897 Square Metres Of Land,Aromire Street Falomo Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9033,Ikoyi 1500m2 Land For Salen420m,Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9034,"Ikoyi 3600m2 For Sale N400,000 Per Sqm",Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9035,"Ikoyi 6000sqm For Sale N1,800,000,000",Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9036,5 Bedroom Detached House With 2 Rooms Bq In Ikoyi,Reeves Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +9037,5084 Square Metres Of Land,Inner Crescent Dolphin Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9038,Filling Station With 6 Pumps On 3 Plots Of Land,By Fire Service Awolowo Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9039,3 Bedroom Flat,Onikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9040,Land,Onikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9041,Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +9042,Land,Rumens Street Bourdillon Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9043,Land,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9044,Land,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9045,Land,Banana Island Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9046,4000 Square Metres Of Land,Lugard Avenue Falomo Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9047,1000 Square Metres Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9048,Land,Ilabere Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9049,3300 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +9050,3100 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9051,2000 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9052,2200 Square Metres Of Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9053,2900 Square Metres Of Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9054,4000 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9055,4500 Square Metres Of Land,Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9056,5500 Square Metres Of Land,Webb Road Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9057,5800 Square Metres Of Land,Aromire Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9058,6000 Square Metres Of Land,Aromire Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9059,5 Bedroom Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Old Ikoyi +9060,1200 Square Metres Of Land,Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9061,2000 Square Metres Of Land,Zone P Banana Island Ikoyi Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9062,800 Square Metres Of Land,Zone J Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9063,3 Bedroom Flat,No.5a & B Temple Road Ikoyi Lagos. Ikoyi S.w Ikoyi Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Ikoyi +9064,3100 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9065,Well Built 5 Bedroom Fully Detached House With 2 Room Service Quarters. Old Ikoyi,"Off Alexander, Old Ikoyi Ikoyi Lagos",₦,"660,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9066,5 Bedroom Detached House With 2 Bq,"Off Alexander, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"660,000,000",0,0,0,5 beds,5 baths,5 Toilets,Old Ikoyi +9067,4 Bedroom Terrace With 1 Room Bq,Lekki Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,5 Toilets,Parkview +9068,3 Bedroom Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,4 baths,3 Toilets,Old Ikoyi +9069,Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +9070,15 Units Of Luxurious 3 Bedroom Flats With Swimming Pools,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,4 beds,3 baths,4 Toilets,Old Ikoyi +9071,Land,Alagbon Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9072,3400238 Square Metres,J Zone (water Front) Banana Island Ikoyi Lagos,₦,"410,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9073,8000sqm Of Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9074,864sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9075,950sqm Of Land In Ikoyi,Ikoyi Ikoyi Lagos,₦,"209,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9076,1050sqm Of Land In Ikoyi,Ikoyi Ikoyi Lagos,₦,"231,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9077,1000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9078,1200sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"264,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9079,1500sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9080,2000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9081,4 Bedroom Detached House,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +9082,2 Units Of 4 Bedroom Semi Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +9083,4 Bedroom Flat With A Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +9084,200 Square Metres Of Land,Before Banana Island Gate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9085,Block Of Flats On Sumbo Jibowu Street,Sumbo Jibowu Street Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths, Toilets,Other Ikoyi +9086,5 Bedroom Detached House With Bq On 600 Square Metres And Swimming Pool,By Niter Street Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +9087,Nice 3 Bedroom Flat In Ikoyi,"No. 38 Oshodi Street, Dolphin Estate Ikoyi Lagos",₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Ikoyi +9088,Brand New 5bedroom Detached House With Swimming Pool On 700 Square Metres Of Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +9089,1600 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Foreshore +9090,2400 Square Metres Of Land,Aromire Road Gerard Road Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9091,2500 Square Metres Of Land,Iru Close Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9092,1500sqm Of Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9093,Land,Olagusoye Oyinlola Street. Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9094,1200 Square Metres Of Land,Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9095,3 Bedroom Luxury Apartment,Eko Parkview Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Parkview +9096,A Block Of 26 Luxury Apartments With 3 Bedroom,"Gerald Road, Ikoyii Ikoyi Lagos",₦,"8,000,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +9097,Land,Olagusoye Oyinlola Steet. Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9098,"10,000 Square Metres Of Land",Bourdillon Bourdillon Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9099,Executive 3 Bedroom Flat In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,4 baths, Toilets,Old Ikoyi +9100,1200 Square Metres Of Land,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9101,Land,K Zone Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9102,4 Bedroom Townhouse,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Ikoyi +9103,10 Units Of 3 Bedroom Flat,Probyn Road Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +9104,6 Bedroom Detached House O,Ibogun Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets,Old Ikoyi +9105,Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9106,"1,208sqm Of Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9107,"3,000sqm Of Waterfront Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9108,Luxury Four Bedroom Apartment,Glover Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +9109,750 Sqm Plot Of Land At Ikoyi,Queens Drive Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9110,Luxury 4 Bedroom Terrace Duplex,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +9111,Land,Jubril Amimu Crescent Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +9112,Land,"Queens Drive, Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Old Ikoyi +9113,Plot Of Land,Oroke Drive Bourdillon Ikoyi Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9114,Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9115,Plot Of Land,Zone L Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9116,Land,Waterfront Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9117,Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9118,Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9119,"Terrace House, Mekunwen Ikoyi","Mekunwen Street, Ikoyi Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9120,Landed Property Measuring 2000 Square Meters On Glover Road Ikoyi Lagos,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9121,Exquisitely Finished Luxury 5 Bedroom Duplex,Niger Street Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +9122,Off Plan Luxury Four Bedroom Terrace At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9123,"3,337.1171sqm Of Land In Ikoyi",Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9124,5 Bedroom Detached House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Parkview +9125,5 Bedroom Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Old Ikoyi +9126,3 Bedroom Terrace,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets,Old Ikoyi +9127,Tastefully Finished 3 Bedroom Apartment At Ikoyi,Ikoyi Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9128,Newly Built 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9129,Exclusive 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9130,Well Finished 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9131,3 Bedroom Terrace Duplex,Stratongate Avenue Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Old Ikoyi +9132,4 Bedroom Terrace House + Bq,Ruxton Avenue Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets,Old Ikoyi +9133,6 Bedroom Fully Detached House +bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +9134,Land,Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,050,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9135,Land,Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9136,Land,Zone K Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9137,Lovely 5 Bedroom Detached Duplex Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9138,A Luxury Hotel With Premium Finishing For Sale,By Odo Bus Stop Alagbole Near Ojodu Berger Bus Stop Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9139,6 Bedroom Detached Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +9140,A 6 Bedroom Detached House With A Bq,Foreshore Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Banana Island +9141,Land,Along Old Federal Secretariat Road Before Radio Dolphin Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9142,Luxury 3 Bedroom Apartment With Bq,Maroko Close Bourdillon Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Ikoyi +9143,4 Bedroom Duplex,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets,Foreshore +9144,A 5 Bedroom Detached House With A Room Bq,Banana Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Banana Island +9145,Land For Sale At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9146,A 23 Rooms Hotel Accommodation,Queen's Drive Ikoyi S.w Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9147,"3 Bedrooms Tastefully Finished Town House Off Alexander Road, Ikoyi.",Off Alexander Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9148,Luxury 3 Bedroom Apartment With Excellent Facilities,Off Queens Road Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths, Toilets,Other Ikoyi +9149,A 6 Bedroom Detached Duplex,Off Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Ikoyi +9150,2 Units Of A 6 Bedroom Detached Duplex With A Room Bq,"Osborne Estate, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"750,000,000",0,0,0,6 beds,6 baths,7 Toilets,Foreshore +9151,"A 2,000sqm Land",Zone J Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9152,"A 2,883sqm Land",Zone L Banana Island Ikoyi Lagos,₦,"310,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9153,"A 10,300sqm Land",Zone A Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Banana Island +9154,"A 4,994sqm Land","Cbd, Eko Atlantic City Ikoyi S.w Ikoyi Lagos",$,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Ikoyi +9155,Luxury 3 Bedroom Serviced Apartment,Gerard Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Old Ikoyi +9156,"A House On A 3,133sqm Land",Off Mcgregor Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9157,3 Bedroom Premium Serviced Apartment For Sale,21 Milverton Road Ikoyi Lagos,₦,"249,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9158,3 Bedroom Terrace House Plus Bq,Ojora Road Off Alexander Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +9159,Tastefully Finished 5 Bedroom Detached House With Bq,Ojora Road Off Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9160,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"639,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9161,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"672,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9162,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"686,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9163,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9164,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"807,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9165,Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"804,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9166,"A 5,000sqm Of Land",Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9167,"Luxury Furnished 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9168,"Executive 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9169,700sqm Plot Of Land At Temple Road,Temple Road Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9170,"A 3,000sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9171,"A 1,000sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9172,"A 5,000sqm Of Land","Temple Road, Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9173,"A 3,600sqm Water Dry Land","Osborne Estate, Phase 1 Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9174,"A 5,000sqm Of Land",Queen's Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9175,"A 2,500sqm Of Land",Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9176,"A 3,400sqm Of Land",Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9177,A 980sqm Of Land,Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9178,"A 3,200sqm Of Land",Mosley Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9179,"A 1,750sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9180,"A 19,000sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9181,"A 4,700sqm Of Land",Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9182,"A 1,450sqm Of Bare Land",Osborne Ii Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9183,"A 1,450sqm Of Land",Iru Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9184,"A 2,150sqm Of Land",Maroko Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9185,"A 5,400sqm Of Land",Queen's Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9186,An 800sqm Of Land,Oroke Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9187,"A 2,000sqm Of Land",Jabita Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9188,"A 1,750sqm Of Land",Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9189,Waterview 3753sqm Plot Of Land At Queens Drive,Queens Drive Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9190,A 5 Bedroom Detached House + 1 Room Bq,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9191,Approximately 6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9192,Approximately 3700 Sqm Plot Of Land On Ojora Road,Ojora Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9193,Executive 4 Bedroom Duplex Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9194,Elegant Hotel Property,Delta Parkview Estate Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Parkview +9195,6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9196,"Well Finished 4 Bedroom Detached Duplex, Noman Williams",Noman Williams Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9197,2 Nos Of 3 Bedroom Luxury Flat With A Study/children Game Room,Bankole Cardozo Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets,Other Ikoyi +9198,5 Bed Semi Detached House,"Banana Island Road, Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9199,4 Bedroom Duplex,Dolphin Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9200,Land,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9201,Land,Abacha Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9202,3 Bedroom Flat,Illuburin Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets,Onikoyi +9203,4 Bedroom Terrace House,Kuramo Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9204,4 Bedroom Terrace House,Bank Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9205,4 Bedroom Terrace House,Emmanuel's Court Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Parkview +9206,A 4 Bedroom Townhouse With A Bq,Parkview Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9207,Office Space,"5, Ribadu Road Off Awolowo Road. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9208,5 Bedroom Semi Detached House,Bode Olajumoke Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +9209,A Semi Detached + Bq,Awolowo Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9210,"Luxury Serviced 3 Bedroom Apartment, Ikoyi",Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths, Toilets,Other Ikoyi +9211,"Well Finished 5 Bedroom Detached Duplex, Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9212,"A 4,534.13sqm Of Land",44bcd Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,050,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9213,"A 7,100sqm Of Land",44e Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9214,"A 19,400sqm Of Land","Plots 13 And 14, Zone L Mojisola Onikoyi Estate Ikoyi Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9215,Land,Abacha Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9216,A 4 Bedroom Detached House With A Boys Quater,Vgc Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9217,Well Finished 5 Bedroom Duplex At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +9218,4 Bedroom Townhouse,"Onikoyi Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9219,5 Bedroom Duplex,2nd Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,4 Toilets,Onikoyi +9220,A 5 Bedroom Twin Duplex,"Royal Palm Drive, Osborne Foreshore Estate Mojisola Onikoyi Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9221,40 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Onikoyi +9222,40 Units Of 4 Bedroom Flats,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9223,24 Unts Of 3 Bedroom Townhouses,Onikoyi Foreshore Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Onikoyi +9224,24 Unts Of 4 Bedroom Townhouses,Onikoyi Foreshore Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9225,5 Bedroom Detached House,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Onikoyi +9226,4 Bedroom Terrace,Falomo Close Mojisola Onikoyi Estate Ikoyi Lagos,$,"3,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9227,3 Bedroom Apartment,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9228,6 Units Of 2 Bedroom Flat Building,"Sumbo Jibowu Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000",0,0,0,2 beds,2 baths,2 Toilets,Onikoyi +9229,A 5 Bedroom Detached House With 2 Room Bq,Olusegun Aina Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9230,Halo Court,Turmbull Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Onikoyi +9231,A 30 Rooms 5 Star Hotel,Osborne Phase 1 Mojisola Onikoyi Estate Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9232,5 Bedroom Fully Detached House,Layi Ajayi Bembe Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9233,4000sqm Of Land On Gerrard Road,Gerrard Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9234,3724sqm Water Front Land On Queen Drive,Queen Drive Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9235,"Land, House For Sale On Glover Road, Gerrard Road, Temple Road, Bourdillion Road, Lugard Avenue, Ruxton Road, Webb Road, Lagos Nigeria","Glover Road, Ikoyi Lagos Ikoyi Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9236,Land Fenced,Osborne Phase 2 Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9237,Highrise Building,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Onikoyi +9238,2 Units Of 4 Bedroom Terrace House,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9239,"A House On 1,404sqm Of Land",Adeyemi Lawson Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9240,A 2 Bedroom Flats Building,Sumbo Jibowu Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,2 Toilets,Onikoyi +9241,"A 4,533sqm Of Land",Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9242,"A 4,554sqm Of Land",Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9243,A 6371sqm Of Land,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9244,"A 3,200sqm Of Land",Cameroun Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9245,"A 3,500sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9246,"A 5,000 Sqm Of Land",Bourdilion Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9247,"A 7,000sqm Of Land",Gerrad Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9248,"A 11,900sqm Of Land",Gerrad Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9249,"A 1,700sqm Of Land",Alexander Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9250,2 Units Of Detached 4 Bedrooms,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,4 Toilets,Onikoyi +9251,A Piece Of Land,N/a Mojisola Onikoyi Estate Ikoyi Lagos,₦,"865,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9252,A 4 Bedrooms Semi Detached Duplex With A Bq,Park View Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9253,Highrise Building Of 22 Units Of 3 Bedroom Terrace In Ikoyi,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9254,"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9255,Luxury Development Project At 9 Ruxton Street,9 Ruxton Street Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9256,"9 Units Of 4 Bedroom Terrace Duplex At Ruxton Street, Off Alexander Road",Ruxton Street Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9257,"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Old Ikoyi +9258,5 Bedroom Semi Detached At Banana Island Road Ikoyi,Banana Island Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Banana Island +9259,Renovated 4 Bedroom Semi Detached Duplex At Parkview Estate,Abodogba Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Parkview +9260,5 Bedroom Detached Duplex At Banana Island Road Ikoyi,Banana Island Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Banana Island +9261,Plot Of Land At Maroko Close,Maroko Close Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9262,"Plot Of Land At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Parkview +9263,"Plot Of Land At Banana Island Road, Ikoyi",Banana Island Road Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Banana Island +9264,Plot Of Land At Banana Island Road,Banana Island Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Banana Island +9265,"Plot Of Land, Off Banana Island Road",Off Banana Island Road Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Banana Island +9266,"Property On Cooper Road, Gerrad Road, Kingsway Road, Bourdillion Road, Bayo Kuku Street, Alexandra Road, Glover Road, Temple Road, Webs Road, Ikoyi",Old Ikoyi Lagos Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Ikoyi +9267,A 4 Bedrooms Semi Detached Duplex,Park View Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9268,A 5 Bedroom Duplex,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Onikoyi +9269,52 Units Of 3 Bedroom Luxury Flat,"Off Kings Way Road, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Onikoyi +9270,A Regularized Dry And Fenced Plot Of Land,"Off Udi Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Onikoyi +9271,2 Units Of 4 Bedroom Semi Detached Houses + A Room Bq,"Off Udi Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9272,4 Bedroom Semi Detached Duplex + A Room Bq,"Parkview Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Onikoyi +9273,Luxury 4 Bedroom Terrace Duplex + 1 Bedroom Bq,"Parkview Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Onikoyi +9274,2 Wings Of 4 Bedroom Duplexes,"Osborn Road, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Onikoyi diff --git a/clean/lekki.csv b/clean/lekki.csv new file mode 100644 index 0000000..4b59e85 --- /dev/null +++ b/clean/lekki.csv @@ -0,0 +1,45998 @@ +,Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood +0,Newly Built 4bedroom Apartment,Emcel Court Along Lafiaja Road Adjacent To Prime Mall Mega One Cinema Lekki Conservation Center Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1,3 Bedroom Maisonette,Lekki Lagos,₦,"79,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +2,Exquisitely Built 4 Terrace Duplex For With Private Compound,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3,Most Affordable 4 Bedroom Detached Duplex For Sale,Lekki Conservation Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4,Brand New 5 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Ikate +6,6 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7,Brand New 4 Bedroom Semi Detached House,Opposite Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8,Well Finished 4 Bedroom Fully Detached Duplex With A Room Bq;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9,Serviced 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10,Nicely Built 5 Bedroom Fully Detached With 2 Bedroom Bq,Osapa Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11,Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12,Newly Built 5 Bedroom Fully Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13,Complete Serviced 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +14,Nicely Built 3 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +15,4 Bedroom Semi Detached Duplex,Conservative Alternative Route By Chevron Toll Gate Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets,Chevron +16,Luxury 3 Bedroom Apartment,"Edgewaters Estate, Amaechi Onuoha Crescent Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17,Fully Furnished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +18,5 Bedrooms Detached Duplex,"Simon Chibukor, Mega Mound Estate, Lekki Lagos",₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19,Luxurious 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20,Finished 5 Bedroom Detached Duplex With Bq,Megamound Estate Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +21,Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +22,4 Bedroom Contemporary Duplex,Chevron Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +23,Masterpiece 5 Bedroom Detached House*,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24,5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26,5 Bedroom Detached House,"2nd Toll Gate, Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +28,4 Bedroom Contemporary Duplex,"Chevron Toll Gate, Lekki Conservation Chevron Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +29,2 Bedroom Maisonette + Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +30,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31,Brand New 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +32,Block Flats 1 Bedroom Apartment,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +33,2 And 1 Bedroom Apartment,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +34,Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,7 Toilets,Osapa London +35,Spacious 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +36,Newly Built 2bedroom Luxury Apartments,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +37,Newly Built 2bedroom Luxury Apartment,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +38,Luxury 5bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +39,Newly Built 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +40,7 Unit Of 3 Bedroom Flat,Agungi Lekki Lagos,₦,"450,000,000",0,1,0,10 beds,0 baths,0 Toilets,Agungi +41,Newly Built 2bedroom Service Apartment,Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Lekki +42,Brand New 7 Bedroom Fully Detached Duplex,"Zone B, Nicon Town Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43,Massive 4 Bedroom Semi Detached Duplex,"Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +44,Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +45,Newly Built 3 Bedroom Masionette With Bq,Lekki Phase 1 Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +46,Newly Built 4 Bedroom Masionette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +47,Newly Built 2 Bedroom Masionette With Bq,Lekki Phase 1 Lekki Lagos,₦,"69,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +48,Uncompleted 6 Bedroom Detached House,"Off Road 3, Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"130,000,000",0,0,0,6 beds,8 baths,9 Toilets,Victoria Garden City +49,Serviced 3 Bedroom Apartment,Off Conservative Route By Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets,Chevron +50,3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +51,5 Bedroom Fully Detached Duplex,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +52,5 Bedroom House With A Bq Located At Ikota.,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +53,Newly Built 4 Bedroom Detached House,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +54,Fully Serviced 5 Bedroom Duplex,Oral 2 Oral Estate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +55,4 Bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +56,Fully Serviced Contemporary 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +57,"Well Built 5 Bedroom Detached Duplex With Swimming Pool, Pent House & Boy’s Quarter",Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +58,Luxury 5 Bedroom Contemporary Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +59,"5 Bedroom Detached House With Swimming Pool, Cinema, Gym.",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +60,"Spacious And Well Finished, Luxury 4 Bedroom Semi Detached Duplex With A Bq",Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +61,4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +62,Beautiful 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +63,2 Bedroom Terrace Duplex,Orchid Road/pantheon Smart Homes/chevron Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +64,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +65,Massive Brand New 5bedroom Fully Detached House With A Bq In A Secured Estate,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +66,Contemporary 6 Bedroom Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +67,5 Bedroom Duplex With Indoor Swimming Pool & Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +68,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +69,5bedroom Fully Detached With A Bq,Oniru Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +70,Extraordinary 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +71,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +72,Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +73,"Spacious 5bedroom Duplex With Swimming Pool, Lekki County",Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +74,Premium 2 Bedroom Apartments,Meadow Hall Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds, baths, Toilets,Lekki Phase 1 +75,Classic 5 Bedrooms Fully Detached Houses With An Ensuite Maid’s Quarter,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +76,Spacious 5bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"148,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +77,300sqm Land,"Abraham Adesanya, Ogombo Road Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +78,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +79,4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +80,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +81,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +82,Luxury 5 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +83,Spacious 4 Bedroom Semi Detached Duplex With B.q|,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +84,Fully Serviced Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +85,Nicely Built 5 Bedroom Detached House With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +86,Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +87,Very Spacious & Luxurious Brand New 5bedrooms Listing,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +88,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +89,Brand New 4bedroom Semi Detached Duplex With A Bq,Orchid Toll Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +90,2bedrooms Luxury Apartment Fully Serviced With A Servant Quarter In A Perfect Location,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Agungi +91,4 Bedroom Semi Detached Duplex With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +92,4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +93,"Newly Built 5bedroom In A Gated Estate And Fully Secured Environment, Where Kids Can Play And Call Home",Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +94,Brand New Spacious 3 Bedroom Flats,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +95,5 Bedroom Fully Detached Duplex For Sale!!! With 247 Electricity And Water Also Has A Lake View,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +96,4 Bedroom Semi Detached Duplex With Bq,Bakare Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +97,5 Bedroom Detached House,Lake View Estate Ikota Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +98,Spacious 4 Bedroom Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +99,Luxurious Executive Newly Built Decent 4bedroom Detached With 1bedroom Bq At Lekki Atlantic Side,"Lekki Phase 1, Atlantic Side Lekki Phase 1 Lekki Lagos",₦,"300,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +100,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +101,Contemporary Massive 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +102,5bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +103,4 Bedroom Semi Detached House Ample Parking Space,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +104,Spacious 5 Bedroom Fully Detached Duplex With A Fitted Kitchen,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +105,Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +106,Contemporary 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +107,5 Bedroom Semi Detached Dupex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +108,Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +109,Contemporary 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +110,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +111,5 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +112,Extra Spacious 4 Bedroom Apartment,In A Serene And Save Estate At Idado Idado Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +113,Serviced 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +114,New Built And Luxury Finished 4bedroom Semi Detached Duplex In A Serene Estate,In A Serene Estate In. Chervon Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +115,5 Bedroom Detached Penthouse Duplex,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +116,Well Finished 5 Bedroom House,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +117,Executive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +118,Fully Furnished 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,7 baths,7 Toilets,Osapa London +119,4 Bedroom Semi Detached Duplex,Very Close To Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +120,5 Bedroom Contemporary Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +121,Newly Built 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +122,Newly Built Spacious 2bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +123,"This Luxurious Fully Furnished 4 Bedroom Fully Detached Duplex With Swimming Pool, Gym And A Room Bq",Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +124,Newly Built Beautifully 5 Bedroom + Bq Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +125,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +126,Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +127,Brand New 4 Bedroom Semi Detached Duplex With Bq In A Serene Secured Estate,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +128,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +129,Brand New Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +130,"Newly Built 5bedroom Duplex With 1bq, Large Outdoor Space",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +131,Lovely 4bedroom Terrace House,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +132,Newly Built And Affordable 3 Bedroom Terrace House,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +133,Luxury Built 6 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +134,4 Bedroom Terrace House,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +135,Serviced 4 Bedroom Maisonette Duplex In A Well Secure Estate,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +136,4 Bedroom Semi Detached With A Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +137,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +138,New Spacious 4 Bedroom Fully Detached Duplex With Bq,Chevron. Gate Orchid Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +139,Brand New 5bedroom Fully Detached House With A Bq Swimming Pool In A 247 Electricity Estate!!!,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +140,Brand New 5bedroom Fully Detached House With A Bq And 247 Electricity !!!,Conservation Road Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +141,5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +142,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +143,5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +144,Newly Built 5 Bedrooms Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +145,2bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +146,Amazing 4 Bedroom Terrace Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +147,Newly Built 5 Bedrooms Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +148,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Premium Secured Estate Environment,Chevron Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +149,2bedroom Maisonette + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +150,5 Bed Fully Detached Duplex With 2 Bq In Lekki,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +151,5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +152,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +153,Contemporary 4 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +154,Massive Elegant 4 Bedroom Semi Detached Duplex,Adebayo Doherty Road (road 14) Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,3 baths,4 Toilets,Lekki Phase 1 +155,Newly Built Contemporary Serviced 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +156,4 Bedroom Townhouse For Sale At Twin Lakes Waterfront,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Chevron +157,500sqm Land*,Bogije Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +158,Fully Serviced 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +159,A Modern 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +160,Luxury 5 Bedroom Fully Detached Duplex + 2rooms Bq For Sale!!!,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +161,Spacious 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +162,Automated 6 Bedroom Penthouse Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +163,4bedroom Terrace Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +164,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +165,4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +166,Classy 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +167,5bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +168,Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +169,Spacious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +170,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +171,Exquisitely Built 5 Bedrooms Fully Detached Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +172,Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +173,Sparkling 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +174,Beautiful 4bedroom Terrace Houses,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +175,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +176,Beautiful & Contemporary 5 Bed Detached Masterpiece,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +177,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +178,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +179,Well Finished Luxury Home In A Very Secured Serene Estate,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +180,Newly Built 5bedroom Terrace At Chevyview With Bush Bar And Gym,Idado Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +181,3 Bedroom Terrace Home,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ologolo +182,Tastefully Finished 5 Bedroom Detached House With Bq & Swimming Pool, Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +183,7 Bedrooms Luxurious House On 3 Floors Including 2bedrooms Penthouse +1bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,8 baths,8 Toilets,Ikota +184,3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +185,Brand New 4 Bedroom Detached House With A Bq,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +186,3 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +187,Luxury 5bedroom Fully Detached Duplex With Bq*,Idado Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +188,5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +189,Beautiful 4 Bedroom Semi Detached House,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +190,Brand New 5 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Lekki Lagos Nigeria. Lekki Phase 1 Lekki Lagos,₦,"420,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +191,Massive 4bedroom Terrace Duplex With Separat Gate,Idado Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +192,Executive 5bedroom Semi Detached Duplex,Cowrie Creeks Estate Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +193,"Contemporary 5 Bedroom Fully Detached House, With Swimming Pool, Cinema And Open Roof Terrace",Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +194,4 Bedroom Terraced Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +195,Four Bedroom Semi Detached With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +196,Smart 2 Bedroom Flat,Orchid Chevron Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +197,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +198,This Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +199,Spacious 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +200,1bedroom & 2bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +201,Massive 4 Bedroom Fully Serviced Semi Detached Duplex,Jakande Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +202,Smart 1 Bedroom Flat,Orchid Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +203,Newly Built 4 Bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +204,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +205,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +206,Furnished 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +207,Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +208,Well Built 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +209,Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +210,Luxury Built And Beautiful Finished 4bedroom Semi Detached At Vgc,Victoria Garden Citu Vgc Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +211,Newly Built Beautiful 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +212,4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +213,Newly Built 5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +214,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +215,Super Gorgeous 5 Bedroom Contemporary Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +216,Very Spacious 4bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"77,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +217,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +218,Luxuriously Built 5 Bedroom Duplex In A Serene Estate,Jora Estate Agungi Lekki Lagos,₦,"150,005,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +219,4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +220,"Nicely Built 4 Bedroom Terrace Duplex Location: By Vgc, Ikota",Romax Homes Just By Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +221,5 Bedroom Fully Detached Duplex House With A Bq,Bera Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +222,Well Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +223,Luxury Finished 4bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +224,Tastefully Finished 3bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +225,4 Bedroom Contemporary Terrace House And A Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +226,Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"5,500,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +227,Contemporary Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +228,4bedroom Semi Detached Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +229,"Luxury 4 Bedroom Fully Detached Duplex With A Bq,",Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +230,Brand New 4 Bedroom Townhouse Duplex With Bq In A Serene Secured Estate Environment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +231,Newly Built 5bedrooms Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +232,Fenced Land Measuring 1310sqm,Rightside Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +233,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +234,5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +235,Brand New Fully Furnished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +236,Newly Built 2 Bedrooms Flat,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +237,3bedroom Flat,"Chevron Drive, Chevron Lekki Chevron Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +238,Beautiful Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +239,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +240,5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +241,Nicely Built 4 Bedroom Semi Detached Duplex For Sale In A Fully Serviced Estate,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +242,Extral Beautiful And Spacious 5bedroom Duplex 5 Car Park Space On 2floors,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +243,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +244,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"445,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +245,5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +246,Newly Built 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +247,Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +248,5 Bedroom Detached House Consisting 2 Living Rooms 1 Bq,Lake View Estate Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +249,New 4bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +250,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +251,2 Bedroom Pent House With Sea View Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +252,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +253,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +254,3 Bedroom Apartment,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +255,Luxurious 4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +256,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +257,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +258,Luxury 4 Bedroom Semi Detached House With Boy's Quarter,Idado Estate Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +259,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +260,4 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +261,5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +262,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +263,Elegant 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +264,5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +265,Newly Built 4 Bedroom Detached Plus Bq,"Orchid Road, Victoria Crest 2 Lekki Phase 2 Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +266,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +267,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +268,Mind Blowing 5 Bedroom Fully Detached Duplex With Bq And Very Spacious Pent House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"515,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +269,Magnificent 5 Bedroom Ensuite Detached Duplex,Jakande Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +270,Contemporary 5 Bedroom Fully Detached Duplex,"Harris Drive, Close To Heyden Filling Station Vgc Ikota Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +271,4 Bedroom Semi Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +272,2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +273,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +274,10 Units Of 2bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +275,Beautifully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"118,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +276,Brand New 2 Bedroom Apartment,Lekki Conservation Road Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +277,Newly Built 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +278,5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +279,5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +280,Newly 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinemas,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +281,3 Bedroom Maisonettes,Off Plan Sales Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +282,Spacious 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +283,Contemporary 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +284,Fully Serviced Newly Built 4 Bedroom Semi Detached Duplex .,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +285,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikate +286,5 Bedroom Detached House With Swimming Pool,Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +287,Newly Built 5bedrooms Fully Detached Duplex,"Lekki County, Megamound Estate Ikota Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +288,Very Spacious 5 Bedroom Fully Detached With Bq* In A Gated Estate,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +289,4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +290,Brand New 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +291,5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"195,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +292,5 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +293,"This Newly Built,spacious 4bedrooms Semi Detached Duplex With Bq & Is Currently In The Market",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +294,Brand New 4bedroom Fully Detached House With A Bq !!!,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +295,3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +296,5 Bedroom Semi Detached Home,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +297,"Fully Automated 5 Bedroom Duplex With Pool, Gym & In House Cinema",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +298,5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +299,Jaw Dropping 2 Floor Duplex 5 Bedroom Semi Detached Duplex,"Megamound Estate, Lekki County Ikota Lekki Lagos",₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +300,Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +301,4 Bedroom Semi Detached Duplex With Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +302,Contemporary Fully Furnished Four Bedroom Fully Detached Duplex With Allot Of Facilities,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +303,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +304,Most Beautiful 3 Bedroom Terrace With Swimming Pool,"Orchid, Victoria Bay Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +305,Fully Serviced 4 Bedroom Terrace Home For Sale,Orchid Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +306,Brand New Spacious 4 Bedroom Duplex,Orchid Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +307,Furnished 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +308,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Bera Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +309,Stunning 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +310,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +311,Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +312,4 Bedroom Terrace Duplex With A Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +313,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"445,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +314,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +315,Units 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +316,2 & 3 Bedroom Masionette Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +317,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"58,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +318,Massive Waterview 5 Bedroom Fully Detached Duplex,Calton Gate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +319,4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +320,Newly Built Luxury 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +321,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +322,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +323,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +324,Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +325,Extral Luxury And Spacious 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +326,Twinlakes Lakefront Plot Of Land,Chevron Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Chevron +327,Brand New Spacious 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +328,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +329,"Executive And Most Spacious 5 Bedroom Duplex With Swimming Pool, Can Take Up To 10cars","Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +330,4 Bedroom Fully Detached Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +331,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +332,Newly Built 4bedrooms Semi Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +333,Brand New Furnished Luxury 5bedroom Fully Detatched With A Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +334,Seriviced 4 Bedroom Semi Detached Duplex With Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +335,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +336,Fully Serviced 5bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +337,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +338,Waterfront Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +339,"3,150sqm Land",Lekki Epe Expressway Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +340,5 Bedroom Detached Duplex With Swimming Pool,Ocean Pavilion Estate Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +341,Spacious 2 And 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +342,Massive 4bedroom Fully Detached Duplex,"Harris Drive, Heyden Filling Station, Adjacent Vgc Ikota Lekki Lagos",₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +343,Nicely Finished 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +344,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +345,4 Bedroom Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +346,This Luxurious Finished 4 Bedroom Semi Detached Duplex And Mini Flat Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +347,"4 Bedroom Fully Detached Duplex With Swimming Pool, Private Cinema, Gym And A Room Bq",Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +348,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +349,Lovely Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +350,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +351,A Modern Jumbo 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +352,5 Bedroom Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +353,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +354,Brand New 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +355,4 Bedroom Contemporary Terrace House And A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +356,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +357,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +358,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +359,6 Bedroom Fully Detached Duplex With A Bq,Right Inside Vgc Estate Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,7 baths,7 Toilets,Victoria Garden City +360,Luxurious 5bedroom Duplex Fully Detached,Agungi Lekki Agungi Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +361,5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +362,Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +363,5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +364,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +365,5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +366,Newly Built 4bedrooms Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +367,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +368,Newly Built 4bedroom Adjacent Vgc,Harris Drive Adjacent Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +369,Most Spacious 5bedroom Fully Detached You Would Ever See,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +370,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +371,Newly Built 5 Bedroom Detached Duplex With Bq With Cinema And Gym,Megamound Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +372,Office Complex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,5 beds, baths,6 Toilets,Lekki Phase 1 +373,Purpose Built Shopping Plaza,Goshen Drive Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +374,5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +375,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +376,4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +377,5 Bedroom Fully Detached House With Large Compound Space,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +378,2 & 3 Bedroom Apartment With A Boys Quarter,Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +379,4bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"158,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +380,Scintillating 4bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +381,5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +382,2 Bedroom Furnished Apartment,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +383,1 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +384,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +385,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +386,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +387,Newly Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +388,5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Lekki +389,Brand New Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +390,4 Bedroom Terrace House For Sale,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +391,Spacious And Well Finished 5 Bedroom Fully Detached Duplex With A Fitted Kitchen., Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +392,5 Bedroom Semi Detached Home,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +393,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +394,500sqm Land*,Bogije Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +395,5 Bedroom Fully Detached Duplex,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +396,"Brand New 5bedroom Fully Detached House With A Bq, Swimming Pool And A Lake View!!",Lake View Estate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +397,4 Bedroom Semi Detached House,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +398,Magnificent 5bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +399,5 Bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +400,Serviced 3 Bedroom Apartment With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +401,4 Bedroom Detached Home For Sale,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +402,4bedroom Fully Detached And Fully Furnished With All Furnitures,Megamound Estate Right Inside Lekki County Ikota Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +403,Newly Built 5bedrooms Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"300,000,009",0,1,0,5 beds,6 baths,6 Toilets,Ikota +404,5 Bedroom Detached Duplex Penthouse,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +405,Brand New 4 Bedroom Townhouse Duplex With Bq In A Serene Secured Estate Environment For Sale !!!,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +406,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +407,4 Bedroom Penthouse + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +408,Newly Built 5bedroom Semi Detached,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +409,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +410,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +411,5 Bedroom Detached Duplex With Swimming For Sale ??,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +412,Brand New 4bedroom Fully Detached House With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +413,Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +414,1307sqm Land,"Block 134 Plot 10, Off Oriwu Street (by Petrocam) Lekki Phase 1 Lekki Lagos",₦,"360,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +415,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +416,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +417,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +418,Contemporary Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +419,5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +420,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +421,4 Bedroom Semi Detached With Bq,S Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +422,4 Bedroom Semi Detached Duplex,Very Close To Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +423,Exquisite 4 Bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds, baths, Toilets,Victoria Garden City +424,Executively Finished 5bedroom Duplex In A Fully Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +425,Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +426,4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +427,Contemporary 4 Bedroom Fully Detached Duplex And A Room Bq .,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +428,Luxurious 5 Bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +429,"Newly Built 4 Bedroom Maisonette ,gym And A Room Bq Is Located In A Serene And Secured Estate",Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +430,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +431,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"7,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +432,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +433,4 Bedroom Semi Detached Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +434,"For Sale!!! Serviced 4 Bedroom Terrace Duplex, With Swimming Pool, Gym, Children Play Ground",Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +435,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +436,5 Bedroom Contemporary Design Fully Detached With Bq,Lekki County Megamound Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +437,"5 Bedroom Duplex With All Furnitures In A Serviced Estate, Call To Enter Estate",Lekki County Ikota Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikota +438,Very Spacious 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +439,Contemporary Massive 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +440,3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +441,Contemporary Built 4bedroom Semi Detached Duplex With Solar In A Fully Secured Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +442,Grand 4 Bedroom Semi Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +443,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,6 baths,0 Toilets,Osapa London +444,Massive 4 Bedroom Fully Serviced Semi Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +445,Serviced 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +446,Fully Serviced 2 Bedroom Apartment (without Furniture),Lekki Conservation Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +447,Newly Built 5 Bedrooms Detached Duplex With Bq,"Chevron Drive, Bera Estate Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +448,Newly Built 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikota +449,"The Most Spacious 4 Bedroom Semi Detached Duplex In The Whole Of Chevron Toll Gate, With 247 Electricity And Water, Just Few Units Left",Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +450,Luxury 4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +451,5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +452,Fully Furnished 3 Bedroom Apartment,Spal Road Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +453,Newly Built Beautifully *4 Bedroom + Bq Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +454,Brand New 4bedroom Semi Detached Duplex With A Bq !!!,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +455,Newly Built 4bedroom Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +456,6 Bedroom Fully Detached Detached,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +457,5bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +458,Luxurious & Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Ikota Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +459,4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +460,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,0 Toilets,Ikate +461,4bedroom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +462,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +463,Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +464,2 Bedroom Maisonettes,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +465,Newly Built 5bedrooms Fully Detached Duplex With Bq,Mega Mound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +466,5 Bedroom Fully Detached Duplex With A Swimming Pool,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +467,This Lovely 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +468,Tastefully Furnished 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +469,4 Bedroom Fully Detached Duplex With A Bq,"Lekki Conservation, Chevron Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +470,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +471,Luxury 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +472,Beautiful 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +473,5 Bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +474,Freshly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +475,Newly Built 4 Bedroom Semi Detached Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +476,5 Bedroom Fully Detached Duplex,Harris Drive Beside Vgc Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +477,5 Bedroom Pent House Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +478,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +479,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +480,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +481,Newly Built 5 Bedroom Fully Detached Duplex,2nd Toll Gate Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +482,3 Bedroom Apartment With A Boys Quarter,Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +483,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +484,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +485,4 Bedroom Detached Duplex With Bq,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +486,Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +487,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +488,4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +489,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +490,6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +491,Executive 5bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +492,4 Bedroom Semi Detached Duplex With Self Compound,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +493,Brand New Fully Furnished 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikota +494,1bedroom Flat,Right Inside Chevron Chevron Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,2 baths,3 Toilets,Chevron +495,Contemporary 5 Bedroom White House With Swimming Pool / Mini Bar ...,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +496,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +497,Nicely Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +498,Nicely Built 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +499,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +500,Newly Built 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +501,5 Bedroom Fully Detached Duplex With Bq , Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +502,Serviced 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +503,Newly Built 5bedrooms Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +504,5 Bedroom Fully Detached House With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +505,5 Bedrooms Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +506,4bedroom Semi Detached Duplex,Bera Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +507,Deluxe 3 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +508,6bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +509,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +510,Two Units Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +511,Newly Built 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +512,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +513,5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +514,4 Four Bedroom Smart Home Terrace,Marwa Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +515,1000sqm Land,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +516,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +517,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +518,3 Bedroom Flat,Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +519,2 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +520,4 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +521,4 Bedroom House With Large Living Spaces And Excellent Finish,Vgc Estate Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +522,4 Bedroom Semi Detached Duplex With Full Furnishers Nd Luxury Chairs And Fittings,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +523,5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +524,4 Bedroom Detached Home,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +525,Newly Built 4bedroom Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +526,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +527,Newly Built 5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +528,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +529,Newly Built 4 Bedroom Fully Detached Duplex,"Orchid, 2nd Toll Gate Chevron Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +530,"5bedrooms Fully Detached Duplex. Within Al Gated Estate, Orchid Lekki L",Orchid Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +531,4 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +532,3bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +533,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +534,6 Bedroom Fully Detached Duplex With 2 Rooms Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"130,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikota +535,Brand New 4bedroom Fully Detached House With A Bq,Chervon Toll Gate Orchid Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +536,Brand New Spacious 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +537,Brand New 4bedroom Semi Detached Duplex With A Bq !!!,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +538,Contemporary 5 Bedroom Detached Duplex With B.q On A Full Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +539,Two Units Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +540,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +541,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +542,Well Built 5 Bedrooms Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +543,Newly Built And Fully Serviced 4bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +544,Luxury Units Of 4 Bedroom Terrace Duplex,Oniru Side Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +545,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +546,This Estates Boasts Of The Most Spacious Rooms And Also A 247 Electricity With Lovely Flowers,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +547,5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +548,4 Bedroom Masionette With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +549,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +550,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment For Sale,Lake View Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +551,Massive 5 Bedroom Fully Detached Duplex,Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +552,5 Bedroom Fully Detached Duplex + Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +553,A Luxury 5bedroom Fully Detached Duplex With Bq And Rooftop Lounge Is Available,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +554,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +555,Brand New 4 Bedroom Detached Duplex With Bq,"Chevron To Gate, Orchir Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +556,Beautiful 4 Bedroom Ensuite Terrace House,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +557,Brand New 4 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +558,Newly Built 4bedroom Semi Detached At 2nd Toll Gate,Just Beside Oral Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +559,Luxury 5 Bedroom Detached Duplex With Bq And Acs,Chevron Drive Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +560,Serviced 4 Bedroom Terrace Detached House With Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +561,3 Bedroom Carcass Property,Ikate Lekki Lagos,₦,"42,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +562,Luxury 2 Bedroom Apartment With A Room Bq,"Off Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +563,Luxury 5 Bedroom Fully Detached Duplex,Osapa Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +564,Luxury 2 Bedroom Apartment With A Room Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +565,Luxury 2 Bedroom Apartment With A Bq Under Construction,"Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +566,Luxury 2 Bedroom Apartment With A Room Bq,"Ebun Babalola Close Off Freedom Way, Ikate Lekki Lagos",₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +567,Luxury 2 Bedroom Apartment With A Bq Under Construction,"Close To Primewater On Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +568,Luxury 4 Bedroom Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +569,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +570,Newly Built 4bedroom Semi Detached Duplex,"Monastery Road, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +571,Luxury 2 Bedroom Apartment With A Room Bq,"Off Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +572,Service 3 Bedroom Furnished Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +573,Water Front Land,Maiyegun Beach Estate Eko Atlantic City Jakande Lekki Lagos,₦,"132,000,000",1,0,0, beds, baths, Toilets,Other Lekki +574,Luxury 4bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"85,000,000",1,0,0, beds, baths, Toilets,Victoria Garden City +575,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",1,0,0,5 beds,0 baths,0 Toilets,Ikota +576,Land 4537.078 Sq Mtrs,"Proximity To Chevron, Alpha Beach,suitable For School, Hotel, Hospital, Event Center,less Than 1minutes Away From Lekki Epe Express Way. Idado Lekki Lagos",₦,"950,000,000",1,0,0, beds, baths, Toilets,Other Lekki +577,Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +578,Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +579,2 Bedroom Maisonette For Sale At Camberwell Advantage 3,"Camberwall Advantage 3, Located At Kusenla Road, Off Gbangbala Street, Ikate, Off Freedom Way, Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,4 baths,4 Toilets,Other Lekki +580,4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +581,Brand New Charming 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +582,5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +583,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +584,3 Bedroom Block Of Flats,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +585,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +586,3 Bedroom Maisonette,"Camberwall Advantage 3 & 4 Ikate Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,1,0,3 beds,6 baths,6 Toilets,Lekki Phase 1 +587,Newly Built 4 Bedroom Semi Detached House With Fully Fitted Kitchen,Ikate Ikate Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +588,Exquisitely Finished 5 Bedroom Fully Detached Duplex On 800m² Land,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"330,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +589,4 Bedroom Semi Detached Duplex,"2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +590,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +591,Luxury 5 Bedroom Detached House \,Megamound Estate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +592,Luxury And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +593,Newly Built Superb 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +594,Lovely 5 Bedroom Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +595,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +596,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +597,Newly Built 6 Units Of Semi Detached 3 Bedroom Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,5 Toilets,Osapa London +598,Lovely Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +599,Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +600,"Exquisitely Built Fully Furnished 5 Bedroom Duplex (fully Furnished With Luxury Funiture & Fittings; 11 Acs In All Livable Spaces, Gym And Many More)","Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +601,Brand New Spacious Super Luxury 4 Bedroom Massionette House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +602,"10 Hectares Of Dry, Waterfront Land",Ikate Lekki Lagos,₦,"14,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +603,6 Bedroom Fully Detached House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"480,000,000",1,1,0,6 beds,6 baths,7 Toilets,Other Lekki +604,Exquisitely Finished 5 Bedroom Detached Duplex,Lekki County Homes (megamound Estate) Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +605,Newly Built 4 Bedroom Terrace Duplex With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +606,4 Bedrooms Terrace Duplex For Sale,Off Kusenla Ikate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +607,Newly Built 4 Bedrooms Terraced Duplex With Ample Parking Space,Chevron Lekki Lagos,₦,"4,000,000/year",1,0,1,4 beds,4 baths,5 Toilets,Chevron +608,Newly Built 4 Bedroom Masionette With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +609,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +610,Newly Built 2 Bedroom Penthouse Apartment,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +611,Spacious 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"145,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +612,Spacious 4 Bedroom Semi Detached Duplex;,Off Orchid Road By Lekki 2nd Toll Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +613,Newly Built Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +614,Newly Built 3 & 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +615,Lovely Prime Plot Of Land Measuring 692sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"111,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +616,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikate +617,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +618,Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +619,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",1,0,0,5 beds,0 baths,0 Toilets,Osapa London +620,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +621,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +622,Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +623,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +624,Tastefully Finished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +625,Luxury 2 & 1 Bedroom Penthouse Apartment,Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +626,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +627,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +628,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +629,Tastefully Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +630,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +631,Brand New Fantastic 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +632,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,5 Toilets,Osapa London +633,Well Maintained 5 Bedroom Detached House,"Directly Facing Admiralty Road, Lekki Phase1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +634,Lovely Crafted Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +635,4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +636,Strategically Located 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +637,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +638,5bedrooms Detached House + 1 Room Bq,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +639,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +640,Upscale 4 Bedroom Terraced Duplex With Swimming Area,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +641,Massive 5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +642,Exquisitely Designed 5 Bedroom Detached House Brand With A Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +643,Brand New Premium & Contemporary 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"188,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +644,Newly Built 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +645,Luxury Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +646,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +647,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Eleganza Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +648,5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +649,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +650,Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +651,4 Bedroom Terrace,Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +652,Brand New 4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +653,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,2 beds,2 baths,2 Toilets,Ikate +654,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +655,Newly Built 30 Units Of Terrace Duplex,"Ikota, Lekki, Lagos. Ikota Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +656,Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +657,"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Victory Park Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +658,Exquisite 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikate +659,Brand New And Superb 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +660,Luxury 5 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +661,A 4bedrooms Semi Detached Duplex + 1 Room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +662,Fenced Vacant Plot 3100 Square Meters Facing Mega Chicken Lekki,Lekki/epe Expressway Ikota Lekki Lagos,₦,"750,000,000",1,0,0, beds, baths, Toilets,Ikota +663,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +664,2 Bedrooms Flat For Sale,Off Alpha Beach Road (new Road) Igbo Efon Lekki Lagos,₦,"16,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +665,Land Measuring 600m² & 800m² Respectively,"Lakeview Park 1 Estate Opposite Ikota Shopping Complex, Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +666,Newly Built 5 Bedrooms Detached House,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds, baths, Toilets,Chevron +667,"Contemporary, Luxurious 5 Bedroom Detached House",Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +668,A Fenced Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +669,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",1,1,1,1 beds,1 baths,2 Toilets,Ikate +670,Spacious 5 Bedroom Detached Duplex With Ample Parking Space,Pinnock Beach Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +671,2 Bedroom Apartment Off Plan,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +672,Newly Built 5bedrooms Detached House + 1 Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +673,Luxury Built 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +674,Luxury 5 Bedroom Detached Duplex Terrace And Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikate +675,Furnished 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +676,Luxury 2 Bedroom Flat With Swimming Area,Ikate Lekki Lagos,₦,"55,000,000/year",0,0,1,2 beds,2 baths,3 Toilets,Ikate +677,Beautiful 4 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +678,5 Bedrooms Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"89,000,000",0,0,0,5 beds, baths, Toilets,Ikota +679,5 Bedroom Fully Detached Duplex,Super Spacious Exquistely Duplex In A Prime Location. Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Ikate +680,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +681,5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +682,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +683,Luxury 5 Bedroom Fully Detached Duplex,Chevron Alternative Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +684,Furnished 4 Bedroom Terraced Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Agungi +685,Luxury 2 Bedroom Penthouse Maisonette,Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +686,2 Bedroom Apartment At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +687,3 Bedroom + Bq (penthouse) At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +688,Luxury And Spacious 5 Bedroom Detached,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +689,Beautiful 5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +690,Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +691,Newly Built Luxury 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +692,A Newly Built 4 Bedroom Terrace Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +693,3 Bedroom + Bq (penthouse) At The Camberwall Advantage 1,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +694,6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +695,Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +696,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +697,Luxury 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +698,Luxury 5 Bedroom Detached Duplex With Quality Interior,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +699,4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +700,Newly Built Five Bedroom Fully Detached Home In A Serene Neighbourhood,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +701,2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +702,Premium 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +703,Tastefully Finished 4 Bedroom Semi Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +704,5 Bedroom Detached Duplex With Boys Quarter,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +705,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +706,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +707,Newly Built 5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +708,Nicely Built 4 Bedroom Semi Detached Duplex With Staff Quarters;,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +709,Luxury 5 Bedroom Detached Duplex,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +710,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +711,Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +712,Brand New Charming 4 Bedroom Semi Detached Duplex With Bq At Osapa,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +713,Cornerpiece Land Measuring 817m²,"Nicon Town Estate, Ilasan Lekki Lagos",₦,"340,000,000",0,0,0, beds, baths, Toilets,Other Lekki +714,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +715,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +716,Beautiful 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +717,4 Bedroom Terrace Duplex With Swimming Pool,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +718,Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +719,Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +720,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +721,Brand New Contemporary 5 Bedroom Detached Duplex With Bq,Lekky County Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +722,Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +723,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +724,Built 4 Bedroom Terrace Duplex With Pool,Chevron Tollgate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +725,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +726,Newly Built Luxurious Four Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +727,Exquisitely Finished 5 Bbedroom Detached House With A Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +728,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +729,4 Bedroom Massionatte +bq At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +730,Alluring 5 Bedroom Virtual Detached Duplex,Megamound Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +731,Spacious 3 Bedroom Apartment With Ample Parking Space,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +732,Newly Built Superb 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +733,Fully 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +734,Magnificent 2 Units Of 4 Bedroom Semi Detached Houses,Carlton Gate Estate Lekki Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +735,Luxury 4 Bedroom Semi Detached Duplex,Harris Drive Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +736,A Wing Of 4 Bedrooms Semi Detached House (newly Built),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +737,Luxury 4 Bedroom Detached House,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +738,A Classic Super Luxury Fully Serviced 4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +739,Contemporary 5 Bedroom Detached Duplex,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +740,Brand New Spacious Luxury 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +741,Newly Built Top Notch 2 Bedroom Apartment,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +742,Quality 5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +743,Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +744,Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +745,Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +746,2 Bedroom Apartment*,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +747,Finished 4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +748,Luxury 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,0 Toilets,Victoria Garden City +749,Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +750,5 Bedroom Apartment*,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +751,5 Bedroom Semi Detached Duplex,"Cowrie Creek Estate, Off Spar Road Ikate Lekki Lagos",₦,"400,000,000",1,1,0,5 beds,6 baths,7 Toilets,Ikate +752,2 Bedroom Ensuite Flat + 1 Room Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +753,Spacious 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +754,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +755,Beautifully Finished 2bedroom Serviced Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +756,Spacious 3 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"42,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +757,Semi Furnished 4 Bedroom Terraced Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +758,4 Bedroom Terraced Duplex With A Room Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +759,"The Deal: Full Service, High Rental Duplex",Osapa Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +760,Showcasing Incredible Spaciousness And Quality Finishes,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +761,956sqm Land,"Twin Lakes Estate, Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +762,Newly Built Luxury 4 Bedroom Semi Detached House With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +763,Luxurious & Affordable 2bedroom Apartment Available,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +764,Tastefully Furnished 2 Bedroom Fully Serviced Apartment Available,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +765,"6 Bedrooms Mansion House With 2 Rooms Bq,",Zone B Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,6 beds,7 baths,7 Toilets,Other Lekki +766,4 Units Of 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +767,Fully Serviced 3 Bedroom Flat,Pinnock Beach Estate Jakande Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +768,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +769,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +770,Executive Fully Detached House Of Twin Duplex (5 Bedroom & 4bedroom Duplex) With Bq.,"Off Orchid Road, Ikota Lekki Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets,Ikota +771,Tastefully Finished 4 Bedroom Terrace House.,Ikotavilla Area Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +772,New 5 Bedroom Fully Detached House + Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +773,Serviced Plot Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +774,Luxurious 5 Bedroom Smart House In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +775,4 Bedroom Fully Furnished Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +776,4 Terrace Duplex For With Private Compound For Sale.,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +777,4 Bedroom With Maids Room Town House,Imperial City Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,0 Toilets,Ikate +778,4 Bedroom Detached Duplex For Sale,Lekki Conservative 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +779,This Lovely 4 Bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +780,5bedroom Semi Detached Duplex For Sale,Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +781,Service 4 Bedroom Terrace Duplex With Bq And Pent Top At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +782,This Lovely 4bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +783,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +784,This Lovely 4bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +785,4 Bedroom Semi Detached For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +786,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +787,"1 & 2bedroom Apartment For Sale, Suitabe For Shortlet",Ikate Lekki Lagos,₦,"52,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +788,This Lovely 4bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +789,"1 & 2bedroom Apartment For Sale, Suitabe For Shortlet",Ikota Lekki Lagos,₦,"52,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +790,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +791,Spacious 4 Terrace Duplex For With Private Compound For Sale.,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +792,Fully Serviced 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +793,4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +794,For Sale???? Fully Serviced 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +795,For Sale???? 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +796,This Lovely 4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +797,This Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +798,2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +799,This Lovely 4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +800,This Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +801,Land,Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +802,Land,"Lekki Foreshore, Lekki Phase 1 Lekki Lagos",₦,"330,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +803,Land Measuring 600m²,"Lakeview Park 2, Off Orchid Hotel Road, Ikota Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikota +804,Fully Serviced 3 Bedroom Flat With 24hrs Power,"Western Foreshore Estate, Behind Circle Mall, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +805,7 Bedroom Detached Duplex Suitable For Commercial Use,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +806,4 Bedroom Fully Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +807,4 Bedroom Terrace Duplex,Right Side Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +808,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +809,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +810,5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +811,Newly Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets,Ikota +812,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +813,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +814,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +815,Luxurious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +816,Newly Built 3 Bedroom Terrace,Orchid Area Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets,Ikota +817,Newly Built 3 Bedroom Terrace,Orchid Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds, baths, Toilets,Ikota +818,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets,Ikate +819,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds, baths, Toilets,Ikate +820,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Open Terrace And Bq",Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +821,"Contemporary Luxury 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +822,"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +823,2bedrooms Apartment,Off Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +824,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +825,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +826,Serviced Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +827,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +828,Magnificent 5 Bedroom Edifice With Swimming Pool And Open Terrace,Megamound Ikota Lekki Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +829,Well Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +830,Well Built 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"93,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +831,Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +832,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +833,Beautiful 5 Bedroom Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +834,4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +835,Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +836,Lovely 3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +837,"Executive 5 Bedroom Detached Duplex With Swimming Pool, Gym, Cinema And Bq",Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +838,2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +839,Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +840,"Massive 4 Bedroom Terrace Duplex With Swimming Pool, Gym",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +841,"5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +842,Contemporary 5 Bedroom Detached Duplex With Cinema,2nd Toll Gate Chevron Lekki Lagos,₦,"235,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +843,Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +844,5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +845,Brand New Serviced 4 Bedroom Apartment With Swimming Pool,Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +846,Beautiful Serviced 3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +847,4 Bedrooms Flat,"Oniru, Lekki Lekki Lagos",₦,"360,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +848,Massive 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +849,Fully Serviced 3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +850,Fully Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +851,Beautiful 5 Bedroom Detached Duplex With Bq,Agungi/osapa London Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +852,Massive 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +853,Luxury 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +854,Lovely 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +855,Well Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +856,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +857,Exquisite 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +858,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +859,Lovely 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +860,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +861,Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +862,Brand New 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +863,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And 2 Rooms Bq",Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +864,Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +865,Brand New 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +866,"Contemporary Automated 5 Detached Duplex With Swimming Pool, Cinema, Gym And 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"368,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +867,Newly Built 4bedroom Terraces Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +868,Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +869,Serviced 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +870,Serviced 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +871,Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths, Toilets,Lekki Phase 1 +872,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +873,"Contemporary Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And 2 Rooms Bq",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +874,Beautiful 5 Bedroom Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +875,Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +876,Massive 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +877,Well Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +878,Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +879,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq Cinema",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"425,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +880,Massive 4 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +881,Luxurious Finished 5 Bedroom Detached Duplex With Bq,Lekki County Home Ikota Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +882,Luxury Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +883,Furnished 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +884,Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +885,Brand New 3 Bedroom Apartment With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +886,Well Furnished 4 Bedroom Terrace Duplex.,Chevy View Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikota +887,Luxury 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +888,Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"143,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +889,"Serviced 4 Bedroom Semi Detached Duplex With Swimming Pool, Gym And Bq",Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +890,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym Area And Bq",2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +891,Beautiful 4 Bedroom Terraced Duplex,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +892,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ologolo Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +893,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Pinnock Beach Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +894,Fenced And Sand Filled Land In A Safe Environment. Title. Governors Consent,Along Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"66,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +895,Well Furnished And Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,0 baths,0 Toilets,Agungi +896,4 Bedrooms Fully Detached Duplex,"2nd Toll Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"133,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +897,Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +898,Well Built 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +899,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +900,Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +901,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym And 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"348,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +902,5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +903,Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +904,Lovely 4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +905,Lovely 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +906,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +907,Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +908,Well Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +909,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +910,4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"55,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +911,Lovely 5 Bedroom Detached Duplex With Gym And Bq,Idado Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +912,Well Built 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +913,Luxury 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,6 Toilets,Ikota +914,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +915,Exclusive 5 Bedroom Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +916,Capacious 4 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +917,Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +918,Contemporary 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +919,Lovely 5 Bedroom Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +920,Contemporary 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +921,Well Built 5 Bedroom Detached Duplex With Swimming Pool And Bq,Agungi Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +922,Luxury 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +923,"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +924,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +925,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +926,2 Bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +927,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +928,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets,Ikota +929,Excellently Built 6 Bedroomfully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets,Victoria Garden City +930,Newly Built 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +931,4bedroom Semi Detached Duplex With A Bq,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,0 baths,0 Toilets,Chevron +932,Semi Detached 4 Bedroom Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +933,Beautifully 5bedroom Detached Home,Berra Chevron Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +934,4 Bedroom Semi Detached Duplex,Orchid Road Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +935,3 Bedroom Flat Apartment,Off Hakeem Dickson Road Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +936,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +937,Land,"Elegushi Itedo, Off Freedomway Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +938,"1,2,3 Bedroom Apartment",Second Tool Gate Ikota Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ikota +939,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikota +940,Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,4 baths,4 Toilets,Agungi +941,5 Bedroom Fully Detached House,Lekki Lagos,₦,"235,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Lekki +942,Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +943,Land,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +944,Beautiful Finished 5bedroom Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +945,Luxury 4bedroom Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +946,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +947,Luxury 5bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +948,2 Bedroom Apartments With Elevator,Chisco Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +949,4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ologolo +950,Brand New And Luxury 5 Bedrooms Duplex,"Osapa London, Lekki Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +951,Luxury 4 Bedroom Home,Idado Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +952,5 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +953,Contemporary 6 Bedroom Home With 2 Bqs,Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +954,Decently Built 4 Bedroom Detached,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +955,Luxury 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +956,"Newly Built 2bedroom,3bedroom And 4bedroom Flat","4 Lekki Epe Express Way Intersection, Adjacent Enyo Fuel Station Behind New Sofia Bedmate Lekki Show Road, Ikate Lekki Lagos",₦,"90,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +957,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +958,Detached House In A Good Location,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +959,Two Bedroom Terrace Apartment,Orchid Area Very Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Chevron +960,Lovely 2 Bedroom Apartment,Elegushi Ikate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +961,Cosy 5 Bed + 3 Sitting + Bq @ N235m,Chevron Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +962,Luxury Exquisite Newly Built 4 Bedroom Terraced Duplex Plus A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +963,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +964,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +965,4 Bedroom Terraced Duplex,"Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"87,000,000",0,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +966,Brand New 4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"60,000,000/year",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +967,Luxury Newly Built All En Suite 4 Bedrooms With Boys Quarter,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +968,Brand New 3bedrooms Flat Ensuite,"Oceanbay Estate, Off Orchid Road. Ikota Lekki Lagos",₦,"48,600,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +969,Land,Acadia Groove Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +970,4 Bedroom Terrace Duplex,"Orchid Road, Ikota Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +971,4 Bedroom Terrace Duplex,"Orchid Road, Ikota Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +972,Tastefully Finished 3 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +973,650sqm Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +974,Fully Furnished 2 Bedroom Flat,Orchid Road Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Lekki +975,Luxury 3bedroom Serviced Apartments Waterfront,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +976,Tastefully Finished 4 Bedroom Terrace With Bq,Off Gbamgbala Ikate Lekki Lagos,₦,"105,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Ikate +977,Bareland Measuring 650sqmt,Orange Island Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +978,5 Bedroom Semi Detached Duplex With Room Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +979,Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +980,3 Bedroom Townhouse With Large Garden And Integrated Boys Quarter,Kusenla Road Yetville Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +981,Brand New 4 Bedroom Semi Detached House,Eletu Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +982,Newly Built 5bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +983,Newly Built 4bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +984,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +985,Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +986,Luxury 4bedroom Terrace Duplex,Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +987,Brand New 4bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +988,5 Bedroom Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,7 Toilets,Ikota +989,Newly Built 3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +990,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +991,Luxury 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +992,Newly Built 4 Bedroom Duplex In A Serene Environment,"Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"98,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +993,Newly Built 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +994,Newly Build 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +995,Newly Built 2 Bedroom Terraced Duplex Worth Bq,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +996,500sqm Of Land,Ologolo Aro Town Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +997,Dapper 5 Bedrooms Detached Duplex With Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +998,Luxury 9 Bedrooms Detached Duplex With Swimming Pool,Nicon Town Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,1,0,9 beds,9 baths,10 Toilets,Other Lekki +999,"Executive 4 Bedroom Duplex, Lekki Penisula Phase 2",Lekki Penisula Estate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1000,Luxury 5bedroom Fully Detached Duplex Tastefully Finished With Modern Facilities,Experience The Beauty Of Life In Cluster 1 Residences Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1001,Luxury 4 Bedroom Semi Detached With Bq,Carlton Gate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1002,Luxurious 2 Bedroom Flat,Salem Ikate Ikate Lekki Lagos,₦,"57,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1003,Land,"Royal Garden Estate, Ajah Lekki Phase 2 Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1004,Exceptionally Finished Luxury 4bedroom Terrace Duplex Newly Built In A Standard And Serviced Estate,Ikota Villa Estate Lekki Phase 2 Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1005,Luxury 4bedroom Terrace Duplex With Good Ambient And Mini Estate,Ajah Ilaje Lagos Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1006,Completed 4 Bedroom Terrace Duplex,Paradise Estate 2 Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +1007,Newly Built 4bedrooms Massive Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +1008,Newly Built 5 Bedroom Semi Detached Duplex With Excellent Finishes,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +1009,4 Bedroom Fully Finished And Serviced Semi Detached Duplex Plus Bq,"Plot 32b Block 77 Victoria Street, Lekki Phase 1 Lekki Lagos",$,"300,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1010,Beautifully Fully Detached 5 Bedrooms Plus A Room Bq For Sale,Agungi Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +1011,Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool And A Room Bq,Elegushi Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1012,2 Bedroom Penthouse Apartment,"Behind Onike Ark Gallery, Ikate Lekki Lagos",₦,"85,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +1013,Beautiful Terraced 4 Bedroom House,Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +1014,Exquisitely Newly Built Luxury Finished 4 Bedroom Terrace Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1015,Spacious 4 Bedroom Semi Detached Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +1016,Cool 4 Bedroom Semi Detached With Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +1017,An Excellent 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +1018,Lovely 4 Bedroom Semi Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1019,Serviced 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1020,Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1021,Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1022,800.698sqms Of Dry Land,On Spar Road Ikate Lekki Lagos,₦,"270,000,000",1,0,0, beds, baths, Toilets,Ikate +1023,5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +1024,Beautiful 4 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +1025,Luxury 5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +1026,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1027,Luxury 1 Bedroom Apartments,Along Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +1028,Serviced Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1029,Magnificent 5 Bedroom Fully Detached Duplex,Megamound Ikota Lekki Lagos,₦,"280,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +1030,Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1031,Well Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1032,Contemporary Automated 6 Bedroom Detached Duplex With 2 Rooms Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +1033,Brand New 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1034,Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1035,Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1036,Fully Automated 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1037,Luxury 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"129,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1038,2 Wings Of 5 Bedroom Semi Detached Duplex With Bq,"Ologolo, Lekki Lagos Ologolo Lekki Lagos",₦,"140,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ologolo +1039,Serviced 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1040,2bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +1041,Luxury Furnished Detached 6bedrooms Furnished Detached Duplex With Swimming Pool + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +1042,Luxury And Detached 4bedroom House + 1 Room Bq,Ikota Villa Estate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +1043,Fully Furnished 2 Bedroom Shortlet Apartment For Sale,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1044,4 Bedroom Terrace,Lekki Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Lekki +1045,Contemporary 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1046,Serviced 5 Bedroom Detached,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1047,Automated 5 Bedroom Contemporary Detached Duplex With Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1048,Urnished 5 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1049,Spacious And Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1050,Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1051,Well Built 5 Bedroom Luxury Mansion,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1052,Newly Built 4bedrooms Terraced Duplexes,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1053,Serviced 3 Bedroom Apartment With Pool & Gym,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +1054,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1055,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +1056,3bedroom Apartment With Bq,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +1057,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +1058,Sharply Looking 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1059,Newly Built Fully 3bedroom Flat,Off Admiraty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1060,Brand New 5bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +1061,4 Bedroom Semi Detached,"Ocean Palms Estate Scheme 3, Gbangbala Street, Ikate Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1062,Luxurious 4 Bedroom Fully Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1063,Elegant 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +1064,5 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1065,Luxury 10 Bedroom Plus 4 Parlour Duplex,In A Gated Estate By Marwa Busstop Second Roundabout Lekki Phase 1 Lekki Lagos,₦,"510,000,000",0,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +1066,Luxury 3 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1067,Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1068,Land,V.g.c Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +1069,Land,Freedom Way Lekki Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1070,Land,Off Freedom Way Lekki Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1071,Land,Royal Garden Estate Lekki Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1072,Five Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1073,3 Bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1074,Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1075,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,0 baths,0 Toilets,Ikota +1076,5 Bedroom Terraced Duplex,African Lane Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1077,5 Bedroom Fully Detached Duplex,"Off Orchid Rd, Near Chevron Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +1078,10 Plots Of Land,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1079,4 Bedroom Terrace Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1080,Spacious 4 And 5 Semi And Fully Detached Duplex,Spar Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +1081,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1082,500 Square Meters Virgin Land,Pinnock Beach Estate Osapa Jakande Jakande Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1083,3 Bedroom Flat,Ilasan Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Lekki +1084,A Lovely 2 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +1085,4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1086,Furnished 4bedroom Terraced Duplex,"Paradis 2 Estate, Chevron Alternatives Route Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +1087,Land Measuring 1200sqm,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +1088,Land Measuring 850m²,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1089,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +1090,2 Bedroom Flat,Ilasan Ikate Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +1091,5 Bedroom Fully Detached Duplex,"Lekki County Home, Chevron, Vgc, Oral Estate, Megachicken Ikota Lekki Lagos",₦,"235,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +1092,Serviced Carcass 4bedroom Mansionatte,Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1093,Finished 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1094,"Dry Fenced Land Measuring 120,000m² (12 Hectares )",Lekki Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1095,4bedroom Terrace With One Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1096,4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1097,Land,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1098,Land,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1099,Victoria Garden City (vgc) Lekki* Commercial Zone,Vgc Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +1100,Brand New & Luxury 5 Bedroom Detached Duplex Located In A Secured Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1101,5bedrooms Duplex,Ologolo Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +1102,Serviced Spacious 2bedroom Apartment,Megamound Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +1103,4bedrooms Smart Home,"Orchid Road, By Second Toll Gate Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1104,A Well Finished 3bedroom Terrace With High End Amenities And Fittings,Lekki Phase 1 Lekki Lagos,₦,"120,000,000/year",0,1,0,3 beds,3 baths,5 Toilets,Lekki Phase 1 +1105,"Newly Built, Furnished, Tastefully Finished, 4bedroom Detached House With Two Room Boy's Quarters",Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1106,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0, beds,5 baths,6 Toilets,Ikate +1107,4 Bedroom Detached Duplex,"Freedom Way, Dome, Oba Eleguishi Palace Ikate Lekki Lagos",₦,"120,000,000",0,0,0, beds,4 baths,5 Toilets,Ikate +1108,Great 3bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +1109,Newly Built And Tastefully Finished Detached 5 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +1110,7 Bedroom Fully Detached Duplex Good For Hospital/school/hotel/shortlet,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,8 baths,8 Toilets,Lekki Phase 1 +1111,Spacious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +1112,Fantastic 7 Bedroom Detached Duplex With 2 Bedroom Penthouse,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,7 beds,7 baths,9 Toilets,Ikota +1113,Luxury 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +1114,Luxurious Fully Detached 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +1115,Terrace 4 Bedroom With 2 Room Bq,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1116,800sqm Land In A Private Estate,Nicon Town Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Lekki +1117,Newly Built 4bedroom Semi Detached Duplex With A Room Guest Charlett And Swimming Pool And Carport,"Lekki County Homes, Ikota Villa Estate, Ikota Lagos Ikota Lekki Lagos",₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +1118,4 Bedrooms Semi Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +1119,Contemporary Luxury 5 Bedroom Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +1120,Massive 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1121,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +1122,Land,Oniru Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1123,Newly Built Luxury Brand New 1 Bedroom Flat,"Idado Estate,lekki Idado Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,1 baths,1 Toilets,Other Lekki +1124,Lucrative And Business Viable Shops,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1125,A Well Maintained And Serviced 4 Bedroom Apartment With A Bq,"Safe Court Estate, Ikate, Lekki, By Salem / Spar Road Ikate Lekki Lagos",₦,"62,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +1126,Value Centric 5 Bed Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,1,0 beds,0 baths,0 Toilets,Agungi +1127,Smart And Luxuriously Finished 2 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1128,Luxurious 3 Bedroom (furnished & Serviced) Apartment,Spar Road Ikate Lekki Lagos,₦,"68,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikate +1129,3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds, baths, Toilets,Agungi +1130,Tasefully Finished 5bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1131,4 Bedroom Terrace Duplex,Yekini Elegushi Road Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1132,4 Bedroom Detached House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1133,4 Bedroom Terrace Duplex With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1134,Luxury 4 Bedroom Fully Detached Duplex,"By 2nd Toll Gate, Oral Estate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1135,A Fabulous Home In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1136,2 Units Of 5 Bedroom Semi Detached Houses,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Chevron +1137,Luxurious Five Bedroom Duplex And A Bq In Graceland Estate Ajiwe Ajah Jona,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +1138,Serviced 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1139,4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1140,Newly Built 4bedroom Terrace Duplex With A Room Bq,"Orchid Road, Eleganza, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +1141,4 Bedrooms Terrace House,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1142,3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1143,4units Of Three Bedroom Flat Fully Furnished,Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1144,4 Bedrooms Fully Detached Duplex,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +1145,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +1146,5bedroom Duplex In A Serene Neighborhood,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1147,2 Bedroom Flat,Paradise 2 Extension Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1148,7 Bedroom House,"Property Off New Creation Avenue, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +1149,"Luxury, Furnished, Serviced 2 Bedroom Flat",Orchid Road Oral Estate Lekki Lagos,₦,"35,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +1150,Newly Built 4 Bedroom Terrace In A Serene And Secured Estate,Orchid Road Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +1151,Luxury 2 And 4bedroom Terrace Duplexes With Bq,"Emcel Estate, Orchid Close To Chevron Tollgate. Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +1152,Land Measuring 650m²,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1153,2 Bedroom Apartment,Salem Ilasan Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +1154,5 Bedroom Fully Detached House With 1 Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +1155,3 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds, baths, Toilets,Ikota +1156,Brand New 4 Bedroom Terrace Duplex With A Room Bq,Elegushi Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1157,Land,Spg Road Ologolo Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +1158,60 Hectares Choice & Futuristic Waterfront Development Land,"Twin Lakes Estate South Point, Chevron Junction Chevron Lekki Lagos",₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1159,Fully Furnished 4 Bedroom Semi Detached Duplex In A Serene Gated Estate,Tulip Haven Chevron Lekki Lagos,₦,"110,000,000",0,0,1,4 beds, baths, Toilets,Chevron +1160,800sqm Land In A Private Estate,Carlton Gate Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Chevron +1161,Exquisite 4 Bedrooms Semi Detached,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1162,4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1163,Brand New 4 Bedroom Semi Detached Duplex,3d Close Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +1164,Newly Built 4 Bedroom Terraced Duplex In Decent Environment,Ilasan Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1165,1000sqms Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +1166,Newly Built 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1167,Luxury 3 Bedroom Apartments/flat,Osapa London Lekki Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +1168,This Exotic 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1169,4 Bedroom Terrace Duplex,"Ikate, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +1170,"Newly Built, Serviced 5bedroom Terraced Duplex With 2 Rooms Boy's Quarters",Off Gbangbala Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1171,6 New Units Of 5 Bedroom Duplex Houses,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1172,Newly Built Lovely 2 Bedroom Flat,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +1173,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +1174,Executive All Rooms En Suite 2 Bedrooms With 24hours Light,Osapa Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +1175,"4 Bedroom Townhouse In Osapa, Lekk",Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +1176,A Newly Built 5 Bedrooms Fully Detached Duplex,Street Behind Canada Embassy Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1177,Brand New 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1178,Luxury Furnished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1179,2 Bedroom Flat,Paradise 2 Extension Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1180,Fantastic 3 Bedrooms Bungalow With Bq,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +1181,Half Plot Of Land,Off Victoria Arobieke Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1182,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym Space, Open Terrace And Bq",Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1183,Newly Built 5bedroom Fully Detached Duplex With Bq And Fitted Kitchen,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +1184,Fully Serviced 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 1 +1185,900sqm Land,"Victory Park Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1186,4 Bedroom Terrace Duplex And 2 Bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1187,2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +1188,7 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +1189,"Newly Built, Spacious, Tastefully Finished 5bedroom Detached House",Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +1190,Finished 2 Bedroom Terrace With A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1191,3 Bedroom Apartment With A Bq,Second Tool Gate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +1192,Luxurious 4 Bedroom Terrace On Orchid Road,"Primrose Court Estate, Orchid Road Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1193,4 Bedroom House,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +1194,6bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +1195,Newly Built All En Suite 4 Bedrooms With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +1196,New And Luxury 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1197,Brand New Luxury Home In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +1198,4 Units Of 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +1199,4 Bedroom Semi Detached House With Boys Quaters,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1200,4bedrooms Terraces,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1201,3 Bedroom Services Apartment,"Pinnock Bach Road, Agungi Agungi Lekki Lagos",₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets,Agungi +1202,4 Bedroom Fully Detached House,Nicon Town Estate Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +1203,Brand New 2 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,3 baths,3 Toilets,Agungi +1204,2bedroom Flat,Ikate Right Behind Enyo Petrol Station Ikate Lekki Lagos,₦,"45,000,000/year",1,0,0,2 beds,2 baths,3 Toilets,Ikate +1205,800sqm Land In A Highly Sought After Estate,Cowrie Creek Estate Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Lekki +1206,This Lovely 4bedroom Semi Detached Duplex With A Room Bq Is Located In A Secured Mini Estate,Second Tool Gate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1207,New And Msssive 5bedroom With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1208,Newly Built 2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1209,950sqms Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1210,Land,Pinnock Beach Estate Osapa Jakande Jakande Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1211,Residential Land (block 95),Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +1212,500sqm Fenced Land With C Of O,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +1213,5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1214,1000sqm Of Land,"Admiralty Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1215,Newly Built Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +1216,Newly Built Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Chevron +1217,Building With Block Of Flats,Jakande Jakande Lekki Lagos,₦,"800,000,000",1,1,1,10 beds,10 baths,10 Toilets,Other Lekki +1218,A Magnificient 2unit Ensuite Mansion,Nicon Town Lekki Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +1219,5 Bedroom Fully Detached Duplex,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +1220,Brand New 4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +1221,4 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +1222,Brand New 2 Bedroom Flat,Robert Close Oral Estate Lekki Lagos,₦,"37,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +1223,Newly Built Spacious 2bedrooms Flat,"Osapa Estate, Opposite Victory Park Osapa London Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +1224,Newly Built 6 Bedroom All Rooms En Suite,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,8 Toilets,Lekki Phase 2 +1225,"Executive 4bedroom Detached Duplex, At Osapa. London, Lekki",Osapa London Lekki Lagos,₦,"500,000,000/day",0,0,0, beds, baths, Toilets,Osapa London +1226,Brand New 5 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"285,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1227,3bedroom Flat With 1room 2,Prime Water Garden Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +1228,Tastefully Finished 4 Bedrooms Detached Duplex Plus 1room Bq,Ivy Homes Esate Off Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1229,Newly Built Serviced 2 Bedroom All Rooms En Suite Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1230,4bedroom Semi Detached Duplex,Osapa London Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +1231,3 Bedroom Flat With A Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +1232,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +1233,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +1234,4 Bedroom Semi Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +1235,5 Bedroom Semi Detached Duplex,"Orchid, Lekki Vgc Lekki Lagos",₦,"190,000,000",0,1,0,5 beds, baths, Toilets,Victoria Garden City +1236,6 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +1237,Well Maintained 3 Bedroom Flat With 1 Room Bq,Ilasan Lekki Lagos,₦,"60,000,000/day",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +1238,Finished 4bedroom Maisonette,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1239,Magnificent 5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1240,4bedrooms Massionette,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1241,5bedrooms Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1242,5bedrooms Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1243,4bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1244,4 Bedroom Semi Detached Duplex,Ochid Lekki Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1245,5 Bedrooms Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1246,5 Bedrooms Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1247,4bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1248,Contemporary 5 Bedroom Duplex With Superb Facilities,"25, Ikota Road, Lekki Phase 2, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,4 baths,6 Toilets,Lekki Phase 2 +1249,851sqms Of Bareland,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1250,Fantastic 3 Bedroom Terraced Duplex House With A Self Compound,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1251,4 Bedroom Terrace Duplex,Roxbury Estate Vgc Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +1252,Exquisite 5bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets,Ikate +1253,Newly Built 4 Bedroom Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1254,5 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +1255,3 Bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,0 Toilets,Ikate +1256,Exceptionally Finished Luxury 4bedroom Semi Detached Duplex Ready For Purchase,Ajah Ilaje Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +1257,Standard 5 Bedroom Detached Duplex,"40, Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"170,000,000/year",0,1,1,5 beds,5 baths,6 Toilets,Chevron +1258,Luxury 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1259,Newly Built 5bedroom Fully Detached Duplex.,Lekki County Estate. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +1260,Newly Built 4bedroom Fully Detached Duplex,Idado Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1261,605.2 Square Meters Land,Exxonmobil Estate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1262,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +1263,Newly Built 4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +1264,Brand New Massive 4bedroom Terrace With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +1265,Showy 5 Bedroom Detached Duplex With Swimming Pool,Northern Foreshore Estate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1266,1008sqms Of Bare Land,"Baderinwa, Alabi Street Lekki Phase 1 Lekki Lagos",₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1267,Newly Build 4bedroom Terrace Duplex,Oniru Close To U3 Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1268,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1269,Newly Built (2 Units) 4 Bedroom House In Serene Environment In Ologolo Lekki.,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +1270,2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1271,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1272,Spacious 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Estate Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +1273,Executive 3 Bedroom Semi Detached Duplex With A Room Bq,Brickscourt Estate Close To Orchid Hotel Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +1274,5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1275,3bedroom Massionette,Lekki Ikate Lekki Lagos,₦,"83,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +1276,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1277,Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +1278,Serviced 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1279,4 Bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +1280,4 Bedrooms Terrace House + 1 Room Bq,Platinum Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +1281,Luxury 5 Bedroom Detached Duplex With Swimming Pool Cinema And Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1282,Serviced And Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1283,Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1284,Beautiful 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1285,Serviced Luxury 3 Bedroom Apartmen,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1286,Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"84,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1287,5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1288,Contemporary 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1289,Nicely Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1290,Beautiful 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1291,Luxury 5 Bedroom Detached Smart Home With Bq,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1292,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +1293,Fully Serviced 2 Bed Apartment,Second Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,0 baths,0 Toilets,Chevron +1294,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1295,Serviced 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1296,4 Bedroom Semi Detached Duplex,"Lucky Luxury Gardens, Lekki County Homes, Ikota Lagos Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +1297,Luxury 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1298,Nicely Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1299,Contemporary 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1300,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1301,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1302,Beautiful 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +1303,Newly Built 4 Bedrooms Terrace House + 1 Room Bq,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +1304,2 Units Of 4 Bedrooms Detached House,Nike Art Gallery Area Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +1305,5 Bedrooms Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1306,Well Built Serviced 3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1307,"Serviced 2 Bedroom Apartment With Swimming Pool, Gym",Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1308,4 Bedroom Fully Detached,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ologolo +1309,Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +1310,Contemporary 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1311,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1312,3 Bedrooms Flat,Off Kusenla Ikate Lekki Lagos,₦,"60,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +1313,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"138,000,000",0,1,0, beds,4 baths,5 Toilets,Chevron +1314,5 Bedrooms Fully Detached Houses,Megamound Estate Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1315,4 Bedroom Detached House With Adjoining Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +1316,Exquisite Brand New 4 Bbedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +1317,Superbly Finished 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +1318,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +1319,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1320,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +1321,Tastefully Finished 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +1322,Beautiful 4 Bedroom Fully Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1323,Beautiful 4 Bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +1324,Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,Orchid Ikota Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +1325,"1,2,3,4 Bedroom Apartment",Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +1326,Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +1327,I Bedroom Apartment,Off Freedom Way Lagos Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1328,Block Of Flat & Terrace,Regional Road Off Freedom Way Lekki Ikate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1329,Four Bedroom Semi Detached Duplex,Vgc Regional Road Lekki Vgc Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets,Victoria Garden City +1330,Waterfront Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1331,Land,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1332,Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1333,2 Bedroom Apartment,Behind Onike Ark Gallery Ikate Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +1334,Tasefully Finished 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1335,Massive 6 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +1336,Land,"Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1337,Land,Orange Island Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1338,Land,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets,Chevron +1339,Land,Lekki Pride Estate Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +1340,1290sqm Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1341,Serviced 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +1342,2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,0 baths,0 Toilets,Other Lekki +1343,Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +1344,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1345,3 Bedroom Apartment,Second Tool Gate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +1346,Finished 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1347,5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,1,6 beds,0 baths,0 Toilets,Lekki Phase 1 +1348,Affordable 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1349,12 Units Of Block Of Flat,"By Aruna Bus Stop, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 2 +1350,Tasefully Finished 3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +1351,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +1352,Land,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1353,Luxury 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +1354,5 Bedroom Detached Home,Chevyview Estate Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +1355,"Land Measuring 1,002 Square Metres.",Osapa London Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1356,Newly Built 5 Bedroom Detached Duplex,Chuks Onyebuchi Drive Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1357,2 Bedroom Serviced Flats.,Off Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,0 baths,0 Toilets,Chevron +1358,Land,Ilasan Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1359,Land,Ikate Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1360,Luxury 3 Bedroom All Rooms En Suite Massionette Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1361,Luxurious 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1362,Exquisitely Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Ikota +1363,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1364,5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +1365,4 Bedroom Semi Detached Duplex,Victoria Bay 3 Estate Nike Art Gallery Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +1366,4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Lagos Business School, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +1367,4 Bedroom Terrace Duplex,"Chevron, Lekki Conservation, Lagos Business School, Chevron Lekki Lagos",₦,"69,000,000",0,1,0, beds, baths, Toilets,Chevron +1368,Shop Space,Igbo Efon Lekki Lagos,₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1369,A Spacious 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +1370,Luxury 2 Bedrooms Apartment With Bq,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +1371,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +1372,A 4 Bedroom Semi Detached House,Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1373,A Parcel Of Land Measuring 1438.264sq.mts,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +1374,Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1375,Spacious 2 Bedroom Apartment,"Ocean Palms Estate Scheme 1, Meadow Hall Way, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1376,Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +1377,Newly Built Four Bedroom Fully Detached Duplex With Bq,Orchid Road Lekki Chevron Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +1378,Newly Built Detached House In A Private Estate,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1379,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,0 baths,0 Toilets,Chevron +1380,Newly Built 5 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +1381,Spacious 4 Bedroom Fully Detached With Bq,"Ikota Gra, Ikota Villa, By Mega Chicken Ikota Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1382,Newly Built Tastefully Finished Fully Serviced 4bedroom Mansionatte,Jakande Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1383,Luxury 3bedrooms Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +1384,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1385,5 Bedroom Detached Home,"Osapa, Lekki Lagos Osapa London Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +1386,5 Bedroom Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +1387,4 Bedrooms Semi Detached Duplex With Bq,Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Expressway. Lekki Lagos,₦,"67,500,000",0,0,0,4 beds, baths, Toilets,Other Lekki +1388,4 Bedrooms Terraced Duplex,Citadel Views Estate Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Exp. Lagos Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +1389,4 Bedroom Semi Detached With A Bq,Lekki Lagos,₦,"55,000,000",1,0,1,4 beds,4 baths,4 Toilets,Other Lekki +1390,Lovely 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1391,Super 5 Bedroom Terrace With Bq,Close To Circle Mall Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +1392,Tasefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +1393,Beautiful 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +1394,Contemporary Luxury 5bedrooms Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1395,3 Bedroom Serviced Flat,"Eleganza, Orchid, Vgc, Chevron Chevron Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,3 baths,4 Toilets,Chevron +1396,3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +1397,2 Bedrooms Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1398,Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1399,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1400,Furnished Luxury 3bedrooms,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1401,A Lovey Newly Built 4 Bedroom Semi Detached House At Coworkers Creek For Sale,Cowrie Creek Estate. Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds, baths,5 Toilets,Ikate +1402,2 Bedroom Apartment,"Ilasan, Monarch, Oba Eleguishi, Jakande Ilasan Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +1403,Luxury 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1404,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +1405,2 Numberss Of 2bedroom Flats + A 2numbers Of Mini Flats,Awoyaya Lekki Peninsula Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +1406,650 Square Meters Of Land,"Orange Island, Lekki Phase 1 Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1407,Luxury 3bedroom Flat With Bq,Nicon Town Ikate Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +1408,Decently Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +1409,A Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +1410,Tasefully Finished 4 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1411,Brand New 4 Bedroom Semi Detached,Close To Mega Chicken Ikota Lekki Lagos,₦,"60,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Ikota +1412,Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1413,5bedrooms Smart Duplex With Penthouse,Orchid Road Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1414,Two Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +1415,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +1416,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +1417,A 4 Bedroom Terrace,"Kusenla Road, Ikate, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1418,Luxury 4 Bedroom All Rooms En Suite Semi Detached Duplex Plus A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1419,Newly Built And Spacious 3bedroom Flat With Bq,Chevron Alternative Drive Lekki Phase 2 Lekki Lagos,₦,"45,000/year",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +1420,4bedroom Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"60,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1421,100 Plots Of Land,Vgc Lekki Lagos,₦,"7,200,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +1422,5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1423,Luxury 4 Bedroom Terrce Duplex,Igbo Efon Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1424,5 Bedrooms Semi Detached Duplex + 1 Room Bq,Ikate Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +1425,4 Bedroom Semi Detached,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +1426,Tasefully Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1427,669sqm Land,Lekki County Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1428,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +1429,Brand New 5bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1430,"Newly Built, Tastefully Finished, 4bedroom Block Of Flats",Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +1431,Tastefully Finished 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +1432,Beautiful 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1433,"Well Maintained, Spacious, 4bedroom Terraced Duplex, Serviced With 24hrs Power",Chevron Lekki Lagos,₦,"55,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Chevron +1434,5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1435,"5 Bedroom Fully Detached Duplex, Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1436,3 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +1437,Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1438,Luxury Newly Built All Rooms En Suite 4 Bedrooms With Boys Quarter,Ikate Gra Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +1439,Newly Built 4bedroom Fully Detached Luxury Duplex With Bq In A Serene Neighbourhood,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +1440,"Luxury 2 Bedroom Apartment With Swimming Pool, Gym And Bq",Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1441,Ultra Modern 4 Bedroom Fully Detached Duplex,Sangotedo Lekki Lagos,₦,"86,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Lekki +1442,Land,Beach Resort Estate Near Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1443,1150m2 Land (price Per Sqm),Saheed Adelekan Close Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1444,3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,0 baths,0 Toilets,Chevron +1445,Brand New Luxurious 4bedroom With Bq And Swimming Pool.,Lakeview Estate Off Orchid Road Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1446,5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +1447,5 Bedroom Fully Detached Duplex,"Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +1448,Fashionable 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1449,Newly Built 4 Bedrooms Semi Detached Duplex + 1 Room Bq,Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1450,6 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1451,Newly Built 4bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1452,4 Bedroom Semi Detached Duplex,But Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1453,Value Centric 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +1454,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +1455,Newly Built Luxury 3 Bedroom Flat With Bq,Ikate Elegunshi Ikate Lekki Lagos,₦,"78,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1456,Lovely 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +1457,Tastefully Finished 5 Bed Semi Detached With 2 Room Bq,Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1458,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +1459,2 Bedroom (furnished And Serviced) Apartment,Kusenla Road Ikate Lekki Lagos,₦,"68,000,000/year",1,0,1,2 beds,2 baths,3 Toilets,Ikate +1460,Luxury 4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1461,4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1462,6 Bedroom Fully Detached Duplex With 2bedroom Bq,S Chevron Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets,Chevron +1463,Offplan Luxury 2bedroom Flat,Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1464,Shops,Admiralty Road Off Admiralty Way Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1465,Fully Serviced 4 Bedroom Semidetached Duplex + Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +1466,A 5 Bedroom Detached Duplex With A Pool & Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1467,"A Vacant Plot Of Land At Nicon Town, Lekki,",Nicon Town Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +1468,Land,"Atlantic View Estate, Alpha Beach Road Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1469,Newly Built Detached House In A Good Location,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1470,4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1471,Spacious 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +1472,Newly Built 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,5 Toilets,Osapa London +1473,A Waterfront Ocean View Detached 5 Bedroom Duplex With B/q,"Goshen Beach Estate,lekki Abuja. Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +1474,Luxury 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1475,Spacious 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1476,Contemporary 5bedroom Fully Detached Duplex House With A Bq Jnf,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,8 Toilets,Osapa London +1477,24rooms Commercial Property In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +1478,Luxury 5bedroom Fully Detached,"Buenevista Estate, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +1479,Big Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +1480,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +1481,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1482,Well Finished 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +1483,4 Bedroom Terrace Duplex,"Orchid, Lekki Phase 2, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1484,2 Units Of 5 Bedroom Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Ikota +1485,8 Bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +1486,Luxury 4bedroom Terrace Duplex Off Plan,"Patheon Smart Terrace, Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +1487,Contemporary 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +1488,Luxury 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1489,Newly Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1490,"Magnificent 4 Bedroom Detached Duplex: Lekki Phase 1, Lekki Lagos Jnf",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,7 Toilets,Lekki Phase 1 +1491,7777 Square Meters Of Land,Second Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1492,5 Bedroom House,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +1493,2bedrooms Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1494,2 Plots Of Land,Inside Vgc Estate Vgc Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +1495,Astonishingly Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1496,4 Bedroom Semi Detached House,"Lekki Phase 1, Lagos State Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1497,5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1498,Exquisitely Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1499,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1500,4 Bedroom Fully Detached Duplex,"Vgc, Ikota Shopping Complex, Lekki Conservation Centre, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,4 baths,4 Toilets,Ikota +1501,Modern 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1502,Land Measuring 1050m²,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1503,4 Units Of Semi Detached Duplexes,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1504,"Well Maintained, Tastefully Built, Spacious Studio Apartment",Chevron Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +1505,Well Maintained Fully Detached 4 Bedroom Duplex With A Room Bq,Igbo Efon Lekki Lagos,₦,"60,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +1506,Finished 4bedroom Semi Detached,Eletu Osapa London Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +1507,Plot Of Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1508,Newly Built 4bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +1509,Newly Built 4 Bedroom Detached Duplex In A Serene Environment,"By Second Toll Gate, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"100,000,000/year",0,1,0,0 beds,5 baths,5 Toilets,Lekki Phase 1 +1510,Land,Facing Lekki Epe Expressway Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1511,5 Bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1512,Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1513,5bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +1514,Newly Built One Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +1515,2 Bedroom Flat,Ilasan Lekki Lagos,₦,"40,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +1516,Land Measuring 1388sqms,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1517,Brand New 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets,Chevron +1518,Newly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +1519,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1520,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1521,Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1522,Contemporary 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1523,Lovely 4 Bedroom Detached Duplex With Bq,Lekki Conservation Chevron Lekki Lagos,₦,"82,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1524,Fully Furnished 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1525,Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1526,Contemporary 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1527,Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1528,Serviced 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1529,Contemporary Luxury 6 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"480,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +1530,4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1531,Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1532,5 Bedrooms Terrace House + 1 Room Bq,Chevron Drive Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +1533,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +1534,Decent 4 Bedrooms Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1535,Beautiful 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"148,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1536,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1537,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1538,Lovely 4 Bedroom Duplex,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1539,Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1540,"1,2,3bedroom Apartment Penthouse",Chevron Mall Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +1541,Tastefully Built 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"110,000,000",1,1,0, beds, baths, Toilets,Ikate +1542,Furnished 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1543,4 Bedroom Terraced Duplex,Chevron Corporative Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1544,4 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1545,5 Bedrooms Detached House + 1 Room Bq,Off Alternative Route Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +1546,3 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +1547,Newly Built 3 Bedroom With Bq,Ikate Elegushi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +1548,Tastefully Furnished 2 Bedrooms Apartment,Chevron Drive Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +1549,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +1550,3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +1551,Beautiful 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1552,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1553,2 Bedroom Fully Serviced Apartment,Freedom Way Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1554,"Luxury 5 Bedroom Detached Smart Home With Swimming Pool, Cinema And Bq",Ikate Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1555,4 Bedrooms Semi Detached House Plus 1 Room Bq,Off Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1556,Newly Built 5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1557,Serviced 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1558,Nicely 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1559,Beautiful 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +1560,Luxury 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1561,Tastefully Finished 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +1562,School For Sale,65 Ajiran Road Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0,10 beds,1 baths,9 Toilets,Agungi +1563,Beautiful 4 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +1564,Newly Built 3 Bedroom Semi Detached Duplex In A Secured Estate,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ologolo +1565,Beautiful Brand New Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1566,A Palatial Home With A Pool And A Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1567,A Plot Of Land For Joint Venture,Lekki Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +1568,Elegant 3 Bedroom Terrace House,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1569,Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1570,Classic 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1571,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +1572,Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +1573,Tasefully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +1574,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +1575,Brand New 5 Bedroom Fully Detached,Jazz 38 Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1576,650sqm Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1577,2 Wing Of 4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1578,1 Bedroom Pent House,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +1579,Newly Built 5bedroom Fully Detached Duplex,Rd 5 Beuna Vista Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1580,Lovely 4 Bedroom Terrace,Salem Ilasan Lekki Lagos,₦,"65,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +1581,Beautiful Paradise Newly Built All Rooms En Suite 5 Bedrooms With Boys Quarter And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +1582,Exquisite Newly Built 5bedroom Detached House With Servant Quarters,Northern Foreshore Estate Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1583,Brand New 3 Bedroom Flat With Bq,Dillon Agungi Lekki Lagos,₦,"42,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Agungi +1584,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +1585,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +1586,2bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +1587,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds, baths, Toilets,Ikota +1588,600 Square Meters Virgin Land,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1589,Cambridge Row Luxury Four Bedroom Maisonette,"Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1590,6 Bedroom House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +1591,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds, baths, Toilets,Ikota +1592,5 Bedroom Detached Duplex With Bq,"Megamound, Lekky County Ikota Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +1593,5bedrooms Luxury Smart Home,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1594,4 Bedroom Semi Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1595,5bedrooms Luxury Furnish Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +1596,5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1597,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1598,4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1599,5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1600,1bedrooms Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ikate +1601,5 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1602,5bedrooms Mansion,Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +1603,5 Bedrooms Smart Home,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1604,5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1605,2 Wings Of Semi Detached 4 Bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1606,Tasefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1607,Spacious And Tastefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1608,Fresh 4 Bedroom Fully Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +1609,Tastefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1610,Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1611,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,"Ikota, Lekki Lagos. Ikota Lekki Lagos",₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +1612,Serviced 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +1613,Contemporary 3 Bedroom With Bq,Atlantis 2 Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +1614,Contemporary 4 Bedroom Duplex.,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,6 Toilets,Ologolo +1615,Spacious 4 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1616,4bedroom Terrace Duplex,"Lekki Phase 1,lagos Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1617,Land,Abraham Adesanya Round About Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1618,Excellently Built 4 Bedroom Townhouse With Bq,Off Mike Adegbite St. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +1619,Fully Detatched 5 Bedroom Duplex,Off Bisola Durosimi Drive Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +1620,6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,0,1,6 beds,6 baths,5 Toilets,Victoria Garden City +1621,Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +1622,2 Bedroom Apartment With Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1623,4 Bedroom Smartterrace,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1624,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +1625,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +1626,"4 Flats, 2 Units Of 3 Bedroom Flat",Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Lekki +1627,4 Units Of 3bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,3 baths,0 Toilets,Lekki Phase 1 +1628,4bedroom Newly Built Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +1629,Beautiful Terraced Duplex In A Good Location,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +1630,4 Bedroom Semi Detached Apartment,Ologolo Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +1631,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,0 baths,0 Toilets,Chevron +1632,Land,Off Ladipo Latinwo Street Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1633,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1634,Spacious Well Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +1635,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +1636,Tastefully Finished 4 Bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1637,4 Bedroom Maisonette+bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +1638,Contemporary 6 Bedrooms Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +1639,Luxury 5bedroom Detached House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,4 Toilets,Lekki Phase 1 +1640,Lekki Pride Apartment,Beside Royal Garden Estate Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +1641,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +1642,New Finished Apartments 1 3 Bedrooms Flat,Lekki Conservation Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +1643,Exquisitely Finished Brand New Spacious 5 Bedroom Detached Duplex With A Maids Room,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +1644,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +1645,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1646,"19,000sqm Land","Lekki Epe Expressway, Opposite Abraham Adesanya Roundabout Lekki Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1647,Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1648,Finished 4bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1649,4 Bedroom Detached Home,Idadao Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +1650,Spacious 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,4 baths,4 Toilets,Other Lekki +1651,Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +1652,640sqms Of Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1653,3 Bedroom Terrace Duplex,"Iris Street, Ikota Gra Ikota Villa Estate Ikota Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +1654,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Chevron +1655,Beautiful 5 Bedroom Detached Duplex,By Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1656,5 Bed Waterfront Smart House,Pinnock Beach Estate Jakande Lekki Lagos,₦,"550,000,009",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +1657,6 Plots Of Land (one Acre),By Stonehenge Est. Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1658,Spacious 3 Bedroom Terraced Duplex With Bq,Ajah Lekki Scheme 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +1659,5 Bedrooms Detached House + 1 Room Bq,Off Alternative Route Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +1660,Lovely 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +1661,4945sqm Of Land Facing Lekki Express,Between Agungi And Ologolo Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +1662,New Modern Design 4 Bedroom Town House With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1663,Newly Built 4 Bedroom Fully Furnished And Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +1664,Luxury 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1665,Lovely 4 Bedroom Semi Detached Duplex,"Ikate Elegushi, Lekki Ikate Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1666,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1667,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1668,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +1669,Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1670,5 Bedroom Fully Detached,Mentamout Estate Ikota Lekki Lagos,₦,"233,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +1671,5 Bedrooms Detached Duplex,Lekki County Lekki Phase 2 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +1672,6 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1673,Contemporary 4 Bed Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1674,Fully Serviced 4 Bedroom Semi Detached Duplex,Vgc Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +1675,5 Bedrooms Semi Detached House + 3rooms Bq,Richmond Estate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +1676,Beautiful Home In A Highly Sought After Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1677,3 Bedroom Flat With A Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +1678,A Well Finished 4bedroom Semi Detached House,Chevron Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1679,4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"68,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +1680,Elegantly Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1681,Stunning Smart House In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1682,Newly Built 4 Bedroom Terrace In A Serene And Secured Estate,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +1683,4 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1684,Luxury 4bedroom Terrace Duplex.,"Creek Avenue's Court, Beside Ikota School. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +1685,Contemporary Semi Detached House,Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ologolo +1686,3 Bedroom Apartment,"Prime Water Garden 2, Off Freedom Way Ikate Lekki Lagos",₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +1687,Serviced 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +1688,Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1689,Valuable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +1690,Luxury 1&2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1691,4 Bedroom Townhouse With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1692,Fully Serviced 3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1693,Newly Built 5bedroom Fully Detached Luxury Duplex With Bq,Inside Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +1694,Fully Detached 5 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,5 Toilets,Lekki Phase 1 +1695,"Newly Built, 4bedroom Detached House Located In A Serene Environment",Bera Estate Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1696,Fancy 4 Bedroom Semi Detached Duplex,"Orchid, Lekki Phase 2, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"70,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1697,Luxury 2 Bedroom Maisonette,Off Hakeem Dickson Road Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1698,Luxury Paradise Newly Built All Rooms En Suite 4 Bedrooms With Boys Quarter,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +1699,5 Bedroom Fully Detached Duplex + Bq,1 Minutes Drive To Epe Express Way Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Ikota +1700,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1701,Luxurious 5 Bedroom Fully Detached Duplex House,Idado Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1702,6 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +1703,Luxury 4 Terrace Maisonette.,Emcel Terrace Ikate. Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +1704,Smart And Luxurious 2 Bedroom Apartment,Lekki Conservation Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +1705,4 Bedroom Semi Detached Duplex In A Secure Estate In Agungi.,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +1706,Fantastic 5 Bedroom Terrace Duplex In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +1707,Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1708,Brand New 4 Bedroom Semi Detached Duplex,Robert Close Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +1709,A Newly Built 4 Bedroom Duplex With Bq In A Well Secured Estate,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +1710,Serviced 4 Bedroom Semi Detached Duplex In Ikota. Lekk,Ikota Ikota Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikota +1711,Lovely 4 Bedroom Detach House With Bq At Victory Park Estate Lekki For 175m,Victory Park Estate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +1712,4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1713,Land,Km 22 Lekki Epe Expressway Ikota Lekki Lagos,₦,"880,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1714,Brand New 5 Bedroom Fully Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1715,Newly Built 3bedroom Apartment With Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +1716,4 Bedroom Fully Detached Duplex,"Lekki Phase 2, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1717,Exquisitely Finished Fully Furnished 2 Bed Apartment,Ikate Lekki Lagos,₦,"48,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +1718,1400sqms Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1719,"Nottingham Court 1, 2 & 3 Bedroom Maisonettes And Apartments","Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +1720,Tasefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1721,A Plot Of Land Measures 600sqmts,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikota +1722,Spacious 4 Bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1723,"930.7sqm Of Land With 6 Units Of 2 Bedroom Bungalow (old House, Demolishable )",Omonire Johnson Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1724,Lovely 3 Bedroom Flat,Kusenla Ikate Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Ikate +1725,The Alverton,Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,4 Toilets,Lekki Phase 2 +1726,Brand New 3 Bedroom Terrace,Road 5 Ikota Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Ikota +1727,4 Units Of 3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +1728,Cornerpiece Plot Of Land ( 610 Sqm ) At Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Osapa London +1729,Modern 6 Bedroom Detached Houses,Chevyview Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0,6 beds, baths, Toilets,Chevron +1730,"Special, Well Finished Five Bedroom Duplex With Study , 2 Room Bq And Swimming Pool With Land Size 576.66sqm",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +1731,Fenced And Gated 2.081 Hectares Of Dry Land,"Vgc Round About, Lekki Epe Epressway, Lekki Lagos Vgc Lekki Lagos",₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +1732,Land For Sale On Ogombo Road,"Ogombo Road, By Abraham Adesanya, Ajah Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +1733,4 Bedroom Semi Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1734,Land,Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1735,4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation Centre, Eleganza, Orchid Hotel Chevron Lekki Lagos",₦,"85,000,000",0,1,0, beds,4 baths,5 Toilets,Chevron +1736,882sqm Land In Block 68 With Approved Government Title,Block 68 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +1737,Luxury 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +1738,Available Land,Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1739,Beautiful Home In A Good Location,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1740,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,3 baths,5 Toilets,Chevron +1741,4 Bedroom Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1742,Contemporary 4 Bedroom Semi Detached Duplex With Bq. Jnf,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +1743,3bedroom Block Of Flat,"Chois Estate After Sangotedo,abijo Gra Lagos. Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +1744,636sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1745,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +1746,Newly Built 2 Bedroom Fully Serviced,Orchid Road Chevron Lekki Lagos,₦,"33,500,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +1747,Newly Built 5 Bedroom Detached Duplex,"Lekki County, Ikota, Lekki, Lagos Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +1748,Smart 5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +1749,Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +1750,Newly Built 3bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +1751,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000/year",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1752,4 Bedroom Duplex Instalmental Payment Plan Available,Lafiaji Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +1753,Newly Built 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +1754,Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +1755,Beautiful 5 Bedrooms Detached Duplex With Swimming Pool,Ologolo Estate Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +1756,Decently Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1757,Furnished 5 Bedrooms Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +1758,Grandeur 3 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +1759,1000 Sqms Land,Chris Madueke Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1760,950sqms Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1761,970sqms Of Land With A Building,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1762,1022sqmsll Of Bareland,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1763,Newly Built 6 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"270,000,000",1,1,0,6 beds,6 baths,7 Toilets,Ikate +1764,Spacious 4 Bedrooms Terrace Duplex With Bq,Oniru Lekki Phase 1 Lekki Lagos,₦,"120,000,009",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1765,Head Turning 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1766,Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1767,Juicy Commerical Land,Between Agungi To Igbo Efon Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1768,Luxury 4bedroom Semi Detached Mansionate,"Buena Vista, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1769,Brand New 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,500,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +1770,Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1771,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1772,Newly Built 50 Units Of 3bedroom Apartments With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"47,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1773,A 2400sqm Beach Front Land,Alpha Beach Resort Idado Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1774,Spacious 5 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"93,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1775,Beautiful 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +1776,Newly Built 3 Bedroom Flat,Megamound Ikota Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +1777,4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +1778,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ologolo +1779,Contemporary Serviced 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1780,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1781,Spacious 6 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +1782,Luxury 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1783,Luxury Furnished 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +1784,Fully Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +1785,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +1786,Oceanic View Land,"Behind Enyo Petrol Station Ikate, Ikate Lekki Lagos",₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1787,Luxury 5 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1788,Beautiful Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +1789,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths, Toilets,Lekki Phase 1 +1790,3 Semi Detached Duplexes Smart Homes,Ikota Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1791,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1792,Beautiful 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +1793,Lovely 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1794,Beautiful 4 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1795,Serviced 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1796,4 Bedrooms Semi Detached House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1797,Great Offer!!! Hotel,Close To The Lekki Epe Expressway Agungi Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +1798,Luxury 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +1799,812.713 Sqms Of Middle Land,"On Spar Road, Lekki Ikate Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1800,Lovely 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +1801,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1802,712 Sqm Of Land,"Orchid Road, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +1803,Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +1804,3bedrooms Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1805,Luxurious Masterpiece With Pool And A Private Cinema,Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1806,Shortlet Classic 3 Bedroom Apartment With Pool & Elevator,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1807,Luxuriously Furnished 5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +1808,Tasefully Finished 3bedroom Luxury Penthouse,Ikate Lekki Lagos,₦,"88,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +1809,Stunning New Home With Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1810,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1811,Luxury 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Ikota +1812,Exquisite 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +1813,"Newly Built 6 Units, 5 Bedroom Terrace Duplexes",Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +1814,Four Bedroom Terrace Duplex,Christerbel Garden Estate Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +1815,Pretty Home In A Serene Environment,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1816,Exquisitely Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1817,Four Bedroom Terrace Deplex,Ikota Gra Lekki Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +1818,5 Bedroom Duplex,Lekki Palms City Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +1819,Brand New Luxurious 2 And 3 Bedroom Maisonettes,"Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +1820,Perfectly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1821,5 Bedroom Fully Detached House With Bq,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1822,4 Bedroom Semi Detached,Agungi Estate Agungi Lekki Lagos,₦,"70,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Agungi +1823,Brand New 5 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +1824,Exquisitely 4bedroom Terraced Duplex With Bq,"Oladele Ojogbede, Behind Romney Estate Ikate Lekki Lagos",₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1825,Luxury 4 Bedroom Terrce Duplex,New Road Before Chevron Drive Igbo Efon Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +1826,2bedroom Serviced Apartment,Osapa London Off Circle Mall Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +1827,An Hotel Comprises Of 6 Blocks Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1828,Bareland Corner Piece Measuring 920sqm,Orange Island Estate Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +1829,4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +1830,650sqm Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1831,4bedrooms Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,8 baths,8 Toilets,Ikota +1832,4bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +1833,Luxury Newly Built All En Suite 2 Bedrooms With 24hours Light,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +1834,Newly Built 4bedroom Detached Duplex With 1room Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1835,5 Bedroom Terrace With Bq,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +1836,4 Bedroom Duplex With 2 Units Of 3 Bedroom Flat.,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,10 beds,0 baths,0 Toilets,Ikota +1837,"1,2,3,4 Bedroom Apartment",Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +1838,Tastefully Furnished 3bedroom Penthouse,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +1839,Massive 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets,Agungi +1840,5 Bedroom Duplex,Ikota Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +1841,6 Bedroom Detached House,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds, baths, Toilets,Ikota +1842,5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1843,"Beautifully Built, Tastefully Designed, Bakery.",Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Chevron +1844,Smart And Luxurious 3 Bedrooms Flat+ Bq (penthouse),Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1845,4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Lagos Business School, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +1846,5 Bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Orchid, Eleganza Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds, baths,5 Toilets,Chevron +1847,5bedrooms Smart Home,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1848,Newly Built 4 Bedroom Duplex,"Megamound Estate, Lekki County Road, Ikota Lekki Lagos",₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1849,4units Of Three Bedroom Flat,Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1850,900sqm Land With A Bungalow,"Inside Vgc Estate, Vgc Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +1851,Newly Built 4 Bedroom Duplex With Modern Finishes,Ikota Villa Estate Ikota Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +1852,5 Bedroom Fully Detached Duplex,"Jakande , Monarch, Chevron, Pinnock Beach, Arcadia Estate Osapa London Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,0 baths,5 Toilets,Osapa London +1853,Service 4 Bedroom Terrace With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1854,Land,"Ayodele Odubiyi, Lekki Right Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1855,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1856,Unit Of 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +1857,Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1858,Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1859,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1860,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +1861,Greatly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +1862,Beautifully Built 3 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +1863,5 Bedroom Terrace,New Horizon 2 Estate Ikate Lekki Lagos,₦,"80,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +1864,5 Bedroom Flat,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +1865,Land,Spg Road Ologolo Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +1866,Well Finished 5 Bedroom Home,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +1867,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1868,Land,Orange Island Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1869,150 Plots Of Land,"Oke Ogun, Ibeju Lekki Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1870,6 Blocks Of 3 Bedroom Flat,Lekki Phrase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1871,Land,Osapa London Road Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1872,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +1873,Furnished 5 Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1874,Newly Built Home In A Good Location,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +1875,Finished 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1876,Newly Built 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +1877,800sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1878,Newly Built 4 Bedroom Terrace Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1879,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,3 Toilets,Other Lekki +1880,Tasefully Finished 3 Bedroom Apartment,Orchid Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +1881,Land,Along Orchid Road Very Close To Victoria Crest Iv Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1882,Fully Finished 4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +1883,3 Bedroom Apartment,Mufasa Apartment Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,0 baths,0 Toilets,Ikate +1884,Land,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1885,Land,"Seagate Estate, Off Spar Road Ikate Elegushi Ikate Lekki Lagos",₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +1886,Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1887,Furnished 5 Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1888,4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +1889,Spacious 5 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +1890,Classy 2 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1891,4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +1892,Fully Furnished 5 Bedroom Fully Detached With Bq,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,0 baths,0 Toilets,Ikota +1893,Lovely 5bedroom Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +1894,Fully Detached 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1895,Beautifully Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,0 Toilets,Chevron +1896,Beautifully Designed 2 Bedroom Terrace,"Lafiaji , Orchid Road Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +1897,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +1898,5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1899,Tasefully Finished 4 Bedroom Luxury Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +1900,4bedrooms Terraces,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1901,Fully Detached 5bedroom Duplex With 1 Bq,"Megamond, Lekki County Estate Ikota Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1902,Luxury 6 Bedroom Mansion,In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +1903,Land,Beach Resort Estate Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1904,Tasefully Finished 4 Bedroom Luxury Terraced Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1905,5 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1906,4bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +1907,5 Bedrooms Detached House,Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +1908,Alexander Luxury Two Bedroom Apartment,"Ocean Bay Estate, Orchid Road, Chevron, By Second Toll Gate, Lekki. Lekki Phase 1 Lekki Lagos",₦,"36,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +1909,A Brand New Detached House In A Private Estate,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1910,550sqm Land,Arcadia Groove Estate Beside Pinnock Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1911,Tasefully Finished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +1912,Exquisite 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets,Ikate +1913,5 Bedrooms Fully Detached Duplex With Bq,Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +1914,Elegant 4 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1915,Decently Finished Luxury 5 Bed Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +1916,Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1917,3 Bedroom Terrace House,Ilasan Road Near Ilasan Police Station Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +1918,Beach Front Land,Z Ilasan Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1919,Newly Built 2 Units Of 2 Bedroom Flats,Ilasan Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +1920,Newly Built Luxury 5 Bedroom Detached Duplex With Bq,"Lekki County, Cluster 1 Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +1921,5 Bedroom Detached Duplex In Idado. Lekki,Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +1922,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +1923,Prime Land,Pinnock Prime Estate Osapa London Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1924,5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Agungi +1925,": Tastefully Finished 4 Bedroom Detached Duplex In Ikota. Lekki, N100million",Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +1926,Luxury And Massive 4bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"410,000,000",1,0,0,5 beds,4 baths,5 Toilets,Victoria Garden City +1927,4bedroom Plus Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +1928,4 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Ikota +1929,1000 Square Meters Virgin Land,Pinnock Beach Estate Jakande Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1930,870m2 Land (price Per Sqm),Block 52b On Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1931,Newly Built 4bedroom Semi Detached Duplex,"Creek Avenue's Court, Beside Ikota School. Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +1932,Luxury 5 Bedroom Semi Detached Duplex With Bq,2nd Till Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +1933,Newly Built 3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +1934,Luxury 2 Bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"78,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +1935,Lovely 3 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Chevron +1936,3 Bedroom Apartment With A Bq In Idado.,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +1937,5bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +1938,Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1939,"Newly Built, Serviced, 2bedroom Apartment",Ikate Lekki Lagos,₦,"65,000,000/day",1,1,0,2 beds,2 baths,3 Toilets,Ikate +1940,Luxury Newly Built 1bedroom Maisonette,Behind Novare Shoprite Sangotedo Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 2 +1941,Newly Built 2bedroom Apartments,Ologolo Lekki Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +1942,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +1943,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +1944,Land,"Block 134 Plot 10, Off Oriwu Street, By Petrocam Service Station, Elf Bus Stop, Lekki Scheme 1 (right Hand), Lagos Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1945,2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ologolo +1946,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +1947,": Brand New 4 Bedroom Terrace Duplex In Ikate. Lekki, Price Is N85million",Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +1948,5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1949,Nice 4 Bedrooms Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1950,Newly Built 4bedroom Semi Detached Duplex,Carlton Gate Estate Off Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1951,A Room And Parlour,Ikate Right Behind Enyo Petrol Station Ikate Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets,Ikate +1952,Land,"Orchid Hotel Road, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +1953,5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1954,300m² Of Land,Gra Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +1955,Newly Built 5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +1956,Land,"Goshen Estate Area, Lekki Phase 1 Lekki Lagos",₦,"350,000/year",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +1957,Newly Built Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +1958,3 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +1959,4 Bedroom Penthouse,Lekki Lagos,₦,"395,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +1960,Contemporary Styled 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ologolo +1961,Exquisite Luxury Newly Built 4 Bedroom Semi Detached House Sitting In A Gated And Secured Estate,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1962,5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +1963,3 Bedroom Luxury Apartment With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,1, beds, baths, Toilets,Lekki Phase 1 +1964,5 Bedroom Duplex With 2 Rooms Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +1965,Brand New 5 Bedroom Fully Detached With Pool,Orchid Road / Lake View Estate Oral Estate Lekki Lagos,₦,"165,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +1966,4 Bedroom Terrace Duplex,Ochid Road Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +1967,Newly Built 4 Bedroom Detached Duplex,"Ologolo, Lekki Lagos Ologolo Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +1968,5 Bedroom Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +1969,3 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +1970,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +1971,4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation Centre, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"78,000,000",0,0,0, beds, baths, Toilets,Chevron +1972,4 Bedroom Detached Duplex,"Chevron, Lekki Conservation, Second Toll Gate Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"80,000,000",0,1,0,0 beds,4 baths,5 Toilets,Chevron +1973,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +1974,2 Bedroom Flat,Ilasan Lekki Lagos,₦,"40,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +1975,22 Plots Of Land Facing Shoprite Road,Osapa London Lekki Osapa London Lekki Lagos,₦,"3,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +1976,Fully Furnished 3 Bedroom Apartment,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +1977,5 Bedroom Fully Detached House,"No 2 Saint Peters Anglican Church Street, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +1978,4bedrooms Duplex,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,8 baths,9 Toilets,Osapa London +1979,3 Bedroom Flat,Route 14 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +1980,Newly Built 4 Bedroom Semi Detached Duplex,"Osapa, Lekki, Lagos Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,4 baths,0 Toilets,Other Lekki +1981,Furnished Service 2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +1982,Brand New 2 Bedroom With Swimming Pool And Bq,Jakande Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +1983,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1984,A Masterful Edifice In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +1985,Newly Built 2 Bedroom Terraced Duplex In A Serene Environment,Lekki Lagos,₦,"30,000,000/year",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +1986,2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +1987,Newly Built 4 Bedroom Duplexin A Secured Estate,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Osapa London +1988,Super Fully Detached 4 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +1989,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +1990,"Land Measuring 3,345m² (corner Piece)",Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +1991,5 Bedrooms Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,8 baths,10 Toilets,Lekki Phase 1 +1992,4bedrooms Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +1993,5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +1994,Land,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +1995,4bedrooms Semi Detached,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +1996,4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Chevron +1997,2 Units Of Detached Houses,"Alpha Beach, Opposite Chevron Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +1998,Fully Furnished 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,0 baths,0 Toilets,Osapa London +1999,"Newly Built, Serviced 2bedroom Apartment",Ologolo Lekki Lagos,₦,"40,000,000/day",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +2000,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2001,5 Bedrooms Mansion,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2002,4bedroom Plus Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2003,Furnished 4 Bedrooms Duplex With 2 Rooms Bq,"Vgc,lekki Vgc Lekki Lagos",₦,"350,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +2004,"Newly Built, Tastefully Finished, Spacious, Beautiful Built 4bedriom Fully Detached House",Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2005,5bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2006,5bedrooms Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2007,5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2008,6bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +2009,6bedrooms Duplex With Swimming,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +2010,5 Bedroom Duplex,Vgc Regional Road Lekki Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2011,4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2012,680.065sqm Land.,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2013,Luxury 5 Bedroom Fully Detached,Peanock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +2014,"Full Furnished, Service 4 Bedroom Terrace",Bloom Court Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Ikate +2015,4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,Ikate +2016,5 Bedroom Detached Duplex,Northern Foreshore Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +2017,4 & 5bedroom With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +2018,Newly Built 4bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2019,4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikota +2020,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Ikota +2021,Newly Built 4 Bedroom Terrace Duplex,"Orchid Hotel Road, By 2nd Toll Gate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2022,Exquisite Newly Built 4 Bedroom Terrace Duplex,By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2023,"Well Maintained, 4 Bedroom Terrace Duplex",Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2024,Newly Built (off Plan) 3 Bedroom Apartment,Lekki Pride Estate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +2025,675sqm Land,Inside Vgc Estate Vgc Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +2026,Serviced 4 Bedroom Semi Detached Duplex In An Estate In The Vgc Axis,Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +2027,4 Bedroom Terrace Duplex,"Chevron, Lekki Conservation, Lagos Business School, Eleganza. Orchid Hotel Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2028,Land Measuring 10 Hectares (waterfront),Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2029,Land,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +2030,Land Measuring Two Hectares (5 Acres),Lekki Phase 1 Lekki Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2031,"Land Measuring 12,000m²",Lekki Phase 1 Lekki Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2032,4 Bedroom Detached Duplex,"Vgc , Chevron, Eleganza ,ikota Shopping Complex, Mega Chicken Ikota Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,4 baths,4 Toilets,Ikota +2033,4 Bedroom Terraced Duplex,Chevy View Jakande Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2034,Newly Built 4bedroom Terrace With Bq,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2035,Luxury 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikota +2036,4 Bedrooms Semi Detached Duplex With Bq,S.o Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2037,Luxury 4 Bedroom Terrace Duplex Ready For Purchase In A Very Secured Environment,"Orchid Hotel Road, Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2038,4 Bedroom Semi Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2039,Fully Serviced 3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +2040,2000sqm Of Land,Facing Chevron Express Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2041,5 Bedroom Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +2042,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2043,Luxury 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2044,Land,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2045,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2046,Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2047,4 Bedroom Terrace Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2048,4 Plots Of Land,Lekki Phase 1 Lekki Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2049,Brand New 3 Bedroom Flat On Second Floor,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikate +2050,4 Bedroom Terrace With A Room Bq,Igbo Efon Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2051,Newly Built Ensuite 5bedroom Detached Duplex With A Bq At Pinnoock Beach Estate Lekki,"Pinnoock Beach Estate, Osapa London, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2052,Land,"Block B, Cowrie Creek Estate Ikate Lekki Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2053,Brand New 4 Bedroom Semi Detached Duplex With Bq,"Orchid Road, By Second Toll Gate Chevron Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2054,4 Bedroom Flat With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2055,Newly Built And Tastefully Finished Miniflat,By Spg Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,0 baths,0 Toilets,Ologolo +2056,Well Maintained 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +2057,Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +2058,Newly Built 4bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +2059,Brand New 3bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,4 baths,3 Toilets,Lekki Phase 1 +2060,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2061,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2062,Land,Oral Estate Lekki Lagos,₦,"74,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2063,Luxury 6bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +2064,Newly Built 4bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +2065,Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +2066,Luxury 4 Bedroom Semi Detached Duplex,"Second Toll Gate Area, Which Is Chevron Conservation Road Side Ikota Lekki Lagos",₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +2067,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2068,A Fully Furnished 4bedroom Fully Detached Duplex With A Bq,Road 13 House 16a Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,5 beds,6 baths,6 Toilets,Ikota +2069,A Fully Furnished 4bedroom Fully Detached Duplex With A Bq,Road 13 House 16a Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,5 beds,6 baths,6 Toilets,Ikota +2070,Land,Off Freedom Way Behind Cis Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2071,Land,Orange Island (block 17) Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2072,Lovely 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2073,Contemporary 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2074,Luxury Contemporary 5 Bedroom Detached Duplex With Swimming Pool Cinema And Bq,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +2075,Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +2076,Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2077,Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +2078,Special 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +2079,Newly Built 4bedroom Semi Detached Duplex,Ochid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2080,Contemporary Luxury 5 Bedroom Detached Duplex And 2 Rooms Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2081,Fantastic 5 Bedroom Water View Detached House With 2 Rooms Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +2082,Lovely 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2083,5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,0,0,5 beds,0 baths,0 Toilets,Chevron +2084,Lovely 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2085,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2086,Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2087,Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +2088,5 Bedroom Duplex + 2bedroom Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +2089,4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +2090,6 Plot Of Land,"Orchid Road , Lekki Lekki Lagos",₦,"45,000,000",0,0,0,10 beds,0 baths,1 Toilets,Other Lekki +2091,3 Bedroom Penthouse ,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2092,Service Newly Built 3 Bedroom Mansionette,Off Freedom Way Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +2093,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +2094,Newly Build 4bedroom Semi Detached Duplex,Megamound Ikota Lekki Lagos Ikota Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +2095,5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2096,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2097,Luxury 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +2098,A Beautiful 4 Bedroom Terrace Located In The Heart Of Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2099,4 Bedroom Terraces Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2100,Newly Built 4bedroom Terrace Duplex,Platinum Way Opposite Jakande Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +2101,This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq Is Located In A Serviced And Secured Estate,Elegushi Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2102,Tasefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2103,Astonishingly Beautiful 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +2104,Land,Lekki Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2105,Off Plan 4 Bedroom Terrace With Bq,"Ocean Palms Estate Scheme 3, Gbangbala Street, Ikate Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2106,Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2107,Reaidential Plots Of Land,"Ikota Villa Estate, By Mega Chicken Restaurant. Ikota Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2108,Offplan Studio Apartment,"Meadow Hall Way, Ikate Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +2109,Block Of Flats With Excellent Facilities,"In Sangotedo, Lekki Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +2110,2 Bedroom Furnished Serviced Apartment,Lekki Lagos,₦,"80,000,000",1,0,1,2 beds,2 baths,3 Toilets,Other Lekki +2111,6 Bedroom Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +2112,Office Space In Lekki Phase 1 For Sale,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2113,Newly Built 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +2114,Newly 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2115,Land,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +2116,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +2117,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +2118,4 Bedroom Terrace Duplex With A Pool And Gym,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2119,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +2120,3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets,Chevron +2121,Lovely 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikota +2122,4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +2123,Beautifully Finished 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2124,Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +2125,Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,Agungi +2126,Filling Station,Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2127,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +2128,465sqm Land,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +2129,6 Units Of 2 Bedroom Bungalow,"Omorinre Johnson Street,near Dowen College. Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2130,4 Units Of 3bedroom Semi Detached Duplex,"Marvel Court Inside Buena Vista Estate, Orchid Road, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +2131,4 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Lekki Lagos,₦,"49,000,000",1,1,1,4 beds, baths, Toilets,Other Lekki +2132,4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2133,Land,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2134,Land,"Along Adewale Kolawole Crescent, Off T.f. Kuboye Street, Lekki Scheme 1, Lagos Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2135,Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +2136,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Chevron +2137,Prime Land For Sale,Twin Lake Estate Chevron Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets,Chevron +2138,New 5bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2139,Newly Built 2 Bedroom Flat,"Ocean Bay Estate, Orchid Road Ikota Lekki Lagos",₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +2140,6 Units Of 3 Bedroom Flats,"Conoil Filling Station, Ikate Eleguishi Palace, Ikate Lekki Lagos",₦,"360,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +2141,Contemporary 5 Bedroom Duplex,"Lekki County Homes, Lekki Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2142,A Well Finished Beautifully Built Tastefully Finished Fully Serviced 3 Bedroom Terrace Duplex With A Room Boy's Quarter,Heirs Court Ikate Lekki Lagos,₦,"120,000,000/year",1,1,0,3 beds,3 baths,4 Toilets,Ikate +2143,A Perfect Home In A Private Estate,Nicon Town Estate Nicon Town Lekki Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +2144,Beautiful Home In A Beautiful Location,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2145,937sqm Land In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2146,Well Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +2147,"Serviced 4 Bedroom Terrace Duplex With Swimming Pool, Gym And Bq",Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2148,Beautiful 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2149,Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2150,Luxury 5 Bedroom Detached Home With Bq,Ikate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2151,5 Bedroom Detached House At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2152,Lovely 4 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2153,"Land For Sale At Madison Gardens Estate, Chevron Drive, Lekki","Chevron Drive, Besides Northern Foreshore Estate. Chevron Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Chevron +2154,Fully Furnished 5bedroom Luxury Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +2155,1000sqm Land In A Private Estate,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2156,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +2157,2 Bedroom Flat,Jakande Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +2158,Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2159,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +2160,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +2161,Beautiful 4 Bedroom Terrace Duplex,Opposite Chevron Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2162,5 Bedrooms Duplex With Boy’s Quarter For Sale,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths, Toilets,Ikate +2163,Land,"Around Pan Atlantic University, Facing The Major Lekki Epe Expressway Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2164,Finished 5 Bedroom Full Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2165,Luxury 4bedroom Terrace Duplex,Chevron Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2166,Prime Half Plot Of Land,Aro Ologolo Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2167,Super Luxury 5 Bedroom Home,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2168,Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2169,Luxury 4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2170,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2171,Luxury 2 Bedroom Apartment,Phase1 Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +2172,Contemporary Style 4 Bedroom Home,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +2173,Superbly Built Detached Home In A Great Location,Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2174,Land,"Gra Abijo, Facing A Major Road Lekki Lagos",₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2175,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2176,Land,Abijo Lekki Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2177,Off Plan Fully Detached Duplex With Flexible Payment Plan,"Gbangbala Street, Ikate/elegushi Ikate Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2178,Tastefully Built 5 Bedroom Automated Fully Detached Duplex With A Swimming Pool,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2179,Newly Built 4bedroom Terrace Duplex,"Emcel Estate, Orchid Close To Chevron Tollgate. Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +2180,2/3/4 Bedroom Apartment,Freedom Way Ikate Lekki One Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +2181,5 Bedroom Detached Duplex With Bq,"Orchid , Lekki, Lagos. Vgc Lekki Lagos",₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2182,"4,945 Square Meter Prime Commercial Land Directly On Lekki Express,",Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2183,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2184,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets,Osapa London +2185,New Built 5 Bedroom Detached Duplex,"Dr S Ezekuse Close, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2186,4 Bedroom Fully Detached Luxury Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +2187,3 Bedroom Terraced Duplex With Bq,"Citadel Views Estate, Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Exp. Lagos Lekki Lagos",₦,"51,500,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +2188,5 Bedroom Detached House + Bq,Close To Mega Chicken Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets,Ikota +2189,Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +2190,4 Bedroom Detached Duplex All Ensuite,"Royal Garden Estate, After Vgc Before Lbs Lekki Lagos",₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +2191,Two Bedroom Maisonette,"Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +2192,Contemporary Luxury At It’s Finest,Pinnock Beach Estate Lekki Lagos,₦,"1,200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +2193,Superb 4 Bedroom Semi Detached Duplex In Ologolo. Lekki,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ologolo +2194,5 Bedroom Terrace Duplex With A Room Bq,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2195,3 Bedroom Flat,Lekkiphhase1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +2196,4bedrooms Semi Detached House With Bq,Off Mobil Estate Road Ilaje Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2197,Super 4 Bedroom Terraced Duplex,Atlantic Ville Estate By Vgc Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +2198,"Executive 4bedroom Terraced Duplex, At Ikate, Lekki",Ikate Lekki Lagos,₦,"80,000,000/day",1,1,1,4 beds,5 baths,5 Toilets,Ikate +2199,Luxury 6 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,6 baths,7 Toilets,Ikota +2200,675sqm Of Land In A Fantastic Location In An Estate,Vgc Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +2201,Lovely 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2202,Mini Flat,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2203,Newly Built 2 Bedroom Apartment With Pool And Elevator,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +2204,Massive Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2205,5bed Fully Detached Luxury Duplex,Lekki Conservative Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2206,Newly Built 6 Nos Of 5bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2207,5bedrooms Duplex With Bq,Chevron Vgc Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,9 baths,9 Toilets,Victoria Garden City +2208,2 Units Of Fully Detached 5 Bedroom Houses,Jora Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Agungi +2209,Brand New And Spacious 4bedroom Semi Detached Duplex,"Chevyview Estate, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2210,A Newly Built 4 Bedroom Duplex With A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +2211,Land,Aro Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2212,4bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +2213,4 Bedrooms Luxury Terrace + 1 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2214,"Luxury 6 Bedroom Detached Duplex With Swimming Pool, Penthouse And Bq",Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +2215,Lovely 4 Bedroom Terrace Duplex And 1 Bq, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2216,State Of The Art 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2217,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2218,Tasefully Finished 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2219,5 Bedroom Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2220,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +2221,Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"20,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +2222,5 Bedroom Fully Detached Duplex With 1 Room Bq Is Located In A Secured Estate,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +2223,Newly Built & Luxury Furnished 4bedroom Semi Detached Duplex,Inside Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +2224,Fenced Land Measuring 770sqm,Ikota Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikota +2225,Vacant Plot Of Land,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ikota +2226,3 Bedroom All Ensuite Apartments With Bq,"Shoprite Circle Mall, Elevation Church, Jakande Estate, Lekki Epe Expressway Ologolo Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +2227,5bedroom Duplex Allrooms Ensuite With A Room Bq At Megamount Estate Lekki County Home,Awobode Abiodun Street Megamount Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +2228,Newly Built Luxury Terrace Duplex Houses,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2229,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +2230,Newlybuilt And Tastefully Finished Top Notched Detached 5bedroom Duplex With Swimming Pool,"Vgc Lekki,lagos State. Vgc Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,0 baths,0 Toilets,Victoria Garden City +2231,Beautiful 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +2232,Available Land,Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +2233,Contemporary 5 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +2234,6bedrooms Detached House With Boys Quarter,"Off Durosimi Etti Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +2235,"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema Gym And Bq",Megamound Ikota Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +2236,Luxury 2bedroom Flat Newly Built With A Room Bq Ready For Immidate Occupation With A Dedicated Parking Slots.,"Lekki Penisula 2, Nice Proximity To Royal Garden Estate, Off Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +2237,Exquisitely Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2238,Exclusive 4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2239,Massive 5 Bed Detached Duplex With Cinema & Pool,Orchid Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2240,5 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +2241,4 Bedroom Detached House,Salem Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +2242,Newly Built 3bedroom Flat,By Pinnacle Filing Station Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +2243,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths,6 Toilets,Ikota +2244,A Vacant Piece Of Land,Ilasan Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2245,Brand New Semi Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2246,4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +2247,Luxury 5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +2248,Newly Built 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2249,"Plot Of Land Measuring 700m2 @ Sapphire Gardens Awoyaya, Lekki Lagos. Serene Serviced Estate. Govt. Registered Tittle",Sapphire Gardens Awoyaya Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Other Lekki +2250,"1,650sqm Land",Lekki Phase 1 Lekki Lagos,₦,"270,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2251,4 Bedroom Semi Detached Duplex With Bq,"2nd Tollgate , Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2252,2 Bedroom Luxury Apartment,Artican Beach Road Lekki Phase 2 Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +2253,5 Bedroom Detached Duplex,"Chevron, Lekki Conservation Centre, Eleganza, Orchid Hotel Chevron Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2254,5 Bedroom Detached Duplex,"Chevron, Lekki Conservation Centre, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds, baths,5 Toilets,Chevron +2255,Luxury 4 Bedroom Semi Detached Duplex,Megamound Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2256,Lovely 5bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +2257,Exquisitely Finish Newly Built 4 Bedroom Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +2258,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +2259,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2260,8 Bedroom Fully Detached Duplex + 2 Rooms Bq,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,8 beds,9 baths,9 Toilets,Lekki Phase 1 +2261,Service 1 Bedroom Apartment,"Orchid Road , Eleganza Bus Stop Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2262,Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +2263,Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Right Side Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +2264,Brand New 4 Bedroom Semi Detached Duplex +bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2265,Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +2266,Super Luxury 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +2267,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +2268,A Well Finished 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2269,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2270,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2271,A Standard 4bedroom Semi Detached Duplex Fully Serviced,Ikota Lekki Phase 2 Lekki Lagos,₦,"68,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2272,5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"185,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2273,Fully Serviced 2 & 3 Bedroom Apartments,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"48,600,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +2274,4 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2275,5 Bedroom Fully Detached Duplex,Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2276,4 Bedroom Fully Detached Duplex,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2277,Top Notch Finished 5bedroom Fully Detach Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2278,Semi Furnished 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2279,Serviced 4 Bedroom Terrace,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2280,Serviced 4bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2281,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +2282,Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +2283,Office Space,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +2284,Brand New 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +2285,Brand New 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +2286,Brand New 4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +2287,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +2288,Estate Land,Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +2289,5 Bedrooms Semi Detached House,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,1,6 beds,6 baths,6 Toilets,Victoria Garden City +2290,Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2291,5 Bedroom Detached House With Bq (order – 0039 Rsd),E Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +2292,Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2293,Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +2294,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +2295,Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2296,Land,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Chevron Lekki Lagos",₦,"33,100,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +2297,4 Bedroom Semi Detached House With Bq On 350sqms Land (order 0054rsd),Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +2298,Semi Detached Duplex,Bosmak Haven Vgc Lekki Lagos,₦,"77,500,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +2299,10 Units Of 4 Bedroom Terrace With A Roof Top,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2300,300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2301,Land,Agungi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +2302,300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2303,Beautifully Finished Contemporary 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +2304,Spacious 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2305,Mall,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2306,Land,Jakande Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2307,Spacious 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +2308,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +2309,Spacious 5 Bedroom Fully Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +2310,Land,Orchid Road Directly Facing Omega One Plaza Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +2311,4 Bedroom Semi Detached Home,Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ologolo +2312,3 Bedroom Flat Ensuite With One Room Boy’s Quarters,Off Osapa London Jakande Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2313,Tastefully Built 6 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Ikate +2314,Luxury 3bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +2315,A Newly Built 3bedroom Flat/2bedroom Flat With A Bq Payment Plan Available,Ikate Lekki Lagos,₦,"65,000,000/year",0,0,0,3 beds,4 baths,4 Toilets,Ikate +2316,5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Ikota +2317,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2318,A Standard 5bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2319,A Standard 4bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2320,5 Bedroom Detached Duplex With Swimming Pool,Estate Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2321,4 Bedroom Detached Duplex With Bq,Estate Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +2322,Newly Built 4 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +2323,5 Bedroom Detached Home,Orchid Lekki Estate Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2324,Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +2325,Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2326,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,0 Toilets,Ikate +2327,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2328,Brand New 3bedoom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +2329,Super Gorgeous Quality 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +2330,2 Units Fully Detached 6bedroom House,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +2331,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +2332,Luxurious 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,0,0,2 beds, baths, Toilets,Chevron +2333,4 Bedroom Terraced Duplex With Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Chevron Lekki Lagos",₦,"53,100,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +2334,Nicely Located 3 Bedroom Maisonette,Dunvale V Residents Ochid Road Lekki Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets,Chevron +2335,Nicely Located 2 Bedroom Apartment,"Emcel Apartment, Adjacent To Enyo Filling Station Road Ikate Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +2336,Nicely Located 3 Bedroom Apartment With Bq,Emcel Apartment Adjacent To Enyo Filling Station Road With 24 Hours Electricity Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +2337,3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +2338,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"290,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2339,Semi Detached 4 Bedroom Duplex + Bq,Around Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +2340,2 Bedroom With Bq,Lekki Lagos,₦,"4,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +2341,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2342,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2343,4 Bedroom Terrace Duplex,Itedo Estate Ikate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +2344,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +2345,Land,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Chevron Lekki Lagos",₦,"18,100,000",1,0,0,1 beds,1 baths,2 Toilets,Chevron +2346,Brand New 2bedroom Flat,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +2347,4bedroom Terrace Duplex Fully Serviced,Lekki Phase 2 Lekki Lagos,₦,"58,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2348,Magnificent Luxury 5 Bed Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +2349,4bedroom Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +2350,"Distress Sale Of Units Of 3 Bedroom, Mini Flats And Self Contains In Lekki Phase 1 On 2,700sqm!! (order 008rsd.)",Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2351,4 Bedrooms Semi Detached House,Vgc Vgc Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets,Victoria Garden City +2352,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2353,Brand New 3 Bedroom Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +2354,Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2355,Luxury 3 Bedroom Apartment + Swimming Pool,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +2356,Luxury 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,2 baths,2 Toilets,Chevron +2357,Newly Built 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2358,Fully Detached 5 Bedroom Duplex,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2359,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +2360,5 Bedroom Detached Home,Estate Lekki Lagos,₦,"275,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2361,5 Bedroom Detached Duplex,Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2362,5 Bedroom Detached Duplex,Estate Lekki Lagos,₦,"195,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2363,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"210,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2364,5 Bedroom Fully Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +2365,2bedroom Flat,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +2366,1bedroom Apartments,Chevron Chevron Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets,Chevron +2367,4bedroom Terrace Duplex,Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,0 Toilets,Lekki Phase 1 +2368,A Luxury 4bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +2369,A New Built 4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets,Lekki Phase 2 +2370,A Standard 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +2371,Newly Built And Well Finished 5bedroom Fully Detached,Lekki County Ikota Lekki Lagos,₦,"170,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2372,A Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +2373,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikate +2374,4 Bedroom Semi Detached Duplex,Ikate Lekki Estate Lagos Ikate Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +2375,5 Bedroom Detached,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2376,Brand New 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +2377,Land,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2378,5 Units Of 4 Bedroom Terraces,Lekki Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +2379,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +2380,Newly Built 2/3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +2381,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Ikota +2382,Luxurious 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0, beds, baths, Toilets,Osapa London +2383,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds, baths, Toilets,Ikate +2384,A Plot Of Land Measuring 70sqm And 1400sqm With An Erected Detached 10 Bedroom House (order 0071),Lekki Phase 1 Lekki Lagos,₦,"300,000,000/year",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2385,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +2386,Land,Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2387,3 Bedroom Terrace For Sale,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +2388,4bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2389,Fully Serviced 4 Bedroom Terrace Home,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2390,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +2391,Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2392,Land,Around Lekki Beach Road Jakande Estate Axis Jakande Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2393,4 Bedroom Fully Detached House With 2 Bq,Pinnock Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +2394,5 Bedroom Beautifully Detached House With Swimming Pool Sitting On A Land Size Of Approximately 600sqm In Lekki Phase 1 (order – 0027rsd.),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +2395,Beautifully Built 4 Bedroom Self Compound Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2396,1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Agungi +2397,4 Bedroom Terace Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,0,1,4 beds,4 baths,5 Toilets,Ikate +2398,4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +2399,Beautifully Finished Contemporary 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2400,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2401,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2402,Two Wings Of 4 Bedroom Duplex With Bq On The New Vgc (order – 0038 Rsd),E Vgc Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +2403,5 Bedroom Semi Detached Home,Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +2404,Spacious 5 Bedroom Fully Detached Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +2405,A Newly Built 5bedroom Fully Detached With Bq,Lekki Lagos,₦,"220,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2406,3bedrooms Maisonette Phase 1,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +2407,Spacious 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +2408,Brand New 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +2409,Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +2410,Brand New 4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2411,Newly Built And Well Finished 5 Bedroom Fully Detached,Lekki County Ikota Lekki Lagos,₦,"175,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2412,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2413,Fully Serviced 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2414,A Newly Built 5bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2415,A Well Built 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2416,A Newly Built 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2417,5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2418,5 Bedroom Semi Detached Home,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2419,6 Bedroom Fully Detached Duplex,Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +2420,5 Bedroom Exquisite Home,Osapa London Lekki Lagos,₦,"475,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +2421,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +2422,Property Of 2230.636m2,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2423,5 Hectares Of Land,Chevron Lekki Lagos,₦,"169,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2424,Serviced 2bedroom Flat,Idado Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +2425,Decently Built 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +2426,10 Units Of 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2427,3bedroom Flat,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +2428,2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +2429,3bedroom Maisonette Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,0 beds,0 baths,0 Toilets,Ikate +2430,4bedroom Penthouse,Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,0 Toilets,Ikate +2431,Newly Built 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +2432,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +2433,2 Bedroom Apartment With Bq,Gcc 4 Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +2434,Land,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2435,4bedroom Semi Detached Duplex,Victoria Bay 1 Orchid Hotel Road Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2436,3 Bedroom Flat,Milverton Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +2437,Prestigiously Finished 6 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2438,Fully Serviced 2 Bedroom Studio Apartment,"Plot 3, Prince Ola Olusesi Close Lekki Lagos",₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2439,Fully Serviced 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2440,600sqm Land,Ode Omi Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2441,Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +2442,Contemporary Styled 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +2443,Contemporary 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +2444,Contemporary Styled 5 Bed Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +2445,A Newly Built Fully Detached Duplex,Lekki Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ologolo +2446,2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +2447,Serviced 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +2448,Luxurious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2449,Nicely Finished 4 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets,Ikate +2450,Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +2451,Land,Ocean Bay Estate Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2452,6 Nos Of 2 Bedrooms Flat (65% Complete) (order – 0080a Rsd.),Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds, baths, Toilets,Lekki Phase 2 +2453,Fenced Land Of 880sqm,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2454,Superbly Design 3 Bedroom Terraced Duplex,Dunvale V Residents Ochid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +2455,Land,Ochid Road Area Of Lafiaji Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2456,2 Bedroom Flat,"Near Whitesand School, Lekki Phase 1 Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"41,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +2457,4 No 1 Bedroom Flats (penthouse) (75% Complete). (order – 0080b Rsd.),Lekki Phase 2 Lekki Lagos,₦,"28,000,000/year",0,0,0,1 beds, baths, Toilets,Lekki Phase 2 +2458,3 Units Of 4 Bedroom Terraced Duplex,"Beach View Estate Beside Banana Estate Apartment, Igbo Efon Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +2459,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +2460,Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +2461,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +2462,A Standard 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2463,Newly Built And Well Finished 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"190,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2464,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2465,Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2466,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +2467,2bedroom Apartments,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,0 beds,0 baths,0 Toilets,Chevron +2468,3bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,0 beds,0 baths,0 Toilets,Chevron +2469,Newly Build 5 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +2470,Tastefully Finished 3 Bedroom Terraced Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +2471,Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets,Chevron +2472,Brand New 3bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +2473,Luxury 4bedroom Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2474,Finished 1/2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +2475,8 Units Of Fully Serviced Block Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +2476,Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2477,4 Bedroom Semi Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +2478,5 Bedroom Detached Duplex,Estate Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2479,5 Bedroom Detached Duplex With Bq,Estate Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +2480,Fully Furnished 5 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2481,4 Bedroom Semi Detached Duplex With Bq,Estate Lekki Lagos,₦,"78,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +2482,5 Bedroom Detached Home,Osapa London Lekki Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2483,5 Bedroom Detached Home,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2484,6 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +2485,2 Front Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2486,4 Bedroom Detached House With Bq,Estate Vgc Lekki Lagos,₦,"88,000,000",0,0,1,4 beds,4 baths,5 Toilets,Victoria Garden City +2487,2 Bedroom With Bq (off Plan),Lekki Lagos,₦,"18,900,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +2488,Available Land,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +2489,Zion Residence Ochid Road... Opp Chevron,Lekki Lagos,₦,"42,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +2490,Land,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2491,Newly Built And Well Finished 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2492,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2493,Newly Built 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +2494,5 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +2495,4 Bedroom Terrace Duplex On Two Floors,Oniru Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikate +2496,4bedroom Semi Detached Duplex,Bosmark Haven Estate By Harris Drive Vgc Vgc Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +2497,Eco Friendly 4 Bedroom Maisonette,Emcel Apartments Located At 4th Lekki Epe Express Way Behind New Sofia Bedmate By House On The Rock Cathedral Lekki Nicon Town Nicon Town Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2498,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2499,5 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2500,3 Bedroom Apartment In The Heart Of Lekki Phase 1,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +2501,5 Bedroom Apartment,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +2502,Brand New 5bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +2503,5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2504,4bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2505,3bed Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +2506,5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2507,5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2508,Luxury Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2509,Newly Launched 1 4 Bedroom Apartments,Chevron Nigeria Limited/vgc Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2510,Plot Of Land,Nike Art Centre/ Elevation Church Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2511,Newly Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2512,Newly Built 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2513,Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2514,2 Bedroom Terrace House,"Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +2515,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2516,3 Bedroom Maisonette Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"35,500,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +2517,2 Bedroom Apartment,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"20,500,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +2518,Fully Detached Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2519,5 Bedroom Fully Detached Duplex,"Paradise Court Estate, Orchid Road, Lafiaji Opposite Chevron, 2nd Toll Gate Chevron Lekki Lagos",₦,"98,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2520,3 Bedroom Luxury Flat,"Paradise Court Estate, Orchid Road, Lafiaji Opposite Chevron, 2nd Toll Gate Chevron Lekki Lagos",₦,"23,500,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +2521,4 Bedroom Terrace Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2522,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2523,Newly Built Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,3 baths,3 Toilets,Other Lekki +2524,Newly Built 3 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Lekki +2525,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +2526,3 Bedroom Apartment,Lekki Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2527,2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"68,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +2528,6 Bedroom Fully Detached Duplex,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +2529,Furnished 5 Bedroom Duplex With Bq,Gated Area Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +2530,6 Bedroom Waterfront Mansion With Cinema And Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,6 Toilets,Ikota +2531,"Ongoing 3 Bedroom Automated Apartment, View Pictures To See The Stage Of Work",Oral Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +2532,Newly Built 4 Bedrooms Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2533,5 Bedroom Semi Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2534,Newly Built 4 Bedroom Semi Detached Duplex,"Palm View Estate, Orchid Road, Behind Oral Estate Oral Estate Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2535,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +2536,5 Bedroom Detached Duplex,Orchid Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2537,Newly Built 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +2538,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +2539,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2540,Automated 5 Bedroom With Pent House,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2541,Shops Measuring,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2542,Contemporary 4 Bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2543,Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2544,"5 Bedroom Detached Duplex With Swimming Pool, Cinema (one Unit Left)",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +2545,5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2546,New 4 Bedroom Duplex,Off Admiralty Way Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2547,4 Bedrooms Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2548,4 Bedroom Luxury Semi Detached Duplex With Bq,"De Castle Max Orchid Lekki, Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +2549,4 Bedroom Detached Home,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +2550,Newly Built 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +2551,Automated 5 Bedroom Penthouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2552,Prestigious 3bedroom Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +2553,Luxurious 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +2554,Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +2555,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikota +2556,4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2557,4 Bedrooms Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2558,4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +2559,5 Bedroom Detached Duplex With Bq,Off Freedom Way Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2560,Lovely 4 Bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2561,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2562,4 Bedroom Terrace Duplex,"De Castle Max, Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2563,4bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +2564,6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +2565,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +2566,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2567,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2568,Luxury 4bedroom Terrcaced Duplex,Ochid Lekki Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2569,4 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2570,5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2571,Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +2572,5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2573,4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2574,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2575,5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2576,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2577,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2578,Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2579,Luxury 4bedroom Terraced Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2580,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2581,5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2582,A Newly Built & Tastefully Finished Luxury 4bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2583,4bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2584,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2585,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2586,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2587,"5 Bedroom Fully Detached Duplex With Pool,cinema,gym And 2 Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +2588,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2589,2 Units Of 5 Bedrooms Fully Detached Duplex With A Bq And Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +2590,5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2591,4bedroom Terrace Duplex With High Quality Finishing,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2592,Luxury 5bedroom House,Ikota Villa Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +2593,4 Bedroom Semi Detached Duplex With Bq,De Castle Max Orchid Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +2594,Newly Built 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +2595,Relatively New & Tastefully Furnished Luxury 2bedroom Flat For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,1,2 beds,2 baths,2 Toilets,Lekki Phase 1 +2596,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2597,Smart Terrace House Of 4 Bedroom Ensuite With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2598,4bedroom Semi Detached Duplex,A Very Nice Environment Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2599,5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2600,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2601,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2602,Magnificently Built 5bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +2603,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2604,2400sqm Fenced Land,Off Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2605,Newly Built And Well Finished 5 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2606,Newly Built 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2607,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,S Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +2608,Fully Serviced Apartment 1 2 3 Bedroom,Idado Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2609,Luxury 4 Bedroom Terrace Duplex With Bq,Ajah Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2610,18 Plots Of Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2611,"5 Bedrooms Fully Detached Duplexes; Nestled Within A Secured And Tranquil Estate At Lekky County, Lekki, Lagos. ",Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +2612,"4 Bedroom Ensuite Semi Detached Duplex With Fitted Kitchen, Bq And 5kva Inverter",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +2613,Lovely 4bedroom Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2614,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2615,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +2616,4 Bedroom Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2617,4 Bedroom Fully Detached Duplex,Beautiful Estate Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2618,Bosmak Haven,Harria Drive Shapata Vgc Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +2619,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +2620,4 Bedroom Maisonette With Bq In Ikate,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +2621,Luxury 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2622,5bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +2623,"Spacious 4 Bedroom Semi Detached Duplex,",Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2624,4 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +2625,Brand Bedrooms Semi Detached Duplex With Bq And Swimming Pool,2nd Tollgate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2626,5bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2627,Grandiose 4 Bedroom Detached House (ocean View) On Ample Grounds,Goshen Beach Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2628,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +2629,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2630,4bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2631,Mega Joint Venture,"Off Admiralty Road, Lekki Phase I Lekki Phase 1 Lekki Lagos",₦,"14,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2632,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2633,4 Bedroom Semi Detached,A Very Beautiful Estate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2634,4 Bedroom Ensuite Terrace House,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +2635,Land,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2636,Lovely 4bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2637,5 Bedroom Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2638,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2639,Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2640,Spacious 4 Bedroom Ensuite Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +2641,Land,Jakande Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2642,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2643,2 Bedroom Apartment In Lekki Phase 1 Below Market Price(off Plan),Off Freefom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +2644,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2645,Newly Built 5 Bedroom Ensuite Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2646,Smart Contemporary 5 Bedroom Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2647,Very Nice 4 Bedrooms Semi Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2648,Furnished 5bedrooms Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2649,Brand New 4 Bedroom Fully Serviced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +2650,Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Suppy For Sale,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +2651,Lovely 4 Bedroom Fully Detached Duplex,Osapa Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2652,Automated 5 Bedroom Detached Duplex With Swimming Pool And Two Rooms Bq,S Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +2653,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2654,4 Bedroom Semi Detached Duplex I,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2655,4bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2656,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2657,4 Bedroom Detached House,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2658,Newly Built 4 Bedrooms Semi Detached Duplex,"Lekki, Lagos Ologolo Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2659,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2660,4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2661,4 Bedroom Semi Detached Duplex With Bq,"Orchid Hotel Road, Opposite Cooplag Gardens, Lafiaji Chevron Lekki Lagos",₦,"63,100,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +2662,Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2663,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"392,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2664,4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2665,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2666,Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2667,1 Bedrom Flat Apartment,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +2668,Newly Built 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2669,Furnished Fully Detached 5 Bedroom Stand Alone Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2670,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2671,5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2672,Commercial Property,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +2673,Tastefully Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2674,"Brand New 2 Bedroom Apartment,",Lekki Conservation Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +2675,4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2676,4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2677,Luxury 5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Megabond Estate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +2678,Exquisitely 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2679,5 Bedrooms Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2680,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2681,Contemporary 5 Bedroom Detached Duplex With 4 Car Space,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2682,Relatively New 4 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2683,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2684,5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +2685,Well Finished 4 Bedroom Ensuite Semidetached Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2686,4 Bedroom Semi Detached With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2687,Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2688,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +2689,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2690,Luxury 5 Bedroom Semi Duplex Built On Two Floors,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +2691,Bespoke Luxury 5bedroom Detached House,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2692,"Contemporary, 5 Bedroom Fully Detached Duplex, With A Maids Room",Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2693,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2694,Massive Brand New 5bedroom Fully Detached House With A Bq,S Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +2695,4bedroom Terrace Duplex With A Bq,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2696,5bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"227,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +2697,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2698,3 Bedrooms Flat With Bq,Peanock Estate Osapa London Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +2699,4 Bedroom Terrace Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +2700,Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +2701,Lovely 4bedroom Terrace Duplex,By Second Toll Gate Lekki Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2702,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2703,Bespoke 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +2704,5 Bedroom Detached Duplex With Bq And Swimming Pool,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2705,5bedroom Fully Detached Duplex,Lovely And Nice Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2706,4bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +2707,Affordable & Newly Built 4 Bedroom Terrace Duplex,Chevron By Second Toll Gate Chevron Lekki Lagos,₦,"47,500,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +2708,5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +2709,Fully Serviced 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +2710,Newly Built 3 Bedroom Ensuite Flats,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +2711,Contemporary 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +2712,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2713,Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +2714,Newly Built Contemporary Serviced 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +2715,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2716,3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +2717,"Diamond Court Estate, Chevron","Chevron, Behind Northern Fourshore. Title: Govn. Consent Chevron Lekki Lagos",₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2718,Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +2719,Lovely 3bedroom Apartment,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +2720,Quality 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2721,4 Bedroom Ensuite Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2722,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2723,Exquisitely Built 5bedroom Semidetached Duplex,Orchid Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,0 baths,0 Toilets,Other Lekki +2724,4 Bedroom Fully Detached House With Bq; Video Tour Available In Request,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2725,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +2726,Newly Built 5 Bedroom Detached House With Swimming Pool, Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2727,4 Bedroom Fully Detached Castle Duplex + Bq,"De Castle, Orchid Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2728,4 Bedrooms Terraces,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2729,5bedroom Fully Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +2730,4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2731,5 Bedroom Detached House With Bq,Osapa London Axis Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +2732,Newly Built 5 Bedroom Ensuite Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +2733,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2734,A Newly Built & Tastefully Finished Luxury & Serviced 4bedroom Terrace Duplexes For Sale!!,Orchid Road Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +2735,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2736,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2737,Luxurious And Fully Serviced 2 Bedroom Apartment.,"Rayfield Estate, Lekki Conservation Road, Lekki Lagos",₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +2738,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2739,Luxury 5bedroom House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2740,Brand New 4 Bedrooms Semi Detached Duplex,2nd Tollgate Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2741,4 Bedroom Ensuite Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2742,Contemporary 4 Bedroom Detached Duplex With Swimming Pool (2 Units Left),Ajah Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2743,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2744,Brand New 5 Bedrooms Fully Detached Duplex With Bq,Vgc Vgc Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2745,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +2746,A Sandfilled Land Measuring 2000sqm In Ikate Elegushi Lekki,Off Freedom Rood By Cis School Lekki Ikate Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Ikate +2747,Waterfront 5bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2748,5bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2749,Lovely 4bedroom Fully Detached,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2750,Luxury 4bedroom Semi Detached Duplex,Orchid Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2751,Bosmak Estate,Harria Drive Shapata Vgc Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +2752,Newly Built 4bedroom Terrace,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +2753,Contemporary 5 Bedroom Smart House Duplex With Bq,Chevron/agungi Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +2754,Fully Serviced 5bedroom Duplex With Swimming Pool And 247 Electricity,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +2755,1200sqm Water Front Land,Orange Island Phase 1 Lekki Lagos,₦,"325,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2756,Brand New 2 Bedrooms Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +2757,New 4 Bedroom Duplex Within A Serviced Residential Court,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +2758,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2759,5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +2760,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2761,4 Bedrooom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +2762,5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2763,5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2764,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2765,4bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +2766,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2767,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2768,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2769,5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +2770,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +2771,4 Bedroom Semi Detached Duplex + Bq,"De Castle Max, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2772,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2773,4bedrooms Detached Detached Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2774,4 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2775,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2776,4bedroom Semi Detached,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2777,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +2778,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2779,4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2780,Well Maintained 4 Bedroom Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2781,4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2782,Lovely 5bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2783,Luxury 5bedroom House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +2784,3 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2785,2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +2786,Fully Serviced 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +2787,6bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +2788,1 & 2 Bedroom Flat Apartment,"Orchid Hotel Road, Opposite Cooplag Gardens Chevron Lekki Lagos",₦,"18,100,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +2789,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2790,Nice 4 Bedroom Serviced Terraced House,Worldwide Court Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2791,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2792,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets,Ikota +2793,Most Affordable 4 Bedroom Terrace Duplexin Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +2794,2 Bedroom Flat,Lekki Lagos,₦,"2,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +2795,Tastefully Finished Luxury 3bedroom Semi Detached Duplex+a Room Bq For Sale!!!,Briskcourt Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",1,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 2 +2796,5 Bedroom Apartment,Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2797,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2798,Luxury 5 Bedroom Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2799,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2800,Exquisitely Finished 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +2801,911sqm Virgin Land,Orange Island Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +2802,Breathtaking 4 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2803,Brand New 7 Bedrooms Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,7 baths,8 Toilets,Ikota +2804,Smart 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2805,5 Bedroom Detached Duplex With Swimming Pool And Cinema,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"415,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2806,3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +2807,3 Bedroom Apartment,Illasan Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2808,Newly Built 4 Bedroom Penthouse Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2809,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2810,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2811,7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2812,Serviced 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2813,5bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2814,4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2815,4bedroom Fully Detached Duplex,A Serene Secured Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2816,Automated 6 Bedroom Pent House Duplex,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 2 +2817,5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2818,2bedroom Massionatte,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +2819,Newly Built 4 Bedrooms Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2820,Newly Built 4 Bedrooms Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2821,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2822,1 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2823,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2824,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2825,A Newly Built & Tastefully Finished Luxury 4bedroom Terrace Duplex(on 2 Floors+ A Room Bq) For Sale!!!,Rhs Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2826,Exquisite 3 Bedrooms Maisonnette Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +2827,Classy Built 2 Bedrooms Maisonnette Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,0 baths,0 Toilets,Ikate +2828,Spectacular 6 Bedroom Detached Duplex,Pinnock Beach Estate By Shoprite Circle Mall Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2829,Massive 4 Bedroom Semi Detached Duplex + A Miniflat Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +2830,5bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +2831,4bedroom Ensuite Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2832,Newly Built 4 Bedrooms Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2833,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2834,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2835,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2836,Furnished 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +2837,Contemporary 5 Bedroom Fully Detached,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +2838,Spacious 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2839,5 Bedroom Fully Detached House,A Very Secured Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2840,This Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2841,5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +2842,Finished 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2843,4 Bedroom Terrace Duplex,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2844,Emcel Court 4 (orchid Road),With Bq Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2845,Fully Serviced 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +2846,Newly Built 4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2847,Brand New 4 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2848,3 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +2849,Newly Built 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2850,Luxury 5 Bedroom Duplex,Northern Forshore Estates Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +2851,4 Bedroom Semi Detached Duplex,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2852,4 Bedroom Contemporary Duplex,Chevron Orchid Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2853,6bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +2854,5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2855,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2856,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2857,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2858,Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2859,Serviced 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2860,Tastefully Built 3 Bedroom Apartments,Chevy Castle Apartments 3 Bedroom Apartment Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,0 baths,0 Toilets,Chevron +2861,Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +2862,Newly Built 4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +2863,This Lovely 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2864,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2865,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2866,4bedrooms Semi Detached Duplex,2nd Toll Lekki Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2867,Luxurious 5bedroom Detached Duplex With Swimming Pool And Bq,Lakeview Park Vgc Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2868,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2869,Lovely 2 Bedroom Carcass Apartment,Ikate Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +2870,Spacious 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2871,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +2872,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2873,Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2874,5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2875,Finished 4 Bedroom Semi Detached Duplex With Bq( Open Plan Kitchen),"Orchid, Chevron Toll Gate Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2876,Luxury 5 Bedroom Duplex With 2rooms Bq,Northern Forshore Estate Lekki Phase 2 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2877,5 Bedroom Detached Duplex With Bw And Car Park Space For 6 Cars,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2878,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2879,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +2880,4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2881,Newly Built 5bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2882,Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +2883,5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2884,6 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +2885,Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2886,4 Bedroom Serviced Terraced Duplex,Victoria Bay Estate Orchid Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2887,Self Serviced 4 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Chevron +2888,Newly Built 2 Bedroom Ensuite Flat,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +2889,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +2890,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +2891,5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2892,Luxury 5 Bedrooms Exquisitely Finished Fully Detached Duplex,Lakeview Park Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +2893,Smart 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2894,Beautiful 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2895,Prestige 5 Bedroom Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2896,Lovely 4 Bedroom Semi Detached Duplex Is Located In A Secured And Serviced Estate,Orchid Hotel Road Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +2897,Luxury 4 Bedroom Terraced Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +2898,Fully Fitted & Furnished 4 Bedroom Luxury Terrace With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +2899,Luxury 4bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2900,Newly Built 4 Bedroom En Suite Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +2901,4bedroom Detached Duplex,Lekki Conservative Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2902,Newly Built Five Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2903,4bedrooms Semi Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +2904,4 Bedroom Semi Detached Castle Duplex + Bq,Orchid Lekki Lagos,₦,"61,750,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2905,5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2906,Newly Built 4bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +2907,5 Bedroom Detached House,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +2908,5 Bedroom Detached Duplex,Oniru Victoria Island Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2909,Contemporary 5 Bedroom Duplex With Swimming Pool,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +2910,Executive 5 Bedroom Fully Detached Duplex With A Room Boys Quarter With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +2911,Decent 3 Bedroom Bungalow,Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2912,Honey Dew Court Estate,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +2913,Brand New 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +2914,4 Bedroom Maisonette,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2915,Beautiful 5bedroom Fully Detached Duplex With A Bq In A Beautiful And Serene Gated Estate With Top Notch Security And Clean Water.,Orchid Road Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +2916,4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000/month",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +2917,4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2918,Fully Furnished 3 Bedroom Serviced Apartment,Ikate Lekki Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2919,4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2920,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2921,Luxurious 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +2922,Luxury 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2923,5bedroom Fully Detached With Two Bedroom,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +2924,4bedroom Semidetached Duplex With A Bq.,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +2925,5 Bedroom Fully Detached Duplex With Bq,Lekky County Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2926,Brand New 3 Bedrooms Terrace Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +2927,3 Bedroom Apartment + Bq,Emcel Apartments Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +2928,Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex With A Room Boy's Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +2929,Brand New And Nice 4 Bedrooms Semi Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +2930,Fully Furnished 5 Bedroom Detached Home, Osapa London Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +2931,For Sale?? 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +2932,Luxury 5 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2933,Two Unit Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2934,3 Bedroom Apartments With Swimming Pool,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +2935,Fully Serviced 2 Bedrooms Apartment,Megamound Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,3 baths,4 Toilets,Ikota +2936,Bosmak Properties,With Bq Harris Drive Shapata Vgc Lekki Lagos,₦,"79,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +2937,Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +2938,Luxury 5 Bedroom Semi Detached Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +2939,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +2940,2units Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +2941,Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +2942,5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2943,Massive 4bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2944,5bedrooms Fully Detached Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2945,Executive Brand New 5bedroom Fully Detached House With A Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +2946,Newly Built Two Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +2947,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +2948,Well Finished And Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2949,Contemporary 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +2950,Alluring 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2951,Luxury 4bedroom Service Terrace House In Ologolo Lekki,Ologolo Close To Osapa London Lekki Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +2952,4 Bedroom Semi Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2953,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +2954,3bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +2955,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +2956,Newly Built 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +2957,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +2958,4 Bedroom Detached House With Bq,Lekki County Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2959,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +2960,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +2961,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +2962,Service 4bedroom Terrace House Off Orchid Road Lekki,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +2963,4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2964,Contemporary 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +2965,Spacious 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +2966,5 Bedroom Detached Duplex With Bq,Lekki County By Megamound Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2967,4 Bedroom Terrace For Sale,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2968,Luxurious Executive 4bedroom Terrance Duplex,Lekki Phase @ Area Lekki Phase 1 Lekki Lagos,₦,"167,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2969,4 Bedroom Terrace,Marwa Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +2970,Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +2971,2bedroom Serviced Apartment,Orchid Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +2972,3 Bedroom Apartment,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +2973,A Plot Of Land In An Estate Behind Coppalag Estate Off Orchid Road Lekki,Behind Coppalag Estate Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +2974,Luxury 5 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2975,4 Bedroom Semi Detached Castle Duplex + Bq,"De Castle, Orchid Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +2976,4 Units Of Newly Built 4 And 5 Bedroom Terrace Duplex On Large Grounds,Off T.f. Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +2977,Brand New 4bedroom Terrace Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +2978,Newly Built 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2979,4bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2980,5bedroom Detached,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2981,Newly Built 4bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +2982,Smart 5bed Ensuite Detached Duplex,Lekki County Homes Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +2983,Luxury 5bedroom House,Orchid Lekki Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +2984,Luxury 2bedroom Flat,Agungi Lekki Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +2985,2bedroom Apartment,Lekki Conservative Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +2986,New 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +2987,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +2988,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +2989,5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +2990,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +2991,4bedroom Semi Detached With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +2992,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +2993,5 Bedrooms Fully Detached Duplex With A Swimming Pool And A Bq,Lekki County Home Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +2994,4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +2995,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +2996,Newly Built 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +2997,4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +2998,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +2999,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3000,4bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3001,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3002,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3003,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3004,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3005,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3006,4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3007,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3008,4bedroom Semi Detached With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +3009,2 Bedroom Apartment,Very Close To Freedom Way Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3010,4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3011,4 Bedrooom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3012,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3013,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3014,3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3015,3 Bedrooms Maisonette And 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3016,5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3017,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3018,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3019,4 Bedroom Semidetached Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3020,4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3021,Newly Built 2 Bedroom Maisonnette,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,0 baths,0 Toilets,Ikate +3022,5 Bedroom Detached House With Detached Bq,Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +3023,2 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +3024,2 Bedroom Maisonette,By Freedom Way Lekki Phase 1 Lekki Lagos,₦,"69,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +3025,Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3026,Newly Built 2 Bedroom Apartment,Camberwall Advantage 4 At Lekki Phase 1 Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3027,Blocks Of Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +3028,4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3029,4 Bedrooms Terrace,Alternative Route Chevron Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +3030,Newly Built 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +3031,4 Bedrooms Terrance,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3032,Newly Built 2 Bedrooms Blocks Of Flat,Orchid Road Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +3033,Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3034,Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3035,4bedroom Detached,A Very Nice Estate And Well Secured Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3036,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3037,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3038,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3039,4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"108,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3040,5bedroom Fully Detached Duplex,A Very Nice Environment And Calm Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3041,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3042,5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3043,Newly Built 4 Bedroom Detached House,2nd Toll Gate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3044,4bedroom Detached,A Very Beautiful Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3045,Luxury 1 Bedroom Studio Appartment,Ikate Lekki Lagos,₦,"33,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ikate +3046,1 Bedroom Luxury Appartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,2 baths,2 Toilets,Ikate +3047,Offplan Project Of A 2bedroom Apartment,"Camberwall Advantage 4, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +3048,6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"330,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +3049,Lovely 4 Bedroom Terraced Duplex,Harris Drive Vgc Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3050,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3051,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikota +3052,5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3053,5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3054,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3055,1000 Sqm Land Available For Sale,"Carlton Gate Estate, Chevron Drive. Chevron Lekki Lagos",₦,"230,000,000",0,0,0, beds, baths, Toilets,Chevron +3056,Exquisite 5 Bedrooms Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3057,4bedroom Semi Detached Duplex,A Very Beautiful Environment Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3058,5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3059,2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"3,700,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +3060,Massive 5 Bedroom Duplex With Swimming Pool,Chevron Tollgate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3061,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3062,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3063,Exquisitely Finished & Tastefully Finished Luxury 2bedroom Flat For Sale!!!,Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets,Osapa London +3064,5bedroom Detached House In An Estate Off Chevron Drive Lekki,Off Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3065,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3066,4bedroom Semi Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3067,3/4 Bedroom Terrace Duplex,S Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3068,5bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3069,Executive Newly Built 2 Bedroom,Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3070,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool.,Ikate Lekki Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3071,4bedroom Semi Detached House With A Room Bq By Chevron Tollgate Lekki,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3072,Spacious 4 Bedroom Ensuite Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3073,Luxurious Newly Built 5bedroom Detached Duplex At Lekki Phase 1 With 2 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3074,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3075,Waterview 5 Bedroom Detached Mansion With Swimming Pool,Lekki Phase 2 Lekki Lagos,$,"1,200,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3076,4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3077,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3078,4 Bedroom Terrace Duplex,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3079,Newly Built 4bedrooms Fully Detached Duplex With Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3080,Brand New Semi Detached Duplex With Bq,Chevron 2nd Tollgate Orchid Road Oral Estate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3081,Newly Built 4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,0 baths,0 Toilets,Ikate +3082,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3083,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3084,5bedroom Ensuite Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3085,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3086,Tastefully Finished 5bedroom Fully Detached Duplex,Oniru Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,0 baths,0 Toilets,Other Lekki +3087,5 Bedroom Detached Duplex With 2 Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets,Osapa London +3088,Brand New 4bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3089,4bedroom Semi Detached With A Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,5 Toilets,Chevron +3090,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3091,Smart 3 Bedrooms Flat With Payment Plan,Oral Estate Oral Estate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3092,Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3093,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3094,4 Bedrooms Maisonnete,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3095,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3096,4 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +3097,4bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3098,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3099,Creek Avenue Court Phase 2,"Close To 2nd Toll Gate At Ikota, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +3100,4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +3101,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3102,2bedroom Massionatte,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3103,2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3104,Fully Furnished 5 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"145,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +3105,4 Bedroom Ensuite Terrace House,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3106,Fully Automated Home With Fully Fitted Kitchen For Sale,Ikota Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +3107,Lovely 4 Bedroom Semi Detached Duplex With A Private Compound,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +3108,Waterfront Island Virgin Land Measuring 14 Hectares,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +3109,Contemporary 6 Units Of 5 Bedroom White House With Swimming Pool/mini Bar ...,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +3110,4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3111,Exquisitely Built And Well Finished 5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool,Chevron Tollgate Orchid Road Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3112,Ready To Build Land In Lekki On Orchid Hotel Road,Sharing Fence With The Popular Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Chevron +3113,5 Bedroom Detached Duplex With Bq Chevron,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3114,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3115,4bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3116,5 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +3117,4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3118,4bedroom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3119,300sqm,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3120,5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"6,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3121,4 Bedroom Semi Detached Duplex,Oral 2 Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +3122,5 Bedroom Fully Detached Duplex,In A Fully Gated And Secured Estate Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +3123,"Fully Serviced 3 Bedroom Apartment, With Pool Located In The Most Serene And Beautiful Estate",Megamound Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +3124,Contemporary 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3125,4 Bedrooom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3126,5 Bedroom Semi Detached Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3127,Newly Built 4bedroom Terrace Duplex With Bq,Bayview Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3128,Newly Built Four Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3129,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3130,Spacious 5 Bedroom Ensuite Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3131,Newly Built 4bedroom Terrace Duplex With Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +3132,Newly Built 5 Bedroom Fully Detached Smart House With Penthouse And Swimming Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3133,Brand New 4bedroom Fully Detached House With A Bq,Q Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3134,4 Bedroom Semi Detached House,"Off Omorinre Johnson Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +3135,Serviced 4 Bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3136,5 Bedroom Detached Duplex With Swimming Pool And Gym,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +3137,Newly Built Five Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3138,3 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3139,Contemporary 5 Bedrooms Fully Detached Duplex,Lakeview Park Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3140,Well Finished 4 Bedroom Ensuite Semidetached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +3141,5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3142,Luxury 5bedroom Fully Detached Duplex + A Room Bq..,G Ologolo Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ologolo +3143,5bedroom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3144,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3145,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3146,Landbanking Development Project, Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3147,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +3148,800sqm Land Available For Sale,"Carlton Gate Estate, Chevron Drive. Chevron Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Chevron +3149,Spacious 3 Bedroom Ensuite Flats,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +3150,4 Bedrooom Terrace Duplex With A Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3151,5 Bedroom Detached Duplex In A Serena Environment,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +3152,"Brand New Super Luxury 4bd Semi Detached Duplex, Strategically Located On Harris Corporation Drive By Vgc, Lekki, Lagos.",Vgc Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +3153,Furnished 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +3154,Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +3155,Lovely 2 Bedroom Flat,Agungi Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +3156,Fully Serviced 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3157,5bedroom Fully Detached With A Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3158,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3159,5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3160,Spacious 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3161,Luxury 5 Bedroom Detached,Secured Estate Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +3162,4bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +3163,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3164,Bespoke 5 Bedroom Ensuite Detached Duplex,Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3165,6bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,6 Toilets,Osapa London +3166,Fully Detached 4 Bed Rooms Home,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3167,Beautiful 3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +3168,Brand New Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3169,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3170,Luxury 4bedroom Service Terrace House,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3171,Newly Built Executive 6 Units Of 3beds,Ikate Lekki Ikate Lekki Lagos,₦,"280,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +3172,Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +3173,4 Bedroom Terrace Duplex With Bq,Ilasan Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3174,Brand New 4 Bedroom Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3175,Newly Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3176,5 Bedroom Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3177,Newly Built 5 Bedroom Fully Detached Duplex And Can Take Over 6 Cars, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +3178,Amazing New Two Bedroom Terrace,Ikate Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3179,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3180,4 Bedroom Fully Detached Duplex + Bq,"De Castle Max, Orchid Road Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +3181,Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Suppy,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3182,Luxury 4 Bedroom Semi Detached Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3183,Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Lekki Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +3184,6 Bedroom Fully Detached Duplex,Nixon Town Ikate Lekki Lagos,₦,"530,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikate +3185,Brand New 5bedroom Fully Detached House With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3186,Newly Built Three Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3187,Newly Built Four Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3188,Luxurious Elegant 9 Bedroom Fully Detached Duplex,"Addo Road, Lekki Palm City Estate Lekki Phase 2 Lekki Lagos",₦,"250,000,000",1,1,1,9 beds,9 baths,10 Toilets,Lekki Phase 2 +3189,4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3190,Newly Built 4 Bedrooms Terrace,Emcel Court 4 4 Bedrooms Terrace Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +3191,5 Bedroom Semi Detached Duplex With A Bq,Ilasan Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3192,Luxury Waterfront 5 Bedroom Fully Detached Duplex,A Very Secured Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3193,6 Bedroom Detached Duplex,Pinnock Beach Estates Lekki Phase 2 Lekki Lagos,₦,"480,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +3194,5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3195,5bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3196,Luxurious 4bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +3197,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3198,Serviced 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +3199,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3200,4bedroom Semi Detached With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3201,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3202,5 Bedroom Detached Smart Homes,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3203,Land,Orchid/whales County Phase 2/2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3204,Luxury 3 Bedroom Terrace Duplex,Cooplag Garden Orchid Road Chevron Drive Lekki Off Plan Project Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,0 baths,0 Toilets,Chevron +3205,5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3206,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3207,Offplan Project Of A 3 Bedroom Apartment,"Camberwall Advantage 4, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +3208,4bedroom Semi Detached Duplex,Lovely And Calm Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3209,5bedroom Fully Detached Duplex,A Serene Environment Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3210,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3211,Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq For Sale!,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +3212,This Elegantly Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +3213,Freshly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3214,3 Bedroom Maisonette With Bq For,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +3215,"2,3 & 4 Bedroom Duplex With Penthouse + Bq",Ikate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3216,3bedroom Apartment,Megamound Ikota Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +3217,5 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +3218,4 Bedroom Terrace Duplex,"Lekki, By Second Toll Gate,orchid Hotel Road Chevron Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3219,Clean And Spacious 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +3220,New Private 5 Bedroom Detached Duplex With 2 Room Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3221,Tastefully Finished 3bedroom Terrace Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +3222,Newly Built And Fully Serviced 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3223,Newly Built Four Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3224,Newly Built 4 Bedroom Ensuite Semidetached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3225,4bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3226,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3227,This Lovely Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +3228,Smart 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3229,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3230,5 Bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +3231,4bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3232,4 Bedroom Masionette With A Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3233,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +3234,Newly Built 4 Bedroom Detached House,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3235,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"108,000,000",1,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3236,Contemporary 5 Bedroom Duplex With Swimming Pool,Orchid By Chevron 2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +3237,Luxury Maisonnete With Swimming Pool & Gym,Jakande Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +3238,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +3239,5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3240,Newly Built Four Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3241,Luxury Two Bedroom Flat,Ikate Lekki Lagos,₦,"4,500,000",1,1,0,2 beds,3 baths,0 Toilets,Ikate +3242,4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3243,4 Bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3244,5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3245,This Lovely 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3246,Beautiful Fully 6 Bedroon Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,1,6 beds,6 baths,7 Toilets,Other Lekki +3247,3 Bedroom Terrace Duplex With A 2bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,5 Toilets,Ikate +3248,Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +3249,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +3250,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +3251,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3252,4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +3253,Smart And Super Lucurious 2bedroom Apartment House,Lekki Conservative Center Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3254,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +3255,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3256,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3257,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3258,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3259,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +3260,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3261,6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3262,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3263,4 Bedrooms Duplex With A Bq,Marwa Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3264,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3265,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3266,5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3267,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3268,5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3269,6 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +3270,Newly Built 4bedrooms Semi Detached With A Room Bq,Agungi Lekki Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +3271,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3272,Newly Built 4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +3273,Fully Serviced 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +3274,Fully Serviced 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +3275,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3276,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,5 Toilets,Lekki Phase 1 +3277,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3278,3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3279,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3280,5 Bedroom Apartment,Osapa London Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +3281,3bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +3282,Contemporary 5 Bedroom Duplex With Bq,Chevron / Agungi Agungi Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3283,Newly Built 4 Bedroom Detached Duplex With B/q,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +3284,Newly Built Five Bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3285,Newly Built 4 Bedroom Ensuite Semidetached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +3286,Luxury 4 Beroom Terraced Duplex,Harris Drive Vgc Lekki Vgc Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3287,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3288,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3289,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3290,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3291,Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3292,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +3293,A Lovely Built 4 Bedroom Semi Detached House With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3294,Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3295,A Newly Built & Tastefully Finished Luxury 4bedroom Contemporary Fully Detached Duplex For Sale!!!,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +3296,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +3297,Lovely 2 Bedroom Apartment,Lekki Conservation Road Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +3298,Brand New 4 Bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +3299,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3300,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3301,5bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3302,4bedroom Semi Detached With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3303,Newly Built 4bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3304,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +3305,Lovely Finished 5bedroom Detached House With A Room Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3306,3bedroom Terrace Apartment,Harris Drive Close To Vgc Ikota Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +3307,Finished 4 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3308,Spacious 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +3309,Newly Built 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3310,Luxury 5bedroom Fully Detached Duplex With A Swimming Pool And Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3311,Luxury 4bedroom Semi Detached Duplex At Orchid Lekki,By Orchid Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3312,Emcel Apartment, Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +3313,4bedrooms Terraces,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3314,Brand New Fully Serviced 4 Bedrooms Terrace Duplex With Bq,Chevron Back Gate Chevron Lekki Lagos,₦,"65,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3315,Brand New 4 Bedroom Fully Detached House With A Bq,"Lekki County, West End Estate Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3316,5 Bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +3317,4bedroom Semi Detached,Very Nice Estate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3318,Newly Built And Well Finished 5 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3319,"1, 2 & 3bedrooms Apartments",Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +3320,4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +3321,5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3322,Serviced 4 Bedroom Terrace Duplex,By Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +3323,Smart Contemporary 5 Bedroom Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3324,Seriviced 4 Bedroom Terrace Duplex,"Victoria Bay Estate, Lekki Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3325,Newly Built 2 Bedroom Serviced Apartments,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3326,4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +3327,Luxury 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3328,Newly Built 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3329,Waterfront Plots Of Land,Osapa London Lekki Lagos,₦,"180,000,000/sqm",1,0,0,0 beds,0 baths,0 Toilets,Osapa London +3330,5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3331,Newly Built 4 Bedroom Ensuite Terrace Houses,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +3332,1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3333,5 Bedroom Detached Duplex !!!,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3334,Luxury 5 Bedroom Duplex Built On Two Floors,2nd Toll Gate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3335,5 Bedroom Fully Detached Duplex With Open Terrace,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3336,Newly Built Four Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3337,Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Oral Estate Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3338,Newly Built 5bedrooms Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Chevron +3339,4bedroom Fully Detached Duplex,A Beautiful Environment Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3340,4bedrooms Semi Detached Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +3341,Lovely 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3342,5bedroom Fully Detached With A Bq,Megamond Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3343,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3344,Luxury 4 Bedrooms House Plus Bq Facing Lake,"Twin Lakes Estate, Lekki Chevron Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3345,5 Bedroom Ensuite Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3346,5 Bedroom Fully Detached,Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3347,Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3348,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3349,Newly Built One Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Lekki +3350,Land,Muritala Eletu Street Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3351,Bespoke 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3352,4bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3353,Newly Built 3 Bedroom Ensuite Flats,Vgc Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +3354,Brand New 5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool,2nd Tollgate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3355,Modern 5 Bedroom Fully Detached Swimming Pool Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +3356,Newly Built 4 Bedroom Semi Detached With Bq In Chevron Toll Gate Lekki,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3357,"5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Vgc, Lagos.",Vgc Lekki Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3358,Serviced 2 Bedroom Ensuite Flats With Bq,Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +3359,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3360,Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3361,"4units Of Three Bedroom Flat, 4units Of Mini Flat And, 3units Of Self Contain Fully Furnished,",Jakande Lekki Lagos,₦,"800,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Lekki +3362,Executive 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3363,5bedroom Contempory Fully Detached,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +3364,Very Nice 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3365,Furnished 2 Bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +3366,Luxury And Superb 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3367,3 Bedroom Terrace Duplex,Chevron Tollgate Lekki Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3368,4 Bedroom Semi Detached With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +3369,3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3370,Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3371,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3372,5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"173,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3373,Contemporary And Smart 4bedroom Duplex,Lakeview Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +3374,5 Bedroom Detached Duplex With Bq,Lekki Conservation Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3375,4 Bedroom Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3376,2 Bedroom Waterfront Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3377,Massive 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3378,Exclusive 4 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3379,5 Bedroom Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3380,Newly Built 4bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +3381,Service 3bedroom Apartment,Ikake Elegushi Ilasan Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3382,Newly Built Two Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3383,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3384,Brand New Contemporary 5bedroom Fully Detached House With A Bq !!!,Jakande Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +3385,Modern 4 Bedroom Duplex On Ample Grounds,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3386,4 Bedroom Terrace And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +3387,5 Bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +3388,5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3389,Massive 5 Bedroom Duplext At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +3390,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +3391,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3392,5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3393,Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +3394,3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3395,4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Ikate +3396,4 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3397,4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3398,4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"6,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3399,Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq For Sale,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3400,5bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +3401,Well Built 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3402,Self Serviced 4 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3403,5 Bedroom Fully Detached,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3404,5 Bedroom Fully Detached,County Homes Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3405,4 Bedroom Semi Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3406,4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3407,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3408,4bedroom Semi Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3409,4bedroom Semi Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3410,5bedroom Fully Detached Duplex,A Very Nice Estate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3411,5bedroom Fully Detached Duplex,A Nice And Beautiful Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3412,3 Bedrooms Ensuite Flats,"Ikate, Elegushi Ikate Lekki Lagos",₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +3413,Newly Built 4 Bedrooms Semi Detached,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3414,Newly Built 6 Bedroom Detached House,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikota +3415,5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3416,Newly Built 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3417,5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3418,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3419,Newly Built 5 Bedroom Detached Duplex,Imperial Oaks Estate 5 Bedrooms Fully Detached Off Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,0 baths,0 Toilets,Chevron +3420,Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3421,4 Bedroom Fully Detached Castle Duplex With Bq,"De Castle Max, Chevron Lekki Lagos",₦,"7,500,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +3422,4 Bedroom Detached Duplex,Ologolo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +3423,4bedroom Fully Detached Duplex,A Peaceful Secured Estate In Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3424,5 Bedroom Detached Duplex With Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3425,4bedroom Terrace House,Ologolo Just By Shoprite Jakande Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3426,Fully Serviced 3bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3427,Newly Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"420,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +3428,5bedroom Fully Detached Duplex,Well Secured Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3429,Newly Built Fully Luxurious 5 Bedroom Detached,A Very Beautiful Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3430,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3431,Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3432,Vopnu City Ocean View,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula, Lagos Nigeria. Lekki Lagos",₦,"11,500,000",0,0,0, beds, baths, Toilets,Other Lekki +3433,Newly Built 3 Bedroom Terrace Duplex,Harris Drive Vgc Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +3434,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3435,Luxurious 5 Bedroom Fully Detached Duplex,A Lovely And Well Secured Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3436,Luxury Furnished 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +3437,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3438,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3439,4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3440,Fully Furnished 4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3441,Exquisite 3 Bedroom Maisonnette With Bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikate +3442,Newly Built 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Osapa London +3443,Royal Finished 4 Bedroom Fully Detached Duplex With Bq,De Castle Estate Orchid Road Chevron Lekki Lagos Off Plan Project Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds, baths, Toilets,Chevron +3444,Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3445,Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3446,Beautiful Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3447,Plots Of Land Measuring 600sqm Per Plot,Chevron Lekki Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets,Chevron +3448,5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3449,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3450,Brand New 5 Bedrooms Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3451,5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3452,Newly Built 5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +3453,Executive New 5 Bedroom Fully Detached House With B.q,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +3454,4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3455,Newly Built 2 Bedroom Apartment,Camberwall Advantage 2 Bedrooms Apartment Off Freedom Way Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds, baths, Toilets,Lekki Phase 1 +3456,4 Bedroom Semi Detached With A Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +3457,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3458,Newly Built 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +3459,Luxury 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +3460,4 Bedroom Semi Detached House,Orchid Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3461,Newly Built 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3462,Victory Star Court 2, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +3463,4 Bedroom Terraces Castle Duplex + Bq,"De Castle Max, Orchid Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +3464,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3465,3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +3466,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3467,3bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3468,4 Bedrooom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3469,4 Bedroom Semi Detached Duplex,A Very Nice Environment Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3470,4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3471,Massive 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3472,Serviced 2bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Agungi +3473,Newly Built 4bedroom Terrace With Personal Fence,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3474,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +3475,4 Bedroom Fully Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3476,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3477,5bedroom Fully Detached With A Bq,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3478,Best Deal !!! 2 Bedroom Apartment For Sale In Ikate,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3479,Very Spacious 4 Bedroom Terrace Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +3480,4 Bedrooms Terraces,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3481,New Private 5 Bedroom Detached Duplex With 2 Room Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3482,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3483,Brand New 4 Bedrooms Terrace Duplex,Chevron 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3484,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3485,4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3486,4 Bedroom Ensuite Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3487,Luxury 4bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3488,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3489,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3490,3 Bedroom Ensuite Flats With Bq Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Ikate +3491,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3492,5bedroom Detached House With A Room Bqby Chevron Tollgate Lekki,Orchid Road By Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3493,Luxurious Finished 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3494,4bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3495,Luxury 3 Bedroom Flat, Agungi Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +3496,Lovely 4bedroom Semi Detached Duplex At Chevron,Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +3497,Newly Built 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,5 baths,6 Toilets,Victoria Garden City +3498,Contemporary Massive 5 Bedroom Detached Duplex,Lekki Phase2 Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3499,4bedroom Semi Detached With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3500,Luxury 4bedroom Terraced Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3501,Brand New 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3502,2 Units Contemporary 5 Bedroom Semi Detached Duplex For Sale!!!,Acadia Groove Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3503,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3504,4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3505,Brand New 4 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Orchid Road Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3506,Newly 5bedroom Apartment,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"12,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3507,Newly Built 4 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3508,Luxury Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema/gym For Sale,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +3509,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3510,Contemporary Designed 6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +3511,Land In Lekki By Second Toll Gate Chevron Amistd Great Development,Sharing Fence With The Popular Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Chevron +3512,4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3513,Luxury 5 Bedroom Fully Detached Duplex With Pool,Ikota Villa Estate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3514,Spacious 5 Bedroom Ensuite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3515,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3516,4 Bedroom Fully Castle Detached Duplex With Bq,"De Castle Max, Orchid Road Chevron Lekki Lagos",₦,"82,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3517,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3518,Tastefully Finished 4bedroom Terrace Duplex !!!,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3519,5 Bedroom Mansion With A Capacious Compound And A Large Swimming Pool.,Lekki County Home Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3520,Lovely 5 Bedroom Duplex With Pool,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3521,Newly Built 2 Bedroom Ensuite Fla,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +3522,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,0 baths,4 Toilets,Ikate +3523,Beautifully Finished 4 Bedroom Terrace Duplex,Ilason Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +3524,4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +3525,Lekki Luxury Terraces,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikota +3526,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3527,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3528,4bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +3529,Emcel Court 4,Orchid Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +3530,Serviced 4bedroom Terrace Duplex With A Room Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +3531,Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3532,Newly Built 5bedrooms Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +3533,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +3534,Dry Land Measuring 1000sqm Landsize For Sale!!!,"Orange Island, Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +3535,Gated Estate Land In Lekki On The Popular Orchid Hotel Road Suitable For Residential And Commercial Use,Lekki Second Toll Gate After Orchid Hotel Road. 10 Mins From Lekki Phase 1 Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +3536,Brand New 5 Bedrooms Fully Detached With Bq,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3537,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3538,Brand New Spacious 2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3539,Exquisite 5 Bedrooms Detached Duplex With Bq,Osapa Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3540,Luxury 4 Bedroom Semi Duplex With Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3541,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3542,Beautiful 4 Bedroom Ensuite Terrace House,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3543,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3544,Lovely 4bedroom House At Ologolo Lekki,Ologolo Lekki Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +3545,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +3546,Massive Brand New 5bedroom Fully Detached House With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"17,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3547,Exquisite 2bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3548,Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3549,Spacious 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3550,Spacious Newly Built 5 Bedroom Ensuite Terrace Houses,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +3551,5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +3552,Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3553,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +3554,"2 Bedroom Apartment, Elevator, Swimming Pool",Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +3555,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +3556,Exclusive 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets,Chevron +3557,Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3558,Luxury Contemporary 5 Bedroom Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +3559,6 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3560,Newly Built 3 Bedrooms Terrance Plus Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3561,Brand New Listing ??????well Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +3562,Tastefully Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +3563,Spacious 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +3564,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3565,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3566,Spacious 5 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3567,5bedroom Fully Detached Duplex With A Bq,Chevy View Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3568,5 Bedroom Fully Detached,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +3569,1200 Sqm Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 2 +3570,A Brand Newly Built & Tastefully Finished Luxury 2bedroom Flat For Sale!!!,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +3571,Newly Built 6 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +3572,Brand New 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3573,2 Bedroom Apartments,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3574,Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3575,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3576,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3577,Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3578,Spacious 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3579,Relatively New & Tastefully Finished Luxury 5 Bedroom Fully Detached Duplex + 2 Units Of 3 Bedroom Flats For Sale!!!,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +3580,4bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +3581,Newly Built 4bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +3582,Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3583,Spacious 4 Bedroom Detached Duplex With Bq,"Osapa Axis, Ologolo Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3584,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3585,Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +3586,4bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3587,Brand New 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Jakande Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3588,Exquisite 3 Bedroom Penthouse With Bq In A Serene Environment,Camberwall Advantage Phase 4 Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds, baths, Toilets,Lekki Phase 1 +3589,Land,Chevron Drive/madison Gardens Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3590,Exquisite 3 Bedroom Penthouse With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +3591,Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3592,Serviced 2 Bedrooms Flat,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3593,5 Bedroom Detached House,Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3594,Spacious 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3595,Unit Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3596,Unit Of 2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3597,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3598,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +3599,5bedroom Detached Duplex,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3600,Brand New 4bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +3601,Unit Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3602,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +3603,Luxury 5 Bedroom Fully Detached Duplex+ A Room Bq On 600sqm Landsize For Sale!!!,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +3604,Spacious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3605,4bedroom Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +3606,A Newly Built & Tastefully Finished Luxury 2units Of 4bedroom Terrace Duplex+ A Room Bq Each For Sale!!!,"Off Admiralty Road, Lekki Phase Estate Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +3607,Stylishly Designed 5 Bedroom Duplex With Penthouse,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +3608,Contemporary 4 Bedroom Semi Detached Duplex,Orchid Road By Eleganza Bus Stop Chevron Lekki Lagos,₦,"78,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3609,Fully Furnished Two Bedroom House,Olusola Harris Way Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3610,Spacious 5 Bedroom Duplex,Chevron Estate Chevron Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3611,Well Maintained 4 Bedroom Semi Detached Duplex With A Bq.,"Canal West Estate, Osapa London, Lekki Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3612,Luxury 5 Bedroom Detached Duplex,Osapa London Fully Serviced And We'll Secured Estate Shoprite Osapa London Lekki Lagos,₦,"420,000,000",1,0,0,5 beds,0 baths,0 Toilets,Osapa London +3613,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3614,4bedroom Fully Detached Duplex,Located In A Safe And Secure Environment Ikota Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikota +3615,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikate +3616,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"265,000,000",1,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +3617,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ologolo +3618,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,0,0,5 beds,0 baths,0 Toilets,Chevron +3619,"Land Measuring 1,850m²","Pinnock Beach Estate, Waterfront, Osapa London Lekki Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,Osapa London +3620,Luxury 5bedroom Apartment With Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +3621,Tastefully 4bedroom Duplex,Located At Orchid Hotel Road By Chevron Round About. Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3622,Massive 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3623,Luxury 2 Bedroom Apartment,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +3624,Luxury 3 Bedroom Apartment,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3625,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3626,3 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +3627,4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +3628,4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +3629,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +3630,3 Bedroom Terrace Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +3631,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3632,Fully Serviced 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3633,Spacious 3 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +3634,Fully Serviced 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +3635,Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3636,Elegant 4 Bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3637,Land,"Elwgushi,off Kunsela Road, Sea Gate Estate Ikate Lekki Lagos",₦,"2,195,800",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3638,Luxury 5 Bedroom Detached Terrace,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3639,Parcel Of Land Measuring 10000m2,Ilasan Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3640,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +3641,Land,Inside Vgc Estate.. Vgc Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3642,5 Bedroom Detached House,"Megamound Estate, Lekki Counnty Homes. Ikota Lekki Lagos",₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +3643,5bedroom Fully Detached Duplex,Inside Vgc Estate. Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +3644,Joint Venture Land,"Chevyview Estate, Chevron Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Chevron +3645,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +3646,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikate +3647,Newly Built 4 Bedroom Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +3648,Newly Built 4bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +3649,4 Bedroom Semi Detached Duplex,Beautiful Semi Detached Duplex In A Prime Location Ologolo Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ologolo +3650,Lovely Unit Of 2 Bedroom Apartments,Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3651,4bedroom Semi Detached Duplex,Inside Vgc Estate Vgc Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,10 Toilets,Victoria Garden City +3652,A Massive Office Complex/space,Igbo Efon Lekki Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,6 Toilets,Other Lekki +3653,5bedroom Spacious Fully Detached,Lekki County Homes. Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +3654,5bedroom Fully Detached Duplex,Lekki County Homes. Ikota Lekki Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +3655,4bedroom Spacious Terrace Duplex,Salem Axis Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +3656,5bedroom Semi Detached Duplex,Lekki County Homes. Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +3657,Contemporary 5 Bedroom Detached House,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3658,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +3659,5 Bedroom Semi Detached,Orchid Road Chevron Toll Gate Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +3660,5 Bedroom Semi Detached,Orchid Road Chevron Toll Gate Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +3661,Land,Peanock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Osapa London +3662,Luxury 2 Bedroom Flat,In A Secured Estate Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets,Osapa London +3663,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +3664,Luxurious 5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3665,Newly Built 4 Bedroom Duplex,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3666,Land,Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3667,Land,Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3668,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"144,000,000",0,0,0,5 beds,6 baths,0 Toilets,Osapa London +3669,Finished 5 Bedroom Duplex,Gated Estate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3670,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3671,Newly Built 4 Bedroom Detached House,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3672,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +3673,Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3674,Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +3675,3 Bedroom Apartment With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3676,Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3677,Fully Detached 5 Bedroom House With 1 Room Bq;,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +3678,4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3679,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3680,Nicely Built 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3681,Newly Built Luxury Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets,Chevron +3682,Nicely Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3683,Spacious 4 Semi Detached Bedroom With Fully Fitted Kitchen,Lekki Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3684,Brand New Super Luxury 2 & 3 Bedroom Block Of Flats With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"67,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +3685,Newly Built 1 Bedroom Masionette,Ikate Lekki Lagos,₦,"43,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +3686,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3687,Tastefully Finished 5 Bedroom Detached,Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +3688,4 Bedroom Terrace Duplex,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3689,4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3690,Premium 2 Bedroom House In A Gated Community,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +3691,Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3692,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +3693,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3694,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikota +3695,"Commercial Storey Building On 900m² Land (suitable For Eatery, Hospital, Etc.)","Directly Facing Orchid Road, Lekki Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +3696,Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3697,Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3698,3 Bedroom Flat,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +3699,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3700,Newly Built 3 Bedroom Masionette,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +3701,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Rd Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3702,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3703,Newly Built 3 Bedroom Masionette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +3704,Affordable 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3705,Nicely Built 4 Bedrooms Terrace With Bq;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3706,Newly Built 2 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3707,Newly Built 4 Bedroom Semi Detached With Swimming Pool & Bq,Ologolo Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +3708,Newly Built 3 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3709,Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,5 Toilets,Other Lekki +3710,Standard 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +3711,5 Bedroom Fully Detached Duplex,Shoprite Jakande Oriental Hotel Vi Osapa London Lekki Lagos,₦,"125,000,000",1,0,0,5 beds,0 baths,0 Toilets,Osapa London +3712,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3713,Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3714,Beautiful 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3715,Beautiful Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3716,Decently Finished 4 Bedroom Fully Detached Magnificent Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3717,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3718,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3719,Newly Built 4 Bedroom Terrace Duplex,Behind Enyo Filling Station Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +3720,Italian Built 4 Bedroom Terrace Duplex With Open Garden On Top,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +3721,Nicely Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3722,Land,Behind Romay Garden Estate Ilasan Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3723,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3724,Well Finished 4 Bedroom Detached House With Swimming Pool;,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +3725,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3726,Land,Creek Haven Estate Vgc Lekki Lagos,₦,"92,000,000",1,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +3727,Fully Furnished 5 Bedroom Semi Detached Duplex,Osapa Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +3728,6 Bedroom Detached Mansion With Cinema,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +3729,Value Centric 4 Bed Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +3730,Excellent Brand New Super Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3731,Newly Built 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Agungi +3732,Newly Built 4 Bedroom Semi Detached House,Lekki Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,3 baths,5 Toilets,Agungi +3733,Nicely Built 2 Bedroom Flat;,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +3734,Affordable 5 Bedroom Detached Duplex With Excellent Finishing,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3735,Nicely Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3736,Contemporary Luxury Home,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +3737,5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3738,Newly Built 4 Bedroom Terrace Duplex With Bq;,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3739,Finished 8 Units Of Serviced 4 Bedroom Terrace Duplex,"Elf Busstop, Lekki Right, Lekki Lagos",₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3740,Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3741,Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Megamond Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3742,Brand New Excellent Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3743,Brand New Massive Super 3 Bedroom Block Of Flats With Swimming Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +3744,Newly Built 4bedrooms Terrace + 1 Room Bq,Lekki Right By Elf Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3745,Elegant Tastefully Massive Newly Built 4 Bedroom Semi Detached House With Bq For Sale,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3746,Luxury 2 Bedroom Block Of Flats,Chevron Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3747,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3748,Spacious 4 Bedroom Terrace With Quality Interior,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3749,Excellent Prime Plot Of Land Measuring 913sqms With Global Cofo,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +3750,Nicely Built 4 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3751,Lovely Super Luxury Brand New Serviced 3 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +3752,Nicely Built 4 Bedroom Terrace,Lekki Right. Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3753,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets,Ikate +3754,Decently Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +3755,Furnished 4 Bedroom Detached Duplex With Ample Shaded Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +3756,5 Bedroom Semi Detached Duplex With 2 Rooms Bq;,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3757,Luxury And Serviced 2 Bedroom Flat,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3758,5 Bedroom Fully Detached Duplex With Swimming Pool;,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3759,Contemporary & Serviced 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3760,Fully Furnished 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +3761,4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +3762,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3763,Brand New 4 Bedroom Fully Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3764,Magnificent 5 Bedroom Detached Home,Orchid Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3765,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3766,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3767,5bedrooms Semi Detached Duplex +2rooms Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3768,Exquisitely Finished 5 Bedroom Detached House (video Available On Request),Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3769,Brand New 5 Bedroom Detached Duplex With A Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3770,Newly Built 5 Bedroom Fully Detached Duplex With Cinema & Swimming Pool;,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3771,Nice Prime Plot Of Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +3772,A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3773,"Exotic, Brand New 4 Bedroom Semi Detached Duplex",Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +3774,4 Bedrooms Detached House With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3775,Newly Built 4 Bedroom Semi Detached Duplex With Bq,In A Serene Estate Neighborhood Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3776,Affordable 4 Bedroom Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3777,Brand New And Very Spacious 4 Bedroom Fully Detached Duplex With Bq,Within An Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3778,Decently Built Beautiful Massionette,Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Chevron +3779,5 Bedroom Duplex With A Cinema And Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +3780,Excellent Super Luxury Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Ospapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3781,Tastefully Built 5 Bedroom Detached Duplex,Megamond Ikota Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3782,Land,Lekki Pride Estate Phase Ii Lekki Lagos,₦,"40,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3783,Magnificent Masterpiece,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +3784,Lovely And Spacious 4 Bedroom Semi Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +3785,Massive 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3786,Brand New Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3787,5 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3788,Luxury 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3789,2 Bedroom Apartment For Sale,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +3790,A Classic Newly Built 2 Unit Of 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3791,Luxuriously Finished And Spacious 5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikate +3792,Spacious 4 Bedroom Terraced Duplex With Ample Parking Space,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +3793,4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikate +3794,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +3795,Beautiful 4 Bedroom Semi Detached Duplex With 1 Room Bq, Ikota Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +3796,Luxury 4 Bedroom Semi Detached Duplex With Excellent Finishing,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3797,Newly Built 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +3798,4 Bedroom Terrace Duplex With Bq," Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3799,Extraordinary Standard 5 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3800,Fully Finished 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3801,Well Finished And Spacious 5 Bedroom Detached House With Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3802,Exquisitely Finished 5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3803,Newly Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +3804,Newly Built Luxury 3 Bedroom Penthouse With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +3805,Nicely Built 4 Bed Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3806,Brand New Spacious Luxury 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3807,Massive 5 Bedroom Detached Duplex With Elevator + Swimming Pool,Cowrie Creek Estate Ikate Lekki Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3808,Luxuriously Finished 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +3809,Nicely Built 4 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +3810,Newly Built Contemporary 5 Bedroom Detached Duplex With Bq,Royal Gardens Estate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3811,Brand New Classic 3 Bedroom Block Of Flat With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +3812,4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3813,Tastefully Built 4 Bedroom Semi Detached With Bq,Second Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3814,Newly Built 4 Bedroom Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3815,Acres Of Land,"Chevron Drive, Lekki Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +3816,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",1,0,0,5 beds,0 baths,0 Toilets,Ologolo +3817,Furnished 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +3818,Beautiful 4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3819,Luxury 5 Bedroom Detached Duplex With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +3820,Brand New And Luxury 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +3821,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +3822,Spacious 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3823,3 Bedroom Maissionette,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +3824,Newly Built 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3825,Contemporary 5 Bedroom Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +3826,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3827,Newly Built 4 Bedroom Semi Detached Duplex,Spar Road Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +3828,4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +3829,Well Built 5 Bedroom Detached Home With Pool, Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +3830,Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3831,Newly Built And Tastefully Finished 4units 5bedroom Plus Bq In A Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3832,Premium 4 Bedroom Terraced Duplex With Ample Parking Space,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3833,Affordable 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +3834,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000/day",0,1,0,2 beds,2 baths,2 Toilets,Ikate +3835,Massive 6 Bedroom Detached Duplex With Swimming Pool In A Good Estate,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +3836,Tastefully Finished 5 Bedroom Detached House With Bq,Oral Estate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3837,Newly Built 6 Bedroom Detached House With A Private Cinema And A Pool,Ikate Ikate Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikate +3838,Newly Built 4 Bedroom Terraced Home,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +3839,Elegant 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +3840,Newly Built 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3841,4 Bedroom Terraces Castle Duplex With Bq,De Castle Max Normal Finishing Along Orchid Road Lekki Express Way Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +3842,Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +3843,Luxury 5 Bedroom Detached House And Bq,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +3844,Newly Built 4 Bedroom Semi Detached House + 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3845,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3846,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3847,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +3848,Massive 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +3849,Land Measuring 608m²,"Creek Haven Estate Beside Vgc, Lekki Lagos",₦,"91,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +3850,Elegant Super Luxury 4 Bedroom Terrace Duplex With Swimming Pool And Bq,"Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3851,Brand New And Spacious 5 Bedroom Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +3852,4 Bedroom Terraced House+1 Rm Bq.,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3853,Newly Built 4 Bedrooms Terrace Duplex;,Orchid Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3854,540sqm Land With An Old Structure,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3855,Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +3856,Brand New 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +3857,Contemporary 5 Bedroom Detached House With Swimming Pool,Jakande Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3858,Brand New 4 Bedroom Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +3859,Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3860,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +3861,"Newly Built And Tastefully Finished Block Of 11nos Flat Consisting Of 7nos 3bedroom, 2nos 2bedroom & 2nos 1bedroom",Agungi Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Agungi +3862,Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +3863,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Whitesand Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3864,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3865,Contemporary 4 Bedroom Semi Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,5 Toilets,Ikota +3866,Luxury 2 Bedroom Apartment With Swimming Pool & Gym,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +3867,Affordable 5 Bedroom Detached Duplex With Good Finishing,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3868,4 Bedroom Detached House With All Rooms Ensuite,House 24 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3869,Newly Built 4bedrooms Terrace House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +3870,Brand New 5 Bedrooms Detached House With Boy's Quarter,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +3871,Newly Built 2 Bedroom Apartment,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3872,Luxurious 5 Bedroom House With A Swimming Pool,Lekki Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3873,Contemporary And Tastefully Finished 5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +3874,Nicely Built 2 Bedroom Flat;,Ilasan Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +3875,Beautiful Automated 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3876,Brand New Elegant Super Luxury 4 Bedroom Semi Detached Duplex,Conservation Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3877,Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +3878,Newly Built 2 Bedroom Apartment,Second Tollgate Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3879,Brand New Super Luxury Spacious 4 Bedroom Terraced House With Bq,Chevron Right Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3880,"Superb, Brand New 4 Bedroom Semi Detached House With Boy's Quarter",By Chevron Tollgate Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,5 baths,6 Toilets,Other Lekki +3881,Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +3882,Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Ikate Lekki Lagos,$,"1,800,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +3883,Luxuriously Finished 5 Bedroom Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +3884,Affordable 4 Bedroom Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +3885,Super Lovely Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3886,Newly Built 5bedrooms Detached House + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3887,Luxury 5 Bedroom Detached Duplex With Good Finishing,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3888,Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3889,Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Serviced Estate Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3890,Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3891,Newly Built 5 Bedroom Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3892,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +3893,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"97,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +3894,Land Measuring 500m²,"Arcadia Groove Estate, Jakande Lekki Lagos",₦,"175,000,000",0,0,0, beds, baths, Toilets,Other Lekki +3895,Serviced 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3896,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +3897,Beautiful 5 Bedroom Semi Detached Duplex With Bq,"Vgc Extension, Serene Estate Neighborhood Vgc Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +3898,5 Bedrooms Fully Detached Detached Duplex With Bq And Pool,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3899,Newly Built 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3900,Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +3901,Top Notch Newly Built Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3902,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +3903,A 2704.351 Sqm Land Suitable For Commercial Purpose,"By Lakeview Estate Opposite Ikota Shopping Complex, Lekki Lagos",₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +3904,Newly Built 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3905,Luxury 5 Bedroom Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +3906,Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +3907,Well Built 5 Bedroom Detached House On 350m²,Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3908,A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3909,Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq On 2 Floors (ground Floor+ 2 Floors),Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3910,Tastefully Finished 5bedroom Fully Detached Duplex Plus A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3911,Newly Built 3 Bedroom Flat Apartment,Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Lekki +3912,Tastefully Finished And Spacious 5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +3913,Elegant 5 Bedroom Detached Duplex With Bq;,Victoria Island Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3914,Newly Built 4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3915,5 Bedroom Detached Duplex With 2 Rooms Bq,Ilasan Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3916,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Lekki County Homes Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3917,6 Bedroom Fully Detached House With 1 Room Bq,"Western Foreshore Estate, Behind Circle Mall, Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +3918,4 Bedroom Terraces Castle Duplex With Bq,De Castle Max Royal Finish Along Orchid Road Lekki Express Way Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,8 baths,8 Toilets,Other Lekki +3919,Newly Built 5 Bedroom Detached Duplex With Good Finishing,Bakare Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3920,7 Bedroom Detached House + 2 Rooms Servant Quarters,"Nicon Town Estate, Ilasan Lekki Lagos",₦,"380,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +3921,Elegant Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3922,Brand New 4 Bedroom Flat,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +3923,Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3924,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +3925,Luxury 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3926,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +3927,Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3928,Tastefully Finished 2 Bedroom Flat,Idado Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3929,Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +3930,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3931,Serviced 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3932,Well Finished 5 Bedroom Detached House,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3933,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +3934,Nicely Built 6 Bedroom Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +3935,Land,"Pinnock Beach Estate, Osapa London, Lekki Lagos Osapa London Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +3936,Brand New Spacious Luxury 5 Bedroom Fully Detached Duplex With Bq,Cheveron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +3937,Luxury 5 Bedroom Detached House With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +3938,4 Bedroom Terrace Duplex,Lekki Conserve Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +3939,Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekky County Estate, In A Serene Neighborhood Ikota Lekki Lagos",₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3940,Nicely Built 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3941,Newly Built 3 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +3942,4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3943,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Platinum Way Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3944,Newly Built Elegant Spacious 2 Bedroom Block Of Flats,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +3945,Newly Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +3946,Massively Built Super Spacious Elegant Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +3947,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Orchid Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3948,Nicely Built 2 Bedroom Terrace House,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +3949,Land,"Fairmont Garden, Lekki Scheme 2 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +3950,Tastefully Finished 5 Bedroom Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +3951,Galant 5 Bedroom Fully Detached Duplex In A Gated Estate, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds, baths, Toilets,Ikota +3952,Newly Built Luxury 4 Bedroom Masionette With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +3953,Newly Built 3 Bedroom Terrace Duplex With Bq,Orchid Rd Chevron Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +3954,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +3955,Newly Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +3956,Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3957,Super Luxury 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3958,Brand New And Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +3959,Affordable Luxury Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +3960,Newly Built 4bedrooms Terrace Duplex,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +3961,Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +3962,4 Bedroom Detached House,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +3963,6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool;,Victory Park Estate Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +3964,Exquisite 2 Bedroom Massionnette.,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +3965,Luxury Built 4 Bedroom Semi Detached Duplex With 2rooms Bq On 395m² Land,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3966,4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +3967,"Land Measuring 2,550m² (4 Plots @ 90m/plot)","Orchid Road Before The Roundabout, Directly Facing Omega One Plaza, Lekki Lagos",₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Lekki +3968,Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3969,Ultra Modern Spacious 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Close To Vgc Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +3970,Newly Built 4 Bedroom Detached Duplex With Bq In A Serene Estate,Agungi Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +3971,Brand New And Spacious 5 Bedroom Detached House With Boys Quarter,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +3972,Newly Built & Serviced 2bedrooms Flat,Enyo Area Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +3973,Tastefully Finished 5bedroom Fully Detached Duplex,"Giwa Street, Oba Amusan Estate Agungi Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +3974,Brand New Super Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3975,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,0,0,5 beds,0 baths,0 Toilets,Chevron +3976,Nicely Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3977,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +3978,Newly Built 2 Bedroom Apartment,Igbo Efon Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +3979,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"430,000,000",1,0,0,5 beds,0 baths,0 Toilets,Osapa London +3980,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +3981,4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +3982,Luxury 4 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +3983,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ologolo +3984,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +3985,New Superb 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +3986,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +3987,Luxury 1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +3988,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3989,Super Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +3990,Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +3991,Well Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +3992,Luxury 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +3993,Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +3994,Luxury 4 Bedroom Semi Detached Duplex,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +3995,Newly Built 5 Bedroom Detached Duplex With Excellent Finishing,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +3996,Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +3997,Well Finished 5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +3998,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +3999,Tastefully Built 5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4000,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4001,Modern 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4002,Newly Built Super Lavishly Luxury 4 Bedroom Semi Detached House With Bq For Sale,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4003,Lavishly Brand New Massive 5 Bedroom Fully Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4004,Tastefully Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4005,Newly Built 5 Bedroom Detached Luxury House;,Lekky County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4006,Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4007,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4008,4 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4009,Newly Built 4 Bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"84,100,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4010,"Newly Built, Exquisite 4 Bedroom Semi Detached Duplex With Bq",Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +4011,Nicely Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4012,Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4013,Nicely Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4014,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4015,Newly Built Executive Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4016,Newly Built 5 Bedroom Fully Detached House,Ologolo Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ologolo +4017,6 Bedroom Fully Detached Duplex With Automated Options,Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4018,Newly Built 2 Bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +4019,4 Bedroom Fully Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"82,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Lekki +4020,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4021,Luxury 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4022,Nicely Built 2 Bedroom Apartments;,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +4023,Well Finished 5 Bedroom Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4024,Luxury 5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4025,Automated 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4026,Newly Built 4 Bedroom Terrace Duplex,Off Spar Road Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4027,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4028,5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4029,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4030,Well Built 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +4031,Affordable 4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4032,Luxury And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +4033,Luxury Brand New 5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4034,Luxury 5bedrooms Detached House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4035,Newly Built 4bedrooms Terrace + 1 Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4036,4 Bedroom Townhouse With A Bq & Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4037,Admiralty Pearl Terrace Duplex Available,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +4038,Premium 5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4039,Nicely Built 3 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4040,Brand New 4 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4041,Fully Furnished 4 Bedroom Semi Detached House With Quality Interior,Lekki Chevron Lekki Lagos,₦,"75,000,000",1,0,1,3 beds,4 baths,5 Toilets,Chevron +4042,Well Designed 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4043,Nicely Built 4 Bedroom Terrace House,Lekki Right. Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4044,Affordable Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +4045,Architectural Masterpiece. Beautifully Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema, Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4046,Very Beautiful And Spacious Terrace,Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Lekki +4047,Newly Built 3 Bedrooms Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4048,Beautiful 4 Bedroom Terrace Duplex With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4049,Luxury 2 Bedroom Apartment With Excellent Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +4050,Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +4051,A Block Of 6 Flats,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4052,Newly Built 4bedrooms Detached Duplex + 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4053,Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4054,5bedrooms Detached Duplex + 1 Room Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4055,Luxury 5 Bedroom Penthouse With A Swimming Pool,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4056,Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4057,Luxury 5bedrooms House + 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4058,Contemporarily Designed 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4059,Serviced 4bedrooms Duplex + 1 Room Bq,Off Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4060,Brand New 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4061,Luxuriously Finished 5 Bedroom Detached House With Swimming Pool,Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +4062,Newly Built 4 Bedroom Semi Detached Duplex With Ample Parking Space,Chevron Lekki Lagos,₦,"84,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4063,Brand New 4 Bedroom Terrace With A Bq,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +4064,Spacious 6 Bedroom Detached House With Great Frontage,Nicon Town Estate Ikate Lekki Lagos,₦,"11,000,000/year",0,0,0,6 beds,6 baths,7 Toilets,Ikate +4065,Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4066,Luxury 5 Bedroom Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4067,Newly 4 Bedrooms Fully Detached Duplex + Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4068,Elegantly Built Super Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Ajah Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4069,Luxury 4 Bedroom Maisonette In A Strategic Location,Ikate Lekki Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +4070,Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool +gym + Cinema,Osapa London Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +4071,Brand New And Serviced 3 Bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +4072,Beautiful 4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +4073,Land,The Pearl Estate With Lagos State Approved Excision Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4074,Newly Built Spacious 5 Bedroom Fully Detached Duplex,"...,. Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +4075,Tastefully/ Masterfully Finished 7 Bedroom House,Nicon Town Estate Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4076,Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4077,Newly Built 3 Bedroom Semi Detached Duplex In A Strategic Location,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +4078,Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4079,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +4080,Land Measuring 851m²,"Cowrie Creek Estate, Zone E, Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4081,5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4082,Contemporary 4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4083,Newly Built Spacious 10 Units Of 3 Bedroom Terrace House,Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +4084,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4085,5 Bedroom Fully Detached Duplex,Megamound Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +4086,Affordable 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4087,Brand New Exclusive 2 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,4 Toilets,Ikota +4088,Serviced 3bedrooms Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +4089,Spacious 4 Bedroom Terrace Duplex With A Fitted Kitchen,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4090,Exceptional Newly Built 5 Bedroom Detached Duplex With Boy's Quarter,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4091,Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4092,Newly Built And Furnished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,1, beds, baths, Toilets,Chevron +4093,Brand New Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4094,Nice Prime Plot Of Land Measuring 500sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"83,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4095,Upscale 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +4096,Decently Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4097,5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4098,Luxury 5 Bedroom Fully Detached Duplex At Osapa London Lekki,Shoprite Oriental Hotel Osapa London Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4099,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4100,Brand New Lovely Spacious 4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4101,Newly Built 5bedrooms Detached House + 1 Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4102,4 Bedroom Terrace Duplex;,Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4103,Lovely Classic 4 Bedroom Terrace Duplex With Swimming,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4104,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4105,Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4106,Spacious 3 Bedroom Apartment With Ample Parking Space,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +4107,Newly Built 5 Bedroom Detached Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4108,Newly Built 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4109,Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4110,Lovely Prime Serviced Plot Of Land Measuring 600sqm With C Of O,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"13,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4111,Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +4112,4 Bedroom Semi Detached Duplex,"...,. Idado Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +4113,Newly Built 3bedrooms Flat + 1 Room Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4114,Land Measuring 650m²,"Orange Island, Block 18, Lekki Lagos",₦,"140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +4115,Beautiful 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +4116,Newly Built 4 Bedroom Terrace Duplex With Good Finishing,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4117,Tastefully Finished 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +4118,2 Bedroom Apartment,Olu Akinbola Avenue Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +4119,Tastefully Finished 5 Bedroom Detached House With Swimming Pool,Pinnock Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +4120,Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4121,Brand New And Luxury 4 Bedroom Detached House With Boys Quarter,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4122,5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4123,Fantastic 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +4124,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4125,Spacious Well Built 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +4126,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +4127,Tastefully Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4128,6 Bedroom Detached Duplex,"...,. Osapa London Lekki Lagos",₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +4129,3bedrooms Flat + 1 Room Bq,Shoprite Road Osapa London Lekki Lagos,₦,"62,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +4130,Tastefully Built 4 Bedroom Semi Detached Duplex;,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4131,Newly Built And Tastefully Finished 4bedroom Semi Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4132,Spacious 5 Detached Duplex Home With Ample Parking Space,Idado Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4133,Well Finished 5 Bedroom Detached Duplex With Bq (work In Progress),Lakeview Park Estate 1 Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,7 baths,8 Toilets,Victoria Garden City +4134,Luxury 5 Bedroom Detached Duplex With Swimming Area,Pinnock Beach Estate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4135,3 Bedroom Semi Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,5 Toilets,Ikota +4136,Beautiful 4 Bedroom Semi Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +4137,5 Bedroom Fully Detached Duplex With Open Terrace;,2nd Tollgate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4138,Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4139,Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4140,"Exquisite, Newly Built 4 Bedroom Semi Detached Duplex With Boy's Quarter",Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +4141,Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4142,Newly Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4143,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Victory Park Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4144,Nicely Built 2 Bedroom Flat;,Lekki Right. Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +4145,Upscale 4 Bedroom Terraced Duplex With Amazing Facilities,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4146,"Luxury, Brand New 5 Bedroom Detached Duplex",Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4147,Brand New Fully Serviced 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4148,2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +4149,Newly Built 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4150,Tastefully And Luxuriously Finished 5 Bedroom Detached House With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4151,Spacious 4 Bedroom Detached Duplex With Amazing Features,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4152,Luxury 3 Bedroom Apartment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +4153,Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4154,Serviced 3 Bedroom Flat With Bq,"Primewater Gardens, Ikate Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +4155,Massive New Elegant Luxury 5 Bedroom Fully Detached Duplex With Penthouse,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4156,Tastefully Finished And Luxury 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +4157,Brand New And Luxury 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4158,Corner Piece Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4159,4 Bedrooms Terrace House + 1 Room Bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4160,3 Bedroom Terraced House+1 Rm Bq.,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +4161,4 Bedroom Detached Duplex With Pool And Bq,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +4162,Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4163,Beautiful 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000/month",0,0,0,5 beds,0 baths,0 Toilets,Ikota +4164,4 Bedroom Semi Detached Duplex With Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4165,Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4166,Contemporary Luxury 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4167,Luxury 4 Bedroom Detached House With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,1 baths,5 Toilets,Lekki Phase 1 +4168,Spacious 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4169,2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Bear Victoria's Crest 5 & Casa Cubana, Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4170,Luxury 5 Bedroom Detached Duplex With Excellent Finishing,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4171,Beautiful 3 Bedroom Maisonette Apartment (with Payment Plan),"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4172,Luxuriously Finished 6 Bedroom Detached House With Pent House,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"140,000,000",0,1,0,6 beds,7 baths,8 Toilets,Ikota +4173,2 & 3 Bedroom Flats,Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +4174,Luxury 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Lekki Lekki Phase 1 Lekki Lagos,₦,"235,000,000",1,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +4175,Newly Built 4 Bedroom Terrace Duplex With Good Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4176,Land,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4177,Newly Built 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +4178,Tastefully Built 3 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4179,Lovely Spacious 4 Bedroom Semidetached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +4180,Luxury And Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4181,Nice Prime 2 Plots If Land Measuring 13000sqm With Gazette At Shapatti For Sale!!!,Chapatti Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4182,Nicely Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4183,5 Bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4184,Tastefully Finished 5 Bedroom Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +4185,Tastefully Finished 4 Bedroom Semi Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4186,Tastefully Finished 5 Bedroom Semi Detached House,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4187,Contemporary 5 Bedroom Detached Duplex,Chevron Tollgate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4188,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4189,4 Bedroom Fully Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +4190,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4191,Premium 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4192,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4193,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",1,0,0,4 beds,0 baths,0 Toilets,Osapa London +4194,Newly Built 4 Semi Detached Castle Duplex With Bq,Ikota Lekki Lagos,₦,"74,100,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4195,Newly Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"37,100,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +4196,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +4197,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +4198,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikota +4199,2 Bedroom Penthouse,Ikate Lekki Lagos,₦,"63,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4200,Plots Of Land,Nicon Town Estate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +4201,Newly Built 5 Bedroom Detached Luxury Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +4202,Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4203,5bedroom Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4204,Newly Built 3 Bedroom Apartment Penthouse,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4205,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4206,Newly Built 3 Bedroom Semi Detached,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +4207,Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4208,Nicely Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4209,Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4210,5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4211,A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4212,A 5bedrooms Semi Detached Duplex +bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4213,Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4214,Brand New 1 & 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4215,4 Bedroom Serviced Terrace With A Room Bq;,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +4216,Nicely Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +4217,4 Bedroom Semi Detached Duplex With Bq,De Castle Max By Orchid Road Chevron 2 Toll Gate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,8 Toilets,Other Lekki +4218,3 Bedroom Semi Detached Duplex,Dunvale V Residence Chevron Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +4219,3 Bedroom Terraces,"Dunvale V, Along The Orchid Road By Chevron Drive Chevron Lekki Lagos",₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +4220,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4221,Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4222,Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4223,Nicely Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4224,Newly Built 5 Bedroom Detached Duplex,Off Kunsela Road Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4225,Newly Built Super Executive Luxury 4 Bedroom Terrace House With Bq For Sale,Orchid Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4226,Newly Built 4 Bedrooms Semi Detached + 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4227,Newly Built 5 Bedroom Detached Duplex,Off Spar Road Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4228,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4229,4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4230,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4231,Varoius Prime Serviced Plots Of Land With C Of O For Sale At Genesis Court 1 Ajah,Badore Lekki Phase 2 Lekki Lagos,₦,"18,400,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +4232,Newly Built 3 Bedrooms Terrace Duplex;,Orchid Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +4233,Nicely Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +4234,Beautiful 3 Bedroom Maisonette Apartment (with Payment Plan),"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4235,Contemporary 5 Bedroom Detached Duplex With Bq,Royal Gardens Estate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4236,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4237,"5 Bedroom Full Detached Duplex With Swimming Pool, Gym And Bq;",Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +4238,5 Bedrooms Fully Detached Detached Duplex With And Swimming Pool,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4239,Newly Built 4 Bedroom Terrace Duplex Plus A Room Bq With Swimming And Roof Top Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4240,Nicely Built 4 Bedroom Maisonette House;,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4241,Nicely Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4242,Lovely Prime Plot Of Land Measuring 658sqm With Governors' Consent For Sale,Pearls Garden Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +4243,Beautiful 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4244,Strategically Located Plaza/ Open Plan Office Complex,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4245,Land,Ajah Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4246,Exquisitely Finished 5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4247,Luxury 5 Bedroom Fully Detached Duplex With A Bq;,Lekky County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4248,Newly Built 3 Bedroom Luxury Apartments With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4249,Brand New 5 Bedroom Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +4250,Spacious 5 Bedroom Semi Detached House With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +4251,Beautiful 5 Bed Detached Duplex With Pool,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +4252,A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4253,Lovely Prime Plot Of Land Measuring 1140sqm With C Of O,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4254,Brand New And Luxury 4 Bedroom Semi Detached Duplex With Boys Quarter,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4255,Brand New And Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4256,Premium 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4257,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4258,Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +4259,Beautiful Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4260,Fully Furnished 3 Bedroom Apartment;,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +4261,Luxury 4 Bedroom Terrace Duplex,Besides Victoria Garden City Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4262,Distinguished 4 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4263,Beautiful Spacious 2 Bedroom Apartment,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +4264,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4265,Newly Built 3 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4266,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4267,Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4268,Executive Brand New Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4269,Nicely Built 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +4270,Tastefully Built 4 Bedroom Semi Detached Duplex;,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4271,Serviced 3 Bedroom Apartment With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +4272,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +4273,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4274,Newly Built Luxury 5 Bed Detached House, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +4275,A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4276,A Bunch Of Greatness In 1 Building,Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,7 baths,7 Toilets,Other Lekki +4277,5 Bedroom Fully Detached Home,Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4278,Super Spacious 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4279,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4280,Luxury 5 Bedroom Detached Duplex With Swimming Pool In A Gated Estate,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +4281,Tastefully Finished 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4282,Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4283,Luxury 4 Bedroom House In A Gated Estate,Lekki Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikate +4284,"Brand New, Exotic 4 Bedroom Semi Detached Duplex",Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,6 Toilets,Ikota +4285,Brand New 5 Bedroom Detached Duplex With Boy's Quarter,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4286,Luxury Duplex In A Beautiful Gated Estate,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +4287,Exquisitely Finished 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4288,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +4289,Acres Of Land,"Osapa London, By Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4290,Tastefully Finished 4 Bedroom Semi Detached Duplex,Cowry Creek Estate Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths, Toilets,Other Lekki +4291,"Brand New, Luxury 4 Bedroom Semi Detached House With Boy's Quarter",Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4292,Beautiful 3 Bedroom Fully Serviced Apartment With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +4293,Newly Built 4 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4294,3 Bedroom Apartment,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +4295,Serviced 2 Bedroom Apartment With Furniture;,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +4296,4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4297,Fully Furnished 5 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"176,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4298,2 Bedroom Terrace Duplex In A Developed Area,Pantheon Smart Terrace Ikota Lekki Lekki Lagos,₦,"41,000,000",0,0,1,2 beds,2 baths,2 Toilets,Other Lekki +4299,Affordable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4300,Block Of 6 Flats That Comprises Of 4 Nos. 3 Bedroom Flats And 2 Nos. 2 Bedroom Flats Together,A Serene Mixed Environment Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4301,Newly Built 5 Bedrooms Detached Duplex In A Secured Neighbourhood,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +4302,Beautiful Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4303,Newly Built 4 Bedroom Semi Detached House With Quality Interior,Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,5 Toilets,Chevron +4304,3 Bedroom Penthouse,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +4305,Beautiful Contemporary 4 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4306,Land,Victory Park Estate Osapa London Osapa London Lekki Lagos,₦,"200,000,000",1,0,0,0 beds,0 baths,0 Toilets,Osapa London +4307,Luxury Contemporary 4 Bedroom Semi Detached Duplex,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4308,Fully Furnished 4 Bedroom Apartment With Excellent Facilities,Megamound Lekki Lagos,₦,"105,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +4309,Super Luxury Automated Home With Gym,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,7 Toilets,Other Lekki +4310,6units Of 4 Bedrooms Terraced Houses With 2 Rooms Bq (with Own Kitchen & Bathroom Toilet),Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4311,Luxury 2 Bedroom Apartment With Swimming Pool + Elevator,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4312,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +4313,Newly Built 4bedrooms Terrace House,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4314,4 Bedroom Maisonette Pent House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4315,Brand New Executive Massive Super Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4316,4bedroom Semi Detached Duplex + 1 Room Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +4317,Well Built And Spacious 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4318,4 Bedroom Semi Detached Duplex,Admiralty Pearl Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4319,Beautiful 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4320,4 Bedrooms Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4321,Luxury 2 Bedrooms Apartment;,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +4322,5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4323,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4324,Luxury 2 Bedroom Apartments;,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +4325,Brand New Massive Elegant Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4326,Affordable 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4327,Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4328,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +4329,Newly Built 3 Bedroom Detached Duplex In A Serene Neighbourhood,Chevron Lekki Lagos,₦,"2,600,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +4330,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4331,Luxury 4 Bedroom Detached House With Lovely Finishing,Lekki Agungi Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Agungi +4332,Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4333,5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +4334,Prestigious 6 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +4335,4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +4336,Fully Furnished 2 Bedroom Apartments,Chevron 2nd Toll Gate Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,1,2 beds,0 baths,0 Toilets,Ikota +4337,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4338,Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4339,Magnificent 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +4340,Beautiful 4 Bedroom Townhouse Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4341,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Lekki Lagos,₦,"520,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +4342,"Fenced & Gated Sandfilled Land Measuring 3,100m²","Coleman Nwafor Street Off Orchid Road, Lekki Lagos",₦,"325,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4343,Newly Built 5 Bedrooms With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +4344,Brand New And Lovely 4 Bedrooms Semi Detached House With Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4345,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq, Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +4346,Extraordinary Lovely 3 Bedroom Block Of Flats With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +4347,Serviced 4bedrooms Duplex + 1 Room Bq,Off Orchid Hotel Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4348,A Classic Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4349,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +4350,Luxury 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4351,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Vintage Park Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4352,Brand New 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4353,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Ikota +4354,4 Bedroom Terraced House,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +4355,Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4356,Bare Land,Nicon Town Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4357,The Best Luxury House On The Lekki Corridor,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +4358,Newly Built 3 Bedroom Semi Detached,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4359,Newly Built Furnished 1 Bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets,Ologolo +4360,Fantastic Fully Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4361,Luxurious 5 Bedroom Penthouse With A Swimming Pool And A Cinema,Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4362,A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4363,Newly Built 5 Bedroom Detached Duplex,Pantheon Smart Homes Ikota Lekki Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +4364,Fully Furnished 5 Bedroom Detached House With In House Swimming Pool,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +4365,"Want Space, Luxury, And Security ? This Is Your Best Shot",2nd Toll Gate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikota +4366,Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4367,Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4368,5 Bedroom Detached Duplex With A Bq And A Swimming Pool,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4369,Delightful Contemporary Luxury 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +4370,Serviced 4bedrooms Semi Detached Duplex + 1 Room Bq,2nd Toll Gate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4371,Brand New Elegant Super Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4372,Newly Built 4 Bedroom Detached House With Boys Quarter,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4373,Beautiful Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4374,2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4375,Nicely Built 4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +4376,Newly Built 5 Bedroom Detached Duplex,"2nd Tollgate, Lekki Lagos. Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4377,Newly Built Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +4378,4 Bedroom Detached Duplex + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4379,5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4380,5 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +4381,Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +4382,Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4383,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4384,Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Road 2nd Toll Gate Ikota Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4385,Premium 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4386,4 Bedroom Fully Detached Duplex With 3 Bedroom Guest Chalet Plus 3 Rooms Bq,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4387,Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4388,Elegantly Finished Automated 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4389,Super Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4390,Luxury Finished 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4391,Nice Prime Plot Of Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4392,Distress Sale; 2 Units Of 4 Bedroom Detached With Bq On Approximately 975m² Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +4393,Corner Piece Uncompleted 5 Bedroom Detached House With Bq.on 450sqm Land,"U3 Estate, Lekki Phase 1 Right Side, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4394,Fully Serviced 3 Bedroom Semi Detached Bungalow;,Awoyaya Lekki Lagos,₦,"21,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4395,4 Bedrooms Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +4396,Brand New And Luxury 5 Bedroom Detached House With Boys Quarter,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4397,5bedroom Fully Detached House With 2(no) Mini Flats As Servant Quarter,Carlton Gate Estate Chevron Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +4398,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Chevron +4399,"Gorgeous, 5 Bedroom Semi Detached Duplex;",Off Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4400,Newly Built 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Lekki Agungi Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4401,Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +4402,Newly Built 3 Bedroom Apartment,Second Tollgate Lekki Lagos,₦,"48,600,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +4403,Tastefully Finished And Furnished 5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +4404,Newly Built 4bedrooms Detached Duplex + 1 Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4405,Newly Built Exquisite 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +4406,Newly Built 3bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +4407,4 Bedroom Detached,Penthione Smart Homes Ikota Lekki Lagos,₦,"105,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +4408,Lovely 4 Bedroom Semi Detached Duplex In A Secure Estate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +4409,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4410,Stunning 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4411,Spacious 5 Bedroom Detached Duplex With Ample Parking Space,Vgc Lekki Lagos,₦,"5,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +4412,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4413,Beautifullly Built 4 Bedroom Terrace,Pantheon Terrace Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +4414,Brand New And Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikota +4415,Brand New And Luxury 4 Bedroom Semi Detached House With Boys Quarter,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4416,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,5 Toilets,Osapa London +4417,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4418,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4419,Newly Built Serviced 1 Bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 2 +4420,Classic 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4421,2 Units Of 5 Bedroom Fully Detached Duplex With Cinema And Swimming Pool .,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4422,Newly Built 6bedroom Detached Duplex,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +4423,Nicely Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4424,Newly Built Luxury 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4425,Nicely Built 2 Bedroom Flat,Ikate Right Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +4426,Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +4427,Tastefully Finished 5 Bedroom Detached,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4428,5 Bedroom Semi Detached Duplex With Swimming Pool And Bq;,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4429,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +4430,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4431,Affordable 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4432,Functional 80 Room Hotel On Almost 4000sqm,Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,1,0,10 beds, baths, Toilets,Lekki Phase 1 +4433,5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4434,Fully Serviced 3 Bedroom Fully Detached Bungalow;,Awoyaya Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4435,Lovely Brand New Elegant 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4436,Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4437,Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4438,Fully Furnished 5 Bedroom Detached Duplex;,Ajah Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +4439,Nicely Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4440,Luxury (smart House) 5 Bedroom Detached Duplex,Vintage Park Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4441,Beautiful Luxury 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +4442,Affordable 5 Bedroom Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +4443,Affordable Luxury 4 Bedroom Semi Detached Duplex In An Estate,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets,Ikota +4444,Newly Built 30 Units Of Terrace Duplex,Ikota By Mega Chicken Lekki Lagos Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4445,Newly Built Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4446,Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4447,Newly Built 3 Bedroom Masionette,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4448,Newly Built 4 Bedroom Masionette With Bq,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4449,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",1,0,0,4 beds,0 baths,0 Toilets,Osapa London +4450,Luxury 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4451,Tastefully Finished 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"128,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4452,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,6 baths,6 Toilets,Lekki Phase 1 +4453,Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4454,Units Of 4 Bedrooms Terraces With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4455,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4456,Newly Built 4 Bedroom Massionette,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4457,5 Bedroom Fully Detached Duplex,Well Spaced Nicely Finished Detached Duplex Chevron Lekki Lagos,₦,"120,000,000",1,0,0,5 beds,0 baths,0 Toilets,Chevron +4458,Brand New Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4459,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +4460,Newly Built 4 Semi Detached Duplex In A Serene Neighborhood,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4461,Nicely Built 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +4462,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4463,Brand New Massive Elegant 4 Bedroom Semi Detached House With Bq For Sale,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4464,6 Bedroom Fully Detached Duplex With Swimming Pool And 1 Room Bq,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +4465,Luxury 4 Bedroom Terrace With Beautiful Exterior,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4466,Newly Built 3 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4467,Newly Built 4 Bedroom Semi Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4468,Newly Built 2 Bedroom Terrace Duplex;,Ajah Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +4469,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4470,Prime Plot Of Land In A Secured Estate Measuring 188sqms With Global Cofo,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4471,Nicely Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4472,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +4473,Newly Built 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4474,Beautiful Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4475,4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4476,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +4477,Luxury 4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4478,Massively Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4479,Newly Built 4 Bedroom Terrace With Ample Parking Space,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,3 baths,5 Toilets,Lekki Phase 1 +4480,Nicely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4481,Lovely 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4482,Beautifully Finished 4 Bedroom Fully Detached Home, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4483,2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4484,Nicely Built Spacious 5 Bedroom Detached Duplex;,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +4485,Brand New And Luxury 4 Bedroom Semi Detached,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4486,Premium 4 Bedroom Terrace With Quality Interior,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4487,Exquisitely Finished 4 Bedroom Terrace Duplex With Bq/pool/gym Room,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +4488,5 Bedroom Detached Duplex With Excellent Facilities,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4489,Luxury Furnished Detached 6bedrooms + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,5 baths,5 Toilets,Lekki Phase 1 +4490,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4491,Brand New Excellent Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4492,Super Home,2nd Toll Gate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikota +4493,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4494,Nicely Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4495,Tastefully Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4496,Top Notched Finishing Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4497,Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4498,Newly Built 4 Bedroom Detached Duplex With Bq,Conservative Road Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4499,Brand New Super Luxury Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4500,4 Bedroom Maisonette Penthouse +bq,"Camberwall Advantage 3 & 4, Located At Kusenla Road, Off Gbangbala Street, Ikate, Off Freedom Way, Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,8 baths,8 Toilets,Other Lekki +4501,Land,Victoria Garden City Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +4502,Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4503,Land,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4504,Land,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4505,Superbly Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4506,5bedrooms Duplex + 1 Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4507,Beautiful Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Chevron +4508,Brand New Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4509,Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4510,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +4511,Tastefully Finished 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,7 Toilets,Ikate +4512,Affordable Luxury 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +4513,Lovely 2 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4514,Brand New 5 Bedroom Fully Detached House With A Bq;,Ajah Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4515,Newly Built 4 Bedroom Detached Duplex With Good Finishing,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4516,2 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +4517,Nicely Finished 4 Bedroom Semi Detached House,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4518,4 Bedroom Fully Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4519,Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +4520,Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4521,Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4522,Newly Built & Reasonably Priced 5 Bedroom Semi Detached House + 2rooms Bq @n280m,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4523,Newly Built 5 Bedroom Detached Duplex In A Serene Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4524,Newly Built 4bedroom Terrace,Orchid After 2nd Toll Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +4525,4bedrooms Luxury Terrace + 1 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4526,2bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +4527,Luxury 6 Bedroom Detached Duplex With Swimming Area,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",1,1,0,6 beds,6 baths,7 Toilets,Other Lekki +4528,Newly Built Luxury 4 Bedroom Terrace Duplex,Conservation Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4529,Tastefully Finished 4 Bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",1,0,0,4 beds, baths, Toilets,Other Lekki +4530,2 Bedroom Apartment With Swimming Pool,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +4531,Fully Furnished 3 Bedroom Home With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +4532,Luxury 5 Bedroom Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4533,Beautiful 4 Bedroom Semi Detached Duplex,Close To Vgc Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4534,Brand New And Luxuriously Finished 4 Bedroom Detached Duplex With Swimming Pool,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +4535,Luxury 5 Bedroom Detached House With Swimming Pool And Boys Quarter,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4536,Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +4537,4 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +4538,Newly Built 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4539,1307sqm Land,Ayodele Odubiyi Street Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4540,Newly Built 2 Bedroom Apartment,Chevron Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +4541,Newly Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4542,Spacious 4 Bedroom Semi Detached House,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4543,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +4544,Luxury 5bedrooms Detached House + 1 Room Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4545,Nicely Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4546,Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4547,Luxury 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4548,Nicely Built 4 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4549,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +4550,Brand New Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4551,Luxury 4 Bedroom Detached House With Boys Quarter,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +4552,Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +4553,Newly Built 5 Bedrooms Detached Duplex + 1 Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4554,Tastefully Built 5 Bedroom Detached Duplex With Swimming Pool;,Osapa Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4555,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +4556,Newly Built 5 Bedroom Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4557,Newly Built & Serviced 3 Bedrooms Flat,Off Kusenla Ikate Lekki Lagos,₦,"71,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4558,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4559,Spacious 4 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4560,Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4561,Luxury 2 Bedroom Apartment With Excellent Finishing,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4562,Alexa Automated 5 Bed Detached House With Swimming Pool And Cinema,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +4563,Well Built 4 Bedroom Detached House, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4564,Luxury Serviced 2 Bedroom Apartment With Bq,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +4565,Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4566,4 Bedroom Terrace Duplex,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4567,5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4568,Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4569,4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4570,Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4571,Super Luxury 2 Bedroom Terrace Duplex With Swimming Pool And Bq,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"44,900,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +4572,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4573,Affordable Luxury Beautiful Duplex In A Secure Estate,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +4574,Luxury 3 Bedroom Apartments;,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +4575,Decently Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekki County, Lekki Ikota Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4576,Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Osapa Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4577,Nicely Built 6 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,7 baths,8 Toilets,Osapa London +4578,400 Square Meter Of Land Available,Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +4579,Newly Built 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4580,Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4581,Luxury 2 Bedroom,Ikate Lekki Lagos,₦,"100,000/day",0,0,0,2 beds,0 baths,0 Toilets,Ikate +4582,Investor’s Delight 2 Bed Apartment. Suitable For Residents And Short Let Investors,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +4583,5 Acres(2 Hectares) Of Oceanview Land,Ilasan Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4584,Newly Built 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +4585,Well Built & Fully Furnished 4 Bedroom Detached House +2 Room Bq,Vgc Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4586,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4587,4 Bedroom Semi Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4588,Lovely 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4589,Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4590,Luxury 3 Bedroom Apartment With Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",1,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +4591,Luxury 3 Bedroom Apartment With Bq,Jakande Lekki Lagos,₦,"78,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +4592,Luxury 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +4593,Luxury 4 Bedroom Terrace Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4594,Newly Built 5 Bedroom Terrace Duplex With Fully Fitted Kitchen,Chevron Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4595,Luxury 4 Bedroom Contemporary Fully Detached Duplx With Bq, Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikota +4596,Nicely Built 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4597,Newly Built & Serviced 4bedrooms Terrace Duplex,Apple Wood Estate Behind Vgc Vgc Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4598,Serviced 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4599,Brand New 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4600,Tastefully And Luxuriously Finished 5 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4601,Beautiful Luxury Home With A Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +4602,"6 Units Of 4 Bedroom Terrace Duplexes & 6 Units Of 2 Bedroom Apartments Sitting On Land Measuring 3,150sqm",Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4603,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +4604,5 Bedroom Semi Detached Duplex In A Serviced Estate,Nike Art Gallery Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4605,Elegantly Massive Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4606,5bedrooms Detached Duplex + 1 Room Bq,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4607,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +4608,5 Bedroom Detached House + Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4609,Affordable Luxury Duplex In A Secure Estate,2nd Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4610,Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4611,Tastefully Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4612,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4613,4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4614,Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4615,Well Finished 5 Bedroom Detached House (smart Home) With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4616,Luxury 5 Bedroom Detached Duplex,Lakeview Phase 2 Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4617,Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4618,Luxury 5 Bedrooms Fully Detached Duplex;,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +4619,Luxury 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4620,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4621,Upscale 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4622,Contemporary 5 Bedroom Detached House With Swimming Pool And Bq,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +4623,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4624,Newly Built Beautiful 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +4625,Brand New 2 Bedroom Flat,"Spg Road Between Ologolo & Igbo Efon, Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +4626,Furnished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Chevron Lekki Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,5 Toilets,Chevron +4627,Land,Chevron 2nd Toll Gate Vgc Chevron Lekki Lagos,₦,"135,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +4628,Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Gated Estate Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4629,Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4630,Tastefully Finished 3 Bedroom Flat With Swimming Pool And Gym,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +4631,Furnished 2 Bedroom Apartment With Quality Interiors,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +4632,Brand New Massive Super Luxury 5 Bedroom Terrace Duplex With Bq For Sale,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4633,Luxury 5 Bedroom Detached House In A Gated Community,Lekki Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4634,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4635,Newly Built 4bedroom Semi Detached Duplex With Bq In A Mini Estate,By Vgc Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4636,Brand New 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4637,Magnificent Edifice On 800sqm,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,8 baths,8 Toilets,Osapa London +4638,Nicely Finished 5 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4639,Newly Built 5 Bedroom Detached Duplex In A Strategic Location,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +4640,Newly Built 6 Bedroom Detached Duplex,Estate Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets,Victoria Garden City +4641,Luxury 5 Bedroom Terrace Duplex With Ample Parking Space,Agungi Agungi Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +4642,5bedrooms Detached Duplex + 1 Room Bq,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4643,3 Bedroom Terraced House,Ilasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4644,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4645,Luxury 6bedrooms Detached House + 2rooms Bq,Megamound Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,5 baths,6 Toilets,Ikota +4646,A Classic Super Luxury Smart 5 Bedroom Fully Detached Mansion Duplex With Swimming Pool And 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4647,Beautifully Made,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4648,Fully Serviced Scandinavian Styled 2 Bedroom Apartment,"Scandic 2, Ilasan Lekki Lagos",$,"108,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +4649,6 Units Of 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4650,Premium 5 Bedroom Detached Duplex With Swimming Area,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +4651,Newly Built Lovely Spacious 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4652,6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +4653,5bedrooms Detached House + 1 Room Bq,By Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +4654,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +4655,Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Osapa Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4656,Luxury 5 Bedroom Detached Duplex With Quality Interior,Lekki Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4657,6 Bedroom Detached House+ 1 Room Bq,Northern Foreshore Estate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4658,Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +4659,Brand New 4 Bedroom Fully Serviced Terrace Duplex With Bq,Orchid Road Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4660,4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +4661,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4662,The White Beauty,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +4663,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4664,Newly Built 4bedrooms Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +4665,4bedrooms Terrace House + 1 Room Bq,Platinum Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4666,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4667,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +4668,Lovely 3 Bedroom Flat,Lekki Right. Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4669,Lovely And Spacious 5 Bedroom Detached Duplex With Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4670,Newly Built 4bedroom Terrace For Sale,Enyo Area Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +4671,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Estate. Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4672,Newly Built 5bedrooms Detached House + 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4673,Luxury Contemporary Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +4674,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4675,Luxury 2 Bedroom Flat With Ample Parking Space,Orchid Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +4676,Luxury 5bedrooms Detached House + 1 Room Bq,Buena Vista Estate Off Orchid Road Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4677,Luxury Spacious Brand New 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4678,Brand New 5 Bedroom Semi Detached House With A Room Staff Quarter,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4679,5 Bedroom Fully Furnished Detached With Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4680,Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4681,Newly Built 4 Bedroom Semi Detached Duplex With Good Finishing,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4682,Affordable 2 & 3 Bedroom Apartment In A Good Location,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4683,Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4684,Brand New And Luxury 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +4685,Newly Built 2 Bedroom Apartment With Fully Fitted Bath,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +4686,Very Spacious Well Built 5 Bedroom Detached House,Orchid Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Chevron +4687,Newly Built 4 Bedroom Detached Duplex With Good Finishing,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4688,Fully Fitted 4 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +4689,Brand New 3 Bedroom Terraced Duplex With Bq,Ajah Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Lekki +4690,5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4691,5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +4692,4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4693,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4694,Tastefully Finished 5 Bedroom Detached House,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4695,5 Bedroom Fully Detached Contemporary House,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4696,Contemporary 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +4697,Luxuriously Finished 5 Bedroom Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4698,4 Bedrooms Semi Detached,Orchid Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4699,Luxury 5 Bedroom Fully Detached Duplex;,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +4700,3 Units Of 4 Bedroom Fully Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4701,Newly Built 4 Bedroom Detached Duplex With Good Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4702,5 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4703,Premium 5 Bedroom With Quality Interior And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4704,Beautifully Finished 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4705,"Brand New, Fully Serviced 7 Bedroom Detached House With 24hrs Power","Ocean Bay Estate By Orchid Road, Lekki Lagos",₦,"230,000,000",1,1,0,7 beds,7 baths,8 Toilets,Other Lekki +4706,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets,Ikate +4707,3 Bedroom Maisonette,"Dunvale V Residence, Along The Orchid Road By Chevron 2nd Toll Gate Chevron Lekki Lagos",₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +4708,Newly Built 3 Bedroom Masionette,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4709,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +4710,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4711,Newly Built 2 Bedroom Apartment In Serene Estate,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0, beds, baths, Toilets,Ologolo +4712,Newly Built 4 Bedroom Terrace Castle Duplex With Bq,Ikota Lekki Lagos,₦,"64,100,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4713,Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4714,Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +4715,Newly Built 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4716,Newly Built 5 Bedroom Semi Detached,Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +4717,4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +4718,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Lekki +4719,Elegant Brand New Luxury 5 Bedroom Fully Detached Duplex For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4720,Newly Built 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4721,Newly Built 4 Bedroom Apartments In A Serene Estate,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4722,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +4723,Newly Built Studio Apartment,Ikate Lekki Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +4724,Newly Built 2 Bedroom Masionette,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4725,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4726,Newly Built 3 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +4727,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,0 baths,0 Toilets,Osapa London +4728,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,0 baths,0 Toilets,Ikota +4729,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +4730,Beautiful 5 Bedroom Fully Detached Magnificent,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4731,5 Bedroom Detached Duplex With A Swimming Pool,Megamound Estate. Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4732,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +4733,Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4734,Classic 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4735,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4736,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4737,Affordable 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +4738,Nicely Built 5 Bedroom Detached House;,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4739,Nicely Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4740,Massively Built Super Elegant 4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4741,Tastefully Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4742,Tastefully Built 5 Bedroom Detached With Bq,Second Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4743,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +4744,Tastefully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4745,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4746,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +4747,Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4748,Brand New 3 Bedroom Flat With A Bq;,Lekki Right. Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +4749,Luxury 2 & 1 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4750,Fully Automated Well Built Home With Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +4751,Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4752,Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +4753,Nicely Built 4 Bedroom Semi Detached Duplex;,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +4754,Tastefully Built 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +4755,Massive 5 Bedroom Fully Detached Duplex;,Lakeview Estate By Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +4756,Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4757,Brand New Executive 4 Bedroom Terrace Duplex With Swimming Pool For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4758,4 Bedrooom Detached Duplex*,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4759,Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4760,Serviced 2 Bedroom Apartment*,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +4761,Fantastic 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +4762,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4763,Brand New And Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4764,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +4765,4 Bedroom Fully Detached Duplex,Agungi Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4766,Smart 4 Bedroom Semi Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4767,5bedroom Detached Duplex With Bq*,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4768,Premium 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4769,Premium 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4770,Newly Built 4 Bedroom Terrace Duplex,Off Whitesand School Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4771,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4772,Brand New Luxury 5 Bedroom Detached Home,Lekki County Estate Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4773,Land,"Along Awosedo Avenue/goshen Estate Road ,goshen Beach Estate, Ikate Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +4774,Terrace With Private Gate And Fence,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +4775,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4776,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4777,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4778,"A Prime Lovely 2 Plots Of Land Measuring 1,300sqm With Gazette For Sale At Shapatti",Shapatti Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4779,4 Bedroom Semi Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"72,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +4780,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4781,"5 Bedroom Detached Home With Swimming Pool, 2 Rooftop Terraces And Cinema",Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4782,Newly Built 4 Bedroom Semi Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +4783,Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +4784,Spacious 5 Bedroom Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +4785,4 Bedroom Fully Detached Duplex With Swimming Pool,Beside Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4786,3 Units Of 4 Bedroom Fully Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4787,Massively Built Super Spacious 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4788,5 Bedroom Detached Duplex With Bq On 675m²,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +4789,Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4790,Newly Built 3 Bedroom Flat With Fully Fitted Kitchen,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +4791,Newly Built 4 Bedroom Terrace Duplex,Orchid Rd Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4792,Spacious 3 Bedroom Apartment With 24 Hour Power Supply,Ikota Ikota Lekki Lagos,₦,"49,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikota +4793,Fully Automated Splendor 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +4794,Brand New 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4795,4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +4796,5 Bedroom Detached House With 2 Rooms Bq On 675m²,"Victoria Garden City, Road 3, Vgc Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +4797,Astonishingly 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4798,Newly Built 4 Bedroom Terraced Duplex With Ample Parking Space,Ologolo Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +4799,Nicely Built 4 Bedroom Semi Terrace Duplex,Osapa London Lekki Lagos,₦,"125,000,000",1,0,1,4 beds,4 baths,5 Toilets,Osapa London +4800,Exquisite 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4801,Contemporary 3 Bedroom Flat With Boys Quarter,Idado Lekki Lagos,₦,"57,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Lekki +4802,4bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4803,Luxury 5 Bedroom Semi Detached Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4804,Newly Built 4 Bedroom Terrace Duplex With Good Finishing,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +4805,5 Bedrooms Fully Detached Duplex With A Swimming Pool And A Bq;,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4806,5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4807,Beautifully Finished Fully Automated Contemporary 5 Bed Fully Detached Luxury Duplex ??,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +4808,Plot Of Land Measuring 400sqm,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4809,Brand New Massive Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4810,Luxury 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4811,Very Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4812,Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4813,Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +4814,Nicely Built 4 Bedroom Semi Detached,Second Tollgate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4815,Tastefully Finished 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +4816,4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4817,Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4818,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +4819,Contemporary 5 Bedroom Detached House,Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4820,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4821,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4822,500 Square Meter Of Land Available,Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +4823,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Pinnock Beach Estate Lekki Lagos,₦,"430,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4824,Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4825,Tastefully Finished 4 Bedroom Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4826,"Luxuriously Finished, Spacious And Fully Serviced 4 Bedroom Terrace House",Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +4827,Newly Built 4 Bedroom Semi Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4828,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +4829,Newly Built 4 Bedrooms Terraced Duplexes,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +4830,Contemporary 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +4831,Fully Detached 5 Bedroom House (carcass) With A Room Bq (shell Option),"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4832,6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool;,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +4833,Beautifully Crafted 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +4834,3 Bedroom Terraced House,Ilasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4835,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4836,Newly Built Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +4837,Exquisitely Designed 5 Bedroom Detached House With A Bq,"Lekki County Estate, Ikota Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4838,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +4839,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +4840,Luxury 4 Bedroom Terrace Duplex With Excellent Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4841,Super Beautiful Contemporary 5 Bed Detached Masterpiece,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Ikota +4842,3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +4843,4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4844,3bedrooms Terrace + 1 Room Bq For Sale (off Plan),Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"51,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +4845,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4846,Water Front House On About 2000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +4847,Newly Built 5 Bedroom Semi Detached Duplex In A Gated Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4848,Beautiful 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +4849,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +4850,4 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +4851,Automated Unconventional 4 Bed Luxury Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +4852,4 Bedroom Terraced Duplex,Orchid Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4853,Contemporary 5 Bedroom Detached House With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +4854,5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +4855,Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets,Ikota +4856,Premium 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4857,Well Finished 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4858,Spacious 4 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4859,Beautiful 4 Bedroom Fully Detached Duplex With Bq,In A Serene Gated Estate Neighborhood Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4860,Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4861,3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +4862,Beautiful Home,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths, Toilets,Ikota +4863,"Land Measuring 1,315m²","Directly On Osapa Road, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Osapa London +4864,Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +4865,"Land Measuring 2,400sqm","Abayomi Shonuga (central Business District Street), Lekki Phase 1 Lekki Lagos",₦,"760,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +4866,Block Of Flats Comprising 4 Units Of 3 Bedrooms Flats,"Directly Off Durosinmi Etti Street, Lekki Phase 1 Lekki Lagos",₦,"385,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4867,4 Bedroom Maisonette,Dunvale V Chevron Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +4868,Luxury 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4869,Newly Built 1 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +4870,Newly Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4871,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4872,Elegant 5 Bedroom Fully Detached Duplex With A Swimming Pool And A Bq;,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4873,4 Bedroom High Toned Luxury Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +4874,Newly Built Spacious Luxury 2 Bedroom Block Of Flats,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"34,500,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +4875,4 Bedroom Semi Detached Duplex,Behind Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4876,Lovely 2 Bedroom Flat;,Lekki Right. Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +4877,Well Built 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +4878,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4879,Exquisitely Finished & Fully Serviced 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4880,Tastefully Finished 4 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikota +4881,Contemporary 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +4882,Newly Built 1 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Other Lekki +4883,Massive Spacious Brand New 4 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4884,Exquisite Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Ikota +4885,Beautiful 4 Bedrooms Fully Detached Duplex,"...,. Lekki Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +4886,Superb Brand New 4 Bedroom Semi Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +4887,Lovely Prime Plot Of Land Measuring 578sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"93,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +4888,Excellently Built 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +4889,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",1,1,0,3 beds,6 baths,6 Toilets,Lekki Phase 1 +4890,20 Plots Of Land,Lekki Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4891,"A Building Consisting Of 4 Bedroom Duplex, 1 Unit Of 3bedroom & 1 Unit Of 2 Bedroom Flat","Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4892,Value Centric Affordable Luxury Terrace,Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +4893,Fully Finished Spacious 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4894,Affordable 4 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4895,Contemporary 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4896,Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4897,Luxury 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4898,Newly Built 3 Bedroom Terrace Massionette,Lekki Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +4899,Brand New 4 Bedroom Terrace Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4900,Luxury And Detached 4bedroom House + 1 Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +4901,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +4902,Luxury 4 Bedroom Detached Duplex In A Serene Neighbourhood,Chevron Chevron Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +4903,Nicely Built 5 Bedroom Detached House With Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4904,Ocean View Luxury Home,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +4905,Contemporary 4 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4906,5bedrooms Detached House + 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4907,Massive 6 Bedroom Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4908,Newly Built 7 Bedroom Duplex,Lekki Ikota Lekki Lagos,₦,"170,000,000",0,1,0,7 beds,7 baths,8 Toilets,Ikota +4909,3 Bedroom Apartment With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4910,Brand New And Luxury 4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4911,Newly Built 2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4912,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4913,Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +4914,Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4915,5bedrooms Detached House + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4916,"1,206m2 Fully Fenced Corner Piece Land","Atlantic Beach Estate, Off Alfa Beach Road, Opposite Chevron, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +4917,Elegant 5 Bedroom Detached Duplex With A Bq;,Royal Gardens Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4918,Distress Sales Alert: A Fully Furnished And Luxury 5bedroom Duplex On 450sqm (furniture & Generator Inclusive),"Victory Park Estate, Jakande Lekki Lagos",₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4919,"Exquisite 5 Bedroom Luxury Fully Detached House, With A Library, Cinema And A Swimming Pool.","Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +4920,Fully Serviced 4 Bedroom Terrace Duplex Olwith Nq,"Abiola Court, Ikate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +4921,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4922,Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +4923,Brand New Executive Luxury Water Feont 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4924,Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +4925,Ultra Modern 5 Bedroom Detached Duplex On 500m²,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4926,Luxury Brand New 5 Bedroom Detached House With Boy's Quarter,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4927,Tastefully Finished 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +4928,2 Bedroom Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4929,Serviced 2 Bedroom With Great Ambiance,Ikate Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +4930,Luxury 4 Bedroom Semi Detached House With Bq,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4931,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +4932,A Distinguished 4 Bedroom Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +4933,Newly Built 3 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +4934,Fitted 5 Bedrooms Detached Duplex With Ample Parking Space,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4935,Spacious 5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4936,Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4937,5bedroom Terrace House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4938,Fully Serviced Luxury Terraced Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +4939,Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4940,Luxuriously Finished 5 Bedrooms Detached House With Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +4941,Newly Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +4942,Contemporary 5 Bedroom Detached House.,"Orchid, Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +4943,A Top Notched Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4944,Land Measuring 400m²,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +4945,Newly Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +4946,Highly Improved And Fully Furnished 3 Bedroom Flat,Eko Atlantic City Lekki Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +4947,Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +4948,Brand New And Luxury 4 Bedroom Terrace House With Swimming Pool,By Chevron Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +4949,4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +4950,Brand New 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +4951,Upscale 4 Bedroom Duplex Penthouse,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4952,Beautiful 2 Bedroom Fully Serviced Apartment With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +4953,Beautiful 4 Bedroom Terrace Duplex In Good Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4954,Well Built 4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +4955,Newly Built 5 Bedroom Detached Duplex In A Secured Estate,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +4956,Luxury 4 Bedroom Terrace Duplex With Swimming Pool + Gym,Orchid Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4957,"Massive, Brand New And Superbly Finished 6 Bedroom Fully Detached Duplex With Boys Quarter",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,8 Toilets,Ikota +4958,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4959,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +4960,Luxuriously Finished 5 Bedroom Detached House With Bq,Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4961,Brand New 4 Bedroom Terrace With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4962,Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +4963,Luxury 3 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +4964,Beautifully Finished Fully Serviced Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +4965,Brand New And Luxury 4 Bedroom Terrace House With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,7 Toilets,Lekki Phase 1 +4966,Spacious 5 Bedroom Detached,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +4967,Contemporary And Luxury 5 Bedroom Detached House With Bq,Chevron Toll Gate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +4968,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +4969,Serviced 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +4970,Well Built Spacious 5 Bedroom Detached Duplex In An Estate, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +4971,Spaciously Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +4972,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4973,Decently Finished 4 Bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +4974,2 Wings Of 4 Bedroom Semi Detached Duplexes On 862m² Land ( Both Tenanted).,"Off Omorinre Johnson Street, Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +4975,Newly Built 2 Bedroom Flat With Ample Parking Space,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +4976,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +4977,Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +4978,Newly Built 4 Bedroom Semi Detached Duplex With Fully Fitted Kitchen,Vgc Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +4979,4 Bedroom Luxury Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +4980,Premium 5 Bedroom Detached Duplex With Ample Parking Space,Pinnock Beach Estate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +4981,Beautiful 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +4982,5 Bedroom Detached House + Bq,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +4983,Brand New Spacious Super Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +4984,Beautiful Ocean View Home With A Cinema And Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +4985,Beautiful 4 Bedroom Semi Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +4986,Newly Built 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +4987,Luxury 3 Bedroom Detached Duplex With Fully Fitted Bath,Lekki Chevron Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +4988,Beautiful 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4989,Luxury 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +4990,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +4991,Newly Built 4 Bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +4992,Newly Built & Fully Serviced 4 Bedroom Semi Detached Duplex,"Victoria's Crest 4, Orchid Road By 2nd Toll Gate, Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +4993,Decently Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +4994,"Luxury 6 Bedroom Detached House With Swimming Pool, Bq And Pent House",Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,6 beds,7 baths,8 Toilets,Osapa London +4995,Newly Built 3 Bedroom Flat With Ample Parking Space,Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +4996,Ultra Modern 5 Bedroom Detached Duplex,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +4997,4bedroom Semi Detached Duplex In A Mini Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +4998,Luxury 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +4999,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5000,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +5001,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +5002,Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5003,Bareland Measuring 950 Square Meters,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +5004,Finished 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5005,Beautiful 4 Bedroom Terrace Duplex In Good Location,"Freedom Way, Serene Neighborhood Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5006,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,"Idado Estate, Lekki Lagos. Idado Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5007,Tastefully Finished 5 Bedroom Fully Detached Duplex In A Secure Estate,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +5008,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5009,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5010,3 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +5011,5 Bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5012,Brand New 5 Bedroom Fully Detached Duplex With A Bq;,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5013,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5014,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5015,Beautifully Finished 5 Bedroom Contemporary Home,"...,. Osapa London Lekki Lagos",₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +5016,Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +5017,Newly Built Super Executive Luxury 4 Bedroom Terrace Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5018,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5019,Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5020,Lovely 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +5021,Beautifully Done 4 Bedroom Townhouse, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +5022,Affordable Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +5023,Fully Seviced 5 Bedroom Detached Duplex On 600m²,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"290,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +5024,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikota +5025,Water Front Edifice 5 Bedroom Fully Detached Mansion, Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +5026,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5027,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +5028,5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5029,Super Gorgeous 5 Bedroom Contemporary Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +5030,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5031,Fully Serviced 5 Bed Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds, baths, Toilets,Ikate +5032,Magnificent Contemporary Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +5033,4 Bedroom Terraced Duplex,Gra Ikota Lekki Lagos,₦,"64,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +5034,Affordable 2bedroom Apartment,Orchid Road By Henrys Court Chevron Lekki Lagos,₦,"32,000,000/year",1,1,0,2 beds,0 baths,3 Toilets,Chevron +5035,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5036,Fully Serviced 4 Bedroom Townhouse,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 2 +5037,Newly Built 5 Bedroom Fully Detached House,"Off Providence Road, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5038,6 Bedroom Duplex,Lekki Right Lekki Phase 2 Lekki Lagos,₦,"295,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +5039,Fully Serviced 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5040,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +5041,Newly Built 4 Bedroom Semi Detached House,"Off Pinnock Beach Road, Osapa London Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +5042,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5043,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5044,4 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5045,4 Bedroom Semi Detached Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5046,3 Bedroom Flat,Primewater View Gardens Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5047,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5048,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5049,3bedroom Flat,Estate Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +5050,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +5051,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +5052,4 Bedroom Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +5053,Luxury 4 Bedroom Semi Detached Duplex,"Mega Mound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5054,Luxury 4 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +5055,"Sales Alert. 4 Bedroom Terraced Duplex With Swimming , Gym , 24hours Power , Play Area Etc",Off Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +5056,Unique 4 Bedroom Semidetached Duplex,Orchid Hotel Road Eleganza Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +5057,Dpkay Smart Automated Homes Consist Of Terraces + Bq. Castlemore Apartments Lekki,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5058,Luxury 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,5 baths,6 Toilets,Lekki Phase 1 +5059,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +5060,913sqm Land With A Detached 3 Bedroom Bungalow,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5061,4 Bedroom Terrace Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5062,3 Bedroom Terrace Duplex Plus A Bq,Chevron Lekki Lagos,₦,"55,000,000/day",0,0,0,3 beds,3 baths,4 Toilets,Chevron +5063,Contemporary Design 6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +5064,State Of The Art And Exquisitely Built 4bedroom Duplex With Swimming Pool And Garden On The Roof Top @ Megamound Estate,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5065,A Brand New Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5066,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5067,A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5068,3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5069,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5070,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5071,Luxury Block Of Flats,Chevron Chevron Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,0 Toilets,Chevron +5072,Elegant 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5073,Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"67,500,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +5074,4 Bedroom Terraced Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5075,3bedroom Flat,Salem Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +5076,Luxury 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5077,3 Bedroom Waterfront Apartment With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5078,Fantastic Built 4 Bedroom Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5079,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +5080,Office Space/shops,"Blenco,enyo Filling Station. Ikate Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +5081,Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5082,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +5083,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5084,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +5085,Royal Standard 5 Bedrooms Fully Detached Duplex,Ikota Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +5086,5 Bedrooms Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +5087,Exquisitely Finished 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +5088,Beachfront Apartment,"Alpha Beach, Lekki. Lekki Phase 1 Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5089,Decently Finished 4 Bedrooms Semi Detached Duplex With B,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5090,Spacious 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5091,Finished 5 Bedrooms Detached,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5092,Contemporary 5 Bedrooms Fully Detached Home,By Vgc Lekki Phase 2 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5093,Brand New 5 Bedroom Luxury Detached House,Lekki Phase 1 Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5094,5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +5095,5 Bedroom Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5096,Luxury 4 Bedroom Detached Duplex With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5097,Newly Built Block Of Flats,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5098,Tastefully Finished 5 Bedrooms Detached,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5099,Newly Built 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5100,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +5101,Affordable 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5102,Fully Furnished 4 Bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +5103,5 Bedroom Full Detached + 1room Bq,Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +5104,Luxury 5 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +5105,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5106,Tastefully 2bedroom Flat,Located In A Mini Estate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +5107,Contemporary 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5108,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5109,Luxury 3 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +5110,5 Bedroom Contemporary Detached Duplex,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"366,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5111,5 Bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +5112,Serviced 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5113,Luxury 3 Bedroom Apartment With A Massive Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +5114,Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +5115,Greatly Built 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +5116,Luxury 5 Bedrooms Fully Detached Mansion With Cinema,Lekki Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5117,Nicely Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5118,4 Bedroom Semi Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +5119,4 Bedroom Semi Detached Duplex With Bq,Nicon Town Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5120,Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +5121,2 Bedroom Serviced Apartment,Gated Area Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Osapa London +5122,Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5123,Luxury Brand New 2 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +5124,4 Bedroom Fully Detached Duplex,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +5125,5 Bedroom Detached Duplex And Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5126,4bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +5127,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5128,4 Bedroom Fully Detached,Osapa Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +5129,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5130,3 Bedroom Flat With A Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +5131,Newly Built 5 Bedroom Detached Duplex,"Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"200,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +5132,Exclusive Serviced 3 Bedroom Apartment With A Maid Room.,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5133,Newly Built 4 Bedroom Terrace Duplex,Salem Ikate Lekki Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +5134,A Luxury 4bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5135,Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +5136,3 Unit Of 4 Bedroom Terrance Duplex With Bq And Room And Parlor,Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5137,5 Bedroom Detached Duplex,Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +5138,Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +5139,Hallmark Apartment: 2 & 3 Bedroom Flat On Admiralty Way Lekki Phase 1,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5140,Nicely Built 5 Bedroom Detached Duplex With Swimming Pool.,Serene Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5141,Contemporary 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +5142,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5143,Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5144,Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +5145,Massive 5bedroom Fully Furnished,Located At Inside An Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5146,New Five Bedroom Fully Furnished Duplex With Swimming Pool And 2bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +5147,Buy 5 Bedroom Fully Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5148,5 Bedroom Detached Duplex Bq,Agungi Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5149,4 Bedroom Terrace House,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +5150,Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,3 baths,2 Toilets,Ikate +5151,Newly Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5152,2 Bedroom Flat,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +5153,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5154,"Glamcourt Ii: 1, 2 & 3 Bedroom",. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +5155,4 Bedroom Fully Detached Duplex,Nice Environment Agungi Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +5156,Newly Built Luxury 5 Bedroom Duplex In A Serene Neighbourhood,"Elf, Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"270,000,000/year",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +5157,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Osapa London +5158,2 Bedroom Flat,Ikota Lekki Lagos,₦,"45,000,000/year",0,0,0,2 beds,3 baths,3 Toilets,Ikota +5159,"Newly Built, Luxury & Well Finished 5units Of 3 Bedroom And Room Bq",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +5160,Well Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,4 Toilets,Ikate +5161,Luxurious 5 Bedroom House,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,6 baths,4 Toilets,Ikate +5162,A Luxury 5bedroom Fully Detached Duplex With Bq,Serene Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5163,4bedroom Semi Detached Duplex With Bq,Elegushi Beach Road.. Ikate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,4 baths,4 Toilets,Ikate +5164,Land,"Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5165,Tastefully Furnished 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5166,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +5167,Well Finished 2 Bedroom Flat,Spa Road Nicon Town Lekki Lagos,₦,"47,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +5168,Water Front 2 Bedroom Flat,Ladipo Latinwo Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5169,Newly Built 4 Bedroom Fully Detached Duplex Plus A Room Inset Bq,Buena Vista Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5170,Newly Built 5 Bedroom Detached Duplex,Monessary Road Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5171,5 Bedroom Semi Detached Duplex With Swimming Pool,Nice Environment Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5172,Massive 4bedroom Duplex With Bq,Located Inside Idado Estate Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5173,Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5174,Flood Free Estate Well Finished 4bedroom Semi Detached Duplex With A Maid Room In A Very Secure Estate,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5175,Sophisticated 4 Bedroom Detached Duplex House With A Room Boy's Quarters., Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5176,Admiralty Pearl: 4 Bedroom Waterfront Townhouses In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5177,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +5178,6 Bedroom Mansion With 2 Room Bq,Lekki Phase 2 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +5179,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5180,Luxurious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,3 Toilets,Ikate +5181,4 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5182,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5183,Tastefully Finished Fully Detached 5 Bedroom With Bq,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"140,000,000",0,0,1,0 beds,0 baths,0 Toilets,Agungi +5184,Fully Detached 4 Bedrooms Home,Lekki County Home Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5185,Modern 4 Bedrooms Duplex,Buena Vista Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +5186,New Luxury 5bedroom Semi Detached Duplex In A Gated Estate By Nicon Town,Gated Estate Spar Road By Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,1,1,5 beds, baths, Toilets,Other Lekki +5187,2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikota +5188,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5189,A Tastefully Finished 3 Bedroom Pent House,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +5190,Luxurious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,3 Toilets,Ikate +5191,Exquisitely Finished & Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5192,Exquisitely And Tastefully Finished 5 Bdrm Detached Smart House With State Of The Art Finishings From Amazon,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +5193,4 Bed Terrace Duplex,Ikota Neighbourhood Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5194,Magnificent 7 Bedroom Detached Duplex With 2 Kitchen,Lekki Lagos,₦,"120,000,000",0,1,0,7 beds,7 baths,8 Toilets,Other Lekki +5195,Luxury 4 Bedroom Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5196,3 Bedroom Maisonettes,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5197,Luxury 3bedrroom Flat,Off Esther Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5198,Brand New Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5199,5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5200,An Executive 4bedroom Detached,Buena Vista Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +5201,Newly Built Specious 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5202,Fully Serviced 3 Bedroom Townhouse,Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5203,4 Bedroom Terrace Duplexes,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5204,5 Bedroom Fully Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +5205,Land,Directly Facing Omorine Johnson Road Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5206,Greatly Built 2 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikota +5207,4 Bedroom (all Ensuite) Semi Detached Duplex With Self Compound Home,D Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5208,4bedroom Semi Detached Duplex With Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5209,Tastefully Mini Flat,In A Good Neighborhood Osapa London Lekki Lagos,₦,"25,000,000/year",0,1,0,1 beds,1 baths,2 Toilets,Osapa London +5210,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5211,Newly Built Contemporary 5 Bedroom Detached Duplex House,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5212,4 Bedroom Semi Detached Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +5213,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5214,"Landed Property For Sale In Nicon Town Estate, Lekki Lagos",Palmgrove Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Lekki +5215,3 Bedroom Luxury Flat,. Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5216,Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +5217,Block Of 6 Flats,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,3 beds, baths, Toilets,Lekki Phase 1 +5218,1bedroom Apartment,Off Orchid Rd Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 2 +5219,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5220,Unique 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5221,4 Bedroom Detached Duplex,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5222,Newly Built 4 Bedroom Terrace Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +5223,4 Bedroom Terrace Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +5224,Newly Built 4 Bedroom Terrace Duplex,Ikota Right Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,0 Toilets,Ikota +5225,4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5226,Exclusive 1 Bedroom Loft Duplex,"Orchid Hotel Road, Eleganza Ikota Lekki Lagos",₦,"42,000,000",1,0,0,1 beds,2 baths,2 Toilets,Ikota +5227,4 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5228,Luxury Built 5bedroom Duplex,Orvhid Road Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +5229,5 Bedroom Fully Detached Duplex With Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5230,4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +5231,A Brand New 5 Bedroom Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5232,A Brand New Luxury 2 Bedroom Apartment,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5233,A Brand New 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +5234,New Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5235,Luxury 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5236,5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5237,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5238,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +5239,Land,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +5240,Luxury Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5241,Luxury 5 Bedroom Detached Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5242,4bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +5243,Newly Built 3bedroom Fully Detached Duplex +bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5244,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +5245,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5246,4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5247,Land,"Oceanbay Estate, Off Orchid Road Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5248,Affordable 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5249,Land,Osapa London Lekki Lagos,₦,"150,000",1,1,0,4 beds,0 baths,0 Toilets,Osapa London +5250,2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +5251,5 Bedrooms Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5252,Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +5253,3 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5254,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5255,*decently Finished 4 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5256,Spacious 4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +5257,Off Plan 3 Bedroom Flat,"Godmade Connect Court 4, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"64,800,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5258,Super Spacious Decently Built 4 Bedroom Semi Detached Duplex With Bq, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5259,4 Bedroom Duplex House With Bq,Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5260,Decently Finished 4 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5261,Affordable 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5262,Fully Automated 5 Bedrooms Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5263,Land,Gated Area By Chisco Busstop Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5264,5 Bedroom Luxury Duplex + 2 Room Bq,"Northern Foreshore Estate, Chevron Drive Chevron Lekki Lagos",₦,"300,000,000",1,1,1,5 beds,5 baths,7 Toilets,Chevron +5265,A Massive 5 Bedroom Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5266,4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5267,New Furnished 3bedroom Flats,Ikate Lekki Lagos,₦,"70,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikate +5268,A Brand New Cozy 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +5269,Spacious 4 Bedroom Duplex + Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5270,6bedrooms Detached Duplex With Swimming Pool And 2rooms Bq.,Inside Vgc Estate Vgc Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +5271,Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5272,Fantastic Built 4 Bedroom Duplex House With A Room Boys Quarters.,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5273,4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +5274,Modern Facilities 6bedrooms Duplex All Ensuit + Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,7 baths,8 Toilets,Lekki Phase 1 +5275,4 Bedroom Fully Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +5276,Well Built 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5277,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5278,Newly Built Classy Spacious 4 Bedroom Terrace In A Gated Estate,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5279,Exquisitely Built 2bedroom Flat With Classy Finishing And A Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +5280,New Luxury Executive Miniflat,Ikate Lekki Ikate Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets,Ikate +5281,2 Bedroom Flat Apartment,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +5282,Newly Built Shop,Idado Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5283,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,4 Toilets,Osapa London +5284,Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,3 baths,2 Toilets,Ikate +5285,Land For Sale In Vgc Lekki Lagos,Lekki Vgc Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +5286,Decently Finished 5 Bedrooms Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5287,Brand New Fully Service 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5288,Newly Built 4 Bedroom Semi Detached Duplex For Sale At Lekki With 24/7 Power,Lekki Phase 2 Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5289,4 Bedroom Duplex With Bq,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +5290,Land,Orchid Road Lekki Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5291,Newly Built Luxury 5 Bedroom Semidetached Duplex,"Off Nike Art Gallery, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +5292,Fully Automated 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +5293,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +5294,3 Bedroom Flat,Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5295,Waterfront Land For Sale In Orange Island Estate Lekki Lagos,Orange Island Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5296,Luxurious 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Agungi +5297,4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +5298,Astonishingly Beautiful 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +5299,"10,756sqm Waterfront Bareland","Maroko Foreshore Scheme, Lekki Phase 1 By Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5300,Luxury 2 Bedroom Apartment With 3 Months Payment Plan,Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +5301,Massive Exclusive 5 Bedroom +bq Fully Detached Duplex.,Serene Environment Vgc Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +5302,Grandeur Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5303,4bedroom Semi Detached Duplex With 2service Quarters (bq),Road .... Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +5304,"*??decently Finished 4 Bedrooms Semi Detached Duplex In Ikota, Lekki",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5305,"*??luxuriously Finished 5 Bedrooms Fully Detached Duplex With Bq In Ikota, Lekki",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5306,Executive 3bedroom Maisonette With Bq And Gym,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +5307,Fully Serviced 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5308,Luxury 4 Bedroom Semi Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5309,Beautifully Finished Contemporary 5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ologolo +5310,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +5311,4bedroom Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5312,Own A Piece Of The Millennial Bay Towers Smart Residence,Perez Drive Lekki Phase 1 Lekki Lagos,₦,"17,000,000",1,0,0,1 beds,2 baths,2 Toilets,Lekki Phase 1 +5313,Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5314,3 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +5315,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5316,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5317,Integrity Tower: 4 Bedroom Maisonette At Lekki Phase 1,. Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5318,4 Bedroom Semi Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +5319,Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5320,Nicely Finished & Spacious 4 Bedroom Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +5321,4bedroom Semi Detached Duplex With Bq,Lekki County Road... Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +5322,4bedroom Semi Detached Duplex With Bq,Road Inside Vgc Estate Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +5323,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5324,5 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5325,Fully Serviced Automated 4 Bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +5326,Vacant 3 Bedrooms Flat + Bq,Agungi Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Agungi +5327,A Luxury 4bedroom Terrace Duplex With Bq,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5328,Mini Flat,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5329,Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5330,Newly Built 4bedroom Fully Detached Duplex+bq,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5331,Fully Furnished And Serviced 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikate +5332,Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5333,A Purpose Built 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5334,A Brand New 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5335,Decently Finished 4 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5336,4bedroom Duplex With A Bq,Jasen Close Ologolo Lekki Lagos,₦,"83,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5337,Spacious 2 Bedroom Ensuite Flat,"Chevron, Lekki, Lagos. Chevron Lekki Lagos",₦,"50,000,000",1,0,1,2 beds,2 baths,3 Toilets,Chevron +5338,Magnificent 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5339,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +5340,Land,Chevron Drive/lekki/ Chevron Office Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +5341,Newly Built 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5342,4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5343,A Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5344,Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5345,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +5346,4 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5347,Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5348,Luxury 5 Bedroom Duplex,Near Victory Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +5349,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5350,Spacious 5 Bedroom Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5351,Dunvale Court V: 4 Bedroom Maisonette,Orchid Hotel Road Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5352,Newly Built Sophisticated 5 Bedroom Detached Duplex House With A Room Boy's Quarters, Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5353,Perfectly Built 5 Bedroom Detached Duplex House With A Room Boy's Quarters., Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5354,Luxury Building Of 33 Retails Stores Various Floors,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5355,Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +5356,Beautiful 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5357,Executive 3 Bedroom Apartment,Megamound Estate Ikota Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +5358,4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5359,Astonishingly Beautiful 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +5360,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5361,Brand New 5 Bedroom Luxury Terrace House,Lekki Phase 1 Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5362,Studio Apartment,Lekki Phase 1 Lekki Lagos,₦,"33,900,000",1,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +5363,5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5364,2 Bedroom Luxury Flat,Agungi Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,3 baths,3 Toilets,Agungi +5365,Luxurious 5 Bedrooms Fully Detached Penthouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5366,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +5367,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5368,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +5369,Magnificently Built 4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5370,Fully Serviced 3 Bedroom Townhouse,Orchid Road By The 2nd Lekki Tollgate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5371,Luxury 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5372,Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5373,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5374,4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5375,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5376,Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +5377,Luxury 4 Bedroom Semi Detached Duplex +bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5378,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +5379,Self Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5380,1099.244sqm Bareland,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5381,1 & 2 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +5382,Luxury And Spacious 4 Bedroom Detached,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5383,5 Bedroom Detached Duplex With Bq And Study Room,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5384,Luxury 2 Bedroom Serviced Flat,Ikate Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +5385,Luxurious 4 Bedroom House With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,4 Toilets,Osapa London +5386,A Lovely 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +5387,4 Bedroom Semi Detached Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5388,4 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +5389,4 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5390,Newly Built 5 Bedroom Fully Detached Duplex With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +5391,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +5392,Newly Built 3 Bedroom Terrace Duplex With A Room Bq,Abraham Adesanya Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5393,Luxurious 1 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,1 beds,2 baths,1 Toilets,Ikate +5394,800sqm Of Land,Cowrie Creek Ikate Lekki Lagos,₦,"250,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +5395,Exquisite Brand New 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5396,Luxury 5 Bedrooms Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +5397,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +5398,Investment Land In Osapa By Hampton,Hampton Island Osapa London Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Osapa London +5399,Newly Built 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +5400,3 Bedroom Flat,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5401,Luxury 3 Bedroom Terrace Duplex With Bq,Jakande Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5402,A Brand New Beautifully Designed 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5403,5 Bedroom Fully Detached,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5404,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5405,A 4bedroom Duplex,Buena Vista Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5406,5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5407,Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +5408,Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5409,Super Spacious And Well Finished 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5410,4 Bedroom Contemporary Semi Detached Duplex,Nice Environment Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5411,3 Bedroom Bunglaow With 24hrs Power,"Serviced Estate, Orchid Hotel Road Ikota Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +5412,Luxury Fully Detached 5 Bedroom Duplex With 1 Room Bq,Agungi Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +5413,2 Nos. 5 Bedroom Duplexes,Abiodun Tolani Street Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +5414,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5415,Sophisticated 4 Bedroom Semi Detached Duplex House With A Room Boys Quarters.,Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +5416,513sqm Land,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"175,000,000",0,0,0,1 beds,2 baths,2 Toilets,Other Lekki +5417,Fully Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +5418,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +5419,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +5420,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +5421,4bedroom Terraced Duplex With Bq,Gated And Secured Area Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5422,Luxury 7 Bedroom Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +5423,5 Bedroom Detached Dupex With A Bq,Orchid Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5424,5 Bedroom Fully Detached Duplex With Swimming Pool,Very Serene And Secure Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5425,Luxury Semi Detached Duplex With Bq And Study Room At Lekki,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5426,Brand New 4bedroom Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +5427,Lovely Furnished 3 Bedroom Flat & 1 Room Bq With 40kva Generator,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5428,Beautifully Designed 5bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5429,Massive 4 Bedroom Duplex + 1 Office Room,Located At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5430,4 Bedrooms Semi Detached Duplex With A Room Bq.,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5431,Lovely 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +5432,Bareland With Approval For 4 Floors,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5433,10000sqm Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5434,3 Bedroom Apartment,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5435,A Walk In 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +5436,4 Bedroom Fully Detached Duplex With Bq,A Very Nice Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5437,Land,"Paved Road, Salem Busstop Ilasan Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5438,2 (numbers) Of 5 Bedroom Detached Houses,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5439,Newly Built Luxury 2 Bedroom Flats With Excellent Finishing,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +5440,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5441,5bedroom Detached House,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5442,"5 Bedroom Fully Detached Duplex, House",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +5443,Brand New Spacious 3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5444,Up For Sale Is This 4 Bedroom Duplex At Lekki,Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5445,4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5446,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5447,Fenced And Gated 2.081 Hectares Of Dry Land,"Vgc Round About, Between Vgc Gate And Ikota Shopping Complex, Vgc Lekki Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5448,2bedroom Terrace Duplex Carcass With A Bq,"Nike Art Gallery,wakanow.. Ikate Lekki Lagos",₦,"52,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +5449,Beautifully Built And Spacious 4 Bedroom Semi Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5450,Brand New Specious Terrace Duplex House,D Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5451,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +5452,One Acre Of Land,Jakande Jakande Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5453,Brand New 4 Bedroom Semi Detached House With A Beautiful Ambience,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5454,5 Units Of 3 Bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5455,Finished 4 Bedroom Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5456,Luxury 5 Bedrooms Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +5457,Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5458,Gorgeously Built 5 Bedrooms Semi Detached Building,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +5459,Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5460,"I Hectare [10,000 Sqm) Of Land On Kusela Road..ikate.",Kusela Road By Chisco Roundabout Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Ikate +5461,"1, 2, 3 & 4 Bedroom At Jakande Lekki",Jakande Lekki Lagos,₦,"80,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5462,5 Bedroom Ensuite Duplex With A 2 Bedroom Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5463,A Smart 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5464,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5465,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +5466,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +5467,4bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +5468,Luxury 4 Bedroom Flat,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +5469,Commercial Plots Of Land Measuring 7774sqm,Elf Bus Stop Lekki Expressway Jakande Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5470,Luxurious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"72,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +5471,3 Star Hotel,Chevron Drive Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5472,Selling Now Is This Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"103,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5473,Magnificent Built 5 Bedroom Detached Duplex With Bq And Study Room, Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5474,4 Bedrooms Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5475,4 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5476,Newly Built And Well Finished 4 Bedroom Semi Detached Duplex With A Bq,By Chevron Tollgate Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5477,4 Bedroom Semi Detached Duplex With A Room Bq.,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5478,Serviced 4bedroom Terrace Duplex,By Vgc Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5479,Water Front 4 Bedroom Terrace House With A Bq,Ladipo Latinwo Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +5480,5 Bedrooms Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5481,Well Finished 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +5482,Decently Finished Luxury 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5483,Brand New (almost Completed) 4 Bedroom Detached Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5484,Executive 5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +5485,Beautifully Crafted 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5486,"Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @ Ologolo, Lekki",Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5487,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5488,Hotel With 33 Rooms On 1000m²,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5489,Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5490,4 Bedroom Semi Detached,Ologolo Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +5491,4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"250,000,000",1,0,1,4 beds,5 baths,4 Toilets,Osapa London +5492,12000sqm Waterfront Land Off Admiralty Way Lekki With Lagos State C Of O,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +5493,Affordable 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5494,2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +5495,4 Bedroom Semidetached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5496,Spacious 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5497,Luxury 5 Bedroom Contemporary Duplex With Swimming Pool.,Serene Environment Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5498,Luxurious 3 Bedroom Apartment,Jakande Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,4 baths,3 Toilets,Other Lekki +5499,Unfurnished 3bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +5500,2 Bedroom Flat,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +5501,5bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +5502,New Built 4 Bedroom Semi Detached House With Bq For At Lekki,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5503,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5504,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5505,Luxury 5 Bedroom Detached Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5506,Spacious 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +5507,4 Bedroom Semi Detached Duplex,Osapa Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +5508,4bedroom Fully Semi Detached Duplex,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +5509,Existing Workshop,Lekki Epe Express Way Chevron Lekki Lagos,₦,"6,000,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +5510,5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +5511,5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Osapa London +5512,Furnished Royal Standard Finished 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +5513,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5514,Contemporary Mega 5 Bedroom Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,7 baths,7 Toilets,Ologolo +5515,2bedroom Flat,"Ilasan,salem Axis Ilasan Lekki Lagos",₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +5516,Two Unit Of 5 Bedroom Detached Duplex With Swimming Pool.,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5517,3 Bedroom Penthouse,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +5518,Distress 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5519,Lauren Ashley Court: 2 Bedroom Flat + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +5520,Fully Furnished 5 Bedroom Detached Mansion With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5521,4bedroom Detached Duplex With 2room Bq,Inside Vgc Estate. Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +5522,Luxury 5 Bedroom Semi Detached Duplex With Pool And Cinema,Ikota Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +5523,Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5524,Massive 5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool,A Very Beautiful Estate Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +5525,Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5526,Detailed Spacious 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +5527,Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5528,Fully Furnished 1 Bedroom Flat,Ologolo Lekki Lagos,₦,"44,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ologolo +5529,Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +5530,4 Bedroom Semi Detached With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +5531,Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5532,4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5533,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,1,5 beds,6 baths,5 Toilets,Lekki Phase 1 +5534,Luxurious 3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",1,0,1, beds, baths, Toilets,Ikota +5535,A Luxurious 2bedroom Terrace Duplex+ Bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5536,Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +5537,Newly Built 4 Bedroom Terrace House,Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets,Chevron +5538,A Luxury 5bedroom Fully Detached Duplex With Bq,Nice Environment Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5539,Exquisitely Newly Built Fully 5bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +5540,Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5541,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5542,4 Bedroom Semi Detached Duplex,Oral 2 Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5543,4bedroom Terrace Duplex With Swimming Pool.,Nice Environment Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5544,4 Bedroom Semi Detached House Nestled In A Serene And Secure Estate.,Serene And Secure Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +5545,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,5 baths,4 Toilets,Lekki Phase 1 +5546,Brand New 4 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5547,4bedroom Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5548,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5549,1 Bedroom Mini Flat Apartment,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 2 +5550,3 Bedroom Semi Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5551,Land Banking Development Project,Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +5552,Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +5553,4 Bedroom Terrance Duplex Duplex With Bq And Pent House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5554,Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +5555,4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5556,Well Built 5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5557,Commercial Land,Chevron Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5558,5 Bed Room Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +5559,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +5560,Land For Sale In Carltongate Estate Lekki Lagos,Carltongate Estate Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Chevron +5561,5 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +5562,Contemporary 5 Bedroom Fully Detached Home,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5563,Newly Built 4 Bedrooms Terrace Duplex With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5564,2bedroom Flat,Close To Lekki Phase 1 By Ikate Right Hand Side Ilasan Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5565,5 Bedroom Fully Detached Duplex With Swimming Pool.,Nice Environment Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5566,Land,Vgc Estate. Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5567,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +5568,4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,005",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5569,3bedroom Flat Carcass.,Nike Art Gallery/elegushi Beach Road. Ikate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +5570,3 Bedroom Flat,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +5571,12000sqm Waterfront Land Off Admiralty Way Lekki With Lagos State C Of O,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +5572,Contemporary Design Smart 5 Bedrooms Detached Duplex With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5573,4 Bedroom Duplex With Payment Plan,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +5574,Smart 4 Bedroom Terrace Duplex,Orchid Road 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,6 Toilets,Chevron +5575,Brand New 3 Bedroom Flat,Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +5576,Spacious 4bedroom Semi Detached Duplex With A Room Bq .,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5577,Fully Furnished 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +5578,Magnificent 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +5579,Tastefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +5580,Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5581,New 4 Bedroom Luxury Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5582,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5583,Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,0,0,2 beds,3 baths,2 Toilets,Ikate +5584,"Luxury 4 Bedroom Terrace Duplex With Bq, Lekki Pay And Pack In",Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5585,Lovely 4bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5586,4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5587,"Maiyegun Beach Estate: Buy 600sqm, 800, 1000sqm At Jakande Lekki",. Jakande Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5588,"5,000m2 Mixed Use Land","Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"1,070,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5589,Newly Build 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5590,455sqms Land,Victory Park Estate Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5591,6 Bedrooms Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +5592,Exclusive 5 Bedrooms Detached Duplex,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5593,4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5594,4 Bedroom Duplex,Jakande Lekki Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +5595,Affordable 4bedrooms Terraces,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5596,Finished 4 Bedrooms Townhouse With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +5597,Newly Built 4 Bedroom Terrace,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5598,Newly Built Specious 5 Bedroom Duplex With Bq,Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5599,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5600,Newly Built Ensuites Modern 4bedroom Condominiums Terrace Duplex Self Compound With Bq,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5601,Decently Finished 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5602,Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +5603,4 Bedroom Terrace Duplex With Bq (corner Piece),"Orchid Hotel Road, Lekki Lagos Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5604,5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5605,5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5606,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5607,Fantastic Built 4 Bedroom Duplex House,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5608,Brand New 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5609,4 Bedroom Semi Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5610,5 Bedroom Fully Detached Duplex,Chevron Alternative Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5611,Unique 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5612,Massive 4bedroom Duplex,Located In A Very Beautiful Estate Off Shoprite Road Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5613,Service 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5614,A Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5615,Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5616,4bedroom Semi Detached House,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5617,4bedroom Terrace Duplex,By Enyo Filling Station Elegushi Beach Road Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +5618,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5619,3bedroom Terrace Duplex With Bq,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +5620,Tastefully Finished 5bedroom Fully Detached Duplex With An Open Plan Kitchen,A Very Beautiful Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5621,Luxury 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +5622,A Beautifully Built 5 Bedroom Terraced Duplex,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5623,Newly Built 5bedroom Detached Duplex,Lekki County Estate Vgc Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +5624,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +5625,4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +5626,Invest In This Exquisitely Finished & Spacious 3 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5627,A Brand New Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5628,Land,Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5629,A Brand New 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5630,4 Bedroom Fully Detached Duplex,Lekki Right Hand Side By Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +5631,3 Bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5632,4bedroom Fully Detached Duplex,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5633,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5634,5 Bedroom Fully Detached House,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5635,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5636,4 Bedroom Terrace At Lekki Phase 1,. Lekki Phase 1 Lekki Lagos,$,"295,150",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5637,Luxurious 3 Bedroom Terrace Duplex,Ajah Lekki Lagos,₦,"47,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Lekki +5638,Newly Built 3 Bedroom Flat,Near Enyo Filling Station Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5639,"7bedroom Fully Detached Duplex With 3rooms Service Quarters, Swimming Pool,and Water View.",Vgc Estate. Vgc Lekki Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets,Victoria Garden City +5640,4bedroom Semi Detached Duplex With Bq,Idado Estate Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5641,Magnificent 5 Bedrooms Fully Detached,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +5642,Newly Built Luxury 3 Bedroom Flats In A Serene Neighbourhood,"Ocean Breeze Estate, Ologolo, Ologolo Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +5643,5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5644,Exquisitely And Tastefully Finished 4 Bdrm Semi Detached Smart House,White Sand Beach Estate Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +5645,3 Bedroom Apartment And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5646,Contemporary 2 Bedroom Apartment,Agungi Agungi Lekki Lagos,₦,"38,000,000",0,0,1,2 beds,3 baths,0 Toilets,Agungi +5647,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5648,Ofifice Building,Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5649,Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5650,25sqm Mall Space,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +5651,Luxurious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +5652,New Luxury 3bedroom Maisonette,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,5 baths,5 Toilets,Ikate +5653,Luxurious 3bedroom Semi Detached Duplex With A Bq,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5654,Furnished 4 Bedroom Duplex With Bq,"Gated Area, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5655,A Luxury 5bedroom Fully Detached Duplex With Bq,Serene Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5656,Newly Built 2bedroom Duplex With Bq In A Serene Environment,Abraham Adesanya Round About Lekki Pride Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5657,5 Bedroom Fully Detached Duplex With Bq,Nice Environment Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5658,Elegantly Built 3bedroom Flat With Pool,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +5659,Brand New 2 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +5660,Luxurious 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +5661,Well Maintained 4 Bedroom Duplex With Bq,Mini Estate By Chisco Busstop Ikate Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +5662,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +5663,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5664,Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5665,4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5666,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5667,Event Centre,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 2 +5668,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5669,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ologolo +5670,A Serviced 2bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5671,5 Bedroom Detached Duplex Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5672,Luxury 4 Bedroom Semi Detached Duplex With Bq And Gate House,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5673,4 Bedroom Semi Detached Duplex,Serene Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5674,4bedroom Terrace Duplex,Off Freedom Way Itedo Lekki Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +5675,4 Bedroom Semi Detached Duplex + 1 Room Bq,"Southern View Estate, Chevron, Lekki, Lagos. Chevron Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5676,5 Bedrooms Fully Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +5677,3 Bedrooms Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +5678,Spacious 4 Bedroom Semi Detached Duplex With A Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +5679,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5680,State Of The Art 1bedroom Flat With Modern Finishing,Megamound Estate Ikota Lekki Lagos,₦,"28,000,000",1,1,0,1 beds,1 baths,1 Toilets,Ikota +5681,Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,0,0,2 beds,3 baths,2 Toilets,Ikate +5682,4 Bedroom Terrace Duplex In Lekki Phase 1,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5683,3 Bedroom Flat Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +5684,Mini Flat In A Secure & Beautiful Estate,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets,Chevron +5685,2 Hectares Of Vacant Land,"On Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"4,140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5686,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5687,Magnificent 5 Bedroom Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5688,Tastefully Finished 5 Bedroom Duplex With Boys Quaters,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +5689,Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +5690,Perfectly Built And Specious 5 Bedroom Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"158,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5691,Service 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +5692,Gorgeous Luxury 5 Bedrooms Fully Detached Home,Lekki County Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5693,Magnificently Built 4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +5694,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +5695,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5696,Newly And Exquisitely Finished 8units Of 4bedroom Terrace Duplex In Lekki 1(rock Drive ),Rock Drive Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5697,Decently Finished 5 Bedrooms Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +5698,Exquisite 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +5699,Serviced 4 Bedroom Terraced Duplex With A Room Bq With Quality Finishing And Good Space,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5700,Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +5701,5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +5702,Nicely Built 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +5703,Furnished 4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +5704,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5705,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5706,Affordable 2bedroom Apartment,Orchid Road By Eleganza Bus Stop Chevron Lekki Lagos,₦,"31,000,000/year",1,0,0,2 beds,2 baths,3 Toilets,Chevron +5707,Contemporary 5 Fully Detached & 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +5708,675 Sqms Land,Vgc Estate Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5709,"20,000m2 Parcel Of Land","Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5710,Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5711,"7bedroom Fully Detached Duplex With Two Service Quarters, Water View, Swimming Pool.",Road**** Vgc Lekki Lagos,₦,"280,000,000",0,0,0,7 beds,7 baths,7 Toilets,Victoria Garden City +5712,12 Rooms Fully Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +5713,Fully Serviced 4 Bedroom Terrace Duplex,"Chevron, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +5714,Newly Built 3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +5715,5 Bedroom Duplex,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +5716,Serviced 2 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5717,4 Bedroom Semi Detached Duplex In A Mini Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5718,A Massive Contemporary 5 Bedroom Fully Detached Duplex,Very Secure And Serene Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +5719,1300sqms Of Land,Vgc Estate Vgc Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5720,5 Bedroom Semi Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +5721,Newly Built 4 Bedroom Detached Duplex,Alpha Beach Road Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5722,Contemporary 5 Bedroom Fully Detached Duplex,Serene And Secure Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5723,4bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +5724,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5725,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Ikate Lekki Lagos,₦,"370,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikate +5726,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5727,500sqm Land,"Sapati, Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5728,Land,Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5729,500sqm Land,Abijo Gra Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5730,Newly Built 4bedroom Semi Detached House,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5731,3 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +5732,2 Bedroom Maisonette,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +5733,4 Bedroom Maisonette,"Orchid Road, Chevron Lekki Lagos",₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +5734,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5735,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5736,4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +5737,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5738,4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5739,2 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5740,New Built 4bedroom Terrace In A Serene Estate,"Orchid Road, Chevron Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,7 Toilets,Chevron +5741,Well Planned And Developed 2 Bedroom,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +5742,Serviced 4 Bedoom Terrace+bq,Spring Bay Estate Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,3 baths,4 Toilets,Ikate +5743,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5744,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5745,Newly Built 5bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5746,Luxury 2 Bedroom Apartment,Meadow Hall Road/horizon 2 Estate Ikate Lekki Lagos,₦,"62,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +5747,5 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5748,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5749,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5750,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5751,5 Bedroom Detached House,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5752,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5753,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5754,Smart Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5755,2 Bedroom Flat,Ilasan Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5756,3 Bedroom Fully Furnished Massionette,"Horizon Height By Spar Road, Ikate Lekki Lagos",₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +5757,Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5758,Land; Oceanfront And Gated,Ilasan Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5759,3 Bedroom Penthouse+bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +5760,Land,Vgc Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5761,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +5762,10 Units Of 4 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +5763,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5764,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5765,Self Contain Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5766,Luxury 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5767,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5768,2bedroom Serviced Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5769,Spacious 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5770,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5771,Amazing 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5772,Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5773,"These Lovely Units Of 1, 2 And 3 Bedroom Apartment",Ikate Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5774,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5775,Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets,Chevron +5776,This Luxurious Finished 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5777,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5778,4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5779,Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5780,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5781,Spacious 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5782,Furnished 2 Bedroom Apartment,Lekki Lagos,₦,"78,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5783,2 Bedroom Apartment With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5784,Two (2) Units Of Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5785,Spacious 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +5786,Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5787,Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5788,Spacious 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,0 beds,3 baths,4 Toilets,Ikota +5789,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5790,New 3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5791,"Spacious 1,2,3 Bedroom Apartments",Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5792,Spacious 4 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +5793,Waterfront 3 Bedroom Apartment,Lekki Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5794,Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +5795,5 Units Of Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5796,Spacious 4 Bedroom Semii Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5797,Spacious 4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5798,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5799,Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5800,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5801,2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5802,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5803,Luxury 5 Bedroom Detached With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5804,Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5805,Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5806,Multiple Units Of Serviced 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5807,This Lovely 3bedroom Apartment,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +5808,Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5809,These Lovely 2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +5810,Spacious 2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +5811,4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5812,Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5813,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5814,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5815,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5816,Brand New 3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5817,5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5818,This Luxurious Finished 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +5819,Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5820,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5821,Three (3) Units Of 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +5822,Spacious 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5823,This Lovely Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5824,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +5825,Luxury 5 Bedroom Detached With 2 Rooms Bq,Lekki Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,5 Toilets,Other Lekki +5826,Spacious 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +5827,3 Bedroom Flat,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,0 baths,0 Toilets,Osapa London +5828,Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5829,Luxury 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,0 baths,0 Toilets,Ikate +5830,4 Bedroom Semi Detached House With A Bq In Ologolo,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +5831,800 Sqm Plot Of Land,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5832,5 Bedroom Detached House In Nicon,Nicon Town Lekki Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +5833,3 Bedroom Fully Detached Castle Bungalow,Oribanwa Bustop Awoyaya Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +5834,1 Unit Of 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +5835,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,6 baths,7 Toilets,Chevron +5836,Land,"Peaceville Estate, Badore Ajah. Lagos. Lekki Lagos",₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5837,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,0 Toilets,Chevron +5838,4bedroom Semi Detached Duplex*,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5839,Four Bedrooms Duplex,Osapa Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5840,5 Bedroom Detached Duplex*,2nd Tollgate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5841,4 Bedroom Semi Detached Duplex*,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5842,4bedroom Semi Detached Duplex*,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5843,4 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5844,5 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5845,4 Bedroom Terrace Duplex*,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5846,4 Bedroom Semi Detached Duplex*,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5847,4 Bedroom Semi Detached Duplex*,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +5848,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +5849,4 Bedroom Semi Detached Duplex*,Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +5850,4bedroom Detached Duplex*,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +5851,5bedroom Fully Detached Duplex*,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +5852,4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +5853,Lavender Garden,Lekki Phase 2 Lekki Lagos,₦,"50,000,000/year",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +5854,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +5855,Newly Built 6bedroom Detached House,Off Road 3 Vgc Vgc Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Garden City +5856,2 Units Of 5 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +5857,4 Bedroom Semi Detached Home,Orchrd Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +5858,5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +5859,5 Bedroom Fully Detached,Off Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5860,Lovely 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +5861,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +5862,Land,Northern Foreshore/ Chinese Esate Chevron Lekki Lagos,₦,"240,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5863,3 Bedroom Apartment With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,0 beds,0 baths,0 Toilets,Osapa London +5864,Luxury 2bedroom Terrace Duplex,"Alex Court Ilasan, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +5865,Exclusive 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,7 baths,8 Toilets,Osapa London +5866,Fully Serviced 4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5867,4bedroom Semi Detached Duplex With A Bq,Tulip Haven Estate At Chevron Alternative Road Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +5868,A Well Furnished 4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +5869,5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5870,4 Bedroom Triplex With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +5871,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5872,4 Bedroom Terrace Home,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5873,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,0 Toilets,Chevron +5874,4 Bedroom Semidtached Duplex With A Bq,I Dado Estate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +5875,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +5876,5 Bedroom Fully Detached Home With Bq,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +5877,Mini Flat,Ologolo Road Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ologolo +5878,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +5879,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikate +5880,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +5881,Newly Built 2 Bedroom Maisonnette,Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,0 baths,0 Toilets,Other Lekki +5882,4 Bedroom Fully Detached Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +5883,Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5884,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,6 baths,7 Toilets,Chevron +5885,Tastefully Finished 5 Bedrooms Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +5886,Newly Built 4 Bedroom Terrace In A Serene Environment,Vgc Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets,Victoria Garden City +5887,4 Bedroom Semi Detached Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +5888,Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5889,3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +5890,2 Bedroom Terrace Duplex,Off Chevron Tollgate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Chevron +5891,4 Bedroom Semi Detached With Bq,Kusenla Road/horizon 1 Ikate Lekki Lagos,₦,"85,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +5892,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Road Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,7 Toilets,Ologolo +5893,Brand New 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +5894,Land,Northern Foreshore Chinese Estate Chevron Lekki Lagos,₦,"170,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5895,Furnished 4 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +5896,3 Bedroom Apartment,"Prime Water Gardens Off Freedom Way, Ikate Lekki Lagos",₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +5897,6 Bedroom Fully Detached Suplex With 2 Bq,"Gbara, Jakande, Lekki, Lagos. Jakande Lekki Lagos",₦,"70,000,000",0,0,0,6 beds,7 baths,7 Toilets,Other Lekki +5898,Newly Out 80 Plots Of Land,"Ògombo Road, Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +5899,5 Bedroom Terrece For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Chevron +5900,Luxury 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5901,8 Units Of 5 Bedroom Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +5902,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5903,Fully Serviced 2 Bedroom Luxury Apartment,"Inside A Gated Street, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +5904,7 Bedroom Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +5905,Bare Land,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +5906,3 Bedroom Detached House,The Rock Drive Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +5907,110000sq (11 Hectares),Ilasan Ilasan Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5908,Land,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5909,Very Beautiful And Affordable 4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +5910,A Fully Fenced Commercial Land,Along Lekki Expressway Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5911,Really Wonderful Sophisticated 5 Bedroom Fully Detached Duplex In A Serene Estate With 24 Hrs Light,Orchid Road Lekki Ikota Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +5912,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +5913,S Fort Estate Besides Lekki Palm City.. Executive And We'll Finished Brand New 4 Bedroom Fully Detached Duplex With Bq... Price:# 90m Net Title: Governor Concent.,S Fort Estate Besides Lekki Palm City Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +5914,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +5915,4 Bedroom Detached Duplex With A Bq,"Freedom Way, Besides Orange Island Lekki Phase 1 Lekki Lagos",₦,"140,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +5916,Whales County Estate,Lekki Lagos,₦,"52,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +5917,Luxury 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5918,4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +5919,Newly Built 4 Bedroom Duplex With 2 Bedroom Apartment,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets,Lekki Phase 1 +5920,Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +5921,Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5922,1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,500,000",0,1,0,1 beds,1 baths,2 Toilets,Ologolo +5923,Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5924,Fully Detached 4 Bedroom Duplex + Bq,"Silicon Estate, Alpha Beach Igbo Efon Lekki Lagos",₦,"58,000,000",0,0,0, beds, baths, Toilets,Other Lekki +5925,The Lavida 4 Bedroom Semi Detached Smart Home,Urban Prime Estate Lekki Phase 2 Lekki Lagos,₦,"79,500,000/sqm",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +5926,Newly Built 3 Bedroom Terrace House,Orchid Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +5927,Corner Piece Land, Ilasan Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5928,4 Bedroom Detached Duplex,"Orchid Road, Lekki. Lagos Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5929,3 Bedroom Apartment,Ilasan Estate Ilasan Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5930,Newly Built 4 Bedroom Duplex,"Orchid Hotel Road, Lekki Phase 2 Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +5931,Four Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +5932,Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +5933,5bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +5934,Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5935,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5936,Contemporary 5 Bedroom Fully Detached Duplex,"Alma Beach, By Lekki 3rd Round About, Lekki. Ikate Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +5937,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +5938,"Land For Sale At Chevron Drive, Lekki Lagos","Chevron Drive Facing The Road, Neighbourhood Are, Atlantic Mall Estate, Noveral Mall, Lagos Conventional Centre, Etc Chevron Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +5939,Taste To Finish Newly Built 2 Unit Of 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +5940,Newly Built 3 Bedroom Apartments,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +5941,2300 Sqms Land,Ikate By By Elf Bus Stop Ikate Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +5942,Land,Cheron Drive Chevron Lekki Lagos,₦,"95,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +5943,4 Bedroom Detached Duplex With A Bq, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +5944,A Wing Of 4 Bedroom Duplex With 2 Room Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +5945,Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +5946,Joint Venture Land,Ilasan Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5947,3 Bedroom Semi Detached Duplex With Bq,Salem Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +5948,Newly Built 4 Bedroom Terrace Apartment,White Oak Estate 2 Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,3 baths,4 Toilets,Victoria Garden City +5949,Land,Beechwood Estate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5950,Newly Built 5 Bedrooms Semi Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"270,000,009",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +5951,4 Bedrooms Duplex,Ikota Estates Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +5952,4 Bedroom Terrace Duplex Off Plan Sales,"Hanover Court, Orchid Road Chevron Lekki Lagos",₦,"58,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +5953,Fully Furnished Top Notch 4 Bedroom Duplex In Agungi Lekki,Agungi Lekki Lagos,₦,"99,000,000",0,0,1,4 beds,5 baths,5 Toilets,Agungi +5954,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +5955,Luxury 4bedroom Duplex With Pool,Ikota Lekki Ikota Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +5956,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +5957,Commercial Building, Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5958,A Tastefully Built 4 Bedroom Duplex With The Latest State Of The Art Finishing.,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +5959,"A 3 Acres Waterfront (12,000 Square Metres) Of Land Is Available",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5960,4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +5961,Serviced Brand New 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +5962,Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5963,Ocean Growth Homes,Ikota Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +5964,5 Bedroom Fully Detached,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +5965,5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +5966,"Brand New 4 Bedroom Semi Detached Duplex , Located In A Secure Estate",Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +5967,Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +5968,Fully Serviced 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5969,Sophisticated 5 Bedroom Detached Duplex,Bera Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"89,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +5970,3 Bedroom Apartment Ground Floor,"Dupe Oguntade Street M, Behind Enyo Filling Station Chisco Ikate Lekki Lagos",₦,"44,000,000/year",1,1,0,3 beds,3 baths,4 Toilets,Ikate +5971,"88 Units Of 2bedroom Apartment (2 Toilets + Guest, Fitted Kitchen) And 4 Bedroom Terrace Duplexes (3 Toilets + Guest, Fitted Kitchen )",Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +5972,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +5973,Beautifully Finished 4 Bedroom Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +5974,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +5975,An Inexplicable Smart & Switchless 5bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hours Light,Orchid Road Chevron Lekki Lagos,₦,"125,000,000",1,0,1,5 beds,6 baths,6 Toilets,Chevron +5976,Land,Wfy Ilasan Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +5977,Newly Built 4 Bedroom Semi Dtached Duplex With A Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +5978,4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +5979,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +5980,Waterview Bare Land Measuring Approximately 3000 Square Meters,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +5981,Beautifully Finished 5bedroom Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,7 Toilets,Ikate +5982,4 Bedroom Terrace Duplex,Alpha Beach Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +5983,4bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +5984,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +5985,Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +5986,Newly Built 5 Bedroom Duplex,Luxbury Leisure Home Vgc Vgc Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +5987,Exceptional Luxury Mini Flats,Godmade Connect Court Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +5988,4 Bedroom Detached Duplex And A Bq,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +5989,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,5 Toilets,Victoria Garden City +5990,Newly Built 2 Bedroom Flat,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +5991,4 Bedroom Terrace Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5992,Finished 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,6 Toilets,Victoria Garden City +5993,Spacious 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +5994,Fully Serviced 4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +5995,Luxuriously Furnished 4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",1,0,1,4 beds,5 baths,5 Toilets,Chevron +5996,5bedrooms Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +5997,4 Bedroom Duplex Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"70,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5998,Brand New Spacious Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +5999,Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6000,3 Bedroom Flat,Ilasan Estate Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +6001,Newly Built 2 Bedroom Terrace House,Ikota Villa Lekki Lagos Ikota Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +6002,Shop Spaces And Rooftop Bar In Upcoming Mall (q Mall),Lekki Beach Road Jakande Lekki Lagos,₦,"3,000,000",0,1,0, beds, baths, Toilets,Other Lekki +6003,3 Bedroom Maisonette,Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +6004,4 Bedrooms Ensuite Terrace,Orchid Road Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6005,Newly Built 2 Bedroom Tlat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +6006,Newly Built 4bedroom Duplex,Gbola Salami Agungi Lekki Lagos,₦,"130,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets,Agungi +6007,5bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +6008,4 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6009,"5bdrm Mansion In Megamound Estate, Ikota For Sale","Megamound Estate, Lekki County Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6010,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6011,Land,Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6012,Five Bedrooms Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +6013,Brand New Spacious 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +6014,4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6015,Beautiful Newly Built 4 Bedroom Semi Detached,Lekki County Road Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6016,Brand New Spacious Serviced 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +6017,Luxuriously Built 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +6018,Fully Serviced And Decently Finished 4bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +6019,Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6020,56 Units Of 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6021,Brand New 4 Bedroom Corner Piece Terrace Duplex,Off Orchid Hotel Road Oral Estate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6022,Newly Built 4 Bedroom Duplex In A Serene Environment,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +6023,Newly Built 4bedroom Duplex With Rear 2bedroom Flat.,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6024,Tastefully Finished 5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +6025,2 Units Of 5 Bedroom Detached Duplex + 2 Rooms Bq Each,Lekki Right Hand Side Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +6026,Luxury 2 Bedroom Flats With Modern Facilities,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000/year",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +6027,4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6028,1 Bedroom Flat (carcass),Chervon Chevron Lekki Lagos,₦,"22,000,000",1,1,0,1 beds,1 baths,1 Toilets,Chevron +6029,The Most Beautiful And Affordable Furnished House,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +6030,4 Bedroom Duplex + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +6031,Newly Built 4 Bedroom Terraced Duplex,Elf Neighborhood Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6032,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +6033,Newly Built 4 Bedroom Detached Duplex,Harris Drive Vgc Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +6034,Offplan 3bedroom Flats,Chief Collins Str Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6035,Brand New 4 Bedroom Semi Detached Duplex With Nice Fittings,"By 2nd Toll, Well Secured Estate Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +6036,Massive 6 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +6037,Luxurious 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +6038,Land For Sale,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ologolo +6039,4 Bedroom Terrace Duplex,Salem Ilasan Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6040,Affordable 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6041,Two Plots Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6042,4 Bedroom Terrace With 3 Floors,Victoria Arobieke Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6043,6 Bedroom Fully Detached Duplex With Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +6044,Land,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Osapa London +6045,3 Bedroom Apartment, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +6046,40 Units Of 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +6047,Newly Constructed Luxurious 4 Bedroom Semi Detached Duplexes,Harris Drive By Vgc Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +6048,5 Bedroom Mansion For Sale In Lekki Phase I,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6049,4 Bedroom Terrace Duplex,Kusenla Ikate Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +6050,Lovely 5 Bedroom Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +6051,Newly Built 5bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6052,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +6053,4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Chevron +6054,Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6055,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +6056,Finished 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,0 baths,5 Toilets,Victoria Garden City +6057,5 Bedroom Fully Detached Duplex With A Bq,Bera Estate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +6058,"4 Bedroom Terrace With Bq, Swimming Pool And Gym",Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +6059,Semi Detached Duplex,Alpha Beach Road Beside Admiralty Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Lekki +6060,Luxury 4 Bedroom Semi Detached Apartment,Vgc Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +6061,Serviced Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6062,"4 Bedroom Terrace With Bq, Swimming Pool And Gym",Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +6063,Very Spacious 5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6064,Newly Built 3 Bedroom Fully Detached Bungalow + Bq,Lekki Lagos,₦,"30,100,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +6065,5 Bedroom Terrace House,"Oral Estate, After The 2nd Toll Gate, Lekki Epe Express Way, Oral Estate Lekki Lagos",₦,"70,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +6066,Luxury 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +6067,Luxury 2bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +6068,4 Bedroom Semi Detached House With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +6069,Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6070,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +6071,2 Bedroom Flat,Off Kunsela Road Ikate Lekki Lagos,₦,"70,000,000",1,0,1,2 beds,2 baths,3 Toilets,Ikate +6072,4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6073,Brand New Spacious 3 Bedroomterrace Duplexes,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +6074,Spaciously Built Luxury 5 Bedroom Semi Detached Duplex With Bq And Lush Private Cinema,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,6 beds,5 baths,6 Toilets,Ikota +6075,4 Bedroom Terrace Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,3 Toilets,Chevron +6076,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +6077,Brand New 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6078,5 Bedroom Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +6079,Well Built 4 Bedroom Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +6080,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +6081,Brand New 4 Bedroom Fully Detached With A Room Bq,Lekki Lagos,₦,"75,000,000",0,0,1,4 beds, baths, Toilets,Other Lekki +6082,"88 Units Of 2bedroom Apartment (2 Toilets + Guest, Fitted Kitchen) And 4 Bedroom Terrace Duplexes (3 Toilets + Guest, Fitted Kitchen )",Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +6083,4bedroom Detached Duplex,Sangotedo Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6084,Spacious 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6085,Very Beautiful 5 Bedroom Detached Duplex In A Lovely Estate With 24 Hours Light And Good Security,Orchid Road Chevron Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +6086,Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +6087,Land With Foundation,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6088,6 Unit Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6089,Very Spacious 2 Bedroom Flat,Ikate Lekki Lagos,₦,"37,000,000/year",0,0,0,2 beds,3 baths,3 Toilets,Ikate +6090,A 20000sqm Of A Dredged Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6091,Exclusive Lovely 5 Bedroom Fully Detached Duplex With 2 Room Bq,Logos Church Street Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6092,Residential Plot Of Land Measuring 666sqm With Governor's Consent,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Osapa London +6093,3 Bedroom Luxury Apartment With Bq With 24 Hour Power,Prime Water View Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6094,Spacious 3bedroom Serviced Apartment With A Bq,Romay Garden Estate Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +6095,3 Bedroom Apartment,Agungi Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +6096,Block Of 4 Flats Of 2 Nos Of 2 Bedrooms And 2 Nos Of Mini Flats,Ifako Lekki Phase 2 Lekki Lagos,₦,"55,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +6097,"Well Maintained 2 Bedroom Flat With Contemporary Finishings In A, Secured Estate",Chevron Lekki Lagos,₦,"37,000,000",1,0,1,2 beds,2 baths,3 Toilets,Chevron +6098,Whales County 2,Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6099,4 Units Of 3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +6100,4 Bedroom Town House,Ike Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +6101,The Wealth Place,Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6102,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,6 baths,7 Toilets,Chevron +6103,Luxury Serviced New 2 Bedroom Flat,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +6104,Brand New 4 Bedroom Terrace House With A Spacious Bq,Kunselsa Road Ikate Lekki Lagos Ikate Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6105,4bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6106,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +6107,Newly Built 3brdroom Flat,Lekki Right. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +6108,4 Bedroom Fully Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6109,4bedroom Terrace With Pool,2nd Toll Gate Orichd Road Oral Estate Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +6110,New Off Plan Serviced 2 Bedroom Apartment,Royal Pine Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +6111,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets,Agungi +6112,Superbly Furnished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Agungi +6113,4 Bedroom Duplex,Idado Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6114,4 Bedroom Maisonette+bq,Pelican Hotel Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +6115,Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6116,4bedroom Tastefully Finished Semi Detached Duplex,Ikota G.r.a Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +6117,Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6118,Newly Built 5 Bedroom Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6119,Waterfront 2000sqm Land 5 Bedroom Detached House Plus 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,4 baths,0 Toilets,Lekki Phase 1 +6120,Newly Built 2bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,1,0,2 beds, baths, Toilets,Other Lekki +6121,4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Chevron +6122,3 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +6123,Massive Water Front Land, Ilasan Lekki Lagos,₦,"130,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6124,Newly Built 4 Bedroom Terrace In A Serene Environment,Vgc Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets,Victoria Garden City +6125,Brand New Spacious 2 Bedroom Flats,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +6126,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6127,Well Detailed 5 Bedroom Fully Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,7 Toilets,Ikate +6128,Amazing 6 Bedroom Detached Mansionette,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,0,0,6 beds,7 baths,7 Toilets,Chevron +6129,Beautifully Designed 5bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +6130,Beautiful And Homely 5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6131,5 Bedroom Duplex,Chevy'view Estate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +6132,Lovely 4 Bedrooms Detached Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6133,4 Bedroom Semi Detached Home,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +6134,Decently Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6135,2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +6136,4 Bedroom Duplex,Chevy'view Estate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +6137,Izu Court,Chevron Lekki Lagos,₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6138,Majestic 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +6139,Brand New 4 Bedroom Fully Serviced Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6140,An Inexplicable Fully Furnished 6 Bedroom Fully Detached Duplex,"Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"150,000,000",0,0,1,0 beds,6 baths,8 Toilets,Chevron +6141,Spacious Four Bedroom Semi Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets,Ikate +6142,Amazing 5bedroom Detached Mansionette Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +6143,Newly Built 2 Bedroom Apartments,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +6144,5 Bedroom Duplex,Chevy'view Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6145,Fully Automated 5 Bedroom Detached Smart House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6146,4 Bedroom Maisonette With A Study/home Office & Bq (off Plan),Off Durosimi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6147,4 Bedroom Terraced Duplex,Ikota Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +6148,5 Bedroom Detached Duplex + Bq On 421.227 Sqm (gov. Consent),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6149,Excellent Finishing 4 Bedroom Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +6150,Luxury 3 Bedroom Furnished Apartment With Fitted Kitchen & 24/7 Electricity,Horizon 2 Estate By Meadows Hall Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +6151,Brand New 6 Units 3 Bedroom Terrace Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Ikate +6152,Equisitely Finished 5 Bedroom Detached Duplex With A Bq,Alternative Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6153,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6154,4 Bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +6155,5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6156,Exquisite 5 Bedroom Semi Detached Duplex + Bq & Terrace,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6157,"1,005sqm Vacant Land Plot With C Of O",Pinnock Estate Jakande Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6158,5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6159,25 Plots Of Fenced Vacant Land With C Of O,Facing Expressway Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Chevron +6160,"10,000sqm Fenced Vacant Land (governor's Consent)",Opp. House On The Rock Church Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +6161,5 Bedroom Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6162,New House 5 Bedroom Spacious Detached Duplex,Alternative Chevron Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6163,Newly Built 5 Bedroom Detached Duplex With A Room Bq,Alternative Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6164,10 Units 2 Bedroom & 2 Units 4 Bedroom Apartment,Chevy View Estate By Chevron Hq Chevron Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6165,5 Bedroom En Suite Detached Duplex,Chevron Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6166,3 Bedroom Maisonette,Lekki Lagos,₦,"79,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +6167,Serviced 2bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +6168,4 Bedroom Semi Detached With Bq,Harris Drive *(shapata)* By Vgc Off Lekki Epe Express Road. Vgc Lekki Lagos,₦,"77,500,000",1,1,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6169,3 Bedroom Penthouse With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6170,4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +6171,Well Finished 4 Bedroom Terrace Duplex With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6172,A Well Finished 2 Bedroom Flat,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +6173,A Well Finished 3 Bedroom Maisonette Apartment,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +6174,Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6175,Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6176,4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6177,Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6178,Beautiful 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6179,Pretty Well Built 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +6180,Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6181,Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6182,Luxurious 3 Bedroom Penthouse,Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +6183,4 Bedroom Terrace,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +6184,Eco Friendly 3 Bedroom Apartment,Emcel Apartments Is Located At Nicon Town Lekki Epe Express Way Intersection Adjacent Enyo Fuel Station Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +6185,3 Bedroom Apartment,Godmade Connect Court 4 Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6186,Smart Features 2 Bedroom Flat,Court 4 Estate Is Situated At Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +6187,Land,Orange Island Lekki Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6188,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"64,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6189,4 Plots Of Land,Oral Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6190,4 Bedroom Duplex,Alfa Beach Road Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +6191,3 Bedroom Terraced House,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +6192,Plot Of Land,Cowrie Greek Estate Ikate Lekki Lagos,₦,"235,000,000",0,0,0, beds, baths, Toilets,Ikate +6193,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6194,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6195,3 Plots Of Land,Chevy Estate Chevron Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Chevron +6196,Land,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6197,4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6198,60 Hectares Of Land,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6199,Plot Of Land,Arcadia Estate By Pinnock Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6200,3 Bedroom Bungalow,Orchid Road Chevron Lekki Lagos,₦,"26,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +6201,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +6202,5 Bedroom Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +6203,Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6204,4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6205,4 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6206,50 Plots Of Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +6207,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +6208,Land For Sale In Lekki Phase I,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6209,3 Bedroom Apartment,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +6210,3&2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +6211,4 Bedroom Semi Detached Duplex,2nd Toll Plaza Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6212,3 Bedroom Penthouse + Bq,Evermark Chevy Castle By Atlantic Center Oral Estate Chevron Mall Uba Chevron Plc Ltd Chevron Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +6213,4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6214,Newly Built 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6215,Newly Built 5 Bedroom Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +6216,Land,Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6217,4bedrooms Fully Detached Duplex With Bq,Victoria Garden City Vgc Lekki Lagos,₦,"75,000,000/day",0,0,1,4 beds,4 baths,5 Toilets,Victoria Garden City +6218,Luxury 5bedroom Fully Detached Duplex In A Serene Estate,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6219,Luxury 5bedroom Mansionette In A Serene Estate,Lekki Lekki Phase 1 Lekki Lagos,₦,"370,000,000/month",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6220,Spacious 4bedroom Duplex House,Thomas Lekki Lagos,₦,"50,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6221,Cofo Land On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +6222,Spacious 4bedroom Terrace Duplex House With Cofo,Eleganzer Chevron Lekki Lagos,₦,"56,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6223,Newly Built Spacious 2 Bedroom Flat With C Of O,Eleganza Chevron Lekki Lagos,₦,"30,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +6224,4bedroom Semi Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"7,000,000",0,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +6225,Affordable Housing,Oral Estate Ikota Lekki Lagos,₦,"77,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6226,Distress Sale 4 Bedroom Terrace Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +6227,3 Bedroom Manssionette,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6228,Newly Built 2 Bedroom Apartment,2nd Toll Gate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +6229,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6230,Luxury 5 Bedroom Detached Duplex With Open Terrace,Lekki County Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +6231,Luxury 5 Bedroom Duplex With Bq,Lake View Park Estates... Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +6232,Chevron Water Front All Time Luxury Duplex With First Floor Water Fall & Infinity Swimming Pool,Chevron Drive Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6233,4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6234,Magnificent Semi Fully Detached Duplex,Megamouns Estate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,6 baths,0 Toilets,Other Lekki +6235,Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +6236,Location: Lekki Phase 1 Off Freedom Way Size: 8 Hectares Price: 13b Title: Cofo ??[redacted],Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +6237,1000 Sqm Water View Land @ Lekki Phase 1 With C Of O,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +6238,Decently Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets,Agungi +6239,900sqm Of Land,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6240,900sqm Of Land,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6241,"Newly Built 2&3bedroom Apartments With Bq, Swimming Pool And Gym",Kohinoor Ikate Lekki Lagos,₦,"75,000,000/month",1,1,0,3 beds,3 baths,3 Toilets,Ikate +6242,An Office Building For Sale At Lekki Epe Expressway Lekki,Igbo Efon Lagos Igbo Efon Lekki Lagos,₦,"5,000,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6243,1000sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6244,650sqm Of Land,Lekki Phase 2 Lekki Lagos,₦,"185,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +6245,1000sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6246,Newly Built 5 Bedroom Fully Detached House With Bq And Cinema Room (all Rooms Ensuit),Ikate Lekki Lagos,₦,"190,000,000/day",1,1,0,5 beds,5 baths,6 Toilets,Ikate +6247,917.046sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6248,Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6249,Super Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6250,Brand New 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +6251,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +6252,Newly Built 3bedroom Townhouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6253,Luxury 3bed Townhouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6254,Luxury 3bed Townhouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6255,Newly Built 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6256,Luxury Brand New 5 Bedroom Detached House With Swimming Pool And Bq For Sale In Ikate,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6257,Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6258,4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolor Lekki Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +6259,Nicely Built 2bed Apartment Salling For 50m,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +6260,Fully Automated 4 Bedroom Maisonette For Sale In Ikate Elegushi,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6261,5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Ikota +6262,5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Ikota +6263,5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6264,Royal 4 Bedroom Maisonette,Evermark Chevy Castle Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +6265,Brand New 5 Bedroom Semi Detached Duplex In A Secured Neighborhood,Ikate Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6266,Newly 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Ikate Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Ikate +6267,"Newly Built And Executive 5 Bedroom Semi Detached Duplex For Rent At Lekki, Lagos.",Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +6268,For Sale 2 Units Of 5 Bedroom Duplex With At Pinnock Beach Estate Osapa London Lekki Lagos,Pinnock Estate Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +6269,"Luxurious 5 Bedroom Fully Detached Duplex For Rent At Lekki Phase 1, Lagos",Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +6270,4 Bedrooms Maisonette*,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6271,A Standard 2bedroom Terrace,Ikota Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikota +6272,For Sale Newly Built 5 Bedroom Duplex At Norther Foreshore Estate Lekki Lagos,Norther Foreshore Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +6273,Luxury 5 Bedroom Detached Duplex,Cowrie Creek Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6274,5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6275,4 Bedroom Terrace Duplex *,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6276,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +6277,Well Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6278,Luxury 5 Bedroom Detached House*,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6279,5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6280,5 Bedroom Detached Duplex *,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6281,Beautiful 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6282,5 Bedroom Detached Duplex*,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6283,Luxuriously Structured 5 Bedroom Detached Duplex For Sale At Orchid Road. Lekki,Orchid Rd Lekki Lagos,₦,"175,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +6284,5 Bedroom Detached Duplex *,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6285,5 Bedroom Detached House*,Lekki County Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6286,Luxury 5 Bedroom Detached Home*,Lekki County Home Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6287,Newly Built 4bedroom Semidetached Duplex In Vgc,Vgc Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +6288,Newly Byuilt 5 Bedrooms Detached Duplex At Lekki,Northern Foreshore Estate Lekki Lekki Lagos,₦,"270,000,000",0,1,0, beds, baths, Toilets,Other Lekki +6289,4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6290,Contemporary Five Bedrooms Fully Detached Duplex For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6291,Contemporary Five Bedrooms Fully Detached Duplex For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6292,For Sale Newly Built Luxurious 5 Bedroom Fully Detached Duplex In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6293,For Sale Newly Built Luxurious 5 Bedroom Fully Detached Duplex In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6294,4bedroom Fully Detached For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6295,2 Bedroom Terrace Duplex For Sale 4 Units,Orchid Lekki Second Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds, baths, Toilets,Ikota +6296,4bedroom Fully Detached For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6297,Newly Built 4 Bedroom Semi Detached For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +6298,2 Bedroom Terrace Duplex For Sale 4units,Orchid Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets,Lekki Phase 1 +6299,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Ikate +6300,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6301,4bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +6302,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6303,2 Bedroom Maisonette*,Abijo Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6304,4bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets,Ikota +6305,4bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Ikota +6306,600 Sqm Land*,Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6307,4 Bedroom Semi Detached,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +6308,Newly Built 4 Bedroom Duplex,"Ikota, Lagos Ikota Lekki Lagos",₦,"55,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ikota +6309,Fenced And Sandfilled Land In Ikate Is Available,Seagate Estate Ikate Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Ikate +6310,New House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +6311,3 Units Of 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets,Ikate +6312,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,Ikate +6313,1300 Sqm Land*,"Admiralty Road, Lekki Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6314,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets,Chevron +6315,1300 Sqm Land*,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6316,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets,Ikate +6317,Luxury 5 Bedrooms Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6318,4 Bedroom Terraced House*,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6319,Brand New And Massive 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6320,"3,594sqm Bare Land For Sale In Vgc Prime Water Front",Vgc Lekki Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +6321,5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6322,4 Bedroom Semi Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +6323,5500sqm Land For Sale,Behind Nicon Town Ikate Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets,Ikate +6324,4 Bedroom Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +6325,5 Bedroom Duplex,Osapa London Lekki Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +6326,5 Bedroom Pent House Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6327,6 Units Of 5 Bedroom Detached Houses With Bq,Felix Alarape Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +6328,300sqms Land*,"Baale Street, Itedo Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6329,4 Bedroom Terrace Apartment With Bq,Off Orji Murray Street Ilasan Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6330,930sqm Corner Piece*,Pinnoch Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6331,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6332,Land*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6333,1 & 2 Bedrooms Apartments,Off Orji Murray Street Ilasan Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +6334,5 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6335,4 Bedroom Terraced Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +6336,5 Bedroom Detached Duplex*,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6337,Tasefully Furnished And Well Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +6338,Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6339,Brand New 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6340,4 Bedrooms Terrace *,"Victoria Crest 3, Orchid Road Lekki Lagos",₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6341,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +6342,Spacious 2bedroom Flats*,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6343,New House,Vgc Lekki Lagos,₦,"480,000,000",1,1,0,4 beds, baths, Toilets,Victoria Garden City +6344,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,3 baths,3 Toilets,Other Lekki +6345,2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +6346,Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +6347,2 Bedroom Terrace Duplex,"Orchid, Chevron, Eleganza, Lekki Conservation Centre Chevron Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,0 baths,3 Toilets,Chevron +6348,Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +6349,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6350,3bedroom Flat,Inside Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6351,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6352,Furnished 5bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6353,4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6354,Well Finished 4bedroom Semi Detached Duplex With A Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +6355,Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +6356,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"6,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +6357,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +6358,9 Units Of 4 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6359,Brand New 2 Bedroom Detached House,Second Tole Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,0 baths,0 Toilets,Chevron +6360,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +6361,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +6362,Finished 5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6363,4bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6364,Furnished 4bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +6365,"1,2,3 Bedroom Flat",Drive Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +6366,Land,Drive Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +6367,5 Bedroom Detached Duplex,"Vgc, Mega Chicken, Ikota Shopping Complex, Lekki County Estate, Ikota Ikota Lekki Lagos",₦,"150,000,000",0,1,0,0 beds,5 baths,6 Toilets,Ikota +6368,5 Bedroom Semi Detached Duplex,"House On The Rock, Freedom Way, Monarch, World Oil, Jakande Ilasan Lekki Lagos",₦,"150,000,000",0,1,0,0 beds,5 baths,6 Toilets,Other Lekki +6369,Newly Built 5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +6370,5 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6371,Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6372,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +6373,3 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6374,4bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6375,5bedroom Detached Duplex,Westend Estate Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6376,Land,Vgc Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6377,Land,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6378,5bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6379,4 Bedroom Fully Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +6380,3 Units Of 4 Bedrooms Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Ikate +6381,Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6382,Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6383,Land,Ologolo Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6384,Beautifully Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6385,7&half Plots Of Land,Idado Estate Idado Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6386,4bedroom Detached Duplex,"Gbara/ologolo, Lekki Ologolo Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6387,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +6388,400sqm Hampton Bay Estate Beside Cowrie Creek Ikate N120million,Estate Beside Cowrie Creek Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikate +6389,Newly Built Executive 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +6390,5 Bedroom Spacious Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6391,Luxurious 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6392,2 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6393,"1,990.68 M2 Bare Plot Of Land",Lekki Phase 1 Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6394,Luxury 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +6395,Tasefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +6396,Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6397,Tasefully Finished 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +6398,Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +6399,Contemporary 5 Bedroom Detached Home,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0, beds, baths, Toilets,Other Lekki +6400,5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6401,Luxury 5 Bedroom Fully Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +6402,4 Bedroom Home,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6403,4 Bedroom Fully Detached Duplex With Bq\,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6404,4 Bedroom Fully Detached Duplex With Bq,"Orchid Road, Lekki Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6405,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6406,Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6407,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +6408,Luxury 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6409,3 Bedroom Flat,Ikate Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikate +6410,Luxury 4 Bedroom Home,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6411,5 Bedroom Fully Detached Duplex,Vgc Estate Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6412,5bedrooms Smart Home,Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +6413,"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Fatai Arobieke Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6414,"Newly Reburbished Luxury 4 Bedroom Fully Finished And Fully Servicedd Etached Duplex + Bq With Air Conditioning , Fully Fitted Kitchen And 2 Bedroom Guest Chalet House As Bq",Napier Garden Estate By Vgc Lekki. Vgc Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +6415,Extraordinary 4 Bedroom Terrace Duplex,Off Freedomway Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6416,New House,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 1 +6417,Brand New Luxury 2 Bedroom Serviced Terrace Duplex Plus Bq,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikota +6418,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +6419,3 Bedroom Flat/apartment,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +6420,Brand New Spacious 5bedroom Detached Duplex,"Ikate Elegushi, Off Gbagbala Street Ikate Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,6 Toilets,Ikate +6421,Paradise Newly Built 3 Bedrooms Flat,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +6422,Land,Blue Waters Lekki Right Oniru Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6423,"4bedroom Terrace Townhouse With A Bq, Ample Parking Space",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6424,A Well Maintained 4 Bedroom Semi Detached Duplex With A 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +6425,A Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +6426,A Beautifully Built 4 Bedroom Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6427,Land,"Livingstone Estate,orchid Road Chevron Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6428,Fully Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6429,Brand New 5 Bedroom Fully Detached,Bakare/bera Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +6430,Serviced 2 Bedroom Flat,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +6431,Newly Built Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Orchid Rod Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6432,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6433,Brand New 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Ikota +6434,A Plot Of Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +6435,Newly Built 4 Bedroom Terraced Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6436,Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +6437,Beautifully Built 5 Bedroom Detached Duplex With A Bq,"Megamond, Lekki County Homes Ikota Lekki Lagos",₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6438,"Exclusively Finished 5bedroom Fully Detached Duplex With Bq, At Chevron, Lekki",Chevron Lekki Lagos,₦,"120,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Chevron +6439,Land,Twin Lakes Estate. Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6440,Newly Built 6 Terrace Duplex,"Osapa London,lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,6 beds,0 baths,0 Toilets,Osapa London +6441,Land,"Block 134 Plot 10, Off Oriwu Street, By Petrocam Service Station Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6442,Brand New 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +6443,Lovely 4bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6444,Executive 2 Bedroom Flat Apartments With A Bq,Nike Art Gallery Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,0 Toilets,Ikate +6445,An Executive Brand New 4 Bedroom Fully Detchead With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6446,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6447,5 Bedroom Detached House,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +6448,5 Bedroom Luxury Duplex For Sale At Pinnock Estate Osapa London Lekki,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths, Toilets,Lekki Phase 1 +6449,5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +6450,2 Plot Land,African Lane Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6451,4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6452,A Plot Of Land,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6453,A Brand New 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +6454,A Brand New 4 Bedroom Semi Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6455,A Newly Built 5 Bedroom Detached Duplex With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +6456,Brand New 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6457,Newly Built 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6458,A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +6459,A Newly Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +6460,A Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6461,A Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6462,Nicely Finished 4bedroom Semi Detached Duplex Plus A Room Bq,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6463,4 Bedroom Terraced Duplex With Bq,Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6464,Newly Built 4 Bedroom Semi Detached House With Bq,Off Bosun Adekoya Street Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6465,Land,"Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6466,Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool Inside An Estate At Orchild Lekki Lagos.,Orchid Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +6467,Prime Residential Plot In Orange Island Land Size : 1000sqm Tittles : C Of O. *price: N220million*,Orange Highland Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6468,Fully Serviced 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6469,512sqm Of Land,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6470,4 Bedroom Semi Detatached Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +6471,Lovely 4 Bedroom Terrace,Silver Spring Estate Agungi Lekki Lagos,₦,"80,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets,Agungi +6472,5bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6473,5 Bedroom Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6474,4plots Together,Orchid Road Very Close To Second Toll Gate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6475,Newly Built 5bedroom Fully Detached Duplex With Bq At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6476,Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,0 baths,0 Toilets,Ikate +6477,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +6478,Land,"Rover Estate, Ogombo Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6479,Furnished 3bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,0 baths,0 Toilets,Ikate +6480,Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +6481,Land,"Facing Lekki Epe Expressway, By Elemoro Before Bogije Bus Stop Ibeju Lekki Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6482,695sqm Of Well Located Land,"Ivy Homes Estate, Lekky County Road Ikota Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets,Ikota +6483,Fully Furnished 5 Bedroom Fully Detach With Pool And Gym,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6484,Newly Built All Rooms En Suite 4 Bedroom Duplex With Boy's Quarters And Swimming Pool,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +6485,Newly Built Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq, Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +6486,6 Units Of Spacious Serviced 3 Bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +6487,Newly Built 4bedroom Terrace Duplex With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6488,2 & 3 Bedrooms Luxury Apartments,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6489,Two (2) Units Of 3 Bedroom Apartments + Attached Bq, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6490,Newly Built 4bedroom Semi Detached Duplex,Monastery Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +6491,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +6492,Event Centre,"Along Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"1,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +6493,Affordable Luxury Lekki Apartments,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6494,Designed 6bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +6495,"Cornerpiece Warehouse In A Secured, Gated And Highly Investment Worthy Location","Olokonla,lekki Lekki Phase 2 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +6496,Luxury 5bedroom Fully Detached Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +6497,Newly Built 4 Bedroom Terrace Duplex.,2nd Lekki Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +6498,5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +6499,Newly Built 2 Bedroom,Ikate Agungi Conservation Road Lekki Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,0 baths,0 Toilets,Chevron +6500,Glitter 5 Bedrooms Detached Duplex With Maiden Quarters,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6501,Brand New 2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +6502,Premium Serviced Plots Of Land For Sale,"Orchid Road, Off Lekki Epe Expressway, Just Passed The Second Toll Gate. Vgc Lekki Lagos",₦,"26,000,000/sqm",1,0,0, beds, baths, Toilets,Victoria Garden City +6503,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +6504,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6505,56 Units Of 4 Bedroom Terrace With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"7,840,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +6506,Brand New Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +6507,"1,2.3 Bedroom Flat",Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,2 baths,2 Toilets,Lekki Phase 2 +6508,Brand New Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +6509,Lovely 5 Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +6510,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +6511,Luxury 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +6512,Adorable 4 Bedrooms Detached Duplex Newly Built With Bq,Southern View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +6513,4 Bedroom Semi Detached Duplex Home With A Bq,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +6514,Fully Detached 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +6515,Automated 6 Bedroom Fully Detached Duplex +2 Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,7 baths,0 Toilets,Osapa London +6516,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +6517,Luxury 3 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6518,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6519,4 Bedroom Terrace Duplex,"Along Orchid Hotel Road, By 2nd Toll Gate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6520,Service 3 Bedroom With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6521,Luxury 5 Bed Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +6522,Prime Commercial Land,Ikate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6523,House,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Osapa London +6524,Contemporary 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6525,Commercial Property,Oniru Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6526,5bedroom Fully Detached Duplex With Swimming Pool,Lekki County Estate Owned By Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6527,"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Henry's Court Orchid Road, Lagos State. Jakande Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +6528,Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +6529,Newly Built Luxury 6 Bedroom Fully Furnished And Serviced Detached Duplex Plus Bq,Lekki Scheme 2 Lekki Lagos State Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 2 +6530,Executive Luxury 3 Bedroom Apartment In Atlantis2 Estate Ologolo,Ologolo Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +6531,4 Bedroom Luxury Furnished Massionette Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6532,5 Bedroom Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +6533,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000/sqm",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6534,Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +6535,Classy 3 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6536,4 Bedroom Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6537,Uncommon 4 Bedrooms Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6538,5 Units Of A 4 Bedroom Terrace Duplex With Room Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +6539,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6540,4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6541,5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +6542,4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6543,Exquisite 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6544,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +6545,Spacious 4 Bedrooms Detached Duplex With Bq,"Agungi, Lekki Agungi Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +6546,5 Bedroom Fully Detachedf Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +6547,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +6548,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Chief Collins Off Fola Osibo Road, Godwin Emene Street Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +6549,3 Bedroom Flat,Bridgegate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +6550,Newly Refurbished Luxury 28 Serviced Rooms Boutique Hotel,"Remi Olowude Street, Pinnacle Filling Station, Maruwa Lekki Lagos State. Lekki Phase 1 Lekki Lagos",₦,"700,000,000",1,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +6551,1 Unit 4 Bedroom Terrace Duplex On 3 Floors,= Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +6552,Pantheon Smart Homes,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Chevron +6553,"A Land Measuring 19,000sqm",Located Opposite Abraham Adesanya Round About Beside Hfp Shopping Complex. Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6554,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ologolo +6555,Fantastic 5 Bedrooms Detached Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6556,Brand New 5 Bedrooms Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6557,Land,"Lekki Scheme 2, Block 18, Plot 20, Road 27 (abraham Adesanya). Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +6558,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,0 baths,0 Toilets,Ikota +6559,4 Bedrooms Terrace Duplex,Osapa London Jakande Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +6560,4bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +6561,Newly Built 4bedrooms Terraced Duplexes,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +6562,Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +6563,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6564,1 Bedroom Apartment,Second Tole Gate Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,2 baths,0 Toilets,Chevron +6565,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6566,Newly Built 5 Bedroom Detached Duplex In A Secured Environment,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6567,Fully Serviced 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6568,Commercial Property,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6569,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6570,2 Bedroom Furnished Serviced Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,0,1,2 beds,2 baths,3 Toilets,Ikate +6571,1 Bedroom Serviced Maisonette,Ikate Lekki Lagos,₦,"30,000,000",1,0,0,1 beds,1 baths,2 Toilets,Ikate +6572,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +6573,Exquisite 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +6574,"Brand New Luxury 5 Bedroom Self Serviced Detached Duplex Plus A Room Bq With Air Conditioning , Fully Fitted Kitchen","Chevron Alternative Route, Lekki . Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +6575,Classic 4 Bedroom Semi Detached Duplex,Gated Estate Around Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +6576,Land,Ilasan Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6577,5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6578,Luxury Built 3 Bedroom Flat Apartments,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6579,Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6580,Masterpiece 5 Bed Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6581,Luxury 5 Bedroom Fully Detached Duplex,Victory Pack Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6582,2000 Sqms Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6583,Functional 80rooms Hotel,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +6584,Land,Seaside Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6585,Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6586,Land,Ikate Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6587,100sqms Of Residential Land,Vgc Estate Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6588,Gorgeous Luxury 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6589,10 Plots Of Land,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6590,Contemporary 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6591,Newly Built 5 Bedroom Luxury House,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6592,3 Plots Of Dry Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6593,530sqm Plot Of Land,Pinnock Beach Estate Osapa Jakande Lekki Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6594,Luxury 5 Bedroom Home,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +6595,Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6596,4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +6597,Exquisite 4 Bedroom Town House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6598,Exquisite 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +6599,Bedrooms Terrace Duplex With Your Personal Gate,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +6600,5bedrooms Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +6601,4bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6602,4 Bedroom Fully Detached Duplex With A Penthouse,"Second Toll Gate, Lekki. Lekki Lagos",₦,"200,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +6603,5 Bedroom Semi Detached Home,Lekky County Ikota Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +6604,5 Bedroom Detached House,Ologolo Lekki Ologolo Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +6605,2 Units Of 4 Bedroom Detached House,African Lane Lekki Scheme One Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +6606,4 Bedroom Semi Detached Duplex,"Agungi Estate Off Lekki Epe Expressway, Lekki Lagos Agungi Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +6607,5bedrooms Duplex With Cinema And Swimming Pool,Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +6608,5 Bedrooms Duplex With Swimming Pool,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6609,4bedrooms Detached Duplex,Ilasan Lekki Ilasan Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +6610,4bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6611,20 Units Of 4 Bedroom Terrace Duplexes,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +6612,4bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6613,4 Bedroom Terrace With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +6614,Newly Built 3 Bedroom Terrace Duplex Available,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +6615,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +6616,5 Bedroom Duplex With 2 Bq,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets,Chevron +6617,4bedrooms Semi Detached,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6618,2 Bedroom Maisionete,Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +6619,3 Bedroom Massionate,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +6620,Newly Built 3 Bedroom Flat With A Bq,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6621,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds, baths, Toilets,Chevron +6622,Newly Built 4bedrooms Semi Detached Duplex For Sale,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6623,500sqm Land,"Idera Scheme, Directly Facing Lekki Expressway, Eleko, Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6624,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +6625,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Chevron +6626,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +6627,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +6628,4bedrooms Terrace Duplex,S Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +6629,Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6630,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +6631,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +6632,6 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,0 baths,0 Toilets,Ikate +6633,5bedrooms Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +6634,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6635,4bedrooms Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +6636,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +6637,Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6638,"Strategically Located Commercial Property Measuring About 3,000 Sqmtrs",On A Major Road Lakeview Estate Ikota Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6639,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6640,756 Sqm Front Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6641,2400sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6642,2400sqm Land,Ikate Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6643,1200sqm Land,Spar Road Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6644,650sqm Of Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6645,1050sqm Land,Freedom Way Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6646,5 Bedroom Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6647,Luxurious 5bedrooms Duplex,Ikota Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6648,Contemporary Styled 2bedroom Terrace Duplex,Off Kushenla Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6649,Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +6650,"10,000sqm Land",Facing Freedom Way By Ikate Axis Ikate Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6651,5 Bed Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +6652,1075sqm Land,Seagate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6653,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6654,The Bridge Hotel & Apartments,Lekki Lagos,₦,"7,500,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6655,4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +6656,Land,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6657,Land,Periwinkle Estate Freedom Way Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6658,5bedrooms Duplex With Swimming Pool,Lekki County Ikota Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6659,Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +6660,5 Bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6661,Pantheon Smart Homes,2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths,5 Toilets,Chevron +6662,Finished Waterside 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +6663,5bedrooms Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +6664,3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6665,5bedrooms Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +6666,5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6667,Orchid Road Lands,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6668,Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6669,Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6670,Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6671,450sqm Of Land,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6672,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6673,Contemporary 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6674,Land,Orchid Hotel Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6675,5 Bedroom Detached House,James Pinnock Place Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6676,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6677,Land With A Structure,Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6678,Bareland,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6679,Fully Automated 6 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6680,Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6681,Land,Lekki Phase 1 Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6682,400sqm Land,Hampton Bay Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6683,Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6684,Land,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6685,4bedroom Semi Detached Duplex With A Room Bq,"Ikota Villa, Lekki Ikota Lekki Lagos",₦,"60,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikota +6686,Four Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,6 Toilets,Victoria Garden City +6687,Newly Built 2 Units Of 5bedroom Duplex In Orchid,Lakewiuw Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +6688,Residential Land In Lekki Phase One,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"830,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6689,"Excellently Finished, Luxury And Fully Automated 5 Bedrooms Smart Home In Lekki.1 With Swimming Pool(ola)",Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,8 Toilets,Other Lekki +6690,Exquisitely Finished 4bedroom Fully Detached Duplex,Z Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +6691,Brand New Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1bq Kn,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6692,Magnificent Contemporary Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool.jw, Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6693,"Contemporary 5bedroom Fully Detached Duplex In A Gated Estate, Well Secured And Classy",Lekki Property Property Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +6694,Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +6695,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +6696,Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6697,Luxurious 6 Bedroom Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,8 Toilets,Lekki Phase 1 +6698,Newly Built 4 Bedroom Duplex,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +6699,Fully Detached Duplex 5 Bedroom,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +6700,4 Bedroom Semi Furnished Duplex,Chevron Lekki Ado Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +6701,Commercial Land,Located Between Jakande Chevron Bustop Ologolo Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6702,Spacious 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +6703,100 Hectares Of Water Front Land,Lekki Phase 1 Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6704,26 Suites Luxury Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6705,Chevron Water Front All Time Luxury Duplex With First Floor Water Fall & Infinity Swimming Pool Bil,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,8 Toilets,Chevron +6706,Lovely Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6707,Fantastic 4bedroom Fully Detached Duplex Jnf,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +6708,12 Bedroom Fully Detached House Suitable For Hospital / School/lounge,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +6709,Fully Automated 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +6710,5bedrooms Duplex,Ikate Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +6711,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +6712,5 Bedroom Detached Duplex,Q Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6713,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +6714,5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6715,Tastefully Finished 4 Terrace Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6716,"5 Bedrooms Automated Detached Duplex With Swimming Pool, Gym, Cinema Room",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6717,Magnificent 4bedroom Fully Detached Duplex Dr.m,Oral Estate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +6718,Contemporary 5 Bed Fully Detached Duplex In A Gated Estate,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +6719,4bedroom Terrace In Oniru Lekki,Boctrust Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6720,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Pantheon Smart Homes, Chevron 2nd Toll Lekki Expressway. Chevron Lekki Lagos",₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +6721,House,Chevyview Estate Chevron Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +6722,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +6723,4bedroom Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +6724,Land,Seagate Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6725,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +6726,Classy 3 Bedroom Semi Detached Duplex,Behind Romey Garden By Salem Busstop Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +6727,Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +6728,Brand New 4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +6729,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Ikate +6730,4bedrooms Smart Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6731,Newly Built Spacious 2 Bedroom Terrace With Bq Located In A Well Serene Location With Modern Facilities,Vgc Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +6732,Newly Built 4 Bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6733,Luxurious 5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +6734,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +6735,Fully Furnished 5 Bedroom Detached Duplex With Bq,Lakeview Park 2 Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6736,Four Bedroom Semi Detached Duplex,Chevron Drive By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,3 Toilets,Lekki Phase 2 +6737,780sqm Land With A Structure,Stillwaters Estate Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +6738,400sqm Of Land,Hampton Bay Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6739,4 Bedroom Duplex With Pool & Bq,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +6740,Brand Newly Built 4bedrooms Fully & Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6741,Iconic 4 Bedrooms Terrace Duplex Newly Built,"Orchid Road, Lekki Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6742,92 Plots Of Land At Second Round Orchid Road.,Orchid Road Chevron Lekki Lagos,₦,"2,300,000,000",0,0,0, beds, baths,5 Toilets,Chevron +6743,4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000/year",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6744,Super Finished Five Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6745,5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6746,A Newly Built 5 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6747,5bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6748,Newly Built Luxury 3 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6749,5 Bedrooms Duplex,"Tulip Haven Estate Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +6750,Beautifully Built Tastefully Finished Fully Detached 4 Bedroom Luxury House With 2 Rooms Boys Quarter At Megamound Estate Ikota Lekki Lagos,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6751,Luxury 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000/year",1,0,0,2 beds,2 baths,3 Toilets,Ikate +6752,Newly Built 4bedroom Fully Detached Duplex,Chevron. Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +6753,4bedrooms Duplex,Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +6754,Land,Ikate Facing Freedom Way Express Ikate Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6755,3 Bedroom Penthouse With Bq,Lekki Axis Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6756,4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6757,5bedrooms Detached Duplex,R Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6758,4bedrooms Semi Detached Duplex,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6759,Land,Off Freedom Way Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6760,This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +6761,Luxury 2 Bedroom Apartment,Ocean Bay Estate Ikota Lekki Lagos,₦,"36,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikota +6762,Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +6763,Lovely 4bedroom Duplex,Mobil Road After Vgc B4 Ajah Bridge Vgc Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +6764,Newly Built 3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6765,Fully Finished Three Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agungi +6766,Newly Built 4bedroom Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6767,Newly Built Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6768,Contemporary Design Smart 4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +6769,Lovely 3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets,Chevron +6770,4 Bedroom Duplex With 24hrs Cctv Surveillance And Manned Security,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +6771,"Land Measuring Approximately 3,150sqm",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6772,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +6773,Deluxe 5 Bedroom Detached Duplex With Bq Megamond Estate,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +6774,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +6775,Luxurious 5bedrooms Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +6776,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6777,4 Bedroom Semi Detached Duplex In Oral Estate,Cheveron Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths, Toilets,Lekki Phase 1 +6778,4 Bedroom + Bq Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6779,New House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths, Toilets,Lekki Phase 1 +6780,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +6781,Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6782,1 Bedroom Apartment In A Secured And Serene Estate,Ocean Bay Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikota +6783,Land,Ologolo Ologolo Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6784,A Newly Built 4 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6785,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +6786,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6787,House,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets,Chevron +6788,Newly Built 4 Bedroom Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +6789,5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +6790,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +6791,Land,Oral Estate Lekki Lagos,₦,"140,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6792,4bedroom Semi Detached Duplex With Bq Location: Ologolo Lekki Lagos. Price: 95 Million Naira,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +6793,5 Bedroom Fully Detached Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +6794,3bedroom Terrace Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +6795,1 Bedroom Mini Flat Apartments,Spg Road Ologolo Lekki Igbo Efon Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Lekki +6796,"Luxurious 26 Rooms Hotel On 1,400sqm Land On 1,400sqm Land",Along Adetokunbo Ademola Street Victoria Island. Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6797,Newly Built 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +6798,5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6799,Luxury Spacious Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6800,Nicely Finished 3 Bedroom Terrace Duplex,Lekki Garden Phase 5 Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +6801,Land,Ikate Lekki Lagos,₦,"365,000,000",0,0,0, beds, baths, Toilets,Ikate +6802,5bedrooms Duplex,Lekki Counting Ikota Lekki Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6803,3 Bedroom Apartments,"Emcel Apartments, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +6804,5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Elegushi Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +6805,Newly Built 2 Bedroom Flat With A Bq,Nike Art Gallery Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +6806,Newly Built Two And Three Bedroom Apartment In Mufasa Lifestyle Ikate,Mufasa Lifestyle Apartment Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +6807,2 Bedroom Luxury Apartment+bq,Chevron Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6808,A Plot Of Land,Ikate Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6809,4 Plots Of Dry Land,Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6810,Lovely 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +6811,Newly Built 4bedroom Semi Detached Duplex With Bq,Greenland Estate Around Lbs Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +6812,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6813,4bedroom Newly Built Terrace Duplex Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6814,New House,Sangotedo Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths, Toilets,Victoria Garden City +6815,4 Bedrooms Detached Duplex,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +6816,New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,4 beds, baths, Toilets,Osapa London +6817,1340sqm Corner Piece,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6818,Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6819,Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +6820,Newly Built Executive 2bedroom Flat,Orchid Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +6821,Luxury 3 Bedroom Serviced Upper Floor Apartment,Osapa London Lekki Axis Lagos. Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,4 Toilets,Osapa London +6822,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +6823,Newly Built 5 Bedroom Fully Detached Duplex Available,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +6824,"Available 10,000sqm Sand Filled Land (fenced) For Sale At Ikate Close To Blenco Supermarket. Price: N250k Per Square Metre. Title: Governor’s Consent.yes",Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0, beds, baths, Toilets,Ikate +6825,5bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6826,Newly Built 4bedrooms Terrace Duplex For Sale,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6827,Brand New 3 Bedroom Terrace,5 Street Estate Agungi Lekki Lagos,₦,"55,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Agungi +6828,Luxury 2 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,1,0,2 beds, baths, Toilets,Lekki Phase 2 +6829,Fantastic 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +6830,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6831,Luxury 4bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6832,Beautifully Built 3 Bedroom Flat With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +6833,4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +6834,Newly Built Luxury 4 Bedroom Semi Detached Apartment,"By Second Tollgate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +6835,5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +6836,"801sqm Of Land For Sale In Cowrie Creek Estate Off Spar Road, Ikate, Lekki",Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Ikate +6837,New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths, Toilets,Osapa London +6838,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 1 +6839,Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6840,1200 Square Meters Of Land For Sale At Ocean Breez Estate Ologolo Lekki,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Ologolo +6841,4bedroom Semi Detached,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6842,3 Bedroom Duplex,Awoyaya Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6843,Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +6844,5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +6845,5bedrooms Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +6846,Brand New 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +6847,Brand New 3 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +6848,430sqm Of Land,Ogombo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6849,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6850,Modern Clean 3 Bedroom Bungalow Self Compound,"South Point Estate, Ikate Lekki Lagos",₦,"38,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +6851,4 Bedroom Semi Detached Duplex,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +6852,4 Bedroom Detached House With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +6853,Newly Built 4 Bedroom Terrace House,Off Spar Road Beside Nicon Town Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +6854,Newly Built 4 Bedroom With Bq,Le Moriah Residence Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6855,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +6856,5bedrooms Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +6857,2 Bedroom Flat,"Conservation Road, Chevron Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets,Chevron +6858,New House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +6859,Tastefully Finished 4 Bedroom Fully Detached Duplex At Chevron Area Orchid Lekki,Orchid Lekki Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +6860,"Newly Built Luxury 5 Bedroom Well Finished And Fully Serviced Sea View Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki County Homes Lekki Lagos State Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +6861,Contemporary Styled 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6862,Luxury 4bedroom Fully Detached Duplex With Bq,2nd Lekki Tollgate. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +6863,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,6 Toilets,Lekki Phase 1 +6864,1 Full Plot Of Land,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Ikate +6865,I Bedroom Self Contain,Bridge Gate Estate Agungi Lekki Lagos,₦,"1,200,000",0,1,0,1 beds,0 baths,0 Toilets,Agungi +6866,New House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +6867,Brand New 2 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"36,000,000/sqm",0,1,0,2 beds,3 baths,3 Toilets,Agungi +6868,Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6869,New House,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,0 baths,0 Toilets,Chevron +6870,4bedrooms Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6871,House,Idado Igbo Efon Idado Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +6872,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6873,Commercial Land,"...,. Lekki Phase 1 Lekki Lagos",₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6874,8 Flats Of 2 Bedroom,"3 Mary's Place, Ilusemiti Street Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6875,Newly Built 5 Bedroom Duplex In A Mini Estate, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +6876,Comfortable 5 Bedrooms Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6877,"Luxiourious 5bedroom Detached House, At Toll Gate, Lekki",Toll Gate Lekki Lagos,₦,"180,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Other Lekki +6878,Luxury 5bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +6879,Ultimate Value 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +6880,"1,000sqm Of Waterfront",Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6881,"Brand New, Exquisite And Luxuriously Finished 4 Bedroom Semi Detached House With Boys Quarter At Alperton Residences, Lekki, Lagos.","Alperton Residences, Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +6882,Luxury And Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6883,2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +6884,A Land Measuring 2000sqm,Twin Lake Estate Chevron Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6885,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6886,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6887,Residential Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6888,6 Numbers Of 4 Bedroom Terrace Houses With 2 Rooms Bq Each,"Michael Olawale Cole Crescent, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"1,500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6889,Newly Built 4bedrooms Duplex For Sale At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +6890,5 Bedroom Semi Detached Duplex,W Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +6891,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +6892,Available 6 Plot Of Land,Opposite Agungi Lagos Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +6893,A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +6894,5 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +6895,Luxury 4 Bedroom Terrace With 1 Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6896,House,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths, Toilets,Chevron +6897,4 Bedroom Semi Detached Castle Duplex + Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6898,3 Plots Of Land,Bogije Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6899,A Newly Built 4 Bedroom Terraced Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +6900,Brand New 5bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"1,100,000,000/day",0,1,0,5 beds,5 baths,7 Toilets,Chevron +6901,Spacious Tastefully Finished 4 Bed Semi Detached Duplex With Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"88,000,000",0,1,0,4 beds, baths, Toilets,Chevron +6902,Newly Built 4bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6903,4 Bedroom Terrace Duplex,"Silvercrest, Estate Orchid Road Chevron Lekki Lagos",₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +6904,3 Bedroom Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6905,4 Bedroom Terrace Townhouse With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +6906,A Well Built 4 Bedroom Semi Detached Duplex,Creek Avenue Court 1 Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Ikota +6907,Prime Land,Beach Resort Estate Jakande Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6908,4bedrooms Duplex For Sale At Ikota Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +6909,"A Strategic Land Of 2,300sqm",Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6910,2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +6911,Beautiful 4 Bedroom Townhouse Located In A Serene Environment Of Ikota Lekki,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +6912,5bedrooms Furnish Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +6913,2 Wings Of 4bed Room Semi Detach Duplex,*spacious 4 Bedroom Terrace Duplex With Bq With A Private Compound* Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6914,Luxury 3 Bedroom All Rooms En Suite Apartment,Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +6915,Land,Megamound Estate Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6916,Land,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6917,Land,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6918,3 Bedroom Flat,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +6919,"3, 2,1 Bedroom Apartment",Second Tole Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,0 baths,0 Toilets,Chevron +6920,New House,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +6921,Luxury 5bedroom With Bq Built On 400sqm Each (built By A Friend),Lakeview Estate Orchid Chevron Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +6922,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +6923,5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +6924,A Beautifully Built 5 Bedroom Fully Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +6925,Premium Hotel,Lekki Phase 1 Lekki Lagos,₦,"2,800,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +6926,Newly Built 4bedroom Terrace Duplex,"Christabel's Court, Off Chevron Toll Gate. Chevron Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +6927,"Brand New, Contemporary And Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq",Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6928,3 Bedroom Flat,Riviera Court Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +6929,Nicely Built 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +6930,Brand New Serviced 3 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Osapa London +6931,Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"95,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +6932,Brand New 3 Bedroom Flat,Adeleye Street Idado Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +6933,950sqm Of Land With Foundation For A Mall,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +6934,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6935,A Land Measuring 1000 Sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6936,5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +6937,Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +6938,A Brand New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +6939,A Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +6940,A Brand New 4 Bedroom Fully Detached Duplex With A A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +6941,A Brand New 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6942,"A Land Measuring 8,500 Sqm",Off Alpha Beach Road Jakande Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +6943,A Newly Built 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets,Ikota +6944,A Newly Built 4 Bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6945,A Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +6946,A Brand New 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +6947,Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +6948,A Newly Built 5 Bedroom Fullly Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Ikate +6949,Newly Built 5 Bedroom Detached Duplex With A Bq,"Orchid Road, By Chevron Toll Gate Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +6950,A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +6951,A Brand New 4 Bedroom Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +6952,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Chevron +6953,Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets,Ologolo +6954,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +6955,A Newly Built 5 Bedroom Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6956,Well Maintained 5 Bedroom Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets,Ikota +6957,Well Located 6 Plots Of Land,"Behind Orchid Road, Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +6958,1000sqm Of Land,Seagate Estate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6959,Well Built 4 Bedroom Semi Detached Duplex,"Alpha Bay Estate,off Alpha Beach Road ,lekki Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +6960,Luxury Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +6961,Well Built 4 Bedroom Terraced Duplex,New Road Before Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +6962,Land,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6963,Beautifully Built 4 Bedroom Semi Detached Duplex,"Cowrie Creek Estate,ikate Lekki, Lagos Ikate Lekki Lagos",₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +6964,2 Bedroom Terraced Bungalow,"Orchid Hotel Road, Lekki,lagos Chevron Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +6965,Luxury Home,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +6966,3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +6967,4 Bedroom Fully Furnished Semi Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +6968,Well Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +6969,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6970,"Land Measuring 1,310.746sqm Bareland","Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6971,Well Sited 500sqm Bareland,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6972,Super Decent 5 Bedroom Fully Detatached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +6973,Serene 4 Bedrooms Fully Serviced Terraced Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6974,Well Built 4 Bedroom Terraced Duplex,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6975,Land,"Gbamgbala Road, Off Kushela Ikate Lekki Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6976,Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +6977,Well Built 3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +6978,Fully Furnished 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6979,Brand New Ensuites Three Bedrooms Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +6980,Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +6981,Lovely 2 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"34,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets,Osapa London +6982,Executive 3 Bedroom Flat, Chevron Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,3 Toilets,Chevron +6983,4bed Room Spacious Semi Detach Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6984,4bedroom Semi Detached,Orchid Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6985,Land,Orange Highland Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +6986,4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +6987,"Executive Luxury Hotel Suite, At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000/day",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +6988,Newly Built 5 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +6989,Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6990,Luxury Furnished Fully Detached 5bedroom With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +6991,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6992,3 Bedroom Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +6993,Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +6994,Newly Built 4 Bedroom Mansionate,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +6995,Executive 4 Bedroom Terrace Duplexes With A Bq,Orchid Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +6996,Executive 4 Bedroom Semi Detached Duplexes,Inside An Estate Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +6997,Well Built 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +6998,Brand New 4 Bedroom Detached House,Agungi Estate Agungi Lekki Lagos,₦,"80,000,000/year",1,1,1,4 beds,5 baths,5 Toilets,Agungi +6999,4bedroom Semi Detached Duplex For Sale At Oral Estate Lekki,Oral Estate Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7000,Newly Built 3 Bedroom Flat With A Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7001,Land Measuring 980sqm With Demolishable Structures,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7002,Well Situated Land Measuring 1200sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7003,Land Measuring 800sqm,Lakeview Park 1 By Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7004,Land Measuring 608sqm,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7005,Furnished 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7006,Well Located Land Measuring 670sqm,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7007,Brand New 4 Bedroom Town House,Eletu Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +7008,5 Bedroom Duplex For Sale At Fola Osibo Leeki Phase One,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +7009,Luxury 3bedroom Waterfront Apartment,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7010,100 Plot Sale,Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7011,4 Unit Of 5 Bedroom Fully Detached Duplex All Room En Suite :#220m Per Unit,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7012,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7013,Water Front 12 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +7014,Land,Omole Estate Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7015,4 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +7016,4bedroom Duplex,Orchid Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7017,Exquisitely Finished 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7018,Land Size: 650sqm,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7019,2 & 3 Bedroom Luxury Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +7020,5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +7021,5 Bedroom Semi Detached Houses With Bqs,"Chris Madueke Street, Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7022,5 Bedroom Detached Duplex With Bq,"Lekky County Homes, Megamound. Ikota Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +7023,Land,Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7024,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +7025,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +7026,Ocean View 5 Bedroom Semi Detached Home,Lekky County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +7027,Massive 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,0 baths,0 Toilets,Osapa London +7028,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +7029,Brand New 2 Bedroom Apartment With Bq,Conservation Road Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +7030,Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7031,Factory Consisting Of 100 Kva Mikano Generator 7 Brand New Air Condition 4 Production Machines Water Treatment Plant 3 Tanks,Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +7032,"Land Measuring 1,150 Square Meters",Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7033,Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7034,3bedrooms Apartment,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +7035,State Of The Art 5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +7036,Land,Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7037,2 Bedroom Apartment,"2nd Toll Gate, Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +7038,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +7039,Massive 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +7040,"A Dry Land Measuring 1,400 Square Metres In Osapa, Lekki. The Land Is Directly Overlooking The Osapa London Road.",Osapa London Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Osapa London +7041,"A 8 Floor Building Consisting Terraces House, Flats .","Godmade Court 4 Off Freedom Way, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +7042,Magnificent 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +7043,Brand New & Serviced 3bedroom Flat Available,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +7044,Block Of 6 Units Of 3 Bedroom Flats,Spring Bay Estate Ikate Lekki Lagos,₦,"310,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +7045,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7046,Luxurious 5bedrooms Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7047,Brand New 5bedroom With 1bq Fully Detached Duplex.,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7048,Units Of 5 Bedroom Luxury Duplex Houses,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +7049,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +7050,Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +7051,Well Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +7052,5bedrooms Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7053,4bedrooms Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7054,4bedrooms Terrace Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7055,5bedrooms Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +7056,4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7057,4bedrooms Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7058,Newly Built 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +7059,Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7060,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7061,4bedrooms Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7062,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +7063,Exquisitely Finished 4 Bedroom Semi Detached Duplex Within An Estate On Chevron Alternative Route Dol,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +7064,Filling Station On Lekki Epe Express Way,Lekki Epe Express Way Lekki Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Lekki +7065,800sqm Of Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7066,540sqm Of Land With Structure Ontop,Igbo Efon Igbo Efon Lekki Lagos,₦,"57,000,000",0,0,0,8 beds,6 baths,6 Toilets,Other Lekki +7067,9 Units Of 3 Bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,10 baths,10 Toilets,Lekki Phase 1 +7068,Luxurious 6 Bedroom Duplex With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,8 Toilets,Other Lekki +7069,Extra Large 5 Bedroom Fully Detached With Three Boy's Quarter, Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +7070,3 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +7071,Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7072,Lovly 4bedroom Duplex With A Bq,Oba Amunsa Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +7073,Spacious Fully Detached 5 Bedroom Duplex With 2 Bedroom Bq In A Serviced Gated Estate,Ologolo Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +7074,Exquisitely Newly Built 4 Bedroom Terrace Duplex Jn,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +7075,Solid Built Carcass Hotel With Swimming Pool,(1 Minute Drive From Lekki Epe Express Road. Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +7076,Fully Detached 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +7077,"Newly Built Mini Flat, 2 Bedroom, 3bedroom Flats",Agungi Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +7078,811sqm Plot Of Land,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7079,Land,Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7080,4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7081,Land In Vgc,Vgc Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +7082,Luxury 3bedroom Semi Detached Duplex.,Inside Amity Estate Sangotedo. 3mins Drive From Shoprite Lekki Phase 2 Lekki Lagos,₦,"51,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +7083,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +7084,2bed Room Serviced Apartment,Orchid Chevron Toll Gate Area Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +7085,Contemporary 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7086,4 Bedroom And Bq Semi Detached.duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7087,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +7088,Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7089,Newly Built 4bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7090,Brand New 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7091,Furnished 4 Bedroom Semi Detached Duplex Fem,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +7092,Land,Chevron Lekki Lagos,₦,"20,000,000",0,0,0,10 beds,0 baths,0 Toilets,Chevron +7093,Luxury 4bedroom Terrace Duplex,Bridge Estate Before Chevron Tollgate Chevron Lekki Lagos,₦,"62,000,000",1,0,0,4 beds,6 baths,6 Toilets,Chevron +7094,Luxury 4bedroom Semi Detached Duplex,Bridge Estate Before Chevron Tollgate. Chevron Lekki Lagos,₦,"72,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +7095,"Landed Property Of Approximately 945sqm With Structure Located Off Oladimeji Alo Street, Lekki Phase 1 Price N360m.",Lekki Phase 1 Lekki Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7096,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +7097,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7098,Luxury Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +7099,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7100,Beautiful Spacious 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +7101,Newly Built Serviced 3bedroom Flat With A Bq,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +7102,A Well Appointed 7000sqm Land (price Per Sqm),House On The Rock Ikate Lekki Lagos,₦,"240,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7103,5 Bedroom Fully Detached Duplex Dstn,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +7104,Brand Newly Built Fully Serviced 3 Bedrooms Apartment With Bq,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +7105,4 Bedroom Semi Detached House With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7106,Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7107,Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +7108,Ultra Modern 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,2 baths,2 Toilets,Chevron +7109,Ultra Modern 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Chevron +7110,Modest 5 Bedrooms Detached Duplex With Rooftop Terrace House,Lekki Phase 1 Ikate Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikate +7111,Fast Selling Newly Built 4bedroom Terrace Houses,"Orchid Road, Off Lekki Epe Expressway Lekki, Lagos Chevron Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +7112,Unique 5 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7113,Contemporary 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets,Agungi +7114,4bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7115,Cosy 4 Bedrooms Terrace Duplex On Two Floors With Swimming Pool,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7116,"Mercyville Estate Holds Strong 3 & 4 Bedroom Terraces And 3 Bedroom Maisonettes, All At Amazing Prices., 3 Bedroom Terraces Starts At 57m.","Epe Expressway, Chisco Behind Blenco Ilasan Lekki Lagos",₦,"57,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +7117,New House,Snd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,5 beds, baths, Toilets,Chevron +7118,New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds, baths, Toilets,Osapa London +7119,4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7120,4 Bedroom Fully Detached,Eleganza Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7121,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7122,"5 Bedroom Detached House With 2(no) Mini Flats As Servant Quarter At Carlton Gate Estate, Chevron Drive, Lekki","Carlton Gate Estate, Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +7123,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7124,Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,0 baths,0 Toilets,Victoria Garden City +7125,House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +7126,Shop Space,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +7127,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7128,New House,Thomas Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds, baths, Toilets,Lekki Phase 2 +7129,700 Square Meters Land, Osapa London Lekki Lagos,₦,"90,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7130,5 Bedroom Fully Detached Duplex With Bq,Nicon Town Jakande Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7131,A Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7132,New House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7133,Newly Built And Well Finished 6 Bedroom Duplex,Nicon Town Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +7134,Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +7135,Classy 5bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +7136,New House,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds, baths, Toilets,Ikota +7137,Four Bedroom Semi Detached Castle Duplex +bq,"Orchid Road, Directly Opposite Cooplag Garden Estate Lekki Lagos Chevron Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +7138,7 Bedroom Duplex With Two Rooms Boys Quarters,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +7139,Newly Built 2bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets,Ikate +7140,4bedroom Duplex,Ikate Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +7141,Mansion,Vgc Lekki Lagos,₦,"550,000,000",0,1,1,0 beds,5 baths,0 Toilets,Victoria Garden City +7142,Camberwall Advantage 3 & 4,Off Freedom Way Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +7143,Newly Built Luxury Flats Comprising Of 11 Unit Of Flats, Agungi Lekki Lagos,₦,"345,000,000",0,1,0,10 beds,10 baths,10 Toilets,Agungi +7144,New House,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths, Toilets,Ologolo +7145,New House,Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths, Toilets,Other Lekki +7146,Mufasa Lifestyle Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +7147,3bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +7148,1 Bedroom Ultra Modern Luxury Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +7149,Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +7150,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +7151,4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7152,Luxury 5 Bedroom Semi Detached Duplex Plus Bq,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +7153,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +7154,Luxury 5 Bedroom Fully Detached House,Ologolo Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +7155,Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +7156,Contemporary 5 Bedroom Fully Detached House With Swimming Pool,Megamound Estate Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7157,New House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +7158,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7159,Contemporary 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +7160,Elegant 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7161,Aesthetically Built 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +7162,4 Bedroom Terrace Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7163,4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +7164,5bedrooms Duplex,Pinnok Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7165,Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7166,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7167,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +7168,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +7169,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +7170,4bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7171,Spacious5bedrooms Duplex For Sale At Megamound Lekki,Megamound Lekki Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +7172,5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7173,5 Bedroom Detached Duplex With Bq,Elegushi Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +7174,4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +7175,5bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7176,"5bedrooms With Swimming Pool, Gym House And Cinema Room","Megamound Estate Ikota, Lekki Ikota Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7177,4bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7178,Enyo Filling Station,Eleko At Ibeju Lekki Lekki Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +7179,Newly Built 4bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +7180,650sqm Of Land,"Chevy View Estate, Chevron Chevron Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7181,4bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7182,4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7183,7bedrooms Duplex,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +7184,Standard 2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +7185,5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7186,4 Bedroom Terrace Duplex,"Ologolo Estate Off Lekki Epe Expressway, Lekki Lagos Ologolo Lekki Lagos",₦,"79,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +7187,4 Bedroom Duplex With Bq,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7188,4 Bedroom Semi Detached Duplex At Osapa Lekki Lagos,"Osapa Estate Off Lekki Epe Expressway, Lekki Lagos Osapa London Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +7189,5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7190,4bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +7191,5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7192,Classy And Well Finished 4 Bedroom Duplex,White Sand Beach Estate Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7193,Beautiful Built 5bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7194,Detailed Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +7195,Tastefully Finished 5 Bedroom Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7196,Contemporary 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7197,"Seagate Estate 2000sqm Bare Land, Fully Sandfilled, Fenced & Gated",Seagate Estate Ikate Lekki Lagos,₦,"395,000,000",0,0,0, beds, baths, Toilets,Ikate +7198,Beautifully Built 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7199,Land,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7200,Executive 3 Bedroom Flat Apartments,Prime Water Garden Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +7201,3 Bedroom Terrace,"Ikate, Close To Lekki Phase 1 Ikate Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7202,Tasefully 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7203,Spacious 5bedroom Semi Detach Duplex,"Momodu Lawal Close, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7204,Spacious 5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7205,3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7206,700sqm Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7207,500sqm Of Land,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7208,865 Sqms Land,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7209,Land,Lekki Phase 1 Lekki Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7210,Land,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7211,5bedrooms Duplex For Sale At Chevron Drive Lekki,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7212,Beautifully Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7213,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7214,5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7215,Finished 4 Bed Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7216,4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7217,Luxury 4bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7218,Luxury 4 Bedroom Semi Detached Duplex,Spg Road Igboefon Lekki Igbo Efon Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7219,A Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7220,Neat 5 Bedrooms Detached Duplex With Swinming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7221,"Newly Built 4bedroom Terrace Duplex In County Homes,ikota, Lekki","County Home,ikota Lekki Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7222,Magnificent Luxury 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,Ikate +7223,"5bedrooms Duplex With Cinema, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +7224,Executive Standard 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +7225,Tastefully Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +7226,Perfectly Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7227,4 Bedrooms Semi Detached Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7228,Spacious Smart 4 Bedroom Terrace,Tollgate Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7229,Masterpiece 5 Bedroom Home,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +7230,Newly Built 2 Bedroom Fully Serviced Apartments,Off Orchid Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +7231,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +7232,Luxury 2 Bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7233,Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7234,4 Bedroom Duplex,Q Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +7235,Contemporary Styled 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +7236,4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7237,Newly Built 4bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +7238,Service 4 Bedroom Terrace With Bq,"Lekki Right, By Petrocam Filling Station, Elf Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7239,"Newly Built 5bedroom With Pool Semi Detached Duplex, At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"75,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Other Lekki +7240,A Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7241,Well Built 4 Bed Detached House With Bq,2rd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Chevron +7242,2 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +7243,"Distress Luxury 5 Bedroom Fully Finished Detached Duplex With Air Conditioning , Fully Fitted Kitchen Plus 1 Room Bq.",Off Freedoms Way Ikate Lekki Lagos. Ikate Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +7244,Serviced 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"54,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +7245,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7246,Furnished 3 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"120,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikate +7247,Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,1 baths,1 Toilets,Lekki Phase 1 +7248,5 Bedroom Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7249,2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +7250,2 Bedroom Serviced Apartment,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +7251,5 Bedroom Semi Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7252,Contemporary 5bedroom With Swimming Pool,Spar Road Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7253,3bed,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,3 beds,4 baths, Toilets,Lekki Phase 1 +7254,4 Units Of Three Bedroom Flat Fully Furnished 4units Of Mini Flat Fully Furnished,Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7255,Beautifully Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +7256,A Plot Of Land,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Chevron +7257,House,Agungi Lekkk Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +7258,Available Land,Orchid Hotel Road. Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7259,4bedroom Detached Duplex For Sale At Lekki Phase1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +7260,2 Bedroom Luxury Flats,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +7261,4 Bedroom Full Detailed Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7262,Exquisite 5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +7263,Exquisite 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +7264,New House,Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds, baths,6 Toilets,Ikate +7265,"Newly Remodelled Luxury 4 Bedroom Fully Finished And Serviced Maisonette With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Oral Estate , Jakande Lekki Lagos State Jakande Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7266,Newly Built Luxury 4 Bedroom Fully Finished And Serviced Semi Detached Duplex Plus Bq,Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +7267,Newly Built 3 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,0 Toilets,Osapa London +7268,House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,0 Toilets,Osapa London +7269,Godmade Connect Court 5 & Extension Lekki,"Off Freedom Way, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +7270,New House,Vgc Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,0 Toilets,Victoria Garden City +7271,4 Bedroom Luxury Duplex,Jakande Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +7272,Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +7273,Tastefully Finished 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7274,"5 Bed Fully Detached Mansion With Private Elevator, Cinema, Pool And 2 Terraces",Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +7275,Luxury 5bedrooms Duplex,S Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +7276,450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 1 +7277,4bedroom Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7278,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +7279,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets,Agungi +7280,Newly Built To Taste 5bedroom Duplex With 2 Bq,Arcadia Estate Shoprite Road Osapa London Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +7281,Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex,Pinnock Beach Estate Osapa London Lekki. Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +7282,New House,Chevron Lekki Lagos,₦,"350,000,000",1,1,1,5 beds, baths, Toilets,Chevron +7283,Lovely 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7284,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq If, Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +7285,A Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7286,4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7287,Two (2) Units Of 3 Bedroom Serviced Apartments,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,3 baths,0 Toilets,Lekki Phase 1 +7288,Distress Land,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7289,Spacious And Tastefully Finished 5 Bedroom Mansion,Megamound Estate Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7290,4 Bedrooms Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7291,Tasefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7292,Land,Spg Road Ologolo Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7293,Brand New 4 Bedroom Semi Detached Duplex With Private Garage,Ajah Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +7294,Luxury 4 Bedroom Terrace Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +7295,5 Bedroom Detached Mansion,Ajah Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7296,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7297,5 Bedroom Home,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7298,Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7299,Land,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7300,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +7301,Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7302,Furnished 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +7303,4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7304,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7305,Three Bedroom Apartment,Ikate Very Close To Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +7306,Fenced And Gated Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7307,880 Square Meters,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7308,1000 Square Meters Of Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7309,Exquisitely Finished 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7310,Land,Lakeview Estate Ikota Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7311,Land,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7312,3 Bedroom Luxury Apartments,Behind Mega Chicken Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +7313,Land,Blenco Supermarket Ikate Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7314,Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7315,Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7316,620 Sqmts Plot Of Land With A Structure,Inside An Estate At Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7317,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,1,5 beds, baths, Toilets,Osapa London +7318,Luxury 4bedroom Semi Detached Duplex.,2nd Lekki Tollgate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +7319,Land,"Ocean Breeze Estate , Ologolo, Lekki. Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7320,Land,Ilasan Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7321,Land,"Orchid Hotel Road, Lekki, Lagos Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7322,Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7323,Decently Finished 4 Bedroom Semi Detached Duplex With Bq Jn,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7324,"Newly Refurbished Luxury 4 Bedroom Fully Finished And Fully Semi Detached Duplex With Bq Plus Air Conditioning , Fully Fitted Kitchen.",Ologolo Lekki Axis Lagos. Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +7325,Available Luxury Houses,Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7326,2 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7327,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +7328,5 Bedroom Semi Detached With A Room Bq,Spring Bay Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7329,Beautifully Finished Serviced 3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"57,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +7330,2 Bedroom Terrace Duplex+ Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +7331,Absolutely Stunning Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7332,2 Bedroom Serviced Apartment,"House On The Rock, Monarch, Ikate Oba Eleguishi Palace, Nicon Town ,freedom Way, Jakande Bus Stop Ikate Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,2 baths,3 Toilets,Ikate +7333,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7334,Spectacularly Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7335,Land,Victoria Crest 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7336,Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7337,3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7338,Beautiful 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +7339,600sqm Land,Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7340,Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +7341,3bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7342,1200sqm Commercial Plot,Ologolo Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7343,Land With A Structure,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7344,Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7345,600sqm Of Land,Victory Park Estate Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7346,Corner Piece 1400sqms With A Complex Structure,Directly On Bisola Durosinmi Etti Street Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7347,Commercial Land Measured 880sqms With A Fully Detached Duplex,"Right Opposite Ebano, Road 14, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7348,About 1600sqm Land,Gbangbala Road Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7349,Land Measuring 650sqm,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7350,1000sqm At Chevyview Estate,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7351,Four Bedrooms Terrace Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7352,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +7353,500sqm Of Land,Pinnock Beach Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7354,930m Land,"Orange Island, Freedom Way Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7355,5bedrooms Terrace Duplex *,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7356,Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7357,Elegant 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7358,Land,Megamound Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7359,Nice 3bedroom Bungalow.,X Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7360,A Front Plot Measuring 756 Sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Osapa London +7361,Brand New And Fully Serviced 4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7362,4bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7363,"Brand New Luxury 4 Bedroom Serviced Fully Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +7364,Beautiful 3 Bedrooms Terrace,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +7365,5 Bedroom Duplex,Richmond Estate Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +7366,Brand New 3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +7367,Brand New 4 Bedroom Terrace Duplex In A Secured And Serene Estate,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7368,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +7369,Brand New 2units Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +7370,5bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +7371,Camberwall Advantage 3 & 4,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Ikate +7372,Fully Furnished And Fitted 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7373,899sqr Land,Lekki Scheme 2 Off Mobil Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7374,Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +7375,Newly Built And Spacious 4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7376,Land,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"160,000,000/year",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +7377,Luxury 3 Bedroom Serviced Fully Detached Duplex Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +7378,Tastefully Finished 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7379,A Nicely Finished 4 Bedroom Terraced Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7380,Land,Pinnock Estate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7381,Newly Build 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +7382,God Made Connect Court 4 Lekki,Off Freedom Way Off Regional Road Ekki Phase One Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +7383,Tastefully Finished 4 Bedrooms Terrace House With Bq,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7384,Luxurious 5bedrooms Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7385,Exquisitely Built 4 Bedroom Semi Detached Duplex Home With A Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7386,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"86,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7387,Beautifully Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +7388,Fully Detached 5 Bedroom Duplex In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,4 Toilets,Ologolo +7389,Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7390,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +7391,Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq Second Toll Gate Lekki,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +7392,4bedrooms Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7393,Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +7394,State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +7395,4plots Of Land Together On A Strategic Location,Orchid Road Directly Opposite Omega One Plaza Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7396,5 Bedroom Semi Detached Duplex Plus 2 Rooms Bq,Off Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +7397,840 Sqm Corner Piece Land Inside Cowrie Creek,Nlg Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Ikate +7398,A Sponsor For Land Reclamation,Lekki Phase 1 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7399,A Land Measuring 780 Square Meter,Off Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7400,5bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +7401,Newly Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Idado Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7402,Highly Spacious 5 Bedrooms Detached Duplex With Penthouse And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +7403,Tastefully Finished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +7404,1136sqm Prime Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7405,5bedrooms Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +7406,4 Bedroom Terrace Duplex,": Bera Estate (gated Estre) Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7407,4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7408,Fantastic 5 Bedroom Detached Duplex With A Pool,Lekki Second Toll Gate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7409,4 Bedroom Terraces,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7410,Luxury Serviced 4 Bedroom Detached Duplex,Luxury House In A Gated Classic Estate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7411,4 Bedroom Terrace With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +7412,Furnished 4 Bedrooms Terrace Building,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +7413,5bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7414,Brand New Fully Serviced 4 Bedroom Terrace Duplex,Ikota Villa Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +7415,Fantastic 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7416,Brand New 4 Bedroom Terrace Duplex,Orchid Road Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +7417,Classic 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7418,4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7419,2 Units Of 4bedroom With Bq,Vgc Garden Vgc Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +7420,Lovely 4 Bedroom Terrace Duplex,Beach Court Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets,Other Lekki +7421,Land,Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7422,776sqm Prime Land,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7423,Luxury 4bedroom Duplex,Orchid Ikota Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +7424,Luxury 5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets,Ologolo +7425,Spacious 4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7426,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7427,A Land Measuring 1200sqm For Sale.,"Ayo Adebanjo Street, Lekki Phrase 1 Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7428,Luxury 5bedrooms Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7429,2 Numbers Of 5 Bedroom Detached House,Tulip Haven Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7430,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7431,Super Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7432,Newly Built 4bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +7433,Land Measuring 2.1 Hectares Of Land Beside ( Vgc),Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7434,Executive 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7435,5bedrooms Duplex For Sale At Lekki Second Toll Gate,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7436,"Newly Built Luxury 6 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,6 beds,7 baths,7 Toilets,Lekki Phase 1 +7437,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7438,Newly Built 4bedroom Duplex With Bq,Ilasan Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7439,"Flawless 5 Bedrooms Detached Duplex With Swinming Pool, Gym Centre, Cinema Room",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7440,A Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +7441,Newly Sand Filled Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7442,Land,Spg Raod Ologolo Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7443,New House,Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds, baths,6 Toilets,Osapa London +7444,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +7445,"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +7446,Premium 4 Bedroom Terrace House,Spg Road Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +7447,Land,Spg Road Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7448,5bedroom Duplex For Sale In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7449,A Beautifully Built 5 Bedroom Terraced Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +7450,A Waterfront Land Measuring 2000 Sqm,Pinnock Beach Estate Ph 2 Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7451,Land,Ikota Gra Ikota Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7452,"For Sale, 5bedroom Duplex Location Ikate Lekki",Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7453,5bedrooms Duplex For Sale At Ikate Lekki Phase1,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +7454,Prime 700sqm Land Behind Romey Garden,Behind Romey Garden Ilasan Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +7455,"Sapphire Island, 4 Hectares Before Orange Island Off Freedom Way Lekki Phase 1 @n135,000 Per Sqm Title C Of O","Sapphire Island, 4 Hectares Before Orange Island Off Freedom Way Lekki Phase 1 @n1 Lekki Phase 1 Lekki Lagos",₦,"135,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7456,5 Bedroom Fully Detached Duplex On 2 Floors With Bq,"2nd Toll Gate, Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +7457,5bedrooms Duplex With Swimming Pool For Sale At Ikota,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7458,New House,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths, Toilets,Ikate +7459,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets,Ikate +7460,Block Of 6 Flats 3 Bedrooms Each,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7461,Lovely 2 & 3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +7462,5 Bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7463,A Tastefully 5 Bedroom Terraced Duplex With Bq,Idado Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7464,Well Finished Contemporary 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +7465,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7466,Luxury 3 Bedroom Apartment,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +7467,Exqusite 4 Bedroom Detached Duplex In Lekki {idado},Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,4 Toilets,Other Lekki +7468,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7469,3 Bedrooms Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +7470,5 Bedrooms Duplex,"Tulip Haven Estate Chevron Alternative Route, Lekki, Lagos. Chevron Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7471,A Fully Serviced 3 Bedroom Flat In A Lovely Location.,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +7472,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"39,800,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7473,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +7474,"Flamboyant 5 Bedrooms Detached Duplex With Pool, Cinema, Gym & Mini Bar",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7475,Luxury 4bedrooms Terrace Duplex,G Agungi Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,5 baths,5 Toilets,Agungi +7476,Land,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7477,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +7478,2 Plot Of Land Measures 1384sqm,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7479,Exquisite 5bedroom Fully Detatched Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +7480,Exquisitely Finished 5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +7481,Maven Court,"Royal Pine Estate, Orchid Road, Lagos. Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7482,4bedrooms Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7483,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds, baths, Toilets,Ikate +7484,530sqms Cornerpiece Bareland,Off Bisola Durosinmi Etti Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7485,1000sqm With Old Fully Detached Duplexes To Be Demolished,Off Freedom Way Lekki Phase 1. Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7486,4bedrooms Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7487,3 Bedroom Block Of Flats,Primewaters Gardens 2 Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikate +7488,Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Vgc Estate Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +7489,Full Detached 5 Bedrooms Apartment,Lakeview Park Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7490,House,Northern Forshore Chevron Lekki Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds, baths, Toilets,Chevron +7491,Plain 4 Bedrooms Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7492,Luxury Four Bedroom Terrace House + 1room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7493,Luxury Newly Built All Rooms En Suite 2 Bedroom,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +7494,5 Bedroom Fully Detached Duplex With Bq,"New Road (alpha Beach Road) Opp. Chevy View Estate, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7495,Sandfilled Land,Vgc Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7496,Lovely 3 Bedroom Terrace Duplex,"Lekki Gardens 2 Estate, Abraham Adesanya., Lagos Lekki Phase 2 Lekki Lagos",₦,"26,000,000",0,0,0,3 beds,4 baths,3 Toilets,Lekki Phase 2 +7497,Luxury 1 Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"87,000,000",0,1,1,1 beds,1 baths,1 Toilets,Victoria Garden City +7498,Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"170,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7499,1 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +7500,"Luxury Detached 4 Bedroom Serviced Bungalow With Air Conditioning , Fully Fitted Kitchen",Northern Foreshore Estate Lekki. Chevron Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +7501,Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7502,5bedroom Detached Duplex For Sale Inside Pinnock Estate Osapa London,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths, Toilets,Osapa London +7503,4 Bedroom Maisonette And A Premium Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7504,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +7505,Newly Built 5bedrooms Duplex For Sale At Megamound Estate Ikota,"Megamound Estate, Ikota Lekki Ikota Lekki Lagos",₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7506,Luxury 5 Bed Detached Home,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +7507,5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7508,Executive Brand New And Exquisitely Finished 4bedroom Terrace A Room Bq And A Spacious Roof Top Seat Out,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7509,A Beautifully Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +7510,Land,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7511,Land,Providence Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7512,A Brand New 4 Bedroom Terraced Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +7513,5 Bedroom Duplex,"Bkari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +7514,God Made Connect Court 4 Lekki,Off Freedom Way Off Regional Road Ekki Phase One Lekki Phase 1 Lekki Lagos,₦,"27,500,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +7515,A Well Built 4 Bedroom Semi Detached Duplex,Ladipo Latinwo Street Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7516,12 Units Of 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +7517,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,0 baths,0 Toilets,Agungi +7518,Standard 3 Bedroom Terrace Duplex With Modern Fittings, Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +7519,Brand New 4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7520,New House,Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +7521,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7522,4 Bedrooms Detached With 2 Room Bq 2 Living Rooms,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7523,Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7524,5bedroom Terrace Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",1,1,0,5 beds,6 baths,4 Toilets,Lekki Phase 1 +7525,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +7526,3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +7527,Spacious 2 Bedrooms Pent Floor Apartment,Oceanbay Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7528,Prime Land On Alpha Beach Road,Alpha Beach Estate Near Atlantic View Estate Igbo Efon Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7529,880sqms With A Complex Structure,Fola Osibo Close To Hakeem Dickson4 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7530,4bedrooms Terrace Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +7531,450sqm Land,Along Durosinmi Etti Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7532,Brand New 4 Bedroom Duplex,Orchid Road By Chevron Toll Chevron Lekki Lagos,₦,"75,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets,Chevron +7533,2bedrooms Apartment,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +7534,23 Plots Of Land With Layout,Between Osapa And Ajiran Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Osapa London +7535,5bedrooms Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +7536,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +7537,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Ologolo Lekki Lagos State Ologolo Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ologolo +7538,A Newly Built Beautiful 4 Bedroom Terraced Duplex With Bq,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7539,A Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7540,990sqm Of Land With 5 Bedrooms Fully Detached Duplex,Duronsinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +7541,Superb 5 Bedrooms Detached Duplex Newly Built With Swinming Pool,"Megamound Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7542,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +7543,"Beautifully Built, Well Maintained, Tastefully Finished 4bedroom Terrace.",Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +7544,Superbly Finished Fully Automated 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7545,Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +7546,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool. Jnf,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +7547,Fantastic Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikate +7548,High Quality 4 Bed Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7549,An Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevyview Estate Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +7550,Plots Of Land,Chevron Lekki Lagos,₦,"30,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7551,Bare Land Of Approximately 500sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7552,"Luxury 3 Bedroom Apartment In A Fully Serviced, Secured And Serene Estate, With 10yrs Mortgage Plan",Primewaterview Estate Ikate Lekki Lagos,₦,"42,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikate +7553,Newly Built 5bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7554,A Luxurious 5 Bedroom Fully Detached Mansion,Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Chevron +7555,Modern 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7556,Newly Built 5bedroom Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7557,9 Units Of 2 Bedroom Flats,Orchid Road Chevron Lekki Lagos,₦,"340,000,000",1,1,0,10 beds,10 baths,10 Toilets,Chevron +7558,Residential Land Of Over 400 Plots (price Per Sqm),"Osita Island, Beside Orange Island, Off Freedom Way, By Periwinkle Island* Lekki Phase 1 Lekki Lagos",₦,"140,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7559,Newly Built 4bedroom Terrace Duplex,"Kassykoo Terraces, Along Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +7560,Luxury Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,0 baths,4 Toilets,Ikate +7561,Fully Detached 5 Bedroom Contemporary Building,Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7562,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7563,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7564,Newly Built To Taste 5bedroom Duplex With Studio Bq,Arcadia Estate By Shoprite Road . Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7565,Two (2) Units Of 3 Bedroom Apartments And Attached Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7566,2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7567,Newly Built 1 Bedroom Flat,Ikota Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,1 baths,2 Toilets,Ikota +7568,Newly Built To Taste & Spacious 5bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7569,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +7570,Waterfront Land Measuring 1000sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7571,Mansionate Luxury 5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +7572,Contemporary And Well Finished 4bedroom Fully Detached Duplex Oral Estate1 Tay,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +7573,4bedroom Terrace Duplex,"By Second Toll Gate,lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7574,5 Bedroom Detached With 2 Rooms Bq,Opposite Chevy View Estate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +7575,509sqm Of Land,Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7576,Modern 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +7577,5 Bedroom Semi Detached Duplex,Directly On Bisola Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7578,2 Plots Of Dry Land, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7579,Affordable Luxury 4 Bedroom Fully Detached Duplex Jw,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7580,Spacious Brand New Listing 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +7581,Fantastic Serviced 3 Bedroom Apartment,Osapa Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +7582,Executive 5bedroom Fully Detached Duplex,Ikota Ikate Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +7583,Fully Automated 6bedroom Fully Detached Duplex Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,5 baths,8 Toilets,Victoria Garden City +7584,"Luxurious, Brand New And Serviced 2 Bedroom Apartment",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +7585,9 Numbers Of Luxery 3bedroom Flats,Admaralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7586,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +7587,Fully Serviced Four Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Ikota +7588,4bedroom Fully Detach Duplex Plus A Room Bq On 225sqm,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +7589,Land Measuring 1300sqm,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7590,4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +7591,3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7592,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7593,4 Bedroom Semi Detached Duplex With Bq,"Victoria Crest Ii Estate, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7594,3 Bedroom Flat,Prime Water View Estate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7595,5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7596,Well Maintained 4bedroom Semi Detached Duplex With A Room Boy's Quarter,Ikate Lekki Lagos,₦,"60,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikate +7597,Newly And Tastefully Built Three(3) Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +7598,Styled 5bedroom Fully Detached Duplex With A Room Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7599,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7600,Deluxe 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +7601,461 Sqm Front Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7602,453 Sqm Back Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7603,443 Sqm Front Plot For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Osapa London +7604,5bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7605,Beautiful 4 Bed Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7606,Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7607,4plots Of Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7608,Luxury 5 Bedroom Detached,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7609,Lekki Oxford Hotels,Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7610,Decently Finished Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets,Ikota +7611,Land,Pinnock Estate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7612,Land,Cowrie Creek Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7613,Land,Elf Bus/stop Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7614,Land,Megamound Estate Ikota Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7615,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7616,Land,Spring Bay Estate Off Freedom Way Beside Prime Water View Ikate Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7617,Land,Off Freedom Way Ikate Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7618,Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7619,Super Decent Contemporary 5 Bed Fully Detached House With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7620,Fully Serviced 4 Bedroom Townhouse With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +7621,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7622,Designed 6bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +7623,5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7624,Contemporary 5bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7625,Newly Built 5bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +7626,6 Bedroom And Bq,Inside Chevron Estate Chevron Lekki Lagos,₦,"78,000,000/year",0,0,0,6 beds,4 baths,4 Toilets,Chevron +7627,Luxury 1 Bedroom Apartment,"Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,1,0,1 beds,0 baths,0 Toilets,Lekki Phase 1 +7628,Luxury Waterfront 3bedroom Serviced Apartment With Bq,"Pinnock Beach Estate, Lekki Lekki Lagos",₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +7629,Exquisite 3 Bedroom Apartment,Off Alpha Beach Road Osapa London Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,3 Toilets,Osapa London +7630,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7631,3000sqm Of Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7632,Land,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7633,Land,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7634,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +7635,4bedroom Terraced Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +7636,Affordable 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +7637,Eye Catching 4 Bedrooms Apartments/flats,By Chevron International Office Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +7638,Luxury 2 Bedroom Apartment,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +7639,3 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +7640,Fantastic 5 Bedrooms Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +7641,5 Bedroom Fully Detached,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +7642,3 Bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +7643,Attractive 5 Bedrooms Detached Duplex With Bq,"Agungi, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +7644,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7645,4 Bedroom Terrace Duplex,New Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +7646,Brand New 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7647,Hotel,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",1,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +7648,5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7649,Prestigious 9 Units Of 3 & 2 Units Of Apartments,By Osapa London Chevron Lekki Lagos,₦,"400,000,000",0,1,0,10 beds,10 baths,10 Toilets,Chevron +7650,Serviced 5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +7651,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +7652,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7653,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +7654,A Corner Piece Land On A Commercial,"Vgc, Close To The Main Road Of Lekki/epe Expressway Vgc Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +7655,New House,Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths, Toilets,Other Lekki +7656,Spacious And Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7657,Beautifully Finished Brand New 4 Bedroom Semi Detached Duplex,Second Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7658,Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +7659,"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Bera Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +7660,Lekki Pride Estate,"Lekki Pride Estate: Is Situated At Ajiwe Bus Stop, By Abraham Adesanya Roundabout, Lekki Epe Expressway. Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7661,5 Units Of 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,4 Toilets,Chevron +7662,House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths, Toilets,Lekki Phase 1 +7663,Godmade Connect Court 4 Lekki,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +7664,Beautiful Built 4bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7665,Luxury 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7666,Four Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +7667,Newly Built Exquisite 4 Bedroom Duplex,Well Secured And Maintained Estate At Ologolo Lekki Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7668,Luxury 5bedroom Detached Apartment,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7669,Luxury Detailed 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths, Toilets,Osapa London +7670,New House,Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +7671,Four Bedroom Semi Detached Duplex,Abijo Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +7672,Creek Avenue Court,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7673,2.007 Hectares Of Land,"Behind Lekki 2nd Toll Gate, Lekki Conservation Toll Plaza, Beside Chevron Chevron Lekki Lagos",₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Chevron +7674,New House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,0,5 beds,6 baths, Toilets,Lekki Phase 1 +7675,New House,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,5 beds, baths, Toilets,Osapa London +7676,Beautiful 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,6 baths,0 Toilets,Ikota +7677,New House,Ikota Lekki Lagos,₦,"64,000,000",1,1,0, beds, baths, Toilets,Ikota +7678,Neatly Finished 5 Bedroom Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7679,New House,Palm City Estate Osapa London Lekki Lagos,₦,"210,000,000",1,1,0,5 beds, baths, Toilets,Osapa London +7680,4bed Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,0 baths,0 Toilets,Ikate +7681,Spacious And Tastefully Finished 4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7682,Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7683,5 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +7684,5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7685,"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Ikota Villa Estate Gra,lekki Lagos State. Ikota Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +7686,A Well Maintained 5 Bedroom Fully Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +7687,A Land Measuring 925 Sqm,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +7688,Newly Built And Well Serviced 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,4 beds, baths, Toilets,Lekki Phase 1 +7689,A Brand New 4 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Agungi +7690,A Back Plot Measuring 453 Sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Osapa London +7691,A Newly Built 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets,Ologolo +7692,A Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7693,A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets,Ikota +7694,A Newly Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Agungi +7695,A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,"Lekki 2nd Toll Gate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7696,A Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7697,Furnished 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +7698,Water Front Land Measuring 650sqm,Northern Foreshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7699,5 Bedroom Duplex For Sale At Osapa London Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +7700,5 Bedrooms House,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +7701,A Newly Built 5bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7702,A Piece Of Land Measuring 1200sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7703,Newly Built Six(6) Units Of 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7704,Newly Built 4bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +7705,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7706,6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets,Victoria Garden City +7707,600sqm Of Land,"Lakeview Park 1, Opposite Ikota Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikota +7708,Brand New 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"28,000,000/sqm",0,1,0,2 beds,3 baths,3 Toilets,Chevron +7709,Brand New 2 Bedroom Flat,By Domino's Pizza Ologolo Lekki Lagos,₦,"37,000,000/sqm",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +7710,Lovely 3 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"35,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Agungi +7711,Beautifully 4bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7712,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7713,Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +7714,4bedroom Newly Built Apartment,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ologolo +7715,"Executive 5bedroom Detached Duplex With Swimming Pool And A Room Bq, At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"150,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Other Lekki +7716,5bedroom Duplex For Sale In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7717,3 Bedroom Terraced Duplex House,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7718,4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7719,Executive 3 Bedroom Flat With Modern Interior Fittings,Second Toll Gate Off Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +7720,Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7721,Newly Built 2 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets,Other Lekki +7722,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7723,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7724,Executive Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Richmond Estate Jakande Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7725,Decently Built 2 Bed Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +7726,Luxury Finished 3 Bedroom Flat,Salem Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds, baths, Toilets,Ikate +7727,Well Serviced 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7728,4bedroom Fully Detached,Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7729,4 Bedroom Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7730,Land,"Lekki Ekpe Expressway, Eif Bus Stop (beside Ecobank/zenith Bank) Lekki Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7731,Luxurious 4bedroom Detached Duplex,Ikate Lekki Lagos,₦,"60,000,000/day",1,1,1,4 beds,5 baths,5 Toilets,Ikate +7732,5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +7733,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7734,Contemporary 5bedroom Fully Detached Duplex Available,Buena Vista Estate Orchid Road Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +7735,This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +7736,A 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +7737,3 Bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,0 baths,0 Toilets,Chevron +7738,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +7739,4 Bedroom Full Service Terrace,"Orchid, Lekki Lagos Lekki Lagos",₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +7740,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets,Ikota +7741,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7742,1200sqm Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +7743,1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +7744,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets,Agungi +7745,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets,Chevron +7746,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets,Ikota +7747,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets,Ikate +7748,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Chevron +7749,2 Bedroom Fully Serviced And Furnished Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +7750,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +7751,Furnished 5bedrooms Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +7752,4bedrooms Semi Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +7753,5bedrooms Duplex With Swimming Pool For Sale At Ikota Lekki,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7754,5 Bedrooms Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7755,Newly Built 5bedrooms Duplex,Orchid Road Hotel Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +7756,5bedrooms Duplex,R Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +7757,5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7758,5bedrooms Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +7759,4bedrooms Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7760,4bedrooms Duplex,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7761,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7762,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7763,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7764,2bedrooms Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +7765,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7766,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7767,Luxury 5bedrooms Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7768,4bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +7769,5 Bedroom Detached Duplex With A Bq,Ikate Elegushi Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +7770,4 Bedroom Terrace Duplex At Lekki Lagos,"Ikota Roya Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7771,5bedrooms Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +7772,5bedrooms Duplex With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7773,5bedrooms Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7774,4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7775,Luxurious 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7776,4 Bedrooms Semi Detached Duplex,"Orchid Road, By Lekki Second Toll Gate Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7777,4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7778,5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7779,1bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ologolo +7780,5bedrooms Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7781,5bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +7782,4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7783,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7784,Luxurious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7785,Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7786,Spacious And We'll Built 4bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7787,4 Bed Detached House With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +7788,Newly Built 2 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +7789,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7790,1 Bedroom Serviced Apartment,Lekki Gardens Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets,Chevron +7791,Newly Built 5 Bedroom Terrace Duplex,Right Side Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +7792,Contemporary 4 Bedroom Terrace Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7793,5bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7794,3 Bedroom Flat,Osapa London Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,0 baths,0 Toilets,Osapa London +7795,4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +7796,4 Bedroom Maisonnette,Primewater Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,0 baths,0 Toilets,Ikate +7797,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,0 baths,0 Toilets,Osapa London +7798,Luxury 5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +7799,Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7800,Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +7801,Elegant 2 Bedroom Apartment,Spar Road Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +7802,Land,Vgc Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +7803,Spacious And Tasefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7804,Decently Finished 5 Bed Fully Detached Duplex With Swimming Pool,Lekki County. Lekki Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +7805,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +7806,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +7807,Luxury 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +7808,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +7809,Brand New 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"6,500,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7810,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7811,4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7812,Contemporary Design 5 Bedroom Mansion,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +7813,Magnificent 4 Bedroom Home,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7814,1380 Sqms Land,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7815,6plots For Residential Land,Dpk Estate Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7816,1500sqm Land,On Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7817,4 Plots Of Land (2883sqm),On Orchid Road Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7818,4 Bedroom Semi Detached Fully Furnished Duplex,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7819,Newly Built 5 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +7820,Newly Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7821,5 Bedroom Mansion,Ajah Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7822,4 Bedroom Fully Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7823,900 Sqms Land,Lekki Epe Express Way Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7824,650 Sqms Of Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7825,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +7826,"3.5 Acres Of Land (14,000 Sqms)",Ikota Lekki Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7827,Elegant 5 Bedroom Fully Detached,Pinnock Beach Estate Jakande Osapa Jakande Lekki Lagos,₦,"455,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7828,890sqm Of Dry Sand Filled Land,Chevy View Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7829,4 Bedroom Terrace Duplex,Alternative Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7830,4 Bedroom Terrace Duplex,Inside An Estimate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +7831,4bedroom Semi Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +7832,640sqm Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7833,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Ikate +7834,Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"195,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7835,Luxiourious 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Chevron +7836,2800sqm Land,Ikate Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7837,New House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0, beds,4 baths, Toilets,Lekki Phase 1 +7838,Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +7839,Executive 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7840,Tastefully Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +7841,Tastefully Built 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +7842,Land,Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7843,A Shopping Complex,Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +7844,Tastefully Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7845,Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7846,Luxury 3 Bedroom Flat,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +7847,Land,"Victoria Crest 2, Off Orchid Road Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7848,Newly Built 4bedrooms Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +7849,A Land Measuring 1500sqm.,Admiralty Way Lekki Phrase 1. Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7850,5bedrooms Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +7851,4bedroom Terrace Duplex With A Room Bq,Bayview Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +7852,8 Hectares Of Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7853,Spacious And Well Furnished 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +7854,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +7855,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7856,Fully Serviced 2 Bedroom Apartment,Conservation Road Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +7857,Luxurious 2 Bedroom Apartment,Off Conoil Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +7858,5bedrooms Luxury Duplex For Sale At Orchid Road Lekki,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +7859,90000 Square Meters,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Ikate +7860,A Well Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7861,Value Centric 4 Bed Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +7862,Luxury 5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +7863,2 Bedroom Flat,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +7864,Luxury 3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7865,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,0 baths,0 Toilets,Osapa London +7866,Luxury Mini Flat,Ologolo Lekki Lagos,₦,"30,000,000",1,1,1,1 beds,1 baths,2 Toilets,Ologolo +7867,3 Bedroom Duplex,Beautiful Gated Estate At Agungi Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +7868,Joint Ventures; 6plots Of Land Together (cornerpiece),Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7869,New House,Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +7870,5 Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +7871,House,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds, baths, Toilets,Ikota +7872,4bedrooms Semi Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +7873,Luxury 2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +7874,Newly Built 4bedroom Semi Detached Duplex,"Orchid, After 2nd Tollgate. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +7875,Semi Detached 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7876,A 3 And Half Plot Of Land,Baruwa Town Jakande Lekki Jakande Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7877,Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +7878,2plots Measuring 1265sqm,Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7879,Prime 2100sqm Commercial Land Facing The Express,Facing Lekki Epe Expressway By Chevron Chevron Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7880,3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +7881,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +7882,Brand New 5 Bedroom Detached Duplex In A Secured Environment,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +7883,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ologolo +7884,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +7885,4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +7886,A Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +7887,Classic 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +7888,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +7889,50 Units Of 3 Bedroom Apartments With A Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +7890,Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +7891,1000 Square Metre Land,Lekki Phase 1 Lekki Lagos,₦,"185,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7892,5 Bedroom Duplex For Sale At Osapa London Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +7893,Mixed Use Land,"Freedom Way, Lekki Phase 1, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7894,"930sqm Corner Piece Land With Foundation, Aproved For Commercial Use",Anjouse|fola Osibo Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7895,5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths, Toilets,Ikate +7896,"Brand New, Tastefully Finished And Modern 4 Bedroom Semi Detached Duplex On 3 Floors With Quality Finishing",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7897,5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets,Ikota +7898,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"86,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +7899,Luxury 3 Bedrooms Flat,Lekki Phase1 Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +7900,"Brand New, Fitted And Spacious 1 Bedroom Apartment In A Secured And Serviced Estate",Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets,Osapa London +7901,"Newly Built, Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq",Oral Estate Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7902,A Newly Built 4 Bedroom Fully Detached Duplex With A Bq,By Vgc Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +7903,5bedroom Furnished Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +7904,4 Bedroom Semi Detached Duplex,"Lekki Phase 2, Lekki Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +7905,4 Bedroom Terracd Duplex,Lekki Phase 1 Lekki Lagos,₦,"8,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7906,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +7907,Tastefully Finished 4 Bedrooms Terrace,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7908,New House,Osapa Agungi Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Agungi +7909,Luxurious First Class Fully Serviced 4 Bedroom Terraces,Beaufort Residences Ilasan Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +7910,Well Situated 765sqm Bareland,"Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7911,Brand New 4 Bedroom Smart Home Dulex,Adeleye Street Idado Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7912,Exquisitely Finished New 5 Bedrooms Fully Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +7913,New House,Oral Estate Ikota Lekki Lagos,₦,"125,000,000",0,1,0, beds,5 baths, Toilets,Ikota +7914,Pentheone Smart Home,Orchid Road Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +7915,A Newly Built 5 Bedroom Fully Detached Duplex With A Bq And A Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Ikota +7916,5 Bedrooms Detached Duplex With Swimming Pool,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +7917,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +7918,A Luxury Brand New And Automated 5 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7919,8 Plots Of Land,"Mayegun Jakande ,close To Ologolo, Inner Road Llnks To Ologolo, Lagos Ologolo Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Ologolo +7920,3 Bedroom Apartment + Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +7921,3 Bed Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +7922,A 500sqm Land,Acadia Grove Estate By Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +7923,4 Bedroom Semi Detached Duplex,Femi Okunnu Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +7924,12 Rooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +7925,Land,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7926,Brand New 5 Bedroom Detached Duplex With Swimming And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +7927,Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +7928,Luxurious West Bridge 4/5 Bedrooms,Off Chevron Toll Gate Lekki. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7929,"A Prime Firm Dry Land Of Approximately 1,200sqm",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7930,De Castle Max Apartment,Chevron Lekki Lagos,₦,"61,750,000",0,0,0,4 beds, baths, Toilets,Chevron +7931,A Newly Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +7932,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7933,4 Bedroom Semi Detached Duplex,After Second Gate Ikota Lekki Lagos,₦,"85,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikota +7934,New House,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds, baths, Toilets,Chevron +7935,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7936,Megamound Sales ........... Plots Of 600sqm And 700sqm With C Of O,Z Ikota Lekki Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +7937,4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7938,Available Land,"Providence Road, Lekki Phase 1 Lekki Epe Expressway. Lekki Phase 1 Lekki Lagos",₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7939,3bedroom Terrace With 1room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7940,Contemporary 5 Bedrooms Detached Duplex With Swinming Pool And Penthouse,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +7941,Lakeview 5 Bedrooms Fully Detached Duplex.,Chevron Chevron Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7942,Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7943,2000sqms Land,Seagate Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7944,Land,Ikate Ikate Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7945,A Newly Built 4 Bedroom Semi Detached Duplex Penthouse With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +7946,A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +7947,6 Bedroom Detached House All Ensuite,Nicon Estate Ikate Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +7948,950sqms Land With A Fully Detached Duplex,Directly On Adebayo Doherty (road 14) Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7949,Luxury Newly Built 5 Bedroom With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +7950,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +7951,"A Land Measuring 1,296 Sqm",Orchid Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7952,C Of O,Vgc Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +7953,Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +7954,A Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +7955,"Executive Furnished 4 Bedroom Fully Detached Duplex With Bq, At Ikota Lekki", Ikota Lekki Lagos,₦,"200,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Ikota +7956,Banana Island Waterfront Pure Residential Zone. 4611.03sqm.,Banana Island Waterfront Pure Residential Zone Vgc Lekki Lagos,$,"11,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +7957,Exclusive 4bedroom Terrace Duplex Ema,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +7958,(678)sqm Land,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7959,"Landed Property In Whitesand Estate, Ologolo. Size: 760sqms Bareland. Tittle: Registered Survey And Deed. Location: Whitesand Estate, Ologolo. Jnf",Ologolo Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ologolo +7960,Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +7961,A Front Plot Measuring 461 Sqm,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Osapa London +7962,Very Hot 77000sqm Of Land In Pinnock Beach Estate Osapa,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"11,550,000,000",0,0,0, beds, baths, Toilets,Osapa London +7963,Spacious Fully Serviced 4 Bedroomsemi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +7964,Land,Spa Road Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7965,Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,"Vgc Regional Road, Lekki Vgc Lekki Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +7966,"A Land Measuring 2,000 Sqm",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +7967,Spacious And Tastefully Finished 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +7968,5bedrooms Duplex,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +7969,New House,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds, baths, Toilets,Agungi +7970,4 Bedroom Fully Serviced Detached Duplex Plus Bq,Platinum Way Jakande Jakande Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +7971,State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets,Agungi +7972,4bedrooms Semi Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7973,Land Measuring 650sqm,Ologolo Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7974,Brand New 5 Bedroom Fully Detached,Bakare/bera Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +7975,Incomparable 10 Units Of 4 Bedrooms Terrace Duplex,"Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7976,Newly Built 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +7977,Luxury Waterfront Highrise 2 Bedroom Flat With A Bq,"Sapphire Tower Blue Water, 2nd Roundabout Right Side Lekki Phase 1 Lekki Lagos",₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +7978,Mini Flat,Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +7979,"Luxury 5 Bedroom Duplex With Swimming Pool, Cinema And A Bq",Spg Road Igbo Efon Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7980,4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +7981,5 Bedrooms Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +7982,A Land,"A Land For Sale In Off Freedom Way, Beside Orange Island. Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +7983,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ologolo +7984,4bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +7985,"Land Measuring Size 1,000 Sqm2",Ikate Lekki Lagos,₦,"220,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +7986,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +7987,Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +7988,Newly Built To Taste 5bedroom Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +7989,Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"120,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +7990,A Brand New 4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +7991,House,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Chevron +7992,Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +7993,Executive 3 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +7994,4bedrooms Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +7995,Newly Refurbished Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq,Northern Foreshore Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +7996,4bedrooms Terrace Duplex,D Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +7997,Luxiourious 5bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Agungi +7998,5 Bedroom Detached Duplex House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +7999,Contemporary 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8000,Luxury 5bedrooms Duplex For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8001,5bedrooms Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8002,House,Jakande Lekki Jakande Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +8003,5 Bedroom Duplex,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +8004,4 Bedroom Terrace Duplex,Orchid Road Axis Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +8005,3 And Half Plots Of Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8006,2 Bedroom Serviced Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +8007,4 Bedroom Semi Detached Duplex In Ikota,"Ikota, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths, Toilets,Ikota +8008,Well Located 5 Plots Of Land,Harris Drive By Vgc Vgc Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8009,2 Numbers Of 5 Bedroom Semi Detached House With Bqs,"Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8010,"5bedroom Detached Duplex For Sale In Lekki,osapa London",Osapa London Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths, Toilets,Osapa London +8011,4 Bedroom Terrace,"Victoria Crest, Orchid Road Ikota Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8012,1000sqm Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8013,5bedroom Duplex With A Mini Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8014,Exquisitely Finished Modern 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +8015,5bedrooms Detached Duplex With Swimming Pool For Sale At Lekki Orchid Road,Orchid Road Lekki Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +8016,Beautifully Built Tastefully Finished Serviced Studio Apartment,Lekki Paradise Estate Chevron Lekki Lagos,₦,"18,000,000/year",1,0,0,1 beds,1 baths,1 Toilets,Chevron +8017,Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8018,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets,Ikota +8019,Tastefully Finished 4 Bedroom Terraced Duplexes,On Orchid Road Lekki Lagos Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8020,5 Bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8021,Fully Detached 5 Bedroom Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +8022,Beaitiful 4 Bedroom Duplex And A Room Bq In A Mini Estate, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8023,A Brand New 4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +8024,A Newly Built Luxury 3 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +8025,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths,5 Toilets,Ikota +8026,4 Bedroom Terrace With Bq By Water Front,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +8027,Fantastic 2 Bedrooms Apartment Newly Built,Ikota Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +8028,A Brand New 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +8029,5 Bedroom Duplex Newly Built,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8030,Newly Built 2 Bedrooms Flats,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +8031,Absolutely Stunning Unfurnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8032,Land,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8033,Newly Built 5bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8034,New House,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths, Toilets,Chevron +8035,Newly Built Four Bedroom Terrace Deplex,Emcel Court Ikate Lekki Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +8036,Land,Off Spg Road Ologolo Lekki Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8037,Contemporary 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8038,6bedrooms Mansion With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikota +8039,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8040,Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8041,Fully Serviced 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +8042,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Ikota +8043,Five Bedroom Detached House With Swimming Pool In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8044,Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8045,A Newly Built 5 Bedroom Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +8046,5bedrooms Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8047,5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8048,Newly Built Executive 4bedroom Semi Detached,Inside An Estate At Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8049,A Modernly Built 2 Bedroom Furnished Flat Apartments,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +8050,5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +8051,5bedrooms Detached Duplex,Pinnok Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8052,9 Units Of Newly Build 3 Bedrooms Flat,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"700,000,000",1,1,1,9 beds,10 baths,10 Toilets,Lekki Phase 1 +8053,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex Jenf,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,5 Toilets,Ikota +8054,4bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8055,950sqm Bare Land,Block 48 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8056,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8057,"Fantastic 48 Room Hotel For Sale In Lekki, Very Close To Lekki Epe Expressway",Close To The Lekki Epe Expressway Agungi Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Agungi +8058,Luxury Newly Built Units Of 4 Bedroom Terraces,2nd Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +8059,4 Bedroom Terrace Duplex,"Vgc, Agungi, Lekki Conservation Centre, Chevron Igbo Efon Lekki Lagos",₦,"44,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8060,Two Plots Of Land,Lekki Right Side Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8061,Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8062,Exclusive 6 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikota +8063,"A Land Measuring 1,800sqm",Durosinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8064,Executive 4bedroom Terrace Duplex Built Newly With Topnotch Materials Now Selling,Ikate Property Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8065,Lovely &newly Built To Taste 5bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8066,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8067,Prime Land Suitable For Any Development,Freedom Way Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8068,Luxurious 5 Bedroom Detached Duplex House,Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +8069,5 Bedroom Duplex With Bq And Security House,"Lekki Conservation Centre , Chevron , Lekki Chevron Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8070,Fully Furnished 5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths, Toilets,Osapa London +8071,"Newly Built, Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq",Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +8072,"Distressed Sale: Fully Detached Gigantic Mansion Of 5 Bedroom Duplex With 3 Sitting Rooms, 2 Bedroom Guest Chalet And A Room Boys Quarter, Gate House Etc Corner Piece With Ample Parking Space. Land Size: 1,252sqm Location: Vgc",Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +8073,Well Finished 3bedroom Flat (1st Floor),Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +8074,Exquisitely Finished 5 Bedroom Fully Detached Duplex House Jw,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8075,"Luxury 5 Bedroom Duplex With Servant Quaters At Pinnock Estate, Lekki Jw",Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8076,Exquisitely Finished 4 Bedroom Semi Detached Duplex Within An Estate On Chevron Alternative Route Dol,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8077,Luxury 3 Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"261,000,000",0,1,1,3 beds,3 baths,3 Toilets,Victoria Garden City +8078,3 Bedroom Flat/apartment For Sale + ( House Contents),Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +8079,5 Bedroom Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +8080,Beautiful 4 Bedroom Fully Detached Duplex With Bq Jn,Y Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8081,Land For Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8082,Newly Built 5 Bedroom Semi Detached Duplex +bq In A Fully Serviced Estate,"Oceanbay Estate,off Orchid Road Chevron Lekki Lagos",₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +8083,Spacious 5bedroom Duplex With Bq,Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8084,Detached House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8085,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +8086,6 Bedroom Semi Detaches Duplex And Bq,Chevvy View Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8087,Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8088,Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8089,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +8090,Contemporary 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8091,Land,Chief Collins Uchiuno Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8092,Lovely 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +8093,Flourish Apartment And Terraces Offers A Range Of Amazing Property Types For Sale. Price Starts At 40m For 2 Bedroom Apartment,"Orchid Road, Off Lekki Epe Expressway, Just Passed The Second Toll Gate. Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8094,Newly Built 4 Bedroom Terrace Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8095,4 Bedroom Fully Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +8096,8 Hectares Of Land Off Freedom Way Beside Periwinkle Estate Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8097,Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +8098,Glamour 5 Bedrooms Detached Duplex Newly Built With Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8099,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"86,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +8100,Contemporary Designed 4 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +8101,"Emcel Court 4 Start's Sales Of 2 Bedroom Terrace Duplex At 38m Other Property Types Available Includes 4 Bedroom Terrace, Semi Detached And Fully Detached Duplexes","Igbo Efon, Lekki Epe Expressway. Igbo Efon Lekki Lagos",₦,"52,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +8102,Newly Built And Spacious 3 Bedroom Apartment, Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +8103,Newly Built Luxury 3 Bedroom Fully Finished And Self Serviced Apartment Plus Bq,"Cromwell Court, Chevron Drive Chevron Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,4 baths,4 Toilets,Chevron +8104,Gorgeous 4 Bedrooms Semi Detached Duplex Newly Built,Cowrie Creek Estate Ikate Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +8105,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +8106,3 Bedrooms Penthouse,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +8107,Newly Built 4bedroom Fully Detached Duplex.,"Lekki County Estate, Ikota Lekki Lagos",₦,"105,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8108,New Serviced 3bedroom Flat,Ilasan Behind Romay Garden Ilasan Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +8109,3 Bedroom Flat,Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,4 Toilets,Other Lekki +8110,Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +8111,4 Bedroom Semi Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +8112,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +8113,Beautiful 5 Bedroom Fully Detached Fully Automated Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +8114,6 Bedroom Contemporary Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,0 baths,0 Toilets,Ikate +8115,Spacious Service 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +8116,Governor Consent,Orchid Road Chevron Lekki Lagos,₦,"72,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +8117,5 Bedroom Fully Detached House Facing The Lake,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8118,4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8119,Beautiful 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +8120,Brand New Luxury 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +8121,House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths, Toilets,Chevron +8122,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +8123,Top Notch Detailed Luxury Alcadia Extension Homes,"Arcadia Extension, Off Pinnock Lekki Lagos",₦,"450,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +8124,"4 Bedroom Fully Detached Duplex, An Exquisite 2 Bedroom Apartment And Bq",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +8125,Luxury 5bedroom Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8126,Lovely Serviced 3 Bedroom Apartment + Bq,Agungi Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,4 baths,0 Toilets,Agungi +8127,Lovely Serviced 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +8128,New House,Sangotedo Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets,Victoria Garden City +8129,4 Bedroom Detached Duplex With Bq,Sangotedo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8130,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8131,Water Front 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8132,Presidential 6 Bedrooms Detached Duplex,Cowry Creek Estate Ikate Lekki Lagos,₦,"600,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +8133,5 Bedroom With Bq Fully Detached Property,Alternative Drive Chevron Lekki Lagos,₦,"71,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +8134,6 Units Of Standard 3 Bedroom Flats With Bq,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,3 beds,6 baths,0 Toilets,Lekki Phase 2 +8135,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8136,Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds, baths, Toilets,Chevron +8137,Tartiana Court Ikota,Ikota Villa Estate Lekki. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Ikota +8138,Exquisite 5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8139,New House,Elegushi New Horizon 2 Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,6 baths, Toilets,Ikate +8140,"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Orchid Road Lekki Axis Lagos. Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +8141,New House,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,0 Toilets,Chevron +8142,Luxury 6 Bedroom Detached Duplex,"Vgc, Lagos Vgc Lekki Lagos",₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +8143,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +8144,New House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +8145,Luxury 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8146,2 Bedroom Apartment,Osapa Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +8147,Luxury 4bedroom Fully Detached Duplex With Swimming Pool,Orchid Road Lekki Lagos Oral Estate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8148,Massive 4bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8149,New House,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,2 beds, baths, Toilets,Ikate +8150,"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Pinnock Beach Estate Ikate Lekki Lagos State. Ikate Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +8151,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,0 Toilets,Ikate +8152,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +8153,2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,0 baths,0 Toilets,Ikate +8154,Elegantly Finished Luxury 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +8155,Mufasa Apartments,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +8156,Land,Near White Sand School On Lekki Right Hand Side Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8157,New House,Vgc Lekki Lagos,₦,"125,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +8158,Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +8159,Exquisitely Finished 6 Bedroom Mansion,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +8160,Newly Built Luxury 4 Bedroom Fully Serviced Maisonette,"Orchid Hotel Road, Lekki Lagos State Oral Estate Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +8161,Land In Baruwa Ologolo 799sqm,Baruwa Ologolo Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Ologolo +8162,Exclusive 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8163,Newly Built 3bed Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,4 baths,0 Toilets,Osapa London +8164,Luxury 3 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8165,A Newly Built And Well Finished 5 Bedrooms Detached House,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8166,700sqm Fenced & Gated Landed Property,Ilasan Lekki Lagos . Ilasan Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8167,New House,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +8168,Classy 3 Bedroom Apartment,Cromwell Estate Chevron Alternative Road Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +8169,Four Bedroom Terrace Deplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +8170,Four Bedroom Terrace Deplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +8171,Brand New Contemporary Home,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8172,Exquisitely Finished Luxury 3 Bedroom Apartment Facing The Expressway At Ikate By Enyo Filling Station,Ikate Lekki Lagos,₦,"88,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +8173,2000sqm Waterfront Land In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8174,Spacious And Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8175,Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Eleganza 2nd Toll Gate Chevron Lekki Lagos State. Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +8176,New House,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +8177,4 Bedroom Semi Detached Duplex + A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8178,Contemporary And Well Finished 5bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +8179,Fully Detached 5 Bedroom House (carcass),Pinnock Beach Estate Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8180,Smart Home With Pool In A Great Location,Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8181,8 Plots Of Land Strategically Facing Lekki Expressway,Spg Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8182,Tasefully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8183,Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8184,Land,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8185,5 Bedroom Fully Detached House,Lekki County Homes Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8186,Executive 4bedroom Terrace With A Room Bq Apartment,Elegushi Ikate Lekki Lagos,₦,"90,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Ikate +8187,Exclusive 5 Bedroom Fully Detached House With Private Cinema And Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"330,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8188,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8189,Tastefully Finished Ensuite 5bedroom Detached Hse +swimming In Lekki Phase 1,Tunde Fisayo Lekki Phase 1 Lekki Lagos,₦,"350,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8190,Newly Ensuite 5bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8191,Furnished 4 Bedroom Terrace,Chevron Conservation Chevron Lekki Lagos,₦,"45,000,000/sqm",1,0,1,4 beds,5 baths,5 Toilets,Chevron +8192,Well Built 4 Bedroom Self Compound Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets,Ikota +8193,Fully Furnished 2 Bedroom Luxury Flat,"Horizon 2, Meadow Hall Road Ikate Lekki Lagos",₦,"60,000,000",0,0,1,2 beds,0 baths,0 Toilets,Ikate +8194,Land,Twin Lakes Estate. Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8195,"Newly Built 4bedroom Semi Detached Duplex With Bq, At Orchid Lekki",Orchid Lekki Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,5 baths,6 Toilets,Other Lekki +8196,A Newly Built 4 Bedroom Fully Detached Duplex,"Signature Estate 2, Ikate Elegushi Ikate Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +8197,A Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds, baths, Toilets,Ikate +8198,A Brand New 4 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"135,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +8199,A Beautifully Built 4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8200,Furnished 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +8201,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +8202,Land Measuring 1600sqm,"Ilasan, Off Lekki Ekpe Expressway Ikate Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8203,1 Bedroom Serviced Mini Flat,Chevron Alternative Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,2 baths,2 Toilets,Chevron +8204,A Brand New Fully Furnished 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +8205,A Brand New 4 Bedroom Terrace Duplex,By Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +8206,Lovely 3 Bedroom Terrace,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets,Chevron +8207,Brand New 4 Bedroom Terrace,Adeleye Street Idado Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +8208,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Lekki County Homes Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikate +8209,Brand New 4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +8210,Executive 4bedroom Duplex With 2units Of 2bedroom Apartment,"Mobil Estate,ilaje Lekki Lagos",₦,"75,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Other Lekki +8211,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +8212,Beautifully Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Ikota +8213,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +8214,Newly Built 5 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +8215,Newly Renovated 4 Bedroom Terraced Duplex,"Cluster One Estate, Lekki County Homes Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Ikota +8216,Waterfront Land Measuring 1500 Sqm,By World Oil Filing Station Ilasan Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Lekki +8217,A Brand New 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets,Ikota +8218,Luxurious 5bedroom Detached Duplex,Omole Phase 1 Lekki Lagos,₦,"150,000,000/day",1,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8219,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8220,Land,"Hampton Bay Estate, By Cowrie Creek Estate Ikate Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8221,Well Situated Land Measuring 620sqm,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8222,Land,Dominos Pizza Agungi Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +8223,Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +8224,2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +8225,New Spacious Ensuites 4bedroom With B.q,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8226,1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8227,4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +8228,4bedroom Duplex,Orchid Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8229,4 Bedroom Duplex With A Bq,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8230,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8231,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8232,Brand Newly Built Fully Serviced 3bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +8233,30 Units Of Serviced 1&2 Bedroom Apartment,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +8234,Executive Brand New 4 Bedroom Semi Detached Duplex,Inside An Estate Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8235,Land,Vintage Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8236,Newly Built 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8237,Executive Newly Built All Rooms En Suite 5 Bedrooms With Boys Quarter And Swimming Pool,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +8238,4 Bedroom Terrace Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8239,Half Plot Of Land Of Land At 304sqm (back) With A Foundation In A Gated Estate (where You Have To Get A Code To Enter).,Inside A Close Estate Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8240,4 Units Of Miniflat Bq,Bogije Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8241,Spacious Contemporary Styled 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +8242,Beautifully Finished 5 Bed Fully Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8243,Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets,Chevron +8244,New 5bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8245,Luxury 4bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8246,2 Numbers 4 Bedroom Detached House,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8247,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +8248,Luxury Newly Built 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8249,Exe4 Bedroom Fully Detached Duplex Plus A Bq,Chevron Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +8250,5bedroom Smart House,Lekki Phase1 Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8251,Newly Built 4 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8252,A Spacious 3 Bedroom Flat,Ikate Lekki Lagos,₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +8253,20 Units Of 4 Bedroom Terrace Duplexes,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +8254,4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8255,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +8256,Beautiful Waterfront 5 Bedroom Fully Detached Duplex With Bq Available,Megamound Estate Ikota Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +8257,Newly Built Executive 4bedroom Terrace Duplex For Sale. #55m Per Annum With Furnitures And #45m Without Furniture,Inside A Mini Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +8258,Luxury 5 Bedroom All Rooms En Suite Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8259,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8260,Luxury 6 Units Of Serviced 2 Bedroom Block Of Flats,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +8261,4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets,Agungi +8262,Spacious Contemporary 5 Bedroom Detached Duplex,"Orchid, Lekki Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +8263,4bedrooms Semi Detached Duplex For Sale At Lekki Second Toll Gate,By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8264,Newly Built 4bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8265,Luxury 4bedrooms Duplex For Sale At Lekki Second Toll Gate,Lekki Second Toll Gate By Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8266,4 Bedroom Detached Duplex With Bq,"Bera Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8267,5 Bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8268,4bedrooms Duplex,Ikate Lekki Lagos,₦,"118,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +8269,5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8270,5bedrooms Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8271,4bedrooms Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +8272,2 Bedroom Apartment With Bq,Jakande Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +8273,4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +8274,Luxurious 5bedrooms Duplex,"Osapa London , Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8275,Newly Built 5bedrooms Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +8276,4bedrooms Terrace Duplex With Self Compound,Agungi Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +8277,5bedrooms Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8278,5bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8279,5bedrooms Duplex With Swimming Pool,Lekki County Ikota Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8280,5bedrooms Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +8281,3bedrooms Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +8282,Furnished 5 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8283,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +8284,Newly Built 5 Bedrooms Duplex,"Osapa London, Lekki Phase2 Osapa London Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8285,Newly Built 5bedrooms Duplex For Sale At Lekki,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8286,5bedrooms Duplex,X Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8287,4bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8288,Luxury 5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +8289,5bedrooms Duplex For Sale At Lekki Count,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8290,5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +8291,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Chevron +8292,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +8293,4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +8294,5bedrooms Duplex With Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8295,5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8296,6 Bedrooms Luxury Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +8297,2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets,Ikate +8298,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +8299,4 Bedroom Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +8300,Spacious 5bedrooms Duplex,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets,Other Lekki +8301,5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8302,4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8303,5bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8304,4bedrooms Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8305,4bedroom Detached Duplex,Lekki Conservative Road Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8306,175sqm &135sqm Office Spaces,Lekki Phase 1 Lekki Lagos,₦,"70,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8307,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8308,Top Notch Luxury 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8309,Spacious Contemporary Styled 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8310,Well Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +8311,Brand Newly Tastefully Built 4 Bedroom Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8312,Newly Built Tastefully Finished 3bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +8313,Brand New 5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8314,5bedrooms Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8315,Luxurious 5 Bedroom Fully Detached Duplex,Serene Estate Ikate Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +8316,Well Finished 4 Bedroom With A Maid Room,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8317,Luxurious 5bedroom Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8318,Tastefully Finished 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +8319,Lovely Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"1,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +8320,Newly Built And Fully Serviced 2 & 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8321,Fully Serviced Alluring And Decently Spaced 4 Bed Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets,Ikota +8322,Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Agungi +8323,Land,Pinnock Estate Lekki Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8324,Luxury Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8325,4bedroom Terrace Fully Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8326,Well Spaced Decently Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +8327,Spacious Tastefully Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +8328,Massive And Superb 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8329,Massive 5 Bedroom Detached Duplex With Bq On A 600sqm Orchid Lekki,Orchif Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8330,Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +8331,15000sqm Of Land,Freedom Way Ikate Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8332,800sqm Land,Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8333,1000sqm Land,Very Close To Ever Care Hospital Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8334,Land,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8335,Land,Megamound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8336,Decently Finished 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8337,Beautifully Built Luxury 4 Bed Fully Detached Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0, beds, baths, Toilets,Ikate +8338,Closable Land Deal,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +8339,1300sqm Land,Lekki Rhs In An Estate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8340,Serene Serviced 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8341,Fantastic 4 Bedroom Detached Duplex In Agungi,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,4 Toilets,Agungi +8342,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8343,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8344,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8345,Finished 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8346,Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +8347,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8348,Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8349,Tastefully Finished 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8350,Decently Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8351,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8352,4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8353,880 Sqms Land,Off Freedom Way Lekki Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8354,Spacious 4 Bedroom Semi Fully Detached,Happy Land Estate Lekki Phase 2 Lekki Lagos,₦,"70,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +8355,Luxury 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8356,Tasefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +8357,Sandfilled 300sqm Dry Land,Off Orchid Road Chevron Lekki Lagos,₦,"25,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8358,Exquisite Contemporary Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8359,Land,Ilasan Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8360,Luxury 5 Bed Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +8361,Luxurious 5 Bedroom Fully Detached Duplex,Victoria Park Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8362,A Lovely 4 Bedroom Semi Detach Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +8363,4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +8364,4 Bedroom Serviced Apartment With Cinema,Spar Road Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8365,"2,704.351sqm Commercial Land",Opposite Ikota Villa Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8366,Land,Off Orchid Road Lekki Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8367,Luxury 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,0 baths,0 Toilets,Osapa London +8368,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8369,Exclusive 4 Bedroom Fully Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8370,Detailed Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8371,4 Hectares Of Mixed Use Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8372,10 Hectares Of Mixed Use Land,Ilasan Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8373,Built 4bedroom Fully Detached,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8374,Luxury 3bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +8375,4 Bedroom Terrace Duplex,Very Close To Alpha Beach Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8376,4 Bedroom Detached Duplex,Second Tole Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +8377,6 Bedroom Well Built Duplex,Bera Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8378,Spacious 4 Bedroom Semi Detach Duplex,"*mega Mound Estate, Ikota* Ikota Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8379,Decently Finished 4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8380,Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8381,4 Bedroom Terrace Duplex Within A Mini Estate,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets,Chevron +8382,4 Hectares Of Land,"Behind Enyo Filling Station, Ikate, Lekki Ikate Lekki Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8383,Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8384,Executive 4 Bedroom Fully Detached Duplex Plus A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8385,Beautiful 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8386,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8387,4 Bedroom Detached Duplex,County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +8388,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +8389,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8390,48 Room And Suites Hotel,Chevron Lekki Lagos,₦,"750,000,000",0,0,1,0 beds,0 baths,0 Toilets,Chevron +8391,4 Bedroom Semi Detached Duplex House,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +8392,Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8393,"1,320sqm Of Land",Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8394,7 & Half Plots Of Land,Idado Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8395,5 Plots Of Land,On Orchid Road Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8396,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8397,Land,Lekki County Home Ikota Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8398,5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8399,Furnished 2 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"40,000,000/sqm",0,0,1,2 beds,3 baths,3 Toilets,Osapa London +8400,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8401,Most Beautiful Newly Built All Rooms En Suite 4 Bedrooms Maisonette,Ikate Elegushi Orizon Villa Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8402,A Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +8403,1000 Sqm Land,Blenco Area Ikate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8404,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +8405,Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8406,Land,Osapa Bustop Facing The Expressway Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8407,Land,Lekki Scheme 2 Fenced And Sand Filled Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8408,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +8409,2 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +8410,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8411,A Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets,Chevron +8412,Brand New Luxury 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +8413,2 Acres Of Land,Orchid Road Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8414,Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq Jen Yemi,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8415,Luxury 5bedrooms Duplex,S Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +8416,Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8417,5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +8418,Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8419,Newly Built Luxury 3 Bedroom Fully Finished,"Oral Estate, 2nd Toll Gate Lagos State. Oral Estate Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +8420,2 Bedroom Serviced Apartment,Ikate Right Ikate Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +8421,4 Bedroom Penthouse,Ikate Right Ikate Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +8422,Newly Built 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8423,345sqm Of Land In A Serene Estate,"Atlantic View Estate, Along Alpha Beach Road Chevron Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Chevron +8424,5bedrooms Duplex,A Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8425,3 Bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets,Ikate +8426,5bedrooms Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8427,"*available For Joint Venture . Prime Land On Lekki Express By Elf Bus Stop Lekki Phase 1* Size: 2,238.91sqm",D Lekki Phase 1 Lekki Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8428,Fully Serviced 4 Bedroom Semi Detached & 4 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,5 Toilets,Chevron +8429,Beautifully Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8430,"8,500 Square Meter In Lekki Phase One, Lagos","Off Adaramati Way, Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8431,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8432,Luxury 4 Bedroom With Bq,Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8433,1400sqm (corner Piece) Land,Lekki Rhs Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8434,"Newly Built, Tastefully Finished Four (4) Bedroom Contemporary Duplex With Boys Quarter",Oral Estate Extension Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8435,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +8436,Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8437,Brand New Exquisitely Finished 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +8438,Newly Built 4 Bedroom Terrace Duplex With A Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8439,5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"435,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8440,A 4 Bedroom Terrace Duplex House,Orchid Inside An Estate Lekki Lagos,₦,"3,500,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8441,Land Measuring 671sqm,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8442,2 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +8443,4bedrooms Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +8444,4 Bedroom Terraces,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8445,New House,Snd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds, baths, Toilets,Chevron +8446,4bedroom Fully Serviced Terrace For Sale At Lekki Phase1,Kuboye Lekki Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8447,Exquisitely Finished 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +8448,4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8449,5bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8450,Tastefully Finished 4 Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8451,Gorgeous 4 Bedrooms Fully Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,6 Toilets,Chevron +8452,Luxury 5bedroom Fully Detached Duplex With Bq,Chevron. Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +8453,4 Bedroom,Osapa Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8454,Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +8455,4/5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8456,5 Bedrooms Detached House,Jakande Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +8457,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Chevron +8458,Fully Detached 4 Bedroom Duplex At Omole Phase 2 With C Of O.faithconcept,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +8459,Newly Built Contemporary Home In A Good Location,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8460,Land,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8461,5 Bedroom Fully Detached Duplex With A Bq,By Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +8462,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8463,Beautifully Finished 5 Bed Fully Detached House With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8464,4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8465,Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8466,Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8467,5bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8468,5 Bedrooms Duplex,"Osapa London , Lekki Phase2 Osapa London Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8469,Classy And Re Furbishable 5 Bedroom Bungalow,Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8470,Executive 3 Bedroom Flat Apartments,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8471,2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets,Ikate +8472,Brand New 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +8473,Brand New 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8474,"5bedrooms Duplex With Cinema, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8475,Tastefully Finished 4 Bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8476,5bedrooms Duplex,Megamound Estate Ikota Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8477,Cornerpiece 450sqms With A Semi Detached Duplex,Directly On Bisola Durosinmi Etti Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8478,Spacious And Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +8479,3 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +8480,4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8481,Gorgeous Well Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8482,4bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8483,Automated 6bedroom Pent House Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,0 baths,0 Toilets,Osapa London +8484,New House,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +8485,Luxury 5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8486,Executive 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8487,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +8488,Studio Apartment,Ologolo Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ologolo +8489,Newly Built 4 Bedroom Terrace With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8490,Newly Built 9 Flats Of 3 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,1,0,3 beds,4 baths,0 Toilets,Lekki Phase 1 +8491,Astonishingly Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +8492,5bedrooms Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +8493,Brand New 4 Bedroom Terrace Duplex,Off Orchild Hotel Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +8494,5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikate +8495,New House,Lekki County Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,0 Toilets,Chevron +8496,Spacious And Well Built 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +8497,1 Plot Of Land In Transcendence Estate Behind Novare Mall,Behind Novare Mall Sangotedo Lekki Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets,Other Lekki +8498,Well Finished 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +8499,Newly Built 5bedroom Duplex In A Serene Environment,Idado Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +8500,"Fantastic 4 Bedrooms Semi Detached Duplex, All Room En Suite With Modern Fittings",Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8501,Office Space,Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8502,Newly Built Luxury 1 Bedroom Fully Finished Self Serviced Apartment,Elegushi Ikate Lekki Lagos,₦,"50,000,000",1,1,0,1 beds,2 baths,2 Toilets,Ikate +8503,Gorgeous 4 Bedrooms Fully Detached House With An Ensuite Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +8504,Developer Delight 5 Plots Of Land In An Estate Off Orchid Road,"Off Orchid Road, Lekki Chevron Lekki Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +8505,644sqm Land With Governo's Consent In Ologolo,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ologolo +8506,A Mansion With 6 Beds All Ensuite Fully Detached Duplex. Chika,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,8 Toilets,Osapa London +8507,Fully Detached 5 Bedroom Duplex In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,4 Toilets,Ologolo +8508,5bedrooms Mansion With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8509,4 Bedroom Fully Detached Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8510,Fully Automated 5 Bedroom Detached Duplex With Swimming And 2 Rooms Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +8511,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +8512,4bedroom Duplex With 2 Units Of 2bedroom Flats,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8513,Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8514,4 Bedroom Terrace Duplex With A Bq*,Oniru Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8515,3 Bedroom Terrace,Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +8516,Land,Twin Lake Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8517,3bedrooms Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +8518,7 Units Of Waterfront Luxury 3 Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +8519,4bedrooms Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8520,4units Of Three Bedroom Flats Fully Furnished,Between Lekki Phase 1 & Agungi Estate Axis Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8521,Well Finished Contemporary 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +8522,Three Bedroom Maisonette And Bq,Off Freedom Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"80,000,000/month",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +8523,Spacious 4bedroom Terrace Duplex,Chevron Alternative Route Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8524,5 Bedroom Duplex In A Serene Location Orchid Lekki,Orchid Opposite Chevron Drive Agungi Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +8525,Exquisitely Finished 4 Bedroom Detached Duplex Jw,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8526,Exquisite 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +8527,4bedrooms Semi Detached Duplex,2nd Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8528,2.0007 Hectares Of Land,"Behind Lekki 2nd Toll Gate, Lekki Conservation Toll Plaza, Beside Chevon. Chevron Lekki Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8529,5bedrooms Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8530,4 Bedroom Semi Detached House With A Back Garden And A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +8531,4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +8532,Luxury Finished 4bedroom Semi Detached Duplex With Bq,Romax Homes. Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets,Victoria Garden City +8533,New 4 Unit Of 4 Bedroom Terrace With Bq Location: Lekki Phase 1,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8534,New House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +8535,3 Bedroom Penthouse,Jay Jay Oladimeji Close Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8536,Executive All Rooms En Suite 4 Bedrooms Carcass,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +8537,"A Land Measuring 2,402.46 Sqm",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8538,5 Bedroom Detached House (all Ensuite) With 3 Rooms Bq (all Ensuite),Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +8539,"Lovely 2 Bedroom Terrace Duplex In A Mini Estates In Osapa . This House Is Exquisitely Finished, Spacious And Very Well Built.",Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +8540,Newly Built And Finish 4 Bedroom Detached Duplex,Orchid Road By 2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8541,Newly Built 4bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8542,Luxury 5 Bedroom Duplex With Excellent Facilities,"Chevy View Estate,chevron Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8543,Land,Off White Sand Avenue In Well Secured Close Estate. Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8544,Studio Apartment,Bakare Estate Agungi Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,1 Toilets,Agungi +8545,Luxury 4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,5 baths,0 Toilets,Osapa London +8546,Brand Newly Built Fully Serviced 2bedroom Flat,Megamond Estate Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +8547,9 Plots Of Land,Orchid Road Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8548,House,Primewater View Garden Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths, Toilets,Ikate +8549,Luxury 4bedrooms Semi Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8550,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +8551,Newly Built 4 Bedroom Detached Duplex\,Ikota Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8552,4 Bedroom Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +8553,Brand New 4 Bedroom Fully Detached Duplex,Van Daniels Estate Off Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8554,800sqm Of Land, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8555,A Standard 3 Bedroom Apartment With Bq At Prime Water Grden In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8556,Land,Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8557,5bedroom Duplex,Northern Foreshore Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8558,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +8559,5 Bedroom Fully Detached Duplex In Osapa London,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +8560,Brand New 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Ikota +8561,Fantastical 4 Bedrooms Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8562,Newly Built 4bed Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8563,4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8564,Contemporary 5 Bedroom Duplex With Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +8565,5 Bedroom Terrace Duplex,"Ikota Roya Estate Off Lekki Epe Expressway, Lekki Lagos Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +8566,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +8567,A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +8568,Land,Spar Road Ikate Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8569,A Beautifully Built 1 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"25,000,000",0,0,0,1 beds, baths, Toilets,Other Lekki +8570,4 Bedroom Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds, baths, Toilets,Ikate +8571,Luxury 2 Bedroom Apartment With 24hours Power Supply,Elegushi Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +8572,The Wasky Edge Apartments,"Olusesi, Chevron Extension, Lekki Conservative Center.* Chevron Lekki Lagos",₦,"46,000,000",0,0,0,2 beds, baths, Toilets,Chevron +8573,3bedroom Terrace Duplex Offplan Project.,"Imperial Oaks Estate, Orchid Road. 2mins Drive From Lekki Epe Expressway. Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +8574,New House,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets,Chevron +8575,2bedroom Flat,Ikota Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8576,A Newly Built And Well Furnished 3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,1,3 beds, baths, Toilets,Other Lekki +8577,Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +8578,1 Bedroom Apartment,"Cluster One Estate, Road 1 Ikota Lekki Lagos",₦,"29,000,000",0,0,0, beds, baths, Toilets,Ikota +8579,A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +8580,"Land Measuring 1,100sqm With Demolishabl Structure",Fola Osibo Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8581,Brand New 2 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"30,000,000/sqm",1,1,0,2 beds,3 baths,3 Toilets,Chevron +8582,Godmade Connect Court 3 Ikate,"Behind Onike Art Gallery Ikate, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,0,0,2 beds, baths, Toilets,Ikate +8583,3 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +8584,Land,Ilasan Lekki Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8585,Serviced 3 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +8586,House,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +8587,A 4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"45,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +8588,Very Hot Land Opposite Dangote Refinery,Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Lekki +8589,4bedrooms Smart Home,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8590,Newly Built Detached House,Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +8591,Lounge And Bar Proposed Property, Lekki Phase 1 Lekki Lagos,₦,"15,000,000/day",0,0,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +8592,5 Bedroom Duplex Fully Detached Duplex With A Bq And Swimming Pool,Pinnock Beach Estate Jakande Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +8593,5 Bedroom Detached Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8594,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +8595,This Lovely 4 Bedroom Semi Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8596,5 Bedroom Terrace Detached Duplex,"Alma Beach Estate, By Richmond Estate, Nike Art Gallery Road, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8597,Exquisitely Finished 5 Bedroom Detached Duplex House With A Bq Jw,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8598,Luxury 3 Bedroom Apartments With A Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8599,4bedroom Semi Detached House,Victoria Gardens Bay 111 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8600,Residential Regular Sharp Plot Of Land Measuring 780 Square Meter,Off Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +8601,5bedroom Detached Duplex For Sale In Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8602,Spacious And Tastefully Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8603,Land,"Lekkk Scheme 2, Behind Emeralds Housing Scheme Estate Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8604,5 Bedroom Detached Duplex,Lekki County Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +8605,5bedrooms Duplex,Orchid Road By Lekkki Second Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8606,Beautiful 4 Bedroom Terrace Duplex For Sale. Ben,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +8607,Two Plots Of Dry Land,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8608,A Newly Built 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +8609,Mini Flat,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"1,700,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8610,"Landed Property Of Approximately 997sqm With Structure Directly On Christ Avenue, Lekki Phase 1 Price N350m.",Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8611,Newly Built 4bedroom Duplex,Opposite Ikate Ilasan Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8612,Tastefully Finished 5bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8613,New House,Snd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds, baths, Toilets,Chevron +8614,4 Bedroom Semi Detached Duplex,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +8615,Fully Detached 5bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +8616,Newly Built 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +8617,4bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8618,New House,Lakeview Park 2 Estate Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,0 Toilets,Chevron +8619,3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +8620,5 Bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8621,5 Bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8622,5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +8623,Brand New And Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,"Off Orchid Road, Beside Cooplag Estate, By Second Toll Gate Chevron Lekki Lagos",₦,"49,000,000",0,1,0, beds, baths, Toilets,Chevron +8624,Lovely Beautiful And Luxury 3 Bedrooms Block Of Flats, Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +8625,Most Affordable Dry Land With Quick Development,By Pinnock Estate Osapa London Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets,Osapa London +8626,2.1 Hectares Of Land,Beside Vgc Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8627,Beautifully Designed & Well Finished 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +8628,Newly Built 4bedroom Duplex With Bq,Alternative Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8629,Automated 5 Bedrooms Detached Duplex With Rooftop Terrace And Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8630,Beautiful 5 Bedrooms Detached Duplex Newly Built With Bq,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +8631,Newly Built 3 Bedroom Blocks Of Flat,.. Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +8632,4bedrooms Massionette,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8633,3 Bedroom Maisonette + Bq,Off Freedom Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +8634,New House,Menga Mount Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths, Toilets,Ikota +8635,550sqm Land,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8636,A Brand New 5 Bedroom Fully Detached Duplex With A Bq,"Megamond Estate, Lekki County Homes Ikota Lekki Lagos",₦,"210,000,000",0,0,0,5 beds, baths, Toilets,Ikota +8637,800sqm Fenced Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8638,Land,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8639,Luxurious 5bedrooms Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +8640,Luxurious 5bedrooms Duplex,Z Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8641,Luxurious 4bedrooms Terrace,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +8642,4bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +8643,5bedrooms Duplex,Ikate Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8644,Top Notch Detailed Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +8645,Four Bedroom Terrace Duplex With A Room Bq At Lekki Phase 1 Lekki Lagos,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8646,4bedrooms Duplex,\ Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8647,4bedrooms Semi Detached Duplex For Sale At Agungi Lekki,Agungi Lekki Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +8648,"5bedrooms Duplex With Cinema Room, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8649,4bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8650,4bedrooms Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8651,5 Bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8652,Waterside 5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +8653,4bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8654,5bedrooms Mansion,"Pinnock Beach Estate, Osapa London Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8655,Newly Built 4bedrooms Terrance Duplex At Lekki County,Lekki County Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8656,Luxurious 4&5bedrooms Duplex For Sale,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8657,4 Bedroom Detached Duplex With Bq,"Bera Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +8658,5bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8659,5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8660,5bedrooms Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8661,5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +8662,Newly Built 5 Bedroom Detached Duplex With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8663,Brand New Serviced 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +8664,Luxury 5bedrooms Duplex For Sale At Megamound Lekki,Megamound Lekki Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8665,5bedrooms Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +8666,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8667,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8668,Fully Automated 5 Bedroom Fully Detached Duplex Smart House With Bq,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"320,000,000",0,1,0,5 beds, baths, Toilets,Ikota +8669,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets,Ikota +8670,Newly Built 4bedrooms Fully Detached Duplex For Sale At Orchid Roads,Orchid Hotel Roads Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +8671,5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8672,4bedrooms Semi Detached Duplex,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +8673,4bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8674,4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +8675,Luxury 5bedrooms Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8676,5 Bedroom Duplex,Mega Mound Lekki Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +8677,4 Bedroom Duplex,S Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8678,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +8679,Furnished 4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000/sqm",0,1,1,4 beds,5 baths,5 Toilets,Chevron +8680,3 Plots Of Corner Piece Land,"Twin Lake Estate, Chevron Lekki Lagos",₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8681,Brand New 4 Bedroom Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +8682,Beautifully Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +8683,Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",1,0,0,5 beds, baths, Toilets,Ikota +8684,600sqm Of Land,Royal Pine Estate Opposite Van Daniel Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8685,Brand New 2 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +8686,Brand New 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +8687,Beautifully Built And Well Furnished 4 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +8688,Newly Built 4 Bedroom Terraced Duplex With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +8689,Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +8690,Land,"Hampton Bay Estate, By Cowrie Creek Estate Ikate Lekki Lagos",₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8691,High Standard 4 Bedroom Fully Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +8692,Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +8693,Land,Omorinre Johnson Street Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8694,"Newly Built 5bedrroom Fully Detached Duplex, At Osapa, Lekki",Osapa Lekki Lagos,₦,"300,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +8695,"Executive 4bedroom Terrace Duplex With Bq, At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +8696,Brand New 4 Bedroom Semi Detached,Eletu Osapa London Lekki Lagos,₦,"85,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +8697,5 Bedroom Fully Detached,Peacock Beach Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +8698,Luxurious 5bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"165,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Other Lekki +8699,Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq Jw.,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8700,Exquisitely Finished 4 Bedroom Fully Detached Duplex Jn,Agungi Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +8701,Exquisitely Finished 4 Bedroom Semi Detached Duplex House Jw,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8702,Newly Built 5bedroom Duplex With Bq At Bera Estate,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8703,Fully Furnished Detached 5bedroom Duplex,"Orchid Road, Lekki Lagos. Lekki Lagos",₦,"125,000,000",0,0,1,5 beds,0 baths,0 Toilets,Other Lekki +8704,Luxurious 3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +8705,4bedroom Duplex,Gated Area Igbo Efon Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8706,"Fenced And Gated Bareland Measuring 1,125 Square Metres",Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8707,400sqm Of Land Available,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8708,Luxury 1 Bedroom All Rooms En Suite Apartment With A Well Fitted Kitchen,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +8709,Brand New Executive 4 Bedroom Fully Detached Duplex With Bq + Swimming Pool For Sale. Location: Ikota Villa Estate Lekki Price: ?120m Title: Governors Consent. Mark,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8710,Luxury 3 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +8711,4bedroom Duplex Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8712,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +8713,Just Out Now Newly Built A Little Luxurious 4bedroom Semi Detach Duplx Wth A Bq At Vella Homes Off Chevron Lekki Lagos,Vella Homes Lekki Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +8714,4 Bedroom Terrace Duplex,Orchid Eleganza Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8715,"Exclusive 4 Bedroom Terrace With Communal Swimming Pool, Cctv Camera",Orchid Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8716,Decently Finished 2 Bed Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +8717,Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8718,Sand Filled Land Measuring 700sqm Available,Ben Flow Estate Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +8719,Contemporary 2bedroom Terrace Duplex Available,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +8720,Luxury Fully Serviced 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +8721,Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +8722,3bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +8723,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +8724,11 Units Of Blocks Of Flat,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +8725,"Luxurious, Newly Built 4units Of 4bedroom Maisonette With Bq In A Secured Estate",Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +8726,4 Plots Of Land,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8727,2 Units Of 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8728,Massive 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +8729,5bedroom Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +8730,Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8731,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8732,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +8733,Newly Built 3 Bedroom Flat,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +8734,3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +8735,4bedroom + 2 Rooms Boys Quarter,Off Durosimi Eti Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8736,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8737,Fully Furnished 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +8738,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8739,Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8740,Land,Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8741,Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +8742,Land Measuring 666sqm,Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8743,"1,400sqm Water Front Land",Inside Vgc Estate Vgc Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +8744,Newly Built 5bedroom Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8745,"Land Measuring 2,402.46sqm",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8746,Spacious Fully Furnished 2bedroom Flat,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8747,Serviced &newly Built 4bedroom Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +8748,Newly Built 4bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8749,2plots Of Land With Cofo,Orchid Road Just Beside Cooplag Cooperative Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Chevron +8750,Exquisitely Finished 4 Bedroom Semi Detached Duplex Jw,Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +8751,"Newly Built, Tastefully Finished 4 Bedroom Duplex",Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8752,"Fantastictcaly Finished 4 Bedroom Fully Detached Duplex Elegant Home With A Room Bq Secured And Gated Estate,exotic Custom Made Yemi",Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +8753,Executive And Luxurious 4 Bedroom Semi Detached Duplex With 3years Payment Plan,Jakande Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8754,Exclusive 5bedroom Detached Duplex With Bq & Swimming Pool,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +8755,Waterfront Land Measuring 1500sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8756,A Corner Piece Land,White Sand Avenue Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8757,Executive 4bedroom Terrace Duplex With Flexible Payment Option For A Duration Of 18months,"Orchid Road, By Chevron, Lekki Tollgate Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +8758,900sqm Of Land,Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8759,Gorgeous 5 Bedroom Fully Detached Duplex??*jnf,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8760,Prime Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8761,Newly Built Fully Serviced 3 Bedroom Apartment,"Lekki Conservation Centre , Chevron Chevron Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +8762,Spacious 2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +8763,Closable Land Deal,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8764,Superb 4 Bedroom Maisonette With A Bq,Ikate Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8765,This Exotic 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8766,Land,Orchid Hotel Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8767,Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8768,5bedroom Semi Detached With A Room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8769,Land At Pinnock Estate,Pinnock Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8770,Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8771,Land,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8772,Land,Lekki Phase 1 Lekki Lagos,₦,"4,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8773,Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8774,Land,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8775,Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8776,500sqm Of Land,"Periwinke Estate, Ikate. Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8777,3 Bedroom Flat,Beach View Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8778,684sqm Of Land,Ikota Villa Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8779,930sqm Land,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8780,600sqm Of Land,Pinecourt Estate Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8781,700sqm Of Land,Freedom Way Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8782,This Exquisitely Finished 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +8783,Commercial 550sqms With A Pharmacy Structure,"Directly On Admiralty Way, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8784,150 Plots Of Land,"Orchid Road,2nd Roundabout Chevron Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8785,6 Plot Of Land,First Roundabout Dpk Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8786,Well Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8787,Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8788,Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +8789,Land,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8790,Luxury Finished 4bedroom Terrace Duplex.,"Romax Homes, Vgc Vgc Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,6 baths,6 Toilets,Victoria Garden City +8791,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8792,Full Plot Of Land,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"22,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8793,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +8794,"Landed Property Of Approximately 1,388sqm With Structure Located Off Admiralty Road, Lekki Phase 1.",Lekki Phase 1 Lekki Lagos,₦,"480,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8795,Newly Built 4bedroom Semi Detached Duplex With Bq,Luxury 4bedroom Semi Detached Duplex At H Homes. Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +8796,"Luxurious 26 Rooms Hotel On 1,400sqm Land On 1,400sqm Land",Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8797,Functional Filling Station,Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8798,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8799,Well Maintained 4 Bedroom Terraced Duplex With A Bq,Abiola Courts Lekki Elegushi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +8800,A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +8801,A Newly Built 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +8802,A Newly Built 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +8803,A Brand New 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +8804,A Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Lekki Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8805,A Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +8806,Newly Built 4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +8807,Well Sited Land Measuring 1540sqm,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8808,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"135,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +8809,2 Bedroom Serviced Apartment,Ikota Lekki Lagos,₦,"55,000,000",1,0,1,3 beds,0 baths,0 Toilets,Ikota +8810,4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +8811,Luxurious 4bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"200,000,000/day",1,1,1,4 beds,5 baths,5 Toilets,Ikota +8812,"Distress Sale, 5 Bedroom Fully Detached",Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +8813,Lovely 3 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"35,000,000/sqm",1,0,0,3 beds,4 baths,4 Toilets,Agungi +8814,Brand New 4 Bedroom Semi Detach,Spg Road Ologolo Lekki Lagos,₦,"48,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +8815,Brand New 4 Bedroom Semi Detach,Eletu Osapa London Lekki Lagos,₦,"65,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +8816,A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +8817,A Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Chevron +8818,A Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +8819,A Plot Of Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +8820,Newly Built 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +8821,Spacious 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +8822,Newly Built 4bedroom Terraced Duplex,"U3 Estate, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8823,Land Measuring 900sqm,"Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8824,"Land Measuring 3,150sqm",Ikota Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8825,Land,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8826,Lovely 3 Bedroom Terrace,5 Street Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +8827,Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8828,Land,Ilasun Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8829,3 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8830,Newly Built 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8831,Newly Built 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8832,Magnificent 4 Bedrooms Semi Detached Duplex Newly Built With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8833,Newly Built 4bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8834,"Decent 2 ,3 Bedroom Apartment","Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +8835,5 Bedroom Fully Detached Duplex A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +8836,Very Luxury 5 Bedrooms Fully Detached Duplex For Sale With A Room Bq,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +8837,Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8838,4units Of 5 Bedrooms Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +8839,Magistically 5 Bedrooms Detached Duplex With Bq,Chevron Alternative Route Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8840,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,1,4 beds, baths, Toilets,Ikate +8841,Corner Piece Developer Delight Land On Admiralty Way,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8842,5 Bedrooms Terrace Duplex,Chisco Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +8843,5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +8844,3 Fully Detached Duplexes,Ikota Lekki Lagos,₦,"20,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +8845,A Block Of 6 Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +8846,5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +8847,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8848,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +8849,Newly Built Luxury 3 Bedroom Apartment,"Alpha Beach New Road By Chevron Roundabout, Lekki Lagos State. Igbo Efon Lekki Lagos",$,"100,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +8850,New House,Snd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds, baths, Toilets,Chevron +8851,"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Idado Estate, Lagos State. Idado Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +8852,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8853,New House,Horizon Premier Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,0 Toilets,Other Lekki +8854,2 Bedroom Apartment,Right Hand Side Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +8855,Tastefully Finished 2 Bedroom Terrace,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +8856,Spacious And Well Furnished 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8857,Brand New Detached House In A Private Estate,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8858,New House,Arcadia Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths, Toilets,Other Lekki +8859,Land,Vgc Lekki Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +8860,Newly Built Luxury 3 Bedroom Fully Finished And Fully Self Serviced Apartment Plus Bq,Bourdillion Court Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,4 Toilets,Chevron +8861,Head Turning 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +8862,40 Units Of 4 Bedroom Semi Detached With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"6,400,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +8863,Brand New 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +8864,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +8865,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +8866,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +8867,New House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,0 Toilets,Chevron +8868,New House,Lekki County Home Chevron Lekki Lagos,₦,"202,000,000,000",0,1,0, beds, baths, Toilets,Chevron +8869,6 Bedroom Detached Duplex,Africa Lane Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +8870,Tastefully Finished 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8871,Tastefully Finished 5bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8872,Luxury 5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8873,4 Bedroom Semi Detached Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +8874,Tastefully Finished 4 Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8875,Executive Luxury Fully Serviced 3 Bedroom Apartment,Atlantis Ii & Iii Ologolo Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +8876,3 Bedroom Serviced Apartment,Ikate Right Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +8877,4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8878,Elegant 4 Bedroom Semi Detached Duplex |,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets,Lekki Phase 1 +8879,1 Bedroom Fully Functional Flat,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 1 +8880,Two Units Of 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8881,1 Unit Luxury Of 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +8882,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,0 baths,0 Toilets,Chevron +8883,4 Bedroom Semi Detached,Creek Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +8884,5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8885,3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +8886,4 Bedroom Semi Detached With Bq,Harris Drive Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +8887,16000sqm Land,Abijo Gra Government Scheme Lekki Lagos,₦,"30,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8888,3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +8889,1 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,1 beds,1 baths,2 Toilets,Ikate +8890,Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8891,New House,Right Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8892,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +8893,Land,"Directly Facing Lekki Epe By Chevron Adjacent To Chew View Estate Back Gate / Gtbank Lekki, Lagos Chevron Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8894,6 Bedroom Detached Duplex With A Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +8895,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,0 baths,0 Toilets,Osapa London +8896,Land,Facing 2nd Toll Gate Llc Chevron Lekki Lagos,₦,"270,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8897,672sqms Land,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +8898,Land,Besides Vgc Garden Ikota Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8899,4 Plots Of Land,Gra Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +8900,800 Sqms Land,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8901,700sqm Land,Orchid Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8902,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8903,5 Bedroom Wing Of Duplex,Akwuzu Street Lekki Epe Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +8904,5 Bedroom Fully Detached Duplex With Bq And Pool,By Vgc Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8905,4 Bedroom Terrace Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8906,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +8907,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +8908,Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8909,6 Bedroom Mansion With Cinema,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,6 beds,7 baths,7 Toilets,Osapa London +8910,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +8911,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +8912,4 Bedroom Terrace,Harris Drive Vgc Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +8913,Luxury 4 Bedroom Home,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8914,5 Bedroom Fully Automated Contemporary Home,Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8915,Well Finished 4bedroom Semi Detach Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +8916,Spacious 5bedroom Semi Detached Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8917,Newly Built Executive 3 Bedroom Flat,Alternative Route Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +8918,Luxury Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8919,Unique Executive Furnished 41 Rooms Hotel,Lekki Lagos,₦,"1,400,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Lekki +8920,4bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8921,Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +8922,2 Bedroom Flat Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +8923,2.5 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8924,679sqm Of Land,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8925,Lovely Exclusive 5 Bedroom Fully Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8926,1000sqm Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8927,Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +8928,Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq,Vgc Regional Road Lekki Lagos State Vgc Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +8929,Luxury 4 Bedroom Terrace Duplex Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +8930,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8931,1bedrooms Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Chevron +8932,Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8933,Luxury 4 Bedroom Duplex In A Serviced Estate.,Jakande Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +8934,Newly Built 5 Bedroom Fully Detached Duplex With Bq And 247 Electricity,"Ocean Bay Estate , Off Orchid Road Chevron Lekki Lagos",₦,"120,000,000",1,1,1, beds, baths, Toilets,Chevron +8935,Newly Built 5bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +8936,"Newly Built Luxury 2 Bedroom Fully Finished And Serviced Detached Bungalow Plus Bq With Air Conditioning , Fully Fitted Kitchen","Southpointe Estate Lafiaji, Lekki Lagos State. Lekki Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +8937,Carcass Luxury Contemporary 4 Bedroom Bedroom All Rooms En Suite Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +8938,Newly Built 4 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Agungi +8939,Well Finished 3 Bedroom Terrace Duplex Is Located In A Secured Estate.,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +8940,Newly Built 5bedroom Duplex With A Pool At Lekki County Megamond Estate Lekki Lagos,Lekki County Megamond Estate Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +8941,5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +8942,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets,Chevron +8943,A Brand New 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Homes Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Ikate +8944,Beautifully Built 3bedroom Marionette,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +8945,Brand New 4 Bedroom Semi Detached,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Chevron +8946,Exquisitely Finished 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +8947,Contemporary 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets,Agungi +8948,Contemporary 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +8949,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +8950,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +8951,Land,Orchid Road Chevron Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +8952,1 Unit 4 Bedroom Terrace Duplex On 3 Floors, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,0 baths,4 Toilets,Lekki Phase 1 +8953,New House,Ikate Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths, Toilets,Ikate +8954,3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds, baths, Toilets,Ikate +8955,Newly Reburbished Luxury 5 Bedroom Duplex With 2room Boys Quarters,"Charles Ifeanyi St, Lekki Phase I, Lekki, Nigeria Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +8956,House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0, beds,4 baths, Toilets,Chevron +8957,New House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets,Other Lekki +8958,House,Sangotedo Lekki Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths, Toilets,Victoria Garden City +8959,New House,Oral Estate Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,0 Toilets,Chevron +8960,Exquisite 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +8961,A Standard 3bedroom Serviced Apartment,Eleganza Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +8962,2 Numbers 4 Bedroom Detached House With A Room Boys Quarters,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Victoria Garden City +8963,A Lan,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8964,2 Bedroom Massionete,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8965,Exquisitely Built 4 Bedroom Semi Detached Duplex Home With A Bq Jen,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8966,"Executive 4bedroom Detached Duplex With A Room Bq. At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"80,000,000/year",1,1,1,5 beds,7 baths,7 Toilets,Other Lekki +8967,"Ostia Island,10 Hectares Beside Orange Island Off Freedom Way Lekki Phase 1 @n125,000 Per Sqm Titl","Ostia Island,10 Hectares Beside Orange Island Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"125,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8968,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +8969,5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +8970,Luxury Newly Built Many Unit Of 4bedroom Terraces,Vgc Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +8971,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +8972,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +8973,5 Bedroom Detached Duplex With Bq,"Orchid, Ologolo Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +8974,Exceptionally Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +8975,House,Ajah Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths, Toilets,Ikota +8976,4 Bedroom Fully Detached Duplexes With A Room Bq,Ikota Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +8977,3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +8978,4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +8979,Exclusive 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +8980,New House 4 Bedroom Semi Detached,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +8981,Land Measuring 667sqm,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +8982,4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +8983,2 Bedroom Terrace Bungalow,Off Orchild Hotel Road Chevron Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +8984,Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +8985,Land,Behind House On The Rock Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8986,Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8987,Land,Ologolo Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +8988,Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +8989,Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +8990,Land,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +8991,Luxury Furnished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +8992,Luxury 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +8993,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +8994,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +8995,Newly Built Luxury 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +8996,"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki County Homes Lekki Lagos State Jakande Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +8997,A Well Built 3 Bedroom Terraced Duplex With A Bq,Green Ville Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets,Agungi +8998,Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +8999,Executive 3 Bedroom Terrace Duplex Located At Chevron Area Orchid Lekki,Orchid Chevron Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +9000,Newly Built 5 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +9001,Newly Built And Tastefully Finished 4 Bedroom Terraced Duplex With Bq,Ilasan Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9002,Brand New 6 Blocks Of 3 Bedrooms Flats,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +9003,5 Bedroom Fully Detach,St Joseph Agungi Lekki Lagos,₦,"60,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets,Agungi +9004,Top Notch 4 Bedroom Detached Duplex With Bq And Study Room,At Seed School Road Beside Catholic Church Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +9005,Luxury 5 Bedroom Duplex In Hampton Villa,Hampton Villa Behind Arcadia Groove Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9006,Newly Built Semi Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9007,Beautifully Built Luxury 4 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +9008,Modern Business Plaza,Opposite Igboefon Bus Stop Idado Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,1 Toilets,Other Lekki +9009,Unfurnished 3 Bedroom Terrace,New Horizon 2 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9010,1250sqm Virgin Land,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9011,New Built 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9012,"Middle Land At Cowrie Creek, Ikate",Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9013,Beautifully Finished 4 Bedroom Fully Detached Duplex With 2 Bq,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +9014,7 Bedroom Duplex + 2 Rooms Penthouse And A Room Bq,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,7 beds,8 baths,8 Toilets,Ikota +9015,Luxury 2 Bedrooms Flat With 24 Hours Electricity/elevator /pool,"Lekki County , Megamond Ikota Lekki Lagos",₦,"37,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +9016,5bedrooms Duplex With Swimming Pool And Cinema,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9017,Very Hot 2035sqm Of Commercial Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9018,Newly Built 4bedroom Terrace Duplex,Ologolo Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +9019,"Brand New, Contemporary And Tastefully Finished 4 Bedroom Fully Duplex",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9020,Newly Built Serviced 2bedroom Flat,Off Kensular Road Behind Prime Water View Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +9021,Newly Built 3 Bedrooms,Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +9022,Tastefully Finished 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +9023,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +9024,Luxury Spacious Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets,Ikota +9025,Lovely 4 Bedroom Terrace,Salem Ikate Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Ikate +9026,Luxury 3 Bedroom Terrace,Lekki1 Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9027,Jv Lekki Phase One Right Side For This Project Of 16 Luxuries Service 3bedroom Flats,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +9028,Newly Built Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex With A Room Bq,Osapa London Lekki . Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +9029,Beautiful 4 Bed Terrace Duplex With Self Compound And Bq,Ajah Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +9030,Exquisite Home In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9031,Excellently Built 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9032,Spacious And Beautiful Built 5bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +9033,"A Newly Built Fully Serviced Executive 3 Bedroom Service Flat Apartments With Uniform Security Men. Property Comes With Modern Interior Design, All Room En Suite With Modern Interior Fittings. Price:#45m Asking",Off Orchid Hotel Road Lekki Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +9034,Exquisite 5 Bedroom Detached Duplex With A Pool,Ikate Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +9035,5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9036,"5bedroom Duplex En Suite With Jacuzzi In Master And Madam’s Bedroom, 3 Living Rooms, Visitors Lounge And A Dinning Area With An Expansive Kitchen With A Pantry.", Vgc Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +9037,4 Bedroom Terraced Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +9038,Brand New Serviced 4 Bedroom Terrace Duplex,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets,Agungi +9039,Land,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9040,"Contepomporally Design Fully Automated 4 Bedroom Semi Detached Smart Home, Chevron Lekki Lekki. Location: 2nd Toll Lekki Title. Governor's Consent Secured Estate Large Compound Space Etc Yem/jenf",Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +9041,1083sqm Land,Off Castle And Temple Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9042,5 Bedroom Fully Detached,Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +9043,5bedrooms Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9044,Newly Built 4 Bedroom Self Compound Detached Duplex,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9045,Luxurious 5bedrooms Duplex,"Orchid Road Hotel, By Chevron Second Toll Gate Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9046,A Newly Built 4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +9047,Beautifully Built 4 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets,Ikota +9048,5 Bedrooms Fully Detached And 4 Bedrooms Semi Detached,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Ikate +9049,Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9050,Land,Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9051,A Residential Plot Of Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9052,Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Ikota +9053,5 Bedroom Detached Duplex With A Pool In Ikota.,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9054,Land Measuring 1121sqm,U3 Estate Lekki Right Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9055,2 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +9056,Tastefully Finished 4 Bedroom Terraced Duplex In A Serene Gated Estate,Cluster 1 Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +9057,4 Bedrooms Fully Detached Duplex With Boys Quarter,Chevron Alternative Route Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9058,5bedrooms Duplex,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +9059,5 Bedrooms Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets,Ikate +9060,Luxurious 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +9061,New House,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds, baths, Toilets,Ikota +9062,A Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +9063,Waterfront 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9064,2bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +9065,Furnished 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,0 baths,0 Toilets,Chevron +9066,Excellently Finished Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +9067,Brand New 4 Bedroom Semi Detached Duplex,Off Kushenla Road Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9068,5bedrooms Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9069,Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9070,Distress 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"50,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets,Ikate +9071,5bedrooms Semi Detached Duplex For Sale At Orchid Road,"Orchid Road, By Second Toll Gate Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9072,Newly Built Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq,Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9073,Lands Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9074,Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9075,A Newly Built 4 Bedroom Terraced Duplex,"Lekki Conservative Road, Opposite Chevron Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Chevron +9076,Beautifully Finished 5 Bedroom Fully Detached House With Swimming Pool,"Lekki County, Lekki Lekki Lagos",₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +9077,New House,Alfa Beach Road Very Close To Chevron Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets,Chevron +9078,"1,036sqm Of Bare Dry Table Land",Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9079,Newly Built 4 Bedroom Semi Detached Duplex At Chevron Toll Gate,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +9080,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +9081,4 Bedroom Maisonette With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +9082,House,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +9083,Executive 3 And 2 Bedroom Flat Apartment With A Swimming Pool At Ikota In A Secure Estate. Price:#40m And 39m Negotiable. Location Ikota Lekki Inside An Estate Features: Swimming Pool|detailed Finishing|brand N,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +9084,4 Bedroom Fully Detached Duplex With Bq And Family Lounge.,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +9085,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +9086,A Brand New Luxury 3 Bedroom Flat + Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9087,5 Bedroom Detached Home,2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +9088,5bedrooms Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9089,Furnished Terrace 3bedroom Duplex,"Orchid Road, Lekki Lagos State. Lekki Lagos",₦,"67,000,000",0,0,1,3 beds,0 baths,0 Toilets,Other Lekki +9090,"Well Maintained, Beautifully Designed 3bedroom Flat With A Portable Room Boy's Quarter.",Westgate Estate Ologolo Lekki Lagos,₦,"38,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +9091,A Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +9092,Newly Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds, baths, Toilets,Ikota +9093,Exquisitely Furnished 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +9094,5bedrooms Luxury Duplex With Bq,"Megamound Estate, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9095,Bridge Estate,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds, baths, Toilets,Chevron +9096,Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +9097,Newly Built 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9098,4 Plots Of Land,Off Spg Road Ologolo Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ologolo +9099,5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +9100,Fully Serviced 2 Bedroom Apartment,Second Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,0 baths,0 Toilets,Chevron +9101,Decently Built Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +9102,Automated 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9103,3 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +9104,Brand New 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"100,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets,Ikate +9105,A Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Ikate +9106,5bedrooms Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9107,5 Bedroom Duplex For Sale At Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9108,Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9109,Christabel's Gardens,"Off Chevron Toll Gate, Lekki Lekki Lagos",₦,"59,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +9110,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ologolo +9111,"Fenced And Sand Filled Land Measuring Approximately 30,000 Sqm",Lekki Phase 2 Lekki Lagos,₦,"65,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +9112,Newly Built 3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"30,000,000/day",1,1,1,3 beds,4 baths,4 Toilets,Agungi +9113,Gorgeous Water Front 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +9114,Newly Built 5bedroom Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"69,000,000",1,1,0,5 beds,4 baths,5 Toilets,Other Lekki +9115,5 Bedroom Detached Duplex With A Bq,Ikota Villa Estate Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +9116,Tastefully Finished 5bedroom Terrace Duplex With Rooftop Terrace,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9117,Incredible 4 Bedroom Semi Detached Residence,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +9118,Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9119,Luxury 3 Bedroom Flat With Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9120,Land Of 800sqmters,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9121,5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9122,Just Out Now Luxurious 4bedrm Terrace Duplex With Quality Finishing And Much More Comfortable,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9123,New 4 Bedroom Detached Duplex,Osapa Lodon Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +9124,"3bedroom Flat In A Block Of Flats In Agungi Lekki, Lagos",Agungi Lekki Agungi Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Agungi +9125,Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +9126,Spacious And Tastefully Finished 2& 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +9127,Luxury 5bedrooms Duplex For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9128,5 Bedroom Fully Detached Duplex + Bq,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"180,000,000",0,0,0,5 beds, baths, Toilets,Ikate +9129,Tastefully Finished 6 Bedrooms Fully Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +9130,5 Bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9131,"Brand New, Modern 4 Bedroom Fully Detached Duplex",Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +9132,"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House, Nestled Within A Family Friendly And Secured Environment",Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9133,"Newly Built, Tastefully Finished, Spacious, 4bedroom Detached House",Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9134,Beautifully Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +9135,4bedrooms Detached Duplex By Second Toll Gate Lekki,By Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9136,Newly Built 5bedroom Duplex With 2rooms Bq,Lekki Right Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9137,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +9138,This Lovely 4 Bedroom Terrace Duplex In A Secured And Mini Estate,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +9139,Well Maintained 6 Bedroom Detached Duplex In A Secured And Serene Estate,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +9140,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9141,Land In Cowrie Creek Estate,Ikate Lekki Lagos,₦,"228,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9142,5 Bedroom Duplex,Victory Park Estate Jakande Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,0 baths,0 Toilets,Other Lekki +9143,Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq,Orchid Road Lekki Axis Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +9144,Luxurious 5bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9145,Deluxe 4 Bed Fully Detached Duplex Jw,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +9146,Exquisitely Finished Fully Detached 5 Bedroom Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9147,Exquisite 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets,Ikota +9148,3 Bedroom Detached Duplex,Lekki Conservative Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,3 baths,0 Toilets,Chevron +9149,A Fully Detached 5 Bedroom+ 2 Rooms Servants Quarter.,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9150,Luxury Newly Built 4 Bedroom With Bq,Secure Estate In Agungi Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +9151,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +9152,4 Bedroom Semi Detached Duplex With A Room Bq,By Mega Chicken Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9153,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +9154,New House,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets,Chevron +9155,Executive Hotel 48rooms,Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",1,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +9156,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9157,Four Bedroom Terrace Deplex,Silvercrest Estate Orchid Road Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +9158,4 Bedroom Semi Detached Duplex,Omorhire Johnson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9159,Brand New Luxury 5 Bedroom Fully Detached With A Bq,Lekki County Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9160,A Newly Built 5 Bedroom Detached Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +9161,4 Bedrooms Semi Detached Duplex With Bq,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9162,New House,Osapa Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths, Toilets,Agungi +9163,5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9164,5bedroom Detached Duplex For Sale At Lekki County Lekiki,Lekki County Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9165,Cute 5 Bedrooms Detached Duplex With Swinming Pool,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9166,4 Bedroom Terrace In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +9167,5 Bedroom Fully Detached Duplex,Lekky County Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +9168,"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Off Admiralty Way Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9169,Brand New And Exquisitely Finished 4bedroom Terrace With A Room Bq And A Spacious Roof Top Seat Out,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9170,Luxury 3 Bedroom Apartments With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +9171,1 Bedrooms Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds, baths, Toilets,Ologolo +9172,Newly Built Tastefully Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9173,1 Plot Of Land In A Gated Estate,Westwood Estate Badore Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9174,Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Bungalow,"2nd Toll Gate, Lekki Expressway Chevron Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +9175,4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9176,Land. 10% Christmas Awoof Don Land.,"Regnum Estate, Eputu London, 2mins Drive From Lekki Epe Expressway. Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9177,Spacious 6 Bedroom Fully Detached Duplex With Extra Study Penthouse,Southern View Estate Ikota Lekki Lagos,₦,"62,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +9178,Four Bedroom All En Suite Contemporary Semi Detached Duplex,Ologolo By Jakande Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9179,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets,Agungi +9180,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9181,Exclusive 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9182,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9183,"1,300sqm Land","Close To U3 Estate, Lekki Phase 1, Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9184,Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9185,Lovely Units Of 2 And 3 Bedroom Apartments With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +9186,House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets,Lekki Phase 1 +9187,Beautifully Built And Not Furnished 4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +9188,4bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +9189,House,Ilasan Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +9190,Newly Built Executive 2 Bedroom Mansionnette,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +9191,6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +9192,Luxurious Newly Built 2units Of 5bedroom Fully Detached With Bq In A Secured Estate,Agungi Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +9193,15 Units Of 4 Bedroom Luxury Terrace House,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9194,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +9195,"3,2,1 Bedroom Apartment",Second Tole Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,0 baths,0 Toilets,Chevron +9196,Luxurious Units Of 5 Bedroom Fully Detached,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9197,Brand New 4 Bedroom Detached,5 Street Estate Agungi Lekki Lagos,₦,"120,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Agungi +9198,3 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +9199,Fully Detached 4 Bedroom Duplex In Ikota,"Ikota, Lekki Ikota Lekki Lagos",₦,"85,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +9200,Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9201,Well Maintained Beautiful Tastefully Finished Studio Apartment,New Horizon 1 Estate Ikate Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +9202,Very Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9203,4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9204,5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9205,Land,Orange Island Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9206,Land,Chevron Conservation Estate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9207,4 Bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9208,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9209,3 Bedroom Terraced Duplex With A Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9210,Fully Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9211,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9212,500sqm Plot Of Land Forsale At Carlton Gate Estate Chevron Drive Lekki,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Chevron +9213,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +9214,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9215,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +9216,1400sqm Of Land Forsale Off Admiralty Road Lekki With Very Large Detached House And Two Rooms Bq Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9217,1300sqm Of Land,Agungi Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +9218,A Standard 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikota +9219,4 Bedroom Semi Detached Duplex,Vella Homes Off Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"84,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9220,4 Bedroom Semi Detached Duplex With Bq,H Homes Off Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9221,3 Bedroom Penthouse Apartapartment In Ikate Lekki Lagos For Sale,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9222,4 Bedroom Semi Detached Duplex,Orchid Road Elenganza By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9223,Decently Finished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9224,Fully Service 3 Bedroom Flat With A Room Bq,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +9225,4 Bedroom Fully Service Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9226,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9227,1200sqm Plot Of Land Forsale At Lekki Phase 1,Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9228,1000sqm Corner Piece Land With A Demolishable Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9229,1315sqm Land With An Old Building On It,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9230,Spacious 4 Bedroom Semi Detached Duplex In Vgc Lekki Ajah Lagos For Sale,4 Bedroom Semi Detached Duplex Vgc Lekki Lagos,₦,"77,500,000/day",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +9231,Finished 3 Bedroom Terrace Duplex,Victoria Bay Annex 2 Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +9232,Lovely Built 4 Bedroom Terrace Duplex,Victoria Bay Annex 2 Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9233,4 Bedroom Semi Detached Duplex,Victoria Next Iii Vgc Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +9234,Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +9235,4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9236,Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9237,5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +9238,5 Bedroom Fully Detached Duplex + Bq,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9239,Brand New 4 Bedroom Semi Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9240,5 Bedroom Detached Duplex + Bq And Swimming Pool,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9241,"Nicely Built, 4 Bedrooms Semi Detached House",Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +9242,New House Very Large Compound 4 Bedrooms Semi Detached Duplex + 2 Rooms Bq,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +9243,Brand New 5 Bedroom Semi Detached Duplex + Bq,Osapa Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9244,Newly Build 4 Bedrooms Terraced Duplex With Self Compound,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9245,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9246,5 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9247,5 Bedroom Bungalow,Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +9248,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +9249,Tastefully Finished 5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9250,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9251,Brand New 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9252,Brand New 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9253,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000/year",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +9254,A Newly Built 4bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9255,5 Bedroom Detached Duplex,Ikate Lekki Estate Lagos Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +9256,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +9257,4 Bedroom Terrace Duplex,Lekki Toll Gate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9258,4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9259,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9260,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9261,5 Plots Of Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9262,A Plot Of Land,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +9263,"Brand New, Massive & Well Finished 5bedroom Fully Detached Duplex Plus One Room Bq",Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9264,10 Units Of 5 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +9265,Plot Of Land (675sqm) Forsale At Vgc,Vgc Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +9266,7 Plots Of Land,"Lekki Beach Road, Jakande Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9267,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +9268,Newly Built 3 Bedroom Maisonette,Camberwall Advantage 3 Ikate Close To Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +9269,5 Bedroom Detached Duplex,Bakari Estate Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +9270,Discounted Lekki Very Spacious Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9271,4bedroom Terrace Duplex,Liberty Estate Ikate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +9272,Super Spacious Value Centric 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +9273,Distress Sale Very Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9274,4bedroom Semi Detached Duplex,Ikota Axis Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +9275,5 Bedroom Duplex,Orchid Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +9276,Newly Built 4 Bedroom Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +9277,9 Unit Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9278,A Standard 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9279,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9280,Complete Class 5 Bedroom Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9281,4bedroom [email protected] Phase 1,Lekki Phase 1 Lekki Lagos,₦,"108,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9282,Brand New 4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +9283,4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9284,Lovely 2 Bedroom Terrace Duplex,"Emcel Court 4, Orchid, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"37,000,000/day",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +9285,5 Bedroom Fully Detached House With Bq,Dan Ogbeide Close Off Oyinbo Adjahor Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9286,600sqm Land,"Bogije, Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9287,300sqm Land,Bogije Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9288,4bedroom Semi Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +9289,Superbly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +9290,4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +9291,4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +9292,25 Plots Of Land, Chevron Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9293,Well Finished 4 Bedroom Fully Detached Duplex In Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +9294,Beautifully Finished 5 Bed Fully Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +9295,Beautiful 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9296,Plots Of Land,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9297,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +9298,3bedroom Apartment,Ikate Lekki Axis Ikate Lekki Lagos,₦,"57,000,000/year",1,1,0,0 beds,3 baths,4 Toilets,Ikate +9299,600sqm Land,"Itoru Village, Ode Omi, Lekki Lagos",₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9300,Newly Built 4 Bedroom Semi Detached Duplex,Ochid Road Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +9301,New House Massively Spacious 7 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,7 beds,6 baths,6 Toilets,Lekki Phase 1 +9302,Massive Luxury 5 Bedroom Fully Detached House,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9303,Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9304,300sqm Land,Bogije Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9305,Newly Built One Bedroom Apartment,Orchid Road Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9306,Land,Jakande Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9307,Camberwell Estate In Ikate,Ikate Lekki Lagos,₦,"40,000,000",1,1,1, beds, baths, Toilets,Ikate +9308,5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9309,3 Bedroom Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +9310,"1,116sqm Plots Of Land At Twin Lake Estate Opposite Chevron Office Chevron",Chevron Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Chevron +9311,Beautifully Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +9312,Land,Abijo G.r.a. Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9313,Exclusive 4 Bedroom Townhouse With Self Compound,Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9314,Luxury Smart Home 5 Bedroom Detached House + Swimming Pool + 24 Hours Power,Chevron Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +9315,4 Bedrooms Fully Furnished Semi Detached Duplex,Lekki Gardens Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +9316,2 Bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9317,Land,Alpha Beach Road Jakande Lekki Jakande Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9318,4 Bedroom Terrace Duplex,Bridge Estate Off Chevron Toll Gate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9319,Brand New 5 Bedroom Fully Detached Duplex + Bq,Jakande Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +9320,Plots Of Land,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9321,Plots Of Land,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9322,Serviced 2bedroom Apartment,Ologolo Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9323,A Standard 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9324,4 Bedroom Terrace Duplex,Pantheon Smart Terrace Along Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9325,800sqm Plot Of Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9326,Superbly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +9327,Contemporary 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9328,20 Plots Of Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9329,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +9330,5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9331,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +9332,1000sqm Land Forsale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9333,4 Bedroom Semi Detached Duplex Forsale On Orchid Road Lekki,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +9334,1000sqm Land With A Structure On It,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9335,12000sqm Water Front Mix Use Land At Lekki Phase 1,Lekki Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9336,1083sqm Land Water View,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9337,3 Bedroom Fully Serviced Flat With A Room Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +9338,1400sqm Commercial Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9339,4 Bedroom Fully Detached Mansion With A Room Bq,Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9340,Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9341,Tastefully Finished 3 Bedroom Pent Floor + Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +9342,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9343,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +9344,Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9345,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9346,Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9347,Luxury Smart House 5 Bedroom Fully Detached Duplex + Swimming Pool,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9348,Brand New 4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +9349,5 Bedroom Fully Detached Duplex On 2 Floors + Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9350,4 Bedroom Fully Detached Duplex + Bq,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +9351,4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9352,4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"107,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +9353,A Luxury 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9354,Beautifully Built 4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9355,"4 Bedroom Terrace Duplex,",Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +9356,4 Bedroom Terrace Duplex With A Bq,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9357,Spacious 2 Bedroom Apartment,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +9358,Well Spaced Decently Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +9359,5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +9360,5 Bedroom Detached Home,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +9361,Beautiful Units Of 4 Bedroom Semi Detached Duplex,4 Bedroom Semi Detached Duplex Chevron Lekki Lagos,₦,"65,000,000/day",1,1,0,4 beds,4 baths,4 Toilets,Chevron +9362,Exquisitely Built 4 Bedroom Terrace Duplex,4 Bedroom Terrace Chevron Lekki Lagos,₦,"59,000,000/day",1,1,0,4 beds,4 baths,4 Toilets,Chevron +9363,Land With Governor's Consent For Sale In Ocean Villa Estate Orchid Road Lekki Lagos State,Land For Sale In Ocean Villa Landed Property Lekki Phase 2 Lekki Lagos,₦,"35,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 2 +9364,Grandeur Contemporary 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Osapa London Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9365,Land For Sale In Diamond Court Estate Chevron Lekki Ajah Lagos,650sqm Of Land For Sale In Chevron Chevron Lekki Lagos,₦,"92,000,000/day",0,0,0, beds, baths, Toilets,Chevron +9366,Spacious 5 Bedroom Fully Detached Duplex,Victoria Nest 11 Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +9367,Luxurious 5 Bedroom Semi Detached Duplex,Victoria Crest Ii Chevron Drive Lekki Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +9368,3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/year",0,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 2 +9369,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +9370,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9371,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9372,600sqm Land,Ode Omi Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9373,A New Built 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9374,A Standard 4bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9375,A Newly Built 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9376,Standard 4bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +9377,Luxurious Hotel For Sale In Victoria Garden City Ajah Lagos,Nicon Hotel By Victoria Garden City (vgc) Vgc Lekki Lagos,₦,"1,300,000,000/day",1,0,0,10 beds,10 baths,10 Toilets,Victoria Garden City +9378,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9379,4 Units Of 3bedroom Apartment,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9380,6bedroom Detached Duplex With 2 [email protected] County Estate,Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +9381,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9382,Three Units Of 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +9383,Fully Serviced 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9384,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9385,5bedroom Detached Duplex With [email protected] Lekki Toll Gate,Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +9386,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +9387,600sqm Land,Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9388,300sqm Sandfilled Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9389,4 Bedroom Contemporary Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9390,4 Bedroom Terraced Duplex + Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +9391,A Newly Built 4bedroom Semi Detached Duplex,Idado Axis Idado Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9392,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9393,4bedroom Terrace Duplex With Bq @ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9394,Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9395,3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +9396,4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +9397,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +9398,648 Sqm Land,"Ochid Road Lafiaji, At The Back Of Oceanbay Estate Chevron Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9399,5 Bedroom Fully Detached Duplex On 600sqm Of Land,Northern Foreshore Estate Chevron Drive Chevron Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +9400,Bloom Heaven Residences,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +9401,4 Bedroom Terraced Duplex,Ochid Road Lekki Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +9402,Newly Built 2 Bedroom Apartment,Camberwall Advantage 4 Off Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +9403,Newly Built And Exquisitely Finished 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9404,4bedroom Fully Detached,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9405,Decently Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9406,4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9407,300sqm Land,"Praise Gardens, Lekki Lagos",₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9408,"500sqm Plot Of Land Forsale At Agungi, Lekki",Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Agungi +9409,4 Bedroom Duplex,"Divine Estate Off Community Road Ago Palace Way, Ikota Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9410,800sqm Of Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9411,Contemporary Designed Smart 5 Bedroom Detached Duplex With Bq,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9412,1 Bedroom Maisonette,1 Bedroom Maisonette In Bloom Haven Residence Ikate Lekki Lagos,₦,"43,000,000",1,1,0,1 beds,1 baths,1 Toilets,Ikate +9413,5 Bedroom Duplex, Jakande Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +9414,Luxury 5 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9415,Land,Cheron Drive Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9416,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq&swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9417,A New Built 3bedroom Terrace Duplex,Orchid Axis Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +9418,5bedroom Detached Duplex With [email protected] London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9419,5bedroom Detached Duplex With [email protected] County Estate,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +9420,5 Bedroom Fully Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Osapa London +9421,3 Bedroom Fully Detached Duplex,Victoria Crest 11 Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,0 baths,0 Toilets,Ikota +9422,Newly Built 4 Bedroom Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9423,14 Plots Of Land,Lekki Beach Road Jakande Jakande Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9424,4 Bedroom Semi – Detached Duplex + Bq,Creek Avenue Phase 3 Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +9425,Beautiful 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9426,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9427,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9428,Luxury 2 Bedroom Flat,Beside Vgc Vgc Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets,Victoria Garden City +9429,5bedroom Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +9430,Brand New 5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +9431,4bedroom Luxury Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +9432,Beautiful Contemporary 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +9433,Newly Built 5 Bedroom Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9434,4 Bedroom Terraced Duplex,Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +9435,4 Bedroom Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9436,Tastefully Finished 4 Bedroom Terraced Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9437,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +9438,3 Bedroom Flat Forsale At Agungi,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +9439,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +9440,Brand New 4 Bedroom Fully Detached Duplex + Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9441,3 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +9442,800sqm Plot Of Land,Nicon Town Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9443,3 Bedroom Flat+1 Bq (off Plan),Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9444,Brand New 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9445,Newly Built And Very Spacious Executive 5bedroom Fully Detached Duplex,"Chevron Alternative Route, Tulip Haven Estate Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9446,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9447,650sqm Plot Of Bare Land Forsale At Orange Island Phase 1,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9448,"680sqm Plot Of Land Forsale At Salem Opposite Nicon Town, Elegushi Lekki",Salem Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9449,A Beautiful 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9450,Newly Built 3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +9451,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"52,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9452,5 Bedroom Terrace With A Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9453,5 Bedroom Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +9454,Contemporary And Well Finished 5 Bedrooms Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9455,Newly Built 4 Bedroom Duplex With 2 Floors Plus Bq,Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +9456,Luxury 5 Bedroom Detached Duplex,Lekki County By Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9457,Newly Built 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9458,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +9459,Newly Built 5 Bedroom Detached Duplex,"Off Emma Abimbola Cole, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9460,Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9461,A Newly Built 2bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"30,000,000/year",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +9462,5 Bedroom Fully Automated Contemporary House,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +9463,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +9464,Spacious 2 Bedroom Terrace Duplex,Pantheon Smart Terrace Along Orchid Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +9465,5 Bedroom Fully Detached Duplex + Bq + Swimming Pool,Ikate Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9466,5 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikate Lekki Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets,Ikate +9467,4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +9468,Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9469,5 Bedroom Fully Detached With Bq + Swimming Pool,By Vgc Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +9470,Tastefully Finished 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +9471,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9472,Brand New 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9473,5bedroom Semi Detached Duplex Plus 2 Rooms Bq,"Momodu Lawal Close, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9474,Standard 5bedroom Fully Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9475,A Newly 4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +9476,A Standard 10units Of 2 Bedroom Flat,Ikate Lekki Lagos,₦,"6,500,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +9477,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +9478,1900 Sqm Of Land,Agungi Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +9479,650sqm Plot Of Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9480,Half Plot Of Land Forsale At Chevron Lekki,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +9481,A Newly Built 4bedroom Terrace Duplex,Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,0 Toilets,Other Lekki +9482,A 4bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9483,A Luxury 5bedroom Fully Detached With Swimming Pool,Osapa London Lekki Lagos,₦,"190,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9484,A Standard 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9485,Amazing 2 Bedroom Apartment With Bq,Mufasa Apartment Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +9486,Amazing 4 Bedroom Semi Detached Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Lagos For Sale,Lekki Phase 2 Lekki Lagos,₦,"72,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9487,1000sqm Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9488,775sqm Plot Of Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9489,800sqm Plot Of Land,Chevron Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9490,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +9491,4 Bedroom Fully Detached Duplex,Osapa London Estate Off Jakande Traffic Light Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9492,5 Bedroom Fully Detached Duplex With Bq Seating On 400sqm Land,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets,Chevron +9493,Newly Built 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9494,Brand New 5 Bedroom Fully Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +9495,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +9496,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +9497,5 Bedroom Fully Detached House In A Mini Estate, Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9498,4038.616sqm Plot Of Land,Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9499,900sqm Land With A Demolishable Property On It Off Fola Osibo At Lekki Phase 1,Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9500,450sqm Corner Piece Land With Carcass In An Estate,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9501,900sqm Plot Of Land With A Bungalow On It Forsale At Vgc,Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +9502,24 Plots Of Land,Jakande Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9503,4 Bedroom Maisonette Penthouse With Bq,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +9504,Amazing 2 Bedroom Apartment In Ikate Lekki Lagos For Sale,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +9505,Finished Contemporary 5 Bedrroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9506,Luxury 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +9507,Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +9508,5 Bedrooms Fully Detached Duplex With 2 Bq,Ikate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9509,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9510,Superbly Built 5 Bed Fully Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +9511,Magnificently Built 4 Bedroom Massive Duplex With A Separate Bq,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9512,Camry 2 Bedroom Maisonette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +9513,Beautiful 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9514,Newly Built 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9515,Newly Built 5 Bedroom Duplex With Bq,Ikota Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9516,5 Bedroom Fully Detached Duplex,Creek Avenue Phase 3 Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +9517,Spacious 4 Bedroom Terrace Duplex,Victoria Crest Iv Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9518,Well Built 4 Bedroom Terrace Duplex,Victoria Crest V Harris Drive Vgc Vgc Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +9519,Contemporary Gorgeous 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +9520,Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +9521,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9522,2 Bedroom Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,2 baths,3 Toilets,Other Lekki +9523,5 Bedroom Fully Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9524,5bedroom Detached Duplex With [email protected] County Estate,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +9525,Brand New Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9526,Spacious 3 Bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9527,Nicely Built 4 Bedrooms Semi Detached House,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9528,5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9529,"Newly Built Spacious 5 Bedroom Fully Detached Duplex Mansion With Private Elevator, Cinema And Pool",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9530,5 Bedroom Fully Detached Duplex,Creek Avenue Estate Off Lekki Epe Express Way On The Same Side With Vgc Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +9531,3bedrooms Apartments With Bq,Lekki Phase 2 Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +9532,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +9533,Land,Ocean Breeze Estate Behind Emadeb Filling Station Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9534,Land In Seren Area Of Ologolo,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Ologolo +9535,3 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9536,Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9537,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9538,A Luxury 5bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9539,Luxury Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +9540,4 Bedroom Semi Detached Duplex With A Servant Quarters,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9541,4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9542,"17,600sqm Plots Of Land",Osapa London Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets,Osapa London +9543,Plot Of Land (675sqm),Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9544,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9545,600sqm Land,"Regent City, Odeomi, Lekki Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9546,Contemporary Smart 5 Bedroom Fully Detached Duplex With Bq,Pantheon Smart Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +9547,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9548,Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9549,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ologolo +9550,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +9551,4bedroom Semi Detached Duplex With [email protected] Chevron,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +9552,Well Furnished 4 Bedroom Terrace Duplex,Lekki Garden Phase2 Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9553,100 Plots Of Dry Land Forsale At Illamija Ibeju Lekki,Illamija Lekki Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Other Lekki +9554,Brand New 4 Bedroom Fully Detached Duplex + Bq,Inside Vgc Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +9555,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000/year",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9556,Luxury 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9557,"Units Of Brand New, Nicely Finished & Fully Serviced 4bedroom Terraces",Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9558,12 Rooms All Ensuit Fully Detached Duplex,"Olawale Cole Onitiri, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"630,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +9559,Newly Built 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +9560,Newly Built 5 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9561,5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9562,Tastefully Finished 5 Bedroom Terraced Duplex + Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +9563,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9564,A Luxury 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"500,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +9565,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +9566,Vella [email protected],Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +9567,Tastefully Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9568,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Chevron +9569,A Standard 2bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +9570,Value Centric Detached 5 Bedroom Automated Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9571,4bedrooms Semi Detached Duplex With Bq,Chevron Alternative Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9572,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +9573,900sqm Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9574,5 Plots Of Sand Filled Land In Ocean Bay Estate,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9575,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +9576,Land,Cricle Mall Shoprite Jakande Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9577,5 Bedroom Detached House With 1 Room Bq,Megamond Estate Ikate Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9578,2 Bedroom Penthouse,2 Bedroom Penthouse In Bloom Haven Residence Ikate Lekki Lagos,₦,"63,000,000/day",1,1,1,2 beds,2 baths,2 Toilets,Ikate +9579,Exotic And Unique Newly Built 4 Bedroom Terrace Duplex In Lekki,Lekki Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Lekki +9580,Great Apartment With Great Features And Serenity,Camberwall Advantage 4 Off Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +9581,Newly Built 4 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9582,4 Bedroom Fully Detached + Bq,Vgc Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +9583,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +9584,4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9585,5 Bedroom Fully Detached Duplex With A Bq Forsale At Chevy View Chevron Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9586,Newly Built Spacious 5 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9587,4 Bedroom Semi Detached Duplex Forsale,Chevron Lekki Lagos,₦,"68,000,000/year",0,0,0,5 beds,5 baths,5 Toilets,Chevron +9588,Luxury 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Inside Pinnock Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9589,A Newly Built 1bedroom Apartment,Ikota Lekki Lagos,₦,"33,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikota +9590,A Newly 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9591,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"73,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9592,A Spacious 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +9593,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9594,Newly Built 4 Bedroom Terraced Duplex,Beside Vgc Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9595,Newly Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9596,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9597,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9598,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9599,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9600,5 Bedroom Fully Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9601,5 Bedroom Detached Duplex + Bq & Swimming Pool,Lekki County Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9602,5 Bedroom Fully Detached House,Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9603,1021sqm Land In Ocean Breeze Estate Forsale At Ologolo Lekki,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ologolo +9604,Plots Of Land Forsale At Chevron Drive Lekki,Chevron Lekki Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets,Chevron +9605,Newly Build 4 Bedroom Semi Detached Duplex With Bq In A Gated Estate,Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9606,Plot Of Land (675sqm),Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +9607,Fully Detached 4 Bedroom Two Storey Building Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9608,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9609,4 Bedroom Fully Detached Duplex With A Servant Quarters,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +9610,4 Bedroom Terrace Duplex With A Servant Quarter,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +9611,680sqm Plot Of Land Forsale At Agungi,Agungi Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Agungi +9612,1400sqm Of Land With A Demolishable Structure On It Forsale Off Admiralty Road Lekki Phase I,Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +9613,5 Bedroom Fully Detached Waterview Duplex Forsale,Chevron Lekki Lagos,₦,"300,000,000/year",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9614,"500sqm Plot Of Land Forsale At Agungi, Lekki",Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Agungi +9615,A Luxury 4bedroom Semi Detached With Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9616,4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9617,5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9618,4 Bedroom Terrace Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9619,A Well Built 4bedroom Fully Detached,Ikota Lekki Lagos,₦,"115,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9620,2bedroom Apartment Fully Serviced,Ologolo Lekki Lagos,₦,"37,000,000/year",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +9621,3 Bedroom Maisonette With Bq,Camberwall Advantage Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +9622,Semi Detached,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9623,Luxury Automated 5 Bedrooms Furnished Mansion,Ikate Lekki Lagos,$,"1,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9624,6units Of Spacious Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9625,Newly Built Fully Serviced 4bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9626,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9627,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9628,4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9629,Elegantly Built 5 Bedroom Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9630,Luxurious 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9631,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9632,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9633,Spacious 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9634,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +9635,Spacious 3 Bedroom Terrace Duplex,Victoria Crest Estate Iv Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +9636,2 Bedroom Apartment,Victoria Bay Iii Annex Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +9637,Contemporary Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +9638,4 Bedrooms Fully Furnished Semi Detached Duplex,Lekki Gardens Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +9639,Magnificent Duplex With 17 Bedrooms,C Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9640,Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +9641,Newly Built 4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9642,5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9643,Discounted Lekki Very Spacious Duplex: 4bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9644,650sqm Inside Ocean Bay Estate,Ochid Road Inside Ocean Bay Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9645,4bedroom Detached Duplex With Bq @ikate,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +9646,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9647,650sqm Plot Of Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9648,5 Bedroom Fully Detached Duplex With A Servant Quarters,Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +9649,4 Bedroom Detached Duplex,"Sillicon Estate, Off Alpha Beach Road Chevron Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9650,Newly And Lovely Built Spacious 5 Bedroom Duplex With Swimming Pool And Maximum Security,Lekki Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9651,801.92sqm Land,Salem Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9652,A Standard 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9653,5 Bedroom Fully Detached Duplex With Servant Quarters Forsale At Chevron Toll Gate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Chevron +9654,20 Plots Of Dry Land,"Orchid Road, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9655,5bedroom Detached Duplex,Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +9656,2bedroom Flat,H Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +9657,Fully Service 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9658,979.783sqm Plot Of Land,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9659,Very Big Compound 4 Bedroom Fully Detached Duplex+bq 0n 700sqm,Beside Vgc Vgc Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +9660,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9661,Lovely 4 Bedroom Terrace Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Lagos For Sale,4 Bedroom Terrace Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"57,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9662,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9663,4bedroom Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +9664,Newly Built Spacious 5 Bedroom Detached Duplex With Bq Pool Gym All Rooms En Suite,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9665,Tastefully Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"267,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9666,Land,Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9667,Wonderful 4 Bedroom Semi Detached Duplex,De Castle Apartment Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9668,4 Bedroom Detached Duplex,Pantheon Smart Homes Ikota Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +9669,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +9670,Elite Contemporary 4 Bedroom Detached Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9671,Newly Built 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +9672,Brand New 4 Bedroom Fully Detached Duplex + Bq,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +9673,4 Bedroom Duplex,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +9674,Luxurious 3 Bedroom Penthouse With Bq,Mufasa Apartment Rem Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +9675,A Standard 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +9676,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +9677,4 Bedroom Semi Detached Duplex With Two Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9678,5 Bedrooms Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9679,4 Bedroom Terrace House With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9680,4 Bedroom Terrace House With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9681,Exceptional 3 Bedroom Maisonette,Camberwall Advantage Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +9682,5bedroom Fully Detached Duplex With Swimming Pool For Sale,Osapa London Lekki Phase 1 Lekki Lagos,₦,"350,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9683,2 Bedroom Apartment,"Ochid Hotel Road, Eleganza Busstop Chevron Lekki Lagos",₦,"15,990,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +9684,650sqm Plot Of Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9685,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9686,Exclusive 4 Bedroom Townhouse With Self Compound,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9687,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9688,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +9689,5bedroom Semi Detached Duplex,Liberty Estate Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9690,Newly Built 5 Bedroom Fully Detached Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9691,3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +9692,Amazing Art Work Of 4 Bedroom Terrace Duplex In Ikate For Sale,4 Bedroom Terrace Duplex Ikate Lekki Lagos,₦,"83,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Ikate +9693,5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9694,Newly Built 4 Bedroom Terrace Duplex With Bq,Itedo Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9695,4bedroom Terrace,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9696,Brand New 5 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9697,Functional Filling Station,Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9698,Fully Detached 5 Bedroom Duplex With Bq Carcass,"Location: James Pinnock Place (updc Estate), Osapa, Lekki. Osapa London Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Osapa London +9699,Spacious Contemporary 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9700,3 Bedroom Maisonette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9701,5 Bedroom Fully Detached And Furnished Duplex #,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +9702,4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Chevron +9703,2 Bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +9704,300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9705,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9706,4 Units Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9707,630sqm Plot Of Land,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9708,Contemporary 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9709,Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +9710,Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9711,Spacious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9712,2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9713,5 Bedroom All En Suite Fully Detached House With Attached Bq,"Buena Vista Estate, Orchid Road, Eleganza Chevron Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +9714,4bedroom Semi Detached Duplex+bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +9715,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9716,Amazing 4 Bedroom Fully Detached Duplex,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9717,Beautifully Built 6 Bedrooms Massive Duplex With A Swimming Pool,Ologolo Lekki Lagos,₦,"470,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ologolo +9718,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9719,Affordable 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +9720,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +9721,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +9722,Luxury 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +9723,10000sqm (1 Hectare) At Beach Resort Estate,By Arcadia Groove Estate Osapa London Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9724,4 Bedroom Duplex Forsale,Ikota Lekki Lagos,₦,"80,000,000/year",0,0,0,5 beds,5 baths,5 Toilets,Ikota +9725,Brand New 5 Bedroom Fully Detached Duplex With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +9726,Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +9727,5 Bedroom Fully Detached Duplex + Bq + Swimming Pool,Ikate Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +9728,Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9729,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +9730,3 Bedroom Apartment With Bq,Illasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +9731,600sqm Waterfront Land,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9732,4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9733,4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +9734,3 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9735,4 Bed Contemporary Semi Detached Duplx With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9736,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +9737,Plot Of Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9738,450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9739,2 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +9740,800sqm Of Land At Cowrie Creek Estate Ikate,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9741,5 Bedroom Fully Furnished Fully Detached Mansion With Two Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +9742,2 Bedroom Flat,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +9743,5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9744,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9745,Hotel (59 Rooms) On A 2000sqm Plots Of Land,Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +9746,Land,Ode Omi Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9747,3 Bedroom Terrace Duplex,Victoria Crest V Harris Drive Vgc Vgc Lekki Lagos,₦,"62,000,000",0,1,0,3 beds,3 baths,3 Toilets,Victoria Garden City +9748,Well Located Demolishable 12 Rooms Duplex On 1400 At The Back Of Tantalizers,"Lekki Peninsula Scheme Phase1, Olawale Cole Onitiri, Off Admiralty Road,at The Back Of Tantalizers Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +9749,Beautiful 3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +9750,4 Bedroom Semi Detached Duplex With Bq,Prime Water Gardens2 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9751,4 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +9752,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +9753,5 Bedrooms Luxury Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9754,Well Maintained 3 Bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +9755,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9756,5 Bedroom Fully Detached Duplex + Carport + Bq,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9757,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9758,Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9759,1bedroom [email protected] Phase 1,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +9760,1300sqm Of Land At Elegushi Ikate Lekki,Elegushi Ikate Lekki Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Ikate +9761,A Newly 4bedroom Semi Detached Duplex For Sale,Chevron Axis Chevron Lekki Lagos,₦,"47,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Chevron +9762,4 Bedroom Terrace,4 Bedroom Maisonette With Bq In Bloom Haven Residence Ikate Lekki Lagos,₦,"83,000,000/day",1,0,1,4 beds,4 baths,4 Toilets,Ikate +9763,300sqm Land,"Ogombo Road Eti Osa Lga, Lekki Lagos",₦,"22,500,000",0,0,0, beds, baths, Toilets,Other Lekki +9764,3 Bedroom Terrace Duplex,"Lekki Garden Phase 5, Abraham Adesanya Idado Lekki Lagos",₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +9765,4 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +9766,1005sqm Plot Of Land,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9767,8 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,8 beds,8 baths,8 Toilets,Lekki Phase 1 +9768,Land,"Marywood Villas Estate, Lekki Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9769,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9770,4 Bedroom Penthouse With Bq,4 Bedroom Penthouse With Bq In Bloom Haven Residence Ikate Lekki Lagos,₦,"88,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Ikate +9771,Exquisitively Designed 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +9772,5 Bedroom Fully Detached Duplex Sitting On 1850sqm,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +9773,Newly Built 5 Bedroom Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9774,600 Sqm Land,Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9775,3bedroom Terraced Duplex With A Bq,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +9776,Lavishly Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9777,3 Bedroom Penthouse With Bq,Bloom Haven Residence Ikate Lekki Lagos,₦,"83,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +9778,Tastefully Finished 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +9779,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +9780,Brand New 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +9781,Strategically Located 5 Bedroom Fully Detached Duplex With Swimming Pool,Oniru Lekki Phase 1 Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +9782,A Standard 5bedroom Fully Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9783,Plot Of Land,Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9784,4bedroom Semi Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9785,Plot Of Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9786,"3 Plots Of Sandfilled Land Forsale At Dpkay Estate By Round About On Orchid Road By Chevron Toll Gate, Lekki",Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +9787,Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9788,Newly Built 3 Bedroom Maisonette With Bq,Camberwall Advantage 3 Gbangbala Ikate Close To Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +9789,Fast Selling Terraces,"Beautiful Terrace Duplexes In A Very Good Location Creek Avenue Phase2 Close To 2nd Toll Gate At Ikota, Lekki Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +9790,4 Bedrooms Terraces Plus Bq,Godmade Connect Court 4 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +9791,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9792,4 Bedroom Detached Duplex With Bq,Off Conservation Road Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9793,6bedroom Fully Detached House,Chevyview Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +9794,5bedroom Fully Detached With Swimming Pool Roof Top,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9795,Massive Compound 5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +9796,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"6,400,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9797,Well Finished 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9798,Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +9799,Fully Detached 5 Bedroom Duplex,Megamund Estate Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +9800,4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +9801,Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +9802,Brand New 5 Bedroom Detached Duplex,Victory Park Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +9803,Massive 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9804,Well Crafted 5 Bedroom Detached Home,Lekki Scheme 2. Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9805,Well Finished 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9806,Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +9807,Fully Automated 5 Bedroom Detached Duplex,Pinnock Estate Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +9808,Fully Serviced 5 Bedroom Detached House,Norther Foreshore Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,4 baths,6 Toilets,Chevron +9809,4 Bedroom Apartment With Bq,"Emcel Court, Ikate Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +9810,3 Bedroom Apartment,"Emcel Court, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +9811,2 Bedroom Apartment,"Emcel Court, Ikate Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +9812,Land*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9813,4 Bedroom Terraced Duplex,Spring Vale Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +9814,4bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9815,2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +9816,4 Bedroom Fully Detached Duplex,"Bosmak Haven Estate 1, Shapata By Vgc, Lekki, Lagos, Nigeria Lekki Lagos",₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +9817,4 Bedroom Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +9818,Land,Madison Gardens Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9819,4 Bedroom Semi Detached Duplex,"Bosmak Haven Estate 1, Shapata By Vgc, Lekki, Lagos, Nigeria Vgc Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Victoria Garden City +9820,Fully Services 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road, Lekki, Lagos Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +9821,Fully Services 4 Bedroom Semi Detached Duplex,"Maven Estate, Royal Pine Estate, Orchid Road, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +9822,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +9823,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"187,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9824,Classic 2 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +9825,4 Bedroom Terrace Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9826,4 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"45,000,000/day",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +9827,"4bedrooms Semi Detached House With A Room Bq All Rooms Are Ensuite Fitted Kitchen, Bathtub, Wardrobes The Property Can Be Converted Into A Plaza, Office Or Residential",Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9828,"Newly Built 2 Bedroom Flat At Osapa London Lekki Lagos All Rooms Are Ensuite, Fitted Kitchen, Swimming Pool Etc",Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +9829,4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9830,4 Bedroom Terrace Duplex,Chevron Toll Gate Orchid Road Lekki Lagos Chevron Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9831,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9832,3bedroom Flat,Ikate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9833,4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9834,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,0 baths,0 Toilets,Osapa London +9835,5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9836,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9837,5bedroom Fully Detached Duplex,County Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +9838,Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9839,Land,Pinnoch Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9840,4 Bedrooms Terrace Duplex,In An Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +9841,Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9842,5 Bedroom Semi Detached Mansion,Oral Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9843,Land,Ikate Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9844,4 Bedroom Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9845,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9846,5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +9847,5 Bedroom Duplex,Oceanbay Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,5 baths,0 Toilets,Lekki Phase 1 +9848,Standard 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9849,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,4 Toilets,Ikota +9850,5 Bedroom Contemporary Detached House,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +9851,Land,Off Mayegun Major Road Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9852,Beautifully Built 4 Bedroom Detached Duplex,Capstone Estate Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +9853,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9854,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9855,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Megamond Estate Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Lekki +9856,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9857,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9858,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +9859,Land,Lekki Pride Estate With A C Of O Located At Abraham Adesonya Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +9860,Land,Madison Garden Estate Located At Chevron Drive Lekki Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9861,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9862,Contemporary 5 Bedrooms Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9863,Newly Built 3bedroom Apartment Available For Sale.,By Lekki 2nd Tollgate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +9864,Built 5bedroom Detached Duplex With Swimming Pool,"Lekky Home,lekki Lekki Phase 2 Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9865,Luxury 5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9866,Newly 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +9867,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9868,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9869,2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +9870,4bedroom Semi Detached With A Bq,Orchid Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +9871,4bedroom Semi Detached With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9872,Fully Furnished 5 Bedroom Detached House,Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +9873,4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9874,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9875,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9876,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9877,A Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9878,4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9879,2 Bedroom Luxury Appartment,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +9880,5bedroom Fully Detached Duplex,By Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9881,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9882,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9883,5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool And Gym,Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +9884,5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9885,5 Bedroom Detached House With Swimming Pool,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9886,Luxurious Waterfront 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9887,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9888,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9889,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +9890,4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9891,5 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +9892,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +9893,Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"550,000,009",0,1,0,5 beds,6 baths,7 Toilets,Ikate +9894,"Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate Chevron, Lekki Lagos Nigeria",Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9895,4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9896,Newly Built Four Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9897,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +9898,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9899,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +9900,Newly Built Four Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +9901,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9902,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9903,4 Bedroom Semi Detached Duplex,D Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +9904,5 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9905,4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9906,3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +9907,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9908,Newly Built Two Bedroom Serviced Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +9909,2/3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +9910,New 4 Bedroom Semi Detached Duplex For Sale In Lekki Ikate,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +9911,5 Bedroom Fully Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9912,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9913,2 Bedroom Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9914,Nicely Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +9915,A Newly Built Terraced Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +9916,5 Bedroom Detached Duplex And A Bq, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9917,"Charming Five (5) Bedrooms At Megamound , Lekki, Lagos.",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9918,Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool In Ikate,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +9919,Beautifully Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9920,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9921,Exquisite 3 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,0 baths,0 Toilets,Victoria Garden City +9922,6 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9923,Luxurious 3 Bedroom Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +9924,5 Bedroom Detached Duplex,Secured Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9925,4 Bedroom Detached Duplex,"Chevron,orchid Hotel Road Chevron Lekki Lagos",₦,"53,100,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +9926,Exquisite 3 Bedroom Terrace Maisonnette,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +9927,Lovely 5 Bedroom Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9928,3 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Chevron +9929,Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9930,A 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9931,Newly Built 2 Bedroom Terrace Duplex,"Emcel Court, Orchid Area By Chevron Chevron Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,3 baths,3 Toilets,Chevron +9932,Brand New 5bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +9933,Newly Built Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +9934,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9935,5 Bedroom Fully Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9936,Exquisitely Built 4 Bedroom Detached Duplex For Sale.,Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +9937,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9938,6bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +9939,2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9940,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +9941,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9942,Serviced 3 Bedroom Terrace Duplex, Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +9943,Built 5 Bedroom Fully Detached House,By Chevron Tollgate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9944,Spacious 5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +9945,2bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +9946,Newly Built & Tastefully Finished Luxury 4bedroom Duplex For Sale!!!!,Chevron Lekki Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +9947,"A 7 Bedroom Fully Detached Duplex With A Penthouse Situated In Osapa London, Lekki,lagos.",Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,7 beds,7 baths,8 Toilets,Osapa London +9948,Contemporary 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9949,Contemporary And Well Finished 5 Bedroom Semi Detached Duplex With Swimming Pool,Lekky County Home Lekki Phase 2 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9950,Serviced 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +9951,4bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +9952,Exquisitely Finished 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9953,Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +9954,"5 Bedrooms Fully Detached Ch Duplex With Bq,",Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9955,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9956,Furnished Tastefully Built And Massive 5 Bedroom Fully Detached Duplex With Swimming Pool,Victory Park Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,7 Toilets,Osapa London +9957,Newly Built Four Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +9958,Executive 5 Bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets,Chevron +9959,Water Front 2 Bedroom Apartment,Bloom Heaven Residences Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +9960,A Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,4 baths,0 Toilets,Other Lekki +9961,Contemporary 5 Bedroom Detached Duplex With Swimming Pool,Acadia Groove Estates Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9962,A Contemporary Built 4 Bedrooms Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9963,4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"96,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +9964,4 Bedroom Terrace Duplex In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9965,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9966,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +9967,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9968,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +9969,Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +9970,Beautifully Built 4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +9971,Newly Built 5 Bedroom Fully Detached House.,Pinnnock Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9972,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +9973,Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"278,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +9974,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +9975,4 Bedroom Detached Duplex And 2 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9976,A Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +9977,Executive Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +9978,Newly Built 5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +9979,"1,2,3 & 4 Bedroom Massionette With Bq",Ikate Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +9980,Beautifully Built 5 Bedroom Detached Duplex House,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +9981,Decently Finished 4 Bedroom Semi Detached Duplex,Decently Finished 4 Bedrooms Semi Detached Duplex Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +9982,Well Built 4bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +9983,Amazing New 5 Bedroom Stand Alone Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +9984,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9985,"Luxurious 2units 5bedroom Contemporary Semi Detached Duplex With Swimming Pool,gym And Cinema Studio For Sale",Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +9986,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +9987,5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +9988,Newly Luxurious 5 Bedroom Semi Detached Duplex With Good Facilities,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +9989,Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +9990,Newly Executive 4 Bedroom Duplex With Amazing Facilities,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +9991,Executive 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +9992,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +9993,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +9994,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +9995,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +9996,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +9997,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +9998,"Spacious And Well Finished, 5 Bedroom Fully Detached Duplex",By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +9999,4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +10000,5 Bedroom Fully Detached Duplex With An Exquisite Finishing.,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10001,4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +10002,Serviced 4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10003,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10004,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10005,4bedroom Fully Detached Duplex And 1bq,Bera Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10006,Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Secured Estate Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10007,Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10008,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10009,5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10010,Massive 4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +10011,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10012,4 Bedroom Semi Detached Duplex,S Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10013,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10014,Exquisitely Built 4bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10015,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10016,5 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10017,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10018,Beautifully Built 5 Bedroom Detached Duplex House #,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10019,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10020,4bedroom Semi Detached Duplex,A Very Secured And Lovely Environment Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10021,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +10022,3bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +10023,Serviced 4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10024,Newly Built 5 Bedrooms Fully Detached Duplex,5 Bedrooms Fully Detached Duplex With Bq Ologolo Lekki Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +10025,2 Bedroom Flat,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +10026,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10027,Standard 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +10028,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10029,4 Bedroom Terrace,Orchid Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +10030,5bedroom Fully Detached Duplex With 2bqs,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +10031,4bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10032,4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +10033,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +10034,Tastefully Built 4 Bedroom Maisonnette,Chevy Castle Apartments 4 Bedroom Maisonnette With Bq Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +10035,4 Bedroom Terrace Duplex With A Bq,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10036,5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10037,A Tastefully Finished 5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +10038,"4units Of 2bedroom Apartment Sited In A Well Secured Estate At Ikate, Lekki, Lagos Nigeria",Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10039,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10040,Spacious 4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +10041,5 Bedroom Fully Detached House, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10042,5bedroom Detached House With A 2bq And Open Terrace,Acadia Groove Estate Lekki Phase 2 Lekki Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +10043,"Contemporary 5 Bedrooms Fully Detach Duplex With Bq,",Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10044,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10045,4 Bedroom Townhouse Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10046,Exquisitely Built 4 Bedroom Semi Detached House For Sale.,By Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10047,Beautiful 5bedroom Semi Detached Duplex + A Room Bq For Sale!!!,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +10048,Luxurious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +10049,5bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10050,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +10051,4 Bedroom Semi Detached Duplex With Bq In Vgc Selling On Promo,"Shapata, Vgc Vgc Lekki Lagos",₦,"69,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +10052,4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10053,"Contemporary 5 Bedrooms Fully Detached Ch Duplex With Bq,",Megamond Estates Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10054,Lovely 5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10055,5 Bedroom Detached Duplex With Swimming Pool And Cinema Studio,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10056,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10057,4bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10058,5 Bedroom Fully Detached Duplex With Swimming Pool And Massive Open Rooftop Terrace,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +10059,Luxury Contemporary 4 Bedroom Terrace Duplex With Domestic Staff Quarters, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10060,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10061,5 Bedroom Fully Detached Duplex,E Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +10062,4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10063,Newly Built Four Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +10064,Plots Of Land Measuring 600sqm, Chevron Lekki Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10065,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10066,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10067,Brand New 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10068,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10069,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10070,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10071,Beautifully Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10072,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10073,4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10074,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +10075,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10076,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10077,1 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki 1 Godmade Ikate Lekki Lagos",₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets,Ikate +10078,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10079,Luxurious 2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +10080,5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10081,2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +10082,Luxury 1 Bedroom Apartment & 3bedroom Apartments,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +10083,Victory Star Court 2,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +10084,Well Built Semi Detached Duplex In A Serene Environment.,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10085,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10086,Luxurious 2bedrom Apartment With Amazing Finishing,Secured Estate Lekki Phase 1 Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +10087,4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10088,5 Bedroom Detached Home With Swimming Pool And Cinema,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10089,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10090,Newly Built Five Bedroom Detached Duplex,Orchid Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10091,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10092,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10093,Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos Nigeria,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10094,4 Bedroom Townhouse With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10095,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10096,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10097,Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10098,Luxurious 5 Bedroom Detached Duplex With Bq,Beautiful Estate Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10099,Plots Of Land In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +10100,Ruby,With An Exquisite 2 Bedroom Apartment And Bq Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,8 baths,8 Toilets,Ologolo +10101,5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10102,4 Bedroom Semi Detached Duplex With A Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10103,Newly Executive 4 Bedroom Semi Detached Duplex With B.q For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10104,3 Bedroom Flat,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10105,2 Bedroom Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ologolo +10106,Luxury 5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10107,5 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10108,Contemporary Styled 5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10109,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10110,4 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10111,Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10112,3 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +10113,5 Bedroom Detached Home,Z Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10114,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10115,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10116,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10117,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10118,Emcel Court 4,Orchid Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +10119,Beautiful 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10120,Fully Detached Duplex For Sale Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10121,New Executive 5 Bedroom Detached Duplex In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10122,4/5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +10123,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10124,4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Road Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10125,4 Bedroom Luxury Terrace Duplex,Ologolo By Jakande Jakande Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +10126,Luxury 5 Bedroom Fully Detached Duplex,S Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +10127,Newly Built Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10128,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10129,"A 4 Bedroom Semi Detached Duplex In A Serene Environment Located At Osapa London, Lekki,lagos.",Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10130,"Spacious 5bedroom Fully Detached Duplex With Swimming Pool,",By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10131,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10132,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10133,5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10134,4 /5bedroom Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10135,Exquisitely Built 4 Bedroom Semi Detached House For Sale.,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10136,Contemporary Styled 5 Bedroom Fully Detached Duplex Available For Sale!!!,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10137,4 Bedroom Semi Detached Duplex In Second Lekki Toll Gate,"Second Toll Gate, Lekki Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +10138,5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0, beds, baths, Toilets,Osapa London +10139,Beautifully Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10140,Luxury 5 Bedroom Mansion With Swimming Pool & Cinema House In Osapa,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10141,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10142,Executive Newly 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +10143,New 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +10144,Executive New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +10145,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10146,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10147,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10148,4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10149,5 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10150,3 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +10151,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +10152,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10153,5 Bedroom Detached Home With Swimming Pool,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10154,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10155,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10156,Beautifully Built 4 Bedrooms Semi Detached Duplex, Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10157,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10158,4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10159,Serviced 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10160,Fully Serviced 3bedroom Apartment,Platinum Way Jakande Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +10161,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10162,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10163,Super Spacious 4 Bedroom Semi Detached With Swimming Pool In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +10164,Luxury 4bedroom Semi Detached House With Bq,Beautiful Estate Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +10165,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10166,Newly Build 4 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10167,A 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +10168,4 Bedroom Semi Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10169,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +10170,A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +10171,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10172,Newly Built Four Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10173,Luxurious 2/3bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +10174,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10175,4 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10176,New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +10177,Executive New 5 Bedroom Stand Alone Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10178,Newly Built Executive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +10179,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10180,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10181,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10182,4 Bedroom Semi Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10183,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +10184,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10185,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10186,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10187,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10188,4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10189,Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10190,Luxury & Furnished 4bedroom Semi Detached Duplex+ A Room Bq For Sale!!!!,Tulip Haven Estate Chevron Lekki Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,4 Toilets,Chevron +10191,5 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10192,Brand New 10 Units Of 2bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +10193,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10194,A Newly Built & Tastefully Finished Luxury Shops,Almiralty Mall Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10195,4 Bedroom Terrace Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10196,4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10197,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10198,Newly Built Four Bedroom Semi Detached Duplex With Boys Quarters,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10199,4 Bedroom Semi Detached Duplex,4 Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,0 baths,0 Toilets,Ikota +10200,Massive 4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10201,5 Bedroom Fully Detached Duplex For Sale @ Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10202,Properly Built Four Bedroom Fully Detached Duplex Situated In A Secure Environment!,Lekki Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10203,"Stunning, 5 Bedroom Fully Detached House For Sale",Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10204,Furnished 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10205,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +10206,A Newly Built & Tastefully Finished 4bedroom Fully Detached Duplex+ A Room Bq,Z Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +10207,4 Bedroom Terrace Duplex With Bq,10 Minutes From Lekki Phase1 Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +10208,4 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,4 baths,5 Toilets,Other Lekki +10209,4 Bedrooms Detached Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10210,Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +10211,Beautifully Built 4 Bedroom Detached Duplex For Sale Situated On A Serene Environment,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10212,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10213,2 Bedroom Apartment,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +10214,4 Bedroom Duplexes,Chevron By Orchid Road Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +10215,Beautiful 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +10216,Smart 4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +10217,Beautifully Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10218,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10219,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +10220,Serviced 4 Bedroom Semi Detached Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10221,"Brand New 4 Bedroom Duplex In Ikota,",After Second Toll Gate Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +10222,4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10223,Contemporary Luxury Lekki Power House With Pool,Jakande Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +10224,Tastefully Finished 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +10225,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +10226,4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10227,Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Z Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10228,Brand New 4 Bedrooms Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10229,5 Bedroom Detached Duplex With Swimming Pool In Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10230,Contemporary 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +10231,Newly Built 3 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +10232,Massive Waterview 5 Bedroom Fully Detached Duplex With Bq,S Chevron Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10233,3 Bedroom Fully Detached Duplex + Bq,Lekki Pride Estate 11 Ogombo Road Abraham Adesanya Road Governor's Consent Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +10234,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10235,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +10236,A Contemporary Built 4 Bedrooms Semi Detached Duplex With A Bq For Sale,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10237,Fully Serviced 3 Bedroom Flat With Bq,Atlantis Ii Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +10238,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10239,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10240,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10241,3bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,3 baths,3 Toilets,Ikate +10242,Newly Built 4 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +10243,5 Bedrooms Fully Detached House,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10244,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10245,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10246,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10247,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10248,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10249,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10250,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +10251,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",1,0,0,5 beds,0 baths,0 Toilets,Chevron +10252,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10253,Amazing New 2 Bedroom With Swimming Pool,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +10254,Newly Built 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ologolo +10255,4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10256,Serviced 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +10257,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +10258,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +10259,Well Built 5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10260,4bedroom Fully Detached Duplex,A Lovely And Calm Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10261,Newly Built Well Furnished 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,2 baths,2 Toilets,Lekki Phase 1 +10262,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10263,5 Bedroom Detached Duplexes,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10264,Luxury 3 Bedroom Penthouse With Bq,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +10265,Lovely 3bedroom Maisonette,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000/day",1,1,0,3 beds,4 baths,4 Toilets,Ikate +10266,Contemporary Styled 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10267,4 Bedroom Detached Duplex,"Orchid Hotel Road, Opposite Cooplag Gardenszlafiaji Chevron Lekki Lagos",₦,"73,100,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10268,3 Bedroom Massionette With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +10269,Fully Serviced 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10270,Newly Built 4bedroom Fully Detached Duplex,A Lovely Estate In Agungi Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +10271,Contemporary 5 Bedroom Detached House,"Fantastic Estate, Agungi Lekki Lagos",₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10272,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10273,Newly Built 4bedroom Semi Detached,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10274,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10275,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +10276,3 Bedroom Appartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +10277,Newly Built 4 Bedroom Terraces Duplex,De Caslte Max Orchid Road Chevron Off Plan Project Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds, baths, Toilets,Chevron +10278,4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10279,Exquisite 1 Bedroom Apartment,Chevy Castle Apartment 1 Bedroom Apartment Chevron Lekki Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,0 baths,0 Toilets,Chevron +10280,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10281,A 5bedroom Fully Detached Duplex Fully Fitted With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10282,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +10283,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10284,5bedroom Fully Detached Contemporary Design Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10285,Luxury 3 Bedroom Apartment,Chisco Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +10286,Whales Country Phase2,"Láfíàjí Off Orchid Road, Opposite Cooplag Estate. Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10287,"Solid, Massive & Tastefully Finished Luxury 3bedroom Terrace Duplex + A Room Bq..",Chevron Lekki Lagos,₦,"50,000,000",1,0,1,3 beds,3 baths,3 Toilets,Chevron +10288,4 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +10289,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10290,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10291,Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +10292,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10293,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"147,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10294,Massive 4bedroom Semi Detached Duplex With Bq For Sale,Lekki Conservative Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10295,Luxury 1 Bedroom Appartment,Chevron Lekki Lagos,₦,"18,100,000",1,1,0,1 beds,1 baths,1 Toilets,Chevron +10296,100% Dry Land In Lekki On Orchid Hotel Road,Behind The Popular Cooplag Gardens Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Chevron +10297,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +10298,Beautifully Built 4bedroom Semi Detached,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10299,Luxuriously Built Duplex Situated In A Beautiful And Serene Environment!,Chevron Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +10300,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10301,Luxurious 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +10302,Emcel Apartments, Ikate Lekki Lagos,₦,"51,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +10303,4 Bedroom Semi Detached Houses,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10304,Six Units Of 2 Bedroom Flat,Ogombo Behind Lekki Garden Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +10305,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Ikate +10306,Newly Built 4 Bedroom Terrace Houses,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10307,4 Bedroom Semi Detached Duplex With Bq,Z Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +10308,A Wonderfully Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +10309,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10310,"Plots L15/16, 102 Close, Banana Island, Ikoyi, Lagos",Lekki Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +10311,Beautifully Built 5 Bedroom Detached Duplex House,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +10312,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10313,4 Bedroom Contemporary Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10314,Contemporary 5 Bed Fully Detached Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +10315,4units Of Newly Built & Tastefully Finished Luxury 3bedroom Flat + A Room Bq For Sale!!!,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +10316,4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +10317,3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +10318,Contemporary 5 Bedroom Fully Detached,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10319,4 Bedrooms Semi Detached Duplexes,Off Chevron Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10320,Luxury And Spacious 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +10321,Beautifully Built 4 Bedroom Fully Detached Duplex In A Gated Estate.,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10322,Luxury 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10323,A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Nice Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10324,Amazing Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +10325,Beautifully Built 5 Bedroom Detached Duplex House,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10326,5 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +10327,5 Bedroom Detached Duplex With Bq In A 24/7 Power Supply Estate,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +10328,Serviced And Spacious Five Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10329,Fully Serviced 2 Bedroom Apartment,T Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +10330,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10331,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10332,9 Units Of Apartments For Sale,Idado Estate Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +10333,Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10334,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10335,3 Bedroom Flat Apartment With Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +10336,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10337,A Contemporary Built 4 Bedroom Semi Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10338,A 5 Bedroom Contemporary House,Xd Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +10339,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10340,5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10341,??absolutely Stunning 3 Bed Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +10342,4 Bedroom Newly Built Terrace Duplex At Ikota,"Chevron,conservation Centre Ikota Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10343,2 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +10344,Bridge Estate Duplexes,Toll Gate Chevron Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets,Chevron +10345,4 Bedroom Terrace Duplex In Chevron With 12 Months Payment Plan,On Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10346,Beautiful 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10347,5 Bedroom Detached Duplex In Chevron,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +10348,Lovely And Spacious 5 Bedroom Fully Detached,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets,Agungi +10349,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10350,Exquisitely Fully Detached Duplex With Bq And Swimming Pool For Sale .,Lekky County Home Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10351,Well Spacious 4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10352,5 Bedroom Detached Duplex With Bq,"2nd Toll Gate, Orchid Road Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +10353,Fantastic Built 4 Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +10354,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"256,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +10355,2 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10356,3 Bedroom Massionate Plus Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +10357,Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10358,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10359,4 Bedroom Massionatte Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +10360,Newly Built 5 Bedroom Fully Detached House.,Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10361,Block Of Flats For Any Commercial Purpose,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10362,5 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +10363,5 Bedroom Fully Detached Duplex With A Bq For Rent,Chevron Lekki Lagos,₦,"6,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +10364,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +10365,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +10366,Contemporary 4bedroom Semi Detached Duplex With Bq,Very Beautiful Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10367,Luxurious 2/3/4bedroom Terrace Duplex And Semi Detached With 12months Payment Plan,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,5 Toilets,Chevron +10368,4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +10369,Properly Built Four Bedroom Fully Detached Duplex Situated In A Secure Environment!,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10370,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10371,Newly Built Four Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10372,Newly Built Five Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10373,4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10374,A Newly Built & Tastefully Finished 5bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +10375,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10376,Luxurious 5bedroom Detached Duplex With Swimming Pool,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10377,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10378,Brand New 4 Bedroom Semi Detached Duplex With B.q For Sale In Lekki Phase One,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10379,"Dry Land At Chevron, Orchid Hotel Road",Behind The Popular Cooplag Gardens Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Chevron +10380,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +10381,Lovely 4 Bedroom Duplex In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Ikate +10382,4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10383,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10384,Newly Built 4 Bedroom Standing Alone Duplex,Osapa London Lekki Lagos,₦,"120,000/day",1,1,1,4 beds,4 baths,4 Toilets,Osapa London +10385,10months Payment Plan 5 Bedroom Contemporary House And A Bq,Hampton Bay Estate Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10386,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10387,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10388,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10389,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10390,A Contemporary Built 5 Bedrooms Fully Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10391,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10392,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10393,"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10394,4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10395,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +10396,Contemporary 5 Bedroom Detached Duplex With A Room Bq,Lekky County Home Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10397,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +10398,5 Bedroom Fully Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +10399,New Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10400,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +10401,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10402,Beautiful 3bedroom Penthouse,N Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +10403,Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex In A Very Secured Estate,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +10404,Contemporary And Luxuriously Finished 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10405,6 Units Luxurious Fully Detached Duplex.,Orchid Road Lekki Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10406,Four Bedroom Fully Detached Duplex With Spacious En Suite Bedrooms,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10407,4 Bedroom Semi Detached Houses,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10408,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10409,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +10410,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +10411,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +10412,4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10413,3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10414,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10415,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10416,A Luxury 5bedroom Fully Detached Duplex With Bq And Penthouse For Sale,A Very Beautiful Estate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10417,A Luxury 5bedroom Fully Detached Duplex With Bq And Penthouse For Sale,A Very Beautiful Estate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10418,Contemporary 5 Bedroom Fully Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +10419,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10420,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10421,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Premium Secured Estate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10422,Massive 5bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +10423,Massive 5bedroom Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10424,Newly Amazing 4 Bedroom Duplex For Sale,.. Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10425,4 Bedroom Fully Detached, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10426,Serviced 4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10427,4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10428,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10429,Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10430,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10431,6 Bedroom Fully Detached Duplex With A Penthouse And 2 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +10432,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10433,New 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +10434,Fully Detached 5 Bedroom House (carcass) With A Room Bq,Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +10435,Massive Brand New 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10436,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +10437,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10438,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10439,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10440,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +10441,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10442,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10443,5 Bedroom Stand Alone Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +10444,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10445,4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10446,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +10447,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +10448,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +10449,4 Bedroom Fully Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10450,Contemporary Waterfront 5 Bedr00m Fully Detached House With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +10451,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10452,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10453,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10454,Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10455,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10456,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10457,2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +10458,4 Bedroom Masionette With Bq,Off Fredom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +10459,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10460,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10461,4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +10462,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10463,2bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +10464,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10465,Standard 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +10466,Standard 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +10467,3 Bedroom Flat,Ilasan Lekki Lagos,₦,"75,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Lekki +10468,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +10469,Luxurious 4 Bedroom Massionette Duplex,"Dunvale Court Estate Orchid Lekki Behind Coopland Garden Estate, Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10470,3 Bedroom Massionette,"Dunvale Court Estate Orchid, Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +10471,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10472,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10473,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10474,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10475,4bedroom Semi Detached,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10476,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10477,7904 Sqm Prime Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10478,4bedroom Penthouse With Bq,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000/day",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10479,Newly Built 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +10480,Tastefully Built 2 Bedrooms Terrace,Emcel Court 2 Bedrooms Terrace Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,0 baths,0 Toilets,Chevron +10481,Exquisite 2 Bedroom Apartment,Chevy Castle Apartment 2 Bedroom Apartment Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +10482,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +10483,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +10484,4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets,Ikate +10485,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +10486,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10487,Luxury 3 Bedroom Maisonnette,Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,0 baths,0 Toilets,Chevron +10488,4 Bedroom Detached Duplex With Bq At Idado Estate Igbo Efon In An Estate With Influential Celebrities,Idado Estate Igbo Efon Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10489,4 Bedroom Contemporary Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10490,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10491,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10492,5 Bedroom Detached Home With Swimming Pool And Cinema,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10493,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10494,4 Bedroom Townhouse (terrace),Idado Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10495,2 Bedroom Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ologolo +10496,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10497,"2bedroom Luxury Apartment Now Selling, Suitable",Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +10498,1bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ologolo +10499,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +10500,3bedroom Apartment And 4bedroom Terrace Duplexes,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10501,5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10502,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +10503,16 Residential Apartment Chevy View Estate,Chevy View Estate Lekki Lagos,₦,"420,000,000",0,0,1, beds, baths, Toilets,Other Lekki +10504,Beautiful 5 Bedroom Semi Detached Duplex For Sale!!!,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +10505,Luxurious 2 & 3 Bedroom Apartments For Sale,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +10506,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +10507,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10508,Fully Furnished 5 Bedroom With A Penthouse In Vgc,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +10509,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10510,Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"33,100,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +10511,A 4 Bedroom Semi Detached Duplex With Bq At Orchid Lekki 2nd Toll Gate,Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10512,Tastefully Finished 5bedroom Fully Detached Duplex With An Open Plan Kitchen,A Very Beautiful Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10513,Luxurious 4 Bedroom Massionette Duplex,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +10514,A Terrace Duplex In A Serene And Secure Environment,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10515,"Still Listing For N165,000,000 Beautifully Built 5bedroom Detached Duplex",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10516,Tastefully Finished 4bedroom Semi Detached With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10517,Astonishing 5 Bedroom Fully Detached Duplex In Osapa,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +10518,Emcel Court 4 (orchid Road),With Bq Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +10519,5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10520,A Spacious 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +10521,4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven Estate Vgc Lekki Lagos,₦,"77,500,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +10522,Massive Waterfront 5bedrooms Detached Duplex With Bq For Sale Waterfront 5bedrooms Detached Duplex With Bq For Sale,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"470,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10523,4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +10524,A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Agungi Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Agungi +10525,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +10526,Bosmak Properties,With Bq Harris Drive Shapata Vgc Lekki Lagos,₦,"69,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +10527,Smoothly Built 4 Bedroom Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10528,4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10529,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10530,Exquisite 2 Bedroom Apartment,Cooplag Garden Orchid Road Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,0 baths,0 Toilets,Chevron +10531,4 Bedrooms Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10532,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10533,5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10534,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10535,Luxurious 4 Bedroom Terrace,A Very Serene Environment Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10536,4 Bedroom Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10537,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10538,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +10539,A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful And Well Secured Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10540,Well Finished 4 Bedroom Duplex With Bq In Ikota,After Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,0,1,5 beds,5 baths,6 Toilets,Ikota +10541,Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +10542,Smart 5 Bedrooms Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +10543,4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10544,4 Bedroom Semi Detached House,Ajah Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10545,Massive 6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,0 baths,0 Toilets,Chevron +10546,Well Structured 4 Bedroom Detached Duplex With Boys Quarters,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10547,Serviced 4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10548,Magnificient 5 Bedroom Detached Duplex In Lekki County,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10549,5 Bedroom Semi Detached Duplex On 450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +10550,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10551,4bedroom Detached,A Very Nice Environment Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10552,Contemporary 4 Bedroom Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"175,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +10553,Beautiful 5 Bedroom Detached Duplex With Swimming Pool,Idado Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10554,Exquisite 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10555,Luxurious 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10556,Brand New Luxury 5bedroom Fully Detatched With A Bq,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10557,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10558,4 Bedroom Semi Detached Duplex With Bq For Sale,Gated Community Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10559,A Luxury 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10560,"Contemporary, 4 Bedrooms Terrace Houses",Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10561,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10562,Beautifully Finished 4 Bedroom Terrace Duplex Plus Bq,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +10563,Luxurious Waterfront 4bedroom Terrace Duplex,A Very Beautiful Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10564,Spacious 4 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10565,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10566,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10567,Luxury 4 Bedroom Semi Detached Duplex With 2 Bedroom Stand Alone Bq For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10568,Massive Exclusive 5 Bedroom + Bq Detached Home,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +10569,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10570,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +10571,Luxury 4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10572,4 Bedroom Terrace Duplex And 4 Bedroom Semi Detached Duplex,D Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10573,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10574,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10575,Exquisitely Built 4 Bedroom Semi Detached In A Serene Environment.,Richmond Gate Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths,5 Toilets,Lekki Phase 1 +10576,4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10577,Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool In Ikota,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +10578,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10579,5 Bedroom Detached Duplex With A Pool,Megamound Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10580,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10581,4 Bedroom Fully Detached Duplex With Bq In Vgc On 5% Promo Sales,"Shapata, Vgc Vgc Lekki Lagos",₦,"79,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +10582,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10583,Brand New 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10584,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10585,Brand New 4 Bedroom Semi Detached Duplex With Bq (smart Home),By 2nd Tollgate Lekki Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10586,2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +10587,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10588,A Beautiful Well Furnished Luxury 4bedroom Semi Detached Duplex +( A Room Bq) For Sale!!!,Agungi Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets,Agungi +10589,A Beautifully Crafted 6 Bedroom Fully Detached Duplex For Sale???,Ikate Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikate +10590,Beach Front 11 Hectares Of Land For Sale 100k Per Sqm,Beach Front Ilasan Lekki Lagos,₦,"100,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +10591,5 Bedrooms Fully Detached Duplex, Vgc Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +10592,2 Bedroom Terrace Duplex In Ikate With 12 Months Payment Plan,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +10593,4 Bedroom Semi Detached House Built On Two Floors With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10594,Spacious And Well Finished 5 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10595,Newly Built 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10596,4 Bedroom Terraces With 4 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +10597,5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10598,4 Bedroom Townhouse With A Pool,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10599,5 Bedroom Fully Detached Duplex,F Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10600,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10601,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10602,Fully Furnished 4 Bedroom,Muiz Street Lekki Peninsula Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10603,4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,1, beds, baths, Toilets,Chevron +10604,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +10605,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +10606,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10607,Newly Built Three Bedroom Maisonette,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +10608,Amazingly Beautiful And Well Built 5 Bedroom Detached Duplex In Osapa London,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +10609,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10610,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10611,Serviced 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10612,Newly Built Three Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +10613,Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10614,Fully Furnished And Lovely 6 Bedroom With Two Rooms Bq And A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,6 beds,6 baths,7 Toilets,Lekki Phase 1 +10615,Well Finished 4 Bedroom Terrace Duplex,Creek Court 2 Avenue Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +10616,Well Structured 4 Bedroom Terrace Duplex,Off Kunsela Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10617,4 Bedroom Penthouse In Ikate,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10618,1103sqm Plots Of Land For Sale In Twin Lake Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Chevron +10619,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +10620,Modern Commercial Centre With Office And Retail Spaces, Lekki Phase 1 Lekki Lagos,₦,"35,500,000",0,0,0,0 beds,0 baths,1 Toilets,Lekki Phase 1 +10621,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10622,4 Bedroom Semi Detached Duplex I,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10623,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10624,5bedroom Fully Detached Duplex,A Very Secured Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10625,5 Bedroom Detached Smart Homes,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +10626,A Contemporary Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +10627,Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +10628,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10629,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +10630,Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +10631,4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10632,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10633,Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +10634,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +10635,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +10636,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10637,Contemporary 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10638,2 Bedroom Apartment,"Chevron Extension, Lekki Conservation Centre Chevron Lekki Lagos",₦,"46,000,000",1,1,1,2 beds,3 baths,3 Toilets,Chevron +10639,1 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10640,Newly Built Five Bedroom Fullly Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10641,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +10642,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +10643,Exquisitely Bulit 4 Bedroom Terrace Duplex With Bq For Sale At Christabels Garden Estate,Christabels Garden Estate Orchid Lekki Off Chevron Tollgate Lekki A Place Where Kings And Queens Live Come Join The Kings And Queens In A The Palace Pay And Parkin Secure With The Governor Consent As Title Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +10644,Luxurious 3 Bedroom Terrace Duplex,Dunvale Court Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +10645,Luxurious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10646,5 Bedroom Detached Duplex With Swimming Pool And Cinema For Sale,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10647,Contemporary 5 Bedroom Detached Duplex With Bqs For Sale,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10648,Luxuriously Built Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +10649,5 Bedroom Detached Duplex For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10650,4 Bedroom Detached Duplex With Swimming Pool In Lekki Ikota,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Ikota +10651,2bedrom Penthouse And 3bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +10652,4bedroom Semi Detached Duplex With Bq For Sale .,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10653,4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +10654,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10655,New Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10656,Contemporary 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10657,Newly 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10658,Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10659,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +10660,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10661,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10662,Newly Built Contemporary 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10663,Office Shop/space Measuring 81sqm & 112sqm., Lekki Phase 1 Lekki Lagos,₦,"70,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10664,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10665,4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10666,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10667,3 Bedroom Terrace Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10668,Spacious 4bedroom Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +10669,Newly Built Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10670,Architecturally Built 5 Bedroom Contemporary Design Detached Home,Acadia Groove Estates Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +10671,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10672,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10673,4bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10674,Classic Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10675,Serviced Units Of 4 Bedroom Semi Detached Duplexes For Sale, Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +10676,Newly Built 2 Bedroom Apartment With A Boys' Quarter,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +10677,4bedroom Semi Detached Duplex With Bq For Sale .,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +10678,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +10679,Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +10680,Newly 4 Bedroom Terrace For Sale,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10681,Newly 4 Bedroom Terrace With Amazing Facilities .... For Sale,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10682,4 Bedroom Contemporary Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10683,Beautifully Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10684,"5 Bedroom Detached Duplex With Swimming Pool, Cinema Studio And Gymnastics",Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10685,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10686,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10687,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10688,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10689,A Contemporary Built 4 Bedrooms Semi Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10690,4 Bedroom Fully Detached Duplex With Bq,10 Minutes From Lekki Phase1 Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ologolo +10691,2 Bedroom Penthouse,Godmade Connect Court 3 Behind Onike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +10692,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10693,5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool And Gym,Beautiful Estate Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10694,Serviced 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10695,5bedroom Fully Detached Duplex Fully Fitted With Bq,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10696,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +10697,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10698,4bedroom Semi Detached Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +10699,4bedroom Semi Detached Duplex,Z Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10700,Serviced 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10701,Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10702,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10703,Beautifully Built 4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10704,4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10705,5 Bedroom Semi Detached Duplex With Bq,Z Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10706,Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10707,Serviced 3 Bedroom Masionette,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10708,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10709,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10710,Luxury Five Bedroom Detached Duplex With Swimming Pool And Cinema Room,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10711,New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10712,"Luxury 5 Bedroom Fully Detached Duplex With A Bq,",Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10713,Tastefully Finished 5bedroom Fully Detached With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10714,5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10715,Royal Finished 4 Bedroom Fully Detached Duplex With Bq,De Castle Max Estate Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +10716,Exquisite 4 Bedroom Semi Detached Duplex In A Serene Environment,De Castle Max 4 Bedroom Semi Detached Duplex Orchid Lekki Lagos Off Plan Project Chevron Lekki Lagos,₦,"72,000,000",1,0,1,4 beds, baths, Toilets,Chevron +10717,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10718,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10719,A Luxury 4bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10720,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10721,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +10722,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10723,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10724,4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +10725,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +10726,3 Bed Room Apartment With Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +10727,Executive 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +10728,4 Bedroom Massionette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10729,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10730,4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10731,Newly Build 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10732,Amazing New 4 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10733,5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +10734,4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10735,Newly Built 5bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10736,5bedroom Fully Detached Duplex With A Bq !!!,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10737,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +10738,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +10739,Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10740,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10741,Beautifully Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10742,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10743,Spacious 5 Bedrooms Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10744,4bedroom Ensuite Terrace House,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10745,Contemporary 6 Bedroom Detached House With 2 Bq And Pent House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +10746,Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +10747,Very Spacious 5 Bedroom Duplex,Idado Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10748,Well Built 4 Bedrooms Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10749,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10750,4 Bedroom Massionette,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10751,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +10752,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10753,Beautifully Built 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10754,Terrace Duplex Massionattes,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10755,Fully Serviced 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +10756,Luxury 4 Bedroom Semi Detached Duplex Located Within A Serviced Estate,A Very Beautiful Serviced Estate Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10757,Beautiful 5 Bedroom Fully Detached Duplex With A Servant Quaters,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10758,2 Bedroom Apartment,Orchid Hotel Road Chevron Lekki Lagos,₦,"18,100,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +10759,Dry Land Measuring 450sqm,Oceanbay Estate Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10760,Swoosh Super Spacious 4 Bedroom Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +10761,Top Notch Fully Serviced 4bedroom Duplex,E Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10762,Exclusive 4 Bedroom Terrace Duplex With Self Compound In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +10763,4bedroom Fully Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10764,5 Bedroom Detached Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10765,4 Bedroom Fully Detached Duplex,G Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10766,Executive 4bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10767,Luxury 5bedroom Detached Duplex With Swimming Pool And Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10768,4 Bedroom Masionette,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10769,5bedroom Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,7 baths,7 Toilets,Chevron +10770,Whales Country Phase 1,"Láfíàjí, Opposite Cooplag Estate Chevron Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +10771,Properly Built Apartment In The Heart Of Lekki .,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets,Ikate +10772,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +10773,3 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10774,Massive 4 Bedroom Terrace Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10775,Newly 5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10776,3 Bedroom Penthouse,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Chevron +10777,4 Bedrooms Semi Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +10778,4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +10779,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10780,5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10781,2 & 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +10782,4 Bedroom Fully Detached Duplex,F Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10783,Secure A Modern 4 Bedroom Masionate With A Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10784,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10785,5 Bedroom Detached Home With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10786,2 Bedroom Apartment With Bq,Mufasa Apartments Ikate Lekki Off Plan Project Ikate Lekki Lagos,₦,"58,000,000",1,0,1,2 beds, baths, Toilets,Ikate +10787,Tastefully Finished 4 Bedroom Fully Detached Duplex In Ajah,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +10788,Newly Built 4 Bedroom With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10789,Exclusive 4 & 5 Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10790,Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +10791,Exquisite 3 Bedroom Semi Detached,Cooplag Garden Orchid Road Chevron Drive Lekki Off Plan Project Chevron Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,0 baths,0 Toilets,Chevron +10792,4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +10793,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10794,Executive Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10795,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10796,4 Bedroom Contemporary Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10797,Nicely Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10798,Beautiful 5bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10799,Luxury & Beautiful 4 Bedroom Self Compound Terrace Duplex For Sale!!!,Osapa London Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +10800,Beautifully Built 2&3 Bedroom Apartment Sited Within A Tranquil Estate,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +10801,Well Built Detached Duplex Situated In A Very Serene Estate.,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +10802,4 Bedroom Semi Detached Duplex Plus Bq,Creek Avenue Court 3 Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000/month",1,1,0,4 beds,4 baths,5 Toilets,Ikota +10803,Newly Built 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +10804,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10805,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10806,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10807,Executive 2 Bedroom Apartment With A Pool,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +10808,Big Plot Of Land,Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10809,Corner Piece Unit Nicely Built 4 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10810,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +10811,Luxurious 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +10812,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Other Lekki +10813,A Newly Built & Tastefully Finished Luxury 4bedroom Detached Duplex For Sale!!!,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +10814,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10815,Quality 5 Bedroom Fully Detached Duplex (full Video Tour Also Available), Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +10816,Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10817,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10818,4 Bedroom Semi Detached In Chevron Lekki,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +10819,4 Bedroom Townhouse,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10820,Luxury 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10821,4 Bedroom Highly Toned Luxury Terrace Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10822,5bedrooms Fully Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +10823,4units Of 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +10824,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10825,4 Bedroom Semi Detached Duplex With Bq At Orchid 2nd Toll Gate,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10826,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10827,4 Bedroom Maisonette + Bq,Off Freedom Way Off Regional Road Lekki 1 Godmade Connect Court 5 & Extension With Governor's Con Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10828,4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10829,"Contemporary, 4 Bedrooms Terrace Houses",Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +10830,4 Bedroom Semi Detached Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10831,1 Bedroom Terrace Duplex In Ikate With 2 Weeks Introductory Price,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,2 baths,2 Toilets,Ikate +10832,"Beautifully Built 5 Bedroom Detached Duplex In Chevron, Lekki",Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +10833,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10834,5bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10835,4 Bedroom Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +10836,Luxurious 5 Bedroom Fully Detached Duplex.,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +10837,Luxury Detached Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10838,4 Bedroom Semi Detached Duplex,10 Minutes From Lekki Phase 1 Ologolo Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +10839,Bridge Estate Duplexes,"Before Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"72,000,000",0,0,0, beds, baths, Toilets,Chevron +10840,"Contemporary 4 Bedroom Fully Detached Duplex For Sale In Orchid, Lekki, Lagos.",Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +10841,A 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10842,3 Bedroom Apartment With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10843,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10844,4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10845,Contemporary 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10846,Contemporary 5 Bedroom Duplex For Sale,Chevron Drive Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10847,A 4bedroom Terrace Duplex,D Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +10848,4 Bedroom Semi Detached Duplex At Pinnock Estate Axis Osapa London,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths, Toilets,Other Lekki +10849,Executive Newly 4 Bedroom Terrace For Sale,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10850,3 Bedroom Massionatte,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +10851,Whales Country Phase2,"Láfíàjí Off Orchid Road, Opposite Cooplag Estate. Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +10852,Tastefully Finished 4 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets,Agungi +10853,Nicely Built 4 Bedroom Semi Detached Duplex Situated In A Location For Good Investment And Excellent Resell. At Chevron Lagos,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10854,2 Bedroom Apartments,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10855,4 Bedroom Semi Detached Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +10856,Very Affordable Fully Detached 4 Bedroom Duplex In Ikota,Situated In A Prime Area Of Ikota Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +10857,Beautifully Built 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10858,Newly Built 4 Bedroom Fully Detached,In Idado Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10859,2 Bedroom Luxury Flats Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,1,0 beds,0 baths,0 Toilets,Chevron +10860,2 Bedroom Apartment, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +10861,Beautiful 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +10862,10units Electrifying 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10863,5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10864,Tastefully Finished 4 Bedroom Semi Detached Duplex In Ikota With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +10865,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10866,Newly Built Duplex In A Serene Estate!!,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +10867,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10868,4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10869,4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10870,Serviced 4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10871,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10872,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10873,4 Bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"84,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10874,5bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10875,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10876,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10877,Exquisitely Built 5bedroom Detached House For Sale.,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10878,Beautiful 4 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10879,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10880,A Luxury Pristine 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +10881,Luxurious 5 Bedroom Detached Duplex,"...,. Osapa London Lekki Lagos",₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10882,Exquisite Luxurious Built Units Of 5 Bedroom Fully Detached House For Sale.,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10883,New Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10884,Brand New Units Of 3 Bedroom Flats Within A Mini Estate,Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +10885,Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10886,Fully Furnished 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +10887,Contemporary 5 Bedroom Penthouse Duplex With An Open Terrace & Swimming Pool,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10888,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10889,Beautifully Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +10890,Beautifully Built 4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10891,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10892,4 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10893,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +10894,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10895,Contemporary Designs 5bedroom Fully Detached Duplex With Swimming Pool,"Lekky County Home , Lekki Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +10896,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10897,4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +10898,4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10899,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Ikate +10900,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10901,Beautiful 5bedroom Fully Detached Duplex For Sale,Lekky County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10902,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +10903,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10904,4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +10905,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10906,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10907,5 Bedroom Detached House With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10908,3bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +10909,Executive Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +10910,Amazing New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10911,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10912,4 Bedroom Contemporary Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10913,3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +10914,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10915,New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +10916,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +10917,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10918,Newly Built Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +10919,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +10920,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10921,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10922,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +10923,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10924,Well Built 5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10925,One Bedroom Apartment,Agungi Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets,Agungi +10926,4bedroom Semi Detached With A Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +10927,5 Bedroom Fully Detached Duplex With Bq,"Creek Avenue Court 3 Ikota, Ikota Lekki Lagos",₦,"120,000,000/month",1,1,0,5 beds,4 baths,6 Toilets,Ikota +10928,Luxurious 4 Bedroom Terrace Duplex,A Lovely Environment In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10929,4bedroom Fully Detached,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10930,5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Estate Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +10931,4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10932,4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +10933,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +10934,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10935,Newly Built 4 Bedroom Fully Detached Duplex,4 Bedroom Fully Detached Duplex Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +10936,Newly Built 3 Bedroom Luxury Semi Detached Duplex With Bq,"Dunvale Court Estate Orchid Lekki, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +10937,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +10938,4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10939,Contemporary 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10940,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10941,Exquisite 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +10942,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10943,Luxurious 3units 5 Bedroom Detached Home,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10944,"4 Bedroom Terrace Duplex At Orchid Hotel Road Chevron,lekki","Orchid Hotel Road,lekki Chevron Lekki Lagos",₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10945,4 Bedroom Terrace In Ikate,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +10946,5 Bedroom Fully Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10947,5 Bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +10948,5 Bedroom Detached Duplex With 1 Bedroom Bq, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +10949,4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10950,Newly Built 4 Bedroom Semi Detached,In Idado A Very Calm And Nice Environment Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +10951,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10952,4 Bedroom Semi Detached Duplex House,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +10953,Exquisite 4 Bedroom Maisonnette,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikate +10954,Spacious And Very Well Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"10,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10955,5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10956,5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10957,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10958,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10959,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +10960,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10961,4bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +10962,Tastefully Finished 4bedroom Semi Detached Duplex + 2rooms Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +10963,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +10964,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +10965,Amazing Newly 4 Bedroom Semi Detached Duplex With Good Facilities In Lekki Phase One !! For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +10966,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +10967,4 Bedroom Townhouse,Idado Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10968,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10969,Fully Furnished 5 Bedroom Detached Duplex,Secured Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +10970,Serviced 4bedroom Terrace Duplex With Bq,Z Agungi Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +10971,Serviced 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10972,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10973,4 Bedroom Semi Detached Duplex (flexible Payment Plan),"Between North West Filling Station And Heyden, Shapati By Vgc Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +10974,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10975,5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10976,Newly 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +10977,Beautifully Built 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +10978,Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10979,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10980,Contemporary 5bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +10981,5 Bedroom Detached Duplex With Bq,Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +10982,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10983,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +10984,4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +10985,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +10986,4 Bedroom Masionette,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +10987,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +10988,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +10989,A Terrace Duplex With Penthouse And An Amazing View In Lekki.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10990,Exquisitely 5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +10991,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +10992,Three Bedroom Terrace With Good Facilities,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +10993,5 Bedroom Fully Detached Duplex With Bq, Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +10994,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +10995,2 Bedroom Apartment, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +10996,New 5 Bedroom Fully Detached For Sale,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10997,New Executive Luxury 5 Bedroom Fully Detached Duplex With Amazing Facilities,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10998,Luxurious Newly 5 Bedroom Stand Alone Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +10999,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +11000,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11001,"4 Bedroom Semi Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11002,"6 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +11003,4 Bedroom Terrace Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11004,4bedroom Fully Detached Duplex,Ikota Villa (off Plan) Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +11005,Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +11006,1unit 4bedroom Semi Detached Contemporary Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11007,Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"106,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11008,4 Bedroom Semi Detached Terrace Duplexes,Ologolo Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ologolo +11009,"Well Built Penthouse Duplex In The Heart Of Lekki, Lagos State.",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,5 baths,6 Toilets,Lekki Phase 1 +11010,Beautiful 3 Bedroom Apartment In A Serene Environment,Beautiful 3 Bedrooms Apartment Mufasa Apartment Ikate Lekki Off Plan Project Ikate Lekki Lagos,₦,"78,000,000",1,0,1,3 beds, baths, Toilets,Ikate +11011,5bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11012,4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven Estate Harris Drive (shapata) By Vgc Off Lekki Epe Express Road Governors Consent Vgc Lekki Lagos,₦,"77,500,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11013,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11014,5 Bedroom Fully Detached Duplex With Bq,C Lekki Phase 2 Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11015,4 Bedroom Semi Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11016,4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +11017,3 Bedroom Maisonette With Penthouse & Bq,4 Minutes Drive From Express Ikate Lekki Lagos,₦,"72,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +11018,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11019,Luxurious 5 Units Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11020,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +11021,2 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11022,6 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,0 baths,0 Toilets,Chevron +11023,Massive & Tenanted 5bedroom Semi Detached Duplex+ 2room Bq On 525sqm Landsize For Sale!!!!,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +11024,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +11025,4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11026,3 Bedroom Penthouse Apartment With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11027,Serviced 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +11028,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +11029,4 Bedroom Duplex In Chevron Drive With Bq,Chevron Drive Chevron Lekki Lagos,₦,"74,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +11030,An Exquisitely Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +11031,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11032,Serviced 4bedroom Semi Detached With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11033,Contemporary 5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11034,For Sale 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11035,A Luxury 5bedroom Fully Detached Duplex With Bq,A Serene Environment Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11036,4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +11037,Newly Built Luxury 2 Bedroom Appartment,Ikate Lekki Lagos,₦,"65,000,000/day",1,1,0,2 beds,3 baths,3 Toilets,Ikate +11038,Newly Built 4bedroom Terrace Duplexes With Swimming Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11039,Executive 4bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11040,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11041,Newly Built 2 Bedroom Apartment Off Plan,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,0 baths,0 Toilets,Ikate +11042,3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +11043,Ruby,With Bq And Swim Pool Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +11044,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11045,Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11046,Luxury 4bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11047,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11048,Beautiful 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +11049,Luxuriously Built Fully Detached Duplex.,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +11050,5 Bedroom Fully Detached Duplex With A Bq Unit Now Listed,Agungi Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11051,4 Bedroom Detached Duplex,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11052,A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11053,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +11054,A Terrace Duplex With Penthouse And An Amazing View In Lekki.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11055,Amazing Newly 5 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +11056,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11057,Executive Furnished 2 Bedroom With Good Facilities,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +11058,Amazingly Built Terrace Duplex Situated In A Secured Environment!,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11059,4 Bedroom Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"95,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11060,Luxury 4 Bedroom Semi Detached Duplex With Bq At Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11061,Serviced 5bedroom Fully Detached Duplex With Bq For Sale.,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11062,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +11063,Massive 4bedroom Fully Detached Duplex With Bq For Sale,Very Nice Gated Estate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11064,Lovely 4 Bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Chevron +11065,4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +11066,5 Bedroom Detached Home,Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11067,Tastefully Built 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +11068,Waterfront Luxurious Finished Contemporary 5 Bedroom Fully Detached Duplex,Northern Forshore Estates Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11069,Ruby,With Bq Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +11070,5 Bedroom Detached Duplex With A 3 Room Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +11071,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11072,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11073,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +11074,Standard And Well Furnished Fully Detached 3 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +11075,"Exquisitely Built 4 Bedroom Terrace Duplex For Sale Situated In A Serviced Estate, At Ologolo Lekki Lagos",Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11076,600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +11077,Newly Built Four Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +11078,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11079,Newly Built Contemporary Serviced 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11080,4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11081,Contemporary 5 Bedroom Detached Duplex,Acadia Groove Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11082,2 Bedroom Massionatte,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +11083,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11084,4 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11085,Newly Built Five Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11086,Beautifully Built 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11087,Executive 2 Bedroom Apartment,4 Minutes Drive From Chisco Bus Stop Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +11088,5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11089,A Dreged Parcel Of Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11090,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +11091,5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Z Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11092,5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11093,1 Bedroom Luxury Apartment,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +11094,4 Bedroom Detached Duplex With 2 Bq's,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikota +11095,Luxury Finished 5 Bedroom Duplex With Up To 10 Cars Parking Space,Megamound Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +11096,80% Completed Semi Detached Duplex For Sale At Idado Estate,Idado Estate Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets,Other Lekki +11097,Newly Built Contemporary 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +11098,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +11099,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11100,"Office Space Development Nestled In The Commercial Hub Of Lekki Phase One,",Lekki Phase 1 Lekki Lagos,₦,"42,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11101,Oustanding 4 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +11102,800sqm Land,Cowrie Creeks Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds,0 baths,0 Toilets,Ikate +11103,4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11104,"1bedroom, 2bedrooms & 3bedrooms Apartments",Idado Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11105,3 Bedroom Luxury Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +11106,Luxury 5 Bedroom Contemporary Duplex,Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11107,4 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11108,Newly Built 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +11109,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11110,Beautiful 5bedroom Semi Detached Duplex + A Room Bq For Sale!!!,Lekki County Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +11111,5bedroom Semi Detached Duplex,Cowrie Creeks Ikate Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +11112,5 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11113,4 Bedrooom Semi Detached With A Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11114,Brand New 2 Bedrooms Flat,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +11115,Contemporary And Well Finished 5 Bedroom Detached Duplex With Swimming Pool,Lekky County Home Ikota Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11116,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Ologolo +11117,Contemporary Massive 5 Bedroom Duplex,Lekky County Home Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11118,"Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron, Lekki Lagos Nigeria",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11119,Italian Built 4 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11120,5 Bedroom Detached Duplex,Vgc Axis Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11121,3 Bedroom Terrace Duplex + Bq With Payment Plan,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +11122,Newly Built Four Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11123,A 4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11124,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11125,4 Bedroom Semi Detached Duplex With 1 Room Mini Flat In Ikota,Lekki County Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,4 Toilets,Ikota +11126,4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +11127,Excellent Furnished Two Bedroom Flat,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +11128,3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +11129,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +11130,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +11131,5bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +11132,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +11133,Newly Built 3 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"58,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Lekki +11134,Newly Built 4 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +11135,Newly Built 2 Bedroom Apartment,Orchid Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +11136,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11137,Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11138,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +11139,Newly Built 4 Bedroom Terrace,2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11140,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11141,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11142,5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +11143,5 Bedroom Fully Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +11144,Newly Built 5 Bedrooms Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,0 baths,0 Toilets,Ikate +11145,Beautifully Finished 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,0 baths,0 Toilets,Victoria Garden City +11146,Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11147,4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11148,Luxury Smart 5 Bedroom Fully Detached At Lekki Palm City,Palm City Estate Ajah Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Lekki +11149,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11150,Exquisite 2 Bedroom Apartment,Chisco Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,0 baths,0 Toilets,Ikate +11151,5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11152,Newly Built 2 Unit Of 4 Bedroom Semi Detached Duplex,Ikate Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11153,4bedroom Semi Detached With A Bq,Orchid Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11154,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +11155,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11156,5bedroom Fully Detached Duplex,In A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11157,4 Bedroom Semi Detached With A Bq,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11158,4 Bedroom Fully Detached Duplex,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11159,Newly Built 4bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets,Osapa London +11160,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11161,1 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11162,Finished 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11163,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +11164,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +11165,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11166,5bedroom Fully Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11167,Exquisite 5 Bedrooms Fully Detached Duplex,Exquisite 5 Bedrooms Fully Detached Duplex With Swimming Pool And Cinema Chevron Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +11168,Newly Built 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +11169,4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11170,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11171,Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11172,2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,5 baths,5 Toilets,Agungi +11173,Newly Built 5 Bedroom Fully Detached Duplex House With Bq,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11174,4883sqm Land,Lekki Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11175,Newly Built 4 Bedroom Terraced Duplex,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000/month",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11176,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,0 baths,0 Toilets,Ikate +11177,Furnished 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"175,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +11178,1000sqm Of Land,Fola Osibo Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11179,2400sqm Of Land,"Off Rock Drive Street, Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11180,2400sqm Of Bareland,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11181,Land,Madison Garden Estate Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +11182,Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +11183,5 Bedroom Fully Detached Home,Vgc Lekki Vgc Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +11184,Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"269,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +11185,"1,2,3 Bedroom Apartment",Chevron Tollgate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,0 baths,0 Toilets,Chevron +11186,1 Bedroom Flat,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"26,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +11187,Fully Furnished 2 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +11188,Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +11189,Finished 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11190,Elegant 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11191,Luxury 5 Bedroom Detached Home,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11192,Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11193,Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11194,Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +11195,Affordable 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11196,Astonishing 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11197,Finished 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11198,Newly Built 4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,1 baths,5 Toilets,Ikota +11199,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +11200,4 Bedroom Terrace,Bosmak Haven With A Governor’s Consent Is Located By Harris Drive Shapata By Vgc Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +11201,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +11202,2 Bedroom Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +11203,4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven With A Governor’s Consent Is Located By Harris Drive Shapata By Vgc Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +11204,5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +11205,5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +11206,Land,Freedomway Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11207,Land,Freedomway Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11208,Brand New 4 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11209,Brand New 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11210,Newly Built 2 Bedroom Luxury Penthouse With Water View;,Orchid Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,3 baths,2 Toilets,Other Lekki +11211,Brand New 5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11212,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"89,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11213,Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11214,Spacious 5 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11215,Affordable 3 Bedroom Terrace Duplex In A Strategic Location,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +11216,Affordable 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11217,Executive Super Luxury 4 Bedroom Fully Detached Duplex With 1 Room Bq For Sale,Ikate Lekki Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets,Other Lekki +11218,Beautiful 5 Bedroom Fully Detached Duplex In Prime Location,Chevron Toll Gate Chevron Lekki Lagos,₦,"68,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +11219,Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11220,Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11221,Newly Built Super Luxury 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11222,Classic 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11223,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11224,Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11225,Distinguished 5 Bedroom Contemporary Duplex,"Lekki County Homes, Lekki Lagos",₦,"262,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +11226,Offplan Sales Water Front View 3 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11227,Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11228,Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11229,Newly Built Spacious Luxury 5 Bedroom Fully Detached Duplex For Sale,12 Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +11230,Newly Built Luxury 3 Bedroom Block Of Flats,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +11231,Newly Built Super Luxury Spacious 5 Bedroom Fully Detached Maissionette With Bq And Swimming Pool F,1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11232,1 Bedroom Maisonette For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"35,000,000/day",0,0,0, beds, baths, Toilets,Ikate +11233,4 Bedroom Terrace Duplex With Bq,"Off Shoprite Road, Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +11234,Brand Newly Built Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11235,Brand New Spacious Luxury 4 Bedroom Terrace Duplex With 1 Room Maids Quater For Sale At Ikate,Ikate Elegushi Lekki Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11236,Land,"Madam Julian Estate, Chevron Alternative, Chevron Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +11237,5 Bedroom Detached Duplex With A Bq & Pent House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11238,Brand New 5 Bedroom Detached House:,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11239,Newly Built 4 Bedroom Semi Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11240,Newly Built 4 Bedrooms Semi Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11241,Spacious And Furnished 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11242,Newly Built 5 Bedroom Detached House With A Room Staff’s Quarter;,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11243,Fully Automated 5 Bedroom Fully Detached Duplex Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11244,Lovely 3 Bedroom Apartment;,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +11245,Fully Detached 5 Bedroom Duplex With Bq,Lekky County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11246,Brand New Listing 4 Bedroom Semi Detached Duplex;,Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11247,Newly Built 5 Bedroom Fully Detached With Bq,Megamond Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +11248,Water Front View 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11249,Executive 5 Bedroom Fully Detached House With A Bq,Lekky County Homes Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +11250,Newly Built 5 Bedroom Detached Duplex With Bq;,Pinnock Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11251,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Lekki +11252,Magnificently Built 5 Bedroom Fully Detached Duplex,Lekky County Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11253,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11254,4 Bedroom Penthouse With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"85,000,000/month",0,0,0, beds, baths, Toilets,Ikate +11255,Newly Built Luxury 4 Bedroom Semi Detached Duplex;,Orchid Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11256,Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Alternative Route Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11257,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11258,Affordable Commercial Building In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +11259,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11260,Newly Built 4 Bedroom Terrace Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11261,Newly Built 4 Bedroom Terraced Duplex;,Orchid Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11262,Massive 5 Bedroom Fully Detached Duplex;,"Pinnock, Osapa, Lekki Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11263,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11264,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11265,Luxury 2 Bedroom Apartment,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11266,4 Bedroom Semidetached House,"Agungi East Estate, Agungi Lekki Lagos",₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +11267,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +11268,Contemporary 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11269,Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +11270,Brand New Serviced 4 Bedroom Terrace House With Bq;,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11271,Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11272,Newly Built 4 Bedroom Semi Detached Duplex + Bq,H Homes Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000/day",0,0,0, beds, baths, Toilets,Chevron +11273,Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11274,Serviced 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11275,Newly Built Super Luxury Spacious 3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +11276,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11277,Exquisitely Finished 4 Bedroom Apartment,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +11278,Exquisitely Finished 4 Bedroom Detached House,"Adebisi Oguniyi Crescent, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11279,Contemporary 5 Bedroom Fully Detached House;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11280,Spacious 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11281,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11282,Brand New 5 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11283,Nicely Built 5 Bedroom Detached Duplex;,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11284,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +11285,Brand New 4 Bedroom Fully Detached House With A Bq;,Second Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11286,Brand New Serviced 4 Bedroom Terrace House;,Ilasan Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11287,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11288,Brand New 4 Bedroom Terrace With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11289,Nicely Built 4 Bedroom Detached House;,Lekki County Lekki Lagos,₦,"215,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11290,Well Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11291,Beautiful Contemporary 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11292,Beautiful Stylish 5 Bedroom Fully Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11293,Beautiful 5 Bedroom Fully Detached With Pent House And Swimming Pool;,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11294,5 Bedroom Contemporary Duplex With Huge Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"262,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +11295,Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11296,Brand New Spacious 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11297,Luxury Fully 4 Bedroom Detached Duplex With A Spacious Compound;,"Royal Garden Estate, Ajah. Lekki Lagos",₦,"190,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +11298,Luxury 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11299,Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11300,Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11301,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11302,Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11303,Tastefully Built 6 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +11304,Newly Built 3 Bedroom Terrace Duplex;,Vgc Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +11305,Newly Built 2 Bedroom Apartment In A Strategic Location,Ikota Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +11306,Lovely Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11307,Beautiful 2 Bedroom Apartment In Good Location,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ologolo +11308,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11309,Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11310,Excellent Top Notch Luxury 4 Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11311,Tastefully Built 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11312,Furnished 4 Bedroom Semi Detached House With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +11313,Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11314,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11315,Newly Built 5 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +11316,3bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +11317,Nicely Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11318,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11319,Beautiful And Spacious 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11320,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11321,Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11322,Newly Built Automated 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11323,Newly Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +11324,Nicely Built Luxury 4 Bedroom Terrace Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11325,Brand New 4 Bedroom Semi Detached Duplex;,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11326,Newly Built 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11327,Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11328,Superbly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11329,Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11330,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +11331,Newly Built 5 Bedroom Fully Detached Duplex,"Lekky County Estate, Chevron Toll Gate Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11332,Nicely Built 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11333,Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11334,Brand New Well Built 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11335,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +11336,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11337,Massive 4 Bedroom Terrace Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11338,Tastefully Finished 4 Bedroom Terrace Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11339,"Cornerpiece Land Measuring 1,000m²","Carlton Gate Estate, Chevron Lekki Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets,Chevron +11340,Newly Built 4 Bedroom Semi Detached Duplex,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11341,Lovely 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +11342,Tastefully Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11343,Tastefully Built 5 Bedroom Detached Duplex;,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11344,Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11345,Primed 1000sqm Residential Plots In A Beautiful Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Chevron +11346,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11347,Tastefully Built 5 Bedroom Detached House;,Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11348,Brand New 5 Bedroom Detached House With Bq;,Chevron Right Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11349,Newly Built Super American Smart 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,3 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11350,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11351,56 Units Of Brand New 4 Bedrooms Terrace Houses;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11352,Nicely Built 5 Bedroom Detached House;,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11353,Nicely Built 5 Bedroom Detached House;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +11354,Luxury Finished 4 Bedroom Terrace Duplex,"Ivy Luxuria Estate, Orchid Road Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11355,Newly Built 5 Bedroom Fully Detached Duplex;,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11356,Lovely Brand New 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11357,Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq;,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11358,Lovely 4 Bedroom Terrace Duplex,Royale Terrace Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +11359,Newly Built 5 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11360,Brand New 5 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11361,Newly Built 4 Bedroom Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11362,5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11363,Brand New Serviced 4 Bedroom Terrace House With Bq;,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11364,Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11365,Exquisite 5 Bedroom Fully Detached Duplex,In A Secured And Serene Neighborhood Osapa London Lekki Lagos,₦,"515,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11366,Styled 4 Bedroom Semi Detached Duplex;,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +11367,Brand New 5 Bedroom Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11368,Luxury 3 Bedroom Carcas Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +11369,Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11370,Tastefully Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11371,Beautiful 4 Bedroom Terrace Duplex In Good Location,"Whales County Estate, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11372,Lovely 6 Bedroom Fully Detached Duplex In Prime Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +11373,Beautiful 4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Orchid Road Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11374,Beautifully Finished And Furnished 2 Bedroom Apartment,In A Serene Neighborhood Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +11375,Brand New 4 Bedroom Semi Detached Duplex With A Bq!,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11376,Nicely Built Luxury 4 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11377,Newly Built 5 Bedroom Luxury Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +11378,Luxury 5 Bedroom Detached Duplex,Lakeview Estate Phase 1 Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11379,Premium 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11380,Well Serviced 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikota +11381,Newly Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11382,Affordable 4 Bedroom Semi Detached Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11383,Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11384,Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11385,Newly Built 5 Bedroom Fully Detached Duplex In Good Location,In A Serene Neighborhood Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11386,Land,"After Amazing Grace Event Center, Orchid Road, Lafiaji, Lekki Lagos",₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11387,Nicely Built 4 Bedroom Semi Detached House;,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +11388,Fully Serviced 3 Bedroom Terrace;,Chevron Tollgate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11389,Exquisite 4 Bedroom Terrace Duplex In Good Location,"Christabel's Gardens, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +11390,Newly Built 5 Bedroom Fully Detached House;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11391,Newly Built 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11392,Brand New 4 Bedroom Semi Detached Duplex;,Ikota Villa Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11393,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11394,4 Bedroom Semi Detached Duplex With Bq,Vella Homes Ikota Lekki Lagos,₦,"65,000,009",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11395,Primed 1200sqm Waterfront Residential Plots In A Strategic Location,Ilasan Ikate Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Ikate +11396,Brand New 5 Bedroom Detached House With Bq;,Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11397,Nicely Built 4 Bedroom Detached House With Penthouse;,"Lakeview Park Ii, Orchid Road Lekki Lagos",₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11398,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11399,Beautiful Waterfront 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11400,Exquisitely Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11401,Super Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11402,Tastefully Built 4 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11403,Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11404,Fully Serviced 4 Bedroom Terrace With Bq;,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11405,Contemporary 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11406,Serviced 3 Bedroom Flat With Bq;,Idado Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11407,Newly Built 5 Bedroom Semi Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11408,4 Bedroom Detached Smart House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +11409,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11410,Newly Built 4 Bedroom Semi Detached Duplex,"H Homes, Off Chevron Toll Gate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11411,Exquisitely Built 4 Bedroom Terrace Duplex,Christabels Garden Exquisitely Built 4 Bedroom Terrace Duplex Off Chevron Toll Gate Chevron Lekki Lagos,₦,"59,000,000/day",0,0,0, beds, baths, Toilets,Chevron +11412,Beautiful 4 Bedroom Semi Detached Duplex,2nd Toll.gate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11413,Super Spacious 5 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11414,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11415,Luxury Smart Finished 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"67,500,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11416,Tastefully Built 6 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +11417,85% Completed 5 Bedroom Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11418,Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11419,Luxury 4 Bedroom Terrace Duplex In A Serviced Estate,Orchid Hotel Road Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11420,Land Measuring 650m²,"Updc Estate Beside Acadia & Pinnock Estate, Osapa London Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets,Osapa London +11421,Brand New 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +11422,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11423,Land For Sale,Ikogo Town Eko Akete Lekki Peninsula Abijo Lekki Lagos,₦,"8,500,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +11424,Newly Built 4 Bedrooms Semi Detached Duplex With Bq;,2nd Toll Lekki Lekki Lagos,₦,"59,500,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11425,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11426,Newly Built 4 Bedroom Detached Duplex With Swimming Pool In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11427,Tastefully Built 5 Bedroom Fully Detached House With Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11428,Luxury 5 Bedroom Detached Duplex;,Ologolo Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +11429,Tastefully Finished 3 Bedroom Terrace Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11430,A Top Notch Super Luxury Spacious 5 Bedroom Mansion With Swimming Pool And Bq,"Lekky County, Lekki Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11431,Massive 5 Bedroom Detached Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11432,Brand New 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +11433,7 Bedroom Fully Detached House With Bq On 2 Plots,Vgc Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets,Victoria Garden City +11434,Brand New Super Luxury Spacious 3 Bedroom Terraced House,Near Vgc Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +11435,Newly Built 4 Bedroom Massionette;,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11436,6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +11437,Brand New 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +11438,Brand New 4 Bedroom Detached Duplex With Bq;,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11439,Well Maintained 4 Bedrooms Terrace Bungalow,"South Point Estate Beside Lakeview Park 2, Off Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +11440,Well Maintained 4 Bedroom Semi Detached Duplex,"Alpha Beach Road, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +11441,Automated 5 Bedroom Detached Duplex With Swimming Pool + Cinema+ Gym,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11442,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11443,Massive Brand New 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11444,Beautifully Designed 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +11445,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11446,Luxury 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +11447,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11448,Lovely 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +11449,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11450,Brand New Serviced 4 Bedroom Terrace House,Platinum Way Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11451,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool In A Beautiful Location,Platinum Way Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11452,Fascinating 5 Bedrooms Semi Detached House;,Off Chevron Tollgate. Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11453,Brand New Excellent 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11454,"Brand New, Exquisitely Finished 5 Bedroom Detached Duplex With Swimming Pool","Northern Foreshore Estate, Ikota Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11455,Smart And Self Serviced 4 Bedroom Terrace With A 1 Room Bq;,Marwa Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11456,Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11457,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11458,Tastefully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11459,Newly Built Massive Luxury 5 Bedroom Fully Detached Duplex With L Room Bq And Swimming Pool,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"330,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +11460,Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11461,Newly Built Spacious 5 Bedroom Fully Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11462,Brand New Super Elegant Elegant 4 Bedroom Terrace House With 1 Room Bq For Sale,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11463,Newly Built 5 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11464,Fully Serviced 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11465,Nicely Built 4 Bedroom Semi Detached Carcass;,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11466,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11467,Classic 4 Bedroom Semi Detached Duplex In A Gated Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +11468,Nicely Built 5 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,0,0,0,0,5 beds,5 baths,6 Toilets,Chevron +11469,Massive 5 Bedroom Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11470,Tastefully Built 5 Bedroom Detached Duplex;,Lekky County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11471,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11472,Well Furnished 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +11473,Luxury 4 Bedroom Semi Detached Duplex With Great Space & A Big Bq.,Tollgate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11474,Newly Built 5 Bedroom Fully Detached Duplex,In A Nice And Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11475,Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Fitted Kitchen,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11476,Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11477,4 Bedroom Semi Detached Duplex For Sale,"Tatiana Court Ikota Villa Gra, Ikota, Lekki Lagos With Governors Consent Ikota Lekki Lagos",₦,"67,000,000/day",0,0,0, beds, baths, Toilets,Ikota +11478,Newly Built 2 Bedroom Service Flat;,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +11479,Massive 5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11480,Brand New 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11481,Land,"Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +11482,Tastefully Built Brand New 5 Bedroom Detached House;,Lakeview Park Estate Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11483,Newly Built 5 Bedroom Detached Duplex,In A Nice And Serene Neighborhood Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11484,5 Bedroom Duplex With 2 Bedrooms Bq,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +11485,Brand New 5 Bedroom Fully Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11486,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,"Victoria Bay 3 Estate, Nike Art Gallery. Ikate Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11487,Nicely Built 5 Bedroom Detached House;,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11488,Land With Structures Measuring 970m²,"Ayinde Akinmade Street, Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11489,Fully Serviced Luxury 2 Bedroom Apartment With Bq;,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11490,Brand New 4 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11491,Brand New Serviced 4 Bedroom Terrace House With Bq;,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11492,Distinguished 4 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11493,Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11494,Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11495,Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11496,Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11497,Newly Built Spacious Luxury 4 Bedroom Terrace Duplex With Bq,D Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11498,4 Bedroom Semi Detached Duplex,Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +11499,Brand New 3 Bedroom Terrace Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11500,Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Ologolo Ologolo Lekki Lagos,₦,"80,000,009",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +11501,4 Bedroom Semi Detached Duplex Off Plan With Flexible Payment Plan,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11502,Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11503,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Gym+ Cinema In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11504,Tastefully Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11505,Newly Built 4 Bedroom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11506,Spacious 4 Bedroom Semi Detached Duplex In A Strategic Location,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +11507,Newly Built 4 Bedroom Detached Duplex In A Good Location,Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +11508,Brand New Serviced 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +11509,Newly Built 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +11510,5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11511,Brand New 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11512,Brand New 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11513,Spaciously Built Luxury 4 Bedroom Semi Detached Duplex For Sale,76 Oral Extension Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +11514,Newly Built Automated Smart 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11515,Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool On 2 Floor,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11516,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",1,0,0,4 beds, baths,5 Toilets,Victoria Garden City +11517,Spacious 4 Bedroom Terrace Duplex With Fully Fitted Kitchen,Lekki Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +11518,Newly Built 5 Bedroom Fully Detached House With A Bq;,Ikate Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11519,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11520,Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,5 Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +11521,Brand New 4 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11522,Brand New 5 Bedroom Fully Detached House With Bq;,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11523,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11524,Newly Built 4 Bedroom Terrace Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11525,Newly Built 4 Bedroom Fully Detached House With A Bq;,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11526,Exquisite Modern 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11527,Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11528,Decently Finished 2 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11529,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11530,Tastefully Built 4 Bedroom Fully Detached Duplex With Bq,... Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11531,Affordable 4 Bedroom Terrace Duplex In A Good Location,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11532,Serviced 2 Bedroom Terrace Duplex In A Good Location,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +11533,Fully Automated 5 Bedroom Fully Detached Duplex;,Toll Gate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11534,Nicely Built 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11535,Executive Newly Built 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11536,Newly Built 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11537,Beautiful 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11538,Luxury 5 Bedroom Detached Duplex In A Gated Estate, Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11539,Luxury 3 Bedroom Apartment With Bq In A Strategic Location,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11540,A Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11541,Newly Built 4 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11542,4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +11543,Exquisite 4 Bedroom Terrace Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11544,Newly Built 4 Bedroom Detached Duplex With Bq;,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11545,Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11546,Newly Built 5 Bedroom Detached Duplex In A Gated Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11547,Brand New Beautiful 4 Bedroom Terrace Duplex With Bq;,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11548,Newly Built 3 Bedroom Block Of Flats With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11549,Newly Built 4 Bedroom Detached Duplex With Bq;,Lafiaji Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11550,"Land Measuring 1,930m²","Ikota Gra, Ikota Lekki Lagos",₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +11551,Beautifully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11552,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11553,5 Bedrooms Fully Detached Duplex With Bq & Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +11554,Nicely Built Luxury 5 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11555,Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11556,Beautiful 3 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +11557,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11558,Beautiful 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11559,Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11560,Fully Serviced 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11561,Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11562,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11563,Tastefully Built 2 Bedroom Apartment, Ologolo Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +11564,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11565,Newly Built 4 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11566,Newly Built 4 Bedroom Terrace Duplex With Bq;,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11567,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Secured And Serene Neighborhood Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11568,Brand New Serviced 4 Bedroom Terrace House With Bq,Osapa Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +11569,"Fully Sand Filled Bareland Measuring 100,000m² (minimum Of 15,000m²)","At The End Of Kusenla Road, Ikate Lekki Lagos",₦,"175,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11570,Newly Built 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11571,Luxury And Tastefully 4 Bedroom Semi Detached Duplex;,Orchid Road. Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11572,Brand New 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11573,Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Alternative Route Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11574,Dry Land Measuring 669.84sqm,Chevron Alternative Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +11575,Premium Plot Of Estate Land In Prime Location,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets,Ikota +11576,Newly Built & Very Spacious 5 Bedroom Fully Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11577,Brand New Serviced 4 Bedroom Terrace House;,Osapa Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11578,Land Measuring 800sqm,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"110,000,000",0,0,0, beds, baths, Toilets,Other Lekki +11579,Beautiful 4 Bedroom Fully Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11580,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11581,Brand New 4 Bedroom Semi Detached House;,Idado Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11582,Nicely Built 5 Bedroom Detached House;,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11583,Luxury 4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11584,Newly Built 4 Bedroom Semi Detached Duplex + Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11585,Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11586,Super Lovely Luxury 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"510,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +11587,Tastefully Built 5 Bedroom Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11588,Brand New 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11589,Massive 5 Bedroom Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11590,Newly Built 4 Bedroom Masionette With Bq;,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11591,Tastefully Built 4 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11592,4 Bedroom Fully Detached Duplexes For Sale,Penteom Smart Homes By Brg Prime Along The Orchid Road Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000/day",0,0,0, beds, baths, Toilets,Chevron +11593,Brand New 5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +11594,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11595,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11596,Brand New 4 Bedroom Terrace Duplex;,2nd Lekki Toll Gate Axis Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11597,"Well Built 12 Bedroom House On 1,388m²",Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +11598,Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11599,Brand New Spacious 3 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +11600,Newly Built 5 Bedrooom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11601,Nicely Built 5 Bedroom Fully Detached House;,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11602,Furnished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11603,Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11604,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11605,Tastefully Built 5 Bedroom Detached House With 2 Bq;,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11606,Serviced 4 Bedroom Fully Detached Duplex With An Ensuite Bq;,Idado Lekki Lagos,₦,"185,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11607,Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11608,Newly Built 4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11609,Newly Built 4 Bedroom Fully Detached Duplex + Bq,"Lekky County, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +11610,Brand New 4 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11611,New 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +11612,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11613,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11614,Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11615,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11616,Tastefully 4 Bedroom Semi Detached Duplex;,Vgc Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11617,Nicely Built 5 Bedrooms Fully Detached House;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11618,Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11619,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11620,5 Bedroom Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +11621,Nicely Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11622,Newly Built 5 Bedroom Fully Detached House With A Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +11623,Luxury 3 Bedroom Terrace Duplex In Good Location,Orchid Road Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +11624,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11625,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +11626,Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11627,Decently Finished 4 Bedroom Townhouse Duplex,In A Serene Location Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11628,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +11629,Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +11630,Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene And Secured Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11631,Cornerpiece Land Measuring 2 Plots,"Atlantic View Estate, Off New Road Busstop Near Chevron, Igbo Efon Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +11632,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Ikota Villa Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11633,"Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq, Swimming Pool.",Lekky County Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11634,Tastefully Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11635,Newly Built 4 Bedroom Terraced Duplex;,Orchid Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11636,Brand New Fully Furnished 4 Bedroom House + 1 Rm Bq,"Bera Estate, Chevron Lekki Lagos",₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +11637,"Several Plots Measuring 650m², 704m², 849m² & 1,459m² @ 140k/sqm","Alternative Route, Chevron Lekki Lagos",₦,"140,000/sqm",0,0,0, beds, baths, Toilets,Chevron +11638,Well Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11639,Brand New 5 Bedroom Fully Detached House With Bq;,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11640,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11641,Newly Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11642,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11643,Brand New 5 Bedroom Detached Duplex;,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11644,Luxury 2 Bedroom Apartment,In A Serene Neighborhood Idado Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +11645,Beautiful 4 Bedroom Fully Detached Duplex;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11646,4 Bedroom Semi Detached Duplex With Bq,Vella Homes Off Chevron Toll Gate Lekki By Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +11647,"Exquisitely Finished, Brand New 3 Bedroom Flat With Bq","2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11648,Newly Built 4 Bedroom Terrace Duplex,"2nd Toll Gate, Orchid Road, Chevron Ikota Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11649,Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11650,Newly Built Luxury 5 Bedroom Fully Detached Duplex In Prime Location.,Nicon Town Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11651,Luxury 4 Bedroom Detached Duplex With Bq & Swimming Pool;,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11652,Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11653,Beautiful Spacious 5 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11654,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11655,Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11656,Brand New 5 Bedroom Fully Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11657,Massive Elegant 3 Bedroom Block Of Flats With Swimming Pool And Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11658,Newly Built 4 Bedroom Semi Detached Duplex For Sale At Chevron,85 Cheveron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +11659,Tastefully Built 4 Bedroom Terrace Duplex With A Bq;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11660,Distress Sale: 4 Bedroom Duplex,"Victoria Crest Ii, Off Orchid Road By Chevron Toll Gate, Lekki Lagos",₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11661,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11662,Brand New 5 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11663,Luxury Waterfront 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11664,Luxury 4 Bedroom Semi Detached House;,Lekki Right. Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11665,Luxury 4 Bedroom Semi Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11666,Newly Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11667,Luxury Built 5 Bedroom Fully Detached Duplex With Bq,Lekky County Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +11668,Nicely Built 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11669,5 Bedroom Fully Detached House (carcass) + Room Bq,"James Pinnock Place (updc Estate), Osapa London Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +11670,Fascinating 5 Bedroom Fully Detached Houses;,Ajah Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11671,Well Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11672,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11673,Luxury 5 Bedroom Townhouse In Prime Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +11674,Lovely 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +11675,Brand New 5 Bedroom Detached Duplex;,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11676,Classic Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +11677,Lovely 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +11678,Nicely Built 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +11679,Newly Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11680,Fully Finished And Furnished 4 Bedroom Semi Detached Duplex With 20 Kva Generator,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +11681,Premium 5 Bedroom Detached Duplex With Swimming Pool + Cinema In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11682,Spacious 4 Bedroom Semi Detached Duplex,"Creek Haven Estate Beside Vgc, Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11683,Nicely Built 5 Bedroom Semi Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11684,Newly Built 4 Bedroom Terrace Duplex In A Gated Estate,Idado Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11685,Luxury 2 Bedroom Apartment With 24 Months Payment Plan,"Camberwall Advantage 4, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11686,Newly Built 4 Bedroom Semi Detached House With A Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11687,A Classic Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11688,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +11689,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11690,4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11691,Brand New 4 Bedroom Terrace House With Bq,Platinum Way Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11692,"Jv: Land Measuring 1,200m²",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11693,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11694,Serviced One Bedroom Apartment In A Strategic Location,Ilasan Lekki Lagos,₦,"32,000,000",1,0,0,1 beds,2 baths,3 Toilets,Other Lekki +11695,3 Bedroom Maisonette With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"65,000,000/month",0,0,0, beds, baths, Toilets,Ikate +11696,Smart Finished 4 Bedroom Terrace Duplex,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11697,Tastefully Built 5 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11698,Lovely Prime Plot Of Land Measuring 400sqms With Global Cofo,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +11699,Newly Built Highly Executive 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11700,Newly Built 5 Bedroom Detached Home,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +11701,Spacious 4 Bedroom Semi Detached Duplex With Smart Features;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11702,Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11703,Luxury Automated 5 Bedroom Fully Detached Duplex,"Chevron Toll Gate, Orchid Road Ikota Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11704,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11705,Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11706,Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11707,Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11708,Well Finished 4 Bedroom Terrace Duplex In Prime Location,In A.serene Location Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11709,Brand New 4 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11710,Nicely Built 4 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11711,Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11712,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11713,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11714,Spacious And Serviced 2 Bedroom Apartments With A Bq;,Ikate Elegushi. Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +11715,Nicely Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11716,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,0 beds,0 baths,0 Toilets,Ikate +11717,Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +11718,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11719,Newly Built Super 2 And 4 Bedroom Apartment With Maids' Quarter And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11720,5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11721,5 Bedroom Fully Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11722,4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11723,Newly Built Super Luxury 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11724,Brand New Luxury Contemporary 4 Bedroom Semi Detached Duplex With Bq,Cheveron Drive Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +11725,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +11726,Serviced 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +11727,Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11728,Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11729,Beautiful 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11730,Newly Built And Serviced 4 Bedroom Terrace Duplex,"In An Estate On Orchid Road Before The Round About, Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11731,Brand New 6 Bedroom Fully Detached Duplex;,Ikate Elegushi Lekki Lagos,₦,"410,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +11732,Newly Built 5 Bedroom Fully Detached Duplex;,Orchid Road Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11733,Tastefully Built 4 Bedroom Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +11734,Well Finished 4 Bedroom Terrace Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11735,Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11736,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11737,Exquisitely Finished 5 Bedroom Detached Mansion With Bq And Lounge Room,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11738,Brand New Spacious 3 Bedroom Terrace Duplex With Bq;,Chevron Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +11739,Luxury 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +11740,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11741,Affordable 4 Bedroom Terrace Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11742,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,$,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets,Osapa London +11743,Brand New 4 Bedroom Fully Detached Duplex With A Bq;,2nd Toll Gate Axis Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11744,Beautiful Fully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +11745,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11746,Serviced 4 Bedroom Semi Detached With Bq;,Chevron Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +11747,Super Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11748,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool And Gym;,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11749,Nicely Built 4 Bedroom Apartment;,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +11750,Beautiful Contemporary 5 Bedroom Fully Detached Duplex,In A Gated Serene Estate Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +11751,5 Bedroom Fully Detached Duplex With A Pool And Private Cinema,Osapa Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11752,Brand New 4 Bedroom Fully Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11753,Tastefully Built 5 Bedroom Fully Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11754,Nicely Built 2 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11755,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Vgc Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11756,Brand New 5 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11757,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11758,4 Bedroom Fully Detached Duplex With Bq Off Plan,Ikota Gra Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11759,Brand New 4 Bedroom Terrace Duplex;,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11760,Distress Sale!!! Self Serviced 4 Bedroom Mezzanine+ Study 2 Living Area With Bq,"Oladimeji Alo Street, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11761,Uniquely Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11762,Newly Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11763,Newly Built 4 Bedroom Terrace Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11764,"Newly Built 5 Bedroom Fully Detached With Private Cinema,gym And Swimming Pool;",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11765,Nicely Built 4 Bedroom Detached House;,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11766,Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11767,New 5 Bedroom Fully Detached House;, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11768,Brand New 5 Bedroom Fully Detached House With Bq;,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11769,Newly Built 5 Bedroom Townhouse,In A Serene Neighborhood Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +11770,Brand New Fully Serviced 4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +11771,Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11772,Smaller Plots Land Measuring 450sqm & 525sqm (210m & 230m Respectively),"Cbd Area, By Lily Gate Hotel, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"210,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11773,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11774,3 Units Of 4 Bedrooms Semi Detached House Bq;,Idado. Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11775,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11776,Brand New 4 Bedroom Semi Detached House With Bq;,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11777,Luxury 2 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +11778,Brand New 5 Bedroom Detached Duplex With A Bq;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11779,Tastefully Built 5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +11780,Brand New 4 Bedroom Semi Detached House With 2 Room Bq,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11781,Brand New 4 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11782,Land With Foundation For A Mall Measuring 950m²,"Directly Along Fola Osibo Road, Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11783,Brand New 4 Bedroom Fully Detached House;,Ajah Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11784,Fully Finished & Furnished 5 Bedroom Detached Duplex + Bq,In A Serene & Nice Neighborhood Ologolo Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ologolo +11785,Nicely Built 1 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +11786,Brand New 5 Bedroom Detached Duplex With Bq & Swimming Pool;,Bera/bakare Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11787,Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +11788,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11789,Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11790,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11791,Brand New 6 Bedroom Detached Duplex With Bq,"Pinnock Beach Estate, Osapa. Lekki Lagos",₦,"510,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +11792,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"97,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11793,Brand New Specious Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +11794,Nicely Built 4 Bedroom Semi Detached Duplex (carcass),Abijo Gra Lekki Lagos,₦,"28,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11795,Primed 1600sqm Commercial Plot,Lekki Epe Express Way Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +11796,Brand New 4 Bedroom Semi Detached House With Bq;,Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11797,Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +11798,Gorgeous 5 Bedroom Fully Detached House;,Ajah Lekki Lagos,₦,"77,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11799,4 Bedroom Semi Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11800,Nicely Built 4 Bedroom Standalone Terrace With A Room Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11801,Beautiful 4 Bedrooms Semi Detached Houses;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11802,Newly Built 4 Bedroom Detached Duplex;,Megamound Estate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11803,4 Bedroom Fully Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11804,Fully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11805,Brand New 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11806,Tastefully Built 4 Bedroom Detached House, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11807,Beautiful 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11808,Waterfront Plots Of Land In Prime Location,Waterfront Plots Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +11809,Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11810,Newly Built 4 Bedroom Fully Detached Duplex;,Second Tollgate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11811,Luxury Finished 5 Bedroom Fully Detached Duplex In Prime Location,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11812,Tastefully Finished 5 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,5 Toilets,Chevron +11813,4 Bedroom.terrace Duplex In Premium Location,In A Serene And Secured Location Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11814,Nicely Built 3 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +11815,Brand New 2 Bedroom Flat;,Alpha Beach Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +11816,Nicely Built 4 Bedroom Semi Detached Duplex;,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11817,Affordable 5 Bedroom Detached Duplex In A Strategic Location,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11818,Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +11819,Gorgeous 5 Bedroom Fully Detached House;,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11820,Superbly Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +11821,Brand New 5 Bedroom Fully Detached Duplex House With A Bq;,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11822,Well Finished Serviced 2 Bedroom Flat, Idado Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +11823,Newly Built 3 Bedroom Service Flat;,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +11824,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11825,Land Measuring 15.330 Acres (70m/plot),"Directly Facing Lekki Epe Expressway, Beside Eleganza Building (okoya Thomas), Chevron Lekki Lagos",₦,"6,720,000,000",0,0,0, beds, baths, Toilets,Chevron +11826,Contemporary 5 Bedroom Detached Duplex With Waterfront View,Chevron Lekki Lagos,₦,0,0,0,0,5 beds,5 baths,6 Toilets,Chevron +11827,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +11828,Luxury Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11829,Brand New Exquisitely Finished 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11830,Massive 5 Bedroom Fully Detached Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11831,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +11832,Newly Built 3 Bedroom Luxury Penthouse With Water View;,Orchid Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11833,4 Bedroom Semi Detached Duplex In Good Location,"Tartiana Court, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11834,Beautiful And Spacious 5 Bedroom Fully Detached Duplex,In A Nice & Serene Neighborhood Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +11835,Serviced 4 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +11836,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool.,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11837,Nicely Built 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11838,Brand New 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11839,Brand New 5 Bedroom Fully Detached Duplex With Bq;,Lekky County (megamound Estate) Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11840,Furnished 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11841,Newly Built 4 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11842,Nicely Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11843,Fully 4 Bedroom Semi Detached Duplex;,Ikate Estate. Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +11844,Newly Built 5 Bedroom Fully Detached Duplex;,Pinnock Beach Estate Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11845,Newly Built 4 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11846,Luxury 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11847,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11848,"Land Measuring 1,794m² & 1,573m² At Road 2 And Road 9 Respectively","Road 2 & Road 9, Vgc Lekki Lagos",₦,"205,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +11849,Newly Built Spacious 4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +11850,Lovely 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +11851,Beautiful 4 Bedroom Fully Detached Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11852,Tastefully Built 4 Bedroom Semi Detached Duplex;,Oral Estate Axis Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11853,Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11854,Lovely Affordable Luxury 4 Bedroom Fully Detached Duplex;,Osapa Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11855,Newly Built 4 Bedroom Semi Detached House With Bq;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11856,Brand New 4 Bedrooms Semi Detached House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11857,Newly Built 3 Bedroom Flat With A Bq;,"Oniru, Lekki Lagos",₦,"98,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11858,Tastefully Built 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11859,Serviced 4 Bedroom Semi Detached House With Bq,Harris Drive Vgc Lekki Lagos,₦,"88,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11860,Newly Built 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +11861,Tastefully Built 4 Bedroom Fully Detached Duplex With Bq;,Ikota Gra Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11862,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11863,Brand New 5 Bedroom Fully Detached House With Bq;,Agungi Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +11864,Newly Built 4 Bedroom Semi Detached House With Bq,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11865,Brand New 4 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11866,4 Bedroom Terrace Duplex With Bq,"Ikate Elegushi, In A Serene Neighborhood Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +11867,Brand New 5 Bedroom Fully Detached Duplex;,Osapa Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11868,Contemporary 5 Bedroom Fully Detached House;,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11869,Newly Built 5 Bedroom Detached Duplex With Bq;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11870,4 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +11871,2 Bedroom Penthouse For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"55,000,000/day",0,0,0, beds, baths, Toilets,Ikate +11872,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +11873,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11874,Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11875,Spacious Beautifully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11876,Luxury 5 Bedroom Fully Detached Duplex Sitting 600sqm,Vgc Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11877,Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths, Toilets,Ikate +11878,Contemporary 4 Bedroom Fully Detached Duplex With A Room Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11879,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11880,Fully Automated 5 Bedroom Fully Detached Duplex;,Chevron Toll Gate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11881,"Joint Venture: Land Measuring 10,000m²","Mfm Way, Beside Fidelity Bank, Vgc Lekki Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +11882,Newly Built 5 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11883,Brand New Serviced 4 Bedroom Terrace House;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11884,Luxury 3 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +11885,Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11886,Luxury Finished 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +11887,Luxury 2 Bedroom Apartment In A Good Location,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +11888,Well Built 3 Bedroom Apartment With Bq,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +11889,Beautiful 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11890,Newly Built 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11891,800m² Commercial Plot With Additional 400ms Set Back Space (1200m²),"Facing 3 Streets: Providence Rd, Otunba Ogungbe Rd & Iron Bar Street, Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +11892,New Listing 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11893,Brand New Elegant Smart Home 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11894,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11895,Brand New Fully Serviced 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +11896,A Distinguished 5 Bedroom Detached Duplex;,Lekky County Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +11897,5 Bedroom Detached Duplex + Bq,"2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11898,Well Finished And Spacious 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +11899,Massive 4 Bedroom Semi Detached Duplex In A Beautiful Location,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11900,Brand New 5 Bedroom Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11901,Fully Furnished & Serviced 4 Bedroom Terrace,"Conservation Road By Chevron Toll Gate, Lekki Lagos",₦,"50,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Lekki +11902,Brand New 3 Bedroom Apartment;,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +11903,Fully Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +11904,Luxury 5 Bedroom Fully Detached Contemporary Home,"Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11905,Brand New 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +11906,5 Bedroom Fully Detached Duplex With Two Rooms Bq,"Chevyview Estate, Chevron Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11907,Brand New 5 Bedroom Fully Detached House;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11908,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11909,Newly Built 4 Bedroom Terrace Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +11910,Newly Built 5 Bedrooms Semi Detached Houses;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11911,Luxury 6 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,$,"1,800,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +11912,Luxury Finished 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"150,000,009",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11913,8 Bedrooms Fully Detached House + Bqs,"Directly Off Fola Osibo Street (3 Houses Away From Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"339,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11914,"Distress Sale: Land Measuring 1,000m²","Twin Lake Estate, Chevron Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Chevron +11915,Contemporary Units Of 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +11916,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11917,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +11918,4 Bedroom Fully Detached Duplex With A Room Boy's Quarter On 675sqm,"House No F71, Close 54 Vgc Lekki Lagos",₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11919,Newly Built 4 Bedroom Fully Detached Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11920,Newly Built 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +11921,Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +11922,4 Bedroom Semi Detached Duplex In Good Estate Location,"Royal Pine Estate, Orchid Road, By Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11923,Newly Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11924,Tastefully Finished 5 Bedroom Detached Duplex;,Chevron Alternative Route Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11925,Brand New Spacious 4 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11926,"Fully Detached 7 Bedroom House On Land Measuring 1,000m²","Nicon Town Estate, Ilasan Lekki Lagos",₦,"600,000,000",0,1,0,7 beds,7 baths,8 Toilets,Other Lekki +11927,Brand New 5 Bedroom Detached House With Bq;,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +11928,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11929,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11930,Newly Built 5 Bedroom Semi Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11931,Tastefully Built 4 Bedroom Terrace Duplex;,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +11932,Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11933,Newly Built Spacious Luxury 4 Bedroom Terrace And Block Of Flats Water Front View House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11934,3 Units Of 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +11935,2 Bedroom Maisonette For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"45,000,000/day",0,0,0, beds, baths, Toilets,Ikate +11936,Newly Built 4 Bedroom Luxurious Apartment,Orchid Road Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11937,4 Bedroom Terraced Duplex With Swimming Pool,Behind Vgc Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +11938,Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11939,Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11940,Brand New 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +11941,Newly Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11942,Massive 2 Bedroom Terrace Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +11943,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Gra Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11944,Tastefully Built 3 Bedroom Apartment;,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +11945,Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11946,Newly Built 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11947,Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11948,Brand New 5 Bedroom Fully Detached House With Bq;,Chevyview Estate Lekki Lagos,₦,"108,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11949,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +11950,Brand New Elegant Luxury 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11951,Brand New 5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11952,"Jv: 5,000m² Land ( 7 & 1/2 Plots )",Chevron Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Chevron +11953,Newly Built Super Luxury 4 Bedroom Terraced Duplex For Sale,43 Oral Extension Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +11954,Tastefully Built 4 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11955,Nicely Built 4 Bedroom Detached House;,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11956,Newly Built Super Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,2 Ikate Lekki Lagos,₦,"112,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +11957,Spacious And Serviced 4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11958,Lovely 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +11959,1 Bedroom Studio Apartment For Sale,Studio Apartment Bloom Heaven Residences Ikate Lekki Lagos,₦,"30,000,000/day",0,0,0, beds, baths, Toilets,Ikate +11960,Brand New Serviced 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +11961,Fully Furnished 3 Bedroom Flat;,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +11962,Exquisitely Finished 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +11963,Luxury 4 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11964,Newly Built 4 Bedroom Fully Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11965,Luxury 4 Bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11966,Brand New 5 Bedroom Fully Detached Duplex House With A Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11967,Newly Built Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +11968,Luxury 5 Bedroom Detached House With Bq,Orchid Road Ocean Bay Estate12 Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +11969,Tastefully Built 4 Bedroom Maisonnette,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11970,Nicely Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +11971,2 Units Of 2 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +11972,Brand New 4 Bedroom Semi Detached House With Bq;,Alternative Route Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11973,Luxury 4 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11974,Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +11975,Nicely Built 5 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +11976,Spacious 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11977,Nicely Built 4 Bedroom Semi Detached House;,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +11978,Brand New 4 Bedroom Terrace Duplex With Bq:,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11979,Spacious 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11980,Brand New 3 Bedroom Flat With Bq,Alpha Beach Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11981,Brand New 5 Bedroom Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +11982,Nicely Built 5 Bedroom Fully Detached House With A Bq;,Osapa Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11983,Newly Built 3 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +11984,Affordable 4 Bedroom Terrace Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11985,Newly Built 1 Bedroom And 2 Bedroom Apartment;,Agungi Lekki Lagos,₦,"22,000,000",0,1,0,1 beds,1 baths,2 Toilets,Agungi +11986,Smartly Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +11987,Luxury 4bedroom Terrace Duplex(24hrs Electricity), Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +11988,Tastefully Built Fully Loaded 5 Bedroom Detached House;,Osapa Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +11989,Luxury 4 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +11990,Plots Of Dry Land In Prime Location,"Whales County Estate 2, Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets,Ikota +11991,4 Bedroom Maisonette With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"75,000,000/month",0,0,0, beds, baths, Toilets,Ikate +11992,Off Plan: 1 Bedroom Loft;,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +11993,Spacious 4 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +11994,L 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +11995,Luxury 4 Bedroom Maisonette Carcass In A Good Location,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +11996,Lovely 3 Bedroom Apartments With Bq:,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +11997,Newly Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +11998,Luxury 5 Bedroom Fully Detached Duplex With A Room Bq;,2nd Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +11999,Newly 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12000,Lovely 4 Bedroom Terrace Duplex In Nice Location,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12001,5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12002,Brand New 6 Bedroom Fully Detached House With Bq;,Osapa Lekki Lagos,₦,"155,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +12003,Nicely Built 5 Bedroom Fully Detached Plus A Bq And A Swimming Pool;,2nd Tollgate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12004,Serviced 2 Bedrooms Apartment In A Strategic Location,Ilasan Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +12005,Brand New Serviced 4 Bedroom Terrace House;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12006,Brand New 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12007,"5 Bedroom Fully Detached Duplex With Bq, Cinema And Pool",Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12008,Mini Flat,Agungi Lekki Lagos,₦,"22,000,000",0,1,0,1 beds,1 baths,2 Toilets,Agungi +12009,Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12010,Newly Built 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12011,Massive 5 Bedroom Fully Detached Duplex;,Second Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12012,Newly Built 4 Bedroom Fully Detached Duplex In Nice Location,Close The Chevron Toll Gate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12013,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12014,Luxury 4 Bedroom Terrace With Swimming Pool + Gym In A Strategic Location,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +12015,Well Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12016,Brand New 5 Bedroom Fully Detached Waterfront House;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12017,Fully Serviced 2 Bedroom Apartment, Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +12018,Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12019,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12020,"Dry Land Measuring 1,089m²","Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12021,Newly Built 4 Bedroom Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12022,Newly Built 4 Bedroom Semi Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12023,Brand New 4 Bedroom Fully Detached House With A Bq,Second Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12024,Newly Built 4 Bedroom Terrace House In A Mini Estate;,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12025,Premium 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +12026,Spacious 4 Bedroom Terrace House;,Osapa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12027,Brand New 5 Bedroom Fully Detached Duplex;,Victory Park Estate Osapa London Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12028,Luxury 5 Bedroom Detached Duplex In A Gated,Oral Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12029,Newly Built 5 Bedroom Detached Duplex With Swimming Pool;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12030,4 Bedroom Semi Detached House With An Attached 2 Bedroom Flat,"Chris Otunlana Street, U3 Estate, Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12031,Brand New Serviced 3 Bedroom Luxury Apartment,Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12032,Brand New 4 Bedroom Semi Detached Duplex;,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12033,Tastefully Built 6 Bedroom Semi Detached House;,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +12034,Luxury 5 Bedroom Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12035,Newly Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +12036,Brand New 5 Bedroom Fully Detached House With Bq;,Osapa Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12037,Land Measuring 10 Hectares,"Beside Periwinkle Estate, Lekki Phase 1 Lekki Lagos",₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12038,Newly Built 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +12039,Luxury 6 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,$,"1,800,000",0,1,0,6 beds,6 baths,7 Toilets,Ikate +12040,Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12041,Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12042,Super Finished Newly Built Executive 5 Bedroom Fully Detached Duplex With 2 Room Bq For Sale,Orchid Road Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12043,"Sand Filled Land Measuring 1,300m²","Orchid Road, Overlooking Victoria Crest Iv, Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12044,Nicely Built 4 Bedroom Terrace Duplex With Bq;,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12045,Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12046,Brand New Furnished 3 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Lekki +12047,Brand New 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12048,Newly Built 4 Bedroom Semi Detached In A Gated Estate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12049,Newly Built 4 Bedroom Terrace Duplex With Bq;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12050,Brand New 4 Bedroom Semi Detached House;,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12051,4 Bedroom Fully Serviced Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12052,Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +12053,Newly Built 4 Bedrooms Terrace House;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12054,Fully Serviced 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12055,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool In A Beautiful Location,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12056,Exquisitely Finished 3 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12057,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12058,Newly Built 5 Bedroom Detached Duplex With Swimming Pool In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12059,"Luxury 4 Bedroom Detached Duplex With Great Space, & A Big Bq;",Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12060,Brand New 5 Bedroom Detached House With Bq,Bera/bakare Estate. Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12061,Executive Brand New 5 Bedroom Fully Detached House With A Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12062,Brand New 5 Bedroom Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12063,Newly Built 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12064,Newly Built Luxury 3 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12065,Newly Built 5 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12066,Executive 4 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12067,Tastefully Finished 4 Bedroom Terrace Duplex With A Bq;,Osapa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12068,Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12069,Fully Finished 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12070,Affordable 4 Bedroom Terrace Duplex In A Good Location,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +12071,Brand New 4 Bedroom Fully Detached House With A Bq;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12072,Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12073,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +12074,Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12075,Newly Built 5 Bedroom Detached Duplex Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12076,Newly Built 5 Bedroom Detached House With A Bq;,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12077,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12078,Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12079,Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12080,Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12081,Newly Built 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12082,4 Bedroom Terrace,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +12083,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +12084,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +12085,Nicely Built 5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12086,Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12087,Newly Built 4 Bedroom Terrace Duplex In Good Location,In A Nice And Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12088,Well Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12089,Brand New Serviced 2 Bedroom Flat;,Osapa Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +12090,Massive 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12091,4 Bedroom Terrace Duplex With Bq,Lekki Right Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +12092,Brand New 4 Bedroom Semi Detached Duplex;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12093,Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate. Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12094,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12095,Tastefully Built 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +12096,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12097,Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikate +12098,Brand New Spacious 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12099,Tastefully Built 5 Bedrooms Fully Detached House,Off Chevron Drive Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12100,Brand New Serviced 4 Bedroom Semi Detached House With Bq;,Primewaterview Gardens Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12101,Tastefully Built 4 Bedroom Terrace House;,Lekki County Homes Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12102,3 Bedroom Luxury Serviced Apartment,"Primewater Gardens, Ikate Lekki Lagos",₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +12103,Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12104,Tastefully Serviced 3 Bedroom Terrace;,Chevron Tollgate. Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +12105,Tastefully Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12106,Brand New 5 Bedroom Fully Detached House;,Chevron Alternative Route Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12107,5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12108,Brand New 5 Bedroom Detached Duplex With Bq;,Ikate Elegushi. Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12109,Newly Built 5 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12110,5 Bedroom Carcass Building;,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12111,450sqm,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Osapa London +12112,Brand New 4 Bedroom Fully Detached House With A Bq,Ajah Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12113,Land Measuring 650m²,"Victoria's Crest 2, Off Orchid Road, Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12114,Newly Built Contemporary 5 Bedroom Detached Duplex;,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12115,Fully Finished 4 Bedroom Terrace Duplex,In A Secured And Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12116,Tastefully Built 4 Bedroom Terrace With Bq;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12117,5bedroom Contempory Detached Duplex For Sale.,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12118,"Brand New Spacious And Well Finished, 4 Bedroom Semi Detached Duplex;",2nd Toll Gate Axis Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12119,Newly Built 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12120,Land Measuring 675m²,Vgc Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +12121,Elegantly Finished 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12122,Brand New 4 Bedroom Semi Detached House;,Opposite Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12123,4 Bedroom Semi Detached Duplex For Sale,"Napier Garden Opposite Vgc Estate, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12124,Automated 5 Bedroom Fully Detached Duplex Mansion,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12125,"Land Measuring 2,000m²","Close To Richmond Gate Estate, Ikate Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Ikate +12126,Brand New 4 Bedroom Detached Duplex;,Lakeview Park Estate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12127,Fully Serviced 3 Bedroom Terrace;,Toll Gate. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +12128,Newly Built Massive 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12129,Brand New 5 Bedrooms Fully Detached House;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12130,Brand New Spacious Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Cheveron Lekki Lekki Phase 2 Lekki Lagos,₦,"135,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +12131,Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12132,Brand New 4 Bedroom Terrace Duplex With Bq;,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12133,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12134,Luxury 4 Bedroom Fully Detached Duplex With Bq (with Payment Plan),"Bosmak Haven, Beside Victoria Garden City Vgc Lekki Ikota Lekki Lagos",₦,"79,500,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +12135,Luxury 4 Bedroom Semi Detached Duplex In An Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12136,Super Decent 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12137,Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12138,Brand New 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"5,500,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12139,Newly Built 4 Bedroom Terrace Duplex In A Good Location,Ilasan Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12140,Newly Built 5 Bedroom Detached Duplex In A Strategic Location,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12141,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +12142,Newly Built 5 Bedroom Detached Duplex;,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12143,4 Bedroom Fully Detached Duplex,"Bera Estate, Off Chevron Lekki Lagos",₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +12144,Luxury 5 Bedroom Detached Duplex;,Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12145,Lovely 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +12146,Newly Built 5 Bedroom Detached Duplex With Bq And A Swimming Pool;,Megamound Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12147,Luxury 6 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +12148,Brand New 5 Bedroom Fully Detached House With Bq;,Alternative Route Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12149,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +12150,"Land Measuring 1,216m²","Plot 2a&2b Bk.113, Along Hakeem Dickson Drive, Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12151,Superbly Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12152,Beautiful 4 Bedrooms Semi Detached House;,Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12153,Magnificently Built 5 Bedroom Fully Detached House;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12154,Tastefully Built 5 Bedroom Fully Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12155,Luxury 5 Bedroom Fully Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12156,Nicely Built Spacious 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12157,Fully Finished 5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12158,Nicely Built Brand New 5 Bedroom Terrace House As Carcass;,Lekki Right. Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12159,Fully Furnished 5 Bedroom Detached Duplex;,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +12160,Newly Built 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12161,Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12162,5 Bedroom Fully Duplex + Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12163,Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12164,Brand New 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12165,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12166,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12167,Nicely Built Luxury 4 Bedroom Terrace Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12168,Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12169,Land Measuring 975m² With 2 Wings Of Fully Detached Houses; Attached With Bq Each,"Chief Henry Ojorgho Street, Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12170,Brand New 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12171,Nicely Built 4 Bedroom Detached Duplex;,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12172,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12173,Massive 5 Bedroom Fully Detached Duplex;,Lekky County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12174,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12175,Nicely Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12176,Tastefully Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12177,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12178,Brand New 5 Bedroom Detached House With Bq,Bera/bakare Estate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12179,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12180,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12181,Newly Built Spacious Luxury 5 Bedroom Fully Detached Duplex For Sale,12 Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +12182,Fully Detached 5 Bedroom With Staff Quarters,Megamound Estate. Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12183,Newly Built Super Luxury 4 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,5 Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12184,Spacious Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq,1 Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12185,Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,1 Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12186,Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,1 Ikota Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12187,Off Plan Sales 3 Bedroom Block Of Flats,Lekki Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12188,Spacious Massive 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12189,Newly Built Super Luxury Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq 0n 2 Floors For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12190,Nicely Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12191,Newly Built Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12192,Fully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12193,Beautiful 5 Bedroom Terraced Duplex In Prime Location,In A Serene Location Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12194,Beautiful 4 Bedroom Semi Detached Duplex In Prime Location,Chevron Toll Gate Chevron Lekki Lagos,₦,"53,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +12195,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +12196,Luxury 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12197,3 Bedroom Penthouse With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"75,000,000/day",0,0,0, beds, baths, Toilets,Ikate +12198,Luxury 5 Bedroom Detached Duplex With Swimming Pool + Gym + Cinema,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12199,4 Bedroom Semi Detached House With A Staff Room,"Oba Adeyinka Oyekan Estate, Off Hakeem Dickson Street, Lekki Phase 1 Lekki Lagos",₦,"155,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12200,Nicely Built 3 Bedroom Apartment;,Ilasan Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12201,Elegant 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12202,Brand New 5 Bedroom Fully Detached House With A Bq;,Lekky County Homes Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12203,Tastefully Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12204,Brand New 5 Bedroom Fully Detached Duplex;,Tollgate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12205,Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12206,5 Bedroom Detached Townhouse Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +12207,Luxury 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12208,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12209,Brand New 4 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12210,Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +12211,Brand New Listing 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12212,Newly Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12213,Beautifully Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +12214,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12215,Newly Built 5 Bedroom Detached Duplex,Ikota Gra Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12216,Newly Built Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,2 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12217,Seaview View Fully Detached 5 Bedroom Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12218,5 Bedrooms Fully Detached Detached Duplex With Bq,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12219,3 Bedroom Terrace Maisonette,Lekki Phase 1 Lekki Lagos,₦,"78,000,000/month",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +12220,Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,6 Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +12221,Brand New 4 Bedroom Detached Duplex;,Lakeview Park Estate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12222,Newly Built 4 Bedroom Semi Detached Duplex In A Good Estate,Orchid Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12223,Tastefully Built 4 Bedroom Semi Detached House With Bq;,Alternative Route Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12224,Brand New Serviced 2 Bedroom Flat;,Ologolo Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +12225,Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12226,Newly Built 4 Bedroom Terrace Duplex;,Vgc Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +12227,Designed 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12228,Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12229,Tastefully Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12230,Brand New Fully Serviced 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12231,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12232,Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12233,Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Alternative Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12234,Tastefully Built 4 Bedrooms Semi Detached House;,Off Chevron Drive Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12235,Nicely Built 4 Bedroom Detached House;,"Lakeview Park Ii, Orchid Road Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12236,Strategically Located 2 Plots Each Measuring 650m² Dry Bareland .,"Victoria Crest, Off Orchid Road By Chevron Toll Gate, Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12237,Fully Furnished 4 Bedroom Detached Duplex With Bq;,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +12238,Luxury 4 Bedroom Apartment,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12239,Fully Furnished 5 Bedroom Detached Duplex With A Bq;,"Pinnock Beach Estate, Osapa. Lekki Lagos",₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12240,Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12241,Nicely Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Alternative Route Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12242,Newly Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12243,Newly Built 2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +12244,Tastefully Built 3 Bedroom Flat,Orchid Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12245,Brand New 2 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +12246,Classic 5 Bedroom Detached Duplex With Swimming Pool In A Gated Estate,Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12247,Luxury 5 Bedroom Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"17,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +12248,Newly Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12249,Newly Built 3 Bedroom Terrace Duplex;,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +12250,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12251,Luxury 4 Bedroom Terrace Duplex With Payment Plan,"Bosmak Haven Homes, Beside Vgc Ikota Lekki Lagos",₦,"54,500,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +12252,Newly Built 4 Bedroom Fully Detached Duplex,"Orchid Road, In A Serene Neighborhood Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12253,Brand New 4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12254,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12255,Luxury 4 Bedroom Emei Detached Duplex With Bq With Payment Plan,"Bosmak Haven Homes, Beside Victoria Garden City, Vgc Ikota Lekki Lagos",₦,"69,500,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +12256,2 Bedrooms Flat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +12257,Nicely Built 3 Bedroom Terrace Duplex With A Room Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +12258,Nicely Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Alternative Route Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12259,Brand New 5 Bedroom Detached House;,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12260,Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12261,Brand New 5 Bedroom Fully Detached House With Bq;,Chevyview Estate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12262,Top Notched Finishing Luxury 4 Bedroom Semi Detached Duplex With Bq,Near Vgc Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +12263,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +12264,Super Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12265,Super Spacious 5 Bedroom Fully Detached Duplex With Bq;,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12266,Exquisitely Built 5 Bedroom Detached Duplex With A Room Bq;,Chevron Toll Gate. Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12267,Newly Built 3 Bedroom Terrace Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +12268,A 4 Bedroom All Rooms En Suite Semi Detached Duplex With 2 Sitting Rooms And A Guest Room., Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12269,Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12270,Brand New 4 Bedroom Semi Detached Duplex;,Orchid 2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12271,"Available Plots Measuring 474m², 520m², 616m²","Ocean Bay Estate Off Orchid Hotel Road, Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12272,Nicely Built 4 Bedroom Fully Detached House;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12273,Newly Built 4 Bedroom Semi Detached House With A Bq,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12274,Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12275,Luxury 4 Bedroom Terrace Duplex In A Good Estate,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12276,Nicely Built 3 Bedroom Flat;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +12277,Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex;,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12278,Brand New Furnished 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Lekki +12279,Fully Furnished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12280,Well Finished 2 Bedroom Flat In Good Location,In A Nice & Serene Neighborhood Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets,Agungi +12281,Brand New 4 Bedroom Semi Detached House;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12282,Luxury Styled One Bedroom Apartment In Premium Estate,"Periwinkle Lifestyle Estate, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,1,1 beds,1 baths,1 Toilets,Lekki Phase 1 +12283,Newly Built Spacious Super Luxury 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12284,Well Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12285,Gorgeous 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12286,Affordable 3 Bedroom Carcas Apartment In A Luxury Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +12287,Newly Built 2 Bedroom Detached House With Ample Parking Space,Ikota Lekki Lagos,₦,"1,500,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +12288,Luxury Serviced 4 Bedroom Semi Detached Duplex In A Gated Estate,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +12289,Magnificent 5 Bedrooms Fully Detached House;,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12290,Massive Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12291,Magnificently Finished 5 Bedroom Fully Detached Duplex,Lekky County Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12292,Tastefully Built 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12293,Brand New Serviced 2 Bedroom Flat;,Agungi Lekki Lagos,₦,"36,000,000",1,0,0,2 beds,2 baths,3 Toilets,Agungi +12294,Newly Built 4 Bedroom Fully Detached House With A Bq;,Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12295,Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12296,Brand New Tastefully Built 5 Bedroom Detached House With 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12297,Luxury 2 Bedroom Apartment With Elevator,Jakande Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +12298,Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets,Chevron +12299,Nicely Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12300,Spacious Fully Detached 5 Bedroom Duplex With A Bq;,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +12301,Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12302,3 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +12303,Massive 5 Bedroom Fully Detached Duplex;,Lekky County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12304,Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12305,Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12306,Newly Built 5 Bedroom Semi Detached Duplex In A Gated Estate,Lekki Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12307,Brand New 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12308,Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq,"Izu Court, Chevron Alternative, Ikota, Lekki Chevron Lekki Lagos",₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12309,Luxury 3 Bedroom Fully Detached,Palm City Estate Lekki Lagos,₦,"110,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Lekki +12310,New Built 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12311,Brand New Contemporary 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12312,Premium 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +12313,Luxury 4 Bedroom Terrace Duplex In A Good Location,Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12314,Brand New 4 Bedroom Fully Detached House With Bq;,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12315,Newly Built 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12316,Affordable 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12317,Brand New 5 Bedroom Semi Detached House;,Lekki Right. Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12318,Brand Newly Built Spacious Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12319,Brand New 5 Bedroom Fully Detached Houses;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12320,Newly Built Contemporary 5 Bedroom Fully Detached Duplex,In A Gated Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12321,Spacious 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12322,Brand New 3 Bedroom Flat With Bq;,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +12323,Beautifully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12324,Newly Built 4 Bedroom Fully Detached House With A Bq;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12325,"Contemporary, Smart 4 Bedrooms Semi Detached Houses;",Off 2nd Tollgate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12326,Serviced 5 Bedroom Semi Detached House,Osapa Lekki Lagos,₦,"60,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +12327,Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12328,Tastefully Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12329,Newly Built 3 Bedroom Apartment With Excellent Facilities,Chevron Lekki Lagos,₦,"2,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +12330,Brand New Luxury Five Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +12331,Plot Of Estate Land In Prime Location,"Ross Avenue Estate, Off Orchid Road, Chevron Ikota Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets,Ikota +12332,Newly Built 4 Bedroom Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12333,Nicely Built 5 Bedroom Townhouse Duplex With A Room Bq;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12334,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,By Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +12335,Tastefully Built 5 Bedroom Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12336,Lovely 4 Bedroom Semi Detached Duplex In Nice Estate,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12337,Offplan Sales 4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12338,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12339,Luxury 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +12340,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12341,Tastefully Built 3 Bedroom Flat;,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +12342,Newly Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12343,"Land Measuring 1,050m²","Periwinkle Estate, Lekki Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12344,Brand New 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"54,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12345,Tastefully Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12346,Brand New 4 Bedroom Terrace Duplex;,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12347,Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12348,Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12349,Massive 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12350,Newly Built 3 Bedroom Serviced Apartment,Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12351,"Fenced And Gated Parcel Of Land Measuring 1,310m²","Ayodele Odubiyi, Behind Pinnacle Filling Station, Lekki Phase1(right Side),, Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12352,Fully Finished 4 Bedroom Apartment With Bq,In A Serene Neighborhood Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12353,Massive Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12354,Massive 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +12355,24 Plots Of Land (minimum Of 6 To Be Sold At Once,"Beside Pinnock Beach Estate, Jakande Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12356,Luxury 4 Bedroom Semi Detached Duplex With Bq,"Tartiana Court, Ikota Villa Estate Ikota Lekki Lagos",₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +12357,Newly Built 4 Bedroom Semi Detached Duplex With Bq,"H Homes, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12358,4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,8 baths,8 Toilets,Lekki Phase 1 +12359,Beautiful Contemporary 5 Bedroom Fully Detached Luxury Duplex;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12360,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12361,Newly Built 4 Bedroom Semi Detached Duplex;,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12362,Classic 4 Bedroom Semi Detached Duplex In A Gated Estate,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12363,Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +12364,Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12365,Brand New 5 Bedroom Detached Duplex;,"Gated Estate, Osapa Axis. Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12366,Spacious 4 Bedroom Semi Detached Duplex With Bq;,Chevron Drive Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12367,4 Bedroom Semi Detached Duplex With Bq,"Izu Court, By Chevron Alternative, Lekki, Ikota Chevron Lekki Lagos",₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12368,4 Bedroom Detached Duplex With 1 Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +12369,Smartly Finished 4 Bedroom Semi Detached Duplex,"Pantheon Homes, Buena Vista Estate, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12370,Exquisitely Finished And Fully Serviced 3 Bedroom Flat With Sea View,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +12371,Luxury 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +12372,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12373,Brand New Spacious Luxury 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +12374,Tastefully Built 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12375,Fascinating 5 Bedrooms Semi Detached House;,Off Chevron Toll Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12376,Newly Built 5 Bedroom Fully Detached Duplex;,Second Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12377,Nicely Built 5 Bedroom Detached Duplex,Lekky County Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12378,Tastefully Built 7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +12379,Nicely Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12380,Beautiful 3 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"75,000,000",1,0,1,3 beds,3 baths,3 Toilets,Ikate +12381,Beautiful 5 Bedroom Fully Detached Duplex,In A Serene And Secured Estate Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12382,Land Measuring 755m²,"Melrose Garden Estate Beside Vgc, Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +12383,Nicely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12384,2 Bedroom Flat,Agungi Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +12385,Brand New 2 Units Of 4 Bedroom Fully Detached With 1 Bq On 500m² (carcass),"Eleganza Garden Estate, Vgc Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +12386,Newly Built 4 Bedroom Terrace Duplex,By Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12387,Tastefully Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12388,Tastefully Built 4 Bedroom Terrace Duplex,Osapa Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12389,Newly Built Super Luxury 3 Bedroom Apartment With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12390,Well Built 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Chevron +12391,Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds, baths, Toilets,Ikota +12392,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12393,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +12394,Beautiful Well Designed 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12395,Contemporary Lovely 5 Bed Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +12396,Well Built 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +12397,Decently Finished 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12398,4 Bedroom Terraces, Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +12399,4 Bedroom Terrace Duplex With Bq And Swimming Pool In The Heart Of Lekki Phase 1,Z Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +12400,Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Chevron +12401,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,"Alpha Bay Estate Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12402,Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +12403,Well Built Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Ikota +12404,Brand New Massively Built Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +12405,Brand New Luxury 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +12406,Lavishly Executive 6 Unit Luxury 3 Bedroom Apartment With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12407,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12408,Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12409,Brand New Spacious Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12410,5 Bedroom Duplex,... Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +12411,4 Bedrooms Semidetached In A Gated Estate,"...,. Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +12412,Good Looking Spacious 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +12413,6 Plots Of Prime Land In A Strategic Location,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Osapa London +12414,Lovely 4 Bedroom Terrace Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +12415,4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +12416,Brand New Spacious Super Luxury 4 Bedroom Massionette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12417,Well Built 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikate Lekki Lagos,₦,"155,000,000",0,1,0, beds, baths, Toilets,Ikate +12418,Glorious Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Ikota +12419,4 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12420,Mind Blowing 5 Bedroom Fully Detached Castle, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +12421,5 Bed Semi Detached Duplex With Bq,Ilasan Lekki Lagos,₦,"125,000,000",1,1,0,5 beds, baths, Toilets,Other Lekki +12422,Modern Day 4 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +12423,Top Notched Super Luxury 9 Units Of 3 Bedroom Blocks Of Flats With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12424,5 Bedroom Fully Detached Home,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12425,Brand New Contemporary 5 Bedroom Detached Duplex,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +12426,Decently Built 4 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +12427,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +12428,Well Built 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +12429,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikate +12430,Investor’s Delight 2 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +12431,Super Affordable Spacious 4 Bed Semi Detached Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +12432,Brand New Super Luxury Excellent 5 Bedroom Fully Detached Duplex With Bq For Sale,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +12433,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +12434,Beautiful And Spacious 5 Bedroom Fully Detached Duplex,"...,. Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +12435,5 Bedrooms Detached + Bq,Orchid Road Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +12436,Luxury Affordable 4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +12437,Land Measuring 780m²,"Melrose Park Estate, Vgc Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +12438,Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets,Ikota +12439,"Prestigous Address, Magnificent Smart Home",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +12440,Beautiful 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12441,4 Bedrooms Semi Detached + Bq,Orchid Road Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +12442,Lovely 5 Bedroom Fully Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12443,Lovely 2 Bedroom Terrace Duplex In Good Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +12444,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12445,Classy 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Chevron +12446,3 Bedroom Penthouse With Bq, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +12447,5bedroim Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +12448,8000 Sqm Of Joint Venture,Lekki Phase 1 Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12449,1531 Sqm For A Joint Venture,Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12450,5 Bedroom Fully Detached House Plus Boys Quarters,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12451,2000 Sqm,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12452,1000sqm,Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12453,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +12454,Five (5) Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +12455,Designed 6 Bedroom Detached,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",1,1,1,6 beds,6 baths,7 Toilets,Osapa London +12456,Land,Jakande Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12457,Brand New Tastefully Finished 4bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +12458,Newly Built Five (5) Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"185,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +12459,Land,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12460,Outright Sale,Ikota Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Ikota +12461,Beautifully Finished Fully Automated 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +12462,3bedroom Mid Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +12463,8600sqm Land,Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12464,Land For Sale In Lekki,Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12465,3units Of Tenanted 3bwsroom Without Bq,Lekki Lagos,₦,"42,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +12466,Joint Venture 2000sqm,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12467,450sqm Of Land For A Joint Venture,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12468,4 Units Of 5 Bedroom + Bq,Lekki Lagos,₦,"1,200,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +12469,Contemporary 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +12470,Serviced Court 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12471,A Standard 2bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +12472,Beautifully Finished Fully Automated 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +12473,1050 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12474,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +12475,3 Bedroom Flat With A Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +12476,800sqm,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12477,Joint Venture 4000sqm,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12478,Beautifully Finished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +12479,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +12480,4plots Of Land,Oral Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12481,Different Land Size,Ikate Lekki Lagos,₦,0,0,0,0, beds, baths, Toilets,Ikate +12482,A Standard 5bedroom Detached,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12483,Tastefully Finished And Spacious 5 Bedroom,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Chevron +12484,Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12485,1050 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12486,Land,Ilasan Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12487,600sqm,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12488,3148 Sqm Of Land,Right On Lekki Epe Expressway Opposite Novare ( Shoprite) Mall Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12489,500sqm Land,Ilasan Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12490,48 Units Of Luxury 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +12491,Newly Built 5 Bedroom House,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12492,669sqm,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12493,8000 Sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12494,666 Sqm,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Osapa London +12495,Decently Built Affordable 4bedroom,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +12496,100 Plots Of Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +12497,Decent 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +12498,Six (6) Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"1,200,000,000",1,1,1,6 beds,6 baths,7 Toilets,Other Lekki +12499,Six (6) Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"350,000,000",1,1,1,6 beds,6 baths,7 Toilets,Osapa London +12500,Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12501,Furnished 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12502,Newly Built 3 Bedroom Apartment With A Bq, Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +12503,Beautiful 5besroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +12504,"2,357.395sqm",Jakande Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12505,Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12506,4 Plots Of Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12507,Lovely 1 Bedroom,Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 2 +12508,Prestigiously Finished 6bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +12509,1440884 Sqm For A Joint Venture,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12510,4bedroom Duplex Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12511,5 Bedroom Detached House,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +12512,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"83,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +12513,Spacious Super 4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +12514,Beautifully Finished 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +12515,Well Built 3 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +12516,Fully Serviced Decently Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +12517,Bare Land 800sqm,Jakande Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12518,4bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +12519,Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12520,3bedroom Maisonet With A Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +12521,Plot Of Land,Lekki Lagos,₦,"68,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +12522,4000sqm Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12523,A 4befroom Terrance With A Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +12524,Jv Land Measuring 1116sqm,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12525,1124 Sqm For Joint Venture,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12526,666 Sqm,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Osapa London +12527,Land,Located Ikota Villa Estate Behind Megachicken Ikota Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12528,4besroom Penthouse With Bq And 3bedroom Maisonette With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +12529,2 Units Of 3 Bedroom Apartment With A Duplex,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12530,Functional Filling Station,Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12531,Newly Built And Luxurious 2 Bedroom Flat,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +12532,Land,Agungi Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +12533,Luxury Five (5)bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +12534,Fully Detached Five Bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Chevron +12535,5bedroim Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +12536,Well Maintained 4units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +12537,1816 Sqm Of Land For A Joint Venture,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12538,4plots,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12539,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +12540,550sqm Of Land,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12541,8 Hectares Of Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12542,Lovely 3bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +12543,3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +12544,Land,Lekki Lagos,₦,"1,200,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12545,1000 Sqm Of Land For Joint Venture,Romi Gardens Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12546,Beautiful 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12547,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +12548,5 Bedroom Luxury Detached Duplex With A Pool & Bar,Megamound Estate Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12549,Land,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12550,Luxurious 5 Bedroom Fully Detached Duplex,In A Prime Estate Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12551,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"73,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +12552,5 Bedroom Fully Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12553,5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12554,4bedroom Fully Detached Duplex,A Very Nice Secured Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12555,Newly Built Fully Furnished Luxurious 4 Bedroom Terrace,A Very Nice Serene Environment Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12556,Well Built 5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12557,Lovely 4 Unit Of 4 Bedroom Semi Detached House,E Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12558,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12559,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12560,An Executive 4bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12561,4 Bedroom Semi Detached Duplex At Chevron Toll Gate Lekki With Governors Consent,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +12562,3 Bedroom Terrace Duplex,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +12563,4bedroom Fully Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12564,Cornerpiece Plot Of Land Measuring 811sqm,Beta Estate Chevron Chevron Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Chevron +12565,Spacious 1bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +12566,5plots Of Land,Orchid Road Jakande Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12567,"Land On 3,507sqms", Ikate Lekki Lagos,₦,"877,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12568,4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12569,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12570,5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12571,Luxury 4 Bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12572,4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12573,Brand New 5 Bedroom Detached House With An Indoor Cinema,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12574,6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,1,6 beds,8 baths,8 Toilets,Chevron +12575,Luxury 5 Bedroom And Bq Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12576,New 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12577,4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12578,Luxury Serviced Duplex With Lounge & Pool,2nd Toll Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12579,Affordable Well Finished 4 Bedroom Semi Detached Duplex,"Agungi , Off Lekki Epe Expressway Agungi Lekki Lagos",₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +12580,5 Bedroom Semi Detached Duplex,"Lekki 2nd Tollgate, Lagos , Nigeria Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12581,Land,Lekki Expressway Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikota +12582,4 Bedroom Fully Detached Duplex With A Bq.,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12583,Lovely 4bedroom Semi Detaced House,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12584,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12585,Luxury 2 Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +12586,5 Bedroom Fully Detached Duplex,"2mins Drive From 2nd Toll Gate,lekki. Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12587,865sqms Of Land,Off Omirere Johnson Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12588,Well Kitted 2bedroom Apartment,Lekki Phase 1 Ikate Lekki Lagos,₦,"62,000,000",0,1,1,2 beds,2 baths,3 Toilets,Ikate +12589,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +12590,Executive 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +12591,Newly Built 11 Unit Of 4bedroom,Ikota Estate By Cluster One Road Off Megamond Road Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12592,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12593,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12594,"Land Measuring 1,100sqms For Sale In Sybril Iroche Street, Lekki",Sybril Iroche Street Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12595,4 Bedroom Terrace Duplex,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12596,Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,0,1,4 beds,5 baths,6 Toilets,Osapa London +12597,5 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12598,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12599,3bedroom Flat,Lekki Phase 1 Ikate Lekki Lagos,₦,"63,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +12600,5 Bedroom Fully Detached Duplex Ikota Lekki,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12601,Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +12602,Luxury 4 Unit Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12603,4 Bedroom Semi Detached Duplex At Romax Homes Vgc,Vgc Vgc Lekki Lagos,₦,"60,000,000/day",1,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +12604,Luxury 4 Bedroom Terrace Duplex,Z Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12605,300sqm Of Land At Corner Piece,Ilasan Lekki Lagos,₦,"5,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12606,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +12607,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12608,4 Bedroom Apartment,Abiola Court Elegusi Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12609,"A Nicely Built Contemporary 5 Bedroom Fully Detached Duplex, Fully Fitted With Bq.",Well Secured And Serene Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +12610,Well Built 5 Bedroom Semi Detached Duplex In A Serene Neighbourhood,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12611,5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12612,Land Measuring 679sqm With C Of O In An Estate,Benflow Estate Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12613,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12614,Newly Built 4 Bedroom Semi Detached With Bq In A Serene Enviroment,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ologolo +12615,Brand New 5 Bedroom Detached House,Lekki County Home Estate Ikota Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12616,3100sqms Land, Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12617,Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +12618,Newly Built 5 Bedroom Duplex Houses With Bq And Swimming Pool For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +12619,4 Bedroom Terraced Duplex,By Chevron Tollgate. Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12620,Luxury Brand New 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12621,Executive 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikota +12622,Tastefully Finish 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +12623,"For Sale!!! A Fantastic Luxury Ensuites Modern Fully Detached 5bd Duplex With Bq @ Ikota, Lekki, Lagos.","Ikota, Lekki Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12624,Newly Built 4 Bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12625,Super Spacious Decently Built 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12626,For Sale 4 Bedroom Terrace Duplex In Orchid Lekki Lagos,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"47,500,000/day",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12627,"2, 3 & 4 Bedroom Flat",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +12628,Residential Land On 100 Plot In A Secured Estate,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +12629,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12630,Newly Built 4 Bedroom Fully Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12631,Land,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12632,Brand New Fully Detached 4bedrooms Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +12633,15 Plots Of Land,Opposite Enyo Filling Station Orchid Road. Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12634,Luxury Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12635,Luxury 5 Bedroom Detached Duplex With Swimming Pool And A Rooftop Terrace,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12636,New 4bedrooms Semi Detached Duplex In Lekki County Ikota Villa,Lekki County Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +12637,5hectares Of Land,Jv At Mobile Road Lekki Scheme 2 Lekki Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +12638,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +12639,"Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevron, Off Orchid",Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12640,Standard 2 Units Of 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,5 baths,5 Toilets,Lekki Phase 1 +12641,3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +12642,2 Units Of 4 Bedroom Fully Detached Duplexes With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +12643,Newly Built 4 Bedroom Terrace With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12644,Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12645,4 Plots Of Land,Osapa London Lekki Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12646,Top Notch Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12647,Brand New 4 Bedroom Semi Detached House For Sale In Ologolo,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12648,For Sale 5 Bedroom Fully Detached Duplex With Bq,Jakande Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +12649,4 Numbers Of 3 Bedroom Flat + Bqs In A Gated Estate,"Vgc Estate, Lekki, Lagos. Vgc Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +12650,2 Bedroom Blocks Of Flat Which Can Be Used As Short Let.,Nice Environment. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +12651,A 5bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12652,4 Bedroom Terrace Duplex,Lekki County Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12653,Luxury Brand New 9 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12654,5 Bedroom Semi Detached Houses With Bqs,"Adebayo Doherty Road, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +12655,Payment Plan 4bedrooms Semi Detached Duplex In Ikota Lekki,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12656,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +12657,525sqm Land At Seagate Estate With Consent,Seagate Estate Off Kusenla Road Ikate Lekki Lagos,₦,"75,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12658,Brand New 3 Bedroom Flat,W Idado Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +12659,Contemporary 4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +12660,5 Bedroom Detached Duplex + Swimming Pool And Penthouse,Chevron Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +12661,Brand New 2 Bedrooms Apartments,Orchid Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +12662,Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12663,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12664,Affordable Luxury Detached Duplexes,Chevron Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12665,2 Bedroom Flat,Abraham Adesanya Is Ajah Lekki Lagos Lekki Lagos,₦,"23,000,000/day",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +12666,5 Bedroom Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12667,An Executive 4bedroom Detached Duplex @ Osapa,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Osapa London +12668,Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12669,New 4 Bedrooms Semi Detached Duplex,Lekki Palm Estate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +12670,Super Quality Unconventional 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +12671,Superbly Finished Fully Automated 5 Bedroom Fully Detached Duplex,Lekki Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +12672,4 Bedroom Contemporary Duplex, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12673,Executive 5bedroom Mansion With Bq Swimming Pool And Gym On 550sqm,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"390,000,000",1,0,1,5 beds,8 baths,7 Toilets,Lekki Phase 1 +12674,Brand New 5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12675,Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12676,New Luxury 4bedroom Townhouse With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +12677,Beautifully Finished 5 Bedrooms Fully Detached House,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +12678,Newly Built 3 Bedroom Flat With Luxury Facilities,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12679,Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"10,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12680,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12681,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +12682,Brand New Luxury 5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12683,Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +12684,6 Units Of 3 Bedroom Luxury Apartments,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +12685,"Own 2, 3,& 4 Bedroom Apartments At Orange Island Lekki",Orange Island Lekki Lagos,₦,"200,000,000/year",1,0,0,4 beds,4 baths,4 Toilets,Other Lekki +12686,For Sale 4 Bedroom Semi Detached Duplex With Bq At Signature Villas Ikota Lekki Lagos,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12687,A Luxury 5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +12688,3bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +12689,Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +12690,4 Bedroom Duplex,Beside Oral Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12691,Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +12692,Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12693,3 Bedroom Terrace Duplex,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +12694,New Luxury 4bedroom Terrace Duplex With Swimming Pool And Gym,Ikate Lekki Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +12695,Shop Space,Z Vgc Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +12696,A Fantastic 2bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +12697,Newly Built 5 Bedroom Detached Duplex In A Serene Neighbourhood,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12698,5000sqm Of Dry Land At Ilasan Lekki With C Of O,Ilasan Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12699,Luxury 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12700,Luxury Executive 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikota +12701,Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +12702,"8 No Of 3 Bedroom, 6 No Of 1 Bedroom And 2 No Of 4 Bedroom",Lekki Lagos,₦,"1,500,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Lekki +12703,Off Plan 5 Bedroom Detached Duplex,Off Durosimi Eti Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12704,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +12705,Well Finished 3 Bedroom Terrace Duplex,"Lekki Garden Phase, 5 Ajah Lekki Phase 1 Lekki Lagos",₦,"34,000,000",0,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12706,9 Units Of 3 Bedroom Apartment,D Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12707,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12708,New Furnished 5 Bedrooms Detached Duplex In Victory Park Estate Osapa,Victory Park Eatate Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +12709,4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +12710,2 Bedroom Apartment,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +12711,Premium Quality 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12712,New Luxury 4bedroom Semi Detached Duplex,Ikate Lekki Beside Nixon Town Estate Ikate Lekki Lagos,₦,"195,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikate +12713,593sqm Of Land Sand Filled,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12714,Brand New 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12715,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +12716,1000sqm Of Land,Z Chevron Lekki Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +12717,Brand New 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12718,Plots Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12719,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12720,Executive Fully Furnished Service 2 Bedroom Apartment,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,3 baths,0 Toilets,Ikota +12721,9 Plots Of Land,Bogije Lekki Lagos Lekki Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12722,Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +12723,4 Bedroom Terrace House,Lekki Right Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12724,Contemporary Fully Detached 5bedrooms Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12725,4 Bedroom Townhouse,Off Durusimi Etti Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12726,Brand New 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12727,Spacious Decently Finished 5 Fully Detached Duplex With Swimming Pool I,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +12728,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12729,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12730,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12731,5 Bedroom Detached House With Excellent Facilities,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12732,4 Bedroom Terrence Duplex With Laundry Room And Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +12733,Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +12734,Luxury Brand New 5 Bedroom Detached House With A Maid's Room,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12735,An Executive 4 Bedroom Semi Detached Duplex,Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12736,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +12737,Luxury 4 Bedroom Terrace Duplex With A Room Bq For Sale In Lekki Phase 1,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12738,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +12739,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +12740,Executive Luxury 5 Bedroom Semi Detached Duplex With 3 Siting Rooms And Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +12741,Brand New 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12742,6 Bed Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +12743,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,2nd Toll Gate Lekki Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +12744,"Studio, 2, 3 & 4 Bedroom Flat",Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"81,479,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +12745,Newly Bulit 5bedroom Luxury Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12746,New Luxury 4bedroom Townhouse With Self Compound,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +12747,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12748,Serviced 4bedroom Terrace Duplex With Payment Plan,Idado Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12749,4bedroom Fully Detached House,Elegushi Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +12750,Brand New 3bedrooms Aparment,Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +12751,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12752,Luxurious 5 Bedroom Fully Detached Home With Aesthetics And Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +12753,Brand New 3 Bedrooms Terraced And 4 Bedrooms Semi Detached Duplex,Vgc Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +12754,4 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12755,Brand New 5 Bedroom Detached House With A Room Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +12756,Serviced 4 Bedroom Terrace Duplex With Pool And Gym,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +12757,Luxury 4units Of 5bedroom Duplexes,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +12758,Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +12759,Luxury 4 Bedroom Semi Detached With One Room Bq For Sale In Ologolo,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +12760,New Luxury 5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,7 baths,7 Toilets,Chevron +12761,2 Bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +12762,700sqm Of Sand Filled Land,Orchid Road Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12763,Massive 4 Bedroom Semi Detached Duplex With Bq,Nice Environment Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12764,4 Bedroom Semi Detached Duplexe For Mixed Use,Osapa London Lekki Lagos,₦,"6,000,000",1,1,0,4 beds,4 baths,1 Toilets,Osapa London +12765,A Luxury 2 Bedroom Flat,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +12766,900sqm Of Land,Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12767,Brand New Fully Detached 5bedroom With Modern Architecture,Lekki Phase 1 Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12768,Well Built 4 Bedrooms Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +12769,Serviced 5 Bedroom Terraced Duplex With Bq,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12770,2 Bedroom Flat,Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +12771,For Sale 6 Units Of Finished 5 Bedroom Fully Detached Duplex With Bq At Ikate Lekki,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +12772,Tastefully Built Contemporary 5 Bedroom Fully Detached Duplex.,Beautiful Environment Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,8 Toilets,Lekki Phase 1 +12773,Modern 4bedroom Fully Detached Duplex In 2nd Toll Gate Lekki,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +12774,Executive 2bedroom Terrace Duplex In A Gated Estate,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths, Toilets,Lekki Phase 1 +12775,Brand New 4 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"80,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12776,Brand New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12777,Brand New 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +12778,Contemporary 4 Bedroom Fully Detached Duplex.,Serene Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12779,Luxury 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12780,"Brand New Fully Furnished 5 Bedroom Detached Duplex With One Room Bq For Sale In Pinnock Estate, Osapa London.",Osapa London Lekki Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +12781,5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,5 Toilets,Ikota +12782,Newly Built Value Centric 4 Bedrooms Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +12783,Executive Luxury 4bedroom Fully Detached Duplex With Roomself Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +12784,Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12785,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +12786,Brand New 4 Bedroom Terrace Duplex For Sale In Ikate.,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12787,"12,000sqm Water Front Mixed Use Land",Lekki Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12788,5 Bed Fully Detached Duplex With Pent House And Swimming Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +12789,2 Units Of 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +12790,Fully Service 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +12791,New Luxury 5bedroom Detached Duplex With Bq,V G C Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets,Victoria Garden City +12792,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +12793,Finished 5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +12794,5 Bedroom Detached House,Megamond Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12795,Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +12796,5 Bedroom Detached House With Swimming Pool For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12797,4 Bedroom Maisonette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +12798,4 Bedroom Fully Detached Duplex With Bq At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +12799,Luxury 5 Bedroom Detached House,Megamound Estate Chevron Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12800,Tastefully Finished Contemporary 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +12801,Massive 4 Bedroom Fully Detached Duplex With Bq,Lekki Conservative Road 2 Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12802,Luxury Brand New 5 Bedroom Semi Detached House With A Room Staff Quarter, Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12803,A Plot Of Land Measuring 730sqm At White Sand Estate,Ologolo Ologolo Lekki Lagos,₦,"80,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12804,Luxury 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12805,Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12806,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +12807,Corner Piece Plot Measuring 4200sqms For Sale In Lekki Epe Expressway,Lekki Epe Expressway Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12808,5 Bedroom Fully Detached Smart House With Cinema House & Swimming Pool,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12809,"Helium Apartment: 1, 2, 3 Apartment At Gracefield Estate Chevron Drive Lekki",. Chevron Lekki Lagos,$,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +12810,Massive 5 Bedroom Fully Detached House With 2 Room Staff Quarters, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12811,Tastefully Built 6 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,7 Toilets,Ikate +12812,Fully Automated 5 Bedroom Detached Duplex,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +12813,6 Units Of Newly Renovated 4 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +12814,Executive Luxury 2bedroom Flat Apartment,Agungi Lekki Agungi Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,3 Toilets,Agungi +12815,2 Plots Of Land In A Fast Developing Area,Ikota Gra Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12816,Luxury 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12817,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +12818,New Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +12819,"New 1 Bedroom, 2bedrooms And 3bedrooms","Alpha Beach, Chevron Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +12820,5 Bedroom Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +12821,A Standard 4bedroom Terrace + Maids Room,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikota +12822,3 Bedroom Fully Detached Bungalow With A Pent House With Bq,Abijo Gra Lekki Lagos,₦,"35,000,000/day",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +12823,A Plot Measuring 700sqm,Off Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +12824,3 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +12825,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12826,5 Bedroom Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12827,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12828,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12829,2 Units Of 4 Bedroom Semi Detached Duplex House,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12830,Massive Commercial Property,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +12831,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12832,Fully Automated 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +12833,Beautifully Built 5bedroom Semi Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12834,Newly Built 4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12835,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +12836,Newly Built 5 Bedroom Fully Detached Duplex With Bq At Chevron Lekki,Chevron Drive Lekki Chevron Lekki Lagos,₦,"115,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Chevron +12837,Luxury 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12838,Fully Serviced And Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12839,A Standard 2 Units Of 5 Bedroom Fully Duplex,Chevron Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +12840,New Luxury 5bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +12841,Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets,Agungi +12842,Executive Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +12843,New Luxury 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +12844,Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +12845,Luxury 5 Bedroom Detached Duplex For Sale In Chevron,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12846,3 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"41,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikota +12847,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12848,Beautifully Built 4 Bedroom Fully Detached Duplex With One Room Bq For Sale In Chevron.,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12849,Massive 4bedroom Duplex On A Large Land,Off Kusenla Road Inside An Estate Ikate Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12850,Luxury 5 Bedroom Detached House With 2 Room Staff Quarters For Sale In Victory Park Estate Osapa,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +12851,Contemporary 4 Bedrooms Fully Detached Duplex With Bq,Lekki Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +12852,Brand New 5 Bedrooms Fully Detached Duplex With Bq Lekki 1,In An Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +12853,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12854,Contemporary Designed 5 Bedroom Semi Detached Duplex With Swimming Pool .,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +12855,5 Bedroom Fully Detached Duplex With Bq In A Gated Estate,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12856,Land,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12857,Brand New 4 Bedroom Detached Duplex,S Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12858,4 Plots Of Sand Filled Land,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12859,Luxury 6units Of 4bedroom Terrace And 6units Of 2bedroom On 3150sqm,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12860,Serviced 5 Bedroom Semi Detached Duplex With Bq,K Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12861,4 Bedroom Terrace Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12862,Brand New 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12863,Excellent 5 Bedroom Detached With A Bq,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12864,3 Bedroom Semi Detached Duplex With Bq,Abijo Gra Lekki Lagos,₦,"36,000,000/day",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +12865,Tastefully Furnished 4 Bedroom Duplex With 20kva Generator,S Chevron Lekki Lagos,₦,"143,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12866,Luxury 3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12867,A Lovely 4bedroom Semi Detached,Agungi Lekki Lagos,₦,"83,000,000",0,0,0,4 beds, baths, Toilets,Agungi +12868,Newly Built 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12869,Brand New 5 Bedroom Detached House Within A Secured Estate Is Now For Sale In Megmound Estate Ikota Lekki,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12870,Luxury 5 Bedroom Detached House With 2 Room Bq,D Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12871,"Brand New Luxury 5 Bedroom Detached Duplex For Sale In Lafiaj,lekki Lagos.",Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12872,Contemporary 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12873,2750sqm Of Land With C Of O,Agungi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +12874,5 Bedroom Detached House,Megamond Estate Ikota Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +12875,Massive 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12876,"Spacious Decently Finished 5 Bed Fully Detached Duplex In Chevron, Lekki",Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +12877,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +12878,4 Bedroom Semi Detached Duplex With 24hrs Electricity,By 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +12879,Brand New 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12880,"Brand New 3 Finished Bedroom Apartment With Swimming Pool, Interlocked Floor , Jacuzzi , Gym Etc At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +12881,4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"47,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikota +12882,7 Bedroom Detached Duplex With 2 Kitchen,Ikota Villa Estate Ikota Lekki Lagos,₦,"145,000,000",0,1,0,7 beds,7 baths,8 Toilets,Ikota +12883,Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +12884,Contemporary Designed 4 Bedroom Detatched Duplex With Bq,Nice Environment Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +12885,4 Bedroom Semi Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12886,4 Bedroom Semi Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12887,4 Bedroom Semi Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12888,A Brand New 3 Bedroom Terrace With Bq,Osapa Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +12889,4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12890,5 Bedroom Fully Detached Duplex,Serene Environment Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12891,A Executive 3bedroom Semi Detachedduplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +12892,Luxury 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +12893,A Massive Petrol Filling Station,Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12894,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12895,530sqm Of Land,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +12896,5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12897,A Standard 3bedroom Semi Detached,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12898,A Fantastic 3bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets,Ikate +12899,Newly Built 5 Bedroom Terrace Duplex,Lekki Orchid Road Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +12900,Luxury Built 4 Bedroom Semi Detached Duplex House With A Room Boys Quarters At Lekki,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12901,Brand New 5bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12902,4 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +12903,Grandeur Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000/year",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +12904,A Master Class 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +12905,Serviced 4 Bedrooms Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +12906,Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +12907,New Luxury Executive 5bedroom Detached Duplex With 2rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 1 +12908,Fully Serviced 2 Bedroom Apartment,"Salem, Ikate Lekki. Ikate Lekki Lagos",₦,"47,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +12909,Brand New 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12910,Newly Completed 4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +12911,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12912,Luxury And Spacious 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12913,Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12914,Brand New 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12915,Luxury And Spacious 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12916,Luxury 2bedroom Flat,Lekki Phase 1 Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +12917,Excellent 2bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +12918,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +12919,4bedroom Maisonette Detached Duplex,Lekki Phase 1 Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +12920,Finished 5bedroom Fully Dateched Duplex,Osapa London Lekki Lagos,₦,"130,000,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +12921,Fully Serviced 2bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +12922,Brand New 4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12923,Newly Built 5 Bedroom Home,Elegushi Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +12924,Brand New 5 Bedroom Detached,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +12925,4 Bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +12926,Brand New 5 Bedroom Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12927,New Executive 4bedroom Semi Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agungi +12928,4bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12929,Brand New Luxury 5 Detached House With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +12930,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"97,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12931,Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +12932,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12933,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12934,Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12935,Luxury 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12936,Block Of 14 Numbers Of Luxury Flats,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12937,400sqm Of Land With C Of O,Ikate Lagos Ikate Lekki Lagos,₦,"89,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12938,2 Bedroom Mini Flat,Lekki Chevron Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +12939,Spacious 5 Bedroom Detached Duplex With Bq,Off Providence Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12940,A Standard 4bedroom Massionnate,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +12941,Newly Built Well Furnished 8 Units Of 4 Bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12942,Newly 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12943,Brand New 5 Bedroom Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +12944,Lovely Built 3 Bedroom Terrace Duplex With Governors Consent,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +12945,Brand New 5 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12946,Luxury 5 Bed Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +12947,Shopping Complex In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +12948,4bedroom Semi Detached Duplex,"Ikate Elegushi , Lekki , Lagos Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +12949,4bedroom Fully Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12950,New Executive Luxury 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,1, beds, baths, Toilets,Ikota +12951,800sqm Of Land,Ikate Lagos Ikate Lekki Lagos,₦,"168,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +12952,A Contemporary And Luxuriously Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +12953,5 Bedroom Detached House,Providence Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12954,4 Bedroom Terrace Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +12955,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12956,4 Plots Of Land,Bogije Lekki Lagos Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +12957,A 4 Bedroom Standard Detached Duplex,Bucknor Jakande Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +12958,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +12959,Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12960,4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +12961,Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +12962,Luxury 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12963,Prime Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +12964,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12965,5 Bed Fully Detached Magnificent Edifice,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +12966,New Executive 5bedroom Fully Detached Duplex With Bq On 400sqm Land,Gate Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +12967,"5 Bedroom Fully Detached Duplex With Bq, On 2 Floors!",Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +12968,Luxury 5 Bedroom Detached Duplex For Sale In Idado,Idado Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +12969,3 Bedroom Terrace Duplex With Bq,Abijo Gra Lekki Lagos,₦,"32,500,000/day",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +12970,Massive 3 Bedroom Semi Detached Duplex,X Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +12971,Lovely 3bedroom Apartment At Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +12972,Executive 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets,Victoria Garden City +12973,"Newly Built Block Of Studio, 1 Bedroom Apartment And 2 Bedroom Apartment With Swimming Pool , Fully Fitted Kitchen",Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +12974,Promo Offer!!! Rehoboth Park & Gardens,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +12975,Executive Luxury 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikota +12976,Standard Executive 5bedroom Duplex On 400sqm Land,Eleganza After Chevron Toll Gate Chevron Lekki Lagos,₦,"160,000,000",0,0,1,0 beds,0 baths,0 Toilets,Chevron +12977,Brand New Luxury 5 Bedroom Detached Duplex At Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +12978,"For Sales 5 Bedrooms Fully Detached, With Cinema And Swimming Pool .",Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +12979,Massive Fully Detached 5 Bedroom House With A Swimming Pool,Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +12980,Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +12981,Super Luxury 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +12982,Massive 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +12983,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +12984,4 Bedroom Terrace Duplex Service,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12985,Tastefully 4bedroom Duplex + Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +12986,Top Notch 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +12987,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +12988,4 Bedroom Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +12989,Contemporary Brand New 5 Bedroom Detached House With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +12990,5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +12991,4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12992,900sqm Of Land On A Major Road,Lekki Peninsula Phase 2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +12993,Absolutely Value Centric 3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +12994,A Top Notch 3bedroom Flat + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +12995,Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +12996,Luxury 4 Bedroom Semi Detached House,Chevron. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +12997,Luxury 3bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,4 baths,5 Toilets,Other Lekki +12998,Luxury 5units Of 3bedroom Apartment,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +12999,Lovely 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13000,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +13001,Newly Built 4 Units Of 4 Bedroom Townhouses,"Off Ozumba Mbadiwe, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"144,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13002,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13003,Furnished 3 Bedroom Mansionette,2nd Toll Gate Idado Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +13004,3 Bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +13005,Contemporary 5bedrooms Detached Duplex,Lekki Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +13006,4 And 3 Bedroom Terrace Duplexes At Romax Home Vgc,Vgc Vgc Lekki Lagos,₦,"40,000,000/day",1,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +13007,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13008,4 Bedroom Duplex,"Beside Oral Estate, Eleganza Oral Estate Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13009,5 Bedroom Semi Detached With Bq At Ikate Lekki,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +13010,20 Acres Of Bare Land For Joint Venture,Back Of Fidelity Bank (sugar Land Estate) Ikota Lekki Ikota Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets,Ikota +13011,4 Bedroom Town House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +13012,New 5 Bedrooms Fully Detached Duplex Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13013,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"14,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +13014,Newly Built 4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13015,Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13016,3bedrooms Flat At Oral Estate Lekki,Oral Estate Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets,Other Lekki +13017,Newly Built 4 Bedroom Detached Duplex,"Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +13018,New Luxury 4bedroom Semi Detached Duplex In A Good Location,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets,Ikota +13019,Executive 4bedroom Duplex + Bq,Located In A Very And Secure Neighborhood Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13020,Serviced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +13021,An Executive 5 Bedroom Fully Detached Mansion, Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +13022,Executive Luxury 3bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,1,3 beds,5 baths,5 Toilets,Lekki Phase 1 +13023,New Luxury Furnished 3 Bedroom Apartment With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,5 baths,5 Toilets,Ikate +13024,A Lovely 4bedroom Terrace Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000/year",0,0,0,4 beds, baths, Toilets,Ikate +13025,Luxury Executive 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +13026,Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Boy's Quarter,2 Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13027,American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13028,Lovely Executive 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +13029,Tastefully 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +13030,Luxury 3 Bedroom Apartment With Excellent Facilities, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13031,Newly Built 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13032,"1,133sqms Land For Sale In Lekki Right",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13033,Luxury En Suites 4bedroom Semi Detached Duplex + Room Bq,Off Lekki Express Way Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13034,Luxury New 5 Bedroom Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +13035,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +13036,Brand New 3 Bedroom Flat,Orchid Road Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +13037,Nice Fully Detached 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +13038,Brand New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13039,Massive 4 Bedroom Detached House,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13040,Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13041,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13042,Brand New 3 Bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +13043,Fully Automated 5 Bedroom Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13044,A Standard 5 Bedroom Fully Detached Duplex House,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +13045,Resplendent 5bedroom Detached House + 2sitting Rooms & Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +13046,Newly 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13047,Newly Built 4 Bedroom Terrace Duplex For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13048,Serviced 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13049,Executive 5 Bedroom Fully Detached House With 2 Rooms Bq,Vgc Lekki Vgc Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,0 baths,0 Toilets,Victoria Garden City +13050,Mini Estate Of 9 Apartment 4bedroom Duplex With Bq Each On 4310sqm Land With Swimming Pool,Vgc Vgc Lekki Lagos,₦,"480,000,000",0,0,1,4 beds,6 baths,6 Toilets,Victoria Garden City +13051,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +13052,Tastefully Finished 3 Bedroom Flat,Directly Off Bisola Durosinmi Etti Street Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +13053,Fully Furnished 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"9,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13054,New Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13055,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0, beds, baths, Toilets,Osapa London +13056,2 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,500,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +13057,Luxurious 3 Units 5 Bedroom Detached Home.,Nice Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13058,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +13059,Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"7,000,000",1,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13060,Astonishing Luxury Contemporary 5 Bed Fully Detached Home With Pool,By Vgc Lekki Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +13061,Newly Built 4 Bedroom Terrace Duplex For Sale In Chevron.,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13062,Brand New 2 Bedroom Flat,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +13063,"Magnificent Built 5 Bedroom Fully Detached House With Swimming Pool, Study Room, Cinema Room And 2 Room Boys Quarters.",Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13064,Luxury 26 Room Hotel,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +13065,A Standard 4 Bedroom Terrace Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13066,Nicely Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13067,A Master Class 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +13068,Well Built And Designed Two Bedroom Lovely Block Of Flats,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +13069,Serviced 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13070,5 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13071,4 Bedroom Semi Detached Duplex For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13072,Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +13073,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13074,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13075,5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +13076,Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13077,Serviced 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +13078,Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +13079,Lovely 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +13080,Fully Service 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13081,Massive 3 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +13082,Perfectly Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13083,An Executive 5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +13084,2 And 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13085,Standard 5bedroom Terrace Duplex, Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13086,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13087,Newly Built 5 Bedrooms Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13088,2bedrooms Flat With Bq,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +13089,3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,2 baths,4 Toilets,Osapa London +13090,New 3bedrooms Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13091,4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13092,Supper Finished 4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +13093,Dryland Land Measuring 650sqm On Tarred Road Itedo Off Freedom Way Ikate,Itedo Off Freedom Way Lekki Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Ikate +13094,20 Units Of 4 Bedroom Terrace Duplexes,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +13095,3 Plots Of Land Very Dry Fenced And Gated,Ologolo Lekki Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +13096,3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13097,Newly Built And Fully Serviced 3 Bedroom Apartment With A Penthouse,Lekki Phase 1 Lekki Lagos,₦,"132,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13098,Smart 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +13099,Brand New 5 Bedroom Detached House For Sale Off Orchid Road Lekki Lagos.,Off Orchid Road Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13100,Spacious Contemporary 4 Bed Luxury Home With 2 Bqs,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +13101,3 Bedroom Flat In Fully Serviced Estate With Swimming Pool And Gym, Ikota Lekki Lagos,₦,"33,000,000/day",1,1,1,3 beds,3 baths,3 Toilets,Ikota +13102,Top Notch Brand New 4bedroom Semi Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13103,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,4 baths,6 Toilets,Agungi +13104,Newly Built 2 Bedroom Flats In Lekki 1,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13105,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +13106,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13107,New Serviced 2 Bedroom Apartment, Osapa London Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +13108,5 Bedroom Fully Detached Duplex Wit Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13109,New Super 5 Bedrooms Fully Detached Duplex With Pool In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13110,An Institutional Land Measuring 6000sqm,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13111,Newly Built 3 Bedroom Flat Apartment With Bq,Idado Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +13112,A Stunning 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13113,4 Bedroom Semi Detached Duplex (off Plan),Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13114,5 Bedroom Detached Duplex With Bq.,Ikota Lekki Ikota Lekki Lagos,₦,"140,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13115,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13116,Land Messing 1114sqm With 3bedrooms In Vgc,Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +13117,Super Luxury 5 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +13118,New Standard 5bedroom Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +13119,4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13120,Fully Furnished 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13121,Beautiful Very Spacious 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +13122,Contemporary Designed 5 Bedroom Detached Duplex With Gym,Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ologolo +13123,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13124,4 Bedroom Contemporary Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13125,Massive 5 Bedroom Detached House With A Room Bq,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13126,Brand New 5 Bedroom Detached Duplex For Rent In Orchid Road,Off Orchid Road Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13127,Brand New 4 Bedrooms Semi Detached Duplex With 2 Rooms Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13128,For Sale 4 Bedroom Terrace Duplex At Victoria Crest Orchid Rd Lekki,Orchid Rd Lekki Lagos Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +13129,Brand New 4 Bedroom Semi Detached Duplex Is Available For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13130,Beautifully Furnished 4bedroom Terrace Duplex,"Ikate,lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13131,4 Bedroom Detached House With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13132,Serviced 4bedrooms Terraced Duplex In Lekki Phase 1,Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13133,Brand New 4 Bedroom Detached With A Room Bq For Sale In Chevy View Estate.,Chevy View Estate Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13134,4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +13135,Beautifully Finished Fully Automated 5 Bedrooms Detached Duplex With Cinema And Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13136,3 Bedroom Semi Detached House Plus Bq,Abijo Gra Lekki Lagos,₦,"38,000,000",0,0,1,3 beds,4 baths,5 Toilets,Other Lekki +13137,New Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Gated Estate Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +13138,For Sale Brand New 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +13139,Brand New 2 Bedroom Flat For Sale In Idado,Idado Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +13140,Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,0 Toilets,Ologolo +13141,Brand New 2 Bedroom Flat,Ikota Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +13142,Spacious 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13143,A Standard 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13144,6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,6 Toilets,Osapa London +13145,2 Bedroom Lovely Apartment With Bq,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +13146,A Standard 4 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +13147,Newly Built 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13148,Newly 4 Bedroom Semi Detached Home,Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13149,Well Built 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13150,5 Bedroom Mansion With Swimming Pool At Lekki,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13151,"990sqms Land For Sale In Baajiki Close, Lekki",Baajiki Close Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13152,Contemporary 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13153,4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13154,6bedroom Contemporary Fully Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +13155,Newly Built 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13156,Fully Serviced 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +13157,Brand New Spacious 3 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +13158,Joint Venture Deal,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13159,Brand New 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +13160,Brand New 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13161,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13162,A Fantastic 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13163,A Luxury One Bedroom Apartment,Ikate Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13164,Serviced 4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13165,4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13166,A Sweet 5bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13167,Beautiful Spacious 5 Bedrooms Detached Duplex With Bq,Nice Environment Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13168,A Standard 5bedroom Fully Detached,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13169,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13170,Land,Conservation Road Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13171,5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +13172,Well Built 4bedroom Fully Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13173,5 Bedroom Fully Detached House,Serene Environment Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13174,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13175,Land,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13176,Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13177,Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +13178,A Modern Design 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13179,A Brand New 4 Bedroom Semi Detached Duplex,Off Elegushi Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13180,Land,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13181,Exquisitely Built 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13182,Corner Piece 1130sqms Lhr, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13183,Brand New Semi Detached House With Bq For At Lekki,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13184,5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13185,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13186,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13187,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13188,Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13189,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13190,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13191,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13192,Nicely Built 5 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikate +13193,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13194,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13195,Brand New 4 Bedroom Semi Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13196,Finished 5bedroom Fully Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13197,Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13198,Newly Built 4 Bedroom Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13199,Beautifully Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13200,1 & 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13201,Affordable 3 Bedroom Duplex With A Room Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +13202,Brand New 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +13203,Automated 5 Bedroom Fully Detached Duplex With Cinema And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13204,5 Bedroom Luxury Detached Duplex With A Pool,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13205,Well Built 3 Bedroom Apartment,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +13206,4 Bedroom Terrace Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13207,3 Bedroom Teraced Duplex,Off Admiralty Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"960,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +13208,A Standard 4bedroom + 2 Rooms Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,Chevron +13209,Newly Built 4 Bedroom Terrace Duplex With Bq In A Serviced Estate Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"95,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13210,Affordable Well Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +13211,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13212,"5 Bed Fully Detached Mansion With Private Elevator, Cinema",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13213,4 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13214,Excellent Built 5bedroom Luxury Detached Duplex All Ensuit + Bq,Ikota Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikota +13215,Spacious Decently Finished 5 Bedroom Fully Detached Duplex With Bq And Stamp Concrete Floor Etc At Chevron Lekki With Governors Consent,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +13216,Exceptionally Built 4 Bedrooms Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +13217,Lovely 10bedroom Detached House On 840sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13218,3 Floors Shop Space,Chevron Lekki Lagos,₦,"15,400,000",1,0,0,1 beds,1 baths,1 Toilets,Chevron +13219,Brand New Commercial Shop Spaces For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"28,400,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +13220,An Executive 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +13221,Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13222,Smart 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13223,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +13224,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13225,4 Bedroom Detached House,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +13226,Luxuriously Finished And Spacious 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13227,Brand New Luxury 5 Bedroom Detached,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13228,Newly Renovated 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13229,Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +13230,Luxurious 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13231,"Vacant Plot Of 1,800sqms For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13232,Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Right Lekki Phase 1,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13233,Serviced 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000/year",1,1,0,2 beds,2 baths,3 Toilets,Chevron +13234,Super 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +13235,20 Acres Of Land,Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"130,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +13236,Executive 5bedroom Detached House With 2room Service Quarter On 950sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,8 baths,8 Toilets,Lekki Phase 1 +13237,Contemporary 5 Bedroom Fully Detached Duplex With Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +13238,Fully Furnished 4 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,0 Toilets,Osapa London +13239,"For Sale 2 Units Of Luxury Detailed 5 Bedroom Fully Detached With Bq , Swimming Pool, Cinema , Soft Touch Switches Etc At Osapa London Lekki",Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +13240,Godmade Connect Court 5 Lekki: 4 Bedroom Maisonette,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,200,000/year",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13241,5 Bedroom Semi Detached Duplex With Bq And Miniflat,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13242,Brand New 4 Bedrooms Detached Duplex With 3rooms.bq 2nd Toll Gate Lekki,Chevron Side Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +13243,5 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13244,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +13245,Brand New 3 Bedroom Apartment With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13246,5 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13247,Newly Built Exclusive 4 Bedroom Terrace With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +13248,4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13249,Luxurious 5 Bedroom Fully Detached Home With Aesthetics And Bq,Chevron Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13250,Land On 1137sqms, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13251,A Plot Measuring 812sqm Behind Children Int Sch Itedo,Itedo Lekki Ph1 Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Ikate +13252,Luxury Executive 5bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +13253,Newly Built 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13254,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13255,Finished 4bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13256,Land,Seagate Estate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13257,Luxury 5 Bedroom Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13258,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13259,4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13260,New Luxury 4bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +13261,Magnificent Built 4 Bedroom Detached Duplex House With Bq At Lekki For Sale.,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13262,New Instalments Payment Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +13263,Mortgage Options Also Applicable!!! An Executive Luxury Ensuites 3bd Flat Tennanted Apartment,Off Lekki Express Way Ikate Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +13264,Luxury 4 Bedroom Terrace Duplex With 1 Room Bq,G Ikate Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13265,A Lovely 4 Bedroom Terrace Duplex,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +13266,Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13267,5 Bedroom Detached Duplex For Sale At Megamond Estate Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13268,3 And 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +13269,An Executive 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13270,Luxury Executive 2building Of 9flat 3bedroom With Bq Each On 1751sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,1,3 beds,5 baths,5 Toilets,Lekki Phase 1 +13271,New Fully Detached 4bedrooms Duplex In Lekki Right Phase 1,Lekki Right Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13272,Brand New 5 Bedroom Semi Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13273,Luxury 4 Bedroom Fully Detached House + One Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13274,Fully Furnished Detached 4bedrooms Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +13275,Astonishing 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13276,New 4bedrooms Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13277,Luxury 4 Bedroom Terrace Duplex For Sale Off Orchid Road,Off Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13278,Luxury 5 Bedroom Detached Duplex With Bq Enough Parking Space Of 8cars,Gated Estate Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,7 baths,6 Toilets,Chevron +13279,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13280,Luxury 6bedroom Detached Duplex With 3siting Room And Bq,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,1,6 beds,0 baths,0 Toilets,Victoria Garden City +13281,Massive Land,Abijo Gra Lekki Lagos,₦,"12,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13282,Newly Built 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +13283,Absolutely Stunning 3 Bed Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +13284,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +13285,4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agungi +13286,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +13287,4 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13288,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"3,000,000/year",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13289,Excellent And Spacious Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"36,000,000",1,0,0,1 beds,2 baths,2 Toilets,Lekki Phase 1 +13290,Ultra Luxury 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +13291,Lovely 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13292,"Brand New 4 Bedroom Semi Detached Duplex For Sale In Lafiaji, Orchid Road.",Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13293,4 Bedroom Duplex,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13294,Brand New Fully Furnished 5 Detached Duplex With One Room Bq,R Ikota Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +13295,Newly Built 4 Bedroom Luxury Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13296,662.286sqm Of Land,Ologolo Ologolo Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +13297,3 Bedroom Apartment, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +13298,4 Bedroom Semi Detached Duplexe,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13299,4 Bedroom Semi Detached Duplexe With Bq,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13300,3 Bedrooms Apartments,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +13301,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13302,4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"60,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13303,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities In Orchid,Orchid Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13304,Automated 5 Bedroom Fully Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13305,5plots Of Land,My Homes Ikota Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13306,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13307,5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +13308,9 Units Luxury Flat Of 3 Bedroom Flat With Bq Each On 1751 Sqm Of Land,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"710,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +13309,1100sqm Of Land,Fola Osibo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13310,Serviced 4bedrooms Semi Detached Duplex In Primewaters Garden 2 Ikate Lekki,Primewaters Garden 2 Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +13311,Newly Built 4 Bed Semi Detached With Bq And Security House,Chevy Veiw Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +13312,A Brand New 4/5bedroom Detached House All Ensuit + Guest Toilet,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +13313,6 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikota +13314,Ultimate Value 4 Bed Terrace Duplex Ikate,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +13315,Newly Built 4 Bedroom Semi Detached With Room Bq,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +13316,3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +13317,For Sale 700sqm Of Land Mixed Development With C Of O At Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13318,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13319,Brand New 4 Bedroom Semi Detached Duplex,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13320,State Of The Art 4 Bedrooms Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +13321,Brand New 4 Bedroom Terrace Duplex At Ikate Leki,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13322,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13323,Luxury 4bedrooms Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13324,Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Gated Estate Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,6 Toilets,Chevron +13325,Brand New 5 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13326,A Lovely 10 Unit 4bedroom Apartment+ Bq,"Admiralty Way, Nitel Bus/stop, Beside Studio 24 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13327,Brand New 5 Bedroom Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13328,Massive 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13329,Luxury New 5 Bedrooms Fully Detached Duplex With Swimming Pool In Chevron,Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +13330,Brand New 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13331,Brand New 4 Bedroom Detached House,Ikota Off Orchid Hotel Road Lekki Lagos Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13332,3 Bedroom Apartments With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13333,Contemporary Designed 5 Bedroom Detached House With Swimming Pool,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +13334,Grandeur Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13335,Luxury And Furnished 2bedroom Flat,Located At Ikate By Lekki Phase 1 Second Gate By Second Round About Ikate Lekki Lagos,₦,"47,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +13336,A Standard 3 Bedroom Flat, Lekki Lagos,₦,"40,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13337,A Standard 2units Of 4bedroom,Oniru Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13338,"Super Spacious Ultra Modern 5 Bed Fully Detached Duplex With Pool By Vgc, Lekki",By Vgc Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +13339,5 Bedroom Semi Detached Dulpex,Pinnock Estate Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13340,Elegantly Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +13341,Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +13342,5 Bedroom Fully Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13343,Luxury 4 Bedroom Semi Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13344,Luxury 3 Bedroom Flat With A Room Staff Quarters,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +13345,Luxuriously Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +13346,5 Bedroom Fully Detached Duplex With Bq With Governors Consent,Ologolo Ologolo Lekki Lagos,₦,"87,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Ologolo +13347,Newly Built Luxury 5/4bedroom Detached Duplex Each With 1room Bq,Chevyview Estate Chevron Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +13348,Luxury 5bedroom Detached House With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13349,Newly Built 5 Bedroom Terrace Duplex, Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +13350,4 Bedroom Detached Duplex,Chevron Alternative Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13351,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13352,"5bedroom Fully Detached Duplex With Modern Architecture,cinema,pool,bq",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13353,Brand New 5 Bedroom Detached Duplex With One Room Bq For Sale In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13354,2 Bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +13355,Executive Luxury 6 Flat Of 3bedroom With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13356,Luxury 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13357,Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13358,12units Of 2bedroom And 2units Of 4bedroom Apartment,Lekki Phase 1 Chevron Lekki Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13359,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +13360,3 Bedroom Terrace Apartment,Romax Homes Phase 2 Vgc Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Victoria Garden City +13361,Finished 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13362,Fully Service 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13363,Contemporary 5bedrooms Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +13364,Newly Built 4 Bedroom Detached Duplex With A Maid’s Room/bq,Cowrie Creek Lng Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +13365,Contemporary Designed 5 Bedroom Detached House With A Room Bq,Jakande Lekki Lagos,₦,"300,000,000",1,0,0,4 beds,5 baths,6 Toilets,Other Lekki +13366,Luxury 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +13367,5.5 Hectares Of Land,Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +13368,6 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +13369,Luxury 5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13370,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13371,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13372,Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13373,Luxury 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13374,A Contemporary 5bedrooms Detached Duplex All Ensuit + Bq,Ikota Lekki Lagos,₦,"165,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +13375,Commercial 14 Room Detached House For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +13376,"Brand New 5 Bedroom Detached House With A Beautiful Ambience For Sale In Lekki Phase , Lekki Right",Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13377,4 Bedroom Serviced House,Admiralty Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13378,Splendid Contemporary 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +13379,A Solid 5bedroom Detached Duplex All En Suit + Bq,Carlton Gate Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +13380,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +13381,Brand New 4bedrooms Aparment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +13382,5 Bedrooms Fully Detached Duplex With Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +13383,4 Bedroom Fully Detached Masterpiece With Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +13384,An Executive Luxury Ensuites Modern & Newly Renovated 4bedroom Self Compound Terrace Duplex,Cluster 1 Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13385,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13386,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +13387,"Land Measuring 1,100sqms For Sale In Lekki Phase 1",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13388,Newly Built 4 Bedroom Semi Detached Duplex House With A Room Boy's Quarters,F Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +13389,Newly Built Terrace Duplex At Lekki,Lagos Business School Ikate Lekki Lagos,₦,"52,500,000/day",0,0,1,4 beds,5 baths,5 Toilets,Ikate +13390,Luxury 4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +13391,Decently Spaced 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +13392,5 Bedroom Detached Residence,Northern Foreshore Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13393,Lovely 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +13394,3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +13395,Luxury 5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13396,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13397,4 Bedroom Terrace,Lekki Phase 1 Chevron Lekki Lagos,₦,"6,500,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13398,Decently Finished Contemporary 5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13399,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13400,Luxury 3 Bedroom Flat,Z Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13401,New Luxury 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +13402,Luxury Wing 5bedroom Terrace Duplex In An Estate,Lvingspring Court 1 Orhif Hotel Rd Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13403,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikate +13404,Tastefully Designed And Finished Contemporary 5 Bedroom Fully Detached Duplex.,A Well Secured And Serene Estate. Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13405,"For Sale!!! An Excellent Luxury Immaculate Ensuites Modern 5bd Fully Detached Duplex + Rm Bq @ Ologolo, Lekki, Lagos.","Ologolo, Lekki. Lekki Lagos",₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +13406,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +13407,4 Bedroom Semi Detached Duplex With Bq,By Lekki Conservation Centre Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13408,3 Bedroom Flat,Bera Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +13409,Luxury Brand New 5 Bedroom Fully Detached House With A Room Bq For Sale In Pinnock Estate.,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13410,Newly Build 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +13411,Luxury 4 Bedroom Terrance Duplex With A Room Staff Quarter, Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13412,Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13413,Brand New 3 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +13414,Brand New 5 Bedroom Detached House With A Room Staff Quarter,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13415,A Lovely 4bedroom Fully Detached Duplex,U3 Estate By Marwa Lekki Phase 1 Lekki Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +13416,Magnificent Decently Finished 5 Bedrooms Fully Detached Duplex With Penthouse And Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13417,15 Plots Of Land Each Plot 600sqm,Orchid Road. After Buena Vista Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Ikota +13418,Waterfront 3 Bedroom Apartment With Swimming Pool Gym And Tennis,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13419,Brand New Luxury 5 Bedroom Semi Detached House,S Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13420,Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +13421,Affordable Luxury Apartments,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +13422,Serviced 4 Bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +13423,Massive Land On 1000sqm,Chalton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds,1 baths,1 Toilets,Chevron +13424,Super Luxury 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13425,4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13426,5 Bedroom Detached Duplex With Bq.,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13427,Brand New 4 Bedroom Semi Detached Duplex,"...,. Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13428,A Masterpiece 5bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13429,"Own A Home In Venice Estate, Lagos",Venice Estate Lekki Phase 1 Lekki Lagos,₦,"34,900,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13430,For Sale Massive Land Measuring 4000sqm With Access Road Through Freedom Road Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13431,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +13432,Luxury Fully Furnished 6 Bedroom Detached House,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +13433,A Standard 5bedroom Semi Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +13434,A Fantastic 2bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +13435,4 Bedrooms Terrace Plus Bq,Jakande Beside Nicon Town Estate Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13436,Brand New 4 Bedroom Terrace Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13437,5 Bedrooms Detached House With A Bq,Off Eletu Road Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13438,4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13439,3 Plots Land,Ikota Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13440,Land,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13441,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13442,4 Bedroom Semi Detached Duplex,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +13443,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13444,4 Bedroom Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13445,Luxury 4 Bedroom Terrace Duplex With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13446,Newly Built 5 Bedroom Fully Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13447,Lovely 4 Bedroom Semi Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13448,New Luxury 4bedroom Perfect Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +13449,3 Bedroom Terrace With Bq,Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +13450,45sqm Shop Outlet,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds,1 baths,1 Toilets,Lekki Phase 1 +13451,4 Bedroom Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +13452,"48 Room Hotel On Total Land Area Measuring 1,700sqm","By Chevron Roundabout, Lekki, Lagos. Chevron Lekki Lagos",₦,"650,000,000",1,0,1,0 beds,0 baths,0 Toilets,Chevron +13453,900sqms Land, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13454,4 Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +13455,Off Plan 2bedroom Flat,Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +13456,Brand New 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13457,3 Floors Shop Space,Lekki Phase 1 Chevron Lekki Lagos,₦,"16,100,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +13458,Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +13459,Luxury 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13460,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13461,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13462,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13463,Newly Built 4bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13464,Contemporary 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13465,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13466,5bedrooms Fully Detached Duplex With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13467,Luxury And Spacious 5 Bedroom Semi Detached Duplex With Bq,In A Gated Estate By Orchid Hotel. Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +13468,Newly Built 5 Bedroom Detached Duplex,Of Eletu Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13469,5 Bedroom Detached Duplex,Off Domino Pizza Agungi Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets,Agungi +13470,4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13471,Serviced 2 Bedroom Apartment,"Off Orchid Road, Lekki 2nd Tollgate . Lekki Lagos",₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +13472,Newly Built 4 Bedroom Home,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13473,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13474,A Well Maintained 4 Bedroom Semi Detached House With 2 Rooms Bq,Off Bisi Durusemietti Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,7 baths,7 Toilets,Lekki Phase 1 +13475,New Fully Serviced 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13476,4 Bedroom Semi Detached Duplex Plus 1 Bedroom Mini Flat,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13477,Brand New 1 Bedroom Mini Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +13478,530sqm Of Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13479,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +13480,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Lekki Scheme 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13481,4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13482,Land,Osapa London Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13483,5 Bed Magnificent Edifice With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Ikota +13484,"Contemporary Designed 5 Bedroom Detached Duplex With Fitted Kitchen, Swimming Pool",White Oak Estate Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ologolo +13485,A Large 5 Bedroom Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +13486,4 Bedroom Duplex,Beside Oral Estate Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13487,Vacant Plot Of 860sqms For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13488,For Sale 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13489,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13490,A Lovely 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13491,Hotel Of 59 Rooms,Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +13492,Brand New 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13493,Shop,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13494,Commercial 4bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +13495,New 5 Bedroom Fully Detached Duplex With Pool In Osapa,Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +13496,Luxury Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"430,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13497,Newly Built 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13498,Newly Built 5 Bedroom Duplex With 2 Open Terraces With Swimming Pool And Other Features,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +13499,Executive New 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +13500,20000sqm Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13501,Spacious 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13502,2 Bedrooms Terraced House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +13503,Brand New 4 Bedroom Semi Detached,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13504,5 Bedroom Detached House With A Room Staff Quater,Lekki Phase 1 Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13505,Shop,Ikota Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13506,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +13507,3 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,5 Toilets,Lekki Phase 2 +13508,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13509,Decently Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +13510,Tastefully Finished 4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +13511,Brand New 5 Bedroom Detached House,... Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +13512,Newly Built Standard 2 Bedroom Serviced Apartment,2nd Toll Gate Lekki Jakande Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +13513,5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13514,Brand New 5 Bedroom Detached House For Sale In Lekki Phase1 .,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13515,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13516,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13517,6 Plots Of Land,"Orchid Road, By Mega 1 Plaza Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13518,3 Bedroom Block Of Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +13519,Spacious Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +13520,A Standard 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13521,Newly Built 6 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Garden City +13522,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +13523,2 .018 Hectares Of Land For Joint Venture,Ikota Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13524,Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13525,Brand New Contemporary 5 Bedroom Detached Duplex.,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13526,500sqm Sand Filled Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13527,Brand New 4 Bedroom Detached House, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13528,Brand New 4 Bedroom Semi Detached Duplex For Rent In Agungi,Agungi Lekki Lagos,₦,"80,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Agungi +13529,500 Square Meter Of Fully Serviced Plot Of Land,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikota +13530,Brand New 4 Bedroom Terrace Duplex For Sale In Ikate Lekki Lagos.,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13531,Brand New 3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13532,Brand New 5 Bedroom Semi Detached Duplex,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13533,Luxury 5 Bedroom Detached Duplex For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Agungi +13534,A Massive 4bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"83,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +13535,3 Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +13536,Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13537,12 Bedroom Mansion On 13388sqm Land,Lekki Admiralty Way Lekki Lekki Phase 1 Lekki Lagos,₦,"490,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +13538,"Newly Built Ensuites Modern & Tastefully Finished 5bedrppm Fully Detached House + Room Bq,",Ikate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13539,Well Finished Contemporary 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +13540,Luxury 4 Bedroom Terrace With A Room Bq For Sale In Orchid,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13541,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13542,Luxury 5 Bedroom Detached Duplex.,Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13543,5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13544,Luxury 4 Bedroom Terrace Duplex With A Beautiful Ambience, Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13545,"Land Measuring 1,024sqms For Sale In Olukayode Jacob Street, Lekki",Olukayode Jacob Street Lekki Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13546,"Newly Built Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema And A Room Bq",Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13547,5 Bedroom Fully Detached House Plus Boys Quarters,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13548,Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13549,Brand New 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13550,4 Bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13551,4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13552,5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +13553,4bedroom Semi Detached Duplex With Furnitures In Vgc Lekki,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +13554,Four (4) Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +13555,Luxury New 4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +13556,A Residential Virgin Land Measures 900sqm,Sangotedo Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13557,Beautifully Finished 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13558,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +13559,Fully Furnished Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13560,Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Osapa London Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +13561,4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13562,Brand New 4bedroom Terrace Duplex Plus Bq,Lekky County Ikota Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13563,An Executive 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +13564,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13565,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13566,Executive Luxury 4bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +13567,Brand New 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13568,New Luxury Executive 4bedroom Fully Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"175,000,000",0,0,1,4 beds,6 baths,6 Toilets,Agungi +13569,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Orchid,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13570,2 Hectares Of Land,"Second Toll Gate, Lekki Phase 2 Lekki Phase 2 Lekki Lagos",₦,"120,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +13571,Luxury 2 Bedroom Detailed Apartment,Lekki Phase 1 Agungi Lekki Lagos,₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets,Agungi +13572,A Standard 3 Bedroom Flat, Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +13573,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13574,New 4 Bedrooms Semi Detached Duplex In Pinnock Beach Estate Osapa,Pinnock Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +13575,Uncompleted 12 Units Of 2 Bedroom Flats Plus 2 Units Of 4 Bedroom Penthouse,Chevyview Estate Chevron Drive Chevron Lekki Lagos,₦,"450,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +13576,Outstanding 5 Bed Fully Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +13577,Newly Built 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13578,Exclusive 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13579,Magnificent Contemporary 5 Bedroom Fully Detached Duplex For Let In Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13580,Brand New Superb 4 Bedroom Semi Detached Duplex With Bq,"Ologolo,lekki,lagos Ologolo Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +13581,New Luxury 3bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"38,000,000",0,1,1,3 beds,4 baths,4 Toilets,Ikota +13582,Classic 5bedrooms Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13583,5 Bedroom Duplex At Romax Homes,Vgc Vgc Lekki Lagos,₦,"75,000,000/day",1,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +13584,Tastefully Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13585,5bedroom Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +13586,Executive Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,6 baths,6 Toilets,Other Lekki +13587,Lovely 2 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +13588,4 Bedroom Detached House + 2 Rooms Bq In An Estate,"Vgc Estate, Lekki, Lagos. Vgc Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +13589,Contemporary 5 Bedroom Detached Duplex With Swimming,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13590,Brand New Fully Detached 5bedrooms Duplex In Osapa Lekki,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +13591,Newly Built 5 Bedrooms Detached Duplex With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13592,5 Bedroom Detached Duplex With Bq,R Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +13593,Massive Land For Sale At Sangotedo Monastry Road Lekki,Monastry Road Sangotedo Agungi Lekki Lagos,₦,"13,000,000/day",0,0,0, beds, baths, Toilets,Agungi +13594,Newly Executive Luxury 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13595,5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +13596,Standard 800sqm Land,Gated Estate Beside Nicon Town Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13597,Elegantly Designed 4 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13598,Luxury 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"170,000,000",1,0,1,5 beds,6 baths,7 Toilets,Other Lekki +13599,"1,444sqm Of Land Corner Piece",Van Daniel Estate Off Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13600,For Sale 300sqm Of Land Fenced And Gated At Ilasan At World Oil With Global C Of O Ilasan Lekki Lagos. 100% Dry Land,Ilasan Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +13601,Luxury 5bedroom Mansion With 2rooms Bq Swimming Pool And Gym On 650sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,8 baths,8 Toilets,Lekki Phase 1 +13602,Brand New Fully Serviced 3 Bedroom Flat, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +13603,3 Bedroom Penthouse With Bq And 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13604,Contemporary 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13605,Newly Built 2 And 3 Bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13606,4900sqm Of Land In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"980,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13607,Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13608,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +13609,3 Bedroom Semi Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13610,Smart Homes Of 4bedrooms Semi Detached Duplex Lekki,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +13611,Luxury 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13612,4 Bedroom Semi Detached Duplex + Bq,"Lekki, Lagos Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +13613,New 4bedrooms Terraced Duplex,R Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +13614,Spacious 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13615,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13616,4 Bedroom Semi Detached Duplex With Bq,Okota Lekki Ikota Lekki Lagos,₦,"61,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikota +13617,3 Plots Of Sand Filled Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13618,Beautifully Built 5 Bedroom Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13619,3bedroom Fully Serviced Apartment,Osapa London Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13620,New Luxury Executive 5 Bedroom Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +13621,4 Bedroom Semi Detached Duplex + Bq And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13622,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +13623,Finished 5bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,5 Toilets,Lekki Phase 2 +13624,5 Bedroom Duplex With Bq For Sale At Lekki In An Estate,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13625,Brand New 4 Bedroom Detached Duplex At Ikota Lekki,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13626,900sqm Of Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13627,An Executive Well Furnished 5bedroom Full Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"130,000,000/year",0,0,0,5 beds, baths, Toilets,Chevron +13628,A Standard 3bedroom Flat,Chevron Lekki Phase 1 Lekki Lagos,₦,"35,000,000/year",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +13629,Massive 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13630,Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13631,Brand New 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13632,2 Bedroom Maisionete,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000/day",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13633,Luxury Built 4 Bedroom Terrace Duplex,Z Lekki Phase 2 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13634,Super Spacious Ultra Modern 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets,Victoria Garden City +13635,A Standard 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +13636,Spacious Value Centric 2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ologolo +13637,Joint Venture,Off Gmabgbala Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13638,Tastefully Finished Well Spaced 4 Bed Terrace Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +13639,4 Bedroom Fully Detached House With 1 Room Bq In Lekki County Homes.,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13640,New Luxury 4bedroom Semi Detached Terrace Duplex With Bq And 5kva Inverter,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13641,"Contemporary Finished 5 Bedroom Detached Duplex, With A Room Boys Quarter And Swimming Pool",Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13642,Brand New 4 Bedroom Semi Detached With A Room Staff Quarter For Rent In Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13643,Newly Built 5 Bedrooms Fully Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13644,Well Finished 3bedroom Flat (ist Floor) With Inbuilt Boys Quarter,House On The Rock Road Ikate Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,5 Toilets,Ikate +13645,New 5 Bedrooms Fully Detached Duplex Chevron Toll Gate,Chevron Lekki Lagos,₦,"120,000,000",0,1,0, beds, baths, Toilets,Chevron +13646,Outstanding 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13647,4 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13648,Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +13649,5 Bedroom Terrace Duplex,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +13650,Luxury 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13651,Luxurious 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13652,A Luxury 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +13653,Spectacular 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13654,Fully Furnished 4bedroom Detached Duplex With Bq Swimming Pool,2nd Toll Gate Lekki Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +13655,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13656,A Piece Of Land,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13657,New Luxury Executive 3bedroom Semi Detached Terrace With Bq And Personal Compound,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Osapa London +13658,"Serviced 4bedroom Terrace Duplex With Swimming Pool ,gym And Football Court",S Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13659,5 Bedroom Detached Duplex + 2 Rooms Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +13660,4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13661,Executive Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,5 Toilets,Ikota +13662,Brand New 5bedroom Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +13663,A Standard Miniflat,Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds, baths, Toilets,Lekki Phase 1 +13664,Very Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13665,A Plot Of Land,Hitech Estate Beside Lagos Business School Lekki Phase 1 Lekki Lagos,₦,"40,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13666,Brand New 5 Bedroom Detached House With A Beautiful Neighbourhood For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13667,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13668,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +13669,Newly Built 3 Bedroom Apartment With Swimming Pool And Private Elevator,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +13670,Serviced 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13671,10000 Approximately Joint Venture Land,Animashaun Drive Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13672,A Tastefully Furnished 2 Bedroom Apartment With Luxury Facilities,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +13673,1 Bedroom Apartment,Lekki Ikota Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets,Ikota +13674,New Luxury 5bedroom Detached Duplex With Bq Swimming Pool,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets,Agungi +13675,A Standard 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +13676,Brand New 4 Bedroom Terrace Duplex With A Beautiful Ambience For Sale In Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +13677,Superb Elegantly Built 5 Bedrooms Duplex Home Lekki 1,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +13678,A Standard 4 Bedroom Duplex, Ilasan Lekki Lagos,₦,"80,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13679,Specious 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +13680,Beautiful Serviced 2 & 3 Bedrooms Fully Serviced Apartments,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +13681,New And Luxurious 4 Bedroom House,By Pinnacle Station Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +13682,Luxury 4 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"106,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13683,Furnished 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +13684,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +13685,Luxury 4bedroom Semi Detached With Bq,Orchid Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,7 Toilets,Chevron +13686,Luxury Serviced Fully Finished 2 Bedroom Apartment,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +13687,New Luxury 5bedroom Fully Detached Duplex With Bq,Idado Lekki Idado Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +13688,Brand New 5 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13689,Spacious 4 Bedroom Detached Duplex,Lekki 2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13690,Luxury 4 Bedroom Detached Duplex With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13691,A Standard 5bedroom Semi Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13692,Exquisitely Finished & Spacious 4 Bedroom Luxury Detached Duplex With Bq @ Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13693,5 Bedroom Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13694,Luxury 3 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +13695,Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13696,"1,2,3 Bedroom Contemporary Apartment",Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +13697,Massive 2 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,3 Toilets,Osapa London +13698,3 Bedroom Flat,Pinnock Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +13699,4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13700,4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13701,Brand New Luxury 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13702,Newly Built 4 Bedroom Terrace Duplex At Lekki Phase 1 With Governors Consent In An Estate,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13703,A 3 Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +13704,Brand New High Toned 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13705,4 Bedroom Fully Detached Duplex With Bq,Ikate Elegunshi Ikate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +13706,4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13707,Magnificent 5 Bedroom Fully Detached House With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13708,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13709,"New 3bedrooms , 2bedrooms And One Bedrooms Flats",Orchid Chevron Lekki Lagos,₦,"34,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +13710,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13711,Fully Serviced 2 Bedrooms Apartment,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +13712,A Fully Detached 5bedroom Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13713,Standard Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,5 baths,6 Toilets,Ikate +13714,Brand New 3 Bedroom Flat, Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +13715,"1,000sqms Land",Twin Lakes Estate Chevron Lekki Lagos,₦,"166,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +13716,Massive 5bedroom Duplex + Bq,Off Kusenla Road Inside A Mini Estate Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13717,Super Beautiful 4 Bedrooms Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +13718,Massive 5 Bedroom Detached House,Off Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13719,5 Bedroom Detached Duplex With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +13720,1 Bedroom Mini Flat,Idado Lekki Idado Lekki Lagos,₦,"35,000,000",0,1,1,1 beds,3 baths,2 Toilets,Other Lekki +13721,Nice Semi Detached 4bedrooms Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +13722,One Bedroom Studio Apartment,Mijl Residences Ikate Lekki Lagos,₦,"30,000,000/day",0,1,0,1 beds,1 baths,1 Toilets,Ikate +13723,Brand New 4 Bedroom Terrance Duplex With One Room Bq, Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13724,Luxury Executive 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +13725,100 Plots Of Land,Victoria Garden City Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +13726,New Spacious 5 & 4 Bedroom Fully Detached Duplex Plus A Room Bq Each,Chevy Veiw Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +13727,Blocks Of Luxury Flat,Chevy View Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13728,"1,134sqms Land For Sale In Ayo Adebanjo Close, Lekki",Ayo Adebanjo Close Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13729,"Top Notch Detailed Fully Serviced 4bedroom Terrace In Agungi, Lekki.",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,6 baths,6 Toilets,Agungi +13730,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +13731,Massive 5 Bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13732,Lovely Built 4 Bedroom Detached Duplex House With A Room Boys Quarters.,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13733,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"71,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13734,Tastefully Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13735,Beautiful 5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13736,Lovely 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13737,Well Finished 4 Bedroom Semi Detached,Alpha Estate Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13738,Fabulous 2bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +13739,4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +13740,Self Serviced 4 Bedroom Terrace Plus Bq,Nicon Town Estate . Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +13741,Newly Built 2 And 3 Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +13742,Brand New 5 Bedroom Detached Apartment,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13743,Brand New 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +13744,4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13745,Brand New Luxury 5 Detached House With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13746,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13747,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +13748,Properties, Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13749,Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13750,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13751,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +13752,New 4bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +13753,New Luxury Executive 5bedroom Fully Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +13754,Brand New 3 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +13755,Luxurious 5 Bedroom Detached Duplex With A Cinema + Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13756,5 Bedroom Semi Detached Luxury House,Off Eletu Road Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13757,A Fantastic 5bedroom Duplex,Silver Spring Estate Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +13758,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13759,4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13760,New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +13761,Luxury Waterfront 5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13762,A 4bedroom Semi Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13763,Brand New 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +13764,Modern 4 Bedroom Condominiums Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +13765,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13766,Luxury 5 Bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13767,A Standard 5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +13768,Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate In Osapa Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13769,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +13770,Brand New Commercial 100sqm Shop Space, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13771,"Land On 3,386sqms", Ikate Lekki Lagos,₦,"847,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13772,Land On 450sqms, Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13773,4 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13774,A Standard 3bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +13775,1 & 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +13776,Brand New 4bedroom Terraced House,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +13777,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13778,A 4 Bedroom Semi Detached House,A Very Nice Environment Ologolo Lekki Lagos,₦,"4,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +13779,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +13780,1350sqms Land, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13781,Lovely Built 4 Bedroom Duplex House With A Room Boys Quarters At Lekki,Lekki Phase 2 Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13782,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +13783,Newly Built 4 Bedroom Terrace Duplex With Bq At Lekki,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13784,Splendid Apartments,Idado Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Other Lekki +13785,Well Built And Spacious 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +13786,"Brand New 4 Units 5 Bedroom Semi Detached Duplex Plus A Room Bq,and An Ample Parking Space","Lekki Phase 1,right Side Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13787,2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,1,1,2 beds,4 baths,4 Toilets,Ikate +13788,4plots Of Land,Orchid Road Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13789,5 Bedroom Semi Detached Duplex With Bq,Ikate Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +13790,Fully Furnished 4 Bedroom Duplex With A Bq,Off Eletu Road Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +13791,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +13792,"4 Bedroom Semi Detached With 1room Bq,",Richmond Gate Estate Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13793,Brand New 5 Bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13794,5 Bedroom Terrace Duplex,Ochid Hotel Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13795,Luxury Furnished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13796,Luxury Furnished 5 Bedroom Detached House With A Private Pool And Gym,Ikate Lekki Lagos,₦,"600,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +13797,Clean Hotel Of 59 Rooms,Agungi Ajah Lagos Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +13798,Brand New 3 Bedroom Flat Within A Secured Estate,Megamound Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +13799,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +13800,Luxury 5 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13801,Land,Abijo Gra Lekki Lagos,₦,"21,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13802,New Luxury 5bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,7 baths,7 Toilets,Osapa London +13803,Brand New 4bedrooms Detached House With A Bq,Off Awkuzu Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13804,Dunvale Court V: 3 Bedroom Terrace,Orchid Hotel Road Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikota +13805,New Luxury Executive 5bedroom Detached Mansion With Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +13806,Massive Ground Floor Of 30sqm Shop Space,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +13807,Stunning Contemporary 5 Bed Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +13808,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13809,5bedrooms Spaciously Built Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +13810,2 Plots Of Land At Ocean Breeze Estate,Ologolo Ologolo Lekki Lagos,₦,"70,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +13811,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13812,"4 Bedrooms Terraces, Semi & Fully Detached Duplexes With Bqs",2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +13813,5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +13814,100 Plots Of Land,Vgc Lekki Lagos,₦,"6,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +13815,Luxurious Fully 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13816,Amazing Commercial Property,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13817,Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13818,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +13819,Decently Built 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +13820,Brand New 4 Bedroom Semi Detached Duplex For Sale In Lekki Right.,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13821,Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +13822,Top Notch Brand New 5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13823,Brand New 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13824,Luxury 5bedroom Duplex,Lekki Country Lekki Lagos,₦,"205,000,000",0,1,1,5 beds,7 baths,7 Toilets,Other Lekki +13825,New Automated Unconventional 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13826,Newly Built Luxury 3 Bedroom Flats With Bq + 24hrs Powered,"Atlantis 2, Ologolo Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +13827,Newly Built 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +13828,For Sale 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13829,Beautifully Built And Furnished 2 Bed Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets,Ikota +13830,3 Bedroom Semi Detached Duplex With Bq, Oral Estate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +13831,4 Bedroom Fully Detached With Bq,Orchid Rd Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13832,3 Bedroom Flat,Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +13833,Brand New 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +13834,5 Bedroom Contemporary Fully Detached Duplex + Bq,Lekki County Lekki Lagos Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +13835,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13836,Elegantly Designed 4 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13837,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,7 baths,6 Toilets,Agungi +13838,Decently Finished 2bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +13839,Distressed 4bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +13840,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +13841,New 4bedeoom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13842,5 Bedroom Detached Duplex,Megamond Estate Ikota Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13843,Luxury 4bedrooms Semi Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +13844,2 Units Of 4 Bedroom Semi Detached Duplex And 2 Units Of 3 Bedroom Semi Detached Duplexes With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13845,5 Bedroom Fully Detached Duplex With Pool,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13846,"4 Bedroom Semi Detached Duplex For Sale In Chevron, Off Orchid",Off Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +13847,Tastefully Finished 4bedroom Terrace Duplex,Creek Avenue Court Jakande Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +13848,Brand New 4 Bedroom Semi Detached House For Sale In Orchid,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13849,Half Plot Of Land Measuring 328sqm,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +13850,Finished 3 Bedroom Apartments With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +13851,New Luxury 5bedroom Detached With Swimming Pool And Cinema,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +13852,A Standard 4bedroom Duplex + 2bedroom(2),Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Ikota +13853,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,0 Toilets,Chevron +13854,New. 2bedroom Flat,Orchid Rd Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +13855,3 Bedroom Terrace Duplex,Agungi Ajiran Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +13856,Dryland Measuring 1200sqm At Itedo Market Off Freedom Way Lekki Ph1,Itedo Market Off Freedom Way Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13857,2 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +13858,Spacious 3br,Off Gbamgbala Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +13859,Newly Built 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13860,Brand New 4 Bedroom Fully Serviced Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13861,5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Chevron Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13862,"Vacant Plot Of 3,500sqms For Sale In Lekki Epe Expressway",Lekki Expressway Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13863,Newly Built 3 Bedroom Flats + Bq,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +13864,Luxury 2bedroom Flat. Good For Shortlet,Located Inside An Estate Off Kusenla Road Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +13865,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +13866,A Lovely 4bedroom Bungalow @ Lekki,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Ologolo +13867,3 Bedroom Flat,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +13868,A 5 Bedroom Detached House In A Gated Community,Awoyaya Area Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13869,Well Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,"Lekki, Lagos Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +13870,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +13871,4 Bedroom Duplex,Idado Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13872,Super Spacious 4 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +13873,New Luxury 2 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,1,2 beds,4 baths,4 Toilets,Lekki Phase 1 +13874,4 Bedroom Terraced Duplex,Silver Crest Estate Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13875,"Luxury 5 Bedroom Fully Detached Duplex For Sale In Osapa London , Lekki",Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13876,4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13877,4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13878,Exquisite 5 Bedroom Terrace Duplex For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +13879,Tastefully Built 5 Bedroom Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13880,4 Bedroom Luxury And Spacious Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13881,For Sale 1000sqm Of Land At Victory Park Estate Jakande Lekki Lagos,Jakande Lekki Lagos,₦,"175,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +13882,Tastefully Finished 4bedroom Semi Detached Duplex Plus Bq,Prime Water Garden Estate Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +13883,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +13884,Luxurious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13885,3 Bedroom Flat With Bq,Idado Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +13886,5 Bedroom Duplex With Bq,Dozek Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +13887,Elegant 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +13888,Serviced Plot Of Land Measuring 805sqm With Governors Consent,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13889,New Luxury 5bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,7 baths,6 Toilets,Osapa London +13890,Brand New 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +13891,A Waterfront Piece Of Land With 2000sqm Of Size,Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Lekki +13892,Brand New Spacious 2 Bedrooms Flat,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +13893,4 Bedroom Furnished Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +13894,Luxury 5 Bedroom Contemporary House,Pinnock Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13895,Brand New 4 Bedroom Semi Detached Duplex With One Room Bq For Sale In Pinnock Estate,Pinnock Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13896,Beautifully Built 6 Bedroom Fully Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +13897,2bedroom Luxury Penhouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13898,Brand New 4 Bedroom Terrace Duplex For Rent In Lekki County Homes Ikota Lagos,Ikota Lekki Lagos,₦,"65,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13899,Sleekly Built Contemporary 5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +13900,Brand New 5 Bedroom Fully Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13901,Brand New 4 Bedroom Terrace,S Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13902,Brand New 5 Bedrooms Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +13903,Brand New 5 Bedroom Detached Duplex,Northern Foreshore Chevron Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13904,Lavishly Finished Contemporary 5 Bedrooms Fully Detached Duplex With Pool In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13905,Newly Built 6 Bedroom Terrace Duplex,Off Eletu Bamidele Osapa London Lekki Lagos,₦,"76,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +13906,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13907,For Sale 500sqm Of Land,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +13908,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13909,Brand New Luxury 2 Units Of Fully Detached Duplex With A Clean Estate,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +13910,5 Bedroom Fully Detached Duplex With 2 Bedroom Bq In A Close,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13911,Gorgeous Superb 5 Bedroom Detached Duplex,E Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +13912,5bedroom Fully Detached Duplex,In A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13913,5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +13914,Fully Detached 3 Bedrooms Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +13915,Executive 4bedroom Duplex With Bq,Lekki Phase 1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +13916,32 Units Of Luxury Serviced 2 Bedroom Flats,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +13917,New Executive 4bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +13918,Brand New 5 Bedroom Detached Duplex,Z Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13919,Brand New 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13920,5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +13921,4 Bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +13922,Beautifully Built 4 Bedroom Terrace Duplex For Sale In Victoria Island.,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13923,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13924,4 Bedroom Pent House,Z Ikate Lekki Lagos,₦,"85,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13925,3 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +13926,Beautiful 4 Bedroom Semi Detached House,Megamound Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13927,New Units Of 2 And 3 Bedroom Apartments With Bq,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +13928,Brand New 5 Detached Duplex,E Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13929,New Luxury 4bedroom Fully Detached Duplex With Bq,Vgc Vgc Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,6 baths,6 Toilets,Victoria Garden City +13930,Two Bedroom Apartment In Lekki,"Ogombo Road, Abraham Adesanya Lekki Lagos",₦,"38,500,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +13931,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13932,Newly Design Built 5bedrooms Fully Detached Duplex In Ikota Estate,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +13933,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +13934,Contemporary 5 Bedrooms Fully Detached With Pool,Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13935,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +13936,Serviced 4 Bedroom Terraced Duplex House,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +13937,"Prime Plot Of Land Measuring 1,147sqms For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13938,4000 Sqm Of Land,"Province Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13939,2 Bedroom Flat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +13940,Luxury 5 Bedroom Detached Duplex Mansion,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +13941,5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13942,Luxury 3 Bedroom Apartment With Bq,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,3 beds,5 baths,4 Toilets,Lekki Phase 1 +13943,Luxury 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +13944,New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikota +13945,Mini Flat,Vgc Vgc Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +13946,Luxury 5 Bedroom Detached House With One Room Bq For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13947,4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13948,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",0,1,1,2 beds,3 baths,3 Toilets,Ikota +13949,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +13950,Luxury 4 Bedroom Terrace Duplex For Sale In Orchid Road Lekki 2nd Toll Gate,Orchid Road Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13951,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13952,Modern Fully Detached 5 Bedroom Duplex With Bq,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +13953,"Brand New 10 Units 4 Bedroom Semi Detached Duplex Plus A Room Bq,and An Ample Parking Space And The Title Of The Property Is Governors Consent","Ikota,lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13954,Buy 2 Plots Of Land At Grandeur Peninsula Estate,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"9,500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13955,Massive 2 Bedroom Flat,Ikate Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +13956,Brand New 4 Bedroom Semi Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13957,Luxury 4 Bedroom Fully Detached House, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13958,"For Sale!!! An Executive Brand Newly Built Ensuites Modern Luxury Serviced 4bd Terrace Duplex @ By Orchid Road, Lekki, Lagos.",Orchid Road Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13959,4 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +13960,Waterfront 12000sqm Land In The Heart Of Lekki Ph1,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13961,5bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +13962,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +13963,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +13964,4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +13965,Newly Built 4br Duplex,Cowrie Creek Lng Spa Road Nicon Town Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +13966,4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13967,4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +13968,"4 Bedroom Terrace Duplex With Swimming Pool, Gym, Football Cut",By 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +13969,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13970,New 4bedrooms Semi Detached Duplex With Bq In Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +13971,Super Spacious 5 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +13972,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +13973,Luxury 4 Bedroom Semi Detached Duplex With A Beautiful Ambience, Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +13974,Superbly Built 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +13975,Luxury 4 Bedroom Semi Detached Duplex For Sale At Chevron Alternative Route,Chevron Alternative Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13976,Luxury 5 Bedroom Fully Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13977,Spacious 3br,Off Gmabgala Street Ikate Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +13978,5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +13979,A Lovely Off Plan 5bedroom Detached &4bedoom,West Bridge Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +13980,Luxury New 5bedroom Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"125,000,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +13981,Furnished 5 Bedroom Detached Duplex With A Bq And Swimming Pool,Lekki Phase 1 Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +13982,Gorgeous 5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +13983,2550sqm Of Land (4 Plots) At Orchid Road Directly Facing Omega One Plaza Lekki With C Of O,Orchid Rd Lekki Lagos Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +13984,Spacious 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13985,Fully Furnished 5 Bedroom Detached House With Beautiful Furniture,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13986,Astonishing 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +13987,"7 Bedroom Fully Detached Mansion On 1,000sqm In A Lovely Estate","Nicon Town Estate, Lekki, Lagos. Nicon Town Lekki Lagos",₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +13988,Brand New And Fully Serviced 4 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +13989,Well Finished 5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +13990,2 Plots Of Land At Orchid Rd,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +13991,Contemporary 4 Semi Detached Duplex.,A Serene Environment. Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +13992,Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +13993,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +13994,Stunning Super Luxury 5 Bed Fully Detached Duplex With Pool,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +13995,Luxury 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase1.,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +13996,Decently Finished 5bedrroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +13997,4 Bedroom Terrace,Abiola Court Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +13998,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +13999,Newly Built 4 Bedroom Semi Detached Duplex With Bq,White Oak Estate Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ologolo +14000,Finished 5bedrooms Detached Duplex With S/:pool In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +14001,Executive 5bedroom Detached Duplex On 500sqm Land,Chevron Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,1, beds, baths, Toilets,Chevron +14002,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +14003,New Executive Luxury 4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +14004,Brand New Nicely Built 4bedrooms Detached Duplex Ikate,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +14005,A Luxury 5 Bedroom Fully Detached Duplex With A Bq And Penthouse,Nice Environment Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14006,A Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14007,Brand New Luxury 5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14008,4bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14009,Luxury 5 Bedroom Detached House With A Room Staff Quarter,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +14010,Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14011,Fully Detached 4 Bedroom Duplex With 2 Rooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14012,Fully Furnished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +14013,Massive 5bedroom Duplex+ Bq,In A Very Secure Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14014,Lovely 1 Bedroom Mini Flat,S Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Agungi +14015,Affordable 2 Bedroom Apartment With Flexible Payment Plan,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +14016,4 Bedroom Detached Duplex,"Chevy View Estate, Chevron, Lekki Chevron Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14017,Nicely Built 5 Bedroom Fully Detached Duplex.,Nice Environment Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14018,Newly Built 6 Bedroom Fully Detached House With 2 Room Boys Quarters,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +14019,4 Plots Of Land,Ilasan Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14020,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"70,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Chevron +14021,Lovely 5bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14022,4 Bedroom Terrace Duplex In A Serene Secured Estate Environment,Lekki Phase 1 Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14023,Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +14024,3 Bedroom Flat, Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +14025,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14026,Well Designed 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14027,Massive 5bedroom Duplex With Bq + Swimming Pool,Located Inside Ikota G R A Estate Behind Megachicken Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +14028,Automated Unconventional 5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +14029,Brand New 2 Bedrooms Massonniatte Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +14030,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +14031,4 Bedroom Terrace Duplex Selling At Offplan With A Flexible Payment Plan,By 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14032,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14033,New Luxury 5bedroom Detached Duplex Off Admiralty Way,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +14034,For Sale 5 Bedroom Fully Detached Duplex With Swimming Pool,Megamond Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +14035,Luxurious 5 Bedroom Contemporary Designed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14036,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14037,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14038,Brand New 7 Bedrooms Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",1,1,0,7 beds,8 baths,8 Toilets,Other Lekki +14039,Massive 5bedroom Duplex Fully Furnished + Pool Etc..,Located At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +14040,6 Bedroom Fully Detached House + 2 Rooms Bq,"Nicon Town Estate, Lagos. Nicon Town Lekki Lagos",₦,"617,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +14041,Contemporary Designed 5 Bedroom Detached Duplex With Swimming Pool And Gym,Ologolo Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +14042,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14043,4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +14044,Contemporary 5 Bedroom Fully Detached Home With Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14045,5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14046,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14047,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14048,1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14049,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +14050,Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14051,Land,Llagbo Oriyanrin Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14052,Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14053,Very Good Investment 2 Bedroom Apartment,Vgc Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Garden City +14054,Newly Built 4bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +14055,5 Bedroom Detached Duplex,"Buena Vista Estate, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14056,4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14057,3 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +14058,3 Bedroom Apartment,"Orchid Road, Chevron Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +14059,3 Bedroom Terrace,"Orchid Road, Chevron Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +14060,A Newly Built 4bedroom Terrace Duplex,"Lavender Garden Phase 1, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +14061,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +14062,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14063,A Well Furnished 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +14064,5 Bedroom Duplex,Lekki 1 By Eff Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14065,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14066,5bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14067,5 Bedroom Detached House,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +14068,5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14069,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +14070,1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +14071,Nicely Built 2 Bedroom Apartment,Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +14072,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +14073,4bedroom Terrace,Tulips Heaven Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14074,Instant Land Allocation,Opposite New Lagos Airport By Alaro City Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14075,2 Bedroom Apartment Fully Finished,Chevron Toll Gate By Orchid Road Lekki Lagos Chevron Lekki Lagos,₦,"29,000,000/day",0,1,0,2 beds,2 baths,3 Toilets,Chevron +14076,Newly Built 4bedroom Semi Detached Duplex,"Lekki 2nd Toll Gate, Lagos Nigeria. Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14077,Furnished 5 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14078,Land,"Gbamgbala Road, Estate Ikate Lekki Lagos",₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14079,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Agungi +14080,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14081,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +14082,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +14083,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +14084,4 Bedroom Fully Detached,Meridian Boulevard Estate Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +14085,4 Bedroom Apartment,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14086,4 Bedroom Semi Detached + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"67,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +14087,5 Bedroom House,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14088,3 Bedroom Semi Detached Duplex + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"56,500,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +14089,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14090,6 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14091,3 Bedroom Terrace Duplex + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +14092,Land,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14093,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14094,Land,Meridian Boulevard Estate Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14095,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +14096,Fully Finished 4 Bedroom Terrace Duplex,Lavender Gardens Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +14097,2 Bedroom Furnished Flat,"Off Christ Avenue, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14098,Land,Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14099,Newly Built 2 Bedroom Apartment,Chevron By Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000/day",0,1,0,2 beds,2 baths,3 Toilets,Chevron +14100,Plots Of Lands,Lekki Epe Express Way Chevron Lekki Lagos,₦,"115,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14101,Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14102,Newly Built 2bedroom Flat,Orchid Road By Eleganza Lekki Lagos Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14103,5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14104,Plots Of Land,Pinnock Estate Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14105,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +14106,Land,Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14107,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +14108,Newly 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +14109,Exquisite 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +14110,Newly Built 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +14111,Elegant 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +14112,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14113,4bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +14114,2 Bedroom Flat,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14115,4 Bedroom Terraced Duplex,Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14116,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14117,Newly Completed 4 Bedroom Semi Detached & 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14118,Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14119,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +14120,Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14121,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14122,Waterfront 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14123,This Lovely 2 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14124,Luxury 5 Bedroom Apartment & Maisonette With 2 Rooms Bq,Lekki Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14125,Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14126,This Lovely 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14127,Newly Built 2 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14128,Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14129,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +14130,This Lovely Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14131,4 Bedroom Semi Detached Terrace Duplexes,White Oak Estate By Jakande Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +14132,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14133,Spacious 5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14134,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ologolo +14135,Luxury 3 Bedroom Apartment With Bq,Lekki Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14136,Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14137,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14138,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14139,Luxury 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14140,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14141,Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,4 Toilets,Ikate +14142,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14143,Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14144,Contemporary 4 Bedroom Fully Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14145,Brand New 2 Bedroom Apartment,Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14146,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14147,Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14148,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14149,Spacious 4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14150,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14151,Spacious 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14152,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14153,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14154,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14155,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"220,000,000",0,1,0, beds, baths, Toilets,Chevron +14156,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14157,Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14158,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14159,Spacious 5 Bedroom Fully Detached And 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14160,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14161,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +14162,Luxury 5 Bedroom Detached With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14163,Spacious 3 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +14164,Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14165,Spacious 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14166,This Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14167,Exclusive 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14168,Three (3) Units Of Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14169,Spacious 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14170,Newly Built 4 Bedroom Terrace Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14171,3 Bedroom Apartment,Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14172,Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14173,This Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14174,Spacious 5 Bedroom Detached Duplex With Bq,Jakande Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14175,"Spacious, Exquisitely Built 3 Bedroom Flat",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14176,Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14177,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14178,Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14179,Lovely 2 Bedroom Carcass Apartment,Ikate Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14180,Fully Furnished 4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14181,Spacious 5 Bedroom Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14182,Best Priced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14183,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14184,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14185,Spacious 3 Bedroom Terrace Duplex With Bq,Vgc Lekki Lagos,₦,"203,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +14186,Four (4) Units Of Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +14187,Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14188,Spacious 3 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14189,Land,Vgc Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +14190,Luxury Fully Serviced 3 Bedroom Apartment,Secound Tollgate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +14191,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +14192,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14193,Luxurious 3 Bedroom With Penthouse,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14194,Luxurious 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,1,1 beds,1 baths,2 Toilets,Lekki Phase 1 +14195,4bedrooms Apartment With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +14196,4 Bedroom Terraced Duplex,Igbo Efon Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14197,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14198,4 Bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +14199,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14200,5 Bedroom Fully Detached Duplex,Estate Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14201,Fully Serviced Semi Detached 4 Bedroom Flat,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +14202,"2,3,&4 Bedroom Maisonette + Bq","Lekki,off Freedom Way Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14203,2 Bedroom Flat,Megamound Estate Ikota Lekki Lagos,₦,"38,000,000/sqm",1,1,0,2 beds,2 baths,3 Toilets,Ikota +14204,5 Bedroom Detached Duplex House,Ologolo Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +14205,3545sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"210,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14206,4bedroom Semi Detached Duplex,Eleganza Ikota Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +14207,Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +14208,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +14209,Spacious 4bedroom Duplex With A Bq In A Secured Estate,Orchid Hotel Road Lekki By 2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +14210,Fully Furnished And Serviced 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,3 beds,4 baths,5 Toilets,Ikate +14211,Newly Built 1bedroom And Parlor Fully Furnished,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,1 beds,1 baths,2 Toilets,Ologolo +14212,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14213,4 Bedroom Detached Home With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14214,C Of O,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +14215,Newly Built 4 Bedroom Terrace With Roof Top Space In Lekki Phase 1,Off Admirality Road Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14216,Newly Built 4 Bedroom Terraced Duplex,Applewood Estate Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +14217,2 Plots Of Land,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Osapa London +14218,C Of O,"Orchid Hotel Road, By Second Toll Gate Lekki Oral Estate Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14219,Available Land,Ikota Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14220,Newly Built 3 Bedroom Apartment,Lekki Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +14221,Newly Built 4 Bedroom Duplex With Bq,Platinum Estate Nicon Town Lekki Lagos,₦,"150,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +14222,"Prime Land On 400 Square Meter At Off Orchid Road, Lekki",Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,0,1, beds, baths, Toilets,Chevron +14223,Beautifully Built 5 Bedroom House In A Serene And Gated Estate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Chevron +14224,"Peak Estate Phase 4, Bogije",Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14225,Luxury 4 Bedroom Semi Detached Duplex,"Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +14226,4 Bedroom Semi Detached Duplex With An Open Terrace,2nd Tollgate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +14227,4 Bedroom Semi Detached Duplex,Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +14228,Contemporary 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +14229,Brand New Luxury 3 Units Of 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +14230,4 Bedroom Semi Detached Duplex,Lekki Lagos Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14231,4 Bedroom Terrace Home With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14232,3bedroom Flat With Bq,Prime Water Garden Ikate Lekki Lagos,₦,"48,000,000/year",1,1,0,3 beds,3 baths,3 Toilets,Ikate +14233,Newly Built 2 Bedroom Apartments,"Nicon Town Road Lekki, Nicon Town Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14234,Newly Built 5 Bedroom Detached Duplex,Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14235,Newly Built 4 Bedroom Terraces In Lekki Lagos,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14236,Newly Built 4 Bedroom Semi Detached Duplex With 1 Bedroom Mini Flat,Lekki Lagos Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14237,3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +14238,Newly Built 3 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +14239,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14240,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +14241,5bedroom Detached Duplex,Lekki County Estates Lekki Lagos,₦,"185,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +14242,Newly Built 2 Bedroom Apartment In Lekki,Ikate Lekki Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +14243,2bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds, baths, Toilets,Ikota +14244,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14245,3 Bedroom Maisonette,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +14246,Orange Island,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14247,4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14248,Newly Built 2bedroom Apartment (off Plan),Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +14249,Contemporary 5bedroom Flat,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14250,Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14251,Newly Built 5bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14252,Fully Service 4bedroom Semi Detached Duplex With Bq And Fitted Kitchen,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +14253,Newly Built Five Bedroom Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14254,Newly Built 4bedroom Semi Detached Duplex In A Serene Neighborhood,Agungi Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14255,Newly Built 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14256,2 Blocks Of Flat,Estate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14257,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14258,Newly Built Fully Detached Duplex 4bedrooms With Boys Quarter,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +14259,Tastefully Furnished Serviced 3 Bedroom Bungalow,"Lekki 2nd Toll Gate, Orchid Road, Lekki Chevron Lekki Lagos",₦,"35,000,000",1,0,1,3 beds,3 baths,4 Toilets,Chevron +14260,4 Bedroom Semi Detached Home,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14261,"Fully Furnished 4 Bedroom Semi Detached Duplex With A Room Bq, And 30kva Generator",Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +14262,Deluxe Semi Detached 4 Bedrooms Duplex With Boys Quarter,Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,3 baths,4 Toilets,Ikota +14263,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14264,5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +14265,Serviced Newly Built 2 Bedroom Apartment,Lekki Lagos Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +14266,Brand New & Excellently Finished 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,1,2 beds,2 baths,3 Toilets,Ikate +14267,Newly Built 4 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14268,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14269,4 Bedroom Terrace Duplex For Sale,"Creek Avenue Court Phase 2, Close To 2nd Tollgate. Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14270,Land,Platinum Way Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14271,Pacific View Extension,"Isiki Ode Omi, Ibeju Lekki, Lagos Lekki Lagos",₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14272,Land Measuring 1030sqm,Seagate Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Ikate +14273,5 Bedroom Fully Detached Duplex,Off Jakande Lekki Jakande Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14274,Built 5bedroom Fully Detached Duplex,Estate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14275,Plaza,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14276,"A Bareland Measuring 4,945sqm",Ebeano Supermarket Ologolo Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +14277,Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14278,Newly Built 2 Bedroom Apartments,Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +14279,Brand New 5 Bedroom Fully Detached Duplex With Pool,Ikota Lekki Lagos,₦,"209,000,000",1,0,0,5 beds,5 baths,5 Toilets,Ikota +14280,Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14281,Newly Built 3 Bedroom Terraces Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +14282,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14283,Newly Built 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14284,Newly Build 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14285,Newly Built 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14286,Apartments At Hockley Millennialtown,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14287,Newly Built 4 Bedroom Semi Detached With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14288,2 And 3 Bedroom Luxury Maisonette,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14289,Brand New 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14290,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +14291,4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14292,"Off Plan Of 2, 3, 4 Bedroom And Terraces",Opposite New Horizon Court Estate Ikate Lekki Lagos,₦,"47,000,000/sqm",1,1,1,2 beds,3 baths,3 Toilets,Ikate +14293,32 Units Of 2 Bedroom Fully Serviced Flat,Orchid Road Lekki Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14294,1800sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14295,Luxury 1 2 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets,Chevron +14296,Newly Built 4 Bedroom Terraces Duplex With Bq,Orchid Road Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +14297,Newly Built Service 4bedroom Terrace Duplex,"Water View, Lekki Phase 1 Lekki Lagos",₦,"165,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14298,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +14299,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14300,Newly Built Luxury 6 Units Furnished & Serviced 5 Bedroom Fully Detached Houses,Beside Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"365,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14301,4 Bedroom Semi Detached Home,Ched Home For Sale?? Location ??off Orchid Road By Lekki 2nd Toll Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14302,2 Bedroom Terrace Duplex,Abijo Gra Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14303,5 Bedroom Duplex With A Bq,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"190,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +14304,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14305,4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikoya, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +14306,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14307,5bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +14308,4 Bedroom Semidetached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,2 Toilets,Lekki Phase 1 +14309,Fully Automated 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"126,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14310,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14311,Newly Built 5 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14312,4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +14313,"Magnificent, 5 Bedroom Fully Detached Duplex",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14314,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +14315,Elegant 4 Bedroom Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14316,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14317,Newly Built Luxury 5 Bedroom Detached Duplex With Bq In Lekki,Lekki Lagos Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14318,Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14319,Newly Built 3 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +14320,Tastefully Finished 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14321,1 Bedroom Apartment (mini Flat),Lekki Chevron Lekki Lagos,₦,"28,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +14322,Tastefully Finished 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14323,Newly Built 2 Bedroom Apartments,Lekki Lagos Chevron Lekki Lagos,₦,"43,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +14324,5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14325,Newly Built 4bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14326,Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14327,4 Bedroom Semi Detached & Terraced Duplex,"Dianke Terraces, Near Lekki Conservation Nature Park, Lagos, Chevron Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +14328,Newly Built 4 Bedroom Semi Detachedduplex,Lekki County Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14329,Newly Built 5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14330,4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14331,"1,2,3,4bedroom Apartments",Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14332,Newly Built 4 Bedroom Terraces,Ikota Villa Estate Axis Ikota Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +14333,Available Land,Ilasan Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14334,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +14335,4 Bedroom Penthouse With Furnitures,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14336,"A Bareland Measuring 2,400sqm",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14337,4 Bedroom Detached Duplex,"Orchid, Lekki Lekki Lagos",₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14338,4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,1 Toilets,Ikota +14339,"1 Bedroom, Fully Functional Flats","Off Freedom Way,lekki Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +14340,Super Standard 3bedroom,Oral Estate Oral Estate Lekki Lagos,₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +14341,Newly Built 4 Bedroom Semi Detached Dupkex,Lekki Lagos Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14342,Tastefully Finished 4 Bedroom Semi Detached House,Horizon Ikate Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +14343,4 Bedroom Semi Detached Home With A Bq,Orchid Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14344,1246sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14345,Newly Built 4bedroom Flat,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14346,Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14347,2 Bedroom Fully Serviced,Spar Road Ikate Lekki Lagos,₦,"45,000,000",1,0,1,2 beds,2 baths,2 Toilets,Ikate +14348,Lovely 4 Bedroom Duplex,Orchid Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14349,Luxury Apartment With A Bq,Orchid Hotel Road Lekki By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +14350,Furnished 3bedroom Flat,Prime Water Garden 1 Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,3 baths,3 Toilets,Ikate +14351,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +14352,Atheistically 4 Bedroom Semi Detached Duplex,Estate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +14353,Newly Built 4 Bedroom Semi Detached Duplex,Off Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14354,5 Bedroom Semi Detached Duplex,Estate Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14355,A Bareland Of 13000sqm,Aling Lekki Epe Expressway Lagos Lekki Phase 2 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +14356,Hotel (2650sqm Covered Area),Ologolo Ologolo Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ologolo +14357,Newly Built 5 Bedroom Detached Duplex With Bq,Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14358,4 Bedroom Semi Detached Duplex,Catholic Church Axis Ologolo Lekki Lagos,₦,"172,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +14359,Luxury Massive 4 Bedroom Terrace Duplex With Swimming Pool,"Off Ologolo Road, Before Agungi, Lekki Lagos Ologolo Lekki Lagos",₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +14360,Two Units Of 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +14361,Newly Built 4 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14362,5 Bedroom Duplex With Bq,Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +14363,4 Bedroom Terrace Home With A Bq For Sale?,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14364,"50 Sqms Offices For Commercial Use Off Lekki Expresss Way, Ikate,",Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +14365,5 Bedroom Terraced Duplex,Oral Estate Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +14366,Ongoing 2 Bedroom Terrace,Orchid Road Ikota Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +14367,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14368,2 & 3 Bedroom Terrace,Lekki Epe Expressway Beside Fara Park Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14369,2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14370,Luxury 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +14371,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14372,Newly Built 4bedroom Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14373,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14374,Newly Built Automated 6 Bedroom Pent House Duplex,Osapa London Lekki Lagos,₦,"750,000,000",1,1,1,6 beds,6 baths,7 Toilets,Osapa London +14375,Newly Built Water Front 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +14376,"Comfort,classy & Luxury Semi Finished And Finished 3,4 & 5 Bedroom Duplex Terrace","Atican Beach View Estate, Okun Ajah Lekki Phase 2 Scheme Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +14377,5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Ikota +14378,2 Bedroom Apartment For Sale?,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14379,Available Land,Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14380,3 Bedroom Terrace,Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14381,2 Bedroom Flat,Chris Akinro Close Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +14382,4 Bedroom Semi Detached House,Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14383,Spacious Shop,Jakande Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14384,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +14385,Available Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14386,5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14387,500 Sqm Of Land,Pinnock Estate Jakande Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14388,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14389,5 Bedroom Detached With A Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +14390,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +14391,Lovely 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +14392,Available Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14393,5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +14394,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14395,New Built 4 Bedroom Full Detached Duplex With Governors Consent,Chevron Axis Chevron Lekki Lagos,₦,"77,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14396,Fully Detached 5 Bedroom Duplex,Awkuzu Street Lekki Phase 1 Lekki Lagos,₦,"480,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14397,700sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14398,"1, 2 & 3 Bedroom Apartment","2nd Toll Gate, Lekki, Lagos Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14399,Available House,Orchid Hotel Road Lekki By 2nd Toll Gate In A Secured Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14400,4bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +14401,Newly Built 3 Bedroom Semi Detached Duplex,Dunvale Court V Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +14402,5 Bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +14403,4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +14404,A Massive Fully Detached 5 Bedroom Duplex,"Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"250,000,000",1,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +14405,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14406,Exquisite 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14407,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +14408,5 Bedroom Fully Detached Edifice,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +14409,5 Bedroom Fully Detached Duplex In A Serviced Estate,2nd Tollgate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14410,Furnished 5 Bedroom Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14411,Newly Built Five Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Victoria Garden City +14412,Nicely Finished 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14413,Brand New Five Bedroom Fully Detached House,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14414,Newly Built 4 Bedroom Fully Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"143,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +14415,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14416,Newly Built 4 Bedrooms Semi Detached Duplex + Bq In A Well Secured Estate,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14417,Decently Finished 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +14418,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14419,3 Bedroom Apartment + Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +14420,Exclusive For Your Comfort In Lekki This Is A 4 Bedroom Fully Detached Duplex With Bq,2bd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +14421,5 Bedrooms Fully Detached With Bq,Ayogori Street Ikate Elegushi Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14422,3 Bedroom Apartment With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +14423,3 Bedroom Apartment,"Lekki Phase 1, Elf Bustop, Besode City Lorge Hotel Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14424,1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ologolo +14425,2bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +14426,Fully Furnished 4bedroom Duplex.,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,0 beds,4 baths,5 Toilets,Chevron +14427,Mixed Use Land For Sale In Lekki Phase 1,Off Omorine Johnson Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14428,Residential Land For Sale At Ikota Gra,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ikota +14429,Land,Abijo Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14430,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14431,Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14432,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14433,4bedroom Semi Detached Duplex,"Ikota Gra, Ikota Shopping Complex, Mega Chicken, Noveral Mall, Etc Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14434,Distress Sale Of An Old Residential Mini Estate In A Corner Piece,Victoria Garden City (vgc) Ajah Lekki Lagos. Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +14435,Newly Built 4 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14436,10 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,$,"7,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +14437,1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Agungi +14438,3 Bedroom Apartment,"Elf Bustop, Off City Lodge, Lekki Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14439,Majestically Finished 5 Bedroom Detached House,Alternative Route Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,7 Toilets,Chevron +14440,Newly Built Five Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +14441,2 Bedroom Terrace & 4 Bedroom Duplexes... Emcel Court... Orchid ... Lekki,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +14442,4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14443,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +14444,Switchless Smart 4bedroom Detached,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +14445,Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14446,1 Bedroom Self Contain 2 Units.,"Osapa, Lekki Osapa London Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +14447,5 Bedroom Fully Detached Duplex,"Pinnock Estate , Lekki Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +14448,Nice And Tastefully Finished Luxury 3 Bedroom Flat With A Spacious Bq,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +14449,4 Bedroom Detached Home,Second Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14450,3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +14451,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +14452,Shops,Ikota Shopping Complex Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +14453,Plaza,Igbo Efon Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14454,Newly Buit Luxury And Tastefully Finish 5bedroom Duplex In Osapa London Lekki Lagos,Cozy And Secure Estate Shoprite Road Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14455,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +14456,4bedroom Town House,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14457,4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14458,5 Bedroom Detached Duplex With Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14459,840 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14460,3 Bedroom Flat,"Off Agungi Ajiran Road, Behind Dominion Pizza Agungi Lekki Lagos",₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets,Agungi +14461,2 Bedroom Flat,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +14462,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14463,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ologolo Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +14464,Spacious 2 Bedroom Apartment With 1 Maid Room,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14465,Awesome 5 Bedroom Fully Automated Luxury Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14466,4 Bedroom Semi Detached Duplex For Sale!,Ikate Lekki Lagos,₦,"108,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14467,4 Bedroom Semi Detached Duplex With A Bq,"Ikate, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14468,5 Bedroom Fully Detached Duplex At Orchid Lekki,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +14469,4bedrooms Semi Detached Duplex With Bq,Orichad Road 2nd Toll Gate Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14470,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14471,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14472,5 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14473,Exquisite 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14474,The Northgate Estate,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14475,4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +14476,Newly Built 4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +14477,Luxuriously Finished 5 Bedroom Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +14478,Brand New 4 Bedroom Semi Detached Duplex With A Bq ( Off Plan),Vgc Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +14479,5 Bedroom Detached Duplex For Sale!!!,Lekki County Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14480,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14481,2 Plots Of Land Buy And Build,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14482,4 Bedroom Semi Detached For Sale!!!,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14483,4 Plots Of Sand Filled Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14484,Newly Built Four Bedroom Terrace Duplex,Kushenla Road Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +14485,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +14486,Two Bedroom Apartment,White House Road Osapa London Lekki Lagos,₦,"45,000,000",1,0,1,2 beds,2 baths,3 Toilets,Osapa London +14487,5bedroom Terrace Duplex With Boys Quarter,Before Second Toll Gate Idado Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +14488,Beautiful 4 Bedroom Terrace Duplex + 1 Room Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +14489,Newly Built5 Bedroom Fully Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +14490,Elegantly Built 4bedroom Terrace Duplex With A Room Bq,Orchid Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,6 Toilets,Chevron +14491,40 Hectres Of Land,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14492,Newly Built 4 Bedroom Terrace Duplex,"Victory Star Court 2 Is Located On Ikota Gra, Lekki, Lagos Ikota Lekki Lagos",₦,"58,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +14493,Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14494,Exquisite 2 & 3 Bedroom Maisonette,Ambiance Heights Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14495,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14496,4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14497,Cornerpiece Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14498,Brand New 2bedroom Flat,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14499,4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +14500,3 Bedroom Executive Flat & A Bq,Ikate Elegushi Street Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +14501,"4, 5 Bedroom Fully Detached Duplex",Chevron Chevron Lekki Lagos,₦,"130,000,000/day",0,1,0,5 beds,6 baths,6 Toilets,Chevron +14502,650 Sqm Of Bareland In A Nice Location,Orange Island Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,1 beds, baths, Toilets,Lekki Phase 1 +14503,Lakeview 5 Bedrooms Fully Detached Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14504,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14505,Newly Built Tastefully Finished Standard 5bedroom Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,6 baths,7 Toilets,Ikota +14506,4 Bedroom Semi Detached,"Ajah, Lagos Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14507,Standard 3 Bedroom Apartment With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,5 Toilets,Ikate +14508,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"348,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +14509,2 Bedroom Flats,"Ikate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14510,"2 Plot Of Land Measuring 1,300 And Fronting Unto 2 Roads","Along Alpha Beach Road, New Road, Igbo Efon Igbo Efon Lekki Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14511,5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +14512,Newly Built Luxury 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14513,4 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14514,Spacious 3 Bedroom Apartment With Bq,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ologolo +14515,Fence And Gated Bareland Measuring 3455sqm,"Cbd Area, Off Imax Cinema/ Durosinmi Etti Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"830,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14516,Camberwall Advantage 4.... 2 Bedroom Apartment....lekki 1...... Off Freedom Way.....,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14517,A Plot Of Land 648sqm In A Good Location,Orchid Road Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,1 beds,0 baths,0 Toilets,Chevron +14518,"Tastefully Furnished 4 Bedroom Semi Detached Duplex, All Rooms Ensuite In A Serene Environment",Angels Court Estate Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +14519,Land At Chevron Alternative,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +14520,4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,4 beds, baths, Toilets,Lekki Phase 1 +14521,3 Bedroom Terrace Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +14522,Units Of 2 Bedroom Apartments,"Residential Gated Estate, Off Nike Art Gallery Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +14523,Executive Cosy And Affordable 4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +14524,Newly Built Serviced 2bed Room Flat,Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +14525,336sqm Of Land In A Good Location,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Chevron +14526,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14527,"10,000sqm Of Land &hampton Harbor Freedom Way, Lekki Phase1",Lekki Phase 1 Lekki Lagos,₦,"130,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14528,4 Bedroom Duplex + Bq,Chevy View Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +14529,Newly Buit Luxury 2 Bedroom Flat,Cozy And Secure Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +14530,Luxury 4 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14531,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14532,Brand New Spacious 4 Bedroom Semi Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14533,4 Bedroom Duplex,Bakare Estate Agungi Lekki Lagos Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14534,"De Castle Max Apartment, 4 Bedroom Fully Detached Castle Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14535,4 Bedroom Terrace Duplex Virgin House,Ikota Ikota Lekki Lagos,₦,"58,000,000/day",1,1,0,4 beds,4 baths,5 Toilets,Ikota +14536,Newly Built 4bedroom Terrace,Off Orchid Road Opposite Chevron Lekki Lagos Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14537,Land For Sale At Ilasan,Ilasan Lekki Lagos,₦,"180,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +14538,5 Bedroom Detached Duplex For Sale Going For 250m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14539,Exquisite 4 Bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14540,4 Bedroom Duplex,"Ikate Elegushi Street, Lekki Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14541,1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"25,000,000/day",0,1,0,1 beds,0 baths,0 Toilets,Ologolo +14542,5 Bedroom Fully Detached Duplex,The Heart Of Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +14543,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +14544,4 Bedroom Semi Detached Home,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14545,Spacious Semi Detached Four Bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +14546,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14547,Quarter Plot Of Land,Lafiaji Opposite Chevron Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14548,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14549,Luxury 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +14550,Contemporary 2 Bedroom Flat With Fitted Open Space Kitchenette,Ikate Lekki Lagos,₦,"32,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +14551,3 Bedroom Detached Duplex,"Ikate Salem, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +14552,"4 Bedroom Semi Detached Duplex With Bq In Vella Homes, Ikota, Lekki","After Chevron Toll Gate, Ikota, Lekki Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +14553,5 Bedroom Detached Duplex With Bq,"Orchid Road, Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +14554,5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +14555,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"189,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14556,Nice 5 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +14557,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14558,Newly Built And Spacious 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14559,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14560,3 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +14561,Brand New 3/4 Bedroom Terrace Duplexes,Vgc Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +14562,Brand New 3 Bedroom Terrace,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000/day",0,1,1,3 beds,3 baths,4 Toilets,Ikota +14563,Units Of 4 Bedroom Terrace Duplex,"Residential Gated Estate, Off Nike Art Gallery Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14564,3 Bedroom Apartment & Bq,Orchid Road. Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +14565,Beautiful And Investment Prone Property Is Here. 8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000/day",1,0,0, beds, baths, Toilets,Lekki Phase 1 +14566,Fenced 860 Sqm Land,Nicon Town Axis Jakande Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14567,5 Bedroom Duplex,Williams Onahh Chevy View Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14568,Newly Built 5 Bedroom Duplex,Ikate Enyo Filling Station Side Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikate +14569,Well Finished And New 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14570,Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex,"Pinnock Beach Estate, Lekki Lagos Lekki Lagos",₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +14571,4bedroom Water View,Osapa London Lekki Lagos,₦,"61,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +14572,Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14573,"Executive 5br Duplex Behind Shoprite, Lekki",Cartogan Estate Jakande Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +14574,"Sea View 5 Bedroom Duplex With Bq ,pool Etc",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,7 Toilets,Lekki Phase 1 +14575,Spacious 5 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +14576,"Uncovering Perfection Of Prestige At Hampton, One Detail At A Time.","Palm Springs Road Behind Nicon Town, Ikate, Elegushi, Lagos. Ikate Lekki Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +14577,Newly Built 5 Bedroom Flat,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"85,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14578,Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +14579,4 Bedroom Detached Home,Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +14580,Nice And Standard Newly Built Luxury 3bedroom Flat,"Serene, Secure And Cozy Estate Lekki Agungi Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +14581,"De Castle Max Apartment, 4 Bedroom Terraced Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14582,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14583,5bedrooms Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +14584,Contemporary 6bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +14585,Newly Built Luxury 4 Bedroom Semi Detached + Bq (signature Luxury Apartments),Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14586,"De Castle Max Apartment, 4 Bedroom Semi Detached Castle Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14587,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +14588,5bedroom Fully Detached Duplex With Bq.,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +14589,Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14590,4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14591,Tastefully Finished 4bedroom Semi Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14592,Executive 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +14593,Newly Built Finished 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +14594,Brand New 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +14595,Fantastically Finished 5bedrooms Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +14596,5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14597,Furnished 4 Bed Rooms Semi Detached Duplex,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14598,Luxury 4bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +14599,Newly Built 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14600,3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14601,Five Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14602,Newly Built 4 Bedroom Terraced Duplex,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14603,5 Bedrooms Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +14604,Beautifully Built 5 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +14605,Furnished 2 Bed Rooms Apartment,Lekki County Homes Ikota Lekki Lagos,$,"105,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +14606,3 Bedroom Terrace,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"53,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14607,650sqm Of Land,Orange Island Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,1,0,8 beds,9 baths,8 Toilets,Lekki Phase 1 +14608,5bedroom Detached House,Chervy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14609,5 Bedroom Fully Detached Duplex And A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +14610,Land,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14611,4 Bedroom Fully Semi Detached Duplex With Bq,Located Between The Business Hub And Residential Serenity Of Abijo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +14612,4 Bedroom Ultra Luxury Terrace Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +14613,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14614,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +14615,3 Units Of 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,4 baths,5 Toilets,Ikate +14616,Newly Built 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14617,5 Bedroom Luxurious Terrace With Bq ( All En Suit,"Off Babatunde Anjous Drive (studio 24), Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14618,Newly Built Two Bedroom Apartment,Agungi Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,2 baths,3 Toilets,Agungi +14619,4 Bedroom Duplex With Bq,Chisco Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +14620,Neat 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14621,Newly Built 3 Bedroom Terrace Duplex With Bq In A Serene Mini Estate,Off Abraham Adesanya Estate Road Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14622,"Dry, Fenced And Gated Land",Beside Parktonian Hotel Ikate Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Ikate +14623,5 Bedroom Detached Home With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14624,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Chevron Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +14625,Units Of 4 Bedroom Semi Detached Duplexes,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14626,1 Bedroom Maisonette,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,2 baths,2 Toilets,Ikate +14627,30 Units Of Terrace And 4 Units Of Semi Detached Duplex,Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +14628,5 Bedroom Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"165,000,000",1,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +14629,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +14630,All Luxury Family Sized Duplex*,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14631,55 Rooms Functional Hotel,Off Lekki Epe Express Road Agungi Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets,Agungi +14632,5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14633,5 Bedroom Detached,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14634,Newly Built 5bedroom Duplex With Bq,John Okafor Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +14635,"Newly Built, Spacious And Luxury 4 Bedroom Semi Detached Duplex",Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +14636,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +14637,4 Bedroom Detached Duplex,"Osaki Osapa Street Roundabout, Lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14638,New: Luxury 4 Bedroom Within A Private Neighborhood,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14639,De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +14640,"4 Bedroombedroom & 3 Bedroom Terrace Maisonette, Emcel Terraces, Ikate, Lekki",Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14641,Spacious Fully Detached Five Bedroom Duplex With Bq 24hours Light And Security,Orchid Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds, baths, Toilets,Ikota +14642,Newly Buit Luxury Mini Flat With Guest Toilet,Cozy And Secure Estate Lekki Agungi Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,2 Toilets,Agungi +14643,Well Renovated Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"1,800,000",1,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +14644,Newly Built 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000/day",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +14645,5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14646,Contemporary Driveway 4bedroom Semi Detached House,Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +14647,Luxury 5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14648,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +14649,Newly Built 5bedroom Duplex,Buena Vista Estate Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +14650,Spacious Fully Detached Five Bedroom Duplex With Bq,Orchid Ikota Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +14651,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +14652,Luxury Finished 4 Bedrooms Fully Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +14653,5 Bedroom Duplex,"Cornelius, Next Turn X Gate Chevy View Lekki Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14654,4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14655,4 Bedroom Terrace With Bq,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14656,Land,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14657,4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14658,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,5 Toilets,Chevron +14659,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14660,Land,By Femi Okunu Road Osapa London Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +14661,De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +14662,Four Bedroom Fully Detached Duplex For Sale,Chevey View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +14663,Fully Furnished 5 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +14664,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14665,4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +14666,"A Block Containing 3 Units Of 3 Bedroom Terrace Duplexes With Clean Water, Prepaid Meter",Victoria Garden City Vgc Lekki Lagos,₦,"250,000,000",0,0,0,9 beds, baths, Toilets,Victoria Garden City +14667,"4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.","Creek Avenue Court Phase 2 Ikota, Lekki. Ikota Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14668,"4 Bedroom Terrace Duplex For Sale At Lekki, Ikate","Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +14669,Fenced 700 Sqm Land With Foundation,Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14670,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +14671,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +14672,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +14673,Spacious Fully Detached Five Bedroom Duplex With Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds, baths, Toilets,Lekki Phase 1 +14674,3 Bedroom Apartment,Z Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +14675,20000 Sqm (2hectares) Of Land In A Private Estate Waterfront By Freedom Way Lekki Phase 1 Lagos Cofo / Half Can Be Sold,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14676,4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14677,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +14678,Brand New Luxury Built And Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +14679,5 Bedrooms Detached Duplex With Boysquarter,2nd Tollgate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14680,Newly Built 3bedroom Apartment,Romay Garden Estate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14681,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14682,3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14683,Newly Built Standard 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,4 Toilets,Ikate +14684,3 Bedroom Duplex,"Osapa London, Exit Lane Lekki Osapa London Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +14685,Buy Landed Property With Guarantee And Comfort In Water Front Estate With C Of O,Lekki Palm City And Shares Boundary With Vgc Waterfront Lekki Phase 2 Lekki Lagos,₦,"35,000,000/day",1,0,0, beds, baths, Toilets,Lekki Phase 2 +14686,5 Bedroom Detached,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14687,2 Bedroom Apartments,2 Mins Walk From Blenco Ikate Ikate Lekki Lagos,₦,"56,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14688,Contemporary 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,2 Toilets,Other Lekki +14689,3 Bedroom Semi Detached Duplex +bq,Abijo Gra Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14690,4bed Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +14691,2bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +14692,Serviced Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14693,4 Bedroom Terrace Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14694,5 Bedroom Duplex With Swimming Pool,Bakare Estate Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14695,2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +14696,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14697,4 Bedroom Semi Detached,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14698,6 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +14699,Well Detailed 5bedroom S Fully Detached House With Pool,Osapa London Osapa London Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +14700,608 Sqm Of Land,Ilasan’s Ikate Lekki Ilasan Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14701,Executive 4b/r Detached Duplex + Bq In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +14702,4 Bedroom Detached Duplex With 2 Bq,"Eletu Way, May Hill Osapa London. Lekki Osapa London Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14703,5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +14704,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14705,3bedrooms Maisonette Duplex For Sale ( Camberwall Advantage),Close To Oba's Palace. Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +14706,Brand New Fully Serviced 3 Bedroom Luxury Apartment With Nice Fittings,Off.spg Road Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ologolo +14707,A Beautiful And Elegantly Finished 4 Bedroom Fully Detached Mansion With Bq,"Victoria Gardens City, Off Lekki Epe Expressway, Lekki Ajah Lagos Vgc Lekki Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +14708,Luxury 4 Besroom Filly Detached Duplex + Bq,Gra Ikota Lekki Lagos,₦,"92,000,000",1,1,0, beds, baths, Toilets,Ikota +14709,Lovely Contemporary Designed 4 Bedroom Detached, Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +14710,2bedrooms Penthouse Apartment,Behind Onike Art Gallery Ikate Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +14711,5 Bedroom Semi Detached Duplex With Bq,Off Jakande Jakande Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +14712,Newly Built Luxury Apartments,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +14713,Tastefully Finished 4 Bed Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,6 baths,6 Toilets,Other Lekki +14714,4 Bedroom Semi Detached Home,"Ajah, Lagos Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14715,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14716,Fully Automated Lekki Luxury 5 Bedroom Full Detached Duplex With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +14717,Fully Serviced And Decently Spaced 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14718,Tastefully Finished 5bedroom Fully Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikate +14719,4 Bedroom Duplex,Ikate Elegushi Street Ikate Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14720,Land,Olomowewe Community Lekki Lagos,₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14721,3 Bedroom Flat,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +14722,3 Bedroom Terrace House,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +14723,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"214,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14724,4 Bedroom Semi Detached Home,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +14725,Newly Built Four Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets,Chevron +14726,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14727,A Brand New Luxurious Four Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +14728,Newly Built 5bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +14729,5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +14730,5 Bedroom Detached Duplex With Pool,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +14731,4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14732,Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Phase2 Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +14733,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +14734,Luxury 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,0 beds,5 baths,6 Toilets,Osapa London +14735,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +14736,Brand New 5 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +14737,Two Plots Of Land Available For Sale At The Back Of Vgc,Vgc Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +14738,Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14739,5 Bedroom Detached Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14740,Newly Built 3bedroom Terrace,Off Orchid Road Opposite Chevron Lekki Lagos Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14741,New Built 4bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14742,5 Bedroom Detached Home With A Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14743,Half Plot Of Land,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"25,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14744,Newly Built Four Bedroom Terrace Duplex,Off Kushenla Road Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14745,Beautifully Finished 4 Bedroom Semi Detached House,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets,Chevron +14746,Newly Built 4bedrooms Terraced With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14747,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14748,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +14749,3bedroom Flat With Maid's Room,"Maiyegun, Ologolo Ologolo Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +14750,5 Bedroom Detached Duplex,"Nicon Town, Lekki, Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14751,Land For Sale In Orchid Road Lekki Lagos State Nigeria,Livingspring Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +14752,Newly Built 5 Bedrooms Fully Duplex With A Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +14753,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +14754,Plot Of Land,Lakeview Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14755,5 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +14756,Luxury Built Virgin Semi Detached 4 Befroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000/day",0,1,0,4 beds,6 baths,6 Toilets,Chevron +14757,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14758,Cornerpiece Land Measuring 930sqm,"Orange Island, Freedom Way, Lekki 1 Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14759,4 Bedroom Terrace Duplex,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14760,4bedroom Flat,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14761,5 Bedrooms Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +14762,Tastefully Finished 4bedroom Semi Detached,Osapa Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +14763,5 Semi Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14764,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14765,Newly Built 5 Bedroom Detached Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14766,Luxury 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +14767,Luxury 5 Bedrooms Fully Detached Duplex,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +14768,Block Of 12 Units Mini Flats,Lekki Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +14769,A Plot Of Land,Ikate Lekki Lagos,₦,"196,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14770,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +14771,Newly Built Four Bedroom Terraced House,Ikate Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +14772,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14773,4 Bed Room Terraced Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14774,"1,307sqm Residential Vacant Fenced Land",Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14775,4 Bedroom Terraced Duplex With Inbuilt Bq,"Ikate,lekki, Lagos Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14776,5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +14777,5 Bedroom Detached Duplex,Chevron Link Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +14778,A Well Finished 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +14779,Furnished 5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,7 Toilets,Other Lekki +14780,Land,Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14781,2 Bedroom Apartment With Bq,2nd Tollgate Lekki Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +14782,Luxurious 5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +14783,4 Bedroom Detached,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14784,910 Sqms Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +14785,4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14786,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14787,1307.95sqm Parcel Of Land,"Near Petrocam Fuel Station, Elf Bus Stop Lekki Lagos",₦,"370,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14788,Land,"Diamond Estate, Sangotedo Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14789,4 Bed Rooms Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +14790,Dunvale Court V.......,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +14791,A Well Furnished Semi Detached Shopping Mall,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14792,Demolishable Commercial Building,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14793,Newly Built Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +14794,4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14795,Urbane 4 Bedroom + 1 B.q Terrace Triplex,Awoyaya Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14796,Newly Built 4 Bedroom Semi Detached Duplex (all Rooms Ensuite) With Bq,Gated And Secured Estate Off Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14797,Newly Built Four Bedroom Duplex Available For Sale In Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +14798,2 Bedroom Apartment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +14799,2 Bedroom Luxury Apartment,Off Petrocam Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +14800,Nweky Built 4 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000/day",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +14801,4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14802,Spacious And Standard 4 Bedroom Semi Detached Duplex With Bq,Secured Estate Ologolo Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +14803,Land For Sale Along Orchid Road Lekki Lagos State Nigeria,70 Plots Of Land Along Orchid Road Lekki Chevron Lekki Lagos,₦,"17,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +14804,673.524sqm Of Land,Bakare Estate Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +14805,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +14806,A Dry Land Of 2700sqm,Chisco Ikate Lekki Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14807,Newly Built Bungalows,Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +14808,5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14809,5 Bedroom Detached Home,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14810,5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,5 baths,5 Toilets,Ikota +14811,A 5 Bedrooms Fully Detached Duplex With A Bq Cinema And Swimming Pool,Megamount Estate Lekki Ikota Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14812,Tastefully Finished 4bedroom Bedroom Terrace Duplex With Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14813,Semi And Fully Detached. 4 Bedroom Duplex With A Room Bq, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +14814,Luxury 4 Bedroom Fully Detached Duplex With Bq,"Lekki Phase 2, Lekki, Lagos Osapa London Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +14815,Newly Built Four Bedroom Duplex Available In Lekki,Lekki Phase 2 Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +14816,4 Bedroom Terrace,"Salem, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14817,Brand New Luxury Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +14818,"Brand New ,4 Bedroom Luxury Fully Detached Duplex With Bq",Chevron Chevron Lekki Lagos,₦,"105,000,000/year",0,1,0,4 beds,5 baths,4 Toilets,Chevron +14819,Newly Built Four Bedroom Duplex With A Boys Quaters,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +14820,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14821,Spacious 4 Bedroom Terrace House,Orchid Road By Eleganzer Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14822,Newly 2bedroom Flat,Off Orchid Road Opposite Chevron Lekki Lagos Ikota Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +14823,Magnificent 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +14824,900sqn Of Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14825,4 Bedroom Townhouse With Bq,Z Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +14826,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +14827,Newly Built Four Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +14828,6 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +14829,4 Bedroom Detached Duplex With Bq,Orchid Lekki Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +14830,3 Bedroom Terrace With Bq,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14831,700 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14832,4 Acres Of Land For Sale At Ibeju Lekki By Free Trade Zone Going For 720m,Ibejju Lekku By Free Trade Zone Lekki Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14833,Gracias Goshenite,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +14834,4bedroom Semi Detached+bq+swimming Pool,Ikota Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +14835,4 Bedroom Terrace,Z Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +14836,5 Bedroom Detached Home For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14837,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +14838,Land,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14839,4 Bedroom Semi Detached Duplex Going For 68m,"Lekki, Chevron Chevron Lekki Lagos",₦,"68,000,000",0,0,0, beds, baths, Toilets,Chevron +14840,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14841,Spacious 4 Bedroom Terrace Duplex With Bq And Pool,Whitesands Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +14842,Spacious Semi Detached Four Bedroom Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +14843,75m 4bedroom Semidetached Duplex +bq,Orchid Road Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +14844,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14845,"5 Bedroom Detached Duplex With A Pool, Pent House, And Fitted Air Conditioners For Sale!!!",Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14846,5 Bedroom Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +14847,1 Plot Of Land At Orchid,Orchid Road Chevron Lekki Lagos,₦,"45,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14848,Exquisite 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +14849,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +14850,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"18,500,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +14851,700 Sqm Of Land,Igbokushu By Nicon Town. Lekki Nicon Town Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14852,Newly Built 4 Bedroom Fully Detached Duplex,Opposite Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +14853,5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14854,Bareland Measuring 1009sqm,"Nicon Town Estate,ikate Nicon Town Lekki Lagos",₦,"330,000,000",0,0,0, beds, baths, Toilets,Other Lekki +14855,5 Bedroom Fully Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +14856,Newly Built 4 Bedroom Property,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14857,4 Bedroom Terrace Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14858,Newly Built Standard 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,3 beds,4 baths,4 Toilets,Ikate +14859,4 Bedroom Duplex,Ajayi Street Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14860,Brand New Luxury Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +14861,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"4,800,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +14862,4 Bedroom Town House Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14863,4 Bedroom Semi Detached Home,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14864,Newly Built 4 Bedroom Semi Detached Duplex With Swimming Pool For Sale,By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14865,5 Bedroom Detached Suplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +14866,2 Bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14867,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +14868,2 Bedroom Apartment,Dubai Creek Lekki Lagos,$,"480,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +14869,Exquisite 2 Bedroom & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +14870,5 Bedroom Contemporary Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds, baths, Toilets,Ologolo +14871,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14872,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14873,Exquisitely Finished 4 Bedroom Semi Detached,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14874,5 Bedrooms Duplex,Dotun Street Chevy View Estate. Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14875,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +14876,New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14877,Newly Built 4 Bedroom Terrace Duplex With Communal Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,6 Toilets,Lekki Phase 2 +14878,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +14879,"4 Units Of 4 Bedrooms Terrace With Bq All Rooms Are Ensuite, Fitted Kitchen, Bathtub, Swimming Pool Etc",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14880,4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14881,Standard 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +14882,5 Bedroom Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +14883,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +14884,3bedrooms Terrace Available,Vgc Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +14885,3 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +14886,3 Bedroom Apartment,Fairfield Apartments Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Lekki +14887,Newly Built 4 Bedroom Terrace Duplex For Distress Sale,Orchid Road By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14888,Newly Built Four Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +14889,A Brand New And Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq And Modern Facilities,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +14890,Functioning Plaza,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14891,2plots Of Land (1300sqm),Orchid Road Chevron Lekki Lagos,₦,"85,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14892,Spacious 4 Bedroom Terrace Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +14893,800sqm Of Land,Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14894,The Honey Dew Court Estate,Ikota Gra Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14895,4 Terrace Duplex,De Castle Max Orchid Road By Chevron Lekki Lagos Chevron Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Chevron +14896,2 Bedroom Apartment,"Sango Tedo, Ajah Lekki Lagos",₦,"29,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14897,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14898,Land,Second Toll Gate Lafiaji Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +14899,Tastefully Built Luxury Apartment,"Flourish Apartment And Terraces, Orchid Road Chevron Lekki Lagos",₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +14900,Newly Built Two Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,2 baths,3 Toilets,Agungi +14901,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +14902,"Luxurious 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool And 1 Room Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +14903,Lovely 5 Bedroom Duplex In Lekki 1 With Pool And Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14904,Luxury 4 Bedroom Terrace Duplex With Bq,"Lekki Phase 2, Lekki, Lagos Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +14905,4 Bedroom Duplex,Prince Sam Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14906,2 Bedroom Flats Ologolo Close To Dominos Pizza 35m,Dominos Pizza Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +14907,4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14908,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +14909,Well Fitted 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +14910,4 Bedroom Semi Detached Duplex,Orchid Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +14911,"5bedroom Detached House With A Room Bq All Rooms Are Ensuite, Fitted Kitchen, Bathtub, Swimming Pool, Wardrobes At Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +14912,5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +14913,Newly Built Spacious 1 Bedroom Flat,Idado Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Lekki +14914,5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +14915,Available Land,Nicon Town Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14916,4 Bedroom Semi Detached Duplex,"Lekki, Chevron Drive Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14917,Newly Built Luxury 4 Bedroom Semi Detached Duplex In A Well Secured Estate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14918,4 Bedroom Terrace,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14919,Atlantic View Est 4 Bedroom Terrace With Optional 24hr Power Supply,Atalantic View Estate Alpha Beach Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14920,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +14921,5 Bedroom Duplex With Bq And Lovely Fittings,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +14922,5 Bedroom Terrace Duplex,"Ikate, Lekki, Salem Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14923,4 Bedroom Semi Detached Home,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +14924,Newly Built Spacious 4 Bedroom Flat,Idado Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14925,Neatly Designed And Tastefully Built 4 Bedroom Semi Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +14926,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +14927,Luxury 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,2n Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14928,Brand New Waterfront 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +14929,Brand New 5 Bedroom Detached Duplex With Bq,Southern View Estate By 2nd Tollgate Behind Orchid Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +14930,4 Bedroom Semi Detached Terrace Duplex,Marwa Elf Bus Stop Ikate Lekki Lagos,₦,"140,000,000",0,1,0, beds,5 baths,6 Toilets,Ikate +14931,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +14932,3bedroom And 4bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +14933,3 Bedroom Flat,"Lekki Scheme 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14934,5 Bed Contemporary House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +14935,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +14936,De Castle Max Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +14937,Land,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +14938,Newly Built Fully Furnished 2 Bedroom Flat,Lekky County Homes Ikota Lagos Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets,Ikota +14939,5 Bedroom + 2 Rooms Bq,Chevron Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14940,Huge And Well Finished 9 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,9 beds,9 baths,10 Toilets,Ikate +14941,5bedroom Fully Detached Duplex With Staff Quarters And Swimming Pool,Palm City Estate Lekki Ajah Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,8 Toilets,Other Lekki +14942,Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14943,4 Bedroom Detached Home,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14944,4 Bedroom Terrace,Orchid Road 2nd Lekki Toll Gate Oral Estate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14945,Decently Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +14946,Astonishingly Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +14947,4bedroom Terrence Duplex With One Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +14948,5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +14949,Contemporary 5bedroom Fully Detached,2nd Toll Gate Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +14950,1bedroom Luxury Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +14951,Fully Serviced 2bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Lekki +14952,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14953,Fantastically Built 5bedrooms Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +14954,Tastefully Finished 5bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,6 baths,7 Toilets,Ikota +14955,Beautifully Finished 4 Bedroom Terrace House,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14956,Palatial 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14957,Brand New Four Bedroom Semi Detached House,Ikota Villa Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14958,4bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +14959,Built Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +14960,5 Bedroom Duplex + Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +14961,Outstanding 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14962,Lovely 4 Bedroom Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14963,Nicely Finished 2 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,0 Toilets,Lekki Phase 1 +14964,2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"40,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +14965,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +14966,Brand New Fully Serviced Room And Parlor Mini Flat,Lekki Gardens Chevron Lekki Lagos Chevron Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +14967,2 Bedrooms Apartment,Ilasan Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +14968,3 Bedroom Apartment,"Lekki Phase 1, Elf Bustop, Besode City Lorge Hotel Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +14969,Executive Standard And Spacious 3 Bedroom Apartment With A Room Bq,Agungi Agungi Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,4 baths,5 Toilets,Agungi +14970,Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +14971,"Event Center, Asking Price (1.2b)",Lekki Chevron Drive Lekki Lagos,₦,"1,200,000,000",0,0,1, beds, baths, Toilets,Other Lekki +14972,Brand New Finely Built Three Bedroom Apartment,Chisco Ikate Lekki Ikate Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +14973,4 Bedroom Duplex,Ajayi Street Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +14974,Serviced 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,$,"315,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +14975,A Furnished 3bedroom Flat,Lekki Lagos,₦,"170,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Lekki +14976,Luxury 4bed Room Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +14977,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +14978,5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Tollgate Lekki Lagos,₦,"170,000,000",1,0,0,5 beds,6 baths,7 Toilets,Other Lekki +14979,Spacious 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +14980,Land,Ologolo Town Ologolo Lekki Lagos,₦,"55,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +14981,1 Unit 4 Bedroom Terrace Duplex,Victoria Crest Iv Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14982,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +14983,Land,Alafin Street Igbo Efon Lekki Lagos,₦,"25,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +14984,4 Bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +14985,2 Bedrooms Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +14986,4 Bedroom Duplex,Off Fola Osibo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +14987,2 Bedroom Apartment,"Dynasty Residence 6, Orchid Road Oral Estate Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +14988,Fully Service 2bedroom,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14989,Newly Built Tastefully Finished 5 Bedroom Fully Detached Duplex With A Room Bq In A Secured Estate,Elegushi Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,7 Toilets,Ikate +14990,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"82,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +14991,Nicely Finished 3 Bedroom Flat, Ikate Lekki Lagos,₦,"47,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +14992,4 Bedroom Terrace Duplex.,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +14993,5bedroom Fully Detached Duplex With 2 Bq,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +14994,Newly Built Standard 3bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +14995,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +14996,Luxury 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +14997,Four Bedroom Terrace,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +14998,Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +14999,5 Bedrooms Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15000,4 Bedroom With 2 Living Rooms Plus One Room Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15001,4bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15002,Contemporary 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15003,3 Units Of 5 Bedrooms With 2 Rooms Bq Executive Mansions,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +15004,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15005,Boys Quarter For Rent A Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15006,Newly Built Four Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +15007,Newly Built Spacious 2 Bedroom Flat,Idado Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +15008,9000sqm Bare Dry Land,"Castle Rock Ave, Beside Circle Mall Osapa London Lekki Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15009,4bedroom Semi Detached Duplex,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15010,5 Bedroom Detached Class Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +15011,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15012,1000 Sqms Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15013,Lekki 1 Right Side 5 Bedroom Detached Duplex With Indoor Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +15014,Luxury Beach Front Serviced Plots,Maiyegun Road. Jakande Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15015,3 Bedroom Apartment,"Elf Bustop, Off City Lodge, Lekki Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15016,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15017,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15018,9600 Sqm Of Land,Victory Park Estata Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15019,1138sqm Of Land,Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15020,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15021,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +15022,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15023,Standard Half Plot Of Land In Ologolo Lekki Lagos,Nice Environment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Ologolo +15024,2 Bedroom Flat,"Ikate, Salem, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15025,Luxury 5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15026,Lovely 5 Bedroom Duplex With Bq,Richmond Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15027,Very Spacious Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15028,5 Bedroom Fully Detached,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15029,Studio Apartment,Ikate Lekki Lagos,₦,"32,800,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15030,4 Bedroom Duplex,"Elenu Way, Osapa Lekki Lagos Osapa London Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +15031,Contemporary 5 Bedroom Detached Duplex,Pinockbeach Estate Lekki Lagos Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,5 beds,6 baths,6 Toilets,Osapa London +15032,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +15033,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +15034,Demolishable Building Measuring 835sqm,"Fola Osibo, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15035,Tastefully Finished 5 Bedroom Terrace In A Secured Location,By Nike Art Gallery Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15036,Finished 5bedroom Fully Detached House,Agungi Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +15037,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15038,5 Bedroom Detached Duplex With Bq,"Ikate, Lekki Ikate Lekki Lagos",₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +15039,4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15040,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15041,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15042,"The Royal Terrace, Lekki",White Oak Estate Ologolo Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15043,Tastefully Finished And Furnished 4bedroom Terrace With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,5 baths,6 Toilets,Ikate +15044,Newly Built And Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +15045,Newly Built 4 Bedrooms Duplex,Yes Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15046,4 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15047,Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +15048,4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +15049,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15050,4 Bedroom Semi Detached,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15051,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +15052,Luxury 5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +15053,Tastefully And Newly Built Contemporary 5 Bedroom (all Ensuite),Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15054,Half Plot Of Residential Land Inside A Secured Estate At New Road,"Admiralty Homes Estate ,new Road Before Chevron Igbo Efon Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15055,Brand New Serviced Luxury Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15056,Newly Built 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +15057,4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +15058,4 Bedroom Terrace Duplex,Nike Art Gallery Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15059,Lovely 3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,3 beds,4 baths,4 Toilets,Osapa London +15060,Brand New 5 Bedroom Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Ikate +15061,4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15062,5 Bedroom Full Detached Duplex,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +15063,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +15064,5000 Sqm Of Land,Spg Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Ologolo +15065,Newly Built Two Bedroom Apartment,Ikate Lekki Lagos,₦,"64,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +15066,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15067,4 Bedroom Smart Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15068,3 Bedroom + 1 B.q Terrace Duplex,Awoyaya Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +15069,"Newly Built 4bedroom Semidetached Duplex, In A Secured Estate","Maiyegun, Ologolo Ologolo Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +15070,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15071,5 Bedroom Semidetached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15072,Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,8 baths,9 Toilets,Lekki Phase 1 +15073,Tastefully Finished 5bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikota +15074,Lovely 5 Bedroom Duplex,Ilasan Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15075,5 Numbers Of 3 Bedrooms Flats,Igbo Efon Gate Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +15076,4 Bedroom Massive Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15077,Delightfully Structured And Finished 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15078,4 Bedroom Semi Detached,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15079,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"166,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15080,6units Of Brand New 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +15081,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15082,5 Bedroom Duplex,"Orji Victory Estate, Osapa London Lekki Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15083,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15084,Spacious Fully Detached 5 Bedroom Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,0 baths,0 Toilets,Osapa London +15085,Well Maintained 2 Bedroom Flat, Ikate Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15086,4 Bedroom Terrace With Bq,"Lekki ,ikate Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15087,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15088,3 Bedroom Flat,Osapa London Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +15089,4 Nos Of 3 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15090,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +15091,2300 Sqm Of Land,Elf Lekki Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15092,Lovely 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +15093,Massive Hotel On 7500sqm At Vjc Lekki,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +15094,"4bedroom Terrace With Bq At Abiola Court Osapa All Rooms Are Ensuite, Fitted Kitchen, Wardrobes",Abiola Court Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15095,Newly Built Fully Furnished 3 Bedroom Flat With Swimming Pool,Megamound Estate Lekky County Homes Ikota Ikota Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,0 baths,0 Toilets,Ikota +15096,5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15097,Newly Built 4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"56,000,000",1,1,0, beds, baths, Toilets,Other Lekki +15098,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15099,Tastefully Finished 4bedroom Semi Detached Duplex With A Bq,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"82,500,000",1,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +15100,4 Bedroom Semidetached With Two Bq,Vgc Lekki Lagos,₦,"186,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +15101,Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15102,Plot Of Land Measuring 708sqm,Lekki Phase 1 Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15103,Newly Built Five Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +15104,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15105,Contemporary 4 Bedroom Fully Detached,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15106,Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15107,Plot Of Land Measuring 300sqm In A Fully Serviced Estate,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,500,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15108,5 Bedroom Detached House,Orchid Road In An Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +15109,Newly Built 5 Bedroom Duplex,Ikate Right Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikate +15110,4 Bedroom Detached Duplex,Idado Estate Lekki Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +15111,4 Bedroom Semi Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15112,815 Sqm Dry Land,Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15113,5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15114,3 Bedroom Smart Dupex,Urban Prime Estate Lekki Phase 2 Lekki Lagos,₦,"69,800,000/sqm",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +15115,Newly Built 4 Bedroom With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,4 beds,4 baths,6 Toilets,Osapa London +15116,Massive 3.5 Acres Of Land,"Located Within Sugarland Estate, Before Victoria Garden City (vgc) By The Left Side Heading To Ajah, Lekki Lagos. Vgc Lekki Lagos",₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +15117,Land For Sale In The Heart Of Lagos Island,"Abraham Adesanya Estate Road ,ogombo Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15118,Tastefully Finished 4bedroom Semi Detached Duplex With A Bq,Jakande Jakande Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,6 Toilets,Other Lekki +15119,Nice 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +15120,2 Bedroom Flats,"Ikate, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15121,Newly Built Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,5 baths,6 Toilets,Ikota +15122,Well Finished 3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,0 baths,0 Toilets,Ikota +15123,Tastefully Built Luxury Apartments Known As Flourish Appartment And Terraces,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +15124,Newly Built 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15125,Newly Built 4 Bedroom Duplex,Off Bisola Durosinmi Etti Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +15126,5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15127,5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15128,Newly Built 2 Bedroom Terraced With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15129,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15130,Tastefully Finished 2bedroom Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"42,500,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +15131,Spacious Newly Built 3bbedroom Flat,Off Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15132,5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15133,5bedroom Detached House With 2rooms Bq All Rooms Are Ensuite At Alpha Beach Road Opposite Chevy View Lekki,Alpha Beach Road Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15134,Newly Built 4 Bedroom Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15135,Brand New Terrace House,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,4 baths,5 Toilets,Ikota +15136,Spacious 4 Bedroom Semi Detached Duplex With Bq, Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15137,Newly Built Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +15138,3150 Sqm Of Land Fenced,Ikota Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Ikota +15139,Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15140,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15141,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +15142,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +15143,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +15144,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Orichd Road Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +15145,Newly Built 5bedroom Fully Detached Duplex With A Bq,"Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +15146,Beautifullybuilt 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15147,5 Bedroom Fully Detached Duplex In A Serviced Estate,2nd Tollgate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,7 Toilets,Other Lekki +15148,5 Bed Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +15149,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15150,Brand New 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15151,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +15152,5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +15153,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,$,"263,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +15154,Units Of 4 Bedroom Terrace Duplexes,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15155,5 Bedroom Fully Automated Contemporary House,"Arcadia Grove Estate , Osapa, Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15156,A Plot Of Land,Seagate Estate Off Spar Rd Elegushi Ikate Lekki Lagos,₦,"406,600,009",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15157,3 Bedroom Apartment,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +15158,3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15159,Fully Serviced 2bedroom Apartment,Chevron Chevron Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +15160,4 Bedroom Semi Detached Home,Orchid Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15161,Newly Built Five Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +15162,700 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15163,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15164,4 Bed Rooms Detached Duplex With Bq,Idado Idado Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15165,1200sqm Land, Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +15166,Lovely 4 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15167,4 Bedroom Terrace,Off Babatunde Anjous Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15168,12units Of 2 Bedroom And 2 Unit Of 4 Bedroom,Chevron Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Chevron +15169,Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15170,4 Bedroom Terraces Castle Duplex,"De Castle Max Is Located At Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos Ikate Lekki Lagos",₦,"60,100,000",0,1,1,0 beds,0 baths,0 Toilets,Ikate +15171,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +15172,3 Bedroom Apartment For Sale!!!,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +15173,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"66,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +15174,3 Bedroom Apartment,Close To The Beach Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15175,4 Bedroom Duplex,Sand Fields Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +15176,4 Bedroom Duplex,Ikota Mega Chicken Lekki Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15177,Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15178,Luxurious 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"310,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15179,Tastefully Finished 2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +15180,Two Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"37,000,000",0,1,1,2 beds,2 baths,3 Toilets,Chevron +15181,Land,Lekki Phase 1 Lekki Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15182,2 Bedroom Flat,Orchid Road Opposite Chevron Lekki Lagos,₦,"34,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +15183,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +15184,4 Bedroom Terrace Duplex,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15185,Bareland Measuring 800sqm 834sqm,"Cowrie Creek, Ikate, Lekki Ikate Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Ikate +15186,A Prime Plot Of Land Measuring 650sqm,Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15187,5 Bedroom Detached,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15188,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +15189,Exquisite 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"78,000,000/day",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +15190,500 Sqm,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Osapa London +15191,Brand New Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15192,Well Finished And Lovely 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15193,4 Bedroom Terrace Duplex,Victoria Crest Iv Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15194,Luxury 4 Bedroom Semidetached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +15195,2 Bedroom Apartment + Pool + Elevator,Lekki County Ikota Lekki Lagos,₦,"43,500,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +15196,4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15197,Five Bedroom Fully Detached Duplex With Boys Quaters,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +15198,Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +15199,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15200,"3 Bedroom Flat For Sale Going For 65m At Lekki Scheme 1, Lekki","Lekki Scheme 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"6,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15201,Newly Built 4bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +15202,4 Bedroom Semidetached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15203,Four Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15204,5 Bedroom Fully Detached Duplex,Secured Estate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +15205,Luxury Finished 4 Bedrooms Fully Detached Duplex With Bq.,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +15206,9 Units Of 3 Bed Room Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15207,Tastefully Finished Well Maintained 5bedroom Terrace With Bq And Swimming Pool,Chevy View Chevron Lekki Lagos,₦,"40,000,000",1,0,1,5 beds,6 baths,7 Toilets,Chevron +15208,Luxury Four Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15209,5 Bedroom Detached Home For Sale!!!,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +15210,Spacious Fully Detached Five Bedroom Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +15211,An Exquisitely Finished 1 Bedroom Apartment,Osapa London Lekki Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,1 Toilets,Osapa London +15212,De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +15213,4 Bedroom Semi Detached Home,"2nd Toll Gate, Lekki Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15214,Dry Lànd Facing Road.,"Pero Hotel, Ogombo Lekki Phase 2 Lekki Lagos",₦,"9,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15215,Brand New 4 Bedroom Semi Detached Duplex And A Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15216,4 Bedroom Semi Detached Duplex Carcass With A Bq,"Ajah, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15217,Available Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15218,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15219,An Exquisitely Finished 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +15220,Luxurious 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +15221,Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15222,4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15223,5 Bedroom Detached Duplex+ Bq,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15224,3 Bedroom Flat With Bq,Morning Dew Court Ilasan Lekki Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +15225,", 4 Bedroom Semi Detached Duplex",Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15226,"Exquisitely Finished 4 Bedroom Detached Duplex With Swimming Pool, Gym And Private Cinema And 1 Room Bq",Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15227,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15228,Available Land,Ladipoe Latinwo Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15229,Dry Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15230,3bedroom Flat,Lekki Phas1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15231,Luxury 5 Bedroom Fully Detached Duplex Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15232,3 Bedroom Apartment With Bq,2nd Tollgate Lekki Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +15233,Luxury 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15234,2 Bedroom Flat,Meadow Hall Road Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +15235,Luxury 4 Bedroom Detached House With Bq,Idado Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15236,3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"42,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikota +15237,4 Bedroom Terrace Duplex In Ikate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets,Ikate +15238,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool & Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15239,5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15240,Fully Detached 4 Bedroom Duplex With Bq,Oral Estate Oral Estate Lekki Lagos,₦,"123,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +15241,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15242,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +15243,4 Bedrooms Duplex,Ayigor Street. Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +15244,4bedroom Terrace Duplex,Lekki Gardens Ajah Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,5 baths,6 Toilets,Other Lekki +15245,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikota +15246,5bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +15247,6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +15248,Newly Built 3 Bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15249,Luxury 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +15250,Beautifully Located 50 Plots Of Bare Land,Chevron Drive Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15251,Luxury 3 Bedroom Apartment With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15252,5 Bedroom Duplex,Chevron Road Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15253,5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +15254,Well Maintained 4bedroom Semi Detached With Bq,Lekki Garden Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15255,Tastefully Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +15256,Luxurious Four Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,1, beds, baths, Toilets,Ikota +15257,Atlantic Ville Estate, Vgc Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets,Victoria Garden City +15258,5 Bedroom Duplex,Chevy View Extreme Lekki Roundabout Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15259,Newly Built 5 Bedroom Detached Duplex,Agungi Road Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +15260,5 Bedroom Terrace,Chevron Link Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +15261,Newly Built Four Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +15262,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +15263,4 Bedroom Duplex,"Mega Chicken, Ikota Lekki Lagos Ikota Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15264,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15265,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +15266,1 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,2 baths,2 Toilets,Other Lekki +15267,3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15268,Super Spacious Decent 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +15269,1 Bedroom Maisonette,"Osapa, Lekki Osapa London Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15270,Brand New 4bedroom Fully Detached Duplex,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +15271,Massive 5 Bedroom Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15272,2 Bedroom Flat,Kusenla Chisco Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15273,Dry Land For Sale In Ologolo Lekki 375sqr For Cheap,Mini Estate In Ologolo Ologolo Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Ologolo +15274,"Luxury 5 Bedroom Fully Detached Duplex In Lekki 1 With Pool , Gym And Cinema",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +15275,A Neatly Finished 4bedrrom Semi Detached Duplex In An Estate Orchid,Orchid Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15276,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15277,Luxury Built 5 Bedroom Fully Detached Duplex For Sale,Orchid Road By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15278,2 Plots Of Land,Ologolo Lekki Lagos,₦,"50,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +15279,Land,Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15280,"5bed Water Front Property Swimming Pool,automated Sky Roof Etc",Northernforshore Estate Chevron Lekki Lagos,₦,"300,000,000",1,1,1, beds, baths, Toilets,Chevron +15281,4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15282,4bedroom Semi Detached Duplex,Lekki Lagos,₦,"61,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +15283,Four Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,4 baths,6 Toilets,Ologolo +15284,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15285,"Land Of 1,215sqm",Ologolo Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +15286,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15287,Newly Built Three Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"31,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +15288,Elite Genesis Estate Shoprite Sangotedo Lagos Business School Sangotedo Lekki Phase 1 Lekki Lagos,Shoprite Sangotedo Lagos Business School Sangotedo Lekki Phase 1 Lekki Lagos,₦,"17,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15289,Lovely Distress Sale 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"35,000,000",1,1,1,4 beds,5 baths,4 Toilets,Ikota +15290,Luxury 3 Bedroom Flat With Servant Quarters 40% Initial (off Plan),Nicon Town Lekki Lagos,₦,"59,500,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +15291,Newly Built Tastefully Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15292,Dry Land Of 450sq.m Per Sqm With C Of O,Ikota Vlila Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets,Ikota +15293,Luxury 2 Bedroom Flat Apartment,Lekki County Ikota Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +15294,A Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +15295,5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +15296,Newly Built 3bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,4 Toilets,Ikate +15297,5 Bedroom Detached Duplex With Bq Going 170m One Units Left,"Ikate, Lekki Ikate Lekki Lagos",₦,"170,000,000",0,0,0, beds, baths, Toilets,Ikate +15298,5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15299,5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +15300,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15301,Newly Built 4 Bedrooms Terrace Duplex,Lekki Conservative Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15302,"1 Unit Of 4bedroom Terrace Off Admiralty Way, Lekki Phase 1. Asking Price: 140m (slightly Negotiable)",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15303,669 Sqms Of Land,Sea Breeze Estate Ologolo Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Ologolo +15304,5 Bedroom Duplex,"Oba Elegushi, Lekki Ikate Ilasan Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +15305,Phoenix Estate Abraham Adesanya,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15306,Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Idado Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,6 Toilets,Other Lekki +15307,Exquisitely Finished 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15308,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15309,Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +15310,Lovely 5 Bedroom Detached Duplex With 2bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15311,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15312,5bedroom Duplex,Lekki Lagos,₦,"130,000,000/year",0,1,1,5 beds,5 baths, Toilets,Other Lekki +15313,Luxurious 4bedrooms Fully Furnished Terrace Duplex On 2floors,Abiola Court Chevron Alternative Route Lekki Lagos Chevron Lekki Lagos,₦,"115,000,000",1,0,1,4 beds,4 baths,5 Toilets,Chevron +15314,A Luxury Tastefully Finished 4 Bedroom Apartment..,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +15315,5 Bedroom Fully Detached Class Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +15316,Massive 5 Bedroom Duplex,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15317,Fully Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +15318,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +15319,2 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +15320,2 Units Of 5 Bed Fully Detached With Two Bqs Each Fitted Kitchen Wardrobes In The Rooms All Rooms En Suite At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15321,4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +15322,6units Of Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +15323,Nice And Standard Ready To Build Quarter Plot Of Land,"Serene, Secure And Cozy Estate Shoprite Road Osapa London Lekki Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15324,Newly Built Five Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +15325,4 Bedroom Fully Detached Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +15326,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +15327,5bedroom Terraced Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15328,1200sqm Of Land,Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15329,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15330,1 Acre Of Land,Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15331,3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +15332,Luxury 5 Bedroom Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +15333,5 Bedroom Semi Detached Duplex,Off Gbangbala Road Ikate Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +15334,Magnificent 5 Bedroom Duplex With Bq,Ikate Elegushi Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15335,Luxury 4 Bedroom Duplex And 1 Room Bq,Off Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +15336,1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +15337,4 Bedroom Semi Detached Smart House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +15338,5 Bedroom Duplex With 2 Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15339,4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets,Chevron +15340,Luxury 4 Bedroom Fully Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +15341,4 & 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikota +15342,Magnificent 5 Bedroom Duplex,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15343,Highly Improved Terrace Unit Of 4bedroom In A Prototype Fully Serviced Upscale Residential Estate.,Beach Resort Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15344,3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15345,Water Front 2 Bedroom Maisonette,Elegushi Beach Ikate Lekki Lagos,₦,"48,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets,Ikate +15346,900sqm Plot Of Land,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15347,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15348,946sqm Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15349,"2,400sqm Land",Lekki Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15350,3 Bedroom Apartment With Water View,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15351,"10,000sqm Vacant Land Plot With Governor's Consent",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15352,5 Bedroom Duplex,S Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15353,Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +15354,5 Bedroom Semi Detached + Bq House,Admiralty Way Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15355,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +15356,Beautiful 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +15357,Luxury 6 Bedroom Duplex In Serene Neighbourhood With Open Terrace,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,1,6 beds,6 baths,7 Toilets,Lekki Phase 1 +15358,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +15359,Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ileja Ajah Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15360,6 Bedroom Fully Detached Duplex With 2 Room Bq,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +15361,1 And 2 Bedroom Apartment @de Castle Max,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,2 baths,2 Toilets,Lekki Phase 2 +15362,5 Bedroom Mansion,Northern Foreshore Chevron Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15363,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15364,5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15365,4 Bedroom Terrace Duplex With Boys Quarters,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15366,4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15367,3bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +15368,A 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15369,4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15370,4 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"18,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +15371,5 Bedroom Detached House Plus 2 Bedroom Bq,Fola Daniel Close Off Hakeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +15372,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15373,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +15374,Block Of Flats For Sale,"Off Expressway, Osapa Lekki Phase 1 Lekki Lagos",₦,"345,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15375,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +15376,4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +15377,Spacious 4 Bedroom Terraced Duplex,By Osapa Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15378,Luxury 4 Bedroom Fully Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +15379,Luxury 4 Bedroom Semi Detached Duplex,By Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"3,500,000/year",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15380,1300sqm Land Fenced And Gated,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets,Ologolo +15381,Luxury 4 Bedroom Penthouse With Bq In Ikate,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15382,2 Bedroom Flat,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +15383,7 Centrale Residences,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15384,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +15385,Land,Lekki Lagos,₦,"22,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15386,940sqm Plot Of Land,Off Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15387,Newly Built 4 Bedroom Semi Detached,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15388,Newly Built 4 Bedroom Terraced In A Serene Neighbourhood,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15389,A 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"44,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets,Ikate +15390,2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +15391,4 Bedroom Penthouse With Bq,Platinum Way Behind Pinnock Beach Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15392,Luxury 4 Bedroom Duplex,Off Agungi Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15393,Offplan 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +15394,5 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15395,Luxury 5 Bedroom Duplex With Bq,By World Oil.filling Station Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15396,Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15397,Water Front 2 Bedroom Penthouse,Elegushi Beach Ikate Lekki Lagos,₦,"58,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets,Ikate +15398,6 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +15399,"4 Bedroom Terrace, Semi Detached And Detached Duplexes @de Castle Max",Orchid Lekki Phase 2 Lekki Lagos,₦,"63,100,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +15400,Luxury 4 Bedroom Fully Detached Duplex,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15401,Water Front 1 Bedroom Studio Apartment,Elegushi Beach Ikate Lekki Lagos,₦,"33,000,000",0,1,0,1 beds,0 baths,0 Toilets,Ikate +15402,Luxury 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15403,Newly Built 4bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15404,A Block Of 9units 3 Bedrooms + 2units 2 Bedroom Ensuite Flats,Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15405,4 Bedrooms Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15406,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +15407,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +15408,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +15409,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +15410,Luxury 4 Bedroom Fully Detached Duplex,By Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15411,3 Bedroom Flat With Maid Room,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +15412,4 Bedroom Semi Detached House,Near Pinnock Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15413,Luxury 5 Bedroom Duplex For Sale,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15414,4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15415,900sqm Land In Lekki,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15416,2.018 Hectares Fenced & Gated Dry Vacant Land,Facing Expressway Vgc Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +15417,Magnificent 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +15418,Magnificent 5 Bedroom Duplex,By Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15419,4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15420,433sqm Land, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15421,4 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +15422,Magnificent 4 Bedroom Duplex With Excellent Facilities,Off Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15423,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +15424,4 Bedroom Maisonettes With A Room Boys Quarter,Richmond Gate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +15425,2 Bedrooms Apartment Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"53,105,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15426,900sqm Plot Of Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15427,4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15428,"2,3 And 4 Bedroom Maisonette And Pent House",Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +15429,970 Square Meters Land, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15430,Luxury 4 Bedroom Semi Detached Duplex With Bq,By Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15431,2 Bedroom All Ensuite Apartments,Ologolo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +15432,Newly Built 5 Bedroom Fully Detached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15433,Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15434,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15435,1880sqm Genuine Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15436,Luxury 5 Bedroom Semi Detached Duplex,At Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15437,Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15438,4 Bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +15439,Luxury 4 Bedroom Semi Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +15440,Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15441,4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +15442,Newly Built 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,2 baths,0 Toilets,Lekki Phase 1 +15443,Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15444,30 Million Naira Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +15445,Luxury 5 Bedroom Duplex In A Serene Environment,"Cown Estate, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15446,9 Plots Of Land,Agungi Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +15447,Choice Residential Plot Measuring 500 Square Metres,"Beach Resort Estate, Behind Nicon Town, Osapa Osapa London Lekki Lagos",₦,"180,000,000",1,0,0, beds, baths, Toilets,Osapa London +15448,"1,022sqm Land", Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15449,922 Square Meter Land, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15450,Newly Built 4bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15451,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +15452,3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15453,Newly Built 4 Bedroom Duplex In A Serene Neighbourhood,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15454,648sqm Plot Of Land In A Prime Location,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15455,2 Units Of Brand New Luxury 5bedroom Terraces + Bq,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +15456,Newly Built 4bedroom Terraces At Ikota Gra Lekki Lagos,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets,Ikota +15457,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +15458,5 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +15459,Lovely 5 Bedroom Bedroom Detached House With Bq,Megamond Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +15460,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15461,Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15462,3 Bedrooms Terraced Building,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +15463,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +15464,Estate Land,Ikate Lekki Lagos,₦,"210,000/sqm",0,0,0, beds, baths, Toilets,Ikate +15465,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +15466,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +15467,Nice 4 Bedroom Terraced House,Chevron Lekki Lagos,₦,"5,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +15468,Luxury 3 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +15469,3 Bedroom With A Boys Quarter,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +15470,Affordable Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15471,3bedroom Serviced Flat,Eleganza Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +15472,4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +15473,Luxury 3 Bedroom Flat With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15474,5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15475,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15476,Newly Built 4 Bedroom Duplex In A Serene Neighbourhood,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +15477,Water Front 3 Bedroom Penthouse With Bq,Elegushi Beach Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +15478,4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15479,4 Bedroom Semi Detached House With A Bq Located Within A Conducive And Serviced Estate In Ilasan Lekki.,Ilasan Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +15480,Water Front 4 Bedroom Penthouse With Bq,Elegushi Beach Ikate Lekki Lagos,₦,"88,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets,Ikate +15481,3bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,5 baths,5 Toilets,Ikate +15482,5bedroom Detached Duplex,Orchid Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +15483,Luxury 4 Bedroom Semi Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +15484,2 Bedroom Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +15485,3 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +15486,Beautiful 4 Bedroom Terraced Duplex,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15487,Magnificent 5 Bedroom With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15488,Magnificent 5 Bedroom With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15489,Comfortable Fully Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +15490,Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15491,36 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +15492,36 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +15493,An Old 3 Units Of 3 Bedroon Terrace,Road 3 Vgc Lekki Lagos,₦,"350,000,000/sqm",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +15494,Luxury 3 Bedroom And 1 Room Bq,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15495,Luxury 4 Bedroom Semi Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +15496,Magnificent 5 Bedroom Semi Detached Duplex,By House On The Rock Ikate Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +15497,Beautifully Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +15498,Luxury 5bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15499,5 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,7 baths,7 Toilets,Chevron +15500,Studio Apartment, Lekki Lagos,₦,"43,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +15501,Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15502,A 4 Bedroom Maisonette +bq, Ikate Lekki Lagos,₦,"95,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets,Ikate +15503,2 Bedroom Penthouse,Bloom Heaven Residences Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +15504,Luxury 2 Bedroom Flat,Off Agungi Road Agungi Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets,Agungi +15505,3 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15506,Land,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15507,4 Bedroom Semi Detached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15508,5 Bedroom Fully Detached Duplex,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15509,"1,022 Square Meter Of Land",Lekki Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15510,Luxury 4 Bedroom Duplex,Ikota Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15511,"Luxury 5 Bedroom Duplex With Swimming Pool, Cinema And A Bq",Lekky County Homes Ikota Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +15512,904sqm Plot Of Land,Off Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15513,5 Bedroom House,Igbo Efon Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +15514,4 Bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +15515,5 Bedroom Detached Duplex,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +15516,4 Bedroom Detached Duplex,Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15517,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15518,7 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +15519,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +15520,2 Bedroom Apartment,Harris Drive Vgc Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Garden City +15521,4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +15522,Luxury 4 Bedroom Semi Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +15523,2000sqm Serviced Land Plot,Twin Lakes Estate Chevron Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15524,1880sqm Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15525,Iconic 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15526,"12 Bedroom Duplex On 1400sqm Suitable For Cooperate Office, Hospital, Airbnb, Guest House, School.",Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15527,Newly Built 5 Bedroom Detached Duplex In A Secured Environment,Lekki County Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +15528,Luxury 5 Bedroom Fully Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"120,000,009",0,1,1,5 beds,5 baths,6 Toilets,Victoria Garden City +15529,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15530,4 Bedroom With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +15531,Fully Finished 3bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15532,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +15533,4 Bedrooms Detached House,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15534,6 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +15535,5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15536,Newly Built 5 Bedroom Semi Detached Duplex In A Secured Environment,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +15537,Luxury 4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +15538,Luxury Terraced 2 Bedroom Flat,Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +15539,Prototype Semidetached Unit Of 4 Bedroom Ensuite With Quarter's,"Shell Coop East Village, Beach Resort Estate, Directly Behind Nicon Town, Osapa London, Lekki Osapa London Lekki Lagos",₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +15540,Studio Apartment (off Plan),Ikate Lekki Lagos,₦,"33,500,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +15541,"1,270sqm Land",Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15542,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +15543,"Exquisite Detached House Of 5bedroom Ensuite, Home Theater Room, Infinity Pool And Contemporary Kitchen Finish On Three Floors In A Reserved Neighbourhood In Lekki Phase One",Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15544,6bedroom Contemporary Fully Detached Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,7 beds,8 baths,8 Toilets,Osapa London +15545,Newly Built 4 Bedroom Semi Detached And Terraced Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15546,Luxury 5 Bedroom Fully Detached Duplex,Off Kusenla Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15547,Luxury 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +15548,Luxury 5 Bedroom Duplex With 2 Room Bq,Chevron Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +15549,Luxury 6 Bedroom Fully Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"220,000,000",0,1,1,6 beds,6 baths,7 Toilets,Agungi +15550,Luxury 4 Bedroom Duplex,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"8,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15551,Luxury 4 Bedroom Fully Detached Duplex,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15552,3 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +15553,5 Bedroom Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15554,Luxury Land In Orchid Road Lekki,Ikota Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Ikota +15555,Land,"By Far Park, Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +15556,Luxury 4 Bedroom Terraced Duplex With Swimming Pool,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15557,A Plot Of Land,Northern Fourshore Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15558,Exquisite Detached House Of 5 Bedroom Ensuite,"Beach Resort Estate, Behind Nicon Town, Jakande Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +15559,"1,400sqm Land",Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15560,New And Tastefully Finished 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +15561,Cove Towers Apartment,Lekki Phase 1 Lekki Lagos,₦,"22,050,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15562,Luxury 3 Bedroom Apartments With 1 Room Bq .,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15563,Newly Built 3/4 Bedroom Maisonette,House Of The Rock Cathedral Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +15564,Distress Sale Of A 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikota +15565,"1,100sqm Land With Demolishable/renovatable Commercial Building Suitable For Shortlet Apartments, Hotel, Office Complex",Lekki Phase 1 Lekki Lagos,$,"1,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +15566,Luxury 4 Bedroom Semi Detached Duplex With Bq,Victoria Nest Estate Chevron Lekki Lagos,₦,"95,000,000",1,0,0,4 beds, baths, Toilets,Chevron +15567,"17,500 Prime Development Plot", Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15568,Luxury 4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15569,One Bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +15570,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +15571,4 Bedroom Terraced Duplex With A Maids Room,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15572,5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15573,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15574,Luxury 4 Bedroom Duplex,Ikota Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15575,2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15576,5 Bedroom Fully Detached With Excellent Facilities,By Lagos Business School (lbs) Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15577,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15578,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +15579,4 Bedroom Apartment,Maruwa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15580,4 Bedroom Detached House,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15581,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15582,5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15583,5bedroom Fully Detached Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +15584,Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15585,Serviced 4 Bedroom Semi Detached Duplex,"Primewaters Gardens 2, Ikate, Lekki. Ikate Lekki Lagos",₦,"95,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +15586,One Bedroom Apartment,Ikate Lekki Lagos,₦,"33,500,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +15587,4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +15588,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +15589,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15590,5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15591,Luxury 5 Bedroom Fully Detached Duplex,Lekki Palm City Vgc Lekki Lagos,₦,"120,000,009",0,1,1,5 beds,5 baths,6 Toilets,Victoria Garden City +15592,5 Bedrooms Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +15593,2 Bedroom Apartment No Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +15594,2 Bedroom Penthouse Apartment @godmade Connect Court 3 Ikate,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +15595,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +15596,1147 Sqms Land, Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15597,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,$,"1,110,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15598,5 Bedroom Flat,Chevron Lekki Lagos,$,"360,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +15599,Tastefully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15600,Luxury 5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +15601,Decently Finished 4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +15602,&well Spaced 4 Bedroom Fully Detached Duplex With Bq.,Osapa London Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +15603,Newly Built 5 Bedroom Terrace Apartment,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +15604,3 Bedroom Apartment,Lekki Lagos,₦,"97,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Lekki +15605,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +15606,5 Bedroom Fully Detached Duplex With Pool,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,4 baths,3 Toilets,Other Lekki +15607,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +15608,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +15609,5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15610,A Residential Plot Measuring 1388.49sqm,Olawale Cole Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15611,690sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15612,4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15613,4 Bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15614,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15615,3bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +15616,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15617,Well Designed Spacious 4 Bedroom Terrace With A Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15618,Amazing 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15619,5 Bedroom Duplex,Lekky County Homes Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15620,Exquisite 4 Bedroom Maisonette,Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +15621,8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15622,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +15623,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15624,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15625,4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15626,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15627,Stunning 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15628,2 Bedroom Terraced Duplex,2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15629,Upscale 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15630,Beautifully Designed 5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15631,Lovely 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15632,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15633,6 Units Of 3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15634,4 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15635,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +15636,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15637,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +15638,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15639,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15640,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15641,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15642,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15643,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15644,Bare Land,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15645,Outstanding 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15646,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15647,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15648,Elegant 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15649,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15650,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15651,5 Bedroom Fully Detached House With 1 Room Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15652,Beautiful 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15653,Very Lovely 4 Bedroom Semi Detached Duplex With A Bq.,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15654,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15655,Exquisite 4 Bedroom Maisonettes With Excellent Facilities,Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15656,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15657,Well Finished & Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15658,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15659,Land,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15660,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15661,5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15662,Enthralling 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15663,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15664,5 Bedroom Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +15665,4 Bedroom Terrace Duplex,"Victory Star Court 2 Ikota Gra, Lekki Ikota Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +15666,Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15667,Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15668,Magnificent 5 Bedroom Fully Detached Duplex With Swimming Pool.,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15669,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15670,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15671,Very Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +15672,Elegant 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15673,Available Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15674,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15675,4 Bedroom Detached Duplex With A Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15676,Well Finished Grand 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +15677,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15678,Contemporary 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15679,Elegantly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15680,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15681,Absolutely Magnificent And Spacious 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +15682,About 461sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15683,Lovely Finished 4 Bedroom Duplex With A Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15684,Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15685,1 Bedroom Apartment,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets,Osapa London +15686,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +15687,Stunning 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15688,"1,419sqm Land",Gbangbala Street Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15689,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15690,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15691,Executive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15692,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15693,Beautiful 5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15694,"5 Bedroom Detached Duplex With A Pool, Gym And Cinema",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15695,5 Bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,6 Toilets,Agungi +15696,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15697,Lovely 3 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +15698,Classic 5 Bedroom Duplex With A Bq And A Swimming Pool.,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15699,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15700,2400sqms Bareland,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15701,Available Land,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15702,Cute 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15703,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15704,4 Bedroom With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15705,Stunning 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15706,5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15707,1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15708,5 Bedroom Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15709,4 Bedroom Terrace Duplex With A Bq.,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15710,4 Bedrooms Terrace,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15711,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15712,915sqms Bareland,"Chris Maduweke, Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15713,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15714,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15715,Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15716,4 Bedrooms Terrace Duplex,Agungi Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +15717,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15718,Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15719,Magnificent 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15720,450 Sqms Bare Land,"Adedeji Street, Off Bisola Durosimi Etti Str Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15721,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15722,Upscale 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15723,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +15724,Brand New 5 Bedroom Detached House,Lekki Rhs (petrocam Axis) Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15725,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15726,Timeless 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15727,4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15728,5 Bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15729,4 Bedroom Semi Detached Duplex + Bq,Off Chevron Tollgate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +15730,Modern & Luxurious 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15731,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15732,4 Bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15733,Lustrous 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15734,Spacious And Well Finished 5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15735,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15736,2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15737,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +15738,5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15739,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +15740,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15741,4 Bedroom Terrace Duplex With A Pent House And A Bq,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15742,Land,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15743,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15744,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15745,Lovely 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15746,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15747,Brilliant 4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15748,"Immaculate, Beautiful 5 Bedroom Deluxe Duplex",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15749,4 Bedroom Terrace,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15750,5 Bedroom Duplex With A Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15751,Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15752,Exclusive 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15753,5 Bedroom Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +15754,5 Bedrooms Detached Duplex,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15755,5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15756,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15757,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15758,Newly Built 4 Bedroom Detached Duplex With A Spacious Driveway And A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15759,Available Lands,Melrose Park Estate Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +15760,808 Sqms Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15761,Delectable 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15762,1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000/month",1,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +15763,1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +15764,Fully Automated 5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15765,5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15766,Neat 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +15767,Upscale 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15768,5 Bedroom Contemporary Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15769,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15770,Offplan 4 Bedroom Terrace Duplex House For Sale At Vgc Lekki Lagos Nigeria,(shapata)* By Vgc Off Lekki Epe Express Road.drive Vgc Lekki Lagos,₦,"54,500,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +15771,4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15772,Available Land,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15773,5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki Conservation Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15774,Available Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15775,Lovely 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15776,Newly Constructed 5 Bedroom Terrace,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +15777,Beautiful 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15778,Luxury 2 Bedroom Apartments,Ilasan Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15779,3 Bedrooms Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +15780,Available Land,Pinnock Beach Estate Oral Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15781,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15782,2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +15783,4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15784,5 Bedroom Fully Detached Duplexes,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15785,4 Bedroom Terraced Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15786,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +15787,Contemporary 5 Bedroom Smart House Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15788,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15789,Available Land,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15790,Bare Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15791,5 Beddroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +15792,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15793,5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +15794,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15795,550sqms With A Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15796,Classy 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15797,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15798,Dazzling 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15799,Captivating 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,4 Toilets,Osapa London +15800,Ultramodern 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15801,Crisp 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15802,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15803,Regal 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15804,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15805,Spacious 5 Bedroom Semi Detached Home,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15806,Beautiful 4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15807,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15808,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15809,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15810,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15811,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15812,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15813,5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15814,4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15815,950sqms Land,V Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15816,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15817,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15818,Land,Ikate Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15819,Land,Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15820,Charming 4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15821,Available Land,Chevron Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15822,Enticing 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15823,4bedroom Terraced Duplex,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15824,4bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15825,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15826,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +15827,3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +15828,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15829,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15830,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15831,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15832,2 Bedroom Flat Fully Serviced,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +15833,Beautiful 5 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15834,5 Bedrooms Detached House,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +15835,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15836,Dazzling 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15837,Magnificent 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15838,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15839,Available Land,Ikota Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15840,4 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15841,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15842,Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15843,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15844,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15845,3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +15846,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15847,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15848,1bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +15849,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15850,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15851,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15852,Upscale 5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15853,Massive 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +15854,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15855,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15856,Spacious 4 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +15857,Stunning 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +15858,Stately 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15859,Dazzling 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15860,Dazzling 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15861,4 Plots Of Land,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15862,4 Bedrooms Semi Detached Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15863,4 Bedroom Semi Detached Duplex With An Ensuite Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15864,Luxurious 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15865,Glittering 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15866,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15867,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15868,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15869,Well Designed And Very Spacious 4 Bedroom Semi Detached Duplex With Fitted Kitchen., Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15870,5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15871,5 Bedroom Terrace,Elegushi Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +15872,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15873,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +15874,Astonishing 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15875,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15876,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +15877,Lovely 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15878,Spacious 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +15879,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15880,Available Lands,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15881,Awe Inspiring 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15882,5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15883,Enchanting 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15884,4bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15885,Soothing 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +15886,4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15887,500sqm Plot Of Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15888,2 Units Of 5 Bedroom Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15889,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15890,3 Bedroom Apartment With Communal Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +15891,"5 Bedroom Contemporary Detached Duplex,",2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15892,Massive 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"248,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15893,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15894,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15895,Available Land,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15896,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15897,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +15898,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15899,Exquisite 6 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +15900,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15901,Enthralling 5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15902,Sophisticated And Contemporary 5 Bedroom House,Off Bisola Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +15903,Lovely 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15904,4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15905,Brilliant And Well Finished 4 Bedroom Terrace With Smart Home Audio Visual Control,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15906,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15907,"Brand New And Tastefully Built 5 Bedroom Duplex, Fully Detached With 2 Rooms Bq.",Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15908,Available Land,Chris Madueke Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15909,"1,145sqm Land",Kusenla Road Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15910,Very Spacious 5 Bedroom Fully Detached Duplex With A Superb Finishing,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15911,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15912,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15913,Affordable Luxury 4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15914,Ocean View Estate Land For Sale,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"9,500,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +15915,5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15916,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15917,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15918,4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15919,4 Bedroom Penthouse,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15920,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15921,4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +15922,3 Bedroom + Bq (penthouse),Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +15923,950sqms Land,Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15924,Spacious And Well Finished 4 Bedroom Terrace Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15925,4 Bedroom Terrace Duplex With Spacious Rooms,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15926,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15927,5 Bedroom Duplex With A Swimming Pool And A Bq,Lekky County Homes Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15928,4 Bedroom Terrace Duplex In Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"53,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Chevron +15929,Lovely 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15930,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15931,6 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +15932,Spacious 4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +15933,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15934,4 Bedroom Maisonette,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15935,4 Nos Of 4 Bedroom Terrace + 2 Nos Of 3 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15936,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15937,3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +15938,4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15939,Contemporary 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15940,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15941,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15942,Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15943,Available Land,Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15944,Lovely 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15945,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15946,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15947,Striking 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15948,Brilliant 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15949,Spectacular 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15950,A Truly Magnificent 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15951,Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +15952,Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15953,Magnificent 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +15954,4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15955,1 Bedroom Apartment,Richmond Pearl Avenue Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15956,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +15957,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15958,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15959,Serviced 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15960,4 Bedrooms Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +15961,650 Sqms Land,Freedom Way Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15962,Land,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15963,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15964,Classic 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15965,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +15966,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15967,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15968,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +15969,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +15970,Unblemished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15971,Available Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15972,Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +15973,Alluring 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +15974,5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +15975,5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15976,Eye Popping 5 Bedroom Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15977,4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15978,Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +15979,Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +15980,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15981,650 Sqms Land,Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15982,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15983,640sqms Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +15984,4 Bedroom & 3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15985,5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +15986,5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +15987,350sqm Cornerpiece And Dry Land,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +15988,5 Bedroom Fully Detached Duplex With A Bq And A Very Spacious Compound,Jakande Axis Lekki Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15989,2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +15990,5 Bedroom With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15991,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +15992,5 Bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15993,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +15994,Beautifully Designed 4 Bedroom Furnished Detached Duplex,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +15995,Luxurious 5 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +15996,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +15997,Exquisite Luxury Finished 10years Mortgage Luxury 1bedroom Apartment,Lekki Lagos,₦,"15,400,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +15998,Spacious 5 Bedroom Semi Detached Duplex With A 2 Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +15999,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16000,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16001,3 Bedroom Maisonette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +16002,4 Bedrooms Terraced Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16003,"1,600sqm Land",Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16004,5 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16005,3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +16006,7 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +16007,Spacious And Well Finished 4 Bedroom Terrace,2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16008,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16009,4 Bedrooms Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16010,Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16011,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16012,Astonishing 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16013,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16014,Available Land,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16015,5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +16016,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16017,"Land For Sale Orchi, Chevron Lagos",Whales County Phase 2 Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +16018,5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16019,"1,000sqm Land",Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16020,Brilliant 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +16021,Super Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16022,1300 Sqms Land,Off Freedom Way Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16023,Brilliant 5 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16024,Beautiful 4 Bedroom Detached Duplex With A Bq.,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16025,Available Land,Cowrie Creek (n.l.n.g.) Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16026,5 Bedroom Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16027,Stunning 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +16028,4 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16029,Resplendent 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16030,Elegant 3 Bedroom Terrace,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,3 beds, baths, Toilets,Ikate +16031,Available Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16032,4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16033,1244sqms Cornerpiece,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16034,"1,990.68 M2 Bare Plot",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16035,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +16036,Spectacular 4 Bedroom Semi Detached Duplex A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16037,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16038,4 Bedroom Maisonette,Tunbridge Wells Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +16039,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16040,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16041,Very Spacious 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16042,4 Bedrooms Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +16043,Newly Built 4 Bedroom Terrace Duplex,"Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16044,1000sqms Bareland,"Olukayode Jacob, Off Olademeji Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16045,450sqms With Demolishable Structure,Off Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16046,Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16047,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16048,Available Land,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16049,4 Bedroom Semi Detached Duplex With A Room Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16050,Ultramodern 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +16051,5 Bedroom Detached Duplex,Off Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16052,Brilliant 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16053,4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16054,4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16055,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16056,Elegant 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16057,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16058,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16059,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16060,Spacious 5 Bedroom Detached Home,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +16061,5 Bedroom Fully Detached House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"205,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +16062,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +16063,Beautiful 4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16064,Stunning And Impeccable 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16065,4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16066,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16067,5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16068,Spacious 4 Bedroom Semi Detached Duplex With Fitted Kitchen.,Second Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16069,Available Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +16070,Resplendent 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16071,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16072,Exquisite 4 Bedroom Detached Duplex With A Bq,Lekki County Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16073,Iconic 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"163,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16074,4 Bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16075,Magnificent 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16076,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16077,"1,145sqm Land",Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16078,Luxurious 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16079,4 Bedroom Detached Duplex.,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16080,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16081,Elegantly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16082,4 Bedroom & 3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16083,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16084,Lovely 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16085,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16086,Available Land,Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16087,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16088,Tastefully Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16089,Available Land,William Onoh Street Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16090,5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16091,2 Bedroom Flat,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +16092,Super Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16093,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16094,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16095,Serviced 4 Bedroom Apartment With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16096,Stunning 5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16097,533sqms Cornerpiece Bareland,"Adedeji Street, Off Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16098,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16099,Land,Victory Park Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16100,Very Large And Spacious Five Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16101,4 Bedrooms Maisonette With Bq,Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16102,Available Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16103,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16104,Elegantly Built 5 Bedroom Detached House With A Swimming Pool And Bq,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16105,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16106,3456sqms Waterfront Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16107,Contemporary 3 Bedroom Apartment,Marwa Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +16108,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16109,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16110,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16111,Available Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16112,4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16113,Available Land,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16114,4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16115,Beautiful 5 Bedroom Detached Home,Orchid Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16116,Elegant 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16117,5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +16118,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16119,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16120,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16121,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16122,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16123,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16124,799sqms Land,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16125,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16126,Available Land,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16127,Spacious & Glittering 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16128,Very Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16129,Spacious 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16130,5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16131,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16132,Massive 5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16133,Contemporary 3 Bedroom Maisonette,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16134,Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16135,2002sqm Corner Piece,Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16136,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16137,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16138,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16139,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16140,5 Bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16141,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16142,Harmonious 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16143,5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16144,4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"118,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16145,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16146,Exquisite And Well Finished 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16147,Spacious 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16148,5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16149,Available Land,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16150,4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16151,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16152,2bedroom Maisonette,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +16153,Available Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16154,5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16155,4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16156,2 Bedrooms Terrace Apartment,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +16157,Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16158,Brand New 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16159,Brilliant 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16160,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +16161,5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16162,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16163,"5 Bedroom Detached House With A Swimming Pool, Bq",Lekki County Home Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16164,Fabulous 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16165,Enticing 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16166,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16167,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16168,Dope 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16169,Stunning 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16170,"Bare Land Measuring 1,121sqm",U3 Estate Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16171,970sqms Of Land,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16172,3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16173,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16174,Eye Catching 5 Bedrooms Detached House,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16175,Chic 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16176,4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16177,Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16178,4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16179,Spectacular 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16180,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16181,5 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16182,Spectacular 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16183,A Residential Plot Measuring 1388.49sqm,Olawale Cole Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16184,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16185,Available Land,Ayo Jagun Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16186,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16187,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16188,Waterfront & Executive 5 Bedroom Fully Detached Duplex With Swimming Pool.,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16189,Available Lands,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16190,Beautiful 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16191,Stunning 5 Bedroom Fully Detached Duplex With A Room Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16192,4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16193,Elegantly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16194,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16195,2bedroom Penthouse,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +16196,5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16197,4 Bedrooms Semi Detached Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16198,4 Bedroom Semi Detached Duplex With A Bq,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16199,3 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +16200,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16201,5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16202,Available Land,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16203,Sparkling 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +16204,"Luxurious, Stylish 4 Bedroom Semi Detached Duplex With Bq",Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16205,3 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +16206,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16207,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16208,Available Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16209,5 Bedroom Duplex With A Swimming Pool,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16210,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16211,Magnificent 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16212,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16213,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16214,Luxury Furnished Fully Detached 5 Bedroom With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16215,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16216,5 Bedroom With Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16217,4 Bedroom With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16218,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16219,Elegant 4 Bedroom Terrace With A Bq,Orchid Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16220,3 Bedroom Apartment,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +16221,Absolutely Stunning 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16222,4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16223,4 Bedroom Detached Duplex,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16224,Available Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16225,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +16226,4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"67,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16227,Available Land,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16228,"Spacious, Well Planned 7 Bedroom Duplex.",Ikota Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +16229,Decently Spaced Affordable 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16230,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +16231,Available Lands,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16232,4 Bedrooms Terrace,2nd Toll Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16233,Luxury Fully Serviced 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +16234,650sqm Land,Bakare Estate Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +16235,3bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +16236,Fully Serviced 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"47,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +16237,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16238,Stunning 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16239,Lovely 4 Bedroom Semidetached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16240,4 Bedrooms Terrace With Bq,Igbo Efon Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16241,Available Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16242,1100sqm Plot,Off Niyi Okunubi Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16243,Upscale 5 Bedroom Detached Home, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16244,Enthralling 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16245,5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16246,One Plot Of 700sqm Land,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16247,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16248,Brilliant 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16249,Available Lands,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16250,Contemporary 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16251,Available Lands,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16252,1147sqms Bareland,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16253,Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16254,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16255,Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16256,4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16257,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16258,Resplendent 3 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16259,2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +16260,Exquisite 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16261,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16262,Apartment Block With 9 Units Of 2 Bedroom Apartments,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +16263,2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +16264,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"33,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +16265,Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16266,5 Bedrooms Semi Detached Duplex,Off Admiralty Road Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16267,2 Bedrooms Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +16268,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +16269,4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16270,5 Bedroom Duplex With A Laundry Room And A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +16271,World Class 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16272,Land,Off Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16273,1180sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16274,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16275,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16276,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16277,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16278,Modern 4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +16279,Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16280,Enticing 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16281,4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16282,Captivating 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16283,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16284,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16285,4 Bedroom Townhouse With A Bq,Idado Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16286,3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16287,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16288,500sqm Bare Land,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16289,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16290,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16291,Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16292,Enchanting 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16293,Magnificent 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16294,4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16295,Upscale 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16296,3 Bedroom Apartment With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +16297,"Land For Sale At Ikate Elegushi, Lagos Nigeria","Ikate Elegushi, Lagos. Ikate Lekki Lagos",₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets,Ikate +16298,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16299,1180sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16300,Available Land,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16301,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16302,Exquisite 4 Bedroom Semi Detached Duplex A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16303,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16304,4 Bedroom Unique Townhouses,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16305,5 Bedroom Contemporary Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16306,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16307,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16308,5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16309,5bedroom Luxury Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16310,Charming 5 Bedroom Fully Detached Duplex A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16311,"5 Bedroom Duplex With A Bq, Swimming Pool, Library Room, Cinema, Gym",Lekky County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16312,Magnificent And Beautifully Structured 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16313,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16314,4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16315,Magnificent 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16316,1973sqms Land,Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16317,Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16318,Spacious 6 Bedroom Fully Detached Duplex With 2bq’s,Lekky County Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16319,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16320,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16321,Elegant 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16322,Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +16323,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16324,4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16325,Elegant 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16326,3 Bedroom Terrace Duplex,2nd Toll Gate Lekki. Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16327,6 Units Of Terrace Of 4bedroom & Bq,Ilasan Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16328,Land Measuring 800sqms,Seagate Estate Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16329,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16330,Dazzling 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16331,4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16332,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16333,5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16334,Magnificent And Spectacular 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16335,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16336,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +16337,Spacious 5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16338,Exquisite 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16339,Enchanting 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +16340,Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +16341,4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16342,3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +16343,4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16344,Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16345,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +16346,Breathtaking 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16347,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16348,Spectacular 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16349,Contemporary 3 Bedroom Apartment,Marwa Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +16350,4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16351,950sqms Land,Omorinle Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16352,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16353,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16354,Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16355,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16356,Magnificent 4 Bedroom Terrace With A Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16357,2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +16358,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16359,2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +16360,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16361,5 Bedroom Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16362,4 Bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16363,Spacious 5 Bedroom Fully Detached Duplex With A Room Boys Quarter,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16364,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16365,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16366,Breathtaking 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16367,Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16368,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16369,5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16370,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16371,"Brilliant, Spacious 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.",Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16372,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16373,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16374,Available Lands,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16375,Magnificent 5 Bedroom Jumbo Duplex,Lekki County Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16376,Beautiful 5 Bedrooms Fully Detached Duplex With Bq,Lekky County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16377,5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16378,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16379,3 Bedroom Terrace Duplex With A Sizable Room Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +16380,Land For Sale,Abijo Lekki Phase 2 Lekki Lagos,₦,"17,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +16381,Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16382,4 Bedroom Fully Detached Duplex With A Bq And A Spacious Compound,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16383,Welcoming 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16384,5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16385,Automated Unconventional 4 Bedroom Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +16386,Beautiful 4 Bedroom Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16387,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +16388,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +16389,Beautiful 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16390,Exquisite 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16391,Well Structured 4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16392,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16393,Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16394,"Fenced, Dry Land",Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16395,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +16396,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16397,Prime Land,African Lane Street Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16398,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16399,4 Bedroom Terrace Duplex With A Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16400,Stunning 4 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16401,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16402,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16403,Exclusive 4 Bedroom Semi Detached Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16404,4 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16405,Lovely 4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16406,Land,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16407,Exquisite 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16408,4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16409,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16410,4 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16411,Available Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16412,Amazing Bewitching And Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"54,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +16413,5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +16414,Beautifully Finished 4 Bedroom Terrace Duplex,Beautifully Finished 4 Bedroom Terrace Duplex Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16415,Lovely 4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16416,5 Bedroom Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16417,4bedrooms Semi Detached Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16418,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16419,Land,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16420,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16421,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16422,4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16423,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16424,4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16425,Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16426,4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16427,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +16428,5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +16429,4bedroom Terrace Duplex,"Primrose Court Estate, Orchid Road Chevron Lekki Lagos",₦,"53,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Chevron +16430,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16431,Available Lands,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16432,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16433,Land,Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16434,Available Land,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16435,"5 Bedrooms Detached House With A Big Swimming Pool, Massive Compound Space, Large Open Terrace","Pinnock Beach Estate, Osapa. Osapa London Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16436,Exquisite Luxury Finished 10years Mortgage Luxury 3bedroom Apartment,Lekki Lagos,₦,"41,100,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16437,Enchanting 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16438,Unmatched 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16439,5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +16440,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16441,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16442,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16443,3 Bedroom Maisonette,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +16444,Lovely 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +16445,5 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +16446,Fully Detached 4bedroom +bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16447,3 Bedroom Flat,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +16448,4bedroom Terrace Duplex In Orchid Lekki Lagos Nigeria,Orchid Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16449,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16450,2 Bedroom Flat, Jakande Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +16451,5 Bedroom Smart House With A Room Boys Quarter.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16452,5 Unite Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16453,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16454,Fully Automated 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16455,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16456,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16457,2 Plots Of Sandfilled Land,Ologolo Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16458,5 Bedroom Terrace Duplex,Living Spring Estate Lafiaji Off Orchid Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16459,4 Bedroom Terrace Duplex,Living Spring Estate Lafiaji Off Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16460,Full Plot Of Land,Full Plot Of Land At Atlantic View Estate Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16461,Massive Land,Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16462,5 Bedroom Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16463,"Automated Unconventional 5 Bedroom Detached House With Swimming Pool, Cinema, Gym And 2 Bqs", Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +16464,4bedroom Semi Detached Duplex With 2 Rooms Bq And Large Terrace,Alpha Bay Estate Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16465,Waterfront Bullet Proof Mansion With Jetty,Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,$,"7,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +16466,Newly Built Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16467,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +16468,New 4bedroom Semi Detached House,Ikota Gra Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16469,Contemporary 5bedroom Semi Detached,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16470,5 Bedroom Contemporary Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16471,Strategic Mixed Development Dry Bareland,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +16472,5 Bedroom Spacious Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +16473,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16474,5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16475,Land,Jakande Lekki Jakande Lekki Lagos,₦,"27,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16476,4 Plots Of Landed Property,Orchid Road By Cooplang Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16477,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +16478,Lovely 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16479,4 Bedroom Terraced House With Bq,Plot 35 Ladipo Omotesho Cole Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16480,Newly 5 Bedroom Luxury Duplex,Ologolo Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +16481,3 Bedroom Apartment,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16482,5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16483,Exquisitely Finished 4 Bedroom Terrace Duplex With Swimming Pool,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +16484,"Newly Built 6bedroom Duplex With Boys Quarter, The Boys Quarter Have Additional Bq",Pinnock Estate Phase 1 Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +16485,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16486,Distress 3 Bedroom Flat Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +16487,Tastefully Finished 2 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +16488,Tastefully Finished 3 Bedroom Flat Apartment With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16489,Spacious 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16490,Land,Cowrie Creek Estates Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16491,5 Bedroom Luxury Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +16492,4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16493,9 Plots Of Land,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +16494,Furnished 3 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,3 baths,4 Toilets,Agungi +16495,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +16496,12bedroom Duplex Sitting On 1400sqm,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +16497,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16498,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +16499,1 Bedroom Flat,Near Lekki Spar Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds, baths, Toilets,Ikate +16500,Very Clean 4bedroom Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +16501,Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16502,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +16503,Brand New 4 Bedroom Detached House With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16504,2plot Of Land Measure 1296 Sqm Going 195m Asking,Kunsola Road With Title Deed Of Assignment And Global C Of O Ikate Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets,Ikate +16505,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16506,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16507,"Magnificent 5 Bedroom Fully Detached Mansion With Cenima,open Terrace And Swimming Pool",Ajah Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16508,4 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16509,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16510,Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16511,5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16512,Tastefully Finished 3 Bedroom Flat Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16513,Tastefully Finished 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16514,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16515,6 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +16516,Brand New 5 Bedroom Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16517,4 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16518,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16519,Land,Kayode Animashaun Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16520,5 Bedroom Contemporary Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16521,Land,Lagos Business School Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16522,5 Bedroom Detached Duplex With Swimming Pool,2nd Lekki Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16523,4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +16524,5 And 4bedroom Detached Houses,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16525,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16526,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16527,3 Units Of 4 Bedroom Terrace,Off Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16528,Newly Built 6bedroom Detached House With Bq,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +16529,Brand New 4 Bedroom Terrace Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16530,2 Bedroom Flats,Near Lekki Spar Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +16531,6bedroom Terrace Duplex,Agungi Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Agungi +16532,Exquisitely Finished 4 Bedroom Terrace Duplex Is Located In A Fully Serviced And Secured Mini Estate,Second Toll Gate Lekki Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16533,Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16534,Lovely 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16535,Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16536,A Plot Of Land,"Lakeview Estate,orchid Road Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16537,Contemporary 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16538,Land,Cooplag Road By Living Spring Garden Estate Off Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16539,2 Bedroom Apartments,Cooplag Road Lafiaji Orchid Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +16540,4 Bedroom Semi Detached Duplex,Vgc Extension Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16541,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16542,Land,Living Spring Estate Lafiaji Off Orchid Rd Lekki Lagos,₦,"115,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16543,4 Bedroom Terrace With A Bq And Study Level,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16544,2 Bedroom Apartment,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"72,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +16545,4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16546,Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +16547,Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +16548,Luxury 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"29,000,000",0,0,0,1 beds,0 baths,0 Toilets,Chevron +16549,2 Units Of 3 Bedroom Flats,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16550,5 Bedroom Detached Duplex With Swimming Pool,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16551,2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +16552,Cornerpiece Land With Structure On It,Vgc Vgc Lekki Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +16553,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16554,5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +16555,4 Bedroom Penthouse Apartment With A Bq,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"272,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16556,5 Bedroom Fully Detached Home With 2 Bqs And A Study,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16557,4 Bedroom Semi Detached Duplex,Vgc Extension Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16558,A Tastefully Finished Brand New 3bedroom Flat,Off Freedom Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16559,"7bedroom Fully Detched Duplex(commercial Property), With Two Service Quarters",Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +16560,Newly Built Semi Detached Duplex,"Jakande, Lekki Jakande Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +16561,Brand New Luxurious 6 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"89,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +16562,8 Plots Of Land In A Very Good Location,Orchid Road Chevron Toll Gate Lekki. Chevron Lekki Lagos,₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +16563,5 Bedroom Fully Detached Duplex,Victoria Garden City Ikota Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +16564,4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +16565,Well Finished 4 Bedroom Duplex,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16566,Magnificent 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16567,5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16568,A Beautifully Built And Very Standard 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16569,Land,Ikate Lekki Lagos,₦,"250,000",0,0,0, beds, baths, Toilets,Ikate +16570,Newly Built 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16571,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ologolo +16572,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16573,Automated Standard 5 Bedroom Detached Duplex With 2bq,Ikate Lekki Lagos,$,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16574,Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16575,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16576,Decently Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16577,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16578,5 Bedroom Detached Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16579,Well Built 5 Bedrooms Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16580,4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16581,4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16582,6 Plots Of Land,Winhomes Estate Off Orchid 2nd Roundabout Lekki Lagos,₦,"37,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16583,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +16584,5 Bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16585,Lovely 4 Bedroom Terrace Duplex With A Room Bq Is Located In A Secured Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16586,6 Plots Of Landed Property,Lafiaji By Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16587,5 Bedroom Well Prepared Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16588,Luxurious 4 Bedrooms Semi Detached Penthouse Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16589,A Wing Of 4bedroom Duplex With 2room Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16590,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +16591,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16592,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +16593,Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16594,Very Good Land In Good Location,Cbd Road Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +16595,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Lekki +16596,Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +16597,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16598,5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Lekki +16599,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +16600,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +16601,4 Bedroom Newly Built Detached Duplex,Asapa London Lekki Lagos Osapa London Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +16602,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +16603,Fully Detached 3bedroom House,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +16604,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +16605,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"70,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +16606,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +16607,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +16608,Newley Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"74,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +16609,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,2 baths,2 Toilets,Other Lekki +16610,8 Hectares Of Land,Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 1 +16611,120 Plots Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16612,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Lekki +16613,"20,000 Sqms Land",Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16614,1000 Sqms Sandfiled Land,Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16615,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Lekki +16616,1000 Sqms Land,Lekki Phase 1 Lekki Lagos,₦,"210,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16617,Secured Land,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"50,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +16618,Land,Water Front Land Vgc Lekki Lagos,₦,"45,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +16619,1000 Sqms Land,Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"290,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16620,4 Bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16621,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16622,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16623,1079 Sqms Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16624,5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16625,4bedrooms Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16626,2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16627,900 Plots Of Land,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"70,000,000,000/day",0,0,0, beds, baths, Toilets,Victoria Garden City +16628,2 Bedrooms Apartments,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16629,4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16630,4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16631,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,2 baths,2 Toilets,Other Lekki +16632,4 Bedroom Terraced Apartment,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +16633,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Lekki +16634,3 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +16635,5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,2 Toilets,Other Lekki +16636,5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,2 Toilets,Other Lekki +16637,Luxury 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,2 baths,2 Toilets,Other Lekki +16638,Land,Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16639,3 Bedroom Apartment With Bq,Emcel Apartment Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +16640,2 Bedroom Apartment,Emcel Apartment Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +16641,Newly Built 4 Bedroom Detached House,Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +16642,4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16643,Newly Built 4 Bedroom Terrace Duplexes,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +16644,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16645,New 4 Bedroom Terrace Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +16646,5 Bedroom Detached House,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikate +16647,Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +16648,Newly Built 4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +16649,2 Bedroom Finished And Furnished Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000/sqm",1,1,1,2 beds,2 baths,2 Toilets,Lekki Phase 1 +16650,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,2 baths,2 Toilets,Other Lekki +16651,5 Bedrooms Apartment,"Mega Mound Estate, Lekki County Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16652,900sqm Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16653,4 Bedroom Fully Detached Duplex With Bq,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +16654,4 Bedroom Semi Detached Duplex,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +16655,2 Plots Of Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16656,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16657,4 Bedroom Townhouse,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16658,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16659,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16660,4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16661,4 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16662,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16663,4 Bedroom Terrace,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +16664,Newly Built 2 Bedroom Terraced Duplex,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"40,000,000/month",0,1,0,2 beds,3 baths,3 Toilets,Ikota +16665,9600sqm Land,Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16666,4 Bedroom Flat,"Chris Efuyemi, Off Omorele Johnson. Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"250,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16667,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16668,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16669,5bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16670,4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16671,4bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16672,4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16673,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16674,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +16675,5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16676,5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16677,6bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16678,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16679,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16680,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16681,3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16682,10 Plots Of Land,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16683,Serviced 3 Bed Apartment With Ample Parking Space,Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16684,Spacious 3 Bedroom Apartment With Ample Parking Space,Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +16685,Upscale 4 Bedroom Terraced Duplex With Swimming Area,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +16686,Spacious 3 Bedroom Semi Detached Duplex With Fully Fitted Kitchen,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16687,Serviced 3 Bedroom Apartment With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,4 Toilets,Lekki Phase 1 +16688,Newly Build 4 Bedrooms Terrace Duplex,Orchid Road/hardwood/drea World Chevron Lekki Lagos,₦,"65,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16689,656 Plots Of Land,Vgc Lekki Ajah Lagos Vgc Lekki Lagos,₦,"43,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +16690,Finished 5 Bedroom Detached Home,Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +16691,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +16692,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16693,Well Spaced 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +16694,Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +16695,Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +16696,Automated 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +16697,Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +16698,Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +16699,Luxury 5 Bedroom Detached Home,Ikota Gra Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +16700,Luxury 5 Bedroom Detached Home,Ikota Gra Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,5 Toilets,Ikota +16701,Luxury 5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,5 Toilets,Ikota +16702,Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +16703,5 Bedroom Duplex House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16704,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16705,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16706,Brand New 5bedroom Duplex With Bq And Excellent Facilities,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000/sqm",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +16707,Exquisitely Finished & Spacious 4 Bedroom Luxury Detached Duplex With Bq,Agungi Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +16708,Newly Built 5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"10,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +16709,Luxurious 4 Bedroom Terrace Duplex,Freedom Way Off Regional Road Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16710,Land,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16711,Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16712,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16713,Newly Built 5 Bedroom Flat,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,8 Toilets,Other Lekki +16714,5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16715,651sqm Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16716,5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16717,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16718,6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +16719,5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16720,10 Plots Of Land,Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16721,2 Plots Of Land,Hakeem Dickson Drive Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16722,5bedroom Semi Detached House,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16723,Plots Of Land,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16724,1200sqm Land,Between Blenco And Enyo Filling Station Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16725,1000sqm Land,Peninsula 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16726,4500sqm Land,Off Chibo Ofodile Road Lekki Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16727,10 Plots Of Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16728,520sqms Land,Omorine Johnson Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16729,"1,408sqm Land",Off T. F. Kuboye Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16730,"2,402.46sqm Land",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16731,9600sqm Land,Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +16732,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Palm City Estate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16733,Five Bedroom (5) Fully Detached Duplex Plus Penthouse With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets,Other Lekki +16734,5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16735,Luxury 4 Bedroom Terrace Duplex With Governor Consent,Victory Star Court Phase 2 Ongoing Duplex With Flexible Payment Plan At Ikota Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +16736,Luxury 4 Bedroom Semi Detached Duplex,Eleganza Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16737,Five (5) Bedroom Fully Detached Duplex With Penthouse And Indoor Swiwwing Pool In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,7 baths,7 Toilets,Other Lekki +16738,Luxury 3 Bedroom Penthouse,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"49,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +16739,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +16740,Land Periwinkle Estate,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +16741,2000sqm2 Land With Set Back,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16742,5 Bedroom Detached House,F Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +16743,2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikota +16744,100 Plots Of Land,Vgc Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +16745,Two (2) Bedroom Terrace Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets,Other Lekki +16746,Massive 5 Bedroom Fully Detached Duplex With Swimming Pool And Boys Quarter,Chevron Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16747,10 Plots Of Beach Front Land,Beach Front By Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16748,Luxury 5 Bedroom Fully Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,6 baths,6 Toilets,Victoria Garden City +16749,Exotic Four (4) Bedroom Terrace Duplex,Emcel Court With Flexible Payment Plan At Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +16750,Fully Smart 5 Bedroom Detached Duplex + Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,1,0 beds,0 baths,0 Toilets,Ikota +16751,Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16752,Land,Ilasan Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16753,Newly Built 2 Bedroom Flat,Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +16754,4 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +16755,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Right Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16756,Luxury 2 Bedroom Penthouse,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikota +16757,Luxurious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +16758,Newly Built 4 Bedroom Terrace,Marwa / Lekki Right Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16759,Luxury 4 Bedroom Terrace Duplex And Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16760,Luxury 3 Bedroom Terrace Duplex In A Prime Location,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +16761,Spacious And Luxury 4 Bedroom Fully Detached Duplex With Bq,Exquisite Furnished Duplex At Ikota Ville Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +16762,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +16763,Exotic 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +16764,2 Units Of 4 Bedroom Semi Detached Duplex,Greenland Estate Olokonla Sangotedo Ajah Lekki Lagos,₦,"75,000,000",1,1,1,8 beds,8 baths,8 Toilets,Other Lekki +16765,Fully Detached Four (4) Bedroom Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +16766,Luxury 4 Bedroom Fully Detached Duplex With Bq,Orchid Road. By Second Toll Gate Chevron Lekki Lagos,₦,"138,000,000",1,1,1,0 beds,0 baths,0 Toilets,Chevron +16767,Luxury 5 Bedroom Semi Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +16768,Luxury 3 Bedroom Massionate,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +16769,Luxury 5 Bedroom Fully Detached Duplex With Bq,"Creek Avenue Court Phase 3, Ikota Lekki Lagos",₦,"120,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +16770,Newly Built 2 Bedroom Serviced Apartment,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +16771,2 Bedroom Luxurious Apartment,Ikate Lekki Lagos,₦,"47,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +16772,4 Bedroom Duplex,Alfa Beach Road Igbo Efon Lekki Lagos,₦,"57,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16773,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16774,Luxury 2 Bedroom Terrace Duplex,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"49,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikota +16775,Exquisite Two (2) Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +16776,Luxury 4 Bedroom Semi Detached Duplex + Bq,"Creek Avenue Court Phase 3, Ikota Lekki Lagos",₦,"80,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +16777,Plot Of Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Chevron +16778,Luxury 4 Bedroom Massionate,Dunvale Court 5 Ongoing Project With Flexible Payment Plan At Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16779,4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16780,4 Bedroom Terraced Duplex Agungi,Agungi Agungi Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets,Agungi +16781,Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +16782,Luxury 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +16783,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +16784,Luxury 4 Bedroom Semi Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16785,Luxury Fully Serviced 2&3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +16786,Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +16787,Luxury 4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16788,Luxury 3 Bedroom Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"78,000,000",1,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +16789,Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +16790,4 Bedroom Terrace Duplex,Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16791,Massive 5 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Chevron Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +16792,64 Hecters Of Land (960 Plots),Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +16793,4 Bedroom Duplex,Vgc Lekki Lagos,₦,"555,000,000",0,0,1,5 beds,5 baths,6 Toilets,Victoria Garden City +16794,Newly Built 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +16795,4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +16796,Five (5) Bedroom Fully Detached Duplex With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,6 baths,6 Toilets,Other Lekki +16797,Luxury 3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +16798,"15,000 Square Metres",Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Ikota +16799,Exquisitely Built 4 Bedroom Terrace Duplex,Christabel Gardens Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16800,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ikota By Vgc Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16801,Newly Built 4 Bedroom Terrace Duplex,White Sand School Lekki Right Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16802,Luxury 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,4 baths,4 Toilets,Chevron +16803,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +16804,Luxury 3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +16805,Three (3) Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikate +16806,Furnished 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,3 Toilets,Ologolo +16807,Luxury 2 Bedroom Apartments,"Lekki Conservation, Lekki Lagos",₦,"40,000,000",0,0,1,2 beds,3 baths,3 Toilets,Other Lekki +16808,Luxury 2 Bedroom Flat,Baruwa Estate Spg Road Ologolo Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ologolo +16809,4 Bedroom Terrace Duplex (corner Piece),Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +16810,Luxury 2 Bedroom Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,3 baths,3 Toilets,Agungi +16811,Luxury 3 Bedroom Semi Detached Duplex,Amity Estate Pay And Pack In Duplex With Flexible Payment Plan At Sangotedo Ajah Lekki Lagos,₦,"51,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Lekki +16812,3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +16813,5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +16814,Luxury 5 Bedroom Fully Detached Duplex With Bq,Pay And Pack In Duplex At Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +16815,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ologolo +16816,Luxury 4 Bedroom Semi Detached Duplex With 2 Maids Quarters,Pay And Pack In Duplex At Victoria Garden City Vgc Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,6 baths,6 Toilets,Victoria Garden City +16817,Four (4) Bedroom Semi Detached Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +16818,4 Bedroom Terrace Duplex,"Creek Avenue Estate Phase 2, Ikota Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +16819,Four (4) Bedroom Semi Detached Duplex With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +16820,Newly Built 4 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +16821,Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16822,Plots Of Land In Pinnock Phase 1,Pinnock Phase 1 Jakande Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Other Lekki +16823,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +16824,5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +16825,Finished 5 Bedroom Detached,Lekki County Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16826,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +16827,Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +16828,Newly Built 3bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +16829,Land,Ocean View Estate Vopnucity Is Behind Eko Akete Lekki Peninsula Lagos Lekki Lagos,₦,"11,500,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16830,5 Bedroom Fully Detached Duplex,"Gbangbala Street, Ikate Lekki Lagos",₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16831,Magnificent 3 Bedroom En Suite Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets,Chevron +16832,New 5 Bedroom Terrace Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +16833,4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +16834,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16835,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16836,1000sqm Sand Filled Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16837,2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +16838,Spacious 1 Bedroom Mini Flat,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,1 Toilets,Chevron +16839,New 1 Bedroom Mini Flat,Idado Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Other Lekki +16840,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16841,1 Bedroom Mini Flat,Orchid Road Chevron Lekki Lagos,₦,"17,000,000",0,0,0,1 beds,1 baths,2 Toilets,Chevron +16842,Luxury 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16843,Newly Built 2 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +16844,4 Bedroom Detached House,Off Orchid Hotel Road By Eleganza Chevron Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +16845,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16846,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16847,4 Bedroom Terrace Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +16848,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16849,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +16850,Land,Abijo Gra Opp Corona School Lekki Lagos,₦,"16,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16851,Fenced And Gated Land In Estate,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16852,4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +16853,Fully Furnished 4 Bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +16854,Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +16855,5 Bedroom Semi Detached Duplex And Bq,Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +16856,4 Bedroom Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikate +16857,5 Bedroom Fully Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,0 Toilets,Other Lekki +16858,4 Bedroom Semi Detached Duplex And A Room Bq,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Agungi +16859,Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +16860,Luxury 3 Bedroom Apartment,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"55,000,000/sqm",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +16861,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +16862,4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +16863,Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16864,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +16865,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16866,Luxury Empire For Royal Magnificent Homes,Lekki Lagos,₦,"23,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16867,Newly Built 4 Bedroom Terrace With Bq,Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +16868,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16869,30 Square Metres Shop Space,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +16870,"Brand New 4 Bedroom Terrace With A Bq Located Within A Conducive And Serviced Estate In Lekki Phase 1, Lagos.",Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16871,Brand New Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Agungi +16872,5 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,0 Toilets,Other Lekki +16873,4 Bedroom Terrace Duplex With Bq,"Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +16874,5 Bedroom Fully Detached With Swimming Pool,Lekki County Home Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +16875,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16876,Affordable 4 Bedroom Terrace,Orchid Rd Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +16877,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16878,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +16879,5 Bedroom Fully Detached Duplex; Sited Within A High End Estate,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16880,A 4 Bedroom Semi Detached House,2nd Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +16881,"Contemporary, 5 Bedroom Fully Detached Duplex, With A Maids Room In An Exclusive Estate",Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16882,4 Bedroom New Terraces At Ikota Gra,Gra Ikota Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikota +16883,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16884,Newly Built 5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16885,Spacious And Newly Built 4 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16886,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16887,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +16888,4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16889,Newly Built 5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16890,Fantastic 2 Bedroom Flat,Ikate Lekki Lagos,₦,"67,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +16891,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +16892,Secure Land With C Of O,Alaro City Lekki Lagos,₦,"10,000,000/year",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +16893,5 Bedroom Semi Detached And Detached Houses,Pinnock Beach Estate Axis Agungi Lekki Lagos,₦,"82,000,000",1,1,0,5 beds,6 baths,6 Toilets,Agungi +16894,5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +16895,5bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +16896,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +16897,Luxury 1 Bedroom Mini Flat,Orchid Rd Chevron Lekki Lagos,₦,"21,000,000",0,1,0,1 beds,1 baths,2 Toilets,Chevron +16898,4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,6 Toilets,Victoria Garden City +16899,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16900,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16901,Luxury Executive 5bedroom Detached Duplex In A Serene Environment With Clean Water,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +16902,4 Bedroom Terrace,Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +16903,3 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +16904,Contemporary Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16905,Luxury Executive 2bedroom Apartment In A Secured Estate With Clean Water,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +16906,Nice 2bedroom Flat,Lekky County Ikota Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikota +16907,Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,1,1,2 beds,2 baths,2 Toilets,Ikate +16908,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16909,4 Bedroom Semi Detached Duplex,Agungi East Estate Agungi Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets,Agungi +16910,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16911,"Gorgeous, 5 Bedrooms Fully Detached Duplexes With An Ensuite Bq",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16912,4 Bedroom Semi Detached Duplex + Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets,Victoria Garden City +16913,Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +16914,4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,6 Toilets,Agungi +16915,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +16916,Nice 4 Bedroom Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16917,Newly Built & Exquisitly Finished 4 & 5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"95,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Agungi +16918,4 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +16919,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +16920,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +16921,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +16922,Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +16923,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +16924,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16925,4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16926,Demolishable Bungalow,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16927,Astonishingly Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,009",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16928,Soacious Well Finished To Detail 4bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16929,5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16930,6 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,8 Toilets,Ikate +16931,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16932,Greatly Built 2 Bedroom Terrace Duolex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16933,4 Bedroom Fully Detached Duplex With A Maid Room,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Victoria Garden City +16934,Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16935,5 Bedroom Fully Detached Duplex,Jora Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +16936,4 Bedroom Fully Detached Duplex,Thomas Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +16937,Luxury Executive 7 Bedroom Fully Detached Duplex In An Exclusive Estate,Nicon Town Lekki Lagos,₦,"400,000,000",1,0,0,7 beds,7 baths,8 Toilets,Other Lekki +16938,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16939,Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +16940,Brand New 4bedroom Fully Detached Duplex,Megamond Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,1, beds, baths, Toilets,Ikota +16941,Well Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16942,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +16943,5 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +16944,Newly Built 5 Bedroom Detached Duplex With A Pool, Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16945,Land,Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +16946,2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +16947,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +16948,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +16949,Newly Built 4 Bedroom Terrace Duplex By The 2nd Toll Gate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16950,4 Bedroom Terraces And Houses On Chevron Conservative,Conservative Opposite Chevron Office Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +16951,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16952,5 Bedroom Flat,Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +16953,5bedroom Fully Detached Duplex,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +16954,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +16955,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +16956,Newly Built 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +16957,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Conservation Centre Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16958,New 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +16959,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +16960,Newly Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +16961,5 Bedroom Detached Duplex,Osapa Landon Osapa London Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +16962,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16963,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +16964,Luxuriously Built 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Lekky County,"Lekky County Homes, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16965,"Contemporary, 5 Bedroom Fully Detached Duplex In An Exclusive Estate, Off Chevron Toll, Lagos.",Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +16966,5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +16967,3 Bedroom Flat,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +16968,5 Bedroom Fully Detached Duplex + Cinema + Pool,Lekki Phase 1 Lekki Lagos,₦,"335,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +16969,2 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,2 Toilets,Chevron +16970,5 Bedroom Fully Detached House/mansion,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16971,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +16972,4 Bedroom Fully Detached Mansion In Vgc Ajah,Vgc Lekki Lagos,₦,"550,000,000",0,0,0,4 beds,6 baths,6 Toilets,Victoria Garden City +16973,5 Bedroom Smart Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +16974,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +16975,Luxury 5bedroom Duplex With Bq,Southen View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +16976,120 Plots Of Land In Chevron Drive + Governor's Consent,Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Chevron +16977,Newly Built 2 Bedroom Fully Serviced Apartments,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets,Chevron +16978,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +16979,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +16980,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikate +16981,A Plot Of Land,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +16982,Contemporary 5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +16983,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +16984,4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +16985,3bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +16986,Greatly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16987,Land,Chevron Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +16988,A Plot Of Land,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +16989,8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16990,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +16991,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,0 Toilets,Other Lekki +16992,Beautifully Finished 4 Bedroom Semi Detached Duplex By 2nd Toll Gate,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16993,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +16994,Massive 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +16995,300 Sqm (half Plot Of Land) Available,Behind Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +16996,Executive 4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +16997,2 And 3 Bedroom Luxury Apartments,Right Side Closer To Enyo Filling Station Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets,Ikate +16998,Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +16999,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +17000,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17001,4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +17002,Executive 5 Bedroom Fully Detached Duplex,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +17003,Luxury Executive 4bedroom Terrace Duplex In An Exclusive Estate With Clean Water,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17004,4 Bedroom Townhouse Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17005,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +17006,Premium Luxury Executive 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17007,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17008,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17009,Luxury 4 Bedroom Terraced Townhouses W/ Bq,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17010,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17011,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +17012,Bedroom Semi Detached With Maid Room,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17013,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17014,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17015,4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +17016,Newly Built 4 Bedroom Maisonette Duplex By 2nd Toll Gate,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17017,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17018,Magnificent 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Vgc,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +17019,"Spacious, 4 Bedroom Fully Detached Duplex",Ikota Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17020,"Luxury Executive 4 Bedroom Apartment, In An Exclusive Estate",Idado Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17021,Newly Built 4bedroom Terrace House,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17022,4 Bedroom Terrace On 3 Levels, Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +17023,5bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +17024,Executive 5 Bedroom Fully Detached Duplex,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +17025,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +17026,Plots Of Land,Elegushi Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17027,Elegant 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Lekky County,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17028,Newly Built 5 Bedroom Detached Duplex With A Pool, Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17029,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17030,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +17031,5 Bedroom Fully Detached Duplex + Bq,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +17032,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17033,"5 Bedroom Fully Detached Duplex With Elevator, Swimming Pool.",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +17034,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17035,6 Bedroom Detached Duplex In Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds, baths, Toilets,Chevron +17036,Newly Built 3 Bedroom Apartment,Spar Road Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +17037,Newly Built 4 Bedroom Semi Detached Duplerl,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17038,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +17039,5 Bedroom Fully Detached Duplex With Open Roof Terrace,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +17040,4 Bedroom Fully Detached Duplex + Bq,Ikota Villa Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +17041,Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17042,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +17043,4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +17044,Brand New 4bedroom Detached Duplex With Bq,Oluwatoyin Street Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17045,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17046,Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17047,2 Bedroom Luxury Flats,Orchid Road By Cheron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +17048,Newly Built 5 Bedroom Terraced Duplex + Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17049,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Homes Ikota Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +17050,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +17051,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +17052,Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +17053,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +17054,4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +17055,5 Bedroom Fully Detached Duplex With Penthouse And Swimming Pool,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +17056,5 Bedroom Fully Automated With Cinema,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +17057,4 Bedroom Terrace Duplex With 1 Maid Room,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17058,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +17059,Spacious 1 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,1 baths,2 Toilets,Chevron +17060,Land,Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17061,Land,Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17062,Luxury 4 Bedroom Terraced Townhouses W/ Bq,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17063,5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +17064,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17065,Land,Igbo Efon Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17066,Exquisite 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +17067,4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +17068,5 Bedroom Fully Detached Duplex With Swimming Pool+ Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ologolo +17069,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17070,2 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17071,Land,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17072,Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17073,Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17074,The Woodland,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17075,3bedrooms Penthouse Apartment,Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17076,Land,Osapa London Lekki Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17077,4bedroom Detached House,Idado Lekki Idado Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +17078,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +17079,4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17080,7 Bedroom Detached House With Penthouse And 2 Kitchen,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,7 baths,8 Toilets,Ikota +17081,Luxury Serviced 4 Bedroom Duplex,"Off Jasmine Road, Ikota Gra Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +17082,1100 Square Metres Of Land,Osapa London Lekki Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17083,Skyz By Danube Homes,Lekki Lagos,$,"183,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17084,Luxury Built 6 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +17085,Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,1,1,2 beds,2 baths,2 Toilets,Ikate +17086,Gorgeous 5 Bedrooms Fully Detached Duplexes With An Ensuite Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17087,2 Bedroom Flat Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +17088,Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17089,Land,By Orchid Hotel Road/lafiaji Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17090,"Deluxe , 4 Bedrooms Semi Detached Duplex",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17091,Land For Sale On Chevron Drive Lekki Lagos,Madison Garden Gstate Chevron Lekki Lagos,₦,"200,000/sqm",1,0,0, beds, baths, Toilets,Chevron +17092,Newly Built 5 Bedroom Detached Duplex With Solar Batteries,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17093,4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +17094,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17095,Newly Built 4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +17096,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17097,Luxury 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +17098,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +17099,6 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +17100,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +17101,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17102,5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikate +17103,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +17104,"Newly Built 4 Bedroom Detached Duplex In Vgc Axis, Ikota",Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +17105,4 Bedroom Semi Detached Duplexes,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17106,5bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +17107,Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17108,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +17109,3bedrooms Terrace Available,Vgc Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +17110,Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17111,Executive 4 Bedroom Terrace Duplex,Eleganza Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +17112,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +17113,5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,7 Toilets,Chevron +17114,6 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets,Osapa London +17115,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +17116,4 Bedroom Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17117,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17118,5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,7 Toilets,Chevron +17119,5 Bedroom Fully Detached Duplex,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +17120,Contemporary 6 Bedroom Duplex In Lekki Phase One,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17121,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17122,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17123,2 Bedroom Serviced Apartment,Orchid Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Chevron +17124,4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +17125,Brand New 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets,Chevron +17126,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Ikate +17127,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +17128,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +17129,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +17130,Brand New 2 Bedroom Apartment,Lekki Conservation Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +17131,Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17132,4 Bedroom Terrace With Bq,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17133,Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17134,Land,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17135,1 Bedroom Ultra Modern Luxury Flats,"Off Freedom Way, Off Regional Road Lekki 1 Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,3 baths,3 Toilets,Lekki Phase 1 +17136,Land,Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17137,Land,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17138,Land,Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17139,4 Bedroom Semi Detached Duplex,"Adebisi Popoola Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +17140,5 Bedroom Fully Detached W/ Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +17141,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17142,Spacious 2 Bedroom Flat,Lekki Conservation Centre Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +17143,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17144,Newly Built 4 Bedroom Detached Duplex In Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17145,5 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +17146,4 Bedroom Terraced Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +17147,4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +17148,4bedroom Semi Detached Duplex Fully Furnished,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +17149,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17150,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17151,3 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17152,Furnished 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,2 beds,2 baths,3 Toilets,Chevron +17153,4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +17154,Luxury Executive 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17155,2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,0 Toilets,Lekki Phase 1 +17156,5 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +17157,Newly Built 4 Bedroom Semi Detached Duplex + Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +17158,680sqm Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17159,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17160,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17161,Brand New 4 Bedroom Finished Duplex,Oral Estate Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +17162,Contemporary 2 Units Of 5 Bedrooms Fully Detached Duplexes,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17163,Land,"Lekki Crest, Lekki Lekki Lagos",₦,"5,900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17164,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17165,Spacious 4 Bedroom Terrace Duplex,Lekki Conservation Centre Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17166,Furnished 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +17167,2 Bedroom Flat, Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +17168,5 Bedroom Semi Detached Duplex With A Room Bq,Agingi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,4 baths,5 Toilets,Agungi +17169,Newly Built Four(4) Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17170,4 Bedroom Semi Detached Duplex + Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,6 Toilets,Victoria Garden City +17171,Newly Built 2 Bedroom Flat,"Ikota Estate, Lekki County Ikota Lekki Lagos",₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +17172,Executive 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17173,Well Built Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +17174,Apartments,Lekki Lagos,₦,"48,500,000",0,0,0, beds, baths, Toilets,Other Lekki +17175,"4 Bedroom Fully Detached Duplex In Ikota Gra, Lekki",Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +17176,Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17177,660sqm Of Land,Royal Garden Estate Ajah Lagos Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17178,Land,Orchid Road Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17179,Land,Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17180,Exquisitely Finished 5 Bedroom Detached Duplex With Bq,"Lekki County Homes, Megamond Ikota Lekki Lagos",₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +17181,5 Bedroom Detached Home,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17182,5 Bedroom Fully Detached Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17183,Units Of 4bedroom Semi Detached With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17184,4bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,4 baths,5 Toilets,Chevron +17185,4 Plots Of Land,At The End Of Spg Road Ologolo Lekki Ologolo Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17186,5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17187,Luxuriously Finished 5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17188,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17189,6 Bedroom Fully Detached Duplex With Two Bq,Osapa London Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17190,5 Bedroom Fully Detached Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17191,Land,Lakeview Orchid Road By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17192,2 Plots Of Land,Towards The End Of Orchid Road By Second Toll Gate Eleganza Bus Stop Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17193,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17194,Hotel With 26 Rooms And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17195,Land,Orchid Road By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17196,Great 3bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17197,Luxury 3 Bedroom Terrace In A Lovely Location,Off Orchid Hotel Road. Beside Colplag Estate. Ikota Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikota +17198,Impeccable 5 Bedroom Fully Detached Duplexes With Maid’s Quarter,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17199,774.965sqm Dry And Sand Filed Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17200,New 3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +17201,Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17202,Executive 5 Bedroom Fully Detach Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +17203,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17204,Decently Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17205,Well Built Luxury 3 Bedroom Apartment,Western Foreshore Estate Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +17206,Lovely Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +17207,Land,Pinnock Beach Estate Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17208,Beautifully Finished 5 Bedroom Fully Detached House,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17209,4 Plots Of Land,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"272,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17210,Charming Executive Newly Built 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17211,Well Built Luxury 1 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Osapa London +17212,Estate Land,Along Spar Road Ikate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17213,Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,0 beds,5 baths,6 Toilets,Ikota +17214,Luxury 5 Bedroom Detched Duplex With A Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17215,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17216,5 Bedrooms Fully Detached Duplex With Swimming Pooland Bq For Sale,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets,Ikota +17217,Exquisitely Built 4 Bed Detached Duplex Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17218,Brand New 4 Bedroom Terraces With Communal Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17219,Lovely 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +17220,New Built 5 Bedroom Detached Duplex With A Bq In A Lovely Estate,10 Bakare Street Megamound Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17221,Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +17222,9 Bedroom Duplex With Boys Quarters And Security House,Nicon Town Lekki Lagos,₦,"420,000,000",0,1,0,9 beds,9 baths,9 Toilets,Other Lekki +17223,Land,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17224,1200sqm Land With 4 Units Town Houses,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +17225,5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17226,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17227,Dry Land,Victoria Garden City Lekki Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17228,"Solidly Built Serviced 3 Bed Apartment With Elevator, Swimming Pool",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +17229,Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17230,Newly 4 Bedroom Terrace Inside A Lovely Estate Beside Vgc Lekki,Harris Drive Vgc Lekki Lagos Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +17231,Newly Built 4 Bedroom Terrace Duplex With A Maid's Room/bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +17232,4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +17233,4 Bedroom New Terrace House, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17234,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +17235,Newly Built 3 Bedroom Terrace,Harris Drive Vgc Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,3 Toilets,Victoria Garden City +17236,Lovely 9 Bedroom Duplex Sitting On A 1000sqm Land Facing Nicon Town,Along Nicon Town Lekki Lagos Lekki Lagos,₦,"420,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Lekki +17237,4bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets,Ikota +17238,Luxurious 4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17239,Luxury Senetorial 5 Bedroom Detach Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17240,3bedroom Apartments In Banana Island,Lekki Lagos,₦,"450,000,000",1,1,0, beds,4 baths,4 Toilets,Other Lekki +17241,2 Plot Of Land For Sale At Orchid Road Beside Colplag Estate By Second Toll Lekki,Orchid Road By Second Toll Lekki Lagos Ikota Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Ikota +17242,2 Units Of 3 Bedroom Apartment Sitting On A 697.847sqms For Sale In An Estate In Chervon,Chervon Chevron Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Chevron +17243,4 Bedroom Duplex,Kazeem Street Off Alhpa Beach Road Igbo Efon Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17244,Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17245,Spacious 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17246,Plots Of Land In An Estate,Diamond Court Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17247,5 Bedroom Fully Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +17248,Land In A Serene Environment,Ikota Before Vgc Lekki Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17249,Brand New Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17250,Newly Built 4 Bedroom Terrace,Primrose Opposite Victoria Crest Orchid Road Lekki Ikota Lekki Lagos,₦,"52,500,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +17251,Exceptionally Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17252,Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17253,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +17254,Luxury And Spacious 5 Bedroom Semi Detached Duplex,"Petrocam Entrance Lekki Right, Close To Updc Estate Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17255,"Contemporary, 5 Bedrooms Fully Detached Duplex; With A Servant Quarter",2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +17256,Joint Venture Land Size: 4 Plots (648sqm Per Plot),Chervon Drive Before Ebeano's Store Chevron Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17257,Luxurious Finished 5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17258,Dry Land,Kazeem Abogun Off Alpha Beach Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17259,Newly Built Exquiste 5 Bedroom Furnished Fully Detached Duplex With A Bq,12 Ikota Villa Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +17260,Lovely 3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +17261,Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +17262,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17263,Dry Land,Chervon By Northern Foreshore Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17264,4 Plots Of Land,Along Spg Road Ologolo Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17265,5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17266,Lovely 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17267,4 Bedroom Semi Detached Duplex With A Bq,Off Alpa Beach New Road Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17268,Spacious 4 Bedroom Fully Detached With Bq Attached,Ikota Lagos Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17269,Brand New Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17270,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17271,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17272,Excellently Built 6 Bed Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +17273,Decently Finished 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17274,2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +17275,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17276,4bedroom Semi Detached Duplex+1bedbq,Western Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17277,Four Bedrooms Terrace Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17278,3bedroom Apartments In Banana Island,Lekki Lagos,₦,"450,000,000",1,1,0, beds,4 baths,4 Toilets,Other Lekki +17279,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17280,Tastefully Built 5bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17281,1500sqm Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17282,2 Plots Of Lands,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17283,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +17284,676sqm Of Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17285,Land In A Lovely Estate,Along Spar Road Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17286,4bedroom Pent House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17287,Lovely 6 Bedroom Fully Detached Carcass Sitting On 1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +17288,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17289,Land,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17290,Luxury And Modern 4 Bedroom Semi Detach Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17291,Land,Off Orchid Road By Coplaq Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17292,Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17293,Estate Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17294,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17295,Luxury Newly Built Units Of 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17296,Luxury 4 Bedroom Semi Detached Duplex,Abraham Adesanya Axis Lekki Scheme 2 Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17297,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17298,5 Bedroom Duplex With Swimming Pool,Chervon Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17299,Luxurious Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17300,Land,Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17301,4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +17302,5 Bedroom Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17303,Luxury 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +17304,Luxurious Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17305,Adorable Spacious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +17306,Spacious 4 Bedroom Fully Detached With Bq Attached,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17307,Luxurious Newly Built Finished 5 Bedroom Semi Detached Duplex,"Lekki Gardens Experience (private Site) Kusenla Road, Elegushi Lekki. Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17308,Exquisite 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17309,Newly Built Luxurious 4 Bedroom Terrace Self Compound,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17310,Luxury And Contemporary 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17311,Luxury 5 Bedroom Fully Detach Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +17312,3 Bedroom Apartment With A Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +17313,774.965sqm Dry And Sand Filed Land In A Gated Estate,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17314,5 Bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths,6 Toilets,Ikota +17315,Newly Built Luxury 4 Bedroom Semi Detach Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17316,Lovely 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +17317,5 Bedrooms Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +17318,3bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +17319,Dry Land In A Good Location,Beside Northern Foreshore Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Chevron +17320,Lovely 6 Bedroom Detached Duplex With Swimming Pool,Pinnock Beach Estate Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +17321,2 Plots Of Land,Ikota Gra Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17322,5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17323,Lovely And Spacious 7 Bedroom Fully Detached Duplex With A Swimming Pool,Nicon Town Lekki Lagos Nicon Town Lekki Lagos,₦,"620,000,000",0,1,0,7 beds,7 baths,8 Toilets,Other Lekki +17324,Exquisitely Finished 4 Bedroom Fully Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17325,Fully Furnished 6 Bedroom Fully Detached,"Western Foreshore Estate Beside Northern Foreshore Estate, Osapa London Lekki Lagos",₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +17326,Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +17327,4 Bedroom Terrace In A Mini Estate,Beacon Court In Igbo Efun Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Lekki +17328,Land,Behind Elevation Church Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17329,Decently Built 4 Bed Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17330,5 Bedroom Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +17331,10 Bedroom Detached Duplex,Chervon Chevron Lekki Lagos,₦,"650,000,000",0,1,0,10 beds,10 baths,10 Toilets,Chevron +17332,3 Bedroom Apartment With Bq,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +17333,Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq, Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17334,Spacious 5 Bedroom Detached Duplex With Boys Quarters,Pinnock Beach Estate Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17335,Charming 4 Bedroom Semi Detach Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +17336,Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17337,Four Bedroom Semi Detached Maisonette,Osapa London Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17338,Brand New 3 Bedroom Flats With Luxury Fittings,Near Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +17339,4 Bedrooms Fully Detached Duplex With Bq,S Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,5 Toilets,Osapa London +17340,5 Bedrooms Fully Detached Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +17341,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Service Quarter, Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17342,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17343,Newly Built And Charming 5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17344,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17345,5 Bedrooms Fully Detached Duplex With Swimming And Bq,S Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikota +17346,5bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17347,Lovely 5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,R Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17348,Fully Automated Smart 4 Bedroom Terrace,Olori Oyenike Oyelude Close Along Orchid Orchid Hotel After Chevron Toll Gate Lekki Lagos. Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17349,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17350,"Beautiful Architecture, 5 Bedrooms Fully Detached Duplex; With A Servant Quarter",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17351,Luxury 5 Bedroom Detached Duplex In A Posh Estate,Megamound Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0, beds,5 baths,5 Toilets,Ikota +17352,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +17353,Newly Built 4bedroom Town House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17354,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County By Megamond Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17355,Fully Serviced Decently Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17356,Lovely 2 Bedroom Apartment,Lamorh Estate Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +17357,Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Countu Ikota Lekki Lagos,₦,"78,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17358,Units Of 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +17359,Land,Wale Olateju Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17360,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki By Second Toll Gate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17361,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17362,Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17363,Brand New Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17364,Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Rooms Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17365,Luxury 4 Bedroom Detached Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17366,4bedrooms Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17367,Nice 5 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17368,5 Bedroom Fully Detached Duplex,Chervon Lekki Lagos Nigeria Chevron Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,5 baths,6 Toilets,Chevron +17369,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17370,Brand New Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +17371,Luxurious Units Of 5 Bedroom Fully Semi Detached,Orchid Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17372,Furnished Royal Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +17373,Exquisitely Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17374,Tastefully Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17375,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,4 Toilets,Osapa London +17376,Fully Serviced 2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17377,4 Bedroom Detached Duplex With A Room Boy's Quarter,Chervon Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +17378,Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17379,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +17380,8 Plots Of Land,Ogombo Road Abraham Adesanya Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17381,Luxurious 5 Bedroom Semi Detched Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17382,917sqm Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17383,Land,Towards The End Of Orchid Road Inside An Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17384,Land,Ogombo Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17385,Land,Victory Park Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17386,Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17387,Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17388,Newly Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17389,Land,Orange Island Phase 2 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17390,6 Bedroom Detached Duplex,Lovely Estate Inside Chervon Chevron Lekki Lagos,₦,"69,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +17391,650sqm Land,Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17392,4 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17393,A Studio Apartment In A Lovely Estate,Mgbamgbala Near Meldow Hall Ikate Lekki Ikate Lekki Lagos,₦,"32,500,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +17394,2100m2 Jv In Periwinkle Lekki Phase 1,Periwinkle Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +17395,Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17396,Lovely 5 Bedroom Detched Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikota +17397,600sqm,Lakeview Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17398,Land,Remi Olowude Street Lekki Right Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17399,Luxury Furnished 2 Bedroom Penthouse,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +17400,Luxury And Modern 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +17401,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +17402,Luxury Newly Built 4 Bedroom Fully Detach Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17403,Furnished Royal Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +17404,4 Bedroom Fully Detached Duplexes; With A Servant Quarter,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17405,4200sqm Coner Piece Land,"Ilaje Bus Stop, Mobile Road, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17406,5bedrooms Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikate +17407,Luxury 4 Bedroom Duplex,Jakande Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17408,5bedroom Fully Detached,Ilasan Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17409,Lovely 4 Bedroom Terrace Duplex With A Room Bq,R Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +17410,Lovely 2 Bedroom Terrace,Agungi Lagos Agungi Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +17411,Spacious 4 Bedroom Fully Detached With Bq Attached.,Ikota Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17412,Charming And Lovely 4 Bedroom Semidetached Duplex And 1 Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17413,5 Bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths,6 Toilets,Ikota +17414,Executive 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17415,Luxury Semi Detached Duplex,Lovely Estate In Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17416,6 Bedroom Fully Detached Duplex In Pinnock Beach Estate Osapa Lekki,Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +17417,Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17418,Luxurious 4 Bedrooms Semi Detached Penthouse Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17419,Lovely 9 Bedroom Fully Detached Duplex With Boys Quarters,Nicon Town Lekki Lagos,₦,"420,000,000",0,1,0,0 beds,9 baths,9 Toilets,Other Lekki +17420,Beautifully Built Luxury 4 Bed Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17421,Land,Ilasan Behind Elevation Church Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17422,Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17423,5 Bedroom Detached Duplex With A Swimming Pool,Lovely Estate Inside Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17424,Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17425,"5bedroom ,4bedroom Pantheon Smart Homes, Cheveron Lekki", Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17426,Land,Chevon Drive Beside Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17427,5 Bedrooms Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikate +17428,Landsize. 3300sqms,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17429,3bedroom Apartment,E Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,4 Toilets,Lekki Phase 1 +17430,Exotic & Luxury En Suite 4bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds,1 baths,5 Toilets,Chevron +17431,Newly Built 2 Bedroom Apartment,Ocean Palm Estate Near Meldow Hall Ikate Lekki Lagos,₦,"33,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +17432,Newly Built 5 Bedroom Semi Detached Duplex In A Good Environment,"Off Orchid Hotel Road, Beside Colplag Estate. Ikota Lekki Lagos",₦,"62,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17433,2 Bedroom Apartment In A Service Estate Ikate Lagos,Ocean Palm Estate Meldow Hall Ikate Lagos Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +17434,Lovely 2 Bedroom Apartment,Ikota Villa Lekki Ikota Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +17435,Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17436,Dry Land,Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17437,"Land Size: 9,600sqm",Off Victory Park Osapa London Lekki Lagos,₦,"2,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17438,Lovely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17439,Lovely 2 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +17440,Newly Built Luxury 4 Before Semi Detach Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17441,Executive 4 Bedroom Fully Detached Duplex With Modern Fittings, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17442,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17443,Land,Cowrie Creek Estate Ikate Lekki Lagos Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17444,4 Bedroom 2 Storey Building Fully Detached,Off Kusenla Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +17445,Land,Hunponu Wuse Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17446,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17447,Lovely 4 Bedroom Semi Detached Duplex,Ikota By Conservation Centre Lekki Lagos Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17448,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +17449,4bedrooms Terrace Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17450,Tastefully Built 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17451,Lavishly Finished Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17452,640.8350sqm With A Demolish Able Structure,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17453,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17454,1200sqms Waterfront Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17455,"5,000sqm Land ( 7 & 1/2 Plots )",Adjacent Chevy View Estate Chevron Lekki Lagos,₦,"775,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17456,Exquisitely Finished 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17457,Luxury 3 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +17458,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +17459,4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17460,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17461,4bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17462,Land,Orange Island Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17463,4bedroom Semi Detached Duplex,Ikate Elegunshi Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17464,4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"87,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +17465,2bedrooms & 3bedrooms Apartments,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17466,Well Finished 4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +17467,2 Plots Of Land,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17468,Lovely 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17469,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17470,6 Units Of 4bedroom Terrace With Bq,Lekki Right Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17471,9600sqms Land,Victory Park Osapa London Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17472,767sqms Of Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17473,5 Plots Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17474,Brand New 5 Bedroom Fully Detached Duplex With 2rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17475,4 Bedroom Detached Duplex,Admiralty Estate By Alpha Beach New Road Lekki Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17476,5bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17477,Newly Built Luxurious 4 Bedroom Terrace Self Compound,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +17478,Dry Land In A Lovely Location,Behind Colplag Estate Orchid Road Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +17479,Newly Built 2 Bedroom Apartment,Salem Ikate Lekki Lagos Ikate Lekki Lagos,₦,"40,000,000",1,0,0,0 beds,2 baths,2 Toilets,Ikate +17480,Distress Decent 4 Bedroom Detach Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17481,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17482,Absolutely Gorgeous Luxury 5 Bed Fully Detached Home,Lekki County Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17483,Lovely 5 Bedroom Fully Detached Duplex With A Bq In A Posh Environment,19 Sherifat Adenike Chevy View Chervon Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +17484,Land,Beach Resort Near Pinnock Estate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17485,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +17486,Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17487,Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17488,Land,Lakeview Estate Orchid Road Lekki Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17489,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17490,Luxury 5 Bedroom Fully Duplex Detached With Bq,Ikate Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +17491,Fully Detached Duplex,Vgc Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +17492,Newly Built 3bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +17493,4bedroom Terrace Duplex,Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17494,Luxury Newly Built 4 Bedroom Fully Detached Penthouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17495,Studio Apartment For Sale At Meldow Hall Ikate Lekki Lagos,Meadow Hall Ikate Lekki Lagos Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +17496,Land For Joint Venture At Ilasan Ikate Lekki,Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Other Lekki +17497,Luxury 4 Bedroom Townhouse With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17498,Luxury 5 Bedroom Detach Duplex With Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17499,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17500,Estate Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17501,Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +17502,Fully Serviced 3 Bedrooms Flat + Bq All Rooms En Suite,Jakand Jakande Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,0 baths,4 Toilets,Other Lekki +17503,Land,Orchid Road By Second Toll Gate Eleganza Bus Stop Lekki Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17504,Distress Sales Of 5bedroom Detached Duplex,Sangotedo Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +17505,"Deluxe , 4 Bedrooms Semi Detached Duple",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17506,Newly Built Luxury 5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +17507,Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +17508,Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17509,2 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +17510,3bedroom Apartment,Ilasan Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,2 Toilets,Other Lekki +17511,Newly Built 5 Bedroom Detached Duplex With Bq In A Beautiful Estate,"Close To Ikota Villa, Off Lekki Epe Expressway Oral Estate Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17512,5bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17513,Lovely 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17514,4 Bedroom Terrace,Mini Court Inside Mini Estate Ikate Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0, beds,4 baths,5 Toilets,Other Lekki +17515,Land,Behind Colplaq Estate Orchid Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17516,Newly Built And Charming 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17517,Dry Land,Diamond Court Close To Northern Foreshore Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17518,Newly 4 Bedroom Semi Detached Duplex In A Lovely Estate,Oral Estate Lekki Lagos Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17519,Luxurious Newly Built 2 Units Of 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17520,Affordable Land,Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17521,5 Bedroom Detached Home,Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17522,Affordable Luxury 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +17523,1124 Square Metres Land,Osapa London Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17524,"Contemporary 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool And Open Terrace",Pinnock Beach Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17525,Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ologolo +17526,Dry Land,Bera Gate Behind Uba Chervon Lekki Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17527,Senetorial And Charming 5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17528,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +17529,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17530,2 Bedroom Apartment For Sale At Meldow Hall Ikate Lekki Lagos,Meldow Hall Ikate Lekki Lagos Ikate Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +17531,Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17532,4 Bedroom Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +17533,Lovely 5 Bedroom Fully Detached Duplex With A Swimming Pool,Megamound Lekki County Lekki Lagos Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17534,Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,4 Toilets,Ologolo +17535,Luxurious And Tastefully Furnished 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +17536,5bedrooms Luxurious Newly Built Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17537,9 Bedroom Detached Duplex,Facing Nicon Nicon Town Lekki Lagos,₦,"410,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Lekki +17538,4 Bedroom Semi Detached Duplex,Ikota Gra Lekki Ikota Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17539,4 Plots Of Land,Along Spg Road Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17540,Superbly Built 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17541,7 Bedroom Detached Duplex Inclusive Of 2 Service Quarters,Nicon Town Lekki Lagos Nicon Town Lekki Lagos,₦,"605,000,000",0,1,0,7 beds,7 baths,8 Toilets,Other Lekki +17542,"2 Unit Of Luxury & Exquisite 6 Bedroom, Fully Detached With 2 Bedroom Bq",Chevron Lekki Lagos,₦,"330,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +17543,Exquisite 4 Bedroom Terrace Duplexes,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17544,Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +17545,4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +17546,Exquisitely Finished 4 Bedroom Semidetached Duplex With 1room Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17547,4 Bedroom Semi Detached Duplex With Bq,Igbonefo Igbo Efon Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17548,5bedrooms Fully Detached Duplex,Chervon Lekki Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17549,4bedroom Fully Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17550,Land,Lakeview Orchid Road By Second Toll Gate Eleganza Bus Lekki Ikota Lekki Lagos,₦,"126,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17551,Land,Chervon Drive By Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17552,Land,Lovely Estate At The End Of Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17553,Brand New Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +17554,5 Bedroom Fully Detach Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17555,Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17556,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +17557,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17558,5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17559,5bedroom Fully Detached Duplex,Bakare Agungi Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +17560,"*prime Land For Outright Sale Or Joint Venture 9,600sqm. Location Off Victory Park Estate .* *location* :??victory Park Estste Lekki *land Size:9,600sqm* *land Value : N2.5billion* *title:* C Of O *proposal: *open* *sharing Formula:* Tbd *term:* T",Off Victory Park Osapa London Lekki Lagos,₦,"2,500,000,000,000",0,0,0, beds, baths, Toilets,Osapa London +17561,5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17562,5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17563,Furnished Five Bedrooms Terrace Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17564,Luxury 5 Bedroom Detach Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17565,Demolishable Structure On A 640.8350sqm Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17566,"1,000sqm Land",Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17567,Luxury 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +17568,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +17569,5 Bedroom Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +17570,4 Bedrroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17571,Estate Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17572,4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17573,4 Bedroom Fully Detached Duplexes; With A Servant Quarter,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17574,1500sqm Land,Royal Garden Estate Ajah Lagos Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17575,4 Bedroom Terrace Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17576,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17577,Luxury 5 Bedroom Townhouse With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +17578,New 5 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17579,15 Plots Of Land,Lafiaji Behind Colplaq Estate Orchid Road By Second Toll Lekki Lagos Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17580,3bedroom Semi Detached Duplex With A Bq In An Estate,Close To Orchid Hotel Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +17581,Luxury 4 Bedroom Semi Detach Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17582,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +17583,4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +17584,Decently Finished Contemporary 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17585,Newly Built 2 Bedroom Apartment,Ocean Palm Estate Near Meldow Hall Ikate Lekki Lagos,₦,"32,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +17586,4 Bedroom Apartment In A Serviced Estate In Ikate,Salem Road Ikate Lekki Ikate Lekki Lagos,₦,"62,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +17587,5 Bedroom Detached Duplex With A Swimming Pool For Sale At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17588,Exquisitely Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17589,Joint Venture Land,Spg Road Off Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17590,Land,Ikate By World Oil Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17591,Decently Finished Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17592,Newly Built 5 Bedroom Detched Duplex In A Lovely Estate,19 Sherifat Adenike Chevy View Estate Chervon Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +17593,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17594,Exquisitely Finished 4 Bed Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17595,Well Built Luxury 1 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Osapa London +17596,Newly Built 4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Eleganza Bus Stop Lekki Lagos Ikota Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17597,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Homes Lagos Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17598,Land,Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17599,Ongoing 4bedroom Terrace Duplex,"Golden Garden Terrace, Behind Chevron New Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +17600,5 Bedrooms Fully Detached Duplex With Roof Top Terrace And Swimming Poolfor Sale,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets,Ikate +17601,Luxurious Finished 4 Bedroom Fully Detached Duplex With Swimming Pool And 2 Rooms Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17602,4 Bedroom Detached Duplex,Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +17603,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17604,Luxury Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +17605,Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +17606,500sqm Land,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17607,Total Dry Land And Its About 30 Plots,Off Orchid Road Ahfa Beach Road Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17608,2 Units Of Luxury 5 Bedroom With Bq,"Lakeview Estate, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17609,Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +17610,5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17611,Joint Venture 1600sqm Land,Ilasan By World Oil Ikate Lekki Lagos Ilasan Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17612,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17613,Fully Serviced Alluring And Decently Spaced 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +17614,5bedrooms Newly Renovated Semi Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +17615,"Land Size: 1,970sqm",Jakonde Jakande Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17616,2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +17617,Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +17618,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17619,Contemporary 5 Bed Fully Detached House With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17620,Prestigiously Finished 6 Bed Fully Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +17621,Newly 4 Bedroom Terrace Duplex,Beside Vgc Lekki Lagos Vgc Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +17622,5 Bedrooms Fully Detached Duplex With Bq,F Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,6 Toilets,Osapa London +17623,Newly Built 93% Completed Luxurious 4units Of 5bedroom Semi Detached,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17624,4 Bedroom Terrace Duplex,Fountain Spring Sangotedo Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17625,Newly Built Luxurious 4 Bedroom Terrace Self Compound,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +17626,5 Bedroom Contemporary Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17627,Relatively New 5 Bedroom Fully Detached Duplex With Bq,Ochid Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +17628,Land,Chervon Drive Behind Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,10 beds,0 baths,0 Toilets,Chevron +17629,Land,Remi Olowude Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17630,Brand New 4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17631,Fully Serviced 4 Bed Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17632,Beautiful Serviced 2&3 Bed Fully Serviced Apartments,2nd Toll Gate Lekki Lagos,₦,"49,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +17633,4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +17634,Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +17635,Magnificent 5 Bed Edifice With Swimming Pool And Open Terrace,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17636,Luxury 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"195,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +17637,Luxuriously Finished 5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17638,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17639,4 Bedroom Terrace In A Beautiful Estate,Orchid Road Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,4 baths,5 Toilets,Ikota +17640,5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +17641,Lovely 3 Bedroom Terrace,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +17642,Total Dry Land,Beside Colplag Estate Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17643,3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +17644,2 Plots Of Lands,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17645,Contemporary Newly Built Charming 5 Bedroom Detach Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +17646,Newly Built 2 Bedroom Apartment In A Lovely Location,Horizon 1 Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +17647,Brand New Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +17648,Executive And Luxury 3 Bedroom Flat With 1 Room Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +17649,4500sqms Land For Joint Venture Along Pinnacle Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,485,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +17650,Luxury Newly Built 4bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17651,4bedrooms Terrace With Bq With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17652,Luxury And Spacious 3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +17653,3 Bedroom Terrace,Estate Beside Vgc Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +17654,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"195,000,000",1,1,1,5 beds,0 baths,6 Toilets,Ikota +17655,Luxury 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17656,Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17657,Luxury 5 Bedroom Detached With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17658,Shop Space,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17659,1050sqm Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17660,4 Bedroom Detached Duplex With Bq,Along Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17661,Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17662,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17663,Luxury 4 Bedroom Terrace Duplex With Bq,Marwa Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17664,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17665,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17666,4 Bedroom Duplex,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17667,2 Bedroom Duplex With Bq,Abraham Adesanya Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17668,Land,Vgc Lekki Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17669,4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17670,4 Bedroom Semi Detached Duplex With Bq,Cowrie Creek Estate Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17671,Luxurious And Tastefully Built 9 Units Of 3 Bedroom Apartments With Bq,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17672,Spacious 4 Bedroom Terrace Duplex With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17673,4 Bedroom Semidetached Duplex With Bq,"Victoria Crest Ii Estate, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17674,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17675,Fully Serviced Luxury 4bedrooms Duplex,Platinum Way Jakande Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17676,Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17677,Spacious 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17678,3 Bedrooms Luxury Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17679,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17680,5 Bedroom Fully Detached Duplex With Bq F,Megamound Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17681,2 Bedroom Flat,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17682,5bedroom Fully Detached House,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17683,Land,Megamound Estate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17684,Finished Contemporary 4 Bed Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17685,3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17686,30 Units Of Fully Serviced 1 & 2bedroom Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17687,Newly Built 4 Bedroom Duplex With Bq Water Front,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17688,"1,800sqm Corner Piece Land",Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17689,4 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17690,Spacious 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17691,4 Bedroom Fully Detached Duplex With 3room Bq,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17692,Block Of 6 Number Of 3 Bedrooms,Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17693,Tastefully Finished 4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17694,4 Bedroom Semi Detached Home,Lekki Count Ikota Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17695,Fully Serviced 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17696,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17697,Fully Serviced 3bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17698,Spacious 5 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17699,Super Luxury Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17700,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +17701,Land,Chevron Alternative Drive Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17702,Newly Built 3 Bedroom Terrace Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +17703,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17704,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17705,Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17706,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17707,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17708,Block Of 14 Numbers Luxury Flats,Chevy View Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17709,Serviced 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17710,3 Bedroom Terrace With Bq,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17711,4 Bedroom Detached Duplex,Pinnock Beach Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17712,3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"3,790,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17713,Land,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17714,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +17715,Fully Detached 5 Bedroom House With A Room Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17716,4 Bedroom Terrace Duplex,Jakande Off Platinum Way Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17717,Land,Off Freedom Way Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17718,Newly Built 4bedroom Terrence Duplex With Bq On Orchid Road Chevron Lekki,Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17719,Mega Filling Station,Ilasan Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17720,617sqm Land,Palm City Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17721,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17722,Fully Serviced 24hrs Light 4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +17723,Land,Chevron Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17724,2 Units Of 3 Bedrooms Flat With Bq,Off Chevron Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17725,Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17726,3 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17727,Exquisitely Finished 5/6 Bedroom Fully Detached House,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17728,6units Of 3 Bedroom Flat And 4units Of 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17729,Well Maintained 4bedroom Terrace Duplex,"Shoprite Road, Jakande Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17730,5bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17731,Newly Built Luxury 3bedroom Apartment With 1 Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17732,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17733,Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17734,10 Units Of 4 Bedroom Terraces With A Rooftop Garden On Each Apartment + A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17735,4 Bedroom And 3 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17736,Lovely 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17737,Land,Off Admiralty Way Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17738,Spacious 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17739,Tastefully Built 5 Bedroom Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17740,Finished 12 Units Of 3 Bedroom Flats,Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +17741,8 Units Of 4 Bedroom Flat,Vgc Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17742,Lands Measuring 979.19sqm,Twin Lake Estate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17743,4 Bedrooom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17744,Waterfront Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17745,3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17746,3 Bedroom Flat With Waiting Room Like A Bq,Jakande Osapa London Lekki Lagos,₦,"57,000,000",1,1,0, beds, baths, Toilets,Osapa London +17747,Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17748,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17749,Fully Furnished 5 Bedrooms Detached Duplex With Bq,Lakeview Park 2 Estate By Chevron Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17750,3bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17751,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17752,4bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"118,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17753,Three Bedroom Luxury Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17754,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17755,Spacious 3 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17756,Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17757,Newly Built 4 Bedroom Terrace With B,Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17758,Land,Ilasan By Blenco Stores Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17759,Newly Built 2 Bedroom Flats For Sale Lekki Chevron By Orchid Hotel,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +17760,Brand Newly Built 4bedrooms Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17761,Well Built Affordable 3 Bedrooms Apartment With Bq,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17762,Newly Built Fully Detach 5 Bedroom Duplex & Bq With Swimming Pool Inside Benevista Estate Orchid Road By Chevron Lekki,Orchid Road Benevista Estate Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17763,Land,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17764,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17765,Land,Pinnock Estate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17766,Kingly Finished 5 Bedroom Fully Furnished Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17767,4 Bedroom Duplex With 2room Bq,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17768,Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17769,6 Numbers Of Tastefully Finished 3bedroom Flats,Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +17770,Brand Newly Built 5bedrooms Waterview Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17771,6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17772,"Plot Measuring 1,270sqms",Pinnock Beach Estate Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17773,9 Bedroom Mansion,Nicon Estate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17774,2 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17775,Commercial Shopping,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17776,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17777,Land,Cowrie Creek Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17778,Newly Built 2/3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17779,5 Bedroom Fully Detached House,Orchid Road Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17780,Newly Built Self Serviced 4bedrooms Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"4,950,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17781,"Land Measuring Approximately 3,150sqm",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17782,Newly Built 4 Bedroom Duplex Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17783,Fully Serviced 3 Bedroom Apartment,Prime Water View Garden Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17784,Land,Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17785,4 Bedroom Semi Detached Duplex,Lekky County Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17786,Spacious 5 Bedroom Detached Duplex With Bq,"Victory Park Estate, Jakande Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17787,851sqms Of Bareland,Cowrie Creek Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17788,Spacious 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17789,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Osapa London +17790,3 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17791,Spacious 5 Bedroom Detached Duplex With Bq,Victory Park Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17792,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17793,Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17794,Spacious 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17795,6 Plots Together Land,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17796,5 Bedroom Detached House,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17797,Spacious 3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17798,4 Bedroom Bungalow,Oceanbay Estate Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17799,Newly Built 4 Bedroom Duplex & Bq On Orchid Road Chevron,Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +17800,Luxury 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17801,Tastefully Furnished 2 Bedroom Flat,"Sapphire Tower, 2nd Roundabout Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17802,Newly Built 4 Bedroom Duplex Semi Detached Fully Detached,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17803,5 Bedroom Fully Detached Newly Built House,Chevron Alternative Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17804,450 Sqm Bareland,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17805,4bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17806,Newly Built 4 Bedroom Pent House,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17807,Brand Newly Built 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17808,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17809,Newly Built 4 Bedrooms Apartment,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17810,Land,Royal View Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17811,Land,Victory Park Estate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17812,Luxury 9 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17813,4bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17814,3 Bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17815,"3,150sqm Land",Lekki Epe Expressway Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17816,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17817,"3,150sqm Land",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17818,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17819,Lovely 4 Bedroom Terrace,Ikota Villa Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17820,Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17821,4 Bedroom All Ensuite Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17822,Contemporary Luxury 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17823,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17824,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17825,Brand Newly Built 5bedrooms Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17826,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17827,Land,"Arcadia Grove Estate, By Pinnock Beach Estate Lekki Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17828,4 Bedroom Terrace Houses,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17829,Spacious 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17830,3 & 4 Bedrooms Terrace Houses +bq,Lekki Phase 2 Scheme Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17831,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +17832,Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17833,Land,Lekki Epe Expressway Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17834,Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17835,3 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17836,Spacious 4 Bedroom Terrace Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17837,Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17838,2 Bedroom Flat,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +17839,Newly Built 2 Bedroom Duplex Mansionatte With Bq,Lekki Phase 1 By Ikate Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,4 Toilets,Ikate +17840,2 Bedroom Flat,Near Whitesand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17841,3 Bedroom Terrace With Bq,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17842,Well Furnished And Serviced 2 Bedroom Flat,"Kusenla Road, Elegushi Ikate Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17843,3 Units Of 400sqm Plots Of Land,Lakeview Park 2 Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17844,820sqm Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17845,Brand New Luxurious 6 Bedroom Fully Detached Duplex,Lekki Scheme 2 (gra) Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17846,3bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17847,Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17848,5 Bedroom Duplex And 3 Bq,Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17849,Land,Chevy View Estate Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17850,2 Bedroom Apartment,Mobile Estate Inoyo Ilaje Lekki Lagos,₦,"22,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17851,7 Bedroom Duplex With Penthouse,Villa Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17852,Fully Furnished 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17853,Newly Built 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17854,Opulent & Elegantly Design 2 Units Of 4 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17855,Elegantly Newly Built 5bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17856,Executively Built 5 Bedrooms + 1 Room Attached Bq,Lekki Phase 1 Lagos Lekki Lagos,₦,"450,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +17857,2 Bedroom Waterview Apartment,Maruwa Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17858,Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17859,Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17860,Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17861,Serviced 5units Of 3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17862,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17863,2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17864,Newly Built & Well Finished 4bedroom Semi Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17865,4bedroom Semi Detached House,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17866,Spacious 3 Bedroom Apartment With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17867,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17868,New Block Of 14 Units Luxury Residential Apartment,Chevy View Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17869,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17870,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17871,5 Bedrooms Fully Detached House,Ikota Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17872,800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17873,Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17874,Block Of Flats,Agungi Agungi Lekki Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Agungi +17875,Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17876,"1,520sqm Land",Ladipo Bateye Gra Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17877,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17878,Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17879,Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17880,Newly Built 3 Bedroom Flat,Chevron Axis Lekki Orchid Hotel Chevron Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +17881,2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17882,4 Bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +17883,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17884,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +17885,Land,Vgc Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17886,Land,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17887,Land,Ilasan Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17888,Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17889,Land,Orange Island Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17890,6bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17891,Spacious 4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17892,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17893,Newly Built 5 Bedroom Fully Detached House,Pinock Beach Estate Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17894,3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17895,Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17896,New Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17897,Spacious 4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17898,Fully Furnished 3bedrooms Terrace Duplex With Bq,Bera Estate Chevron Drive Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17899,Apartments,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17900,Newly Built 3 Bedroom Flat Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17901,5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +17902,Land,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17903,Brand Newly Built Fully Serviced 2 Bedroom Flat,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +17904,Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17905,3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17906,Land,Lekki Epe Expressway By Hakeem Dickson Link Lekki Phase 1 Lekki Lagos,₦,"1,450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17907,Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17908,Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17909,Four Bedroom Terrace House + 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17910,Newly Built 4 Bedroom Terrace Duplex With A Maid’s Room/bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17911,Spacious 3 Bedroom Apartment With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +17912,5 Bedroom Detached House,Olawale Idris Close To Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17913,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +17914,4 Bedroom Fully Detached House With A Room Boy's Quarters, Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17915,3 Bedroom Ground Floor Apartment,Bayview Estate Ikate Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17916,3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17917,Land,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17918,Standard 4 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17919,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17920,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17921,Spacious 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17922,5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17923,4 Bedroom Semi Detached With 2 Room Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +17924,4 Bedroom Terrace Duplex,Chevron Alternative Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17925,Luxury 4 Bedroom Terrace Duplex Plus Bq,Lekki Right Hand Side In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17926,5 Bedroom Detached Duplex + Bq,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17927,"Luxury Newly Built 4 Bedroom Terrace Duplex Plus Bq, Swimming Pool, Gym",In A Serviced Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17928,Massive 5 Bedroom Detached Duplex Plus Bq,By World Oil Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +17929,A Plot Measuring 669sqm,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +17930,Luxury 4 Bedroom Duplex Plus Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17931,4 Bedroom Semi Detached Duplex,"Off Chevron Tollgate, Chevron Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +17932,Land,Lekki County Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +17933,4 Bedroom Terraces With 1 Room Bq,Canaanland Street Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +17934,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17935,5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17936,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17937,Furnished 5 Bedroom Detached,Lekki County Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17938,4 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +17939,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17940,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +17941,5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +17942,5 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +17943,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +17944,Spacious 2 Bedroom Terrace Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +17945,4 Bedroom Terraces Second Tollgate Lekki,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +17946,3 Bedroom Terrace Duplex,Megamound Ikota Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +17947,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets,Osapa London +17948,2 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +17949,Newly Built 2 Bedroom Apartment,Second Toll Gate Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +17950,Fully Detached 5 Bedroom Duplex,Second Toll Gate Oral Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +17951,Newly Built 4 Bedroom Semi Detached House,Second Toll Gate Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,4 baths,5 Toilets,Other Lekki +17952,Super Decent 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +17953,Land,Behind Oba Eleguishi Palace Ikate Lekki Lagos,₦,"660,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +17954,Masterpiece 5 Bedroom Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikate +17955,Fully Detached 5 Bedroom Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +17956,5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Lekki Lagos",₦,"520,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +17957,4bedroom Terrace Duplex & A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +17958,Beautifully Built 4 Bedroom Semi Detached Duplex Plus A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +17959,Luxury 4 Bedroom Detached Duplex,Lakeview Estate Ikota Lekki Lagos,₦,"148,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +17960,3 Bedroom Maisonette (pcl 013),Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +17961,4 Bedroom Terraces,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +17962,5 Bedroom Fully Detached Duplex With Bq +swimming Pool,Lekki County Ikota Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +17963,4 Bedrooms Terrace Duplex With(pcl 130),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +17964,Newly Built 5bedrooms Fully Detached Chevron Water Front Duplex House With Bq +swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +17965,Newly Built 5bedroom Automated Fully Detached Duplex House With Bq +swimming Pool +gym,Osapa London Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +17966,4 Bedroom Semi Detached (pcl 075),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +17967,4 Bedroom Terrace (pcl 166),Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +17968,4 Bedroom Semi 0detached Duplex (0023a),Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds, baths, Toilets,Ikota +17969,Newly Built 4bedrooms Maisonette Duplex House With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +17970,Newly Built 5bedrooms Fully Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +17971,1345.11sqm Corner Piece Of Land (pcl 039),Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +17972,5 Bedrooms Fully Detached Duplex With Bq For Sale!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +17973,Newly Built 5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,By Lekki Circilar Shoprite Jakande Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +17974,Newly Built 5 Bedroom Detached Duplex House With Bq +swimming Pool,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +17975,4 Bedroom Semi Detached Duplex (0012a),Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +17976,Newly Built 5bedrooms Fully Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +17977,Newly Built 4bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"118,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +17978,Newly Built 6bedrooms Fully Detached Duplex House With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +17979,Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +17980,4bedrooms Terraced Duplex House,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17981,Newly Built 4bedrooms Semi Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +17982,5 Bedroom Detached Duplex(pcl 007),Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +17983,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds, baths, Toilets,Ikate +17984,5 Bedroom Semi Detached Duplex (pcl 191),Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Ologolo +17985,Land,Whales County Estate Phase 2 Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +17986,4 Bedroom Semi Detached ( Pcl 062),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +17987,Newly Built 5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"115,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +17988,2 Bedroom Flat (pcl 178), Ikate Lekki Lagos,₦,"40,000,000/year",0,0,0,2 beds,0 baths,0 Toilets,Ikate +17989,3 Bedroom Terrace Duplex (009a),Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds, baths, Toilets,Ikota +17990,Newly Built 5bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +17991,Luxury 5bedrooms Fully Detached Duplex House With Bq +swimming Pool +cinema,Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +17992,Newly Built 5bedrooms Fully Detached Duplex House With Bq+ Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +17993,4 Bedroom Maisonette (pcl 014),Ikate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds, baths, Toilets,Ikate +17994,Flourish Apartments And Terraces,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17995,4 Bedroom Fully Detached Duplex (0020a),Chevron Lekki Lagos,₦,"195,000,000",0,0,0,4 beds, baths, Toilets,Chevron +17996,5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Estate Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +17997,5bedrooms Fully Detached Duplex House With Bq,2nd Tollgate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +17998,Newly Built 4 Bedrooms Fully Detached Duplex House With Bq,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +17999,Newly Built 4 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +18000,Newly Built 3bedrooms Semi Detached Maisonnete Duplex House With Bq +swimming Pool For Sale In Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +18001,1 Unit 4 Bed Semi Detached Duplex(pcl 110),Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18002,2 Units Of 4 Bed Terrace (pcl 090)(pcl 091),Lekki Phase 1 Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18003,Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +18004,10 Units Of Three Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +18005,Newly Built 5bedrooms Fully Detached Duplex House,Agungi Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets,Agungi +18006,4 Bedrooms Fully Detached (pcl 052),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +18007,4 Bed Detached Duplex(pcl 107),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18008,4 Bedrooms Fully Detached Duplex (pcl 131),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18009,2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds, baths, Toilets,Lekki Phase 1 +18010,4bedrooms Semi Detached Duplex House With Bq +swimming Pool,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +18011,4 Bedrooms Terrace (pcl 035),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18012,5 Bedroom Fully Detached Duplex (pcl 140),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +18013,4 Bedroom Terrace Duplex (pcljuly21 005),Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18014,5bedroom Fully Detached Duplex,Ologolo Opposite Zenith Bank Osapa London Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +18015,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18016,Newly Built 5 Bedrooms Fully Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18017,5 Bedrooms Fully Detached Duplex With Bq,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18018,Newly Built 4bedrooms Maisonette House With Bq +pool,Jakande Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +18019,Newly Built 4bedrooms Semi Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18020,Newly Built 5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +18021,Newly Built 5bedrooms Fully Detached Duplex,Pinnock Estate Road Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +18022,1bedroom & 2bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +18023,Newly Built 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18024,Newly Built 4bedrooms Terrace Duplex,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18025,Estate Land,Orchid Hotel Road Lafiaji Oral Estate Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18026,Newly Built 5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18027,4 Bedroom Semi Detached Duplex (001a),Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets,Ikota +18028,2 Bedrooms Apartments,Barocci Apartments Opposite Agungi Bus Stop Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ologolo +18029,Newly Built 5 And 4bedrooms House With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18030,5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18031,5 Bedroom Fully Detached Duplex (0011a),Osapa London Lekki Lagos,₦,"180,000,000",0,0,1,5 beds, baths, Toilets,Osapa London +18032,4 Semi Detached Duplex (pcl 053),Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18033,5 Bedroom Fully Detached Duplex (pcl 212),Ikota Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,Ikota +18034,4 Bedroom Semi Detached(pcl 061),Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Ikota +18035,5bedroom Fully Detached Duplex(pcl 119),Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +18036,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18037,2 Units Of 5 Bedroom Terraces (pcl 104),Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +18038,Newly Built 4bedrooms Terrace Duplex House With Building Approval,Megan Chicken Lekki Ikota Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +18039,6 Units Of 4 Bedrooms Terrace Duplex (pcl 129),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18040,Newly Built 3bedrooms Fully Detached Duplex House With Bq +swimming Pool,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +18041,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +18042,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,1 beds, baths, Toilets,Lekki Phase 1 +18043,4 Bedroom Semi Detached Duplex (pcl 077),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ikota +18044,Newly Built 5bedroom Fully Detached Duplex House With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18045,Two Units 6 Bedroom Fully Detached Duplex(pcl 111),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds, baths, Toilets,Lekki Phase 1 +18046,2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000/year",0,0,0,2 beds, baths, Toilets,Ikate +18047,5 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +18048,Exclusively Built 5 Bedrooms Fully Detached Duplex (pcl 136),Ikate Lekki Lagos,₦,"270,000,000/year",0,0,0,5 beds, baths, Toilets,Ikate +18049,4 Units Of 4 Bedroom Duplex (carcass Level) (pcl 041),Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Agungi +18050,4 Bedroom Terrace ( Pcl 021),Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +18051,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18052,3 Bedroom Flat (0049a),Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets,Ikate +18053,Luxury 2bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +18054,5 Bedroom Fully Detached Duplex (pcl 167),Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Ikate +18055,Newly Built 5bedroom Fully Detached Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ologolo +18056,Newly Built 4bedrooms Maisonette Duplex House With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +18057,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +18058,4 Bedrooms Semi Detached Duplex + Bq,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18059,Newly Built 4bedrooms Maisonette Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +18060,5bedrooms Fully Detached Duplex House With Bq For Sale In Ikate Lekki Lagos,Ikate Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +18061,5bedrooms Fully Detached Duplex House With Bq For Sale In Ikate Lekki Lagos,Ikate Lekki Ikate Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +18062,Newly Built 5bedrooms Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18063,Newly Built 4bedrooms Maisonette Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18064,Luxury 5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18065,5 Bed Fully Detached Duplex (pcl 112),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +18066,Newly Built 4 Bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +18067,Newly Built 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,1,1,5 beds,0 baths,6 Toilets,Lekki Phase 1 +18068,Newly Built 5bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18069,Newly Built 4 Bedrooms Semi Detached Duplex,Lekki 2nd Tollgate Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18070,Newly Built 4 Bedroom Semi Detached House,Chevron Lekki Conservation Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18071,2 Bedroom Terrace Duplex Second Tollgate( Close To Road),Orchid Road Oral Estate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +18072,Spacious Fully Detached 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,7 Toilets,Chevron +18073,Newly Built 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"78,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +18074,4 Bedroom Terrace Duplex (pcl 048),Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +18075,Luxury 4bedrooms Semi Detached Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18076,Newly Built 4bedrooms Semi Detached Duplex House With Bq,Orchid Road By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18077,5bedrooms Fully Detached Duplex House With Bq +swimming Pool +cinema +gym For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +18078,2 Bedroom Flat (007a),Vgc Lekki Lagos,₦,"30,000,000",1,0,0,2 beds, baths, Toilets,Victoria Garden City +18079,Newly Built 5bedrooms Fully Detached Duplex With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18080,Newly Built 5bedrooms Fully Detached Duplex House With Bq +swimming Pool For Sale In Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +18081,Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +18082,30 Units Of Terrace And 4 Units Of Semi Detached Duplex, Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +18083,5 Bedroom Semi Detached Duplex (pcl 213),Ilasan Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +18084,5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18085,Newly 4bedrooms Terrace Duplex House With Bq,By 2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +18086,4 Bedroom Semi Detached Duplex (0021a),Lekki Lagos,₦,"70,000,000",1,0,0,4 beds, baths, Toilets,Other Lekki +18087,4 Bedrooms Terrace Duplex House,Honey Dew Court Estate Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +18088,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"28,000,000/year",1,0,0,2 beds, baths, Toilets,Chevron +18089,Newly Built 4 Bedrooms Semi Detached Duplex House With Bq,By Nicon Town Nicon Town Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +18090,4 Bedroom Semi Detached Duplex (pcl 137),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18091,4bedrooms And 5bedrooms Fully Detached Duplex House With Bq +swimming Pool For Sale In Lekki Lagos,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +18092,4 Bedroom Maisonette (0047a),Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +18093,4 Bedroom Semi Detached (pcl 116),Lekki Phase 1 Lekki Lagos,₦,"256,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18094,Newly Built 4bedrooms Fully Detached And Semi Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +18095,3 Bedrooms Terrace (pcl 051),Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets,Ikate +18096,3 Bedroom Flat (0040a),Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds, baths, Toilets,Ikate +18097,3 Units Of 4bedroom Fully Detached Duplex(pcl 095),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18098,4 Bedrooms Semi Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +18099,4 Bedroom Semi Detached Duplex (0022a),Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Ikota +18100,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Ikate +18101,Newly Built 5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18102,Newly Built 5bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +18103,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18104,4 Bedroom Semi Detached Duplex (pcl 046),Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +18105,5 Units Of 4 Bedroom (pcl 105),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18106,4 Bedroom Semi Detached Duplex,Chevron Lekki Conservation Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +18107,Newly Built 4bedrooms Semi Detached Duplex House With Bq For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +18108,"7 Units Of 3 Bedroom Flat (pcl 027), (pcl 028), (pcl 029)",Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +18109,5bedrooms Fully Detached Duplex House With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18110,Newly Built 5bedrooms Fully Detached Duplex House With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +18111,Newly Built 2bedrooms Apartment,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +18112,4 Bedroom Semi Detached Duplex (0046a),Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths, Toilets,Other Lekki +18113,Newly Built 5bedroom Detached Duplex House & 4bedrooms Semi Detached Duplex House With Bq,Pantheon Smart Homes 2nd Tollgate Lekki Lagos Chevron Lekki Lagos,₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +18114,Luxury 4&5bedrooms Fully Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +18115,Newly Built 5bedroom Detached Duplex House With Bq For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +18116,Land With Governor's Consent,Drive By North Fourshore Estate Chevron Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18117,4 Bedroom Terrace (008a),Vgc Lekki Lagos,₦,"40,000,000",1,0,1,4 beds, baths, Toilets,Victoria Garden City +18118,Land Suitable For Both Commercial And Residential Purposes,The Pearl Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +18119,4 Bedroom Semi Detached Duplex (pcljuly21 003),Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18120,Newly Built 5 Bedroom Fully Detached Duplex House With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18121,3 Bedrooms Terrace (pcl 059),Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18122,3 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +18123,4 Units Of 4 Bedroom Terrace (pcl 117),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18124,4 Bedroom Semi Detached Duplex (0019a),Ikota Lekki Lagos,₦,"68,000,000",1,0,0,4 beds, baths, Toilets,Ikota +18125,4 Bedroom Fully Detached Duplex (pcl 220),Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +18126,Newly Built 4bedrooms Terrace Duplex House With Bq,Igbo Efon Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +18127,4 Bedroom Terrace Duplex (pcl 200),Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +18128,2 Bedrooms Apartments And 4 Bedrooms Maisonettes With Bq,Camberwall Advantage Ikate Lekki Lagos,₦,"44,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +18129,4 Bedroom Maisonnette (pcl 099),Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18130,Newly Built 4bedrooms Fully Detached Duplex House With Bq +study Room,B Chevron Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +18131,3 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +18132,Newly Built 5bedrooms Fully Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +18133,5bedrooms Fully Detached Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18134,Luxurious 4 Bedroom Terrace Duplex (pcl 221),Lekki Phase 1 Lekki Lagos,₦,"75,000,000/year",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18135,"4/4/5 Terrace, Semi And Fully Detached Duplex (pcl 181)",Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets,Chevron +18136,Newly Built 5bedrooms Fully Detached Duplex House With Bq,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +18137,4bedrooms Detached Duplex House With Bq,Excel Court Orchid Road Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18138,Luxury 5bedrooms Fully Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +18139,4 Units Of 3 Bedroom & 2 Units Of 2 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +18140,Newly Built 5bedroom Fully Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18141,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18142,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18143,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18144,4 Bedroom Maisonette+bq,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18145,4 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +18146,4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +18147,"5 Bedroom Detached House With Bq,",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18148,Two Units Of 4 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18149,5 Bedroom Detached Duplex With Bq,Megamound Estate Idado Lekki Lagos,₦,"195,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +18150,Luxury 4 Bedroom Terrace House With Bq,Dabiri Street Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18151,5bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +18152,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,0 Toilets,Ikate +18153,4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +18154,4 Bedroom Town House Detached Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18155,5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"230,000,000/month",0,1,0,5 beds,5 baths,5 Toilets,Ikota +18156,5bedroom Duplex Plus Bq,Ikota Lekki Lagos,₦,"120,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +18157,5 Bedroom Fully Detached Duplex,"Lekki County, Ikota Villa Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets,Ikota +18158,Furnished 5 Bedroom Duplex,"Second Toll Gate Lekki, Lagos Chevron Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +18159,4 Bedroom Fully Detached,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18160,Luxurious 3 Bedroom Serviced Apartment,Spar Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18161,5 Bedroom Luxury House,Lekky County Homes Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18162,5 Bedroom Fully Detached Duplex,Off Omoriren Johnson Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18163,Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18164,Newly Built 4 And 5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +18165,3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18166,5bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +18167,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18168,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18169,Newly Build 4 Bedroom Terrace,Orchid Road/royal Pine/eleganza Bus Station Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18170,4bedroom Semi Detached Duplex,2nd Lekki Toll Gate Idado Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +18171,3bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"58,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikate +18172,3 Bedroom Terrace Duplex,"Lekki County Home Ikota, Road 16 Ikota Lekki Lagos",₦,"60,000,000/day",1,0,0,3 beds,3 baths,4 Toilets,Ikota +18173,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18174,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +18175,High Definition 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +18176,Newly Built 4 Bedroom Duplex,Ivy Homes Estate Ikota Lekki Lagos,₦,"95,000,000/month",1,1,1,4 beds,4 baths,5 Toilets,Ikota +18177,3100 Square Meters Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18178,Beautifully Finished Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +18179,4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +18180,665sqms Of Bare Land,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18181,3 Bedroom Flat Apartment,Jakande Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +18182,Magnificent 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18183,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +18184,Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18185,400sqm Land,Lekki County Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18186,4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +18187,Available Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18188,Spacious 4 Bedroom Terraced Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +18189,4 Bedroom Semi Detached Duplex With A Bq,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +18190,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +18191,3 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18192,400 Sqm Land,Lekki County Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18193,1200sqm Land,Lekki Epe Expressway Ikota Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18194,Available Land,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18195,Magnificent 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18196,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +18197,Event Center,Orchid Road Chevron Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18198,4 Bedroom Terraced Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18199,2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +18200,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +18201,Fully Serviced 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +18202,5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18203,665sqms Of Bareland,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18204,Land,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18205,Very Affordable 3 Bedrooms Terrace Duplex With One Room Bq,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +18206,Available Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18207,Hot Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18208,Newly Built 4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18209,Serviced 2 & 3 Bedroom Apartments,2nd Toll Gate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18210,Serviced 2 & 3 Bedroom Apartments,2nd Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18211,Luxuriously Built 5 Bedrooms Fully Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +18212,4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +18213,669 Square Meters Of Land,Ivy Homes Lekki County Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18214,Newly Built 3 Bedroom Flat Apartment,Jakande Lekki Jakande Lekki Lagos,₦,"52,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +18215,3 Bedrooms Terrace Duplex And Bq,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +18216,Fully Detached 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18217,400sqm Land,Lekki County Megamound Estate Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18218,4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18219,Luxury 5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18220,3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +18221,5 Bedroom Self Compound Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18222,4 Bedroom Maisonnette With Boys Quarters,4 Bedroom Maisonnette With Boys Quarters Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18223,3 Bedroom Penthouse With Boys Quarters,3 Bedroom Penthouse With Boys Quarters Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18224,Beautiful 3 Bedroom Apartment,Beautiful 3 Bedroom Apartment Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18225,Luxury 2 Bedroom Apartment,Luxury 2 Bedroom Apartment Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18226,Brand New 1 Bedroom Apartment,Brand New 1 Bedroom Apartment Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18227,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,0 Toilets,Chevron +18228,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +18229,Beautifully Finished 4bedoom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"950,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +18230,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +18231,Luxurious 5 Bedroom Duplex With Bq,Ilasan Ilasan Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,4 baths,4 Toilets,Other Lekki +18232,Aesthetically Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +18233,Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +18234,Solid 4 Bedroom Detached Duplex With Bq,"Off Southern View Estate, Olugborogan, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +18235,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +18236,Luxury 4bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths, Toilets,Ikota +18237,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +18238,Four Bedroom Terrace Smart Home,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18239,Well Detailed 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +18240,Quality Construction Of 2 Bedroom Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +18241,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18242,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +18243,5 Bedroom Detached Duplex On 3 Floors With Bq,Lekki County Homes Megamond Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +18244,Well Detailed 5 Bedroom Semi Detached Duplexwith Bq,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +18245,5 Bedroom Detached Duplex With Bq On Massive Land Space,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18246,A Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +18247,5 Bedroom Detached Duplex With Bq,Megamond Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18248,4 Bedroom Duplex,Agungi Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +18249,3bedroom Apartment (internal To Be Completed),Horizon Height Estate Off Spar Supermarket Road Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +18250,"Hotel Comprising 26 Bedrooms, Swimming Pool, Equipped Kitchen, Restaurant, Bar, Laundry",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18251,Newly Built 4 Bedroom Semi Detached With Bq In Serene Environment,Orchid Road By Chevron Round About Lekki Lagos,₦,"70,000,000/month",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +18252,4 Bedroom Terrace With 1 Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18253,Classic 4 Bedroom Semi Detached Duplex In Good Location,"Chevron Alternative By Orchid Road, Oral Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +18254,Luxury 3 Bedroom Flat +bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000/sqm",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18255,Luxury 2 Bedroom Flat, Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,1 baths,2 Toilets,Ikate +18256,Fully Furnished 4bedroom Detached Duplex,Serene Neighborhood Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +18257,Verified 600000sqm Waterfront Land With C Of O,Sharing Border With Vgc Waterfront Lekki Palms Addo Ajah Vgc Lekki Lagos,₦,"30,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18258,3 Bedroom Penthouse+ Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,0, beds, baths, Toilets,Ikate +18259,Waterfront Duplex With Bq And Penthouse,"Tulip Road, Pinnock Beach Estate Jakande Lekki Lagos",₦,"455,000,000",1,1,0, beds, baths, Toilets,Other Lekki +18260,Brand New 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,3 baths,5 Toilets,Ikota +18261,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18262,"26 Rooms Hotels With Swimming Pool On 1,250sqm Land",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +18263,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"84,000,000",1,1,0, beds, baths, Toilets,Chevron +18264,Most Affordable Gated Cof O Land In Serene Location,"Beside Coopland Gardens,lafiaji Orchid Road Oral Estate Lekki Lagos",₦,"45,000,000/month",0,0,0, beds, baths, Toilets,Other Lekki +18265,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18266,"4bedroom Fully Detached Duplex With Bq , Fitted Kitchen",Mini Estate In Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +18267,4bedroom Fully Detached Duplex With Bq,"Off Southern View Estate, Olugborogan Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +18268,Newly Built 4 Bedroom Semi Detached Duplex + Bq,H Homes Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18269,Offplan Terrace Duplex + Bq,Decastle Orchid Road Chevron Lekki Lagos,₦,"55,000,000/sqm",0,1,0,4 beds,4 baths,3 Toilets,Chevron +18270,10 Plots Of C Of 0 Land In Prime Location,Orchid Road By Cheron Alternative Lekki Epe Express Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18271,Verified C Of O Waterfront Estate Inside A Built Up Lekki Palms City Estate,Lekki Palm City Estate By Vgc Waterfront Vgc Lekki Lagos,₦,"35,000,000/sqm",0,0,0, beds, baths, Toilets,Victoria Garden City +18272,Brand New Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18273,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikota +18274,Premium 3 Bedroom Apartment With Bq,Conoil/enyo Petrol Station Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,2 baths,2 Toilets,Ikate +18275,Brand New 4 Bedroom Detached Duplex,Orchid Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18276,9plots Of Land & Half,Orchid Road Lekki Lagos,₦,"800,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18277,3 Bedroom Serviced Apartment,Off Spar Supermarket Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +18278,Brand New 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18279,4 Bedroom Semi Detached Duplex + Bq,Before Chevron Toll Gate Chevron Lekki Lagos,₦,"72,000,000",1,1,0, beds, baths, Toilets,Chevron +18280,Brand New Luxury Contemporary 5 Bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +18281,Exquisitely Built 4 Bedroom Terrace Duplex,Orchid Hotel Chevron Lekki Lagos,₦,"69,000,000",1,1,0, beds, baths, Toilets,Chevron +18282,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",1,1,0, beds, baths, Toilets,Ikota +18283,Waterfront Land In Built Up Location Inside Lekki Palm City Estate,Lekki Palm By Vgc Waterfront Vgc Lekki Lagos,₦,"35,000,000/sqm",0,0,0, beds, baths, Toilets,Victoria Garden City +18284,3bedroom Flat With A Bq,Off Nigeria Conservation Drive Olugborogan Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +18285,Luxury 2 Bedroom Flat,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,1 baths,2 Toilets,Ikate +18286,Brand New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18287,Classic 5 Bedroom Fully Detached Duplex In Serene Location,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"110,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18288,New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18289,3bedrooms Apartments With S. Pool & Modern Facilities At Prime Water Garden Estate Lekki Phase One Lagos.,Prime Water Garden Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18290,Tastefully Finished 4 Bedroom Terraced Houses,Off Ochid Road Lekki Lagos,₦,"66,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +18291,"500 Square Metres Land At Pinnock Beach Estate, Osapa London Lekki.",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Osapa London +18292,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"445,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18293,4 Bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +18294,5 Bedroom Fully Detached House,Serene Neighborhood Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +18295,Distressed Newly Built 4 Bedroom Fully Detached Duplex In Built Up Location,"Lekki Conservative Centre, Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +18296,Waterfront Land Measuring 500sqm,"Tulip Road, Pinnock Estate Jakande Lekki Lagos",₦,"200,000,000",1,1,0, beds, baths, Toilets,Other Lekki +18297,Offplan Luxury 2 Bedroom Apartments In Serene Location,Rubby Apartments Ologolo Lekki Lagos,₦,"35,000,000/sqm",1,0,0,2 beds,2 baths,2 Toilets,Ologolo +18298,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +18299,Verified Waterfront Land,Lekki Palm City Estate Addo/vgc Waterfront Ext Vgc Lekki Lagos,₦,"9,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18300,4bedroom Duplex,Chevron Lekki Lagos,₦,"5,000,000/year",1,0,0,4 beds,4 baths,4 Toilets,Chevron +18301,"Filling Station On 3,786 Square Metres Land (an Acre) At Ilasan By Lekki Expressway",By Lekki Expressway Ilasan Lekki Lagos,₦,"2,000,000,000",0,0,0,1 beds, baths, Toilets,Other Lekki +18302,9bedroom Mansion Fully Detached Luxury House For Sale Located At Nicon Estate Lekki Sitting On 1000sqm Land.,In The Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Lekki +18303,3 Units Of Exquisite 5 Bedroom Detached Houses,"Lekki, Right Hand Side, Close To Oniru Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +18304,5bedroom Fully Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18305,3 Bedroom Serviced Apartment,Horizon Height Estate Off Spar Supermarket Road Ikate Lekki Lagos,₦,"54,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +18306,5bedroom Detached Duplex (executive),Lekki County Estate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +18307,Gated C Of O Land In A Secured Environment,"Victoria Crest By Orchid Road,lekki Epe Express Oral Estate Lekki Lagos",₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +18308,Luxury Built 2 Bedroom Maisonette + Bq,Ambiance Estate Freedom Way Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,0 baths,0 Toilets,Ikate +18309,Land,On Freedom Way Off Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18310,Classic 5 Bedroom Fully Detached Duplex In Built Up Environment,Bueno Vista Estate Orchid Road Lekki Epe Express Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +18311,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18312,Verified Government Approved C Of O Land,Orchid Road By Eleganza Round About Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18313,Smart 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"76,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +18314,4 Bedroom Terrace Duplex In Build Up Location,Victory Court Extste 2 Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,3 baths,3 Toilets,Ikota +18315,4bedrooms Fully Detached Duplex And A Bq,Serene Estate Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +18316,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"395,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18317,667 Square Metres Land Well Sandfilled And Gated At Osapa London Lekki With Governor's Consent.,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Osapa London +18318,Newly Built 4 Bedroom Terrace Duplex In Serene Location,Ikate Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18319,Govt Approved 4 Bedroom Semi Detached With Bq,Maven Court Orchid Road Lekki Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +18320,Buy A House With Mortgage,Lekki Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets,Other Lekki +18321,Brand New 3 Bedroom Semidetached,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18322,5 Bedroom Smart Detached Duplex With Pent House Bq,Lekki County Ikota And Venue Vista Orchid Road Ikota Lekki Lagos,₦,"142,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +18323,5 Bedroom Detached Smart Duplex With Pent House,Benue Vista And Lekki County After 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,4 Toilets,Ikota +18324,5 Bedroom Detached Smart Duplex,Lekki County Ikota And Venue Vista Estate Orchid Road Ikota Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +18325,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +18326,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +18327,Newly Built 4 Bedroom Flat,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,4 Toilets,Ikota +18328,3 Bedroom Fully Detached Bungalow,Awoyaya Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18329,4 Units Of 3 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +18330,Newly Built 5 Bedroom Detached Duplex,S Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +18331,Newly Built 3bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +18332,A Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18333,A 4 Bedroom Duplex Carcass,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +18334,Newly Built 5 Bedroom Fully Detached Ikota Lekki,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +18335,Luxury 5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18336,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18337,5 Bedroom Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18338,Distress Sale 3 Bedroom Terrace Bungalow,Orchid Ikota Lekki Lagos,₦,"27,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikota +18339,A Piece Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ologolo +18340,A Fully Serviced Two Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +18341,"Luxury Maisonnete With Swimming Pool, Gym & Cctv",Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18342,Brand New 4 Bedroom Detached House With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18343,A 3 Bedroom Flat,Agungi Lekki Lagos,₦,"30,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Agungi +18344,A Newly Built 4 Bedroom Duplex With A Boys Quater,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18345,Newly Built 4 Bedroom Fully Detached Duplex,Elf Bustop Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +18346,A 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18347,Newly Built 5 Bed Room,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18348,Brand New 5 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18349,4 Units Of 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18350,Available Property,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18351,A Plot Of Land,"Opposite Ikate, Ilasan Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18352,2 Bedroom Apartments,Ikate Back Of World Oil Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +18353,Newly Built 5 Bedroom Fully Detached Duplex We Bq,Elf Bustop Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18354,Newly Built 4 Bedroom Semi Detached Duplex In An Estate,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18355,5 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18356,Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18357,A 2 Bedroom Flat,"Orchid Road, Opposite Chevron Lekki Lagos",₦,"23,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +18358,A Newly Built Two Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ologolo +18359,2bedroom And 3bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +18360,Well Built 4 Bedroom Semi Detached Duplex With Bq In A Secured Area,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18361,4 Bedrooms Fully Detached Duplex With Bq,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18362,Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18363,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,0 beds,0 baths,0 Toilets,Osapa London +18364,Luxurious 2 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +18365,5 Bedroom Detached Duplex With Bq,Alternative Road Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +18366,Newly Built 4 Bedroom Terrace Duplex With 2 Sitting Rooms.,Ilaje Bus Stop Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +18367,Newly Built 3 Bedroom Apartment With Bq,4 Lekki Intersection Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +18368,"A 3 Bedroom Duplex, With Bq","Lekki Gardens, Ajah Area Lekki Phase 2 Lekki Lagos",₦,"27,000,000/year",0,0,0,3 beds,4 baths,5 Toilets,Lekki Phase 2 +18369,A Plot Of Land,Ologolo Spg Ext. Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18370,Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18371,3 Bedroom Terrace Duplex With Bq,"Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18372,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18373,Brand New 4 Bedroom Semi Detached Duplex With Bq And Jacuzzi,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +18374,Half Plot Of Land,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Ologolo +18375,Newly Built 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +18376,4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18377,Newly Built 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18378,4 Units Of 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18379,"A Newly Built, 3 Bedroom Flat",Agungi Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,3 Toilets,Agungi +18380,A 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"106,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18381,4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Axis Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18382,4 Bedroom Terrace Townhouse,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18383,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18384,Newly Built 2 Bedroom Terrace Duplex With Governor's Consent,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +18385,A 3 Bedroom Flat,Ologolo Lekki Lagos,₦,"37,000,000/year",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +18386,4 Units Of 4 Bedroom Terraces,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +18387,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18388,Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18389,Newly Built 3 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +18390,Newly 5 Bed Room With 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +18391,Luxurious 4 Bedroom Terrace,"Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18392,Well Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +18393,Luxury & Spacious 4 Bedroom Maisonette With Bq In A Secured Area,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18394,Affordable Luxury 3 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +18395,4 Bedroom Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,4 baths,5 Toilets,Ologolo +18396,Luxury 3 Bedroom Maisonette With Bq With 24 Hours Electricity,Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Ikate +18397,A Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18398,A Newly Built Mini Flat,"Salem,l Right Ikate Lekki Lagos",₦,"27,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +18399,Newly Built 5 Bedroom Fully Detached Duplex,S Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +18400,Fully Furnished 4bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18401,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18402,6 Bedroom Manssionette With 2 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +18403,A Newly Built 5 Bedroom Duplex,Chevron Idado Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +18404,A Newly Built 5 Bedroom Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",1,1,1,6 beds,6 baths,7 Toilets,Ikate +18405,A Piece Of Land,Ologolo Lekki Lagos,₦,"30,000,000/year",0,0,0, beds, baths, Toilets,Ologolo +18406,A 2 Bedroom Flat With Bq,"Newroad, Opposite Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +18407,Newly Built 4 Bedroom Semi Detached Duplex With Bq On 2 Floors.,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +18408,4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +18409,Luxurious 3 Bedroom Maisonette Duplex On Two Floors In A Secured Area,Off Freedom Way Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds, baths, Toilets,Ikate +18410,4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18411,5 Bedroom Mansion House,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18412,Newly Built 5 Luxurious Bedroom,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18413,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18414,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18415,4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18416,4 Bed Room Flat,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +18417,Newly Built 5 Bed Room With 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +18418,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18419,Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18420,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18421,"A Newly Built, 4 Bedroom Duplex",Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18422,4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18423,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +18424,Newly Built 4 Bedroom Duplex With 1 Bq,S Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +18425,A Plot Of Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ologolo +18426,Luxurious 3 Bedroom Maisonette Duplex On Two Floors In A Secured Area,"Off Freedom Way, Lekki Phase 1 Ikate Lekki Lagos",₦,"80,000,000",0,0,0,3 beds, baths, Toilets,Ikate +18427,3bedrooms Semi Detached Maisonette With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18428,3 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +18429,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18430,5bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18431,A 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +18432,4 Bedroom Luxury Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ologolo +18433,Newly Built 4 Bedroom With 1 Bq,Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18434,9 Units Of 3 Bedroom Blocks Of Flat,Jakande Lekki Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18435,Luxury 2 Bedroom Apartments With Elevator & Acs In A Great Environment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +18436,3 Bed Room Yet To Be Completed,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +18437,A Newly Built 2 Bedroom Flat,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +18438,Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18439,Elegantly Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Ikota +18440,Newly Built 3 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +18441,Luxurious 2 Bedroom Maisonette With 24 Hours Electricity And Security,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets,Ikate +18442,Luxury 2 Bedroom Apartment With Cinema And Shopping Mall Nearby,"Orchid Road, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,2 beds, baths, Toilets,Chevron +18443,A 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +18444,Contemporary Designed 5 Bedroom Detached Duplex,Lekki County Home Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18445,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18446,Luxurious 3 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki Chevron Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +18447,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18448,"A Newly Built, 3 Bedroom Flat",Salem Right Ikate Lekki Lagos,₦,"45,000,000",1,1,0, beds, baths, Toilets,Ikate +18449,Newly Built 5 Bedroom Flat,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +18450,Very Luxurious 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18451,A Mini Flat/studio,Salem Ilasan Lekki Lagos,₦,"14,000,000",0,1,0,1 beds,1 baths,1 Toilets,Other Lekki +18452,4 Bedroom Detached House Fully Furnished,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18453,Exquisite 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +18454,A Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18455,5bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +18456,"Exquisite 3 Bedroom Apartment With Swimming Pool, Elevator And Gym",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +18457,Fully Serviced Spacious Blocks Of Flats,Lekki Lagos,₦,"1,200,000,000",1,0,0,10 beds,10 baths,10 Toilets,Other Lekki +18458,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18459,Luxurious 4 Bedroom Semi Detached Duplex With Bq With Cctv,Second Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18460,A 4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +18461,5bedroom Fully Detached Duplex With Self Compound,Idado Lekki Lagos,₦,"68,000,000",0,1,0, beds, baths, Toilets,Other Lekki +18462,"Affordable, Luxurious And Secured 1 Bedroom Apartment",Ologolo Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Ologolo +18463,Newly Built 5 Bedroom Available,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18464,2 Bedroom Flat,Agungi Lekki Lagos,₦,"31,000,000/year",1,1,0,2 beds,2 baths,3 Toilets,Agungi +18465,Plots Of Land,Ologolo Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets,Ologolo +18466,Contemporary 5 Bedroom Fully Detached,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18467,A 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18468,Newly Built 4 Bedroom Terrace Duplex,Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +18469,A Plot Of Land,Ologolo Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Ologolo +18470,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18471,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18472,Land,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18473,4bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18474,Masterpiece 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikate +18475,Newly Built 3 Bedroom Penthouse + Bq,Chevy Castle Estate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +18476,Newly Built 3 Bedroom Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +18477,4 Bedroom Newly Built Maisonette + Bq,Chevy Castle Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +18478,2 Bedroom Newly Built Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +18479,1 Bedroom Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +18480,Land,"Lekki Pride Estate Ii, Abraham Adesanya, Eti Osa Lgc Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18481,4 Bedroom Maisonette,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +18482,3 Bedroom Semi Detached,Dunvale V Estate On Orchid Road Off Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18483,Newly Built 3 Bedroom Terraces,Dunvale V Estate On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18484,3 Bedroom Maisonette,Dunvale V Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18485,4 Bedroom Terrace,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +18486,1 Room Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets,Chevron +18487,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +18488,3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +18489,4 Bedroom Maisonette Plus Bq,Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +18490,Newly Built 4 Bedrooms Terraces With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18491,2 Bedroom Apartments,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +18492,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18493,Decently Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18494,2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +18495,3 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18496,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +18497,Land,Block 25 Extension Off Ladipo Latinwo Street Lekki Phase 1 Lekki Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18498,Tastefully Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18499,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18500,3 Bedrooms Penthouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18501,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18502,Newly Built And Serviced 4 Bedrooms Terraced Duplexes,Orchid Road Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +18503,4 Bedroom Terraced Duplex,Proximity To Mega Chicken Chevron Oil Company Megamound Estate Recreational Centers Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +18504,Classy 4 Bedroom Maisonnette Penthouse,Classy 4 Bedroom Maisonnette Penthouse With Boys Quarters Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18505,Land,"Atlantic View Estate Along Alpha Beach Road Lekki Epe Express Way, Lagos Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18506,Classy 3 Bedroom Maisonnette With Boys Quarters,Classy 3 Bedroom Maisonnette With Boys Quarters Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18507,Luxury 2 Bedroom Maisonnette With Boys Quarters,Luxury 2 Bedroom Maisonnette Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18508,Newly Built 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18509,4 Bedroom Fully Detached Duplex,D Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +18510,4 Bedroom Duplex,F Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18511,5bedroom Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18512,5 Bedroom Fully Detached House For Sale With Swimming Pool,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18513,2 Bedrooms Flat,Osapa London Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets,Osapa London +18514,Clean 3 Bedroom Flat,Primewater View Gardens Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18515,4bedroom Semi Detached Duplex,D Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18516,5 Bedroom Fully Detached House For Sale With Swimming Pool,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18517,Four Bedroom Furnished Fully Detached House Sale,Because Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +18518,4 Bedrooms Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +18519,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets,Ikate +18520,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18521,4 Bedroom Semi Detached Duplex,Tulip Haven Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18522,1 Bedroom Flat Apartment,Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Lekki +18523,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18524,Luxurious 4 Bedroom Terrace,"Opp. Nicon Town, Ilasan Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets,Other Lekki +18525,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18526,Beautifully Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18527,Newly Built 4 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18528,Fully Automated Exquisitely Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18529,Standard 1 Bedroom Flat,Standard 1 Bedroom Flat With Certificate Of Occupancy Title Lekki Lagos,₦,"35,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18530,Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18531,Newly Built 4 Bedroom Semi Detached Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18532,Land,Ikate Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18533,Newly Built 5 Bedroom Fully Detached & 4 Bedroom Semi Detached Duplex,Buena Vista Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +18534,Well Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18535,Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18536,Spacious 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18537,5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +18538,6 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"800,000,000",0,1,0,6 beds,0 baths,0 Toilets,Osapa London +18539,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18540,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18541,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18542,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18543,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18544,Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18545,Newly Built 4 Bedroom Semi Detach Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18546,Newly Buit 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Ikota +18547,Brand New 5 Bedroom Fully Detached Duplex,Pinnock Lekki Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18548,Newly Built 4 Bedroom Terrace,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +18549,Newly Buit 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +18550,8 Hectares Of Land Strategically Located,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18551,Strategically Located Land In An Already Built Up Environ,"Badore, Itii Coperative Villa Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +18552,4bedroom Contemporary Semi Detached,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +18553,2 Bedroom Apartment In A Gated Community,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +18554,5 Bedroom Finished Fully Detached Duplex,Felicia Elegushi. After Kohinoor Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets,Ikate +18555,4 Units Of Luxury Detailed 5 Bedroom Fully Detached Duplex,Alcadia Extension Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +18556,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18557,3 Bedroom Apartments + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +18558,4 Bedroom Detached House,"Tulip Estate, Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,4 Toilets,Chevron +18559,Spacious 4 Bedrooms Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +18560,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +18561,4 Bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +18562,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18563,Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,"Vgc Regional Road, Lekki Vgc Lekki Lagos",₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +18564,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18565,Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +18566,Tastefully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,2 beds, baths, Toilets,Ikate +18567,A Well Maintained 3 Bedroom Semi Detached House With Boy's Quarter.,Blessing Kayode Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +18568,Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +18569,Unit Of 2 Bedroom Flat,"5, Harunaabiodun Street, Behind Stop Over Hotel Araromi, Ibeju Town, Lekki Phase 2 Lekki Lagos",₦,"15,000,000/year",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +18570,Stunning 5 Bedroom Mansion,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18571,Beautiful 4 Bedroom Semi Detached Duplex+ Bq With Pool,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +18572,Premium Quality 3 Bed Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18573,Furnished 3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18574,A Well Maintained 4 Bedroom Semi Detached House With Boy's Quarter.,Blessing Kayode Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,10 beds,4 baths,4 Toilets,Lekki Phase 1 +18575,Smart Voice Control 4 Bedroom Terrace Duplex,"Victoria Crest Estate, Orchid Hotel Road, Lekki 2nd Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18576,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18577,Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Chevron +18578,Luxury 5 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +18579,Land In A Beautiful Estate,Northern Foreshore Chevron Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Chevron +18580,Land For Sale,Eleganza Estate Immediately After Toll Gate Ikota Lekki Lagos,₦,"50,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18581,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +18582,Luxury 4bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18583,5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +18584,4 Bedroom Detached Duplex,Lekki Conservation Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +18585,Spacious 1 Bedroom Apartment,Lafia Aji (orchid Road) Vgc Lekki Lagos,₦,"19,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +18586,2 Bedroom Apartments + Bq In A Good Location,Off Freedom Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +18587,Land Suitable For Residential Purposes In A Good Estate,Alpha Beach Area Jakande Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18588,Available Land,4th Roundabout Ikate Lekki Lagos,₦,"4,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18589,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets,Chevron +18590,4bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +18591,5bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +18592,5 Bedrooms Semi Detached,"Da Silva,off Chris Madueke Street, Lekki Phase 1 Lekki Lagos",₦,"135,000,000/year",0,1,0,5 beds,4 baths,3 Toilets,Lekki Phase 1 +18593,4 Bedroom Semi Detached House With Boy's Quarter,"Chevron Alternative Route, Lekki Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18594,Unit Of 5 Bedroom Terrence Duplex,"13/15 Adegbenle Street, Chevy View Email, Chevron Lekki Lagos",₦,"90,000,000/year",0,1,0,5 beds,3 baths,4 Toilets,Chevron +18595,Newly Built 4 Bedroom Semi Detached Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +18596,7 Bedrooms House With 2 Bq,Vgc Vgc Lekki Lagos,₦,"380,000,000/year",0,0,0,7 beds,6 baths,6 Toilets,Victoria Garden City +18597,2 Bedroom Spacious Home,Salem Ikate Lekki Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ikate +18598,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +18599,5 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +18600,Neat 4 Bedroom Semi Detached House With One Room In Built Boy's Quarter Within A Secured Estate.,"Divine Mercy Close, Kayode Blessing Estate, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18601,Luxury 3 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +18602,Nice 4 Bedroom Terrace,Orchid Road 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18603,Three Bedroom Flat,Oral Estate Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +18604,5 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +18605,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets,Chevron +18606,Land Situated In A Beautiful Estate,Northern Foreshore Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Chevron +18607,5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +18608,5 Bedroom Detached Duplex + Bq In A Good Location,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +18609,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +18610,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +18611,4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +18612,1 Bedroom Apartment In A Good Location,Ologolo Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ologolo +18613,Luxurious 3 Bedroom Maisonette,Off Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +18614,Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18615,Luxury 5 Bedroom Waterfall Duplex With A Pool,Northern Foreshore Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18616,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets,Ikota +18617,3 Bedroom Apartments+bq (off Plan),Ikate Lekki Lagos,₦,"88,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +18618,Magnificent 2 Bedroom,Off Freedom Way Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +18619,Available Land,Leisure Land Park Jakande Lekki Lagos,₦,"3,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18620,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +18621,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +18622,5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18623,A Newly Built 4 Bedroom Semi Detached Duplex,Off Monastery Road Sangotedo Ikate Lekki Lagos,₦,"6,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18624,A Newly Built 4 Bedroom Semi Detached Duplex,Off Monastery Road Sangotedo Ikate Lekki Lagos,₦,"6,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18625,Land,Vgc Lekki Lagos,₦,"35,000,000",1,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18626,5 Bedroom Fully Detached Duplex With Bq And Pool,"Ikota,lekki Villa Estate Ikota Lekki Lagos",₦,"205,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +18627,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +18628,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +18629,Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18630,Smart Apartments Of 1 & 2 Bedroom Flats.,"Off Orchid Road, Idado Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,0 baths,3 Toilets,Other Lekki +18631,20units Of 4 Bedroom Terrace House,"Off Orchid Road, Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,0 baths,5 Toilets,Other Lekki +18632,Well Serviced Built 2 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +18633,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +18634,A Well Serviced Built 3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +18635,10 Bedroom Duplex,Off Jakande Jakande Lekki Lagos,₦,"140,000,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +18636,An Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +18637,Spacious Semi Detached Four Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +18638,A Lovely 2 Bedroom Apartment With A Room And 3 Bedroom Apartment Without Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +18639,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18640,5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18641,Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18642,Land,Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18643,Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +18644,Newly 5 Bedroom Duplex +bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,0 beds,0 baths,0 Toilets,Osapa London +18645,5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +18646,3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +18647,Luxury 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +18648,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18649,2 Units Of 3 Bedroom Apartment + Attached Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18650,Newly Built 4bedroom Detached,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18651,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18652,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,0 beds,0 baths,0 Toilets,Osapa London +18653,A Magnificently Finished 10 Units Of 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18654,Newly Built Five Bedroom Duplex + Pent House,Osapa London Lekki Lagos,₦,"275,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +18655,Land Measuring 904.783sqm,"Lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +18656,Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18657,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18658,Contemporary 4 Bedroom Duplex With Swimming Pool,"2nd Toll Gate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +18659,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18660,Newly Built 4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",1,1,1, beds, baths, Toilets,Victoria Garden City +18661,Luxury 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +18662,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18663,997 Meters Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18664,Contemporary 2bedroom Terrace,"Orchid Road By Second Toll Gate, Chevron Chevron Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +18665,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,1,0 beds,0 baths,0 Toilets,Ikota +18666,3 Bedroom Terrace Bungalow,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18667,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +18668,6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18669,Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18670,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +18671,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +18672,Tastefully Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,009",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18673,4bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18674,5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +18675,Luxury 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikota +18676,Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18677,4bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18678,4 Bedroom Semi Detached Duplex With 2 Rooms Bq And A Gatehouse,"Chris Efuyemi Onanuga Street, Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos",₦,"265,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18679,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18680,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18681,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +18682,House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18683,Spacious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +18684,5bedroom Super Duplex,Megamound Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +18685,4 Bedroom Terraced Duplex,"Orchid Road, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18686,Luxury 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +18687,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +18688,Luxury 2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +18689,5 Bedroom Detached Duplex & Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +18690,Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18691,3 Bedrooms Apartment With Maidroom (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18692,A Super Luxury 5 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +18693,Spacious 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +18694,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18695,5 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18696,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,"Alpha Bay Estate, Off Alpha Beach Road Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18697,4 Bedroom Semi Detached Duplex With A Room Bq,"Off Freedom Way, Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18698,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18699,3 Bedroom Terrace Duplex With Bq,Lekki Scheme 2 Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +18700,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18701,5bedroom Super Luxury Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +18702,Well Finished 5 Bedroom Detached Duplex With Bq,In A Highly Secured Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikate +18703,Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18704,5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +18705,4 Bedroom Semi Detached King Size Duplex,Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18706,Contemporary 5bedroom Super Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +18707,Multiple Units Of 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +18708,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18709,Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18710,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +18711,Newly Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +18712,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +18713,Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18714,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Ikate +18715,New 4 Bedroom Semi Detached Duplex,Conservation Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18716,Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18717,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18718,5 Bedroom With Bq Duplexes Maisonette,Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Lekki +18719,Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +18720,Distress Sales Of 3 Bedroom Duplex,Lekki Gardens Estate Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18721,4 Bedroom Semi Detached Duplex,Cowrie Creek Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18722,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18723,Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +18724,4 Bedroom Terrace Duplex,Victoria Crest Ii Opposite Ocean Bay Estate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18725,4 Bedroom Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18726,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18727,Contemporary 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +18728,Newly Built Five Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +18729,A Fully Serviced 2 Bedroom Flat,Lekki Conservative Center Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +18730,Luxury Units Of Well Finished 2 Bedrooms Apartments,"Off Conservation Road, By Chevron Toll Gate, Chevron Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets,Chevron +18731,: A Unit Of Well Maintained 4 Bedrooms Terrace Bungalow,Orchid Road Lekki Lagos,₦,"3,750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18732,4 Bedroom Terrace House Fully Serviced,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18733,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0, beds, baths, Toilets,Ologolo +18734,"Dry & Fenced Land Measuring 1,438sqm",Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +18735,4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +18736,4 Bedrooms Detached Duplex With Maid's Room,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +18737,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +18738,1200 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18739,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +18740,Spacious 3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"140,000,009",0,1,0,3 beds,4 baths,4 Toilets,Ikate +18741,Spacious 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +18742,Units Of Terrace Houses,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18743,Solidly Built Block Of 6 Numbers Of 3 Bedrooms Flat With Bq,Temple And Castle Drive Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18744,New 4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18745,4 Bedroom Terrace Without Bq,Victoria Crest Ii Estate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18746,4 Bedroom Semi Detached Duplex With Bq,Angles Court Abijo Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18747,4 Bedrooms Terrace Duplex With Maidroom (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18748,Four Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18749,An Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +18750,An Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +18751,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18752,Newly Built 5 Bedroom Detached Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18753,3 Bedrooms Penthouse With Maid's Room (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18754,Serviced 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +18755,Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +18756,1 Bedroom Apartment (fully Serviced),Seagate By Spaar Ikota Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikota +18757,An Excellent 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +18758,3 Bedroom Apartment,Off Admiralty Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18759,10 Bedroom Duplex,Off Jakande Jakande Lekki Lagos,₦,"140,000,000,000,000",0,0,0,10 beds,10 baths,8 Toilets,Other Lekki +18760,Brand New 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +18761,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +18762,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18763,5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +18764,4 Bedroom Terrace Duplexes,Ologolo Lekki Lagos,₦,"60,900,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +18765,15units Of 3bedroom Flats With 5 Units Of 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18766,Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18767,Luxury 5 Bedroom Detached Duplex,Orchid Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +18768,Lovely 3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +18769,Land,Orange Island Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18770,Massive 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +18771,650 Sqm Land, Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18772,Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +18773,This Luxurious Finished 4 Bedroom Fully Detached Duplex And 1 Bq,Lekki Lekky Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18774,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18775,5 Bedroom Detached Duplex With Bq, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +18776,Land,Osapa London Lekki Lagos,₦,"228,000,000",1,0,0,0 beds,0 baths,0 Toilets,Osapa London +18777,4 Bedroom Semi Detached Duplex With A Room Bq,Silver Spring Estate Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +18778,4 Bedrooms Maisonette & 2bedrooms Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +18779,3 Bedroom Terraced Duplex,S Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +18780,5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18781,Land For Sale: The Land Has A 2wing Of Semi Detached Terrace Duplex Plus A Foundation,... Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Osapa London +18782,Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +18783,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +18784,This Exquisitely Finished 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate.,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18785,5 Bedroom Fully Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18786,This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lekky Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18787,"Luxuriously Built 5 Bedroom Fully Detached Duplex Situated In The Heart Of Chevron, Lekki",Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +18788,"This 7bedroom Fully Detched Duplex(commercial Property), With Two Service Quarters",Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +18789,Contemporary 5 Bedroom Detached Duplex With Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18790,For Sale In Cowrie Creek Estate,Cowrie Creek Estate Osapa London Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Osapa London +18791,This Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate.,Chevron Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18792,240 Per Sqm Water Front Land,Orange Island Lekki Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18793,This Luxurious Finished 4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18794,Land At 1000 Sqm Meters,Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18795,5 Bedroom Fully Detached Duplexes; With Maid’s Quarters,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +18796,5 Bedroom Semi Detached Duplex House For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18797,5 Bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18798,5 Bedroom Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +18799,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +18800,Newly Built Beautifully 5 Bedroom Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18801,"This Lovely 5 Bedroom Fully Detached Duplex With 1 Room Bq Features Spacious Compound, Stamped Concrete Floor, Spacious Living Room And Family Lounge, All Rooms En Suite, Fully Fitted Kitchen",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18802,"A Tastefully Finished 5 Bedroom House With Boys' Quarters, All Rooms En Suite", Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +18803,5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18804,Land With A Structure On It In An Estate,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +18805,Land In Cowrie Creek Estate Size *800sqm* Block *a*, Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18806,5 Bedroom Detached Duplex With Bq On A 600sqm Land,Orchid Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +18807,"3 Spacious Bedrooms Apartments With Bq, Comes With 50kva Generator,",Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +18808,4 Bedroom Terrace,"Off Bisola Durosinmi Etti, Plot 28 Caroline Atounah Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +18809,3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +18810,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +18811,5bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +18812,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,7 Toilets,Chevron +18813,5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,7 Toilets,Chevron +18814,2 Bedroom Luxurious Apartment With Bq,15c Eru Ifa Road Ikate Lekki Ikate Lekki Lagos,₦,"58,000,000",1,1,1,2 beds,2 baths,2 Toilets,Ikate +18815,Serviced 3 Bedroom Apartment,Serviced 3 Bedroom Apartment Ikate Lekki Lagos,₦,"78,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +18816,Serviced 2 Bedroom Apartment With Boys Quarters,Serviced 2 Bedroom Apartment With Boys Quarters Ikate Lekki Lagos,₦,"58,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +18817,4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18818,World Class Shopping Mall,Colonel Mall Ologolo Lekki Lagos,₦,"1,500,000/sqm",1,1,1,0 beds,10 baths,0 Toilets,Ologolo +18819,2600sqm Land For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +18820,Luxury 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +18821,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18822,4 Bedroom Semi Detached Duplex,"Wole Ariyo Street, Off Chris Madueke St, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18823,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,7 Toilets,Osapa London +18824,2 Bedroom Penthouse With Beautiful View,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +18825,Land,Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18826,Land,"Highbridge Park, Ashagun Village Lekki Free Trade Zone Lekki Lagos",₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18827,Land,"Highbridge Park, Ashagun Village Lekki Free Trade Zone Lekki Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18828,A 2bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +18829,Land,"Mosere Kogo Village, Lekki Pennisula Lagos Behind Eko Akete Lekki Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18830,4 Bedroom Semi Detached Duplexes With Bq,"Bosmak Haven Estate, Harris Drive Vgc Lekki Lagos",₦,"77,500,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +18831,4 Bedrooms Fully Detached Duplex With Bq,Lekki Villa Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +18832,Spacious 3bedroom Flat(upstairs).,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +18833,Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lekki Peninsula Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18834,Land,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +18835,"Terrace &duplexes , Emcel Court","Orchid Area, Close To The Toll Gate, Emcel Court Chevron Lekki Lagos",₦,109,1,1,0, beds, baths, Toilets,Chevron +18836,5 Bedroom Fully Detached Duplex,"Haris Drive, Vgc, Lekki/ Romax Home 10 Vgc Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +18837,4 Bedroom Terrace House,Ekwuemesi Street Idado Lekki Idado Lekki Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,4 Toilets,Other Lekki +18838,Spacious 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18839,A 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +18840,A Spacious 2 Bedroom Flat.,"Off Freedom Way,ikate. Ikate Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +18841,4 Bedroom Detached Duplex With A Bq.,Ikota Ikota Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +18842,A Brand New 2 Bed Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +18843,A Brand New 3bedroom Terrace With A Bq And A Store,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +18844,Luxury 5 Bedroom Semi Detached Duplex.,Ikate Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18845,Spacious 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +18846,A Spacious 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +18847,A 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +18848,A Fully Serviced 2&3 Bedroom Flat,"Second Toll Gate, Orchid Road. Chevron Lekki Lagos",₦,"49,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +18849,Beautiful 4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18850,Nicely Built 4 Bedroom Semi Detached,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18851,Newly Built Four(4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18852,Contemporary 4bedroom Semi Detached,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +18853,Newly Built Mall,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +18854,Newly Built Four(4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18855,Newly Built 4 Bedroom Detached Duplex,Idado Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +18856,4 Bedrooms Maisonette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18857,5 Bedroom Fully Detached Duplex,Poland Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +18858,Serviced 4bedroom Automobile Terraced Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +18859,Newly Built Fully 4bedroom Fully Detached Duplex,Brigade Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +18860,A Newly Built 4 Bedroom Semi Detached Duplex,Tope Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +18861,A Luxurious And Serene 4bedroom Semi Detached Duplex,Yola Street Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +18862,Aspacious 4bedroom Authomobile Terrace Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +18863,Luxurious Automobile 4bedroom Fully Detached Duplex,Yola Street Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +18864,Exquisitely Built 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +18865,Super Exquisitely Built 1bedroom Mini Flat,2nd Till Gate Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +18866,"4bedroom Samidetached Duplex Available For Sale Location,lekki Phase 2 Ikota Villa",Bello Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +18867,A Tastefully Built 3bedroom With Bq,Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +18868,1021.94sqm Land,Ologolo Ologolo Lekki Lagos,₦,"85,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +18869,5bedroom Fully Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +18870,5bedroom Fully Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +18871,Serviced 4bedroom Automobile Terraced Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +18872,5bedroom Semi Detached Duplex,Freeman Chevron Lekki Lagos,₦,"77,000,000",1,0,0,5 beds,6 baths,6 Toilets,Chevron +18873,Well Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +18874,Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18875,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +18876,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +18877,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18878,Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +18879,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18880,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18881,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18882,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18883,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18884,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18885,Decently Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18886,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18887,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +18888,New Listing Alert! 4bedroom Semi Detached Duplex With A Bq . .,"Mobil Estate Road,lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +18889,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +18890,Land Fully Fenced And Gated,Shafi Sule Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18891,4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18892,Brand New And Serviced 2 Bedrooms Apartment,Argungi Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +18893,Contemporary Luxury 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18894,Finished Well Spaced 4 Bed Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18895,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18896,Well Built 3 Bedroom Apartment With Bq,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +18897,Tastefully Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +18898,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +18899,Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18900,4 Bed Contemporary Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18901,Commercial Land,Road 14(adebayo Doherty) Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18902,Spacious 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18903,Super Spacious 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18904,4 Bedroom Detached Duplex With Bq And Swimming Pool (pr.c),Lekki Right Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18905,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18906,Cornerpiece Land,"Bisola Durosimi Etti Drive,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18907,3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +18908,Six Bedroom Mansion,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +18909,Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Off Chevron Toll Gate, Lekki/h Homes Chevron Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +18910,Contemporary 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18911,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18912,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +18913,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18914,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18915,Masterpiece 5 Bed Fully Detached Edifice,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18916,Land,"Admiralty Way,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18917,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18918,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +18919,Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +18920,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18921,5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +18922,5 Bedroom Detached Duplex Carcass,U3 Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18923,4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18924,Fully Automated 5 Bedroom Fully Detached Mansion, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18925,Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18926,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +18927,Luxury 4/5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18928,5 Bed Contemporary Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +18929,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18930,American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +18931,Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18932,Finished 5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +18933,Newly Built 5 Bedrooms Detached Duplex On Two Floors With Bq And Penthouse,"Off Admiralty Road, Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +18934,6 Bedroom Fully Detached Mansion With A Penthouse,R Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +18935,Elegantly Built 5 Bed Fully Detached House,2nd Tollgate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18936,Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18937,Luxury 4 Bedroom Semi Detached Suplex With Bq,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18938,Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +18939,Tastefully Finished 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18940,5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18941,Gorgeous Luxury 5 Bed Fully Detached Home,Lekki County Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18942,2 Unit Of 4 Bedroom Terrace House,"Road 17, Cluster Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +18943,4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18944,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +18945,Land With A Structure On It,Off Oladimeji Allo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18946,Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +18947,Luxury 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18948,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18949,Cornerpiece Land With A Mansion On It,"African Lane,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +18950,Top Notch 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18951,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18952,Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18953,Newly Built 4 Bedrooms Detached Duplex With Bq And Private Compound,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +18954,Serviced 2&3 Bed Fully Serviced Apartments,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18955,Clean Spacious Brand New 4bed Terrace With A Room Bq,Ikate Elegushi. Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +18956,Well Built 4 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18957,5 Bed Fully Detached Duplex,Oniru Axis Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18958,High Quality 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18959,Brand New Luxury 5 Bedrooms Detached Duplex On Two Floors With Study,Chevron Toll Gate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +18960,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +18961,Decently Built 4 Bed Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18962,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +18963,Newly Built And Serviced 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +18964,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18965,Built 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18966,Contemporary 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +18967,Newly Built 5 Bedrooms Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +18968,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18969,Land With A Structure,Olawole Onitiri Cole Street Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +18970,Classy 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18971,Land With A Structure,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18972,4 Bedroom Detached Duplex At Bisola Durosimi Etti Lekki Phase 1,"Bisola Durosimi Etti Drive,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18973,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18974,Fully Serviced Automated 4 Bed Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18975,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +18976,Alluring 4 Bed Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +18977,3 Bedroom Semi Detached Bungalow,"Agelica Avenue, Good Home Estate, Lagos State. Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +18978,Gorgeous 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +18979,Decently Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +18980,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18981,Luxury One Bedroom Apartment,Bridgegate Estate Agungi Lekki Lagos,₦,"26,000,000",0,1,0,1 beds,2 baths,2 Toilets,Agungi +18982,Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate/christabel's Gardens Lekki Lagos,₦,"69,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +18983,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +18984,4 Bedroom Terraced Duplex (pr.b),Lekki Right Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +18985,Gorgeous Superbly Built Fully Automated 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18986,Super Spacious 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18987,Distress 4 Bedroom Terrace Duplex With Bbq,Lekki Conservation Center Road Chevron Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets,Chevron +18988,Commercial Land,Road 14(adebayo Doherty) Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18989,Decently Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +18990,Niche Quality Value Centric 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18991,Brand New Luxury 5 Bedrooms Detached Duplexes With Bq And Private Compound,Chevron Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +18992,Land With A Building,Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18993,Tastefully Finished 4 Bed Fully Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +18994,2/3 Bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +18995,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +18996,Tastefully Finished 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +18997,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +18998,Land With A Building On It,"Omorinre Johnson Street ,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +18999,4 Bedroom Terrace Duplex,Creek Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +19000,Elite Contemporary 4 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19001,Well Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +19002,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +19003,Fully Serviced Well Built Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +19004,Niche Quality Magnificent 5 Bed Luxury Duplex,Lekki County Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19005,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +19006,Tastefully Built 2 Bedroom Apartment,Bridgegate Estate Agungi Lekki Lagos,₦,"31,500,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +19007,Contemporary 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19008,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +19009,Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19010,Decently Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +19011,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +19012,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +19013,4 Bed Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19014,Contemporary 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19015,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +19016,Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19017,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +19018,Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +19019,Stunning Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +19020,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +19021,4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Lekki /vella Homes Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +19022,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +19023,Land With A Mansion,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19024,Bare Land,Adedeji Street Of Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19025,Beautifully Finished 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19026,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +19027,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +19028,7 Bed Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +19029,Brand New Partially Furnished 4 Bedrooms Terrace Duplex,Off Admiralty Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19030,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +19031,5 Bedroom Terrace,Beside Prime Water View Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +19032,Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19033,4bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +19034,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +19035,Contemporary 5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +19036,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +19037,5 Bedroom Semi Detached Duplex,Behind Tantalizers Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19038,4 Bedrooms Terraces,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +19039,Commercial Property Measuring 950sqm,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19040,Exquisite 5 Bedroom Fully Detached Duplex With Bq*,Ikate Lekki Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19041,Affordable 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19042,Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19043,4 Bedroom Maisonnette,4 Bedroom Maisonnette In A Serene Estate Lekki Lagos,₦,"55,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19044,Serviced 3 Bedroom Semi Detached Duplex,Serviced 3 Bedroom Semi Detached Duplex Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +19045,3 Bedroom Terrace Duplex,3 Bedroom Terrace Duplex Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19046,3 Bedroom Maisonnette,3 Bedroom Maisonnette In A Built Up Location Lekki Lagos,₦,"45,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +19047,A Newly Built 2 Bedroom Terrace Duplex,Orchid Road Van Daniels Estate Oral Estate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +19048,Newly Built 4 Bedroom Duplex,Lekki Conservation Court Estate Oral Estate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +19049,Beautiful 4 Bedroom Terrace Duplex,Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19050,Elegant 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19051,Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19052,Brand New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets,Ikota +19053,Brand New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets,Ikota +19054,Nicely Built 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"270,000,000",0,0,1,5 beds,6 baths,7 Toilets,Ikota +19055,5 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +19056,Land,"Okun Ajah, Lafiaji Jakande Lekki Lagos",₦,"90,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19057,4 Bedroom Penthouse,Ikate Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikate +19058,Exquisite 4 Bedroom Terraced Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +19059,4 Bedroom Fully Detached Smart Home,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19060,Exquisite Four (4) Bedroom Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19061,Contemporary Four(4) Bedroom Terraced Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19062,2 Bedroom Apartment,Kunsela Road Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"35,500,000/year",1,1,0,2 beds,2 baths,3 Toilets,Ikate +19063,Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19064,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19065,4 Bedroom Semi Detached Duplex With Bq,Jakande Axis Jakande Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,4 baths,5 Toilets,Other Lekki +19066,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19067,4 Bedroom Terrace Duplex For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",1,0,0, beds, baths, Toilets,Chevron +19068,4 Bedroom Terrace Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +19069,Affordable 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19070,Land,Orchid Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19071,Affordable 4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19072,Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19073,Spacious 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +19074,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +19075,3 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +19076,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19077,"Luxury 5 Bedroom Fully Detached Duplex With Gym, Cinema & Swimming Pool For Sale",Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19078,3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +19079,Affordable 4 Bedroom Terrace,Ikota Lekki Ikota Lekki Lagos,₦,"64,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +19080,Luxury 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19081,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19082,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19083,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19084,Newly Built 3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19085,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19086,5 Bedroom Fully Detached Duplex With Bq For Sale,Agungi Lekki Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +19087,4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19088,4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19089,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +19090,3bedroom Apartment,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +19091,4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19092,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19093,Luxury 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19094,3 Bedroom Apartment,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +19095,Newly Built 2 Bedroom Apartment,Chevron Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +19096,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19097,2 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +19098,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19099,2bedroom Apartment,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +19100,Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19101,Affordable 4bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19102,4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19103,Luxury 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Ikota Lekki Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19104,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19105,Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19106,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19107,Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19108,2 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +19109,5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19110,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Agungi Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +19111,5 Bedroom Fully Detached Duplex With Bq,Lekki Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +19112,4 Bedroom Maisonette With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19113,2 Bedroom Terrace,"Orchid Road, Lekki Conservation Centre Chevron Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Chevron +19114,Luxury 2 Bedroom Terrace,"Victoria Crest Estate, Orchid Road Lekki Lagos Chevron Lekki Lagos",₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +19115,Newly Built 4 Bedroom Semi Detached Duplex+bq,"H Homes, Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19116,4 Bedroom Sem Detarched Duplex,Orchid Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +19117,Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19118,3 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19119,Sharply Looking 4 Bedroom Semi Detached Duplex*,Orchid Lekki Lagos Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19120,1300sqm Fenced And Gated Residential Bareland,Off Oriwu Street Petrocam Elf Bus Stop Lekki Scheme 1 (rhs) Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19121,5 Bedroom Detached House,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +19122,7730sqm Bareland,Lekki Epe Expressway Elf Bus Stop Beside The Banks Lekki Scheme 1 Lago Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19123,1404sqm Land With Building,Off Tf Kuboye Str Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19124,2 Bedroom Terrace Duplex+ Bq,Abijo Gra Jakande Lekki Lagos,₦,"36,000,000/month",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +19125,Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +19126,Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +19127,Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +19128,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,009,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19129,2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +19130,2 Bedroom Apartment,Ocean Bay Estate Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +19131,2 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +19132,3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19133,3 Bedroom + Bq Penthouse,"Camberwall Advantage, Lekki 1 Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19134,2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +19135,2 Bedroom Apartment,"Camberwall Advantage, Lekki 1 Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19136,A 2 Bedroom Apartment With Bq,Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +19137,3 Bedroom Apartment With Bq,Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +19138,3 Bedrooms Maisonette,"Camberwall Advantage, Ikate Lekki Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19139,4 Bedroom Terrace With Bq,"Off Freedom Way Off Regional Road, Lekki Lagos",₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +19140,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +19141,4 Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +19142,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +19143,4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +19144,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19145,1 Bedroom Apartment,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"20,000,000",1,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +19146,4 Bedroom Fully Detached Castle + Bq,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19147,4 Bedroom Semi Detached Castle Duplex + Bq,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19148,4 Bedroom Terraces Castle Duplex + Bq,"De Castle Max, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19149,Land,Lekki Lagos,₦,"52,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19150,Tasteful 3bedroom Flat Apartment.,Bera Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +19151,"5 Bedroom Luxury Duplex + 2 Servant Room Inside Northern Foreshore Estate, Off Chevron Drive Lekki",Northern Foreshore Estate Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,7 baths,8 Toilets,Chevron +19152,5 Bedroom Fully Detached Duplex + 1 Room Bq,Lilly Street/tulip Haven Estate/abiola Court 10 Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +19153,Newly Built 5 Bedroom Luxury Duplex + 2 Room Bq,Chevron Lekki Lagos,₦,"340,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +19154,Classic 4 Bedroom Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,6 Toilets,Chevron +19155,3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19156,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19157,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +19158,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +19159,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +19160,3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19161,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19162,5 Bedroom Fully Detached Luxury Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,1,5 beds,4 baths,4 Toilets,Lekki Phase 1 +19163,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19164,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +19165,Royal Standard 5 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,8 Toilets,Other Lekki +19166,4 Bedroom Semi Detached Triplex Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,3 Toilets,Lekki Phase 1 +19167,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19168,5 Bedroom Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19169,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19170,Masterpiece 5 Bedroom Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +19171,4 Bedroom Fully Detached Luxury Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +19172,Spacious 5 Bedroom Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19173,5 Bedroom Fully Detached Luxury Duplex With A Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,4 Toilets,Osapa London +19174,Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +19175,Decently Finished 4 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +19176,Brand New Office Space,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +19177,4 Bedroom Sem Detarched Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikate +19178,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +19179,5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19180,Gorgeous 5 Bedroom Duplex,Lekki County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19181,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ologolo +19182,4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19183,Beautifully Finished 2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +19184,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19185,4 Bedroom Fully Detached Luxury Duplex With A Bq,Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,3 baths,3 Toilets,Other Lekki +19186,Serviced 4 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +19187,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19188,3 Bedroom Apartment With Bq,Abijo Lekki Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +19189,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19190,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,0 baths,7 Toilets,Other Lekki +19191,Fully Finished 4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ologolo +19192,4 Bedroom Terraced Town House,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikate +19193,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +19194,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +19195,Tastefully Built 4 Bedroom Semi Detached Duplex,Toll Gate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +19196,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19197,Spacious 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +19198,Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19199,Luxury 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikate +19200,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19201,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +19202,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +19203,Lixury 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikate +19204,Luxury 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19205,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19206,4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Osapa London +19207,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +19208,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19209,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19210,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19211,5 Bedroom Fully Detached Luxury Duplex With A Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikate +19212,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19213,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,009,009",0,0,0,4 beds,4 baths,6 Toilets,Ikota +19214,4 Bedroom Sem Detarched Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets,Victoria Garden City +19215,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19216,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19217,Magnificent 5 Bedroom Home,Lekki County Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,8 Toilets,Other Lekki +19218,Exquisitely Finished 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +19219,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,7 Toilets,Other Lekki +19220,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19221,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19222,Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,8 Toilets,Chevron +19223,Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +19224,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds, baths, Toilets,Ikate +19225,3 Bed Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +19226,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +19227,Luxury Built 4 Bedroom Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +19228,Luxury 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +19229,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19230,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +19231,Tastefully Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikate +19232,4 Bedroom Terrace Triplex Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19233,Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +19234,"5 Bedroom Fully Detached Luxury Duplex With Penthouse, Cinema And A Swimming Pool",Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +19235,Luxury 2 Bedrooms Terrace,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +19236,4 Bedroom Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19237,Newly Built Four Bedroom Terrace,Tulip Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19238,4 Bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19239,Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19240,Six (6) Units Of Finished 5bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikate +19241,Fully Serviced 2bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +19242,4 Bedroom Detached House With A Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +19243,4 Bedroom Terrace Duplex,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19244,Exquisitely Finished 5 Bedroom Detached Duplex With Bq,Mega Chicken Ikota Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19245,2 Bedroom Apartment,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Agungi +19246,Land,"Whale County Estate Phase 1, Opposite Cooplag Estate Lekki Lekki Phase 2 Lekki Lagos",₦,"45,000,000/day",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +19247,Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +19248,5 Bedroom Detached Duplex With Bq,Orchid Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19249,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19250,4 Bed Semi Detached With Bq In Orchid Road,Lekki Conservative Center Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19251,"5 Bedroom Duplex With Bq, Swimming Pool And Gym","White Oak Estate, Ologolo Lekki 1. Ologolo Lekki Lagos",₦,"285,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +19252,600sqm Land,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19253,Exquisite 5 Bedroom Luxury Fully Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19254,Newly Built 3 Bedroom Terrace Duplex,"Abijo Gra, Brookshill Estate,close To Shoprite Lekki Phase 2 Lekki Lagos",₦,"35,000,000/day",1,1,1,3 beds,5 baths,5 Toilets,Lekki Phase 2 +19255,Luxury 4 Bedroom Semi Detached Duplex,Orchids Road Royal Pinned Estate Orchids Lekki Phase 2 Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19256,Luxury Semi Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19257,5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +19258,4 Bedroom Detached Duplex With Bq,Idado Idado Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19259,3bedroom With Bq,Oba Eleguchi Palace Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19260,Affordable 3 Bedroom Maisonette,"Ambiance Heights, Freedom Way, Ikoyi Link Bridge, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +19261,Brand New 4 Bedroom En Suite,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19262,Land,Akodo Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19263,4 Bedroom Fully Detached Castle Duplex + Bq,Orchid Hotel Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19264,Newly Built 4 Bedroom Duplex,Tulip Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19265,4 Bedroom Terrace Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19266,Affordable 3 Bedroom Apartment,Freedom Way Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19267,"Fully Serviced Brand New 1,2 & 3 Luxury Apartments With These Amazing Features In A Serene Enviroment.","Megamond Estate, Lekky County Homes Ikota Lekki Lagos",₦,"27,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19268,Newly Built 4 Bedroom Semi Detach Duplex + Bq,Mega Chicken Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19269,Beautiful 2 Bedroom Apartment With Bq,Godmade Connct Court 4 With Governor’s Consent Flexible Payment Plans Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +19270,3 Bedroom Apartment With Bq,Godmade Connect Court 4 With Governor’s Consent Flexibility Payment Plans Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19271,4 Bedroom Terrace Duplex With Bq,Godmade Connect Court 4 With Governor’s Consent Flexible Payment Plans Richmondavenue Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19272,A Super Finished Four Bedrooms Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19273,Fully Furnished 1bedroom Apartment,Ruby Apartments With Governor’s Consent Flexible Payment Plans Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,1,1 beds,1 baths,2 Toilets,Ologolo +19274,Classic 4 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19275,"Serviced 1,2,3 Bedroom Apartment With Swimming Pool And Gym",Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Chevron +19276,4 Bedroom Semi Detached Terrace Duplex,Lekki 3rd Roundabout White Oak Estate Spa Lekki Jakande Lekki Lagos,₦,"95,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +19277,Well Built And Designed 5 Bedroom Fully Detached Duplex,"Megamount Estate, Lekki County Homes, Ikota Lekki Ikota Lekki Lagos",₦,"250,000,000/day",0,1,0,5 beds,0 baths,0 Toilets,Ikota +19278,5 Bedroom Detached Duplex,"House 43, Williams Onoh Street, Bera Estate, Chevron Drive, Lekki Phase Ii Chevron Lekki Lagos",₦,"150,000,000/sqm",0,1,1,7 beds,7 baths,7 Toilets,Chevron +19279,3 Bedroom Apartment,"Paradise Court Estate, Orchid Road Chevron Lekki Lagos",₦,"25,500,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +19280,3 Bedroom Terrace Duplex,"Paradise Court Estate, Orchid Road Chevron Lekki Lagos",₦,"40,990,000/year",1,0,0,3 beds,3 baths,4 Toilets,Chevron +19281,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19282,3 Bedroom Terrace + Bq,Abijo G.r.a Ikota Lekki Lagos,₦,"35,000,000/month",0,1,0,3 beds,3 baths,3 Toilets,Ikota +19283,5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19284,4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +19285,4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +19286,Newly Built 4bedroom Semi Detached Duplex Plus Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19287,Newly Built 4 Units Of 4bedroom Terrace Duplex With Up To 6month Payment Plan,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +19288,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +19289,Newly Built 4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets,Victoria Garden City +19290,Luxuriously Built 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +19291,Exquisitely Built 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +19292,5 Bedroom Fully Detached Duplex,Orchid Road Ginza Hills Ikate Lekki Lagos,₦,"140,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Ikate +19293,Newly Built 4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19294,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19295,Newly Built 5 Bedrooms 4 Rooms And 1 Bq,Beechwood Estate Lekki Lagos,₦,"70,000,000/month",1,0,0,5 beds,4 baths,4 Toilets,Other Lekki +19296,Luxury 4bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +19297,Newly Built 5 Bedroom Detached House With Gatehouse,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +19298,Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +19299,Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +19300,Newly Built Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +19301,Luxury 4 Bedroom Terrace Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19302,Nice 3 Bedroom Duplex In A Spacious Compound,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +19303,5 Bedroom Fully Detached With 2 Rooms Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +19304,"Luxury 4bedroom Terrace Duplex With Bq, Pool, Lounge And Gym",Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets,Ikate +19305,Newly Built 5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +19306,Luxury 5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +19307,4 Bedroom Detached House With 30kva Gen,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +19308,Exquisitely Finished And Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +19309,2 Bedroom Apartments With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +19310,Lovely 4bedroom Semidetached With Bq,Off Nike Gallery Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19311,Luxury 3 Bedroom Apartment With Waiting Room,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +19312,Newly Built 5 Bedroom Detling Detached House With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +19313,Old Property Sitting On 475sqm,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19314,Luxury 3 Bedroom Terrace Duplex With Bq Inside A Very Neat Estate,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19315,Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +19316,Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +19317,4 Units Of 3 Bedroom Apartment With Bq,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths, Toilets,Chevron +19318,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +19319,Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +19320,Brand New 2 Bedroom Terrace Duplex,Ikota Estate Lekki Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,4 Toilets,Ikota +19321,Luxury 5bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19322,Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +19323,5 Bedroom Detached House With Swimming Pool,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +19324,Tastefully Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +19325,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,5 beds,5 baths,5 Toilets,Ikate +19326,6 Bedroom Duplex,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,6 beds,0 baths,0 Toilets,Lekki Phase 1 +19327,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19328,5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,5 baths,5 Toilets,Osapa London +19329,Clean 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +19330,Newly Built 4bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +19331,4 Bedroom Semi Detached House,Agungi Lekki Lagos Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,7 Toilets,Agungi +19332,5 Bedroom Fully Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +19333,Luxury 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19334,Lovely 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +19335,Fully Detached 4 Bedroom Duplex,Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19336,Clean 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19337,Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19338,Distress Sale 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +19339,4 Bedroom Massionette,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +19340,5 Bedroom Detached House With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +19341,Massive 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +19342,Construction Of 4 Bedroom Terrace Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +19343,Beautiful And Well Maintained 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +19344,Newly Built 2 Bedroom Apartments,Second Tollgate Lekki Lagos Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +19345,Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19346,Luxury 4 Bedroom Terrace Duplex With Bq,Marwa Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19347,Luxury Smart 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +19348,Old Property On A Land Measuring 648sqm,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +19349,Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths, Toilets,Chevron +19350,3 Bedroom Luxury Apartments With Bq And Swimming Pool,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets,Chevron +19351,5 Bedroom Detached Home With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +19352,Newly Built 4bedroom Semidetached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths, Toilets,Other Lekki +19353,Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +19354,Tastefully Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +19355,Brand New 5 Bedroom Duplex With Gatehouse,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +19356,Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19357,Newly Built 1 Bedroom Apartments With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +19358,Luxury 5 Bedroom Fully Detached Duplex With Bq In A Massive Compound,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19359,Clean 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19360,Newly Built Luxury 4bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19361,3 Bedroom Massionette,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +19362,2units Of 3bed And 4bed Semidetached With Bq,Lekki Lagos,₦,"370,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +19363,Land Measuring 450sqm,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19364,Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +19365,4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19366,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,5 Toilets,Ikate +19367,Massive 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +19368,Massive 9bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,9 beds,9 baths,10 Toilets,Victoria Garden City +19369,14 Units Of 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +19370,Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +19371,Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19372,Luxury 4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +19373,Luxury Massive 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19374,Newly Built 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +19375,Distress Sale: Smart 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19376,Brand New 4 Bedroom Detached House Serviced With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets,Chevron +19377,Luxury Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +19378,4units Of Spacious 3bedroom Apartment,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths, Toilets,Chevron +19379,Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +19380,2 Bedroom Massionette,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +19381,Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +19382,Luxury 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +19383,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19384,Amazing 5 Bedroom Detached Home With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ologolo +19385,One Full Plot In An Estate,Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Ikota +19386,Massive 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +19387,Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +19388,Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19389,Newly Built 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +19390,Newly Built 5 Bedroom Detached Duplex,Victory Park Estate Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +19391,30 Units Of Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +19392,Luxury 5bedroom Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths, Toilets,Other Lekki +19393,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +19394,Newly Built 4 Bedroom Detached House,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +19395,4 Units Of 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +19396,Fully Detached 5bedroom Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +19397,Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"97,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +19398,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +19399,Land Measuring 605sqm,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +19400,Clean 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19401,Land,Freedom Way Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19402,Super Brand New Luxury 4 Bedroom Semi Detached With Bq,Before Vgc Close To Mega Chicken Ikota Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +19403,Hotel,Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19404,3 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +19405,2 Bedroom Penthouse With Governor's Consent,Godmade Connect Court 3 Ikate Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets,Ikate +19406,4 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +19407,5 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"125,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +19408,5 Bedroom Detached Duplex,Northern Foreshore Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +19409,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Agungi +19410,Super Luxury 5 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19411,Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19412,A Plot Of Land Measuring 550sqm,Arcadia Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19413,Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19414,Land,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19415,4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +19416,Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19417,4 Bedroom + Bq,Orchid Road With Governor's Consent. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19418,Luxury 4bedrooms Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19419,4 Bedroom Semi Detached Duplex With Bq,"Ekate, Lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +19420,Newly Built 4 Bedroom Semi Detached Duplex With Bq,"Spring Garden Estate, Orchid Hotel Road Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19421,Super Luxury 5 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +19422,4 Bedroom+ Bq,"Luxurious House At Osapa London, Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +19423,10 Plots Of Dry Fenced Corner Piece Land,Lakowe Golf Lekki Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Lekki +19424,Bedroom Semi Detached Duplex With A Bq,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19425,Land,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19426,Tastefully 3bedroom Flat Apartment,Bera Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +19427,Joint Venture,Gra Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Ikota +19428,1 Bedroom,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"38,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +19429,New 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19430,4 Bedroom With Governor's Consent At Godmade Connect Court,"Godmade Connect Court 5 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19431,Commercial Property,Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19432,Government Consent,Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Ikota +19433,5 Bedroom Fully Detached Duplex + Bq,"Ekate, Lekki Ikate Lekki Lagos",₦,"165,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +19434,Plot Of Land,Pinnock Beach Estate Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19435,Sweet Joint Venture,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +19436,4 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19437,4 Bedroom,De Castle Max Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19438,2 Bedroom + Bq With Governor's Consent At Mufasa Lifestyle Apartments,Mufasa Lifestyle Apartments With Governor's Consent Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +19439,A Plaza With 144 Shop,Orchid Road Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19440,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19441,4 Bedroom At Chevron,"By Lekki Toll Gate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19442,Land,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19443,Land,Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19444,Super Brand New Luxury 4bedroom Semi Detached With Bq,Before Vgc Close To Mega Chicken Ikota Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +19445,Super Luxury Well Finished 5bedroom Fully Detached Wit Bq At Chevron,Chevron Drive Lekki Chevron Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19446,Hot Joint Venture,Ikota Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Ikota +19447,20% Completed 5 Bedroom Fully Detached + Bq,Off Durosimi Etti Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +19448,Land,Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19449,4 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +19450,Super Luxury 5 Bedroom Duplex,Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19451,A Parcel 780sqms Land,Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19452,Ultramodern 4 Bedroom Fully Detached Duplex,"Pearl Gardens, Sangotedo Vgc Lekki Lagos",₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +19453,Available Land,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19454,A Plot Of Land Measuring 450sqm,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +19455,2 Blocks Of 4 Units Of 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19456,Super Affordable 4 Bed Terrace,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19457,Sweet Joint Venture,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19458,A 7bedrooms Detached Duplex With 3 Sitting Rooms,Nicon Town Nicon Town Lekki Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +19459,A Parcel Of 900sqm Land,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19460,2 Bedroom,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"48,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +19461,3 Bedroom + Bq At Emcel Apartments,"Emcel Apartments, Adjacent Enyo Fuel Station Ikate Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19462,2 Bedroom Apartment With Governor's Consent For Sale At Ruby Apartments 3,"Ruby Apartments 3, Ologolo Agungi Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +19463,Joint Ventures,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Ologolo +19464,2 Bedroom Apartments,Ocean Palm Estate With Governor's Consent At Meadow Hall Way Ikate Lekki Lagos,₦,"53,300,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +19465,4 Bedroom With C Of O,"Victory Star Court, Ikota Gra Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19466,795sqm Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +19467,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19468,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +19469,4 Bedroom Terrace Duplex And A Room Bq,Ikate Ikate Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +19470,4 Bedroom Semi Detached Duplex Home,Orchid Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19471,Luxury 5 Bedroom Duplex,Bera Estate Chevron Drive Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19472,A Parcel Of 840sqm Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19473,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +19474,A Four Bedroom Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19475,Land With C Of O,Lekki Palm City Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19476,A School Building.,Osapa London Agungi Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +19477,Exquisite 2 Bedroom & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19478,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +19479,180 Plots Facing Ogombo Express,Ajah Idado Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Other Lekki +19480,2 Bedroom For Sale At Ambiance Heights,Ambiance Heights Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +19481,A 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +19482,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19483,2 Bedroom Apartments,"Camberwall Advantage 4, Off Freedom Way Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +19484,Newly Built 4 Bedroom Maisonette,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19485,4bedroom Terraces,Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19486,Newly Built Luxury 4 Bedroom Terrace Duplex And A Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +19487,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +19488,Land,Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19489,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +19490,4 Bedroom Semi Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19491,A Land Measuring 1000sqm,Zone B Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19492,5 Bedroom Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +19493,A Land Measuring 961 Sqm,Spg Road Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +19494,5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +19495,Lovely Built 5 Bedroom Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19496,4 Bedroom + Bq,"Luxurious Duplex, Off Lekki Epe Expressway Osapa London Lekki Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +19497,Land,Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19498,4 Bedroom Duplex,African Lane Before Admiralty House Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19499,4bedrooms Maisonette Penthouse + Bq,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +19500,Commercial Building Sitting On 950sqm Land,Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Other Lekki +19501,Hotel,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19502,3 Bedroom Apartment,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19503,Newly Built 2 Bedroom,"Emcel Court At Orchid Road, Opposite Prime Mall Chevron Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +19504,2 Bedroom For Sale At Camberwall Advantage,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets,Ikate +19505,Seven (7) Units Of Waterfront Luxury Apartments Comprising 3 Bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19506,Land,Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19507,Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19508,"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House,",Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19509,Ultimate Value 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19510,Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"14,400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19511,Land,Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19512,3165sqm Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19513,Land,Off Alpha Beach Road Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19514,A Parcel Of 1118sqm Land,Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19515,4 Bedroom At Emcel Apartments,"Emcel Apartments, Adjacent Enyo Fuel Station Ikate Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,3 baths,5 Toilets,Ikate +19516,6 Bedroom Detached Duplex+bq,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +19517,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19518,3 Bedroom + Bq At Mufasa Lifestyle Apartments,Mufasa Lifestyle Apartments With A Strong Title Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19519,Super Luxury 5 Bedroom Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19520,3 Bedroom Duplex With Bq At Chevy View Estate,"Chevy View Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +19521,Own This Luxury 4 Bedroom Semi Detached Home,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Victoria Garden City +19522,A Plot Of Land Measuring 800sqm Waterfront,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19523,A Lovely 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19524,Brand New 4 Bedroom Detached House With Cctv Cameras, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19525,4 Bedroom Townhouse With Bq,Mike Adegbite Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19526,Niche Quality Value Centric 5 Bed Fully Detached Duplex With 2 Bqs,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19527,1 Bedroom With Governor's Consent,Godmade Connect Court 5 With Governor's Consent Ikate Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ikate +19528,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19529,Joint Venture,Gra Ikota Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Ikota +19530,Lovely Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19531,Hot Joint Venture,Spg Road Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +19532,Own This 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +19533,Newly Built 4 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19534,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +19535,Joint Venture 700sqm Plot Of Land,Romay Gardens Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19536,Block Of Flats Comprising 4 Units Of 3 Bedrooms Flats,Directly Off Bisola Durosinmi Etti Road Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19537,3 Bedroom,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Ikate +19538,4 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +19539,A Functional Mega Filling Station,Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Ikate +19540,A Conner Piece Plot Of Land,Ologolo Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +19541,Land,Pinnock Beach Estate Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19542,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19543,Land,Carlton Gate Chevron's Drive Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19544,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +19545,Ultimate Value 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19546,Newly Built 4 Bedroom Terrace Duplex,"Emcel Court At Orchid Road, Opposite Prime Mall Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +19547,Luxury 4 Bedroom Semi Detached Duplex,"Chevron, Lekki Lekki Lagos",₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +19548,4 Bedroom Semi Detached Duplex Home,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +19549,3 Bedroom,"Ambiance Heights With Governor's Consent, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19550,2 Bedroom At Emcel Apartments,Emcel Apartments Adjacent Enyo Fuel Station Ikate Lekki Lagos,₦,"51,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +19551,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +19552,4 Bedroom,Bloom Haven Residences Ikate Lekki Lagos,₦,"78,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +19553,3 Bedroom Apartments,"Camberwall Advantage 4, Off Freedom Way Ikate Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +19554,Demolishable Property,Henry Ojorgho Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19555,5 Bedroom With Governor's Consent At Godmade Connect Court,"Godmade Connect Court 5 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19556,4 Bedroom,Bosmak Haven Vgc Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +19557,7 Acres Of Land,Lekki Express Way Lekki Phase 2 Lekki Lagos,₦,"300,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +19558,7 Bedrooms Duplex With Swimming Pool,Cowrie Creek Estate Ikate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,7 Toilets,Ikate +19559,4 Semi Detached Duplex,Vgc Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +19560,4 Bedroom,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19561,Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19562,Luxury Built 3bedroom Apartment With Bq,I Court Estate. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +19563,Newly Built 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +19564,A Plot Of Land Measuring 2300sqm,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19565,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +19566,3 Bedroom With Governor's Consent,"Godmade Connect Court 4 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19567,Newly Built Five Bedrooms Detached Duplex,Lekki County Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +19568,Land,Vopnucity Ocean View Estate Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19569,Estate Land,Vopnucuty Ocean View Estate Lekki Lagos,₦,"12,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19570,4 Bedroom Terrace Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"62,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19571,5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19572,5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19573,Beautiful 4 Bedroom Semi Detached Castle Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"72,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19574,4 Bedroom Fully Detached Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19575,4bedroom Terrace Duplex,"Ikota, Lekki Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19576,Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +19577,4bedroom Terrace Duplex,Emcel Apartments Ikate Lekki Lagos,₦,"78,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +19578,3 Bedroom Apartment With Bq,Emcel Apartments With Governor’s Consent Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +19579,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +19580,4 Bedroom Semi Detached House,Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19581,3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +19582,Newly Built Luxury 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +19583,Luxury 3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +19584,1 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,1 beds,1 baths,2 Toilets,Ikate +19585,4 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19586,A Newly Built 2 Bedroom Room Apartment With Bq,Ikate Lekki Lagos,₦,"52,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +19587,4 Bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19588,A Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +19589,4 Bedroom Terrace In A Prime Location,Emcel Court 4 With Governor’s Consent Lafiaji Road Orchid Road Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +19590,2 Bedroom Terrace With Governor’s Consent,Emcel Court 4 With Flexibility Of Payment Plans Lafiaji Road Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,1,2 beds,2 baths,3 Toilets,Chevron +19591,Newly Built 4 Bedroom Fully Detached Duplex With Boys Quarters,Newly Built 4 Bedroom Fully Detached Duplex With Boys Quarters Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +19592,Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19593,4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19594,Well Structured 2 Bedroom Terrace Duplex In A Serene Estate,Well Structured 2 Bedroom Terrace Duplex In A Serene Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +19595,3 Bedroom Fully Detached Castle Bungalow With Bq,"De Castle Max, Awoyaya, Oribanwa Bus Stop. Lekki Phase 1 Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19596,3 Bedroom Semi Detached Castle Bungalow,"De Castle Max, Awoyaya, Oribanwa Bus Stop. Lekki Phase 1 Lekki Lagos",₦,"25,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19597,2 Bedroom Terrace,Emcel Court On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19598,4 Semi Detached Bedroom With Bq,Emcel Court On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19599,5bedrooms Fully Detached Detached Duplex With Bq,Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,0 Toilets,Other Lekki +19600,Newly Built 4 Bedroom Terrace Duplex With Equipped Kitchen,Van Daniel Estate Orchid Road Chevron Lekki Lagos,₦,"6,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19601,Two Bedroom Flat,White Sand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19602,Geniue And Secured Estate Land,"Igbojiya Shapati, Lekki Lagos",₦,"2,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19603,Secured Estate Land,Lekki Lagos,₦,"4,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19604,Estate Land,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +19605,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +19606,Exclusively Finished 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +19607,Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +19608,Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +19609,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +19610,4bedroom Masionette,Chevron Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,0 Toilets,Chevron +19611,2 No Of Detach Duplex 5 Bedroom,Off Freedoms Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19612,4 Bedroom Terrace Maisonette,Lekki 1 Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +19613,4 Bedroom Newly Built Terrace With Bq,Very Close To Lekki Peninsula School Osapa London Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19614,Newly Built 2bedroom Apartment,"Very Close To Elegushi Palace, Ikate, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Ikate +19615,Club,Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19616,Newly Buit 5bedroom Fully Detached Duplex,Street Opposite Victory Park Estate Osapa London Lekki Lagos,₦,"185,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19617,3bedroom Terrence Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets,Agungi +19618,4 Bedroom Duplex,Pear Garden Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19619,5 Bedroom Fully Detached Duplex With Bq,Beside Prince Kazeem Eletu Street Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19620,Newly Built 3bedroom Apartment With Bq,Elegushi Palace Ikate Lekki Lagos,₦,"78,000,000/year",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19621,Fully Furnished 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +19622,Well Verified And Certified Land,"Mosere Kogo Villa, Behind Eko Akete Ikota Lekki Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +19623,4 Bedroom Duplex With Governor’s Consent,Bosmak Haven With Governor’s Consent By Harris Drive Vgc Lekki Epe Expressway Vgc Lekki Lagos,₦,"77,500,000/year",0,0,1,4 beds,4 baths,5 Toilets,Victoria Garden City +19624,Brand New 4 Bedroom Semi Detached Duplex With Boys Quarters,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19625,Beautiful 3 Bedroom Terrace Duplex With Boys Quarters In A Serene Estate,Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19626,Brand New 2 Bedroom Terrace Duplex With Boys Quarters,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19627,"4bedrooms Terraces, Semi & Fully Detached Duplexes With Bqs",2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19628,Land With Instant Allocation,Buy Land With Instant Allocation Lekki Lagos,₦,"5,750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19629,Verified And Secured Land,Lekki Lagos,₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19630,Land,"Okun Ise, Ibeju Lekki Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19631,Beautifully Furnished 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,3 baths,3 Toilets,Osapa London +19632,5 Bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +19633,5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19634,5 Bedroom Fully Detached Duplex With Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +19635,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Nicon Town Nicon Town Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19636,5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +19637,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +19638,3 Bedroom Terrace Duplex,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +19639,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +19640,4 Bedroom Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +19641,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19642,Tastefully Finished 3 Bedroom Flat With Bq,Off Rahman Adeboyejo St Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19643,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikota +19644,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +19645,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +19646,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,3 baths,5 Toilets,Lekki Phase 1 +19647,5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +19648,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +19649,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +19650,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +19651,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +19652,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +19653,4 Bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +19654,4bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +19655,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19656,Beautiful 5 Bedroom Duplex,Jakande Axis Jakande Lekki Lagos,₦,"270,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19657,Newly Built 3unit Of 4bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19658,Very Nice And Decent 4 Bedroom Terrace Duplex,"4, Ayigoro Street Off Gbangbala St Ikate Lekki Lagos",₦,"65,000,000/sqm",1,0,1,4 beds,4 baths,5 Toilets,Ikate +19659,Newly Build Luxury Finish 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +19660,Newly Built Luxury 5bedroom Detached Duplex,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19661,Spacious 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19662,Ongoing Offplan Flat,Ikota Lekki Lagos,₦,"39,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +19663,600sqm,Lakeview Park 1 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19664,Beautiful 4 Bedrooms Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19665,Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +19666,Lekki Luxury Duplex With Building Plan Approval,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19667,4 Bedroom Terrace Duplex With Bq,Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19668,Lovely And New Duplex With Bq,Victory Park Estate Jakande Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19669,Well Maintained 3units Of 3bedroom Terraces,Off Tf Kuboye Lekki Right Hand Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19670,Newly Built 4 Bedroom Duplex Home,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19671,4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19672,Newly Built 5bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19673,Lovely Finished 5bedroom Furnished Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,5 Toilets,Chevron +19674,Newly Built 4bedroom Duplex,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19675,4bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +19676,875sqm Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +19677,Newly Built Luxury 5bedroom Fully Detached Duplex,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19678,4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19679,4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +19680,Brand New Luxury Fully Serviced 3bedrooms Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19681,Ongoing 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19682,Luxury 4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate.... Chevron Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19683,Brand New 5 Bedroom Home,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19684,Tastefully Finished Brand New 5bedroom Fully Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +19685,Newly Built 4bedroom Duplex,Ikota Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +19686,5bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19687,4bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +19688,Beautiful And Luxury 4bedrooms Semi Detached Duplex With Bq,Around 2nd Toll Gate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19689,Luxury And Tastefully Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +19690,Magnificent 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19691,Newly Renovated 3 Bedroom Apartment,Orchid Road Oral Estate Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +19692,300sqm And 500sqm Of Land,"Pleasure Gardens Idera, Eleko Lekki Lagos",₦,"35,500/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +19693,Four (4) Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19694,Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19695,Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19696,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19697,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19698,Five (5) Bedroom Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +19699,5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19700,Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19701,One Bedroom Mini Flat, Agungi Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,1 Toilets,Agungi +19702,Five (5) Bedroom Fully Detached Duplex,Sangotedo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19703,Four (4) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19704,Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19705,Brand New Uniquely Finished 4 Bedroom Semi Detached Duplex In A Fully Secured Environment.,Mega Chicken Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19706,Four (4) Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +19707,Very Good Semi Detached 2 Bedroom Bungalow,Trade More Estate Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +19708,Four (4) Bedroom Semi Detached House,Cowrie Creek I Ikate Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19709,Brand New 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19710,Four (4) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19711,Four (4) Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19712,Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19713,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19714,Four (4) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19715,Five (5) Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19716,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +19717,Brand New Uniquely Finished 5 Bedroom Fully Detached Duplex In A Secured Environment,Mega Chicken Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19718,Four (4) Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +19719,Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19720,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19721,Four (4) Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths,5 Toilets,Lekki Phase 1 +19722,Massive Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19723,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19724,Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19725,Five (5) Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19726,Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19727,Five (5) Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +19728,Five (5) Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19729,5 Units Of 4 Bedroom Tastefully Built Terraces,Chevron Alternative Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +19730,4 Bedroom Semi Detached Duplex In Orchid,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19731,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19732,Three (3) Bedroom Penthouse,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +19733,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0, beds, baths, Toilets,Ikate +19734,Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19735,Five (5) Bedroom Terrace, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +19736,4 Bedroom Terrace Duplex (water Front) With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19737,Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19738,Newly Built Luxury 4 Bedroom Semi Detached Duplex,Kusenla Ikate Lekki Lagos,₦,"100,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets,Ikate +19739,Five (5) Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +19740,4 Bedroom Maisonatte With Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets,Ikate +19741,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +19742,Five (5) Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Lekki +19743,Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19744,Beautifully Built 4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19745,5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19746,A 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19747,Five (5) Bedroom Duplex,Pinnock Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19748,New! 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19749,Contemporary! 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19750,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19751,Luxuriously Built 4 Bedroom Terraced Duplex With Bq,S Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19752,Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +19753,Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19754,Five (5) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +19755,Newly Built 5 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19756,Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19757,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19758,Newly Built 5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19759,Four (4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19760,10 Units Of 4 Bedroom Terraces,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19761,Exquisite 5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19762,Newly Built 4 Bedroom Semi Detached Duplex With Bq,D Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19763,Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19764,Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19765,Three (3) Bedroom Apartment, Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,0 Toilets,Other Lekki +19766,Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +19767,Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19768,Four (4) Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +19769,Four (4) Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +19770,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19771,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19772,Properties For Sale @ 2nd Toll Gate Lekki,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19773,Newly Exquisitely Built Serviced 4 Bedroom Terrace Duplex,Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19774,Five (5) Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19775,Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19776,Five (5) Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19777,Newly Built 1 Bedroom And 2 Bedroom Flat,D Chevron Lekki Lagos,₦,"20,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +19778,Best 4 Bedroom Semi Detached House,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19779,Lovely 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19780,Newly Built 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +19781,Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19782,Four (4) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +19783,Five (5) Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +19784,Four (4) Bedroom Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19785,5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19786,Six (6) Bedroom Fully Detached Contemporary House,Ikate Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +19787,Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19788,Classic 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19789,Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19790,Six (6) Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikota +19791,Luxury 3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19792,Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19793,Brand New 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19794,Four (4) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19795,Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19796,Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19797,Two (2) Bedroom Apartment,Ologolo Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +19798,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +19799,Seven (7) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +19800,Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19801,Three (3) Bedroom Apartment For Sale,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +19802,Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19803,Beautiful Four (4) Bedroom Terrace, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19804,Four (4) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19805,Five (5) Bedroom Fully Detached Duplex With Penthouse,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +19806,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19807,Properties For Sale @ Idado Lekki,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19808,5 Bedroom Fully Detached Smart House,Lekki Lagos,₦,"290,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Lekki +19809,Four (4) Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19810,Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +19811,Five (5) Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19812,Four (4) Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +19813,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19814,Five (5) Bedroom Duplex In A Secure Estate,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19815,Five (5) Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19816,Four (4) Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19817,Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19818,Five (5) Bedroom Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19819,Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19820,Mystique 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +19821,Newly Built Serviced 4bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19822,Four (4) Bedroom Terraced Duplex For Sale In Ikate Lekki,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19823,Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19824,Five (5) Bedroom Fully Detached Duplex,Orchid Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19825,New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19826,Five (5) Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +19827,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19828,Three (3) Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +19829,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +19830,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +19831,Newly Built 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19832,Five (5) Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets,Other Lekki +19833,Tastefully Built 5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19834,Four (4) Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +19835,Beautiful 4 Bedroom Semi Detached Duplex With Swimming Pool,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19836,Five (5) Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +19837,Four (4) Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +19838,Four (4) Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +19839,Brand New 5 Bedroom Fully Detached Mansion,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19840,Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19841,Five (5) Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19842,Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19843,Beautiful 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19844,Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +19845,Five (5) Bedroom Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19846,Newly Built 5 Bedroom Duplex In A Prime Location,Chevron Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19847,Tastefully Finished Smart Five (5) Bedroom Duplex + 2 Bq,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +19848,Four (4) Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +19849,Newly Built 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +19850,Newly Built 3 Bedroom Terrace Duplex Plus 1 Bq,Orchid Road Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,5 Toilets,Other Lekki +19851,Five (5) Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19852,Lovely 2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets,Ologolo +19853,Five (5) Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +19854,Four (4) Bedroom Terraced Duplex,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19855,Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19856,Distress 4 Bedroom Duplex In A Secured Estate,Crown Estate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19857,Brand New 4 Bedroom Semi Detached Duplex With Bq,S Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19858,Five (5) Bedroom Duplex,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19859,Four (4) Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19860,Four (4) Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +19861,Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19862,Four (4) Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +19863,Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +19864,Five (5) Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19865,Newly 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19866,Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19867,Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +19868,Property In Lekki For Sale:,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +19869,New! 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19870,Five (5) Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19871,5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"71,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19872,Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19873,Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +19874,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19875,4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +19876,Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19877,Five Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +19878,Newly Built Spacious 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19879,Three (3) Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"41,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +19880,Four (4) Bedroom Terrace Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +19881,Mijl Residents And Villa's,"Behind Romey Gardens, Opposite Nicon Town, Lekki Lagos Nicon Town Lekki Lagos",₦,"27,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +19882,Exquisite 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +19883,Newly Built Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Road Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +19884,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Phase 1 Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19885,Four (4) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +19886,Luxury 5 Bedroom Semi Detached Duplex,Chevron Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +19887,Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19888,Six (6) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +19889,Five (5) Bedroom Fully Detached Duplex,Jakande Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19890,Two (2) Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +19891,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +19892,Four (4) Bedroom Semi Detached With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19893,Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19894,Four (4) Bedroom Duplex,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +19895,Beautiful Five (5) Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +19896,Five (5) Bedroom Duplex For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +19897,Five (5) Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +19898,Four (4) Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19899,3 Bedroom Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19900,4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19901,3 Bedroom Flat,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19902,Five (5) Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +19903,Five (5) Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19904,Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19905,Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +19906,5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19907,Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +19908,Newly Well Built 4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"57,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +19909,Four (4) Bedroom Detached Duplex For Sale,Chevy View Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19910,Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +19911,Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +19912,Fully Serviced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +19913,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +19914,Three (3) Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +19915,Four (4) Bedroom Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19916,Five (5) Bedroom Contemporary Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +19917,Newly Built 4 Bedroom Semi Detached House,Madam Julianna Close Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +19918,Newly Built 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +19919,Tastefully Finished Contemporary 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +19920,Contemporary 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19921,3 Bedrooms Duplex With A Bq 95 % Completed,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +19922,Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +19923,Brand New 3 Bedrooms Penthouse Apartment With Boys Quarters,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +19924,2 Bedrooms Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +19925,Newly Built 3 Bedroom Penthouse + Bq,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +19926,Newly Built 1 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +19927,Zylus And Its Extension: Newly Built 3 Bedroom Terrace Detached+ Bq,Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +19928,Newly Built 3 Bedroom Terrace Detached+ Bq,Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +19929,Newly Built 3 Bedrooms Maisonnette With Boys Quarters,Newly Built 3 Bedrooms Maisonnette With Boys Quarters At Camberwall Advantage 3 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Lekki +19930,Brand New 2 Bedrooms Maisonnette,Brand New 2 Bedrooms Maisonnette At Camberwall Advantage 3 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Lekki +19931,Newly Built 4 Bedroom Semi Detached Duplex With Boys Quarters,Newly Built 4 Bedroom Semi Detached Duplex With Boys Quarters And Royal Finishing In A Secure Estate Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,0 baths,0 Toilets,Other Lekki +19932,Brand New Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Brand New Finished 4 Bedroom Semi Detached Duplex With Boys Quarters Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets,Other Lekki +19933,Newly Built 4 Bedroom Terrace Duplex With Royal Finishing,Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +19934,Luxury 4 Bedroom Terrace Duplex,Mattew Osarumen Estate Ologolo Lekki Ologolo Lekki Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,6 Toilets,Ologolo +19935,"Mixed Residential Development Of 4 Bedroom Terrace, 3 Bedroom Terrace And 2 Bedroom Flats","Elegushi, Ikate Ikate Lekki Lagos",₦,"145,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +19936,Newly Built One Bedroom Apartment,Alternative Drive Chevron Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,2 baths,2 Toilets,Chevron +19937,4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19938,Ongoing Project 2 Bedroom + Bq High Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +19939,Ongoing Project 4 Bedroom Luxury Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,4 Toilets,Ikate +19940,This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets,Lekki Phase 2 +19941,This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets,Lekki Phase 2 +19942,This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets,Lekki Phase 2 +19943,4bedroom Terrace,Beautiful Terrace Duplex With Bq And Swimming Pool In A Great Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19944,Newly Built 5bedroom Detached Duplex In A Seren Environment,Spacious 5 Bedrooms Detached Duplex Plus Bq With Governor's Consent As Title Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19945,4 Bedroom Detached Duplex,Orchid Rd Lekki Henry’s Court Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19946,4 Bedroom Detached Duplex,Orchid Rd Lekki Henry’s Court Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19947,Newly Built 5 Bedroom Detached Duplex,Chic Terrace Duplex In A Secure Location With Topnotch Security And 24hours Power Supply Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19948,Contemporary 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19949,Contemporary 4 Bed Fully Detached Duplex,Stunning 4bedroom Detached Duplex In A Secure Environment Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19950,4 Bedroom Terrace Castle Duplex,D Castle Max 4 Bedroom Terrace Castle Duplex With Boys Quarters And Normal Finishing In A Secure Estate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets,Other Lekki +19951,6 Bedroom Detached Duplex,Along Abraham Adesanya Estate By Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"90,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +19952,4bedrooms Detached Duplex+bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +19953,Land,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +19954,Units Of 4bedroom Detached Duplexes,Magnificent 4 Bedroom Detached Castle Duplex With Governor's Consent At De Castle Max Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +19955,Units Of 4bedroom Semi Duplexes,Magnificent 4 Bedroom Semi Detached Castle Duplex With Governor's Consent De Castle Max Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +19956,3bedroom Mansionate With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +19957,4 Bedroom Maisonette In A Serene Environment,Silver Spring Estate Agungi Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Agungi +19958,Multiple Units Of 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +19959,5 Bedroom Fully Detached Duplex With Exquisite Finishing,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19960,4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +19961,826 Sqm For Sale At Lekki 1,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +19962,Newly Built 5 Bedroom Barroco House Design Duplex,Serviced Estate In Ikota. Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19963,Well Detailed 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,5 Toilets,Lekki Phase 2 +19964,Newly Built 4bedroom,"Chervon Company, Chevy View Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +19965,Newly Built 4 Bedroom Terrace Duplex In A Serene Environment,"Orchid Hotel Road, Dpkay District Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +19966,New Built 2 Bed Terrace,"Orchid Road, Adjacent Prime Mall (mega One Cinema) Chevron Lekki Lagos",₦,"38,000,000",0,0,1,2 beds,3 baths,3 Toilets,Chevron +19967,Newly Built 5 Bedroom Duplex,Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19968,2 Bedroom Penthouse & Beach Front,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +19969,Walk In 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Agungi +19970,Newly Built Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19971,Newly Built Luxury 3 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +19972,3 Bedroom Apartments,Nestled At Orchid Road Chevron Drive Lagos Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +19973,C Of O Land,120 Plots Available For Outright Purchase In Lekki Phase 1 Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +19974,Luxury 5 Bedroom Fully Detached Duplex With Bq And Penthouse,Megamord Estate Ikota Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,7 baths,7 Toilets,Ikota +19975,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +19976,Newly Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Oniru Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +19977,"The Castle Max , Lekki","Orchid Road Lafiaji, Directly Opposite Cooplag Garden Estate Lekki. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +19978,A Neat Luxury Fully Detached 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +19979,5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19980,3bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19981,4bedroom Terraced Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19982,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +19983,5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19984,4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +19985,5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +19986,4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +19987,4bedroom Terraced Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +19988,Newly Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +19989,5bedroom Semi Detached Duplex Ikate,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +19990,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +19991,3bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +19992,5 Bedroom Luxury Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +19993,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +19994,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +19995,4 Bedroom Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +19996,5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +19997,5 Bedroom Semi Detached House For Sale In Chevron,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikate +19998,2 Bedroom Serviced Maisonette,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +19999,4bedroom Semi Detached Duplex Orchid Road,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20000,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +20001,5 Bedroom Detached Duplex For Sale In Osapa,Lekki Lagos,₦,"310,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +20002,5bedroom Detached Duplex Lekki County,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20003,4 Bedroom Terraced Duplex For Sale In Lekki,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +20004,6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,6 beds,8 baths,9 Toilets,Lekki Phase 1 +20005,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20006,5bedroom Detached Duplex Lekky County,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20007,Newly Built 5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +20008,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20009,5 Bedroom Detached Duplex,Z Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20010,800sqm For Sale,Cowrie Creek Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Ikate +20011,5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +20012,5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20013,5 Bedroom Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,8 Toilets,Ikota +20014,5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20015,5bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20016,4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +20017,5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20018,5bedroom Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20019,5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20020,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20021,4bedroom Terraced Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20022,5bedroom Detached Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20023,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20024,4bedroom Terraced Duplex Igbo Efon,Igbo Efon Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20025,5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20026,5 Bedroom Luxury Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20027,4 Bedroom Semi Detached Duplex,Oral Estate Extension Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20028,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20029,5 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20030,5 Bedroom Semi Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20031,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +20032,Fully Serviced 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,7 Toilets,Osapa London +20033,5 Bedroom Fully Detached Duplex, Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ologolo +20034,5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20035,5 Bedroom Detached Smart House,Z Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20036,2bedroom Apartment By 2nd Toll Gate,Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +20037,4bedroom Semi Detached Duplex 2nd Toll,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20038,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,6 Toilets,Lekki Phase 1 +20039,5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +20040,3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",1,0,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +20041,5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20042,4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +20043,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20044,4bedroom Detached Duplex Orchid,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20045,4 Bedroom Serviced Terraced House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,5 baths,6 Toilets,Agungi +20046,Fully Serviced 5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20047,6 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,8 Toilets,Ikota +20048,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20049,Serviced 4 Bedroom Terraced House For Sale In Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,5 baths,6 Toilets,Osapa London +20050,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20051,5 Bedroom Fully Detached House For Sale In Lekki Phase,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20052,4 Bedroom Semi Detached House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +20053,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,7 baths,6 Toilets,Chevron +20054,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20055,Newly Built 5 Bedroom Terraced House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets,Agungi +20056,5 Bedroom Detached Duplex,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20057,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +20058,5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,7 baths,8 Toilets,Osapa London +20059,2 Bedroom Apartments Consisting Of 32 Luxury Units.,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +20060,5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20061,5bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20062,4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20063,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +20064,Newly Built 4bedroom Detached,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +20065,5 Bedroom Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20066,4bedroom Semi Detached Duplex Orchid,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20067,5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +20068,4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20069,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20070,Newly Built 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20071,5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20072,5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20073,5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20074,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20075,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +20076,5bedroom Semi Detached Duplex Lekki County,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20077,4bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +20078,5bedroom Detached Duplex Oral Extension,Oral Estate Extension Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20079,4bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20080,5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20081,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +20082,5 Bedroom Detached Smart House, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20083,5bedroom Detached Duplex Lekky County,Lekky County Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20084,5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +20085,4 Bedroom Terrace Duplex,Jakande Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20086,6bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +20087,5 Bedroom Detached House,D Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20088,4bedroom Semi Detached Duplex By 2nd Toll Gate Lekki,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20089,Newly Built 5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20090,5 Bedroom Detached House,J Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20091,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20092,5bedroom Detached Duplex Lekky County,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20093,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets,Osapa London +20094,Brand New 5 Bedroom Fully Detached House , Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20095,5 Bedroom Detached Duplex With Spacious Rooms And Compound.,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20096,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +20097,Newly Built 5 Bedroom Detached Smart House For Sale In Lekki,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20098,5bedroom Detached Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20099,Newly Built 5 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20100,5 Bedroom Semi Detached House For Sale In An Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikate +20101,Newly Built 5 Bedroom Detached House, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +20102,5 Bedroom Detacehd Smart House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,7 baths,8 Toilets,Lekki Phase 1 +20103,5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20104,5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20105,2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +20106,5 Bedroom Detached Duplex In Orchid Road,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +20107,4bedroom Terraced Duplex Chevron,Chevron Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20108,3 Bedroom Apartment Idado,Idado Lekki Lagos,₦,"55,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Lekki +20109,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20110,Newly Built 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20111,5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +20112,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20113,5bedroom Detached Duplex Lekki County,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20114,4bedroom Semi Detached Duplex Ikate,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +20115,4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20116,5 Bedroom Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +20117,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20118,3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +20119,5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20120,4 Bedroom Semi Detached Duplex For Sale In Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20121,4bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20122,4 Bedroom Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20123,5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20124,5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20125,5bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20126,4bedroom Terraced Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20127,Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20128,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20129,5 Bedroom Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikate +20130,4 Bedroom Maisonette For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20131,5 Bedroom Fully Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20132,4bedroom Detached Duplex Orchid Road,2nd Toll Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20133,5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20134,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +20135,5 Bedroom Luxury Duplex For Sale,Chevron Toll Gate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20136,5 Bedroom Fully Detached House For Sale In An Estate In Osapa,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,8 Toilets,Osapa London +20137,Newly Built 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000/month",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20138,5 Bedroom Detached House For Sale In An Estate In Ikota,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20139,5 Bedroom Detached Duplex,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20140,2 Bedroom Luxury Apartment,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +20141,4 Bedroom Semi Detached Duplex,Z Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +20142,4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +20143,4 Bedroom Fully Detached House, Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,6 Toilets,Agungi +20144,Fully Serviced 2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds, baths, Toilets,Lekki Phase 1 +20145,5 Bedroom Fully Detached House For Sale In An Estate In Osapa,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20146,5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20147,5 Bedroom Fully Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,7 baths,8 Toilets,Lekki Phase 1 +20148,4bedroom Semi Detached Duplex Vgc,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20149,Off Plan 4 Bedroom Detached Duplex,Orchid Estate Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +20150,5bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20151,5 Bedroom Full Detached House In An Estate For Sale In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +20152,Newly Built 4 Bedroom Terraced House,X Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20153,4 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Osapa London +20154,5 Bedroom Detached Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ologolo +20155,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20156,Newly Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +20157,Newly Built 4bedroom Terraced,Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20158,4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20159,4bedroom Semi Detached Duplex Orchid,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20160,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20161,5bedroom Detached Duplex,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +20162,4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20163,4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20164,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20165,Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20166,4bedroom Detached Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20167,4bedroom Terraced Duplex Orchid,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20168,4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +20169,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20170,Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +20171,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +20172,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +20173,Luxury 5 Bedroom Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,5 Toilets,Chevron +20174,Newly Built 4 Bedroom Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20175,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +20176,4 Bedroom Serviced Terraced House For Sale In Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +20177,5 Bedroom Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +20178,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +20179,2bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +20180,5 Bedroom House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20181,6 Bedroom Detached Duplex,A Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,8 Toilets,Ikota +20182,5 Bedroom Detached Smart House For Sale In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,8 Toilets,Osapa London +20183,5 Bedroom Luxury Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20184,5 Bedroom Detached Duplex For Sale On Orchid Road,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20185,5 Bedroom Luxury Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20186,Brand New 5 Bedroom Fully Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets,Chevron +20187,5 Bedroom Detached House,D Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20188,4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +20189,4 Bedroom Semi Detached House For Sale In An Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +20190,4 Bedroom Terrace House, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +20191,4 Bedroom Semi Detached House For Sale In Ikate,Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +20192,5 Bedroom Detached House,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +20193,5 Bedroom Detached Smart House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,8 Toilets,Lekki Phase 1 +20194,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20195,4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +20196,1 Bedroom Flat,Ikota Lekki Lagos,₦,"5,000,000",0,0,0,1 beds, baths, Toilets,Ikota +20197,Governor Consent,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +20198,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +20199,3 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +20200,Government Concent,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20201,6 Bedroom Fully Detached Modern Contemporary Home With Swimming,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets,Osapa London +20202,Luxury 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +20203,Government Consent,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20204,4 Bedroom Semidetached Duplex With A Room Bq,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +20205,Luxurious New Construction,Megamound Ikota Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +20206,Block Of Flats,Sangotedo Before Shoprite Novare Mall Off Lekki Epe Express Road Idado Lekki Lagos,₦,"125,000,000",1,0,0,9 beds,9 baths,9 Toilets,Other Lekki +20207,Duplex,Megamound Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +20208,2 Bedroom Fully Serviced & Fully Furnished Apartment,Off Spar Road Ikate Lekki Lagos,₦,"46,000,000",1,0,1,2 beds,2 baths,2 Toilets,Ikate +20209,Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +20210,4 Bedroom Semi Detached Duplex With Bq,De Castle Max Estate Orchid Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +20211,4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +20212,Newly Built 4 Bed Fully Detached Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +20213,Newly Built 4 Bedroom Terrace Duplex + Bq,Chisco Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +20214,Newly Built 4bedroom Semi Detached Duplex With Bq At Bridge Estate,Bridge Estate Before Chevron 2nd Toll Gate Lekki World Class Architectural Design Chevron Lekki Lagos,₦,"72,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Chevron +20215,Newly Built 3bedrooms Penthouse Apartment,Godmade Connect Court 4 Lekki Off Freedom Way Off Regional Road Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20216,Newly Built Luxury 4 Semi Detach Duplex With Bq,Creek Court 3 Avenue Ikota Lekki Pay And Park In Home Of Luxury And Comfort For Kings And Queens Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +20217,4 Bedroom Maisonette Duplex +bq,Ikate Lekki Lagos Nigeria Ikate Lekki Lagos,₦,"95,000,000/day",1,1,1,4 beds,5 baths,5 Toilets,Ikate +20218,Newly Built 5 Bed Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +20219,Newly Built 5 Bed Terrace Duplex +bq,Idado Estate Igbo Efon Lekki Lagos,₦,"68,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20220,5 Bedroom Fully Detached Duplex With Penthouse,Pantheon Smart Homes World Class Architectural Design Pay And Pack In Chevron Lekki Lagos,₦,"170,000,000/day",0,0,0,5 beds,6 baths,6 Toilets,Chevron +20221,3 Bedrooms Penthouse +bq,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikate +20222,3 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000/month",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20223,Newly Built 4 Bedroom Terraces At Godmade Connect Court 5,Godmade Connect Court 5 Lekki Phase 1off Freedom Way When You Thing Of Quality And Class Lekki Phase 1 Lekki Lagos,₦,"110,000,000/month",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20224,Newly Built 3 Bedroom Terrace + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,1,0,3 beds,3 baths,5 Toilets,Chevron +20225,Newly Built 5 Bed Fully Detached Duplex,"Chevron Drive, Alternative Road, Lekki Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20226,Luxurious 3 Bedrooms Maisonette +bq,Camberwall Advantage A Place Bulit For Royalty Off Plan Project Ikate Lekki Lagos,₦,"85,000,000/month",1,1,0,3 beds,3 baths,3 Toilets,Ikate +20227,2 Bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +20228,Newly Built Luxury 2 Bedrooms Apartment,Camberwall Advantage A Place Designed For Kings And Queens To Live Come An Experience Paradise On Earth Lekki Phase 1 Lekki Lagos,₦,"55,000,000/month",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +20229,Newly Built 3 Bed Terrace + Bq,"Kennedy Okonkwo Way, Creeklane Estate, By Pinnock Beach Estate Ajiran Lekki Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +20230,Newly Built Luxury 4 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20231,Newly Built Luxury 4 Semi Detach Duplex With Bq,H Homes Orchid Lekki Off Chevron Toll Gate Pay And Park In Guarantee Peace Of Mind Is Highly Built High Quality Materials Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +20232,2 Units Of Luxury 5 Bedroom Fully Detached Duplex With Bq,Luxurious Detached Duplex Located In Heart Of Megamond Estate Ikota Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +20233,Newly Built 4 Bed Semi Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20234,Newly Built Luxury 5 Bedroom Fully Detach Duplex With Bq,Creek Court 3 Avenue Ikota Lekki Pay And Park In Smart Homes Beyond Satisfication And Value Is What You Get In Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +20235,Newly Built 5 Bed Fully Detached Duplex +bq,Vintage Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,8 Toilets,Ikate +20236,4 Bed Semi Detached Duplex + Bq,Chisco Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +20237,Newly Built 5 Bed Fully Detached Duplex,Megamound Estate Lekky County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20238,Newly Built 4 Bed Semi Detached Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +20239,Newly Built 2 Bedrooms Maisonette Duplex,Camberwall Advantage Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +20240,Newly Built 5 Bed Fully Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +20241,Newly Built Luxury 2 Bedroom Apartment,Luxury Comfortable Living Experiencing World Class Amenities With The State Of Art Lekki Phase 1 Lekki Lagos,₦,"85,000,000/day",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +20242,Newly Built 3 Bed Apartment + Bq,Chisco Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,4 baths,5 Toilets,Ikate +20243,Newly Built 4bed Terrace +bq,Osapa London Estate Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +20244,2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"45,000,000/day",1,1,1,2 beds,3 baths,3 Toilets,Ikate +20245,Newly Built 4 Bed Fully Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20246,5 Bed Fully Detached Duplex +bq,Chisco Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikate +20247,Newly Built 5 Bed Terrace Duplex,Prince Oluseje Abayomi Street Kushenla Road Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20248,Newly Built 2bedroom Luxury Apartment,Ruby 3 Is An Estate Designed To Enable You And Loved Ones To Enjoy The Perfect Lifestyle In A Serene And Luxurious Affordable Homes Ologolo Lekki Lagos,₦,"35,000,000/day",1,1,0,2 beds,2 baths,2 Toilets,Ologolo +20249,Newly Built 4 Bed Semi Detached Duplex,Silicon Vale Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +20250,Newly Built Luxurious 3 Bedroom Penthouse +bq,Camberwall Advantage Lekki Phase 1 Lekki Lagos,₦,"75,000,000/day",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20251,Lovely One Bedroom Apartment,"Dunvale Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets,Chevron +20252,Luxury 4 Bedroom Terrace Duplex For At Creek Court. Anvenue,Creek Court 2 Avenue Ikota Pay And Move In Ikota Lekki Lagos,₦,"55,000,000/month",1,1,0,4 beds,5 baths,5 Toilets,Ikota +20253,Newly Built Luxury 4 Semi Detach Duplex With Bq,Villa Home Estate Orchid Lekki Off Chevron Pay And Move In For Kings And Queens Chevron Lekki Lagos,₦,"70,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +20254,Newly Built 2 Bed Apartment & Bq,Prince Oluseje Abayomi Street Kushenla Road Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +20255,Lovely 2 Bedroom Apartment,"Dunvale Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"38,000,000",1,0,0,2 beds,3 baths,3 Toilets,Chevron +20256,Luxury 4 Bedroom Terrace Duplex With Bq,Silver Crest Estate Orchid Off Chevron Pay And Move In A Place Where You Guarantee Quality Lifestyle And Enjoy Comfort In Grand Style Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +20257,Newly Built 4 Bed Fully Detached Duplex,Beside Pinnock Beach Estate Nicon Town Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20258,Newly Built 5 Bed Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +20259,Newly Built 5 Bed Contemporary/pent House/bq In Suit,Megamound Estate Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +20260,Newly Built 4 Bed Terrace,Tnt Home Estate Orchid Lekki Lagos Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20261,Newly Built 4 Bed Terrace Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +20262,Newly Built 2 Bed Apartment + Bq,"Kennedy Okonkwo Way, Creeklane Estate, By Pinnock Beach Estate Ajiran Agungi Lekki Lagos",₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets,Agungi +20263,2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000/day",1,1,1,2 beds,3 baths,3 Toilets,Ikate +20264,Newly Built 3 Bedroom Apartment With Bq,Osapa Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +20265,Luxurious 2 Bedroom Apartment,Ruby 3 Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ologolo +20266,Newly Built 5 Bedroom Penthouse With A Bq For Sale At Godmade Connect Court 5 Lekki,Off Freedom Way Lekki Off Plan Project In A Developed Area This Home Comes With A Pool Gym And Other Facilities Lekki Phase 1 Lekki Lagos,₦,"200,000,000/month",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +20267,Newly Built 4 Bed Semi Detached Duplex & Bq,Piccadilly Road Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +20268,Newly Built Luxury 4 Bedroom Penthouse +bq,Camberwall Advantage Ikate Lekki Phase 1 Lekki Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20269,Luxury Smart 4 Bedroom Terrace,Bridge Estate Before Chevron Toll Gate A Place For Royalty Chevron Lekki Lagos,₦,"62,000,000/day",0,0,0,4 beds,4 baths,4 Toilets,Chevron +20270,Luxury 2bedroom Penthouse,Behind Online Onike Art Gallery God Madeconnect Court 2 Ikate Ikate Lekki Lagos,₦,"75,000,000/month",0,1,0,2 beds,2 baths,2 Toilets,Ikate +20271,Luxurious 2 Bedroom Maisonette Duple,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000/day",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +20272,5 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20273,Gigantic Luxury 5 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20274,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20275,A Plot Of Land,Jinadu Street Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20276,5 Bedroom Detached House With Bq,Chevron Alternative Route Lagos Nigeria Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +20277,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +20278,5bedroom Semi Detached House With Bq At Carlton Gate Chevron Drive Lekki Lagos,Carlton Gate Estate Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +20279,2 And 3 Bedroom Luxury Apartments,Elegushi Opp Nicon Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +20280,5 Bedroom Semi Detached House With Bq,Ilasan Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +20281,1000 Square Metre Land,Orange Island Off Freedom Way Lekki Scheme 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20282,5bedroom Fully Detached Share House With 2rooms Servant Quarter,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"320,000,000",1,1,0,5 beds,7 baths,7 Toilets,Chevron +20283,2 Units Of 3 Bedroom Flats + 1 Room Bq Each With Exquisite Finishings,"Directly Off Kusenla Road, Ikate Lekki Lagos",₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +20284,975+ Sqms (with Structures),"Chief Henry Ojorgho Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20285,2 Units Of 5 Bedrooms Semi Detached House + Bq,"Chris Madueke Street, Off Adebayo Doherty, Lekki Phase I, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20286,"1,444 Sqm Corner Piece Plot","Van Daniels Estate, Off Orchid Road, After Chevron 2nd Gate, Lekki Epe Expressway, Lagos Chevron Lekki Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20287,"5 Bedroom Detached Duplex Sale: Northern Foreshore Estate, Chevron Drive Lekki, Lagos","Northern Foreshore Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20288,4 Bedroom Semi Detached Duplex +bq,"Bera Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Chevron +20289,For Sale: Vgc Lekki Furnished 5 Bedroom Detached Duplex + 2 Bedroom Chalet,Off Road 2 Vgc Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +20290,"1,121 Sqm Plot In U3 Estate","U3 Estate, Lekki Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20291,7bedroom Detached House + 2 Rooms Servant Quarters,"Zone C, Nicon Town, Lekki, Lagos Nicon Town Lekki Lagos",₦,"450,000,000",0,0,0,7 beds,8 baths,8 Toilets,Other Lekki +20292,"Brand New 4 Bedroom Terrace Duplex On Orchid Road, Chevron, Lekki, Lagos, Nigeria","Orchid Road Chevron, Lekki, Lagos, Nigeria Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20293,"Superb Block Of 4 Flats Of 3 Bedrooms On 1,000sqm Land","Directly Off Bisola Durosinmi Etti Street, Lekki Phase 1 Lekki Lagos",₦,"385,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +20294,8 Bedrooms Fully Detached House + Bqs,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"340,000,000",0,0,0,8 beds, baths, Toilets,Lekki Phase 1 +20295,"40,000sqm Bareland, Fully Sandfilled, Facing Lagos Lagoon","Facing Lagos Lagoon, By Perinwinkle Estate, Freedom Way, Lekki Phase 1, Lagos Ikate Lekki Lagos",₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Ikate +20296,Top Notch (2 Years Old) 5 Bedroom Detached House + 1 Room Bq (ensuite) In An Estate,"Inside An Edtate, Osapa London, Lekki Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20297,Land,Orchid Road By The First Roundabout Enyo Filling Station Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20298,For Sale: Lekki Phase 1 Plot 929.8sqm (with Structures),"Abimbola Okulaja Close, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20299,"Massive 33 Units Of 2 Bedroom Apartments In Orchid Road, After Chevron, Lekki, Lagos, Nigeria","Orchid Road, After Chevron, Lekki, Lagos, Nigeria Chevron Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +20300,"Prime 200,000 Sqm Bareland Along Regional Road, Ikate, Lekki, Lagos, Nigeria","Facing The Lagoon, Along Regional Road, Ikate, Lagos, Nigeria, Ikate Lekki Lagos",₦,"34,000,000,000",0,0,0, beds, baths, Toilets,Ikate +20301,975+ Sqms (with Structure),"Chief Henry Ojorgho Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20302,"1,200sqm Land (with Demolishable Structure)","A Series, Off Admiralty Way, Lekki Phase I, Lagos Lekki Phase 1 Lekki Lagos",₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20303,8 Bedrooms Fully Detached House + Bqs + 2 Living Rooms On 500sqm,Directly Off Fola Osibo Street (3 Houses From Fola Osibo Street) Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +20304,"For Sale: 10 Plots Together On Orchid Road, Chevron, Lekki","Orchid Road, Lekki Chevron Lekki Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Chevron +20305,30 Plots Of Sand Filled Land On Orchid Road Lekki,"Opposite Cooplag Estate, Off Orchid Road, Chevron Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Chevron +20306,5 Bedroom Detached House,"Vgc, Lekki Epe Expressway, Lagos Vgc Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +20307,"8 Bedrooms Fully Detached House + Bqs + 2 Living Rooms On 500sqm In Lekki Phase 1, Lagos, Nigeria","Directly Off Fola Osibo Street (3 Houses From Fola Osibo Street), Lekki Phase 1, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"340,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +20308,"1,300sqm (with Structure) Directly On Oniru New Market Road, Oniru, Lagos, Nigeria","Oniru New Market Road, Oniru, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20309,Northern Foreshore Estate,"Northern Foreshore Estate, Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20310,"Quick Sale: 1,040sqm (with Structure) In A Series, Lekki Phase I, Lagos, Nigeria","A Series, Lekki Phase I, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20311,"Exquisite 4 Bedroom Detached House Plus Bq In Vgc, Lagos, Nigeria","Vgc, Lekki Epe Expressway, Lagos Nigeria Vgc Lekki Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20312,For Sale: Ikate Lekki 5 Bedroom Fully Detached Duplex + Bq,Off Kusenla Road Ikate Ikate Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +20313,30 Unit Of 4bedroom Terrace House With Bq At Ilasan By World Oil Lekki Phase One Lagos,Ilasan Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +20314,5 Bedroom Detached House With Bq,Inside A Gated Estates In Side Thamos Estate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,6 beds,0 baths,7 Toilets,Lekki Phase 2 +20315,Newly Built 5bedroom Fully Detached Smart Home With 2rooms Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +20316,6 Unit Of 4 Bedroom Terrace At Lekki Phase1 Lagos With Notch Finishing,Fatai Arobike Lekki Phase One Lagos Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +20317,Newly Built With Super Finishing Of 6bedroom Detached House With Bq At Lekki Phase1 Lagos,Off Admiralty Way Lekki Phase One Lagos Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +20318,5 Bedroom Fully Detached House With 2 Room Bq,Road 2 Vgc Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets,Victoria Garden City +20319,Newly Built 4 Bedroom Terraced House Off Freedom Way,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20320,Newly Built 4 Bedroom Terraced House Off Freedom Way Lekki Scheme 1 Lagos,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20321,6 Units Of 4 Bedroom Terraces With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20322,Newly Built 4 Bedroom Terraced House Off Freedom Way Lekki Scheme 1 Lagos,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20323,9 Units Of 3 Bedroom Flat At Lekki Scheme 1 Lagos,Off Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"750,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +20324,5 Bedroom Detached House With Bq At Ikota Villa In A Gated Est,Ikota Villa Off Megamound Road Inside A Gated Est Chevron Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +20325,"Smart Home Of 5bedroom Fully Detached House At Lekki Phase1 Lagos.with Cinema, S/pool ,gym","With Swimming Pool, Gym And Cinema Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +20326,4 Bedroom Semi Detached House With Bq,Carlton Gate Estate Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,5 baths,5 Toilets,Chevron +20327,4 Bedroom Semi Detached House,Off Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20328,"9 Units Of 2 Bedroom Flats For Sale @ Orchid, Lekki",Ilasan Lekki Lagos,₦,"43,000,000",1,0,0,2 beds,2 baths,2 Toilets,Other Lekki +20329,9 Units Of 2 Bedroom Flats,Ilasan Lekki Lagos,₦,"43,000,000",1,0,0,2 beds,2 baths,2 Toilets,Other Lekki +20330,New Built Units Of 4 Bedroom Detached Duplexes,Orchid Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20331,Luxury 2 & 3 Apartment,Emcel Estate Ikate Lekki Lagos,₦,"51,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +20332,Dry Land,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20333,Newly Built 4 Bedroom Semi Detached Duplex,"Buena Vista Estate, Orchid Road Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20334,Modern One Bedroom Block Of Flats,Bakare Agungi Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,1 Toilets,Agungi +20335,Newly Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20336,5 Bedroom Fully Detached Duplex With Bq,Vgc Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20337,Tastefully Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20338,Newly Built 4 Bedroom Terrace Duplex,Off Lekki Right Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20339,2 Bedroom Flats,"By Ocean Bay Estate, Off Orchid Hotel Road Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +20340,Newly Built 4 Bedroom Terrace Duplex In A Neighbourhood,Orchid Road Lekki Lagos,₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20341,4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20342,4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20343,4 Bedrooms Fully Detach Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20344,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20345,4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20346,4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20347,Newly Built Luxurious 2 Bedroom Terrace Duplex Inside Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,3 baths,4 Toilets,Lekki Phase 2 +20348,4 Bedroom Terraced Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20349,Super Luxury 3 Bedroom Apartment,Iconia Heights Lekki Lagos,₦,"54,490,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +20350,Lovely 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20351,3 Bedroom Apartments,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20352,Off Plan Development 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20353,Off Plan 4 Bedroom Terrace,Off Admiraly Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20354,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20355,5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20356,Luxurious 4 Bedrooms Terrace Duplex With Bq Insde An Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +20357,Off Plan: 4 Bedroom Terrace,Ologolo Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ologolo +20358,Off Plan Development Condo,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,3 baths,2 Toilets,Lekki Phase 1 +20359,Exquisitely Built 5 Bedroom Stand Alone Duplex,Megamond Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20360,5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20361,Luxury 1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +20362,2 Bedroom Fully Furnished And Fully Serviced Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +20363,3 Bedroom Apartments,Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +20364,50 Units Of 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20365,Four Bedrooms Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +20366,4 Bedroom Townhouse With Service Quarters,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20367,Contemporary Newly Built 5 Bedrooms Duplex,"Ikota Bridge, Ikota Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20368,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20369,Spacious And Newly Built 4 Bedroom Semi Detached Duplex,Second Tollgate Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20370,Land,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20371,Land,Orchid Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20372,Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,6 Toilets,Ikate +20373,Four Bedroom Terrace With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20374,2 Bedroom Apartment,Barocci Gerden Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ologolo +20375,3 Bedroom Terrace Duplex Inside An Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,5 baths,4 Toilets,Lekki Phase 2 +20376,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20377,Newly Built 4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20378,5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20379,Luxury 4 Bedrooms Terraces,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20380,2 Bedroom Apartment,Orchid Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +20381,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20382,Exquisitely Finished Brand New 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20383,300sqm Land,"New Lagos Airport, Alaro City Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20384,Brand New 5 Bedrooms Fully Detached Duplex,"Off Marwa, By 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20385,2 Plots Of Land On A Corner Piece Measuring 1300 Sqm,"Opposite Coplage Garden, Orchid Road Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20386,4 Bedroom Duplex Semi Detached,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +20387,Newly Built 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +20388,Brand New 4 Bedroom Detached House With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +20389,Off Plan Properties,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20390,Massive 5bedrooms +2 Room Bq Each With 2 Kitchens,Victory Park Estate Osapa London Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +20391,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Phase1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +20392,Super Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,5 baths,5 Toilets,Ikate +20393,Decently Finished 4 Bed Semi Detached Duplex With Bq,Vgc Extension Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +20394,Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20395,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20396,Newly Built 4 Bedroom Semi Detached Duplex,Crest Villa End Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +20397,"3bedroom Terrace House With 1room Bq At Ademola Eletu Way Opposite Victory Estate, Osapa London, Lekki, Lagos State.",5th Avenue/ademola Eletu Road Osapa London Lekki Lagos,₦,"55,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +20398,4bedroom Semi Detached Duplex With A Bq Victoria Bay 1 Orchid Hotel Road,Ochid Road Chevron Lekki Lagos,₦,"65,000,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +20399,4bedroom Semi Detached Duplex With A Bq By Victoria Bay 1 Orchid Hotel Road,Ochid Road Chevron Lekki Lagos,₦,"65,000,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +20400,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20401,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +20402,4 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20403,4 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +20404,4 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,0,0 beds,0 baths,9 Toilets,Lekki Phase 1 +20405,4 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,0,0 beds,0 baths,9 Toilets,Lekki Phase 1 +20406,Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20407,Available Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20408,Available Land,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20409,Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20410,Available Land,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20411,Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20412,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20413,Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20414,Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20415,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20416,Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20417,Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20418,4 Bedroom Semi Detached Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20419,4 Bedroom Townhouse With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +20420,Available Land,Vgc Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20421,Lavishly Finished Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20422,Available Land,Ikota Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20423,Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20424,Serviced 3 Bedroom Apartment And 1 Room Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +20425,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +20426,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20427,Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20428,5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20429,Available Land,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20430,4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20431,Available Land,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20432,4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20433,9 Plots Of Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20434,Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +20435,3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +20436,4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20437,5 Bedroom Detached Home,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20438,Available Land,Ikota Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20439,Affordable 5 Bedroom Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20440,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20441,Available Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20442,800sqm And 1190.630sqm Lands,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20443,5 Bedroom Fully Detached Duplex House With A Sea View,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20444,5 Bedroom Fully Detached Duplex And 1 Room Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +20445,Available Land,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20446,Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20447,Available Land,Orchid Road Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20448,4 Bedroom Detached Mansion,Vgc Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20449,Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20450,3 Bedroom Apartments With 1 Bq,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +20451,Contemporary 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20452,Available Land,Oral Estate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20453,4 Bedroom Detached Home,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20454,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20455,Available Land,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20456,Decently Finished 5 Bedroom Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20457,Available Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20458,Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20459,Luxury 6 Bedroom Detached Duplex With 2rooms Bq,Nicon Town Lekki Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +20460,5 Bedroom Fully Detached Duplex With A Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20461,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20462,7 Bedroom Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +20463,Available Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20464,Newly Built 4 Bedroom Terrace Duplex With A Bq,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20465,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20466,5 Bedroom Fully Detached Duplex,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20467,Available Land,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20468,Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20469,Available Land,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20470,Available Land,Ayo Jagun Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20471,Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20472,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20473,Available Land,Lekki Lagos,₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20474,5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +20475,Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20476,Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20477,Bare Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20478,5 Bedroom Fully Detached Mansion With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20479,Luxury 5 Bedroom Duplex With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"385,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20480,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20481,4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +20482,3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +20483,Four Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20484,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20485,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20486,Affordable 5 Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20487,5 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20488,Available Land,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20489,Luxury 6 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +20490,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20491,Fully Serviced Four Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20492,Available Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20493,Available Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20494,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20495,Available Land,Otunba Ogungbe Rd Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20496,Land,Lekki Right Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20497,Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20498,Available Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20499,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20500,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20501,Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20502,Available Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20503,1400sqm Bare Land,Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20504,Available Land,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +20505,Available Land,Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20506,Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20507,Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20508,Affordable 3 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20509,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20510,Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20511,Available Land,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20512,2bedroom Flat With Fitted Kitchen,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +20513,Available Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20514,4 Bedrooms Semi Detached Duplex+ 1 Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20515,4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20516,Available Land,Ikota Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20517,Available Land,Vgc Lekki Lagos,₦,"21,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20518,Available Land,Lekki Lagos,₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20519,4 Bedroom Semi Detached Duplex + Bq,Ajiran Mews Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20520,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20521,5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20522,4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20523,Four (4) Bedroom Semi Detached Duplex With A Room Boy’s Quarter,Agungi Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20524,7 Bedroom Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +20525,Available Land,Osapa London Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20526,Available Land,Ikate Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20527,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20528,Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20529,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20530,Available Land,Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20531,Exquisite 5 Bedrooms Semi Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20532,"3,000sqm With A Building",Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20533,Available Land,Orchid Road Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20534,Available Land,Vgc Lekki Lagos,₦,"65,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20535,1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +20536,5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20537,Available Land,Pinnock Beach Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20538,Available Land,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20539,Lovely Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20540,1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +20541,Available Land,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20542,Available Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20543,Available Land,Ologolo Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20544,5 Bedroom Terrace Duplex,Igbokusu Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20545,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20546,4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20547,Available Land,Dele Amuda Street Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20548,Available Land,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +20549,Available Land,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20550,Newly Built King Size 4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20551,Available Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20552,2 Bedroom Flat,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +20553,Available Land,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20554,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +20555,5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20556,Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20557,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20558,Available Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20559,4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20560,Tastefully Furnished Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20561,Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20562,781sqm Land,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20563,7 Bedroom Detached Duplex With 2 Bedroom Penthouse,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +20564,Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20565,Three Bedroom Flats With A Study Room And Bq,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +20566,900sqm Land,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20567,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20568,4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20569,Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20570,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20571,Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20572,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20573,Available Land,Vgc Lekki Lagos,₦,"21,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20574,Available Land,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20575,5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20576,Available Land,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20577,Available Land,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20578,Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20579,Land,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20580,Land,Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20581,Land,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20582,Available Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20583,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20584,Available Land,Vgc Lekki Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20585,2 Bedroom Flat,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +20586,High Quality 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20587,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20588,Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20589,450sqm Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20590,4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20591,Available Land,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20592,Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20593,Land Measuring 780 Square Meter,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20594,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20595,12000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20596,Newly Built 4 Bedroom Terrace With Communal Swimming Pool And A Room Bq,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20597,Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20598,Available Land,Lekki Phase 1 Lekki Lagos,₦,"375,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20599,Contemporary Designed 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20600,4 Bedroom Semi Detached House With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20601,4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20602,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +20603,Fully Serviced 4 Bedroom Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20604,4 Plots Of Land,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20605,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20606,3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +20607,Land,Lekki Right Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20608,Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20609,Available Land,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20610,Available Land,Ilasan Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20611,Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20612,Contemporary 5 Bedroom White House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20613,Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20614,Available Land,Ikota Lekki Lagos,₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20615,Available Land,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20616,Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20617,Available Land,Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20618,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20619,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +20620,Available Land,Oral Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20621,Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +20622,Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20623,Available Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20624,Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20625,Available Land,Osapa London Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20626,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +20627,Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +20628,5 Bedroom Detached Home,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20629,5.5 Hectares Land,Ilasan Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20630,Available Land,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20631,Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20632,Fully Furnished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20633,Available Land,Ilasan Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20634,Available Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20635,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20636,Available Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20637,Available Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20638,Newly Built 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +20639,Lovely Brand New 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +20640,Available Land,Bisola Durosimi Etti Stree Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20641,Newly Built 4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20642,1200sqm Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20643,Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20644,Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20645,Newly Built And Serviced 4 Bedroom Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20646,Available Land,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20647,1000 Sqm Sand Filled Fenced Corner Piece Land,Ilasan Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20648,A Well Maintained 4 Bedroom Semi Detached House,Off Bisi Durusemietti Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20649,4 Bedroom Semi Detached + Bq,"Ajiran Mews Estate, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20650,Available Land,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20651,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekky County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20652,Spacious 5 Bedroom Semi Detached Duplex,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"10,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20653,Contemporary 5 Bedroom White House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20654,Available Land,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20655,Fully Automated 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20656,Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +20657,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +20658,Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20659,1000sqm Residential Land,Lekki Lagos,₦,"178,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20660,3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +20661,5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20662,Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20663,5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20664,4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20665,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20666,Sea View 5 Bedroom Detached Duplex House,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +20667,Available Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20668,5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +20669,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20670,4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20671,1200sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20672,6 Plots Of Land Measuring At 620sqm,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20673,Waterfront 12000sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20674,1300sqm Land,Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20675,8500sqm Land,Off Alpha Beach Road Lekki Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20676,1000sqm Land,"Orange Island Estate Phase 1, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20677,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20678,1 Hectare Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20679,450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20680,4000sqm Commercial Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20681,2000sqm Fenced With Gate Land,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20682,623sqm & 627sqm Land,Behind Lekki Conservation Center Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20683,10000sqm Waterside Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20684,Dredged 20000sqm Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20685,Commercial 3600sqm And 800sqm Setback Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20686,Mixed Use Waterfront 1500sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20687,Corner Piece 533sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20688,10000sqm Sand Filled/recovered Land,"Orange Estate Phase 1, Down Freedom Way Lekki Phase 1 Lekki Lagos",₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20689,Fenced 5400sqm Beachfront Land,Chevy View Estate Lekki Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20690,Corner Piece Demolish Able Structure On 1246sqm Land,"Off Admiralty Road, Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20691,"Waterfront 1587sqm Land,",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20692,997sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20693,A Plot Of Land,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20694,1357sqm Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20695,500sqm Land,"Periwinkle Estate, By Freedom Way Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20696,1250.44sqm Land,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20697,650sqm Land,"Orange Island Estate Phase 2, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20698,Waterfront 10900sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20699,1050sqm Land,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20700,1000sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20701,Waterfront 12000sqm Mixed Use Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20702,Waterfront 3400sqm Land With Massive Structure,"Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20703,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20704,8 Plots Of Sand Filled Land,Orchid/lafiaji Road Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20705,Waterfront 4500sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20706,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20707,2406sqm Mixed Use Land,Off Bisola Durosinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20708,1880sqm Commercial Land,Admiralty Way Jakande Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20709,2406sqm Mixed Use Land,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20710,Corner Piece 1340sqm Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20711,4222sqm Commercial Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20712,435sqm Land,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20713,6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds, baths, Toilets,Osapa London +20714,Luxury 4bedroom With A Swimming Pool And A Room Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikota +20715,Newly Built 3 Bedroom Terrace Duplex Plus 1 Bq,Orchid Road Ikota Lekki Lagos,₦,"48,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikota +20716,Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Ikota +20717,Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Ikota +20718,Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Ikota +20719,Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Ikota +20720,Newly Built 5 Bedroom Duplex With 2rooms Bq,Secured Gated Estate Lekki Lagos,₦,"400,000,000/month",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +20721,Superbly Finished Fully Automated 5bedroom Detached Duplex With Open Terrace & Pool,Ikate Lekki Lagos,₦,"250,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20722,6 Bedroom All Ensuit Semi Detached Building,Chevy View Chevron Lekki Lagos,₦,"72,200,000/month",0,0,0,6 beds,6 baths,7 Toilets,Chevron +20723,5 Bedroom Mansion House With An Elevator,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20724,Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20725,4 Bed Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +20726,Smart & Switchless 5 Bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hrs Power,"Orchid Road, Lekki Lekki Lagos",₦,"120,000,000",1,0,1,5 beds,0 baths,0 Toilets,Other Lekki +20727,Newly Built 4 Bedroom Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,0 Toilets,Other Lekki +20728,4 Bedroom Detached Duplex,"Chevron Toll By Conservation, Lekki, Lagos Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +20729,Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,0 Toilets,Ikota +20730,Standard 4 Bedroom Semi Detached Duplex With A Room Bq @lekki Phase One,Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths, Toilets,Other Lekki +20731,Beautifully Finished Luxury 4 Bedroom Semi Detached Duplex With One Room Bq.,Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,0 Toilets,Victoria Garden City +20732,Exclusive Spacious 2 Bedroom Fully Serviced Apartment Perfect For A Shortlet,Agungi Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,2 baths, Toilets,Agungi +20733,Beautiful And Exquisite 2bedroom Terrace Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets,Ikate +20734,Luxurious 5 Bedroom Detached House With Cinema,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +20735,Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,0 Toilets,Lekki Phase 1 +20736,1 Plot Of Land,Ologolo Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20737,Decently Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,0 Toilets,Osapa London +20738,2bedroom Flat,Chevron Lekki Lagos,₦,"32,000,000",1,0,1,2 beds,0 baths,0 Toilets,Chevron +20739,Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,0 Toilets,Other Lekki +20740,4 Bedroom Terrace Duplex.,Vgc Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,0 baths,0 Toilets,Victoria Garden City +20741,A Plot Of Land Measuring 984sqms,Pinnock Beach Estate Osapa. Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +20742,Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,0 Toilets,Ikate +20743,Luxurious And Fully Serviced 2 Bedroom Apartment.,Chevron Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +20744,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,0 Toilets,Chevron +20745,20 Plots Of Land,Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20746,5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +20747,Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikota +20748,2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +20749,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20750,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20751,Boulevard Alcager,Idera House Scheme Eleko Lekki Phase 1 Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +20752,The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Opposite Corona School Abijo Lakki Lagos Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20753,3 Bedroom Semi Detached With Bq,"Sunday Ejiofor, Green Park Scheme, The Signature Apartment Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +20754,Delight Estate,Idera Scheme Eleko Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +20755,The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20756,Two Bedroom Maisonette,"The Signature Laurels, Athletic Layout Estate Abraham Adesanya Lekki Phase 1 Lekki Lagos",₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +20757,The Signature Apartment House Terrence,Ejiofor Green Park Scheme Opposite Corona School Abijo Lakki Lagos Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20758,3 Bedroom Terrace + Bq,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +20759,3 Bedroom Apartment Pent House With Bq,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +20760,The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"27,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +20761,The Signature Apartment House Terrence,Sunday Ejiofor Green Park Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20762,Delight Estate Idera Scheme Eleko Lagos,Idera Scheme Eleko Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets,Other Lekki +20763,Excel Garden Umuahia Phase 2,36b Freedom Way Lekki Lagos,₦,"750,000",0,0,0, beds, baths, Toilets,Other Lekki +20764,The Signature Apartment House Terrence,Sunday Ejiofor Street Green Park Scheme Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +20765,Hotel,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20766,"488 Sqm Of Land With 2 Units Of ,3 And 4 Bedroom Detached House",Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20767,Distress Sale Land Measuring Up To 975sqm With A Structure Of 2 Units Of 3 Bedroom Semi Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20768,1446 Sqm Of Land,Orchid Road Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20769,400 Sqm With A Structure,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20770,"474sqm In Ocean Bay Estate, Orchid, Chevron, Lagos",Chevron Lekki Lagos,₦,"57,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20771,4 Bedroom Semi Detached Duplex Home With A Bq,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20772,Land,Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +20773,4bedroom Semi Detached Duplex 1bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20774,4 Bedroom Terrace Plus One Room Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +20775,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +20776,800 Sqm,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20777,4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +20778,3 Bedroom Bungalow (needs Renovation) Located In A Well Secured Estate With 24hrs Electricity Supply,Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Other Lekki +20779,980 Sqm With 4 Units Of 3 And 4bedroomsemi Detached With Bq Each,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +20780,4 Bedroom Fully Detached And A Room Bq,Chevy View Estates Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20781,Newly Built 3 Bedroom Flat With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +20782,5 Bedroom Duplex All Ensuite At Ikate,Ikate Lekki Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +20783,Newly Built 5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +20784,1288 Sqm Of Land,Melrose Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +20785,Newly Built 3 Bedroom Service Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Agungi +20786,Newly Built 5bedroom Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +20787,Two Bedroom Flat,Ikate Road Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +20788,5bedroom Fully Detached Duplex,Inside Vgc Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +20789,Three Bedroom Flat,Ikate Road Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +20790,1300 Sqm Of Land,"Lekki Right, By Nike Art Gallery Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20791,Neat Office/shop Space,Ikota Shopping Complex Ikota Lekki Lagos,₦,"13,000,000",0,0,0,1 beds, baths, Toilets,Ikota +20792,Sale Of Uncompleted Building Project,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20793,Newly Built 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +20794,1386 Sqm With 12 Rooms Of Fully Detached Mansion,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20795,2 Numbers Of 4 Bedroom Detached Duplex,Forte Estate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20796,Newly Built 4 Bedroom Semidetached With Bq,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +20797,4 Bedroom Semi Detached Duplex With A Room Bq,"After Lcc, Chevron Road, Lekki Chevron Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +20798,3 Bedroom Apartment With Bq,"Location : Oluge Pl, Off Sule Olusesi Road Lekki Conservation Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +20799,4 Bedroom Semi Detached,Applewood Estate Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +20800,1265 Sqm Of Bare Land,Ologolo Ologolo Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +20801,Luxurious And Fully Serviced 2 Bedroom Apartment,"Rayfield Estate, Lekki Conservation, Cheveon Chevron Lekki Lagos",₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +20802,"1000 Sqm, With Mixed Units Of 1 And 2 Bedroom Flat",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +20803,Exquisite 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +20804,Luxury 5 Bedroom Fully Detached House,Behind Whitesand School Lekki Phase 1 Lekki Lagos,₦,"270,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +20805,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets,Ologolo +20806,Spacious 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +20807,4 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20808,4 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20809,4 Bedrooms Detached Duplex + Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +20810,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20811,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20812,5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +20813,Newly Developing 4 Bedroom Smart Home With Alexa Fully Automated,Orchid Hotel Road Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,5 baths, Toilets,Chevron +20814,4 Bedroom Semi Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +20815,5 Bedroom Fully Detached Duplex + Bq,Ayo Ajagun Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20816,5 Bedroom Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20817,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20818,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20819,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20820,5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20821,4 Bedrooms Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20822,4 Bedrooms + Bq Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20823,2 Bedroom Apartment,Idado Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +20824,4 Bedroom Fully Detached Duplex,= Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20825,Luxury 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20826,3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +20827,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20828,4 Bedroom Terraced Duplex With A Bq,Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20829,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20830,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +20831,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +20832,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +20833,2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000/year",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +20834,4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets,Ikate +20835,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20836,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20837,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +20838,4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20839,4 Bedroom Townhouse Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20840,Luxury 5 Bedroom Fully Detached Duplex With A Penthouse And A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20841,5 Bedroom Fully Detached Duplex With A Bq,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +20842,5 Bedroom Fully Detached Duplex (partly Furnished),Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +20843,5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20844,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20845,4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20846,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20847,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20848,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +20849,1 Bedroom Apartment,Idado Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Lekki +20850,6 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +20851,Lovely 4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +20852,3 Bedroom Apartment,Idado Lekki Lagos,₦,"59,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +20853,4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +20854,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +20855,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +20856,5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20857,5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20858,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20859,4 Bedroom Fully Detached Duplex With A Bq, Ikota Lekki Lagos,₦,"120,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20860,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20861,4 Bedroom Apartment With A Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20862,4 Bedroom Fully Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20863,State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20864,Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20865,Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20866,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20867,Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +20868,Spacious 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20869,Classy 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20870,5 Bedroom Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20871,Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20872,Automated 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +20873,Ruby 1/2 Bedroom Apartments,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +20874,Super Spacious 4 Bedroom Semi/detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +20875,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +20876,Super Affordable 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20877,Fully Serviced Corner Piece 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +20878,Spacious 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20879,Well Built Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20880,Automated 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20881,6 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"510,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +20882,Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +20883,5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20884,Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +20885,Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +20886,Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +20887,Well Built And Affordable 4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +20888,State Of The Art 4 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +20889,Well Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +20890,Residential Land,Orchid Road Opposite Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +20891,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20892,Fully Serviced Alluring And Decently Spaced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20893,Newly Built Duplex,Osapa Osapa London Lekki Lagos,₦,"71,000,000",1,1,0,0 beds,0 baths,0 Toilets,Osapa London +20894,1 Bedroom Apartment + Bq,Lekki Pride Estate Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +20895,Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +20896,Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20897,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20898,Tastefully Finished 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20899,5 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ologolo +20900,State Of The Art 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +20901,Contemporary Luxury 5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +20902,Well Finished Contemporary 4 Bedrom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +20903,6 Bedroom Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +20904,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20905,Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +20906,Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +20907,Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +20908,Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20909,Standard 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +20910,Smoothly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +20911,Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20912,Super Spacious Ultra Modern 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +20913,Super Decent Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20914,Glamorously Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20915,Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplx With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20916,Luxury 4 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +20917,Solidly Built Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +20918,Royal Standard 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20919,Spacious Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +20920,Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20921,Luxury 4 Bedroom Contemporary Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +20922,Super Luxury 5 Bed Contemporary Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +20923,Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20924,5 Bedroom Fully Detached Masterpiece,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20925,2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,$,"65,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +20926,Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +20927,Decently Spaced Affordable 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20928,5 Bedroom Fully Detached House,Ajah Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +20929,Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +20930,Tastefully Finished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +20931,Valuable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20932,Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +20933,Well Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +20934,Newly Built Fully Automated And Furnished 2 Bedroom,Orchid Hotel Road Chevron Lekki Lagos,₦,"41,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +20935,4 Bedroom Semi Detached Duplex,Salem Bus Stop Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +20936,Tastefully Finished 4 Bed Terrace Duplex,Chevron Lekki Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +20937,Gorgeous 4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +20938,4bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +20939,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +20940,Newly Built 5 Bedroom Luxury Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +20941,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20942,Gorgeous 4 Bedroom Terrace,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20943,5 Bedroom Fully Detached Duplex With 2 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20944,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +20945,4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20946,Newly Built 4 Bedroom Terraced Duplex,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +20947,5 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +20948,4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20949,4 Bedroom Semidetached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +20950,Luxury 5 Bedroom Fully Detached With A Bq,"Buena Vista Estate, Orchid Rd Lekki Lagos",₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +20951,5bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +20952,4bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +20953,4 Bedroom Fully Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20954,3 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +20955,5 Bedroom Fully Detached Duplex With Bq,Jakande Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +20956,5 Bedrooms Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +20957,4 Units Of 4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20958,5 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +20959,Affordable Luxury 3bedrooms Maisonette,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +20960,Newly Built Luxury Terrace Duplexes,Vgc Lekki Lagos Nigeria. Vgc Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Victoria Garden City +20961,4 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikota +20962,4 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20963,5bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +20964,Luxury Apartments In Good Location Selling Cheap (lilly Rose Apartment),Megamound Estate Ikota Lekki Ikota Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +20965,3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20966,Modern 5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +20967,4 Bedroom Semi Detached Selling In A Well Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +20968,5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,4 baths,4 Toilets,Chevron +20969,5bedroom Contemporary Detached,Lake View Estate Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20970,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +20971,Rare Offer Of 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20972,4bedroom Semi Detached,Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +20973,4 Bedroom Fully Detached Duplex,Orchid Rd Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20974,4 Bedroom Fully Detached Duplex,"Orchid, Lekki Lagos",₦,"88,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20975,3 Bedrooms Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +20976,Exra Beautiful Modern 5 Bedroom Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets,Agungi +20977,3bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,3 baths,3 Toilets,Ikota +20978,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +20979,5 Bedrooms Fully Detached Duplex + 2 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +20980,5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +20981,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20982,Live The Dream! The True Luxury Homes..,"Off Freedom Way, Off Regional Road Lekki 1. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +20983,5bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20984,4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20985,Newly Built 5 Bedroom Semi Detached Duplex,Lekki Home County Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20986,4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +20987,4 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +20988,Gorgeous 4 Bedroom Detached Duplex In Secure Estate,Ikota Lekki Ikota Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +20989,Luxury 5 Bedroom Duplex With Sea View,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +20990,5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +20991,Contemporary 4 Bed Room Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +20992,2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +20993,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +20994,Good Located 4bedroom Semi Detached,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +20995,4 Bedroom Terrace Duplex With Excellent Facilities,"Orchid Rd, Lekki Lagos",₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +20996,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +20997,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +20998,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +20999,Beautifully Finished 5bed Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21000,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21001,4 Bedroom Terrace Duplex,"Orchid Road, Chevron Axis, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +21002,Luxury 5 Bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21003,4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +21004,Newly Built 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +21005,5 Bedroom Fully Detached House + Bq + Study + Waiting Room Etc,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +21006,Newly Built Luxury And Exquisite 4 Bedroom Terrace Duplex With With Bq,"Freedom Way, Off Admiralty Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21007,5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +21008,5 Bedroom Detached Duplex + Swimmingpool + Openroofterrace Etc,Ikota Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +21009,"1,000sqm2 Land",Ikate Elegushi Ikate Lekki Lagos,₦,"210,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21010,Newly Renovated 5 Bedroom Semi Detached House For Sale,"Agungi Lekki, Lagos Agungi Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +21011,5 Bedroom Fully Detached Duplex + Bq + Swimmingpool + Cctv Etc,Ikota Lekki Lagos,₦,"220,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +21012,Exquisite 4 Bedroom Terrace Duplex In A Serene Estate,"Salem, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21013,4bedroom Terrace Duplex [redacted],2nd Tollgate Chevron Chevron Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,5 baths,5 Toilets,Chevron +21014,Exquisitely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +21015,Tastefully Built Two Bedroom Flat,"Abioro Street, Ikate Elegushi, Ikate Lekki Lagos",₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +21016,5bedrooms Fully Detached + Bq + Swimming,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21017,4 Bedroom Fully Detached Duplex + Bq,Lekki Ajah Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +21018,Newly Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21019,4 Bedroom Fully Detached Duplex + Bq,Lekki Ajah Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +21020,4 Bedroom Terrace Duplex,"Buena Vista Estate, By Orchid Road, Lekki. Lekki Lagos",₦,"3,000,000/year",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +21021,"Massive 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema And A Room Bq",Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21022,Executive Luxury Built 5 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,6 Toilets,Chevron +21023,Newly Built 4 Bedroom Terrace House,Omotesho Cole Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21024,4bedroom Semi Detached House + Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +21025,5 Bedroom Fully Detached House + Bq + Study + Waiting Room Etc,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +21026,5 Bedroom Fully Detached Duplex + Bq + Swimming Pool + Lounge,Lekki Ajah Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +21027,Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21028,Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21029,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21030,Newly Built 4 Bedroom Fully Detached Duplex With Bq,"Megamond Estate, Ikota Ikota Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +21031,4 Bedroom Semi Detached House + Bq + Lounge Etc,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21032,3bedroom Terrace Duplex + Bq [redacted],Lekki Gardens Phase 4 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +21033,5bedroom Fully Detached + Bq + Swimmingpool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +21034,5 Bedroom Fully Detached Duplex + Swimmingpool + Cinema Etc,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21035,"Off Plan An Exquisite Development Comprising Of 4 Units 4 Bedroom Terrace Duplex + Bq, 3 Units 2 Bedroom Flat & 3 Units 1 Bedroom Flat","Akinloye Street, Oral Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +21036,4bedroom All Ensuit With 2living Room And A Bq,Orange Island Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21037,453sqm Land,Victory Pack Estate Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21038,"1,587m² With Approval To Reclaim 2,000m² More",Along Admiralty Way Lekko Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21039,1263sqm Corner Piece Of Developed Area,Lekki Scheme 2 Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +21040,Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21041,Spacious Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21042,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21043,4 Bedroom Semi Detached Duplex With 1 Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21044,Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +21045,5 Bedroom Detached Duplex + Swimmingpool Etc.,Ikota Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +21046,Spacious 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21047,5.5 Hectares Of Land Located In Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +21048,2 Bedroom Apartment,Megabound Estate Environ Lekki Lagos,₦,"32,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +21049,4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,5 baths,5 Toilets,Ikate +21050,3 Bedroom Serviced Apartment With Bq,Osapa London Lekki Lagos,₦,"58,000,000",1,1,1,3 beds,3 baths,4 Toilets,Osapa London +21051,Available Land,Ilagbo Lekki Lagos,₦,"2,500,000/month",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21052,4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +21053,A Fully Serviced Three Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21054,800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21055,3386sqm Land,Lekki Expressway Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21056,5 Bedroom Detached House With Swimming Pool And A Gym,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +21057,1127sqm Land,Christ Chapel Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21058,7092sqm Corner Piece Land,Orchid Road Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21059,4500sqm Land,Lekki Phase 1 Lekki Lagos,₦,"1,485,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21060,16000sqm Land,Epe Expressway Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21061,1027sqm Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"410,800,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21062,Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21063,2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21064,2611.980sqm Land, Igbo Efon Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21065,2 Nos 5 Bedroom Detached Houses With Bqs,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21066,5 Bedroom Fully Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21067,Waterfront Blocks Of Flats,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21068,800sqm Land,Ikate Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Ikate +21069,3600sqm Land,Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21070,2 Bed Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +21071,4 Bedroom Terrace House,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21072,4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21073,2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21074,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +21075,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21076,Prime Land Measuring Approximately 1800m2 Fenced Gated,Durosimieti Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21077,Automated Five (5) Bedroom Home,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +21078,670sqm Land,Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +21079,6 Units 4 Bedrooms Terrace House Each For N200m,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21080,Available Land,Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21081,Waterfront Fully Fitted 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21082,Well Finished And Spacious 5 Bedroom Detached House With 3 Room Executive Bq,Close To Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21083,4300sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21084,8000m2 Land,Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21085,10 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +21086,Available Land,Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21087,5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21088,1400sqm Mixed Development Waterfront Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21089,2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21090,22 Rooms Hotel On Land Size 1200sqm Description Cornerpiece Plot.,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +21091,"26 Room Hotel With Conference Room, Gym And Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21092,1200sqm Residential Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"264,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21093,2units Of4 Bedroom Semi Detached House With 2 Rooms Bq And A Gate House,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21094,Waterfront 12 Bedroom Duplex With A Jetty,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +21095,4 Bedroom Maisonette,"Platinum Way, Igbokushu Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21096,4 Bedroom Serviced Terrace Apartment,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21097,4 Bedroom Terrace Apartment,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +21098,12 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +21099,4 Bedrooms Terraced Houses (6 Units),Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +21100,Bareland Ready For Developments,Orange Island Lekki Phase 1 Lekki Lagos,₦,"155,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21101,26 Rooms Hotel,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +21102,Office Complex With 2 Bay Warehouse,Agungi Lekki Lagos,₦,"4,700,000,000",0,0,0, beds, baths, Toilets,Agungi +21103,Land,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21104,Waterfront 12 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,9 beds,10 baths,10 Toilets,Lekki Phase 1 +21105,2400sqm Waterfront Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21106,Luxury 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +21107,Available Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21108,Tastefully Finished 5 Bedroom Duplex With A Bq,Off Orchid Road Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +21109,5 Bedroom House With 2 Room Bq,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21110,4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21111,1080sqm Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21112,2561sqm Joint Venture Land,Ikate Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Ikate +21113,Massive Massion, Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21114,2bedroom Serviced Flat,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +21115,"4 Bedroom Duplex With 2 Living Rooms , Fully Fitted Kitchen, All Rooms Ensuite & 1 Room Bq", Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21116,48rooms Executive Hotel,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21117,800sqm Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikate +21118,900sqm Land,Lekki Expressway Ikate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Ikate +21119,4 Bedroom Terrace Apartments With 1 Bq Each...., Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21120,6 Bedroom Duplex With 2 Room Bq,Nicon Town Ikate Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +21121,4000sqm Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21122,6 Bedrooms Detached Duplex All Rooms Ensuite Bq,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +21123,Brand New Fully Fitted 4 Bedroom Semidetached Houses With 1 Bq Each, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21124,"2 Nos, Of 5 Bedroom Detached House With Bqs On 2 Streets",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21125,"3 Bed Duplex With A Living Rooms , Fully Fitted Open Plan Kitchen, All Rooms Ensuite & Room Bq",Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +21126,2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21127,3507sqm Land,Lekki Expressway Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21128,Waterfront 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +21129,Available Land,Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21130,5 Bedrooms Fully Detached Smart House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21131,2016sqm Waterfront Land,Orange Island Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21132,900sqm Residential Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21133,1000sqm Land,Twin Lakes Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21134,3 Bedroom Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +21135,4800sqm Land,Elegushi Ikate Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Ikate +21136,800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21137,4 Bedrooms + Bq Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +21138,4 Bedrooms Semi Detached Duplex + Bq,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +21139,5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +21140,4 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +21141,5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +21142,4 Bedrooms Terrace Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +21143,5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +21144,5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +21145,4 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +21146,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21147,Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21148,Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21149,5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +21150,2bedrooms Apartments,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +21151,4bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21152,5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21153,Affordable Luxury 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21154,Contemporary 5 Bedroom Fully Detatched Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21155,"Very Affordable Luxurious, Exquisitively Designed, Furnished Newly Built 4bedroom Semi Detached Duplex With Bq In A Superb Neighborhood",Agungi Agungi Lekki Lagos,₦,"65,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Agungi +21156,Superb Newly Built 4bedroom Duplex With Bq In A Decent And Serene Neighborhood,Osapa London Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +21157,4 Bedroom Duplex With A Bq,Silicon Valley 2 Extension Estate Off New Road/alpha Beach Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21158,Brand New 5 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21159,4 Bedrooms Terrace Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +21160,3 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21161,4 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21162,4 Bedrooms + Bq Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21163,Distress Sales Of 8 Plots Of Dry And Viable Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21164,Distress Sale Of Fully Furnished And Inexplicable Smart & Switch Less 5 Bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hours Light,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +21165,2bedroom Maisonette + Bq,"Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +21166,3 Bedrooms Fully Detached Duplex,Lbs Lekki Phase 1 Lekki Lagos,₦,"45,000,000/year",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21167,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +21168,3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +21169,4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21170,Off Plan Sales Of 3 Bedroom Maisonette Duplex With Bq,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +21171,5bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"125,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21172,Newly Built 4bedroom Semi Detached Duplex,2nd Toll Gate Opposite Eleganza Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21173,Beautifully 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +21174,Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +21175,Exclusive 4 Bedroom Semi Detached Duplex Wih Massive Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +21176,Newly Built Mega 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +21177,Beautifully 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +21178,Spacious Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +21179,Newly Built 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +21180,Massive 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +21181,3 Bedroom Semi Detached Duplex + Pent House,Lagos Business School Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +21182,A Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +21183,Newly Built Beautifully 5 Bedroom + Bq Semi Detached Duplex,Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21184,Luxury 2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21185,Luxury 4bedroom Detached Duplex,2nd Toll Gate Opposite Eleganza Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21186,4 Bedroom Semi Detached + Bq Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +21187,Newly Built Beautifully 4 Bedroom Terrace 16 Units,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +21188,Newly Built Beautiful 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +21189,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21190,4 Bedroom Massive Semi Detached In An Estate In Ikota Gra,Ikota Gra Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,7 Toilets,Ikota +21191,Luxury 4 Bedroom Fully Detached Property,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21192,Fully Automated 5 Bedroom Fully Detached Luxury Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +21193,Newly Built Beautifully 4 Bedroom + Bq Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +21194,Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21195,Newly Built Beautifully 5 Bedroom Fully Detached Detached Duplex With Exquisite Finishes,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +21196,4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +21197,"5 Bedroom Fully Detached Duplex With Bq, Cinema And Pool",Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,0 Toilets,Ikota +21198,Newly Built 3bedroom Apartment With A Lovely Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +21199,Luxury 2bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +21200,Newly Built 5bedroom Detached Duplex With A Bq,Pinnock Beach Estate Lekki Ikota Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21201,Newly Built 2 Bedroom Terrace Duplex In Lekki 1,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +21202,5 Bedroom Fully Detached Houses,Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +21203,Newly Built 5bedroom Detached Duplex,Megamond Estate Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21204,Contemporary 5 Bedroom Fully Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +21205,Newly Built 3 & 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +21206,Brand New Luxurious 6 Bedroom Fully Detached Duplex,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 2 +21207,Massive 5 Bedroom Fully Detached House With A Room Bq And Massive Space, Idado Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,7 baths,6 Toilets,Other Lekki +21208,Newly Built 4bedroom Fully Detached Duplex With A Lovely Bq,Oral Estate Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21209,Newly Built Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pooli In Lekki,Ikota Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Ikota +21210,Luxury 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +21211,Fully Service 4bedroom Terrace Duplex With Fitted Kitchen At Orchid Road,Chevron Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +21212,Newly Built 5bedroom Detached Duplex With Swimming Pool & Bq,Chevron Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +21213,Beautifully 4 Bedroom Semi Detached + Bq Duplex,Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +21214,A Newly Built 4 Bedroom Luxury Duplex In Ologolo With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +21215,5 Bedrooms Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21216,Newly Built Beautifully 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +21217,Luxury 4 Bedroom Semi Detached Duplex + Bq,Harris Drive Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +21218,Contemporary 5 Bedroom Fully Detached Duplex With Enclosed Swimming Pool,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +21219,Newly Built 4 Bedroom Semi Detached Duplex In An Estate With Luxury Fittings,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +21220,Luxury 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +21221,Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq ..,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +21222,4 Bedroom Terrace Duplex With A Room Bq,Lcc Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21223,Massive 5 Bedroom Fully Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21224,Beautiful 5bedroom Detached Duplex With Swimming Pool & Open Pent House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +21225,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21226,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21227,Newly Built Beautifully 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +21228,Newly Built 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +21229,Modern 5 Bedroom Detached Duplex With Swimming Pool And Penthouse,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +21230,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +21231,Newly Built 3bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths, Toilets,Ikate +21232,2 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +21233,Newly Built Beautiful 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +21234,"Tastefully Built Contemporary 5 Bedroom House All Room Ensuite With 2room Bq, 3 Visitor Toilets, Gym, Separate Walk In Closet For Master And Madam,",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21235,Contemporary And Uniquely Designed 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +21236,4 Bedroom Flat With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +21237,Beautifully 4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +21238,Massive 5 Bedroom Fully Detached House In A Serene Estate,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +21239,Contemporary Massive 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +21240,Newly Built 4bedroom Penthouse,Salem Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21241,Beautifully 4 Bedroom Semi Detached + Bq Fully Detached,Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds, baths, Toilets,Chevron +21242,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21243,7 Bedroom Detached Duplex With 2 Bedroom Penthous,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +21244,Contemporary 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +21245,Newly Built 5 Bedroom Luxury Fully Detached Duplex With,Victory Park Estate Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21246,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Hrc Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21247,Newly Built 4 Bedroom Semi Detached Duplex,Hrc Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21248,5bedrooms Fully Detached Duplex With A Room Bq,New Road (alpha Beach Road) Opp. Chevy View Estate. Lekki Lagos,₦,"50,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +21249,Newly Fully Detached Luxury 4 Bedroom Duplex With Cinema,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21250,2 Plots Of Land,Melrose Park Estate Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +21251,4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets,Victoria Garden City +21252,Newly Built 4 Bedroom Luxury Semi Detached Duplex With Bq,"Hrc Estate, Sapata, Beside Vgc Ikota Ikota Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21253,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +21254,Fully Furnished 4 Bedroom Semi Detached House,Osapa London Garden Osapa London Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +21255,Water Front 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21256,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths, Toilets,Victoria Garden City +21257,Newly Built 2 Bedroom Terrace Duplex With Bq,"Horizon Estate, Ikate Ikate Lekki Lagos",₦,"62,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +21258,Newly Built 4 Bedroom Flat,19 Oba Amusa Street Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +21259,4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/year",0,1,1,4 beds,3 baths,3 Toilets,Lekki Phase 1 +21260,6 Bedroom Fully Detached Duplex,Chervyview Estate Chevron Lekki Lagos,₦,"220,000,000",1,0,0,6 beds,6 baths,7 Toilets,Chevron +21261,Mixed Use Land,Abraham Adesanya Estate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21262,Contemporary 4 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +21263,4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,0 Toilets,Lekki Phase 2 +21264,5 Bedroom Fully Detached Duplex With 2 Boys Quarter,"Off Admiralty Way Lekki Phase 1,lagos Nigeria Lekki Lagos",₦,"260,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +21265,5 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,4 baths,4 Toilets,Other Lekki +21266,5 Bedrooms Semi Detached Duplex,Orchid Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21267,Newly Built 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +21268,Newly Built And Tastefully Finished 4 Bedroom Semi Detached Duplex,Buena Vista Estate Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +21269,Newly Fully Detached Luxury 5 Bedroom Duplex With Cinema,Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21270,Newly Built 4 Bedroom Massionete With Bq,"Courtland Luxury Villa Estate, Platinum Road, Lekki. At The Back Of Femi Okunnu Estate, After Shoprite Jakande, Lekki Expressway Lagos Jakande Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21271,Waterview 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21272,Newly Built And Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21273,Offplan 4 Bedroom Maisonette Penthouse With Bq,Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +21274,Newly Built Five Bedroom Spacious Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21275,Functioning Filling Station,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +21276,4 Bedroom Semi Detached Duplex,"Abraham Adesanya, Ogombo Road Lekki Lagos",₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21277,Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21278,Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21279,Three (3) Bedroom Flat On A 6 Storey Building,Imax Cinema Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21280,Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21281,Solar Powered 2 Bedroom Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +21282,House,Lbs Ajah Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 2 +21283,Decently Spaced 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21284,Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21285,A 2 Storey Building Containing Six (6) Bedrooms,Oke Ire Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,6 beds,4 baths,4 Toilets,Lekki Phase 2 +21286,Decently Finished 5 Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21287,Luxury 2 Bedroom Apartment With Bq,"Olusesi, Chevron Extension Lekki Lagos",₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21288,2 Bedroom Maisonette In A Prime Location,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,2 Toilets,Ikate +21289,Furnished 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21290,45 Plots Of Land At Chevron Drive,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21291,Strategically Located 3 Bedroom Apartment Plus Penthouse,Off Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,2 Toilets,Lekki Phase 1 +21292,Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +21293,4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21294,5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21295,Super Spacious 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21296,Spacious 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21297,Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21298,Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21299,Fully Automated 5 Bed Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21300,Superbly Built 5 Bedroom Magnificent Edifice,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21301,4 Bedroom Massionette With Bq Offplan,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +21302,4 Bedroom Detached House On 1300m2,Victoria Gargen City Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +21303,Brand New Block Of Flats,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +21304,Ambiance Heights Lekki,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +21305,"Mufasa Luxury Apartments, Ikate Lekki",Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +21306,3 Bedroom Massionette With Bq Offplan,Ikate Lekki Lagos,₦,"73,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +21307,One Bedroom Apartment ( Offplan),Ikate Lekki Lagos,₦,"38,000,000",1,1,0,1 beds,2 baths,2 Toilets,Ikate +21308,Plot Ofland,Victory Park Estate Jakande Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21309,De Castle Max Apartments,"Orchid, Road Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +21310,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +21311,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +21312,Newly Built 4 Bedroom Terrace,Igbo Efon Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +21313,Newly Built 2 Bedroom Flat (offplan Sales),Ologolo Lekki Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +21314,5 Bedroom Detached House With Bq,Awodele Abiodun Megamond Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21315,"The Pearl Residences, Abijo Lekki",Abijo Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +21316,Newly Built 4 Bedroom Terrace,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +21317,Newly Built 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +21318,4 Bedroom Penthouse,Ilasan Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +21319,5 Bedroom Detached House Plus Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +21320,One Bedroom Luxury Apartment,Ilasan Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets,Other Lekki +21321,Ruby 3 Lekki,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +21322,2 Bedroom Massionette Offplan,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +21323,3 Bedroom Penthouse With Bq ( Offplan),Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +21324,Newly Built 2 Bedroom Flat (offplan Sales),Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +21325,2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +21326,Land,Lacampagne Tropicana Beach Resort Lekki Phase 2 Lekki Lagos,₦,"500,000",0,0,1,0 beds,1 baths,1 Toilets,Lekki Phase 2 +21327,3 Bedroom Block Of Flats,"Lekki Conservation Road, Chevron Lekki Lagos",₦,"50,000,000",1,1,1,3 beds,4 baths,4 Toilets,Chevron +21328,2 Bedroom Block Of Flats,"Lekki Conservation Road, Chevron Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets,Chevron +21329,1 Bedroom Block Of Flats,Lekki Conservation Road Chevron Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,2 baths,2 Toilets,Chevron +21330,Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21331,Brand New 5 Bedroom Detached Duplex,"Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21332,Brand New 5 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +21333,Brand New 4 Bedroom Semi Detached Duplex,"Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21334,Brand New 2 Units Of 4 Bedroom Terrace Duplex,"Chevron Conservation Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21335,Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21336,Brand New 4/5 Bedroom Detached House,"Chevron Conservation Drive, Lekki Chevron Lekki Lagos",₦,"130,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21337,Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21338,Brand New 4 Bedroom Semi Detached Duplex,"Off Freedom Way, Ikate Lekki Phase 1 Ikate Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21339,Brand New 5 Bedroom Detached Duplex,"Pinnock Beach Private Estate, Osapa London Lekki Phase 1 Osapa London Lekki Lagos",₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21340,Brand New 2 Units Of 5 Bedroom Semi Detached Duplex,"The Palms Estate, Lekki Lagos Osapa London Lekki Lagos",₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21341,Brand New 5 Bedroom Detached Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +21342,Brand New 4 Bedroom Semi Detached Duplex,"Bakare Estate, Agungi Lekki Lagos Agungi Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +21343,Brand New 5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21344,Relatively New 4 Bedroom Furnished Semi Detached,"Lekki County, Lekki Lagos Ikota Lekki Lagos",₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +21345,5 Bedroom Detached Duplex With A Pool In Ikota,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21346,Newly Built 5 Luxury Bedroom Detached Duplex,Osapa London Estate Jakande Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21347,Land With C Of O,"Pratch Garden, Ikota Gra Ikota Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +21348,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21349,4 Bedroom Semi Detached Terrace,Opposite Chevron Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21350,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets,Ologolo +21351,Ambiance Height Estate Freedom Way Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"70,000,090",1,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +21352,2 Bedroom Apartments,Ologolo Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ologolo +21353,2 Bedroom Maisonette + Bq,Off Freedom Way Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +21354,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +21355,2 Bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,1 baths,2 Toilets,Ikate +21356,2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21357,5plots Of Land,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21358,Tastefully Built 4 Bedroom Duplex With Bq Sitting On Approximately 320 M,Illasan Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +21359,Brand New Luxury 2 Units 5 Bedrom Fully Detached Duplex With 1 Room Bq Each,Within A Beautiful Estate In Agungi Lekki Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Agungi +21360,"Residential 1, 211sqms","Orange Island, Lekki Lekki Lagos",₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21361,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21362,Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21363,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21364,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21365,Land With C Of O,Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Ikate +21366,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21367,Peridot Heights, Chevron Lekki Lagos,₦,"32,900,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21368,3062 Square Meters Land,Jakande Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21369,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21370,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21371,"Units Available At Ikate, Lekki",Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21372,Off Plan 2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +21373,800sqm Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21374,Land,Chevron Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21375,5 Bedroom Fully Detached Duplex With Penthouse And Indoor Swimming Pool,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +21376,3 Bedroom Apartment,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +21377,A Bareland With C Of O,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21378,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +21379,A Corner Piece Bareland,Twinlakes Estate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21380,Land,Nicon Town Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21381,4 Bedroom Terraced Duplex With Two Floors,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +21382,"600sqm Land At Ikate Elegushi Off Freedom Way By Mtn Project Fame,",Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21383,Newly Built 5bdrm Duplex With Bq And Governors Consent,Pinnock Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +21384,5 Plots Of Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21385,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21386,Over 60plots Land With Excision,Atlantic Mall Area(chevy View) Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +21387,Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21388,3250sqm With C Of O Fenced With Gate,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21389,Land With C Of O,Cowrie Creek Oral Estate Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21390,Land,Ikota Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21391,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21392,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21393,Available Land,Pinnock Estate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21394,4bdrm Terrace Duplex With Allocation,By Elegushi Junction Jakande Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21395,1000sqm Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21396,4 Bedroom House,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21397,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21398,Land,Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21399,Available Land,Pinnock Estate Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21400,Available Land,Pinnock Estate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21401,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21402,Land With C Of O,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21403,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21404,5 Bedroom Smart House,2nd Tollgate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21405,4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21406,Furnished Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21407,Land With C Of O In Oniru,Oniru Estate Ikate Lekki Lagos,₦,"27,000",0,0,0, beds, baths, Toilets,Ikate +21408,Strategically Located Land With C Of O,Facing The Road Chevron Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Chevron +21409,New 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21410,Fully Serviced And Furnished 3bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +21411,A Plot Of Land,Megamound Estate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21412,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +21413,5 Bedroom Fully Detached Duplex With Penthouse,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +21414,Land,Spg Road Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21415,Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21416,4 Bedroom Terraced Duplex Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +21417,Land,Off Gbangbala Street Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21418,Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21419,1255sqm Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21420,Residential 928.45sqms,"Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21421,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21422,Available Land,Victory Park Estate Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21423,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21424,"Residential 1,226.69sqms","Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21425,2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21426,Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21427,Cargo Vessel For Sale,Lekki Lagos,$,"2,100,000",0,0,0, beds, baths, Toilets,Other Lekki +21428,Newly Built 4bdrm Semi Detached Duplex With Bq,Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +21429,5000sqm Land,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21430,6 Plots(1 Acres) With C Of O Facing Orchid Hotel Road,Orchid Hotel Road Chevron Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Chevron +21431,700sqm Of Dry Land,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21432,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +21433,Lands, Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21434,"Spacious Cozy 4 Bedroom Semi Detached Duplex With Maid's Room At Angles Court Abijo, Lekki",Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21435,4 Bedroom Super Luxury Duplex.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +21436,"10,000sqm Sand Filled Land",Ilasan By Blenco Stores Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21437,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +21438,Distress Sale Of 4 Bedroom Duplex,... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21439,4bedroom Terrace Duplex With Bq,Ffjjkncf Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21440,A 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +21441,New 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +21442,100 Hectares Of Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21443,3bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +21444,Newly Built 5bedroom Detached Duplex,Onikoyi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21445,A Bare Land Measuring 1022sqm,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21446,800sqm Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21447,800sqm Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21448,Available Land,Pinnock Estate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21449,A Bareland With Demolishable Structure,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21450,Land With C Of O,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21451,Finished 3 Bed Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21452,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21453,3 Units Of 400sqm Plots,Lakeview Park 2 Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21454,Over 10 Hectares Of Dry & Marshy Plots,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21455,3 Plots Of Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21456,1821sqm Corner Piece Land,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21457,Furnished 8bdrm Mansion With Consent,Ikota Lekki Lagos,₦,"150,000,000",0,0,1,8 beds,7 baths,8 Toilets,Ikota +21458,Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21459,Land Measuring 1154 Square Metres.,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21460,Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21461,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21462,Residential 911.90sqms,"Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21463,Land,Twin Lake Estate Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21464,2units Of 4bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21465,"Mixed Development Waterfront 1,400sqms At N300,000 Per Sqm","Orange Island, Lekki Lekki Lagos",₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21466,Contemporary 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +21467,Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +21468,Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21469,Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +21470,Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21471,Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21472,Newly Built 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21473,Newly Built 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21474,Luxury 5 Bedroom Fully Detached Contemporary Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21475,Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21476,Luxury & Lovely 3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +21477,Tastefully Finished 4 Units (four) Of 4 Bedroom Terraces With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +21478,Brand New Luxury Built And Tastefully Finished 3 & 4 Bedrom Duplex With 1 Room Bq,"Ikota Villa Estate, Ikota Lekki Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +21479,Luxury Brand New 3 Bedrom Flat Wit A Bq With Swimming Pool,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +21480,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +21481,2 Units Of Five (5) Bedroom Smart Luxury Detached House,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths,7 Toilets,Lekki Phase 1 +21482,2000sqm Waterfront Land At Pinnock Beach Estate Phase 1 With Gov Consent,Pinnock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21483,Luxury & Exquisitely Finished 2 Bedroom Terrace Duplex With A Room Bq,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +21484,Luxury 5 Bedroom Detached Home For Sale,12 Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"160,000,000/year",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +21485,Land For Jv,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000/month",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +21486,Solid And Well Finished 4 Bedroom Semi Detached Duplex With A Bq,"Victoria Crest Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21487,Modern Architectural Terrace Duplex,Beach View Estate Ologolo Lekki Lagos,₦,"107,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +21488,Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21489,Fully Serviced 4 Bedroom Waterfront Semi Detached Villa.,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21490,Luxury 4 Bedroom Terrace Homes With Service Quarters,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21491,Brand New Luxury 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21492,2 Bedroom Apartments,Key Gardens Luxury Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21493,"50 Standard Room Hotel In Lekki, With Swimming Pool",Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21494,5 Bedroom Contemporary Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21495,Newly Built 5 Bedroom Corner Piece Duplex Sitting On More Than 700sqm.,Lekki County Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21496,Luxury 4 Bedrooms Fully Detached Duplex With 1 Bedroom Bq All En Suite.,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21497,Luxury 5 Bedroom Contemporary House With 1 Room Service Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21498,Luxury 3 Bedrooms Apartment (penthouse),Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +21499,"Luxury 5 Bedroom Fully Detached House With A Bq, Cinema And A Pool",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21500,5 Bedroom Luxury House With 3 Sit Out Terrace,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21501,Premium Finished Scandinavian Style 3 Bedroom Apartment With A Bq.,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +21502,Well Finished Contemporary 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +21503,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"105,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +21504,4 Bedrooms Terrace With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21505,4 Bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +21506,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +21507,Newly Built 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,0 Toilets,Osapa London +21508,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +21509,Aesthetic 5 Bedroom Detached House With Large Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +21510,5 Bedroom Detached House With Large Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +21511,5 Bedrooms Fully Detached Detached Duplex With Bq And Swimming Pool,Lekki County Homes ?? Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +21512,Spacious Waterfront 5 Bedroom Fully Detached Contemporary House With Boys' Quarters,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21513,4 Bedrooms With Bq,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +21514,Brand New Contemporary 4 Bedroomfully Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +21515,5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +21516,5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21517,5bedrooms Fully Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21518,4 Bedrooms Terraces,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21519,4 Bedrooms Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21520,Fully Automated 5 Bed Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21521,4bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21522,Aesthetic 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +21523,4 Bedroom Fully Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +21524,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21525,5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21526,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21527,5bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +21528,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21529,4 Bedroom Townhouse With Bq (on Going Construction 70% Complete),Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21530,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Chevron +21531,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +21532,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21533,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21534,2 Plots Of Land,"Beside Cooplag Estate Orchid Road, Ikota Lekki Lagos",₦,"50,000,000/year",1,0,0,0 beds,0 baths,0 Toilets,Ikota +21535,4 Bedroom Duplex,Ocean Bay Estate Orchid Road 2nd Toll Gate Ikota Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikota +21536,"3 Bedrooms Plus Bq Smart Maisonette At Camberwall Advantage 3, Ikate Lekki",Camberwall Advantage Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +21537,3 Bedrooms Luxury Penthouse Apartments,"Camberwall Advantage 4, Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21538,4 Bedroom Semi Detached Duplex,Harris Drive (shapata) By Vgc Off Lekki Epe Express Road. Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +21539,Newly Built Magnificent 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +21540,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21541,2 Bedroom And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21542,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21543,Magnificently Finished 4 Bedroom Terrace Duplex,Gated Estate Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21544,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq In A Secured Estate,Gated Estate Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21545,Magnificently Finished 5 Bedroom Detached Duplex With Open Roof Terrace,Gated Estate Ikate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +21546,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21547,Exquisitely Built 4 Bedroom Terrace Duplex With Open Terrace & Swimming Pool,Gated Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21548,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"102,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21549,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21550,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21551,Exquisitely Built 5 Bedroom Detached Duplex Facing Waterfront,"Off Chevron Drive, Gated Estate Chevron Lekki Lagos",₦,"124,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21552,Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema Sitting On 500sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21553,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Gated Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21554,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21555,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +21556,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21557,Magnificently Finished 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +21558,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +21559,"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool, Cinema Room And Gym House",Gated Estate Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21560,Exquisitely Finished 4 Bedroom Terrace Duplex With Bq In A Serene Mini Estate,Mini Estate Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21561,Flawlessly Finished 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21562,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21563,Exquisitely Built 2 Bedroom Flat In A Quiet Neighbourhood,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +21564,Magnificently Finished 4 Bedroom Terrace Duplex With Bq With 24hrs Light,Mini Estate Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +21565,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,0 baths,0 Toilets,Chevron +21566,Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Mini Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21567,Serviced & Exquisitely Built 3 Bedroom Flat,Mini Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Agungi +21568,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21569,4 Bedrooms Luxury Terrace With En Suite Bq,Opposite Niccon Town Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21570,Luxuriously Built 4 Bedroom Semi Detached Duplex With Bq In A Quiet Mini Estate,Gated Estate Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +21571,Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21572,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21573,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21574,Magnificently Finished 4 Bedroom Semi Detached Duplex With 1 Bedroom Flat Bq,Mini Estate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21575,Exquisitely Built 2 Bedroom Flat,Lekki 2nd Toll Gate Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +21576,Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Gated Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +21577,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21578,"30,000sqm (45plots) Of Bare Land",Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +21579,Serviced & Exquisitely Built 3 Bedroom Flat In A Mini Estate,Gated Estate Ilasan Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +21580,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,0 baths,0 Toilets,Lekki Phase 1 +21581,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +21582,Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21583,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21584,Flawlessly Finished 4 Bedroom Terrace Detached Duplex With Bq,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21585,Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21586,Exquisitely Finished 4 Bedroom Terrace Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +21587,Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool In A Serene Estate,Mini Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21588,Exquisitely Built 5 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21589,Serviced & Exquisitely Built 4 Bedroom Semi Detached Duplex In A Serene Estate,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21590,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21591,Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Security Tight Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21592,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21593,Spacious Luxury 3 Bedrooms Apartment,Gated Estate At Maurwa Lekki Lekki Phase 1 Lekki Lagos,₦,"56,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21594,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21595,Flawlessly Built 4 Bedroom Semi Detached Duplex,Gated Estate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21596,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Security Tight Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +21597,Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21598,Flawlessly Finished 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21599,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21600,Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21601,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21602,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq With Excellent Facilities,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21603,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21604,Luxuriously Built 4 Bedroom Detached Duplex With Bq In A Serene Environment,Off Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21605,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikate +21606,Magnificently Finished 5 Bedroom Detached Duplex With An Ensuite Bq With Kitchen,Gated Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +21607,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21608,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21609,Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Gated Estate Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21610,Serviced & Exquisitely 3 Bedroom Flat With Bq,Gated Estate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +21611,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21612,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +21613,Beautifully Finished 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +21614,Exquisitely Built 4 Bedroom Detached Duplex With Bq In A Quiet Neighbor Hood,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21615,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Ikate Lekki Lagos,₦,"102,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21616,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21617,Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21618,Magnificently Finished 5 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +21619,Exquisitely Finished 5 Bedroom Detached Duplex With Bq In A High Brow Estate,Mini Estate Ikota Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21620,Exquisitely Built 4 Bedroom Terrace Duplex In A Quiet Neighbourhood,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21621,Serviced & Exquisitely Built 4 Bedroom Terrace Duplex,Gated Estate Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +21622,Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Open Terrace,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21623,Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21624,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +21625,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21626,Magnificently Finished 4 Bedroom Terrace Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21627,Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21628,Magnificently Finished 5 Bedroom Detached Duplex With Cinema Room,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21629,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +21630,Bare Land,Alpha Beach Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21631,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21632,Contemporary 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21633,Beautifully Finished 2 Bedroom Flat,Gated Estate Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21634,Magnificently Finished 5 Bedroom Semi Detached Duplex With Bq,Mini Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21635,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21636,Exquisitely Built 5 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Off Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21637,Serviced & Tastefully Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21638,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21639,Serviced & Exquisitely Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21640,Exquisitely Built 4 Bedroom Terrace Duplex With Bq & Swimming Pool,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21641,Exquisitely Built 4 Bedroom Terrace Duplex With Bq( Smart House) With 24/7 Power Supply,Mini Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +21642,5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,6 beds,0 baths,0 Toilets,Lekki Phase 1 +21643,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21644,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21645,Exquisitely Built 1 Bedroom Flat In An Upscale Environment,Gated Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Agungi +21646,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +21647,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21648,Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Gated Estate,Gated Estate Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +21649,Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool & Penthouse Overlooking A Lake,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21650,Beautifully Finished 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +21651,Exquisitely Built 4 Bedroom Terrace Duplex On A Large Expanse Of Land,Gated Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21652,Exquisitely Built 2 Bedroom Flat With Bq Fully Serviced,Gated Estate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21653,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21654,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21655,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21656,Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Gated Estate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21657,Magnificently Finished 5 Bedroom Detached Duplex With Bq,"Gated Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21658,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Oral Estate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21659,"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema, Gym Room Sitting On 540sqm",Admiralty Axis Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21660,"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema, Gym Room Sitting On 540sqm",Admiralty Axis Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21661,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21662,Magnificently Finished 4 Bedroom Terrace Duplex With Guaranteed Power Supply,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +21663,Magnificently Finished 4 Bedroom Detached Duplex With Swimming Pool & Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21664,Luxuriously Finished 5 Bedroom Detached Duplex With Bq In A Quiet Estate,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21665,Newly Built 4 Bedroom Semi Detached Duplex With Bq In A Gated Estate,Lekki 2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21666,Exquisitely Built 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +21667,Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21668,Flawlessly Furnished 2 Bedroom Flat With 24 Hours Light,Mini Estate Osapa London Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Osapa London +21669,Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Quiet Mini Estate,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21670,Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Lekki 2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21671,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +21672,Uniquely Finished 4 Bedroom Semi Detached Duplex Facing Waterfront,Gated Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21673,Flawlessly Finished 2 Bedroom In A Serviced Environment,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21674,Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +21675,5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +21676,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21677,2 Bedroom Terrace,Ikota Lekki Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +21678,Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Serviced Estate,Mini Estate Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +21679,Magnificently Built 4 Bedroom Detached Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21680,Exquisitely Built 4 Bedroom Terrace Duplex,Mini Estate Ologolo Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +21681,Flawlessly Finished 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +21682,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21683,Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21684,Exquisitely Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21685,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21686,Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21687,"Magnificently Finished 5 Bedroom Detached Duplex With Pool, Cinema & Gym",Gated Estate Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +21688,Serviced & Fully Furnished 5bedroom Detached Duplex With 24hrs Light,Chevron Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21689,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Agungi Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +21690,4 Bedroom Terrace Duplex,"2nd Toll Gate At Ikota, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +21691,4 Bedroom Fully Detached Duplex,Vgc Lagos Vgc Lekki Lagos,₦,"79,500,000",1,1,0,5 beds,4 baths,5 Toilets,Victoria Garden City +21692,Water Front 2bedroom Apartment,Lekki Phase 1 Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +21693,5 Bedroom Luxurious Smart Duplex With Swimming,Orchid Road Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +21694,4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +21695,Newly Built 4 Bedroom Luxury Semi Detached Duplex + Bq,Off Chevron Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,3 baths,3 Toilets,Chevron +21696,"3 Bedrooms Apartments At Mufasa Lifestyle Luxury Ikate, Lekki",Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,1,3 beds,3 baths,3 Toilets,Ikate +21697,A 2 Bedroom Smart Luxury Penthouse,"Godmade Connect Court; Behind Onike Art Gallery Ikate, Lekki Ikate Lekki Lagos",₦,"80,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +21698,Tastefully Finished Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21699,Brand New Luxury 5 Bedroom Fully Detatched With A Bq,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21700,Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +21701,Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +21702,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +21703,Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21704,Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21705,Fully Furnished 4 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21706,Smart 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21707,Massive 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21708,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +21709,Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21710,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +21711,A Fully Serviced 3 Bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +21712,Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +21713,Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +21714,Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +21715,State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +21716,Decently Finished Contemporary 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +21717,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +21718,A 4 Bedroom Terraced House With Bq,Plot 35 Ladipo Omotosho Cole. Lekki Face 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21719,Lovely Luxury 4 Bedroom Terrace Duplex,"Osapa London, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +21720,4 Bedroom Semi Detached Duplex + 1,Lekki Phase 2 Estate By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +21721,Newly Built 4 Bedroom Semi Detached,Orchid Hotel Road Ikota Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +21722,Newly Built 4 Bedroom Terrace (gated),Orchid Hotel Road (before The Roundabout) Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikota +21723,Newly 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +21724,4 Bedroom Terrace Duplex,"Osapa Lekki,lagos Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +21725,4 Bedroom Semidetached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets,Ikota +21726,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +21727,4 Bedroom Semidetached Duplex,"2nd Toll Gate Lekki,lagos State Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +21728,Mufasa Lifestyle Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +21729,5 Bedroom Luxury Fully Detached Duplex With Bq,Lekki County Home Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +21730,4 Bedroom Semidetached Duplex With Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21731,4 Bedroom Semidetached Duplex Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +21732,4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,3 baths,4 Toilets,Lekki Phase 2 +21733,2 Bedroom Apartment,Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +21734,Exquisitely Decently Finished Spacious 4 Bedroom Fully Detached Duplex Jen,Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths, Toilets,Other Lekki +21735,Newly 2 Bedroom Apartment,Nicon Town Lekki Lagos,₦,"40,000,000",1,1,0,2 beds, baths, Toilets,Other Lekki +21736,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Chevron +21737,An Exquisitely Finished And Newly Built 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21738,Newly 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets,Ikate +21739,Exquisitely Decently Finished Spacious 4 Bedroom Fully Detached Duplex Jen,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths, Toilets,Ikate +21740,4 Bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +21741,2 Bedroom Massionette,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds, baths, Toilets,Lekki Phase 1 +21742,Newly Built 4 Bedroom Semidetached Bedroom With Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +21743,Camberwall Advantage 3&4,"Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +21744,4 Bedroom Semidetached Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Ikota +21745,4 Bedroom Semidetached Duplex With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +21746,2 Units Of 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21747,"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House, Nestled Within A Family Friendly And Secured Environment",Lekki Left Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +21748,Spectacular 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21749,Luxury 4 Bedroom Duplex In A Serene Family Friendly Estate,"Van Daniel's Estate, Off Orchid Hotel Road Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +21750,Newly Luxury 4 Bedroom Terrace In A Highly Secured Area,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +21751,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21752,5 Bedroom Detached Duplex House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,5 baths,6 Toilets,Ikota +21753,Newly Built 3 Bedroom Masionette Duplex,"Ambiance Heights, Freedom Way Lekki Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21754,Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21755,Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21756,Twin 4 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21757,5 Bedroom Fully Detached Duplex Available,"Orchid Road, Lekki Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +21758,4 Bedroom Fully Detached Duplex Available,"Orchid Road, Lekki Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +21759,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +21760,4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +21761,Luxury & Affordable Lekki Terraces,"Orchid Road, Lekki Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +21762,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +21763,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +21764,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +21765,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +21766,"Unconventional, Spacious 4 Bedrooms Full Detached Duplex With Bq",Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +21767,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +21768,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +21769,Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +21770,"Contemporary, Spacious, Luxury 5 Bedroom Detached Duplex",Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21771,Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +21772,Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +21773,2 Units 5 Bedroom Luxury Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21774,State Of Art 5 Bed Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +21775,Newly Built 3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +21776,2 Bedroom Maisonette + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +21777,The Camberwall Advantage; 4bedrooms Maisonette Penthouse + Bq,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +21778,1 Bedroom Apartment + Bq,Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +21779,Decently Built 2 Bed Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +21780,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +21781,3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +21782,Newly Built 2 Bedroom Apartment In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +21783,600sqm Land,Bogije Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21784,Mufasa Apartments : Home For The Elites,Ikate Elegunshi Lekki Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,0 baths,0 Toilets,Ikate +21785,Brand New Beautiful 3 Bedroom Flat,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +21786,Decently Finished 2 Bed Apartment With Swimming Pool,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +21787,Mufasa Lifestyle Apartments,"Location* Ikate Elegunshi, Lekki. Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,0 baths,0 Toilets,Ikate +21788,"3 Bedroom Flat In A Block Of Flat, All Rooms Ensuite",Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets,Agungi +21789,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +21790,Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki County Homes Eti Osa Lekki Lagos State Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 2 +21791,5 Bedroom Detached Duplex.,Lekki County Homes Eti Osa Lekki Phase 2 Lekki Lagos,₦,"173,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +21792,Exquisitely Finished 3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds, baths,4 Toilets,Lekki Phase 1 +21793,4 Bedroom Terrace Duplex With 1bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikate +21794,"One Bedroom Studio Apartment,",Ikate Lekki Lagos,₦,"30,000,000",0,1,0,0 beds,0 baths,2 Toilets,Ikate +21795,1 Bedroom Apartments,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,1 beds,1 baths,1 Toilets,Osapa London +21796,Newly Built 5 Bedroom Duplex With B/q,Orchid Road Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +21797,Newly Built Exclusive 5 Bedroom Duplex With B/q,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +21798,Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 2 +21799,Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki 2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +21800,3 Bedrooms Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ologolo +21801,"Block Of 4 Flat, Two Unit Of 3 Bedroom And Two Unit Of 2 Bedroom Flat",Abijo Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21802,2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +21803,Four (4) Bedroom Duplex With Staff Quarters,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +21804,Standard Shop With Extra Space,Baale Street Igbo Efon Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,1 Toilets,Other Lekki +21805,Five (5) Bedroom Fully Detached Duplex With Swimming Pool And A Staff Quarters,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21806,(distress) Five (5)bedroom Fully Detached Duplex With A Staff Quarters,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21807,Fully Serviced Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +21808,4 Bedroom Fully Detached Duplex Available,Vgc Lekki Lagos,₦,"98,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +21809,5 Bedroom Fully Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Chevron +21810,4 Bedroom Semi Detached Duplex Available For Sale,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21811,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +21812,5 Bedroom Fully Detached Duplex Available For Sale,Vgc Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets,Victoria Garden City +21813,4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets,Chevron +21814,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21815,N53m Luxury & Affordable Lekki Terraces,Igbo Efon Lekki Lagos,₦,"53,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21816,Well Finished 4 Bedroom Semi Detached Duplex Available,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets,Victoria Garden City +21817,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +21818,4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Chevron +21819,Executive 5 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +21820,4 Bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +21821,5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets,Chevron +21822,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +21823,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +21824,Fully Serviced 2bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,0 baths,0 Toilets,Ologolo +21825,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +21826,Contemporary 4 Bedroom Fully Detached Located In A Very Conducive Estate.,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets,Agungi +21827,Contemporary 4 Bedroom Semi Detached For Sale,Chevron Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths, Toilets,Other Lekki +21828,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +21829,5 Bedroom Fully Detached Duplex For Sale,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Agungi +21830,Sophisticated 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds, baths, Toilets,Chevron +21831,4 Semi Detached Duplex With Bq Available For Sale,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Agungi +21832,4 Bedroom Fully Detached Duplex Available For Sale,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +21833,4bedroom Fully Detached Duplex For Sale,Orchid Road Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21834,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +21835,4 Bedroom Fully Detached Duplex For Sale,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Agungi +21836,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +21837,4 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +21838,5 Bedroom Fully Detached Duplex With Penthouse Available For Sale,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds, baths, Toilets,Agungi +21839,5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Chevron +21840,4 Bedroom Fully Detached Duplex Available For Sale,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +21841,4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Chevron +21842,4 Bedroom Fully Detached Duplex Available,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +21843,4 Bedroom Terrace Duplex For Sale,Orchid Road Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +21844,Astonishing 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +21845,Luxury 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +21846,4 Bedroom Semi Detached Duplex For Sale,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +21847,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +21848,2 Bedroom Fully Service Apartment Available For Sale,Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds, baths, Toilets,Chevron +21849,4 Semi Detached Duplex With Bq Available,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Agungi +21850,4 Bedroom Semi Detached Duplex Available For Sale,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +21851,2 Bedroom Apartment Available,"Orchid Road, Lekki Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 2 +21852,Off Plan Offer At Ikate You Can Own With N15m Initial Deposit And Spread Balance Over 12months.,Ikate Lekki Lagos,₦,"15,000,000",0,1,0,3 beds, baths, Toilets,Ikate +21853,"Luxurious 1 & 2 Bedrooms Apartments, 3 Bedrooms Pent Houses",Off Road Freedom Way / Amore Street Lekki Phase 1 Lekki Lagos,₦,"48,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +21854,Newly Built En Suite 4 Bedroom Semi Detached Duplex Plus Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +21855,Newly Built 4 Bed Detached Duplex,"Empire Estate,chevron Alternative Route. Chevron Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21856,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +21857,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +21858,5 Bedroom Fully Detached Contemporary Duplex With Bq,Osapa London Lekki Lagos,₦,"440,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +21859,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21860,3 Bedroom Maisonnette In A Serene Location In Lekki,Freedom Way Lekki.. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21861,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21862,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21863,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +21864,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +21865,4 Bedroom Terrace Duplex House With A Bq,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +21866,Newly Built 2 Bedroom Penthouse Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +21867,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"98,000,000",1,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +21868,C Of O Dry Land,Cowrie Creek Estate Off Spar Road Ikate Lekki Lagos,₦,"228,000,000",0,0,0, beds, baths, Toilets,Ikate +21869,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21870,Water Front C Of O Land,"Just By World Oil Filling Station, Ilasan Ikate Lekki Lagos",₦,"162,500,000",0,0,0, beds, baths, Toilets,Ikate +21871,C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +21872,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21873,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21874,Newly Built 1 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,1 beds,2 baths,2 Toilets,Lekki Phase 1 +21875,Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21876,Newly Built 3 Bedroom Apartment With Bq,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21877,Newly Built 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +21878,Newly Built 3 Bedroom Smart Maisonette With Bq In A Serene Environment,Ambiance Heights Off The Regional Road Which Is Off The Freedom Way In Lekki. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21879,Newly Built 2 Bedroom Smart Apartment With Bq In A Serene Neighborhood,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +21880,Luxury 6 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,7 Toilets,Ikota +21881,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,6 Toilets,Chevron +21882,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21883,Newly Built 5 Bedroom Fully Detached With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21884,Beautifully Finished Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +21885,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21886,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21887,Newly Built 3 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"57,500,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21888,4 Bed Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21889,Newly Built 4 Bedroom Terrace Duplex With Bq,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21890,Newly Built 4 Bedroom Fully Detached Duplex Masterpiece With Swimming Pool In A Serena Neighbourhood,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +21891,5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21892,Newly Built 2 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +21893,3 Bedroom Terrace Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"62,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Garden City +21894,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21895,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +21896,Newly Built 2 Bedroom Smart Maisonette With Bq In A Serene Environment,Ambiance Heights Off The Regional Road Which Is Off The Freedom Way In Lekki. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +21897,C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +21898,Newly Built 3 Bedroom Luxury Maisonette With Bq In A Serene Neighborhood,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +21899,C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21900,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +21901,Newly Built 3 Bedroom Smart Apartment In A Serene Neighborhood,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21902,Newly Built 2 Bedroom Smart Apartment In A Serene Environment,Ruby 3 Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ologolo +21903,Water Front C Of O Land,"Just By World Oil Filling Station, Ilasan Ikate Lekki Lagos",₦,"162,500,000",0,0,0, beds, baths, Toilets,Ikate +21904,Newly Built 4 Bedroom Penthouse In A Serena Neighborhood,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21905,Elegantly Finished 5 Bedroom Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0, beds, baths, Toilets,Osapa London +21906,C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +21907,Newly Built 3 Bedroom Penthouse In A Serene Neighborhood,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +21908,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +21909,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,6 baths,6 Toilets,Ikate +21910,4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +21911,Newly Built 2 Bedroom Maisonette In A Serene Environment,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +21912,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21913,Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21914,Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +21915,4 Bedroom Terrace Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +21916,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +21917,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21918,Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +21919,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21920,C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +21921,Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21922,Decently Finished Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +21923,4 Bedroom Fully Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21924,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21925,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21926,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21927,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21928,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21929,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21930,Newly Built 3 Bedroom Smart Apartment With Bq In A Serene Neighborhood,"Mufasa Lifestyle Ikate Elegunshi, Lekki Ikate Lekki Lagos",₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +21931,C Of O Dry Land,Cowrie Creek Estate Off Spar Road Ikate Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Ikate +21932,Newly Built 5 Bedroom Smart Fully Detached Duplex With Bq In A Serene Environment,Pantheon Smart Homes Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +21933,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +21934,Newly Built 2 Bedroom Smart Residential Apartment With Bq In A Serena Neighborhood,"Mufasa Lifestyle Ikate Elegunshi, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +21935,C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21936,C Of O Dry Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +21937,Newly Built 1 Bedroom Studio Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,1 beds,2 baths,2 Toilets,Lekki Phase 1 +21938,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21939,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21940,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +21941,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +21942,Newly Built 4 Bedroom Luxury Maisonette With Bq In A Serena Neighborhood,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +21943,C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Other Lekki +21944,Plots Of Lands In Ibeju Lekki,Ikota Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21945,Secured Land With Governor's Consent At Ikota Gra,Ikota Gra Honey Dew Court Estate Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +21946,Newly Built 2 Bedroom Mansionette With A One Room Boy’s Quarter,"Experience (horizon) Estate, Ikate, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +21947,Ongoing Development,Carrie's Court Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +21948,Newly Built 4 Bedroom Fully Detached Duplex,Harris Drive Before North West Filling Station Vgc Lekki Lagos,₦,"90,000,000/year",1,1,0,4 beds,5 baths,6 Toilets,Victoria Garden City +21949,3 Bedroom Flat / Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +21950,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21951,4bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +21952,Governor Consent,Ikate Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikate +21953,Fully Serviced Alluring 4 Bed Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +21954,5 Bedroom Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets,Agungi +21955,A One Bedroom Maisonette,Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +21956,Well Finished 4 Bedroom Detached House With Large Compound,Oniru Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21957,Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Agungi +21958,"Four Units Of Three Bedroom Flats, Mini Flats, Three Units Of Selfcon",Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +21959,5 Bed Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21960,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21961,A Contemporary Furnished 5 Bedroom Fully Detached Mansion,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +21962,Governor Consent,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +21963,2 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +21964,"Distress Sale 4 Bedroom Detached House In Chevron, Semi Detached, Fully Furnished With Two Cars",Chevron Lekki Lagos,₦,"100,000,000",0,0,1,0 beds,0 baths,0 Toilets,Chevron +21965,4 Bedrooms Terraced House With One Room Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +21966,Decently Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +21967,Three Bedroom Terrace House With Bq.,Lekki Lagos,₦,"69,800,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +21968,Governor Consent,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +21969,Governor Consent,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +21970,4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +21971,4 Bedroom Massionette,Oniru Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +21972,Off Plan Sales For 2 Bedroom With Bq,Oceanbay Estate Chevron Lekki Lagos,₦,"37,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +21973,Governor Consent,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +21974,Super Beautiful 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets,Agungi +21975,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +21976,A Four Bedroom Terrace Duplex With Bq,Ologolo Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +21977,Magnificent Decently Finished 5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +21978,Six Units Of 3 Bedroom Flat,Before Vgc Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +21979,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +21980,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +21981,Governor Consent,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +21982,Governor Consent,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +21983,Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +21984,3 Bedroom Apartment Pent House,Freedom Way Camberwall Advantage Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +21985,Newly Built 2 Bedroom Apartment In A Serene Environment At Lekki Phase 1,Freedom Way Camberwall Advantage Phase 4 Lekki Lekki Lagos,₦,"6,000,000/day",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +21986,7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +21987,Fully Serviced 4 Bedroom Duplex House With Swimming Pool,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +21988,Newly Built 4 Bedroom Massionate,Orchid Road Dunvalecourtv Estate Chevron Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,4 baths,4 Toilets,Chevron +21989,3 Bedroom Terraces At Orchid Road,Dunvalecourtv Estate Chevron Lekki Lagos,₦,"45,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Chevron +21990,Newly Built 3 Bedroom Massionate At Orchid Road,Orchid Road Dunvalecourtv Estate Chevron Lekki Lagos,₦,"45,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Chevron +21991,Newly Built 2 Bedroom Apartment At Orchid Road,De Castlemax Estate Lafiaji Chevron Lekki Lagos,₦,"35,000,000/day",0,0,1,2 beds,2 baths,2 Toilets,Chevron +21992,1 Bedroom Apartment,Orchid Road De Castlemax Apartment Lafiaji Chevron Lekki Lagos,₦,"20,000,000/day",0,0,1,1 beds,1 baths,1 Toilets,Chevron +21993,Newly Built 4 Bedroom Massionate With Bq,Bloom Haven Estate Ikate Lekki Lagos,₦,"83,000,000/day",0,0,1,4 beds,4 baths,4 Toilets,Ikate +21994,Newly Built 3 Bedroom Pent House With Bq,Bloom Haven Estate Ikate Lekki Lagos,₦,"83,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Ikate +21995,2 Bedroom Pent House,Bloom Haven Estate Ikate Lekki Lagos,₦,"63,000,000/day",0,0,1,2 beds,2 baths,2 Toilets,Ikate +21996,Newly Built 1 Bedroom Maisonette,Bloom Haven Estate Ikate Ikate Lekki Lagos,₦,"43,000,000",0,0,1,1 beds,1 baths,1 Toilets,Ikate +21997,Newly Built 1 Bedroom Studio Apartment At Ikate,Bloom Haven Estate Ikate Ikate Lekki Lagos,₦,"38,000,000/day",0,0,1,1 beds,1 baths,1 Toilets,Ikate +21998,Detached Five Bedroom House,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +21999,Luxury 2bedroom Apartment,"Olusesi, Chevron Extension Lekki Lagos",₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22000,4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22001,5bedroom Detached Duplex Nicon Town Lekki,Nicon Town Zone C Nicon Town Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22002,Superb 2bedroom Flat,Chevron Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,2 baths,3 Toilets,Chevron +22003,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,0 beds,6 baths,5 Toilets,Lekki Phase 1 +22004,Newly Built 5bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22005,Half Completed 4 Bedroom Duplex,Amazing Amen Estate Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +22006,Newly Built 4bedroom Duplex With Bq,Good Best Street Location In Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +22007,5bedroom Duplex,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22008,Newly Built 5bedroom Detached Duplex In Lekki,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22009,Newly Built Superb 5bedroom Duplex,Chevron Estate Street Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22010,Newly Built 5bedroom Duplex With Bq And Swimming Pool Lekki,Inside A Gated Residential Estate Osapa Lekki Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +22011,Detached 5 Bedroom Duplex In Ikota Lekki,In Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22012,Superb Newly Built Duplex In Lekki Phase One,Inside A Gated Residential Estate In Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22013,Newly Built 4bedroom Duplex With Bq,In A Gated Residential Estate In Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22014,Superb 4 Bedroom Terrace Duplex,Ologolo Ikate Lekki Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +22015,Newly Built Superb 4bedroom Duplex,Residential Gated Ikota Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22016,2bedroom Luxury Apartment,Residential Estate Beside Mercedes Benz Lekki Right Ikate Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +22017,Three (3) Bedroom Flat With A Bq,Primewatergarden Ii Estate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,2 baths,3 Toilets,Ikate +22018,Detached Duplex Of 5bedroom House In Ikota Lekki Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22019,Newly Built 5bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22020,Newly Built 4bedroom Duplex With Bq,Off Chevron Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22021,2bedroom Luxury Apartment,Superb Residential Estate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +22022,3 Bedroom Apartment,Inside Pinnock Estate Ikate Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +22023,Newly Built 5bedroom Fully Detached Duplex With Bq,In A Gated Mini Estate Inside Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22024,Newly Built Spacious Compound 5bedroom Duplex With Bq,Chevrin Estate Street Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22025,5bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22026,3 Bedroom Flat With Bq,Superb Location Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +22027,5 Bedroom Detached Duplex House With Certificate Of Occupancy,University Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22028,Newly Built 5bedroom Detached House,Off Almiralty Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22029,4bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +22030,Joint Venture 900sqm Corner Piece Bare Land Ilasan Lekki,Interlocked Paved Residential Street Ilasan Lekki Lagos,₦,"130,000,000/year",0,0,0, beds, baths, Toilets,Other Lekki +22031,Superb 8 Bedroom House In Vgc Lekki,Best Street In Victoria Garden City Lekki Vgc Lekki Lagos,₦,"700,000,000",0,0,0,8 beds,8 baths,9 Toilets,Victoria Garden City +22032,Newly Built 4bedroom Semi Detached Duplex Osapa Estate Lekki,Off Circle Mall Way Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22033,"Two (2) Bedrooms Flat In Novabase Apartment, Lekki Phase 1",Novabase Apartment Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +22034,Newly Built 4bedroom Duplex,Off Circle Mall Road Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22035,Distressed Sale Of 4bedroom Duplex,Inside A Residential Gated Estate On Orchid Road Lekki Ikota Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +22036,"Distressed Sale Superb 4, Bedrooms Duplex With Bq",A Superb Estate Compound Inside A Gated Estate In Agungi Lekki Agungi Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +22037,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +22038,3 Bedroom Terrace Duplex,"Bogije, Ibeju Lekki Richland Estate Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22039,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22040,1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds, baths, Toilets,Ologolo +22041,4 Bedroom Terrace + Bq,"Godmade Connect Court 4, Off Freedom Way Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22042,5 Bedroom Fully Detached Duplex With 2 Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22043,3 Bedroom Apartment,"Abijo,behind Oando Fuel Station Off Lekki Epe Expressway Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22044,A Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +22045,3 Bedrooms Maisonette,Freedom Way Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22046,Luxury Built 5 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +22047,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +22048,A Massive 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +22049,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +22050,A Lovely 4 Bedroom Terrace Duplex With Self Compound And A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +22051,4 Bedroom Duplex With Government Consent In A Beautiful Location,"Abijo, Abijo Gra Lekki Lagos",₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +22052,4 Bedroom Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22053,A Brand 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +22054,A Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekky County Homes Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +22055,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +22056,An Exquisitely Finished 5 Bedroom Fully Detached Fully Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +22057,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22058,3 Bedroom Terrace Duplex With C Of O In A Serene Environment,Abijo Gra Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22059,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +22060,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22061,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +22062,A Brand New 5 Bedroom Fully Detached Duplex With Bq,"Megamond Estate Lekky County Homes, Lekki Lagos. Just About 1 Minute Drive From Chevron Ikota Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +22063,A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +22064,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22065,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22066,An Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22067,A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22068,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +22069,A Luxurious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +22070,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +22071,Newly Built Luxury 5bedroom Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22072,A Lovely 3 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +22073,2 Bedroom Apartment With Governor's Consent In A Good Location,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds, baths, Toilets,Ikate +22074,2 Bedroom Terrace Duplex With C Of O In A Beautiful Location,"Abijo,gra By Chois Garden Estate Lekki Lagos",₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22075,A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22076,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +22077,"An Automated Unconventional 5 Bed Detached House With Swimming Pool, Cinema, Gym And 2 Bqs",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +22078,A Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +22079,A Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +22080,A Ovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +22081,4 Bedroom Duplex In A Beautiful Location,Opposite Ocean Bay Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Chevron +22082,Luxury 2 Bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets,Ikate +22083,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,"Ologolo, Jakande Axis Ologolo Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22084,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +22085,Newly Built 3bedroom Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +22086,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +22087,Newly Built Luxury 5bedroom Duplex With Swimming Gym And Two Room Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22088,A Lovely 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22089,5 Bedroom Semi Detached Duplex,"Bonavista Estate, Orchids Road Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22090,2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +22091,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22092,An Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22093,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +22094,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22095,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22096,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +22097,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +22098,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +22099,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +22100,Lovely 3 Bedroom Apartments,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,2 baths,3 Toilets,Ikate +22101,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22102,6 Units Of 4 Bedroom Terraced Houses With 12 Room Bq Bungalow,By Waterside Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +22103,600 Sqm Of Land With C Of O In A Good Location,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22104,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22105,450 Sqm Land With C Of O In A Beautiful Location,"Abijo, Abijo Gra Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +22106,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +22107,Spacious 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22108,A Lovely 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22109,4 Bedrooms Semi Detached Duplex With A Room Bq,"Mege Chicken, Ikota Villa Ikota Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22110,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22111,A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22112,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +22113,A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22114,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +22115,A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +22116,A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +22117,3 Bedroom Semi Detached Duplex With C Of O In A Good Location,"Abijo, Gra Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22118,A 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +22119,3 Bedroom Apartment,"Off Freedom Way, Godmade Connect Court 4 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +22120,Newly Built 5bedroom Luxury Duplex,In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1, beds,5 baths,6 Toilets,Lekki Phase 1 +22121,A Lovely 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +22122,A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22123,A Luxury Three Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +22124,"The Amusa 7 Estate Is Water Front Estate Which Comprises Of 24 Units Of 4 Bedroom Terraces, 4 Units Of 3bedroom Flats And 8 Units Of 2bedroom Flats",Ladipo Latiwo Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +22125,4 Bedroom Fully Detached With Bq,"Abijo,sunday Ejiofor Street, Green Park Scheme Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22126,A Lovely 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +22127,A Top Notch Finished 5 Bedrooms Fully Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +22128,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +22129,An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22130,4 Bedroom Semi Detached Duplex Home With A Bq,2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22131,Fully Serviced 4 Bedroom Duplex House With Swimming Pool,Chevron Lekki Lagos,$,"100,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22132,Newly Built 4 Bedroom Semi Detached Duplex House With A Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22133,Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22134,Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22135,Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22136,2700sqm Cbd Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +22137,650sqm Prime Land,Alpha Beach Rd Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Lekki +22138,Luxurious 2bedroom Apartment,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +22139,3bedroom Luxury Apartment,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +22140,600sqm Premium Land,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Chevron +22141,Outstanding 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22142,2bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +22143,420sqm Prime Land,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets,Other Lekki +22144,5bed Spacious Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +22145,New 3bedroom Terrace Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +22146,4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +22147,4bedroom Detached Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +22148,4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +22149,5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +22150,5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +22151,Newly Built 3 Bedroom Semi Detached With Governor's Consent,Orchid Road Dunvalecourtv Estate Chevron Drive Chevron Lekki Lagos,₦,"50,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Chevron +22152,5 Bedroom Detached House On Two Levels,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +22153,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22154,Brand New 4 Bedroom Semi Detached Duplex With B,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22155,Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22156,5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22157,4 Bedroom Semi Detached Duplex Home With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22158,5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +22159,5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +22160,4bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +22161,Newly Built 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +22162,Brand New Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22163,930sqm Cornerpiece Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +22164,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22165,Brand New 5bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22166,4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +22167,New 3 Bedroom Apartment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +22168,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22169,1424sqm Prime Land,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Lekki +22170,3bedroom Terrace Duplex,Ajiran Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +22171,5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +22172,5bedroom Smart House,Off Kunsela Road Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +22173,4bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +22174,1bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets,Ikate +22175,4bedroom Smart Detached Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +22176,4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22177,5bedroom Detached Duplex,Kunsela Rd Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +22178,4bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22179,2bedroom Penthouse Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets,Osapa London +22180,Brand New Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,7 baths,7 Toilets,Victoria Garden City +22181,Beautiful 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki,Osapa London Lekki Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +22182,3bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +22183,Luxury Built 4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +22184,1150sqm Cbd Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +22185,5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +22186,Luxury 5 Bedroom Duplex With Bq,Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,7 baths, Toilets,Other Lekki +22187,Newly Built 4bedroom Semi Detached Duplex,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ologolo +22188,Newly Built 1 Bedroom Apartment,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"30,000,000",0,1,0,1 beds,0 baths,0 Toilets,Ologolo +22189,Brand New 2bedroom Flat,Off Enyo Filling Station Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +22190,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22191,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22192,Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22193,Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22194,4bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22195,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22196,Magnificent 5bedroom Edifice With Swimming Pool And Open Terrace,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +22197,Brand New Semi Detached 4bedroom Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Agungi +22198,"Kingly Finished 5bedroom, Fully Furnished Duplex With 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets,Lekki Phase 1 +22199,Distressed Semi Detach 4bedroom Duplex With All Furniture,Lekki County Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +22200,Modern And Well Functional 4 Bedroom Semi Detached Duplex + Bq,"Ikota Gra, Ikota Villa Estate Lekki Phase 1 Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +22201,Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,By Second Tallget Ikota Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22202,Affordable Spacious 4bedrooms Fully Detached Duplex With A Bq,Conservation Senter Ikota Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +22203,Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Second Tallget Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +22204,Standard Newly Built 4bedrooms Terrace Duplex,Second Tallget Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +22205,Spacious Affordable Luxury 3 Bedroom Terrace Duplex,Lekki Gardens Phase 2 Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 2 +22206,Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"165,000,000",1,0,1,5 beds,6 baths,6 Toilets,Osapa London +22207,Newly Built Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +22208,Newly Built Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets,Ikota +22209,Newly Built Spacious 4bedrooms Terrace Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +22210,Newly Built Spacious 5 Bedrooms Fully Detached Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +22211,Newly Built Spacious 3bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"37,000,000/month",1,1,1,3 beds,4 baths,4 Toilets,Victoria Garden City +22212,Newly Built 5bedrooms Luxury Fully Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"78,000,000/sqm",1,1,1, beds, baths, Toilets,Lekki Phase 2 +22213,Newly Built Beautiful Standard 5bedrooms Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +22214,Fully Detached 5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22215,Newly Built Spacious 4bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +22216,5bedrooms Luxury Standard Fully Detached Duplex,Conservation Chevron Lekki Lagos,₦,"68,000,000/year",1,1,1,5 beds,6 baths,6 Toilets,Chevron +22217,Beautiful Standard 4 Bedrooms Terrace Duplex With A Bq,By Second Tallget Ikota Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +22218,Newly Built Spacious 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +22219,Newly Built Spacious 5bedrooms Fully Detached Duplex With Swimming Pool,Second Tallget Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22220,Newly Built Beautiful Standard 5 Bedrooms Fully Detached Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +22221,Newly Built Spacious 4 Bedrooms Fully Detached Duplex With A Bq,Chevron Ikota Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +22222,Newly Built Spacious 4bedrooms Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +22223,Newly Built Beautiful And Unique 4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"58,000,000/year",1,1,1,4 beds,5 baths,5 Toilets,Chevron +22224,Newly Built Standard 5bedrooms Luxury Duplex,Chevron Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22225,Newly Built Spacious 4bedrooms Semi Detached Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +22226,Newly Built Affordable Luxury Apartments,Phase 1 Ikate Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +22227,4bedrooms Semi Detached Duplex With A Room Bq,Ajah Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +22228,Beautiful Spacious 5bedrooms Fully Detached Duplex With Penthouse,Lekki Phase 1 Ikate Lekki Lagos,₦,"280,000,000",1,1,1, beds, baths, Toilets,Ikate +22229,Luxury Affordable 5bedroom Detached Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +22230,Newly Built Spacious 5bedrooms Fully Detached Duplex With Swimming Pool,Ajah Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +22231,Newly Built Luxury Standard 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +22232,Newly Built Spacious 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +22233,Newly Built Standard 4bedrooms Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +22234,4 Bedroom Semi Detached Duplex + Bq,Orchid Hotel Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +22235,Luxury Standard 3 Bedroom Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Lekki +22236,Newly Built Beautiful Standard 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +22237,Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,Second Tallget Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +22238,Standard 5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22239,Newly Built Beautiful Standard 5bedrooms Fully Detached Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +22240,Newly Built 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +22241,Newly Built Beautiful 4bedroom Terrace Duplex With Affordable Price,Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds, baths, Toilets,Ikota +22242,Distress Sales 4bedrooms Luxury Terrace Duplex,Second Tallget Ikota Lekki Lagos,₦,"52,000,000/month",1,1,1,4 beds,5 baths,5 Toilets,Ikota +22243,"Dry Land In A Serviced, Serene And Secured Estate",Victory Park Estate Osapa London Lekki Lagos,₦,"244,444/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +22244,"Lekki Top Luxury Duplex With Pool, Cinema And Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22245,Luxury 4 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22246,Luxury 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22247,N185m Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +22248,Newly Built 4 Bedroom Semidetached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22249,Newly Built Serviced 2 Bedroom Flat,Ikota Gra Estate Ikota Lekki Lagos,₦,"28,000,000",1,1,1,2 beds, baths,3 Toilets,Ikota +22250,Newly Built 4 Bedroom Semidetached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22251,Luxury 5 Bedroom Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22252,Newly Built 4 Bedroom Semidetached,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22253,Newly Built 4 Bedroom Terraced Duplex, Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +22254,Newly Built 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22255,4 Units Of 4 Bedroom Semidetached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22256,For Sale 5 Bedroom Fully Detach House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22257,Newly Built Serviced 3 Bedroom Apartment,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",1,1,1, beds,3 baths,4 Toilets,Ikota +22258,Glamcourt Ii,Ibeji Close Agungi Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +22259,Newly Built 3 Bedroom Terrace Duplex,Romax Homes Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +22260,Newly Built 2 And 3 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"42,500,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +22261,Luxury 4bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22262,Upscale Urban 4 B/r Maisonette,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +22263,Newly Built 4 Bedroom Semidetached Duplex,Marwa Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22264,Newly Built 3 Bedroom Block Of Apartments,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +22265,Luxury 5 Bedroom House With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +22266,Newly Built 4 Bedroom Terrace Duplex,"Osapa London ,lekki Osapa London Lekki Lagos",₦,"70,000,000",1,1,0,4 beds, baths,5 Toilets,Osapa London +22267,Newly Built 5 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22268,Luxury 5 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22269,5bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22270,1000sqm Facing Express,Osapa London Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +22271,Newly Built 4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22272,Spacious Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +22273,Prime Land Measuring 1300sq/m In A Serene Neighborhood,Lekki Rhs By Petrocam Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22274,Newly Built Palatial 6 Bedroom Detached Duplex With Bq,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +22275,4 Bedroom Semidetached,Alternative Route Chevron Lekki Lagos,₦,"70,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Chevron +22276,4bedroom Super Luxury Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +22277,4bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +22278,5bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +22279,Newly Built 4 Bedroom Semidetached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22280,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +22281,Newly Built 4 Bedroom Semidetached Duplex,Orchid Road Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22282,Newly Built 4 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +22283,Contemporary 4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22284,Spacious Studio Apartment,Lekki Horizon 2 Ikate Lekki Lagos,₦,"18,000,000",1,0,1,1 beds,1 baths,1 Toilets,Ikate +22285,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Lekki Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +22286,Tastefully Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +22287,4 Bedroom Duplex,Beach View Estate Igbo Efon Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +22288,Luxury 4 Bedroom Semidetached Duplex,Chevron Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22289,Newly Built & Tastefully Finished 3 Bedroom Serviced Apartment,Oral Estate Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +22290,Luxury 5 Bedroom Detached Duplex With 2 Bqs,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths,6 Toilets,Lekki Phase 1 +22291,4 Bedroom Smart Terrace,"Ikota Road 16, Lekki County, Lekki Lagos Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +22292,"5bedrooms Fully Detached Duplex With Pool, Cinema & Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +22293,4 Bedroom Fully Detached With One Bq,"Buena Vista Estate, Oricid Road Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +22294,Newly Built 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22295,Newly Built 4 Bedroom Semidetached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22296,Alluring 2 Bedroom Flat With Fitted Kitchen,Off Kusenla Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +22297,4 Bedroom Terrace’s Duplex For Sale (atlantic View City),Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22298,Newly Built 2 Units Of 5 Bedroom Semidetached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22299,Terrace House,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +22300,4 Bedroom Semi Detached Duplex Home With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22301,Land For Sale,"Orchid Road, Close To Victoria Crest 4 Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +22302,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22303,5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22304,Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22305,Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22306,5 Bedroom Fully Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22307,Land,"Orchid Road, Close To Victoria Crest 4 Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +22308,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"6,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22309,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22310,4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22311,4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22312,4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22313,5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22314,4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"128,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +22315,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22316,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +22317,5 Bedroom Fully Detached,"Lekki Phase1, Lekki Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22318,3 Bedroom Apartment With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Lekki +22319,5 Bedroom Fully Detached Duplex,"Lekky County, Lekki Ikota Lekki Lagos",₦,"350,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22320,5 Bedroom Fully Detached Duplex With Bq,"Ikota, Lekki Ikota Lekki Lagos",₦,"180,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +22321,4bedroom Terrace House,"Orchid Road, Lagos Ikate Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22322,4bedroom Terrace Property,2nd Toll Gate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +22323,5 Bedroom Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Agungi +22324,5 Bedroom Terraces Duplex With A Room Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +22325,Available Land,Idado Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22326,4 Bedroom Detached Duplex With 1room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22327,4 Bedrooms Semi Detached Duplex With Bq.,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22328,Well Built Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22329,5 Bedroom Detached Duplex,Victory Park Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22330,2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +22331,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22332,Well Built 3 Bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +22333,5 Bedroom Fully Detached Duplex With Boys Quarter & Pool.,Megamound Estate. Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +22334,Apartments,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22335,5 Bedroom Fully Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22336,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22337,3 Bedroom Penthouse Apartment + Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +22338,Super Luxury 5 Bedroom Contemporary Fully Detached Duplex With Swimming Pool, Ologolo Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ologolo +22339,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +22340,Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22341,Magnificent Decently Finished 5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +22342,3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikate +22343,4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +22344,Decently Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +22345,2 Bedroom Terrace & 4 Bedroom Duplexes,Orchid Road Jakande Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +22346,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +22347,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +22348,Mufasa Luxury Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +22349,"Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +22350,Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +22351,"*exquisite 2 Bedroom & 3 Bedroom Apartments Ikate, Lekki.*",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +22352,2 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +22353,Exquisitely Spacious 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +22354,Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +22355,Decently Spaced 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +22356,Spacious 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +22357,4 Bedroom Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +22358,Massively Spacious Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +22359,Verified Land With Instant Allocation In Whales County Estate Orchid,Whales County Beside Victoria Crest 4 Lekki Phase 2 Lekki Lagos,₦,"45,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22360,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +22361,4 Bedroom Terraces Castle Plus Bq,"De Castle Max, Orchid Road Lafiaji, Directly Opposite Cooplag Gardens Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +22362,Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets,Agungi +22363,Contemporary 5 Bedroom Fully Detached Duplex In A Gated Estate, Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +22364,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikate +22365,Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +22366,Spacious Decently Finished 5 Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +22367,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +22368,4 Bedroom Fully Detached Castle Duplex + Bq,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22369,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ologolo +22370,Brand New 4bedroom Semi Detached Duplex With A Bq,"Second Toll Gate, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +22371,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,4 baths,6 Toilets,Other Lekki +22372,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22373,4 Bedroom Semi Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22374,5 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,4 Toilets,Ikate +22375,Lovely Spacious 4bedroom Terrace With Governor Consent,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"70,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +22376,5bedrooms Fully Detached Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22377,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22378,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22379,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22380,5 Bedroom Fully Detached Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22381,4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22382,5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22383,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22384,"1,2 And 3 Bedroom Fully Serviced Apartment",Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22385,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22386,Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Right In A Secured Area Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22387,4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"70,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +22388,Absolutely Value Centric 3 Bedroom Flat,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +22389,Fully Automated Lekki Luxury Detatched Duplex,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +22390,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22391,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22392,5 Bedroom Luxury Fully Detatched Duplex With Pool & Bq For Sale,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22393,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22394,5 Bedroom Smart Home Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22395,Stunning 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +22396,5 Bedroom Fully Detached House + Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +22397,5bedrooms Fully Detached Duplex With Bq,Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22398,5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +22399,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22400,Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22401,5bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +22402,5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22403,3bedroom Flat,Spg Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ologolo +22404,5 Bedroom Fully Detached Duplex + A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22405,*n48m Spacious Lekki Terraces With Bq For Sale,No 3 Orchid Road Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22406,4 Bedroom Terraces Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +22407,Land,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22408,5bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22409,4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +22410,4 Bedroom Maisonette And 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +22411,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22412,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22413,4bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22414,Lovely Spacious 4bedroom Terrace With Governor Consent,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"70,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +22415,4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22416,5bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22417,4bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22418,5 Bedroom Spacious Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths, Toilets,Agungi +22419,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +22420,Brand New 4 Bedroom Fully Detached House,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22421,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22422,5bedrooms Fully Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22423,5 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22424,Land,Ologolo Lekki Express Road Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +22425,"5 Bedroom Semi Detached Duplex In Oral Estate, Lekki",Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +22426,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22427,4 Bedroom Fully Detached Duplex And A Room Bq,2nd Tollgate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22428,5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22429,Dry Land,No2 Balle Street Ologolo Lekki Lagos,₦,"60,000,000/day",0,0,0,1 beds,0 baths,0 Toilets,Ologolo +22430,4bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +22431,Block Of Flats,Lekki Gardens Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets,Chevron +22432,2bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +22433,Newly Built 3 Bedroom Apartment,Orchid Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +22434,Newly Built 5 Bedroom Luxury Fully Detatched Duplex With Class,Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22435,4 Bedrooms Luxury Terrace For Sale! .,No 36 Osapa London Estate Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +22436,4 Bedroom Smart Terrace Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22437,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22438,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22439,Land,World Oil Ilasan Lekki Lagos,₦,"100,000,000/day",0,0,0, beds, baths, Toilets,Other Lekki +22440,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +22441,4bedrooms Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +22442,5bedrooms Fully Detached Duplex With Bq,Chevron Axis Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22443,Brand New Spacious 5 Bedroom Contemporary Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"165,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikate +22444,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22445,4 Bedroom Apartment And 1 Room Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +22446,Land,Chervon Chevron Lekki Lagos,₦,"45,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22447,5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22448,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22449,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22450,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +22451,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22452,4 Bedroom Terrace Duplex,Close Proximity To Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22453,4 Bedroom Fully Detached Duplex With A Room Bq,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22454,4bedrooms Luxury Terrace,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22455,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22456,Brand New 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22457,3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22458,5 Bedroom Detached Duplex And 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +22459,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22460,5 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22461,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22462,Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22463,3 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +22464,4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22465,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22466,5 Bedroom Duplex And 1 Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +22467,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22468,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22469,5 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22470,Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22471,6 Bedroom Duplex And 3bedrooms Flat,Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +22472,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22473,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22474,4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22475,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22476,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22477,5bedroom Detached Duplex With Bq,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22478,4 Bedroom Semi Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +22479,3 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +22480,5 Bedroom Detached Duplex And 1 Bq Smart House,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22481,4 Bedroom Terrace Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +22482,5bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22483,5bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22484,4 Bedroom Terrace Duplex With 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +22485,2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +22486,"5 Bedroom Detached Duplex, 3bedroom Flat Maisonette And 1bq",Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22487,5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22488,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22489,5 Bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22490,4 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +22491,4 Bedroom Detached Duplex And 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +22492,5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22493,4 Bedroom Maisonette Duplex,Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22494,5 Bedroom Detached Duplex With 1 Bq,Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22495,4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Lekki Lagos",₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22496,5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22497,4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +22498,4 Bedrooms Semi Detached Duplex4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22499,4 Bedroom Detached Duplex,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +22500,4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22501,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22502,4 Bedroom Semi Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22503,5 Bedroom Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22504,4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22505,Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"295,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22506,5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22507,4 Bedroom Detached Duplex,Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22508,4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22509,5 Bedroom Detached Duplex And 1 Bq Smart House,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22510,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +22511,5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22512,4 Bedroom Detached Duplex,Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22513,4 Bedroom Semi Detached Duplex And 1 Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22514,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22515,5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22516,4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22517,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22518,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +22519,5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22520,Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22521,4 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22522,5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22523,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22524,4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22525,4 Bedroom Terrace Duplex And A Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +22526,5 Bedroom Duplex And 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +22527,4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22528,5 Bedroom Detached Duplex And A Bq,Oral Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22529,4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +22530,Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22531,4 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +22532,5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22533,Luxury 5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22534,4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22535,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22536,5 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22537,4 Bedroom Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22538,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22539,5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22540,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22541,4 Bedroom Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22542,5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22543,4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22544,4 Bedrooms Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22545,5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22546,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22547,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22548,Well Furnished 5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22549,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22550,4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22551,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22552,3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +22553,5 Bedroom Fully Detached House,Lekki County Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22554,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22555,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22556,4 Bedroom Semi Detached Duplex And 1bq,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22557,5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22558,4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22559,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22560,Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22561,4 Bedroom Semi Detached Duplex And 1 Bq,Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22562,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22563,5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22564,4 Bedroom Semi Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +22565,4 Bedroom Short Fence Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22566,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22567,4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22568,5 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +22569,4 Bedroom Terrace Duplex And 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +22570,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +22571,4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +22572,4 Bedroom Semi Detached Duplex And 2 Bedroom Flat Serviced Quarter,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22573,4 Bedroom Semi Detached Duplex And 1 Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22574,4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22575,5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +22576,5 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +22577,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +22578,Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22579,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +22580,4 Bedroom Maisonette Duplex,Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22581,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +22582,4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +22583,4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +22584,Verified And Well Secured Land In A Reserved Location,Elegushi Ilasan Ikate Lekki Lagos,₦,"162,000,000/day",0,0,0, beds, baths, Toilets,Ikate +22585,Estate Land,Confund Initiative Vgc Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +22586,2bedroom Masionnette Duplex,Freedom Way Lekki Lagos Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +22587,Newly Built 4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22588,Land,Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +22589,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22590,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22591,5 Bed Magnificent Edifice With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +22592,Brand New Well Furnished 4 Bedrooms Duplex With Bq,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +22593,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22594,5 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22595,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22596,Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22597,6 Units Of Finished 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22598,Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22599,Spacious 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22600,Available Land,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22601,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22602,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22603,600sqm Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22604,600 Sqm Land,"Alatishe, Lekki, Lagos Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22605,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22606,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22607,Newly Completed And Tastefully Finished Duplexes,Lekki Phase 2 Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +22608,4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22609,5 Bedroom Super Luxury Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22610,Lavishly Finished 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22611,Nicon Hotel,Nicon Town Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22612,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22613,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22614,2 Bedroom Maisonette + Bq,Off The Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22615,Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22616,Variants Of Duplexes Available,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22617,5 Bedroom Super Luxury Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22618,3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22619,2 Bedroom Penthouse,Behind Onike Art Gallery Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22620,A Block Of 6 Flats With Bq For Each Flat,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22621,2 Bedroom Maisonette,"Atlantic Layout Estate, Abraham Adesanya Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22622,3 Bedroom Terrace Duplex With Bq,"Jed's Court, By Lagos Business School Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +22623,4 Bedroom Semi Detached Duplex + Bq,Vella Homes Off Chevron Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22624,4 Bedroom Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22625,Contemporary 4 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22626,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22627,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22628,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +22629,4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22630,Spacious 5 Bedroom Fully Detached Contemporary House With Rooms Boys' Quarters,Lakeview Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22631,Luxury Finished 5 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22632,Newly Built 4 Bedroom Terraces In A Sophisticated Location,Orchid Road De Castlemax Chevron Coperative Estate Lekki Lagos,₦,"55,000,000/day",0,0,1, beds, baths, Toilets,Other Lekki +22633,Beautiful 2 Bedroom Maisonette Duplex,Chisco Bus Stop Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +22634,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +22635,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22636,Decent 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +22637,4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22638,Exotically Finished 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22639,Finished Modern 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22640,3bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22641,2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +22642,2 Bedroom Maisonette + Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22643,Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22644,Super Decent 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +22645,Finished 4 Bed Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +22646,Contemporary 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22647,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22648,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22649,Contemporary 5 Bedroom White House With A Swimming Pool,Oral Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22650,4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22651,Water Front Estate With Certificate Of Occupancy (paradise Foreshore Estate),Vgc Water Front Vgc Lekki Lagos,₦,"40,000,000/day",0,0,0, beds, baths, Toilets,Victoria Garden City +22652,2 Bedroom Maisonette + Bq,Off Freedom Way Lekki Lagos,₦,"75,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +22653,2 Bedroom Apartment + Bq,Elegunsi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +22654,Newly Built 5bedroom,Behind Elevation Church Ilasan Lekki Lagos,₦,"110,000,000/year",0,1,0,5 beds,7 baths,7 Toilets,Other Lekki +22655,Newly Built 5bedroom Semi Detached Duplex,Ilasan/jakande/elevation Church Ilasan Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +22656,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22657,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,4 Toilets,Ikota +22658,Newly Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +22659,Well Spaced 4 Bedroom Terrace Duplex,Along Orchid Road Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22660,Exquisitely Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22661,Land,Twin Lakes Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22662,Luxurious 4 Bedroom Semi Detached Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 2 +22663,Newly Built 4 Bedroom Luxury Semi Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds, baths,5 Toilets,Other Lekki +22664,Tastefully Built 5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000/day",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22665,Luxurious 4 Bedroom Terrace Home With Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +22666,Luxurious 5 Bedroom Detached Duplex With Pool,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,0 baths,6 Toilets,Lekki Phase 1 +22667,Newly Built 4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +22668,Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets,Chevron +22669,Newly Built Luxurious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +22670,On Going Project 60% Completed 4 Bedroom Luxury Terrace Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +22671,Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths,6 Toilets,Agungi +22672,Spacious And Luxurious 4 Bedroom Semi Detached Duplex With Bq,This Spacious And Luxurious House Is In Ikate Lekki And The The Title Is Governors Consent. Ikate Lekki Lagos,₦,"155,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22673,Luxurious 5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,6 Toilets,Lekki Phase 1 +22674,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikate +22675,Very Luxurious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +22676,Luxury 4 Bedroom Terrace Duplex,Orchid Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets,Other Lekki +22677,"Fully Automated Luxurious 5 Bedroom Detached Duplex With Pool , Gym & Cinema",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds, baths,6 Toilets,Osapa London +22678,Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 2 +22679,4 Bedroom Detached Duplex With Greenery,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,5 Toilets,Victoria Garden City +22680,Very Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds, baths,5 Toilets,Osapa London +22681,Luxurious 5bedroom Detached Home,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,6 Toilets,Lekki Phase 2 +22682,Luxurious And Tastefully Finished 5 Bedroom Detached House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"260,000,000/day",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22683,Luxury 5 Bedroom Duplex Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets,Osapa London +22684,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,5 Toilets,Osapa London +22685,Newly Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22686,Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22687,Very Spacious 4 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths,5 Toilets,Ikota +22688,4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets,Other Lekki +22689,On Going Project Luxury 5 Units Of 4 Bedroom Duplex With Bq,Dele Adedeji Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +22690,Luxurious 5bedroom Detached Duplex With Pool & Compound Space,Ikota Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets,Lekki Phase 2 +22691,Newly Built Luxury 5 Bedroom Detached Duplex With Ba,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +22692,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,6 Toilets,Ikota +22693,Luxurious 5 Bedroom Detached Duplex With Pool,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds, baths,6 Toilets,Victoria Garden City +22694,Newly Built 3 Bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds, baths,4 Toilets,Ologolo +22695,5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +22696,Luxurious 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,5 Toilets,Ikate +22697,4 Bedroom Townhouse Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +22698,Newly Built 4 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22699,Newly Built 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,5 Toilets,Ikota +22700,Luxurious 5 Bedroom Detached Duplex In A Very Calm Secured Estate,Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds, baths,6 Toilets,Ikota +22701,Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +22702,Luxurious 5 Bedroom Well Finished Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths,5 Toilets,Agungi +22703,World Class Luxurious 5 Bedroom Home,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +22704,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds, baths,5 Toilets,Ikate +22705,Luxury 5 Bedroom Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths,6 Toilets,Other Lekki +22706,4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,5 Toilets,Other Lekki +22707,On Going Project Luxury 5 Units Of 4 Bedroom Duplex With Bq,Dele Adedeji Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +22708,Luxurious 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths,6 Toilets,Osapa London +22709,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,5 Toilets,Agungi +22710,Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds, baths,6 Toilets,Osapa London +22711,Luxury 5 Bedroom Duplex Duplex With Bq,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths,6 Toilets,Other Lekki +22712,Luxury 4 Bedroom Terrace Duplex With Pool,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets,Lekki Phase 2 +22713,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,6 Toilets,Chevron +22714,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,5 Toilets,Chevron +22715,Newly Built 4 Bedroom Semi Detached Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds, baths,5 Toilets,Other Lekki +22716,Land,Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22717,Newly Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +22718,A Unit Of 2021 Tastefully Finished 4 Bedroom Semi Detached Duplex,The House Is In Vgc And With Governors Consent Vgc Lekki Lagos,₦,"180,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +22719,Exquisite Very Classy 4 Bedroom Semi Detached Duplex,Orchid Conservation Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets,Other Lekki +22720,Luxury Well Detailed 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths,5 Toilets,Ikota +22721,Newly Built 4 Bedroom Luxury Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets,Other Lekki +22722,Newly Built 4 Bedroom Duplex With Automated Gate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths,5 Toilets,Chevron +22723,Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +22724,A Furnished 5 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +22725,Luxury Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,0 baths,6 Toilets,Osapa London +22726,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22727,"20 Plots Of Land For Sale At Blue Springs Estate, Abijo","Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"170,000,000",0,1,0, beds, baths, Toilets,Other Lekki +22728,Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +22729,Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22730,Executive 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22731,Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22732,Beautifully Built 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22733,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22734,Newly Built 5 Bedroom Terrace Duplex,"Idado,lekki Idado Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +22735,Contemporary Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22736,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22737,Block Of Flats,Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22738,Modern 5 Bedroom Magnificently Built Fully Detached House With A Room Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22739,5 Bedroom Detached Home,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22740,Contemporary 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22741,Contemporary 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22742,3 Bedroom Flat With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +22743,Executive 5bedroom Fully Detached Duple,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22744,"10,000 Sqm Land Hydraulic Sand Filled And Fenced","Opposite Garamond Autos By The Address Homes, Ilasan Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +22745,4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22746,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22747,4 Bedroom Semi Detached Luxurious Houses,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22748,Brand New Luxury 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +22749,Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22750,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22751,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +22752,4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22753,Magnificent Beautiful Brand New 5 Bedroom Fully Detached Duplex With Bq Room And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +22754,Spacious 5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +22755,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +22756,5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22757,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22758,Executive 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22759,"5 Bedroom Fully Detached Duplex With A Room Bq, Swimming Pool",Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22760,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22761,4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22762,4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22763,Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22764,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"197,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22765,4 Bedroom Terraced Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +22766,Contemporary 5 Bedroom Detached House With Swimming Pool And Boy's Quarter, Agungi Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +22767,Luxuriously Finished 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22768,Well Built 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22769,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22770,Well Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22771,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +22772,Super Detailed Luxury 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22773,This Magnificent Brand New 5bedroom With Bq And Pool Is Up For Sale,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22774,Luxurious And Contemporary 5 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +22775,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +22776,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22777,4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22778,Well Built 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22779,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22780,4 Bedroom Terrace Duplex At Whales County Estate2,"Orchid, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +22781,Executive 5 Bedroom Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22782,Brand New 2 Bedroom Apartments,"Lekki 2nd Tollgate, By Conservation Ceter Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +22783,Luxury 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22784,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22785,4 Bedroom & 5 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +22786,3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"36,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Ikota +22787,4 Bedroom Semi Detached House,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +22788,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22789,16 Brand New 3 & 4 Bedroom Luxury Apartments,Chevron Chevron Lekki Lagos,₦,"420,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +22790,Spacious 4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +22791,Brand New 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22792,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22793,Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22794,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22795,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22796,Stunning Classic 5 Bedroom Fully Detached Duplex With 2 Rooms Bq In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +22797,Newly Built 4 Bedroom Semi Detached Duplex,Crest Villa End Ologolo Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ologolo +22798,Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +22799,Well Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22800,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22801,5 Bedroom Fully Automated Contemporary House,Lekky County Homes Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22802,4 Bedroom Terrace Duplex In Whales County 1 Estate,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +22803,Masterpiece 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22804,Well Finished Luxury 4 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +22805,4 Bedroom Semi Detached Duplex,Second Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22806,4 Bedroom Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22807,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22808,Magnificent Very Nice 2bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +22809,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,2 baths,2 Toilets,Chevron +22810,601sqm Land Available,Ajah Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22811,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22812,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22813,5 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22814,Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22815,Exquisite 5 Bedroom Detached Duplex,"Lekki County, Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22816,4 Bedroom Fully Detached Duplex With Normal Room Size Bq And A Study,"Road 15, Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +22817,Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +22818,Masterpiece 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22819,Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22820,4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22821,Magnificent Very Nice 4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22822,Beautifully Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22823,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22824,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,3 Toilets,Lekki Phase 2 +22825,New Built 34 Units Of 4 Bedroom Terrace Duplexes In A Mini Estate Inside A Secure Environment,"Leon Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +22826,Massive 4bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22827,Lekki Pride,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +22828,Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22829,5 Bedroom Contemporary House,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22830,Magnificently Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22831,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22832,Contemporary 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22833,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +22834,Contemporary 5 Bedroom Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22835,4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22836,5 Bedrooms Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22837,Newly Built 2 Bedroom Apartments,"Off Orchid Road, Lafiaji, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"29,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +22838,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +22839,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22840,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22841,5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22842,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +22843,5 Bedroom Contemporary House, Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22844,4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22845,2 Plots Of Corner Piece Land Fully Sandfilled,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22846,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +22847,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22848,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22849,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22850,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22851,This Magnificent Brand New Very Beautiful Semi Detached Duplex At Oral Estate Is Up For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22852,Tastefully Built Brand New 5 Bedroom Detached House,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +22853,2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +22854,Newly Built 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22855,5 Bedroom Terraced Duplex With A Room Bq,Idado Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22856,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22857,Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22858,5 Bedroom Magnificently Built Fully Detached House With A Room Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22859,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22860,5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +22861,Fully Automated 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22862,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22863,"10,000 Sqm Sand Filled","By Orange Island, Lekki Scheme 1 Lekki Phase 2 Lekki Lagos",₦,"270,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22864,4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Lekki Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22865,Terraced Duplex,Orchid Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +22866,Massively Built 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22867,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22868,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22869,Well Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22870,3 Bedroom Apartment + Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +22871,Excellently Built 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +22872,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +22873,Luxury And Elegant 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22874,Spacious 4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +22875,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22876,3 Bedroom Terrace Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikota +22877,Strip Mall Spaces For Sale At Opposite Vgc,Vgc Lekki Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +22878,2 Bedroom Luxury Flats Off Plan,Orchid Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +22879,Massive 4 Bedroom Semi Detached House,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22880,5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22881,3 Bedroom Apartment,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +22882,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22883,Spacious 2 Bedroom Apartment With Bq,Lekki Lagos,₦,"65,000,000",0,0,1,2 beds,2 baths,3 Toilets,Other Lekki +22884,4 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"63,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Chevron +22885,4 Bedroom Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +22886,Finished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +22887,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22888,A 4 Bedroom Apartment,Ikoyi Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22889,Well Built 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22890,Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22891,"100 Plots For Sale In Blue Springs Estate, Abijo","Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"850,000,000",0,1,0, beds, baths, Toilets,Other Lekki +22892,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22893,Plots Of Land Available For Sale. Title; C Of O. Plots Are Not Far From The Express.,"Beside Royal Gardens Estate, Opposite God Is Good Motors. Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22894,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22895,Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Agungi +22896,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +22897,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22898,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +22899,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +22900,Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22901,Royal Standard 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22902,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22903,4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22904,Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +22905,"Newly Built, Luxury 4 Bedroom Fully Detached Duplex",2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +22906,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22907,4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +22908,Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22909,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +22910,Affordable Lands In Blue Bliss Estate At Abijo,"Abijo, Lekki Lagos Lekki Lagos",₦,"10,500,000",0,0,0, beds, baths, Toilets,Other Lekki +22911,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +22912,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22913,Affordable Tastefully Built Apartment In A Promising Environment,"Mijl Residences And Villas, Ikate, Lekki Ikate Lekki Lagos",₦,"30,000,000/month",0,1,0,1 beds,1 baths,1 Toilets,Ikate +22914,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22915,5 Bedroom Detached Home,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22916,3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +22917,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22918,Luxuriously Finished And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +22919,Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22920,Fully Serviced 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +22921,Brand New And Luxury 5 Bedroom Fully Detached Duplex With Boys Quarter,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22922,Nicely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +22923,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +22924,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22925,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22926,Brand New Contemporary 5 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22927,4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22928,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +22929,4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +22930,Spacious 4 Bedroom Terrace Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"59,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +22931,Well Built 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22932,"Newly Built, Luxury 4 Bedroom Semi Detached Duplex",2nd Toll Gate Chevron Lekki Lagos,₦,"88,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +22933,"Luxury 5 Bedroom Fully Detached Smart Home Duplex, Partially Furnished With Lovely Amenities",Buena Vista Estate Off Orchid Road Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +22934,Exquisitely Built 5 Bedroom Detached Duplex,Lekki Conservation Axis Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22935,4 Bedroom Terrace Duplex,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"52,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +22936,Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22937,Available Serviced Plots At Whales County 2 Estate,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"52,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +22938,Fenced 1500sqm Land,Ikota Gra Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +22939,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +22940,This Magnificent Brand New 2bedroom Flat Is Up For Sale At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +22941,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +22942,"500sqm Of Land In A Newly Built Estate Promo Price, Grab This Opportunity Now!",Opposite Eko Akete In Abijo Gra Lekki Lagos,₦,"10,500,000/sqm",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +22943,Contemporary Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22944,Luxury 3 Bedroom Terrace Duplex,Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +22945,5 Bedroom Fully Detached Luxurious House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22946,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +22947,Giant 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22948,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +22949,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +22950,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22951,Contemporary Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22952,Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +22953,5 Bedroom Fully Automated Contemporary House,Megamound Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22954,Signum Estate,Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22955,Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22956,5 Bedroom Detached Duplex,Lekki County Home Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22957,4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22958,"Newly Built Luxury, Finished 4 Bedroom Terrace Duplex","Ikate, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +22959,"650sqm Offplan Waterfront Land At Crest Island Estate, Osapa",Behind Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Osapa London +22960,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22961,Just Completed 2 Bedroom Apartment,"Lekki County, Ikota Lekki Lagos",₦,"35,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets,Ikota +22962,Spacious 4 Bedroom Terrace Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +22963,Newly Built Beautifully 4 Bedroom + Bq Semi Detached Duplex 95% Finished,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +22964,Magnificent 5 Bedroom Fully Detached Architectural Masterpiece With Swimming Pool And Cinema, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22965,5 Bedroom Fully Detached Luxurious House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22966,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22967,Newly Built 4 Bedrooms Duplex With Bq And Gate House,"Orchid Road, By 2nd Tollgate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22968,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +22969,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +22970,Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22971,Fully Sandfilled 8 Plots Of Land On A Tarred Road.,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +22972,5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22973,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22974,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22975,10 Plots Of Land At Blue Springs Estate Abijo,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"85,000,000",0,1,0, beds, baths, Toilets,Other Lekki +22976,4 Bedroom Terrace Detached Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22977,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"7,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Ikate +22978,Elegantly Built 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22979,Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +22980,5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22981,Superbly Built 3 Bedroom Terrace Duplex,"Orchid Road, Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +22982,Magnificently Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +22983,4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +22984,5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +22985,4 Bedroom Detached Bungalow,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22986,Executive 5 Bedroom Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +22987,Contemporary 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22988,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +22989,5 Bedroom Fully Detached Duplex With Swimming Pool And Open Terrace,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +22990,Fascinating Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road2nd Tollgate. Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +22991,Massive 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22992,"Newly Built Luxury, Finished 4 Bedroom Fully Detached Duplex","Ikota, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +22993,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +22994,Newly Built 3 Bedroom Terrace,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +22995,This Magnificent Beautiful 4bedroom Semi Detached Duplex Is Up For Sale At Oral Estate Ikota,Oral Estate Oral Estate Lekki Lagos,₦,"48,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +22996,This Magnificent 3bedroom Duplex With Bq Room,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +22997,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +22998,Massive 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +22999,Luxurious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +23000,Contemporary 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +23001,Spacious 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +23002,Brand New Furnished & Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +23003,Newly Built 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23004,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23005,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23006,Newly Built 2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"27,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +23007,50 Plots,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"425,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +23008,Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23009,4 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +23010,Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23011,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23012,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23013,Four Units Of 3 Bedroom Terrace And Two Units Of3 Bedroom Flat Penthouse,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23014,4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +23015,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +23016,2 Plots Of Lands,Ikota Gra Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23017,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +23018,5 Bedroom Fully Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23019,4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23020,Newly Built 5 Bedroom Fully Detached House.,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23021,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +23022,Deluxe 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23023,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +23024,Luxury 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +23025,Spacious 5 Bedroom Fully Detached And 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets,Agungi +23026,Newly Built 5 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +23027,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23028,4 Bedroom Semi Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Ikota +23029,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23030,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23031,This Magnificent 4bedroom Terrace Duplex With 24hours Light,Orchid Road Chevron Lekki Lagos,₦,"41,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +23032,5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23033,4bedroom Terrace Duplex Along Orchid Road,Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +23034,Newly Built 2 Bedroom Apartment In An Exquisite And Serene Environment,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +23035,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23036,Well Finished And Luxuriously Built 5 Bedroom Fully Detached Duplex.,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +23037,5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23038,Massive 4 Bedroom Semi Detached House,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23039,4 Bedroom Semi Detached Duplex,Brand New Lovely Semi Detached Duplex Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +23040,Spacious 5 Bedroom Fully Detached Contemporary House With Rooms Boys' Quarters,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23041,4 Bedroom Semi Detached Luxurious Houses,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23042,Spacious 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikate +23043,Brand New Furnished & Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +23044,4 Bedroom Semi Detached Duplex,"Agungi, Lekki Agungi Lekki Lagos",₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +23045,4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +23046,Contemporary Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23047,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +23048,Spacious 4 Bedroom Terraced Duplex,V Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23049,Brand New 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +23050,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23051,Fastest Selling 2 Bedroom Flats,"By Ocean Bay Estate, Off Orchid Hotel Road Lekki Lagos",₦,"32,000,000",0,0,0,2 beds, baths,3 Toilets,Other Lekki +23052,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23053,Contemporary Design Smart 4 Bedroom Terrace Duplex Without Bq,Lekki Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +23054,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +23055,Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23056,Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23057,Well Built 5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +23058,3 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +23059,5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23060,Well Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +23061,Newly Built 2 Bedroom Apartment,Ologolo Opposite Agungi Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +23062,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23063,4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23064,Contemporary Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23065,Contemporary Built 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23066,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +23067,Luxurious 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Phase 1 Osapa London Lekki Lagos,₦,"500,000,000",0,1,1,6 beds,6 baths,7 Toilets,Osapa London +23068,4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23069,Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +23070,2 Plots Of Mixed Use Land,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23071,Contemporary Luxury 5 Bedroom Fully Detached Duple,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23072,5bedroom Fully Detached Duplex With 2rooms Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23073,Fully Furnished 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23074,5 Bedrooms Fully Serviced Maisonette,Banana Island Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23075,4 Bedroom Apartment,"Agungi, Lekki Agungi Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Agungi +23076,5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23077,Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23078,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23079,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +23080,Magnificent Brand New 3 Bedroom Terrace Duplex With Bq And Pool,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23081,Contemporary 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23082,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +23083,Available Serviced Plots At Whales County Estate 1,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"52,000,000",1,1,0, beds, baths, Toilets,Chevron +23084,Nicely Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +23085,5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23086,Newly Built 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23087,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23088,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,3 baths,3 Toilets,Lekki Phase 2 +23089,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +23090,Massive Contemporary 4 Bedroom Semi Detached Duplex Plus A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23091,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23092,4 Bedroom Terrace Detached Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23093,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23094,4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23095,Fenced And Gated Bare Land,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23096,4 Bedroom Terrace Duplex,Off Lekki Right Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23097,4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23098,4 Bedroom Semi Detached With 2 Bqs,Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23099,Newly Built 5 Bedroom Terraced Duplex With Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +23100,Lovely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23101,3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +23102,4 Bedroom Fully Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23103,Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,3 Toilets,Ikate +23104,A Fully Detached 5 Bedroom Duplex,Orchid Road Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23105,4 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +23106,4 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +23107,Newly Built 4 Bedroom Semi Detached Duplex,Addo Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,2 baths,2 Toilets,Lekki Phase 2 +23108,Magnificently Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23109,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23110,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23111,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23112,4 Bedroom Fully Serviced Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23113,"Newly Built, Exquisite And Contemporary 5 Bedroom Detached Duplex",Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23114,Exquisitely Built Luxury And Affordable 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23115,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23116,Luxurious And Elegantly Finished 5 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +23117,"Just Completed 1 Bedroom Apartment At Lekki County, Ikota","Lekki County, Ikota Lekki Ikota Lekki Lagos",₦,"26,000,000/sqm",0,1,0,1 beds,1 baths,2 Toilets,Ikota +23118,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23119,"Newly Built 5 Bedroom Duplex In Lekki County, Ikota","Lekki County, Ikota Ikota Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23120,Luxury 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +23121,Spacious 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"44,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikota +23122,2 Plots (gazettes),Abijo Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +23123,Brand New 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23124,Lovely Built 5 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23125,500sqm Plots,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"8,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +23126,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Chevron +23127,Newly Built 4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23128,4 Bedrooms Terrace Duplex,Harris Drive By Vgc Vgc Lekki Lagos,₦,"57,500,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +23129,Governor Consent,"Lekki Phase 1,vi, Dominos Jakunda Ikate Lekki Lagos",₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +23130,Luxury 5bedroom Fully Detached Ocean View Duplex,Lekki City Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +23131,5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +23132,5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +23133,"Contemporary And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,",Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +23134,500sqm Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23135,5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +23136,5 Bedroom Duplex With A Bq,Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23137,"Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Gym.",Ologolo Lekki Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23138,Land,Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23139,4 Bedroom Fully Detached Duplex W/bq,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +23140,Luxury Offplan 3 Bedroom Terrace Duplex,"Lafiaji Behind Cooplag, Lekki Scheme 2 Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +23141,5 Bedroom Detached Duplex With A Bq,"Lekki County Homes, Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23142,4 Bedrooms Semi Detached Duplex In A Serene Environment,"Regional Road Sapata Town, Behind Vgc Lekki Vgc Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +23143,Luxury Houses,Ambience Heights Off Freedom Way Lekki Phase 1 Ikate Lekki Lagos,₦,"85,000,000/day",1,0,0,3 beds,3 baths,3 Toilets,Ikate +23144,4bedroom Terrace Duplex,Victory Start Court 2 Ikota G.r.a Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Ikota +23145,The Ambiance Heights 2 Bedroom Maisonette & 3 Bedroom Maisonette + Bq,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23146,4 Units Of 4bedroom Semi Detached Duplex With 2 Living Rooms And Self Contain Bq,Estate Idado Lekki Lagos,₦,"90,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23147,4bedroom Detached Duplex,Sangotedo Crown Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +23148,Executive 3 Bedroom Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23149,Newly Built 3 Bedroom Flat, Idado Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +23150,Nicely Built 2 Bedrooms Flat Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +23151,Luxury 30 Units Of Terrace And 4 Units Of Semi Detached,Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23152,Brand New And Luxuriously Finished 5 Bedrooms Semi Detached House,Ikate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +23153,Newly Built 4 Bedroom Detached Duplexes With B/ Q,Ikota Villa Estate Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23154,Fully Automated 6 Bedroom Ultra Luxury Modern Villa,Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +23155,600 Square Meters Land,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Ikota +23156,Newly Built 5 Bedroom Fully Detached Duplex With B/q And Swimming Pool,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23157,Tenanted 5 Bedrooms Terrace Duplex House + B/q,Horizon 2 Estate Ikate Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +23158,Executive 3 Bedroom Flat With B/ Q,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23159,Newly Built 4 Bedrooms Terrace Duplex With B/ Q,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23160,5 Bedroom Fully Detached Duplex With Boys Quarters,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23161,4 Bedroom Terrace Furnished Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,4 baths,5 Toilets,Other Lekki +23162,Newly Built 5 Bedroom Terrace Duplex With B/q,Agungi Axis Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +23163,Newly Built 5 Bedroom Detached Duplexes With B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +23164,Newly Built 3 Bedroom Flat Service Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +23165,Newly Built 2 Bedroom Flat Carcass,Near Nicon Town Ilasan Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +23166,1070 Square Meters Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Osapa London +23167,Newly Built 4 Bedroom Terrace Duplex With B/q Service Estate,Osapa London Lekki Lagos,₦,"77,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +23168,Executive 4 Bedroom Fully Detached Duplex With B/q,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +23169,Luxurious 5 Bedroom Detached Duplex With Servant Quarters,Chevron Alternative Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23170,3 Bedroom Serviced Apartment,Prime Water Gardens Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +23171,Nicely Built 3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23172,5 Bedroom Fully Detached Smart Home With Maids Quarters,Orchid Road 2nd Tollgate Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23173,Nicely Built 3 Bedrooms Terraced Duplex,New Horizon 2 Estate Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +23174,2 Bedroom Serviced Terrace Duplex +b/q,Horizon Court Estate Ikate Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +23175,Newly Built 2 Bedrooms Flat Serviced Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +23176,Luxury 2 Bedroom Flat Carcass Apartment,Horizon 2 Extension Estate Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +23177,Luxurious 4 Bedrooms Semi Detached Duplex With B/q (carcass),Horizon Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23178,Luxury 3 Bedroom Penthouse Apartment,Crown Well Estate Chevron Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +23179,Presidential 5 Bedroom Detached Duplex With Maid Quaters,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23180,Brand New 5 Bedroom Fully Detached Duplex With B/ Q,Megamound Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23181,Luxurious 4 Bedrooms Detached Duplex With B/q (carcass),Horizon Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23182,Nicely Built 2 Bedroom Flat Serviced Apartment,Horizon Estate Ikate Lekki Lagos,₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +23183,Land Measuring 640 Square Meters,Spring Bay Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikate +23184,Land Measuring 15 Plot Of Land,Victoria Crest Estate.. Orchard Road Lekki Lagos,₦,"47,000,000",1,0,0, beds, baths, Toilets,Other Lekki +23185,Luxury 4 Bedroom Semi Detached Duplex With B/q,Horizon Estate Ikate Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +23186,800 Sqm Land,Cowries Creek Estate Ikate Lekki Lagos,₦,"230,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +23187,Uniquely Built 2 Bedrooms Flat Serviced Apartment,Paradise Estate Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +23188,Beautifully Built 3 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +23189,Classically Finished 5 Bedrooms Detached Smart Home With Swimming Pool,Lake View Park 1 Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23190,Nicely Built Shop/ Office Space,Ikota Shopping Complex Vgc Lekki Lagos,₦,"11,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +23191,Newly Built 4 Bedroom Detached Duplex With Domestic Staff Quarters,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +23192,Luxurious 3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +23193,Newly Built 4 Bedrooms 4 Semi Detached Duplex With B/q,Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23194,Newly Built 5 Bedroom Detached Duplex With B/q,Romax Vgc Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23195,Luxury 4 Bedroom Semi Detached With A Room Boys Quarter,Richmond Estate Ikate Lekki Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +23196,Exquisitely Built 4 Bedroom Terraced Duplex With B/q,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23197,Newly Built 3 Bedroom Terraced Duplex,Romax Vgc Vgc Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +23198,Newly Built 3 Bedroom Flat Serviced Apartment With B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23199,Newly Built 3 Bedrooms Flat Serviced Apartment,Horizon 2 Extension Estate Ikate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23200,Newly Built 4 Bedroom Terrace Duplex With B/ Q,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23201,Newly Built 4 Bedrooms Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23202,Newly Built 4 Bedroom Detached Duplex With A Room B/q,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23203,Lovely 5 Bedroom Fully Detached House With B/ Q,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23204,Newly Built 5 Bedrooms Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +23205,Approximately 700sqm Land, Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23206,Simple Cool 4 Units Of 2 Bedroom Flat Apartment,Atlantic View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +23207,Newly Built 5 Bedroom Detached Duplex With B/q,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +23208,Wonderfully Built 4 Bedroom Semi Detached Duplexes With B/q,Romax Vgc Vgc Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets,Victoria Garden City +23209,Newly Built 2 Bedroom Flat Service Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +23210,Brand New 2 Bedrooms Service Apartment With B/q,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +23211,Newly Built 4 Bedroom Terrace Duplex With B/ Q,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23212,2 Bedrooms Flat With 1 Room Bq,Ikate Lekki Lagos,₦,"43,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +23213,100 Acres Of Land Facing The Road In Chevron Lekki,Opposite Ebano Supermarket Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +23214,Executive 4 Bedroom Semi Detached Duplex With B/q,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23215,Approximately 633 Square Meter Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23216,Elite Newly Built 4 Bedrooms Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +23217,Beautifully Built 4 Bedroom Maisonette Home With B/ Q,Richmond Estate Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23218,4 Bedrooms Semi Detached With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23219,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +23220,4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23221,4 Bedroom Fully Detached Duplex With Bq,Vgc Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23222,Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23223,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23224,4 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23225,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23226,4 Bedroom Semi Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23227,4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23228,Luxury 4 Bedroom Detached House With Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23229,Well Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23230,Land,"Láfíàjí, Opposite Cooplag Estate, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23231,Luxury 4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23232,3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +23233,5 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23234,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23235,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23236,5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23237,Brand New Exclusive 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23238,4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23239,6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23240,Luxurious House For Sale At Chevron,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"300,000,000/day",0,0,1,5 beds,6 baths,7 Toilets,Chevron +23241,4 Bedroom Terrace Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23242,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23243,4 Bedroom Terrace Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23244,3 And 4 Bedroom Terraces,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23245,3 Bedroom Apartment With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23246,Land,Image Lekki Lagos. Ikate Lekki Lagos,₦,"3,000,000,000/day",1,0,0,0 beds,0 baths,0 Toilets,Ikate +23247,Well Maintained Serviced 3 Bedroom Apartment With Bq, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +23248,Newly Built 4 Bedroom Duplex,"Mace Homes, Royal Pine Estate Orchid Road Chevron Lekki Lagos",₦,"65,000,000/day",1,0,0,0 beds,0 baths,0 Toilets,Chevron +23249,Astonishingly Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +23250,Luxurious 4 Bedroom Detached Duplex With Bq,Lekki Second Tollgate Lekki Lagos Oral Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +23251,5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23252,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +23253,Newly Built Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +23254,Fully Serviced 3bedroom Terrace Duplex,"A Secured Estate Off Orchid Road, Lekki Chevron Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +23255,5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23256,Newly Built 4 Bedroom Duplex With Bq,"Maven Court, Royal Pine Estate, Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",1,0,0,5 beds,5 baths,5 Toilets,Chevron +23257,Super Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +23258,"2,3,4 Bedroom Maisonette Duplexes","Ambience Height Lekki, Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +23259,Newly Built 2 Bedroom Flat Apartment,Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +23260,Relatively New 3 Bedroom Apartment,= Ikota Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +23261,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23262,Land For Sale At Lekki,"Lekki Phase 1, Lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"800,000,000/day",1,0,0, beds, baths, Toilets,Lekki Phase 1 +23263,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23264,Newly Built 4bedroom Flat And Bq For Sale,"Maven Homes, Royal Pine Estate, Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",0,0,0,4 beds,5 baths,5 Toilets,Chevron +23265,Newly Built 4 Bedroom Duplex For Sale.,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23266,Land For Sale At Lekki Phase 1,"Lekki Phase 1, Lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"120,000,000/day",1,0,0, beds, baths, Toilets,Lekki Phase 1 +23267,Solid And Elegant Well Maintained Tenanted 5bedroom Semi Detached Duplex With 2room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23268,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23269,4 Bedroom Semi Detached Duplex With 1 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23270,Brand New Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23271,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23272,5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23273,Newly Built Massive 5bedroom Full Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,7 baths,8 Toilets,Ikate +23274,Relatively New 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"46,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +23275,4bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23276,5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23277,3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23278,Beautifully Finished 4 Bedroom Full Detached Duplex In Chevron Lekki,Chevron Alternative Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +23279,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23280,Luxurious Contemporary Design 4 Bedroom,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +23281,Super Spacious 5 Bedroom Full Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,8 Toilets,Chevron +23282,Land For Sale At Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000/day",1,0,0, beds, baths, Toilets,Lekki Phase 1 +23283,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23284,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23285,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23286,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23287,Land For Sale At Chevron Alternative Route.,"Hampton Lake Estate, Chevron Alternative Route, Chevron, Lagos Nigeria Chevron Lekki Lagos",₦,"123,400,000/day",1,0,0, beds, baths, Toilets,Chevron +23288,Well Maintained Spacious 2bedroom Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +23289,Newly Built 5 Bedroom Full Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +23290,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23291,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23292,Newly Built 4 Bedroom Duplex,"Lekki Alternative Road, Lekki. Chevron Lekki Lagos",₦,"85,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23293,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23294,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23295,Luxurious 4bed Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +23296,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23297,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23298,4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23299,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23300,4 Bedroom Fully Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23301,Luxurious 4 Bedroom Furnished Water Front Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,6 baths,7 Toilets,Lekki Phase 1 +23302,Automated 5bedroom Full Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,7 baths,9 Toilets,Lekki Phase 1 +23303,4 Bedroom Fully Detached Duplex With 1 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23304,Newly Built 4 Bedroom Duplex With Bq,"Maven Court, Royal Pine Estate Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",1,0,0,0 beds,0 baths,0 Toilets,Chevron +23305,Newly Built 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +23306,Serviced Spacious 3bedroom Terrace Bungalow,Chevron Lekki Lagos,₦,"23,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +23307,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23308,Newly Built Spacious 4bedroom Fully Detached Duplex With Bq On 2floors,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23309,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23310,5 Bedrooms Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23311,5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23312,Luxurious 4 Bedroom Townhouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23313,4 Bedroom Terrace And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23314,5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23315,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23316,Luxurious 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,7 Toilets,Ikota +23317,Decently Finished 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +23318,Super Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Lekki Second Tollgate In A Reputable Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,7 baths,8 Toilets,Lekki Phase 1 +23319,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23320,Newly Built Serviced 4bedroom Terrace Duplex On 2floors And A Penthouse With Bq,Plantinum Way Axis Jakande Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23321,4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23322,4 Bedroom Terraced Duplex,Ikota Victory Star Court 2 Ikota Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,3 baths,3 Toilets,Ikota +23323,Land,Lekki Lagos,₦,"245,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23324,5 Bedroom Detached Duplex,"Pinnock Beach Estate, Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23325,Plot Of Land Measuring 1342sqm,Chevron Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23326,5 Bedroom Luxury Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23327,Available Land,Orchid Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +23328,4 Bedroom Semi Detached Duplex With Bq,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +23329,2 Bedroom Terrace,Alaska Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"40,000,000/month",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +23330,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets,Ikate +23331,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +23332,Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +23333,Exquisite 6 Bedroom Fully Detached Duplex With One Room Bq At Western Foreshore Estate,Western Foreshore Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +23334,Spacious 5 Bedroom Terrace Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,6 baths,7 Toilets,Lekki Phase 1 +23335,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +23336,Bloom Haven Terraces,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,0 Toilets,Ikate +23337,5 Bedroom Duplex With Servant Quarter,Pinnock Beach Estate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23338,Luxury 4 Bedroom Detched Duplex,Close To 2nd Toll Gate Lekki Lagos,₦,"170,000,000",1,0,1,4 beds,4 baths,4 Toilets,Other Lekki +23339,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",0,1,1,5 beds, baths, Toilets,Ikate +23340,Luxury 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +23341,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikate +23342,Newly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +23343,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +23344,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +23345,Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +23346,4 Bedroom Terrace,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23347,Contemporary 5 Bedroom Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +23348,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23349,Massive 5 Bedroom Fully Detached Duplex In Lovely Environment,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23350,Elegant 4 Bedroom Semi Detached,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23351,2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"51,000,000",1,0,0,2 beds,2 baths,2 Toilets,Ikate +23352,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +23353,Modern Smart 5 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23354,Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23355,4 Bedroom Duplex,"Off Platinum Way, Behind Nicon Town Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +23356,Luxurious Finished 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +23357,Luxury 4 Bedroom Semidetached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23358,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23359,5 Bedroom Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +23360,2 Bedrooms Apartment,Camberwall Advantage Ikate Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +23361,5 Bedroom Luxury Duplex Mansion On 1000sqm,Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +23362,5 Bedroom Luxury Duplex,Megamound Estate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23363,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +23364,Distress Sale Of 3 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +23365,Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +23366,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +23367,2 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +23368,Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +23369,Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23370,4 Bedroom Terrace House In A Serene Environment,Chucks Onyebuchi Drive Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23371,Luxury 3 Bedroom Apartment.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +23372,Abule By Onyx,Badore Lekki Phase 2 Lekki Lagos,₦,"3,200,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +23373,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +23374,Caritas Luxury,Behind Monastery Road Ikate Lekki Lagos,₦,"16,500,000",0,0,0, beds, baths, Toilets,Ikate +23375,5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,6 baths,5 Toilets,Chevron +23376,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +23377,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23378,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +23379,2 And 4 Bedroom Duplex,Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +23380,Newly Built 5 Bedroom Fully Detached Automated House,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +23381,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +23382,Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +23383,Newly Built 4 Bedroom Terrace House,"Ridgewell Terrace, General Ogomudia Road Lekki Phase 1 Lekki Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23384,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +23385,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +23386,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +23387,Spacious 5 Bedroom Detached Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +23388,4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +23389,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +23390,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +23391,Luxury 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +23392,4 Bedroom Semi Detached Duplex,Few Mins From Novare Shopping Mall Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Lekki +23393,Newly Built 4 Bedroom Terrace House,Kola Adeyinka Close Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23394,4 Bedroom Semi Detached Duplex At Lekki County Estate,Private Estate At Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23395,Massive 5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23396,Spacious 4 Bedroom Terrace Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +23397,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +23398,Newly Built 4 Bedroom Semi Detached Duplex,Private Estate In Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23399,Luxury 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets,Osapa London +23400,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +23401,Spacious 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +23402,Massive 4 Bedrroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +23403,Cornerpiece Plot 525sqms,Cbd Area Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23404,5 Bedroom Fully Detached Duplex House With A Sea View,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23405,Newly Built 4 Bedroom Terrace Duplex In An Estate,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23406,Newly Built 4 Bedroom Semi Detached In A Built Up Estate,Orchid Road De Castle Max Estate Chevron Chevron Lekki Lagos,₦,"65,000,000/day",0,0,1,4 beds,4 baths,4 Toilets,Chevron +23407,5 Bedroom Detached Duplex For Sale,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +23408,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23409,Well Finished 5 Bedroom Fully Detached Duplex With Boy's Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23410,Brand Newly Built 5 Bedroom Fully Detached Duplex With Boy's Quarter,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23411,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23412,Luxuriously Well Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23413,"Exquisitely Well Finished 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool, Gym And 2 Rooms Bq Located In A Secured Estate.",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23414,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +23415,Exquisite Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +23416,Elegantly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds, baths,5 Toilets,Lekki Phase 1 +23417,Brand New 4 Bedrooms Semi Detached Duplex With A Boys Quarter,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23418,Luxurious 5 Bedrooms Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23419,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23420,3 Bedroom Flat,Treasure Garden Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23421,Well Finished Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,1 Toilets,Ikate +23422,Exquisite Well Finished 5 Bedroom Fully Detached Duplex With Mini Flat Bq,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23423,3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23424,5 Bedroom Detached Duplex + Miniflat Bq,Ikota Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +23425,Land With Governor's Consent In A Serene And Built Up Environment,Ilasan Ikate Elegushi Ikate Lekki Lagos,₦,"162,500,000,000/day",0,0,0, beds, baths, Toilets,Ikate +23426,Newly Built Apartment In A Serene And Beautiful Area With Governor's Consent,Meadow Hall Way Ocean Palm Estate Scheme One Ikate Ikate Lekki Lagos,₦,"53,300,000/day",0,0,1,2 beds,2 baths,2 Toilets,Ikate +23427,Tastefully 6 Units Of Luxury 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +23428,3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +23429,Newly Built 4 Bedroom Terraces In A Built Up Location,Ikota Victoria Star Court 2 Ikota Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,3 baths,3 Toilets,Ikota +23430,45 Bed Fully Equipped Medical Facility,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"681,818/sqm",0,1,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +23431,Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23432,Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23433,4 Bedroom Semi Detached Duplex Home With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23434,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23435,Units Of Newly Built Luxury 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +23436,Land,Vgc Vgc Lekki Lagos,₦,"6,500,000,000/day",0,0,0, beds, baths, Toilets,Victoria Garden City +23437,Newly Built Apartment,"Megamound Estate, Lekky County Homes, Ikota. Ikota Lekki Lagos",₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +23438,Newly Built Apartment,"Megamound Estate, Lekky County Homes, Ikota. Ikota Lekki Lagos",₦,"47,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +23439,Newly Built Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23440,Block Of 6 Flats Of 3 Bedrooms,Bakare Estate Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23441,4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23442,"Pantheon Smart Homes And Terraces, Chevron, Lekki, Lagos.","Buena Vista/pantheon Smart Terraces/orchid Road, Chevron Chevron Lekki Lagos",₦,"36,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +23443,3 Bedroom Terrace Duplex In A Very Secured Estate,Chevron Lekki Lagos,₦,"53,000,000",1,0,0,3 beds,3 baths,3 Toilets,Chevron +23444,6units Of Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000/month",0,1,0, beds, baths, Toilets,Ikate +23445,4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +23446,Contemporary Designed Luxury 2 Bedroom Terraces + Maid’s Room,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +23447,Luxury 2 And 3 Bedroom Terraces Duplex,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +23448,Premium Solar Powered Lifestyle 2 Bedrooms Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000/month",0,1,0,2 beds,3 baths,3 Toilets,Ologolo +23449,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +23450,Off Plan 2 Bedrooms Maisonette,"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +23451,Finished 5bedroom Fully Detached Duplex With A Bq,Lekki Ikate Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikate +23452,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +23453,Magnificent High Rise Modern Day Luxury 3 Bedroom Maisonette,"Camberwall Advantage 3, Just After The Elegushi Palace Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +23454,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,4 baths,5 Toilets,Ikota +23455,Contemporary Design Smart 4 Bedrooms,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23456,A Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23457,Newly Built 4bed Rooms Semi Detached Duplex,Orchid Road Ocean Bay Estate Ikota Lekki Lagos,₦,"75,000,000/month",0,1,0,4 beds,5 baths,6 Toilets,Ikota +23458,Newly Built 4 Bedroom Duplex Semi Detached,Ocean Bay Estate Oral Estate Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,5 baths,4 Toilets,Other Lekki +23459,4 Bedroom Semi Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,6 baths,7 Toilets,Agungi +23460,Newly Built Luxury 4 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23461,Newly Built Luxury 4 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23462,Land,Lakowe Golf Course And Lakes Road Lekki Phase 2 Lekki Lagos,₦,"25,000,000/sqm",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +23463,5 Bedroom Fully Detached Duplex,Megamound Estate Through Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23464,4 Bedroom Detached Duplex Plus 2 Units Of 1bedroom Flat,Gbara Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +23465,4 Bedroom Detached Duplex Plus 2 Units Of 1bedroom Flat,Gbara Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +23466,Newly Built 4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23467,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23468,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23469,2 Bedroom Massionettes Off Plan,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,1,2 beds,3 baths,3 Toilets,Chevron +23470,Massionette,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,1,3 beds,4 baths,4 Toilets,Chevron +23471,2 Bedroom Massionettes Off Plan,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,2 beds,3 baths,3 Toilets,Ikate +23472,2 Bedroom Apartment,Eru Ifa Ikate Lekki Lagos,₦,"55,000,000",1,0,1,2 beds,3 baths,3 Toilets,Ikate +23473,4 Bedroom Semi Detached Duplex Home With A Bq,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +23474,5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23475,5 Bedroom Detached Duplex + 1 Room Bq,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23476,5 Bedroom Fully Detached With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"180,000,000",1,0,1,5 beds,4 baths,4 Toilets,Ikate +23477,4 Bedroom Semi Detached With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"140,000,000/month",0,1,0,4 beds,1 baths,5 Toilets,Chevron +23478,27 Rooms Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +23479,27rooms Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +23480,3 Bedroom Penthouse,Off Freedom Way Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +23481,4 Bedroom Terrace Duplex With Bq,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Ikate +23482,3 Bedroom Apartment With Bq,"Off Freedom Way, Ikate Lekki Ikate Lekki Lagos",₦,"65,000,000/day",0,1,0,3 beds,4 baths,4 Toilets,Ikate +23483,5 Bedroom Fully Detached,Osapa London Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,2 baths,3 Toilets,Osapa London +23484,5 Bedroom Fully Detached,"Orchid Alternative, Lekki, Lagos Chevron Lekki Lagos",₦,"145,000,000",0,0,0,5 beds,2 baths,2 Toilets,Chevron +23485,5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,2 baths,2 Toilets,Chevron +23486,4 Bedroom Semi Detached Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23487,6 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23488,Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23489,Serviced 2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23490,6 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,6 beds,7 baths,6 Toilets,Lekki Phase 2 +23491,Newly Built 4 Bedroom Detached Duplex With Bq And Pent Area,Kusenla Ikate Lekki Lagos,₦,"135,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +23492,4 Bedroom Terrace Duplexes,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23493,4 Bedroom Luxury Masionettes,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +23494,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighbourhood,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +23495,Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +23496,Fully Serviced Luxury 2 Bedroom Flats With Beautiful Atlantic View,"Sapphire Tower (blue Water), Second Roundabout Lekki Phase 1 Lekki Lagos",₦,"88,000,000",1,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +23497,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23498,Contemporary Design 4 Bedroom Fully Detached Duplex With A Penthouse And Bq,Lekki New Market Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23499,3 Bedroom Maisonette Duplex +bq,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"26,990,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23500,Newly Built 4 Bedroom Semi Detached In A Serene Neighbourhood,Ikota Ikota Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +23501,Newly Built 4 Bedroom Fully Detached Duplex Made With Your Taste In Mind,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +23502,A Land Measuring 607sqm,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23503,Newly And Superbly Built 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +23504,Tastefully Finished And Serviced Estate Of 8 Units Of 4 Bedroom Terraces,Rock Drives Lekki Chevron Lekki Lagos,₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23505,Ocean View Newly Built Fantastic 6 Bedroom Fully Detached Duplex With Private Elevator,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +23506,Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Chevron +23507,Newly Built 4 Bedroom Semi Detached In A Serene Neighbourhood,Agungi Agungi Lekki Lagos,₦,"87,000,000",0,1,1,4 beds,4 baths,4 Toilets,Agungi +23508,Exquisitely Finished 5 Bedroom Fully Detached Duplex With Standard Facilities,Osapa London Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +23509,4bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets,Agungi +23510,Newly Built 4 Bedroom Semi Detached Duplex Finished Just For You At 2nd Toll Gate,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23511,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",1,1,1,4 beds,5 baths,6 Toilets,Victoria Garden City +23512,Tastefully Finished 4 Bedroom Fully Detached In A Serene Estate,Orchid Oral Estate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +23513,Newly Built 4 Bedroom Fully Detached Duplex Made With Your Taste In Mind,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +23514,Newly Built 4 Bedroom Fully Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"87,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23515,Exquisitely Finished 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,"Idado, Lekki Idado Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +23516,Newly Built 5 Bedroom Fully Detached Duplex Located In A Serene Estate,Lekki County Oral Estate Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +23517,Very Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Ikate +23518,2 Bedroom Flat,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"16,990,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +23519,Well Built 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Chevron +23520,Opulent 5 Bedroom Fully Detached House Located In A Serene Esate,Osapa London Osapa London Lekki Lagos,₦,"390,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +23521,Luxury 2 Bedroom Apartment With Bq,Elegushi Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikate +23522,Newly Built 3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +23523,5bedroom Duplex,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23524,Good Looking Spacious 5 Bed Fully Detached Duplex,Chevron Tollgate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Chevron +23525,4bedroom Fully Detached Duplex With 2 Bq,Vgc Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,6 Toilets,Victoria Garden City +23526,3 Bedroom Flat With Excellent Facilities,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"19,990,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +23527,Luxury 3 Bedroom Apartment With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,0 baths,0 Toilets,Ikate +23528,Newly Built 2 Bedroom Flat, Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +23529,Newly And Superbly Built 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +23530,5bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +23531,801.92sqm Land,Nicon Town Lekki Lagos,₦,"450,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23532,4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets,Victoria Garden City +23533,Oceanview 5 Bedroom Detached Duplex With Bq In A Serene Estate,Ikate Ikate Lekki Lagos,₦,"275,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +23534,Newly Built 9 Units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +23535,5 Bedroom Detached Duplex With A Room Bq,Toll Gate Chevron Lekki Lagos,₦,"150,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Chevron +23536,4 Bedroom Terrace With 1 Room Boys Quarters,Muritala Eletu Street Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +23537,4 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,2 baths,2 Toilets,Chevron +23538,5 Bedroom Fully Detached House In A Serene Neighborhood,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,2 baths,2 Toilets,Chevron +23539,4 Bedroom Fully Detached House In A Serene Neighborhood,Ikate Ikate Lekki Lagos,₦,"98,000,000",0,1,1,4 beds,2 baths,2 Toilets,Ikate +23540,5 Bedroom Fully Detached House In A Serene Neighborhood,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,2 baths,2 Toilets,Ikate +23541,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"88,000,000",0,1,1,3 beds,2 baths,2 Toilets,Ikate +23542,Newly Built 3 Bedroom Flat,Pinnock Beach Estate Jakande Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +23543,Newly Built 3 Bedroom Apartment,Lekki Pearl Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +23544,4 Bedroom Duplex,Rapata Camber Wall Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +23545,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"57,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23546,Luxury 3 Bedroom Pent House With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +23547,Newly Built 2 Bedroom Flats,Orchid Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +23548,2bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +23549,2bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +23550,2 Bedroom Terrace Duplex,"Off Orchid Road, Close Mega Mall Chevron Lekki Lagos",₦,"37,000,000/month",0,1,0,2 beds,3 baths,3 Toilets,Chevron +23551,2 Bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +23552,2 Bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets,Chevron +23553,5 Bedroom Fully Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,6 baths,7 Toilets,Chevron +23554,Choice Location Of A 3 Bedroom Apartment,Primewater Estate 2 Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +23555,Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Nigeria Limited Chevron Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +23556,4 Bedroom Semi Detached House,Vgc Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +23557,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23558,Newly Built 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +23559,Land,Jcil Estate Off Lakowe Golf Course Lekki Lagos,₦,"25,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23560,Newly Built 3 Bed Flat Apartment,Orchid Road Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +23561,Newly Built 3 Bedroom Duplex,Chevron Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +23562,Brand New Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +23563,A Plot Of Land,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23564,A Spectacular Fully Furnished 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +23565,Newly Built 5 Bedroom Fully Detached Duplex With 2 Bgs,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +23566,Luxury 3 Bedroom Flats With Bq,Lekki Conservation Center Way Lekki Phase 2 Lekki Lagos,₦,"39,999,998",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +23567,Brand New 4bedroom Terrace Duplex,Lekki Conservation Center Way Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23568,Luxury 4 Bedroom Terrace Duplex,"Mega Chicken, Ikota Villa Ikota Lekki Lagos",₦,"63,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +23569,5 Bedroom Duplex With 2 Bqs,Megamond Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23570,6.7 Acres Of C Of O Land,Before Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"2,600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +23571,Luxury 5 Bedroom Fully Detached Duplex,Lekki Conservation Chevron Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +23572,Executive 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23573,Commercial 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23574,Very Spacious 5 Bedroom Semi Detached Duplex Plus 2 Rooms Bq,Momodu Lawal Close Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23575,7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +23576,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23577,Contemporary 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23578,Magnificent Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23579,Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"200,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23580,4 Bedroom Semi Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23581,Elegant And Exquisite 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +23582,Well Designed And Constructed 4 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23583,Luxurious And Exquisitely Finished 5 Bedroom Duplex In A Serene Estate,Lakeview Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23584,Newly Built Luxurious 5 Bedroom Detached Duplex In A Prime Location,Lakeview Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23585,Exquisitely Finished 4 Bedroom Semi Detached Duplex In A Serene Estate,Conservation Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23586,Newly Built 4 Bedroom Terrace/semi Detached/fully Detached Duplexes,Orchid Hotel Road By Eleganza Bus Stop Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23587,Land,"Amen Estate Phase 2, The Gemstone Beachfront Idado Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23588,Beautiful Newly Built All En Suite 3 Bedroom Apartment With Bq,"Blissville Apartments, On Prince Kemi Olusesi Street, B Chevron Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,4 baths,5 Toilets,Chevron +23589,Newly Built 4 Bedroom Semi Detached Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23590,90% Complete 4 Bedroom Semi Detached And 4 Bedroom Fully Detached Duplex With Bq,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"55,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23591,Decently Built 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"60,000,000/day",0,1,0,2 beds,2 baths,3 Toilets,Ikate +23592,Strategically Located 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23593,Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23594,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23595,5 Bedroom Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23596,Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,0 Toilets,Osapa London +23597,5 Bedroom Detached,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikate +23598,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,0 Toilets,Ikota +23599,Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23600,Land,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +23601,5 Bedroom,Estate Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23602,Newly Built 5 Bedroom Detached Duplex,Megamound Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,0 Toilets,Other Lekki +23603,Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23604,Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23605,Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23606,Newly Built 5 Bedroom Detached Duplex,Orchid Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,0 Toilets,Other Lekki +23607,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23608,8 Hectares Of Land,Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23609,Hotel,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +23610,5 Bedroom Detached Duplex,Lakeview Estate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,0 Toilets,Other Lekki +23611,Land,Vgc Lekki Lagos,₦,"73,000,000",1,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +23612,5 Bedroom Fully Detached House,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23613,Newly Built 4 Bedroom Detached Duplex,Eleganza Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets,Other Lekki +23614,Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Chevron +23615,Luxury 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23616,Luxurious 2 Bedroom Apartment,"Pinnock Beach Road ,ajiran Osapa London Lekki Lagos",₦,"38,000,000",0,0,1,2 beds, baths,3 Toilets,Osapa London +23617,Luxurious 4 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,0 Toilets,Victoria Garden City +23618,Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23619,4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +23620,2 Units Of Luxury Detailed 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"460,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +23621,Newly Built 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +23622,Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Chevron +23623,Newly Built 4 Bedroom Townhouses,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +23624,Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23625,5 Bedroom Detached Duplex With 2 Room Bq,"Nicon Town, Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23626,Sand Filled Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths, Toilets,Ikate +23627,Newly Built 3 Bed Apartment With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +23628,Newly Built 2 Bed Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ologolo +23629,2 Bed Apartment,Salem Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +23630,New And Tastefully Built 2 Bedroom Apartments,Ikota Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikota +23631,Stunning Super Luxury 5bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,7 Toilets,Chevron +23632,Newly Built 4 Bedroom Self Compound Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23633,4 Bedroom Fully Detached Duplex,2nd Toll Plaza Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23634,4 Bedroom Fully Detached Duplex Sitting On A 400sqms Plot,Osapa London Lekki Lagos,₦,"500,000,000",1,0,1,4 beds,4 baths,4 Toilets,Osapa London +23635,Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +23636,Luxury 5 Bedroom Semi Detached Duplex,Ochid Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,7 baths,7 Toilets,Agungi +23637,Gorgeous Contemporary 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,0 baths,0 Toilets,Ikota +23638,Elegant 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds, baths, Toilets,Chevron +23639,Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23640,Elagant 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +23641,Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23642,A Magnificent 4 Bedroom Fully Detached Duplex With Swimming Pool In A Secure Estate,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23643,Beautiful 4 Bedroom Semi Detached Duplex With Bq In A Secure Estate In Ikoyi,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +23644,Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23645,Tastefully Built Automated 4 Bed Luxury Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds, baths, Toilets,Lekki Phase 1 +23646,Super Beautiful Contemporary 5 Bed Detached Masterpiece,Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +23647,Magnificent 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets,Chevron +23648,Elagant 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23649,Beautifully Finished 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds, baths, Toilets,Lekki Phase 1 +23650,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets,Ikota +23651,4bedroom Masionette,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets,Ikate +23652,Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,Ikota Villa Estate Behind Mega Chicken Ikota Lekki Lagos,₦,"105,000,000/year",0,1,1,5 beds,6 baths,6 Toilets,Ikota +23653,4 Bedroom Terraced Duplex,Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23654,4bedroom Fully Detached Duplex,De Castle Max Orchid Opposite Cooplag Estate Lekki Phase 1 Lekki Lagos,₦,"82,000,000/day",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +23655,3bedroom Masoinette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000/day",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +23656,Luxury 4 Bedroom Semi Detached Duplexes,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"78,000,000",0,1,0,4 beds, baths, Toilets,Ologolo +23657,Nicon Hotel Formerly Meridan Hotels & Apartment Victoria Garden City,Addyholly Nicon Hotel Vgc Nicon Town Lekki Lagos,₦,"1,300,000,000/sqm",1,0,1, beds, baths, Toilets,Other Lekki +23658,Newly Built Fully Detached 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,1, beds, baths, Toilets,Chevron +23659,Commercial Land Forsale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23660,Elegushi Land For Sale Beach Front Plot Of Land,Elegushi Ikate Lekki Lagos,₦,"65,000,000",1,0,0, beds, baths, Toilets,Ikate +23661,4 Bedroom Terrace With Swimming Pool Beside Grand Cinema,Addyholly Orchid Vgc Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +23662,2 Bedroom Ruby Apartment For Sale At Lekki Lagos Nigeria,Addyholly Lekki Near Circle Mall Lekki Ologolo Lekki Lagos,₦,"30,000,000",1,1,0, beds, baths, Toilets,Ologolo +23663,Residential Land Available Forsale At Orchid Lekki,Orchid Lekki Ikota Lekki Lagos,₦,"25,000,000/sqm",1,0,0, beds, baths, Toilets,Ikota +23664,Exquisite 4 Bedroom Semi Detached Duplex With Bq At Lekki Chevron,Chevron Lekki Lagos,₦,"79,000,000",1,1,1, beds, baths, Toilets,Chevron +23665,Affordable Lands In Lagos Ibejulekki Daisyland,Addyholly Daisyland Ibejulekki Nicon Town Lekki Lagos,₦,"850,000",0,0,0, beds, baths, Toilets,Other Lekki +23666,Four Bedroom Semidetached Duplex With Bq,Bridge Gate Estate Chevron Lekki Lagos,₦,"72,000,000",1,1,1, beds, baths, Toilets,Chevron +23667,Newly Built Four Bedroom Terrace Duplex +bq Wit Governors Consent Lekki Lagos,Addyholly Pleasant Ville Homes New Road Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +23668,Luxury 5 Bedroom Villa + Bq And Pool,Addyholly Gcc5 Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23669,Newly Built 4bedroom Semi Detached Duplex +bq,Addyholly Orchid Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,4 baths,5 Toilets,Chevron +23670,Exquisitely Furnished 3 Bedroom Maisonette Wit Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +23671,"5 Bedroom Fully Detached With Bq Fully Furnished Smart Home With Bonus 1hpac And 32"" Tv",Orchid Chevron Lekki Lagos,₦,"85,500,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23672,4 Bedroom Semidetached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +23673,Contemporary Duplex 4 Bedroom Fully Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23674,Contemporary 4 Bedroom Terrace Duplex With Swimming Pool In An Estate,Chevron Toll Gate Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23675,Cheapest 4 Bedroom Terrace Duplex Smart Home,Addyholly Smart Near Ocean Bay Estate Orchid Rd 2nd Tollgate Lekki Chevron Lekki Lagos,₦,"50,000,000",1,1,1, beds, baths, Toilets,Chevron +23676,"Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @ Chevron Tollgate, Orchid Hotel Road, Lekki",Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23677,2 Bedroom Apartment At Ikate Lekki,Addyholly Ikate Lekki Lagos Ikate Lekki Lagos,₦,"51,000,000",1,1,0, beds, baths, Toilets,Ikate +23678,4 Bedroom Semi Detached Duplex With Maid's Room,Oral Estate Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +23679,8 Hectares Of Land With C Of O At Freedom Way Lekki,Addyholly Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23680,Newly Built 3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +23681,Newly Built One Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Other Lekki +23682,Newly Built 2 Bed Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +23683,Newly Built Luxury 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +23684,2 Bedroom,Off Freedomway Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +23685,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +23686,4 Bedroom Terrace,Chevron Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23687,5 Bedroom Fully Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23688,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +23689,Newly Built 4 Bed Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23690,Newly Built 4 Bed Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23691,Newly Built 2 Bed Apartment With Excellent Facilities,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +23692,9 Units Of 3 Bedroom Flat,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +23693,Newly Built And Affordable 4 Bedroom Terrace Duplex In A Serene Estate,Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23694,Very Spacious 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23695,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23696,Affordable 3 Bedroom Terrace Duplex In A Mini Estate,Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikota +23697,Newly Built And Affordable 5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23698,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"50,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23699,Newly Built Serviced 4 Bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23700,4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23701,Most Affordable 3 Bedroom Terrace Duplex In An Estate,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +23702,3 Bedrooms + 1room Bq ( 2 Floor ),Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23703,Aesthetically Designed And Perfectly Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23704,4 Bedroom Fully Detached Castle Duplex + Bq,"De Castle Max .orchid Road, Lafiaji Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +23705,Newly Built 5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +23706,4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23707,4 Bedroom Duplex,"Opic Estate, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +23708,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +23709,Aesthetically Designed And Exquisitely Finished 5 Bedroom Detached Duplex In A Lovely Estate,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23710,Lovely Brand New 3 Bedroom Terrace Duplex,Ikota Villa Vgc Lekki Lagos,₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets,Victoria Garden City +23711,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +23712,5 Bedroom Fully Detached Duplex,"Megamound Estate, Eti Osa Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23713,Two Units Of 5 Bedroom All Ensuite Semi Detached Duplex With 2 Room Bq,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,1,5 beds,7 baths,7 Toilets,Lekki Phase 1 +23714,Newly Built And Well Finished 4 Bedroom Semi Detached Duplex In A Prime Location,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23715,New Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23716,Newly Built 4 Bedroom Terrace Duplex Home,"Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +23717,5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +23718,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +23719,Brand New 4 Bedroom Terrace Duplex, Jakande Lekki Lagos,₦,"47,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23720,Beautiful 4 Bedroom Semi Detached,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +23721,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23722,3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +23723,Serviced 4 Bedroom Terrace Duplex,"...,. Chevron Lekki Lagos",₦,"47,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23724,Fully Furnished 2 Bedroom Flat Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets,Ikota +23725,1 Block Of 5 Flats,"Plot 13, Block A, Monsurat Olayinka Street. Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +23726,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +23727,This Lovely 4 And 3 Bedroom,Vgc Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +23728,Exquisitely Finished 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +23729,Available 800sqm Land,Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23730,4 Bedroom Semi Detached With A Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +23731,Spacious 4 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23732,5 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +23733,Luxurious 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"122,000,000",0,1,1, beds, baths, Toilets,Agungi +23734,5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23735,5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23736,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +23737,4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +23738,Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale!!!,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23739,Newly Built 4 Bedroom Semi Detached Duplex For Sale!!!,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +23740,Newly Built 4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23741,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23742,Newly Built 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23743,Luxury 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23744,Newly Built 4 Bedroom Terrace Duplex With Payment Plan,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23745,Luxurious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23746,Luxury 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23747,Newly Built 4 Bedroom Home,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Lekki +23748,Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23749,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23750,Very Spacious 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23751,Luxury 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23752,Newly Built 3 Bedroom Terraced Duplex For Sale,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +23753,Luxury 5 Bedroom Detached Duplex For Sale,Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +23754,Newly Built 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +23755,Land For Sale In Lekki Phase1 Lagos Nigeria.,"Lekki Phase1, Off Freedom Way Lekki. Lekki Phase 1 Lekki Lagos",₦,"100,000,000,000/day",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23756,Serviced 4 Bedroom Semi Detached Duplex With Swimming Pool,D Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23757,Newly Built 4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23758,Luxury 5 Bedrooms Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23759,Newly Built 4 Bedroom Detached Duplex For Sale!!!,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23760,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23761,Luxury 4 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23762,Luxury 4 Bedroom Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23763,Newly Built 4 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +23764,Contemporary Waterfront Five Bedroom Fully Detached Duplex With A Room Boys Quarter,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +23765,Luxurious Five Bedroom Fully Detached Duplex With Swimming Poo & A Room Boys Quarter For Sale,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23766,Newly Built 4 Bedroom Terrace Duplex With 24 Hours Power Supply,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23767,5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23768,Newly Built 4 Bedroom Terraced Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23769,Luxury 4 Bedroom Terrace Duplex For Sale With Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23770,4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"80,000,000/day",0,0,0,4 beds,4 baths,4 Toilets,Chevron +23771,Very Spacious 5 Bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23772,Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Home Ikota Villa Ikota Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,5 Toilets,Ikota +23773,Luxury 5 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23774,Newly Built 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23775,Newly Built 4 Bedroom Terrace Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23776,Luxury 5 Bedroom Detached Duplex With 24 Hours Power Supply, Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikate +23777,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23778,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23779,5 Bedroom Fully Detached Duplex,Pantheon Smart Homes Chevron Lekki. Chevron Lekki Lagos,₦,"125,000,000/day",0,0,0,5 beds,5 baths,5 Toilets,Chevron +23780,Luxurious Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys Quarter,Lekki County Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23781,Luxury 4 Bedroom Terraced Duplex With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23782,Luxury 5bedroom Fully Detached Duplex With An Attached Mini Flat,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23783,Newly Built 4 Bedroom Semi Detached Duplex With Bq, Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +23784,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23785,Newly Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +23786,Fully Furnished 4 Bedroom Semi Detached Duplex In A Serviced Estate For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23787,Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply.,2nd Toll Gate Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23788,5 Bedroom Detached Duplex With Bq,Comfort Homes Osapa London Lekki Lagos,₦,"130,000,000/day",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +23789,Newly Built 4 Bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23790,3 Bedroom Apartment (off Plan),Emcel Apartments Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +23791,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23792,Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Supply,2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23793,Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23794,Newly Built 4 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +23795,Very Spacious 4 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23796,4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23797,Luxury Serviced 2 Bedroom Apartment In Secured Estate,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +23798,Luxury 5 Bedroom Smart Home With Swimming Pool For Sale!!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23799,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23800,Luxurious 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23801,Newly Built 3 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Chevron Toll Gate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +23802,Luxurious 5 Bedroom Detached Duplex With Bq At 2nd Toll Gate Lekki,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23803,Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23804,Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply & Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23805,Newly Built 2 Bedroom Flat With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +23806,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23807,Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +23808,Newly Built 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23809,Waterfront Land For Sale In Ikate Lekki Lagos State Nigeria,Ikate Elegushi By Word Oil Filling Station Ikate Lekki Lagos,₦,"65,000,000/day",0,0,0, beds, baths, Toilets,Ikate +23810,Newly Built 4 Bedroom Terrace Duplex With 24 Hours Power Supply,2nd Toll Gate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23811,Newly Built 4 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23812,4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +23813,Luxury 5 Bedroom Detached Home With Bq, Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +23814,Spacious 4 Bedrooms Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23815,Luxurious Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys Quarter,Lekki County Homes Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23816,Newly Built 4 Bedroom Detached Duplex With Bq For Sale!!!,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23817,4 Bedroom Fully Detached Duplex For Sale In Orchid Road Lekki Lagos.,De Castle Max Chevron Lekki Lagos,₦,"75,000,000/day",1,1,0,4 beds,5 baths,5 Toilets,Chevron +23818,Newly Built 4 Bedroom Terrace Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +23819,5 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23820,Newly Built 4 Bedroom Terrace Duplex With Bq Payment Plan Available,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +23821,Fully Detached Duplexe For Sale In Ikate Lekki Lagos Nigeria.,"Camberwall Advantage 2,3,4,5 Ikate Lekki Lagos",₦,"95,000,000/day",1,1,1,5 beds,5 baths,5 Toilets,Ikate +23822,Executive 5 Bedroom Fully Detached Duplex With A Room Boys Quarter For Sale.,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23823,Luxury 3 Bedroom Apartment With Swimming Pool For Sale,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikota +23824,Luxury Furnished 5 Bedroom Detached Duplex With Bq And Inverter, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23825,Fully Serviced 3 Bedroom Apartments With 24 Hours Supply,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +23826,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23827,Newly Built 4 Bedroom Terrace Duplex For Sale!!!,Ikota Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths, Toilets,Ikota +23828,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23829,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +23830,Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths, Toilets,Ikota +23831,4 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23832,Hotel For Sale In Victoria Garden City,Nicon Hotel By Victoria Garden City Lekki Lagos. Vgc Lekki Lagos,₦,"1,300,000,000,000/day",0,0,1,10 beds, baths, Toilets,Victoria Garden City +23833,Newly Built 4 Bedroom Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23834,Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +23835,Newly Built 4 Bedroom Terrace Duplex With Bq (payment Plan Available),Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +23836,Land For Sale Along Beech Road Jakonde,Jakonde Beech Road Jakande Lekki Lagos,₦,"35,000,000/day",0,0,0, beds, baths, Toilets,Other Lekki +23837,Newly Built 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23838,5 Bedroom Fully Detached Duplex With Bq,Peaceful Homes Agungi Lekki Lagos,₦,"150,000,000/day",0,0,0,5 beds,6 baths,6 Toilets,Agungi +23839,Luxury 4 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23840,Newly Built 5 Bedroom Duplex,Lekki County Home Ikota Villa Ikota Lekki Lagos,₦,"165,000,000/day",0,0,0,5 beds,5 baths,5 Toilets,Ikota +23841,Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply & Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23842,Newly Built 4 Bedroom Semi Detached Duplex With Bq,S Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23843,Serviced 4 Bedroom Detached Duplex With Bq & Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23844,Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +23845,5 Edroom Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23846,5 Bedrooms Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +23847,Waterfront Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys,Osapa London Lekki Lagos,₦,"470,000,000",1,1,0,5 beds,5 baths, Toilets,Osapa London +23848,Luxury 5 Bedroom Detached Home With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +23849,4 Bedroom Semi Detached Duplex With Bq For Sale In Orchid Road By De Castle Max.,De Castle Max. Chevron Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,5 baths,5 Toilets,Chevron +23850,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23851,Luxury 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +23852,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +23853,Luxury 5 Bedroom Detached Duplex With 24 Hours Power Supply,Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +23854,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +23855,4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23856,5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +23857,Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23858,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +23859,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23860,4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +23861,Newly Built 5 Bed Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23862,Newly Built 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +23863,4 Bedroom Fully Detached Duplex With Excellent Facilities,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +23864,Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +23865,Newly Built Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +23866,Luxurious 2 Bedroom Apartment In A Serene Environment,Ologolo By Jakande Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +23867,Luxurious 2 Bedroom,Chief Kolawole Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +23868,Luxury 2 Bedroom Apartment,"Chief Kola, Ologolo Street, Lekki. Ologolo Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +23869,2bedroom Block Of Apartments,Ologolo Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +23870,2 Bedroom,Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Lekki +23871,Newly Built 4 Bedroom Terraced Duplex And Semi Detached House,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23872,Newly Built 5 Bedroom Terraced Duplex,Spg Ologolo Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +23873,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +23874,5 Bedroom Detached Duplex And 1 Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +23875,3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +23876,2 Bedroom,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +23877,Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +23878,Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23879,Governor's Consent,Ikota Lekki Lagos,₦,"150,000,000/day",1,1,1,5 beds,5 baths,6 Toilets,Ikota +23880,Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +23881,4 Bedroom Smart Terrace,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +23882,Newly Built 4 Bedroom In A Conducive Area,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +23883,New Built 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23884,Land,Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23885,Super Luxury Homes With Governors Consent,Pantheon Smart Homes Is Located Opposite Ocean Bay Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +23886,Luxury Lifestyle Apartments With Governor’s Consent,Mufasa Apartments Is Located In Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +23887,Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +23888,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +23889,Spacious 5 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,6 baths,6 Toilets,Agungi +23890,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +23891,Spacious 2 Bedroom Apartment With Bq,Osapa London Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets,Osapa London +23892,Contemporary 5 Bedroom Fully Detached Duplex In An Estate,Ikota Lekki Lagos,₦,"90,000,000/sqm",1,1,0,5 beds,5 baths,6 Toilets,Ikota +23893,2 Bed Room Flat,Nee Horizon 11 Ikate Lekki Lagos,₦,"45,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets,Ikate +23894,Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23895,Luxury 4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,5 baths,6 Toilets,Other Lekki +23896,2 Bedroom Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,2 baths,3 Toilets,Agungi +23897,Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +23898,Spacious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,1,5 beds,6 baths,5 Toilets,Lekki Phase 1 +23899,Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets,Agungi +23900,Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +23901,Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +23902,Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +23903,Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +23904,Newly 4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23905,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +23906,Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +23907,Luxurious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +23908,A 4 Bedroom Semi Detached Duplex In An Estate With A Bq,Lekki Lagos,₦,"80,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +23909,4 Bedroom Semi Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +23910,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +23911,Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,6 Toilets,Lekki Phase 1 +23912,Land,Victory Park Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23913,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikota +23914,Contemporary And Luxurious 5 Bedroom Fully Detached Duplex With A Penthouse,Ikota Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +23915,Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +23916,Newly 4bedroom Semi Detached Duplex,Prime Water Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23917,Plot Of Land Measuring 450sqms In Cbd,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +23918,Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,6 baths,7 Toilets,Lekki Phase 1 +23919,Luxury Serviced 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,0,1,5 beds,6 baths,7 Toilets,Lekki Phase 1 +23920,Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +23921,4 Bedroom Fully Detached Duplex In Lekki County Homes,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +23922,Brand New 4 Bedroom Tarrace Duplex With On Two Story Floor On A Fully Serviced Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +23923,Brand New 4 Bedroom Tarrace Duplex With On Two Story Floor On A Fully Serviced Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +23924,Brand New 4 Bedroom Fully Detached Duplex With Bq,Location Inside Vgc Estate C Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +23925,Brand 4 Bedroom Semi Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,4 baths,0 Toilets,Victoria Garden City +23926,Tastefully Built 4 Bedroom Terrace Duplex In A Serene And Secured Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23927,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23928,Newly Built 4 Bedroom Terrace Duplex In A Secure And Serviced Estate,Lekki Conservation Centre Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23929,Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Lovely Neighborhood,Osapa London Jakande Lekki Lagos,₦,"200,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23930,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +23931,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Orchid Road Chevron Lekki Lagos,₦,"68,000,000/day",0,1,1,4 beds,4 baths,5 Toilets,Chevron +23932,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/year",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23933,Newly Built 4 Bedroom Fully Detached Duplex For Sale In A Secured Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23934,Newly Built 5 Bedroom Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"140,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23935,Brand New Tastefully Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23936,Newly Built Block Of 3 Bedroom Flats,Ikate Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +23937,Beautifully Built 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"67,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +23938,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Ikota +23939,Newly Built 2 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"39,000,000/month",1,1,1,2 beds,2 baths,3 Toilets,Agungi +23940,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"112,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Ikota +23941,Newly Built 5 Bedroom Contemporary Duplex In A Serene Neighborhood For Sale,Osapa London Jakande Lekki Lagos,₦,"180,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23942,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"115,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23943,Tastefully Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23944,Newly Built 5 Bedroom Contemporary Duplex In A Serene Neighborhood,Osapa London Jakande Lekki Lagos,₦,"180,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23945,Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"88,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +23946,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23947,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23948,Newly Built 2 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"39,000,000/month",1,1,1,2 beds,2 baths,3 Toilets,Agungi +23949,Brand New 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23950,Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23951,Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23952,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23953,Beautifully Designed And Well Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"88,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +23954,Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"88,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +23955,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"92,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23956,Newly Built 4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"75,000,000/year",1,1,1,4 beds,4 baths,5 Toilets,Agungi +23957,Tastefully Built 5 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23958,Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Lovely Neighborhood,Osapa London Jakande Lekki Lagos,₦,"200,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23959,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23960,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000/year",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23961,Beautifully Built 4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23962,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"78,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +23963,Newly Built 4 Bedroom Semi Detached With Bq Commercial Property,Ikota Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +23964,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +23965,Beautifully Built 5 Bedroom Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +23966,Beautifully Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23967,Tastefully Finished 5 Bedroom Fully Detached Duplex In A Secured And Serene Neighborhood,Osapa London Jakande Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +23968,Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"270,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Ologolo +23969,Newly Built 3 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"55,000,000/year",1,1,1,3 beds,3 baths,4 Toilets,Ikate +23970,Beautiful And Spacious 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"56,000,000",1,0,1,4 beds,4 baths,5 Toilets,Chevron +23971,Beautifully Built And Spacious 5 Bedroom Fully Detached Duplex With A Bq In A Serene And Secured Neighborhood,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23972,Brand New Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +23973,Brand New 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets,Victoria Garden City +23974,"Automated Elegantly Built 5 Bed Fully Detached House With Cinema,and Swimming Pool","2nd Toll Gate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +23975,Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +23976,Newly Built 2 Bedroom Apartment,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"40,000,000",0,1,1,2 beds,2 baths,2 Toilets,Agungi +23977,Newly Built 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +23978,5 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +23979,4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000/day",1,1,1,4 beds,4 baths,5 Toilets,Ikota +23980,5bedroom Contemporary Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +23981,Exclusive 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23982,Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +23983,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23984,Furnished 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +23985,6 (six) Bedrooms Duplex With Two Rooms Bq,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +23986,Water View Land,Lekki.phase One Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23987,5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"87,000,099",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +23988,5 Bed Fully Detached Magnificent Edifice,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +23989,"4 Bedroom Duplexes , Emcel Court, Orchid",Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +23990,Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +23991,Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +23992,Exquisitely Finished 4 Bedroom Semi Detached House,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +23993,5 Bedroom Contemporary Fully Detached,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +23994,2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +23995,Fully Serviced Well Built Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +23996,Furnished & Unfurnished Newly Built 5 Bedroom Duplex,Ologolo Lekki Lagos,₦,"120,000,000/sqm",0,1,1,5 beds,5 baths,5 Toilets,Ologolo +23997,648sqm Land,Flourish Gate Garden* ??abijo Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +23998,Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +23999,"4 Units Of Fully Furnished 3 Bedroom Flats, 4 Units Of Fully Furnished Mini Flats",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24000,4 Units Of Four Bedrooms Flat,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24001,Land,Chevron Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24002,Available Land,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24003,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24004,Land,Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24005,A Serviced 3bedroom Flat,"Cowrie Creek Estate Road Off Palm Springs Road, Ilasan Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24006,Newly Built 4 Bedroom Semi Detached Duplex In A Mini Estate, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24007,4 Bedroom Duplex With A Room Bq At Osapa With Gov's Consent,Inside A Gated Estate Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +24008,4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24009,5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24010,Freshly Built 4 Bedroom Semi Detached Duplex,Orchird Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24011,Land,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24012,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24013,Bedroom Terraced Duplex,"Off Chisco, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Ikate +24014,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24015,Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24016,Contemporary 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24017,Land,Ikota Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24018,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24019,Hotel,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24020,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +24021,4bedroom Fully Detached,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24022,Direct Mandate Land1300sqm Fully Sand Filled And Gated Bareland,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24023,Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +24024,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24025,Affordable 5bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24026,Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Ikate +24027,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24028,Land,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24029,Contemporary 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24030,Land,Ilasan Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24031,Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +24032,2 Units Of 4 Bedrooms Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24033,Land,Beach Land Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24034,5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24035,Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24036,Fully Detached 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24037,Superbly Finished Water Front 4 Bed Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +24038,Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +24039,Land,Ilasan Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24040,Four (4) Units Of 3 Bedrooms Flat With Two Rooms Bq,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24041,Land,Ikota Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24042,5bedroom Fully Detached,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24043,4bedroom Fully Detached,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24044,10 Acres Of Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24045,Fully Furnished 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24046,Land,"Twin Lake Estate, Opposite Chevron Hq Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24047,812.713 Sqms Of Middle Land,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24048,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24049,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24050,4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24051,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24052,Strategically Located 5 Bedroom Fully Detached Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +24053,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24054,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24055,Land,Pinnock Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24056,Land,Ilasan Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24057,Fully Detached 4 Bedroom Duplex,Orchid Area Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24058,Newly Built Luxury 4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24059,4 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24060,5 Bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +24061,3 Bedroom Bungalow (with A Detached 2 Mini Flats Demarcated By A Short Fence With Separate Gates, Lekki Lagos,₦,"20,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Lekki +24062,Brand New 4 Bedrooms Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24063,5 Bedroom Terrace House On 3 Floors +1 Room Bq,Adegbenle Street. Close To New Hall College Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24064,Luxury Exquisite 4 Bedroom Fully Detached Duplex,Chelvron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24065,1300sqm Fully Sand Filled And Gated,Overlooking Victoria Crest Iv Estate Off Orchid Road Lekki 2nd Tollgate Lekki Lagos,₦,"120,000,999",0,0,0, beds, baths, Toilets,Other Lekki +24066,Land,"Melrose Park Estate By Harris Drive, Behind Hayden Fuel Station Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24067,Newly Built 6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +24068,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24069,4 Bedroom Terrace Duplex With Bq,Well Service Estate 24 Hour Light Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24070,2 Bedroom Flat,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24071,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24072,Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24073,Brand New Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24074,Land,Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24075,Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24076,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24077,"4 Bedroom Semi Detached House In Its Own Compound With 1 Bedroom Bq, All Rooms Ensuit (master Bedroom Has Shower And Jacuzzi And Walk In Closet) On Appropriately 250 Sqm Of Land In A Gated Closed Street In Agungi.",Agungi Lekki Lagos,₦,"80,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets,Agungi +24078,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +24079,Exotically Finished 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +24080,4bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24081,Land,Lagos Business School Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24082,Newly Built 4 Bedroom Fully Detached,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +24083,Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24084,"2 Bedroom Terrace & 4 Bedroom Duplexes , Emcel Court",Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +24085,Land,Nicon Town Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24086,Superbly Built Fully Automated 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24087,Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24088,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24089,Beautifully Built And Furnished 2 Bedroom Apartment,Ikate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets,Ikota +24090,5 Bedroom Terrace Duplex On 3 Floors., Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +24091,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24092,Newly Built 4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24093,Land,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24094,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +24095,4 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24096,3 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24097,4 Bedroom Terrace With A Bq,Off Freedom Way Lekki Lagos,₦,"156,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24098,Land,Off Alpha Beach Road Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24099,4 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets,Chevron +24100,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +24101,4 Bedroom Terrace,Victory Star Court 2 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24102,Exquisite 2 Bedroom & 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +24103,Decently Built 2 Bed Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +24104,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24105,Land,Ikate Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24106,Newly Built Sparkling 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24107,Massive 6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +24108,Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24109,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +24110,Decently Built And Spaced 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24111,Beautifully Finished 3 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +24112,Newly Built 4 Bedroom Semi Detached Duplex,Cowrie Creek Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24113,4 Bedroom Terrace Duplex,"4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki. Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +24114,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24115,Luxury 5 Bedroom Fully Detached Duplex With Bq With,In Nice Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds, baths, Toilets,Ikota +24116,Land,Chevy View Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24117,Newly Built 4 Bedroom Semi Detached Duplex,Orchird Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24118,Newly Built 5 Bedroom Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24119,1786sqm Corner Piece Plot Of Land,Ologolo Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24120,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24121,Land,"Kusela Road. By Chisco Roundabout, After Lekki Gardens, Behind Cowrie Creek Estate Ikate Lekki Lagos",₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24122,3 Bedroom Apartments With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24123,4 Bedroom Semi Detached Duplex + Bq,"Orchid, Off Chevron Tollgate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24124,5 Bedroom Fully Detached Duplex,Nicon Town Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24125,Newly Built 2 Bedrooms Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +24126,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Osapa London +24127,2 Bedroom Flat,Agungi Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +24128,Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +24129,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24130,Land,Chevy View Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24131,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24132,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24133,Fully Automated Smart 4 Bedroom Terrace,Orchid Hotel After Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24134,Newly Built 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24135,Land,Lekki Phase 1 Lekki Lagos,₦,"217,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24136,Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24137,Newly Built 1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ologolo +24138,Land,"Ejikata Crescent, Off Alpha Beach Road Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24139,Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24140,Land,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24141,140plots Of Land,"Ibejulocation: Solu Orunmija, Ibeju Lekki Lekki Lagos",₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24142,150 Plots Of Land,Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24143,Land,Orchid Road Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24144,5 Bedrooms Detached Duplex With Bq,Lakeview Park 2 Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24145,Land,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24146,4 Units Of Four Bedrooms Flat With Two Rooms Bq,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24147,658 Sqm Land,Ologolo Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24148,Luxury 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24149,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24150,Land For Sale,Sangotedo Lekki Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24151,Automated 4 Bedroom Luxury Terrace Duplex,Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24152,Brand New S Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24153,Newly Built Serviced Four (4)bedroom Terrace Detached Duplex Plus Bq In A Fully Serviced Estate With 24hrs Light,Chelvron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24154,One Plot Of Land,Chelvron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24155,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24156,5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24157,4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +24158,Tastefully Finished 5 Bedrooms Fully Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +24159,Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24160,Contemporary 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +24161,Newly Built 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24162,Land,Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24163,14 Rooms Ensuite Property,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24164,Newly Built 5 Bedroom Detached In A Gated Estate,Buena Vista Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24165,Well Maintained 5 Bedroom Fully Detached Duplex In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24166,Luxury 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +24167,4 Bedroom Terrace Apartment + Bq,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24168,3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24169,4 Bedroom Terrace,Harris Drive (shapata) Lekki Lagos,₦,"54,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24170,3bed Terrace With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24171,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24172,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24173,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24174,Newly Built Luxury 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,6 baths,7 Toilets,Ikate +24175,3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +24176,Luxury Partly Furnished 3 Bedroom With Bq,Primewater View Gardens 2 Estate Lekki Phase 1 Lekki Lagos,₦,"46,000,000",1,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +24177,Apartments,Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24178,Apartments,"Orchid Road, Lafiaji Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24179,4 Bedroom Semi Detached Castle Duplex + Bq,Orchid Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24180,Affordable Lekki Terraces,Second Toll Gate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +24181,C Of O Land For Sale In Vgc Water Front Ajah Lagos State,"Lekki Palm City In Ajah, By Vgc Water Front Vgc Lekki Lagos",₦,"35,000,000/day",0,0,0, beds, baths, Toilets,Victoria Garden City +24182,2 Bedrooms Flat,Off Freedom Way. Camberwall Advantage 3 & 4 Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +24183,Newly Built 4 Bedroom Fully Detached Duplexes+bq,Harris Drive (shapata) By Vgc Vgc Lekki Lagos,₦,"79,500,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24184,Luxury 1 Bedroom Apartments,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets,Chevron +24185,"Land For Sale In Mosere Kogo Village, Lekki Peninsula Behind Eko Akete Lagos State","Vopnucity Ocean View In Mosere Kogo Village, Lekki Peninsula Behind Eko Akete Lekki Lagos",₦,"9,500,000/day",0,0,0, beds, baths, Toilets,Other Lekki +24186,Land For In Chevron Behind Northern Fourshore Lekki Lagos State,Diamond Court Estate In Chevron Behind Northern Fourshore Chevron Lekki Lagos,₦,"92,000,000/day",0,0,0, beds, baths, Toilets,Chevron +24187,2 Bedroom Luxury Apartment (off Plan),Goldmark Luxury Apartments Ilasan Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +24188,Finest Lekki Contemporary 5bedrooms Fully Detached Duplex With Pool And Bq. (lekki Phase 1),Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24189,Newly Built 3 Bedroom Maisonette In Freedom Way Lekki Phase 1 Lagos State,"Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24190,Newly Built 4 Bed Semi Detached+bq In Orchid Road Lekki Lagos State,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"72,000,000/day",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24191,4 Bedroom Terraces Castle Duplex + Bq,Orchid Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24192,Newly Built 4 Bedroom Semi Detached Duplexes+bq For Sale In Vgc Off Lekki Epe Expressway Lagos State,Harris Drive (shapata) By Vgc Vgc Lekki Lagos,₦,"69,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24193,Detailed & Exclusive Lekki 4bedrooms Semi Detached Duplex With Bq,Second Toll Gate Ikota Lekki Lagos. Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,5 Toilets,Ikota +24194,Newly Built 4 Bedroom Terrace Duplexes+bq For Sale In Vgc Off Lekki Epe Expressway Lagos State,Bosmak Heaven In Harris Drive (shapata) Vgc Lekki Lagos,₦,"60,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24195,Land For Sale In Ikate Elegushi Lekki Lagos State,Water Front Distress Sales In Elegushi Ikate Lekki Lagos,₦,"65,000,000/year",0,0,0, beds, baths, Toilets,Ikate +24196,4 Bedrooms Marionette Cyberville Estate Ikate,Cyberville Estate Ikate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +24197,3 Bedroom Terrace Duplex With Bq,By Lagos Business School Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24198,3 Bedrooms Marionette Cyberville Estate Ikate,Cyberville Estate Ikate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +24199,"A Very Clean Massive Relatively New 4 Bedroom Semi Detached Duplex Ensuite, Fitted Kitchen With Cooker, Fitted Executive Wardrobes, P.o.p Ceilings",Westend Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24200,Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"4,750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24201,Newly Built 5 Bedroom Duplex With Bq In A Conducive Area,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +24202,3bedrooms Terrace With Bq,Ikota Gra Ikota Lekki Lagos,₦,"38,000,000/day",0,0,0,3 beds,3 baths,4 Toilets,Ikota +24203,Duplex,Lekki Conversation Center Ikate Lekki Lagos,₦,"72,000,000/month",1,1,1,4 beds,3 baths,4 Toilets,Ikate +24204,Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +24205,Duplex,Spark Avenue Ikate Lekki Lagos,₦,"38,000,000/sqm",1,1,1,3 beds,3 baths,4 Toilets,Ikate +24206,Newly Built 4bedroom Duplex With Bq,Behind Nike Art Gallery Ikate Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +24207,Newly Built 4 Bedroom Semi Detached Duplex,"Victoria Crest 2 Estate, Orchid Road Lekki, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24208,Newly Built 5bedroom Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +24209,Well Built 4bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +24210,Newly Built 5 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +24211,Newly Built Luxury 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24212,Newly Built 5 Bedroom Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +24213,Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24214,Well Maintained 3bedroom Flat,Marwa Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24215,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24216,Newly Built 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +24217,Newly Built Luxury 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24218,Newly Built 3bedroom Flat With Elevator,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24219,Well Built 5bedroom Duplex,Richmond Estate Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24220,6 Units Of 5bedroom Duplex+1rm Bq,Arcadia & Pinnock Beach Estate Lekki Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +24221,Governor's Consent. Distress Sales 100% Dry Land, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24222,Newly Built 4 Bedroom Duplex With 2 Bq, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24223,Well Maintained 3bedroom Flat With Elevator,Safe Court Ikate Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +24224,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24225,4 Bedroom Flat,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +24226,Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +24227,Newly Built 4bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24228,Newly Built 3bedroom Flat With Elevator,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24229,1100 Sqm2 Bare Land,Fola Osibo Off Alibaba Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24230,4 Bedroom Very Spacious Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24231,4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +24232,Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24233,6 Units Of 5bedroom Duplex+1room Bq,Arcadia & Pinnock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +24234,Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24235,New Exquisitely Built 5 Bedroom Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +24236,Newly Built Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24237,Newly Built 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24238,Newly Built Luxury 5 Bed Fully Detached Duplex,Lekki Country Homes Lekki Phase 2 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +24239,1 Bedroom Flat,Megamound Estate Ikota Lekki Lagos,₦,"24,500",1,0,0,1 beds,1 baths,2 Toilets,Ikota +24240,Furnished 5bedroom Duplex,Rachel Nwangwu Close Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24241,2 Bedroom Apartment,Meadow Hall Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,1 Toilets,Ikate +24242,4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24243,Newly Built Studio Apartment,New Lagos City Lekki Phase 2 Lekki Lagos,₦,"13,000,000/sqm",1,1,0,1 beds,2 baths,2 Toilets,Lekki Phase 2 +24244,Luxurious 2 Bedroom Apartment,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +24245,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24246,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +24247,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24248,Twin Duplexes,Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24249,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24250,Newly Buiit 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +24251,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24252,Newly Built 4 Bedroom Fully Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +24253,Newly Built 4 Bedroom Semi Detached,Oral Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +24254,4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +24255,4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24256,Newly Built 4bedroom Semi Detached Duplex,Shevron Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +24257,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +24258,4bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +24259,4 Bedroom Semi Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24260,4bedroom Lovely Spacious Duplex,Southern View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +24261,Alluring 2floor 5bedroom Luxury With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +24262,Beautiful 4bedroom Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24263,Magnificent 5bedroom Luxury With Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +24264,Lovely 4bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +24265,Cheapest 4bedroom Semi Detached House In Ikota,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24266,Amazing 4bedroom Spacious Detached Duplex,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24267,Distress Sale Of A Spacious 4bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +24268,Exclusive 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +24269,Mega Mansion With Cinema And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +24270,Spacious 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +24271,Newly Built Lovely 4bedroom Semi Detached,Southern View Chevron Lekki Lagos,₦,"70,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +24272,Plot Of Land Measuring 460.025sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24273,4 Unit Of 3 Bed Room Flat + 4 Unit Of Mini Flat + 3 Unit Of A Room Self Contain,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,10 beds, baths, Toilets,Lekki Phase 1 +24274,4 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +24275,4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24276,5 Bedroom Semi Detached Duplex With Bq,Megamound Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +24277,A Newly Built Automated 5 Bedroom Terrace With Bq,"Ikate Elegushi, Lekki. Lagos. Ikate Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +24278,Newly Built 2 Bedroom Flat With Bq,"Ikate Elegushi, Lekki. Lagos. Ikate Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +24279,Super Spacious Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24280,Exquisitely Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24281,Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24282,4bedroom Terrace Duplexes,Kayla's Court Estate Beside Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000/month",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +24283,4bedrooms Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000/day",0,0,1,4 beds,0 baths,0 Toilets,Lekki Phase 2 +24284,2 Bedroom Terrace,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +24285,Luxury 3 Bedroom Duplex In A Well Secured Estate,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +24286,Luxury 10 Stories Residential Property At Lekki Phase 1,"Block 3 Plot 6, Rock Drive, Off C&i Leasing Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24287,Distress 4bedroom Terrace Duplex With Bq,Olive Garden Estate Osapa London Lekki Lagos,₦,"56,000,000",0,0,1,3 beds,3 baths,4 Toilets,Osapa London +24288,A Strategically Located Shopping Plaza On 470sqm (600 Sqm With Set Back) On A Full Plot Of Land With A Well Planned For Good Parking In A Nice Area,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +24289,5bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/month",0,1,0,5 beds,5 baths,5 Toilets,Ologolo +24290,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24291,Super Affordable Luxury 3 Bedroom Apartment + A Bq In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24292,Affordable Luxury 2 Bedroom Apartment In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +24293,Tastefully Finished Luxury 3 Bedroom Apartment In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24294,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +24295,3 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,4 baths,4 Toilets,Ikota +24296,4 Bedroom Terraced Duplex,"Kuzi Orizu Street In Lekki Phase 2, Ajah Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24297,4 Bedroom Terrace Duplex,Buena Vista Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +24298,Newly Built 3 Bedrooms With Bq Terrace Duplex,"New Road, Close To Chevron Drive Igbo Efon Lekki Lagos",₦,"50,000,000",0,0,1,3 beds,4 baths,4 Toilets,Other Lekki +24299,Newly Built & Exotic 4 Bedroom Semi Detached Duplex,"Chevyview Estate, Chevron Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +24300,Fully Furnished 5 Bedroom Duplex,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24301,4 Bedrooms Terrace House,Lekki Ikate Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +24302,3bedroom Flat With Bq For Sale,In A Mini Estate Igbo Efon Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +24303,Newly Built 2bedroom Flat,Elf Bus Stop ?? By White Sand Schools Lekki Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +24304,Newly Built 5bedroom Fully Detached Duplex,Chevy View Estate Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24305,3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +24306,Brand New 4bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +24307,Hotel,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24308,3 Bedrooms Terrace Duplex,2nd Toll Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +24309,Plots Of Land,Orchid Road Lekki Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24310,Newly Built 4 Bedroom Semidetached Duplex Is Located In A Serene And Secured Estate,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24311,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24312,Renaissance Reloaded Phase 1,Lekki Lagos,₦,"2,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24313,4bedroom Maisonette Duplex,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"29,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24314,7plots Facing Express,Oko Addo Ajah Lekki Lagos Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24315,6 Bedroom Duplex & Penthouse With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",1,0,0,6 beds,6 baths,7 Toilets,Chevron +24316,3bedroom Flat,General Paint Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24317,24 Plots Of Land,Idi Orogbo Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24318,2bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"18,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikota +24319,4 Bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +24320,Newly Built 4bedroom Semi Detached Duplex,Ikota Villa Estate Vgc Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +24321,Luxury 5bedroom Fully Detached,Orchid Road Ikota Lekki Lagos,₦,"44,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +24322,5 Bedroom Duplex With A Room Bq, Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24323,Land,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24324,3bedroom Terrace Duplex,General Paint Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24325,Luxury 3bedroom Flat,General Paint Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24326,4plots Of Land Close To The Road,Abijo Lekki Lagos Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24327,"Fully 4 Bedrooms And 2 Living Rooms Semi Detached Duplex On 450sqm, All Rooms Ensuite,",Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24328,Newly Built Four Unit Of 3 Bedroom Flat At Terrace Annex Estate,Terra Annex Estate . Sangotedo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +24329,"Newly Built Terraced Duplex For Sale At Ikota Gra , Ikota Lekki Lagos",Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24330,2bedroom Flat,Ohombo Road Lekki Phase 2 Lekki Lagos,₦,"16,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +24331,Affordable Lekki 4bedroom Semi Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +24332,Available Land,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24333,3bedroom Terrace Duplex,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24334,Luxury 4bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"32,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +24335,2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24336,5plots Of Land Facing Express Opposite Ikota Shopping Complex Vgc Ajah Lagos,Opposite Ikota Shopping Complex Ajah Lekki Lagos State Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24337,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +24338,Luxury 5bedroom Semi Detached,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +24339,"Affordable 4bedroom Terrace Duplex For Sale, Orchid Lekki","Orchid, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +24340,Newly Built 4bedroom Terraced Duplex For Sale In A Secured And Developed Estate At Orchid,Orchid Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +24341,4 Bedroom Fully Detached 95m In A Secured Estate,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +24342,Available Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24343,Newly Built 4bedroom Semi Detached Duplex,Bera Estate Lekki Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +24344,Full Plot Of Land At Greenville Estate Badore.,Greenville Estate Badore Lekki Lagos Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24345,Newly Built 5bedroom Fully Detached Duplex,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +24346,"Newly Built 4bedroom Terraced Duplex For Sale At Ikota Gra , Ikota Villa Estate Lekki Lagos",Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24347,Luxury 5bedroom Semi Detached,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +24348,3bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikota +24349,Luxury 4bedroom Maisonette Duplex,General Paint Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24350,5bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"38,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +24351,Newly 4 Bedroom Terraced Duplex At Paradise Chevron Drive,"Paradise Estate , Chevron Drive Lekki , Lagos Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +24352,4 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24353,4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +24354,Four Bedroom Detached Duplex With Bq.,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +24355,2bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"15,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikota +24356,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +24357,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24358,Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24359,Beautiful Contemporary 5 Bedroom Duplex,Lekki County Homes Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24360,Luxury 5 Bedroom Duplex Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24361,5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +24362,"Nicely Finished, Serviced And Fully Furnished 2bedroom Flat All Rooms Ensuite","Lekki Horizon 2 Estate, Ikate, Lagos Ikate Lekki Lagos",₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets,Ikate +24363,Luxury Hotel,Ologolo Jakande Lekki Lagos,₦,"750,000,000",0,1,1,10 beds,10 baths,10 Toilets,Other Lekki +24364,2 Bedroom Luxury Apartment,"Behind World Oil, Blenco Ikate Lekki Ikate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,2 baths,2 Toilets,Ikate +24365,5 Bedroom Duplex With A Room Bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +24366,5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets,Ologolo +24367,5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets,Ologolo +24368,5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets,Ologolo +24369,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24370,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +24371,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24372,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24373,Newly Built 5 Bedroom Fully Detached Duplex With A Pool And Bq, Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24374,4 Bedroom Detailed Terrace With Building Plan Approval,Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +24375,5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24376,Newly Built 5 Bedroom Fully Detached Duplex With Pool, Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +24377,5 Bedroom Fully Detached Duplex With A Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24378,5 Bedroom Fully Detached Sea View Duplex, Osapa London Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,5 baths,7 Toilets,Osapa London +24379,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +24380,Lekki Exclusive 4 Bedroom Semidetached Duplex By Nicon Town,Nicon Nicon Town Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +24381,"5 Bedroom Fully Detached Duplex With Pool, Cinema And Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +24382,4 Bedroom Fully Detached Duplex Iota, Ikota Lekki Lagos,₦,"85,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24383,Spacious 5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24384,5 Bedrooms Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24385,5 Bedroom Fully Detached Duplex With A Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24386,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +24387,4 Bedroom Semi Detached Duplex + Bq,"Angles Court, Abijo, Lekki Chevron Lekki Lagos",₦,"49,000,000",0,1,0,4 beds,4 baths,3 Toilets,Chevron +24388,Brand New 4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +24389,Newly Built 2 Bedroom Flat,Near Shoprite. Agungi Lekki Lagos,₦,"8,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Agungi +24390,A Brand New Tastefully Finished 4 Bedroom Fully Detached,Off Orchid Hotel Road By Lekki 2nd Toll Gate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +24391,Fluorish Gate Garden,Sunday Ejiofor Street Abijo Igbo Efon Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24392,Massive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24393,Massive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24394,Luxury 5 Bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +24395,5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24396,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +24397,5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +24398,Massive 5 Bedroom Fully Detached Smart Home With 1bq,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +24399,Trending Lekki Palm Beach Sale,Beach Front Ilasan Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets,Other Lekki +24400,Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,6 baths,6 Toilets,Victoria Garden City +24401,Massive Contemporary 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24402,5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24403,3 Bedroom Bungalow,Mayfair Garden Awoyaya Vgc Lekki Lagos,₦,"23,000,000/month",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +24404,3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +24405,617sqm Land,"Lekki Right Bosun Adekoya Street, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24406,Tastefully Finished 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +24407,Land Per Sqm,Ilasan Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24408,Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24409,Land Per Plot,Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24410,Land Per Plot,"Orchid Road, Lekki Lagos",₦,"30,000,000",0,0,0, beds,0 baths,0 Toilets,Other Lekki +24411,Land Per Plot,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24412,11 Plots Of Land,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24413,4 Bedroom Duplex,"...,. Ikota Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24414,Newly Built 4bedroom Fully Detached Duplex+ Bq,Z Lekki Phase 2 Lekki Lagos,₦,"65,000,000/month",0,1,0,5 beds,4 baths,5 Toilets,Lekki Phase 2 +24415,5 Bedroom Duplex Available,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24416,4 Bedroom Detached For Sale,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +24417,4 Bedroom Semi Detached Duplex + 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,8 baths,0 Toilets,Lekki Phase 1 +24418,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,8 Toilets,Lekki Phase 1 +24419,Duplex In Lekki Phase 1 Lekki,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +24420,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +24421,5 Bedroom Duplex Available,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,6 Toilets,Chevron +24422,5 Bedroom Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24423,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24424,Duplex For Sale In Osapa London,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +24425,5 Bedrooms Fully Detached Duplex With 2bqs,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,7 baths,0 Toilets,Lekki Phase 1 +24426,Land For Sale At Lekki Peninsula,Vgc Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +24427,Duplex In Lekki Phase 1 Lekki,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,5 Toilets,Lekki Phase 1 +24428,Duplex In Lekki Phase 1 Lekki,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +24429,Demolishable Structure,Duro Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +24430,Duplex For Sale In Agungi Lekki,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +24431,Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +24432,Shop Space,"Lake Plaza. 20,baale Street Igbo Efon Lekki Lagos",₦,"10,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24433,Block Of 4nos 3bedroom Flat All En Suite,Chevyview Estate Chevron Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +24434,Affordable Land In A Serene Neighborhood,Orofun Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"10,000,000/month",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24435,8 Flat And 3bedroom,"Isheri Oshun, Jakande Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +24436,5bedroom Stand Alone Duplex With A Bq,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +24437,(2 Units) 5 Bedrooms Semi Detached House With A Big Boys Quarters,Eleganza Garden Opp Vgc Ikota Lekki Lagos Epe Express Way. Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +24438,Commercial Shopping Complex Of 32 Shopping Mall Spaces,Ajiran Agungi Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Agungi +24439,Commercial Shopping/ Office Plaza On 3 Floors,E Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24440,3. Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,3 Toilets,Osapa London +24441,", 5 Plots On An Interlocked Road.",Igbara Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24442,"Lekki Phase 1, Developer's Delight. Joint Venture Land",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24443,"Ologolo Town Agungi, 3 Bedroom Semi Detarched Duplex Plus Bq",Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +24444,"Chevron Toll Gate Duplex, Vella Homes",Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24445,Affordable 3 Bedroom Apartment Off Plan,Ikate Lekki Lagos,₦,"26,990,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24446,Brand New 5 Bedroom Detached With Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24447,Ikate/ Ilasan 4 Bedroom Terrace Duplex,Lekki Epe Expressway Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +24448,"Chevron Lekki , 5 Bedroom Fully Detarched Duplex With Swimming Pool",Lekki Chevron Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,5 baths,6 Toilets,Chevron +24449,"Lekki Phase 1,land Measuring 1246sqm",Fatai Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24450,"Plots Of Land At Ikate Freedom Way, 650 Square Meters",Ikate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Ikate +24451,"Bakare Estate Agungi, 645sqm And 687.65sqm , 2 Plots",Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Agungi +24452,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +24453,"Pinnock Estate Land Phase1, Land Size,1363sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24454,Land Measuring 1182.402sqm,Freedomway Ikate Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24455,3 Plots Hampton Lake Estate Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Chevron +24456,Sand Filled Land,Ikota Gra Lekki County Ikota Lekki Lagos,₦,"67,000,000",0,0,0, beds, baths, Toilets,Ikota +24457,Land,Beachwood Estate Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24458,"Off Orchid Road ,before Enyo Gas Station 8 Plots Of Sand Filled Land.",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +24459,Primrose Court,Chevron Lekki Lagos,₦,"47,500,000/month",1,1,0,5 beds,4 baths,5 Toilets,Chevron +24460,Brand New 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24461,Joint Venture 400 Plots At Orchid Road By Cooplag And Ooni Of Ice Estate,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Chevron +24462,Whales County 2 Lekki,Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +24463,"Ikate, Ilasan 4 Bedroom Terrace Duplex",Oba Yekini Elegushi Royal Estate Ilasan Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +24464,Ocean Palm Estate Scheme 2 Ikate Lekki,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +24465,"Ikate, 4 Bedroom Terrace Duplex Plus Bq And 4 Ac Units, Pay And Move In",Ikate Lekki Lagos,₦,"47,000,000",1,1,0, beds, baths, Toilets,Ikate +24466,"Ikate Lekki. Vintage Court, Land Size 1200sqm",Vintage Court Ikate Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Ikate +24467,Land 1100 Sqm,"Lekki Phase1, First Gate Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24468,"Beach Resort Estate By Pinnock, 6 Hectares",Beach Resort Estate By Pinnock Igbo Efon Lekki Lagos,₦,"170,000",0,0,0, beds, baths, Toilets,Other Lekki +24469,"Plots Of Land, Belevista Estate, Chevron 2nd Toll Gate Orchid Road",Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Chevron +24470,4bedroom Terrace With A Bq,Ademola Idado Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,6 Toilets,Other Lekki +24471,2 Bedroom Flat,Agungi Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Agungi +24472,"Updc Housing Estate Beside Pinnock,osapa Land",Osapa London Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Osapa London +24473,Fully Detached 5 Bedroom Duplex With Bq,Off Wole Olatunji Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets,Lekki Phase 1 +24474,5 Bedroom Stand Alone Duplex,F Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24475,4 Bedroom Semi Detached Duplex With A Bq,E Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +24476,5 Bedroom En Suite Fully Detached House,Lekki County Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,4 baths,4 Toilets,Ikota +24477,Two Units Of Semi Detached Duplex Apartment,Adebisi Popoola Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24478,"Ora Estate, Chevron Plot Measuring 1342sqm","Eleganza, Chevron Chevron Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets,Chevron +24479,Dry Table Land At Ross Avenue Estate Orchid Road,"Off Orchid Hotel Road, Behind Coop Lag Estate Chevron Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets,Chevron +24480,Hot Land Facing Express,"Ikate, Lekki Epe Express Way Lekki Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24481,3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24482,Land,Ikota Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24483,Lavender Gardens 4 Bedroom Terrace Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24484,4 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,3 Toilets,Ikota +24485,Orchid Road Hot Jv 4 Plots 2400sqm Land,"Orchid Road, Oceanbay Estate Chevron Lekki Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24486,"Ologolo, Ikate 3 Bedroom Apartment",Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +24487,"Pinnock Estate Land, Various Sizes, 860sqm, 725sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24488,"Ikate, Ilasan 3 Bedroom Terrace Duplex Plus Bq Very Serene Compound Fully Seeviced",Ilasan Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24489,5 Bedroom Fully Detarched Duplex In An Estate On Orchid Road,"Orchid Road, Lafiaji Town Chevron Lekki Lagos",₦,"110,000,000",1,1,1,6 beds,6 baths,7 Toilets,Chevron +24490,Brand New 4 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24491,"Ologolo, Osapa London 4 Bedroom Terrace Duplex Plus Bq",Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,4 baths,5 Toilets,Ologolo +24492,"Joint Venture Land, 800sqm At Ikate Lekki.",Ikate Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Ikate +24493,5 Bedroom Fully Detached Duplex,"By Femi Okunnu Estate, Lekki Lagos Osapa London Lekki Lagos",₦,"160,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +24494,"Ilasan, 600sqm Of Land For Sale. Salem",Elevation Church Road Ilasan Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24495,10 Plots Of Land Orchid Road Lafiaji,Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Chevron +24496,2bedroom Flat With Bq,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24497,"Mega Mound Estate Land Of Various Land Sizes, 400 To 450sqm",Megamound Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0, beds, baths, Toilets,Ikota +24498,4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24499,"Freedom Way, Periwinkle Estate., 500 And 1050sqm",Freedom Way Ikate Lekki Lagos,₦,"240,000",0,0,0, beds, baths, Toilets,Ikate +24500,"Elegushi,ikate, Lekki Land 1680 Sqm",Elegushi Road Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24501,Whales County Phase 2 Orchid Road,Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24502,"Lekki Phase 1, Land Size ,2608sqm End Of Freedom Way",Lekki Phase 1 Lekki Lagos,₦,"190,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24503,Luxury Finished 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"67,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Ikota +24504,600sqm Of Land,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24505,"Christabel's Gardens Off,4 Bedroom Terrace Duplex, Chevron Toll Gate, Lekki",Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +24506,"Signature Terrace, 4 Bedroom Duplex",Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24507,"Bera Estate Chevron, Land Size, 1700sqm. Hot And Fresh",Bera Estate Chevron Chevron Lekki Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets,Chevron +24508,Waterfront Distressed Sale,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +24509,"Lekki Phase 1. Joint Venture Land, Size 1200sqm",Z Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24510,"Bera Estate, Chevron Land (a Plot)",Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Chevron +24511,4 Bedrooms Semi Detached House With Boys Quarter And Gate House In It's Own Compound,Via Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24512,2 Bedroom Affordable Luxury Flat,Lekki Epe Expressway Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +24513,2 Plots Of Ologolo Land,Z Ologolo Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24514,"Jakande Gate Land,on Osapa Road, By Victory Park Estate. 9800 Square Meters",Osapa Road Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24515,"45 Million Naira Lekki Prime Land, Chevron Orchid Road",Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +24516,Waterfront Land At Ilasan,Z Ilasan Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24517,"Ikate, 4 Bedroom Maisonette",Ikate Lekki Lagos,₦,"38,990,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24518,"Lekki Phase 1, Joint Venture Land. Size 1400sqm. No Premium. Open Proposal",Bisola Durosimi Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24519,24 Units Of 2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +24520,Lovely 5 Bedroom Duplex With 3 Rooms Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24521,Land, Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24522,Affordable 2 Bedroom Apartment,Osapa London Ologolo Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +24523,"Ilasan /ikate Joint Venture , Salem Bus Stop, 1030 Sqm",Salem Bus Stop Ilasan Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24524,"Ikate, 4 Bedroom Terrace",Ikate Lekki Lagos,₦,"48,990,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24525,"Lekki Phase 1, Land Size 3050sqm",Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24526,"Oral Estate, Chevron,.lekki Land",Z Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24527,Ilasan Land Facing Expressway,World Oil Ilasan Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +24528,Ilasan Road/ Ikate Hectares Of Land,Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets,Ikate +24529,Jv Land Of 2561 Sq.m,Ikate Elegushi Ikate Lekki Lagos,₦,"2,561",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24530,"Alpha Beach Road, Atlantic View Estate Plots Of Land O",Alpha Beach Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24531,Chevron Bera Estate 5 Bedroom Fully Detarched Duplex,Lekki Epe Expressway Chevron Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,5 baths,7 Toilets,Chevron +24532,Land,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +24533,3 Bedroom Plus Bq Penthouse (off Plan Development),Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +24534,9 Plots Of Land Chevron Alternative,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +24535,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"69,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +24536,"Ikate Land, , 800sqm And 400sm At 220k Per Square Meter",Ikate Ikate Lekki Lagos,₦,"176,000,000",0,0,0, beds, baths, Toilets,Ikate +24537,1 Bedroom Apartment,Lekki Expressway Ikate Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +24538,5 Bedroom Detached Duplex With Servant Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24539,Hotel,Ologolo Ologolo Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24540,"Lekki Phase 1, Corner Piece Land 1110sqm",Oladimeji Alao Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24541,"Land At Ikate By Nike Art Gallery, 1100sqm",By Nike Art Gallery Ikate Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24542,2 Plots Of Land For Sale At Jakande Opp Shoprite,Jakande Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24543,"Land On Expressway,lekki Ikota . 1300sqm Opposite ,mega Chicken",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Ikota +24544,Chevron Lekki 5 Bedroom Fully Detarched Duplex Plus Personal Swimming Pool,Chevron Chevron Lekki Lagos,₦,"165,000,000",1,1,0,6 beds,5 baths,6 Toilets,Chevron +24545,"Land For Sale By 2nd Toll Gate, Beside The Petrol Station Size, 2154 Sqm",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Chevron +24546,3 Bedroom Flat,"Ikate, Convenant Way Ikate Lekki Lagos",₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +24547,"Land With, Various Sizes, 1129sqm To 3500sqm",Vgc Ajah Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24548,"Hotel In Vgc, Nicon Hotels, Formerly Median Hotels And Apartment",Vgc Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24549,"Ikate, 5 Bedroom Semi Detached Duplex", Ikate Lekki Lagos,₦,"62,990,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +24550,2 Plots Of Dry Land,Chevy View Estate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +24551,3 Bedrooms Terraced Duplexe In A Secured Gated Estate,"Paradise 2 Estate Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +24552,"Ikate Elegushi Land, 10 Hectares, Beachfront",Ikate Elegushi Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets,Ikate +24553,Plot Of Land At Sugarland Estate Ikota Lekki,Lekki Epexpress Way Ikota Lekki Lagos,₦,"74,000,000",0,0,0, beds, baths, Toilets,Ikota +24554,(2 Units) Semi Detached Houses (uncompleted Building),Lekki Phase 1 Rhs* (oceanside) Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +24555,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +24556,Brand New 5 Bedroom Detached Duplex At Nicon Town,Nicon Town Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +24557,"Ilasan Land, 1,333 Square Meters",Ilasan/ Ikate Ilasan Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24558,"Plots Of Land At Ikate, Orange Island. 1000 Square Meters",Orange Island Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Ikate +24559,Ikate 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +24560,"Joint Venture,4600sqm, Lekki Right Through Pinnacle Filling Station",Oniru Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24561,"Primorose Court, Orchid Road, Lekki",Chevron Lekki Lagos,₦,"47,500,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +24562,Land At Chevron Drive( Bera Estate),Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +24563,Jakande/ Ilasan Plots Of Land.opposite Shoprite Jakande Lekki,Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24564,"Joint Venture Land,2348sqm, Sand Filled Fenced And Gated",Orchid Road Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Chevron +24565,"Affordable Orchid Road Land Lekki, Whales County Phase 2",Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Chevron +24566,"Chevron, Chevy View Estate Land",Z Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24567,4 Bedroom Terraced,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24568,8 Plots Of Land,Chevron Alternative Chevron Lekki Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24569,"Lekki Phase1 , Land Size, 2500sqm, Admiralty Way",Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24570,A Full Detached 4 Bedrooms House +1 Office Room With 3rooms Boysquarter,Nicon Twon Estate Opposite Salim Lekki Lagos,$,"1,900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24571,Ilasan Plots Of Land,Z Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24572,"Victory Park Estate Land, Various Sizes, 450sqm, 900sqm, 1900sqm",Victory Park Jakande Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24573,Affordable 3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"35,990,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24574,"Ikate, Ilasan 4 Bedroom Terrace Duplex",Oba Yekini Elegushi Royal Estate Ilasan Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +24575,"Land On Expressway,lekki Ikota . 1300sqm Opposite ,mega Chicken",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Ikota +24576,"Shoprite Road, Lekki Jakande, Victory Park Estate,land Size 1000",Jakande Lekki Lagos,₦,"175,000",0,0,0, beds, baths, Toilets,Other Lekki +24577,"Lekki Phase 1, 4,635 Square Meters. Residential Zone",Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24578,"Pínnock Estate Waterfront Land, 1000sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24579,Ilasan Land Facing Expressway,World Oil Ilasan Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +24580,"Chevron Alternative Land, 600sqm, 80 Million, Legal Fees, Surveyer, Documentation 10 Million",Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +24581,Ikate Ilasan 2 Bedroom Luxury Flat,Oba Elegushi Royal Estate Ilasan Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +24582,1300 Sqm Of Land At Ilasan Lekki,Ilasan Lekki Ilasan Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24583,5 Bedroom Penthouse With A Bq,D Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +24584,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"67,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +24585,4 Bedroom Fully Detached Duplex With A Bq,Lekki County Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24586,"Osapa London Lekki,plots Size 630sqm In Gated Estate",Osapa London Osapa London Lekki Lagos,₦,"94,000,000",0,0,0, beds, baths, Toilets,Osapa London +24587,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +24588,"Land For Sale At Ilasan Lekki, 630 Sqm",Ilasan Ikate Ilasan Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24589,Spacious Well Built And Affordable 3 Bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +24590,5 Bedroom Duplex With Bq,Izu Court Chevron Drive Chevron Lekki Lagos,₦,"99,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +24591,Ilasan Road/ Ikate Hectares Of Land,Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets,Ikate +24592,"Orchid Road, 3 Plots Of Land , Commercial Plots On Orchid Road ,1800 Sqm",Orchid Road Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Chevron +24593,Terraces And Semi Detarched Houses,Vgc Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets,Victoria Garden City +24594,"Lekki Phase 1, Commercial Plots 1500sqm Business District",Business District Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24595,3 Bedroom Terrace With Bq,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths,5 Toilets,Ikate +24596,"Plots Of Land At Osapa London, Ologolo, 1416sqm( 3 Plots)",Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Osapa London +24597,Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24598,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24599,"Osapa London Land, 500sqm And 800sqm At 180k Per Square Meters",Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets,Osapa London +24600,"Plots Of Land On Chevron , Orchid Road, Ocean Bay Estate Before Lafiaji",Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +24601,"Jakande Gate, 5 And Half Pots Of Land.opp Femi Okunnu.",Femi Okunnu Jakande Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24602,5 Bedroom Stand Alone Duplex With A Bq,L Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24603,2 Bedroom Apartment,Elegushi Royal Estate Ikate Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +24604,"Plots Of Land At Ikate Lekki, 1182 Square Meters",Water View Estate Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Ikate +24605,"Melrose Park Estate, Beside Vgc Lekki Ajah, 781 Sqm",Ikota Vgc Lekki Lagos,₦,"78,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +24606,5 Bedroom Detached Duplex At Lekki,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24607,950 Sqm Of Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24608,Whales County Estate Phase 1 Orchid Road,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +24609,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"69,990,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +24610,"Ilasan Lekki, 800sqm Of Land On Tarred Road.good Location",Ilasan Ilasan Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24611,5 Bedroom Stand Alone Penthouse With A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24612,Ikate/ Ilasan Corner Piece Land(2 Plots),Ilasan Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24613,Prime Property,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24614,5 Plots Of Prime Land Facing The Road,"Along Orchid Road, Fence Of A Gated Estate Community Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24615,"Fantastic Joint Venture, 2400sqm, Ikate Elegushi Lekki",Elegushi Ikate Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Ikate +24616,"Bera Estate Chevron, 2 Plots Corner Piece",Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +24617,5bedroom Stand Alone With A Bq,22 Elutu Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets,Osapa London +24618,Land,Z Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24619,"Ikate, Convenant Way 2 Bedroom Apartment Flat",Ikate Lekki Lagos,₦,"48,000,000",1,1,0, beds, baths, Toilets,Ikate +24620,"Nicon Town Estate Land. Various Land Sizes, 735, 1000, 1090 ( Sqm)",Nicon Town Estate Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24621,Newly Built 3 Bedroom Apartment With A Room Bq In A Fully Serviced Estate.,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"72,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24622,"Orange Island Corner Piece Land Lekki, 930 Sqm",Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24623,"Bera Estate, Chevron Land (a Plot)",Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Chevron +24624,Maiyegun / Jakande Plots Of Land,Maiyegun Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24625,3 Bedroom Flat/apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24626,"Osapa London Jv, Arcadia Groove Estate ,1245sqm",Arcadia Groove Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Osapa London +24627,Land In Chevron Drive,Chevron Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Chevron +24628,"Lekki Phase1 Land Size 3500sqm,",Lekki Phase 1 Lekki Lagos,₦,"840,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24629,"Ologolo, Ikate 1 Bedroom Apartment",Ilasan Lekki Lagos,₦,"27,000,000",1,1,0, beds, baths, Toilets,Other Lekki +24630,Top Notch Luxury Finished Fully Serviced 4 Bedroom Terrace Duplex For Sale In Agungi Lekki,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +24631,"Ologolo, Agungi.4 Bedroom Semi Detarched Duplex Plus Bq",Agungi Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +24632,Maven Court Orchid Road ( 4 Bedroom Semi Detarched Duplex With Bq,"Royal Pine Estate, Orchid Road, Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +24633,"Ikota Plots Of Land Facing Expressway, Beside Roxbury Homes","Ikota, Lekki Epe Expressway Ikota Lekki Lagos",₦,"310,000,000",0,0,0, beds, baths, Toilets,Ikota +24634,2488.5sqm Waterfront Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24635,Ikate 3 Bedroom Finished Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24636,5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24637,Affordable Luxury 3 Bedroom Apartment,Lekki Epe Expressway Ilasan Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,2 baths,3 Toilets,Other Lekki +24638,"Lekki Phase1, 4800sqm Land",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24639,6 Units Of 3 Bedroom Apartment,Jakande Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +24640,"Plots Of Land In An Estate By Burned Vista, Orchid Hotel Road. Lafiaji",Orchid Road Chevron Lekki Lagos,₦,"95,000",0,0,0, beds, baths, Toilets,Chevron +24641,2 Bedroom Apartment (12 Months Payment Plan),Ilasan Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +24642,"Oral Estate, Along Victoria Crest Road. 6 Plots",Along Victoria Crest Road Oral Estate Lekki Lagos,₦,"71,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24643,"Beach Resort, Beside Pinnock Estate Land",Osapa London Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24644,Osapa London Land,Osapa London Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +24645,"Orchid Road Land For Sale, Oceanbay Estate. 550sqm",Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +24646,3 Hectares Of Land,Elegushi Boundary Ikate Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24647,Huge Return On Landbanking Investment Project Within A Short Period Of Time,Admiralty Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"100,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24648,Osapa London Land,Victory Park Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24649,4 Bedroom Semi Detached Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24650,Land,"Ikota Expressway , Opposite Mega Chicken Ikota Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24651,"Lekki Phase1, 3100 Sqm Land",D Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24652,"Chevron Alternative Route, Plot Of Land",Chevron Axis Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +24653,"Ora Estate, Chevron Plot Measuring 1342sqm","Eleganza, Chevron Chevron Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets,Chevron +24654,1010 Sqm Of Land For Sale At Ilasan Lekki,Ilasan Lekki Ilasan Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24655,2 Bedroom Luxury Apartment,Ologolo Before Agungi Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ologolo +24656,"Lekki Phase 1, Land Fenced And Gated",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24657,"Lekki Phase1, New Market Side Of Marwa, 2264sqm",Lekki Phase 1 Lekki Lagos,₦,"220,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +24658,Land,Behind Chevron By Second Tollgate Facing Lekki Epe Express Way Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24659,5bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +24660,"Lekki Epe Expressway Ikota ,1300sqm Land For Sale.",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Ikota +24661,"Ikate, Convenant Way 4 Bedroom Terrace",Ikate Lekki Lagos,₦,"72,000,000",1,1,0, beds, baths, Toilets,Ikate +24662,"Ikate Elegushi,land Reclamation Of 50 Hectares At Ikate Elegushi, Title C Of O",Elegushi Ikate Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Ikate +24663,Chevron Lekki 2nd Toll Gate Affordable Luxury 4 Bedroom Semi Detarched Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24664,2 Bedroom Apartment,Agungi Osapa London Lekki Lagos,₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +24665,"Chevron Alternative Plots Of Land In Gated Estate, Size 730sqm. Cromwell Court",Chevron Alternative Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Chevron +24666,Affordable Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"23,990,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +24667,Decently Finished Luxury 5 Bed Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24668,5bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +24669,5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24670,Newily Built 5 Bedrooms With A Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24671,5 Bedroom Fully Detached Duplex,"Lekki County Estate, Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24672,5 Bedroom Detached Duplex Penthouse,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24673,Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24674,Land,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24675,5 Bedroom Terraced Duplex For Sale.,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +24676,A Terrace 5 Bedroom Newly Built Plus Bq,Olufemi Olatunji Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,4 baths,4 Toilets,Osapa London +24677,A 5 Bedroom Duplex,"Megamound Estate, Lekki. Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +24678,A Dry Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24679,5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000/day",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +24680,4bedroom Maisonette,Lekki Phase One Ikate Lekki Lagos,₦,"60,000,000",0,1,0, beds,4 baths,5 Toilets,Ikate +24681,Landed Property,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +24682,2bedroom Maisonette,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +24683,4 Bedroom Fully Detached Duplexes,2nd Lekki Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24684,Luxury 3 Bedroom Apartments With Bq,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +24685,20 Units (only 10 Units Left) Of 4 Bedroom Terraces,Jakande Axis Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,4 baths,5 Toilets,Osapa London +24686,5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24687,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24688,5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24689,5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24690,Decently Finished 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24691,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24692,4 Bedroom Terrace Duplexes Available,"2nd Toll Gate, Lekki Chevron Lekki Lagos",₦,"60,000,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24693,Luxury 3 Bedroom Terraced Duplex,"Madam Joy Ezetah Lane, Megamound Estate, Lekky County Estate Ikota Ikota Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +24694,2 Blocks Of 5 (no) Premium Apartments,Within Ocean Bay Estate Via Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Chevron +24695,Newly Beautifully Built 4 Bedroom + Bq Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +24696,Available Land,Orchid Road Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24697,Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24698,Plots Of Lands,Behind Abijo Gra Lekki Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24699,4 Bedroom Semi Detached Duplex With A Bq,"Oral Estate, Eleganza Lekki Lagos",₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24700,5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24701,Four Units Of 3 Bedrooms Flat,Chevvy View Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +24702,Governor's Consent,Chevvy View Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +24703,Luxury 3/4b Bedroom Terrace,Ikate Lekki Lagos,₦,"74,000,000",0,1,0,3 beds,4 baths,0 Toilets,Ikate +24704,Used 4 Bedroom Semi Detatched Duplex With A Bq In A Serene Environment,Close To Muritala Eletu Way Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +24705,Units Of 2 And 4 Bedroom Terraces,Victoria Crest Ii Opposite Ocean Bay Estate Along Orchid Hotel Ro Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24706,6 Units Of 3 Bedroom Flats With Bq, Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +24707,Units Of 2 And 3 Bedroom Apartments,"3rd Roundabout, Ikate Along Lekki Epe Express Way, Adjacent Enyo Fuel Station, Behind New Sofia Bedmate Lekki Show Room. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets,Lekki Phase 1 +24708,Lovely 2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +24709,Beautiful 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +24710,1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ologolo +24711,Affordable Luxury 4 And 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +24712,Luxury 4 Bedroom Fully Detached Duplex With Swimming Pool And Gym,2nd Toll Gate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24713,Splendid 2 Bedrooms Apartment,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +24714,Well Built 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24715,Tastefully Finished 4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +24716,4 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Ruby 2 & 3 Ologolo Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +24717,4 Bedroom Maisonette +bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24718,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24719,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"470,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24720,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24721,Adorable Spacious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +24722,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +24723,Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +24724,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24725,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +24726,1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +24727,5bedroom Fully Detached Duplex With Bq & Gate House,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24728,4 Bedroom Fully Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"130,000,000",0,1,1, beds, baths, Toilets,Ikate +24729,Brand New 3 Bedroom Apartment,Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,0 Toilets,Other Lekki +24730,Spacious Brand New 5 Bedroom Semi Detached Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +24731,"A Brand New Detached 4 Bedroom Duplex, Ikota Lekki",Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24732,Gorgeous Modern 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +24733,Penthouse On 2 Floors,"Blue Water, The Sapphire Tower Lekki Phase 1 Lekki Lagos",₦,"370,000,000",1,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +24734,Dry Land At 30% Discount Till January 28,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24735,Residential Land,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24736,Brand 3 Bedroom Flat With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +24737,4bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24738,Tasteful Finished 4bedroom Semi Detached Duplex With Bq,Tartiana Court Estate Ikota Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24739,5 Bedroom Fully Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +24740,2 Bedroom Terrace Bungalow,Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24741,Lovely 4 Bedroom Semidetached Duplex And 1 Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24742,130m,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +24743,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24744,Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24745,Off Plan Sales Of Newly Built 4 Bedroom Terrace At Osapa Lekki,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +24746,Lekki Pride Estate Apartments,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24747,5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +24748,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +24749,6 Plots Of Land,"Orchid, Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"70,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24750,One Acre Of Dry Commercial Land,Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24751,House,Off Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000/sqm",1,0,0,4 beds,4 baths,4 Toilets,Chevron +24752,4 Units Of 3bedroom Flats + 1bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24753,Spacious 5 Bedroom Fully Detached Duplex,R Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +24754,Classy 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +24755,4 Bedroom Terrace Without Bq,Along Orchid Orchid Hotel After Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24756,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24757,Newly Built Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +24758,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24759,4bedrooms Semi Detached Duplex With Bq,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24760,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24761,Newly Built 4 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +24762,4 Bedroom Duplex,Lekki Garden Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +24763,4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24764,Luxury Serviced 3 Bedroom Apartments, Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +24765,4 Bedroom Maisonette + Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24766,Affordable Luxury 4 Bedroom Fully Detached Duplex,F Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +24767,Land,Lekki Lagos,₦,"4,250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24768,A Modern Contemporary Newly Built 5bedroom Fully Detached Duplex With Bq & Cctv,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24769,4bedrooms Semi Detached Duplex With Bq For Sale!,"2nd Toll Gate By Chevron, Orchid, Lekki Phase 2 Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24770,"Luxury 4bedroom Terrace Duplex With Dstv, Swimming Pool And Play Area",Orchid Road Lekki Lagos,₦,"58,000,000",1,1,0, beds, baths, Toilets,Other Lekki +24771,4 Bedrooms Semi Detached Duplex With Bq (payment Plan And Mortgage Are Available),"2nd Toll Gate By Chevron, Lekki Phase 2 Chevron Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24772,4bedrooms Semi Detached Duplex With Bq,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +24773,3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24774,Tastefully Finished 4 Bedroom Semi Detached Duplex,"Orchid Road, Immediately After Chevron Second Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24775,Contemporary Style 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24776,Spacious Cozy 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24777,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +24778,"Newly Built 4 Bedroom Penthouse & Bq, Ikate Lekki, Lagos",Bloom Haven Residence Ikate Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +24779,Lovely Built 3 Bedroom Terrace Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +24780,Newly Built 5 Bedroom Detached Duplex At Pinnoch Estate Lekki.,Lekki Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +24781,4 Bedroom Spacious Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24782,1bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +24783,2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +24784,6 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +24785,5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +24786,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24787,4 Bedroom Semi Detached Duplex With Bq For Sale,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"85,000,000",0,0,1,0 beds,0 baths,0 Toilets,Chevron +24788,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24789,Super Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24790,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +24791,Newly Built 5 Bedroom Detached House,Cherry Vile Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24792,4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24793,Astonishing 5 Bedroom Fully Detached Duplex,F Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,0 Toilets,Osapa London +24794,4bedroom Terrace Duplex Without Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24795,2 Bedroom Apartment,"Bangbala Road, Camberwall Advantage Ikate Lekki Lagos",₦,"44,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +24796,Exquisitely Finished 5 Bedroom Fully Detached Duplex In A Serene Estate,Oral Estate Immediately After The Second Toll Gate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +24797,Beautifully Built 3 Bedrooms Terrace + Bq,Bloom Heaven Residences Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +24798,Complete Class 5 Bed Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +24799,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +24800,4 Bedroom Fully Detached Duplex And A Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24801,Dry Land In Chevron Lekki At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +24802,5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24803,Modern 4 Bedroom Terraced Duplex Home,"Romax Homes, Harris Drive Vgc Lekki Lagos",₦,"44,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24804,Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24805,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +24806,Smoothly Built 4 Bedroom Fully Detached Duplex,F Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +24807,3 Bedroom Terrace With B/q,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24808,4bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24809,5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24810,5 Bedroom Detached Duplex,Eleganza Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24811,C Of O Land Now Selling In Gracias Goshenite Okun Ajah,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24812,"Newly Built 1, 2 And 3 Apartments", Idado Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +24813,Gorgeous Modern 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +24814,Newly Built 5 Bedroom Detached House,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24815,4 Bedroom Terraced House In A Beautiful Fully Serviced Estate,"Earls Court, Ikate (3rd Roundabout) By Nike Art Gallery Vgc Lekki Lagos",₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +24816,5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24817,Classic And Very Lovely 5 Bedroom Fully Detached Duplex In A Very Serene Estate,Immediately After The Second Toll Gate Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +24818,300 Square Meter,Beside Eleganza Palace Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24819,"930sqm Dry Land For Sale With Governor's Consent At Lekki Scheme 2, Ajah",Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24820,Tastefully Finished 4bedroom Semi Detached Duplex And A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24821,1 Bedroom Terrace,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +24822,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +24823,Exquisitely Finished 5 Bedroom Fully Detached Duplex In A Serene Estate,"Ikota Villa Estate, Gra Ikota Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24824,Magnificent 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24825,Well Finished 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +24826,Newly Built 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +24827,4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24828,64 Units Of 2 Bedroom Terrace Bungalows,Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24829,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24830,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +24831,Newly Built 4 Bedroom Detached Duplex,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +24832,4 Bedroom Semi Detached Duplex,Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24833,4 Bedroom Penthouse,Z Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24834,9 Units Of Newly Build 3 Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +24835,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24836,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24837,"Exquisite ,smart Brand New 4bedroom Semi Detached Duplex +bq With Tv , Refrigerator Etc",Pantheon Smart Homes Chevron Lekki Lagos,₦,"78,000,000",0,1,1,4 beds,5 baths, Toilets,Chevron +24838,5 Bedroom Fully Detached Duplex With A Service Quarter,Chevron Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24839,5 Bedroom Fully Detached Duplex Plus 2rooms Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24840,"Luxury 5bedroom Detached Duplex With Swimming Pool, Cinema, Cctv, 2bedroom Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24841,Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24842,Available Land,Ikate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24843,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24844,5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24845,Brand New 4 Bedroom Fully Detached Duplex With 1bq,Lakeview Park Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +24846,4 Bedroom Semi Detached Duplex Plus 1 Bedroom Mini Flat,F Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +24847,5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24848,4 Bedroom Fully Detached Duplex For Sale,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets,Ikota +24849,2 Bedroom Apartment,"Ocean Palms Estate, Scheme 1, By Meadow Hall Way Ikate Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24850,4 Bedroom Semi Detached Duplex + Bq,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24851,Newly Built 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +24852,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +24853,Furnished 5 Bedroom Fully Detached Duplex With Bq,S Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +24854,Estate Land For Sale,"Off Orchid Hotel Road, Lekki Lagos. Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24855,Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,D Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +24856,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24857,Newly Built 5 Bedroom Fully Detached In A Serene Neighborhood,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000/sqm",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +24858,8 Plots Of Land,"Orchid, Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +24859,4 Bedroom Semi Detached For Sale,"Ologolo, Jakande Axis Lekki Lagos Ologolo Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Ologolo +24860,3 Bedrooms Terraces,2nd Lekki Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24861,3 Bedroom Semi Detached With Bq,Sunday Ejiofor Street Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +24862,3 Bedroom Terrace Building With Bq,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +24863,3bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +24864,2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +24865,Magnificent 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24866,3bedrooms Luxury Apartment,Ikate. Lekki Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +24867,Fully Finished Exquisite 4 Bedroom Semi Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +24868,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24869,5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24870,Exquisite Brand New Very Spacious4bedroom Semi Detached Duplex With Bq And 2living Room,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +24871,Luxury 4bedroom Terrace Duplex With Swimming Pool And Play Area With Dstv,Orchid Hotel Road Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +24872,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24873,Buy & Build 3329.669sqm Plots Of Luxury Dry Land In A Mini Estate At Orchid Hotel Road,Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +24874,5 Bedroom Fully Detached Duplex With Bq,Jakande Area Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +24875,5 Bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +24876,Newly Built 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24877,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +24878,Well Built 4 Bedroom Semi Detached Duplex,R Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +24879,4bedrooms Terraces,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +24880,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +24881,5 Bedroom Fully Detached Duplex With Bq,Jakande Area Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +24882,Luxury 4 Bedroom Fully Serviced Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",1,1,0, beds, baths, Toilets,Ikota +24883,5 Bedroom Fully Detached Duplex For Sale,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +24884,4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +24885,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +24886,4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24887,Dry Land At 15% Discount Till March 30th.,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +24888,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24889,Classic And Spacious 4 Bedroom Semi Detached Duplex In A Serene Estate,Ikota Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24890,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +24891,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +24892,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24893,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24894,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +24895,3 Bedroom Semi Detached Duplex +bq,Bogije Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +24896,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24897,Nicely Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24898,Classic 4 Bedroom Semi Detached Duplex In A Serene Estate,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24899,4 Bedroom Semi Detached Duplex With Bq And 5 Bedroom Fully Detached Duplex With Bq,"2nd Tollgate, Orchid Road Chevron Lekki Lagos",₦,"76,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +24900,5 Bedroom Fully Detached Duplex,Jakande Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24901,4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +24902,5 Bedroom Fully Detached Duplex,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24903,5 Bedroom Luxury Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",1,1,0, beds, baths, Toilets,Ikota +24904,4bedrooms Fully Detached Duplex With Bq,"2nd Toll Gate By Chevron, Lekki Phase 2 Chevron Lekki Lagos",₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24905,12 Units Of *smart* 4 Bedroom Semi Detached Duplex With Bq,"Orchid, Royal Pine Estate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +24906,5 Bedroom Fully Detached With Bq,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +24907,4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24908,1 Bedroom Luxury Apartments,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +24909,3bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +24910,Most Affordable 4 Bedroom Terrace,"2nd Tollgate, Lekki. Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +24911,Spacious Newly Built 5bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24912,Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool,D Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +24913,Top Notch 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24914,5 Bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +24915,Functional Modern Bakery,Orchid Chevron Lekki Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24916,Newly Built Luxury 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +24917,Four Bedroom Smart Terrace,Ben Flo Street Orchid Road Ikota Lekki Lagos,₦,"50,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +24918,Plot Of Dry Land With Beautiful Amenities At Westbury Homes Comes With C Of O In Bogije,"Westbury Homes, Bogije Lekki Lagos",₦,"18,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24919,Exquisite 2 Bedroom & 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"51,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24920,Newly Built Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Orchid Hotel Road Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +24921,Newly Built 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +24922,Luxury Serviced 3 Bedroom Apartments, Agungi Lekki Lagos,₦,"60,000,000",1,0,0,0 beds,0 baths,0 Toilets,Agungi +24923,Unique Style 5 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24924,4 Bedroom Fully Serviced Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,1, beds, baths, Toilets,Ikate +24925,Luxury 2 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +24926,2 Bedroom Apartment,Estate Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ologolo +24927,4 Bedroom Semi Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24928,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24929,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24930,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +24931,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24932,Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24933,T 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24934,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24935,2 Bedroom Flat,Lekki Gardens Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24936,2 Bedroom Maisonette ,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24937,4 Bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24938,Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24939,1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24940,Superb 4 Bedroom Semi Detached Duplex In A Serene Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24941,Newly Finished 4 Bedroom Semi Detached Duplex With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +24942,2bedroom Maisonette,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +24943,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +24944,Affordable Exceptional 3 Bedroom Terraced Duplex,"Romax Homes, Harris Drive Vgc Lekki Lagos",₦,"37,000,000/sqm",1,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +24945,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +24946,Classic And Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +24947,Hotel,"Vgc, Lekki Lagos Vgc Lekki Lagos",₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +24948,Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24949,5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +24950,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +24951,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +24952,Dry Land In Chevron Lekki At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +24953,Classically Finished 4 Bedroom Terraced Duplex With A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +24954,Newly Built 4 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Lagos,₦,"190,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +24955,4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +24956,Tastefully Built 4 Bedroom Duplex With Swimming Pool And Gym, Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +24957,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +24958,5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +24959,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24960,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24961,Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24962,Modern 5 Bedroom Fully Detached Duplex For Sale,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24963,Newly Built 4 Bedroom Duplex To With Bq,Chevro Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +24964,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +24965,1 Bedroom Terrace,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +24966,4 Bedroom Semi Detached With Bq,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +24967,Glorious Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,F Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +24968,Tastefully Finished 4 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +24969,Exceptionally Designed 5 Bedroom Fully Detached Duplex With A Swimming Pool In A Very Serene Estate,"Lekki County Homes, Megamound Estate Ikota Lekki Lagos",₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24970,Gorgeous 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +24971,Beautifully Finished 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +24972,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24973,An Exquisitely Built 5 Bedroom Stand Alone Duplex,Megamond Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24974,Beautiful 4 Bedroom Terrace Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +24975,Exquisite 5 Bedroom Fully Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +24976,4bedroom Super Luxury Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +24977,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +24978,5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +24979,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +24980,5 Bedroom Semi Detached Duplex Fully Furnished In A Very Good And Secured Neighborhood In Lekki Right,Lekki Lagos,₦,"150,000,000",0,0,1,5 beds, baths, Toilets,Other Lekki +24981,Hectares Of Land,"Lekki Phase1, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +24982,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +24983,Beautiful 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +24984,Newly Built 4 Bedroom Duplex,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +24985,2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24986,3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24987,6 Bedroom Fully Detached Mansion With A Penthouse,F Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,0 baths,0 Toilets,Osapa London +24988,"A Modern Contemporary Automated 5bedroom Detached Duplex With Swimming Pool, Bq, Cinema Etc",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +24989,Land,Opposite Fara Park Estate By Majek Bus Stop Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +24990,2 Bedroom Terrace Duplex,"Bloom Heaven Residences, Off Enyo Filling Station Ikate Lekki Lagos",₦,"45,000,000/year",0,1,0,2 beds,3 baths,3 Toilets,Ikate +24991,Newly Built 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +24992,Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +24993,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +24994,2 Bedroom Penthouse,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +24995,Luxurious Finished 5 Bedroom Duplex For Sale,"Ikate, Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +24996,Dry Land At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +24997,Hectares Of Land Available In A Serene Environment,Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24998,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +24999,Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Ologolo Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25000,Superb 4 Bedroom Semi Detached Duplex In A Serene Estate,Immediately After Second Toll Gate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25001,4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +25002,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Peanock Estate Osapa London Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +25003,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +25004,1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Agungi +25005,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Agungi +25006,3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Agungi +25007,1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +25008,Deluxe 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25009,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +25010,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,4 Toilets,Agungi +25011,4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +25012,5bedroom Luxury Detached Duplex With A Room Bq And Fitted Kitchen,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +25013,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,$,"160,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25014,4 Bedroom Semi Detached Duplex House With A Bq,Agungi Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25015,Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25016,4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25017,5 Bedroom Fully Detached Duplex House,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25018,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25019,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +25020,Tastefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25021,5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25022,3 Bedroom Apartment, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +25023,5 Bedroom Smart Fully Detached Duplex House,Ologolo Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25024,Available Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25025,Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25026,5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +25027,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25028,Available Land,Ikate Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25029,Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25030,Contemporary 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25031,1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25032,3 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +25033,4 Bedroom Fully Detached Duplex House With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25034,5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25035,Luxury 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25036,4 Bedroom Semi Detached Duplex House,Lekki County Homes Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25037,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25038,4 Bedroom Fully Detached Duplex House With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25039,5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +25040,5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25041,4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25042,5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25043,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25044,Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25045,4 Bedroom Semi Detached Duplex House With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25046,2 Bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25047,Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25048,4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25049,4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25050,Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25051,Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25052,2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +25053,Newly Built 4 Bedroom Terraced Duplex House,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25054,5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25055,5 Bedroom Fully Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25056,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25057,4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25058,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25059,5bedroom Maisonette,Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25060,3bedroom Serviced Apartment In A Secured And Serene Environment,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +25061,A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25062,A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25063,A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25064,Bakery,Orchid Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25065,Luxuriously Finished 4 Edroom Semi Detached Duplex With Bq And Other Luxury Facilities,Chevron Estate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +25066,Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool In Lekki Phase 1,Y Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25067,"Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,osapa London",Osapa London Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Osapa London +25068,Swoosh Super Spacious 4 Bedroom Fully Detached Duplex,Y Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25069,Contemporary 5 Bedroom Fully Detached Duplex In A Gated Estate At Ikate,7 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25070,Smoothly Built 4 Bedroom Fully Detached Duplex,Y Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25071,Astonishing 5 Bedroom Fully Detached Duplex,Y Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25072,Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,T Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25073,Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq,6 Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25074,"Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex In Ikate, Lekki",H Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25075,Asterleeds, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25076,Irving Park Estate, Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25077,Imperial Court, Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25078,Ekki Pearl Garden, Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25079,Top Notch 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25080,Well Built 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25081,High Quality 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25082,Fully Automated 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25083,Well Built Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25084,Affordable Luxury 4 Bedroom Semi Detached Suplex With Bq, Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25085,Super Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +25086,Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25087,Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +25088,Gorgeous 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25089,Fully Automated 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25090,Super Spacious 4 Bed Semi Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25091,Fully Automated 5 Bedroom Fully Detached Mansion, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25092,Stunning Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25093,Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25094,Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +25095,Newly Built Executive 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"200,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Chevron +25096,Land,Idado Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25097,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25098,3 Bedrroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +25099,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikota +25100,4 Bedroom Fully Detached & Semi Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +25101,26 Rooms Hotel At Adebayo Doherty Off Admiralty Way Lekki.,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25102,Commercial Property Directly Along Admiralty Way Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25103,"Hotel For Sale Location: Before Chevron Round About, Lekki, Close To The Expressway, Lagos.",Chevron Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Chevron +25104,5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Chevron +25105,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Chevron +25106,Office Complex On 5 Floors With 2 Bay Warehouse On 14000sqm Land At Agungi Along Lekki Epe Expressway,Agungi Lekki Lagos,₦,"4,600,000,000",0,0,0, beds, baths, Toilets,Agungi +25107,"4310sqm Land In An Old Residential Mini Estate Comprising Of 2 Blocks Of 4 Units Of 4 Bedroom Duplex Plus Servant Quarters, A Block Of 5 Units Of 4 Bedroom Terrace Duplex Plus Servant Quarters",E Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25108,"5 Bedroom House With Rooftop Patio, Garden, Swimming Pool",Pinnock Beach Estate Jakande Lekki Lagos,$,"1,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25109,4 Bedroom Fully Detached, Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,0 baths,0 Toilets,Chevron +25110,5 Units Of 3 Bedroom Flat,Prime Water View Estate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +25111,Modern & Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"445,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25112,Fully Serviced Corner Piece Decently Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"84,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +25113,*9 Units Of Newly Build 3 Bedrooms Flat* Location: *lekki Phase One*,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25114,4500sqm Of Land For Commercial Use,Monastery Road Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25115,Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds, baths, Toilets,Chevron +25116,5 Bedroom Semi Detached House With Swimming Pool, Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +25117,"*land Measuring 7,221 Square Metres Along The Lekki Expressway Beside Russell School, Ikota, Lekki.*",Ikota Lekki Lagos,₦,"890,000,000",0,0,0, beds, baths, Toilets,Ikota +25118,3 Bedroom Terrace,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds, baths, Toilets,Ikota +25119,"4000 Sqm Dry Land Location: Mayfair Gardens, Awoyaya Title: H.f.p Deed Of Assignment",Mayfair Gardens Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25120,Fully Detached 5bedroom Location: Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds, baths, Toilets,Lekki Phase 1 +25121,800sqm Land,Seagate Estate Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25122,1000sqms Water Front Land At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Osapa London +25123,11.6 Hectares Of Land,Lekki Free Trade Zone Lekki Lagos,$,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25124,10 Units Of 5 Bedrooms Detached Duplex Plus A Room Bq, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25125,Fully Furnished 4 Bedroom Detached Home,E Osapa London Lekki Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25126,11 Units 2 Bedroom Deluxe Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +25127,4 Large Bedroom Duplex,Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25128,5 Bedroom Fully Detached House With Bq And Fitted Kitchen And Swimming Pool And Elevator And Penthouse,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +25129,Brand New 12 Units Of Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Chevron +25130,26 Rooms Hotel At Adebayo Doherty Off Admiralty Way Lekki.,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25131,2 Hectres Of Fenced Bare Land 30 Plots Directly Facing Freedom Way Lekki,Lekki Phase 1 Lekki Lagos,₦,"220,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25132,Commercial Detached House With A Bq On 600sqm, Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25133,1 Unit Of 4 Bedroom Semi Detached Duplex + A Room Bq,Victory Park Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25134,"32 Room Hotel Built On 2,700 Square Metre Land", Ologolo Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,0 baths,0 Toilets,Ologolo +25135,5 Bedroom Contemporary Fully Detached Smart Duplex With Bq Hampton Bay Estate,Spar Road By Nicon Town Estate Lekki Ikate Lekki Lagos,₦,"340,000,000",0,0,0,5 beds, baths, Toilets,Ikate +25136,"5 Bedroom Detached Duplex For Sale In Pinnock Estate, Lekki, Lagos",Pinnock Estate Jakande Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25137,Plot Measuring 975.65m2,S Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25138,12 Bedroom Duplex On 1350sqm Land, Lekki Phase 1 Lekki Lagos,₦,"630,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +25139,5 Bedroom Fully Detached House With Bq And Fitted Kitchen And Swimming Pool And Elevator And Penthouse,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +25140,"For Sales Land Measuring 1700sqm Corner Piece Location:silver Spring Estate, Obamusa Agungi",Agungi Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Agungi +25141,Commercial Property Along Admiralty Lekki Phase 1 On 800sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25142,Fully Automated Smart 5 Bedroom Fully Detached Regular + Penthouse @ Corner Pieace* ,Chevron Lekki Lagos,₦,"138,000,000",0,0,0,5 beds, baths, Toilets,Chevron +25143,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25144,A Plot Of Land 900m2,Ikota Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25145,"1,100sqm Corner Piece Land. Good For Residential And Commercial Use",E Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25146,3 Bedroom Maisonnette Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +25147,Fully Automated 5 Bedroom Fully Detached Duplex With Swiminmg Pool,Oral Estate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25148,"Strategically Located 2 Wings Of 5 Bedroom Semi – Detached Houses Directly Opposite Vgc Entrance With A Set – Back Of Over 1,500sqm",Vgc Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +25149,10 Hectares Of Water Front Land At Ilasan Ikate Lekki Title: Governors Consent,Ilasan Ikate Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Ikate +25150,2000sqm Bare Waterfront Land, Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25151,Land,Jakande Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25152,5 Bedroom Fully Detached House With 2 Rooms Bq 950sqm Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25153,"5 Bedroom Fully Detached Duplexland Size Sitting On About 550sqm, 600sqm And 700sqm Respectively",In A Fully Serviced Estate Near Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Osapa London +25154,4 Bedroom Detached House,Vgc Lekki Lagos,₦,"139,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +25155,5 Bedroom Semi Detached House With Bq,Ikate Lekki Lagos,₦,"98,000,000",0,0,0,5 beds, baths, Toilets,Ikate +25156,5 Bedroom Fully Detached House Plus Boys Quarters,Ikota Lekki Lagos,₦,"132,000,000",0,0,0,5 beds, baths, Toilets,Ikota +25157,Five Bedroom Fully Detached Duplex Location: Bera Estate Chevron Drive Title: C Of O,Chevron Lekki Lagos,₦,"158,000,000",0,0,0,5 beds, baths, Toilets,Chevron +25158,Fully Furnished 4 Bedroom Detached Home,E Osapa London Lekki Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25159,4 Bedroom Fully Detached Duplex,E Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25160,4 Bedroom Semi Detached, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25161,4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25162,100 Plots @ Vgc (commercial) C Of O,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +25163,"20,000sqm At Chevron, Facing The Expressway At Lekki.",Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Chevron +25164,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,500,000",0,0,0,4 beds, baths, Toilets,Chevron +25165,5 Bedroom Fully Detached Duplex With Swimming Pool,Northern Foreshore Estate Chevron Lekki Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25166,"4,150sqm Property In Vgc Developed With 9 Nos 4 Bedroom Terrace Duplex Buildings In 3 Blocks Each",D Vgc Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25167,Brand New 12 Units Of Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Chevron +25168,Five(5)bedroom Fully Detached Duplex,Lekki County Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25169,Hotel,Admiralty Way Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25170,"Beautiful Serviced Estate With Swimming Pool And Gym, Fully Finished Apartment With Fitted Kitchen At Meadow Hall Ikate.",Meadow Hall Ikate Ikate Lekki Lagos,₦,"57,500,000",0,0,0, beds, baths, Toilets,Ikate +25171,"5,600m2 Bare Land At Ikate Lekki",Ikate Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Ikate +25172,Modern Facility Of 2 Wing Of Open Plan Retail Space On 5floors,Ologolo Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25173,Five (5) Star Hotel 13th Floors Constructed With High Quality Building Materials,Lekki Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25174,"1,700sqm Setback Of 2,300sqm Facing Lekki Epe Expressway",Ikate Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Ikate +25175,Shop Spaces Available For Sale In The New Admiralty Mall Along Admiralty Road Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25176,Newly Built 14 Units 3 Bedroom Estate Near,Lekki Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +25177,"A Massive And Well Maintained 8bedroom Detached House With 3massive Living Room, 2units Mini Flat Bq",Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25178,Fully Furnished 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Chevron +25179,Brand New 4bedroom Fully Detached Duplex With 1bq,Lakeview Park Lekki Lekki Lagos,₦,"149,500,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25180,3units Of 4bedrooms Semi Detached House + Bq @ Agung,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Agungi +25181,10 Bedroom Fully Detached House On 840sqm Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,0 baths,0 Toilets,Lekki Phase 1 +25182,97.200sqm Dry Land,Lekki Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25183,1 Unit Of 4 Bedroom Semi Detached Duplex + A Room Bq,Victory Park Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25184,5 Bedroom Detached House With 2 Room Bq.,Royal Garden Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +25185,8 Hectares (120 Plots),Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25186,A Newly Built 4 Bedroom Semi Detached Duplex (carcass) With A Room Boys Quarter.,By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +25187,3 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"11,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25188,5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25189,A Newly Built 4 Bedroom Semi Detached Duplex (carcass) With A Room Boys Quarter.,By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +25190,3 Bedroom Penthouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +25191,Fully Detached 5bedroom Location: Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds, baths, Toilets,Lekki Phase 1 +25192,5 Bedroom Fully Detached Duplex With Bq On 750sqm With 2room Bq,A Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25193,3 Bedroom Apartment ,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets,Ikota +25194,"14,000 Square Meters (3.5 Acres) Bareland Within A Gated And Fenced Expanse Located Within Sugarland Estate, Before Victoria Garden City (vgc)",Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0, beds, baths, Toilets,Victoria Garden City +25195,7 Bedrooms Fully Detached Smart Duplex,Nicon Town Estate Lekki Lagos,₦,"580,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +25196,30 Plots Of Land,S Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25197,"Luxury And Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq, All Rooms En Suite, Fitted Kitchen, Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"198,500,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +25198,2 Blocks Of 4 Units Of 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25199,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"128,000,000",0,0,0,5 beds, baths, Toilets,Agungi +25200,2 Units 4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"169,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +25201,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25202,2 Units Of 5 Bedroom Detached House With 2 Rooms Bq Each, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25203,"10 Bedroom In The Main Building , 3nos Of Mini Flats , 4 Bedroom Guest Chartlet On The Gym , All External Doors Are Bullet Proofs Base 8 , Foundation And Piling Done By Julius Berger",Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +25204,"14,000 Square Meters (3.5 Acres)",Sugarland Estate Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25205,600square Meter Land, Jakande Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25206,Two Units Of 3 Bedroom Apartments + Attached Bq.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25207,"For Sales Land Measuring 1700sqm Corner Piece Location:silver Spring Estate, Obamusa Agungi",Agungi Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Agungi +25208,4 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +25209,Newly Built 5 Bedroom Luxury Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"164,000,000",0,0,0,5 beds, baths, Toilets,Ikota +25210,10 Units Of 5 Bedroom Detached Duplex Plus A Room Bq, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25211,3600 Sqm With 800sqm Setback From The High Way Between 2nd Roundabout And 1st Roundabout On Providence,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25212,Hotel,Admiralty Way Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25213,"4,500+ Square Metres, Sandfilled And Fenced Land Registered Deed Of Assignment",Ikate Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Ikate +25214,"A Fully Serviced 4 Bedroom Townhouses Located At Ikate, Lekki",Ikate Lekki Lagos,₦,"89,000,000",0,0,0,4 beds, baths, Toilets,Ikate +25215,"Prime Developable Plot Next To Shoprite Jakande Mall* Plot Measuring 17,500sqms With Lasg Cofo",Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25216,Brand New Fully 4 Bedroom Detached With Bq,S Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25217,50 Units Of 4 Bedroom Semi Detached Houses, Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25218,5 Bedroom Detached House,Carlton Gate Estate Lekki Lagos,₦,"345,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25219,"5,600m2 Bare Land At Ikate Lekki",Ikate Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Ikate +25220,7 Units Of Waterfront Luxury Apartments Comprising 3 Bedrooms Each, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25221,11 Hectares Of Land, Nicon Town Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25222,An Office Complex On 5 Floors And With 2 Bay Warehouse On 14000sqm Landsize,Z Agungi Lekki Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25223,4 Bedroom Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25224,4 Bedroom Semi Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25225,"5 Bedroom Fully Detached Duplex With Penthouse With Gym, Swimming Pool 5 Carpark",Pinnock Beach Estate Osapa Chevron Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets,Chevron +25226,"Lagoons View Fenced And Gated Property Sitting On 1,145sqmt Land With Governors Consent Directly Along The Ever Busy Admiralty Road, Lekki. (very Close To Daytona).",Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25227,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"73,000,000",0,0,0,5 beds, baths, Toilets,Agungi +25228,Water View 3000sqm Bare Land, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25229,Commercial Property Directly Along Admiralty Way Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25230,4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25231,5 Bedroom Fully Detached Duplex With Bq And Fitted Kitchen And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +25232,55 Room Hotel On 1300sqm Before Chevron Roundabout Lekki,Chevron Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Chevron +25233,3 Bedroom Apartment,Periwinkle Estate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +25234,96 Units Of Luxury Homes Divided Into 46 Units Of 4 Bedroom Terrace +bq And 40 Units Of 4 Bedroom Semi Detached + Bq,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +25235,3000sqm With Pile Foundation At Adebayo Doherty With Approval,Lekki Lagos,$,"3,300,000",0,0,0, beds, baths, Toilets,Other Lekki +25236,3 Bedroom Terrace Apartment With A Bq In A Mini Estate,H Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +25237,3 Bedroom Penthouse Hotel Apartments,Ikate Lekki Lagos,₦,"73,000,000",0,0,0,3 beds, baths, Toilets,Ikate +25238,5 Bedroom Fully Detached Duplex With Private Cinema At Lekki 1 Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25239,Brand New Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +25240,"Stand Alone Houses (2 In Number) 5 Bedroom Duplex (bq Inclusive) Fully Fitted Kitchen, Cinema, Home Automation, Surround System, Cctv, Automated Gate, Pool",Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +25241,4bedroom Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets,Chevron +25242,5 Bedroom Mansion With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"495,500,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25243,5 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets,Chevron +25244,Various Sizes Of Serviced Plots Of Land,Ikate Jakande Lekki Lagos,₦,"99,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25245,Corner Piece Land Measuring 772.66sqm,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25246,3 Bedroom Apartment ,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets,Ikota +25247,Fully Furnished 3 Bedrooms Terrace Duplex,Conservation Road Chevron Lekki Lagos,₦,"50,000,000",1,0,1,3 beds,0 baths,0 Toilets,Chevron +25248,4 Bedroom Semi Detached Duplex With Bq,Primewater Gardens Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +25249,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"124,000,000",0,1,0,5 beds, baths, Toilets,Chevron +25250,2 Bedroom Maisonnette At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25251,Prime Water Front Measuring 3500sqm In Block 2 Vgc,Vgc Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +25252,Newly Built 5 Bedroom Luxury Fully Detached Duplex With Swimming Pool And A Bq,Megamound Estate Ikota Lekki Lagos,₦,"169,500,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25253,"14,000 Sqm (3.5 Acres) Located Within Sugarland Estate",Z Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25254,2 Bedroom Maisonettes,"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +25255,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25256,Land,"Láfíàjí, Opposite Cooplag Estate Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25257,Luxurious Fully Furnished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,1,4 beds,0 baths,0 Toilets,Lekki Phase 2 +25258,5 Bedroom Detached Home For Sale!!!,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +25259,Gazette,Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25260,Exquisitely Built Service 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25261,"5 Bedroom Maisonette In A Beautifully Layout, Gated Estate","Jakande , Lekki Lagos. Jakande Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,4 baths,4 Toilets,Other Lekki +25262,4 Bedroom Semi Detached House In A Serene Neighborhood,"Ikate, Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +25263,Partially Furnished 5 Bedrooms Semi Detached Duplex With Bq,"Orchid Road, Geral Estate, Opposite Ordchid Hotel, Ajah, Lagos Oral Estate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +25264,A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25265,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25266,A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25267,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Orchid Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25268,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25269,Already In Completion 4 Bedroom Fully Detached Duplex + Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25270,Already In Completion 4 Bedroom Fully Detached Duplex + Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25271,3 Bedrooms Block Of Flats On 3 Floors With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,4 baths,5 Toilets,Ikota +25272,3 Bedrooms Terraces,Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25273,4 Bedrooms Terraces,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25274,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25275,2 Bedrooms Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25276,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25277,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25278,4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25279,Newly Built 5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +25280,Newly Built 5 Bedroom Fully Detached Duplex Swimming Pool Plus A Room Bq,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +25281,Luxurious Fully Finished 4 Bedroom Fully Detached Duplex Plus One Bq With Swimming Pool, Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +25282,7 Bedroom Fully Detched Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +25283,Exquisitely Finished 4 Bedroom Semi Detached Duplex With 1 Room Bq,Lekki County Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25284,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25285,4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25286,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25287,Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25288,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25289,4 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25290,Tastefully Furnished Luxury 4 Bed Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25291,5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25292,Brand New 2 Bedroom Flat In An Estate,"Ologolo Road, In A Gated Street Well Secured Ologolo Lekki Lagos",₦,"36,500,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +25293,2 Plots Of Land For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +25294,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25295,Lovely 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +25296,Newly Built 4 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25297,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25298,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25299,Lovely Units Of 1 And 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,1 beds,2 baths,2 Toilets,Osapa London +25300,Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25301,Newly Built 4 Bedroom Terraces At Igho Efon,Igbo Efon Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25302,5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25303,Newly Built Beautiful ??4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25304,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +25305,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25306,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lagos Business School Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +25307,5 Bedroom Terrace House,Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25308,Plot Of Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25309,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"66,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25310,Brand New 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25311,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25312,Luxury 4 Bedroom Terrace Duplex With A Bq,Ikota Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +25313,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25314,Newly Built 4 Bedroom Terrace Duplex,Chisco Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25315,4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25316,4bedrooms With Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25317,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25318,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25319,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25320,3 Bedrooms Terrace With One Bq,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +25321,"Lovely Units Of Apartments (1,2 And 3 Bedroom)",Ilasan Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +25322,4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25323,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25324,4 Bedroom Maisonette,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25325,Land,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25326,Massive Five Bedrooms Fully Detached Duplex With Swimming Pool And Bq,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25327,5 Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25328,Exquisite 5 Bedrooms Duplex Semi Detached,"Lakeview Estate, Orchid Road Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25329,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25330,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25331,Elegantly Finished 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +25332,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25333,Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25334,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25335,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"56,000,099",1,1,1,4 beds,4 baths,5 Toilets,Chevron +25336,Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +25337,Luxury Contemporary Fully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25338,Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25339,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Mini Flat Bq,Lekki County Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25340,5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25341,Massive Waterview 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25342,Contemporary Lovely 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Osapa London +25343,Fully Detatched 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25344,Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikota +25345,Fully Serviced Corner Piece Decently Built 4 Bed Terrace Duplex In Ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +25346,5 Bedrooms Fully Detached Duplex With Bq,Z Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25347,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25348,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25349,5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +25350,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25351,Serviced 4 Bedrooms Terrace Duplex,2nd Second Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25352,4 Bedroom Semi Detached Duplex With A Room Bq. Only 4units Left.,Tartiana Court. 4units Left Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +25353,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25354,Pay 30% Deposit And Get Instant Allocation And Start Building,"Few Minutes From The Shoprite, Well Secured And Fully Interlocked Road Lekki Phase 2 Lekki Lagos",₦,"35,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25355,Stunning Super Luxury 5 Bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25356,3 Bedroom Flat,"Romay Gardens Estate, By Salem Busstop Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25357,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25358,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25359,2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +25360,5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25361,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets,Chevron +25362,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25363,2 Bedroom Terrace Duplex,Investor’s Delight Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +25364,Luxury 4 Bedroom Terrace Duplex + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +25365,2bedrooms & 3bedrooms Apartments,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25366,Contemporary Styles 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25367,4 Bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25368,Brand New 4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25369,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25370,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25371,Luxury One Bedroom Terrace,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +25372,Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25373,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25374,Luxury 3 Bedroom Terrace Duplex With 1 Bedroom Studio Apartment,"By Abraham Adesanya, Lekki Ajah. Before Lagos Business School Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,5 Toilets,Other Lekki +25375,Newly Built 3bedroom Terrace Duplex,Around Abraham Adesanya Lekki Lagos,₦,"41,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25376,5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +25377,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25378,Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +25379,Nicely Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25380,One Bedroom Flat,Yellow Residences Lekki Phase 1 Lekki Lagos,₦,"53,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +25381,Tastefully Finished 3 Bedroom Terrace Duplex,By Harris Drive.... Fully Interlocked Road From Lekki Expressway Vgc Lekki Lagos,₦,"34,000,000",0,1,0,3 beds,4 baths,4 Toilets,Victoria Garden City +25382,3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +25383,Contemporary Styled 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25384,Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25385,Super Affordable Spacious 4 Bed Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25386,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25387,4 Bedroom Apartment,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +25388,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"126,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25389,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +25390,4 Bedroom Fully Duplex With Bq,Lekki County Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25391,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25392,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25393,4 Bedroom Duplex All Rooms En Suite.,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25394,Lovely 3 Bedroom Terrace + Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +25395,Two Units Of 3 Bedroom Duplex (off Plan),Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25396,Fully Automated Duplex With Smart Home Device.,Lekki County Homes Ikota Lekki Lagos,₦,"76,000,000",0,1,0, beds, baths, Toilets,Ikota +25397,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikate +25398,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25399,Super Gorgeous 5 Bed Contemporary Duplex,Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +25400,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25401,Beautiful And Well Built 5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25402,4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"108,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25403,Leon Terrace & Semi0detached Homes,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25404,New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +25405,Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25406,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25407,5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25408,1 Bedroom Studio Apartment,Behind Romey Gardens Opposite Nicon Town Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25409,Land,Orchid Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25410,Fully Serviced 5 Bed Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +25411,Luxury 4 Bedroom Terrace Duplex.,Lekki County Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25412,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25413,Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25414,A Unit Of Tastefully Finished Brand New Four (4) Bedroom Semi Detached,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25415,4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekky County Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25416,"4 Bedroom Luxury Maisonette Homes + Bq Still Selling At Camberwall Advantage, Ikate","Camberwall Advantage Phase 2, Ikate Lekki Lagos",₦,"95,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikate +25417,Luxury 2 Bedroom Terrace,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25418,4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25419,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"197,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25420,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25421,4 Bedrooms Semi Detached And 4bedrooms Fully Detached Duplexes,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25422,5 Bedrooms Fully Detached Duplex With Bq,Z Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25423,Lovely 1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"24,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ologolo +25424,Luxury 4 Bedroom Switchless Smart Home + Bq,Lafiaji Off 2nd Toll Lekki Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25425,5bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25426,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +25427,4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25428,Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25429,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25430,4 Bedroom Terrace Duplex Off Plan,Jakande Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25431,Brand New 4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25432,3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25433,Brand New 5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25434,4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25435,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25436,Luxury 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25437,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25438,4bedrooms With Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25439,Beautiful Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lagos Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25440,Newly Built 4 Bedroom Semi Detached Duplex + Bq.,"Homes, Off Orchid, Ikota. Ikota Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +25441,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25442,Fully Detatched 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25443,1 Bedrooms Studio Apartment,Lekki Lagos,₦,"27,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25444,Luxurious Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25445,4 Bedrooms Spacious Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25446,Newly Built 3 Bedroom Luxury Flat,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25447,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25448,3 Bedroom Flat In A Fully Serviced Estate With 24 Hours Power Supply,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +25449,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25450,Available Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25451,"Mini Flat, Room & Parlor",Salem Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25452,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"81,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25453,Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25454,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25455,3 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +25456,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25457,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25458,5 Bedroom Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25459,5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25460,3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +25461,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25462,New 3 Bedroom Bungalow With Bq,Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +25463,4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25464,Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25465,Newly Built 4 Bedroom Terrace Duplex With A Bq In An Estate,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25466,Luxury 3 And 4 Bed Terrace Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +25467,Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25468,Executive 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25469,Spacious Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25470,5 Bedroom Detached House With A Bq,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25471,Luxury 4 Bedroom Terrace Duplex In An Estate Distress Offer,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25472,4 Bedrooms Terraced Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25473,2bedrooms & 3bedrooms Apartments,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25474,Fully Serviced 5 Bed Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +25475,4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25476,Newly Built 3 Bedroom Terrace Duplex With A Bq,Chevron Lekki Lagos,₦,"47,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +25477,2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Agungi +25478,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25479,4 Bedroom Detached House, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25480,Available Land,Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25481,Mini Flat Room & Parlor,Jakande Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25482,4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25483,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25484,Well Built 4 Bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +25485,Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25486,Newly Built 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"81,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +25487,?? *beautiful Luxury 4 Bedroom Fully Detached Duplex *??. *price:* N120m *location:* 2nd Toll Gate Lagos. *title:* Governor's Consent,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +25488,Magnificent Super Spacious 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25489,Luxury And Most Affordable 4 Bedroom Fully Detached Duplex With Bq,"Abraham Adesanya. Before Lagos Business School . By Atican Beach Miami, Beach And Baracuda Beach Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +25490,4 Bedroom Detached Duplex,Sangotedo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25491,New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +25492,Brand New 4 Bedroom Terrace Duplex With Bq,"Lekki Scheme 2 Estate,ogombo Before Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25493,Luxurious Fully Furnished 5 Bedroom Duplex With 2 Rooms Bq For Sale In Lekki Phase 1,"Kayode Otitoju Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +25494,Well Built Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25495,Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25496,4 Bedroom Semi Detached Duplex,Orchid 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25497,5bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25498,Newly Built Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25499,Premium Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25500,6 Bedroom Fully Detached Duplex Ensuite,Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +25501,Affordable Luxury 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25502,4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25503,4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25504,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25505,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25506,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25507,Luxury 4 Bedroom Terrace Duplex With A Bq,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25508,Joint Venture,Ikate Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Ikate +25509,Fully Automated 4 Bedroom Terrace Duplex With Smart Home Device,"Pantheon Smart Home, Lekki County Home, Ikota Lekki Lagos",₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +25510,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25511,Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25512,5bedrooms Fully Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25513,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25514,Spacious 2 Bedrooms Penthouse,Ocean Bay Estate Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +25515,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25516,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +25517,4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25518,Automated Unconventional 5 Bed Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25519,Glorious Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25520,Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25521,Land,Lekki Lagos,₦,"20,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25522,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25523,Luxury 4 Bedroom Terrace Duplex With A Bq Highly Secured,"Off Shoprite Road, Osapa Lekki Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +25524,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25525,4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25526,Brand New 6 Bedroom Detached House, Ikate Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,5 baths,6 Toilets,Ikate +25527,New 5 Bedroom Terrace Duplex,Lagos Business School Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25528,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25529,4bedrooms Fully Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25530,Exquisitely Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25531,Magnificent Super Spacious 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikota +25532,Affordable Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +25533,6 Bedroom Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25534,Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +25535,Brand New 4 Bed Semi Detached Duplex With A Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25536,Beautiful Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25537,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +25538,5 Bedroom Duplex With Bq, Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25539,Newly Built 4 Bedroom Fully Detached Duplex In An Estate,Chevron Lekki Lagos,₦,"121,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25540,New 4 Bedroom Semi Detached Duplex With Bq,Lagos Business School Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25541,Luxury 4 Bedroom Fully Detached Duplex,Caroline Atounah Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25542,3 Bedroom Flat En Suite,Jakande Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +25543,Luxury Smart 4 Bedroom Terrace Duplex With 1 Room Bq,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25544,New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25545,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25546,4 Bed Terrace Duplex With Bq And Swimming Pool In The Heart Of Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +25547,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +25548,7 Bedrom Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +25549,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25550,4bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25551,Brand New 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25552,Lovely 3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +25553,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25554,4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25555,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +25556,Clean 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25557,5 Bedroom Bungalow,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25558,2 Bedroom,Ologolo Lekki Lagos,₦,"30,000,000",0,1,1,2 beds,2 baths,2 Toilets,Ologolo +25559,5 Bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25560,5 Bedroom Luxury Family Home Fully Detached Plus Bq/ Swimming Pool,Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25561,1 Bedroom Apartment,Lekki Lagos,₦,"13,647,500",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25562,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25563,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25564,Land,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25565,Contemporary Design Smart 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25566,5 Bedroom Fully Detached Duplex With A Room Bq,Lekky County Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25567,Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25568,Luxury 4 Bedroom Switchless Smart Home + Bq,Lafiaji Off 2nd Toll Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25569,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25570,4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25571,Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25572,Distress Sale!! 5 Bedroom Semi Detached Lekki Right,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +25573,Lovely 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +25574,4 Bedroom Fully Detached Duplex And 1 Bq,Lekky County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25575,4 Bedrooms Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25576,4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25577,6 Bedroom Fully Detached Duplex With 2 Room Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +25578,Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25579,Newly Built 2 Bedroom Flat,Salem Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +25580,5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25581,Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25582,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25583,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25584,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25585,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +25586,Lovely Units Of 1 And 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,4 baths,4 Toilets,Osapa London +25587,Fully Detatched 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25588,Spacious 5 Bedroom Fully Detached Duplex,"Chevron Toll Gate, Lekki Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +25589,5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25590,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"325,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25591,2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +25592,4 Bedroom Terrace Duplex With 1 Room Bq Each,Bayview Estate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +25593,4 Bedroom Terraced Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25594,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +25595,Luxury 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25596,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +25597,5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25598,5 Bedroom Luxury Duplex,Megamound Estate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25599,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"81,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +25600,4 Bedroom Semi Detached Duplex +bq,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25601,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +25602,Affordable 2 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikota +25603,Land,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25604,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +25605,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +25606,Newly Built 4 Bedroom Terrace Duplex With A Bq,Off Romey Garden Estate Ilasan Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25607,5 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +25608,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25609,Spacious State Of The Art 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25610,Elegantly Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25611,"Tastefully Built, Spacious And Pop Finished 4 Bedroom Duplex",Oribanwa Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25612,4 Bedroom Duplex With A 2 Bedroom Bq,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +25613,Top Quality Finished 4 Bedroom Luxury Terrace + B.q,Bisola Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25614,4 Bedroom Terrace Duplex Off Plan,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25615,Fastest Developing Estate Along Lekki Expressway With C Of O,Directly Opposite The Expressway. Surrounded By Great Developments Lekki Phase 2 Lekki Lagos,₦,"7,700,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25616,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25617,Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25618,3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +25619,5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25620,Land,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25621,"Exquisitely Finished 5 Bedroom Fully Detached Duplex Swimming Pool* Price:* N135m *location:* 2nd Toll Gate, Lekki, Lagos. *title:* Governor's Consent",Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +25622,Exquisitely Finished 5 Bedroom Fully Detached Duplex With/ Without Swimming Pool And A Room Bq,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +25623,Beautiful Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +25624,Brand New 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25625,Exquisite Lovely Architecture At Pantheon Smart Homes,Pantheon Smart Homes Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25626,Beautiful 4 Bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25627,4 Bedroom Houses,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25628,Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25629,Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25630,2 Bedroom Flat,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25631,Land,Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25632,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25633,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25634,Elegantly Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekky County, Lekki Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +25635,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +25636,4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25637,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25638,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25639,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +25640,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25641,Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25642,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25643,Newly Built 2 Bedroom Apartment,"Amore Street, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000/month",0,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +25644,Newly Built Studio Apartment,Amore Street Off Freedom Way By Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,1 beds, baths, Toilets,Lekki Phase 1 +25645,4 Bedroom Semi Detached Carcass With A Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25646,Duplex And Apartment,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +25647,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25648,4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25649,4 Bedroom Mansionatte With Boys Quarter For Sale At Ikate,Bloom Haven Residences With Governor's Consent At Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +25650,4 Bedroom Penthouse For Sale At Ikate,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000/month",0,0,0, beds, baths, Toilets,Ikate +25651,3 Bedroom Penthouse With Boys Quarterfor Sale At Ikate,Bloom Haven Estate Ikate Lekki Lagos,₦,"75,000,000/month",0,0,0, beds, baths, Toilets,Ikate +25652,4 Bedroom Terrace Duplex,Victory Star Court 2 Ikota Gra Screen Environment Ikota Lekki Lagos,₦,"50,000,000/month",0,1,0,4 beds,4 baths,4 Toilets,Ikota +25653,"1 Bedroom Mansionatte For Sale At Ikate,lekki","Bloom Garden Residences With Governor's Consent Ikate,lekki Ikate Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Ikate +25654,2 Bedroom Mansionatte,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikate +25655,1 Bedroom Studio Apartment For Sale At Ikate Lekki,"Bloom Haven Residences With Governor's Consent Ikate,lekki Ikate Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets,Ikate +25656,3 Bedroom Mansionatte With Boys Quarter For Sale At Ikate Lekji,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +25657,4 Bedroom Terrace Duplex,Bosmak Haven Estate Harries Drive By(shapata) Vgc Off Vgc Lekki Lagos,₦,"54,000,000/month",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +25658,4 Bedroom Semi Detached Duplex,Vella Home Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000/month",1,1,1,0 beds,0 baths,0 Toilets,Chevron +25659,2 Bedroom Penthouse For Sale At Ikate,"Bloom Haven Residence With Governor's Consent Ikate, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikate +25660,Brand New 4bed Semi Detached Duplex,Off Freedom Way Lekki Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,0 Toilets,Ikota +25661,Premium Solar Powered Lifestyle 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +25662,800sqm Bare Land,Cowrie Creek Estate Ikate Lekki Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25663,5 Bedroom Fully Detached Duplex,Chevyview Estate In Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25664,5 Bedroom Fully Detached Duplex In A Serene And Gated Estate,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25665,900sqm Of Bareland,Rock Drive Street Off Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25666,Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25667,Newly Built Smart Terraces,Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,0 baths,0 Toilets,Chevron +25668,Two Bedrooms Maisonette Off Plan,Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +25669,Brand New 4 Bedroom Semi Detached Duplex,"Ologolo, Lekki Ologolo Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +25670,Brand New 5bed Fully Detached Duplex,Osapa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25671,Luxury Brand New 5 Bedroom Fully Detached Duplex,Off Nicon Town Road Lekki Jakande Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25672,1000sqm Cornerpiece In Nicon Town,Zone B Nicon Town Estate Lekki Nicon Town Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25673,1180sqm Of Water Front Land,Vgc Estate Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25674,5 Bedroom Duplex With Attached 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,010,000",0,0,1,9 beds,10 baths,10 Toilets,Lekki Phase 1 +25675,5 Bedroom Semi Detached Duplex,Off Babatunde Anjose Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25676,Newly Built 4 Bedroom Duplex In An Exquisite Solar Powered Estate, Ologolo Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,0 baths,0 Toilets,Ologolo +25677,1200sqm Cornerpiece Land,Zone A In Nicon Town Estate Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25678,480sqm Land With A 5 Bedroom Fully Detached Duplex On It,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25679,Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25680,Awesome 1 Bedroom Flat,Lekki County Megamound Estate Ikota Lekki Lagos,₦,"16,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +25681,750sqm Of Land,Periwinkle Lifestyle Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25682,Luxury 2 Bedroom Flats With Modern Facilities,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +25683,Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +25684,1022sqm Bare Land,A Series In Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"345,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25685,Luxury 4 Bedroom Terrace Duplex,Off Kunsela Road Ikate Lekki Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +25686,Super Luxury 5 Bed Contemporary Fully Detatched Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +25687,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25688,2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +25689,Mini Flat,Orchid Road Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,1 Toilets,Other Lekki +25690,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25691,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25692,A Furnished 5 Bedroom Duplex With 2 Rooms Bq (price Is Negotiable),Nicon Town Lekki Lagos,₦,"385,000,000",1,0,1,5 beds,5 baths,8 Toilets,Other Lekki +25693,5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25694,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25695,4 Bedroom Semi Detached Duplex,"Sabini Villa, Ajah. Lekki Phase 1 Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +25696,A Beautifully Built 4 Units Of 6bedroom Terrace Duplex Three Left With 2 Lounge Plus A Room Bq.,"Lekki, Adjacent To Updc Estate Lekki Lagos",₦,"295,000,000",0,1,0,6 beds,0 baths,0 Toilets,Other Lekki +25697,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25698,Lekki Land,Fola Osibo Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25699,Land,Twin Lake Lekki Lagos,₦,"168,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25700,Land,Omorinre Johnson Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25701,Land,Fatai Arobieke Road Lekki Phase 1 Lekki Lagos,₦,"330,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25702,A Vacant Corner Piece Of Two Wings 4 & 5 Bedroom Semi Detached House,"Sybil Iroche Street Off Durosimi Etti Road, Lekk Phase 1. Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25703,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25704,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Phase 2 Chevron Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +25705,2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ologolo +25706,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25707,4 Bedroom Detached Home,Lagos Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,0 Toilets,Other Lekki +25708,3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +25709,4bedroom Fully Detached Duplex With A Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25710,5bedroom Fully Detached Duplex With A Bq,Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +25711,30 Plots Of Land Facing The Expres,Vgc Round About Ikota Ikota Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25712,Lovely Plot Of Land,Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25713,A Beautiful 5 Bedroom Water Front Property,Northern Foreshore Estate Chevron Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25714,A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Vgc Lekki Vgc Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +25715,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +25716,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25717,A Luxurious And Contemporary 5 Bedroom Semidetached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25718,A Luxurious And Contemporary 5 Bedroom Semidetached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +25719,A Secured And 100% Land Verified Corner Piece Require No Sand Filling,Ajah Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +25720,Brand New 5 Bedroom Fully Detached Duplex,Van Daniel Estate Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +25721,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25722,Units Of 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +25723,Lurury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +25724,5 Bedroom Detached Duplex With A Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25725,4 Bedroom Semi Detached Duplex + Bq,Off Chevron Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25726,Ruby Apartments,Ologolo Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25727,Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25728,A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25729,A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25730,Four Bedroom Terrace,Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +25731,Four Bedroom Terraced + Bq,Bloom Haven Residences By Christ Embassy Chisco Ikate Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +25732,Newly Built 4bedroom Semi Detached Duplex,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,6 baths,5 Toilets,Other Lekki +25733,5 Bedrooms Detached Duplex With Bq,"Alfa Beach Road, Silicon Estate Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +25734,Newly Built 4bedroom Terrace Duplex,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +25735,3 Bedroom Duplex,Swisstrade Drive Vgc Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,4 baths,4 Toilets,Victoria Garden City +25736,Newly Built 4bedroom Semi Detached Duplex With Bq,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"70,000,000",0,0,0, beds,4 baths,5 Toilets,Other Lekki +25737,Tastefully Finished 3bedroom Apartment,Orchid Road By Lekki Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +25738,3 Bedrooms Flat,"Lekki County, Megamond Estate Ikota Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +25739,Newly Built 4bedroom Semi Detached Duplex With Bq,"Eliganza Road, Spring View Garden Ikota Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +25740,2 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +25741,Newly Built 4 Bedroom Semi Detached Duplex,Prime Water Gardens Ikate Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Ikate +25742,Brand New Luxury 5 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +25743,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25744,Lagoon Front Estate Lands,Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25745,Newly Built 4 Bedroom Duplex In A Favorable Environment,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +25746,4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +25747,Newly Built 4bedroom Terrace Duplex With Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25748,Newly Built 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25749,5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25750,Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25751,Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25752,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25753,400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25754,A Detailed Newly Built Four Bedroom Terrace At Orchid Road Lekki,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +25755,Luxury Three Bedroom Terrace At Orchid Road,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +25756,4 Bedrooms Terrace Duplex With Pool & Gym For Sale,Ikota Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25757,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"72,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +25758,4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25759,4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25760,4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +25761,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25762,Spacious 5 Bed Luxury Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25763,Luxurious 5 Terrace Duplex,Idado Idado Lekki Lagos,₦,"68,000,000/sqm",0,0,0,5 beds,7 baths,7 Toilets,Other Lekki +25764,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25765,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25766,Grand Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25767,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25768,"2 Bedroom Apartment In The Pearl Residences, Abijo Lekki",Abijo Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +25769,3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25770,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25771,Modern 4 Bedroom Semi Detached Duplex + Bq At Chevron Lekki,Off Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +25772,Available Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25773,4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25774,Fully Finished 3 Bedroom Penthouse With Bq And Cinema,"Lekki Pearl Garden Abijo, Behind Oando Fuel Station Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +25775,400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25776,Plots Of Land In Irving Park Estate Awoyaya,"Oribanwa B/stop, Awoyaya. 2mins From Mayfair Garden Lekki Lagos",₦,"13,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25777,Ruby Apartments 2 Bedroom Duplex,Ologolo Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ologolo +25778,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25779,Beautiful 4 Bedroom Semi Detached Duplex Ensuite With A Bq Close To Vgc,Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +25780,Genuine Dry Lands In Palmsprings Estate Bogije,"Bolorunpelu, Bogije Lekki Lagos",₦,"8,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25781,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25782,Beautiful Beach Front Land Elegushi Ikate Lekki,Eleguishi Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +25783,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25784,Newly Built 4bedroom Semi Detached Duplex,Alternative Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25785,Newly Built 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +25786,5 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +25787,A Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25788,Nicely Built 4 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25789,2 Bedroom Apartment,Lekki Palm City Addo Road Ikate Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25790,Available Land,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25791,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25792,5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25793,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25794,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25795,Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +25796,Affordable 4bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25797,5 Bedroom Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +25798,Newly Built Nice 4 Bed Ensuite Serviced Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25799,3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25800,"4 Bedroom Terrace At Orchid Road, Lekki",Orchid Road Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25801,4bed Room Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +25802,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25803,Plots Of Land Measuring 2000sqm,Close To Freedomway Ikate Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25804,4 Bedroom Terrace House With Bq In A Secured Gated Close,Noble Close Off White Sand By Elf Bus Stop Lekki Rhs Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25805,Newly Built 4 Bedroom Semi Detached Duplex With Bq.,Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25806,"500sqm Land In Lekki Pearl Garden, Abijo Lekki","Lekki Pearl Garden, Abijo Lekki Lagos",₦,"18,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25807,The Alverton Estates,Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25808,Available Land,Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25809,"Buy A Studio Apartment At Ocean Palms Estate , Ikate, Lekki",Ocean Palms Estate Ikate Lekki Lagos,₦,"31,800,000",0,0,0, beds, baths, Toilets,Ikate +25810,3 Bedroom With Bq Penthouse,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +25811,Brand New 4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25812,"Fantastic Ilasan Joint Venture Land, Behind Elevation Church, Ikate, Lekki","Behind Elevation Church, Ikate, Lekki Ikate Lekki Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets,Ikate +25813,New Built 3 Bedroom Plus Bq Penthouse Apartments,"Camberwall Advantage 1, Ikate Lekki Lagos",₦,"75,000,000",1,1,1,3 beds,4 baths,3 Toilets,Ikate +25814,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikota +25815,Camberwell Advantage 2 Homes,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25816,9720sqm Land,Vgc Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +25817,4 Bedroom Semi Detached Homes With Spacious Parking Lot In Chevron,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +25818,"Studio Apartment At Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki",Ikate Lekki Lagos,₦,"31,800,000",0,0,0, beds, baths, Toilets,Ikate +25819,4 Bedroom Fully Detached Duplex With A Room Bq,Z Ikota Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +25820,4 Bedroom Terrace Duplex,"Ikota Villa Estate, Mega Chicken Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +25821,"Buy 4 Bedroom Terrace With Bq At Ocean Palms Estate , Ikate, Lekki",Ocean Palms Estate Ikate Lekki Lagos,₦,"84,800,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25822,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25823,Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25824,4 Bedroom Detached Duplex With Bq.,Chevron Lekki Lagos,₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25825,Full Premium Plot At Eastland Golf Estate,Abijo Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25826,5 Bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25827,Available Land,19 Remi Olowude Street Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25828,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +25829,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25830,Luxury 2 Bedroom Apartments With Bq At The Pearl Residences,"Abijo, Behind Oando Fuel Station Off Lekki Epe Expressway Lekki Lagos",₦,"15,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +25831,4bedroom Terrace Duplex,Lekki County Home Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25832,Brand New Exclusive Fully 4 Bedroom Detached Duplex +bq For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25833,"4 Bedroom Fully Detached Duplex, An Exquisite 2 Bedroom Apartment, And Bq",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +25834,Newly Built Luxury 5 Bed En Suite Detached Duplex,X Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25835,Luxury 2 Bedroom Terrace Duplex,Bloom Heaven Residences Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +25836,Newly Built 4 Bedroom Terrace Duplex With A Maid's Room/bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25837,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +25838,2 Bedroom Apartment,Camberwall Court Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25839,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25840,Fully Detached 5 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +25841,5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25842,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25843,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25844,"4 Bedroom Semi Detached Duplex Pantheon Smart Homes, Chevron Lekki",Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25845,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +25846,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25847,50 Rooms Hotel,Ibeju Lekki Street Agungi Lekki Lagos,₦,"1,000,000,000",0,0,1,10 beds,10 baths,10 Toilets,Agungi +25848,5bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"120,000,009",0,1,0,6 beds,6 baths,7 Toilets,Chevron +25849,Newly Built 4 Bedroom Finished Semi Detached Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",1,0,1,5 beds,6 baths,6 Toilets,Ikota +25850,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25851,4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25852,Hotel,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25853,3 Bedrooms Apartment, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +25854,Available Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25855,5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25856,Dry Land At Highbridge Lagoonview Extension Inside Mayfair Garden Lekki Epe Express,"Eputu Lagasa Road, Lagasa Town Lekki Lagos",₦,"6,800,000",0,0,0, beds, baths, Toilets,Other Lekki +25857,5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +25858,2 Bedroom Apartment,Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25859,Land For Commercial Property For Sale At Lekki Phase 1,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +25860,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25861,500sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Sangotedo Lekki Lagos,₦,"17,500,000",0,0,0, beds, baths, Toilets,Other Lekki +25862,Available Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25863,4bedroom Semi Detached Duplex At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25864,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25865,2 Bedroom Flat,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +25866,Genuine Ocean View Lands At Vopnu City,"Mosere Ikoga, Lekki Lagos",₦,"4,250,000",0,0,0, beds, baths, Toilets,Other Lekki +25867,Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25868,Lovely Built 3 Bedroom Terrace Duplex With 1 Room Bq,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25869,Available Land,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25870,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +25871,Newly Built 4 Bedroom Semi Detached Duplex At Ikota,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25872,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25873,4 Bedroom Fully Detached Duplex With A Room Bq At Ikota Villa,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +25874,"4 Bedroom Semi Detached Duplex With Bq At Royal Pine Estate, Orchid Road, Lekki Lagos","Royal Pine Estate, Orchid Road Lekki Lagos",₦,"67,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25875,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25876,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +25877,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +25878,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25879,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25880,Vacant 3 Bedrooms Flat + Room Bq,Estate Agungi Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets,Agungi +25881,Newly Built 4 Bedroom Terrace House At Orchid Road Lekki Lagos,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +25882,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25883,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25884,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +25885,6 Bedroom Detached Duplex With 2 Bq,Lekki County Estate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25886,Genuine 450sqm Commercial Lands In The Wealthy Place Lekki,Lekki Free Trade Zone Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Other Lekki +25887,Luxury 2 Bedroom Terrace With Bq,"Fairmont Garden, Lekki Scheme 2 Axis Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +25888,4 Bedrooms Semi Detached House With Boys Quarter And Gate House In It's Own Compound,Via Admiralty Way Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25889,1 Bedroom Apartment, Lekki Lagos,₦,"13,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +25890,Plots Of Land In Gracias Goshenite Ogombo,"Fairmont Garden, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25891,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +25892,2 Bedroom Flat,Orchid Drive Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +25893,Affordable Lands In Medorf Luxury Estate Epe,"Epe T Junction, Lekki Epe Exp.way Lekki Lagos",₦,"1,600,000",0,0,0, beds, baths, Toilets,Other Lekki +25894,Top Notch Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25895,Luxury 5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +25896,A Detailed 4 Bedroom Maisonette With Bq,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,1 baths,1 Toilets,Ikate +25897,5 Bed Contemporary Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25898,Available Land,Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25899,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25900,"Newly Built 4 Bedroom Plus Bq Maisonette In Camberwall Advantage 2, Ikate",Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,5 baths,4 Toilets,Ikate +25901,Luxury 5 Bedroom Fully Detached Duplex,Oral Estate Extension Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +25902,"Luxury And Tastefully Finished 5 Bedroom Fully Detached Duplex(front House) With A Room Bq,massive Sitting Room, Fitted Kitchen, Large Parking Space",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25903,2 Bedroom Flat,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +25904,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +25905,Newly Built Super 4 Bedroom Ensuite Semi Detached Duplex In An Estate At Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25906,Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +25907,Newly Built 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +25908,2 Bedroom Apartment,Camberwall Advantage Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25909,Nicely Built 4 Bedroom Ensuite Detached Duplex In An Estate At Ikota Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25910,Newly Built 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25911,4 Bedroom Semi Detached Duplex With Bq With 12 Payment Plan In Imperial Court Abijo,Abijo Gra Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25912,Luxurious 3 Bedrooms Flat,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ologolo +25913,Newly Built 2 Bedroom Terrace With Bq,"Opposite Corona School, Abijo Lekki Lekki Lagos",₦,"27,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25914,Spacious 4bedroom Semi Detached Duplex With A Room Bq,Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25915,Camberwall Advantage,Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +25916,2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25917,Brand New 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25918,Luxury 3 Bedroom Apartment And Bq,"Oba Elegushi Housing Estate, Lekki Scheme 2 Vgc Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Garden City +25919,4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +25920,2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +25921,Newly Built 4 Bedroom Semi Detached Duplex,Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25922,"4bedroom Fully Detached, 2 Living Rooms With A Bq",Abraham Adesanya Vgc Lekki Lagos,₦,"60,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +25923,Off Plan 2 Bedroom Apartment,Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +25924,811sqm Land,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +25925,5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25926,Available Land,Chevy View Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25927,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +25928,Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25929,Plots Of Land On Orchid Road,Orchid Road Ikota Lekki Lagos,₦,"52,000,000",1,0,0, beds, baths, Toilets,Ikota +25930,600sqm Land At Ikota Gra Extension,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Ikota +25931,Luxury 4 Bedroom Semi Detached Duplex At Ikota Lekki,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +25932,New 5bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25933,4 Bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +25934,Newly Built 2 Bedroom Terrace With Bq,Ajiwe B/stop By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +25935,3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +25936,3 Bedroom Penthouse With Swimming Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +25937,4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +25938,Nicely Built 4 Bedroom Serviced Terrace Duplex In An Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25939,4 Bedroom Terrace At Lavender Gardens Phase,Sangotedo Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +25940,"Just Newly Out Verified & Closable Joint Venture [email protected] Chevy Estate, Chevron Drive, Lekki",Chevy Estate Chevron Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Chevron +25941,Contemporary 5 Bed Ensuite Detached Duplex In An Estate At Lekki,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +25942,5 Bedroom Fully Detached Duplex With Swimmingpool,D Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +25943,3bedrooms Terrace Duplex With Pool & Gym For Sale .,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +25944,3 Bedroom Flat,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +25945,Luxurious 2 Bedrooms Terrace Duplex,Alexandria Court By Pinnock Estate Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Osapa London +25946,Brand New And Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +25947,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +25948,6 Bedroom Detached Duplex With 2 Bq,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25949,Brand New And Tastefully Finished Serviced 4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25950,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25951,Ruby Estate,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,3 baths,3 Toilets,Ologolo +25952,4 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +25953,Off Plan 2 Bedroom Apartment,Camberwall Advantage Estate Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +25954,Plots Of Dry Land In Palmsprings Estate,Bogije Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25955,Superb 5 Bedroom Ensuite Detached Duplex At Megamound,Megamound Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +25956,4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25957,4bedroom Full Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +25958,5bedroom Fully Detached Duplex With Swimming Pool And Cinema Plus Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +25959,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25960,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25961,Buy And Build Land At Flourish Gardens Estate Abijo Lekki,Abijo Lekki Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +25962,2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +25963,400sqm Corner Piece Plot Of Land In An Estate,Lake View Estate Vgc Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets,Victoria Garden City +25964,3 Bedroom Penthouse (off Plan),Bloom Heaven Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +25965,4 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25966,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +25967,Newly Built 1 Bedroom Apartment With Bq,"Ajiwe B/stop By Abraham Adesanya, Lekki Epe Lekki Lagos",₦,"22,000,000",0,1,0,1 beds,1 baths,1 Toilets,Other Lekki +25968,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +25969,"4 Bedroom Maisonette + Bq At Camberwall Advantage Phase 1 & 2 Estate Ikate Lekki, Lagos",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25970,5 Bedroom Fully Detached Duplex With A Bq,Gra Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +25971,Fully Serviced 4 Bedroom Terraces With Pool,Nicon Town Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25972,"5 Bedrooms Fully Detached Duplex With Pool, Cinema & Gym", Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +25973,4 Bedroom Fully Detached Duplex With A Room Bq At Orchid Road.,Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +25974,5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +25975,4bedroom Terrace Duplex Ensuite With A Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +25976,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25977,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +25978,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +25979,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +25980,"3 Bedroom Bungalow, All Ensuite On 600sqm Land",Lakowe Golf Course Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +25981,5 Bedroom Fully Detached Duplex With A Bq,Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +25982,Brand New And Tastefully Finished Serviced 4 Bedroom Fully Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +25983,4 Bedrooms Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +25984,Luxury And Automated 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +25985,500 Sqm Plot Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +25986,1 Bedroom Finished Apartment,Fairfield Apartments Abijo Lekki Lekki Lagos,₦,"11,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +25987,4 Bedrooms Terrace,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +25988,Pantheon Smart Homes (4 Bedroom),2nd Tollgate Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +25989,Brand New And Tastefully Finished 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +25990,1 Bedroom Apartment In The Pearl Residences,Abijo Lekki Lagos,₦,"13,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +25991,Available Land,Vgc Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +25992,Luxurious 6 Bedroom Detached Duplex With Ocean View At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +25993,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +25994,5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +25995,(28 Units) Newly Built 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +25996,4bedroom Fully Detached With A Bq,Vgc Estate Vgc Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +25997,6 Bedroom Detached Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +25998,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +25999,400sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Amity Estate Sangotedo Lekki Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26000,5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26001,3 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 2 +26002,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +26003,Available Jv Land,Ikate Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26004,Superb 5 Bedroom Detached Duplex At Megamound,Megamound Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +26005,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26006,2 Bedroom Apartment,Ocean Palms Ii Estate Meadow Hall Way Ikate Lekki Lagos,₦,"47,700,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +26007,2 Bedroom Apartment,"The Signature Apartment , Abijo Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +26008,Newly Built 2 Bedroom Apartment,Orchid Lekki Chevron Lekki Lagos,₦,"36,000,000",1,1,0, beds, baths, Toilets,Chevron +26009,Newly Built 2 And 3 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000/month",0,0,1,2 beds,2 baths,2 Toilets,Ikota +26010,Newly Built Topnotch 4 Bedroom Serviced Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +26011,4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26012,4 Bedroom Semi Detached Duplex At Maven Homes Orchid Road Lekki,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26013,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +26014,"300sqm Land In Lekki Pearl Garden, Abijo Lekki",Abijo Lekki Lekki Lagos,₦,"11,200,000",0,0,0, beds, baths, Toilets,Other Lekki +26015,Serviced 3bedroom With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +26016,"Luxuriously Finished 4 Bedroom Fully Detached Duplex With Bq, Swimming Pool Etc",Ikota Villa Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26017,A Detailed 2 Bedroom Apartment (off Plan),Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +26018,Available Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26019,1000sqm Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26020,Beautiful Four Bedroom Semi Detached Duplex With Bq At Chevron Lekki,Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +26021,Newly Built 5bedroom Detached Duplex In A Good Serena And Secure Estate,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +26022,5 Bedroom Fully Detached Duplex With Bq,Z Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +26023,A Fully Furnished 3 Bedroom Apartment All En Suite Now Available For Purchase.,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26024,Beautiful 3 Bedroom Terrace House,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +26025,2 Bedroom Terrace Duplex,"Lekki Pride Estate, Abraham Adesanya Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +26026,600 Sqm Land,"Opposite Fara Park Estate By Majek Bus Stop, Off Lekki Epe Express Road Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26027,Newly Built 4 Bedroom Semi Detached Duplex With Bq.,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26028,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26029,4 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26030,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26031,"Half Plot At Amity Estate, Well Developed Estate, Sangotedo, Lekki",Amity Estate Sangotedo Lekki Lekki Lagos,₦,"10,500,000",0,0,0, beds, baths, Toilets,Other Lekki +26032,Super Luxury Four Bedroom Terrace Duplex In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets,Agungi +26033,Newly Built 5 Bedroom Detached Duplex,Z Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26034,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26035,Top Notch 4 Bedroom Detached Duplex In Tartiana Court Ikota,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26036,4bedroom Semi Detached Duplex Ensuite With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26037,5 Bedroom Fully Detached Smart Home,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26038,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +26039,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26040,Tasteful 4 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +26041,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26042,Furnished/ Serviced 10 Bedroom Detached House,Lekki Lagos,₦,"40,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Lekki +26043,4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +26044,2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +26045,Well Built 5 Bedroom Ensuite Detached Duplex In A Lovely Estate At Ikota Lekki,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26046,4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26047,Beautiful 4 Bedroom Terrace House At Lekki,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +26048,Stunning 3 Bedroom All Rooms En Suite Semi Detached Duplexes With Bq,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26049,4 Bedroom Fully Detached Duplex With A Room Bq At Orchid Road.,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +26050,4 Bedroom Semi Detached Homes,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,1, beds, baths, Toilets,Chevron +26051,Beautiful 4 Bedroom Terrace Duplex Ensuite With Big Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26052,Carcass (uncompleted) 3 Bedrooms Terraced Duplexe For Sale,"Paradise Estate Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +26053,Newly Built 4bedroom Terrace Duplex At Osapa London,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +26054,Newly Built 3 Bedroom Apartment With Bq And Penthouse,Ikate Lekki Lagos,₦,"72,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +26055,Newly Built 4 Bedroom Semi Detached Duplex,"Tartiana Court, Ikota Villa, Lekki Ikota Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26056,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +26057,Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +26058,3 Bedroom Apartments With Bq,"Lekki Pride Ajiwe B/stop, By Abraham Adesanya Lekki Epe Exp.way Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +26059,"Joint Venture 11.500 Sqm"" (facing The Express Directly) ""at Lekki Lagos",Lekki Chisco Round About Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26060,4beds Semi Detached Duplex With A Bq,"Chevron Toll Gate, Orchid Road Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26061,5 Bedroom Detached Duplex,Lekki Lagos,₦,"55,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +26062,3 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26063,4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26064,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26065,3 Bedroom With Bq (penthouse),Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +26066,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26067,4 Bed Detached Duplex,Ajah Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26068,5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +26069,Exquisite Brand New 6 Bedroom Detached House Plus 2room Boys Quarters,Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +26070,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26071,(2units) 4 Bedroom Semi Detached House With 2 Rooms Bq And A Gate House In Its Own Compound,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26072,4 Bedroom Semi Detached Duplex With Bq,"Victoria Bay 3 Estate, Nike Art Gallery Ikate Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26073,3 Bedroom Flat,Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26074,Available Land,Chisco Roundabout Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26075,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +26076,2 Bedrooms Apartment, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +26077,Well Maintained 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +26078,5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26079,"1, 2 And 3 Bedroom Apartments With Bq","Ajiwe Bus Stop, By Abraham Adesanya Roundabout Chevron Lekki Lagos",₦,"22,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +26080,"Newly Built 4bedroom Terrace Duplex In A Serena And Secure Estate,",2tollgate Oral Estate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26081,Contemporary 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26082,A Detailed 3 Bedroom Apartments With Bq,Ajiwe B/stop Abraham Adesanya Round About Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26083,"Pantheon Smart Homes, Chevron Lekki",Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26084,"4 Bedroom Terrace With Bq At Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki",Ikate Lekki Lagos,₦,"84,800,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26085,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26086,4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26087,4bedroom Semi Detached Duplex With A Bq,Oral Estate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26088,4 Bedroom Terrace Duplex With A Room Bq,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26089,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +26090,4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26091,4 Bedroom Maisonette,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26092,4 Bedroom Fully Detached Duplex,"Silicon Valley 2 Extension Estate Off New Road/alpha Beach Road,abolalake Lateef Arikawe Drive Lekki, Just B4 Chevron Traffic Light Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26093,4 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26094,3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikota +26095,Plots Of Land At Lekki Phase 1,Periwinkle Estate Garden Lekki Phase 1 Lekki Lagos,₦,"270,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26096,Land In Premium Eastland Golf Estate Abijo,Abijo Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets,Other Lekki +26097,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26098,A Detached Duplex,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +26099,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26100,3 Bedroom Terrace Duplex Ensuite Close To Vgc,Vgc Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +26101,4 Bedroom Terrace, Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26102,Land,Osapa London Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26103,Newly Built 4 Bedroom Terrace With Bq In Lekki Lagos.,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +26104,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26105,Newly Built 4 Bedroom Semi Detached Duplex,Circle Mall Jakande Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26106,"Luxuriously Finished 5 Bedroom Fully Detached Duplex With Bq, Swimming Pool Etc",Ikota Villa Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +26107,Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +26108,2 Bedrooms & 3 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +26109,4bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26110,600sqm Plot For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"26,400,000",0,0,0, beds, baths, Toilets,Other Lekki +26111,500sqm Land For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26112,500sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Sangotedo Lekki Lagos,₦,"17,500,000",0,0,0, beds, baths, Toilets,Other Lekki +26113,Luxury 4 Bedroom Semi Detached Duplex With Bq At Angles Court,"Abijo, Off Lekki Epe Expressway Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26114,Semi Detached 4 Bedroom Duplex At Abijo,Abijo Lekki Lagos,₦,"44,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +26115,3 Bedroom Flat,Abijo Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26116,Camberwall Advantage 2 Houses,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26117,Contemporary 5 Bedroom Ensuite Detached Duplex In A Prestigious Estate,Royal Garden Estate Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,6 Toilets,Other Lekki +26118,4 Bedroom Semi Detached Duplex Apartment Within A Secure Mini Estate At Chevron,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +26119,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +26120,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +26121,Luxury 4 Bedroom Semi Detached Duplex With Bq At Angles Court,"Abijo, Off Lekki Epe Expressway Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26122,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26123,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +26124,4 Bedroom Terrace + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26125,(2 Units) Uncompleted Building Of Semi Detached Houses With Spacious Parking Space,Lekki Phase 1 Right Hnad Side Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26126,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26127,Newly Built 4 Bedroom Terrace,Z Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +26128,Newly Built 3 Bedrooms Flat,Off Adewunmi Adebimpe Drive Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26129,3 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26130,Newly Built Nice 4 Bedroom En Suite Terrace Duplex With 24hrs Power Supply, Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +26131,4 Bedroom Detached Duplex With Bq,2 Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +26132,Available Land,Behind Elevation Church Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26133,4 Bedroom Terrace Duplex (with Payment Plan),"Imperial Court, Abijo Gra Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26134,Luxury Maisonette And Apartments,Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26135,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26136,Serviced Lands In Meridian Boulevard Estate,"Fairmont Garden, Lekki Scheme 2 Axis Lekki Phase 2 Lekki Lagos",₦,"25,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +26137,Fully Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +26138,Grand 4 Bedroom Semi Detached Duplex With Bq,"Abijo Gra, Off Lekki Epe Exp.way Lekki Lagos",₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26139,Camberwall Advantage 1 & 2 Apartments,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26140,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +26141,3 Bedroom Finished Apartments,Abijo Lekki Lagos,₦,"21,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26142,4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26143,5 Bed Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +26144,"Newly Built 4bedroom Terrace Duplexes At Agungi, Lekki",Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +26145,3 Bedroom Flats All En Suite,Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +26146,2bedroom Terrace Bungalow,Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,3 baths,3 Toilets,Chevron +26147,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +26148,3 Bedroom With Bq Penthouse At Camberwall Advantage 1,Ikate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ikate +26149,"4 Bedroom Terrace Primrose Court, Orchid Road, Lekki",Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26150,250sqm Land In Eastland Golf Estate Abijo,Abijo Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26151,Waterfront Land,Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26152,2 Bedroom Apartment At Camberwall Advantage 1,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +26153,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,H Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +26154,"5bedroom Fully Detached Duplex With Bq And Pool, Gym",Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +26155,Plots Of Dry Land In Palmsprings Estate,Bogije Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26156,600sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Amity Estate Sangotedo Lekki Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26157,Brand New 4 Bedroom Semi Detached Duplex,Oral Estate Extension Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +26158,4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,1, beds, baths, Toilets,Victoria Garden City +26159,Newly Built 5bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26160,Grand 4 Bedroom Terrace Duplex,Z Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +26161,Plots Of Land For Sale At Genesis Court Estate, Lekki Lagos,₦,"29,250,000",0,0,0, beds, baths, Toilets,Other Lekki +26162,Newly Built 3 Bedroom Apartment With A Room Bq In A Fully Serviced Estate.,Enyo Oil Ikate Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +26163,Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26164,300sqm Plot For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"13,200,000",0,0,0, beds, baths, Toilets,Other Lekki +26165,3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +26166,Stunning 3 Bedroom Semi Detached Duplexes With Bq,Bogije Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26167,Contemporary 5 Bed Ensuite Detached Duplex At Chevron Lekki,In An Estate At Chevron Drive Chevron Lekki Lagos,₦,"173,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26168,Newly Built 4bedroom Semi Detached Duplex,Chevron Tollgate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26169,Newly Built 3 Bedroom Terrace With Bq,"The Ambiance By Tribitat, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +26170,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26171,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26172,Newly Built 5 Bed Ensuite Detached Duplex In An Estate,Behind Mega Chicken Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +26173,4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26174,Contemporary 5 Bed Ensuite Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26175,5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26176,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26177,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26178,3 Bedroom Fully Serviced Terraces,Z Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets,Chevron +26179,400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +26180,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26181,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26182,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26183,Newly Built One Bedroom Terrace At Gloom Haven,Ikate Ikate Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ikate +26184,1 Bedroom Flat,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +26185,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26186,"924.7sqm Land Within Lekki 2, C Of O",Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +26187,3 Bedroom Terrace With Bq,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +26188,Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26189,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26190,"New Built 2 Bedroom Flat Apartment In Camberwall Advantage 1, Ikate",Ikate Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +26191,Pantheon Smart Homes Chevron Lekki,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +26192,5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26193,2500sqm Waterfront Bare Land(fenced&gated),"Admiralty Way,lekki Ph 1 Lekki Phase 1 Lekki Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26194,(2 Units) 5 Bedrooms Semi Detached House With Bq Parking 40 Cars,Eleganza Garden Opp Vgc Ikota Lekki Lagos Epe Express Way. Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +26195,Modernly Built Four Bedroom Terrace Duplex In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +26196,Newly Built 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26197,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +26198,4 Bedrooms Fully Detached Duplex,Beside Victoria Garden City Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26199,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26200,Astonishingly Beautiful And Well Built 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26201,Budget Friendly Beautifully Finished 3 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26202,Decently Built 4 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26203,Top Notch 4 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26204,A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26205,4 Luxury 3 Bedroom Flat Lavishly Finished,Chief Bamidele Eletu Osapa London Lekki Lagos,₦,"140,000,000/month",0,0,0,10 beds,10 baths,10 Toilets,Osapa London +26206,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26207,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26208,A Luxurious And Contemporary 5 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26209,A Luxurious 5 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26210,A Luxury And Contemporary 5 Bedroom Detached Duplex In A Serene Environment With A High Security,Lekki Phase 2 Ologolo Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +26211,Fully Serviced 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26212,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26213,Newly Built 5 Bed Room. /3 Bed Room Ensuite,Colplag Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,5 beds,6 baths, Toilets,Lekki Phase 2 +26214,A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,"Olaitan Sebanjo Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +26215,Newly Built 4 Bedroom House,Lekki Conservative Center. Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets,Chevron +26216,Luxury 5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26217,Kafsa Apartments,For Sale – Osapa/agungi/idado/ikota/vgc Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +26218,Tastafully Finished 4 Bedroom Semi Detached Duplex,Okota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26219,Whales County,"Lafiaji ,lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +26220,Newly Built Off Plan 2 Bedroom Luxury Flat,"Gbangbala Street, Off Kusenla Road, Lekki Phase 1 Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +26221,A Super Executive Newly Built Six (6) Units Of Four (4) Bedroom Semi Detached Duplexes,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +26222,Off Plan 3 Bedroom Flat,Second Toll Gate. Chevron Vgc Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths, Toilets,Other Lekki +26223,Newly Built Fully Serviced 3 & 4 Bedroom Luxury Maisonette Duplex,"Nike Art Gallery Road, Opposite Freedom Way(vfs) Lekki Phase 1 Ikate Lekki Lagos",₦,"38,990,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +26224,"A Very Clean, Massive And Well Refurbished/renovated 5 Bedrooms Fully Detached Duplex","Bera Estate, Chevron Drive Chevron Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +26225,Newly Built Six (6) Units Of Four (4) Bedroom Semi Detached Duplexes,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +26226,Newly Built 2 & 3 Bedroom Luxury Apartments,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate, Lekki Ikate Lekki Lagos",₦,"23,990,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +26227,Fantastically Built Relatively New 3 Bedroom Luxurious Flat With One Room Bq On 2nd Floor,Ichie Mike Ijezie Street Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26228,An Exotic And Unique 4 Bedroom Semi Detached Duplex .,Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +26229,New Built Pent Floor 3 Bedroom + Bq Luxury Apartment,"Gbangbala Street, Off Kusenla Road, Ikate, By Lekki Phase 1 Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26230,Newly Built Fully Serviced 5 Bedroom Luxury Detached Duplex,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate, Lekki Ikate Lekki Lagos",₦,"69,990,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +26231,Newly Built 2 Bedroom Luxury Apartment,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate Lekki Lagos",₦,"23,990,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +26232,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26233,4 Bedroom Spacious Semi Detached Duplex,"Adewale Oshi Street, Off Chief Collins Street, Lekki Phase Estate Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26234,4 Bedroom Terrace For Sale In Ikate,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26235,Newly Built 5 Bedroom Fully Detached Smart House,Near House On The Rock Ikate Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +26236,A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,Olaitan Sebanjo Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +26237,Whales County,"Lafiaji, Opposite Cooplag Estate Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +26238,A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,"Olaitan Sebanjo Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +26239,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26240,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26241,Land,Samuel Oguntuase Close Jakande Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26242,Newly Built 5 Bedroom Fully Detached Duplex,Near Pinnock Beach Estate Jakande Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +26243,5 Bedroom Fully Detached Duplex In A Serene Environment,Off Conoil Ikate Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +26244,Newly Built 2 & 3 Bedroom Luxury Flats,"Dupe Oguntade Street Off Enyo Filling Station Road, Ikate Lekki Lagos",₦,"33,500,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +26245,Semi Detached 4bedroom Duplex With 2bq's Available For Sale,"Pinnock Beach Estate, Lekki Phase1. Osapa London Lekki Lagos",₦,"200,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +26246,An Architectural Designed Newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +26247,An Architectural Designed Newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +26248,A Well Maintained And Massive 7 Bedroom Detached Duplex,"Olaitan Sebanjo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +26249,A Well Maintained And Spacious 2 Units Of 3 Bedroom Apartments,"Itumo Ogbonna Street, Lekki Peninsula Scheme Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26250,4 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26251,A Well Maintained And Spacious 2 Units Of 3 Bedroom Apartments En Suite,Itumo Ogbonna Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26252,\newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +26253,New Listing.,Osapa London Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +26254,3 Bedroom Terrace For Sale,Orchid Road Off Chevron Drive. Eleganza Lagos Chevron Lekki Lagos,₦,"26,990,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +26255,Newly Built 4 Bedroom Semi Detached Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +26256,1 Bedroom Apartment,Ruby Apartments Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,1 beds,1 baths,1 Toilets,Ologolo +26257,Newly Built 5 Bedroom Duplex With Cinema And Pool,Pinnock Beach Osapa London Lekki Lagos,₦,"450,000,000/month",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26258,4 Bedroom Duplex,Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +26259,5 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +26260,American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26261,Simply Beautiful 4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +26262,Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +26263,Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26264,4 Bedroom Fully Detached Duplex,Eden Garden Estate Beside Abraham Adensuya Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +26265,4 Bedroom Fully Detached Duplex,Eden Garden Estate Beside Abraham Adensuya Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +26266,Luxury 5 Bedroom Duplex House,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26267,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26268,Contemporary And Well Finished 5 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +26269,4 Bedroom Semi Detached Duplex,Inoyo Haven Estate Vgc Lekki Lagos,₦,"50,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +26270,Twin Duplex,Eleganza Gardens Vgc Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Garden City +26271,Luxury 4 Bedroom Detached Terrace,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26272,4 Bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +26273,4bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26274,5bedrooms Fully Detached Duplex With Bq,Jakande Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26275,1200 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26276,Newly Built 4 Bedroom Semi Detached,Before 2nd Tollgate By Chevron Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +26277,Newly Built Four Bedrooms Terrace Duplex,"Orchid Road,lekki Phase 2,lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26278,3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +26279,3 Bedroom Terraced Bungalow In A Serene Estate With 24 Hours Electricity,"Southpointe Estate, Lekki. Lekki Phase 2 Lekki Lagos",₦,"29,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +26280,"Fenced, Gated And Sand Filled 2000sqm Land", Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26281,Finished Built 5bedroom Duplex,"Oral Estate, By Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"90,000,000/day",0,0,1,5 beds,5 baths,7 Toilets,Lekki Phase 2 +26282,Buy A Plot Of Land,"Lekki, Lagos State Lekki Lagos",₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26283,Newly Built 4bedroom Terrence Duplex,"Off Admiralty Way , Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26284,Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Serene And Secure Environment,Orchid Road Chevron Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26285,Four Bedroom Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"42,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +26286,Newly Built 5 Bedrooms Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +26287,400sqm Plot Of Land,Lakeview Estate Lafiaji Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26288,Newly Built 4bedroom Terrace With A Room Bq Inside A Mini Estate,Off Femi Okunu Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +26289,650sqm Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Agungi +26290,1000sqm Plot Of Land,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26291,Massive 5 Bedroom Detached House + Bq,Serviced Estate Osapa London Lekki Lagos,₦,"400,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +26292,Newly Built 5 Bedroom,Chevron Lekki Lagos,₦,"169,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26293,Newly Built 8 Units Of 4 Bedroom Terrace Apartments,D Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +26294,1050sqm Corner Piece Plot Of Land,Gated Environment Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Ikate +26295,Newly Built 5 Bedroom Detached Home,A Osapa London Lekki Lagos,₦,"189,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26296,Newly Built 4 Bedroom,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26297,5bedroom Fully Detached House With A Room Bq Within A Mini Estate,Behind Zenith Bank Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26298,2 Plots Of Land,Developing Area Ologolo Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Ologolo +26299,Luxuriously Finished 5 Bedroom Detached House With Bq,Serviced Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +26300,Newly Built 4 Bedroom Detached Duplex,E Chevron Lekki Lagos,₦,"189,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26301,5bedroom Fully Detached House With A Room Bq,Ikate Lekki Lagos,₦,145,0,1,0,5 beds,6 baths,6 Toilets,Ikate +26302,2 Units Of Three Bedrooms Apartment,Igbo Efon Road Off Lekki Epe Expressway Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,4 Toilets,Other Lekki +26303,Vacant Plot Measuring 900sqms,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26304,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26305,5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26306,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26307,4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26308,5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26309,On Going 4bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,5 baths,0 Toilets,Ikate +26310,"5 Bedrooms, 2 Living Areas & Double Volume Living Room","U3 Estate, By Goshen Estate Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26311,Brand New 3 Bedroom With Bq,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26312,Corner Piece 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26313,Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"78,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26314,Newly Built Luxury 5 Bedroom Detached Duplex,Lekki Country Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +26315,Amazing 3 Bedroom Terrace Duplex With Bq,"Spg Road, Amandansun Street Ologolo Lekki Lagos",₦,"60,900,000",0,1,0,3 beds,3 baths,4 Toilets,Ologolo +26316,4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +26317,Newly Built 5 Bedroom Duplex,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +26318,Newly Built Standard 4 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +26319,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26320,4 Bedroom Terrace Duplex With Penthouse And Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26321,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26322,Newly Built 4 Bedroom Terrace Duplex Within Lekki,"West Bridge 2, Orchid Road By Chevron Toll Gate. Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +26323,Dry Land With Government Excision,Magbon Alade In Ibeju Lekki Lga Lagos Lekki Phase 1 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26324,Luxurious Finished Of 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26325,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikate +26326,"Super Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema, And Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26327,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26328,Fully Detached 5 Bedroom Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +26329,A Newly Built 4bedroom Detarched Duplex Ensuite With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26330,4 Bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26331,Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26332,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +26333,"5 Bedroom Fully Detached Duplex House , With Bq And Swimming Pool","Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +26334,4bedroom Terrace Duplexes With One Room Bq Inside A Mini Estate.,Ajiran Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +26335,Newly Built 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26336,3 Bedroom Terraced Duplex,"Lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +26337,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26338,4 Bedroom Detached Smart Home With Bq,2nd Tollgate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26339,4 Bedroom Fully Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26340,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +26341,4 Bedroom Semi Detached Duplex House With A Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +26342,Contemporary 5 Bedroom Fully Detached Duplex House With A Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"380,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +26343,4 Bedroom Semi Detached Duplex House With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26344,4 Bedroom Terraced Duplex,"Lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26345,5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26346,5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26347,8 Units Block Of 2 Bedroom Apartment,Agungi By Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ologolo +26348,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26349,4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26350,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26351,3 Bedroom Apartment With Bq,"By Agungi , Ologolo Lekki . Ologolo Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ologolo +26352,Contemporary 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +26353,5 Bedroom Detached Duplex House For Sale,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +26354,Serviced 3 Bedroom Apartment, Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +26355,4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26356,Tastefully Finished 4bed Room Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +26357,Newly Built 5 Bed Rooms Detached Duplex With Bq,"County Estate , Lekki Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +26358,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26359,Newly Built 4bed Rooms Terrence In An Estate,Orchid Road Ikate Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +26360,Newly Build 4bed Rooms Duplex With Bq,Orchid Road Ikate Lekki Lagos,₦,"72,000,000",0,1,1, beds, baths, Toilets,Ikate +26361,2 Plots Of Land,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26362,4 Bedroom Semi Detached Duplex With Bq,By Agungi Ologolo Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +26363,Dry Land With Government Approved Excision,Eleko Beach Vgc Lekki Lagos,₦,"9,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +26364,Hotel Apartments,Vgc Vgc Lekki Lagos,₦,"1,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +26365,Residential Plot Of Land,Eleko Vgc Lekki Lagos,₦,"15,000,000/sqm",0,0,0, beds, baths, Toilets,Victoria Garden City +26366,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26367,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26368,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26369,Government Approved Excision,Bolorounpelu Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26370,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26371,Block Of 6 Nos Of 3 Bedroom Flats,Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"550,000,000/year",0,0,0,0 beds,4 baths,4 Toilets,Lekki Phase 1 +26372,"Exclusive 4bedroom Terrace ,gym,foothball Pitch.",Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +26373,Exclusive 4bedroom Terrace With Gym And Football Pitch.,S Ikate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +26374,Elegant 5 Bedroom Semi Detached Duplex With Bq,D Osapa London Lekki Lagos,₦,"85,500,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +26375,Newly Built 5 Bedroom Detached Duplex With Bq,X Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +26376,Newly Built 5 Bedroom Detached Duplex With Bq,X Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +26377,Magnificent 5 Bedroom Detached Duplex,D Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +26378,Newly Built 4bedroom Duplex Semi Detached With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +26379,Luxury 4 Bedroom Fully Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths, Toilets,Chevron +26380,Luxury 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000/year",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26381,Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths,5 Toilets,Chevron +26382,Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,4 beds, baths,5 Toilets,Osapa London +26383,4 Bedroom Semi Detached Duplex,Z Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +26384,Beautiful 2 Bedroom Apartment For Sale,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,2 beds, baths,3 Toilets,Lekki Phase 1 +26385,Luxury 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths,6 Toilets,Other Lekki +26386,Luxury 5 Bedroom Detached Duplex With A Bq For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths,6 Toilets,Chevron +26387,Deluxe 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26388,"Elegant 4 Bedroom Semi Detached Duplex For Sale In Jakande, Lekki Lagos",Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +26389,Beautiful And Spacious 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets,Ikota +26390,Luxury 4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,5 Toilets,Ikota +26391,Deluxe 5 Bedroom Fully Detached Duplex With Bq For Sale Second Toll Gate Lekki Lagos,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,6 baths, Toilets,Other Lekki +26392,Luxury 4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +26393,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths,5 Toilets,Lekki Phase 1 +26394,Luxury 4 Bedroom Detached Duplex For Sale At Chevron Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26395,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds, baths,5 Toilets,Osapa London +26396,Luxury 4bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26397,Elegant Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26398,Elegant 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths,5 Toilets,Lekki Phase 2 +26399,Luxury 5 Bedroom Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26400,Luxury 4 Bedroom Fully Furnished Detached Duplex,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26401,Elegantly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,6 Toilets,Ikota +26402,Luxury 2 Bedrooom Apartment,"Ilasan, Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +26403,4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26404,4 Bedroom Terrace For Sale At Orchid Road Lagos,Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +26405,Luxury 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26406,Deluxe 5 Bedroom Semi Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26407,Luxury 4 Bedroom Terrace For Sale At Vgc Lekki Lagos,Vgc Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +26408,Deluxe 4 Bedroom Semi Detached Terrace,... Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26409,Luxurious 4 Bedroom Fully Detached Duplex,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26410,Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths,6 Toilets,Ikate +26411,Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"330,000,000",0,0,1,5 beds, baths,6 Toilets,Ikate +26412,Deluxe 4 Bedroom Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki Lagos,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +26413,Newly Built 2 Bedroom Terrace Apartment,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds, baths,3 Toilets,Ikota +26414,Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26415,Beautiful 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26416,Beautiful 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26417,Luxury 4bedroom Detached Duplex, Idado Lekki Lagos,₦,"55,500,000",0,0,1,4 beds,4 baths,0 Toilets,Other Lekki +26418,Beautiful And Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds, baths,5 Toilets,Ikota +26419,Deluxe 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,5 Toilets,Ikota +26420,Luxury 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,5 beds, baths,6 Toilets,Lekki Phase 2 +26421,Deluxe 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +26422,Deluxe 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26423,Luxury 5 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26424,Newly Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26425,"Affordable 4 Bedroom Semi Detached Duplex For Sale In Lekki, Lagos",Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +26426,Luxury 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26427,Luxury 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +26428,Luxury 4 Bedroom Fully Detached Duplex For Sale At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +26429,Deluxe 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths,5 Toilets,Chevron +26430,Luxury 4 Bedroom Semi Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26431,Luxury 4 Bedroom Detached Duplex For Sale At Chevron Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26432,Luxury 4bedroom Terrace Duplex With A Bq For Sale At Ilasan Lekki Lagos,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +26433,Deluxe 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths,6 Toilets,Ikota +26434,4 Bedroom Detached Duplex With Bq For Sale At Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +26435,Luxury 4 Bedroom Terrace With A Bq,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths,5 Toilets,Other Lekki +26436,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikate Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths,6 Toilets,Ikate +26437,Luxury 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths,5 Toilets,Ikate +26438,Luxury 5 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +26439,Deluxe 5bedroom Terrace Duplex With A Bq For Sale At Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths, Toilets,Osapa London +26440,Luxurious 5 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Lagos.,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths, Toilets,Ikate +26441,Beautiful 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +26442,Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Z Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,6 Toilets,Ikota +26443,Luxury 4 Bedroom Detached Duplex With Bq For Sale At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +26444,6 Bedroom Fully Detached Mansion With A Penthouse,Lekki Phase 1 Osapa London Lekki Lagos,₦,"450,000,000/month",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26445,Land Banking Development Projects (ldp 10.0),Land Banking Project Lekki Phase 1 Lekki Lagos,₦,"100,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +26446,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,0 baths,0 Toilets,Osapa London +26447,Massive 5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"160,000,000,000",0,1,1,5 beds,0 baths,0 Toilets,Lekki Phase 2 +26448,4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +26449,This Luxurious Finished 4 Bedroom Fully Detached Duplex And 1 Bq Is Located In A Secured Environment.,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26450,Massive 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26451,Exclusive 4bedroom Terrace,S Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +26452,4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,0 baths,0 Toilets,Lekki Phase 2 +26453,3 Bedroom Terrace Duplex With A Bq,"Dreamville2 Estate, Off Lekki Ajah Expressway, Lbs Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +26454,Massive 4 Bedroom Terrace Duplex,Lekki 2toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +26455,4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,0 baths,0 Toilets,Chevron +26456,Massive 4 Bedroom Semi Detached Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,0 baths,0 Toilets,Chevron +26457,Newly Built 5bedroom Detached Duplex With Swimming Pool,D Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +26458,2 Plots Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"65,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +26459,2 Bedroom Contemporary Apartment,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,2 beds,2 baths,0 Toilets,Ologolo +26460,5 Bedroom Detached With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"320,000,000,000",0,1,1,5 beds,4 baths,4 Toilets,Osapa London +26461,Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Ikate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,0 baths,0 Toilets,Ikate +26462,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,0 Toilets,Chevron +26463,3 Bedrooms Newly Built Residential Apartment At Luxurious Environments,"Zylus Court Estate,bogije Ajah Lekki Phase 1 Lekki Lagos",₦,"33,000,000/month",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26464,Tastefully Finished &luxury 4 Bedroom Semi Detached Duplex With Bq,Tartiana Court Estate Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26465,4 Bedroom Detached House,Ologolo Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,0 baths,0 Toilets,Ologolo +26466,4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,3 baths,3 Toilets,Ologolo +26467,"Magnificent 4bedroom Detached Duplex, With Bq",Osapa London Lekki Lagos,₦,"117,000,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +26468,3 Bedroom Maissonette Apartment (almost Sold Out),"Dreamville Estate, Sangotedo, Ajah, Lagos Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +26469,Automated 3 Bedroom Terrace Luxury Beach Home With Standard Bq,Bloom Heaven Residences Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26470,Massive 3 Bedroom Terrace Duplex And Bq,By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +26471,A Contemporarily Designed 4 Semi Detached Duplex,": By 2nd Tollgate , Orchid Lekki Oral Estate Lekki Lagos",₦,"60,000,000",0,0,1,4 beds,2 baths,3 Toilets,Other Lekki +26472,Magnificent 5 Bedroom Detached Duplex,F Ilasan Lekki Lagos,₦,"98,500,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +26473,Massive 5bedroom Detached With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"110,000,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 2 +26474,Newly Built 4 Bedroom Fully Detached Penthouse With Bq,Abraham Adesanya By Atlantic Layout Estate Lekki Phase 1 Lekki Lagos,₦,"72,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26475,2 Bedroom Maissonette Apartment (almost Sold Out),"Dreamville 2 Estate, Sangotedo, Ajah, Lagos Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +26476,This Lovely 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate And Features Spacious Compound,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26477,4 Bedroom Terrace Duplex With Bq,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,3 Toilets,Agungi +26478,4 Bedroom Terrace Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26479,5 Bedroom Detached Duplex,X Lekki Phase 1 Lekki Lagos,₦,"290,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26480,Massive 5bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"125,000,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 2 +26481,Newly Built Luxury 5 Bedroom Detached Duplex,Herbert Orji Osapa London Lekki Lagos,₦,"175,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26482,5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26483,4 Bedroom Terraced Duplex,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26484,One Bedroom Flat,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"53,000,000",1,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +26485,Newly Built Fully Detached 5 Bedroom Duplex With 2 Bqs In A Serene Estate,Chike Mba Osapa London Lekki Lagos,₦,"160,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26486,3 Bedroon Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +26487,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26488,4 Bedroom Semi Detached Duplex,Ruby 2&3 Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +26489,Newly Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Chevron Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26490,Newly Built 4 Bedroom Duplex,Chevron Drive Lekki / Chevron Oli And Gas Company/ Chevron Lekki Lagos,₦,"190,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26491,Newly Built Duplex,Chevron Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +26492,Plot Of Land,Durosimi Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26493,2 Units Of Miniflat,"Supplier Street, Onosa, Ilasan Lekki Lagos",₦,"13,000,000/sqm",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +26494,4 Units Of 4 Bedroom Terrace Duplex With Bq,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +26495,Off Plan Hotel Style Suites,Periwinkles Lekki Phase 1 Lekki Lagos,₦,"122,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26496,Land,Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26497,4 Bedroom House,"2nd Toll , Orchid Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26498,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26499,2units Of Uncompleted 5 Bedroom Fully Detached Duplex,Mega Mound Lekki County Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26500,A 4 Bedroom Semi Detached Duplex In A Lovely Estate.(left),"Ocean Bay Estate, Orchid Road. Chevron Lekki Lagos",₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +26501,A 4 Bedroom Semi Detached Duplex In A Lovely Estate.,Ocean Bay Estate Chevron Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +26502,Newly Built 5 Bedroom Semi Detached Duplex,"Olera Estate, Osapa, London Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26503,Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +26504,5 Bedrooms Fully Detached Duplex,Osapa Eletus Estate Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26505,A Distress 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets,Osapa London +26506,Newly Built 5 Bedroom Fully Detached Duplex With Maids Room,Arcadia Grove Extension Beside Pinnock Beach Estate Osapa Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +26507,A Uniquely Designed 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +26508,A Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26509,A Uniquely Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26510,A State Of The Art 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +26511,Fully Serviced 2 Bedroom Apartments,Jakande Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +26512,Very Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26513,A Contemporary 5 Bedroom Fully Detached Duplex With A Roof Top Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +26514,A Contemporary 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26515,Elegantly Designed 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26516,An Exquisite 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +26517,A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26518,Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26519,Contemporary 5 Bedroom Fully Detached Duplex With A Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26520,Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26521,A Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26522,A Stunning 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26523,A Lovely Designed 4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26524,A Lovely Designed 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +26525,Beautifully Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26526,Lovely 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +26527,A Stunning 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26528,A Stunning 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +26529,Newly Built 4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26530,A Stunning 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26531,Enthralling 2 Bedroom Terrace Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +26532,Contemporary 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +26533,Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +26534,A Lovely Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +26535,Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26536,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26537,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26538,Newly Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +26539,A Magnificent 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26540,A Lovely 4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +26541,A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +26542,An Enchanting 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26543,An Exquisite 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26544,A Lovely 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +26545,Beautifully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26546,Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26547,Lovely 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +26548,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26549,A Lovely 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26550,A Contemporary 5 Bedroom Fully Detached Duplex With A Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26551,Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26552,A Lovely 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +26553,A Magnificent 5 Bedroom Fully Detached Duplex With An Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26554,Luxury 5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +26555,An Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +26556,Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26557,A Lovely Designed 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26558,Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26559,An Exquisite 5 Bedroom Fully Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26560,A Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26561,Fully Serviced 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +26562,Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26563,5 Bedroom Fully Detached Duplex With A Bq,"...,. Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26564,A Stunning 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26565,Lovely 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Villa Ikota Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +26566,A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26567,A Dazzling 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +26568,A Stunning 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26569,A Stunning 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26570,A Fully Serviced 4 Bedroom Town House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +26571,A Beautifully Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +26572,An Exquisite 5 Bedroom Fully Detached Duplex With A Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +26573,Newly Built Spacious 4 Bedroom Terrace,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +26574,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +26575,Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26576,4 Bedrooms Terrace House With Excellent Facilities,Platinum Way Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +26577,Camberwall Advantage 1&2,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths, Toilets,Ikate +26578,Newly Built Six Units Of Spacious Four Bedroom Semi Detached Duplex With Maid's Room At Lekki For Sale,"...,. Lekki Lagos",₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +26579,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26580,3 Bedrooms Apartment,Alpha Beach Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +26581,"4 Bedrooms Mezzanine+ Study,2 Living Area+ Bq",Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26582,Brand New 5 Bedrooms Terrace House+ Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +26583,5bedroom Detached Duplex,Estate Jakande Lekki Lagos,₦,"300,000,000/day",1,1,1,5 beds,3 baths,3 Toilets,Other Lekki +26584,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26585,4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26586,Lovely 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26587,5 Bedroom Fully Detached Duplex,E Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26588,"Luxurious 3 Bedroom Apartment,",Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +26589,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26590,Neatly And Smartly Built 4 Bedroom Terrace Duplexes (off Plan),"West Bridge 3, Conservative Road By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"11,600,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26591,Smartly Built 4 Bedroom Semi Detached Duplex,"Conservative Road By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"68,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26592,1 Bedroom Terrace Apartment,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +26593,5 Bedroom Fully Detached Duplex,"Harris Crescent Road, By Vgc Estate Vgc Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +26594,Newly Built 4 Bedroom Terrace Duplex In Secured Environment,Cluster One Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +26595,Land,Lekki Phase 1 Lekki Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26596,4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,6 baths,6 Toilets,Victoria Garden City +26597,50 Room Hotel On 2200sqm,Agungi Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Agungi +26598,9800sqm Of Land In Shoprite,Victory Park Road Osapa London Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26599,New 4 Bedroom Terrace House,Oral Estate Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26600,New 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +26601,"440sqm Land For Sale On Da Silva Street, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26602,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26603,900sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26604,"A New Serviced 4 Bedroom Terrace House With Bq In A Mini Estate Behind Enyo, Ikate",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26605,New 4 Bedroom Terrace In A Mini Estate At Harris Drive Near Vgc,Vgc Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +26606,Tastefully Built 6bedroom Fully Detached Duplex With 2rooms Bq On 675sqm Land In Vgc,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +26607,4 Bedroom Maisonette In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26608,1000sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26609,A New 5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26610,A New 5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26611,A 3 Star Hotel On Chevron Drive,Chevy View Estate Chevron Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +26612,1100sqm Land Available In Victoria Garden City (vgc),Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +26613,A New Serviced 4 Bedroom Terrace House With Bq In A Mini Estate,Behind Enyo Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26614,"New 4 Bedroom Terrace House With A Room Bq In A Mini Estate In Ikate, Lekki Lagos",Ikate Lekki Lagos,₦,"74,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +26615,4 Bedroom Apartment In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26616,Brand New 4bedroom Semi Detached House With Bq At Osapa London,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +26617,4 Bedroom Maisonette In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26618,New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26619,4 Bedroom Terrace House With Bq In Lekki Phase 1 Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26620,Tenanted 6 Units Of 3 Bedroom Apartment,Atlantic Beach Estate New Road Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26621,"10 Hectares (150 Plots/150,000) Of Sand Filled Land, Overviewing The Lagoon (behind Nicon Town) With C Of O",Osapa London Lekki Lagos,₦,"120,000/sqm",0,0,0, beds, baths, Toilets,Osapa London +26622,New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26623,"650sqm Residential Land In Orange Island Phase 2, Lekki Phase 1",Orange Island Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26624,Distress Sale 4 Bedroom Detached House In A Mini Estate,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26625,A Unit Of Tenanted 4 Bedroom Terrace House Off Admiralty,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26626,"1100sqm Land In Twin Lakes Estate, Chevron Lekki",Chevron Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Chevron +26627,New 3 Bedroom Apartment In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +26628,4bedroom Detached House With Bq With Compound,Carlton Gate Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26629,New 3 Bedroom Terrace In A Mini Estate,Harris Drive Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +26630,Brand New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26631,Brand New 4 Bedroom Duplex + Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26632,5 Bedroom Duplex + Bq,Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +26633,Newly Built 5 Bedroom Detached Duplex,County Home Lekki Lagos,₦,"150,000,000/sqm",0,1,0,5 beds,3 baths,3 Toilets,Other Lekki +26634,Newly Built 4 Bedroom Semi Detached House. Governors Consent,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0, beds,4 baths,5 Toilets,Chevron +26635,Bakery Newly Built,W Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26636,2 Bedroom Flat,E Ologolo Lekki Lagos,₦,"35,000,000/sqm",0,1,0,2 beds,1 baths,1 Toilets,Ologolo +26637,Government Official Gazette,Lekki Phase 1 Lekki Lagos,₦,"4,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26638,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +26639,Newly Built 4 Bedroom Semi Detached House. Governors Consent,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0, beds,4 baths,5 Toilets,Chevron +26640,Newly Built 4 Bedroom Semi Detached House In A Serene Estate,"Oral Estate,lekki,lagos State Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26641,4 Bedroom Duplex For Sale At Orchid Lekki,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +26642,Brand New 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +26643,Brand New 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,009",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26644,Well Presented Newly Built 4 Bedroom Semi Detached Duplex In A Serene Area,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26645,Brand 3 Bedroom Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26646,Beautifully Furnished Two Bedroom Apartment,Elevation Church Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +26647,Luxury 5bedroom Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26648,Several Plots Available,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +26649,Newly Built 5 Bedroom Semi Detached House In A Serene Estate,"Oral Estate,lekki Oral Estate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26650,5 Bedroom Fully Detached Duplex With Swimming Pool And 1 Bq,Second Toll Gate Chevron Lekki Lagos,₦,"196,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +26651,4 Bedroom Maisonette +bq,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikate +26652,4 Bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"295,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +26653,5 Bedroom Detached Home,R Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +26654,400sqm Residential Land,Orchid Road Ikota Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Ikota +26655,Land,Off Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26656,5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"140,000/month",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26657,4bedroom Terrace Duplex,Z Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +26658,Land,Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26659,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +26660,4 Bedroom Semi Detached Duplex With Bq,By 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26661,4 Bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"295,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +26662,4 Bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"100,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26663,"4 Bedroom Terraced Duplex With A Bq At Lekki Conservative Centre, Chevron, Lekki","Conservative Centre, Chevron, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +26664,5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26665,5bedroom Luxury Duplex Lekki,Ikota Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +26666,5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"155,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26667,2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +26668,4 Bedroom Semi Detached Duplex,Lekki Conservation Center Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26669,New Built 4 Bedroom Terrace,Y Agungi Lekki Lagos,₦,"67,000,000",1,1,1,4 beds,5 baths,5 Toilets,Agungi +26670,5 Bedroom Detached Home,R Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +26671,4 Bedroom Detached Duplex With A Bq At Ikota Graa Estate,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26672,5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"380,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26673,4bedroomsemi Detached Duplex With Bq In Lekki,S Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +26674,5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26675,Newly Built Duplex,Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +26676,Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26677,5 Bedroom Semi Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26678,3bedroom Newly Built Terrence Duplex,Orchid Ikota Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikota +26679,Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26680,4 Bedroom Terrace With A Bq,Ikota Lekki Lagos,₦,"57,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26681,"4 Bedroom Semi Detached Duplex With A Bq At Conservative Centre, Chevron","Conservative Centre, Chevron, Lekki Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26682,3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +26683,3 Bedroom Apartment With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +26684,Luxurious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +26685,Luxury 3 Bedroom Apartment,Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26686,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26687,4 Bedroom Terrace With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26688,Executive Brand New 6bedrooms Detached Duplex With 2 Rooms Bq For Sale At Lekki Ph1 Estate.(c Of O And Concept).,Lekki Ph1 Estate. Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +26689,Executive Brand New And Tastefully Built 4bedrooms Semi Detached Duplex With A Bq At Ikota Villa Estate Lekki.,Ikota Villa Estate Lekki. Ikota Lekki Lagos,₦,"55,000,000/year",0,1,1,4 beds,4 baths,5 Toilets,Ikota +26690,Tastefully Finished 4bedrooms Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki (governor Consent).,2nd Toll Gate Lekki. Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26691,Luxurious 4bedrooms Semi Detached Duplex With A Bq For Sale At Chevron Lekki Lagos.,Chevron Lekki Lagos. Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26692,Executive Brand New 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,4 baths,6 Toilets,Osapa London +26693,Executive 4bedrooms Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki (governor's Consent).,2nd Toll Gate Lekki. Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26694,Newly Built 4 Bedroom Semi Detached Duplex All En Suite In A Serene Environment,Ss Court Estate Chevron Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +26695,Super Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,10 beds,10 baths,8 Toilets,Lekki Phase 1 +26696,Brand New 4 Bedrooms Terrace Duplex With A Room Bq,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26697,4bedroom Semi Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26698,Brand New 2 Bedrooms Flat,Orchid Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +26699,4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26700,5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26701,Luxurious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26702,Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Agungi +26703,4 Bedroom Terrace Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26704,Newly Built 4 Bedroom Semi Detached Duplex,Jakande Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +26705,Brand New 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26706,Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +26707,Furnished 5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26708,Newly Built 3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26709,4 Bedroom Fully Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26710,4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26711,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26712,3 Bedroom Apartment With Bq,Ajah Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26713,2 And 4 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26714,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +26715,Lovely 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +26716,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26717,4 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +26718,"Brand New 5 Bedroom Detached Smart House,private Cinema, Swimming Pool",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26719,4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26720,Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26721,6 Bedroom Detached Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +26722,Brand New 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26723,Brand New 6 Bedroom Fully Detached With An Oceanview Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +26724,Luxury 4 Bedroom Terrace Duplex,Ajah Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26725,4 Bedroom Semi Detached Duplex And 1 Room Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26726,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26727,5 Bedroom Fully Detached Duplex And A Room Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +26728,Brand New 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Osapa London +26729,Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26730,"Contemporary 5 Bedroom Fully Detached Duplex,swimming Pool,open Terrace",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +26731,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26732,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26733,Newly Built 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26734,Available Land,Lekki Lagos,₦,"175,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26735,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +26736,4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26737,Spacious 5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26738,Lovely 4 Bedroom Semi Detached Duplex + Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26739,Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +26740,4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26741,Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26742,4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000/year",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +26743,Brand New 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26744,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26745,Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26746,Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +26747,Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26748,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26749,Serviced 3 Bedroom Apartment,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26750,Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +26751,"Luxurious 5 Bedroom Fully Detached Duplex,swimming Pool,private Cinema",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26752,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26753,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26754,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26755,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +26756,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26757,Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +26758,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +26759,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26760,4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26761,5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26762,4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +26763,Newly Built 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26764,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26765,5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +26766,Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +26767,5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26768,4 Bedroom Semi Detached Duplex With 1 Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +26769,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26770,Newly Built 3 Bedroom Terrace Duplex,"Orchid Hotel Road, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +26771,Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26772,5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26773,5 Bedroom Fully Detached Duplex With A Room Bq I,Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26774,Brand New 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26775,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26776,4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +26777,Brand New 4 Bedroom Semi Detached Duplex Was,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26778,Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26779,Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26780,"Newly Built 5 Bedroom Fully Detached Duplex,swimming Pool, Private Cinema",Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26781,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26782,Newly Built 4 Bedroom Semi Detached Duplex,Jakande Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +26783,Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26784,Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26785,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +26786,"Brand New 5 Bedroom Detached Duplex, Private Cinema",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26787,5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +26788,Exquisitely Finished Block Of Apartments,Agungi Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +26789,Brand New And Fully Serviced 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26790,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +26791,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +26792,Luxurious 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26793,5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26794,4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Ajah Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26795,4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26796,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +26797,3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +26798,Brand New 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26799,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26800,4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26801,4 Bedroom Semi Detached Duplex With A Room Bq I,"Lekki County, Ikota Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26802,Newly Built 4 Bedroom Semi Detached,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26803,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26804,Brand New 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26805,4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekki County Homes Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26806,Waterfront Land Measuring 1000sqm,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Osapa London +26807,4 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +26808,4 Bedroom Fully Detached Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26809,Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26810,4 Bedroom Semi Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +26811,5 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26812,Newly Built 5 Bedroom Fully Detached Smart House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26813,5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26814,Elegantly Finished 4 And 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26815,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26816,5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26817,4 Bedroom Semi Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26818,Fully Serviced 3 Bedroom Apartments,Agungi Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +26819,4 Bedroom Semi Detached Duplex With A Room,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26820,5 Bedroom Fully Detached Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +26821,Exquisite 4 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26822,"Brand New 5 Bedroom Fully Detached Duplex, Swimming Pool",2nd Toll Gate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26823,4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +26824,4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26825,Lovely 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +26826,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +26827,Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26828,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26829,Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26830,3 Plot Of Land Measuring 781sqm Each,"Melrose Park Estate By Harris Drive, Behind Hayden Fuel Station, Vgc, Lekki. Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +26831,Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26832,Brand New 4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26833,Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26834,Brand New 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26835,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26836,Newly Built 2 Bedroom Apartment,Ikota Lekki Phase 2 Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,0 Toilets,Lekki Phase 2 +26837,Land Measuring 650sqm,"Heritage Garden, Orchid Road, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26838,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26839,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26840,Brand New 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26841,5 Bedroom Fully Detached Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +26842,4 Bedroom Terrace Duplex With Self Compound And A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26843,Newly Built 4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26844,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +26845,Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26846,5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +26847,4 Bedroom Fully Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26848,Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26849,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26850,4 Bedroom Semi Detached Duplex,"Lekki County, Ikota Ikota Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26851,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +26852,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +26853,Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26854,4 Bedroom Fully Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +26855,"Lovely Units Of 1, 2 And 3 Bedroom Apartments",Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +26856,5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26857,Luxurious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26858,3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26859,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26860,Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26861,4 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26862,4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +26863,2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +26864,Luxurious 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +26865,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26866,Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +26867,Brand New 3 Bedroom Apartment,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,0 Toilets,Lekki Phase 2 +26868,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +26869,Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +26870,Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26871,4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26872,Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26873,3 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26874,Land Measuring 800sqm,Lake View Park 1 Opposite Vgc / Opposite Ikota Shopping Complex Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26875,5 Bedroom Contemporary Fully Detached Duplex With Bq,D Osapa London Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26876,A Well Maintained 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +26877,"Distress Sale, Luxury 4bedroom Terrace Duplex",Ilasan Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26878,Newly Built 6 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"420,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +26879,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +26880,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +26881,2 Bedroom Bungalows,"Bogije, Lekki Lagos",₦,"17,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +26882,4 Bedroom Semi Detached Duplex + Bq,Conservation Road Chevron Lekki Lagos,₦,"68,000,000",1,0,0,4 beds,0 baths,0 Toilets,Chevron +26883,Available Land,Igbo Efon Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26884,4 Plots Of Dry Land Together,Alpha Beach Road By Admarity Homes Estate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26885,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,$,"560,587",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +26886,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Idado Idado Lekki Lagos,₦,"5,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26887,4 Bedroom Terrace Duplex With Excellent Features,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +26888,Luxury 3 Bedrooms Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +26889,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Idado Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26890,4bedroom Semidetached Duplexes Plus Bq In A Fully Serviced Estate,Freedom Way / Ikate Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26891,4 Bedroom Terrace Duplex With Bq In Ologolo Lekki,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +26892,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +26893,Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26894,Luxury Finished 4 Bedroom Semi Detached Duplex,Lekki Second Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,6 Toilets,Other Lekki +26895,5 Bedroom Duplex With 2 Rooms Bq,"...,. Lekki Phase 1 Lekki Lagos",₦,"290,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26896,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +26897,"1, 2 And 3 Bedroom Terraces And Penthouses", Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26898,Three Bedroom Flat On The 2nd Floor,"Chisco By Enyo Filling Station, Lekki Gardens Ikate Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +26899,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26900,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26901,5bedroom Fully Detached Duplex With Two Bq For Sale In Lekki County Homes,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +26902,Brand New 4 Bedroom Semindetached Duplex With Detached 1 Bedroom Bungalow + It Own Kitchen,F Ikota Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +26903,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26904,Newly Built Gorgeous 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +26905,3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +26906,Newly Built 5 Bedroom Duplex With Servant Quarter,Osapa London Jakande Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +26907,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +26908,Plot Measuring 1180.45sqm Gated And Fenced,Freedom Estate Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +26909,4bedroom Smart Semi Detached Duplex,Orchid Road/royal Pine Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +26910,4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26911,4 Bedroom Semi Detached Duplex With A Service Boys Quarters,X Lekki Lagos,₦,"78,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26912,1008.894sqm Plot In Twin Lakes Park,Chevron Roundabout Chevron Lekki Lagos,₦,"175,000,000",1,0,0, beds, baths, Toilets,Chevron +26913,Well Finished 5bedroom Fully Detached Duplex Plus A Room Bq At Chevron Drive Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Chevron +26914,5 Bedroom Duplex,"...,. Ikate Lekki Lagos",₦,"140,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +26915,Newly Built 4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26916,5bedroom Detached Duplex,X Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26917,Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,S Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26918,Distress Sale: Clean 4bedroom Duplex With Bq,F Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26919,4 Bedroom Semi Detached Duplex Dor Sale By Second Tollgate Lekki. 90% Completed,By Second Tollgate Lekki Lekki Lagos,₦,"55,000,000",1,0,0, beds, baths, Toilets,Other Lekki +26920,Luxurious Newly Built Finished 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +26921,Luxury 3 Bedroom Flat (carcass),"Lekki Gardens Paradise 3, Chevron Drive Igbo Efon Lekki Lagos",₦,"32,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +26922,Serviced 5bedroom Semidetached Duplex Plys Bq,Chisco / Ilasan New Road Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +26923,New Four Bedroom Duplex At Orchid Chevron With Bq,Chevron Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +26924,Massive 5 Bedroom Fully Detached Duplex,Megamound Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,0 Toilets,Ikate +26925,3 Bedroom Maisonette Advanced Shell,Dupe Oguntade Street. Ikate Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +26926,5 Bedroom Fully Detached Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26927,One Bedroom Flat,Ikate Lekki Lagos,₦,"26,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +26928,Block Of 4units Of 3 Bedroom With 4 Bqs,Chevy View Estate Chevron Lekki Lagos,₦,"350,000,000",0,1,0,10 beds,10 baths,10 Toilets,Chevron +26929,4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +26930,4 Bedroom Terrace Duplex,X Ologolo Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets,Ologolo +26931,5 Bedroom Semidetached (offplan Basis),Chevron Lekki Lagos,₦,"63,000,000",1,0,0,5 beds,6 baths,6 Toilets,Chevron +26932,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +26933,Newly Built 3 Bedroom Maisonette (advanced Shell),Dupe Oguntade Street. Lekki Phase 1 Lekki Lagos,₦,"44,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +26934,3 Bedroom Maisonette (offplan Basis),Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +26935,Newly Built 9 Units Of 3 Bedroom Flat At Lekki Phase One,Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +26936,5bedroom Fully Detached Duplex For Sale In Ikate Lekki,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +26937,4 Bedroom Terrace ( Offplan Basis),Chevron Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +26938,"Selling: 4 Bedrooms Semi Detached With One Bq At Orchid Hotel Road, Lafiaji Lekki. Lagos","Orchid Hotel Road, Lafiaji Lekki. Lagos Lekki Lagos",₦,"60,000,000",0,1,0, beds, baths, Toilets,Other Lekki +26939,5 Bedroom Fully Detached Duplex,X Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +26940,"2, 3 And 4 Bedroom Apartments", Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +26941,3 Bedroom Fully Detached Castle Bungalow + Bq,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +26942,4 Bedroom Town House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +26943,Lovely Luxury 4 Bedroom Terrace Duplex *,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +26944,Brand New 4 Bedroom Flat, Chevron Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26945,4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +26946,4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26947,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26948,"4 Bedroom Terrace Duplex For Sale By 2nd Toll Gate, Lekki",Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26949,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26950,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +26951,Newly Built Fully Serviced 2 Bedroom Flat,"Behind Mega Chicken, Ikota Gra Ikota Lekki Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikota +26952,New Four Bedroom Duplex At Chevron With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +26953,Massive 4 Bedroom Semi Detached Duplex With Bq For Sale,Agungi Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets,Agungi +26954,4 Bedroom House,... Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26955,Luxury 5 Bedroom Fully Detached Duplex Plus A Boy's Quarter,S Ikota Lekki Lagos,₦,"110,000,000",0,1,0, beds, baths, Toilets,Ikota +26956,4 Bedroom Terraced With A Bq,Ikate By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26957,4 Bedroom Semi Detached Duplex With 2 Rm Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +26958,Lovely 4bedroom Fully Detached Duplex With A Room Bq,D Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +26959,5 Bedroom Semidetached (offplan Basis),Ikate Lekki Lagos,₦,"63,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikate +26960,3 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +26961,3bedroom Terrace Duplexes Plus Bq,Baale Street / Olukolu Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets,Other Lekki +26962,Luxurious Finished 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +26963,5 Bedroom Fully Detached With A Bq,Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +26964,Newly Built 3 Bedroom Service Flat With Swimming Pool And Gym,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +26965,Contemporary Design Smart 4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +26966,Plots Of Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula, Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26967,Spacious 4 Bedroom Semi Detached Duplex With Bq,By Second Tollgate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26968,5bedroom Fully Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +26969,Luxury 4 Bedroom Semi Detached Duplex,S Chevron Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +26970,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +26971,Newly Built 4 Bedroom Detached Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +26972,Newly Built And Well Finished 2bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +26973,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26974,3 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +26975,An All Ensuite 4bedroom Semidetached Duplex Plus Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +26976,Two Storey Four Bed Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +26977,2 Bedroom Flat,Busola Omirinre Lekkiph1 Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,1,1,2 beds,3 baths,4 Toilets,Lekki Phase 1 +26978,4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +26979,600 Sqm Land,"Majek, Opposite Fara Park Estate Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +26980,Exquisite 3bedroom Flat Upstairs,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +26981,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +26982,"Well Maintained 4 Bedrooms Terrace Bungalow With Ample Car Park&recreational Facilities Off Orchid Road, Lekki, Lagos","Off Orchid Road, Lekki, Lagos Lekki Lagos",₦,"38,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26983,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +26984,All Ensuite 4bedroom Terrace Duplex Plus Bq,Kusenla Road/ Gbangbala Street Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +26985,5 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +26986,"Sales: 3 Bedrooms Terrace With One Bq At Orchid Hotel Road, Lafiaji Lekki. Lagos",Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets,Other Lekki +26987,Exquisite 5 Bedroom Duplex For Sale,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +26988,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +26989,4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +26990,Luxury 4 Bedroom Flat At Lekki Gardens Horizon 1,"Lekki Gardens Horizon 1, Kusenla Street Ikate Lekki Lagos",₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +26991,4 Bedroom Terrace Duplex At Second Tollgate Lekki.,By Second Tollgate Lekki Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +26992,Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Z Lekki Lagos,₦,"70,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +26993,"5 Bedroom Fully Detached House, With 4 Bedroom Ensuite With Swimming Pool And 2 Rooms Bq At Lekki Ph1*",Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +26994,Newly Built 2storey 5bedroom Duplex At Ikate,Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +26995,Newly Built And Well Finished 4bedroom Duplex With Bq,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +26996,4 Bedroom Terrace Duplex,S Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +26997,Luxury 5 Bedroom Duplex With Servant Quarter,Pinnock Beach Jakande Lekki Lagos,₦,"290,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +26998,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +26999,"Newly Built 4 Bedroom Terrace Duplex For Sale By 2nd Toll Gate, Lekki",Lekki Lagos,₦,"52,000,000",0,1,0, beds, baths, Toilets,Other Lekki +27000,5 Bedroom Fully Detached + Penthouse With Indoor Pool,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27001,3 Bedroom Maisonette As Advanced Shell,Dupe Oguntade Street. Ikate Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +27002,"Luxury Brand New, Already Built 4 Bedroom Terraced Duplex",Lekki Scheme Two Through Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +27003,Luxury 4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +27004,4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +27005,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27006,4 Bedroom Terrace,Romay Garden Near Jakande Estate Lekki Lagos.. Jakande Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27007,Beautiful 4bedroom Fully Detached Duplex,W Ikota Lekki Lagos,₦,"85,000,000",0,1,0, beds, baths, Toilets,Ikota +27008,Spacious 5 Bedroom Fully Detached Duplex With Bq Available For Sale,Chevyview Estate Chevron Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +27009,Brand New Spacious 4 Bedroom Terrace Duplexes For Sale Located At Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27010,Brand New 4 Bedroom Terrace Duplex & A Room Boy's Quarter,S Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27011,Land,Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27012,New 4 Bedroom Semi Detached Duplex With A Service Boys Quaters,C Chevron Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +27013,Serviced 2bedroom Apartment Plus Bq,Sangotedo / Fara Park / Abijo Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 2 +27014,A Well Maintained 3bedroom Terrace Duplex With All Rooms Ensuite With Spacious Compound,S Ikota Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27015,Smart 5 Bedroom Detached Duplex For Sale In Chevron Lekki,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +27016,Land,Lekki Lagos,₦,"8,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27017,Massive 5 Bedroom Detached Duplex With Bq,By Second Tollgate Lekki Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +27018,Available Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27019,Newly Built 4 Bedroom Semi Detached Duplex + Bq (90% Completed),By Second Tollgate Kekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27020,Magnificently Built 2 Bedroom Apartment,"Lekki Gardens Paradise 2, Chevron Alternative Igbo Efon Lekki Lagos",₦,"31,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +27021,Luxury 5 Bedroom Duplex With Servant Quarter,Pinnock Beach Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27022,Luxury 4 Bedroom Semi Detached Duplex Plus A Boys Quarters,S Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27023,"4 Bedroom, Semi Detached House","Garden Estate,off Freedom Way,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"100,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +27024,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27025,"Lovely 4 Bedroom Terrace Duplex With A Bq At Agungi, Lekki",Agungi Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets,Agungi +27026,Exquisite 3 Bedroom Flat,At Ocean Breeze Estate Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +27027,Newly Built Serviced 4 And 3 Bedrooms Terrace Duplex Off Orchid Road,Second Tollgate Lekki Lekki Lagos,₦,"57,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +27028,Luxurious Newly Built Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +27029,5 Bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +27030,5 Bedroom Fully Detached Duplex Plus A Boys Quarter,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +27031,Luxury 5 Bedroom Detached Duplex In A Well Secured Estate,Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +27032,Well Built Luxury 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27033,Pinnacle Quality Well Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +27034,10 Units Of Tastefully Finished Terraces Of 4 Bedrooms With A Room Bq & Rooftop Massive Sit Out,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27035,4 Bedroom Maisonette (offplan Basis),Dupe Oguntade Street Ikate Lekki Lagos,₦,"42,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikate +27036,Newly Built 5bedroom Fully Detached Water Front Duplex With Bq,Tulip Haven Estate Chevron Lekki Lagos,₦,"133,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +27037,5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +27038,600sqm Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27039,Beautiful 2 Bedroom Apartment,"Lekki Gardens, Paradise 3 Chevron Drive, Igbo Efon Lekki Lagos",₦,"32,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Lekki +27040,Beautiful 4 Bedroom Terraces Pent Roof Garwith 1 Bq At Lekki Phase One,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +27041,5 Bed Room Detached Duplex,Lekki Country Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +27042,5bedroom Fully Detached Duplex For Sale In Ikate Lekki,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +27043,Land, Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +27044,Luxurious Finished 3 Bedroom Flat With Swimming Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27045,3 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +27046,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27047,3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"51,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27048,"Newly Built 4 Bedrooms Terrace Duplex At Orchid Hotel Road, Lafiaji Lekki. Lagos.","Orchid Hotel Road, Lafiaji Lekki. Lagos. Lekki Lagos",₦,"50,000,000",0,1,0, beds, baths, Toilets,Other Lekki +27049,3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +27050,4 Bedroom Maisonette Duplex ( Off Plan Basis),Horizon Estate Ikate Lekki Lagos,₦,"41,290,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +27051,2 Bedroom Terrace Maisonette With A Bq,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +27052,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +27053,Duplexes With Approved Building Plan,Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +27054,Exquisitely Finished 4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27055,4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +27056,Super Spacious Well Built Affordable 3 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets,Other Lekki +27057,Off Plan Sales; Contemporary Massive 4 Bedrooms Fully Detached Duplex With Bq At Ikota Gra. Ikota Villa Estate.,Ikota Gra. Ikota Villa Estate. Ikota Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikota +27058,2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +27059,5 Bedroom Fully Detached + Penthouse,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27060,Tastefully 4 Units Building Comprising Of 3 Units Of Bedroom Flats Tastefully 4units Building Comprising Of 3units Of Bedroom Flats And One Unit Of Three Bedroom Flats,"Ologolo, Jakande. Ologolo Lekki Lagos",₦,"110,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets,Ologolo +27061,Massive 5 Bedroom Fully Detached Duplex,Megamound Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,0 Toilets,Ikate +27062,Dry Residential Land,Lekki Phase 2 Lekki Lagos,₦,"21,000,000",1,0,1, beds, baths, Toilets,Lekki Phase 2 +27063,4 Bedroom Terrace Duplex,D Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27064,*newly Built Beautiful 4 Bedroom Terrace Duplex For Sale*... 95% Finished Located At Ikate Lekki.,Ikate Lekki Lagos,₦,"82,000,000",0,1,0, beds, baths, Toilets,Ikate +27065,Newly Finished Serviced 4 Bedroom Terrace All Rooms Ensuit On Two Floors With A Room Bq,X Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27066,Spacious 4 Bedroom Detached Duplex With Bq,By Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +27067,Land,Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27068,Tastefully Finished 3 Bedroom Flat,"Lekki Gardens Horizon 2, Opposite Kusenla Street Ikate Lekki Lagos",₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +27069,"Luxury 5 Bedroom Is All Room Ensuite, With A Bq At A Secured Estate.",Chevron Drive Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,4 baths,5 Toilets,Chevron +27070,4 Bedroom Terrace ( Offplan Basis),Chevron Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +27071,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +27072,6 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27073,"Luxury Tastefully Finished 5 Bedroom Duplex For Sale By Second Tollgate, Lekki Lagos",Second Tollgate. Lekki Lekki Lagos,₦,"155,000,000",0,1,0, beds, baths, Toilets,Other Lekki +27074,Brand New Spacious 4 Bedroom Fully Detached Duplex With Bq,Off Orchid Road Lekki Lekki Lagos,₦,"92,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +27075,Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex In A Mini Court With Swimming Pool In Ikate Lekki,Ikate Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets,Ikate +27076,5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27077,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +27078,Massive 5bedroom Fully Detached Duplex,M Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27079,4 Bedroom Fully Detached House With A Bq, Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +27080,Newly Built 3 Bedroom Flat,"Kusenla Street, Lekki Gardens Horizon 1 Ikate Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +27081,Newly Built 4 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27082,16 Residential Apartments On 4 Floors,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27083,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27084,A Newly Built Four Bedrooms Fully Detached Duplex,"U3 Estate By Marwa, Lekki Phase 1 Lekki Lagos",₦,"145,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +27085,Luxury Finished 4bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27086,Newly Built Beautiful 5 Bedroom Fully Detached Duplex With Bq + Pool.,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +27087,5 Bedrooms Fully Detached Duplex +penthouse,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27088,5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27089,4 Bedroom Semi Detached +bq,Orchid Road Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27090,"Newly Built 5 Bedroom Duplex, 2bq And A Pool In A Serene Environment",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27091,Luxury 7bedrom Fully Detached Duplex With 2bedrom Bq At Ikota Villa Estate Lekki,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,7 beds,8 baths,7 Toilets,Ikota +27092,Land,Orchid Road Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27093,Land,Ikate Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27094,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +27095,3 Bedroom Service Apartment,Alpha Beach Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +27096,13 Plots Of Land Strategically Located In Lekki,"Beach Gate Road, Jakande Jakande Lekki Lagos",₦,"48,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27097,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Neighborhood Prince Ebanno Supermarket Lekki New Market Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27098,4 Bedroom Detached House With Bq,Agungi Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27099,Luxury 4 Bedroom Terrace In A Fantastic Location,"Mike Adegbite Avenue, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"127,500,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27100,Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Lafiaji, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,3 baths,3 Toilets,Chevron +27101,300sqm Land,"Alaro City, Lekki Lagos",₦,"1,900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27102,4 Bedroom Fully Detached Duplex +bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27103,Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +27104,A Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +27105,Newly Built 4 Bedroom Terrace Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +27106,A Tastefully Finished Brand New 4nos 4 Bedroom Terrace Houses And A 4 Bedroom Detached House.,Diamond Street Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27107,Nealty Built 4 Bedroom Sime Deteached Duplex At Ologolo Lekki Lagos,Hon Bankola Street /ologolo Ologolo Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27108,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki County Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27109,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Lekki County Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27110,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +27111,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +27112,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"102,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27113,Newly Built 4 Bedroom Fully Detached Duplex With Excellent Facilities,E Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27114,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27115,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27116,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27117,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27118,Newly Built 5bedroom Fully Detached Duplex In Lekki Ikate,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +27119,Beautifully Finished 5 Bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"280,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27120,4 Bedroom Semi Detached With Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27121,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27122,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +27123,Newly Built 3bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27124,"Fully Serviced Decently Built 4 Bedroom Terrace Duplexes In Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds, baths, Toilets,Ikate +27125,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27126,4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27127,5 Bedrooms Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +27128,New Built 5 Bedroom Apartment Detached Duplex Apaertment At Ologolo Lekki Lagos At Hon Banlole Street With Good Road Netwok,Hon Bankola Street Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +27129,Kingship Five Bedroom Duplex With A Room Bq,Tourism Road Off Alpha Beach Road Before Chevron Round About Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +27130,2 Bedroom Flat,Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +27131,4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27132,Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27133,Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27134,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27135,3bedroom Flat With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27136,2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +27137,Ney Built 4 Bedroom Terrace Duplex, Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +27138,Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,4 Toilets,Lekki Phase 1 +27139,4 Bedroom All Ensuite,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27140,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27141,Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27142,Brand New 2/3 Bedrooms Apartment,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +27143,5bedroom Detached [redacted],Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +27144,Newly Built Four Bedroom Duplex,Carwash Bus Stop Ikate Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27145,Furnished 7bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27146,Plots Of Land, Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27147,Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27148,Brand New 4 Bedroom Semi Detached House With 2 Rooms Bq,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +27149,Lekki/vgc Sales,Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27150,Land For Sale In Nicon Town Ikate,Ikate Nicon Town Lekki Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +27151,2 Numbers Semi Detached 4 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,5 Toilets,Lekki Phase 1 +27152,5bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27153,Newly Built 3 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,0,1, beds, baths, Toilets,Chevron +27154,Exclusively Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27155,Serviced Plots Of Land,"Lafiaji Town Orchid, Whales County Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27156,Well Finished Grand 4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +27157,4 Bedroom Detached House,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27158,Brand New 4 Bedroom Terraced House With Bq,Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +27159,Newly Built 5 Bedroom Detached House With Swimming Pool,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27160,Amazing 5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27161,Fully Serviced Luxury 3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27162,5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27163,5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27164,4 & 5 Bedroom Duplexes Both With 1 Room Bq Attached,"Da Vina Estate, Off Orchid Hotel Road, Eleganza, Lekki. Osapa London Lekki Lagos",₦,"75,000,000/month",0,1,0,5 beds,4 baths,4 Toilets,Osapa London +27165,5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27166,"Pantheon Smart Homes,",Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27167,4 Bedroom Semi Detached Duplex,Chevyview Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27168,4 Bedroom Terraced Duplex With Bq,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27169,Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27170,10 Hectares Of Land Facing The Lagoon At Ikate Elegushi With Personal C.of.o,Ikate Lekki Lagos,₦,"130,000/sqm",0,0,0, beds, baths, Toilets,Ikate +27171,New Structure Biulding,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27172,Exclusively Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27173,5 Bedrooms Detached House With A Swimming Pool And Cinema,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +27174,5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +27175,Beautifully Built 4 Bedroom Fully Detached Duplex With Swimming Pool In A Secure Estate,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27176,Brand New 4 Bedroom Terraced Duplexes Sale,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +27177,Newly Built 4 Bedroom Semi Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27178,Water Front View 5 Bedroom Detached House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27179,4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27180,Newly Built 3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27181,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27182,5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27183,3bedroom Semi Detached Duplex Castle + Bq,Ajah Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27184,4 Bedroom,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +27185,4 Bedrooms Fully Detached + 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27186,4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27187,Newly Built 3 Bedroom Apartment,"Behind Enyo/tastee, 4th roundabout, Lekki Epe Expressway Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +27188,4 Bedroom Maisonette,Parkview Estate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27189,Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27190,New Built 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27191,4 Bedroom Semi Detached Duplex Sale,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27192,Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27193,An Uncompleted 5bedroom Twin Duplex With A Penthouse,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27194,3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"54,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +27195,4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27196,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27197,4 Bedrooms Terrace Duplex With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27198,2 Bedrooms Apartment,Edewede Court 8 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +27199,11 Unit Of Blocks Of Flat,Agungi Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +27200,4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27201,5 Bedroom Fully Detached,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27202,Exquisite 4bedroom Terraces,"Orchid Road, Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27203,3 Bedroom Flat,Chisco Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +27204,Newly Built 4 Bedroom Terrace Houses With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +27205,Automated Unconventional 5 Bed Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27206,Newly Built 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27207,Tastefully Finished 4bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27208,Brand New 4 Bedroom Semi Detached Duplex Sale,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27209,4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27210,4 Bedroom Semi Detached House With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27211,Four Bedroom Terrace Duplex,Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +27212,Fully Furnished 4 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27213,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27214,1 Number Detached 4 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27215,4bexroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27216,4 Bedroom Terrace Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +27217,5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27218,4 Bedroom Terraced House With Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27219,3 Bedrooms Flat (4th Floor),Prime Water View 1 Ikate Lekki Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +27220,4 Bedroom Maisonette,Parkview Estate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27221,4 Bedroom Maisonette With Bq,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27222,Lekki Scheme Ii Land Sales,Lekki Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27223,5 Bedroom Fully Detached Duplex With 2 Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +27224,4 Bedroom Mansionate Terrace Duplex,Agungi Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +27225,Land,Awoyaya Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27226,Fully Automated 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27227,4 Bedroom Terraced House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27228,7 Units Of 5 Bedroom Terrace,"Olufemi,olatunji Street Osapa London Lekki Lagos",₦,"55,000,000",0,1,0, beds, baths, Toilets,Osapa London +27229,5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27230,Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +27231,Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27232,4 Bedroom Detached House With 2 Rooms Bq,Victoria Garden City Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27233,5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +27234,Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27235,Newly Built Four Bedroom Duplex,Carwash Bus Stop Ikate Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27236,2 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +27237,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27238,3 Bedroom Terrace Duplex,"Victoria Crest Ii, Orchid Road Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +27239,2 Bedroom Apartment,Meadow Hallway Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27240,"11 Units Of 3 Bedroom, 2 Bedroom, And 1 Bedroom",Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27241,3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ologolo +27242,3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +27243,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +27244,Off Plan 1 Bedroom Loft,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,1 beds, baths, Toilets,Lekki Phase 1 +27245,Four Bedroom House,Z Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +27246,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27247,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27248,4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27249,1 Bed Room Apartment,Ikate Lekki Lagos,₦,"29,000,000",0,1,0,1 beds,2 baths,2 Toilets,Ikate +27250,4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +27251,"Newly Built 4 Bedroom Terrace Houses With Bq @ Igbo Efon, Lekki",Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +27252,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +27253,4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27254,4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27255,"Brand 1, 2, 3 Bedroom Flats Sales In Ikate",Ikate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0, beds, baths, Toilets,Other Lekki +27256,5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +27257,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Pinnock Beach Estate/ Chevron Jakande Lekki Lagos,₦,"280,000,000/day",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27258,2 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +27259,5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27260,4 Bedroom Contemporary Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27261,3 Bedroom Apartment,"Orchid Road, Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27262,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Ikate Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,7 Toilets,Ikate +27263,Newly Built 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27264,Luxury 5bedroom Detached Duplex,Carlton Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27265,4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +27266,4 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +27267,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +27268,4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27269,Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27270,Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27271,Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +27272,Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27273,Brand New 4 Bedroom Terrace Duplexes + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +27274,"Roseberry Estate, Ibeju Lekki (igbeyin Adun Excision) Lands","Roseberry Estate Lekki Is Located Just After Pan Atlantic University, Campus Opposite Eleganza Industries/odunnbaku A Few Minutes’ Drive Before The New Int’l Airport Ibeju Lekki Directly Off Lekkiepe Expressway Lekki Lagos",₦,"5,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27275,Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +27276,5 Bedroom Fully Detached In Megamound,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +27277,Luxury Smart Home 4 Bedrooms Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos Chevron Lekki Lagos",₦,"67,500,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +27278,2 Bedrooms Luxury Smart Apartments,"Ocean Palms, Meadow Hall School Way Ikate Lekki Lagos",₦,"47,700,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +27279,Land In Chaplin Court Estate. Built By Exxonmobil Cooperative And Its 665 Sqm Corner Piece,Abrahan Adesanya Estate Road Opposite Leeki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"34,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27280,Lovely Duplex With Lagoon View Experience,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27281,Ideal Investment Opportunity Giving Immediate Roi,"Lekki Scheme Ii, After Vgc Lekki Phase 2 Lekki Lagos",₦,"500,000,000",1,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 2 +27282,Very Affordable Serviced Land In Good Location,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27283,Strategically Located Plot Of Land In Lovely Estate,Opposite Lbs Off Lekki Expressway Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27284,Very Affordable 3 Bedroom Terrace Duplex In A Serviced Estate,Off Lekki Expressway By Lbs Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +27285,4 Bedroom Terrace Duplex (8 Years Flexible Payment Plan),Off Lekki Expressway By Abraham Adesanya Road Lekki Phase 2 Lekki Lagos,₦,"40,640,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27286,Very Affordable New 4 Bedroom Duplex In Serene Location,"Lekki Scheme Ii, After Vgc Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27287,Great Offer Pay 50 Percent And Balance In 5 Years,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27288,Luxury Waterfront Detached House,Off Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +27289,Best Price In Market For Luxury 4 Bedroom Duplex,By Nicon Town Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27290,Pay 70% And Move In Offer,Off Lekki Expressway Lagos Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +27291,4 Bedroom Flat,Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"170,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27292,Spacious Luxury 3 Bedrooms Duplex,"2nd Toll Gate, Lekki Epe Expressway Ikota Lekki Lagos",₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +27293,A 4 Bedroom Terrace (all Ensuite) With 1 Room Bq Self Contained.,"Bonavista Estate Orchid Road After Chevron, Before Vgc, After Second Toll Gate Vgc Lekki Lagos",₦,"50,000,000/sqm",0,0,0, beds, baths, Toilets,Victoria Garden City +27294,Pay 10% Only And Spread Balance Over 5 Years,Off Lekki Expressway Lagos Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +27295,Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +27296,Luxury 4 Bedrooms Terrace Duplex In Orchid With Flexible Payment,Lekki Epe Expressway Chevron Lekki Lagos,₦,"47,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27297,Tastefully Finished And Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +27298,Fully Automated 5 Bedrooms Smart Home,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27299,Fast Selling Plots Of Land At The Irving Park Awoyaya Lekki,Awoyaya Lekki Ikate Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Ikate +27300,"Luxury 3 Bedroom Apartment With Rooms En Suite, Maid's Room And Bq",Amaechi Onuoha Crescent Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +27301,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27302,4 Bedrooms Terrace House With Excellent Facilities,Salem Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27303,4 Bedrooms Terrace House With Excellent Facilities,Salem Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27304,2 Bedroom Apartment,Salem Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +27305,4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +27306,Luxury 2 Bedrooms Apartment,Orchid Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27307,Brand New 5 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +27308,Exquisitely Finished 5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27309,Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq In A Very Clean Estate. Certificate Of Occupancy,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +27310,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +27311,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27312,6 New Units Of 5 Bedroom Duplex Houses,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27313,4 Bedrooms Terrace Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +27314,4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27315,Exquisitely Finished 4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27316,Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27317,Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +27318,Uxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27319,Exquisitely Finished 5 Bedroom Fully Detached Fully Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +27320,Newly Built 5 Detached Duplex With Swimming Pool + Bq,2nd Toll Gate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27321,Exquisitely Finished 5 Bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27322,Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27323,"Exquisitely Finished Elegant 5 Bedroom Detached Duplex With Cinema, Swimming Pool & Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +27324,Beautiful Newly Built 4 Semi Detached Duplex With Bq,2md Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27325,3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +27326,Finished 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27327,Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27328,Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +27329,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27330,Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bw,2nd Toll Gate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27331,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +27332,Two Bedrooms Contemporary Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +27333,5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27334,Beautifully Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27335,Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27336,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27337,Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27338,Newly Built Bedrooms Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +27339,Beautifully Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +27340,Lovely 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27341,Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27342,Top Notch Luxury Fully Finished Serviced 4 Bedroom Terrace Duplex,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27343,Top Notch Luxury Fully Finished Serviced 4 Bedroom Terrace Duplex,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27344,Newly Built 5bedroom Terrace By The Water Front,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000/sqm",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +27345,Newly Built 4 Bedroom Terrace,Off Tf Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +27346,Estate Land,"D'castonia Estate, Bogije, Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27347,2 Bedroom Terrace Duplex,"Oribanwa, Lekki Lagos",₦,"23,800,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27348,Beautiful 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27349,Newly Built And Fully Serviced 3 Bedroom Flat,Ikate Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27350,4 Bedroom With 3 Parlour And A 3 Bedroom Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27351,Fully Detached 5 Bedroom Duplex,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27352,Newly Built Well Finished 4 Bedroom Semi Detached Wing Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27353,Serviced 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",1,0,0, beds, baths, Toilets,Chevron +27354,5 Bedroom Fully Detached Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27355,5 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +27356,Tastefully Finished Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27357,Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27358,Fully Serviced 3 Bedrooms Flat,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +27359,Newly Build 4bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000/sqm",0,1,0,6 beds,5 baths,6 Toilets,Ikate +27360,5 Bed Room Fully Detached,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +27361,A Unit Of Tastefully Finished Brand New Four (4) Bedroom Semi Detached,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +27362,Luxury And Automated 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27363,Newly Build 5bedroom Detached Duplex,Idado Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +27364,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27365,5bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27366,Newly Built 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +27367,5bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27368,Newly Built 4 Bedrooms Terrace With A Bq,Ikate Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27369,Land,"At Atlantic View Estate, Lekki, Eti Osa, Lga Lekki Lagos",₦,"35,000,000/day",0,0,0,1 beds, baths, Toilets,Other Lekki +27370,Serviced 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27371,Luxury And Spacious 3bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27372,4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27373,Newly Built 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +27374,"2,3 And 4 Bedroom Duplex For Sale In Lekki",Abraham Adesanya Lekki Ajah Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,1, beds, baths, Toilets,Lekki Phase 2 +27375,Newly Built 4 Bedroom Semi Detached Duplex,Ikota G.r.a Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +27376,Land,"Aborji Village, Igbogun Road, Lftz Ibeju Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27377,3 Bedroom + Bq (penthouse),Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27378,Fully Serviced Luxury 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27379,Newly Built Block Of 4 Units Of 3 Bedrooms Flats.,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +27380,4 Bedroom Wing Of Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27381,5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +27382,Buy And Build Land Available Few Mins From Eleko Junction,Bogije Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +27383,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27384,4 Bedroom Detached Duplex, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27385,New Built 4 Bedrooms Duplex,"Orchid, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27386,Newly Built 3 Bedroom Serviced Apartment Available In A Secured Location,Idado Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +27387,Available Land,Peninsula Garden Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27388,Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27389,Newly Built 5 Bedroom Duplex,Chisco Ikate Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Ikate +27390,4 Bedroom Terrace,Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27391,Luxury 4 Bedrooms Duplex,"Chisco, Ikate Lekki Ikate Lekki Lagos",₦,"130,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets,Ikate +27392,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27393,Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27394,5 Bedrooms Detached House With 2 Room Bq,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +27395,Brand New 4 Bedrooms Terrace Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"80,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +27396,5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +27397,Estate Land,Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27398,4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +27399,12 Units Of Smart 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27400,Camberwall Court Phase 2,Abijo Gra Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27401,3 Bedrooms Apartments For Sale,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +27402,5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +27403,Land,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27404,Land,Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27405,4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27406,3 Bedroom Bungalow,"Thomas Estate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27407,3 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27408,Newly Built 4 Bedrooms Duplex,"Chisco, Ikate, Lekki Lagos Ikate Lekki Lagos",₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27409,4 Bedroom Luxury Masionettes,Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +27410,Brand New 3 Bedrooms Flat,Osapa London Osapa London Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +27411,4 Bedroom Semi Detached Duplex Available Besides Victoria Garden City,Besides Vgc Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +27412,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +27413,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27414,Estate,Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27415,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +27416,Brand New Luxurious 5 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +27417,4 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27418,5bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27419,4 Bedroom Semi Detached Duplex,Abijo Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27420,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27421,4 Bedroom Terrace With 24hrs Light,Orchid Road Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27422,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +27423,4 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"54,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27424,4 Bedroom Luxury Semi Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27425,5 Bedroom Detached Duplex,Megamond Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +27426,5bedroom Duplex With 2rooms Bq,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +27427,A Smart Home Luxury 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27428,Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27429,5 Bedroom + Library Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27430,Open 2bedrooms Flat,Off Lekki Express Wah Lekki Phase 1 Lekki Lagos,₦,"45,000,000/sqm",0,0,1,2 beds,2 baths,2 Toilets,Lekki Phase 1 +27431,4bedrooms Semi Detached Duplex With Bq,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27432,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27433,"Executive , 4 Bedrooms Fully Detached Houses For Sale At Osapa London",Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +27434,Exquisite 4 Bedroom Terrace Duplex Available Besides Vgc,Vgc Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +27435,4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +27436,5 Bedrooms Fully Detached Duplex With 2 Rooms Detached Bq, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +27437,1 Bedroom Terrace,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27438,Newly Built 5 Bedrooms Duplex,"Chevron Estate, Lekki Lagos Chevron Lekki Lagos",₦,"110,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets,Chevron +27439,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +27440,Luxury 5 Bedrooms,Chevron Lekki Lagos,₦,"125,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27441,4 Bedroom Terrace Building,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27442,Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27443,Land,Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27444,New Built 4 Bedroom Detached Duplex See Tour,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +27445,Exquisite 2 Bedrooms Flat,Agungi Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets,Agungi +27446,4 Bedroom Fully Detached Duplex With Pool & Bq, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +27447,Secure This 3 Bedroom Terrace Duplex Available Beside Vgc With 30% Deposit And Spread Payment Up To A Year,Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Garden City +27448,2 Bedroom Luxury Apartment,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +27449,Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27450,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27451,5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,Ikate +27452,Land,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27453,Land,"Aborji Village, Igbogun Road, Lftz Ibeju Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27454,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27455,4 Bedroom Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +27456,4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27457,Fully Furnished 4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27458,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27459,2 Bedroom Terraced Duplex,Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27460,Land,Lekki Phase 1 Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27461,New Built 4 Bedroom Terrace Duplex See Video Tour,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +27462,Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27463,Newly Built 2 Bedrooms Flat With Bq,Chisco Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +27464,Nice 4 Bedrooms Duplex,Chevron Lekki Lagos,₦,"85,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets,Chevron +27465,Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq And Swimming Pool,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27466,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27467,Land,Lekki Phase 1 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27468,5 Bedrooms Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27469,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27470,Land, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27471,Luxury 5 Bedrooms Duplex,Chevron Estate Chevron Lekki Lagos,₦,"115,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27472,Estate Land,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27473,Land,Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27474,5 Bedrooms Duplex,"Estate, Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"120,000,000/sqm",0,0,1,5 beds,6 baths,6 Toilets,Chevron +27475,3 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27476,Newly Built 5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27477,Newly Built 5 Bedrooms Duplex,"Chevron Area, Lekki Lagos Chevron Lekki Lagos",₦,"120,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27478,"5 Bedroom Detached House Within Ikate, Lekki",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +27479,4 Plots Of Land With 7000sq Ft Warehouse,Ilasan Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27480,3 Bedroom Flat,Lekki Gardens Horizone 2 Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +27481,Wonderful 3 Bedroom Flat For Sale,Prime Water Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +27482,5bedroom Terrace Duplex Lekki,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +27483,Newly Built 4 Bedroom Semi Detached Maisonette Terrace House (negotiable),"Off Meadow Hall Way, Ikate Lekki Lagos",₦,"115,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +27484,Newly Built 4 Bedroom Semi Detached Terrace House (negotiable), Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,1 Toilets,Chevron +27485,2 X 4 Bedroom Semi Detached Maisonette,Off Meadow Hallway Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +27486,"Fully Serviced 4 Bedroom Terrace Duplex With B.q |ikota, Lekki |600sqm Land Size | This Property Is Well Furnished With Fitted Kitchen",Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +27487,Luxurious 5bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets,Ikota +27488,Newly Built 4 Bedroom Semi Detached House,Off Nike Art Gallery Road Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +27489,Newly Built 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +27490,4 Units Of 4 Bedroom Semi Detached Terrace Houses,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27491,4 Units Of 4 Bedroom Semi Detached Terrace Houses,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27492,Brand New 3 Bedroom And 2 Bedroom Apartment With Bq,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,0 Toilets,Ikota +27493,Two Units Of 4 Bedroom Semi Detached Maisonette,"Alma By Micmar Estates, Off Meadow Hallway Ikate Lekki Lagos",₦,"100,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +27494,Partially Furnished 4 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +27495,9 Bedroom Fully Detached Duplex,Close To Nicon Nicon Town Lekki Lagos,₦,"300,000,000",0,1,0,9 beds,9 baths,10 Toilets,Other Lekki +27496,6 Plots Of Land,Ologolo Jakande Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27497,9 Bedroom Fully Detached Duplex,Close To Nicon Nicon Town Lekki Lagos,₦,"300,000,000",0,1,0,9 beds,9 baths,10 Toilets,Other Lekki +27498,Newly Built 4bedroom Semi Detached Duplex,Orchard Road. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27499,7 Bedroom Mansion In Lekki Phase 1 Admiralty Way,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,7 beds,5 baths, Toilets,Lekki Phase 1 +27500,Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets,Lekki Phase 1 +27501,Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets,Lekki Phase 1 +27502,Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets,Lekki Phase 1 +27503,Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets,Lekki Phase 1 +27504,Newly Built 4 Bed Apartment,Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +27505,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27506,Luxury 4 Bedrooms Demi Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27507,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +27508,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27509,2 Bedroom Apartment,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +27510,Newly Built 5 Bedroom Fully Detached Duplex In High Toned Neighborhood,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27511,4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +27512,3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27513,5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +27514,Duplex,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27515,4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27516,2 Bedroom Serviced Flat,"Plot 14, Hon. Saheed Bankole Street Off Ologolo Village Road, Ologolo Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ologolo +27517,8 Bedroom Apartment,Ajah Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,8 beds,6 baths,6 Toilets,Lekki Phase 2 +27518,750 Sqm Land,Ajah Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27519,600 Sqm Land,Ajah Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27520,1140 Sqm Land,Chevron Drive Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27521,5 Bedrooms Fully Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27522,Beautiful 5 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27523,Executive Massive 3 Bedroom Apartment,S Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 1 +27524,Newly Built 4 Bedroom Semi Detached Duplex With A Room Duplex Ikota Lekki Ikota,Ikota Mega Chicken Ikota Lekki Lagos,₦,"67,000,000/sqm",0,0,1,4 beds, baths, Toilets,Ikota +27525,5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +27526,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +27527,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +27528,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27529,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27530,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27531,Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27532,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27533,3 Bedroom Duplex Apartment,Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +27534,Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27535,2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +27536,4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +27537,Brand New Luxury 5bedroom Fully Detached,Izu Court Estate Chevron Chevron Lekki Lagos,₦,"99,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27538,Tastefully Finished 4 Bedroom Terrace Duplex @ Marwa Lekki Phase 1,Marwa Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +27539,Land,Z Vgc Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27540,Smart 4bedroom Terrace With & Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27541,Cheap 8 Hectares Of Commercial Land,"Along Freedom Way, Behind Periwinkle Estate, Lekki Phase 1, Lagos Nigeria. Lekki Phase 1 Lekki Lagos",₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27542,For Sale.....????...n75million.... Chevron Lagos,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27543,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +27544,2/3bedroom Flat,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +27545,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +27546,Brand New 4bedroom Terrance,Chevron Drive Chevron Lekki Lagos,₦,"63,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27547,Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +27548,Brand New Luxury 5 Bedroom Detached Duplex,"Roxbury Estate, Opp Vgc Vgc Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +27549,Brand New 5 Bedroom [email protected] Osappa,Osapa Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +27550,Land,Opposite Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27551,4 Bedroom Semi Detached Terrace Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +27552,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +27553,Luxurious 6 Bedroom Duplex With 2 Room Bq,Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,6 beds, baths, Toilets,Other Lekki +27554,Luxury 9nos Of 3bedroom Each,Off Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"700,000,000/year",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27555,Luxury 5bedroom Fully Detached Duplex,Right Side Lekki Phase 1 Lekki Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27556,Brand New 5 Bedroom [email protected] Osappa,Osapa Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +27557,Land At Orange Island,Z Vgc Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27558,Magnificent Fully Serviced 4bedroom Semi Detached,2nd Toll Gate By Chevron Lekki Phase 1 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27559,For Sale.....????...n83million.... Chevron Lagos,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27560,Brand New 5bedroom Fully Detached,"Izu Court, Chevron Drive Chevron Lekki Lagos",₦,"99,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27561,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27562,*land,Z Lekki Phase 1 Lekki Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27563,4 Bedroom Terrace Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27564,Luxury 5 Bedroom Fully Detached Duplex With Boys Quarter And Swimming Pool, Ikota Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Ikota +27565,Land,Z Vgc Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27566,Exotic Brand New Fully Detached 5bedroom Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27567,Stunning 3 Bedroom Terraced Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +27568,Waterfront Residential Land For Sale At Ikate Elegushi Lagos Nigeria,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +27569,Brand New 4 Bedroom Semi Detached Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +27570,For Sale...????...80m..... Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +27571,4 Bedroom Super Luxury Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27572,4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +27573,Smart 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000/year",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27574,Newly Built 9 Units Of 3 Bedroom Apartment,Idado Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +27575,Hotel For Sale At Vgc Lekki Lagos Nigeria,Nicon Hotel At Vgc Lekki Lagos Vgc Lekki Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths,10 Toilets,Victoria Garden City +27576,Tastefully Finished 5 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"111,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +27577,Land,Z Oral Estate Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27578,Newly Built Four Bedroom Detached With Open Top Bq In A Serene Environment At Lekki Scheme2 Close To Abraham Adesanya,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27579,"3,4and 5 Bedroom Duplex Fully Detached Semi Detached And Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +27580,"3,4and 5 Bedroom Duplex Fully Detached Semi Detached And Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +27581,"3,4&5 Bedroom Duplex, Fully Detached, Semi Dear, Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +27582,3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27583,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27584,4 Bedroom Terrace Duplex,2nd Tollgate Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +27585,Six Bedroom Furniture Detached With Swimming Pool & Gym Three Room Bq,A Gate Nicon Town Lekki Lagos,₦,"850,000,000/day",0,0,1,6 beds,6 baths,6 Toilets,Other Lekki +27586,Newly Spacious 4 Bedroom Fully Detached Duplex,Orchid Road Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets,Victoria Garden City +27587,5 Units Of Luxury 4bedrooms & 1 Bq Town House .,Ikate In A Secured Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +27588,5 Bedroom Fully Detached Duplex With Excellent Features,Megamound Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27589,Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +27590,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +27591,5 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27592,Brand New Fully Completed Bedroom Semi Detached Duplex,Elegushi Road Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,1 Toilets,Ikate +27593,Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27594,Luxury Fully Serviced 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,4 baths,5 Toilets,Osapa London +27595,3 Bedrooms Luxury Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,0 baths,0 Toilets,Ikate +27596,Fully Serviced 3bedroom Apartments For Sale,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +27597,"Automated & Uniquely Built 5bedroom Fully Detached House With Swimming Pool, Cinema, Camera & Fingerprint Access Door, Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27598,Newly Built 4 Bedroom Contemporary Semi Detached Duplex With Bq,2nd Toll Gate Orchid Chevron Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +27599,Newly Built 5bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27600,Newly Built Exquisite Four Semi Detached House,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +27601,Luxury Spacious 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27602,Newly Built Exquisite Five Bedroom Detached House,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27603,Newly Built Exquisite Four Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27604,Plot Of Land Available For Sale Besides Cowrie Creek,Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Ikate +27605,Distress Sale Five Bedroom Fully Detached Property,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27606,Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +27607,Newly Built 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27608,4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +27609,Smart Luxury Five Bedroom Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +27610,Newly Built 5 Bedroom Detached Duplex With,Osapa London Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27611,Exquisite 4 Bedroom Fully Detached House, Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27612,Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,4 baths,6 Toilets,Lekki Phase 1 +27613,Newly Built Exquisite Five Bedroom Detached House,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +27614,Smart Luxury Five Bedroom Detached House,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +27615,Newly Built 5 Bedroom Detached Duplex With 2 Bedroom Bungalow,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +27616,Four Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +27617,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27618,3 Bedroom Fully Detached House With Bq (self Compound),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27619,Good Rent Value (airbnb) 8 Units Of 3 Bedroom Flats & 8 Units Of 1 Bedroom Flats With Elevator,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +27620,Contemporary 4 Bedroom Semi Detached Duplex With Bq (2 Units Available),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27621,Well Finished 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"118,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +27622,Fairly Used 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"102,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +27623,"Beautifully Furnished 5bedroom Fully Detached Duplex With Swimming Pool, Bq Spacious Kitchen In A Serene Estate",Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27624,"Exquisitely Finished 5bedrooms + Penthouse Fully Detached Duplex + S.pool,cinema, Bq",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +27625,Smart Contemporary Units Of 4bedroom Terraces With Fully Fitted Kitchen,Ikota Ikota Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +27626,Newly Renovated 5bedroom Fully Detached Duplex With Bq In A Serene Estate In Chevron,Chevron Chevron Lekki Lagos,₦,"83,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +27627,Beautiful 4bedroom Fully Detached With Bq .in A Serene Estate,Agungi Agungi Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +27628,Investor's Delight 4 Bedroom Fully Serviced Terrace Duple In A Serene Environment,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +27629,Fairly Used 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,5 baths,6 Toilets,Chevron +27630,"Investment Delight, Serviced Estate Units Of 4bedroom Semi Detached Duplex With Bq",Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +27631,2 Units Of 4bedroom Semi Detached Duplex With Bq,By Chevron 2nd Toll Gate Orchid Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27632,"Newly Built Contemporary 5bedroom Fully Detached House With Very Spacious Kitchen, Bq (space To Build Swimming Pool And Outdoor Bar) Land Size: 600sqm",Orchid Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +27633,Lovely Finished Units Of 4bedroom Semi Detached Duplex With Bq In A Serene Estate In Chevron,Chevron Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27634,Investment Delight In A Serviced Estate Units Of 4bedroom Semi Detached House,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000/month",1,1,1,4 beds,4 baths,5 Toilets,Ikota +27635,"Uniquely Built Units Of 5bedroom Fully Detached House With Swimming Pool, Home Theatre/cinema, Bq In A Serene Environment",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27636,Newly Built Contemporary 6bedrooms In Total 5bedrooms Plus A Penthouse Fully Detached Duplex With 2rooms Bq In A Serene Estate With Tree Beautification,Lekki County Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27637,"Exquisitely Finished Contemporary 5bedrooms + Penthouse Fully Detached Duplex With Swimming Pool, Study Room, Fitted Kitchen, Bq In A Serene Environment And Well Layered Out Estate",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,6 beds,6 baths,7 Toilets,Osapa London +27638,Newly Built Contemporary 4bedroom Semi Detached Duplex With Fittings And Bq In A Serene Estate,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"76,000,000/month",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27639,Newly Built Units Of 4bedroom Semi Detached Duplex With Bq Serene Environment Orchid,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +27640,"Lovely Contemporary 5bedroom Fully Detached Duplex With Swimming Pool, Inverter, Fitted Kitchen & Bq",Osapa London Osapa London Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +27641,Beautiful 5bedroom Fully Detached House With Bq Spacious Premises For More Than 6 Cars .(swimming Pool Can Be Fitted) In A Serene Environment,Ikate Ikate Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +27642,Smart Contemporary Units Of 4bedroom Terraces With Fully Fitted Kitchen,Ikota Ikota Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +27643,"Luxuriously Finished 5bedroom Contemporary Detached Duplex With Swimming Pool, Gym, Bq In An Estate",Osapa London Lekki Osapa London Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +27644,Lovely Built 5 Bedroom Fully Detached Duplex With Bq In A Serene Estate,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +27645,Smart Contemporary Home 4bedrooms & 5bedrooms Semi & Fully Detached Duplexes,By Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +27646,Units Of 2 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"48,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +27647,Corner Pic 3bedroom Terrace House With Bq And Water Treatment Within A Serene Estate .,New Road Igbo Efon Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27648,Distress Sale 85% Completed 2 Units Of 3 Bedrooms Flat Within A Secured Non Flooded Gated Close.,Alpha Beach Axis Igbo Efon Before Chevron Drive Igbo Efon Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27649,2 Plots Of Land,Aro Town Ologolo Lekki Lagos,₦,"120,000,000/year",0,0,0, beds, baths, Toilets,Ologolo +27650,5 Bedroom Duplex With Bq And Swimming Pool On Governors Consent,"Vgc, Chevron, Eleganza, Etc. Ikota Lekki Lagos",₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +27651,Raregem Business Consultancy Limited,Ikota Lekki Lagos,₦,"130,000,000/year",1,1,0,6 beds,6 baths,6 Toilets,Ikota +27652,2 Bedroom Apartment,Olayemi Court Oniru Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +27653,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27654,5 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +27655,5 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +27656,4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets,Agungi +27657,Newly Built 4bedrooms Fully Detached Duplex Fully Furnished .,Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths,5 Toilets,Ikate +27658,Newly Built 5 Bedroom House,Van Daniels Estate Lekki Phase 2 Lekki Lagos,₦,"14,000,000/year",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +27659,5 Bedroom Apartment,Van Daniels Estate Orchid Lekki Phase 2 Lekki Lagos,₦,"14,000,000/year",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +27660,4bedroom Terrace,Jankade First Gate Jakande Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +27661,Nice 4 Bedroom Duplex With A Bq,In A Gated Street Next To Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27662,Nice 4 Bedroom Duplex With A Bq,In A Gated Street Next To Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27663,Fully Fitted And Well Finished 3 Bedroom Apartment With A Room Bq On 7th Floor,"Safecourt Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27664,Newly Built 11 Units Of Brandnew 4 Bedroom Duplex,"County Estate,ikota Gra Ikota Lekki Lagos",₦,"65,000,000",0,1,1, beds, baths, Toilets,Ikota +27665,Contemprary And End To End Finished 4bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27666,Newly Built 4 Bedroom Semi Detached Duplex At Vgc,Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds, baths, Toilets,Victoria Garden City +27667,Newly Built 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,0 baths,0 Toilets,Ikate +27668,"Twins 5 Bedroom Semi Detached House With Boysquarter At Agungi, Lekki",Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Agungi +27669,Lovely 9 Bedroom Duplex,Z Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,9 beds,0 baths,0 Toilets,Other Lekki +27670,"Luxurious Units Of Flats, Miniflats And Self Contain", Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27671,Lovely 4 Bedroom Semi Detached Duplex,Z Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +27672,Well Finished 3 Bedroom With Inbuilt Boy's Quarters, Ikate Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +27673,Lovely And Spacious 4 Bedroom Terraced House,Z Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +27674,Spacious 4 Bedroom Terraced Duplex,Z Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +27675,Nice 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27676,Exquisitely Finished 4 Bedroom Fully Detached With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27677,Splendid 5 Bedroom Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +27678,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Boysquarter Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +27679,Newly Serviced 4 Bedroom Terraced House With Boys Quarter,Z Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27680,Hot 8 Units Of 3 Bedroom Flats Available,Lekki Lagos,₦,"210,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27681,Lovely 4 Bedroom Duplex And 4 Penthouse Shortlet Apartment, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27682,Newly Built 4 Units Of 3 Bedroom Flats With Boys Quarters,Bridge Gate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +27683,A Brand New Luxury Of 16 Residential Apartments,"@ Mash Street Off Cornelius Odinjour Crescent Off Hammed Kasumu Street, Opposit, Chevy View Estate, Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27684,Fully Serviced 4 Bedroom Terraced Duplexes,Z Ikota Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,0 baths,0 Toilets,Ikota +27685,Newly Built 2 Units Of 4 Bedroom Semi Detached Duplex With Boys Quarter Available,Z Ikate Lekki Lagos,₦,"108,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikate +27686,Luxurious 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +27687,"Spacious 5 Bedroom Duplex Available For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Ikota +27688,"4bedroom Terrace Duplex, New Building.",Illasan New Road Ilasan Lekki Lagos,₦,"72,000,000/month",0,1,0,4 beds, baths,5 Toilets,Other Lekki +27689,Shop,Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27690,Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +27691,Beautifully 5 Bedroom Fully Detached Duplex With Bq .,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +27692,5 Bedroom Detetach With Swimming Pool,Nicon Town Lekki Lagos,$,"2,000,000/sqm",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +27693,Massive 5bedroom Duplex For Sale In Vgc.,Lekki Epe Express Way. Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +27694,2000sqm Land At A Strategic Location For Both Commercial And Resident For Sale At Lekki .ikate.,Lekki Epe Express Way. Ikate Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Ikate +27695,5 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27696,Newly Built 4bedroom Luxury Duplex,2nd Toll.gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +27697,5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +27698,Newly Built 5bedroom Comptemporary Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,7 baths,7 Toilets,Chevron +27699,4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +27700,5 Bedrooms Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +27701,Newly Built 4bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,6 baths,6 Toilets,Victoria Garden City +27702,5 Bedroom Luxery Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,7 baths,7 Toilets,Chevron +27703,3 Bedroom Terrace Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +27704,Lovely Finished Semi Detached Duplexes At Chevron Area,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27705,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +27706,"Luxury 4 Bedroom Semi Detached Duplex ,bq , Guest Toilet ,multimedia, Cctv, Jacuzzi For Sale Vgc",Vgc Lekki Lagos,₦,"190,000,000",0,1,0, beds,4 baths,5 Toilets,Victoria Garden City +27707,4bedroom Terrace Duplex On 3 Floors,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +27708,Newly Built 4 Bedroom Deatched Duplex,Close To Palace Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +27709,Newly Built 5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +27710,5 Bedroom Detached Duplex With Penthouse, Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +27711,2 Bedrooms Apartment,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 2 +27712,Newly Built 3bedroom Semi Detached Duplex With Bq,Awoyaya Chevron Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,6 baths,6 Toilets,Chevron +27713,Newly Built 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikota +27714,Available Terrace Houses,"Lekki 2nd Toll, Orchid Road Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27715,5 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27716,3 Bedroom Flats With Boys Quarter, Ikate Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,3 Toilets,Ikate +27717,Newly Built 4bedroom Luxury Duplex,2nd Toll.gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +27718,"Constructed Modern House With 5 Bedroom Fully Detached, Stand Alone Duplex Available With One Room Bq",Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +27719,Newly Built 4bedroom Semi Detached Duplex With Bq,Orchid Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Victoria Garden City +27720,Newly Built 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +27721,Newly Built 5bedroom Duplex With Swimming,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +27722,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +27723,Almost Ready 5 Bedroom Fully Detached Duplex With Two Room Bq, Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets,Victoria Garden City +27724,Brand New 5 Bedroom Detached Duplex Within A Serviced Estate,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +27725,Newly Built 4bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +27726,"5 Bedroom Luxury Fully Detached Duplex With Pool ,cinema And Bq",Pinnock Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +27727,4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27728,Newly Built 5bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +27729,3 & 4 Bedroom Terraces,Off Orchid Road Lekki Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths, Toilets,Ikota +27730,Newly Built 5bedroom Fully Detached Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +27731,2 Bedrooms & 3 Bedrooms Apartments,Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27732,"Of Six, Four Bedroom, Family Dwellings That Offers Buyers A Great Opportunity","Alma Beach Estates, Elegushi, Lekki Ikate Lekki Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +27733,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27734,5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27735,Massive 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,4 Toilets,Ikota +27736,Lovely Finished Terraced Duplexes At Chevron Area,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +27737,Brand New 5 Bedroom Detached Duplex Within A Serviced Estate,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +27738,5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +27739,Newly Built 5bedroom Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths, Toilets,Ikota +27740,Newly Built 2 And 3 Bedroom Apartment For Sale,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikota +27741,4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +27742,4 Bedroom Terraces, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +27743,5 Bedrooms Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +27744,Newly Built 4 Bedrooms Detached Duplex With Bq,"...,. Ikota Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +27745,5 Bedroom Fully Detached Duplex With Swimming Pool And Pent House.,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +27746,Newly Built Spaciou 5bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets,Ikota +27747,Newly Built 5bedroom Luxury Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +27748,4 Bedrooms Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +27749,Super Spacious Luxury Chevron Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +27750,Government Consent,"Ologolo Town Lekki, Close To The Road Ologolo Lekki Lagos",₦,"55,000,000/sqm",1,1,0,5 beds,5 baths,6 Toilets,Ologolo +27751,*??classy 5 Bedroom Fully Detached Duplex??*,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27752,5 Bedroom Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +27753,Hotel,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27754,Newly Built 5 Bedroom Semi Detached Duplex With Bq,"Chevron Drive, Lekki. Chevron Lekki Lagos",₦,"99,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +27755,Merit Park,Iberekodo Jakande Lekki Lagos,₦,"10,000,000",1,0,0, beds, baths, Toilets,Other Lekki +27756,Maiyegn Beach Estate,"Beach Gate, Jakande Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27757,5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets,Chevron +27758,5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets,Chevron +27759,5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets,Chevron +27760,Brand New 3 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +27761,A Mixed Use Waterfront Land Measuring 600sqm,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27762,5 Bedroom Fully Detached Duplex,Lake View Park Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +27763,Newly Built Beautiful 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds, baths, Toilets,Ikota +27764,New And Well Finish 5 Bedroom Detached House In At Chevron,Off Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27765,"Luxury 5bedroom Detached House With Swimming Pool, Cinema In Lekki1",Off Whitesand School Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27766,Newly Built 4 Bedroom Semi Detached House At Ologolo,Off Ologolo Road Ologolo Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets,Ologolo +27767,5 Bedroom Fully Detached Duplex,Lake View Park Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +27768,3 Bedroom Apartment With One Room Bq,Victoria Crest Apartments Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets,Osapa London +27769,Brand New 4bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +27770,"Tastefully Finished And Serviced 4 Bedroom Terrace House With A Room Bq, Swimming Pool And Play Ground.",Z Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +27771,A Tastefully Finished 5 Bedroom Detached Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27772,) Four Bedroom Semi Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27773,Available Land,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27774,Available Land,Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27775,Available Land,Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27776,Available Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27777,Available Land,Lekki Lagos,₦,"125,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27778,Available Land,Z Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27779,Available Land,Z Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27780,Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27781,Available Land,Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27782,Available Land,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27783,Premium Land In Whales County Estate Phase 2,Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +27784,3 Bedroom Duplex With Bq In A Serene Environment,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,3 beds, baths, Toilets,Chevron +27785,Newly Built 4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27786,Newly Built 4 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +27787,6 Bedroom House With 2 Room And Parlor Guest Chalet, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +27788,"Fully Automated Luxury Home With Pool, Gym And Cinema",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths, Toilets,Lekki Phase 1 +27789,Amazing And Spacious Semi Detached House,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,6 beds, baths, Toilets,Ikate +27790,A Beautiful 5 Bedroom Detached Duplex You You,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +27791,A Beautiful Well Designed 4 Bedroom Terrace In A Nice Environment,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds, baths, Toilets,Chevron +27792,Commodious 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"94,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +27793,Off Plan 2 Bedroom Flat With Excellent Facilities,Opposite Nicon Town Nicon Town Lekki Lagos,₦,"46,500,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +27794,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +27795,Newly Built 6 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"800,000,000",0,1,0,6 beds,7 baths,9 Toilets,Chevron +27796,6900sqm Commercial Land,Landmark : House On The Rock Ikate Lekki Lagos,₦,"240,000/sqm",0,0,0, beds, baths, Toilets,Ikate +27797,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +27798,Newly Built 5 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikate +27799,1000sqm Land,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27800,Luxury 1 Bedroom Maisonette With Excellent Facilities (offplan),Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +27801,Available Land,Lekki Lagos,₦,"199,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27802,Available Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27803,Available Land,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27804,Available Land,Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27805,Available Land,Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27806,Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27807,Available Land,Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27808,Available Land,Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27809,Available Land,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27810,Available Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27811,Available Land,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27812,Available Lands (various Prices),Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27813,Available Land,Lekki Lagos,₦,"185,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27814,Available Land,Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27815,Available Land,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27816,Available Land,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27817,Available Land,Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27818,Available Land,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27819,Commercial Joint Venture,Ologolo Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +27820,Available Land,Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27821,3 Bedroom Terrace Duplex In A Very Lovely Location,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I, Lagos State. Ikate Lekki Lagos",₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +27822,3 Bedroom Maisonette Duplex With Fantastic Finishes,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I Ikate Lekki Lagos",₦,"95,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +27823,Luxury 3 Bedroom Duplex In Awesome Design & Finishes,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I Ikate Lekki Lagos",₦,"105,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +27824,"5 Bedroom Contemporary House With Cinema, Swimming Pool And Bq",Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +27825,4 Bedroom Duplex Fully Detached With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +27826,4 Bed Semi Detached Duplex With Excellent Facilities,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +27827,5 Bed Fully Detached Duplex With Excellent Facilities,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +27828,4 Bed Semi Detached Duplex With Excellent Facilities,Vgc Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +27829,3 Bedroom Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +27830,3 Bedroom Terraced Duplex House,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27831,4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27832,4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27833,"A 600sqm Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27834,"Distress Sale Of 5 Bedroom Duplex In Chevyview Estate, Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +27835,"A 800sqm Waterfront Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27836,Mixed Use Dry Land For Sale,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +27837,New 4bedroom Duplex In Ologolo Lekki Phase 1,Ologolo Ologolo Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27838,Newly Built Luxury 5 Bedroom Fully Detached Duplex In Osapa London For Sale,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27839,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Agungi +27840,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema In Gated Estate Osapa London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27841,"A 1500sqm Waterfront Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27842,Classic Luxury Spacious 3 Bedroom Block Of Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +27843,4 Bedroom Bungalow Penthouse With Bq,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27844,4 Bedroom Semi Detached Duplex,Maruwa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27845,Awesomely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +27846,4 Bedroom Semi Detached Duplex With Bq,Lekki Gardens Phase2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +27847,Available Lands (various Prices),Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27848,Land And Building,"Aaron Irabor Street, Osapa Osapa London Lekki Lagos",₦,"90,000,000/sqm",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +27849,4 Bedroom Luxury Detached Duplexes With Bq,Oniru Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27850,Brand New 4 Bedroom Terrace Duplex,Back Of Romey Garden Ilasan Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +27851,"Brand New 4 Bedroom Terrace With Bq At Osapa, Lekki",Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,5 Toilets,Osapa London +27852,Brand New 4 Bedroom Terrace With Bq,Z Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27853,5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27854,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27855,2 Units Of Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27856,6 Units Of Brand New & Exquisitely Finished 5 Bedroom Detached Houses,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +27857,Lovely 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27858,Newly Built 4 Bedrooms Semi Detached Duplex & Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27859,Newly Built 6 Bedroom Detached Duplex With A Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets,Ikate +27860,Lovely 4 Bedroom Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +27861,Land,At Bakare Estate Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Agungi +27862,Newly Built 6 Bedroom Detached Duplex With A Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets,Ikate +27863,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +27864,5 Bedrooms Fully Detached With Bq Available For Sale,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +27865,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +27866,A Luxurious 4 Bedrooms With Bq,Orchid Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27867,4 Bedroom Apartment,Chevron Lagos Ng Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +27868,Luxury 4 Bedrooms Fully Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27869,5 Bedrooom 3 Reception With 2 Room Bq,Victoria Garden City (vgc) Lagos Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +27870,4 Bedroom With Bq,Osapa Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +27871,A Luxurious 5 Bedroom Fully Detached,Osapa Lagos Ng Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +27872,"4 Bedroom Semi Detached, 2 Rooms Maid Quarters",Victoria Garden City (vgc) Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27873,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +27874,4 Bedroom Fully Detached Duplex,Orchid Lagos Ng Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +27875,4 Bedroom Flat With Bq,Ikate Elegushi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +27876,Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq.,Orchid Lagos Ng Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +27877,5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +27878,4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +27879,Dry Land 10 Plots On Orchid Hotel Road Before The Roundabout,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,7 baths,6 Toilets,Lekki Phase 2 +27880,Three Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,1,3 beds,4 baths,5 Toilets,Lekki Phase 2 +27881,Land,Twinlake Estate By Opposite Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27882,Land,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27883,4 Bedroom Duplex With Bq And Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27884,"4 Plot Of Land Sand Filled, Facing Express",Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +27885,4 Bedroom Terraced Duplex With Bq,Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27886,3 Bedroom Terraced Duplex With Bq,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27887,4 Bedroom Fully Detached With Bq,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27888,2 Bedroom Semi Detached Bungalow With Bq,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27889,3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27890,6 Bedroom Duplex With A 2 Room Bq,Nicon Town Lekki Lagos,₦,"500,000,000",0,0,1,6 beds, baths, Toilets,Other Lekki +27891,4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27892,4bedroom Semi Detached Duplex With A 1 Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,1,4 beds, baths, Toilets,Ikota +27893,2 Bed Apartment With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ologolo +27894,4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27895,4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +27896,Newly Built 4bedroom Semi /fully Detached,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths, Toilets,Chevron +27897,Government Excision,"Off La Campaign Tropicana Beach Resort,ibeju,lekki. Lekki Phase 2 Lekki Lagos",₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +27898,Newly Built Bbeautifully 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets,Chevron +27899,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27900,3 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +27901,Executive Elegant Brand New 2 Units Of 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +27902,Brand New Massive 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27903,Newly Built Super Executive 2&3 Bedroom Block Of Flats,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +27904,"2 Bedroom Luxury Apartment By Chevron, Lekki",Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Chevron +27905,2 Bedroom Luxury Apartment,Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Chevron +27906,2 Bedroom Luxury Apartment,Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets,Chevron +27907,5 Bedroom Terrace Duplex,Idado Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27908,3 Bedroom Apartment With Excellent Facilities,Orchid Road Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +27909,5 Bed Fully Detached Duplex With Excellent Facilities,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27910,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27911,6 Bedrooms Terraced Duplexes,Ocean Bay Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27912,4 Bedroom Luxury Maisonettes,Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27913,5 Bed Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27914,Plot Of Land,Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Chevron +27915,"Newly Built 2 Bedroom Flats, 1 Room Bq + A Mini Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +27916,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +27917,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27918,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27919,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27920,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27921,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27922,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27923,"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +27924,4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +27925,Brand New 6 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +27926,"Viable ""corner Piece"" Detached Duplex",Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +27927,3 Bedroom Fully Detached Castle Bungalow + Bq,"De Castle Luxury Empire Homes, Oribanwa Bustop Awoyaya , 2min From Mayfair Gardens Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27928,Available And Closable Lands,"Mini Estate, On Orchid Road Immediately After Buene Vista Estate Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27929,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +27930,Available Land,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +27931,Land, Jakande Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27932,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq.,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds, baths, Toilets,Ikota +27933,Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27934,2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +27935,Luxury 3 Bedroom Apartment With Swimming,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +27936,3 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Garden City +27937,Two Bedroom Flat,The Signature Terrace Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27938,Kirving Park Estate Awoyaya Lekki,"Oribawa Bustop Awoyaya , 2min From Mayfair Gardens. Lekki Lagos",₦,"12,350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27939,Bare Land In A Fenced And Gated Area,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +27940,7 Bedroom Detached Building,Lekki Lagos,₦,"80,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +27941,Tartiana Court,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27942,Available Bare Land,Ikate Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27943,"Camberwall Advantage 1 & 2 (2,3,4 Bedrooms)",Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27944,1 Bedroom Apartment + Bq,"Ajiwe Bus Stop, By Abraham Adesanya Roundabout, Lekki Lagos",₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +27945,Brand New Spacious 5 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +27946,Irving Park Estate Awoyaya (300/450/600 Sqm),"Oribawa Bustop Awoyaya, Lekki Lagos",₦,"6,650,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27947,Heyday Park Estate Phase 1,Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27948,"4 Bedrooms Semi Detached Duplex, Pantheon Smart Homes",Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27949,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +27950,Ay Homes Golden Castle Buyback Plan,Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27951,5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +27952,Landvest 2.0 Investment,Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27953,Available 30 Plots Of Land,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +27954,Available Bare Land,Beside Periwinkle Estate.ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27955,Available Bare Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +27956,3 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +27957,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +27958,5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +27959,1 Bedroom Apartment + Bq,"Lekki Pride Estate, Lekki Lagos",₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +27960,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +27961,2 Bedroom Apartment,Zylus Group International Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +27962,3bedroom Flat,Prime Water Garden Estate Lekki Phase 1 Lekki Lagos,₦,"37,000,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +27963,Off Plan 2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +27964,Available Bare Land,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +27965,3bedrooms Terrace Duplex,Mega Mound Estate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +27966,4 Bedroom Fully Detached Duplex All Rooms Ensuite.,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +27967,Land Banking Development Project 9.0 Top Up,Lekki Lagos,₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27968,Luxury Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +27969,4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +27970,4 Bedroom Semi Detached Duplex House,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +27971,Pinnacle Prestige Homes,"Oju Agbe, After Eleko Juncture, Ibeju Lekki Community, Lagos. Vgc Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +27972,Available Bare Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +27973,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +27974,Bare Land Sand Filled Ready For Immediate Development.,Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27975,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +27976,4 Bedroom Terrace,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27977,Available Lands,Ikota Lekki Lagos,₦,"135,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikota +27978,Brand New Four Bedroom Terrace Inside A Serviced Estate,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +27979,4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +27980,Land, Jakande Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +27981,"Newly Built 4, And 5 Bedroom Detached Duplex In Chevron",Chevron Lekki Lagos,₦,"76,000,000",0,1,0, beds, baths, Toilets,Chevron +27982,3 Bedroom Terraced Duplex House,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +27983,3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +27984,4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +27985,"Luxury 4 Bedroom Fully Detached Duplex With Bq At Osopa London, Lekki Lagos",Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +27986,Newly Built 4bedroom Smart Luxury Duplex In A Serene Environment,Orchid Hotel Road Lekki 2nd Toll Gate By Chevron Chevron Lekki Lagos,₦,"76,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets,Chevron +27987,Newly Built 4bedroom Luxury Smart Duplex In A Serene Environment In Chevron Lekki Ajah,Orchid Rd By Lekki 2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"76,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets,Chevron +27988,4 Bedroom Terrace Duplex Plus Bq At Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +27989,4bedroom Terrace Duplex With Bq At Osapa London Beside Pinnock Beach Estate,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +27990,5 Bedroom Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +27991,4 Bedroom Terrace Duplex With Excellent Facilities,Conservation Road Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27992,Lands At Max Bay Estate Phase 1,Eleko Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets,Other Lekki +27993,Lands At Max Gardens Estate,"Odoemi, Ebute Okum Abakeeta Community Lekki Lagos",₦,"500,000",0,0,0, beds, baths, Toilets,Other Lekki +27994,A Tastefully Finishded 4 Bedroom Semi Detached Duplex With A Swimming Pool,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +27995,A Tastefully Finished Fully Detached Duplex On A Driveway Location: Chevron Estate,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +27996,Brand New Semi Detached Duplex,Ikota Gra Lekki Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths, Toilets,Ikota +27997,"A Tastefully Finished 4 Bedroom Semi Detached Duplex, With 1 Room Bq",Chevron Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +27998,Brand New Sharp 5bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +27999,6 Bedroom Duplex With 2 Room Bq (including Everything Inside),Nicon Estate Nicon Town Lekki Lagos,₦,"460,000,000",0,0,1,6 beds,6 baths,7 Toilets,Other Lekki +28000,A Tastefully Newly Built 4 Bedroom Fully Detached Duplex In Ikota Estate,Ikota Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28001,Spacious 5 Bedroom Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28002,A Tastefully Finished 4 Bedroom Semi Detached Duplex On A Driveway In Ikota Estate,Ikota Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28003,Newly Built 5bedroom Duplex With A Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28004,A Detached Duplex,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +28005,Governor's Consent,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +28006,4 Bedroom Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28007,4 Bedroom Semi Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28008,3 Bed Terrace Duplex With Excellent Facilities,Lekki Conservation Road Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28009,4 Bed Apartment With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +28010,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28011,2bedroom Flat , Chevron Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +28012,5 Bed Fully Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +28013,5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +28014,5bedroom Duplex With 1 Boysquater.,Chevy View Estate. Chevron Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,5 baths,6 Toilets,Chevron +28015,Newly Built 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28016,Newly Built 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28017,4bedroom Semi Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds, baths, Toilets,Ikate +28018,5bedroom Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +28019,Newly Built 4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28020,Beautiful 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28021,Luxurious House Available, Jakande Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28022,Beautiful 5 Bedroom Detached House With 2 Boys Quarter Available, Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +28023,Decently Built Luxury 4 Bed Contemporary Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28024,Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28025,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28026,Super Land For Jv At The Beginning Of Orchid Road,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28027,Magnificent 5bedroom Duplex With Room Boys Quaters,Megamond Estate Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +28028,Decent 4 Bedrooms Fully Detached Terraced Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +28029,"Primrose Court, Orchid Road 4 Bedroom Terrace Duplexes",Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +28030,All En Suite Fully Detached 4 Bedroom Duplex With A Bq,Alhaji Maruf Ali Owe Street. Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +28031,55.6hectares Of Land Available At Chevron Drive,Chevron Alternative Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +28032,Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +28033,Lovely Spacious 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +28034,A Fully Detached 5bed All Rooms En Suite Duplex On 3floors,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +28035,Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +28036,Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28037,Gorgeous 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28038,Sweet Land In Twin Lake Estate 110sqm,Chevron Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Chevron +28039,A Tastefully 4 Bedroom Terrace Duplex With Standard One Room Boy Quarter,Osborne 2 Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +28040,Beautiful 4 Bedroom Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28041,"Beautiful Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema, And Swimming Pool",Lekki Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +28042,Magnificent 4bedroom Duplex With Room Boys Quaters,Cluster One Estate By Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28043,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28044,Massive Land For Jv,Ikate Lekki Lagos,₦,"250,000,000/sqm",0,0,0, beds, baths, Toilets,Ikate +28045,Magnificent 4bedroom Duplex With Room Boys Quaters,Zone C Nicon Town Estate Nicon Town Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets,Other Lekki +28046,5 Bedroom Fully Detached Homes,Westend Estate Ikota Villa Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +28047,Exotic 5 Bedrooms Fully Detached Terraced Duplex,:osapa London Lekki. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +28048,Fully Detached Duplex Featuring; 4 Bedrooms (all Ensuite) With Bq/service Room,"Lakeview Park Ii Estate, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +28049,4 Bedrooms Fully Detached Terraced Duplex,Agugi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Agungi +28050,3 Bedroom Penthouse + Bq,Camberwell Advantage 2 Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +28051,Luxury 5 Bedroom Detached Duplex,"Ikate Lekki, Behind Mercedes. Lekki Phase 1 Lekki Lagos",₦,"135,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +28052,Beautiful 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +28053,"A Newly Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28054,Sizeable Parcel Of Land For A Jv @ Second Tollgate Lekki/epe Express,Chevron Alternative Route Chevron Lekki Lagos,₦,"4,300,000,000",0,0,0, beds, baths, Toilets,Chevron +28055,Luxury 5 Bedroom Detached Duplex,"Ikate Lekki, Behind Mercedes. Ikate Lekki Lagos",₦,"135,000,000",0,1,0,5 beds, baths, Toilets,Ikate +28056,"Nicely Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28057,Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28058,Magnificent 4bedroom Duplex With Room Boys Quaters,Idado Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +28059,Beautiful 4 Bedroom Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +28060,Luxurious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28061,Brand New Luxury 4bedroom Duplex With Bq,Opposite Nicon Town Estate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +28062,Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +28063,Lovely 4 Bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28064,Huge Land In Lekki Phase 1 Is Waiting For Its Next Owner,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28065,Lovely Finished 4 Bedroom Semi Detached Duplex With Bq And Security House,Chevron Drive Lekki. Idado Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28066,"Nicely Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28067,Luxurious 6 Bedroom Duplex With 2 Room Boys Quarters,Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +28068,Brand New Standard Service 2bedroom Flat All Rooms Ensuite,Lekki Right Side By Petrocam Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +28069,Fantastic Land In A Most Wanted Area/ Top Celebrities Residential Area,Nicon Town Lekki Lagos,₦,"250,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +28070,1200sqm Of Dry Land For Sale,"Mike Adegbite Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28071,Luxury 5 Bedroom Terraced Duplex With Class,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +28072,5 Bedroom Duplex In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28073,4 Bedroom Terrace Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +28074,5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28075,Two Wings Duplex Of 5 Bedrooms, Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Lekki +28076,5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28077,5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28078,4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28079,4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28080,Newly Built 4 Bedroom Semi Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28081,4 Bedroom Terraced Duplex With Bq (fully Serviced),"June Four Gardens, 5th Avenue, Osapa London Osapa London Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +28082,Tastefully Finished Luxury 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +28083,Newly Built 4bedroom Terraced Duplex In A Serene Environment,Ologolo Lekki Lagos,₦,"59,000,000/day",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +28084,5 Bedroom Detached House With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28085,Nicely Finished Brand New Serviced 3bedroom,Seagate Estate On Spar Road Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +28086,Newly Built 5 Bedroom Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28087,"5, Bedroom Duplex With Bq And Swimming Pool","Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +28088,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,V.g.c Vgc Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +28089,4bedrooms Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +28090,Newly Built 5 Bedroom Semi Detached Duplex At Osapa London,Off Femi Okunu Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28091,Well Finished 3 Bedroom Flat With Inbuilt Boys Quarter,Ikate Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +28092,Newly Built Fully Serviced 2 Bedrooms Apartment,Ilasan Lekki Lagos,₦,"40,000,000/year",1,1,0,2 beds,3 baths,3 Toilets,Other Lekki +28093,4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28094,4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28095,Beautiful 4 Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,0 baths,0 Toilets,Victoria Garden City +28096,4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28097,4 Bedroom Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28098,4 Bed Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28099,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"53,000,000/month",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28100,4 Unit 4 Bedroom Terrace And Bq In A Serene Neighbourhood,"Elasen Estate, Orchid Road Opposite Eleganza, Lekki Second Toll Gate Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,3 baths,4 Toilets,Chevron +28101,Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28102,5 Bedrooms Fully Detached Duplex (three Step) With A Room Bq,Ocean Bay Estate At Orchid Road Second Toll Gate Ikota Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28103,Beautiful 4 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28104,Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28105,5 Bedroom Detached Duplex,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28106,Luxury 6 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +28107,3 Bedroom Terrace House With A Bq In A Gated And Serviced House,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +28108,4bedroom Terrace, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +28109,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +28110,3 Units Of 5 Bedroom Detached House On 550sqm Each,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28111,Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28112,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +28113,5bed Room Fully Detached Duplex With Pool And 2 Self Contained (with Mini Kitchen) Bq In Mayfair Gardens Estate Awoyaya.lekki.price N95m,"Mayfair Garden Estate,awoyaya,lekki Lekki Lagos",₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +28114,Upscale Semi Detached 5 Bedroom 5.5 Bathroom Home – Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28115,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +28116,12 Unit 4 Bedroom Terrace And 5 Bedroom Detached,"West Bridge Estate 11 Orchid Road, Opposite Eliganza, Lekki Chevron Lekki Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28117,"800sqm To 12,000sqm Of Land",Twin Lake Estate Chevron Lekki Lagos,₦,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28118,Dry Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +28119,Luxury 4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28120,"Brand New Tastefully Finished 6 Bedrooms Fully Detached House For Sale At Chevy View, Lekki.",Chevy View Chevron Lekki Lagos,₦,"68,000,000",0,0,0,6 beds,7 baths,7 Toilets,Chevron +28121,5 Bedroom Detached House,"Off Freedom Way, Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +28122,4 Units Of 4 Bedroom Terrace,Igbo Efon Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28123,Luxury 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +28124,4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28125,4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28126,Brand New 5bedroom Detached Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,1,0,5 beds,5 baths, Toilets,Lekki Phase 1 +28127,5bedroom Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths, Toilets,Lekki Phase 1 +28128,Brand New 2 Bedroom Flat, Ikate Lekki Lagos,₦,"6,300,000",0,0,0,2 beds,2 baths,0 Toilets,Ikate +28129,6 Bedroom Detached Duplex House,Pinnock Beach Estate Osapa London Lekki Lagos Lekki Lagos,₦,"450,000,000/year",0,1,0,6 beds,6 baths,10 Toilets,Other Lekki +28130,Newly Built 4 Bedroom Semi Detached Duplex With Bq...... Lekki 2nd Tollgate Lagos,Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28131,Brand New Automated Smart 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28132,Brand New 4bedroom Detached Duplex With A Room Bq At Chevron Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28133,Newly Built Spacious 4 Bedroom Semi Detached Duplex With A Room Bq.....99%,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28134,Affortable+fully Serviced!!! Top Location Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,3 baths,5 Toilets,Ikate +28135,Newly Built Six Units Of 4 Bedroom Semi Detached Duplex In A Serviced Estate,Orchid Road Off Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +28136,Brand New Affordable Spacious 4 Bedroom Semi Detached Duplex With A Room Bq..... 95% Finished,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28137,Newly Built 4 Bedroom Terrace Duplex With Bq.., Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28138,Newly Built Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28139,Newly Built Semi Detached Duplex With Bq, Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28140,"Hot Deal Newly Built 5 Bedroom, Detached Duplex With One Room Bq",Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28141,Newly Built 5 Bedroom Detached Duplex With A Room Bq And Swimming Pool...... Lekki County Lagos,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28142,Tastefully Finished 5 Bedroom Detached Duplex With Boys Quarters Lekki,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +28143,Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28144,Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28145,Very Lovely 5 Bedroom Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +28146,Luxuriously Structured 4 Bedroom Semi Detached Duplex Plus Bq For Sale At Osapa London. Lekki,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +28147,Luxuriously Built 5 Bedroom Detached Duplex For Sale At Ikota Lekki,Around Megamound Lekki County Home Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Ikota +28148,Fantastic 3 Bedroom Flat, Lekki Lagos,₦,"29,000,000/sqm",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +28149,Standard 3 Bedroom Apartment Plus Bq,"Queens Court, Bera Estate Chevron Lekki Lagos",₦,"29,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +28150,Executively Built 5 Bedroom Detached Duplex Plus Bq For Sale At Chevron Alternative Route. Lekki,Chevron Alternative Route Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds, baths, Toilets,Chevron +28151,Fresh New 4 Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,0 baths,0 Toilets,Victoria Garden City +28152,Beautifully Structured 5 Bedroom Detached Duplex For Sale At Ikota Lekki,Around Megamound Lekki County Home Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Ikota +28153,Standard 4 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28154,Standard And Beautifully 4 Bedroom Duplex, Lekki Lagos,₦,"120,000,000/year",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +28155,Executively Built 4 Bedroom Duplex Plus Large Bq,"Buenavista Estate, Off Orchid Road Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +28156,Beautifully Structured 30 Units Of 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28157,Well Finished 4 Bedroom Duplex,Megamomd Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28158,Well Structured 5 Bedroom Detached Duplex For Sale At Thomas Estate. Lekki,Thomas Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +28159,Executively Structured 5 Bedroom Detached Duplex Plus 2 Rooms Bq For Sale At Chevron Drive. Lekki,Chevron Drive Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Chevron +28160,Very Lovely 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28161,A Massively Structured 5 Bedroom Detached Duplex Plus Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +28162,"New, Spacious And Tastefully Structured 5 Bedroom Detached Duplex For Sale At Chevy View. Lekki",Chevy View Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +28163,Brand New Tastefully Finished 4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000/sqm",0,0,0,4 beds,6 baths,6 Toilets,Ikota +28164,Beautifully Built 4 Bedroom Semi Detached Duplex,"Buenavista Estate, Off Orchid Road Chevron Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +28165,Beautifully Built 4 Bedroom Semi Detached Duplex Plus Bq,Off Fatai Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28166,Beautifully Structured 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28167,Standard 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28168,Newly Built 4 Bedroom Full Detached Duplex,Lekki County Home Ikota In Western States Lekki Lagos,₦,"82,000,000/month",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +28169,Is This The Perfect Family Home?,"Harris Drive, Beside Vgc Estate Vgc Lekki Lagos",₦,"47,000,000",1,1,0, beds, baths, Toilets,Victoria Garden City +28170,Newly Built 5 Bedrooms Detached Duplex,Tulip Heaven Estate Gate 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28171,Pantheon Smart Homes,Orchid Road Chevron Lekki Lagos,₦,"125,000,000/month",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28172,5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28173,Luxury 2bedroom Block Of Flats(only 2 Units Left),Freedom Way. Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"84,000,000/month",0,0,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +28174,A Luxury Newly 4bedroom Duplex,Inside Vgc Estate Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets,Victoria Garden City +28175,Newly Built 4 Bedroom Terrace Duplex,"Orchid Road, Lekki 2nd Toll Gate, 2 Mins From The Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28176,"Luxury 5 Bedroom Duplex, Bq Inclusive.","Izu Court, Chevron Drive Chevron Lekki Lagos",₦,"99,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +28177,A Luxury Newly 5bedroom Duplex For Sale Opp Nicon Town Estate Lekki,Jakande Lekki Lagos Area Opp Nicon Town Estate Lekki Jakande Lekki Lagos,₦,"153,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +28178,Brand New 2 Units Of 6 Bedrom Fully Detached Duplex With A 1 Room Bq Each,Chevy View Estate Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,1,1,6 beds,6 baths,7 Toilets,Chevron +28179,Own An Affordable Yet Classy Home Close To Strategic Locations,"Romax Homes, Harris Drive. Beside Vgc Estate Vgc Lekki Lagos",₦,"47,000,000",1,1,1, beds, baths, Toilets,Victoria Garden City +28180,Beautiful Residence In A Prime Location Below Market Price,"Harris Drive, Beside Vgc Estate Vgc Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +28181,Owning Luxury At An Affordable Price Is A Major Deal,"Orchid Road, Chevron 2ndtoll Gate, 2 Mins Away From The Lekki Epe Expressway Oral Estate Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +28182,5bed Room Duplex For Sale In Beautiful Estate Richmond Gate Estate Lekki,Richmond Gate Estate Lekki Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths, Toilets,Ikate +28183,Tastfully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq In Ikota Villa Estate Lekki.,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds, baths, Toilets,Ikota +28184,Newly Completed 4 Bedroom Semi Detached Duplex,By Vgc Round About By Nouth West Oil Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +28185,Newly Completed Semi Detached 4 Bedroom Duplex,Vgc Round About By North West Oil Ikota Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +28186,A Luxury New 3 Bedroom Flat In Beautiful Estate,Southern View/ochard Ikota Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikota +28187,Newly Completed 4bedroom Terrace Duplex In Richmond Gate Estate Lekki,Richmond Gate Estate Lekki Ikate Lekki Lagos,₦,"126,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +28188,Newly Completed 4bedroom Duplex,Chevron Attentive Route Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,0 Toilets,Chevron +28189,Off Plan 3 Bedrooms Terraces,"Orchid Road, After Chevron 2nd Toll Gate, Opposite His Grace Event Centre, Eleganza Oral Estate Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +28190,"Newly Built 6 Bedroom Detach Duplex With Bq, Swimming Pool Built On 700 Sq. Meter With C Of O",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,0 baths,0 Toilets,Lekki Phase 1 +28191,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28192,Beautiful And Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28193,6 Bedroom Duplex With A Penthouse, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,8 Toilets,Chevron +28194,20 Plots Of Land Measuring 600 Sqm Per Plot For Sale @ Orchid Road Lekki Lagos,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets,Chevron +28195,5 Bedrooms Detached + Bq With Ecstatically Designed Masters Walk In Closet Through Bathroom,"Orchid Road Lekki, Just Before The Roundabout With A Proposed 2nd Access Road Linking Conservation, Off Chevron Toll Gate Lekki Chevron Lekki Lagos",₦,"72,000,000",0,0,1,5 beds,5 baths,5 Toilets,Chevron +28196,Exclusive 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28197,Beautiful 5 Bedroom Fully Detached Duplex,Lekki Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28198,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28199,Super 5 Bedroom Detached Masterpiece Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28200,5 Bedroom Fully Detached Duplex,Lekki Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28201,Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +28202,Decent 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28203,Lovely 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28204,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28205,5 Bedroom Fully Detached Duplex With 2 Bq And Pool,Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28206,Newly Built 3 Bedroom Flat,Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28207,Lovely 5 Bedroom Detached Duplex With Pool,By Second Toll Gate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28208,Serviced 4 Bedroom Semi Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28209,Serviced 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28210,Tastefully Finished 4 Bedroom Semi Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28211,Tastefully Finished 5 Bedroom Fully Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28212,Newly Built 3 Bedroom Terrace Duplex,After 2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28213,Tastefully Finished 5bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28214,4 Bedroom Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28215,Automated 5 Bedroom Detached House,Lekki Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28216,Excellent 4 Bedroom Duplex With Bq And Pool,Off Orchid Road Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28217,Beautiful Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28218,5 Bedroom Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28219,Well Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28220,Exquisitely 5 Bedroom Automated Detached Duplex With Pool,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28221,Excellent 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28222,Fully Serviced 4 Bedroom Terrace Duplex,By Second Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28223,4 Bedroom Detached Duplex With Bq,Off Orchid Road Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28224,Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +28225,Dry Lands,Off Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28226,Beautifully Done 4 Bedroom Townhouse,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28227,Gorgeous 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28228,Lovely 2 Bedroom Apartment With An Elevator,Lekki Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +28229,Excellent 4 Bedroom Town House,Lekki Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28230,Lovely 4 Bedroom Semi Detached Duplex,Lekki Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28231,Executive 5 Bedroom Fully Detached Duplex With Pool,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28232,4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28233,Newly Built 3 Bedroom Terrace Duplex,After 2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28234,Lovely 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28235,Exclusive 5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"96,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28236,Beautiful 5 Bedroom Fully Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28237,Dry Lands,Off Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28238,Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +28239,Lovely 2 Bedroom Apartment With An Elevator,Lekki Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +28240,Service And Spacious 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28241,Lovely 3 Bedroom Apartment With Bq,Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28242,"1016 Sqm Land In Alma Beach Estate, Elegushi","Alma Beach Estate, Elegushi Lekki Lagos",₦,"135,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +28243,Land Measuring 1000 Square Meters,Johnson Omorinre Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28244,A Land For Sale. One Plot Located At Igbo Efon.,Igbo Efon Off The Express Way Igbo Efon Lekki Lagos,₦,"68,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28245,Luxurious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +28246,Luxurious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +28247,4 Bedroom Duplex In A Fully Serviced Estate,Ikate Lekki Lagos,₦,"38,990,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +28248,A Classy 4 Bedroom Semi Detached Duplex,"Harris Drive, Adj. Vgc Estate, Vgc Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +28249,Newly Built 3 Bedroom Apartment,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 1 +28250,Kayla's Court 4 Bedroom Semi Detached Duplex + Bq,"By Dr. Kenedy Okonkwo Street, Beside Pinnock Beach Estate, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"80,000,000",1,1,0,4 beds, baths, Toilets,Osapa London +28251,Kayla's Court 4 Bedroom Terrace + Bq,"By Dr. Kenedy Okonkwo Street, Beside Pinnock Beach Estate, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"68,000,000",1,1,0,4 beds, baths, Toilets,Osapa London +28252,Newly Built Mall For Office Space And Commercial Activities,"Oriwu Street, By Petrocam, Lekki Right, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"654,000/sqm",1,0,0, beds, baths,1 Toilets,Lekki Phase 1 +28253,A Land,At Elegaza/pan Atlantic University Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28254,A Block Of 4 Flats Of 3 Bedrooms,"Baruwa Street , Ologolo Jakande Lekki Lagos Jakande Lekki Lagos",₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +28255,Luxuriously 4 Bedroom Semi Detached Duplex With 2bq House, Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +28256,Luxuriously Finished 6 Bedroom Detached Duplex , Ikate Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikate +28257,6 Bedroom Fully Detached House,Off Admiralty Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,6 beds,7 baths,7 Toilets,Lekki Phase 1 +28258,Newly Built 5 Bedroom Fully Detached Exquisitely Furnished Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,1, beds, baths, Toilets,Chevron +28259,Newly Built 5 Bedroom Fully Detached Exquisitely Furnished Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,1, beds, baths, Toilets,Chevron +28260,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28261,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28262,5 Bedroom Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28263,4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28264,4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28265,4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28266,4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28267,Beach View Land @ Beach Road Lekki Jakande For Sale,Beach Road Jakande Jakande Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28268,814 Sqm Land By Nicon Town Estate,Jakande Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28269,9 Bedroom Duplex By Nicon Town Estate,Jakande Lekki Lagos,₦,"350,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Lekki +28270,4 Bedroom Luxury Maisonette (advanced Shell),Dupe Oguntade Ikate Lekki Lagos,₦,"41,290,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +28271,A 4bedroom Luxury Terrece (advanced Shell),Dupe Oguntade Ikate Lekki Lagos,₦,"48,990,000/month",1,1,0,4 beds,4 baths,5 Toilets,Ikate +28272,Newly Built 3 Bedroom Terrace (advance Shell),Dupe Oguntade Street Ikate Lekki Lagos,₦,"48,990,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +28273,Land For Sale At Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +28274,Big 4 Bedroom Duplex With Bq,Ademola Street Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +28275,Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,1,5 beds, baths, Toilets,Osapa London +28276,Newly Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds, baths, Toilets,Osapa London +28277,Luxury 5 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 1 +28278,Four Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Ikate +28279,Newly Built 5 Bedroom Detached Duplex.,Agungi Lekki Lagos,₦,"81,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +28280,Luxury 4 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,1,4 beds, baths, Toilets,Ikota +28281,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28282,Newly Built 4 Bedroom Semidetached Duplex +bq,"Sangotedo Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +28283,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28284,Exotic 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 1 +28285,Newly Built Apartments In Ikate And Abijo,Lekki Lagos,₦,"45,000,000/sqm",0,1,0, beds, baths, Toilets,Other Lekki +28286,Four Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets,Chevron +28287,Exotic 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets,Lekki Phase 1 +28288,Four Bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +28289,Newly Built 5 Bedroom Fully Detached Duplex +bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds, baths, Toilets,Osapa London +28290,Newly Built 4 Bedroom Detached Duplex +bq,Lekki Phase 2 Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +28291,Newly Built Luxury 4 Bedroom Fully Detached Duplex +bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"115,000,000/sqm",0,0,1,4 beds, baths, Toilets,Lekki Phase 2 +28292,Four Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28293,Five Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Ikate +28294,Newly Built 4 Bedroom Semidetached Duplex +bq,Sangotedo Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +28295,Five Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28296,Five Bedroom Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Ikate +28297,Newly Built 4 Bedroom And 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths,4 Toilets,Ikota +28298,Newly Built Luxury 4 Bedroom Semidetached Duplex +bq,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets,Chevron +28299,Four Bedroom Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Ikate +28300,Newly Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets,Ikate +28301,Newly Built 5 Bedroom Duplex,Megamound Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +28302,"Contemporary Design Smart 4 Bedrooms Semi Detached Duplex With Bq,",2nd Toll Lekki Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds, baths, Toilets,Chevron +28303,"Pantheon Estate, Chevron Lekki",Chevron Lekki Phase 2 Lekki Lagos,₦,"67,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28304,4 Bedroom Semi Detached Duplex . All Rooms En+suite., Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +28305,100 Luxury Apartments For Off Plan Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"12,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28306,Water Front Estate,Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets,Ikate +28307,Luxury 100 Units Of Apartments, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28308,Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28309,"4 Bedroom Terrace +bq @ Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki*",Meadow Hall Ikate Lekki Ikate Lekki Lagos,₦,"84,800,000/month",0,0,0,4 beds,6 baths,6 Toilets,Ikate +28310,4 Bedroom Terraced Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +28311,4 Bedroom Terraced Duplex,"Primrose Court, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"47,500,000/month",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +28312,4 Bedroom Semi Detached Duplex In Ikate Lekki,Gbangbala Street Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,6 baths,7 Toilets,Ikate +28313,"4 Bedroom Semi Detached Duplex @orchid Rd, Royal Pine Estae",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,6 baths,7 Toilets,Lekki Phase 2 +28314,Brand New 4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +28315,Brand New 5bedroom Fully Detached Duplex With Bq,Agungi Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +28316,Newly Built 4 Bedroom Duplex,"Ikota School, Off Lekki Epe Expressway Ikota Lekki Lagos",₦,"45,000,000/month",0,1,0,4 beds,4 baths,4 Toilets,Ikota +28317,Newly Built 6 Rooms Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"85,000,000/day",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +28318,Newly Built 3 Bedroom Terraced Duplex,Harris Drive Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Garden City +28319,Strategic Commercial Land,Express Way Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28320,"Whales County, Orchid Road,lekki",Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +28321,3bedroom Luxury Apartments,Ikate Lekki Lagos,₦,"58,000,000",1,0,0,3 beds,4 baths,5 Toilets,Ikate +28322,4 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +28323,Contemporary 5 Bedroom Fully Detached Duplex In A Secured Estate,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +28324,2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +28325,910m2 Bare Land,Behind Emerald/mobil Estate Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28326,4 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +28327,5 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +28328,4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +28329,3 Bedroom Detached Bungalow,Bogije Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +28330,New And Vacant 4 Bedrooms Duplex With Bq,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28331,Amazing Beachfront Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +28332,4 Bedroom Detached Duplex,Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +28333,4bedroom Massive Terrace On Two Floors,"Behind Updc Estate, (right Side Of Lekki Phase 1) Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +28334,2bedroom Luxury Apartment,Kizz Daniel Street Ikate Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +28335,Single Mini Flat,"Baba Lola, Ikate Lekki Lagos",₦,"50,000,000",0,1,0,1 beds,2 baths,2 Toilets,Ikate +28336,Well Built 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Ikate +28337,"Half Plot Of Land At Southern Green Estate, At Orchid Road",Orchid Lekki Phase 2 Lekki Lagos,₦,"15,000,000/sqm",1,0,0, beds, baths, Toilets,Lekki Phase 2 +28338,Newly Built 5 Bedrooms Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +28339,Deluxe 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28340,Newly Built 3 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths, Toilets,Ikate +28341,Brand New 5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28342,Half Plot Of Land At Southern Green Estate Orchid Road,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"16,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28343,Huge 3 Bedroom House,Victoria Park Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,1 Toilets,Other Lekki +28344,Newly Built 5 Bedroom Private Villa,"End Of Freedomway, Lekki Phase 1 Ikate Lekki Lagos",₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +28345,Newly Built 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28346,"8,500m2 Dry, Square, Level Land",... Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28347,"11 Hectares Of Dry, Lagoon View Land", Ikate Lekki Lagos,₦,"13,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +28348,"1,206m2 Fully Fenced Corner Piece Land","...,. Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28349,4 Bedroom Detached Duplex With 1room Bq,Ikate Lekki Lagos,₦,"120,000,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +28350,4bedroom Semi Detached And Fully Detached With 1room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +28351,4bedroom Detached Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28352,Newly Built 2bedroom Flat.,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +28353,4bedroom Semi Detached And Fully Detached With 1room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths, Toilets,Ologolo +28354,5bedroom Detached Duplex With 1room Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +28355,Luxury 2bedroom And 1bedroom Flat With 1room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +28356,4bedroom Detached Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28357,Newly Built 4 Bedroom Terrace Semi Detached Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +28358,Newly 4bedroom Terrace With 1room Bq.,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets,Lekki Phase 1 +28359,Newly On Going 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +28360,4bedroom Semi Detached And Fully Detached With 1room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +28361,Brand New 5 Bedrooms Fully Detached Duplex,(lake View Estate) By Orchid Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +28362,688 Plots Residential Land,Chevron Drive Near Ebeano Supermarket Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28363,Newly Built 3 Bedrooms Terrace Duplex,Harris Dr Vgc Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +28364,3 Bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +28365,Newly Built 4 Bedrooms Terrace Duplex (with Payment Plan),"Lavender Gardens Phase I, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28366,Newly Built 4 Bedroom Terrace Duplex,Amadasun Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28367,Newly Built 5 Bedroom Detached House With B/g And Laundry At Chevron In A Gated Estate With 24/7 Security,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +28368,Newly Built 5bedroom Detach Building.,"Taiye Olowu Street, Off Victoria Arobieke, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28369,5 Bedroom Semi Detached Duplex With Swimming Pool And 2 Room Boys Quarter,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28370,600 Sqm Piece Of Land,"Ajah, Lekki Lekki Lagos",₦,"42,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28371,4 Bed Semi Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28372,3 Bed Terrace Duplex With Excellent Facilities,Lekki Palm City Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +28373,1000sqm Piece Of Land,Ilaje Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28374,750sqm Piece Of Land,Ilaje Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28375,5 Bedroom Detached Duplex For Sale,Chevron Drive Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000/year",1,0,0,5 beds,3 baths,4 Toilets,Lekki Phase 2 +28376,4 Bedroom House And 1 Large Bq,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +28377,Newly Built 3 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"30,000,000/month",0,1,0,3 beds,3 baths,4 Toilets,Ikota +28378,Land,Orchid Road Close To Northeast Filling Station Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +28379,3 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +28380,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28381,2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +28382,Luxurious And Smart 4 Bedroom Fully Detached Duplex With A Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets,Osapa London +28383,Newly Built 4 Bedroom Semi Detached,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28384,"4 Bedroom Fully Detached Duplex, All Rooms Ensuite With 1 Bq.","5, Streets Estate, Osapa London. Osapa London Lekki Lagos",₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets,Osapa London +28385,Urgent Distress 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28386,Land In Nicon Town,Nicon Town Lekki Lagos,₦,"320,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +28387,"Newly Built Massive 5 Bedroom Detached Duplex In Lekky County Homes, Ikota","Lekky County Homes Estate, Ikota Ikota Lekki Lagos",₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +28388,Luxurious 5 Bedroom Detached Duplex? With Swimming Pool And Cinema,Osapa Osapa London Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28389,Plot Of Land With Duplex Carcass,Off Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28390,Specious Terrace 4 Bedroom Duplex Furnished.,"Widens Court, Shevron Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"63,000,000/month",0,0,1,4 beds,5 baths,5 Toilets,Chevron +28391,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28392,Waterfront Bullet Proof Mansion With Jetty,"Off Admiralty Way, Lekki Phase One Lekki Phase 1 Lekki Lagos",$,"7,000,000",0,0,0,10 beds, baths, Toilets,Lekki Phase 1 +28393,Spacious 4 Bedroom Terrace Duplex With Bq,Eden's Court Chevron Drive Lekki Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +28394,4bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +28395,4 Bedroom Terrace Duplex,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +28396,5bedroom Detached Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 2 +28397,Brand New 5bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"99,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +28398,Parcel Of Land,"Off Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"200,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28399,3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28400,Lands In Vintage Estate,"Ikate Lekki, Lagos Ikate Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Ikate +28401,3bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 2 +28402,5bedroom Detached Duplex,"Lekki 2nd Toll Gate, Lagos Lekki Phase 2 Lekki Lagos",₦,"78,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 2 +28403,Brand New Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Chevron +28404,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Drive Chevron Lekki Lagos,₦,"79,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +28405,Tastefully Finished 5 Bedroom Detached Duplex,"Off Orchid Road By Chevron Toll Gate Lekki, Lagos Chevron Lekki Lagos",₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Chevron +28406,Fully Detached 5 Bedroom Duplex,"Northern Foreshore Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Chevron +28407,Newly Built Fully Detached 4 Bedroom Duplex,"Chris Otulana Crescent, U 3 Estate, Lekki Oceanside Lekki Phase 1 Lekki Lagos",₦,"140,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28408,Waterfront In Victoria Island,Tollgate Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28409,Four (4) Bedroom Semi Detached Bungalow.,"Awoyaya, Ibeju Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"21,000,000/month",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +28410,Newly Built 5 Bedroom Semi Detached Duplex With A Room Boy's Quarters,"U3, Estate Lekki Phase 1 Lekki Lagos",₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28411,Newly Built 3 Bedroom Terrace Apartment,2nd Round About Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +28412,Four Bedroom Duplex,Lekki Conservative Centre Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +28413,Newly Built 5 Bedroom Fully Detached House For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +28414,5 Bedroom Duplex,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28415,Tastefully Modern Furnished Newly Built 4bedroom Terrace House With A Room Bq In Chevron For Sale,"10, Chevron Drive Lekki Lagos Chevron Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +28416,5 Bedroom Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,7 baths,6 Toilets,Other Lekki +28417,Newly 4 Bedroom Detached Bulding For Sale At Ikate Lekki Lagos At,Ikate Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikate +28418,5 Bedroom Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +28419,5 Bedroom Duplex,Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Lekki +28420,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28421,"Special Terraced Four (4) Bedroom Duplex In Eden Court, Lekki.",Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"63,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28422,"Special Terraced Four (4) Bedroom Duplex In Eden Court, Lekki.",Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"63,000,000/month",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28423,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +28424,Full Plot Of Land With C Of O,Abraham Adesanya Road Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28425,"5 Bedroom Detached Duplex With Bq Location: Lekki County. Megamound , Lekki, Lagos.",Ikota Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,2 Toilets,Ikota +28426,5 Bed Fully Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28427,5 Bed Fully Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28428,4 Bed Terrace Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28429,4 Bed Semi Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28430,4 Bedroom Semi Detached Duplex With Bq,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikota +28431,Land With Foundation,"Harmony Estate, Oke Ira, Off Badore Road Lekki Lagos",₦,"25,000,000",0,1,0, beds, baths, Toilets,Other Lekki +28432,"Distress Sale: Vacant, Not New But Very Strong And Well Maintained 2wings Of 4bedroom Fully Detached Duplex",. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28433,Distress Sale: Newly Built And Well Finished 4bedroom Fully Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28434,5 Bed Fully Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +28435,3 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28436,4 Bedroom Terrace Duplex,Second Toll Gate Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28437,Newly Built Switchless Smart 4 Bedroom Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28438,2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"40,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets,Ikate +28439,4 Bedroom Terrace Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28440,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28441,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28442,4 Bedroom Maisonettes With Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28443,4 Bedroom Terrace Duplex (with Flexible Payment Plans),Creek Avenue Court 2 Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28444,3 Bedroom Bungalow With Large Penthouse & Bq,Shapati Lekki Lagos Ilasan Lekki Lagos,₦,"28,000,000/sqm",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28445,2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"42,000,000/sqm",1,0,0,2 beds,2 baths,3 Toilets,Ikate +28446,3 Bedroom Penthouse With Bq,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +28447,3 Bedroom Penthouse With Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +28448,Warehouse Investment,Lekki Phase 1 Lekki Lagos,₦,"136,000/sqm",0,1,0, beds, baths, Toilets,Lekki Phase 1 +28449,Newly Built Semi Detached Duplex (ensuite),Cowries Estate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28450,Newly Built Semi Detached Duplex (ensuite),Cowries Estate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28451,4 Bedroom Semi Detached Duplex,Wole Ariyo Street Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,4 Toilets,Other Lekki +28452,Tastefully Built 4 Bedrooms Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +28453,4 Bedrooms Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28454,Newly And Tastefully Built 4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +28455,Luxury Ultra Modern 5 Bedroom Detached Duplex With Governor Consent, Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,4 baths,4 Toilets,Osapa London +28456,Luxury 4 Bedroom Fully Detached Duplex With Bq With Governor Consent,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28457,Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,3 baths,3 Toilets,Lekki Phase 2 +28458,Brand New 4 Bedroom Terrace Duplex,"Inside Ikota Villa, Beside Mega Chicken Ikota Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28459,Luxury 4 Bedroom Maisonatte With A Bq.,Ikate Lekki Lagos,₦,"90,000,000/month",1,1,1,4 beds,4 baths,5 Toilets,Ikate +28460,Newly And Beautifully Finished 4 Bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28461,Newly And Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +28462,Newly Built 4 Bedroom Fully Detached Duplex Plus Bq In Upscale Location,"Beside Victoria Garden City, Adjacent To North West Fuel Station Vgc Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +28463,Tastefully Finished 5bedrooms Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28464,Tastefully Furnished 4 Bedroom Fully Detached Duplex With Bq,Lekki Ajah Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +28465,4 Bedrooms Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28466,Exquisitely Built 4 Bedroom Terrace Duplex In Choice Location,"Ikota School Bus Stop, By 2nd Toll Gate, Opp. Mega Chicken Ikota Ajah. Ikota Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28467,Luxury 3 Bedroom Apartments With Penthouse,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"68,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +28468,Newly And Tastefully Built 4 Bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28469,Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +28470,Newly And Beautifully Finished 5 Bedrooms Fully Detached Duplex With Bq,Chevrom Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28471,Newly And Beautifully Finished 4 Bedrooms Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +28472,Distress Sale: Not New But Very Solid And Spacious 2 Wings Of Semi Detach Duplex Plus One Room Bq,... Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28473,"Distress Sale: A Vacant, Not New But Solid Well Maintained 4bedroom Semi Detach Duplex Plus One Room Bq",... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28474,Luxury 2 Bedroom Apartment,"Lafiaji Street Via Orchid Road, Paradise Court Estate Chevron Lekki Lagos",₦,"15,990,000/month",1,0,0,2 beds,2 baths,3 Toilets,Chevron +28475,Luxury 5 Bedroom Semi Detached Available Shell Unit,"Lafiaji Street Via Orchid Road, Chevron Drive Chevron Lekki Lagos",₦,"36,990,000/month",1,1,1,5 beds,5 baths,6 Toilets,Chevron +28476,Luxury 4 Bedroom Town House On Two Floors,Lekki Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28477,Spacious 4 Bedroom Terrace Duplex . Pay And Pack In, Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28478,Exquisite 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28479,Distressed Water Front Land, Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28480,"Newly Built 4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.","After The 2nd Toll Gate At Chevron, Ikota, Lekki Ikota Lekki Lagos",₦,"47,000,000/month",0,1,1,4 beds,5 baths,5 Toilets,Ikota +28481,Plots Of Land,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28482,2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +28483,Spacious 4 Bedroom Terrace Duplex . Pay And Pack In, Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28484,"Real Estate Land For Sale In Lagos State, Nigeria",Renaissance Water Front At Bogije Lakowe Lekki Lekki Phase 1 Lekki Lagos,₦,"10,000,000/month",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28485,"Real Estate Land For Sale In Lagos State, Nigeria","The Estate Is Located At Ikate Elegushi, Lagos State Ikate Lekki Lagos",₦,"65,000,000/month",0,0,0, beds, baths, Toilets,Ikate +28486,"Real Estate Land For Sale In Lagos State, Nigeria",The Estate Is Located At Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000/month",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28487,"Real Estate Land For Sale In Lagos State, Nigeria",The Estate Is Located At Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000/month",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28488,"Real Estate Land For Sale In Lagos State, Nigeria","The Estate Is Located At Off Monastery Road, Behind Novare Mall Shoprite Sangotede Lekki Phase 1 Lekki Lagos",₦,"12,000,000/month",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28489,"Real Estate Land For Sale In Lagos State, Nigeria","Caritas Luxury Homes, Grace Factor Phase 4 Sangotede Lekki Phase 1 Lekki Lagos",₦,"7,500,000/month",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28490,Newly Built 5 Bedroom House,Abayomi Shonuga St Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"315,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28491,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +28492,4 Bedrooms Terrace House With Excellent Facilities,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +28493,Fully Detached 4 Bedroom House With A Room Bq In A Serene Environment, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,3 baths,3 Toilets,Chevron +28494,5 Bedrooms Duplex With 2 Bedroom Bq,Lekki Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,8 baths,8 Toilets,Other Lekki +28495,Plots Of Lands Available With Buildings,The Fringe Of Ikota Command Alagbado Road Ikota Lekki Lagos,₦,"6,000,000/sqm",0,1,0,3 beds,4 baths,4 Toilets,Ikota +28496,Newly Built 4 Bedroom Terrace Duplex With 98% Finished,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets,Osapa London +28497,Newly Built 4 Bedroom Terrace Duplex With 98% Finished,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +28498,4 Bed Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28499,4 Bed Semi Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28500,5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,5 Toilets,Other Lekki +28501,4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28502,Newly Built 6 Bedroom Fully Detached House, Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +28503,4 Bedrooms Semi Detached Duplex With Excellent Facilities,Ologolo Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +28504,4 Bedrooms Terrace House With Excellent Facilities,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +28505,Tastefully Finished 4 Bedroom Terrace Duplex With Governor’s Consent,Orchid Road Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28506,Affordable And Luxurious 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,5 beds, baths, Toilets,Ologolo +28507,4 Units Of 3 Bedroom Terrace With Bq,Charles Ifeanyi Street Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +28508,Beautifully Finished 4 Bedroom Massionette Duplex With C Of O,New Market Road Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28509,Land,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +28510,Land,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets,Chevron +28511,Real Estate Land,Renaissance Reloaded Phase 2. Located At Itiri Via Co Operative Villa Badore Eti Osa Lekki Lagos,₦,"14,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28512,Real Estate Land,Caritas Luxury Home Phase 1. This Is Located At Novare Mall Shoprite Off Monastery Road. Lekki Phase 1 Lekki Lagos,₦,"16,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28513,Real Estate Land,This Estate Is Right In Eden View Estate Folu Ise Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"1,500,000/month",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +28514,4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +28515,"4 Bedrooms Fully Detached Duplex With Bq, Excellent Facilities",Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +28516,A Newly Built Four Bedroom Duplex Is Available For Sale On Orchid Road,Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28517,A Newly Built Four Bedroom Duplex Is Available For Sale On Orchid Road,Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28518,Newly Built 6 Units Of 4 Bedroom Terrace Duplexes With A Room Bq Each,"Orchid Road, Ikota Lekki Lagos Ikota Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,6 baths,5 Toilets,Ikota +28519,Newly Built 5 Bedroom Duplex With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28520,Newly Built 5 Bedroom Duplex With Swimming Pool In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28521,Luxury 4bedroom Duplex With Excellent Features,Spg Road Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +28522,Newly Built 5bedroom Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28523,Newly Built 4bedroom Duplex With Excellent Features,Chevron Alternative Route Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28524,Newly Built 5bedroom Duplex In A Serene Environment,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28525,Newly Built 4bedroom Duplex In A Serene Environment,Road 1 Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28526,Newly Built 4bedroom Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28527,4bedroom Terraced Duplex With Air Conditioners,Ilasan Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28528,Newly Built 5bedroom Duplex In A Serene Environment,"Off Freedom Way, Ikate Elequishi Ikate Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28529,Newly Built 5bedroom Duplex With Swimming Pool,Mega Mound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28530,Newly Built 4bedroom Duplex With 1room Bq In A Serene Environment,"Spring Bay Estate ,ikate Elequishi Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28531,Newly Built 4bedroom Terraced Duplex In A Serene Environment,"Off Kusenla Road, Ikate Ikate Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28532,Newly Built 4bedroom Semi Detached Duplex In A Serene Environment,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28533,Newly Built 5 Bedroom Duplex With 1bq In A Serene Environment,Ikate Elequishi Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28534,Newly Built 5 Bedroom Duplex In A Serene Environment,Mega Mound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28535,Luxury 4bedroom Detached Duplex With Swimming Pool,"Abiola Court 12,,ikate Elequishi Ikate Lekki Lagos",₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +28536,Newly Built 4bedroom Duplex With Excellent Features,Oral Estate Phase 2 Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28537,Newly Built 5 Bedroom Duplex In A Serene Environment,Road 1 Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28538,Newly Built 4bedroom Terraced Duplex In A Serene Environment,Gbangbala Street Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28539,Newly Built 4bedroom Duplex With Swimming Pool In A Serene Estate,"Orchid Hotel Road, Beuna Vista Estate Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28540,Massive 6 Block Of Flats 2 Bedroom Flat (off Plan),Cluster One Lekky County Homes Ikota Lekki Lagos,₦,"33,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets,Ikota +28541,Off Plan Massive 6 Blocks Of Flats Of 2 Bedroom Flat,Lekky County Council Cluster One Estate Ikota Lekki Lagos,₦,"33,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets,Ikota +28542,Real Estate Land,The Estate Is Located In Elite Genesis Garden Phase 1 Sangotedo Lekki Lagos,₦,"17,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28543,Exquisite 4bedroom Terrace,2nd Toll Gate Chevron Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +28544,Newly Built And Very Spacious 4 Bedroom Terraced Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28545,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate ... Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +28546,5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28547,Newly Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28548,Newly Built 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28549,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28550,Newly Built 4 Bedroom Semi Detached Duplex With An Automated Gate,Chevron Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28551,"Newly Built , Smart Fully Automated 4 Bedroom Terrace Duplex",Ikota Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28552,Newly Built 4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28553,6 Units Of Newly Built 2 Bedroom Apartments In A Vivacious Environment,"Alma Beach Estate, Meadow Hall Way, Lekki Penninsula Ii, Lekki Ikate Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +28554,Newly Built And Architectural Designed 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28555,One Bedroom Flat With Lovely Features,New Road Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Lekki +28556,3 Bedroom Apartment,New Road Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +28557,4 Bedroom Semi Detached Duplex At Ologolo,Ologolo Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ologolo +28558,Land, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28559,5 Bedroom Semi Detached Duplex With Excellent Features,New Road Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28560,5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,5 Toilets,Osapa London +28561,4 Bedroom Duplex,Magodo Shangisha Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +28562,4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +28563,Luxuriously Furnished And Functional Suite. Used For Short Stay At The Moment,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28564,Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets,Lekki Phase 1 +28565,Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets,Lekki Phase 1 +28566,4 Bedroom Terrace Duplex House With Mortgage Facility,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28567,Super Affordable 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28568,Off Plan 4 Bedroom Duplex In A Serene Environment,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28569,Off Plan 4 Bedroom Terrace Duplex House,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28570,Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets,Lekki Phase 1 +28571,Luxury 3 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +28572,Newly Built Luxury 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28573,Newly Built Luxury 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28574,4 Bedroom Terrace Duplex House At Off Plan Price,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28575,Off Plan 4 Bedroom Terrace Duplex House,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28576,4 Bedroom Terrace Duplex House At Off Plan Price,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +28577,Executive 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28578,32 Hectares Of Land,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28579,4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28580,4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28581,4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28582,4 Bedroom Terrace Duplex,Buene Vista Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28583,3 Bedroom Flats Apartment With Excellent Facilities,Orchid Road Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28584,1000 Sqm Of Dry Land In A Residential Area With C Of O,Victory Park Osapa London Lekki Lagos,₦,"210,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28585,Beautiful Luxury 5 Bed Room Fully Automated Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28586,Beautiful 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28587,4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28588,Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28589,Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +28590,Exquisitely Finished 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28591,Luxury 5 Bedroom Fully Detached Duplex,"Lekki County Homes, Megamound Estate Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +28592,100% Sandfilled And Fenced Land,Orchid Ikate Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Ikate +28593,Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +28594,Newly Built 5 Bedroom Detached Duplex With Bq,"Lekki County Homes ,megamound Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets,Ikota +28595,5 Bedroom Detached Duplex House, Vgc Lekki Lagos,₦,"270,000,000",0,0,1,5 beds,0 baths,0 Toilets,Victoria Garden City +28596,4 Bed Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28597,4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28598,4 Bed Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28599,5 Bed Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28600,3 Bedroom Flat Apartment With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28601,2 Bedroom Apartment With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +28602,4 Bed Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"49,500,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28603,6unit Of Luxury 5bedroom Fully Detached Duplex With Bq,"Ikate, Elegushi Ikate Lekki Lagos",₦,"120,000,000",1,0,0, beds, baths, Toilets,Ikate +28604,4bedroom Detached Duplex With Bq And Study Room,Ikate Estate Ikate Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +28605,Newly Built 4bedroom Semi Detached Duplex With A Room Bq,Ikate Estate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28606,Brand New 4bedroom Fully Detached Duplex With A Room Bq,Ikota Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28607,3 Bedroom Apartment With Bq,Salem Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28608,3 Bedroom Duplex With Private Compound,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +28609,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28610,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28611,3 Bedroom Terrace Bungalow,Camberwall Estate Abijo Gra Lekki Lagos,₦,"32,000,000/sqm",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +28612,4 Bedroom Terrace Duplex ( Semi Finished),Abijo Gra Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +28613,Invest In Terrace Duplex At Lekki*,"Creek Avenue Court Phase 2 Ikota, Lekki.* Ikota Lekki Lagos",₦,"47,000,000",0,0,0,4 beds, baths, Toilets,Ikota +28614,Beautifully Structured 5 Bedroom Detached Duplex Plus 3 Bedroom Bq,Mobil Rd After Vgc Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +28615,5 Bedrooms Fully Detached House With 2rooms Bq And Gate House,Off Omorinre Johnson Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"258,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28616,Newly Built 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets,Ikate +28617,5 Bedroom Detached Duplex With Bq,Megamound Street Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +28618,Luxury 4 Bedrooms Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +28619,Land,Orchid Road Ikota Lekki Lagos,₦,"37,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Ikota +28620,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/month",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28621,Newly Built 5bedroom Detached Duplex, Ikota Lekki Lagos,₦,"95,000,000/day",0,1,0,5 beds,6 baths,6 Toilets,Ikota +28622,Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Buene Vista Estate Lekki Lagos,₦,"116,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28623,3 Bedroom Apartment,Buene Vista Estate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28624,5bedroom Duplex, Osapa London Lekki Lagos,₦,"105,000,000/year",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +28625,Newly Built 4 Bedroom Terrence Duplex In A Serene Area,No 34 Ikota Lekki Lagos,₦,"47,000,000/month",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28626,Real Estate Investment, Lekki Lagos,₦,"1,000,000/month",1,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28627,Land,"Akodo General Hospital,lekki Trade Zone Lagos Lekki Phase 1 Lekki Lagos",₦,"7,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28628,Newly Built 5 Bedroom Fully Detached Duplex In Chevron.,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +28629,Newly Built 4 Bedroom Semi Detached Duplex In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +28630,500sqm Land By Waterfront,Pinnock Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28631,688sqm Residential Land,Salem Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28632,4 Bedroom Terrace Duplex With Excellent Features,Salem Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28633,Newly Built 4 Bedroom Semi Detached In Serene Place,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +28634,5 Bedroom Terrace Carcass Duplex With Amazing Features,New Road Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28635,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +28636,3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,3 beds, baths, Toilets,Lekki Phase 1 +28637,Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28638,Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/day",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28639,Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28640,Governor’s Consent,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +28641,Governor’s Consent,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +28642,Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/month",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28643,5 Bedroom Fully Detached,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28644,5 Bedroom Building With Two Sitting Rooms,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets,Victoria Garden City +28645,Advance Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28646,Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28647,Luxuriously And Newly Built 4bedroom Terrace Duplex @ Ikate For [email protected] 75million,Ikate Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets,Ikate +28648,Newly Built 3bedroom Flat @ Ikate For Sale @ 70million,Ikate Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Ikate +28649,Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View.,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28650,Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View.,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28651,5 Bedrooms Duplex,Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28652,Land Available,Orchid Road Chevron Lekki Lagos,₦,"34,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28653,Land Available,Orchid Road Chevron Lekki Lagos,₦,"34,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28654,17000sqm Land Available With C Of O,"Kusenla Road, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +28655,5 Bedroom Terrace Duplex With Amazing Features,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28656,5 Bedroom Detached Duplex,Chevron Drive Alternative Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +28657,5 Bedrooms Contemporary Home,Pinnock Beach Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +28658,2 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +28659,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28660,4 Bedroom Semi Detached Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +28661,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28662,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28663,5 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +28664,Newly Built 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28665,4 Bedroom Flat,"Orchid Road, By Chevron Lekki 2nd Toll Gate, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +28666,4 Bedroom Terrace Duplex With Excellent Features,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28667,3 Bedroom Apartment With Excellent Features,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28668,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +28669,Newly 3 Bedrooms Apartment With Excellent Facilities,Agungi Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +28670,Newly Built 5 Bedrooms Semi Detached Duplex,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28671,Newly Built 4 Bedrooms Semi Detached Duplex With Excellent Facilities,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28672,Newly 4 Bedrooms Terrace Duplex Serene Neighborhood,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28673,Newly Built 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa London Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28674,Offplan Duplex For Sales At The Ambiance Abraham Adesanya,"Lekki Gardens Phase 4 Road, Atlantic Layout Estate, Ajiwe Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"40,000,000/day",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +28675,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28676,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28677,4 Bedroom Terrace Duplex,"Victoria Crest 2, Orchid Road Chevron Lekki Lagos",₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +28678,4 Bedroom Terraced Duplex,"At Victoria Crest 2, Orchid Road Chevron Lekki Lagos",₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +28679,5 Bedrooms Fully Detached Duplex,Royal Gardens Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28680,3 Bedroom Semi Detached Duplex With Excellent Facilities,Royal Gardens Lekki Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28681,5 Bedroom Fully Detached Duplex With Excellent Facilities,Royal Gardens Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28682,Newly Built 4 Bedroom Semi Detached Duplex With 2rooms Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +28683,Very Beautiful 4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +28684,3bedroom Terrace Duplex With Bq, Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +28685,Well Finished 5 Bedroom Fully Detached Duplex With A Bq, Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +28686,5 Bedroom Contemporary Fully Detached Duplex With 1 Room Bq.,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28687,Fully Serviced 4 Bedroom Semi Detached Duplex With A Boy's Quaters,.. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +28688,Ready To Build 780sqm Corner Pieced Land,"Ilasan, Lekki Phase 1 Ilasan Lekki Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28689,Solidly Built Three Bedroom Flats ( Carcass),"Paradise 3 Estate, Lekki Gardens, Chevron Road Chevron Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +28690,Nice 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28691,Dry Land,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28692,5 Bedroom Fully Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28693,5 Bedroom Fully Detached House,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28694,Lovely 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28695,Lovely Serviced 4 Units Of 4 Bedroom Maisonette Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28696,3 Nos Of 4 Bedroom Terraced House With 1 Room Bq Each,Along Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28697,Land,Off Lekki Express Way Ikate Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets,Ikate +28698,20 Acres Of Land,Near Dangote Refinery Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28699,Land,Creek Haven Estate (by Vgc) Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +28700,3 No Of 4 Bedroom Terraced House With 1 Room Bq,Along Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +28701,Land,Off Lekki Express Way Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28702,Land,Block 143 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28703,5 Bedroom Terrace Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28704,Land,"Along Ogombo Road, Near Abraham Adesanya Estate Lekki Lagos",₦,"72,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28705,5 Bedroom Detached Duplex With Bq,Lafiaji Chevron Tollgate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28706,4 Bedroom / Terrace Duplex / 1 Maid Room,Lekki Phase1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28707,4 Bedroom Semi Detached Duplex At Chevron Estate With Bq,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +28708,4 Bedroom Detached Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +28709,1006sqms Land,"Nicon Town Estate,zone C,plot 173,lekki Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28710,Luxury 4bedroom Detached Duplex With Bq And Swimming Pool,Lekki Ph1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28711,53rooms Hotel And Restaurant,Agungi Lekki Lagos Agungi Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Agungi +28712,5 Bedroom Fully Detached Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +28713,"A Parcel Of Land Measuring 4,411sqm",Ikate Elegushi Close To Toyota Lekki Lagos Ikate Lekki Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Ikate +28714,2plots Of Land Near Shoprite,Off Lekki Way By Jakande Near Shoprite Lekki Lagos Jakande Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28715,A Plot Measuring 3000sqm,Ilasan Rd Ikate Lekki Lagos Ilasan Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Other Lekki +28716,4411sqm Plot Of Land With Governor Consent,Elegushi Close To Toyota Lekki Lagos Ikate Lekki Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Ikate +28717,"A Commercial Plot Of Land Measuring 20,800sqm",Ikota Shopping Complex Vgc Lekki Lagos Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +28718,Luxury 5bedroom Fully Detached In A Mixed Use Environ,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +28719,Decent 5bedroom Duplex Sitting On 500sqm Plot,Lekki Ph 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28720,Brand New 5bedroom Detached Duplex With Bq And Space For 8cars,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +28721,912sqms Land,"Victory Park Estate,lekki Osapa London Lekki Lagos",₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +28722,Mini Estate Consisting Of Blocks Of Flats,Ologolo Lekki Ologolo Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Ologolo +28723,Tastefully Finishes Exquisitely 4bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets,Chevron +28724,An Office Complex On 800sqm On 3rd Floor,Ikota Second Junction Lekki Epe Exp Rr Ikota Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Ikota +28725,Luxury Semi Detached 4bedroom Duplex Plus 2rooms Bq With Parking Space For 8cars,Grace Anjous Street Lekki Ph1 Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28726,Luxury 4bedroom Terrace Duplex With A Room Bq,Perimeter Court Madiba Estate Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets,Ikate +28727,Parcel Of Land Measuring 800sqm In An Estate,Cowrie Creek Estate By Ng Lng Lekki Lagos Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28728,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28729,20 Acres Of Land, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28730,5 Bedroom Detached Duplex For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +28731,Land, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28732,Lovely 3 Bedroom Apartment For Sale,Lekki County Home Ikota Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikota +28733,4 Bedroom Detached Duplex For Sale,Beautiful Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,6 Toilets,Osapa London +28734,Brand New 6 Bedroom Luxury Detached Duplex + Bq In A Serene Secured Estate Environment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +28735,Luxury 4bedroom Fully Detached Duplex With Room Bq,Bera Estate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28736,Serviced Units Of 4 Bedroom Terrace Duplex For Sale,Orchild Lekki Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +28737,Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28738,Investment Opportunity Now Selling 2 Bedrooms Luxury Apartments,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +28739,"Well Built 12units 2bedroom Flat And 2units 4bedroom Penthouse Suitable For Residential Use, Hotel, International Schools",Chevy View Estate Chevron Lekki Lagos,₦,"410,000,000",0,1,0, beds, baths, Toilets,Chevron +28740,15 Hectares Of Land,Off Lekki Epe Express Way Ikate Lekki Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +28741,Well Finished 4bedroom Fully Detached House,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28742,4 Bedroom Terrace Duplex In A Mini Estate In Lekki Phase1 For Sale.,Mini Estate 2nd Roundabouts Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28743,40 Units Of 4 Bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28744,85% Completed 5 Bedroom Fully Detached House With Bq,Secured Estate In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28745,"4bedroom Semi Duplex With Swimming Pool, Gym",2nd Tollgate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28746,4 Bedroom Townhouse Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28747,4 Bedroom Semi Detached Duplex,2nd Tollgate Orchild Road Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28748,"Newly Built 4 Bedroom Penthouse, 3 Bedroom And 2 Bedroom Flat Available For Sale",Ikate Ikate Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets,Ikate +28749,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28750,A4 Bedroom Semi Detached Duplex For Sale!!!,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28751,Land, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28752,4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28753,5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28754,Serviced 4 Bedroom Terrace Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28755,4 Bedroom Semi Detached House With 1 Room Bq,"Off Durosinmi, Etti Street Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28756,5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28757,4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28758,Brand New 5 Bedrooms Fully Detached House With Bq,Gate Community Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28759,5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28760,4 Bedroom Terrace Duplex For Sale,Orchild Road 2nd Tollgate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28761,4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28762,5 Bedroom Detached Duplex With Swimming Pool For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"222,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28763,Brand New 5 Bedrooms Semi Detached Houses For Sale,Gated Community Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28764,Very Spacious 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28765,Epic 6 Bedroom Detached Duplex Is Available For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28766,5 Bedroom Fully Detached Duplex With A Bq Sitting On 900 Sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28767,Luxurious Waterfront 1/2/3bedroom Block Of Flats Price Starts With 45m,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,1 beds, baths, Toilets,Lekki Phase 1 +28768,4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28769,5 Bedroom Detached Duplex For Sale!!!,Gated Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +28770,Land,"Eleko, Off Lekki Free Trade Zone Road Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28771,5 Bedroom Duplex,Co Operative Villas Badore Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +28772,18 Units Of 4 Bedroom Terrace With A Bq Available For Sale!,Bera Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28773,Fenced Land Measuring 1000sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28774,4 Bedroom Fully Detached Duplex,2nd Tollgate Orchild Road Lakeview Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28775,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28776,4 Hectares Of Beach Front Land,Maiyegun Off Lekki Express Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28777,4bedroom/semi And 5bedroom Detached Luxury Duplexes,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +28778,5 Bedroom Detached Duplex With A Bq Still Available For Sale.,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28779,33 Retail Stores With An Average Size Of 30sqm Per Store Set Across 3 Floors.,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28780,Fully Serviced 4 Bedroom Terraced Duplex With Bq And Great Outdoor Facilities,Https://youtu.be/vrarrriyrsw Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28781,4 Bedroom Semi Detached Duplex For Sale.,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28782,5 Bedroom Fully Detached Duplex For Sale.,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +28783,4 Bedroom Semi Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28784,5 Bedroom Detached Duplex For Sale!,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +28785,Brand New Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +28786,5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28787,4units 4bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28788,4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28789,5 Bedroom Detached Duplex With Bq,Lakeview Estate Orchild Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +28790,5 Bedroom Detached Duplex For Sale,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28791,5 Bedroom Fully Detached Duplex For Sale!,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28792,40 Acres Of Land,Off Lekki Epe Express Way Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28793,4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28794,4 Bedroom Detached Duplex For Sale!!!,Lekki County Home Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28795,1bedroom Apartment And 2/3/4bedroom Terrace Duplexes,Opposite Nicon Town Ikate Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,Ikate +28796,"4 Bedroom Detached Duplex With 1 Bq And Swimming Pool, Cinema",Acadia Groove Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,6 Toilets,Osapa London +28797,Land,Along Lekki Beach Road Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28798,Massive 4 Bedroom Detached Duplex / Open Terrace / 1 Maid Room,Lekki County Home Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28799,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28800,4 Bedroom Terrace Duplex For Sale,Ikate Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +28801,4bedroom Terrace Duplex With Room Bq,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +28802,800sqm Land For Sale At Cowrie Creek Estate,Cowerie Estate Ikate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +28803,6 Bedroom Detached Duplex For Sale,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +28804,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28805,Land,Facing The Lekki Epe Express Way(before The 3rd Round About) Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +28806,Four (4)bedroom Detached Duplex With Bq,Https://m.youtube.com/channel/ucrwrzspakoejh26egmr2diq Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28807,Fenced Land Measuring 1000sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28808,Land, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28809,85% Completed 4 Bedroom Terrace Duplex With Bq,Secured Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28810,Land,Ilasan Ikate Lekki Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +28811,4 Bedroom Terrace Duplex With A Room Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28812,4 Bedroom Semidetached Duplex For Sale,Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28813,20 Acres Of Land,Origanrigan And Lekki Towns Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28814,5 Bedroom Detached Duplex For Sale.,Ikota Villa Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +28815,A Tastefully Built Brand New 5 Bedroom Semi Detached Detached House,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28816,Massive 4 Bedroom Townhouse On 4 Floors Within A Fully Serviced Estate,Ikate Richmond Estate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +28817,4 Bedroom Semi Detached Duplex With Bq,Orchild Road 2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28818,"New Development Comprises 18 Aesthetically Designed 4 Bedroom Terrace Duplexes, Each With A Maids' Quarters Attached",Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +28819,Contemporary 4 Bedroom Fully Detached Duplex + Bq For Sale,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28820,5 Bedroom Fully Detached House Available For Sale,Acadia Groove Estate Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28821,4 Bedroom Semi Detached Triplex With A Bq.,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28822,New 4 Bedroom Duplex For Sale In A Beautiful Environment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28823,4.2 Hectares Of Land, Jakande Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28824,Land,Along Lekki Epe Express Way Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28825,Newly Built 3bedroom Serviced Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +28826,4units Of 5bedroom Terrace Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28827,Luxury 5 Bedroom Fully Detached Duplex,"Opposite Chevron Drive, Orchid Road After Lafaji Community Chevron Lekki Lagos",₦,"41,500,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +28828,2units Of 5 Bedroom Detached Duplex,"Audu Ekpekah Street,off Admiralty Wa Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28829,Serviced 2 Bedrooms Apartment,"Seagate Estate, By Spar Ikate Lekki Lagos",₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets,Ikate +28830,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28831,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28832,5 Plot Of Land,Ikota G.r.a Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Ikota +28833,5 Bedroom Fully Detached House,Chevyview Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +28834,Newly Built Carcass 4 Bedroom Terrace Duplex In An Estate,Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +28835,New Three (3) Bedroom Apartments,Ikate Next To Lekki Phase One Ikate Lekki Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +28836,Four (4) Bedroom Terrace Residence,Babatunde Anjous Neighborhood Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28837,Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +28838,Newly Built Luxurious 4 Bedroom Duplex Semi Detached,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28839,2 Plots Of Land In A Developed Location,Agiran Road After The Domino Pizza. Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28840,Newly Built 5 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +28841,Newly Built Luxurious 5 Bedroom Duplex Fully Detached,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28842,Brand Newly Built 5bedroom Fully Detached Duplex For Sale,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28843,Now Selling!!! Exquisitely Built 5 Bedroom Fully Detached Triplex,Pinnock Beach Estates Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28844,2 Plots Of Land Already Sand Filled Land 125m,Cluster One Estate Beside Mega Mound Ikota Lekki Ikota Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Ikota +28845,Brand New 2 Units Of Lovely Beautiful Finished 4bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28846,Exquisite 3 Bedroom Apartment With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"4,500,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28847,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28848,Newly Built 5bedroom Fully Detached Duplex With A Swimming Pool For Sale In Lekki County,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +28849,Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28850,Brand New 4 Bedroom Semi Detached,Ocean Breeze Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +28851,Luxurious Newly Built 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28852,Luxurious 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28853,Fully Detached 5 Bedroom Duplex With Bq,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28854,A Block Of 6 Flats On Land Totaling 890 Sqm,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1, beds, baths, Toilets,Lekki Phase 1 +28855,5 Bedroom Fully Detached Edifice With Bq 150m,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28856,Lovely Built 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +28857,5 Bedroom Fully Detached Duplexes 75m,Ikota Gra By Mega Chicken Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28858,2 Bedroom Flat,Off The Major Agungi Road Agungi Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +28859,Luxurious Newly Built 4bedroom Semi Detached Duplex,"Lekki County, Megamond Estate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28860,Bare Land Of 6 Plot,Ikota Gra Behind Megachicken Ikota Lekki Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets,Ikota +28861,New Two (2) Bedroom Apartments,Ikate Next To Lekki Phase One Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +28862,"Highly Improved Prototype Terrace Unit Of 4 Bedroom With Quarter's ,green Area And Ample Exclusive Ground In A Private Residential Estate In Lekki Phase One","Regal Seaview Estate, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28863,Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28864,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28865,5 Bedroom Fully Detached Duplex With A Room Bq.,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,4 Toilets,Other Lekki +28866,Newly Built 5 Bedroom Terrace House All Rooms Ensuite With A 2 Bedroom Bq,Ikate Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +28867,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28868,Newly Built 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,4 Toilets,Other Lekki +28869,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28870,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28871,5 Bedroom Duplex With A Room Bq,"Megamond Estate, Lekki County. Ikota Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28872,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28873,"5 Bedroom Terrace Duplex, Ample Parking Space With A Garage.",Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28874,Brand New 4 Bedroom Semi Detached,Eletu Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +28875,4 Bedroom Semi Detached Duplex,Lekki County Ikate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +28876,"A Strategically Located , Fenced And Gated Land","Directly On Lekki Epe Express Way, Adjacent Mega Chicken Lekki Lagos",₦,"780,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28877,New Listing: 5 Bedroom Detached Duplex With A Room Bq,"Peninsula Estate Ajah, Lekki Epe Expressway Lekki Lagos",₦,"55,000,000",0,1,0,5 beds,6 baths,5 Toilets,Other Lekki +28878,5 Bedroom Detached House,Carlton Gate Estate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28879,Well Built 4 Bedroom Semi Detached Duplex With Bq Features All Rooms En Suite,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28880,5 Bedroom Duplex With A Room Bq 120sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28881,Newly Built 2 Bedroom Flat With Gov Consent,Agungi Lekki Lagos,₦,"23,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +28882,"Hot Property! 4 Bedroom Terrace, Sits On 3 Floors",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +28883,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28884,4 Bedroom Detached Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +28885,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28886,Newly Built Semi Detached Duplex With Bq In A Serene Estate,Chevron Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +28887,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Toll Gate Axis Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds, baths, Toilets,Chevron +28888,Luxury Waterfront 5bedroom Duplex* For Sale 120m,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Ikota +28889,3 Bedroom Flat,Chevron Alternative Road Lekki Lagos,₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28890,"4 Bedroom Terraced Duplex Features Spacious Living Room, All Rooms En Suite",Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28891,Serviced 3 Bedroom Flat All Room En Suite 60m,Lekki Phase 1 Rhs Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28892,"Fully Detached 5 Bedroom Duplex With Top Notch Interiors Including 2 Rooms Bq & Laundry Room Available For Sale At Off Admiralty Way, Lekki Peninsula Scheme 1, Lekki Lagos.",Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +28893,Newly Built 4 Bedroom Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28894,2 Plots Of Land,Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28895,Office Complex Of 5 Floors With Approximately 1400 Square Meters,"Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +28896,For Sale 5 Bedroom Detached Duplex With Bq Location Lekki County. Ikota. Lagos Price 120 Million Naira,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28897,Spacious Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28898,Newly Built 4 Bedroom Terraced Duplex In A Serene Estate,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28899,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28900,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28901,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28902,A Plot Of Dry And Fenced Land, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +28903,5 Bedroom Terrace Duplex With A Room Bq In A Serene Neighborhood,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28904,4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28905,6 Bedroom Bq Detached Duplex,Pinnock Lekki Lagos,₦,"230,000,000",0,0,1,6 beds,6 baths,7 Toilets,Other Lekki +28906,Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28907,5 Bedroom Fully Detached,Eletu Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +28908,4 Plot Of Land Facing Lekki Epe Express Way,"Lekki Epe Express, Abijon Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28909,"4 Bedroom Duplex + 3 Bedroom Flat+ 2 Room Boys Quarters Sitting On Land Measuring 875sqmts At Ikate Elegushi,",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,0,0,4 beds, baths, Toilets,Lekki Phase 1 +28910,4 Bedroom Semi Detached Duplex With Bq,"2nd Tollgate, Lekki, Lagos. Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28911,5 Bedroom Fully Detach One Bq,"Arcadia Estate, Lekki. Lekki Lagos",₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28912,4 Bedroom Semi Detached Duplex With A Room Bq.,Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28913,687 Square Meter Of Land,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +28914,"For Sale 4 Bedroom Terrace Duplex Location Orchid, Lekki Lagos Price 40 Million Naira",Orchids Hotel Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28915,5 Bedroom Duplex,Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +28916,Land, Lekki Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +28917,2 Bedroom Flat,Off Elevation Church Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,0 Toilets,Lekki Phase 1 +28918,4 Bedroom Apartment With Boys Quarter,Admiralty Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28919,4 Bedroom Luxury Detached Duplex,Pinnock Estate Lekki Lagos,₦,"290,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +28920,5bedroom Luxury Detached Duplex.,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +28921,5 Bedroom Luxury Detached Duplex With Bq.,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +28922,Luxury 5bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +28923,5bedroom Luxury Fully Furnished Detached Duplex With Cinema,Osapa London Lekki Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,5 beds, baths, Toilets,Osapa London +28924,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28925,4 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28926,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28927,4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"43,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +28928,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28929,4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28930,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28931,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +28932,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +28933,Executive 4bedrooms Semi Detached Duplex For Sale At Osapa London Lekki.,Osapa London Lekki. Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +28934,Standard 4bedrooms Terrace Duplex With Bq For Sale At Chevron Lekki.,Chevron Lagos Lekki. Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28935,Commercial Space,Lekki Ph1 Off Freedom Way Lagos. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +28936,Lovely 4bedrooms Semi Detached Duplex For Sale At Lekki Ikota Lagos.,Lekki Ikota Lagos. Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +28937,3bedroom Terrace Duplex With A Bq And Service Estate With 21 Hours Light Every Day,2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"33,000,000,000",0,0,0,3 beds,3 baths,5 Toilets,Chevron +28938,Dry Land For Sale 600qrm With C Of O At Jakande Lekki Lagos.,Beach Road Jakande Lekki Lagos,₦,"57,000,000",0,0,0, beds, baths, Toilets,Other Lekki +28939,Land,Lekki Lagos,₦,"6,000,000",0,1,0, beds, baths, Toilets,Other Lekki +28940,Brand New 4 Bedrooms Semi Detached Duplex,Off Chevron Alternative Chevron Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28941,Brand New 5 Bedrooms Detached Duplex,Megamound Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28942,Luxuriously 4bedroom Duplex,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +28943,Captivating 5 Bedrooms Detached Epistle Key Features: • High Class Master Bedroom • 1 Room Bq • Patio Dinning Area • Facinating Led Lighting • Skyline View • Intercom/chandeliers • Walk In Closet • Fitted Chef Grade Kitchen • Ample Parking • Marble,Osapa London Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +28944,Service 4 Bedrooms Terrace Duplex,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +28945,Newly Build Detach 4bedroom,By Baale Logologo Office Lekki Lagos State Ologolo Lekki Lagos,₦,70,1,1,0,4 beds, baths,5 Toilets,Ologolo +28946,Stunning 3 Bedroom Terraces Duplexes At Orchid Road Lekki,Orchid Road Lekki Lagos,₦,"35,000,000",1,1,1, beds, baths, Toilets,Other Lekki +28947,Brand New Service 4 Bedrooms Terrace Duplex,In An Estate Off Chevron Alternative Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +28948,"Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes With The Features; 1 Room Office/study, 1 Room Laundry 1 Bq All Rooms Ensuite Jacuzzi Bath Fully Fitted Kitchen With Microwave, Oven, Gas Burner, Extr",Ikota Villa Estate Behind Mega Chicken Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +28949,Brand New 4 Bedrooms Semi Detached Duplex,Behind Zenith Bank Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +28950,Brand New 5 Bedrooms Detached Duplex,"Megamound, Lekki County Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +28951,Luxurious 4 Bedrooms Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28952,Magnificent 4 Bedrooms Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28953,Exquisite 4 Bedrooms Semi Detached Duplex With A Room Bq,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28954,Luxurious 5 Bedrooms Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +28955,Luxurious 3 Bedrooms Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +28956,Exquisite 4 Bedrooms Semi Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28957,Fabulous And Luxurious 4 Bedrooms Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +28958,Brand New 4 Bedrooms Semi Detached Duplex With A Bq And A Town House,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28959,Luxurious 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28960,Executive And Luxurious 5 Bedrooms Detached Duplex With A Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +28961,Exquisite 4 Bedrooms Terraced Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28962,Newly Built 4 Bedroom Terrace Duplex With Bw,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +28963,Sweetly Built 4 Bedrooms Semi Detached Duplex With A Penthouse And A Bq,Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28964,Luxurious 4 Bedrooms Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +28965,Brand New 2 Bedroom Flat,.. Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,2 baths,3 Toilets,Chevron +28966,Brand New 4 Bedrooms Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28967,Luxurious 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28968,Luxurious 5 Bedrooms Fully Detached Duplex,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +28969,Exquisite 3 Bedrooms Town House With A Bq,Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +28970,Dry Land In A Good Environment,Lekki Scheme 2 Lekki Lagos,₦,"19,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +28971,Brand New 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +28972,Luxurious And Executive 4 Bedrooms Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +28973,Newly Built 4 Bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +28974,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +28975,Brand New 4 Bedroom Semi Detached Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Agungi +28976,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +28977,Newly Built 4bedroom Terrace In A Serenely Enviroment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +28978,Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, 2nd Till Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +28979,Newly Built Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +28980,Newly Built & Tastefully Finished 5 Bedrooms Duplex On Two Floors,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +28981,Luxurious Spacious 4 Bedroom Home In A Private Enclave,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +28982,Newly Built 3 Bedroom Apartment For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +28983,Newly Completed 4 Bedrooms Duplex With Boy Quarters,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28984,2 Units Of Newly Renovated 2 Bedrooms Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikota +28985,Newly Built Switchless Smart 5 Bedroom Fully Detached With A Bq,Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +28986,Newly Built 2 Bedroom Detached Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +28987,A Commercial Shop Very Close To The Road At Ikota Shopping Complex,"Ikota Shopping Complex, Vgc Vgc Lekki Lagos",₦,"7,500,000",0,0,0, beds, baths, Toilets,Victoria Garden City +28988,5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +28989,3 Bedroom Terraced Duplex For Sale,Chevron Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +28990,Serviced 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +28991,One Unit Of 3 Bedroom Penthouse +bq With Bq,Ikate Lekki Lagos,₦,"62,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +28992,5 Bedroom Detached House,Ikota Lekki Lagos,₦,"78,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +28993,Newly Built Tastefully Finished 3 Bedroom Terrace Duplex.,"Off Conservation Drive, Chevron Toll Gate, Lekki Lagos Chevron Lekki Lagos",₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Chevron +28994,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +28995,"Beautiful Contemporary Home At Ajah , Lagos",Osapa London Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +28996,Brand New Units Of 3 Bedroom Apartment With A Bq Available For Sale & Rent!,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +28997,Newly Built 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"25,500,000",0,1,1,2 beds,2 baths,3 Toilets,Ikota +28998,Nicely Finished 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ologolo +28999,Newly Built 4 Bedroom Semi Detached Duplex,"Second Toll Gate, Lekki Oral Estate Lekki Lagos",₦,"43,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +29000,4 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +29001,Newly Built And Architectural Designed 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29002,Move Into A New 4 Bedroom Semi Detached Duplex With Just N23m And Spread Balance For 2 20 Years,"Ikate Elegushi, Meadow Hall Way Lekki Phase 1 Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +29003,Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Little Deposit,"Between Chevron And Vgc, Opposite Lekki County Homes, Ikota, Creek Avenue Court Ikota Lekki Lagos",₦,"39,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +29004,Luxurious 5 Bedrooms Duplex With A Room Bq With C Of O (negotiable),"Osapa London, Lekki Osapa London Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,7 baths,7 Toilets,Osapa London +29005,Brand Newly Built Affordable Luxury Home With Little Initial Deposit To Key In,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +29006,Spacious 4 Bedroom Terrace Duplex,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +29007,Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Down Payment Of N7m,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +29008,Executive 4 Bedroom Terrace Duplex With An Initial Deposit Of N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +29009,Move Into A New 4 Bedroom Semi Detached Duplex With Just N23m And Spread Balance For 2 20 Years,"Ikate Elegushi, Meadow Hall Way Lekki Phase 1 Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +29010,Brand Newly Built Affordable Luxury Home With Little Initial Deposit To Key In,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +29011,Spacious 4 Bedroom Terrace Duplex With Just N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +29012,Affordable Luxury Apartment With 1 15 Payment Plan,"Lekki Phase 1, Meadow Hall Way, Beside New Horizon 2, Opposite Richmond Estate, Bella Courts Ikate Lekki Lagos",₦,"37,500,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +29013,Affordable Luxury 2 Bedroom Apartments With A Let To Own Scheme,"Ikate Elegushi, Meadow Hall Way, Bella Courts Ikate Lekki Lagos",₦,"28,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +29014,Executive 4 Bedroom Terrace Duplex,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +29015,Affordable Luxury Apartment With (1 15) Years Opportunity To Pay,"Lekki Phase 1, Meadow Hall Way, Beside New Horizon 2, Opposite Richmond Estate, Bella Courts Ikate Lekki Lagos",₦,"37,500,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +29016,Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Little Deposit,"Between Chevron And Vgc, Opposite Lekki County Homes, Ikota, Creek Avenue Court Ikota Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,6 baths,6 Toilets,Ikota +29017,Move Into A New 5 Bedroom Triplex With Just N25m And Spread Balance For 2 20 Years,"Meadow Hall Way, Ikate Elegushi, Opposite Richmond Estate Ikate Lekki Lagos",₦,"57,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +29018,New 5 Bedroom Triplex,"Meadow Hall Way, Opposite Richmond Estate Ikate Lekki Lagos",₦,"57,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +29019,Move Into A New 2 Bedroom Apartment With Just N15m And Spread Balance For 2 20 Years,"Meadow Hall Way, Ikate Elegushi Ikate Lekki Lagos",₦,"32,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +29020,Spacious 4 Bedroom Terrace Duplex With Just N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +29021,5 Bedroom Detached Duplex With Bq,Before Chevron Idado Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets,Other Lekki +29022,400sqmt Prime Plots Of Land For Sale At Magamound Estate Ikota Villa Estate,Magamound Estate Inside Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets,Ikota +29023,3 Bedroom Flat On 6 Floors,Near Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +29024,Luxury 5 Bedroom Detached Duplex With 8 Seater Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29025,Beautifully Built 4 Bedroom Terrace Duplex Located In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29026,Newly Built 4 Bedroom Terrace Duplex Located In Lekki Phase 1.,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29027,5 Bdr Terrace Duplex With One Maid Room,Off Ro Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +29028,Luxurious 5 Bedroom Fully Detached House For Sale,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +29029,Spacious 5 Bedroom Detached Duplex With 1 Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +29030,Beautiful 4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +29031,Contemporary Four Bedroom Semi Detached In Chevy View Estate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +29032,Nicely Built 5 Bedroom Semi Detached Duplex With1 Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +29033,Newly Built 4 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +29034,Beautifully Built 5 Bedroom Detached House For Sale,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +29035,Land In Cowrie Creek Estate. 805sqm Land In Cowrie Creek Estate (nlng Estate) Block O N121m,... Lekki Lagos,₦,"121,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29036,*lands For Sale In Cowrie Creek Estate* 805sqm Land In Cowrie Creek Estate (nlng Estate) Block K *n117m,Lekki Lagos,₦,"117,000,000",0,0,0, beds, baths, Toilets,Other Lekki +29037,Newly Built Beautiful 5 Bedroom Fully Detached Duplex With A Massive Penthouse, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29038,Newly Built Beautiful 5 Bedroom Fully Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29039,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29040,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29041,Well Crafted 4 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29042,5 Bedroom Terrace Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29043,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"3,500,000/year",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29044,Four Numbers Of 5 Bedrooms Detached House,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29045,4 Bedroom Apartment,"Altantic Layout Estate, Lekki Garden Phase Lekki Lagos",₦,"52,500,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29046,4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29047,5 Bedroom Detached Duplex,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +29048,Stylish Newly Built 5 Bedrooms Fully Detached Duplex With Bq At Osapa London Lekki,Osapa London Lekki Lagos State Nigeria Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +29049,"Newly Built 5 Bedrooms Fully Detached Duplex With Bq At Osapa London Lekki, Lagos",Osapa London Lekki Lagos State Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +29050,Nice 3 Bedroom Bungalow At Lekki 2 Ajah Lagos,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,3 beds,3 baths,2 Toilets,Lekki Phase 2 +29051,5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29052,Exotic 4 Bedroom Terrace Duplex,Lavender Gardens Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29053,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29054,Luxury 5 Bedroom Detached Duplex With Swimming Pool Bq, Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29055,Newly Built 4 Bedroom Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29056,4 Bedroom Terrace Duplex With Service Quarters, Ilasan Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29057,Magnificent 5 Bedroom Fully Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29058,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29059,Lovely 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29060,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29061,5 Bedroom Fully Furnished + Penthouse Detached Duplex, Osapa London Lekki Lagos,₦,"162,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29062,Off Plan 4 Bedroom Terrace With 2 Bq,Dupe Oguntade Street By Enyo Filling Station Lekki Ikate Lekki Lagos,₦,"85,000,000/sqm",1,0,0,4 beds,4 baths,4 Toilets,Ikate +29063,Brand New Luxury 5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +29064,4 Bedroom Semi Detached Duplex,After 2nd Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29065,Newly Built 5 Bedroom Detached Duplex In Serene And Secured Estate,Ikota Lekki Lagos,₦,"95,000,000/day",0,1,0,5 beds,6 baths,6 Toilets,Ikota +29066,5 Bedroom Fully Detached Duplex House + Bq, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29067,Neatly Built 5bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29068,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29069,6 Bedroom Fully Detached Duplex,Lekki Right Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +29070,Brand New 4 Semi Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29071,2 Bedroom Luxury Apartment, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +29072,5 Bedroom Mansion, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29073,Very Clean 3 Bedroom Apartment, Chevron Lekki Lagos,₦,"17,700,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +29074,A Standard Beautiful Spacious 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29075,Magnificent 4 Bedroom Duplex,Lekki Scheme 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29076,4 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29077,Luxury 5 Bedroom Detached House With Maid Quarters, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29078,5 Bedroom Luxury Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29079,Automated 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29080,Newly Built 4 Bedroom Duplex With Bq, Nicon Town Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29081,Standard 5 Bedroom Duplex With Bq, Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +29082,5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29083,Newly Built 4 Bedroom Semi Detached Duplex,"Ochid Road Chevron Axis, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29084,4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29085,Newly Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29086,Exotic 5 Bedroom Detached Duplex With Penthouse, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29087,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29088,4 Unit Terrace Duplex With Bq,Charles Ifeanyi Street No 11 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29089,4 Bedroom Duplex, Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29090,Newly Built 4 Bedroom Flat,"Altantic Layout Estate, Lekki Garden Phase Lekki Lagos",₦,"52,500,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29091,5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29092,Tastefully Built 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29093,4 Bedroom Townhouse With A Room Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29094,Land,"Akodo General Hospital,lekki Trade Zone Lagos Lekki Phase 1 Lekki Lagos",₦,"7,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29095,5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29096,Luxury 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29097,5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29098,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29099,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29100,Lovely And New 3bedroom Flat,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29101,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29102,Nicely Designed 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29103,4 Bedroom Semi Detached Duplex,Orchid Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29104,3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29105,Beautiful 5 Bedroom Fully Detached Duplex With Luxury Fitting, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29106,Fenced Corner Piece Land, Chevron Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29107,5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29108,Newly Built And Spacious 4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29109,Serviced And Newly Built 2 Bedroom Ensuite Flats,By Pinnock Beach Estate Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +29110,Luxury Built Smart 4 Bedroom Terrace Duplex In Ikate.,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +29111,Tastefully Finished 4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29112,4 Bedroom Semi Detached Duplex With A Bq,"Mobile Estate Road, Lekki Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29113,Beautiful 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29114,3 Bedroom Semi Detached Bungalow, Lekki Lagos,₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29115,Exotic 4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Creek Court Avenue Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29116,Brand New 5 Bedroom Fully Detached Duplex With Bq And Pool, Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29117,5 Bedroom Detached Duplex With 2 Rooms Bq, Ikate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29118,5 Bedroom Full Detached Duplex, Agungi Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +29119,4 Bedroom Terrace Duplex With Bq,"Mobil Estate Road, Lekki Scheme 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29120,Brand New Luxury 5 Bedrooms Detached Duplex With Swimming Pool, Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +29121,5 Bedroom Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29122,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29123,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29124,Affordable 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29125,Superb Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29126,6 Bedroom Luxury Duplex With A Bq, Ikota Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +29127,5 Bedroom Super Luxury Fully Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29128,3 Bedroom Flats With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29129,5 Bedroom Fully Detached Duplex With A Bq, Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29130,Newly Built 3 Bedroom Terrace With A Bq, Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Victoria Garden City +29131,4 Bedroom Detached Duplex With A Bq,Lekki County Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29132,6 Bedroom Super Luxury Fully Detached Duplex With Swimming Pool & 2 Bqs, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +29133,3 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29134,5 Bedroom Spacious Fully Detached Duplex With 2rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29135,Luxurious 5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29136,5 Bedroom Fully Detached Duplex With 1 Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29137,4 Bedroom Fully Detached Duplex With Bq,"Harris Drive, By Vgc, Victoria Nest Iii Estate Vgc Lekki Lagos",₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +29138,Brand New Serviced 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +29139,5 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29140,Luxury 3 Bedroom Apartment With Bq & Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29141,New 5 Bedroom Fully Detached Duplex With Bq Swimming Pool, Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29142,2 Nos 4 Bedroom Semi Detached Bungalow With Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29143,Exquisitely Finished 4 Bedroom Terrace Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29144,Furnished 5 Bedroom Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29145,Promo Price Newly Built 5 Bedroom Detached Duplex,Izu Court Chevron Drive Chevron Lekki Lagos,₦,"99,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29146,Luxury And Exquisite 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29147,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29148,Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29149,4 Bedroom Fully Detached Duplex,Chevron Drive Alternative Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29150,5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29151,Exquisitely Built 5 Bedroom Fully Detached Duplex With Cofo,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29152,Newly Built 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +29153,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29154,Executive 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29155,Luxury And Spacious 3bedroom Flat Fully Serviced Apartment, Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29156,Newly Built Beautiful 4 Bedroom Detached Duplex,Gated Reserved Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29157,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29158,Newly Built Beautiful 5 Bedroom Duplex With A Room Bq, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29159,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29160,4 Bedroom Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29161,Exquisite 4 Bedroom Semi Detached Duplex With Bq,Izu Court Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29162,Functional 26 Rooms Hotel, Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29163,Fully Furnished 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29164,4 Bedroom Terrace Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29165,4 Bedroom Terrace Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29166,Luxury 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29167,4 Bedroom Detached Duplex,Lara Ademola Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29168,6 Units Of A 4 Bedroom Terrace, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +29169,Standard And Spacious 3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +29170,4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29171,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29172,Promo Cheap Luxury 4 Bedroom Semi Detached Duplex,Creek Court Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29173,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29174,Luxury 3 Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29175,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29176,4 Bedroom Semi Detached Duplex And A Bq With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29177,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29178,5 Bedroom Duplex And 1 Bq, Idado Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29179,5 Bedroom Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29180,4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29181,Spacious 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29182,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29183,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29184,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29185,4 Bedroom Fully Detached Duplex, Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29186,Luxurious & Automated 5 Bedroom Detached Duplex + Swimming Pool And 2 Rooms Bq, Osapa London Lekki Lagos,₦,"445,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29187,2 Units Of 300sqm Plots And 1 Unit Of Carcass In An Estate, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29188,4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29189,Exquisitely Finished 6 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,5 baths,0 Toilets,Lekki Phase 1 +29190,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29191,Exotically Finished 4 Bedroom Terrace Duplex,"Creek Avenue Court, Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29192,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29193,5 Bedroom Detached Duplex With Bq Plus Swimming Pool, Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29194,Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +29195,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29196,Newly Built Ensuite 4 Bedroom Detached Duplex,Ologolo By Shoprite Circlemall Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ologolo +29197,5 Bedroom Ensuite Detached Duplex,Chevy View Estate Opposite Chevron Head Office Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +29198,4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29199,4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29200,Fully Detached 5 Bedroom Duplex With A Swimming Pool,2nd Toll Gate Ikota Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29201,Lovely 3 Bedroom Flat With A Room Bq,"Kusenla Road, Pinnock Beach Lifestyle Estate Phase 3 Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,0 Toilets,Lekki Phase 2 +29202,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +29203,5 Bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +29204,Brand New 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +29205,Luxury 4 Bedroom Semidetached Smart Home With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +29206,5 Bedroom Detached Smart Home With Bq,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +29207,5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +29208,3 Bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29209,6 Bedroom Luxury Furnished Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"335,000,000",0,0,0,6 beds,5 baths,0 Toilets,Lekki Phase 1 +29210,5 Bedroom Semi Detached House With Bq,"14b Uba Road, Bera Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29211,A 1200 Sqm Land For Sale At Chevron 100m Asking,2 Minutes Drive From Chevron By Lekki Conservation Chevron Lekki Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets,Chevron +29212,4 Bedroom Semi Detached Duplex,.... Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29213,4 Bedroom Immaculately Built With Plush Interiors, Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29214,4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29215,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29216,4 Bedroom Terrace House, Ikota Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29217,4 Bedroom Flat For Sale,"Ikate Elegushi, Ikate Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29218,Luxury 4 Bedroom Semi Detached Duplex Plus A Bq, Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29219,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29220,4 Bedroom Detached Duplex,Idado Estate. Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29221,3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +29222,5 Bedroom Detached Duplex,"Chevron Drive, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +29223,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +29224,4 Bedroom Terrace Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29225,Executive 2 And 3 Bedroom Flat,"Megamound, Lekki County Home Ikota Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +29226,Magnificently Built 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29227,3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29228,4 Bedroom Terrace Duplex,.... Lekki Lagos,₦,"39,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29229,4 Bedroom Terrace Duplex,.... Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29230,4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29231,Sea View 5 Bedroom Contemporary Detached Duplex, Osapa London Lekki Lagos,₦,"255,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29232,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29233,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29234,4 Bedroom Semi Detached Duplex,.. Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29235,4 Bedroom Terraced Duplex,Creek Court Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +29236,5 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29237,4 Bedroom Terrace Duplex,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29238,3 Bedroom Terraced Duplex,"Chevron Toll Orchid Road, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Lekki +29239,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29240,4 Bedroom Terrace Duplex,.... Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29241,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29242,Newly Built 5 Bedrooms Fully Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29243,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29244,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29245,3 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +29246,Luxuriously And Aesthetically Built 4 Bedroom Semidetached Duplex, Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +29247,3 Bedroom Flat,"Beside Nicon Town, Ikate Lekki Lagos",₦,"2,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +29248,5 Bedroom Terraced Duplex,"Ocean Bay Estate, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29249,3 Bedroom Terraced Duplex,"Megamound Estate, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +29250,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29251,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +29252,5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29253,2 Bedroom Flat,Paradise 2 Alternative Road By Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +29254,5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29255,Block Of Flats,"Eleganza Gardens, Opposite Vgc, Vgc Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29256,4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29257,5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +29258,1 Bedroom Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +29259,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,7 baths,7 Toilets,Victoria Garden City +29260,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29261,2 Plots Of Land,Cowrie Creek Estate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29262,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +29263,4 Bedroom Terraced Duplex,"After Second Toll Gate, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/houses/terraced Duplexes/lagos/lekki/lekki Phase 2/599988 4bedroom Terrace Duplex With Top Notch Finishing Fitted Kitchen Etc Lekki Phase 2 Lekki Lagos",₦,"39,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +29264,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29265,5 Bedroom Detached Duplex,... Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29266,Newly Built 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29267,4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29268,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29269,Newly Built Ensuite 5 Bedroom Duplex,Bogije Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +29270,4 Bedroom Terraced Duplex,"Charis Court 1 Estate, Off Orchid Road By Eleganza Bust/stop, Nicon Town Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29271,5 Bedroom Detached Duplex,... Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29272,6 Bedroom Terraced Duplex,"Chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 2 +29273,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29274,4 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29275,5 Bedroom Duplex, Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29276,3 Bedroom Block Of Flats,"By Enyo Filling Station, Ikate Elegushi. Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +29277,4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29278,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29279,4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29280,4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29281,Fully Detached 5 Bedroom Duplex, Chevron Lekki Lagos,₦,"127,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29282,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29283,6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +29284,Residential Land,"Pinnock Beach Estate, Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29285,5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +29286,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29287,4 Bedroom Semi Detached Duplex,.. Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29288,Mixed Use Land,"Pinnock Beach Estate, Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29289,5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29290,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +29291,5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29292,Plot Of Land,Orchid Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29293,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29294,Mixed Use Land,"Igbokushu, Jakande Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29295,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,5 Toilets,Lekki Phase 1 +29296,7 Bedroom Detached Duplex,"Off Admiralty, Lekki Phase 1 Lekki Lagos",₦,"455,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +29297,Flat For Sale,"Off Oriwu Street Lekki Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +29298,5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29299,4 Bedroom Semi Detached Duplex,"Chevron Drive, Alternative Route, Lafiaji, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29300,5 Bedroom Detached Duplex,Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road Vgc Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +29301,5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +29302,Sophisticated 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,0 Toilets,Osapa London +29303,Plots Of Dry Land,"Grandeur Estate, Abijo G.r.a Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29304,4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29305,Cheap Awesome And Lovely 3 Bedroom Terrace Duplex +bq, Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,0 Toilets,Victoria Garden City +29306,4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29307,4 Bedroom Detached Duplex,Adedeji Adekola Street Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29308,3 Bedroom Flat With Bq, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +29309,4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29310,Well Built And Spacious 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29311,7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29312,Well Built Self Serviced 5 Bedroom House,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29313,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +29314,Self Serviced 4 Bedroom Fully Detached Duplex With Bq,Jakande Roundabout Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29315,Ovely 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29316,4 Bedroom Semi Detached Duplex,.... Idado Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29317,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29318,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29319,4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29320,4 Bedroom Detached Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29321,Fantastic 5 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29322,Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29323,4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29324,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29325,Luxury And Grand 4 Bedroom Duplex Home, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +29326,5 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29327,Massive 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29328,4 Bedroom Semi Detached Duplex + Self Contain Bq, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29329,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29330,Brand New 2 Bedroom Apartment + Bq, Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +29331,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +29332,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29333,4 Bedroom Semi Detached Duplex,"2nd Toll Gate By Chevron, Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29334,Brand New And Tastefully Finished 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29335,Luxury 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +29336,5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29337,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +29338,680 Sqm Residential Land, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29339,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29340,4 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29341,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29342,Exquisitely Finished New 5 Bedroom Fully Detached Duplex,By Conoil Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29343,4 Bedroom Detached Duplex,Lafiaji Lekki Lagos,₦,"43,500,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +29344,5 Bedroom Semi Detached Duplex,By Dr Kenneth Okonkwo Way Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29345,Exquisite 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29346,4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29347,Office Complex,"On Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29348,5 Bedroom Detached Duplex, Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29349,4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29350,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29351,3 Bedroom Terraced Duplex,"Lekki Horizon Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +29352,5 Bedroom Terraced Duplex,"Oral Estate, Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29353,5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +29354,5 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29355,2 Bedroom Flat, Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29356,Brand New Presidential Size 5 Bedroom Fully Detached Duplex,"Chevy View Estate, By Chevron Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29357,Distress 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29358,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29359,4 Bedroom Semi Detached Duplex,.... Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29360,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29361,5 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29362,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29363,4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29364,5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29365,Luxury 2 Bedroom Apartment With Excellent Amenities,Lekki Expressway Lekki Lagos,₦,"11,900,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +29366,8 Bedroom Detached Duplex,"Freedom Way, Lekki Lagos",₦,"120,000,000",0,0,0,8 beds,8 baths,9 Toilets,Other Lekki +29367,4 Units Of 5 Bedroom Terraced Duplex,.... Vgc Lekki Lagos,₦,"567,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29368,4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29369,5 Bedroom Detached Duplex,.. Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29370,Residential Land,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29371,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29372,4 Bedroom Detached Duplex,In A Well Secured Estate Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +29373,4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29374,Newly Built 4 Bedroom Terrace Duplex,Orchid By Lekki Conservative Center Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29375,4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29376,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29377,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29378,5 Bedroom Semi Detached Duplex With A Bq At Victoria Nest 2,"Opposite Atlantic Center, Chevron Lekki Lagos",₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29379,Fully Detached 4 Bedrooms Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +29380,5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29381,5 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29382,4 Bedroom Terrace House With Bq,Osapa Gardens Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29383,4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29384,3 Units Luxury Terrace Apartments Of 4 And 5 Bedrooms,... Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29385,4 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29386,5 Bedroom Detached With A Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29387,Nicely Built Fully Detached 5 Bedrooms Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29388,4 Bedroom Terraced Duplex,Ocean Bay Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +29389,4 Bedroom Duplex,"Westend Estate, Lekki County Home Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29390,Mixed Use Land,"Cbd, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/land/lagos/lekki/lekki Phase 1/592935 2019sqm Cornerpiece Fenced And Gated Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29391,4 Bedroom Terraced Duplex,"Resurrection Drive, Ilasan, Ikate Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +29392,5 Bedroom Detached Duplex,.... Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29393,Spacious 5 Bedrooms Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +29394,5 Bedroom Detached Duplex With Bq,.. Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29395,4 Bedroom Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29396,Block Of Flats,Hamilton Flats Bourdillon Court Chevron Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +29397,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29398,4 Bedroom Fully Serviced Duplex With Bq, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29399,5 Bedroom Detached Duplex,.... Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29400,3 Bedroom Flat, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29401,4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29402,4 Bedroom Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,7 baths,6 Toilets,Lekki Phase 2 +29403,4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29404,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +29405,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29406,4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Lekki Expressway, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +29407,4 Bedroom Detached Bungalow,"Napier Gardens Estate, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,4 Toilets,Victoria Garden City +29408,3 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29409,4 Bedroom Detached Duplex,"Dobys Haven, Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +29410,3 Bedroom Detached Bungalow,"Richland Estate, Bogije Along Lekki Epe Expressway., Lekki Phase 2, Lekki Lagos",₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29411,4 Bedroom Semi Detached Duplex,"Eli Court, Chevron Alternative Drive, Osapa London Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +29412,Tastefully Built 3 Bedroom Flat,Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29413,4 Bedroom Terrace Duplex With A Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +29414,Luxury 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29415,Metro Terrace 3 Unit Of Mini And Self Contain, Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +29416,6 Bedrooms Duplex,Arcadia Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets,Osapa London +29417,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29418,4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29419,Land For Sale,"Blk 119, L Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29420,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29421,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29422,2 Bedroom Flat,Orchid Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +29423,3 Bedroom Flat For Sale,"Oral Estate, Ikota Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +29424,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29425,4 Bedroom Fully Detached Duplex,Lekki Expressway Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29426,Luxury Built 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29427,Brand New 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +29428,5 Bedroom Detached Duplex,"Off Orchid Hotel Road, By Chevron Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29429,Brand New 5 Bedroom Detached Duplex,Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29430,4 Bedroom Furnished Duplex,New Road Bustop Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29431,3 Bedroom Terraced Duplex,.. Chevron Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29432,5 Bedroom Semi Detached Duplex,"Plot 106, Peace Garden Estate (chevron Cooperatives Estate), Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29433,5 Bedroom Detached Duplex, Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29434,5 Bedroom Semi Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +29435,4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29436,3 Bedroom Flat,By White Sand School Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +29437,4 Bedrooms Luxury Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29438,"2,800sqm Land ( Corner Piece )","Ikate Elegushi, Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29439,5 Bedroom Detached Duplex,"Friends Colony Estate, Osapa London Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29440,6 Bedroom Detached Duplex,"Lekki County, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +29441,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29442,5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +29443,5 Bedroom Detached Duplex,"Ocean Palm Estate, Close To Lagos Business School, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/houses/detached Duplexes/lagos/lekki/612705 A Newly Built Luxury 5bedroom Detached Duplex Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29444,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29445,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29446,Distress 4bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29447,4 Bedroom Detached Duplex,Femi Okunnu Estate Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29448,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29449,5 Bedroom Detached Duplex,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29450,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +29451,6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29452,5 Bedroom Detached Duplex,... Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29453,Luxury 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +29454,5 Bedroom Contemporary Fully Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29455,3 Bedroom Penthouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +29456,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29457,4 Bedroom Fully Detached Duplex In An Estate, Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +29458,5 Bedroom Luxury Semi Detached Duplex,Nike Art Gallery Rd Ikate Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29459,Residential Land For Sale,"Bridgegate Estate, Agungi Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29460,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29461,4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29462,4 Bedroom Semi Detached Duplex,"Off Orchid Rd, Lafiaji Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29463,4 Bedroom Terraced Duplex,Periwinkle Lifestyle Estate. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29464,5 Bedroom Fully Detached Duplex,"Peninsula Road, Behind Blenco Supermarket Lekki Phase 2 Lekki Lagos",₦,"46,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +29465,Mixed Used Land For Sale,"Behind Mayfair Garden, Awoyaya Lekki Phase 2 Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29466,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29467,5 Bedroom Mansion,Road 3 Vgc Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +29468,5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29469,Land,Ologolo Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +29470,Mixed Use Land,"Off Mobil Road ,ikota, Ikota Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29471,5 Bedroom Detached House,.. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29472,Executive Mini Flat,.. Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29473,Residential Land,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29474,5 Bedroom Semi Detached Duplex,"Megamond Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +29475,Residential Land,"Behind Cooplag Gardens, Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29476,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29477,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29478,2 Bedroom Flat,"Just After 2nd Toll Gate, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +29479,650sqm Residential Land,"Road 12, Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29480,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29481,4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29482,4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29483,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29484,4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +29485,6 Bedroom Detached Duplex,"Mega Mound Estates,lekki County Homes, Ikota Lekki Lagos",₦,"95,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +29486,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29487,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,5 Toilets,Ikota +29488,Newly Built Serviced 2 Bedroom Flat,Ikota Villa Estate Before Vgc Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Victoria Garden City +29489,Nice 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29490,Gorgeous 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29491,5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29492,4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29493,3 Bedroom Flat,"Off Babatunde Anjous Avenue, Lekki Phase 1 Lekki Lagos",₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +29494,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29495,Newly Built 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29496,5 Bedroom Detached Duplex,.... Jakande Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29497,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29498,4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29499,4 Bedroom Detached Duplex,"Bera Estates Chevron Drive Road, Lekki Expressway Chevron Lekki Lagos",₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29500,3 Bedroom Terraced Duplex,"Southern Point Estate Orchid Road, Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +29501,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29502,Distress 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +29503,4 Bedroom Terraced Duplex,Bourdillon Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29504,5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29505,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +29506,5 Bedroom Detached Duplex,Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +29507,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29508,4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29509,4 Bedroom Semi Detached Duplex,.... Agungi Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29510,4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29511,4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29512,5 Bedroom Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29513,Detached 4 Bedroom Duplex With A Room Bq,Southern View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29514,3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29515,5 Bedroom Detached Duplex,"Lekki Expressway, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +29516,Newly Built 5 Bedroom Fully Detached Duplex Finished + Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +29517,4 Bedroom Semi Detached Duplex,.... Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +29518,Luxury 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29519,4 Bedroom Terraced Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29520,Luxury 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29521,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29522,5 Bedroom Detached With A Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29523,5 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ologolo +29524,4 Bedroom Detached Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29525,Luxuriously Finished And Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29526,Residential Land For Sale,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29527,4 Bedroom Terrace Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29528,4 Bedroom Terrace Duplex,2nd Round About Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29529,Residential Land For Sale,Close To The Gate Vgc Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29530,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29531,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29532,5 Bedroom Detached Duplex Plus Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +29533,3 Bedroom Luxury Apartment, Ikate Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29534,Luxury 5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29535,4 Bedroom Terrace Duplex,... Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29536,Detached 4 Bedroom Duplex With A Room Bq,Southern View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29537,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29538,5 Bedroom Detached Duplex,Lekki County Homes Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29539,4 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29540,Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29541,Newly Built 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29542,2 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +29543,4 Bedroom Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29544,Contemporary 5 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29545,3 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29546,4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29547,Exotic 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29548,2 Bedroom Terrace Bungalow,.... Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29549,Detached Duplex,Victory Park Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29550,4 Bedroom Terrace Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29551,5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29552,8 Bedroom Detached Duplex For Commercial Use,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,0 baths,0 Toilets,Lekki Phase 1 +29553,Luxuriously Well Finished 5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29554,Plots Of Land,.... Lekki Lagos,₦,"5,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29555,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29556,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +29557,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29558,6 Bedroom Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29559,5 Bedroom Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29560,4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29561,4 Bedroom Semi Detached Duplex With A Bq, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29562,5 Bedroom Semi Detached Duplex,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29563,4 Bedroom Semi Detached Duplex,.... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29564,5 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +29565,7 Floor Office Building,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29566,3 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29567,Clean 2 Bedroom Flat,Ikota Villa Phase 2 Lekki Phase 2 Lekki Lagos,₦,"1,600,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 2 +29568,4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29569,100 Units Of 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29570,4 Bedroom House For Sale,"Olubunmi Rotimi Street, Lekki Phase 1, Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29571,5 Bedroom Detached Duplex,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +29572,5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +29573,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +29574,4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29575,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +29576,4 Bedroom Terrace Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29577,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29578,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29579,5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +29580,6 Bedroom Detached Duplex,Whitesand Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +29581,3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"2,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +29582,5 Bedroom Detached Duplex,"Megamond Estate, Ikota Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +29583,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29584,4 Bedroom Terraced Duplex,"Lekki Paradise 3, Chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +29585,4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +29586,5 Bedroom Detached Duplex,"Bera Estate, Chevron Drive Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29587,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29588,5 Bedroom Detached Duplex With Bq,.. Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29589,4 Bedroom Semi Detached Duplex,"Lafiaji ,orchid Road, Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29590,24 Units Of 3 Bedroom Flat, Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29591,2 Bedroom Flat,"Oral Estate Off Chevron Toll, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikota +29592,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29593,4 Bedroom Semi Detached Duplex,"By Chevron Toll, Lafiaji, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29594,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29595,Dry Land,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +29596,2 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29597,5bedroom Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +29598,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29599,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29600,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29601,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29602,2 Bedroom Terraced Duplex,"Off Elegushi Beach Road, Ikate Lekki Lagos",₦,"9,800,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +29603,Brand New Luxury Executive 2 Bedroom Apartment, Idado Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +29604,4 Bedroom Semi Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29605,Beautifully Finished 4 Bedroom Semi Detached Duplex,Orchid Road Opposite Chevron Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29606,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29607,4 Bedroom Detached Bungalow,Nappier Garden Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29608,Luxuriously Finished And Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29609,4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29610,Luxury 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"79,500,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +29611,5 Bedroom Fully Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29612,6 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets,Victoria Garden City +29613,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29614,Commercial Land,Plot 7b Road 7 . Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29615,4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29616,4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29617,5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"83,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29618,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29619,Block Of Flats,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29620,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +29621,3 Bedroom Flat For Sale.,"Road 48, Victoria Garden City Estate. Ikota Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,2 baths,3 Toilets,Ikota +29622,7 Bedroom Waterfront House, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29623,4 Bedroom Detached Duplex,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29624,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29625,5 Bedroom Detached Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29626,3 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +29627,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29628,3 Bedroom Terrace Duplex,Lekki Garden Phase 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +29629,Well Finished 3 Bedroom Flat,Milverton Estate Shoprite Road Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +29630,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29631,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29632,4 Bedroom Terrace Duplex,.... Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29633,4 Bedroom Detached House,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29634,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29635,4 Bedroom Detached Duplex,... Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29636,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"61,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29637,4 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29638,4 Bedroom Terraced Duplex,"2nd Tollgate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +29639,1 Bedroom House,Spar Road /beside Nicon Town Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29640,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29641,3 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29642,4 Bedroom Duplex,.. Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29643,3 Bedroom Terraced Duplex,"Ikate Elegushi, Ikate Lekki Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +29644,Residential Land For Sale,Vgc Close Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29645,4 Bedroom Terrace Duplex,... Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29646,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29647,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29648,4 Bedroom Detached Duplex,"Lekki County Homes, Ikota Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +29649,5 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29650,4 Bedroom Detached Duplex Plus A Spacious Room Bq,"Westend Estate, Ikola Villa Estate, Off Lekki Epe Expressway Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29651,5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29652,2 Bedroom Flat, Agungi Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29653,4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +29654,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29655,3 Bedroom Flat,Bogije Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +29656,Newly Built 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"117,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29657,5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29658,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29659,5 Bedroom Detached Duplex,.... Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29660,Land For Sale,"Blk 134, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29661,5 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29662,4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +29663,Luxury 4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29664,5 Bedroom Detached Duplex,"Chevy View Estate, Chevron, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +29665,4 Bedroom Detached Duplex.,Orchid Road By 2nd Toll Gate. Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +29666,5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29667,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29668,5 Bedroom Detached Duplex With 2 Room Bq,"Carlton Gate Estate, Chevron Drive., Lekki Expressway Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29669,Land, Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29670,4 Bedroom Semi Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29671,5 Bedroom Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29672,3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29673,4 Bedroom Terrace Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29674,4 Bedroom Semi Detached Duplex,.... Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29675,4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +29676,Mixed Use Land,Ikate Elegushi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29677,1 Bedroom Flat With A Bq.,"Off Baale Street, Ologolo Lekki Lagos",₦,"17,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ologolo +29678,Furnished 4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29679,5 Bedroom Detached Duplex,"Lekky County Homes, Ikota Lekki Lagos",₦,"195,000,000",0,0,0,6 beds,5 baths,0 Toilets,Ikota +29680,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29681,Spacious Exquisite 4 Bedroom Duplex,Royal Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29682,6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +29683,5 Bedroom Detached Duplex,Off Prince Ibrahim Eletu Avenue Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29684,5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +29685,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29686,5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29687,3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +29688,4 Bedroom Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +29689,4 Bedroom Duplex,.. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29690,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29691,5 Bedroom Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29692,2 Bedroom Luxury Apartment, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +29693,4 Bedroom Semi Detached Duplex,"Chevron, Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29694,4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29695,4 Bedroom Detached Bungalow,Northern Foreshore Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +29696,4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +29697,Nice 4 Bedroom Duplex,Second Toll Gate Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29698,3 Bedroom Flat, Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +29699,5 Bedroom Detached Duplex With Bq,.. Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29700,3 Bedroom Duplex, Chevron Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +29701,2 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +29702,4 Bedroom Detached Duplex,New Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +29703,5 Bedroom Detached Duplex,"Pinnock Beach Estate, Lekki Lagos",₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29704,Luxuriously Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 2 +29705,4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29706,4 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29707,4 Bedroom Detached Duplex,"Eli Court, Chevron Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +29708,3 Bedroom Flat,.. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29709,Plots Of Land,.. Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29710,4 Bedroom Detached Duplex,Rd 40 Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +29711,5 Bedroom Detached Duplex,"Lekky County Homes, Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +29712,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29713,4 Bedroom Semi Detached Duplex With Penthouse, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29714,4 Bedroom Detached Duplex With Bq, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29715,Spacious 5 Bedroom Duplex,Lekki County Estate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29716,Block Of 3 Bedrooms Flat, Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29717,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29718,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +29719,6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29720,5 Bedroom Detached Duplex,"Abiola Court 10, Chevron Drive ( Alternative Route) Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +29721,2 Bedroom Flat,.. Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29722,4 Bedroom Detached Duplex + 1 Room Bq For Sale, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29723,Mixed Use Land,"Directly On Abayomi Shonuga Off Dele Adedeji, Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29724,3 Bedroom Flat,.... Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29725,3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29726,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29727,4 Bedroom Detached Duplex,.... Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29728,4 Bedroom Duplex With Bq,.. Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29729,4 Bedroom Detached Bungalow,"Ocean Bay Estate, Lafiaji Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29730,Spacious 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29731,5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29732,4 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29733,4 Bedroom Detached Duplex,Daniel's Garden Lekki. Few Minutes Before Chevron Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +29734,7 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,7 beds,7 baths,5 Toilets,Lekki Phase 1 +29735,Exotic & Valued 2 Bedroom Terrace Duplex,Opp. Nicon Town Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +29736,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29737,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +29738,2 Bedroom Terrace Bungalow,Southpoint Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +29739,4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29740,2 Bedroom Flat,Chevron Alternative Drive Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +29741,New And Tastefully Built 4 Bedroom Terrace Duplex,"Off Spar Road, Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29742,5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29743,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29744,4 Bedroom Detached Duplex,Earl's Court Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29745,5 Bedroom Detached Duplex, Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29746,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29747,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29748,Boutique Hotel,Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,10 beds, baths,0 Toilets,Lekki Phase 1 +29749,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29750,3 Bedroom Flat,Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets,Osapa London +29751,2 Bedroom Flat,Orchid Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29752,Land,Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29753,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29754,4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29755,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +29756,Luxury Units Of 3 Bedroom Terrace Triplexes,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29757,Block Of Flats,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +29758,4 Bedroom Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29759,4 Bedroom Semi Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29760,4 Bedroom Semi Detached Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +29761,4 Bedroom Terrace Duplex,.... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29762,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29763,4 Bedroom Semi Detached Duplex,"Chevron Drive,orchid Road, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29764,Mixed Use Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29765,Furnished 6 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +29766,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +29767,5 Bedroom Fully Detached Duplex With Bq,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +29768,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29769,5 Bedroom Semi Detached Duplex,"Groove Ville Estate New Road (alpha Beach )before Chevron, Igbo Efon Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +29770,4 Bedroom Detached Duplex,Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29771,4 Bedroom Terraced Duplex,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29772,Office Building, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29773,6 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +29774,Shop,Jakande Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,1 baths,1 Toilets,Osapa London +29775,4 Bedroom Semi Detached Duplex,.... Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29776,Brand New Luxurious 5 Bedroom Fully Detached Duplex,Kusenla Rd Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29777,5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29778,Well Built 5 Bedroom Duplex,Megamond Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +29779,Warehouse,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29780,4 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29781,5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +29782,3 Bedroom Bungalow,Close To Alpha Beach Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29783,4 Bedroom Terraced Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +29784,7 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +29785,6 Bedroom Detached Duplex,6 Bedroom Detached Duplex Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Lekki +29786,Well Finished 4 Bedroom Semi Detached Duplex With 1 Room Bq,Chevyview Estate Off Chevron Drive Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +29787,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29788,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29789,5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29790,5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +29791,4 Bedroom Terrace Duplex,.... Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +29792,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +29793,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29794,5 Bedroom Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29795,4 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29796,6 Bedroom House,"Carlton Gate Estate, Chevron Drive., Lekki Expressway Lekki Lagos",₦,"220,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +29797,6 Bedroom Commercial Property,"No 11 Furu Ezimora Lekki Phase 1 Lagos, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +29798,5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29799,4 Bedroom Detached Duplex,"After Second Toll Gate, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +29800,Beautiful 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29801,Luxury 2 Bedroom Apartment With Boys Quarter, Ikota Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29802,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29803,Newly Built 12 Units Of 3 Bedroom Apartments, Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29804,4 Bedroom Semi Detached Duplex,.... Idado Lekki Lagos,₦,"54,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29805,5 Bedroom Detached Duplex,Chevron Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +29806,4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29807,Beautifully Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29808,4 Bedroom Semi Detached Duplex,"After 2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29809,4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Phase 2 Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +29810,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +29811,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +29812,3 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +29813,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29814,5 Bedroom Fully Detached Duplex,Tulip Haven Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29815,Mixed Use Land,"Blk 127, Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29816,5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29817,5 Bedroom Fully Detached Duplex With Private Cinema, Osapa London Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29818,4 Bedroom Terrace Duplex,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29819,5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +29820,Land For Sale,"Blk 134, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29821,5 Bedroom Detached Duplex,Megamound Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29822,4 Bedroom Detached Duplex With A Bq, Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29823,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29824,5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29825,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +29826,5 Bedroom Detached Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29827,4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29828,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29829,3 Bedroom Terrace Duplex (offplan),"Abijo Gra, Off Lekki Epe Expressway Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +29830,Serviced 3 Bedroom Flat, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +29831,4 Bedroom Block Of Flats,"In The Heart Of Lekki, Chevron, Ikate Lekki Lagos",₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +29832,5 Bedroom Spacious Detached Duplex,"71a, Agungi Agungi Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +29833,4 Bedroom Semi Detached Duplex With A Bq, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +29834,5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29835,Aesthetically Finished And Superlative 4 Bedroom Terrace Duplex + Bq, Vgc Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +29836,Four Units Of Contemporary Furnished Flats, Chevron Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29837,4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29838,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"3,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29839,3 Bedroom Semi Detached Duplex,Ilasan/jakande Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +29840,Spacious Brand New Four Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29841,5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29842,5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29843,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +29844,5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29845,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29846,4 Bedroom Semi Detached Duplex,Opposite Chevron Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +29847,5 Bedroom Detached Duplex,Lafiaji Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29848,2 Bedroom Detached Bungalow,"Iland, Inside Beechwood Estate, Shapati Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29849,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29850,3 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +29851,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29852,Luxurious And Well Finished 4 Bedroom Semi Detached Duplex With A Bq, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29853,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"69,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +29854,3 Bedroom Detached Bungalow.,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +29855,2 Bedroom Flat, Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29856,4 Bedroom Semi Detached Duplex,.... Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +29857,4 Bedroom Semi Detached Bungalow,.... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29858,4 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29859,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29860,"10,000 Sqm Land", Ikate Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +29861,2 Terrace Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +29862,4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29863,3 Bedroom Semi Detached Duplex,Jakande Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets,Lekki Phase 1 +29864,6 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +29865,Immaculate & Luxurious 4 Bedrooms Semi Detached Duplex,"Close To Oral Estate, Chevron 2nd Tollgate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29866,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +29867,5 Bedroom Semi Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29868,A Newly Built 4 Bedroom Semi Detached Duplex With 1room Bq,"Chevy View Estate, By Chevron Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29869,5 Bedroom Detached Duplex (offplan),Whitesands Beach Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +29870,4 Bedroom Duplex + 2 Bedroom Bq,Amen Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +29871,5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29872,5 Bedroom Detached Duplex,Orchid Road By 2nd Toll Gate. Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +29873,5 Bedroom Detached Duplex,.. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29874,4 Bedroom Semi Detached Duplex,Ldado Area Off Chevron Estate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +29875,Newly Built 2 Units Of 5 Bedrooms Semi Detached House With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29876,2 Bedroom Flat,Behind Pinnock Beach Estate Jakande Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +29877,5 Bedroom Detached Duplex,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29878,5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +29879,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29880,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"6,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29881,4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +29882,2 Bedroom Flat,"Ikota Villa, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +29883,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29884,Land For Sale,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29885,2 Bedroom Flat,Orchid Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29886,Plot Of Fenced Dry 650sqm Land,Itedo Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29887,5 Bedroom Detached Duplex House With 2 Rooms Bq For Sale @ Lekki Phase 1. Title: C Of O Price 170m,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29888,Newly Build 5bedroom Fully Detached Duplex,.. Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +29889,4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +29890,"Lekki Phase One Right Side. Newly Built Service Mini Flat , 2bedroom Flats Allensuite, Bq, 3bedroom Flats Allensuite, Bq, 3bedr0om Massonate, Allensuite, Bq, # 28mil, # 55mil , # 70mil. And # 75mil,",Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29891,4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +29892,Just Out Lekki Phase One Left Side. Cbd Block 6. Plot. 18 1707m2 = 400mil,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29893,"Direct Instruction Lekki Orange Island ( End Of Freedom Way), After Periwinkle Estate, Land Measuring 2400m2 In Block 8 Plot. 2. = Price. 150k Per Square Metre Ikoyi. Banana Island. Zone. D. Plot. 13 1500m2 Fenced Gated+ Lagos State Rati",Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29894,A Landed Property Measuring 400sqm,Ikate Lekki Lagos,₦,"68,000,000",0,0,0, beds, baths, Toilets,Ikate +29895,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",1,0,1,4 beds,4 baths,4 Toilets,Chevron +29896,4 Bedroom Duplex,"Victoria Crest, Osapa London Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets,Osapa London +29897,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets,Chevron +29898,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +29899,Brand New 4bedroom Semi Detached Duplex With Bq,.. Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +29900,"Property Description : 2 Floors On 450sqm Of Land.stunning View,gallery, Perfect Finishing Relaxation Section,imported Furnitures And Unique Setting.location : Fola Osibo (cbd) Title : Cofoprice:#350m Net Contacts",Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29901,4 Bungalow Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +29902,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikota +29903,5bedroom Semi* *detached Duplex With* *separate Entry*,Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +29904,4 Bedroom Terraced Duplex With A Boys Quarter,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +29905,4 Plots Of Dry Land At Lekki Town Off The Coastal Road*,"Coastal Road, Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +29906,"Tantalizer Fantastic Good Design 5bedroom Detached House, 2living Rm, 2rm Bq, Garden, Spool, Gen House,, On 600m2. Price 200mil",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29907,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds, baths, Toilets,Chevron +29908,"Amazing Pictures Available For A Serious Client! Brand New 4 Bed Room Semi Detached Duplex With Bq Fitted Kitchen Ikota Villa Estate .ikota Lekki. It's In A Serene Gated Estate With Private Uniform Wearing Security Men. 36m,d Yearly Rental Value Of This",Ikota Lekki Lagos,₦,"3,600,000",0,0,0, beds, baths, Toilets,Ikota +29909,"4 Bedroom Duplex + 3 Bedroom Flat+ 2 Room Boys Quarters Sitting On Land Measuring 875sqmts At Ikate Elegushi,,lekki Phase 1,lekki,lagos. Price:n400m Title:c Of O",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29910,Land Fenced Measured 1032sqm Of 2332sqm,Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29911,5 Bedroom Duplex + Bq,"Omole Phase Ii Opposite Gtbank, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +29912,Fantastic Flats On Sale From N40 Million And Above In Lagos Mainland And Lekki*,Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +29913,"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema","Arcdia Groove Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +29914,Plots Of Land,.. Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +29915,5 Bedroom Duplex + Bq,"Omole Phase Ii Opposite Gtbank, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +29916,4 Bedroom Semi Detached Duplex With Bq @ Chevron Lekki,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Chevron +29917,Brand New 5 Bedroom Fully Detached Duplex,.. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +29918,Brand New 4 Bedroom Semi Detached Duplex With Fitted Kitchen And Bq,.. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +29919,5 Bedroom Detached Duplex With Bq At Lekki,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +29920,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds, baths, Toilets,Chevron +29921,5 Bedroom Detached Duplex With Bq,"2nd Tollgate, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +29922,Newly Built 4 Bedroom Terraced Duplex,"Lekki 2nd Toll Gate, Lekki Lagos",₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +29923,"Designed For Office, School, Hotel Or Factory",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +29924,Excellent And Tasteful 2units Of 4 Bedroom Semi Detached Duplex Plus A Room Bq At Chevy Drive Alternative For Sale,Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +29925,Luxurious Exclusively Finished 4 Bedroom Semi Detached Duplex At Chevy Drive For Sale,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29926,Two Plots Sandfilled Land Size:1316sqm At Lekki County Ikota,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikota +29927,A Tasteful Finished4 Bedroom Semi Detached Duplex Plus A Room Bq At Orchid Road For Sale,Orchid Road Ikota Lekki Lagos,₦,"43,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +29928,"Zone K4, 800sqm Land At Zone K4, Nlng Cowrie Creek Estate,ikate",Nlng Cowerie Creek Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikate +29929,Classic And Lovely 2 Units Of 4bedroom Semi Detached Duplex Plus A Room Bq At Chevron Alternative For Sale,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29930,"Lovely, New Tastefully Finished 2 Units Of 4 Bedroom Semi Detached Duplex Plus A Room Bq At Chevy Drive For Sale",Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29931,"5 Plots Of Land On The Express Road Directly Opposite Ikota Shopping Complex, Vgc Lagos","Directly Opposite Ikota Shopping Complex,vgc Lagos Ikota Lekki Lagos",₦,"450,000,000",0,1,0, beds, baths, Toilets,Ikota +29932,10units Of 4bedroom Terrace Duplex At Chevron Alternative For Sale,Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Chevron +29933,Newly Built 4bedroom Fully Detached Duplex Plus Bq In Bera Estate On Chevron Drive For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +29934,Exquisitely Classic Designed 5bedroom Fully Detached Duplex Plus A Room Bq At Chevy Drive For Sale,Chevy Alternative Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +29935,Top Notch 2 Units Of 4bedroom For Sale At Chevy Drive,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29936,Newly Built To Taste 4bedroom Detached Duplex For Sale At Chevy Drive Alternative,Chevy Drive Alternative Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +29937,Exclusively Finished 2units Of 4bedroom Semi Detached Duplex Plus A Room Bq At Chevron Alternative For Sale,Chevron Alternative Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29938,"Superb Newly Built Spacious 4bedroom Semi Detached Duplex + Bq For Sale @ Idado Before Chevron,lekki Axis",Lekki Lagos,₦,"51,000,000",0,1,0, beds, baths, Toilets,Other Lekki +29939,Luxury 5 Bedrooms Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +29940,Newly Built 5 Bedroom Fully Detached Duplex With Penthouse And Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,7 Toilets,Lekki Phase 1 +29941,Newly Built 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +29942,Newly Built 4 Bedroom Duplex With Swimming Pool,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +29943,Lekki Plot Measuring 650sqms For N75m,Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Other Lekki +29944,Newly Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +29945,Newly Built 4 Bedroom Terrace House In Lekki,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +29946,Newly Built 4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +29947,Luxury 5 Bedroom Detached Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +29948,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq.,"No 45, Chevron Alternative Route Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +29949,5 Bedroom Super Luxury Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29950,5 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29951,New Self Serviced 4 Bedroom Terrace Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +29952,Luxury Finished 4 Bedroom Terraces With Payment Plan,Opposite Lekki County Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29953,Tastefully Finished 2 Bedroom All Rooms Ensuite Apartments,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +29954,New 3 Units Of 5 Bedroom Detached Duplex,"By Italian School, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29955,New & Spacious 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29956,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +29957,5 Bedroom Fully Detached Duplex + Bq (top Notch), Chevron Lekki Lagos,₦,"94,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29958,Lovely 5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29959,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,Vella Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29960,Lovely 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +29961,4 Bedroom Terraces Plus Bq,4th Round About Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29962,Spacious Terrace 4 Bedroom Duplex,Vella Homes Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29963,4 Bedroom Semi Detached Duplex,Inside Ikota Villa. Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29964,Luxury 4 Bedroom Terrace Duplex,Creek Avenue Ikota Lekki Lagos,₦,"41,500,000",0,0,0,4 beds,4 baths,0 Toilets,Ikota +29965,5 Bedroom Super Luxury Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +29966,Spacious Cozy 4 Bedroom Semi Detached Plus Maids Room,Angles Court Abijo Lekki Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +29967,Finished 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +29968,Newly Built 4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets,Osapa London +29969,New & Spacious 5 Bedroom Fully Detached Duplex With Bq, Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +29970,Spacious 4 Bedroom Detached Duplex At Vgc, Vgc Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +29971,New 5 Bedroom Mansion, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +29972,New 5 Bedroom Mansion, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29973,New & Spacious 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29974,Pinnock Beach Estate Land For Outright Purchase,Pinnock Beach Estate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29975,Beautiful Four Bedroom Duplex With Excellent Finishing, Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +29976,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +29977,Plots Of Land Available,Eleganza Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +29978,Magnificently Built Four Bedroom Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 2 +29979,Four Bedroom Semi Detached Duplex Available, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +29980,New Luxury Two Bedroom Apartment, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +29981,Luxury Five Bedroom Fully Detached Duplex Available, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +29982,Topnotch Four Bedroom Terrace Duplex,Lekki Expressway Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Lekki +29983,Exquisitely Finished Three Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,0 Toilets,Lekki Phase 1 +29984,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"Near Oral Estate, Chevron, 2nd Toll Gate, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +29985,Brand New 4 Bedroom Semi Detached Duplex,Off Alao Aladimeji Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +29986,Luxury 7bedroom Duplex With Excellent Fittings,Nicon Town Lekki Lagos,₦,"325,000,000",1,0,0,7 beds,8 baths,8 Toilets,Other Lekki +29987,Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29988,5 Bedroom Terrace Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +29989,Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29990,Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +29991,Newly Completed 3 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +29992,Newly Built 2 Bedroom Terrace Duplex In A Fully Serviced Estate,Behind Enyo Ikate Lekki Lagos,₦,"9,800,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +29993,An Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,5 Toilets,Chevron +29994,Newly Built 3bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +29995,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +29996,Brand 5 Bedrooms Duplex,"Chevron Alternative, Off Chevron Drive Chevron Lekki Lagos",₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +29997,Brand New 4 Bedrooms Semi Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +29998,Newly Built 4 Bedroom Semi Detached Duplex Available For Sale,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +29999,"Office Building On Plot Measuring More Than 1,000sqms",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"510,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30000,"Various Plots Being 623sqms, 708 Sqms, And 692sqms In Vintage Park Estate, Ikate",Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Ikate +30001,Beautiful 3 Bedroom Apartment With Bq Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +30002,Plot Measuring 10 Hectares,"By 5th Roundabout, Lekki Epe Expressway Jakande Lekki Lagos",₦,"95,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +30003,"26,000sqms Land",... Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Ikate +30004,Plot,"Close To Imax Cinemas, Cbd Area Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30005,Magnificent 6 Bedroom Fully Detached Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +30006,"Plot Measuring Almost 80,000 Square Meters",Next To World Oil On Lekki Epe Expressway Lekki Lagos,₦,"150,000,000/sqm",0,0,0, beds, baths, Toilets,Other Lekki +30007,"Plot Measuring 8,500sqms",Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30008,"Office Space Building Of 4 Floors Along Lekki Experessway With Large Space Of 3,070.741 Square Meters With C Of O Title Document",Along Lekki Experessway Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +30009,"Plot Measuring 1,100sqms In Twin Lakes Estate",Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30010,"Plot Measuring 21,000sqms",By Vgc/ Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Ikota +30011,Beautiful Finished 5 Bedroom Fully En Suite Detached Duplex With A Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +30012,"Twenty Units Of Luxurious 4 Bedroom Terraces With Bq In A Serviced Compound With Swimming Pool, Gym, Etc",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +30013,"Plot Measuring Almost 4,900sqms",Just Off Chevron Drive Igbo Efon Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30014,Fantastic Furnished 5 Bedroom Fully Detached Self Compound With All Modern Amenities Lovely Finishing At Chevy View Estate Lekki 75m,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +30015,Brand New 100 Units Of 4 Bedrooms Terraces With 1 Room Bq,Behind This Present House Church Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +30016,"Twenty Units Of Luxurious 4 Bedroom Terraces With Bq In A Serviced Compound With Swimming Pool, Gym, Etc",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30017,Newly Built 4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +30018,"5 Bedroom Fully Detached Duplex For Sale At Osapa London, Lekki",Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +30019,Brand New Luxury 4 Bedroom Serviced Terrace Duplex,2nd Toll Lekki Lagos,₦,"33,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30020,4 Bedroom Serviced Terrace Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +30021,Commercial Property,.. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30022,Luxury 3bedroom And 2 Bedrooms Available In Lekki,Ikate Ikate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +30023,Brand New 4bedroom Semi Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +30024,"4 Bedroom Terrace Duplex For Sale In Ikota Villa, Ikota",Ikota Villa Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +30025,Luxury 5 Bedroom Maisonette,Phase1 Est Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +30026,Four Bedroom Duplex,Chevron Drive Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +30027,5 Bedroomfully Detached.,"Megamound Avenue, Lekki County Homes. Ikota Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +30028,An Equisite 10 Units Of 2 Bedroom Flats,Ikota Villa By Mega Chicken. Ikota Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +30029,4 Bedroom Fully Detached House With A Swimming Pool,"Megamound Avenue, Lekki County Homes. Ikota Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30030,Lovely Full Detached 7 Bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,8 beds,8 baths,9 Toilets,Chevron +30031,Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets,Ikate +30032,Newly Built Luxury Smart Home,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"79,500,000",1,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 2 +30033,Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets,Ikate +30034,Newly Built 4bedroom Fully Detached Duplex Ensuite With Bq.,West End Estate By Ikota Estate Villa. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +30035,2 Plots On A Corner Piece Of Land,Osapa Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Osapa London +30036,Newly Built & Well Finished 4bedroom Terrace Ensuite + Bq & Spacious Fitted Kitched In A Mini Estate I,Ilasan Lekki Lagos,₦,"69,000,000",0,1,1,5 beds,6 baths,7 Toilets,Other Lekki +30037,Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets,Ikate +30038,Newly Built Luxury Smart Home,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,1,4 beds,5 baths,6 Toilets,Lekki Phase 2 +30039,Newly Built & Well Finished Blocks Of 2bedrm Flats Ensuite ,Ikate Lekki Lagos,₦,"48,000,000",1,1,1,2 beds,3 baths,3 Toilets,Ikate +30040,4 Bedroom Fully Detached,Off Orchid Hotel Road. Opposite Chevron. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30041,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden.,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +30042,Beechwood Estate.,"Bogije, Lekki. Lekki Lagos",₦,"13,300,000",0,0,0, beds, baths, Toilets,Other Lekki +30043,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq.,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"63,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +30044,"Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eden's Court, Lekki","Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +30045,"Newly Built Well Spacious 5 Bedroom Fully Detached Duplex With Bq In Eden's Court, Lekki.","Chevron Drive Lekki, Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +30046,Eminence Court.,Bogije Lekki/epe Expressway. Lekki Lagos,₦,"5,200,000",0,1,0, beds, baths, Toilets,Other Lekki +30047,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,"Creek Avenue Court, Lekki. Ikota Lekki Lagos",₦,"40,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +30048,Winhomes.,"Winhomes Is Located Off Orchid Hotel Road, By Chevron (2nd Toll Gate) Lafiaji Lekki. Chevron Lekki Lagos",₦,"18,000,000",0,1,0, beds, baths, Toilets,Chevron +30049,Plots Of Land,New Chevron Beside Beune Vista Estate Chevron Lekki Lagos,₦,"38,000,000/day",1,0,0,0 beds,0 baths,0 Toilets,Chevron +30050,4 Bedroom Duplex With Bq For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30051,A Fabulous 4 Bedroom Duplex For Sale At Lekki,Lafiaji Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30052,A Luxuriously Finished 4 Bedroom Duplex With A Bq For Sale,Orchid Road Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30053,A Budget Friendly 4 Bedroom Standalone Duplex For Sale In Lekki,Lafiaji Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30054,A Serviced 4 Bedroom Semi Detached Duplex With A Bq For Sale,Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30055,4 Bedroom Semi Detached Duplex,... Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30056,An Aesthetic 5 Bedroom Detached Duplex,.. Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30057,5 Bedroom Detached Duplex With A Bq For Sale At Chevron,... Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30058,An Avant Garde 5 Bedroom Standalone House In Lekki For Sale,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30059,A Superb 4 Bedroom Semi Detached Duplex,.. Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30060,A Luxury & Contemporary 4 Bedroom Detached Duplex,Off Orchid Hotel Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30061,Big 4 Bedroom Semi Detached House,Coleman Nwafor St Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30062,4 Bedroom House With Bq For Sale,Ikota Villa Estate Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30063,An Aesthetic 4 Bedroom Detached Duplex,.. Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30064,Luxury Massive 5 Bedroom Duplex,Alpha Beach Road Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +30065,Newly Built 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30066,4 Bed Detached Duplex And 2 Bq,Alpha Beach Road Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +30067,A Plot Of Land With Governor's Consent For Sale In An Estate @ Ologolo Lekki,Ocean Pavilion Estate Ologolo Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets,Ologolo +30068,New 4 Bedroom House,Conservation Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30069,4 Bedroom House, Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30070,A Large Sized 3 Bedroom Semi Duplex With Bq,... Ologolo Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +30071,Luxury 7 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +30072,5 Bed Room Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30073,Massive 4 Bedroom Home With A Bq For Sale,Lafiaji Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30074,A Lovely Brand New 4 Bedroom Duplex,In A Gated Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30075,4 Bedroom Duplex With Modern Finishes,... Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30076,Serviced 4 Bedroom Terraced Duplex,... Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30077,An Aesthetic 4 Bedroom Duplex For Sale In Lekki,Alternative Route Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30078,500 Sqm Land For Sale In A Serviced Estate,Pinnock Beach Gate Estate Osapa London Lekki Lagos,₦,"90,000,000",1,0,0, beds, baths, Toilets,Osapa London +30079,Fully Serviced 4 Bedroom Terraced Duplex With A Bq,In A Serviced Estate Ilasan Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30080,2022 Sqm Land For Sale At Vgc Lekki, Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +30081,5 Bedroom Fully Detached Duplex With Bq Is Located In A Secured Estate,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,4 baths,5 Toilets,Lekki Phase 1 +30082,5 Bedroom Detached Duplex For Sale In Lekki 8sep8,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +30083,4 Bedroom Semi Detached Duplex For Sale In Lekki 8sep7,Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +30084,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +30085,Governors Consent,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30086,Governors Consent,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30087,A Lovely 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +30088,A Lovely 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30089,A Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30090,A Lovely 4 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30091,Newly Built 5bedroom Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +30092,Newly Built 5bedroom Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +30093,Newly Built 5bedroom Detached House With A Bq,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30094,Well Finished 4bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +30095,Newly Built 4bedroom Fully Detached Duplex With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30096,Brand New 4bedroom Fully Detached Duplex With A Bq For Sale,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30097,Newly Built 5bedroom Fully Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +30098,Newly Built 4bedroom Semi Detached House With A Bq,Ikota Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30099,Brand New 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30100,Newly Built 5bedroom Fully Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30101,A Tastefully Built Brand New 5 Bedroom Fully Detached House For Sale,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +30102,Newly Built 2 Bedroom Flat For Sale,Ikate Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +30103,3bedroom Flat Carcass,Chevron Drive Chevron Lekki Lagos,₦,"28,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +30104,Exotic Brand New 5 Bedroom Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30105,Luxury 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30106,Top Notch Massive 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30107,2 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +30108,Bareland,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30109,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +30110,Land,Off Bisola Duronsimi Drive Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30111,5 Bedroom Fully Detached Triplex With Bq,Western Foreshore Estates Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30112,Contemporary 5 Bedroom Detached Duplex With B.q,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30113,Well Maintained 4 Bedroom Detached House,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +30114,Top Notch Newly Built Massive 5 Bedroom Detached Duplex With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +30115,Brand 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30116,4 Bedroom Semi Detached Bungalow,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30117,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30118,"Brand New, Luxury, Serviced 1 Bedroom Apartment","Off Kushenla Rd, Ikate Elegushi Lekki Lagos",₦,"28,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Lekki +30119,Residential Land,Ogombo Road Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +30120,Furnished 5 Bedroom Detached Duplex With 2 Room Boys Quarter,"Carlton Gate Estate, Chevron Drive, Lekki Expressway Lekki Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30121,4 Bedroom Semi Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +30122,New Luxurious 5 Bedroom Detached Duplex With Bq,"Chevy View Estate, Chevron Hq, Lekki Expressway Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30123,Residential Land,Between 5th And 6th Traffic Light Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +30124,Executive 4 Bedroom Luxury Semi Detached House,Beside Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30125,4 Bedroom Semi Detached Duplex With Bq,By Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30126,Residential Land,"Arcadia Groove Estate, On Circle Mall Drive (shoprite) Jakande Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30127,"1,280sqm Plot Of Land",Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +30128,Modern 4 Bedroom Duplex At Ikota Lekki For Sale,Ikota Ikota Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +30129,Commercial Property,"Eleganza, Lekki Expressway Lekki Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30130,3 Bedroom Flat,Road 46 Vgc Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +30131,New 5 Bedroom Fully Detached Duplex With A Room Bq,"Bera Estate, Off Chevron Drive Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30132,6 Bedroom Magnificent Water Front Fully Detached House,Road 2 Victoria Garden City Vgc Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +30133,Newly Built 4 Bedrooms Semi Detached House,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +30134,4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30135,Brand New 4 Bedroom Detached House,Ikota Villa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +30136,4 Bedroom Twin Duplexes With A Maids Room,"Carlton Gate Estate, Chevron Drive Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +30137,5 Bedroom Detached Duplex +pool,Pinnock Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +30138,4 Bedroom Semi Detached Duplex,Alperton Residence Estate Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +30139,Well Maintained 4 Bedroom Semi Detached House,"Richmond Gate Estate, Lekki Peninsula, Lekki Expressway Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +30140,4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30141,Massive 5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30142,Tastefully Finished Brand New 4bed Duplex With Bq For Sale In Lekki Phase 1.,"Off Omorinre Johnson, Off Admiralty Way, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +30143,5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +30144,Nicely Built 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30145,Serviced 3 Bedroom Flat For Sale In Osapa,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +30146,Modern 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +30147,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +30148,Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +30149,Beautifully Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30150,Brand New Serviced 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30151,5 Bedroom Detached Duplex For Sale,Gated Community Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30152,4 Bedrooms Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,4 baths,4 Toilets,Chevron +30153,4 Bedroom Detached Duplex With Bq And Swimming Pool,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30154,4 Bedroom Semi Detached Duplex With Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30155,Luxurious Newly Built 4bedroom Terrace Duplex With Room Bq In A Gated Estates,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +30156,Fully Detached 5bedroom Duplex With Room Bq,Gated Community Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +30157,"Contemporary & Spacious 5 Bedroom Semi Detached Duplex With A Room Boys Quarter,",Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +30158,Luxurious 4bedroom Detached Duplex With Room Bqs For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30159,Well Built 4bedroom Fully Detached Duplex With A Bq,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30160,For Sale Well Built 4bedroom Fully Detached Duplex With A Bq,U3 Estate Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30161,Massive 4 Bedroom Detached Duplex / Open Terrace / 1 Maid Room,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30162,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +30163,Newly Built 4bedroom Duplex Terrence,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"36,000,000/sqm",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +30164,3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +30165,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +30166,Brand New 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30167,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30168,Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30169,Brand New 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +30170,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +30171,4 Bedroom Semi Detached Duplex,Idado Axis Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30172,4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +30173,2 Unite Of Newly Built 4 Bedroom Semi Detached Duplex,Bera Estate Along Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +30174,Newly Built 4 Bedroom Terrace House,.. Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30175,4 Bedroom Detached Bungalow, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +30176,Luxury Newly Built And Contemporary Designed En Suite Five Bedrooms Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30177,Newly Built 5 Bedrooms Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,7 baths,7 Toilets,Chevron +30178,Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30179,5 Bedroom Duplex,Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30180,3 Bedroom Flat,Off Durusimi Etti Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +30181,Newly Built Five Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +30182,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +30183,1200sqm Land, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +30184,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +30185,5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +30186,Luxury 5 Bedroom Detached Duplex,"Ikota Villa Estate, Behind Mega Chicken Ikota Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +30187,2unite Of Newly Built 5 Bedrooms Detached Duplex,"Bera Estate, Chevron Drive Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,7 baths,7 Toilets,Chevron +30188,Nice 4 Bedrooms Bungalow With 2 Rooms Bq,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +30189,Newly Built 2 Bedroom Flat Apartment, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +30190,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +30191,Luxurious And Well Finished 3 Bedroom Flat,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +30192,Newly Built 4 Bedroom Detached House,.. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +30193,5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30194,Newly Built Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 1 +30195,Land,"Victory Park Estate, Shoprite Road Jakande Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30196,Brand New 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +30197,4 Bedroom Duplex With Bq,Orchid Hotel Road By Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30198,Newly Built 5 Bedroom Duplex Along Chevron Drive,Chevy View Estate Along Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +30199,4 Bedroom Semi Detached Duplex,Daniel Garden Agungi Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +30200,4 Bedroom Detached Bungalow, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +30201,5 Bedroom Detached Duplex + 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30202,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +30203,3 Bedroom Terraced Duplex,"Oribanwa,lekki Peninsula Lagos Lekki Lagos",₦,"17,675,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +30204,4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +30205,4 Bedroom Semi Detached Duplex With Bq,Lekky County Home Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +30206,Plaza / Complex / Mall,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30207,4 Bedroom Duplex With Bq,Orchid Road By Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +30208,Gated And Fenced Land In A Well Developed Area,Lafiaji Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30209,5 Bedroom Semi Detached House With A Room Bq,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30210,Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,0 baths,0 Toilets,Lekki Phase 1 +30211,4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +30212,4 Units Of 3 Bedroom Flat, Ikate Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +30213,Tastefully Finished 4 Units Of 5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +30214,2 Bedroom Self Contained (single Rooms),Ilasan Esate Ilasan Lekki Lagos,₦,"31,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +30215,Fully Serviced 4 Bedroom Terrace Duplex With A Room Bq,Gated Estate Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +30216,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30217,Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30218,Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30219,Brand New 5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +30220,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30221,Brand New Serviced 4 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30222,Luxury 5 Bedroom Detached Duplex With 8 Seater Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30223,Brand New 4 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30224,Luxury Exquisitely Finished 4 Bedroom Duplex,"Eli Court Lekki, Chevron Alternative Drive, Lekki Phase 2 Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +30225,Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30226,"Newly Built Three(3) Bedroom Flat Apartment Or Three(3) Bedroom Terraced Duplex With A B. Q. At Atlantic Mews, Lekki","Igbo Efon, Just Before Chevron Hq And Along Alpha Beach Road Igbo Efon Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +30227,Beautiful Luxury 4 Bedroom Semi Detached Duplex,Chevron Alternative Route. Lekki Phase 2 Lekki Lagos,₦,"54,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +30228,Exquisite Three(3) Bedroom Terraced Duplex With B. Q. And Spacious Parking Lots,"Ikate Elegushi, Lagos Ikate Lekki Lagos",₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Ikate +30229,Luxury Two Bedroom Fully Serviced Apartment In A Mini Estate,Beside Enyo Filling Station By Oral Estate. Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +30230,A Bare Undeveloped Land Of 500 Sqmts At Lekki Phase 2 For Urgent Sale,"Lekki Phase 2, Ajah Lekki Phase 2 Lekki Lagos",₦,"17,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +30231,Lovely 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30232,5 Units Of 4 Bedroom Terrace With Bq For Sale.,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +30233,Newly Built 5 Bedroom All Rooms En Suite Detached Duplex With A Swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +30234,Beautiful Exquisitely Finished 4 Bedroom Fully Detached Duplex.,Chevron Alternative Drive. Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +30235,Newly Built Four(4) Bedroom Semi Detached Duplex With B.q At Ikate Elegushi,Exquisite Four(4) Bedroom Semi Detached Duplex With Spacious B.q And Frontage For Sale Ikate Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +30236,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +30237,Luxury Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30238,Top Notch 3 Bedroom Terrace Duplex,"By 2nd Toll Gate, Chevron Lekki Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 2 +30239,Hectares Of Land For Sale,Ilasan Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30240,Exquisitely Finished 4 Bedroom Contemporary Semi Detached Duplex With A Bq,Lekki Epe Expressway Lekki Lagos,₦,"48,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +30241,5 Bed Room Detach Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +30242,Two Bedroom Luxury Flat,"Honetville Estate, Agungi, Lekki Penisula Lekki Phase 2 Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,1 baths,1 Toilets,Lekki Phase 2 +30243,3 Bedroom Penthouse Flat,"Agungi Lekki Penisula, Lagos Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +30244,Serviced Plots For Sale In Abijio 28aug2,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30245,2 Bedroom Apartment For Sale In Lekki 28aug1,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +30246,A Dry Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"42,000,000/sqm",0,0,0, beds, baths, Toilets,Lekki Phase 2 +30247,Well Built 4bedroom Fully Detached Duplex With A Bq For Sale .,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30248,Luxurious 5 Bedroom Detached House With Spacious En Suite Bedrooms,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30249,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30250,Luxurious 5bedroom Terrace Duplex With Room Bqs For Sale,Lekki Phase1 Maruwa Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30251,For Sale Well Built 4bedroom Semi Detached Duplex With A Bq,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30252,For Sale Well Built 4bedroom Semi Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30253,Luxury 3 Bedroom Flats Apartments For Sale,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +30254,Brand New 5 Bedrooms Fully Detached House For Sale ,Gated Estate In Lekki Phase1 Rightside Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30255,Luxury 4 Bedroom Semi Detached With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30256,5 Bedroom Fully Detached Duplex For Sale On 3 Floors With A Swimming Pool,Beautiful Estate In Osapa London Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30257,Land Measuring 890sqm,Pinnock Beach Estate Osapa London Lekki Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +30258,Brand New 4 Bedrooms Detached House,Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +30259,Newly Built Luxurious 4bedroom Terrace Duplex With Swimming Pool And Gym,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30260,Luxury 2 Bedroom Flat With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +30261,Brand New 4 Bedrooms Semi Detached Duplex,Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30262,Eight Bedroom Duplex,Villa Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"250,000,000/month",0,0,0,8 beds,9 baths,9 Toilets,Ikota +30263,Affordable Ikota Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,0,0, beds, baths, Toilets,Ikota +30264,Affordable Ikota Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,0,0, beds, baths, Toilets,Ikota +30265,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30266,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30267,4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30268,5 Bedroom Detached Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +30269,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30270,Luxurious 4 Bedroom Semi Detached Duplex,"Bella Court 3, Ikate Lekki Ikate Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +30271,Four Bedroom Detached Duplex,No1 Tourism Road Off Alpha Beach Lekki Lagos Igbo Efon Lekki Lagos,₦,"35,000,000/day",1,0,0,4 beds,6 baths,6 Toilets,Other Lekki +30272,Brand New 5 Bedrooms Semi Detached Houses For Sale!!! ,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30273,5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30274,5bedroom Semi Detached Duplex With Room Bq,Bridgegate Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +30275,4 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30276,"A Well Finished 5bedroom Stand Alone House With Swimming Pool,gym And Study Room",Lekki Lagos Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30277,Spacious 5 Bedroom Detached House With A Very Massive Compound,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30278,Spacious 5 Bedroom Detached House With A Very Massive Compound,Chevron Drive Alternative Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30279,Brand New 5bedroom Fully Detached Duplex House With 1room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +30280,Brand New 4bedroom Semi Detached Duplex House With 1room Bq For Sale!!!,Osapa London Garden Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30281,4 Bedroom Semi Detached Duplex For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30282,Newly Built 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +30283,4bedroom Fully Detached Duplex For Sale With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +30284,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30285,5bedroom Fully Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +30286,5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +30287,Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +30288,Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +30289,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +30290,4bedroom Semi Duplex With Bq For Sale,Ologolo Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +30291,5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +30292,5bedroom Fully Detached Duplex With Bq For Sale!,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +30293,Work On This Please 100% Closeable Owner Joint Venture In Lekki Phase1 A Corner Piece Land Size 2019sqm Proposal Owner Prefers 18 Units Of Luxury Flats Title Lcofo & Gconsent Value N550million No Premium Location Off Admiralty Way,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30294,3 Bedroom Maisonnette And 2 Bedroom Flats,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +30295,4bedroom Fully Detached Duplex For Sale With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +30296,Newly Constructed 5 Bedroom Fully Detached Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +30297,Newly Built 4 Bedroom Detached Duplex + Bq For Sale @ Lekki Ologolo,.. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30298,Newly Built 4 Bedroom Semi Detached Duplex + Bq For Sale @ Lekki Ologolo Title: Governor's Consent Price: *ngn 55 M*,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30299,Brand New 4 Bedroom Terrace Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30300,Lovely Brand New 5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30301,Land,Esther Adeleke Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30302,3 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30303,Newly Built Blocks Of Flat,Horizon Estates Lekki Phase 1 Lekki Lagos,₦,"27,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30304,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +30305,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +30306,Newly Built 5 Bedroom Semi Detached,Eden's Court Chevron Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +30307,Shop,Ikota Shopping Complex Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30308,Executive 2 Bedroom Flat,... Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikota +30309,4 Bedroom Townhouse, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +30310,Luxury 2 Bedroom Flat,... Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +30311,Newly Built 4 Bedroom Duplex,Vintage Park Estate Jakande Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30312,5 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +30313,5 Bedroom Detached Duplex,Ikota Axis Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +30314,4 Bedroom Semi Detached Brick House + 1 Bedroom Bq,"Idado, By Chevron Traffic Light Chevron Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +30315,Newly Built 4 Bedroom Terraces,Eden's Court Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +30316,2 Bedroom Block Of Flats (under Construction),Ikate Elegushi Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30317,5 Bedroom Luxury Detached Duplex.,Off Onikepo Akande Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30318,4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30319,Exquisite 4 Bedroom Detached House,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +30320,4 Bedroom Terrace Duplex,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30321,4 Bedroom Detached Duplex,"Olive Park Estate Close To Lagos Business School Lekki Ajah, Lekki Expressway Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30322,Newly Built 4 Bedroom Duplex For Sale,"Second Toll Gate, Lekki, Lagos State Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +30323,"4 Bedroom Detached Duplex Off African Lane, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +30324,4 Bedroom Fully Detached Duplex,... Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +30325,Newly Built 5 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +30326,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +30327,"Newly Built 5 Bedroom Detached Duplex At Lekki County Home, Ikota",Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Ikota +30328,4 Bedroom Semi Detached Duplex,"Ikota Villa Estate Behind Mega Chicken, Lekki Expressway Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30329,Fully Furnished 2 Bedroom Flats,Orchid Hotel Road By Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 2 +30330,Newly Built 5 Bedroom Detached House,Eden's Court Chevron Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +30331,5 Bedroom Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +30332,4 Bedroom Terrace Duplex,"Orchid Road Lekki Second Toll Gate, Lafiaji Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30333,Newly Built 4 Bedroom Detached Duplex For Sale @ Lekki Agungi Title: Governor's Consent Price: *ngn 75 M*,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +30334,5 Bed Room Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +30335,"Semidetached 4bedrooms Brickhouse With 1 Bed Bq. With Ample Packing Space, Extra Storage Area By Generator Hse. Fully Equipped Kitchen With Gas Burner And In Built Microwave. Masters Bedroom With Nicely Finished Closet And Spacious Bathroom. Secured And G",Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30336,"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30337,"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30338,"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30339,A Newly Built 4bedroom Semi Detached Duplex In Ikota Gra 45m Net,Lantana Street Ikota Lekki Lagos,₦,"4,000,000/sqm",0,1,1,4 beds,5 baths,5 Toilets,Ikota +30340,4 Bedroom Luxury Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Lagos,₦,"55,000,000/sqm",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +30341,Massive 4 Bedroom Detached Duplex / Open Terrace /,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30342,"3 Year Payment Plan In Osapa London, Lekki! 4 Bedroom Semidetached Triplex",Secured Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30343,Brand New 1 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Ikate +30344,"Block Of 1 Bedroom & 2 Bedroom Apartments Is Well Finished With Modern Fittings And Functional Spaces. Fully Serviced With A Rooftop Gym, 24hr Electricity",Ikate Ikate Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +30345,4bedroom Semi Detached’s Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30346,2units 5bedroom Contemporary Semi Detached Duplex For Sale,Cowrie Creek Estate By Nicon Town Ikate Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +30347,4bedroom Semi Detached Duplex With Room Bq,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30348,Brand New 3 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +30349,5 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30350,4bedroom Semi Detached Duplex In A Secure Gated Estate,Gated Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30351,Brand New 3 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +30352,Luxuriously Finished New 5 Bedroom Detached Duplex With Swimming Pool,"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikota +30353,Luxuriously Finished New 5 Bedroom Detached Duplex (negotiable On Purchase),"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikota +30354,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. (negotiable On Purchase),"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +30355,Exquisitely Finished 4 Bedroom Fully Detached Duplex,"Chevron Alternative Drive,lekki Chevron Lekki Lagos",₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +30356,Luxuriously Finished New 5 Bedroom Detached Duplex With Swimming Pool,"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets,Ikota +30357,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +30358,Exotically Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 1 Creek Avenue Court Lekki (pay And Pack In).negotiable,"After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +30359,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +30360,Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,"Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Lekki Phase 1 Lekki Lagos",₦,"70,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +30361,Newly Built Fully Furnished 5 Bedroom Detached Duplex,"Megamound Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,7 baths,7 Toilets,Ikota +30362,Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,"Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +30363,Exotically Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 1 Creek Avenue Court Lekki (pay And Pack In).negotiable,"After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +30364,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. (negotiable On Purchase),"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +30365,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +30366,Luxuriously Finished 5 Bedroom Detached House,"Lekki County, Lagos Lekki Phase 2 Lekki Lagos",₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets,Lekki Phase 2 +30367,2 Bedroom Terrace Duplex,"Lekki Scheme 2, Off Abraham Adesanya Roundabout. Lekki Phase 2 Lekki Lagos",₦,"28,000,000/sqm",1,0,1,2 beds, baths, Toilets,Lekki Phase 2 +30368,Newly Built 4 Bedroom Semi Detached Duplex,"Orchid, Lekki Lagos",₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30369,An Exquisitely And Top Notch Finished 5 Bedroom Duplex For Sale*,Ikate Lekki Lagos,₦,"145,000,000",1,1,1, beds,5 baths,5 Toilets,Ikate +30370,A 3 Bedroom Flat.,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +30371,Newly Built 3 Units Of 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +30372,Clean And Spacious 4 Bedroom +bq Detached House,Carlton Gate Chevron Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +30373,Brand New 4 Bedrooms Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30374,Exquisite 4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30375,5 Bedroom Detached Duplex For Sale,Osapa London Garden Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30376,Brand New 4 Bedroom Detached Duplex With Bq,Chevron Drive Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30377,Newly Built 5bedroom Contemporary Duplex For Sale,Secured Estate With 24 Hour Power Supply Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30378,Fully Serviced 4 Bedroom Terraced Duplex For Available At Orchid Hotel Road.,Orchild Road Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30379,Brand New 4 Bedrooms Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +30380,Serviced 4 Bedroom Terrace And Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30381,Brand New 4units Of 5 Bedrooms Fully Detached Houses For Sale,Lekki Phase1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +30382,Brand New 4 Bedrooms Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30383,"960sqm Water Front Land With Approval For 2 Detached Houses,",Pinnock Beach Estate Jakande Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30384,Brand New 4 Bedrooms Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30385,Luxury 4bedroom Waterfront Terrace With Boats Jetty,Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30386,4bedroom Semi Detached Duplex .,Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30387,Brand New 4 Bedrooms Semi Detached Duplex For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30388,5 Bedroom Detached Duplex For Sale,Osapa London Osapa London Lekki Lagos,₦,"92,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30389,Newly Built 4bed Room Terrace Duplex,Oniru Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +30390,Lovely 4bedrooms Detached Duplex For Sale At Lekki Off Mobile Road Alamgutan Ilaje Lagos.,"Lekki Off Mobile Road Alangutan, Ilaje. Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30391,Luxury 4 Bedrooms In An Estate,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +30392,Affordable And Luxury 5 Bedrooms Fully Detached Duplexes,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +30393,Mind Blowing 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +30394,6 Bedroom Duplex,"Beside Pinnock Beach Estate, Castlerock Ave, Jakande Lekki Lagos",₦,"100,000,000",1,1,0,6 beds,6 baths,7 Toilets,Other Lekki +30395,5bed Room Detach Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +30396,Executive And Magnificent 4 Bedrooms Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30397,Spacious 4 Bedroom Duplex,"Cromwell Court Estate Ii, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30398,Luxury 4 Bedrooms Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30399,Luxury 2 Bedrooms Flat,Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +30400,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +30401,"4,500 Sqm Water Front Land", Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30402,Luxury 4bedroom Duplex In A Serene Environment,Lekki Estate Off Mobile Ilaje Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30403,Luxurious And Executive 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +30404,Sweetly Built And Magnificent 9 Unit Of 3 Bedrooms Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30405,Spacious Apartments... 10 Units Of 2 And 3 Bedroom Flats For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +30406,Brand New 4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30407,"Tastefully Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Bera Estate, Lekki",Bera Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30408,"Very Tasteful 4 Bedroom Semi Detached Duplex For Sale At Osapa London, Lekki",Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Osapa London +30409,"Luxurious 4 Bedroom Terraced Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Ikate +30410,2 Plots Of Sandified Land For Sale In Lekki Estate,County Homes Estate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30411,"Tastefully Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Chevron Alternative Route, Lekki",Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +30412,"Brand New And Tastefully Finished 4 Bedroom Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Ikate +30413,"Hot Sales... 4 Bedroom Terraced Duplex For Sale At Springbay Estate, Ikate",Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +30414,Fully Serviced 2 Bedroom Apartment For Rent At Osapa London,Osapa London Lekki Lagos,₦,"2,000,000",0,0,0,2 beds, baths, Toilets,Osapa London +30415,Luxury Semi Detached Duplex In Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +30416,4 Bedrooms Terraces With A Room Servant Quarters,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,6 Toilets,Ikate +30417,"Hot Hot Hot... 4 Bedroom Terraced Duplex For Sale At Chevron Alternative Route, Lekki",Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30418,"Tastefully Built 5 Bedroom Detached Duplex Plus Bq For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +30419,"Massionette With Swag... Luxuriously Built 5 Bedroom Mansion For Sale At Carlton Gate Estate, Lekki",Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30420,"Tastefully Structured 5 Bedroom Detached Duplex For Sale At Agungi, Lekki",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets,Agungi +30421,"Very Tasteful 4 Bedroom Terraced Duplex For Sale At Chevron, Lekki",Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +30422,"Finely Designed 5 Bedroom Detached Duplex For Sale At County Mega Mound, Lekki",Lekki Lagos,₦,"79,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +30423,It's Brand New.. Switchless Smart 5 Bedroom Fully Detached Duplex For Sale Around Orchid Hotel By 2nd Lekki Toll Gate,Lekki Lagos,₦,"79,500,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +30424,Tastefully Built 3 Bedroom Apartment Plus Bq For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +30425,Exquisitely Finished 5 Bedroom Duplex With Bq,Sangotedo Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +30426,Luxury Brand New 5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30427,"Tastefully Structured 4 Bedroom Semi Detached Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Ikate +30428,"Very Lovely 3 Bedroom Flat For Sale At Marwa Bustop, Lekki Phase 1",Marwa Bustop Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30429,"Luxuriously Finished Duplex For Sale At Chevron Drive, Lekki",Chevron Drive Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30430,"Beautifully Built 5 Bedroom Detached Duplex For Sale At Crown Estate, Lekki.",Crown Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +30431,Beautifully Structured 4 Bedroom Terraced Duplex For Sale At Chevron Alternative Route,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30432,Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30433,"Very Tasteful 4 Bedroom Semi Detached Duplex For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +30434,"Tastefully Structured 5 Bedroom Plus Bq For Sale At County Estate, Ikota",County Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Ikota +30435,"Tastefully Built 4 Bedroom Semi Detached Duplex With Bq For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +30436,Newly Built 4 Bedroom Flat All Rooms Ensuite In Lekki,Value County Estate Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +30437,"Tastefully Built 5 Bedroom Detached Duplex For Plus Bq For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Ikate +30438,Luxury At Its Peak... 4 Bedroom Fully Detached Duplex For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30439,Lovely 2 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +30440,"Fresh Out... Clean Building On A 600sqm For Sale Off Freedom Way, Lekki Phase1",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30441,Luxuriously Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +30442,4 Bedroom Detached Duplex, Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30443,2 Bedroom Flat,Ikate Elegushi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +30444,3 Bedroom Semi Detached Duplex,"Orchid Hotel Area Before 2nd Toll Gate, Lafiaji Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +30445,Brand New 5bedroom Detached Duplex In Ikota Villa Estate Lekki With Swimming Pool And Bq For Sale Price:120m Asking,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +30446,Newly Built 4bedroom Semi Detached Duplex For Sale At Lekki County Lagos,Lekki County Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30447,5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +30448,Neatly Renovated 4 Bedrooms Detached Cornerpiece Duplex, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30449,3 Bedroom Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +30450,4 Bedroom Detached Duplex,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30451,Registered Deed Of Assignment And Survey Plan. 2plots Of Dry Land For Sale In Ikota Villa Estate Lekki Price:55m Per Plot,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikota +30452,4 Bedroom House,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +30453,5 Bedroom Detached Duplex,Off Circle Mall Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30454,Brand New 4 Bedroom Semi Detached House With Bq,Lafiaji Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30455,6 Bedrooms Duplex For,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Osapa London +30456,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +30457,Top Notch First Class Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30458,4 Bedroom Semi Detached Duplex For Sale In Lekki,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30459,5 Bedroom Fully Detached On Two Floors With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +30460,3 Bedroom Block Of Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +30461,4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +30462,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +30463,Registered Deed Of Assignment And Survey Plan. 4plots Of Dry Land For Sale At Orchid Road Lekki Price: 45m Per Plot,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +30464,C.of.o Deed & Survey Plan. 600squere Meter Of Land For Sale In Megamound Estate Phase 1 / Lekki County Home Estate Price:57m,"Megamound Estate, Lekki County Lekki Lagos",₦,"57,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30465,Luxurious 5 Bedroom Fully Detached Duplex,"Tunde Fisayo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30466,C.of.o Deed & Survey Plan. 800squere Meter Of Land For Sale In Ikota Lekki Megamound Estate Phase 2 Price:64m,Megamound Estate Ikota Lekki Ikota Lekki Lagos,₦,"64,000,000",0,0,0, beds, baths, Toilets,Ikota +30467,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +30468,4bedroom Semi Detached Duplex With A Room.bq For Sale.lekki County,Lekki County Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30469,6 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +30470,30 Bedroom Hotel,... Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30471,4 Bedroom Fully Detached Duplex,Ikate Elegushi Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30472,4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +30473,2 Bedroom Flat,Lafiaji Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +30474,3 Bedroom Flat,"Orchid Hotel Road, Lafiaji Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +30475,5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30476,5 Bedroom Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +30477,6 Units Of 2 Bedroom Flat,Off Circle Mall Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikota +30478,4 Bedroom Semi Detached Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +30479,4 Bedroom Terrace Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +30480,C.of.o Deed & Survey Plan 800square Meter Of Land In Megamound Estate Phase 1 In Ikota Lekki County Home Estate Price: 76m,Megamound Estate / Lekki County Home Estate Ikota Lekki Lagos,₦,"76,000,000",0,0,0, beds, baths, Toilets,Ikota +30481,Registered Deed & Survey Plan. 4plots Of Land For Sale At Chevron Alternative Route Chevron For Sale Price:65m Per Plot,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +30482,5 Bedroom Duplex With Two Room Bq,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30483,5 Bedroom Fully Detached Duplex,"Ikate Elegwushi, Osapa London Ikate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +30484,Luxury 5 Bedroom Duplex In A Beautiful Environment,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +30485,Luxury 5 Bedroom Duplex,.... Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +30486,Luxury 4 Bedroom Duplex On A Good Discounted Price,"Osapa London, Lagos Nigeria Osapa London Lekki Lagos",₦,"47,000,000",0,0,1,4 beds,2 baths,2 Toilets,Osapa London +30487,Newly Built 4 Bedroom Detached Duplex,Lekki Ikota Lekki Lagos,₦,"50,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30488,Newly Built 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30489,Luxury Contemporary 5bedroom Duplex For Sale,Very Secured Estates Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30490,Luxurious 4bedroom Detached /terrace Duplex With Room Bqs,Just Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30491,Contemporary 5 Bedroom Detached Duplex For Sale Chevron Lekki Lagos,Secured Estate Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30492,For Sale 5 Bedroom Detached Duplex With Bq 85m,Osapa Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +30493,4bed Room Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +30494,4bed Room Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +30495,"Waterfront 4br Serviced Duplex With Bq Off Admiralty, Lekki Phase 1",Admiralty Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +30496,"800m2 Of Land At Cow Rie Creek Estate, Ikate",Cowrie Creek Estate Ikate Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Ikate +30497,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +30498,A Well Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +30499,A Well Built 4 Bedroom Semi Detached Duplex,2 Toll Gate Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +30500,A Lovely And Nice Newly Built 3 Bedroom Flat With A Room Bq,Elegushi Off Kusenla Road. Ikate Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +30501,Well Built 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikate +30502,Tastefully Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +30503,New 5 Bedroom Fully Detach,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +30504,A Well Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +30505,Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +30506,Luxury 5 Bedroom Fully Detached House .,Ikota Villia Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30507,Brand New 4 Bedroom Semi Detached Duplex With B.q, Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,0 baths,0 Toilets,Ikota +30508,Executive Brand New 4bedrooms Semi Detached Duplex For Sale At Ikota Lekki Lagos.,Ikota Lekki Lagos . Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30509,Strategically Located Newly Built Double Shop On Agungi Road,On Agungi Road Agungi Lekki Lagos,₦,"16,000,000",0,1,0, beds, baths, Toilets,Agungi +30510,4 Units Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +30511,Brand New Fully Detached 4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"112,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +30512,Luxurious 4bedroom Detached Duplex With Room Bqs For Sale,Chevy’s Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30513,Very Affordable 3 Bedroom Luxury Terrace Duplex + Bq,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds, baths, Toilets,Ikota +30514,Luxury Finished 4 Bedroom Duplex With Bq,Chevron Alternative Drive Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Lekki +30515,Luxury Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets,Ologolo +30516,5 Bedroom Luxury Detached Duplex With Swimming Pool + Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Chevron +30517,5 Bedroom Luxury Detached Duplex With A Large Compound And Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Chevron +30518,5 Bedroom Luxury Detached Duplex + Swimming Pool With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Ikota +30519,Exquisitely Built 4 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +30520,Exotically Finished 4 Bedroom Duplex With Bq In A Serene Gated Estate,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +30521,Luxury 3 Bedroom Terrace Duplex With Bq,Chevron Toll Gate Axis Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Other Lekki +30522,4 Bedroom Luxury Duplex + Bq In A Very Good Location,2nd Toll Gate By Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Chevron +30523,Beautiful 4 Bedroom Duplex In A Serene Neighbourhood,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +30524,Luxury Very Well Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"299,999,999",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +30525,5 Bedroom Detached Duplex With Oceanview And Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Ikota +30526,5 Bedroom Detached Duplex With Oceanview And Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Ikota +30527,Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +30528,4 Bedroom Luxury Semi Duplex + Bq,Ologolo Lekki Lagos,₦,"47,500,000",0,0,0,4 beds, baths, Toilets,Ologolo +30529,5 Bedroom Luxury Detached Duplex With A Bq,Osapa Lekki Lagos,₦,"99,500,000",0,0,0,5 beds, baths, Toilets,Osapa London +30530,Newly Built 5 Bedroom Fully Detached Duplex In A Quiet Neighborhood,2nd Toll Gate Lekki Chevron Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"79,500,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +30531,Rcently Built 4 Bedroom Semi Detached Duplex In An Ambient Environment,2nd Toll Gate Alternate Chevron Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +30532,Beautifully Finished Paris Courts,"Phase 1 Orchid Road Area, Close To Chevron Toll Gate Axis, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30533,Newly Built 4 Bedroom Terrence Duplex In A Cozy Environment,Close To Alternate Chevron Road Lekki Ikate Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +30534,Fully Finished 4 Bedroom Semi Detached Duplex,Orchid Road Opposite Chevron Road Lekki Phase Two Lagos Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30535,Fullly Built House In Edens Courts,Chevron Drive Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +30536,This Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets,Other Lekki +30537,??for Sale?? ••••••••••••••••••••• This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets,Chevron +30538,4 Bedroom Fully Detached Duplex For Sale,Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +30539,7bedrooms Detached House With 2rooms Boys Quarters In Nicon Town,Nicon Avenue Nicon Town Lekki Lagos,₦,"600,000,000",0,0,1,7 beds,8 baths,8 Toilets,Other Lekki +30540,Tastefully Finished 4bedroom Terrace Duplex In A Serviced Mini Estate,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +30541,4 Bedroom Semi Detached House With One Room Boys Quarter And Security Gate House.,Signature Estate Off Chevron Alternative Routes Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30542,20 Sqm Shop In A Shopping Mall,Ologolo Lekki Lagos,₦,"18,000,000",1,1,0, beds,4 baths,4 Toilets,Ologolo +30543,Water Front Luxury Housing,Ladipo Latinwo Crescent Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +30544,2units Of Luxury 4bedroom Semi Detached Duplexes,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +30545,4 Bedroom Detached Duplex,Lekki County Home Lagos Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,4 baths,5 Toilets,Lekki Phase 2 +30546,Fully Furnished 4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +30547,"Newly Built And Tastefully Finished 5bedroom Terrace Duplex Plus Bq With All Italians Finishings Materials Such As Fitted Kitchens And Appliances, Wardrobes, Lightings,tiles,sanitary Wares And Decors",Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +30548,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30549,Newly Built Specious 4bedroom Duplex With Room Bqs,Lekki County Home Lekki Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30550,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30551,Newly Built Luxury 5bedroom Duplex For Sale,Bera’s Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30552,Brand New 5 Bedrooms Fully Detached Houses For Sale ,Lekki Phase1 Just Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +30553,Brand New 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Northern Forshore Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30554,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30555,Brand New 5 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30556,Furnished 5 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +30557,Chevron Lekki 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos State Nigeria Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +30558,"Newly Built 2 Bedroom Flat On Orchid Road By Chevron Tollgate, Lekki",Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +30559,A Luxurious 6bedroom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +30560,3 Bedroom Terrace Duplex. Pay 50% And Spread Rest In 6 Months,Beside Vgc Gate 2 Minutes From The Expressway Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +30561,Newly Built 4 Bedroom Fully Detached Duplex In A Secure Estate,3 Minutes From Chevron Lekki Phase 2 And 1 Minute From The Expressway Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30562,A Brand New Contemporary 5 Bedroom Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +30563,Spotless 2 Bedroom Flat @ Badore Ajah,Ajah Badore Lekki Phase 2 Lekki Lagos,₦,"800,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +30564,Switchless Smart 4 & 5 Bedroom Duplexes With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +30565,Well Architecturally Finished 3bed Terraced Dup With 2 Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30566,Super Clean And Spacious 4bed Semi Duplex,2nd Toll Gate Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +30567,Newly Built 4bed Semi Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30568,Beautifully Finished 4bed Detached Duplex,Chevron Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +30569,Newly Built 4bed Semi Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +30570,Beautifully Finished Luxurious 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +30571,5bed Fully Detached + Swimming Pool Cinema + Bq,Jakande Jakande Lekki Lagos,₦,"198,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +30572,Superb Spacious 5bed Duplex With Swimming Pool,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30573,Newly Built 4bedroom Terraced Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +30574,Super Clean And Spacious 4bed Semi Duplex,2nd Toll Gate Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +30575,Newly Built 4bed Semi Duplex,By 2nd Toll Gare Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30576,Neely Built 5bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"79,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +30577,4bed Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +30578,Highly Detailed And Superbly Finished,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +30579,Newly Built American Styled 5bed Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +30580,4bed Semi Dettached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +30581,Brand New 4 Bedroom Duplex,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +30582,Luxury 3 Bedrooms Flat With 1 Room Servant Quarters Ensuite,"Plot 7 Queens Court Bera Estate, Chevy View, Lekki Chevron Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +30583,Virgin Land,Beach Road Beside Jakande Housing Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30584,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Ikate +30585,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths, Toilets,Lekki Phase 1 +30586,Governor Consent,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds, baths, Toilets,Chevron +30587,Governor Consent,"Inside Madiba Enclave, Ikate (3rd Roundabout) Lekki Phase 1. Ikate Lekki Lagos",₦,"75,000,000",1,1,1, beds, baths, Toilets,Ikate +30588,4 Bedroom Semi Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30589,3 Bedroom Flat,By Enyo Filling Station Ikate Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,2 Toilets,Ikate +30590,"Luxury 5bedroom Fully Detached Duplex&bq.tittle: Governor Crescent, Location: Chevron Drive,lekki,all Rooms Ensuited Cctv, Kitchen,floor Lights Etc,","Governor Crescent, Chevron Drive,lekki Chevron Lekki Lagos",₦,"137,000,000",0,1,0,5 beds, baths,5 Toilets,Chevron +30591,Beautifully Built 4bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +30592,2brdroom All Rooms Ensuite Apartment,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,3 baths,3 Toilets,Chevron +30593,4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +30594,5bedroom Fully Detached With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"98,000,000",1,1,0,5 beds,6 baths,7 Toilets,Ikate +30595,Mporary 4bedroom Luxury Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets,Chevron +30596,4 Bed Room Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30597,4 Bed Room Detach Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30598,Tastefully Built 2bedroom Apartment.,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +30599,"Fully Furnish 4bedroom Terrence In Ikota,lekki","Ikota,close To Vgc Ikota Lekki Lagos",₦,"38,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +30600,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Chevron +30601,Newly Built 4 Bedroom Terrace In A Serene Neighborhood,Orchid Road Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +30602,4 Bedroom Fully Detached Deplux With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +30603,Luxury 5 Bedroom Semi Detached Deplux,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +30604,5 Bedroom Fully Detached Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +30605,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +30606,Newly Built 3 Bedroom Semi Finished Terraced Building With A Bq,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +30607,5 Bedroom Fully Detached Duplex For Sale In Chevron 280719,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +30608,4 Bedroom Fully Detached Duplex, Jakande Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,5 baths,5 Toilets,Other Lekki +30609,2 Bedroom Apartment, Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +30610,Tastefully Built 4 Bedroom Fully Detached Duplex,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"43,500,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30611,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +30612,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +30613,Tastefully Built 4 Bedroom Semi Detached Duplex At Lekki Phase 2,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30614,5 Bedroom Detached Duplex For Sale In Lekki County Homes 280712,Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +30615,5 Bedroom Duplex For Sale In Osapa 280711,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +30616,4 Bedroom Semi Detached Duplex For Sale In Oral Estate 280710,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +30617,Exquisite Luxury 5 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Chevron +30618,2 Bedroom Terrace Duplex,... Lekki Lagos,₦,"29,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Lekki +30619,3 Bedroom Terrace Duplex For Sale,... Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +30620,4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +30621,A Unit Of Luxury And Tastefully Finished 3 Bedroom Flat With Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +30622,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30623,Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevron Tollgate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30624,Exquisitely Built 4 Bedroom Serviced Terraced Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +30625,4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30626,Super Affordable Housing With Flexible 20 Years Payment,"By The Prestigious Richmond Estate Road, Beside Meadow Hall School Ikate Lekki Lagos",₦,"53,500,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +30627,Newly Built And Executive Finished Of 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30628,Newly Built 4bedroom Luxury Semi Detached Duplex.,Oral Estate Ikota Lekki. Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,6 Toilets,Ikota +30629,Newly Built 4bedroom Luxury Terrace.,Orchid Hotel Road Ikota Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +30630,A Brand New Luxury 4 Bedroom Terrace Duplex With A Bq For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +30631,Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30632,New Built 4bedroom Luxury Duplex With The Modern Features,Pioneer Street Osapa London Lekki Lagos,₦,"65,000,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +30633,3 Bedroom Luxury Apartments In An Exclusive Estate,Lekki Rhs Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +30634,Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30635,4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30636,Newly Built Houses,Lekki Lagos,₦,"5,300,000",0,0,0, beds, baths, Toilets,Other Lekki +30637,Land,Beside Northwest Petrol Station Vgc Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +30638,For Sale 4 Bedroom Semi Detached Duplex With Bq Loca,"Chevron Lekki, Lagos Chevron Lekki Lagos",₦,"52,000,000",0,1,0,4 beds, baths, Toilets,Chevron +30639,"5 Bedroom Detached Duplex With Bq And Swimming Pool, Gym Room, Cinema",Pinnock Beach Estates Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +30640,Exotically Finished 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +30641,"Newly Built Apartments And Terraces In Ikate, Lekki",Ikate Lekki Lagos,₦,"28,000,000",1,1,0, beds, baths, Toilets,Ikate +30642,Four Bedroom Terrace Buildings For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +30643,4bed Semi Detached House Exotically Finished For Sale Finished Forcsale,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +30644,Newly Built Apartments For Sale In Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +30645,Newly Built Luxury Apartments,Ikate Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets,Ikate +30646,5 Bedroom Fully Detached House In A Serene Environment,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30647,Newly Built 4 Bed Detached Duplex For Sale,Ikota Lekki Lagos,₦,"63,000,000",0,1,0, beds, baths, Toilets,Ikota +30648,Pristine Three Bedroom Apartment With Bq In A Secured Estate I Lekki Phase 2.,"Off Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"32,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +30649,"2 Plots Of Land At Jakande,lekki, Lagos",Jakande Lekki Lagos,₦,"80,000,000",0,0,0,1 beds, baths, Toilets,Other Lekki +30650,Beautifully And Spaciously Built Detached Bungalow,Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +30651,Topnotch Luxury 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +30652,"Be Home! Prestigious Cofo, Oxygen Apartments & Homes In Lekki Phz1 For Sale",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +30653,Beautifully Built Terrace Apartments With Rustic Ambience For Sale,Ikota Lekki Lagos,₦,"38,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30654,All Ensuit 6bedroom Detached House For Sale In Lekki Phase1,Off Uchendu Street Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +30655,Newly Built 4bedroom Duplex In Serene Neighborhood Close To The Express,"Road 1, Ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30656,Newly Built 4bedroom Duplex In A Serene Neighborhood Close To The Express.,"Road 1, Ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30657,Newly Built 4bedroom Duplex With Bq In A Serene Neighborhood Close To The Express.,"Road 1,ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30658,Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30659,New 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30660,715sqm Land In Victoria Garden City With Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,2 baths,2 Toilets,Victoria Garden City +30661,Land For Sale In Orchid 240711,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30662,A Lovely 4 Bedroom Terraced Duplex,"Westend Estate, Before Vgc Ikota Lekki Lagos",₦,"35,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30663,4 Bedroom Semi Detached Duplex For Sale In Lekki County Homes 240702,Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30664,Newly Built 4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +30665,Luxury 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +30666,2units Of Fully Detached 5bedroom Duplex With Bq,Lekki Lagos Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,10 Toilets,Osapa London +30667,"4 Bedroom Terrace At Orchid Road, Lekki Phase 2. Title Certificate Of Occupancy.",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +30668,Exotic 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +30669,4 Bedroom Terrace Duplex,Cooplag Garden Estate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30670,Creek Avenue Court 2,Creek Court Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30671,4 Bedroom Semi Detached Duplex For Sale In Ikota 220703,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30672,4 Bedroom Terrace Duplex For Sale In Ikota 220702,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30673,Idado Lekki A1,Idado Lekki Lagos Idado Lekki Lagos,₦,"121,000,000",0,1,1,5 beds,4 baths,3 Toilets,Other Lekki +30674,3bedroom Luxury Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos Chevron Lekki Lagos,₦,"40,500,000",0,1,0,3 beds,2 baths,2 Toilets,Chevron +30675,4 Bedroom Duplex A1,Mobile Road Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"56,500,000",0,1,0,4 beds,3 baths,2 Toilets,Lekki Phase 2 +30676,Six Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"88,000,000",1,0,1,6 beds,4 baths,4 Toilets,Ikota +30677,Creek Avenue Court 2 B1,Creek Avenue Court 2 B1 Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,3 baths,3 Toilets,Ikota +30678,"Eden's Court, Chevron B1","Eden's Court, Chevron Chevron Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,3 baths,3 Toilets,Chevron +30679,Newly Built 4 Bedroom Detached Duplex With Boys Quarters,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30680,Newly Built 5 Bedroom Duplex For Sale At Lekki Phase 1 Lagos State,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +30681,Newly Built 4 Bedroom Duplex,Chevron Alternative Root Chevron Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +30682,Land At Palmspring Estate,"Bolorunpelu, By Beechwood Estate, Bogije, Lekki Lekki Phase 2 Lekki Lagos",₦,"7,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +30683,"3 Bedroom Terrace Houses Near Vgc, Lagos",Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Garden City +30684,A Well Maintained 4bedroom Terrace House In A Serviced Estate,Chief Bamidele Eletu Street Osapa Lekki Osapa London Lekki Lagos,₦,"39,000,000",1,0,0,4 beds,3 baths,4 Toilets,Osapa London +30685,Newly Built 5bedroom Detached Duplex With Bq In A Serene Environment,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +30686,Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets,Ikate +30687,Semi Detached 4 Bedroom In A Beautiful Environment.,Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30688,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +30689,Newly Built 4 Bedroom Terrace Duplex,"Victoria Bay Ii, Behind Pinnock Beach Estate Osapa London Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +30690,Newly Built 4 Bedroom Semi Detached House,Victoria Bay Ii Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +30691,Newly Built Switchless Smart 4 Bedroom Semi Detached Withbq,2nd Toll Gate By Orchid Hotel Lekki Ikota Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,3 baths,3 Toilets,Ikota +30692,Eden's Court Lekki,Chevron Drive Lekki Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds, baths,6 Toilets,Chevron +30693,Newly Built Switchless Smart 5 Bedroom Fully Detached With A Bq At Lekki Toll Gate By Orchid Hotel Lekki,"2nd Toll Gate By Orchid Hotel Road, Lekki Ikota Lekki Lagos",₦,"79,500,000",0,1,1,5 beds,4 baths,4 Toilets,Ikota +30694,Very Specious Newly Built 5 Bedrooms Duplex Fully Detached,Osapa London Lekki Osapa London Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,5 baths,7 Toilets,Osapa London +30695,Newly Built 4bedroom Semi Detached Duplex With 1 Bq,"Ikota Villa Estate, Beside Mega Chicken Ikota Lekki Lagos",₦,"49,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30696,Modern 5 Bedroom Fully Detached House In Lekki Phase 1,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30697,Lovely Brand New 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30698,Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30699,Luxury 5 Bedroom 1 Bq House With A Penthouse,"Mega Mound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"96,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30700,"Brand New Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,pay And Pack In,big Sitting Room And Bedrooms,with All Rooms Ensuite+ A Family Lounge","Eli Court,chevron Alternative Road Chevron Lekki Lagos",₦,"59,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +30701,Newly Built 4 Bedroom Terrace Duplex In A Serviced Estate,House 7 Road 12 Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30702,A Plot At Melrose Garden Lng Estate,Beside Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +30703,Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +30704,Perimeter Court 1 Estate.,Perimeter Court 1 Off Gabgbala Road Ikate Elegushi Lekki Lagos State Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikate +30705,Dry Plot Of Land Available And Negotiable,Agapeview Beach Estate Ilasan Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30706,Vacant Dry 200sqm Land For Sale,Agapeview Beach Estate Ikate Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Ikate +30707,Newly Built 4 Bedroom Terrace Duplex In A Serviced Estate,House 7 Road 12 Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +30708,C Of O Land For Sale In Osapa London,Back Of Arcadia Estate Lekki Osapa London Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets,Osapa London +30709,Luxury 2units Newly Built 5 Bedroom Duplex With A Bq And Swimming Pool Available For Sale.,Victory Park Estates By Osapa London Lekki Jakande Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +30710,Newly Built 4 Bedroom Terraced Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +30711,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30712,Brand New 4 Bedroom Semi Detached Duplex On Distress,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +30713,4bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30714,5bedroom Fully Detached Duplex With Boys Qtr For Sale,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +30715,Newly Built 5 Bedroom Detached Duplex,Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +30716,3 Bedroom Terrace Duplex For Sale In Vgc 160706,Vgc Lekki Lagos,₦,"30,000,000",0,1,1,3 beds,3 baths,3 Toilets,Victoria Garden City +30717,5 Bedroom Fully Detached Duplex For Sale In Ikate 160705,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +30718,5 Bedroom Detached Duplex For Sale In Chevron 160704,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +30719,4 Bedroom Terrace Duplex For Sale In Ikota 160703,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30720,Title : Global C Of O,Gra Ikota Lekki Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets,Ikota +30721,Landforsale In Oribanwa,Abraham Adesanya Lekki Lagos,₦,"12,500,000",0,1,0, beds, baths, Toilets,Other Lekki +30722,Newly Built 4 Bedroom Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +30723,Distress Plot Of Land,Alpha Beach Road Chevron Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Chevron +30724,5 Bedroom Detached Duplex For Sale In Lekki 150715,Lekki Lagos,₦,"125,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +30725,4 Bedroom Semi Detached Duplex For Sale In Ologolo 150712,Ologolo Lekki Lagos,₦,"47,500,000",0,1,1,4 beds,4 baths,4 Toilets,Ologolo +30726,4 Bedroom Semi Detached Duplex For Sale In Lekki 150711,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30727,4 Bedroom Semi Detached Duplex For Sale In Lekki 150710,Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30728,4 Bedroom Terrace Duplex For Sale In Lekky County 150705,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +30729,5 Bedroom Detached House On 1000sqm Land,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +30730,Land For Sale In Orchid Road,Green View Estate By Orchid Road Chevron Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets,Chevron +30731,Land For Sale In Orchid Road,Green View Estate Orchid Road Chevron Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets,Chevron +30732,"Location. Lagos, Nigeria, Lekki Phase 2. Property Description. A Bare Land On Block 51,plot 16. Size :861sqm. Title:c Of O. Price:#30m.","Lekki Phase 2,block 51,plot 16. Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +30733,Forsale:a Serviced Property On A Full Plot In Lekki Phase 1(off Freedom Way),Freedom Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +30734,C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets,Other Lekki +30735,C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets,Other Lekki +30736,C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets,Other Lekki +30737,C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets,Other Lekki +30738,"*camberwall Court, Abijo Gra* Camberwall Court Comprises Of Blocks Of 1, 2 & 3 Bedroom Apartments, Terraces And Bungalows, Well Designed To Give You Comfort And Functionality. Location: Inside Abijo Gra. 4 Minutes’ Drive From Novare Mall (shoprite San","Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite) Lekki Lagos",₦,"11,000,000",0,1,0,3 beds, baths, Toilets,Other Lekki +30739,4 Bedroom Terrace Duplex For Sale In Ikota 140708,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30740,4 Bedroom Semi Detached Duplex For Sale In Chevron 140707,Chevron Lekki Lagos,₦,"67,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30741,5 Bedroom Fully Detached Duplex For Sale In Ikate 140706,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +30742,5 Bedroom Detached House For Sale In Ikota 140704,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30743,3 Bedroom Terrace House For Sale In Lekki 140703,Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Lekki +30744,Top Notch Well Furnished 4 Bedroom Fully Detached Duplex,After Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +30745,Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets,Ikota +30746,Luxury 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +30747,Luxury 3 Bedroom Terrace,Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Garden City +30748,Tasteful Finished 2units 5 Bedroom Semi Detached Duplex On Second Floor,Admiralty Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +30749,Newly Built 4 Bedroom Duplex For Sale In Chevron,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30750,Newly Built 4 Bedroom Duplex For Sale In Chevron,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +30751,Newly Built 5 Bedroom Duplex At Lekki Epe Expressway In Lagos State,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +30752,Newly Built 5 Bedrooms Fully Detached Duplex,Offchevron Chevron Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +30753,Newly Built 4 Bedroom Duplex With Bq,..... Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30754,Direct Brief 864sqm Land In Phase 1 Pinnock Beach Estate N135m,Pinnock Beach Estate Jakande Lekki Lagos,₦,"135,000,000",0,1,0, beds, baths, Toilets,Other Lekki +30755,2400 Square Meters Land In An Estate,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30756,A Four Bedroom Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +30757,Brand New 3 Bedroom Flat For Let In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30758,Well Finished Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30759,Land, Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30760,Brand New And Self Serviced 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30761,Brand New 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30762,Brand New 4 Bedroom Detached House For Sale In Chevy View Estate Lagos.,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30763,Beautifully Finished 4bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30764,Semi Detached 4bedroom Duplex For Sale Inside West End Estate Ikota Lekki,West End Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +30765,Tastefully Furnished Newly Built 4 Bedroom Apartment For Sale In Lekki With Governors Consent,Chevron Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets,Chevron +30766,Tastefully Furnished Newly Built 4 Bedroom Apartment For Sale With Governors Consent In Lekki,Chevron Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets,Chevron +30767,Governor's Consent,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30768,Governor's Consent,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30769,Newly Built 5bedroom Detached Duplex In A Secured And Serviced Estate In Ikota Lekkilagos,Ikuton Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30770,"*exquisite Finished 5 Bedroom Fully Detached Duplex And Bq At Pearl Garden, Monastery Road, Shoprite Sangotedo Lekki*",Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +30771,"Newly Built 4 Bedroom Semi Detached Duplex And Bq, In An Already Developed Estate With Good Drainage Facility,,electricity And Interlocked Rood,15min Drive From Novare Mall Lekki Shoprite","Amity Eatate,sangotedo ,lekki Lekki Phase 2 Lekki Lagos",₦,"38,000,000",1,1,0,4 beds, baths, Toilets,Lekki Phase 2 +30772,New 3 Bedroom Semi Detached Duplex With 6 Months Flexible Payment,"Amity Estate,sangotedo,lekki Lekki Phase 2 Lekki Lagos",₦,"30,000,000",1,1,0,3 beds, baths, Toilets,Lekki Phase 2 +30773,Newly Built 4bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets,Chevron +30774,Newly Built 4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets,Chevron +30775,Newly Built 4bedroom Terrace Duplex For Sale,Chevron Lekki Lagos,₦,"45,000,000",0,1,1, beds, baths, Toilets,Chevron +30776,5 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30777,5 Bedroom Detached Duplex,... Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +30778,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +30779,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"122,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30780,5 Bedroom Fully Detached House For Sale In Ikota 10jul10,Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +30781,4 Bedroom Semi Detached Duplex For Sale In Idado 10jul08,Idado Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30782,Global C Of O,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +30783,4 Bedroom Semi Detached Duplex For Sale In Chevron 10jul07,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30784,5 Bedroom Detached Duplex For Sale In Chevron 10jul06,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +30785,5 Bedroom Detached Duplex For Sale In Lekki 10jul05,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +30786,4 Bedroom Terrace Duplex For Sale In Ikota 10jul03,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +30787,4 Bedroom Terrace Duplex For Sale In Chevron 10jul02,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30788,4 Bedroom Semi Detached Duplex For Sale In Chevron 10jul01,Chevron Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30789,Affordable Dry Land At Orchid Road By Chevron Lekki With Governor's Consent Call [redacted],Chevron Orchid Road Lekki Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Chevron +30790,Newly Build Bedroom In Serene Neighbourhood,Bosun Adekoya Street Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +30791,Newly Built 3 Bedroom Terrace In A Serene Environment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +30792,4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30793,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30794,5 Bedroom Terrace Duplex, Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30795,Very Lovely 5 Bedroom Fully Detached For Sale In Lekki,Ikate Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +30796,5 Bedroom Duplex For Sale In Lekki 09jul02,Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +30797,2 Bedroom Apartments & 3 Bedroom Bungalows At Camberwall Court Abijo*,"Road 3, Ikota Shopping Complex Vgc, Aja, Lagos Lekki Phase 2 Lekki Lagos",₦,"11,000,000",0,1,1,1 beds,1 baths,5 Toilets,Lekki Phase 2 +30798,3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30799,4 Bedroom Semi Detached Duplex For Sale In Chevron 09jul01,Chevron Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30800,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30801,4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths, Toilets,Ikate +30802,Newly Built 5 Bedrooms Fully Detached Duplex In A Serene Estate,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +30803,"Well Finished Detached House In A Perfect , Security Tight Estate",Ikota Villa Estate. Ikota Ikota Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +30804,5 Bedroom Detached Building With C Of O In Lekki For Sale,Elegushi Ikate Lekki Lagos,₦,"120,000,000",1,1,0, beds, baths, Toilets,Ikate +30805,4 Bedroom Semi Detached Duplex For Sale In Lekki 08jul14,Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30806,4 Bedroom Terrace House For Sale In Lekki 08jul13,Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30807,3 Bedroom Semi Detached Duplex For Sale In Chevron 08jul11,Chevron Lekki Lagos,₦,"39,500,000",0,1,1,3 beds,3 baths,3 Toilets,Chevron +30808,5 Bedroom Fully Detached Duplex For Sale In Ikate 08jul10,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +30809,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +30810,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30811,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +30812,3 Bedroom Flat,... Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30813,Waterfront Serviced Terrace S And Flat. Off Plan Project,Ladipo Latinwo Cresent Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds, baths, Toilets,Lekki Phase 1 +30814,4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30815,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +30816,Modern Living 6 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +30817,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +30818,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30819,Deed Of Assignment,"Off Lekki Epe Express, Before, After Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"140,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +30820,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30821,2units Of Fully Detached 5bedroom Duplex With Bq,By Side Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30822,Newly Built 4 Bedrooms Terraces,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +30823,Very Lovely Newly Built 5 Bedroom Fully Detached Duplex With C Of O In Lekki,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds, baths, Toilets,Ikate +30824,4 Bedroom Semi Detached Duplex With Governor's Consent In Lekki,"Orchid Hotel Road, 2nd Lekki Toll Gate, Chevron Chevron Lekki Lagos",₦,"59,500,000",1,1,1,4 beds, baths, Toilets,Chevron +30825,Very Lovely 5bedroom Fully Detached,Elegunshi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Ikate +30826,Brighter View Of Our Stylish Beautiful 4 Bedroom Terrace Duplex,"Ikate, Lekki, Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +30827,Beautiful Well Finished 5 Bedroom Fully Detached,"2nd Toll Gate, Lekki, Lagos. Osapa London Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +30828,4 Bedroom Terrace Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30829,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30830,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30831,Units Of 4bedroom Semi Detached Smart Home,Lekki Lagos,₦,"59,000,000",0,1,0,3 beds,5 baths,5 Toilets,Other Lekki +30832,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30833,*very Lovely 5 Bedroom Fully Detached For Sale In Lekki*,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets,Ikate +30834,C Of O 5 Bedroom Oxygen Duplex With Bq For Sale In Lekki,Magamound Estate Lekki County Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets,Other Lekki +30835,4bedroom Bq For Sale/ Governor’s Consent/ Osapa London Lekki,12 Brand Street Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30836,Semi Detached Duplex With Governor's Consent For Sale In Lekki,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets,Lekki Phase 2 +30837,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +30838,Newly Built Building On Lekki,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"187,000,000",0,1,0,5 beds,3 baths,3 Toilets,Lekki Phase 1 +30839,4 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30840,Affordable Land In Lekki,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,Chevron +30841,Two Bedroom Bungalow With C Of O In Lekki For Sale,Beechwood Park Bogije Lekki Lagos,₦,"15,862,500",1,1,0, beds, baths, Toilets,Other Lekki +30842,Plot Of Land,... Ikate Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +30843,Newly Built 2 Bedroom Apartment In A Luxury Environment,Bera Estate Chevron Lekki Lagos,₦,"25,000,000",1,1,1,2 beds,2 baths,2 Toilets,Chevron +30844,Governor's Consent,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30845,6 Bedroom Detached Duplex,... Nicon Town Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30846,Governor's Consent,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +30847,C Of O Bedroom Bungalow In Bogije Lekki,Shapati Lekki Lagos,₦,"10,892,250",1,1,0, beds, baths, Toilets,Other Lekki +30848,Governor's Consent,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +30849,Governor's Consent,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +30850,C Of O Land For Sale In Osapa London,Back Of Arcadia Estate Osapa London Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets,Osapa London +30851,"Newly Built 4bedroom Duplex ,fully Furnished",Idado Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +30852,"Newly 4bedroom Duplex Fully Furnished, With Cctv",Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +30853,Newly Built 4bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +30854,Newly Built 4bedrom Duplex Fully Furnished With Cctv,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +30855,5bedroom Newly Built Duplex Fully Funished,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +30856,Newly 5 Bedroom Duplex Fully Finished,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +30857,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. Pay And Pack In,Ikota Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +30858,Pantheon Smart Homes* 12 Units Of 4 Bedroom Semi Detached Duplexes And 6 Units Of 5 Bedroom Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +30859,Newly Built 4 Bedroom,Chevron Drive Chevron Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +30860,Executive Finished 5 Bedroom + Bq,"Megamound Estate, Lekky County Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +30861,Newly Built 2 Bedroom Flat In Chevron Drive,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"24,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +30862,"5 Bedroom Detached Duplex For Sale With Bq!!! Location: Osapa London, Lekki Lagos Price: N105m Features: All Rooms Ensuite 1 Boy’s Quarter Self Serviced Cctv Cameras Fully Fitted Kitchen Refrigerator Jacuzzi Bulletproof Doors Inbuilt Surround Speaker Dra",Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +30863,Land For Sale With Lagos State Gazette In Lekki,"Itiri/ Co Operative Villa, Badore Road, Lekki Epe Express Road Lagos Lekki Lagos",₦,"10,000,000",1,1,0, beds, baths, Toilets,Other Lekki +30864,Land With C Of O For Sale In Lekki,"Behind Arcadia Estate, Osapa, Off Lekki Epe Express Road Lekki Lagos",₦,"80,000,000",1,1,0, beds, baths, Toilets,Other Lekki +30865,Brand New Luxury Finished 4 Bedroom Fully Detached Duplex With Bq. Governor's Consent As Good As C Of O,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +30866,Newly Built Affordable 3 Bedroom,"Off Orchid Hotel Road, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +30867,Luxury 5 Bedroom Detached Duplex + Bq,Megamound Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +30868,Affordable Land Within An Estate,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets,Osapa London +30869,Newly Built 4 Bedroom Terrace,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +30870,5 Bedroom Luxury Terrace Duplex,Lekki Lagos,₦,"37,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +30871,5bedroom Detached Duplex With Bq,Lekki Phrase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30872,"Newly Built 3 Bedroom Terrace Duplex For Sale >> Orchid Road, Lekki, Lagos","Orchid Road, Eleganza Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +30873,3 Bedroom Terrace Duplex For Sale In Lekki 03jul17,Lekki Lagos,₦,"37,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Lekki +30874,5 Bedroom Fully Detached Duplex For Sale In Osapa 03jul16,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +30875,4 Bedroom Terrace Duplex For Sale In Osapa 03jul15,Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets,Osapa London +30876,4 Bedroom Terrace Duplex For Sale In Idado 03jul14,Idado Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +30877,4 Bedroom Terrace Duplex For Sale In Chevron 03jul13,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +30878,5 Bedroom Fully Detached Duplex For Sale In Lekki 03jul10,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +30879,3 Bedroom Terraced Duplex For Sale In Lekki 03jul08,Lekki Lagos,₦,"33,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Lekki +30880,4 Bedroom Semi Detached Duplex For Sale In Lekki 03jul05,Lekki Lagos,₦,"52,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +30881,4 Bedroom Semi Detached Duplex For Sale In Ikota 03jul04,Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +30882,C Of O,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets,Ikota +30883,2 Bedroom Flat, Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +30884,6 Bedroom Detached Duplex,... Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30885,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +30886,4 Bedroom Terrace Duplex, Ilasan Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30887,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30888,5 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30889,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30890,12 Units Of 4 Bedroom Semi Detached Duplexes And 6 Units Of 5 Bedroom Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +30891,Pantheon Smart Homes,Buen Lekki Phase 1 Lekki Lagos,₦,"59,500,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30892,C Of O,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +30893,Newly Built 5 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30894,Newly Built 4 Bedroom Duplex In Ikota Lekki,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikota +30895,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30896,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30897,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30898,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30899,4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30900,4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30901,"4 Bedroom Ensuite Flat With A Room Bq, Fitted Kitchen Cabinets. Etc",Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +30902,4 Bedroom Detached Duplex,... Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30903,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30904,5 Bedroom Detached Duplex,... Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30905,Newly Built Smart 4 Bedroom Semi Detached Duplex With Bq And Quality Electronics Facilities Device That Can Be Controlled With A Mobile Phone In And Outside The Home,Located Along Orchid Hotel Chevron Lekki Lagos,₦,"59,900,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +30906,4 Bedroom Terrace Duplex,... Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +30907,3 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +30908,Luxury 5bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30909,5 Bed Room Fully Detach Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +30910,"Maplewoods2, Siriwon Town, Ibeju Lekki","Maple Woods Estate, Siriwon Town, Ibeju Lekki Lekki Phase 1 Lekki Lagos",₦,"3,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30911,4 Bed Room Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +30912,A Church For Sale More Than 1000 Capacity,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30913,"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Bella Homes1 Close To Chevron Tollgate Axis Lekki Phase 1 Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,5 baths,5 Toilets,Lekki Phase 1 +30914,5 Bed Room Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +30915,"Main Beechwood Estates, Gates Directly Facing Lekki Expressway",Beechwood Estate Beguji Lekki Lekki Phase 1 Lekki Lagos,₦,"13,300,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30916,Condominiums For Sale In Lagos 4 Flats Of 3 Bedroom,Lekki Gardens Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +30917,Magnificent Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.*,"Chevron Alternative Drive,lekki ,lagos State Chevron Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +30918,"Brand New 3 Bedroom Flat For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30919,Brand New Super Clean & Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale!!,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30920,Exquisite Brand New 5 Bedroom Detached Duplex For Sale At Chevron Alternative,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30921,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +30922,1200m² Of Dry Land With C Of O In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30923,Tastefully Finished 4bedroom And 2units Of 5bedroom Duplexes,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +30924,5 Bedroom Semi Detached Duplex With Bq,... Chevron Lekki Lagos,₦,"58,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +30925,5 Bedroom Detached Duplex House,... Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30926,4bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +30927,1000m² Corner Piece Land With Governor's Consent In Nicon Town Lekki,Nicon Town Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Other Lekki +30928,A Plot(650m²) Of Land For Sale,Orchid Road Jakande Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets,Other Lekki +30929,Tastefully Finished 5bedroom With A Room Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +30930,Newly Built 4bedroom And 2 Units Of 4bedroom Terraced Duplexes,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +30931,5 Bedroom Semi Detached Duplex With Bq,.. Chevron Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +30932,4bedroom Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +30933,Newly Built 5 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +30934,"Contemporary 4bedroom Semidetached Duplexes With Bq,box Room, 2 Living Rooms, Elegantly Furnished Kitchen Walk In A Closet",Orchid Road By Lekki Second Toll Gate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30935,5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"289,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +30936,The Milton,Awoyaya Lekki Lagos,₦,"21,000,000",1,1,1, beds, baths, Toilets,Other Lekki +30937,Edge Castle Estate,Lekki Lagos,₦,"4,500,000",1,1,1, beds, baths, Toilets,Other Lekki +30938,Mixed Use Land For Sale,Mobolaji Johnson Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +30939,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30940,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30941,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30942,4 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +30943,6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +30944,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30945,5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30946,This Is A Lovely And Newly Built 4bedroom With Bq Semi Detached Duplex For Sale In Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +30947,5 Bedroom Duplex For Sale,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +30948,"Smart Home, Full Switchless Smart Home In The House",Orchid Road By Tollgate Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +30949,"A Completely Dry Land In A Gated, Safe And Secured Environment With Proposed Quality Facilities In Place",Located At Alatise Along Bogije Lekki Lagos Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets,Other Lekki +30950,3 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +30951,6 Bedroom Detached Duplex,Via Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +30952,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +30953,4 Bedroom Semi Detached,2nd Lekki Toll Gate By Orchid Hotel Lekki Lagos,₦,"59,900,000",0,1,1,4 beds,4 baths,6 Toilets,Other Lekki +30954,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +30955,4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30956,4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30957,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30958,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +30959,4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30960,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +30961,Executive Mini Flat,... Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30962,4 Bedroom Semi Detached Duplex,... Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30963,7 Bedroom Fully Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30964,1 Bedroom Studio Apartment,Lekki Lagos,₦,"8,000,000",1,1,1,1 beds,1 baths,1 Toilets,Other Lekki +30965,4 Bedroom Duplex,Lekki Lagos,₦,"32,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +30966,Newly Built Executive 5 Bedroom Detached Duplex At Ikota Lekki N120m,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +30967,2 Wings Of 5 Bedroom Duplex With Good Finishing With C Of O .#140million Per Wing.,"Ladi Alakija, Lekki Scheme 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +30968,"School For Sale In Chevy View Estate, Lekki",Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1, beds, baths, Toilets,Lekki Phase 1 +30969,Newly Finished 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths, Toilets,Chevron +30970,Newly Built And Perfectly Finished Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +30971,A Newly Luxury Built 3 Bedroom Apartment,Hopunu Wosu Street Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +30972,Global C Of O,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +30973,4 Bedroom Terrace Duplex For Sale In Chevron 29jun08,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +30974,4 Bedroom Terrace Duplex For Sale In Chevron 29jun05,Chevron Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +30975,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30976,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30977,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30978,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30979,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30980,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30981,16 Bedroom Block Of Flats,... Idado Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30982,5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +30983,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30984,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +30985,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +30986,Newly Built 4 Bedroom Detached Duplex In A Serene Neighborhood,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +30987,4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +30988,Beautiful 5 Bedroom Terrace Duplex All Rooms Ensuite With A Bq,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +30989,C Of O,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Chevron +30990,"Townhouse Of 4bed,flat Of 3bed",Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +30991,Plot Of Land,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Chevron +30992,Filling Station,3rd Round About Chevron Lekki Lagos,₦,"350,000,000",0,0,1, beds, baths,4 Toilets,Chevron +30993,Semidetached Duplex With Pent Floor,Azu Odita Street Chevron Lekki Lagos,₦,"8,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +30994,Newly 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikota +30995,Brand New 5 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +30996,Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +30997,Newly Built 3 Bedroom Townhouse + Bq,Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +30998,Well Finished Brand New 4 Bedroom Terrace Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +30999,"14,000 Sqm Of Land For Jv @ Lekki Ikate Proposal: Open Value: Ngn 125,000.00 / Sqm Premium: 10% Of Value (negotiable) Facilitators Fee: 10%.",Ikate Lekki Lagos,₦,"125,000",0,0,0, beds, baths, Toilets,Ikate +31000,Newly Built 5bedroom Detached,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +31001,"Elegantly Built And Perfectly Finished Terrace Duplex, Semi Detached Duplex And Full Detached Duplexes For Sales In A Mini Serviced Estate Located On Chevron Drive, Lekki Lagos","Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"50,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +31002,4 Bedroom Fully Detached Duplex All Rooms Ensuite With A Room Bq,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +31003,"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema",Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,7 Toilets,Osapa London +31004,Executive Standard Massive 5bedrooms,Ikota Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikota +31005,5 Bedroom Detached Duplex For Sale In Osapa 26jun05,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +31006,Fully Detached 4 Bedroom Duplex With [email protected] Hotel Road,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31007,4 Bedroom Semi Detached Duplex With [email protected] Lekki,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31008,"5 Bedroom Detached Duplex With Bq @ Lekki County Hpmes,ikota,lekki",Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31009,5 Bedroom Detached Duplex,... Idado Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31010,26 Unit Of Newly Built 4 Bedroom Semi Detached [email protected] Ikota Villa Estate By Mega Chicken,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31011,"Newly Built Fully5 Bedroom Detached Duplex,chevron Alternative Route Lekki",Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31012,4 Bedroom Semi Detached Duplex For Sale In Chevron 26jun04,Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +31013,4 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31014,5 Bedroom Detached Duplex For Sale In Lekki 26jun03,Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +31015,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +31016,4 Bedroom Terrace Duplex For Sale In Ikate 26jun02,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikate +31017,4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31018,5bedroom Detached Duplex With 1 Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +31019,4 Bedroom Fully Detached Duplex With A Room Bq And A Mini Cinema On 300sqm Title: Governors’ Consent,"Hakeem Dickson, Lekki Phase I Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,6 baths,7 Toilets,Other Lekki +31020,Buy A Stylish Luxury Contemporary 5bedroom Duplex With 2 Room Bq,Bear Estate Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31021,"For Sale 2units Of Luxury Newly Built 5 Bedroom Fully Detached Duplex With Cinema, Swimming Pool,",Victory Park Estate Jakande Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +31022,"Luxurious Brand New 5 Bedrooms Fully Detached House With Swimming Pool,gym, Cinema For Sale",Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +31023,5 Bedroom Fully Detached Duplex For Sale In Ikate 25jun07,Ikate Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikate +31024,4 Bedroom Fully Detached Duplex For Sale In Lekki 25jun03,Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +31025,4 Bedroom Semi Detached Duplex For Sale In Chevron Was 25jun01,Chevron Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31026,4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31027,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31028,5bedroom Detached Duplex With 1 Bq,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31029,4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31030,Beautiful 4 Bedroom Terrace Duplex,"Ikate,lekki Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +31031,Beautiful 4 Bedroom Terrace,"Ikate,lekki Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +31032,"Newly Built 5bedroom Fully Detached Duplex For Sale At Lekki,lagos",Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +31033,4 Bedroom Maisonette For Sale In Igbo Efon 24jun28,Igbo Efon Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31034,5 Bedroom Duplex For Sale In Vgc 24jun26,Vgc Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets,Victoria Garden City +31035,"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)",Brand New 4 Bedroom Semi Detached Duplex With Bq Located In A Gated Estate In Osapa. Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +31036,4 Bedroom Detached Duplex For Sale,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +31037,4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31038,5 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +31039,5 Bedroom Detached Duplex,"Orchid Road, Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31040,4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31041,3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31042,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31043,Residential Land,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31044,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +31045,4 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31046,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31047,This Is A Lovely And Fully Detached 5bedroom Duplex With Bq For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +31048,"4 Bedroom Semi Detached Duplex In Lekki, Lagos. Osapa London.",Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets,Osapa London +31049,Brand New 4 Bedroom Semi Detached Duplex,Brand New 4 Bedroom Semi Detached Duplex With Bq Located In A Gated Estate In Agungi. Agungi Lekki Lagos,₦,"48,000,000",0,1,1,4 beds, baths, Toilets,Agungi +31050,"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)","Osapa, Lekki Lagos Osapa London Lekki Lagos",₦,"48,000,000",0,1,1,4 beds, baths, Toilets,Osapa London +31051,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds, baths, Toilets,Ikota +31052,4bedroom Terrace Duplex + Bq,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +31053,"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)","4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price) Osapa London Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets,Osapa London +31054,Brand New 2 Bedroom Ensuite Flats In A Serene Location Of Ikota Villa Estate Before Vgc For Sale At N28m.,Brand New 2 Bedroom Ensuite Flats In A Serene Location Of Ikota Villa Estate Before Vgc For Sale At N28m. Ikota Lekki Lagos,₦,"28,000,000",1,1,1,2 beds,2 baths,2 Toilets,Ikota +31055,3 Bedroom Flat,... Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31056,4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31057,4 Bedroom Detached Duplex,"Orchid Road, Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31058,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31059,4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +31060,3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31061,"Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos.","Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos. Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets,Chevron +31062,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31063,We Know You Want Dry Land To Build Your Own House In The *main* Beechwood Estate That The Estate Gate Is Directly Facing The Lekki Expressway. This Is The Opportunity For You To Do That. Don't Miss This Again. Beechwood Estate Has Existing Infrastructur,Bogije Lakowe Lekki Lekki Lagos,₦,"13,300,000",0,0,0, beds, baths, Toilets,Other Lekki +31064,Newly Built Aesthetically Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +31065,"*brand New 4 Bedroom Fully Detached Duplex With Bq In Eden's Court,lekki Lagos","Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +31066,978 Sqms Of Fenced And Gated Land In A Built Up Area With Governors Consent On An Interlocked Road In Lekki Scheme 2 Ajah,"Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +31067,"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki* Bella Homes Phase 1 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.","Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"33,000,000",0,1,0, beds,5 baths,5 Toilets,Chevron +31068,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31069,4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +31070,*very Lovely 5 Bedroom Fully Detached For Sale In Lekki*,Vantage Court Osapa London Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +31071,Four Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31072,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31073,Four Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31074,5 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31075,5 Bedroom Detached Duplex,... Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31076,4 Bedroom Terrace Duplex,... Agungi Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +31077,2 Bedroom Flat,... Ilasan Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31078,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31079,??finished 4 Bedroom Semi Detached Duplex With A Room In Bq In Orchid Road??*,"Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos. Chevron Lekki Lagos",₦,"40,000,000",0,1,1,4 beds, baths, Toilets,Chevron +31080,"Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq In Chevron, Lagos.",Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +31081,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths, Toilets,Osapa London +31082,5 Bedroom Fully Detached Duplex With 1 Bq By Second Tollgate Lekki Lagos For Sale,Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31083,5 Bedroom Duplex,"Buena Vista Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"79,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +31084,"Promo!! Lexington Gardens, 100% Dry Land With C Of O, Actual Price 23million( 500sqms) Promo Price: 19million !! Buy And Build Instant Physical Allocation, Topclass Environment!","Lexington Gardens, Sangotedo Lekki Lekki Lagos",₦,"19,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31085,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31086,"A Newly And Tastefully Built 4 Bedroom Terrace Duplex On A 600sqms Of Land, With All Room En Suit, Cctv Camera, Fitted Furnished Kitchen Etc",Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +31087,Great Offer! Beautiful 4bedroom Fully Detached House At Ikota Lekki,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31088,Beautiful 4bedroom Terrace Duplex! With 24 Hours Power Supply,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +31089,Coming Up Swiftly & Currently On The 1st Floor Is A Mini Family Estate / Villa / Country Home All In One.,Lekki Phase 1 Lekki Lagos,₦,"18,000,000",0,1,0,1 beds,2 baths,2 Toilets,Lekki Phase 1 +31090,Great Offer! Lekki Phase1 Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31091,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31092,5 Bedroom Detached Duplex With 1 Bq,... Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31093,For Sale In 24/7 Power Supply Pinnock Beach Phase3 Lekki Fully Automated 5 Bedroom Detached Duplex,Pinnock Beach Estate Phase3 24/7 Power Supply Osapa London Lekki Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +31094,Luxury 4bedroom Detached Duplex For Sale,Lakes Views Estate Orchild Road Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +31095,Estate With 24/7power Supply/ Security Distinctively Finished 5bedroom Detached Duplex With 2maid's Quarters For Sale..,Northern Forshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31096,Tastefully Built 5 Bedroom Detached Duplex With Bq For Sale @ Lekki Lekki County.  Title: Cofo.  Asking Prize: Ngn 75m.,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31097,Brand New 4 Bedroom Semi Detached Duplex With Bq For Sale In A Secured Estate @ Lekki Ikota Title: Governor’s Consent Price: *ngn 55 Million*,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31098,Massive 5 Bedroom Detached House For Let In Lekki Phase 1 Lekki Right Lagos.,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31099,Brand New 4 Bedroom Townhouse With Bq For Sale In A Secured Estate @ Lekki Ikota Title: Governor’s Consent Price: *ngn 40 Million*,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31100,600m² Of Sandfilled Dry Land For Sale @ Lekki Chevron Title: C Of O Price: *ngn 70 M*,Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +31101,5 Bedroom House With B Q Available In Berra Estate Off Chevron Drive,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +31102,500 Square Meters Of Dry Land On A Tarred Road In A Developed Area In Ajah Lekki Scheme 2..,"Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +31103,4 Bedroom Semi Detached Duplex With 1 Bq By Second Tollgate Lekki Lagos For Sale,Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31104,A 3 Bedroom Semi Detached Duplex With A Bq In A Serene Neighbourhood,Lekki Gardens 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 2 +31105,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +31106,"Newly Launched Pineville Estate Located In The Heart Of Lekki, Comprising Of Serviced Plots Of Land","Ikate, Elegushi Lekki Ikate Lekki Lagos",₦,"66,000,000",1,1,0, beds, baths, Toilets,Ikate +31107,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31108,3 Bedroom Terrace Duplex,... Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +31109,4 Bedroom Maisonette,... Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31110,5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31111,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31112,2 Bedroom Flat,... Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31113,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31114,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31115,Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +31116,Luxury 5bedroom Duplex + Bq,The Property Is At Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31117,This Is A Lovely 5bed Fully Detached Duplex With Bq For Sale In Osapa London Lekki.,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31118,Newly Built 5 Bedroom Detached House For Sale In Pinnock Estate Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31119,Newly Built 5 Bedroom Detached House For Sale In Pinnock Estate Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31120,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets,Ikota +31121,"5bedroom Fully Detached Newly Built For Sale At Lekki,lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31122,"5bedroom Fully Detached Newly Built For Sale At Lekki, Lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +31123,"5bedroom Fully Detached Newly Built For Sale At Lekki, Lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +31124,4 Bedroom Semi Detached Duplex For Sale In Chevron 18jun09,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31125,3 Bedroom Duplex For Sale In Chevron 18jun08,Chevron Lekki Lagos,₦,"38,000,000",0,0,1,3 beds,3 baths,3 Toilets,Chevron +31126,Land For Sale In Lekki 18jun07,Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31127,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31128,Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"933,333",1,1,0,4 beds, baths, Toilets,Lekki Phase 2 +31129,Luxury Furnished Unisex Salon,Located At Lekki County Estate Ikota First Gate Ikota Lekki Lagos,₦,"9,000,000",0,1,1, beds, baths,1 Toilets,Ikota +31130,"Location: Lekki Phase 2, Ogombo Near Divisional Police Station, Off Lekki Express Way, By Abraham Estate Junction, Lagos. Title: C Of O Price:n17m/ 600 Sam","Location: Lekki Phase 2, Ogombo Near Divisional Police Station, Off Lekki Express Way, By Abraham Estate Junction, Lagos. Title: C Of O Price:n17m/ 600 Sam Lekki Phase 2 Lekki Lagos",₦,"17,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +31131,A 3 Bedrooms Terrace For Sale With A Library Upstairs And A Bq Ground Floor,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Osapa London +31132,5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +31133,"5 Bedroom Detached House + Bq On Approximately 1,500 Square Metre Of Land @ Akwuzu Street, Lekki Phase 1",Akwuzu Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +31134,4 Bedroom Semi Detached House + 1room Boys Quarter,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +31135,4 Bedroom Terrace Duplex,Eleganza Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31136,Lux 4 Bedroom Terrance,Spring Bay Estate Ikate Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikate +31137,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31138,4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31139,4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"49,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +31140,4 Bedroom Semi Detached Duplex For Sale In Chevron 18jun01,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31141,Newly Built 4 Bedroom Semi Detached Duplx For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +31142,5 Bedroom Detached Duplex For Sale In Ikota 17jun19,Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +31143,5 Bedroom Fully Detached Duplex For Sale In Osapa 17jun14,Osapa London Lekki Lagos,₦,"299,999,999",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +31144,A Spacious 5bedroom Fully Built Duplex With Bq,"Megamount Estate, Lekki County Estate Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +31145,Global C Of O,"Lakowe Golf Course Lekki, Lagos State Lekki Lagos",₦,"5,000,000",1,1,1,8 beds,6 baths,8 Toilets,Other Lekki +31146,4 Bedroom Terrace House For Sale In Lekki 17jun06,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +31147,5 Bedroom Semi Detached Duplex For Sale In Lekki 17jun05,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31148,5 Bedroom Duplex For Sale In Lekki 17jun04,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31149,Tastefully Finished Fully Detached 5 Bedroom Duplex With A Penthouse All Room En Suite,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,10 baths,10 Toilets,Lekki Phase 1 +31150,"*4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.",Chevron Ikota Lekki Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +31151,Newly Built 5bedroom Fully Detached Apartment For Sale At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +31152,"1000 Square Meters Of Bare Land On An Interlocked Road In Lekki Scheme 2, Ajah","Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"18,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +31153,4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +31154,4 Bedroom Terrace Duplex,"Orchid Road, Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31155,4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +31156,5 Bedroom Detached Duplex With 2 Bqs For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31157,Luxuriously Finished 5 Bedrooms Fully Detached House For Sale!!! ,Lekki County Home Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31158,Luxury Newly Built 6 Bedroom Fully Detached Duplex With 2room Bq,"Western Foreshore Estate, Beside Pinnock Beach Estate, Jakande, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +31159,4 Bedroom Terrace Duplex,. Chevron Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +31160,5 Bedroom Detached Duplex For Sale In Ikota 16jun15,Ikota Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31161,5 Bedroom Fully Detached Duplex For Sale In Ikota 16jun07,Ikota Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31162,4 Bedroom Duplex For Sale In Lekki 16jun06,Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +31163,4 Bedroom Semi Detached Duplex For Sale In Chevron 16jun03,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31164,Massive 5bedroom Fully Detached Duplex In Admiralty Lekki,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +31165,5 Bedroom House With 2 Rooms Bq For Sale At Pinnock Beach Estate,Pinnock Beach Estate Agungi Lekki Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets,Agungi +31166,4 Bedroom Detached House With Two Rooms Boys Quarter,Vgc Vgc Lekki Lagos,₦,"290,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +31167,Duplex For Sale,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31168,5 Bedroom Fully Detached Duplex For Sale In Lekki 15jun31,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31169,4 Bedroom Terrace Duplex For Sale In Ikota 15jun27,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +31170,5 Bedroom Fully Detached Duplex For Sale In Lekki 15jun19,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31171,Newly Built 4 Bedroom Flat In A Serene Niegbhourhood,A Serene Estate In Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Lekki +31172,Duluxe 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets,Agungi +31173,5 Bedroom Fully Detached Duplex For Sale In Chevron 15jun13,Chevron Lekki Lagos,₦,"78,000,000",0,0,1,5 beds,5 baths,5 Toilets,Chevron +31174,5 Bedroom Detached Duplex For Sale In Ikota 15jun03,Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31175,4 Bedroom Semi Detached Duplex For Sale In Lekki 15jun02,Lekki Lagos,₦,"42,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +31176,A 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31177,Newly Built Luxurious 4 Bedroom Duplex,... Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +31178,Newly Built 5 Bedroom Duplex In A Serene Neighborhood With A Bq,.... Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +31179,Newly Detached 5 Bedroom Duplex With 2 Rooms Bq,..... Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31180,Newly Built 4 Bedroom Terrace,.... Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31181,Newly 4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31182,Newly Built Spacious 5 Bedroom Fully Detached Duplex With Bq,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31183,Fresh Sales ???? Newly Built 5 Bedroom Contemporary Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +31184,Cheapest 4bedroom Semi Detached Duplex In Ikota Lekki,Ikota Lekki Ikota Lekki Lagos,₦,"34,800,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31185,A 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31186,A 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +31187,A 4 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31188,A 4 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +31189,"Pay Rent For 2 15 Years And Own Your Home Bella Courts, Ikate, Lekki",Bella Courts Ikate Lekki Ikate Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,Ikate +31190,For Sale: Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood .,"11, Bashoru Okunsanya Street. Lekki Phase1. Lagos Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31191,4 Bedroom Detached Duplex For Sale In Lekki 13jun27,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31192,5 Bedroom Detached Duplex For Sale In Lekki 13jun21,Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +31193,5 Bedroom Detached Duplex For Sale In Ikota 13jun17,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31194,5 Bedroom Detached Duplex For Sale In Ikota 13jun17,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31195,4 Bedroom Duplex For Sale In Ikota 13jun12,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31196,"Promo!!!! *this Is The Moment Your Money Has To Work For You. Invest N988,000 On A C Of O Land And Watch As The Price Appreciate Greatly While You Are Still Paying The Original Price On Installment For 48 Months. Be Like Other Smart Investors.* The Amari",Okun Oje Bogije Lekki Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31197,5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun09,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31198,A 4 Bedroom Fully Detached Duplex.,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31199,A 4 Bedroom Semi Detached Duplex.,Chevy View Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31200,4 Bedroom Fully Detached Duplex For Sale In Osapa 13jun05,Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31201,5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun04,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31202,4 Bedroom Terrace Duplex For Sale In Chevron 13jun03,Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31203,A 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31204,5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun01,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31205,A 4 Bedroom Semi Detached Duplex.,Ikota Villa Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +31206,Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31207,5 Bedroom Super Luxury Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31208,4bedroom Semi Detached Duplex,Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31209,Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +31210,Excellent Finished 4 Bedroom Terrace.,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +31211,Fenced Buy And Build Dry Land At Abijo With Genuine Gazette Document,Very Close To The Owode Labora Palace Lekki Phase 2 Lekki Lagos,₦,"6,700,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +31212,4bedroom With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,6 baths,4 Toilets,Ikota +31213,Semi Detached 4 Bedroom Duplex With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +31214,500 Square Meeters Of Land,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Osapa London +31215,5bed Luxury Apartment,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +31216,4 Bedroom Terrace House For Sale In Chevron 11jun29,Chevron Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31217,4 Bedroom Fully Detached Duplex For Sale In Lekki 11jun24,Lekki Lagos,₦,"44,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31218,5 Bedroom Fully Detached Duplex For Sale In Chevron 11jun23,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31219,4 Bedroom Fully Detached Duplex For Sale In Chevron 11jun22,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31220,5 Bedroom Detached Duplex For Sale In Chevron 11jun21,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +31221,4bedroom Duplex With Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +31222,5 Bedroom Terrance Duplex With Bq,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +31223,New Tasteful 2bedroom Terrace House With Great Electricity Located At Lavadia Estate(abraham Adesanya),Abraham Adesanya Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,4 baths,4 Toilets,Chevron +31224,Newly Built 4 Bedroom Cornerpiece Townhouse With Bq In A Premium Estate,Rt Lawal Street Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +31225,Luxury Terraced 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31226,5 Bedroom Detached Duplex For Sale In Lekki 11jun20,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31227,4 Bedroom Semi Detached Duplex For Sale In Ikota 11jun18,Ikota Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +31228,Luxury Detached Duplex For Sale,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31229,Terraced Duplex For Sale,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +31230,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31231,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31232,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31233,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Victory Park Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31234,Luxury 5 Bedroom Detached Duplex With Excellent Facillities,Ikota Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31235,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facillities,Ologolo Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +31236,Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31237,4 Bedroom Terrace Duplex For Sale,Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31238,Nicely Built 4 Bedroom Terraced Duplex With 1 Room Bq And Excellent Facilities,Ilasan Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31239,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +31240,"Luxurious Contemporary 5bedroom Fully Detached Mansion With Swimming Pool, Cinema For Sale",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31241,Functional 4 Bedroom Terraces Intelligently Built With You In Mind And Strategically Located At The Centre Of Lekki.,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31242,Well Finished 4 Bedroom Detached House.,Ikota Villa Estates Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31243,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31244,Luxury 4 Bedroom Terraced Duplex With Excellent Facillities With A Room Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31245,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31246,Luxurious 5bedroom Detached Duplex For Sale,Oral Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31247,Luxury 3 Bedroom Terraced Duplex With Excellent Facillities With Bq,Ilasan Lekki Lagos,₦,"52,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +31248,Magnificent 4 Bedroom Fully Detached Home In Lekki Phase 1 (off Admiralty Road) + Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31249,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Ologolo Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +31250,Brand New 4bedroom Detached House With Bq For Sale,Gated Closed Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31251,4 Bedroom Terrace Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31252,Luxury 1 Bedroom Falt With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +31253,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31254,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31255,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facillities,Ilasan Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31256,5bedroom Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +31257,4bedroom Terrace Duplex For Sale! Ikota Lekki 45m,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Ikota +31258,Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31259,Tastefully Finished 5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31260,Brand New 5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31261,4 Bedroom Garden House Plus 2 Bedrm Bq,Fara Park Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +31262,*brand New 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31263,Fantastic Piece Of Dry Land In A Highbrow Environment.,Isaac Aloko Street Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31264,Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31265,Newly Built 4 Bedroom Semi Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31266,Semi Detached 4 Bedroom Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +31267,Executive Brand New 4bedrooms Terrace Duplex For Sale At Lekki Chevron Lagos.,Lekki Chevron Lagos. Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31268,Executive Brand New 4bedrooms Duplex With A Room Bq For Sale At Lekki Ph1.,Executive 4bedrooms Duplex For Sale With A Room Bq At Lekki Ph1 Estate. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31269,Newly Built 4 Bedroom Semi Dnewly Built Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +31270,Executive Brand New 4bedrooms Detached Duplex With A Bq At Lake View Park Estate Opposite Chevron.,Lake View Park Estate 2 Opposite Chevron. Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31271,"Governor Consent, Survey Plan & Deed. 390squere Meter Of A Brand New 5bedroom Duplex With A Bq In Ikota Westend Estate Lekki County Home 55m Asking",Westend Estate Lekki County Home Ikota Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +31272,"A Beautiful And Sweetable 4 Bedroom Detach Duplex With Bq, All Rooms Ensuit",Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +31273,Newly Built 5bedroom Fully Detached Duplex.,Ikota Lekki Lagos,₦,"79,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikota +31274,4 Bedroom Detached Duplex For Sale In Chevron 10jun26,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31275,4 Bedroom Terrace Duplex For Sale In Ikate 10jun24,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikate +31276,4 Bedroom Detached Duplex For Sale In Chevron 10jun23,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Chevron +31277,Very Dry Affordable Table Land With Cofo In Jakande Lekki,Beach Road Jakande Lekki Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31278,Newly Built 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +31279,5bedroom Detarched Duplex.,Olaitan Sibanjo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths,6 Toilets,Lekki Phase 1 +31280,5 Bedroom Fully Detached Duplex For Sale In Ikota 10jun19,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31281,5 Bedroom Fully Detached Duplex For Sale In Ikota 10jun19,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31282,5 Bedroom Fully Detached Duplex For Sale In Osapa 10jun17,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +31283,5 Bedroom Fully Detached Duplex For Sale In Osapa 10jun17,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +31284,5 Bedroom Detached House For Sale In Lekki 10jun04,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31285,Newly Built 5 Bedroom Terrace Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +31286,4 Bedroom Semi Detached Duplex For Sale In Chevron 09jun34,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +31287,4 Bedroom Semi Detached Duplex For Sale In Lekki 09jun33,Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31288,4 Bedroom Semi Detached Duplex For Sale In Lekki 09jun32,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31289,Exquisitely Built 3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Lekki Phase 2 +31290,4 Bedroom Semi Detached Duplex For Sale In Osapa 09jun26,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +31291,Land For Sale In Lekki 09jun19,Lekki Phase 2 Lekki Lagos,₦,"42,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +31292,"Newly Built 4bedroom Duplex, Fully Furnished At Ikota, Lagos.",Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +31293,5 Bedroom Fully Detached Duplex For Sale In Ikota 09jun15,Ikota Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31294,4 Bedroom Fully Detached Duplex For Sale In Chevron 09jun14,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +31295,Newly Built 5 Bedroom Detached Duplex,...... Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31296,Spacious And Modern 4 Bedroom Semi Detached Duplex With Bq,.... Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31297,Brand New Luxuriously Finished 4bedroom Semi Detached House With Massive Space And B/q,Chevy View Estate Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31298,Luxury 6 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +31299,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +31300,Luxury 4 Bedroom Terrace Duplex With A Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31301,Newly Built Four Bedroom Mini Duplex,Orchids Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +31302,2bedroom Flat For Sale At Orchid,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +31303,Fantastically Finished 4bedroom Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +31304,For Sale/rent 5 Bedroom Terrace Duplex At Osapa Sale Price,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +31305,Distress Sales Of 4bedroom Terrace Duplex With A Room Boys Quarter,Bridge Gate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +31306,Massive 5bedroom Detached House With A Room Boys Quarter,Kushenla Road Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +31307,A 2bedroom Flat For Sale,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +31308,4bedroom Styled Terrace Duplex,"Word Oil Road,ikate Elegushi Ilasan Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +31309,Two Jv In Alasia Town Close To The Lagos Business School,Alasia Town Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31310,"Ojomu Deed, & Registered Survey. 648squere Meters Of Land( Fenced & Gated ) Price: 30m","Soji Olagunju Street, Off Alpha Beach New Road Jakande Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31311,"Registers Deed, & Survey. 2plots(648square/plot) Together Along Silicon Valley Estate Per Plot Price:20m","By Banana Apartment, Off Alpha Beach New Road Lekki Jakande Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31312,"900squere Of Dry Land. Deed, Governor Consent & Survey. Bridge Gate Estate Iberekodo Street Agungi Price: 65m","Bridge Gate Estate, Iberekodo, Street Agungi Road Lekki, Lagos Agungi Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Agungi +31313,2 Bedroom Flat For Sale In Osapa 07jun27,Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +31314,4 Bedroom Apartment For Sale In Ikate 07jun26,Ikate Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31315,4 Bedroom Terrace House For Sale In Chevron 07jun25,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31316,5 Bedroom Detached Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +31317,4bedroom Luxury Detached Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31318,Luxurious 2 Bedroom,Seagate Estate Near Spar Ikate Lekki Lagos,₦,"42,000,000",0,1,1,2 beds, baths, Toilets,Ikate +31319,4 Bedroom Duplex For Sale In Ikota 07jun15,Ikota Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +31320,Newly Built Luxurious 3 Bedroom Flat,Ayo Babatunde Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 2 +31321,"Massive 5bedroom Detached With A Pool....playing Area, 2rooms Bq...ln 600sqm",Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,1,5 beds, baths, Toilets,Lekki Phase 1 +31322,Affordable Dry Table Land In Lekki Jakande,Jakande Beach Access Bank And Lagos State Government Proposed Estate Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31323,Newly Built Smart 5 Bedroom Fully Detached With A Bq,By Orchid Chevron Lekki Lagos,₦,"77,000,000",0,1,0,5 beds, baths, Toilets,Chevron +31324,4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +31325,Newly Built 4 Bedroom Terrace Duplex,Creek Avenue Court 2 Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +31326,Land And Property,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +31327,5 Bedroom Detached House For Sale In Lekki 06jun09,Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +31328,5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun08,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31329,4 Bedroom Detached Duplex For Sale In Chevron 06jun07,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets,Chevron +31330,5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun06,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31331,5 Bedroom Detached House For Sale In Osapa 06jun05,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +31332,5 Bedroom Fully Detached Duplex For Sale In Chevron 06jun04,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31333,5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun03,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31334,Newly Built And Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +31335,Luxury 4 Bedrooms Semi Detached House In A Nice Estate,Adamu Street Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +31336,"10,000sqmts Of Dry Land, Available For Sale, Facing Lekki Epe Expressway, Ikate Lekki Lagos","Elegushi Beach Road, Ikate Ikate Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Ikate +31337,Newly Built 4bedroom Duplexes,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31338,"A Solid 80 % Completed , Fully Detached 4 Bed Rooms Duplex , With A 2 Rooms Pent House And An Attached 2 Rooms Bq In Vgc , Can Also Pack 4 Cars Conveniently , Seated On A 600sqm Off A Close Corner Piece Land , Off Road 3 With A Verified Government Consent","Road 3, Vgc Lagos Vgc Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Victoria Garden City +31339,Luxury 4 Bedrooms Semi Detached House In A Nice Estate,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31340,4 Bedroom Detached Duplex For Sale In Lekki 05jun33,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31341,5 Bedroom Fully Detached Duplex For Sale In Ikota 05jun32,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31342,4 Bedroom Semi Detached Duplex For Sale In Chevron 05jun31,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31343,4 Bedroom Semi Detached Duplex For Sale In Ologolo 05jun30,Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +31344,5 Bedroom Fully Detached Duplex For Sale In Chevron 05jun23,Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +31345,5 Bedroom Semi Detached Duplex For Sale In Ikate 05jun16,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +31346,Newly Built 4bedroom Fully Detached Duplex In Serene Estate,Chevron Drive Lekki Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +31347,5 Bedroom Fully Detached Duplex For Sale In Vgc 05jun14,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets,Victoria Garden City +31348,4 Bedroom Terrace Duplex With A Bq At A Waterfront,Lekki Phase 1 Lekki Lagos,₦,"24,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +31349,A Gated Estate Having 4 Blocks Of 16 Units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,1,0,9 beds,9 baths,9 Toilets,Lekki Phase 1 +31350,4 Bedroom Terrace Duplex For Sale,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +31351,Luxury 4 Bedroom Detached Duplex With 1room Bq For Sale,2nd Tollgate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31352,Brand New Luxuriously Finished 5bedroom Detached House With Massive Space And B/q,Bera Estate Chevron Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31353,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +31354,5 Bedroom Duplex For Sale In Lekki 04jun18,Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31355,5 Bedroom Fully Detached Duplex For Sale In Chevron 04jun13,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31356,4 Bedroom Detached Duplex For Sale In Osapa 04jun11,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +31357,4 Bedroom Semi Detached Duplex For Sale In Addo Road 04jun10,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +31358,Newly Built 4bedroom Terrace,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +31359,Newly Built 4bedroom Terrace,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +31360,Newly Built 5bedroom Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,7 Toilets,Ikota +31361,Newly Built 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +31362,5 Bedroom Fully Detached Duplex For Sale In Ikota 04jun02,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets,Ikota +31363,Exquisitely Finished 5 Bedroom Fully Detached House With A Room Bq,"Lekki County Homes, Ikota Ikota Lekki Lagos",₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31364,Newly Built 4 Bedroom Fully Detached Duplex For Sale!,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,7 Toilets,Lekki Phase 1 +31365,4 Bedroomd Detached Duplex With Boys Quarter,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +31366,5 Bedroom Semi Detached Duplex.,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +31367,5 Bedroom Terrance Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +31368,4 Bedroom Fully Detached Duplex For Sale In Chevron 03jun61,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31369,4 Bedroom Terrace Duplex For Rent In Chevron 03jun60,Chevron Lekki Lagos,₦,"3,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31370,4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +31371,4bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +31372,5 Bedroom Detached Duplex For Rent In Lekki 03jun55,Lekki Lagos,₦,"5,500,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31373,4 Bedroom Duplex For Rent In Osapa 03jun54,Osapa London Lekki Lagos,₦,"4,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +31374,4 Bedroom Semi Detached Duplex For Sale In Ologolo 03jun50,Ologolo Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ologolo +31375,4 Bedroom Semi Detached Duplex For Sale In Ologolo 03jun46,Ologolo Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ologolo +31376,4 Bedroom Terrace Duplex For Sale In Chevron 03jun44,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31377,"2 Plots Of Land Already Sand Filled Land Beside Mega Mound Estate, Ikota, Lekki, Lagos",Ikota Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets,Ikota +31378,5 Bedroom Luxury Detached Duplex.,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +31379,"New Listing! For Sale/rent 4 Bedroom Semi Detached House Quality Finishing And Fittings Quiet And Secure Neighborhood Location Chevron, Lekki, Lagos","Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +31380,4 Bedroom Semi Detached Duplex For Sale In Ikota 02jun15,Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +31381,4 Bedroom Semi Detached For Sale In Ikota 02jun11,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31382,4 Bedroom Semi Detached House For Sale In Lekki 02jun10,Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31383,5 Bedroom Detached Duplex For Sale In Lekki 02jun04,Lekki Lagos,₦,"70,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +31384,5 Bedroom Detached Duplex For Sale In Osapa 02jun03,Osapa London Lekki Lagos,₦,"290,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +31385,5 Bedroom Detached Duplex For Sale In Ikota 02jun02,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +31386,5 Bedroom Detached Duplex For Sale In Ikota 02jun01,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +31387,4bedroom Semi Detach With A Room Bq 75m,Pinnock Beach Estate By Dr Kennedy Okonkwo Way. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets,Lekki Phase 1 +31388,Newly Built 5 Bedroom Duplex,Askamaya Estate Opp Mega Chicken Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,3 baths,3 Toilets,Ikota +31389,4 Bedroom Detached Duplex For Sale In Lekki 22apr65,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31390,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may59,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31391,4 Bedroom Terrace Duplex For Sale In Lekki 2apr4,Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31392,4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr13,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31393,4 Bedroom Terrace Duplex For Sale In Lekki 7may39,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31394,5 Bedroom House For Sale In Lekki 25apr13,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31395,Newly Built 5bedroom Duplex With 1room Bq,Bera Estate Beside Uba Bank Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +31396,5 Bedroom Fully Detached Duplex For Sale In Lekki 7may41,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31397,5 Bedroom Duplex For Sale In Lekki 25apr21,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31398,4 Bedroom Semi Detached Duplex For Sale In Lekki 31mar25,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31399,4 Bedroom Detached Duplex For Sale In Lekki 31mar21,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31400,4 Bedroom Fully Detached Duplex For Sale In Lekki 4may5,Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31401,Tastefully Finished 5bedroom Duplex And A Bq,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +31402,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may60,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31403,4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr15,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31404,5 Bedroom Fully Detached House For Sale In Lekki 15apr24,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31405,4 Bedroom Terrace Duplex For Sale In Ikate 01jun30,Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +31406,4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr44,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31407,32 Rooms Hotel For Sale In Lekki 9apr24,Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +31408,4 Bedroom Semi Detached Duplex Sale In Lekki 21apr28,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31409,4 Bedroom Semi Detached Duplex For Sale In Lekki 25mar7,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31410,5 Units Of 5 Bedroom Detached House,.. Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,4 Toilets,Other Lekki +31411,2 Bedroom Flat For Sale In Lekki 16apr18,Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31412,4 Bedroom Duplex For Sale In Lekki 9may8,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31413,45 Rooms Hotel For Sale In Lekki 30apr41,Lekki Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +31414,5 Bedroom Detached House For Sale In Osapa 30may42,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +31415,5 Bedroom Mansion For Sale In Lekki 9may25,Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31416,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may53,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31417,5 Bedroom Semi Detached Duplex For Sale In Lekki 29apr49,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31418,5 Bedroom Detached House For Sale In Osapa 30may44,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +31419,4 Bedroom Semi Detached Duplex For Sale In Lekki 15apr20,Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31420,"Newly Built 5bedroom Duplex Fully Detached With 2rooms Servant Quarters On 430 Square Metres, It Features Include A Swimming Pool, Gym, Cinema Room, Purpose Built Study, Solar Power Inverter",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +31421,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may49,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31422,4 Bedroom Semi Detached Duplex For Sale In Lekki 13may55,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31423,5 Bedroom Detached Duplex With A Swimming Pool & A Room Bq For Sell In Lekki County Ikota.,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +31424,4 Bedroom Semi Detached Duplex For Sale In Lekki 31mar29,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31425,45 Rooms Hotel For Sale In Chevron 01apr32,Chevron Lekki Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +31426,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may46,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31427,4 Bedroom Semi Detached Maisonette, Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31428,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may29,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31429,4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr53,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31430,8 Bedroom Detached House For Sale In Lekki 26maar1,Lekki Lagos,₦,"150,000,000",0,0,0,8 beds,8 baths,8 Toilets,Other Lekki +31431,2 Bedroom Apartment For Sale In Lekki 4apr37,Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31432,Office Building, Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31433,2 Plots Of Land For Sale In Lekki 4apr34,Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31434,5 Bedroom Duplex For Sale In Lekki 11may54,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31435,4 Bedroom Detached Duplex For Sale In Lekki 18apr4,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31436,Land For Sale In Lekki 4may16,Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31437,5 Bedroom Fully Detached Duplex For Sale In Lekki 8apr26,Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31438,Land For Sale In Lekki 7may58,Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31439,5 Bedroom Detached Duplex For Sale In Lekki 6may54,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31440,4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr38,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31441,Land For Sale In Lekki 2apr7,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31442,5 Bedroom Fully Detached Duplex For Sale In Lekki 17apr1,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31443,4 Bedroom Semi Detached Terrace For Sale In Lekki 15apr29,Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31444,3 Bedroom Flat For Sale In Lekki 27apr10,Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31445,4 Bedroom Terrace Duplex For Sale In Lekki 2apr3,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31446,5 Bedroom Duplex For Sale In Lekki 8may24,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31447,5 Bedroom Duplex For Sale In Lekki 23apr52,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31448,Land For Sale In Lekki 25apr24,Lekki Lagos,₦,"4,800,000",0,0,0, beds, baths, Toilets,Other Lekki +31449,5 Bedroom Duplex For Sale In Lekki 13may9,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31450,3 Bedroom Apartment For Sale In Lekki 15may25,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31451,5 Bedroom Fully Detached Duplex For Sale In Lekki 7may50,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31452,2 Bedroom Flat For Sale In Lekki 13may58,Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31453,4 Bedroom Semi Detached House For Sale In Lekki 14may23,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31454,5 Bedroom Fully Detached Duplex For Sale In Lekki 28apr33,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31455,5 Bedroom Semi Detached House For Sale In Lekki 26mar42,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31456,5 Bedroom Fully Detached House For Sale In Lekki 15apr45,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31457,Land For Sale In Lekki 28mar3,Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31458,4 Bedroom Semi Detached Duplex For Sale In Chevron 30may18,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +31459,4 Bedroom Fully Detached Duplex For Sale In Lekki 14may20,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31460,5 Bedroom Detached Duplex For Sale In Lekki 13may1,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31461,4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr12,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31462,5 Bedroom Semi Detached House For Sale In Lekki 25apr1,Lekki Lagos,₦,"168,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31463,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr29,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31464,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr19,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31465,4 Bedroom Fully Detached Duplex For Sale In Lekki 8may13,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31466,4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr25,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31467,5 Bedroom Duplex For Sale In Lekki 31mar48,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31468,4 Bedroom Bungalow For Sale In Lekki 5may45,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31469,4 Bedroom Semi Detached Duplex For Sale In Lekki 5may36,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31470,4 Bedroom Fully Detached Duplex For Sale In Lekki 8may30,Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31471,4 Bedroom Terrace Duplex For Sale In Lekki 14may25,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31472,4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr5,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31473,5 Bedroom Fully Detached House For Sale In Lekki 15apr21,Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31474,4 Bedroom Duplex For Sale In Lekki 6apr10,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31475,5 Bedroom Fully Detached Duplex For Sale In Lekki 4apr52,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31476,5 Bedroom Fully Detached Duplex For Sale In Lekki 4apr43,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31477,4 Bedroom Fully Detached House For Sale In Lekki 21apr2,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31478,5 Bedroom Detached House For Sale In Lekki 25apr11,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31479,5 Bedroom Detached House For Sale In Lekki 29apr26,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31480,Land For Sale In Lekki 22apr38,Lekki Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31481,4 Bedroom Penthouse For Sale In Lekki 4may23,Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31482,5 Bedroom Fully Detached House For Sale In Lekki 12may54,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31483,4 Bedroom Semi Detached Duplex For Sale In Lekki 23apr49,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31484,5 Bedroom Fully Detached Duplex For Sale In Lekki 24apr56,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31485,5 Bedroom Fully Detached House For Sale In Lekki 21apr1,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31486,4 Bedroom Semi Detached Duplex For Sale In Ikota 28may09,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31487,Land For Sale In Lekki 13may34,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31488,4 Bedroom Duplex For Sale In Lekki 3apr10,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31489,Land For Sale In Lekki 13may50,Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31490,4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr23,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31491,692sqm Land For Sale In Lekki 30apr39,Lekki Lagos,₦,"90,000",0,0,0, beds, baths, Toilets,Other Lekki +31492,5 Bedroom Semi Detached Duplex For Sale In Lekki 26mar7,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31493,5 Bedroom Duplex For Sale In Lekki 28apr43,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31494,5 Bedroom Duplex For Sale In Lekki 27apr48,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31495,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may15,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31496,5 Bedroom Duplex For Sale In Lekki 27apr45,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31497,4 Bedroom Semi Detached For Sale In Lekki 29apr1,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31498,4 Bedroom House For Sale In Lekki 5may39,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31499,4 Bedroom Semidetached Duplex For Sale In Lekki 24apr1,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31500,5 Bedroom Fully Detached Duplex For Sale In Lekki 6apr5,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31501,4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr24,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31502,4 Bedroom Detached Duplex For Sale In Lekki 12may26,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31503,4 Bedroom Terrace For Sale In Lekki 27apr26,Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31504,4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr14,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31505,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr40,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31506,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may5,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31507,5 Bedroom Fully Detached Duplex For Sale In Lekki 8apr8,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31508,4 Bedroom Terrace Duplex For Sale In Lekki 7apr18,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31509,5 Bedroom Detached House For Sale In Lekki 14apr2,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31510,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may58,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31511,4 Bedroom Terrace Duplex For Sale In Lekki 7apr11,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31512,4 Bedroom Terrace Duplex For Sale In Agungi 22apr3,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +31513,4 Bedroom Semi Detached Duplex For Sale In Lekki 28mar47,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31514,4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr42,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31515,4 Bedroom Semi Detached Duplex For Sale In Lekki 13may56,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31516,5 Bedroom Detached Duplex For Sale In Chevron 30may80,Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31517,6 Bedroom Detached Duplex For Sale In Lekki 6apr36,Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +31518,5 Bedroom Semi Detached Duplex For Sale In Lekki 14apr6,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31519,4 Bedroom Detached Duplex For Sale In Lekki 5may32,Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31520,Commercial Building For Sale In Lekki 7apr48,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31521,3 Bedroom Flat For Sale In Lekki 25apr17,Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31522,4 Bedroom Semi Detached Duplex Sale In Lekki 16apr30,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31523,3 Bedroom Terrace Duplex For Sale In Lekki 31mar17,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31524,5 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +31525,3 Bedroom Apartment For Sale In Lekki 14apr49,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31526,Mini Flat Sale In Lekki 27apr30,Lekki Lagos,₦,"9,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +31527,5 Bedroom Detached House For Sale In Osapa 30may40,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +31528,Land For Sale In Lekki 30apr38,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31529,4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar15,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31530,4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr41,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31531,6 Bedroom Fully Detached Apartment For Sale In Lekki 24apr3,Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +31532,Land For Sale In Lekki 8may14,Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31533,4 Bedroom Duplex For Sale In Lekki 27apr6,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31534,5 Bedroom Detached House For Sale In Lekki 14apr1,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31535,4 Bedroom Semi Detached Duplex For Sale In Lekki 27may97,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31536,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may27,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31537,5 Bedroom Detached House For Sale In Lekki 27mar1,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31538,4 Bedroom Semi Detached Duplex For Sale In Lekki 14may36,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31539,4 Bedroom Fully Detached Duplex For Sale In Lekki 8apr49,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31540,5 Bedroom Duplex For Sale In Lekki 14may15,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31541,3 Bedroom Flat For Sale In Lekki 7may4,Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31542,4 Bedroom Fully Detached Duplex For Sale In Lekki 30mar17,Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31543,4 Bedroom Detached Duplex For Sale In Lekki 30apr2,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31544,5 Bedroom Detached Duplex For Sale In Lekki 6apr35,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31545,5 Bedroom Semi Detached House For Sale In Lekki 30mar21,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31546,5 Bedroom House For Sale In Lekki 7may57,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31547,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr21,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31548,5 Bedroom Terrace For Sale In Lekki 9apr42,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31549,5 Bedroom Fully Detached Duplex For Sale In Lekki 21mar8,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +31550,4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar26,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31551,4 Bedroom Semi Detached Duplex For Sale In Lekki 27mar2,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31552,5 Bedroom Fully Detached Duplex For Sale In Lekki 11may47,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31553,5 Bedroom Detached House For Sale In Lekki 8apr32,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31554,4 Bedroom Semi Detached Duplex For Sale In Lekki 29apr14,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31555,5 Bedroom Detached House For Sale In Lekki 9apr40,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31556,5 Bedroom House For Sale In Lekki 4may49,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31557,4 Bedroom Fully Detached Duplex For Sale In Lekki 27apr14,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31558,2 Bedroom Flat For Sale In Lekki 9may9,Lekki Lagos,₦,"28,500,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31559,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may55,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31560,3 Bedroom Terrace Duplex For Sale In Lekki 22apr52,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31561,1320 Sqm Land For Sale In Lekki 7may13,Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31562,5 Bedroom Fully Detached Duplex For Sale In Lekki 9may4,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31563,2 Bedroom Flat For Sale In Lekki 14may13,Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31564,4 Bedroom Fully Detached Duplex For Sale In Lekki 14apr18,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31565,4 Bedroom Semi Detached House For Sale In Lekki 24apr55,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31566,4 Bedroom Semi Detached Duplex For Sale In Chevron 17apr45,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31567,4 Bedroom Fully Detached Duplex For Sale In Chevron 01jun39,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31568,5 Bedroom Duplex For Sale In Lekki 4may57,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31569,5 Bedroom Detached Duplex For Sale In Lekki 12may49,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31570,4 Bedroom Fully Detached Duplex For Sale In Lekki 21apr32,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31571,3 Bedroom Apartment For Sale In Chevron 2apr22,Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +31572,5 Bedroom Detached Duplex For Sale In Lekki 24apr60,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31573,Land For Sale In Lekki 21mar7,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31574,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may51,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31575,3 Bedroom Apartment For Sale In Lekki 31mar10,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31576,3 Bedroom Bungalow For Sale In Lekki 11may11,Lekki Lagos,₦,"19,299,375",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31577,4 Bedroom Semi Detached Duplex For Sale In Lekki 14may38,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31578,5 Bedroom Fully Detached Duplex For Sale In Lekki 22apr12,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31579,4 Bedroom Detached Duplex For Sale In Lekki 28apr52,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31580,3 Bedroom Duplex For Sale In Lekki 22may11,Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31581,4 Bedroom Semi Detached Duplex For Sale In Lekki 4apr2,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31582,5 Bedroom Fully Detached Duplex For Sale In Lekki 13may45,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31583,5 Bedroom Fully Detached Duplex For Sale In Lekki 31mar28,Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31584,5 Bedroom Fully Detached House For Sale In Lekki 8apr46,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31585,Land For Sale In Lekki 7may38,Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31586,4 Bedroom Terrace Duplex For Sale In Lekki 4apr47,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31587,5 Bedroom Detached Duplex For Sale In Lekki 8may45,Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31588,4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr13,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31589,4 Bedroom Semi Detached Duplex For Sale In Lekki 15may6,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31590,4 Bedroom Terrace Duplex For Sale In Lekki 21mar4,Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31591,4 Bedroom Fully Detached Duplex For Sale In Lekki 8may12,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31592,4 Bedroom Fully Detached Duplex For Sale In Lekki 13may4,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31593,Land For Sale In Lekki 8may50,Lekki Lagos,₦,"11,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31594,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr16,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31595,4 Bedroom Terrace Duplex For Sale In Ikate 01jun79,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31596,4 Bedroom Detached Duplex For Sale In Lekki 31mar26,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31597,5 Bedroom Detached Duplex For Sale In Lekki 30may77,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31598,10.6 Hectares Of Commercial Plot For Sale In Lekki 18apr8,Lekki Lagos,₦,"6,000,000,000",1,0,0, beds, baths, Toilets,Other Lekki +31599,5 Bedroom Duplex For Sale In Lekki 3apr36,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31600,3 Bedroom House For Sale In Lekki 12may38,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31601,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr27,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31602,4 Bedroom Fully Detached Duplex For Sale In Lekki 9apr28,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31603,4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar30,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31604,5 Bedroom Detached House For Sale In Lekki 29apr28,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31605,5 Bedroom Fully Detached Duplex For Sale In Lekki 9may49,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31606,4 Bedroom Fully Detached House For Sale In Lekki 4apr18,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31607,5 Bedroom Detached Duplex For Sale In Lekki 17apr54,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31608,5 Bedroom Fully Detached Duplex For Sale In Lekki 12may1,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31609,5 Bedroom Detached Duplex For Sale In Lekki 17apr52,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31610,5 Bedroom Detached Duplex For Sale In Lekki 25apr14,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31611,4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr9,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31612,5 Bedroom Duplex For Sale In Lekki 31mar49,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31613,4 Bedroom Terrace Duplex For Sale In Lekki 28apr53,Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31614,4 Bedroom Detached Duplex For Sale In Lekki 17apr24,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31615,5 Bedroom Detached Duplex For Sale In Lekki 31mar51,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31616,5 Bedroom Semi Detached Duplex For Sale In Lekki 27apr7,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31617,4 Bedroom Terrace For Sale In Lekki 6may11,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31618,4 Bedroom Fully Detached Duplex For Sale In Lekki 26mar29,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31619,4 Bedroom Terrace Duplex For Sale In Lekki 28apr46,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31620,4 Bedroom Terrace House For Sale In Lekki 27apr17,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31621,3 Bedroom Terrace For Sale In Lekki 14apr17,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31622,5 Bedroom Detached Duplex For Sale In Lekki 7apr41,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31623,5 Bedroom Fully Detached Duplex For Sale In Lekki 12may41,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31624,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may21,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31625,5 Bedroom Detached Duplex For Sale In Lekki 6apr34,Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31626,4 Bedroom Semi Detach Duplex For Sale In Lekki 22apr43,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31627,4 Bedroom Terrace Duplex For Sale In Lekki 23apr22,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31628,5 Bedroom Detached House For Sale In Chevy View 30may41,Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets,Other Lekki +31629,5 Bedroom Fully Detached Duplex For Sale In Osapa 01jun49,Osapa London Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +31630,5 Bedroom Detached Duplex For Sale In Ikate 30may74,Ikate Lekki Lagos,₦,"88,000,000",0,0,1,5 beds,5 baths,5 Toilets,Ikate +31631,3 Bedroom Terrace For Sale In Lekki 5may23,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31632,5 Bedroom Semi Detached House For Sale In Lekki 12may55,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31633,Land For Sale In Lekki 4may42,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31634,4 Bedroom Semi Detached Duplex For Sale In Lekki 8may36,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31635,5 Bedroom Detached House For Sale In Chevron 30may45,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31636,5 Bedroom Semi Detached House For Sale In Lekki 15may23,Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31637,5 Bedroom Detached House, Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31638,Commercial Building For Sale In Lekki 2apr44,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31639,4 Bedroom Duplex For Sale In Lekki 31mar31,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31640,3 Bedroom Terrace Duplex For Sale In Lekki 23apr18,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31641,Land For Sale In Lekki 22apr56,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31642,7 Storey Building For Sale In Lekki 01jun50,Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31643,4bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +31644,4 Bedroom Semi Detached Duplex For Sale In Lekki 9may54,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31645,4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr53,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31646,4 Bedroom Detached Duplex For Sale In Lekki 22apr63,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31647,Land For Sale In Lekki 27apr22,Lekki Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31648,4 Bedroom Semi Detached Duplex For Sale In Lekki 15apr5,Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31649,4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31650,4 Bedroom Detached Duplex For Sale In Lekki 25apr10,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31651,4 Bedroom Semi Detached Duplex For Sale In Lekki 28apr37,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31652,Land For Sale In Lekki 30mar47,Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31653,3 Bedroom Apartment For Sale In Lekki 11may59,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31654,4 Bedroom Terrace Duplex For Sale In Lekki 7apr47,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31655,4 Bedroom Terrace For Sale In Lekki 24apr57,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31656,4 Bedroom Terrace House,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31657,4 Bedroom Duplex For Sale In Lekki 31mar3,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31658,32units Of Room Self Contain For Sale In Lekki 23apr19,Lekki Lagos,₦,"80,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +31659,5 Bedroom Detached Duplex For Sale In Lekki 7may47,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31660,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr43,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31661,Land For Sale In Lekki 28mar46,Lekki Lagos,₦,"17,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31662,5 Bedroom Terrace For Sale In Lekki 8may27,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31663,4 Bedroom Detached Duplex For Sale In Lekki 15may30,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31664,5 Bedroom Detached Duplex For Sale In Lekki 15apr28,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31665,4 Bedroom Terrace Duplex For Sale In Ikota 27may96,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31666,5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar25,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31667,5 Bedroom Fully Detached Duplex For Sale In Lekki 6may21,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31668,5 Bedroom Detached Duplex For Sale In Lekki 9apr49,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31669,4 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Lekki +31670,5 Bedroom Duplex For Sale In Lekki 24apr25,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31671,5 Bedroom Detached Duplex For Sale In Lekki 3apr17,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31672,3 Bedroom Fully Furnished For Sale In Lekki 30may85,Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31673,2 Units Of 5 Bedroom Detached House For Sale In Lekki 26mar2,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31674,5 Bedroom Duplex For Sale In Lekki 15may27,Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31675,4 Bedroom Duplex For Sale In Lekki 8may6,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31676,5 Bedroom Fully Detached Duplex For Sale In Lekki 11may50,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31677,5 Bedroom Detached Duplex For Sale In Lekki 24apr61,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31678,4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr2,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31679,Land For Sale In Lekki 31mar37,Lekki Lagos,₦,"800,000",0,0,0, beds, baths, Toilets,Other Lekki +31680,5 Bedroom Fully Detached Duplex For Sale In Lekki 27apr47,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31681,4 Bedroom Terrace Duplex For Sale In Lekki 7may39,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31682,5 Bedroom Detached Duplex For Sale In Lekki 13may18,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31683,4 Bedroom Fully Detached Duplex For Sale In Lekki 8apr41,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31684,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +31685,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may56,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31686,4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr21,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31687,5 Bedroom Detached House For Sale In Chevron 30may45,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31688,5 Bedroom Fully Detached Duplex For Sale In Lekki 28mar28,Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31689,5 Bedroom Fully Detached House For Sale In Lekki 28mar27,Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31690,Uncompleted 4 Bedroom Terrace For Sale In Lekki 12may37,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31691,5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +31692,5 Bedroom Detached House For Sale In Lekki 8apr9,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31693,5 Bedroom Fully Detached For Sale In Lekki 6apr38,Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31694,5 Bedroom Fully Detached Duplex For Sale In Lekki 5may43,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31695,4 Bedroom Duplex For Sale In Lekki 24apr2,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31696,3 Bedroom Duplex For Sale In Lekki 26mar12,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31697,5 Bedroom Fully Detached Duplex For Sale In Lekki 24apr53,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31698,Land For Sale In Lekki 25mar8,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31699,4 Bedroom Semi Detached Duplex For Sale In Lekki 6may52,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31700,5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar21,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31701,4000sqm Land For Sale In Lekki 14may16,Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31702,4 Bedroom Duplex For Sale In Lekki 14apr50,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31703,4 Bedroom Semi Detached Duplex For Sale In Lekki 15may21,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31704,Land For Sale In Lekki 31mar4,Lekki Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31705,5 Bedroom Detached House For Sale In Lekki 9may23,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31706,4 Bedroom Terrace Duplex For Sale In Lekki 12may9,Lekki Lagos,₦,"26,437,500",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31707,4 Bedroom Detached Duplex For Sale In Lekki 27apr33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31708,8 Plots Of Land For Sale In Lekki 2apr14,Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31709,5 Bedroom Fully Detached Duplex For Sale In Lekki 01apr24,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +31710,4 Bedroom Semi Detached Duplex For Sale In Lekki 19may19,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31711,5 Units Of 3 Bedroom Flat,.. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +31712,Mini Flat For Sale In Lekki 30apr54,Lekki Lagos,₦,"9,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +31713,7 Bedroom Fully Detached Duplex For Sale In Lekki 21mar18,Lekki Lagos,₦,"280,000,000",0,0,0,7 beds,6 baths,6 Toilets,Other Lekki +31714,Land For Sale In Lekki 14apr36,Lekki Lagos,₦,"3,300,000",0,0,0, beds, baths, Toilets,Other Lekki +31715,5 Bedroom Fully Detached Duplex For Sale In Lekki 4may46,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31716,4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr8,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31717,4 Bedroom Semi Detached Maisonette, Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +31718,4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr24,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31719,5 Bedroom Detached Duplex For Sale In Lekki 01apr26,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31720,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr45,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31721,4 Bedroom Terraced Duplex For Sale In Lekki 30mar33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31722,4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr16,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31723,4 Bedroom Semi Detached House For Sale In Lekki 7may48,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31724,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may15,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31725,5 Bedroom Detached House For Sale In Lekki 23apr54,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31726,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr26,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31727,5 Bedroom Detached Duplex For Sale In Lekki 12may49,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31728,5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar31,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31729,5 Bedroom Duplex For Sale In Lekki 27apr4,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31730,3 Bedroom Chalet For Sale In Lekki 8may25,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31731,4 Bedroom Semi Detached Duplex For Sale In Lekki 28apr45,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31732,4 Bedroom Terrace Duplex For Sale In Lekki 21apr4,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31733,5 Bedroom Detached House For Sale In Lekki 29apr29,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31734,4 Bedroom Semi Detached Duplex For Sale In Lekki 8apr18,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31735,4 Bedroom Fully Detached Duplex For Sale In Lekki 12may42,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31736,5 Bedroom Detached Duplex For Sale In Lekki 6apr4,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31737,4 Bedroom Fully Detached Duplex For Sale In Lekki 30may82,Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +31738,5 Bedroom Fully Detached Duplex For Sale In Lekki 18apr50,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31739,4 Bedroom Semi Detached Duplex For Sale In Lekki 24apr58,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31740,4 Bedroom Fully Detached Duplex For Sale In Lekki 6apr8,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31741,4 Bedroom Terrace For Sale In Lekki 27apr54,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31742,4 Bedroom Semi Detached Duplex For Sale In Lekki 26mar23,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31743,4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr43,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31744,4 Bedroom Semi Detached Duplex For Sale In Chevron 01jun48,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31745,5 Bedroom Fully Detached Duplex For Sale In Osapa 30may81,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +31746,4 Bedroom Semi Detached Duplex For Sale In Lekki 13may2,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31747,5 Bedroom Detached Duplex For Sale In Osapa 30may93,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +31748,5 Bedroom Terrace Duplex For Sale In Lekki 31mar27,Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31749,5 Bedroom Terrace Triplex For Sale In Lekki 9apr29,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31750,4 Bedroom Fully Detached Duplex For Sale In Lekki 6may4,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31751,New Tastefully Detached 4bedroom Duplex With A Bq,Chevron Round About Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +31752,7 Bedroom Mansion For Sale In Lekki 4apr25,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Lekki +31753,4 Bedroom Semi Detached House For Sale In Lekki 23mar36,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31754,4 Bedroom Fully Detached Duplex For Sale In Chevron 27may76,Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31755,5 Bedroom Terrace Duplex For Sale In Lekki 6apr31,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31756,3 Bedroom Terrace For Sale In Lekki 5may23,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31757,5 Bedroom Detached Duplex,.. Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +31758,Land For Sale In Lekki 28mar13,Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31759,"1, 2 Bedroom Apartments For Sale In Lekki 14apr30",Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31760,4 Bedroom Fully Detached Duplex For Sale In Lekki 7may52,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31761,5 Bedroom Detached Duplex For Sale In Lekki 27mar31,Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +31762,Uncompleted 4 Bedroom Terrace Duplex For Sale In Lekki 16apr29,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31763,A School For Sale In Chevy View 01jun78,Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31764,4 Bedroom Semi Detached Duplex For Sale In Ikate 27apr00,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31765,Land For Sale In Lekki 29apr38,Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets,Other Lekki +31766,4 Bedroom Semi Detached Duplex For Sale In Lekki 18apr23,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31767,4 Bedroom Terrace For Sale In Lekki 13may59,Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +31768,4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr4,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31769,3 Bedroom Apartment For Sale In Lekki 28mar34,Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31770,4 Bedroom Penthouse For Sale In Lekki 27mar18,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31771,Land For Sale In Lekki 21apr19,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31772,4 Bedroom Semi Detached Duplex For Sale In Lekki 21apr33,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31773,4 Bedroom Terrace Duplex For Sale In Lekki 17apr16,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31774,7 Nos 3 Bedroom Flats For Sale In Agungi 17apr32,Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31775,2 Bedroom Apartment For Sale In Lekki 30mar43,Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31776,3 Units 4 Bedrooms Duplex For Sale In Lekki 16apr31,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31777,5 Bedroom Fully Detached Duplex For Sale In Lekki 29apr37,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31778,5 Bedroom Detached Duplex For Sale In Lekki 25apr12,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31779,2 Bedroom Apartment For Sale In Lekki 7may60,Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31780,4 Bedroom Semi Detached Duplex For Sale In Ikota 27apr0,Ikota Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +31781,4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr43,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31782,5 Bedroom Semi Detached Duplex For Sale In Lekki 23apr60,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31783,3 Bedroom Bungalow For Sale In Lekki 12may10,Lekki Lagos,₦,"19,299,375",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31784,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may56,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31785,4 Bedroom Apartment For Sale In Lekki 15apr44,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31786,5 Bedroom Fully Detached House For Sale In Lekki 5may47,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31787,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may26,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31788,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may47,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31789,5 Bedroom Luxury Duplex For Sale In Lekki 22apr8,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31790,5 Bedroom Detached House For Sale In Lekki 28mar38,Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31791,Land For Sale In Lekki 31mar43,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31792,4 Bedroom Semi Detach Duplex For Sale In Lekki 9apr31,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31793,5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr58,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31794,4 Bedroom Semi Detached Duplex For Sale In Chevron 9apr44,Chevron Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +31795,5 Bedroom House For Sale In Lekki 4may10,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31796,5 Bedroom Fully Detached Duplex For Sale In Lekki 28apr49,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31797,Land For Sale In Lekki 31mar54,Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31798,4 Bedroom Terrace House For Sale In Lekki 12may57,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31799,1 Bedroom Bungalow For Sale In Lekki 8may58,Lekki Lagos,₦,"10,892,250",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +31800,6 Bedroom Duplex For Sale In Lekki 31mar53,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +31801,32 Units Of Self Contain For Sale In Lekki 5may58,Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31802,4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar29,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31803,4 Bedroom Fully Detached Duplex For Sale In Lekki 7may37,Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31804,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31805,Land For Sale In Lekki 14may35,Lekki Lagos,₦,"6,750,000",0,0,0, beds, baths, Toilets,Other Lekki +31806,4 Bedroom Terrace Duplex For Sale In Lekki 01apr25,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31807,5 Bedroom Fully detached Duplex For Sale In Lekki 23apr17,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31808,5 Bedroom Duplex For Sale In Lekki 8may31,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31809,Land For Sale In Lekki 29apr13,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31810,3 Bedroom Apartment For Sale In Lekki 26mar33,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31811,1000sqm Land For Sale In Lekki 30apr36,Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31812,4 Bedroom Terrace Duplex For Sale In Lekki 29apr54,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31813,4 Bedroom Duplex Terrace Or Sale In Lekki 23apr24,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31814,4 Bedroom Terraced Apartment For Sale In Lekki 14apr10,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31815,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr39,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31816,Fully Detached 5 Bedroom Duplex For Sale In Lekki 3apr37,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31817,4 Bedroom Semi Detached Duplex For Sale In Lekki 13may57,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31818,4 Bedroom Terrace Duplex For Sale In Lekki 6may49,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31819,5 Bedroom Detached Duplex For Sale In Lekki 01apr22,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31820,4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar43,Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31821,3 Bedroom Apartment For Sale In Lekki 11may59,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31822,4 Bedroom Duplex For Sale In Lekki 9may51,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31823,4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr45,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31824,4 Bedroom Duplex For Sale In Lekki 4may48,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31825,4 Bedroom Fully Detached Duplex For Sale In Lekki 30mar18,Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31826,5 Bedroom Detached Duplex For Sale In Lekki 29apr42,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31827,5 Bedroom Fully Detached Duplex For Sale In Lekki 15apr18,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31828,4 Bedroom Semi Detached Duplex For Sale In Lekki 29apr8,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31829,5 Bedroom Fully Detached Duplex For Sale In Lekki 14apr23,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31830,4 Bedroom Semi Detached Duplex For Sale In Lekki 12may16,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31831,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may58,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31832,5 Bedroom Fully Detached House For Sale In Lekki 18apr17,Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31833,4 Bedroom Semi Detached Duplex For Sale In Lekki 15may18,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31834,4 Bedroom Semi Detached Duplex For Sale In Lekki 18may51,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31835,5 Bedroom Detached House For Sale In Lekki 29apr27,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31836,5 Bedroom Detached Duplex For Sale In Lekki 31mar50,Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31837,5 Bedroom Duplex For Sale In Lekki 2apr27,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31838,4 Bedroom Semi Detached Duplex For Sale In Lekki 13may3,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31839,4 Bedroom Duplex For Sale In Lekki 28apr42,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31840,3 Bedroom Duplex For Sale In Lekki 22may3,Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31841,20 Units Of 3 Bedroom Flat For Sale In Sangotedo 16apr32,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31842,4 Bedroom Terrace Houses For Sale In Lekki 23apr45,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31843,Land For Sale In Lekki 28mar14,Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31844,5 Bedroom Detached Duplex For Sale In Lekki 8may46,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31845,4 Bedroom Duplex For Sale In Lekki Gardens 30may30,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31846,5 Bedroom Terrace For Sale In Lekki 13may39,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31847,2 Bedroom Apartment For Sale In Lekki 16apr20,Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +31848,3 Bedroom Terrace Duplex For Sale In Lekki 27apr11,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31849,Newly Built 5bedroom Detached Duplex Sitting On 350square Meters In An Estate Very Secured,2nd Toll Gate Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +31850,4 Bedroom Terrace For Sale In Lekki 18may17,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31851,5 Bedroom Duplex For Sale In Agungi 01jun28,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +31852,Well Built 4bedroom Detached Duplex With A Bq Within A Secured Estate By Chevron Round About,Chevron Round About Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +31853,5 Bedroom Fully Detached Duplex For Sale In Chevron 30may36,Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +31854,5 Bedroom Detached Duplex For Sale In Lekki 7may3,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31855,5 Bedroom Detached Duplex For Sale In Chevron 27may30,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +31856,9 Flats Of 3 Bedrooms For Sale In Lekki Phase1 30may23,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +31857,1 Bedroom Bungalow For Sale In Lekki 12may11,Lekki Lagos,₦,"10,892,250",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +31858,4 Bedroom Duplex For Sale In Lekki 28apr40,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31859,4 Bedroom Duplex For Sale In Lekki 23apr35,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31860,4 Bedroom Terrace Duplex For Sale In Lekki 24apr59,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31861,5 Bedroom Fully Detached Duplex For Sale In Lekki 14may26,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31862,Land For Sale In Ibeju Lekki 2apr8,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31863,"Governor Consent. Brand New 4bedroom Terrace Duplex With Bq, Swimming Pool, Massive Parking Lot In Lekki Ikota Villa Estate By Mega Chicken Asking Price: 45m",Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +31864,5 Bedroom House For Sale In Lekki 28apr55,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31865,Land For Sale In Ibeju Lekki 17apr7,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31866,5 Bedroom Fully Detached Duplex For Sale In Vgc 4apr10,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +31867,3 Bedroom Flat For Sale In Lekki 4may9,Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31868,Uncompleted 4 Bedroom Duplex For Sale In Lekki 13may51,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31869,4 Bedroom Fully Detached Duplex For Sale In Lekki 9may1,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31870,4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr6,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31871,4 Bedroom Semi Detached Duplex For Sale In Lekki 7may28,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31872,4 Bedroom Semi Detached Duplex For Sale In Lekki 6apr37,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31873,5 Bedroom Fully Detached Apartment For Sale In Lekki 4may44,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31874,4 Bedroom Semi Detached Duplex For Sale In Lekki 5may33,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31875,Land For Sale In Lekki 8may15,Lekki Lagos,₦,"50,000",0,0,0, beds, baths, Toilets,Other Lekki +31876,4 Bedroom Semi Detached Duplex For Sale In Lekki 2apr33,Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31877,3 Bedroom Flat For Sale In Lekki 21apr3,Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31878,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may32,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31879,5 Bedroom Detached Duplex For Sale In Lekki 26mar43,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31880,Land For Sale In Lekki 2apr18,Lekki Lagos,₦,"8,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31881,5 Bedroom Fully Detached Duplex For Sale In Lekki 6apr17,Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31882,4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar44,Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31883,Land For Sale In Lekki 13may33,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31884,5 Bedroom Detached Duplex For Sale In Lekki 11may45,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31885,5 Bedroom Duplex For Sale In Lekki 30apr59,Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31886,5 Bedroom Detached Duplex For Sale In Lekki 2apr29,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31887,4 Bedroom Semi Detached Duplex For Sale In Lekki 11may57,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31888,5 Bedroom Detached House For Sale In Lekki 30mar19,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31889,4 Bedroom Apartment For Sale In Lekki 29apr52,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31890,Land For Sale In Lekki 14may42,Lekki Lagos,₦,"850,000",0,0,0, beds, baths, Toilets,Other Lekki +31891,4 Bedroom Terrace Duplex For Sale In Lekki 6may49,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31892,5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +31893,3 Plots Of Land For Sale In Ikota 4may60,Ikota Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikota +31894,5 Bedroom Detached Duplex For Sale In Lekki 4apr50,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31895,Land For Sale In Osapa 27may66,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Osapa London +31896,3 Bedroom Flats For Sale In Lekki 12may60,Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31897,4 Bedroom Duplex For Sale In Lekki 15apr9,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31898,4 Bedroom Duplex For Sale In Lekki 9may52,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31899,5 Bedroom Detached Duplex For Sale In Lekki 9may59,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31900,5 Bedroom Fully Detached Duplex For Sale In Lekki 30apr19,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31901,3 Bedroom Terrace Duplex For Sale In Lekki 30apr3,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31902,4 Bedroom Terrace Duplex For Sale In Lekki 31mar24,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31903,4 Bedroom Fully Detached Duplex For Sale In Lekki 8may11,Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31904,3 Bedroom Apartment For Sale In Lekki 28apr2,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +31905,4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr25,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31906,Land For Sale In Lekki 6apr3,Lekki Lagos,₦,"8,500,000",0,0,0, beds, baths, Toilets,Other Lekki +31907,5 Bedroom Fully Detached House For Sale In Lekki 9may7,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31908,5 Bedroom Fully Detached Duplex For Sale In Lekki 9apr30,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31909,4 Bedroom Terrace Duplex For Sale In Lekki 20may27,Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31910,5 Bedroom Fully Detached House In Lekki 01jun19,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31911,5 Bedroom Semi Detached Duplex For Sale In Lekki 8apr47,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31912,5 Bedroom Detached House,.. Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +31913,5 Bedroom Fully Detached Duplex For Sale In Lekki 27apr51,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31914,5 Bedroom Detached Duplex For Sale In Lekki 15apr36,Lekki Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31915,4 Bedroom Fully Detached House For Sale In Lekki 13may32,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31916,4 Bedroom Semi Detached House For Sale In Lekki 27mar6,Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +31917,5 Bedroom Detached Duplex For Sale In Lekki 7may31,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +31918,6 Bedroom Detached Duplex For Sale In Lekki 23apr55,Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +31919,4 Bedrooms Terrace And Bq,Bishopgate Residence Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +31920,4bedroom Tarrance Duplex,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31921,Newly Built 4 Bedroom Fully Detached Duplex In Daniels Garden Lekki,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +31922,Land For Sale At Lekki,"Abijo, Lekki Lagos State Lekki Lagos",₦,"10,500,000",0,1,0, beds, baths, Toilets,Other Lekki +31923,Newly Built 5 Bedroom Detached Duplex For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"79,000,000",0,1,1,5 beds, baths, Toilets,Osapa London +31924,Newly Built 5 Bedroom Detached Duplex For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,7 baths, Toilets,Osapa London +31925,Newly Built 4 Bedroom Detached Duplex For Sale In A Serene Environment,Lekki Right Hand Side By Oniru Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +31926,4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31927,5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31928,5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31929,4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +31930,This Is A Portable 2 Bedroom Terrace For Sale In Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,1 baths,1 Toilets,Ikota +31931,5 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31932,Newly Built 4 Bedroom Detached Duplex With Bq,.. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +31933,Newly Built Switchless Smart Duplex,Buena Vista Estate By By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +31934,Land For Sale In Lekki Phase 2,"Block 50, Plot 2 Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +31935,Beautiful Spacious 1 Bedroom Flat For Sale With Ensuite Bq,Off Baale Street Ologolo Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ologolo +31936,"Land For Sale In Seagate Estate, Ikate Lekki","Seagate Estate, Ikate Lekki Lagos Ikate Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +31937,Newly Built 4 Bedroom Duplex,Lekki County Homes By Megamound Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +31938,2 Bedroom For Sale,Thomos Estate Lekki Lagos,₦,"14,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +31939,"Modern Fully Automated Luxurious 4bedroom Semi Detached Duplex For Sale,this Exquisite Home",After Chevron Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31940,Plots Of Land,"Atlantic View Estate, Igbo Efon, Lekki Lagos Igbo Efon Lekki Lagos",₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31941,Newly Built 5 Bedroom Detached Duplex With Penthouse And 2 Room Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +31942,"Newly Built Luxurious 4bedroom Semi Detached Duplex For Sale,this Exotic Home Is Located At Chevron",Chevron Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31943,Newly Built With State Of The Art Facilities 5 Bedroom Fully Detached Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +31944,Brand New 4 Bedroom Semi Detached Duplex For Sale At Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31945,Land For Sale In Lekki Lagos,"Off Prince Olanrewaju Elegushi Street, Ilasan Ilasan Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +31946,Newly Built Switch Less Smart 4 Bedroom Semi Detached Duplex With A Bq,"Buena Vista Estate By Chevron Toll Gate, By Orchid Hotel Road. Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31947,Newly Built 4 Bedroom All Ensuit Semi Detached,Osapa London Jakande Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31948,"5 Bedroom Furnished Contemporary Duplex With Swimming Pool,boys Quarters In A Seren Estate. Sold With Furnitures In Side",Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths,5 Toilets,Other Lekki +31949,Newly Built 4 Bedroom Detached Duplex @ Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +31950,Exotically Built Semi Detached,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31951,Newly Built 4 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,3 beds, baths, Toilets,Chevron +31952,An Estate Plots With C Of O,"Ibeju Lekki, Shapati Lekki Lekki Phase 1 Lekki Lagos",₦,"6,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +31953,Newly Built 4 Bedroom Terrace Duplex/townhouses For Sale In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +31954,Beautiful Luxurious 4bedroom Fully Detached Duplex With 1room Bq,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31955,Contemporary Brand New Luxuriously Finished 5bedroom Detached House With Massive Space And B/q,Bera Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31956,4 Bedroom Duplex,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31957,Newly Built Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0, beds, baths, Toilets,Chevron +31958,3bedroom Flat,Ikate Lekki Lagos,₦,"45,000,009",0,0,0,3 beds,3 baths,3 Toilets,Ikate +31959,5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +31960,Newly Built 4bedroom Semi Detached Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +31961,4bedroom Tarrance Semi Duplex With Bq,Ologolo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +31962,4bedroom Tarrance Duplex With Bq,Ologolo Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31963,4bedroom Terrance Duplex With Bq,Ologolo Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +31964,Four Bedroom Semi Detached Duplex Up For Sale By Second Toll Gate,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31965,Brand New Four Bedroom Semi Detached With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +31966,"Land For Sale At Vintage Gardens And Oasis Gardens, Phase 2",Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets,Other Lekki +31967,5 Bedroom Luxury Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31968,Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +31969,"Newly Built 4bedroom Terrace, 4bedroom Semi Detached, 5bedroom Detached Duplex.",Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +31970,A 5br Semi Detached Duplex In A Mini Estate,Igbo Efon Lekki Lagos,₦,"50,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +31971,A 2 Wings 5bedroom Duplex With Good Finishing,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +31972,"Amazing 4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki, Lagos Revealed!!. (click To See The Intriguing Features)","After The 2nd Toll Gate At Chevron, Ikota, Lekki Ikota Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +31973,Luxury 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +31974,4 Bedroom Semi Detached Duplex,":behind Lekki Conversation Centre Before 2nd Roll Gate,by Chevron,lekki Lagos ,nigeria Chevron Lekki Lagos",₦,"43,000,000",0,1,0,4 beds, baths, Toilets,Chevron +31975,4bedroom Semi Detached Duplex With Bq,Ocean Bliss Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +31976,"Elegantly Built And Perfectly Finished Terrace, Semi Detached And Detached Duplexes For Sales",Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,3 baths,3 Toilets,Chevron +31977,4bedroom Terrace For Sale,Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +31978,"3 Bedroom Terrace Duplex With Bq,bella Home Court","Bella Home Court, Close To Chevron Toll Gate Axis. Lekki Phase 1 Lekki Lagos",₦,"33,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +31979,Newly Built 4bed Room Terrace Duplex,Oniru Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +31980,Newly Built 5 Bedrooms Detached House On About 420sqm Land With Governor Consent,"Oral Estate, Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +31981,"2 Units Of Newly Built 4bedrooms Terrace Duplex, With Governor Consent","Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31982,Block Of 11 Nos. Flats Available For Sale,"Oba Amusa Street, Off Ajiran Road, Agungi. Lekki, Lagos. Agungi Lekki Lagos",₦,"20,000,000",1,1,0,1 beds,1 baths,1 Toilets,Agungi +31983,"4 Units Of Newly Built 4 Bedrooms Semi Detached Houses, Each On About 210sqm Land With Governor Consent (70% Completed)","Off Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31984,2 Units Of Newly Built 4 Bedrooms Semi Detached Houses Each On About 220sqm With Deed Of Assignment (80% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31985,4 Units Of Newly Built 3 Bedrooms Flat With Governor Consent,"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +31986,1unit Of Newly Built 4 Bedrooms Semi Detached House On About 220sqm Land With Deed Of Assignment (70% Completed),"Off Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31987,Newly Built 5 Bedrooms Detached House With Governor Consent On About 550sqm (80% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +31988,Block Of Residential Flats For Sale,"Dada Fayemi Close Off Bamidele Eledu Avenue, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +31989,4 Units Of Newly Built 4 Bedrooms Semi Detached Houses + A Room Bq Each On About 210sqm With Deed Of Assignment (70% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31990,2 Units Of Newly Built 4 Bedrooms Detached Houses Each On About 350sqm With Deed Of Assignment (80% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +31991,Wing Of Duplex With Bq,"Deji Fadoju Stree, Lekki County Homes Estate, Ikota, Lekki, Lagos. Ikota Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +31992,8 Units Of Newly Built 4 Bedrooms Semi Detached Houses Each On About 280sqm Land With Governor Consent (80% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31993,2units Of 6bedroom Maisonette On 3floors (4bedroom Duplex + 2bedroom Flat) Having Ample Parking Space With C Of O (70% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"55,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +31994,"600sqm Space On 2floors Suitable For School, Hotel, Factory",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +31995,Newly Built Luxurious And Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +31996,A Newly Built 5 Bedrooms Duplex With Bq In A Serene Neighborhood,"32 J J Oladimaji Close Off Freedom Estate, Ikate Lekki Ikate Lekki Lagos",₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +31997,Brand New 4 Bedroom Semi Detached With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +31998,Nicely Build 2 Bedroom Flat With A Room Bq And Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +31999,Magnificently Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32000,"5 Bedroom Contemporary House With 1 Rooms Service Quarter And Swimming Pool, Cinema, Gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32001,A Newly Built 3 Bedrooms Duplex With Paint House And Bq In A Serene Neighborhood,"J J Oladimaji Close, Off Freedom Estate, Ikate, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +32002,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32003,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32004,Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32005,Serviced Newly Built Luxurious 4bedroom Duplex Terrence,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32006,Luxury 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32007,Newly Built Luxurious And Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32008,"Massive Land Measuring 26,800sqm Of Land For Sale",Ikota Villa Ikota Lekki Lagos,₦,"1,340,000,000",0,0,0, beds, baths, Toilets,Ikota +32009,Brand New 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32010,Magnificently Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32011,A Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,"Cheyview Estate, Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32012,Renovated 5bedroom Detached House With 2bq,... Chevron Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +32013,4 Bedroom Smart Duplex With Bq,Lakeview Park 2 Estate Lekki Phase 2 Lekki Lagos,₦,"96,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32014,Tastefully Finished 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32015,Fully Fenced *984.577* Sqm Plot Of Dry Land With Gatehouse Near Abraham Adesanya,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +32016,Newly Built 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32017,Nicely Built 2 Bedroom Flat, Ikate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +32018,Bare Land At Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +32019,Newly Built 3 Bedroom Flat For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +32020,Brand New 1 Bedroom Mini Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"29,000,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +32021,Brand New Furnished 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +32022,Newly Built Terrace Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32023,"A Duplex, 3 Units Of 3 Bedroom, 1 Unit Of 2 Bedroom And 1 Unit Of 1 Bedroom.","Abiji, Gra, Lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32024,Bulk Land For Sale,Shapati Close To Beechwood Estate Lekki Lagos,₦,"82,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32025,Executive Brand New 5bedroom Detached Duplex At Lekki.,"Lekki, Heritage Estate Monastery Road Behind Novare Mall. Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32026,"Brand New 3 Units Of 5bedrooms Duplex At Lekki Osapa London, 120m, 85m, 65m.",Lekki Osapa London. Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32027,This Magnificent Brand New 4bedroom Bedroom Terrace Duplex Is Up For Sale At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32028,This Magnificent Brand New 5bedroom Semi Detached Duplex At Okota Ville Estate Is Up For Sale,Ikota Ville Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32029,This Magnificent Brand New 4bedroom Terrace Duplex Is Up For Sale At Okota Ville Estate,Ikota Ville Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32030,Exotically Built 5 Bedroom Duplex Available Inside Lake View Estate.,Lake View Estate Orchid Road. Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32031,A Tastefully Build 3 Bedroom Duples,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 2 +32032,1096sqm Underdeveloped Plot Of Land,Twin Estate Opposite Chevron Headquarters Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Chevron +32033,A Spacious 5bedroom Fully Built Duplex With Bq,"Megamount Estate, Lekki County Estate Ikota Lekki Lagos",₦,"95,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +32034,Lovely Brand New 2 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +32035,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Ikate Elegushu Lekki Lagos.,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32036,Newly Built 4 Bedroom Semidetached,Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +32037,Newly Built 4bed Room Terrace With A Bq,Ochi Lekki Lagos,₦,"38,000,000",0,1,1, beds, baths, Toilets,Other Lekki +32038,5bd Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +32039,Premium Aesthetic 4 Bedroom Terraces Grey Gardens,"Chevron Drive, Beside Bera Estate Lekki Phase 2 Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,2 Toilets,Lekki Phase 2 +32040,2bd Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Lekki +32041,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +32042,4 Bedroom Terrace House,"Idado, Agungi Idado Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +32043,Newly Built 5bed Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +32044,4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +32045,A Newly Built 4 Bedroom Duplex Terrace,........ Ikota Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32046,Newly Built Detached Four Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32047,Newly Built 4 Bedroom Semi Detached Duplex,..... Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32048,Newly Built 4 Bedroom Semi Detached Duplex,...... Oral Estate Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32049,Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Phase1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32050,4 Bedroom Detached Duplex,Lekky County Homes Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +32051,Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32052,Newly Built 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32053,Brand New Luxuriously Finished 4bedroom Semi Detached House With Massive Space And B/q,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32054,3 Bedroom Apartments For Sale,Lekki Phase 2 Lekki Lagos,₦,"38,500,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +32055,Standard 4 Bedroom Detached In A Structured Estate,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +32056,Lovely 5 Bedroom Detached House (with Bq With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32057,Luxury Newly Built 4 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds, baths, Toilets,Chevron +32058,"Fully Automated 5 Bedroom Detached Duplex With Swimming Pool And Gym,cinema",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32059,Tastefully Finished 4 Bedroom Terrace Duplex 45m @ Cooplag Gardens Lekki,Cooplag Gardens Lekki Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +32060,Exquisite 5 Bedroom Detached Duplex By The Water,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32061,Newly Crafted 5 Bedroom Detached In A Serene Neighbourhood,"Lekky County Homes, Ikota Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32062,Elegant 5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32063,Brand New 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +32064,Super Beautiful Detached Duplex Inside Lekky County Homes,Lekky County Homes Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32065,Hottest 5 Bedroom Inside Lekky County Homes,"Lekky County Homes, Ikota Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32066,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,7 baths,8 Toilets,Ikota +32067,Jv Jakande Junction,Jakande Lekki Lagos,₦,"8,175,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32068,5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,8 baths,8 Toilets,Chevron +32069,*brand New House* *4bedroom Semi Detached Duplex With Bq*,Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +32070,4 Units Of Luxurious Terrace,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 2 +32071,Brand New House* *4bedroom Fully Detached Duplex With Bq* *,Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,1,4 beds, baths, Toilets,Lekki Phase 2 +32072,4bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 3 Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +32073,4bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +32074,4bedroom Semi Detach Duplex With Bq Lekki,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +32075,5 Bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +32076,5bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +32077,5bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +32078,4bedroom Semi Detach Duplex With Bq,Ikota Villa Estate Rd 32 Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +32079,4bedroom Semi Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32080,"Dry Bareland On 10,756 Square Metres With Approval To Reclaim Extra 2000 Square Meters",Maroko Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32081,Off Plan Sales Of Smart Homes 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq,"Buena Vista Estate, By Orchid Toll Gate Lekki Chevron Lekki Lagos",₦,"77,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32082,Newly Built Semi Detached 4 Bedroom Digital Smart Home,"Benue Vista Estate Orchid Road, Second Toll Gate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32083,3 Bedroom,Lekki Lagos,₦,"15,000,000",0,1,0,3 beds, baths, Toilets,Other Lekki +32084,Governor Consent,4bedroom Luxury Duplex @phase1 Creek Avenue Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,7 baths,7 Toilets,Ikota +32085,Newly Built 4 Bedroom Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32086,"*description* 5bedroom Luxury Detached , Location:* Lekki County",Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +32087,"Peach Garden City, Origanrigan, Ibeju Lekki",Lekki Lagos,₦,"3,600,000",0,0,0, beds, baths, Toilets,Other Lekki +32088,The Amari Gardens,"Okon Oje, Bogije, Lekki About 100 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +32089,The Amari Gardens,"Okon Oje, Bogije Lekki About 100 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32090,The Amari Gardens,"Okon Oje, Bogije, Lekki, About 10 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32091,100percent Dry Land On The Road,Abijo Gra Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +32092,4 Bedroom Duplex / 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +32093,4 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +32094,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +32095,A Lovely 5 Bedroom With Bq Fully Detached Duplex For Sale In Chevron Lekki Lagos.,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32096,This Is A Lovely 4bedroom With Bq And A Garage Semi Detached Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32097,A Lovely 5 Bedroom Fully Detached Duplex With Bq For Sale In Chevron Lekki Lagos.,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32098,This Is A 670sqm Of Land For Sale In Oral Estate Ikota Lekki Lagos.,Oral Estate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32099,This Is An 800sqm Land For Sale Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ikate +32100,6300 Sqm Of Land Approved For A School In Osapa London Lekki,Residential Esate Osapa London Lekki Lagos,₦,"630,000,000",0,0,0, beds, baths, Toilets,Osapa London +32101,"Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate, Ikate Lekki Phase",Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32102,Brand New 3 Bedroom Terrace Duplex For Sale At Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +32103,Newly Built Spacious 4 Bedroom Terrace Duplex In Ikota Lekki,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +32104,Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32105,Newly Built 4bed Semi Detached Duplex With Bq,Divine Homes Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32106,C Of O Land In Ajah,Gonimas Wealthy Kingdom Ogombo Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +32107,Newly Built Well Furnished 4 Bedroom Semi Detached Duplex With Bq Pay And Park In 2020,Daniel's Garden Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +32108,Well Built Brand New 4 Bedroom Fully Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32109,"Luxuriously Well Finished 5 Bedroom Detached House With Bq In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32110,Luxuriously Well Finished 5 Bedroom Detached House With Bq In Osapa London,Osapa London Agungi Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +32111,"Newly Built And Well Finished 4 Bedroom Terrace Duplex With Bq, Chevvy View Estate, Chevron",Chevvy View Estate Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32112,Luxury 7 Bedroom Duplex Well Finished House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,7 beds,6 baths,8 Toilets,Lekki Phase 1 +32113,Newly Built Luxury 5bedroom,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +32114,5bedroom Luxury Detached Duplex With Bq.,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,1,1,5 beds, baths, Toilets,Other Lekki +32115,*new Listing Alert!!!* *description:* 5bedroom Luxury Fully Furnished Detached Duplex With Cinema.,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds, baths, Toilets,Osapa London +32116,Magnificently Built 4bedroom Detached Duplex,Ikota Lekki Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32117,Newly Built 4 Bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +32118,Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +32119,"Fantastic Investment Opportunity Along Orchid Road, Beside Chevron, Lekki","Orchid Road, Beside Chevron Chevron Lekki Lagos",₦,"14,700,000",0,1,0, beds, baths, Toilets,Chevron +32120,Global C Of O,Iland Avenue Lekki Lagos,₦,"5,000,000",1,1,1, beds, baths, Toilets,Other Lekki +32121,For Sale: N45m Last Very Big And Spacious Luxury 3bedroom Apartment With A Bq Located At Ikate Lekki Close To Lekki Phase1 In A Private Estate Fully Serviced Buy Now,"36,ikate Road Ikate Lekki Lagos",₦,"45,000,000",0,0,0,10 beds,6 baths,6 Toilets,Ikate +32122,100percent Dry Land Along The Main Road At Lekki Phase2,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +32123,"For Sale Fantastic Fully Furnished Home In Chevy View Estate, Chevron, Lekki 5bedroom Fully Detached Self Compound. With A Swimming Pool Location: Chevy View Estate Lekki Title: Governor Consent. Selling With All The Properties Inside Land Size...",Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,1,5 beds, baths, Toilets,Lekki Phase 2 +32124,Luxury Newly Built 4bedroom Detached Duplex For Sale.,Alternative Route Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32125,Luxurious 5bedroom Detached House,Nicon Nicon Town Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32126,Luxury 5bed Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32127,Newly Built 5 Bedroom Flat,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +32128,Luxury 5bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +32129,Newly Built 4bedroom Detached,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +32130,Newly Built Luxury 4bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Agungi +32131,Newly Built Luxury 4bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Agungi +32132,5 Bedroom Semi Detached For Sale,Lekki County Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32133,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32134,Newly Built 5 Bedroom Jumbo Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32135,Luxury 4bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32136,Land For Sale,Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32137,Newly Carcass 5 Bedroom Semi Detached Duplex,"Spar Road, Ikate Lekki Ikate Lekki Lagos",₦,"57,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +32138,Newly Built Luxury Flats,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +32139,Newly Built Luxury 1bedroom Flat,Chevron Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets,Chevron +32140,Newly Built Luxury 4bedroom Townhouses,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +32141,Newly Built Luxury 5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32142,Brand New 4bedroom Terrance With Bq Lekki.,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32143,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq,Eli Court Lekki Phase 1 Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32144,For Sale 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32145,A Neatly Renovated 7 Bedroom Detached Duplex With Bq,..... Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,7 beds,5 baths,5 Toilets,Lekki Phase 1 +32146,This Is A 2000sqm Land For 3years Lease Near Mega Chicken Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Ikota +32147,This Is A 949sqm Of Land For Sale In Oral Estate Ikota Lekki Lagos.,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32148,5bedroom Duplex With 2rm Bq For Sale On 700sqms Inside Pinnock Beach Estate Osapa Lekki 380m Net,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +32149,Newly Built Smart 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate, Lekki, Lagos Lekki Lagos",₦,"77,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +32150,Newly Built 4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32151,5bedrooms Fully Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32152,A Newly Built Exquisitively Brand New 4bedroom Semi Detached Duplex With A Maid Room For Sale At Chevron Lekki By Toll Gate In A Serene Environment.,Chevron Lekki By Toll Gate. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32153,5 Bedroom Fully Detached House For Sale At Chevron Ik500,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32154,5 Bedroom Fully Detached House For Sale At Lekki Phase1 Lk484,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32155,5 Bedroom Fully Deatched Duplex For Sale At Ikota Lk622,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32156,4 Bedroom Semi Detached Duplex For Sale At Ologolo Lekki Lk853,Ologolo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +32157,5 Bedroom Fully Detached Duplex For Sale At Ikate Lekki Lk613,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +32158,4 Bedroom Semi Detached House For Sale At Osapa London Lk823,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32159,A Newly Built 4 Bedroom Duplex At Lekki,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32160,5 Bedroom Duplex For Sale At Lekki County Ikota Lk488,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32161,5 Bedroom Detached Duplex For Sale At Ikota Lk826,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32162,5 Bedroom Fully Detached Duplex For Sale,... Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32163,6 Bedroom Detached Duplex For Sale At Jakande Lekki Lk512,Jakande Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +32164,Newly Built 4 Bedroom Duplex For Sale At Lekki Lk360,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32165,5 Bedroom Fully Detached House,Lekki Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +32166,4 Bedroom Semi Detached Duplex With Bq For Sale At Lekki Lk851,Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32167,4 Bedroom Fully Detached Duplex For Sale At Osapa London Lk330,Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32168,4 Bedroom Semi Detached Duplex For Sale At Ikota Lk441,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32169,4 Bedroom Fully Detached Duplex For Sale At Chevron Lk691,Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32170,5 Bedroom Duplex For Sale At Osapa London Lk450,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32171,Newly Built 5 Bedroom Terrace House For Sale At Chevy View Lekki Lk336,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32172,4 Bedroom Semi Detached Duplex For Sale At Chevron Lk354,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32173,5 Bedroom Duplex For Sale At Chevron Lekki Lk643,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32174,4 Bedroom Semi Detached Duplex For Sale At 2nd Toll Gate Ik743,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32175,4 Bedroom Duplex For Sale At Chevy View Lekki Lk451,Chevy View Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32176,4 Bedroom Terrace Duplex For Sale At Ikota Villa Lekki Lk425,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32177,4 Bedroom Semi Detached Duplex For Sale At Ikota Lk224,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32178,Newly Built 4 Bedroom Duplex For Sale At Chevron Lk596,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32179,4 Bedroom Semi Detached Duplex For Sale At Ikota Lk385,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32180,4 Units Of 3 Bedroom & 3 Units Of 2 Bedroom House For Sale At Osapa London Lk438,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets,Osapa London +32181,3 Bedroom Apartment For Sale At Ikate Elegushi Lk374,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +32182,4 Bedroom Duplex For Sale At Lekki Phase1 Lk487,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32183,4 Bedroom Semi Detached Duplex For Sale At Ikota Lk490,... Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32184,4 Bedroom Terrace Duplex For Sale At Ikota Lekki Lk784,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32185,This Magnificent Very Nice Terrace Duplex Is Up For Sale,Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Osapa London +32186,5 Bedroom Fully Detached House For Sale At Lekki Lk433,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32187,5 Beroom Duplex With Swimming Pool & Cinema At Osapa Lk825,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32188,Executive 5bedroom Duplex At Lekki Drive Chevron For Sale.,Chevron Lekki Lagos. Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32189,4 Bedroom Terrace Duplex For Sale At Ikate Lk817,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32190,5 Bedroom Fully Detached Duplex For Sale At Orchid Road Lekki Lk535,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32191,5 Bedroom Detached Duplex For Sale At Lekki Phase1 Lk649,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32192,5 Bedroom Duplex For Sale At Lekki Lk438,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32193,5 Bedroom Fully Detached Duplex For Sale At Orchid Hotel Road Lk669,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32194,Newly Built 4 Bedroom Duplex For Sale At Lekki Lk362,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32195,Semi Detached 4 Bedroom Duplex For Sale At Chevron Lk393,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32196,"Decently Built 5 Bedroom Fully Detached Duplex With Bq Location: Chevron, Lekki For Sale.",Chevron Lekki. Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32197,4 Bedroom Terrace Duplex For Sale At Ikate Elegushi Lk511,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32198,Ensuite 5 Bedroom Detached Duplex For Sale At Lekki Lk235,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32199,Newly Built Semi Detached 5bedroom Duplex At Idado Estate,Idado Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +32200,4 Bedroom Detached House For Sale At Lekki Phase1 Lk428,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32201,4 Bedroom Semi Detached Duplex For Sale At Ikota Lekki Lk439,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32202,4 Bedroom Detached Duplex For Sale At Chevron Lk489,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32203,5 Bedroom Terrace House For Sale At Osapa London Lk437,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32204,Newly Built 5 Bedroom Fully Detached Duplex For Sale At Chevron Lk187,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32205,4 Bedroom Detached House For Sale At Orchid Road Lekki Lk429,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32206,5 Bedroom Duplex For Sale At Chevron Lk383,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32207,4 Bedroom Fully Detached House For Sale At Chevron Lekki Lk411,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32208,4 Bedroom Semi Detached Duplex For Sale At Ikota Lekki Lk 439,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32209,5 Bedroom Duplex For Sale At Chevron Lekki Lk667,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32210,4 Bedroom Duplex For Sale At Osapa London Lk834,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32211,Newly Built 4 Bedroom Detached Duplex For Sale At Ikota Lekki Lk277,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32212,Newly Built 4 Bedroom Terrace Duplex For Sale At Chevron Lekki Lk219,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32213,5 Bedroom Fully Detached Duplex For Sale At Vgc Lk581,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +32214,Ensuite 3 Bedroom Flat For Sale At Lekki Lk494,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32215,5 Bedroom Fully Detached Duplex For Sale At Chevron Lekki Lk528,Chevron Lekki Lagos,₦,"79,500,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32216,Ensuite 3 Bedroom Apartment For Sale At Lekki Lk550,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32217,Executive Brand New 3bedroom Terrace Duplex At For Sale. Idado At Lekki,Idado Lekki Lagos. Idado Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +32218,Newly Built 5 Bedroom House For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32219,5 Bedroom Fully Detached Duplex For Sale At Chevron Lk644,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32220,Neatly Built 5 Bedroom Duplex House For Sale At Ikate Elegushi Lk293,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +32221,4 Bedroom Semi Detached Duplex For Sale At Ikate Elegushi Lk833,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32222,5bedroom Duplex Available At Ikota Lagos For Sale.,Ikota Lekki Lagos. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +32223,3 Bedroom Flat For Sale At Ikota Lekki Lk595,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +32224,Tastefully Built 5 Bedroom Duplex House For Sale In Ikate Lk179,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +32225,4 Bedroom Semi Detached Duplex For Sale,... Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +32226,Newly Built 3 Bedroom Semi Detached Duplex For Sale At Lekki Lk194,Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32227,5 Bedroom Terrace Duplex For Sale At Pinnock Beach Estate Lekki Lk357,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32228,5 Bedroom Duplex For Sale At Chevron Lk742,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32229,"5 Bedroom Fully Detached Duplex(water View)with Bq, Swimming Pool And Cinema Room",Magemound Estate Inside Lekki County Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths, Toilets,Chevron +32230,600sm Land For Sale Beside Pinnock Estate,Beside Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Osapa London +32231,Governor Consent,Westend Estate By Lekki County Homes Ikota Lekki Lagos,₦,"39,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32232,Newly Built 6 Units Of 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,$,"115,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32233,Newly Built 4 Bedroom Semi Detached Duplex,"Ikota, Lekki, Lagos Ikota Lekki Lagos",$,"139,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32234,Newly Built 5 Bedroom Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",$,"257,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32235,"4 Bedroom Semi Detached Duplex With Bq For Sale In Orchid Rd, Lekki, Lagos","Orchid Road, Lekki Lekki Lagos",₦,"57,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32236,Global C Of O,Inside Beechwood Estate Bogije Along Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32237,3 Units Of 5 Bedroom Detached Houses With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32238,"5 Bedroom Fully Detached House With Pent House, Gym And Service Quarters.",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +32239,Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32240,Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32241,Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32242,Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32243,Newly Built 5 Bedroom Duplex In An Eyebrow Environment,... Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32244,"A Lovely 5 Bedroom With Bq Terrace For Sale In Agungi Lekki, Lagos.",Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +32245,Newly Built 5 Bedroom Duplex In A Very Good Enviroment,.... Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32246,Newly Built 4 Bedroom Duplex In A Serene Enviroment,.... Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32247,Luxury 4bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32248,"Exquisitely Newly 5 Bedroom Fully Detached Duplex With Cinema, Swimming Pool",Victory Park Estate Vgc Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +32249,Nicely Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32250,Luxury 5bedroom Duplex With 2room Bq And Swimming Pool.,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32251,Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32252,Luxury 5bedroom Duplex With 2room Bq And Swimming Pool.,Lekki County’ Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32253,Luxury 4bedroom Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32254,Luxury Newly Built 5 Bedroom Detached Duplex For Sale. Lekki County Home,Lekki County Home Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32255,Luxury 5bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32256,Four (4)bedroom Room Contemporary Fully Detached Duplex With Service And Laundry Room For Sale.,Lakeview Park2 Estate 2nd Tollgate Orchild Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32257,Tastefully Finished 4bed Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32258,Beautifully Finished 3 Bedroom Semi Detached Duplex,Thomas Estate Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +32259,Solidly Built 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32260,300 Sqm (facing The Express),Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32261,Luxurious 5bed Room Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +32262,An Ultra Modern 5 Bedroom Detached House For Sale At Pinnock Estate Lekki Lagos.,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32263,Self Service 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32264,An Ultra Modern 5 Bedroom Detached House For Sale At Pinnock Estate Lekki Lagos.,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32265,Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +32266,4bedroom Duplex,Silver Spring Estate Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32267,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +32268,Newly Built 5bedroom Fully Detached,Oral Estate Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +32269,7 Units Of 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1, beds, baths, Toilets,Chevron +32270,Four Bedroom Duplex With Self Contain Boys Quarter,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32271,Global C Of O,Inside Beechwood Estate Shapati Lekki Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32272,Global C Of O,Iland Avenue Lekki Phase 1 Lekki Lagos,₦,"5,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32273,"4 Bedroom Terrace + 1 Room Servant’s Quarter For Sale At Second Toll Gate, Lekki #21",Conservation Centre Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32274,New Four(4) Bedroom Semi Detached With Bq And Private Compound.,Osapa London Lekki Lagos,₦,"49,900,000",0,1,0,4 beds, baths, Toilets,Osapa London +32275,Spacious 5 Bedroom Detached House With A Room Boys Quarter,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32276,"600 Square Metres Land For Sale In Lake View Park, Lekki Peninsula Ii, Lekki",Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32277,"12.5 Acres Of Land For Along Lekki Epe Expressway, Lekki, Lagos",Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Other Lekki +32278,"A Full Detached House For Sale In Agungi, Lekki",Agungi Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Agungi +32279,1 Unit Of 3 Bedroom Terrace Apartment In Ikate Elegushi,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikate +32280,"700 Square Metres Land Measuring For Sale At Vgc, Lekki",Vgc Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +32281,"600 Square Meters Fenced Land For Sale At Buena Vista Estate, Lekki, Lagos",Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32282,"Residential Land Property Of 648 Sqm In An Estate At Chevron, Lekki, Lagos",Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +32283,4 Bedroom Terrace Duplex With 1room Bq For Sale,Chevron Driver Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32284,"21,000 Square Metres Fenced Land For Sale In Vgc, Lekki",Vgc Lekki Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +32285,"A Fantastic 500 Square Metres Land For Sale At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32286,"600 Square Meters Fenced Land For Sale At Lekki Phase 1, Lekki, Lagos",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32287,Amazing Offer: 4 Bedroom Terrace + 1 Room Bq In Ikate Elegushi,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Ikate +32288,"5 Bedroom Semi Detached House With Two Room Bq For Sale In Lekki Phase1, Lekki, Lagos",Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32289,"4 Bedroom Tastefully Finished Terrace Apartments For Sale In Lekki Conservation Centre, Lekki, Lagos",Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32290,5bedroom Luxury Fully Furnished Detached Duplex For Sale!,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths, Toilets,Osapa London +32291,Newly Built Five Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32292,A Lovely 4 Bedroom Terrace Duplex For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +32293,A Lovely And Neatly Finished 4 Bedroom With Bq Semi Detached Duplex For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32294,A Lovely And Neatly Finished 5 Bedroom With Bq Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32295,4 Bedroom Terrace Duplex For Sale,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +32296,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32297,5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32298,3 Bedroom Maisonette, Ikate Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +32299,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32300,"Newly Built 4, Bedroom Semi Detached Duplex",Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +32301,"Newly Built 4, Bedroom Semi Detached Duplex",Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +32302,Amazing 5bedroom Luxury Fully Furnished Detached Duplex With Cinema For Sale At Osapa London,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +32303,5bedroom Fully Detached Duplex For Sale At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +32304,Luxury Built 4 Bedroom Terrace Duplex In Fully Serviced Gated Estate,"Ikota Gra, Lekki, Lagos Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32305,"Newly Built Five(5) Bedrooms Duplex With Bq With The Serene Orchid Estate, Lekki","Orchid Estate, Hotel Road Lekki Lagos",₦,"95,000,000",0,1,1,5 beds, baths, Toilets,Other Lekki +32306,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32307,Newly Built 5 Bedroom Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +32308,5 Bedroom Semi Detached Duplex For Sale At Chevron Lk149,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32309,"Newly Built Smart 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq Title: Governor's Consent Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos, 87m, 65m.","Chevron Toll Gate By Orchid Hotel, Chevron Road Lekki Lagos. Chevron Lekki Lagos",₦,"87,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +32310,Luxury 4 Bedroom Terrace Duplex With A Room Bq,"Madiba Estate, Ikate Lekki Phase 1 Lagos. Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +32311,An Exquisite 4 Bedroom Semi Detached Duplex With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32312,American Standard 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32313,Spacious 4 Bedroom Duplex For Sale At Chevron Lk116,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32314,Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32315,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"79,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32316,4 Bedroom Maisonette With An In Built 1 Bedroom Bq Apartment,"Hon. Ajayi Alaba Street, Ilasan Lekki Ilasan Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +32317,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32318,4 Bedroom Super Terrace Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32319,Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32320,Exquisite 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Jakande Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32321,Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32322,5 Bedroom Power Top Notch Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32323,Nicely Fiinished 4 Bedroom Terrace Duplex,Lekki 2nd Toll Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32324,Elegant 5 Bedroom Detached Duplex For Sale In Lekki Lk142,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32325,Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32326,Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32327,Newly Built Smart 5 Bedroom Fully Detached Duplex With A Bq,Burne Vista Lekki Lagos,₦,"77,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32328,4 Bedroom Semi Detached Duplex For Sale At Agungi Lk156,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +32329,Newly Built 3 Bedroom Terrace Duplex,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32330,600 Sqm In Eminence Court,Sapati By Bogije Lekki Epe Expressway Lekki Lagos,₦,"5,200,000",0,0,0, beds, baths, Toilets,Other Lekki +32331,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32332,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32333,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32334,Urban Prime One Estate,Abraham Adesanya Road Lekki Phase 1 Lekki Lagos,₦,"14,500,000",0,0,0,1 beds, baths, Toilets,Lekki Phase 1 +32335,Newly Built 4 Bedroom Terrace Duplex For Sale,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32336,4 Bedroom Detached Duplex For Sale,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32337,4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32338,4 Bedroom Semi Detached Duplex For Sale,Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32339,5 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32340,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32341,4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32342,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32343,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +32344,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32345,Finished 4 Bedroom Fully Detached Duplex With Additional Bq,"Chevron Alternative Drive, Chevron Lekki Lagos",₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32346,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32347,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32348,Newly Built 4 Bedroom Terrace Duplex For Sale @ Lekki Chevron,Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32349,Sharp 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32350,Distress Sales 5bedroom All Ensuite,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32351,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +32352,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +32353,4bedroom Luxury Fully Detached Duplex With Bq For Sale!,Ikota Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +32354,Newly Built 4 Bedroom Detached Duplex At Daniels Garden,"Osapa London,before Agungi,before Igbo Econ,lekki Osapa London Lekki Lagos",₦,"70,000,000",0,1,1, beds, baths, Toilets,Osapa London +32355,5bedroom Luxury Fully Furnished Detached Duplex With Cinema,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +32356,3 Bedroom Apartment,Lekki Penisula Lekki Lagos,₦,"13,950,000",1,1,0,3 beds, baths, Toilets,Other Lekki +32357,4bedroom Terraces + Detached Bqs For Sale!,Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +32358,"Newly Built Luxury 5 Bedroom Detached Duplex For Sale With Bq And Swimming Pool,garden,gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32359,Elegantly Finished 3 Bedroom Flat In A Serviced Estate,Oba Akinoye Way Lekki Lagos,₦,"48,300,000",1,0,1,3 beds,0 baths,0 Toilets,Other Lekki +32360,"Vantage Court, Bogije* Owning An Apartment Has Never Been This Easy! *introducing Vantage Court,* Bogije Along Lekki/epe Expressway, Lagos.",Lekki Lagos,₦,"15,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +32361,Beautifully Built 4 Bedroom Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",1,0,1,4 beds,4 baths,5 Toilets,Ikota +32362,4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +32363,Tastefully Finished Ensuite 5bedroom Duplex With 2 Rooms Inbuilt Bq At Lekki Phase 1. Price :220million,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +32364,"Beautiful 4 Bedroom Terraced Duplex With Bq For Sale At Madiba Estate. Ikate, Lekki",Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +32365,4 Brdroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets,Osapa London +32366,A 75% Completed Ultra Modern Boutique Hotel That Can Be Converted To 120 Rooms Hotel Apartment. Selling As Uncompleted,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32367,"A Parcel Of Land Measuring Approximately 1101 Square Metres Located At Block 10 Along Admiralty Road, Lekki Phase 1.",Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32368,6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"96,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +32369,Tastefully Finished Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets,Chevron +32370,??4bedroom Terrace Duplex For Sale!,Ikota Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +32371,??3bedroom Luxury & Executive Apartments For Sale!,Chevron Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,3 Toilets,Chevron +32372,Hot Sale Well Built 12units 2bedroom Flat And 2units 4bedroom Penthouse All Rooms Ensuite With Guest Toilet,Chevron Lekki Lagos,₦,"500,000,000",0,1,1,10 beds,10 baths,10 Toilets,Chevron +32373,5bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +32374,640sqmt @ Block 20 With C Of O,"Right Hand Side, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32375,A Plot Of Land Very Close To Spg Complex Igbo Efon,Baruwa Town Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32376,???? 5bed Power Fully Detached Duplex + Bq × Swimming Pool,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +32377,Dry Land In Frontier Estate Bogije From Landway With A Title Cofo,"Bogije,lekki,inside Beechwood Estate Lekki Lagos",₦,"13,000,000",0,1,0, beds, baths, Toilets,Other Lekki +32378,Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32379,4 Bedroom Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32380,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32381,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32382,Exotic House @ Lekki. Fully Finished 3 Bedroom Terrace Duplex With Bq In A Serene Estate With Maximum Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32383,Fully Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32384,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32385,Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2 (negotiable),"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,5 baths,5 Toilets,Chevron +32386,4 Bedroom Semi Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32387,Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32388,Luxuriously House With Fully Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32389,Luxuriously House With Fully Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32390,Tastefully Built 4 Bedroom Detached Duplex In A Serene Estate,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +32391,1unit Of A Newly Built 4 Bedroom Terrace Duplex With Bq In A Serene Estate.,Lekki 1 By Petrocan Filling Station Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32392,3 Bedroom Fully Detached Apartment,Bogije Along Lekki/epe Express Way Lekki Lagos,₦,"21,000,000",0,1,1,3 beds, baths, Toilets,Other Lekki +32393,Newly Built Modern 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +32394,Exquisite 4 Bedroom Semi Detached Duplex For Sale In Ikota Lk054,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32395,5 Bedroom Duplex With Bq For Sale In Chevron Lk70,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32396,Newly Built 4 Bedroom Semi Detached House For Sale In Chevron Yb036,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32397,Newly Built 5 Bedroom Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32398,Tastefully Built 3 Bedroom Penthouse Apartment For Sale In Lekki Lk031,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32399,Distressed Sale Newly Built Four Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,5 beds,4 baths,5 Toilets,Osapa London +32400,Spacious 4 Bedroom Semi Detached Duplex For Sale In Ikota Lk038,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32401,Newly Built Contemporary Fully Detached Five Bedroom Duplex At Ikate Lekki,Off Mercedes Benz Factory At Chisco Bustop At Third Round About Ikate Lekki Ut Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +32402,Super Newly Built Contemporary And Luxurious 4bedroom Terraced Duplex In A Super Secured And Gated Estate In Ikota Lekki,Gates Estate In Ikota Lekki Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32403,4 Bedroom Terrace Duplex With Swimming Pool For Sale In Ikate Lk094,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32404,Newly Built 5 Bedroom Detached House For Sale In Lekki Lk076,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32405,4 Bedroom Semi Detached Duplex For Sale In Chevron Lk058,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32406,Plot Of Land Measuring 340 Square Meters,Eletu Way Osapa London Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Osapa London +32407,Newly Built 6 Bedroom Detached House For Sale In Lekki Phase1 Lk067,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +32408,"Newly Built 4 Bedroom Semi Detached Duplex At Ikota Gra, Lekki",Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,3 baths,3 Toilets,Ikota +32409,Serviced And Newly Built 4 Bedroom Terrace House With Bq,Conservation Road By Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32410,Tastefully Finished 5 Bedroom Detached House With Bq,Muritala Eletu Way Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32411,Ensuite 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk032,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32412,Ensuite 4 Bedroom Duplex For Sale In Osapa London Lk095,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32413,Newly Built 4 Bedroom Semi Detached,Off Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +32414,Ensuite 2 Bedroom Flat For Sale In Lekki Lk049,Lekki Lagos,₦,"25,500,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +32415,Newly Built Contemporary And Luxurious Five Bedroom Detached Duplex With Bq Sited On 360sqm Land In Osapa London Lekki,Inside A Great Mini Estate At Osapa London Lekki Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32416,5bedroom Full Detach For Sales,Agungi Agungi Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +32417,Amazing 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk050,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32418,Elegantly Built 4 Bedroom Semi Detached Duplex For Sale In Chevron Lk051,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32419,Newly Built 4 Bedroom Terrace Duplex For Sale In Ikota Lk052,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32420,4 Bedroom Terrace Duplex For Sale In Chevron Lk066,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32421,Newly Built 5 Bedroom Detached Duplex For Sale In Lekki Lk053,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32422,4 Bedroom Semi Detached House For Sale In Lekki Lk077,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32423,4 Bedroom Terrace Duplex For Sale At Agungi Lk068,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +32424,5bedroom Full Detach For Sales,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +32425,Newly Built 5 Bedroom Fully Detached Duplex With A Bq With Governor's Consent In Lekki,"Beuna Vista Estate By Chevron Toll Gate Lekki, By Orchid Hotel Road Lekki Ikota Lekki Lagos",₦,"77,000,000",1,1,1,5 beds, baths, Toilets,Ikota +32426,Fully Detached 5 Bedroom Duplex For Sale In Lekki Lk097,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32427,Elegant 5 Bedroom Fully Detached Duplex For Sale In Chevron Lk090,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32428,Ensuite 4 Bedroom Duplex For Sale In Lekki Lk088,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32429,Contemporary 6 Bedroom Duplex For Sale In Lekki Lk089,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +32430,Elegant 5 Bedroom Fully Detached Duplex For Sale In Ikota Lk093,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32431,Spacious 5 Bedroom Fully Detached Duplex For Sale In Osapa London Lk065,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32432,Finished 4 Bedroom Apartment For Sale In Lekki (wealthland Garden Lekki),"Oribanwa,lekki Peninsula Lagos Lekki Phase 1 Lekki Lagos",₦,"19,975,000",0,1,0,2 beds,3 baths,4 Toilets,Lekki Phase 1 +32433,Newly Built Contemporary Five Bedroom Semi Detached Duplex House,Off Freedom.way Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +32434,Newly Built 4 Bedroom Terrace House With One Room Service Quarter,"Off Orile Ilasa Iroko Awe Road, Elegushi Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +32435,Newly Built Smart 5 Bedroom Fully Detached With A Bq And Swimming Pool,Off Kazeem Eletu Way Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +32436,4bedroom Semi Detach Duplex With Bq For Sale In Lekki,Chevron Toll Gate Lekki Ikate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds, baths, Toilets,Ikate +32437,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Lekki.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32438,Newly Built And Tastefully Finished 5 Bedroom Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32439,Well Maintained Seven Bedroom Commercial Building With Two Rooms Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,5 baths,5 Toilets,Lekki Phase 1 +32440,This Is A Lovely 5bedroom With Bq Fully Detached Duplex For Sale In Osapa London Lekki Lag.,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32441,Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32442,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32443,Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32444,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32445,Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32446,Newly Built 4bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32447,Nicely Finished 2 Units Of 4 Bedroom Terrace Houses With A Room Boys Quarters At Osapa,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +32448,5bedroom Super Ultra Modern House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32449,Newly Built 5 Bedroom Detached Apartment On 450sqm For Sale,Lekki 1 Left Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32450,Tastefully Finished And Fitted 3 Bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +32451,4000sqm Land For Sale On Lekki Epe Expressway,Lekki Express Way Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +32452,Five Bedroom Fully Detached Duplex With One Rooms Boys Sited On About 400 Square Meters Of Land At Lekki,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +32453,Neatly Finished 4 Bedrooms Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32454,Newly 3bed Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +32455,Beautifully Finished 4bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32456,Corner Piece 1050sqm Land For Sale In Lekki Phase 1,Off Bisola Durosinmi Ettti Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +32457,Brand New 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32458,Newly Built 4bed Semi Detached Duplexe,2nd Toll Gate Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32459,Exquisitely Built 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32460,Neatly Finished 5bed Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +32461,Newly Built 4bed Semi Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +32462,Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32463,Massive 5 Bedroom Detached Duplex For Sale In Pinnock Estate Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32464,4bedroom Terrace Property,"Bishopsgate Residences, Kusenla Road Ikate Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +32465,"*distress Sale.... 3 Bedroom Terrace With A Room Bq , Lekki Phase 1.",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +32466,4 Bedroom Duplex With A Boy's Quarters,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32467,2528sqm Land For Sale At Lekki Epe Express,Lekki Epe Express Way Jakande Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +32468,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +32469,1150sqmt Land @ Block 41,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +32470,Well Designed 4 Bedroom Apartment Available For Sale In A Premium Estate,Bella's Court Ikate Lekki Lagos,₦,"37,500,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +32471,Exotic 4 Bedroom Terraced Duplex (smart Home),Beside Ikota High School Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32472,4 Bedrooms Fully Detached Duplex (smart Home),Daniel's Garden Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +32473,648 Square Meter Of Land,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32474,Luxury 4 Bedroom Duplex With Additional 2 Bedrooms Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +32475,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Additional 2 Bedrooms Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +32476,1280sqmt Of Land @ Elegushi Lekki,Elegushi Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32477,Exotically Finished 4 Bedroom Semi Detached Duplex With Additional 2 Bedrooms Bq,Located Between Chevron And Vgc Ikota Lekki Lagos,₦,"45,000,000",0,1,0,6 beds,6 baths,6 Toilets,Ikota +32478,Impeccably Finished 4 Bedroom Semi Detached Duplex In A Serene Environment,"Abraham Adesanya, Before Lagos Business School Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Lekki +32479,583sqmt With C Of O @ Block 42,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32480,4 Bedrooms Terraced Triplex Available,Bella's Court Ikate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +32481,Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q,Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32482,Lone Block Of Well Finished 4 Units 3 Bedroom Luxury Apartments, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +32483,Newly Built Luxury 4bedroom Terrace Duplex’s With 1room Bq,Estate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32484,2110 Square Meter Of Land @ Elegushi,Elegushi Lekki Phase 1 Lekki Lagos,₦,"435,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32485,Top Notch 4 Bedroom Semi Detached Duplex With Bq,Few Mins Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +32486,A Newly Built 5bedroom Duplex,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,6 beds,6 baths,6 Toilets,Lekki Phase 1 +32487,4 Bedrooms Terrance Duplex With A Room Bq For Sale,Ikate Elegunshi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32488,Tastefully Finished 5 Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32489,Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32490,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32491,Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32492,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32493,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32494,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32495,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +32496,Excision In Process (file Number L Sd/exc/91/ibeju),Lekki Phase 1 Lekki Lagos,₦,"850,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +32497,Governor's Consent,"Lekki County ,lagos Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +32498,Global C Of O,Lekki Phase 1 Admiralty Road Behind Devido Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +32499,3 Bedroom Terrace Duplex With Bq At Bella Homes 1,Toll Gate Axis Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Chevron +32500,Newly Built 4bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32501,Newly Built 4bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32502,Governor’s Consent,Lapai Street Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +32503,5 Bedroom Detached Triplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +32504,For Sale; Brand New 5 Bedroom Detached House With A Boy's Quarters In Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +32505,For Sale; Contemporary 3 Bedroom Townhouse In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32506,Lekki House; Exotically Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets,Chevron +32507,Luxuriously Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32508,Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32509,Exotically Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32510,12 Units 1 Bedroom Solar Powered Mini Flat (off Plan),Ologolo Lekki Lagos,₦,"16,000,000",1,1,0,1 beds,1 baths,1 Toilets,Ologolo +32511,4 Bedroom Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +32512,4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +32513,Luxury 4 Bedroom Terraced Duplex,Creek Avenue Court Phase 2  Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32514,"Newly Built Two Wing Apartments In Commercial Side Of Abijo Gra, Lekki","Abijo Gra, Lekki Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +32515,Newly Built Four Bedroom Duplex In A Serene And Luxurious Area,Chevron Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +32516,"Brand New 5 Bedroom Detached Duplex With Bq In A Serene Estate Environment ! —— Location : Ikota, Lekki , Lagos State.",Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32517,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32518,Luxury 5 Bedroom Detached Triplex In A Beautiful And Serene Estate,"Ikota Villa, Behind Mega Chicken, Lekki Ikota Lekki Lagos",₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +32519,Offplan 5bedroom Contemporary House With A Service Bq,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +32520,Governor's Consent,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +32521,4bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32522,Newly Built Five Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +32523,"For Sale; 4 Bedroom Fully Detached House In Pinnock Beach Estate, Osapa London",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32524,This Is A Lovely 4bedroom Semi Detached Duplex For Sale In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32525,For Sale; Contemporary 5 Bedroom Detached House In Agungi,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +32526,A Newly Built 5 Bedroom Duplex,...... Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32527,Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32528,4 Bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32529,4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32530,Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32531,Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32532,Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32533,"20,000 Sqm Of Land Facing Lekki Epe Expressway (200,000 Per Sqm)",Lekki Ajah Expressway Ilasan Lekki Lagos,₦,"20,000",0,0,0, beds, baths, Toilets,Other Lekki +32534,Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32535,3 Bedroom Terrace House,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +32536,Very Spacious 3 Bedroom Apartment With Bq In Ikate,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +32537,Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32538,Tastefully Built 5 Bedroom Apartments,Ikate Lekki Lagos,₦,"88,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +32539,Newly Built 5 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +32540,Newly Built 4 Bedroom Detached Duplex With Bq In Ikota Lekki,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +32541,Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32542,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32543,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32544,"Newly Built 1 & 2 Bedroom Apartments Sangotedo, Ajah",", Lekki Phase 2 Lekki Lagos",₦,"13,000,000",0,1,0,1 beds, baths, Toilets,Lekki Phase 2 +32545,Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32546,Newly Built 3bedroom Terrace With A Bq,Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +32547,Newly Built 4bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ologolo +32548,Beautiful 5bedroom Detached Duplex With 2rooms Bq For Sale,Kenneth Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32549,New 2 Bedroom Flat,Lekki Epe Expressway Before Shoprite Sangotedo Lagos Lekki Lagos,₦,"21,000,000",1,1,1,2 beds,3 baths,3 Toilets,Other Lekki +32550,4 Bedroom Fully Detached Duplex For Sale. Price: 65m,Beautiful Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32551,Massive 5 Bedroom Duplex With A Bq For Sale. .,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32552,Vacant Plot Measuring 960sqms With A Readymade Architectural Drawing/plan For A Shopping Mall,"Road 14/adebayo Doherty, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"245,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32553,"Fully Fitted With Turkish Kitchen Fiiting 4 Bedroom Terrace @ Bourdillon Court, Chevron",Bourdillon Court Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets,Chevron +32554,Luxury 5bedroom Detached Mansion With Swimming Pool And Cinema For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32555,Newly Built 4bedroom Ultra Luxury House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,6 Toilets,Osapa London +32556,2 Bedroom Luxury Terrace Apartment,"Off Alpha Beach Road, Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +32557,Luxury Newly Built 4 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32558,4 Bedroom Fully Detached Duplex Sitting On 507sq.m Of Land,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikota +32559,Fully Furnished And Fitted 5 Bedroom Detached House @ Carlton Gate Estate,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +32560,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32561,Newly Built 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +32562,Brand New 4 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +32563,Builtifully Finished 5bed Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +32564,Newly Built 2 Bedroom Flat,"Chevron, Lekki Chevron Lekki Lagos",₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets,Chevron +32565,Brand New 4 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +32566,"4 Bedroom Terrace In Lekki 1, Freedom Way. Each Room Ensuite, 3 On 2nd Floor, Master On Top Floor. One Bq Ensuite Embedded At The Back. With Deed Of Sublease",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32567,Plots Of Land (20) For Sale.,Lekki Epe Expressway Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +32568,Lovely Brand New 4 Bedroom Terrace Duplex For Sale At Lekki Right,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32569,A Luxury 5bedroom Fully Detached Duplex With A Swimming Pool,Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +32570,Newly Built 2 Bedroom Apartments,"Ikate, Lekki Ikate Lekki Lagos",₦,"42,000,000",0,1,0,2 beds,3 baths,3 Toilets,Ikate +32571,Newly Built 3 Bedroom Apartments For Sale,"Ikate, Lekki Ikate Lekki Lagos",₦,"42,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +32572,Brand New Luxury 3 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +32573,5 Bedroom Fully Detached House With Bq For Sale In Lekki Phase1 Yb044,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32574,Exquisite 2 Units Of 5 Bedroom Duplex For Sale In Lekki Yb018,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32575,4 Bedroom Semi Detached Duplex For Sale In Chevy View Yb011,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32576,Luxurious 5 Bedroom Fully Detached House For Sale In Osapa London Yb008,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32577,4 Bedroom Duplex For Sale In Lekki Lk022,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32578,Newly Built 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk025,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32579,Tastefully Built 5 Bedroom Spacious House For Sale In Lekki Yb019,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32580,Newly Built 3 Bedroom Ensuite Flat With Swimming Pool For Sale In Lekki Yb008,Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32581,4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lk005,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32582,Tastefully Finished Luxury Apartments At Oral Estate Ikota Lekki Lagos.,"Oral Estate Ikota, Lekki Ikota Lekki Lagos",₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +32583,2 Units Of 5 Bedroom Detached Duplex For Sale In Lekki Phase1 Yb053,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32584,Executive Brand New 4bedroom Duplex With A Bq At Orchid Road Lekki.,"Beuna Vista, Orchid Road, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32585,2 Bedroom Flat (carcass) At Lekki Paradise Iii Along Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"22,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +32586,Newly And Well Built 2 And 3 Bedroom Flats In An Apartment Building Located In A Serene Environment In Lekki.,Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +32587,Stylishly Built 4 Bedroom Duplex With Swimming Pool In Ikota Yb043,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32588,Newly Built 4 Bedroom Semi Detached House For Sale In Osapa London Lk027,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +32589,Ensuite 5 Bedroom Fully Detached House For Sale In Lekki Phase 1 Yb050,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32590,5 Bedroom Fully Detached Duplex For Sale In Osapa London Yb003,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32591,4 Bedroom Semi Detached Duplex With Bq For Sale In Ikota Yb054,Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32592,Newly Built Full Smart Home Enabled Semi Detached And Fully Detached Duplexes With Boys' Quarters,Orchid Road By Chevron Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32593,3 Bedroom Detached House For Sale In Ilasan Lekki Yb033,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32594,Extravagant 6 Bedroom Fully Detached House With 2 Bq For Sale In Lekki Yb043,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +32595,5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate Lk026,Chevron Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32596,Tastefully Built 5 Bedroom Fully Detached Duplex For Sale In Ikate Lekki Yb027,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +32597,Elegantly Built 5 Bedroom Detached Duplex For Sale In Lekki Yb005,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32598,10 Units Of 5 Bedroom Fully Detached Duplex For Sale In Chevron Lk008,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32599,Ensuite 4 Bedroom Terrace Duplex For Sale In Ikota Yb048,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +32600,Ensuite 4 Bedroom Fully Detached Duplex For Sale In Lekki Lk023,Lekki Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32601,4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Yb049,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32602,Stylish Built 4 Bedroom Duplex For Sale In Lekki Yb036,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32603,Newly Built 5 Bedroom Detached Duplex For Sale In Lekki Lk001,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32604,4 Bedroom Semi Detached Duplex For Sale At Orchid Road Lekki Yb029,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32605,Newly Built 5 Bedroom Detached Duplex With Bq For Sale In Lekki Yb025,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32606,6 Bedroom Fully Detached Duplex With 2 Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +32607,Elegant 6 Bedroom Fully Detached Duplex For Sale In Lekki Yb035,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +32608,Newly Built 5 Bedroom Apartment,Victory Park Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +32609,4 Bedroom Semi Detached Duplex For Sale In Lekki Yb017,Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32610,Elegant 5 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Yb002,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32611,Newly Built 5 Bedroom Duplex For Sale In Lekki Lk021,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32612,5 Bedroom Fully Detached House With Cinema Room For Sale In Lekki Yb020,Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32613,Elegantly Built 5 Bedroom Detached Duplex For Sale In Lekki Yb005,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32614,Newly Built 4 Bedroom Semi Detached House For Sale In Lekki Lk013,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32615,Ensuite 5 Bedroom Fully Detached House For Sale In Ikota Lk020,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32616,4 Bedroom Semi Detached Duplex For Sale In Ikate Yb027,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32617,Contemporary 5 Bedroom Detached Duplex With Bq For Sale Yb008,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32618,4 Bedroom Fully Detached Duplex (carcass) Located In A Serene Estate Behind Novare Mall (shoprite) Sangotedo,"Ablag Avenue, Off Cardinal Anthony Olubunmi Okogie Road, Behind Novare Mall, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32619,Fully Detached 5 Bedroom Duplex With Swimming Pool For Sale Yb021,Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +32620,4 Bedroom Semi Detached Duplex For Sale In Chevron Yb024,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32621,Exquisite 4 Bedroom Detached Duplex For Sale In Lekki Yb010,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32622,3 Bedroom Terrace Duplex With Bq For Sale In Lekki Phase1 Lk014,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32623,Ensuite 4 Bedroom Fully Detached Duplex For Sale In Lekki Lk009,Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32624,Newly Built 4 Bedroom Terrace Duplex For Sale In Ikate Lekki Yb026,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32625,Amazing 5 Bedroom Fully Detached Duplex With Bq For Sale In Vgc Lekki Yb033,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +32626,Extravagant 5 Bedroom Luxury Massionette Duplex For Sale In Lekki Yb001,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32627,Newly Built 4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +32628,Newly Built 4 Bedroom Semi Detached Duple + Bq,Oba Amusa Estate Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +32629,C Of O Land For Sale In Lekki Lagos,Ajah Lekki Lagos Chevron Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +32630,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,After Chevron Toll Gate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +32631,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Toll Gate,ikota Lekki,lagos Ikota Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +32632,Land For Sale In Lekki Lagos,Off Orchid Hotel Road By Chevron 2nd Toll Gate Lafiaji Lekki Chevron Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets,Chevron +32633,Luxury 4 Bedrooms Terrace Duplex For Sale In Lekki Chevron Lagos,After The 2 Toll Gate At Chevron Ikota Lekki Lagos Ikota Lekki Lagos,₦,"37,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +32634,Luxury 3 Bedroom Terrace Duplex With Bq,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,4 Toilets,Chevron +32635,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Lagos,Chevron Alternative Drive Lekki Lagos Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,5 baths,6 Toilets,Chevron +32636,Plots Of Land,Ikate Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32637,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,"Creek Avenue Court Phase 2 ,ikota Lekki Lagos Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +32638,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Dli Court Lekki,"Eli Court,chevron Alternative Drive,lekki,lagos State Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32639,3 Bedroom Terrance Duplex With Bq,"Bella Homes 1,close To Chevron Toll Gate Axis,lekki Chevron Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Chevron +32640,Luxury Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +32641,Luxury 5 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +32642,Serviced 4 Bedroom Terrace Duplex With Bq In Lekki Phase 1,Elf Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32643,Luxury 5 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32644,Elegant 5 Bedroom Fully Detached House For Sale In Lekki Vi004,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32645,Family Friendly Ikate Lekki Terrace House 4bedroom Terraces + Detached Bqs For Sale,"Ikate Lagos, Lekki, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +32646,Family Friendly Ikate Lekki Terrace House 4bedroom Terraces + Detached Bqs For Sale,"Ikate Lagos, Lekki, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +32647,A Beautiful 4 Bedroom Semi Detached Duplex With A Room Boys Quarter,Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +32648,Governor Consent,"Within Richland Estate,bogije Along Lekki Epe Expressway. Lekki Phase 1 Lekki Lagos",₦,"21,000,000",0,1,1,3 beds,2 baths,2 Toilets,Lekki Phase 1 +32649,Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +32650,A Tastefully Finished 5 Bedroom Terrace Houses With One Room Bq In A Good Location,"1 Babs Animashaun Street Lekki Phase 1, Lekki Chevron Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +32651,Brand New 2 Bedroom Terrace Duplex In A Self Compound,Igbo Efun Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,3 baths, Toilets,Other Lekki +32652,Newly Built 4 Bedroom Semi Detached + Bq,Eletu Mudashiru Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +32653,A Beautiful 5 Bedroom Fully Detached Duplex With A Rooms Boys Quarter,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +32654,Brand New 4bedroom Semi Detached Duplex With A Room Bq .,Ikota Villa Ikota Lekki Lagos,$,"90,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +32655,5badroom Luxury Fully Detached + Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32656,5bedroom Luxury Fully Detached Duplex With Swimming W,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32657,5 Bedroom Detached Duplex For Sale,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,7 baths,7 Toilets,Ikota +32658,5 Bedroom Detached Duplex For Sale / Fully Ensuited Ensuited,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets,Osapa London +32659,"Serviced, Newly Built 4 Bedroom Terrace Duplex",Off Road 2 Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +32660,4 Bedroom Terrace Duplex For Sale / Fully Ensuited,"2nd Toll Gate, Eleganza Vgc Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,5 baths,6 Toilets,Victoria Garden City +32661,Contemporary 4 Bedroom Terrace Duplex (exquisitely Furnished),Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +32662,Newly Built 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +32663,"Newly Built 4bedroom Semi Detached Duplex, All Ensuited",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32664,Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +32665,"Newly Built 4bedroom Semi Detached Duplex , All Ensuited",Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32666,"Newly Built 4 Bedroom Semi Detached Duplex, All Ensuited",Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32667,"Newly Built 4 Bedroom Semi Detached Duplex, All Ensuited",Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32668,Newly 5 Bedroom Detached Duplex All Ensuited,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +32669,Land For All,Lekki Phase 2 Lekki Lagos,₦,"650,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +32670,5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,7 baths,7 Toilets,Osapa London +32671,"5bedroom Fully Furnished Executive Luxury Duplex With Swimming Pool, Bq For Sale",Chevron Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +32672,"5bedroom Fully Furnished Executive Luxury Duplex With Swimming Pool, Bq For Sale",Chevron Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +32673,"Luxury Finished 4bedroom Semi Detached Duplex With Bq In Eli Court, Lekki","Chevron Alternative Drive, Lekki Chevron Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32674,4bedroom Fully Detached Duplex With Bq In Creek Avenue Court Phase2,After Chevron Tollgate Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +32675,Newly Built 4 Bedrooms Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32676,7 Bedroom Duplex For Sale,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,8 baths,8 Toilets,Lekki Phase 1 +32677,4 Bedrooms Terrace,"Otunba, Steve Ajose Close. Ilasan Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +32678,For Sale; 4 Bedroom Semi Detached Duplex With A Bq In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +32679,This Is A Lovely 4bedroom Terrace Duplex With Bq For Rent In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32680,For Sale; Lovely 5 Bedroom Duplex In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +32681,For Sale; 4 Bedroom Semi Detached Duplex With Ologolo,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +32682,For Sale; Newly Built 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32683,For Sale; Newly Built & Fully Serviced 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32684,This Is A Lovely 4bedroom Terrace Duplex With Bq For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32685,This Is A Partly Furnished 4bedroom Terrace Duplex For Rent In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32686,Lovely 4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32687,2 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"27,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +32688,For Sale; Newly Built 5 Bedroom Fully Detached Duplex With A Bq In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32689,This Is A 4bedroom Semi Detached Duplex For Sale In Igbo Efon Lekki Lag.,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32690,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32691,Beautifully Finished 3 Bedroom Terrace Duplex With Bq,"Located At Orchid Road Axis, 2nd Toll Gate Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32692,Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32693,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,0 beds,0 baths,0 Toilets,Chevron +32694,Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Pinnock Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32695,Mixed Used Land,Lekki Ologolo Lekki Lagos,₦,"100,000,000",0,0,0, beds,3 baths, Toilets,Ologolo +32696,Newly Built 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32697,"New 4 Room Detarched Duplex All Rooms Ensuit,fully Furnished With Fitted Kitchen. Brand New 20kva Mikano Generator, 3 Units Of 65 Inches Samsung Tvs, 6 Units Of Two Horse Power Air Conditionalr,1 Fridge With A Freezer, Dstv, Cctv, Electric Automated Gates",. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,6 beds,6 baths,6 Toilets,Lekki Phase 1 +32698,"Newly Built Office Complex On 600qms In An Office Environment, Consist Of Two Floors And Each Floor Size Is 250qms.",. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0, beds,6 baths,6 Toilets,Lekki Phase 1 +32699,Newly Built,Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths, Toilets,Osapa London +32700,Newly Built 5 Bedrooms Detached Duplex With Bq,By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32701,Beautiful 3 Bedroom Apartment Available For Sale And Rent,Primewater Gardens Ikate Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets,Ikate +32702,* Four Bedroom Detached. Duplex In A Serene Apartment With A Fitted Kitchen,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32703,Newly Built Executive 5bedroom Duplex With 2 Sitting Room At Lekki Ph2 In A Very Good Environment For Sale.,Lekki Ph2 By 2nd Toll Gate Lagos. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +32704,Lone Block Of Well Finished 4 Units 3 Bedroom Luxury Apartments With Generous Internal And External Spaces,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32705,A Brand New Office Complex With Approximately 1400 Sqm Lettable Space On 5 Floors,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32706,Newly Built 5bedroom Duplex,Osaka London Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +32707,"A Bareland On Measuring 10,756 Square Metres With Approval To Reclaim 2000 Sqm At A Unique Selling Point",Maroko Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32708,5 Bedroom Detached House With A Room Boys Quarter,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32709,"A Parcel Of Developable Land, Rectangular In Shape, Level And Well Drained. Measuring 3,428.00 Sq.",Victoria Garden City Vgc Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +32710,3 Bedroom Flat,Abraham Adesanya Lekki Lagos,₦,"15,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +32711,For Sale; Lovely 4 Bedroom Semi Detached Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32712,For Sale; Beautiful 5 Bedroom House With A Room Bq In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32713,"For Sale; Land Measeuring 1000sqm On Admiralty Road, Lekki Phase 1",Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32714,For Sale; Lovely 3 Bedroom Detached Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32715,For Sale; 4 Bedroom Terrace Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32716,"For Sale Br Anda New 5 Bedrooms With 1bq Fully Detached Duplex Located At Lekki, Lagos",Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +32717,A Well Finished 4 Bedroom Semi Detached Duplex With Maids Room For Sale At Lekki Right.,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets,Lekki Phase 1 +32718,Newly Built Ultra Modern 5 Bedroom Detached Duplex For Sale At Pinnock Estate Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32719,"Beautiful, Luxurious And Neatly Finished 4bed Dup With Bq",Lekki County Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32720,4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +32721,A Well Finished 4 Bedroom Semi Detached Duplex With Maids Room For Sale At Lekki Right.,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets,Lekki Phase 1 +32722,New 5 Bedrooms With 1 Room Bq Fully Detached Duplex,Lekki Lagos,₦,"12,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +32723,Neatly Finished And Luxury 4bed Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +32724,"4 Bedroom Terrace Duplex With Swimming Pool,gym And 18hrs Power Supply For Sale.",Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +32725,1 Acre Of Land, Jakande Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +32726,4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +32727,4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +32728,Luxurious & Spacious Bedroom Detached Duplex With Excellent Finishing,Lakeview Park 2 Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +32729,Newly Built 4bedrooms Terrace House,"Nicon Town Area, Sharing Fence With Updc Romay Garden Ikate Lekki Lagos",₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +32730,Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32731,4units Of 5bedroom Fully Detached Duplex With 1bq Each,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32732,Luxury 5 Bedroom Detached Duplex With Swimming Pool And Cinema For Sale,Pinnock Beach Estates Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +32733,"A Highly Contemporary 5 Bedroom Duplex Apartment At Estate, Chevron Drive, Lekki, Lagos.",Estates Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32734,4 Bedroom Semi Detached Duplex For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32735,Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Enclave Ikate(3rd Round About) Lekki Phase 1 Lagos Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths, Toilets,Ikate +32736,A Land In An Arcade Surroundings And Exceptional Estate Living With The Title: Governor’s Consent. Initial Deposit Of N5m Can Be Made And Pay Balance Installmentaly.,Abraham Adesanya Ologolo Lekki Lagos,₦,"33,000,000",0,1,0, beds, baths, Toilets,Ologolo +32737,"Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Interlock Estate Compound . You Can Pay N10m And Park In , Then You Pay The Balance In Installment On The Special Promotion.","After The Second Toll Gate,chevron Alternative,ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +32738,Newly Built 5bedroom Fully Detached Duplex,....... Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32739,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32740,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32741,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32742,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32743,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki. Pay And Pack In.,"Location: Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"56,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +32744,"Destiny Gardens,lagos Nigeria",Lekki Phase 1 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32745,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Lekki,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +32746,Exotically En Suite 4 Bedroom Terrace Duplex With Industrial Borehole And Interlocked Road From Expressway. Payment Can Be Made In Installment With Initial Deposit Of N7m,"After Second Toll Gate,ikota Lekki Lagos",₦,"37,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +32747,Spacious 8 Rooms Duplex For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,9 baths,8 Toilets,Lekki Phase 1 +32748,6 Bedroom Duplex With 2units Of 3 Bedroom Flats Attached For Sale At Ajah,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,6 beds,7 baths,7 Toilets,Chevron +32749,"Exquisite Finished 4 Bedroom Fully Detached Duplex With Modern Facilities,fully Interlock Compound And Family Centered In Daniel Garden Estate.pay And Park In","Before Agungi,before Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +32750,"Top Notch Luxury 4 Bedroom Terrace Duplex With Tarred And Interlocked Road From Expressway, Pay N7m As Intial Deposit To Subscribe For It And Pay The Balance Installmentally At Your Convenient Time.",Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"37,500,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +32751,A Newly Built Luxurious Finished 4 Bedroom Fully Detached Duplex With Bq In Eli's Court Lekki,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +32752,A Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"Phase 2 Creek Avenue Court,after Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +32753,"Exquisite Furnished 4 Bedroom Fully Detached Duplex With Additional 2 Bqs, En Suite With Interlock Compound,pay N10m Initial Deposit And Movein While You Spread The Payment For The Balance.","Amity Estate, Sangotedo Lekki Lagos",₦,"51,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +32754,"Luxury Finished 5 Bedroom Fully Detached Duplex With Bq, Big Sitting Room And Spacious Rooms/master Room, You Can Spread The Payment In Convenient Time","Eli Court, After Second Toll Gate, Chevron Alternative Chevron Lekki Lagos",₦,"83,000,000",0,1,1,5 beds,7 baths,7 Toilets,Chevron +32755,En Suite Furnished 4 Bedroom Fully Detached Duplex With Bq In A Serene Environment,"Eli Court,after Second Toll Gate,chevron Alternative Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +32756,En Suite Furnished 4 Bedroom Fully Detached Duplex With Bq In Eli Court With No Hidden Charges,"Newly 4 Bedroom Fully Detached Duplex With Bq At Eli Court,chevron Alternative Chevron Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +32757,4bedroom Semi Detached Duplex,Estate Behind Shoprite Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32758,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,Creek Avenue Court Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32759,Newly Built Five Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32760,Newly Built 3 Bedroom Terrace Duplex With Bq At Bella Home,Bella Homes Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +32761,4 Bedroom Terraced Duplex In Creek Avenue,Creek Avenue Court Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32762,Exotically Finished 4 Bedroom Semi Detached With Bq In Creek Avenue Court,Creek Avenue Court Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +32763,4 Bedroom Luxury Condo Apartment,Chevy View Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +32764,4 Bedroom Luxury Condo Apartment,Chevy View Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32765,3 Bedroom Duplex Abraham Adesanya Lekki Garden,Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 2 +32766,This Is A Lovely 4bedroom Detached Duplex For Sale In Lekki Lag,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32767,This Is A Lovely 5bedroom With Bq Fully Detached Duplex For Sale In Ikate Elegushi Lekki Lag.,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +32768,This Is A Lovely 4bedroom With Bq Terrace For Sale In Ikate Elegushi Lekki Lag.,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32769,This Is A Lovely 4bedroom Fully Detached Duplex With Bq And Reading Room For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32770,"4 Bedroom Detached Duplex With Swimming Pool Location: Megamound Housing Estates Lekki County Home,lekki",Megamound Housing Estates Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +32771,Newly Exquisite 4 Bedroom Semi Detached Duplexe/with Bq,Between Vgc And Chevron Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +32772,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +32773,Newly 4 Bedroom Semi Detached Duplex,After Chevron Toll Gate Ikota Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +32774,Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +32775,Newly Finished 2 Units Of 5bedroom Detached House,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32776,Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +32777,4 Bedroom Terrace Triplexes,... Ikate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikate +32778,Blocks Of 3 Bedroom Flat With 1 Nos Boys Quarter,... Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +32779,Newly Built 4 Bedroom Fully Detached Duplex In Daniel Garden Lekki Pay And Park In,"Before Agungi, Before Igbo Efun Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +32780,Lovely 4bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +32781,Distressed Sale 1000sqm In Pinnock Beach Estate For 155m Net,Pinnock Beach Osapa London Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets,Osapa London +32782,5 Bedroom Semi Detached House With 1 Nos Boys Quarters (bq),... Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +32783,Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +32784,Luxury Finished 4 Bedrrom Fully Detached Duplex With Bq In Lekki Pay And Park In,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32785,Block Of 3 Bedroom Flat With 1 Nos Boys Quarter (bq),... Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +32786,Neatly Finished 5bedrooms Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,1 Toilets,Ikota +32787,Newly Built 4bed Semi Detached Duplexe,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32788,Modern Architecturally Design 4bed Duplex With Bq,Chevron Link Agungi Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +32789,A Brand New Executive 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32790,Newly Renovated 4 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32791,Massive 4 Bedroom Semi Detached Duplex For Sale In Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32792,Coner Piece Land Within A Gated Estate For Sale,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Ologolo +32793,Newly Buit 3bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +32794,Brand New Exotic 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32795,Executive Brand New 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32796,Brand New 5 Bedroom Fully Detached Duplex For Rent In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32797,Massively Built 4bed Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32798,Brand New Luxury Four(4) Bedroom Semi Detached Duplex,"A Well Secured Estate, Off Orchid Hotel Road. Lekki. Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +32799,Brand New Serviced 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +32800,Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32801,"Brand New, Exquisite And Superbly Finished 5 Bedroom Fully Detached House For Sale In Lekki Phase 1 Lagos.",Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32802,"Well Design, Finished And Bold 5bed Duplex",Agungi Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +32803,Newly Built 3bed Terrace Duplexe,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +32804,Newly 4bed Terrace Duplex,County Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32805,Brand New 4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32806,Neatly Finished 4 Bed Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32807,"Solidly Built, Executive 8 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.",Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +32808,Spacious 4bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths, Toilets,Ikota +32809,Neatly Finished 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32810,Newly Built 5 Bedroom Fully Detached Duplex For Sale In Canal West Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +32811,Neatly Finished Luxurious Massionette 4bed Duplex,Agungi Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +32812,Fairly New 5 Bedroom Fully Detached Duplex For Sale In Nicon Town,Nicon Town Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32813,Brand New 4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32814,Brand New Mini Flat For Sale In Osapa,Osapa London Lekki Lagos,₦,"21,000,000",0,1,0,1 beds,1 baths,2 Toilets,Osapa London +32815,Brand New Exotic Four(4) Bedroom Detached Duplex With Bq,"Off Orchid Hotel Road, Eleganza Bus Stop, Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +32816,A Parcel Of Land Measuring 1000sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Osapa London +32817,4 Bedrooms Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32818,Newly Built Four Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32819,3 Units Of 4 Bedroom Terrace Duplex Located In Ikota Estate,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32820,"Luxury Finished 4 Bedroom Fully Detached Duplex In Lekki, Pay And Park In",Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32821,Powerful And Tastefully Finished 4 Bedroom Detached Duplex With Bq In Oral Estate,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +32822,"Newly Built 4 Bedroom Semi Detached Duplex With Bq, Pay And Park In","Before Agungi,igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +32823,"Newly Built 4 Bedroom Detached Duplex In Lekki, Pay And Park In",Jakande Bustop Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +32824,Newly Built 4 Bedroom Terrace Duplexes,Between Chevron And Vgc Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +32825,Newly Built 4 Bedroom Terrace Duplexes,Between Chevron And Vgc Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +32826,3 Bedroom Fully Detached,Richland Estate Lekki Expressway Lekki Phase 2 Lekki Lagos,₦,"21,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 2 +32827,"Bareland Of 10,756m² With Approval To Reclaim 2000m²",Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32828,This Is A 648 Square Metre Of Land For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32829,A Newly Built 4bedroom Duplex In A Very Good And Clean Neighborhood At Oral Estate,..... Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32830,"Fully Detached 5bedrooms Fitted Kitchen, Modern Carport Washing Area",...... Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32831,This Is A 607.10square Metre Land For Sale In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32832,Three Bedroom Flat,By Nike Art Gallery Ikate Lekki Ikate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +32833,Luxury Furnished 4 Bedroom Semi Detached Duplex With Bq,"Chevron Alternative Drive,lekki,lagos Chevron Lekki Lagos",₦,"58,000,000",0,0,1,4 beds,6 baths,6 Toilets,Chevron +32834,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +32835,4 Bedroom Semidetached Duplex,Creek Avenue Court Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +32836,Newly Built Five Bedroom Detached With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32837,Neatly Finished 5bedroom Fully Detached Duplex With Swimming Pool For Sale!,........ Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32838,4 Bedroom Terrace House For Sale,Ikota Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +32839,Detached House For Sale,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +32840,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32841,4 Bedroom Semi Detached Duplex House For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32842,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32843,5 Bedroom Detached House For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32844,4 Detached Duplex Home For Sale,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32845,4 Bedroom Bedroom Detached Duplex House For Sale In Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32846,4 Bedroom Semi Detached Duplex House For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +32847,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"53,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32848,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32849,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32850,5 Bedroom Detached Duplex House For Sale,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32851,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +32852,"10 Available Units Left Of Exquisite Well Finished 4 Bedroom Semi Detached Duplexes With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +32853,"A Neatly Finished & Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale At Chevy View Estate, Chevron Lekki, Lagos",Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32854,"Just 6 Units Left Of Newly Built Smart Home 4 Bedroom Semi Detached Duplexes With A Bq Each At The Fully Serviced Buena Vista Estate By Chevron Toll Gate, Chevron – Lekki, Lagos",Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +32855,"12 Available Units Left Of Exquisite Well Finished 5 Bedroom Fully Detached Duplexes With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32856,"An Elegantly Built 5 Bedroom Detached Duplex For Sale In Osapa London, Lekki – Lagos",Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +32857,"Just 4 Units Left Of Newly Built Smart Home 5 Bedroom Fully Detached Duplexes With A Bq Each At The Fully Serviced Buena Vista Estate By Chevron Toll Gate, Chevron – Lekki, Lagos",Chevron Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +32858,"4 Available Units Left Of Exquisite Well Finished 5 Bedroom Jumbo Mansions With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32859,"A Massive Brand New And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq Available For Sale At Lekki County Homes, Ikota – Lekki, Lagos",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32860,2 Available Units Left Of Luxury 4 Bedroom Terrace Duplexes With A Room Bq Each,"Perimeter Court 1 Close To Madiba Enclave, Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32861,A Block Of 6flats,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +32862,"Newly Built Luxury 5bedroom Detached Duplex With 2bqs For Sale With Swimming Pool, Gym, Cinema",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32863,Luxurious 5 Bedroom Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32864,Luxury Newly 5bedroom Fully Detached Duplex With 1bq,Orchid Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32865,5 Star Luxury Functional Waterfront Hotel With Asian Furnishing And Over 170 Rooms Situated Between Lekki And Victoria Island Area Of Lagos,Lekki Lagos,$,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32866,Brand New 5bedroom Fully Detached Duplex With A Bqat Megamound Estate Ikota,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32867,Brand New 5bedroom Fully Detached Duplex With A Bq At Megamound Estate Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32868,Executive 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32869,This Magnificent Brand New 2bedroom Flat Serviced Apartments At Lekki Country Homes Is Up For Sale,Lekki Country Homes Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +32870,"4 Bedroom Townhouse Apartment Available For Sale In Lekki, Lagos",Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +32871,A Structure On A 1200sqm Of Land,Ikate Lekki Lagos,₦,"280,000,000",1,0,0,10 beds,10 baths,10 Toilets,Ikate +32872,A Corner Piece Block Of Flats Consisting Of 6 Units Of 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"280,000,000",1,0,0,10 beds,10 baths,10 Toilets,Ikate +32873,This Well Finished 5bedroom Fully Detached Duplex Is Up For Sale At Megamonud Ikota Estate,"Lekki Country Homes, Megamonud Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +32874,Exquisitely Built 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32875,Newly Built 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +32876,4 Bedroom Semi Detached [email protected],Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +32877,Stylishly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32878,2 Bedroom Luxurious [email protected],Agungi Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets,Agungi +32879,Newly Built 4 Bedroom Semidetached Duplex @ikota Villa Estate,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +32880,Furnished 4 Bedroom Duplex In A Serene Environment In Lekki,Oral Estate Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,5 baths,5 Toilets,Other Lekki +32881,Newly Built 5 Bedroom Detached [email protected],Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +32882,C Of O In View,Abijo Agungi Lekki Lagos,₦,"10,500,000",0,0,0, beds, baths, Toilets,Agungi +32883,Newly Built 4 Bedroom Semi Detached Duplex,David's Ikota Lekki Lagos,₦,"46,000,000",1,1,1,4 beds,4 baths,6 Toilets,Ikota +32884,Newly Built 5 Bedroom Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32885,Newly Built 5 Bedroom Duplex @ikota Villa Estate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32886,4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +32887,Newly Built 2bedroom Duplex And 3bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +32888,Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +32889,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +32890,4 Bedroom Semi Detached Hous,.. Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +32891,Tastefully Built Houses For Sale,"Bogige, Along Lekki Express Way Lekki Lagos",₦,"20,000,000",0,1,0,3 beds,3 baths,5 Toilets,Other Lekki +32892,5 Bedroom Detached Duplex For Sale,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +32893,Newly Built 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +32894,Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32895,Luxury Fully Detached Duplex With Bq,Lekki Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32896,Beautiful And Tastefully Finished 4 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +32897,4 Bedroom Semi Detached Duplex For Sale!!!,Ikate Lekki Ikate Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikate +32898,Newly Built 3bedroom Luxury Apartments + Bqs,"34, Ikate Lekki Ikate Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,4 baths,5 Toilets,Ikate +32899,3 Bedroom Flat,"Oribanwa Lekki Peninsule ,lagos Lekki Phase 1 Lekki Lagos",₦,"11,950,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +32900,Newly Built 3 Bedroom Terraces For Sale,Petrocam Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +32901,"A Splendid 5 Bedroom, Water View, Fully Detached Duplex With B.q",Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +32902,3 Bedroom Fully Detached Bungalow,Bogije Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,2 baths,2 Toilets,Lekki Phase 1 +32903,Newly Built 12 Unit Of 2 Bedroom Apartment,"Adjacent Meadow Hall School,ikate Elegushi.lagos Ikate Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +32904,Newly Built 12 Unit Of 2 Bedroom Apartment With Bq,"Adjacent Meadow Hall School,ikate. Elegushi Ikate Lekki Lagos",₦,"38,000,000",0,1,1,2 beds,3 baths,3 Toilets,Ikate +32905,Newly Built 12 Unit Of 2 Bedroom Apartment With Bq,"Beside Richmond Estate,off Nike Art Galley,ikate.lagos Ikate Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +32906,5 Plots Of Land For Sale,Ilasan Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32907,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +32908,Newly Built 4 Bedroom Semi Detached Duplex,New Road Adjacent Osapa London Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +32909,Nice Looking A 4 Bedroom Duplex With Bq At Ikate Price : 80m,Ikate Lagos Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikate +32910,Newly Built 5 Bedroom Fully Detached Duplex.,Behind Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32911,Newly Built 5 Bedroom Fully Detached Duplex,"Van Daniel Str.,off Orchid Hotel Road,2 Tollgate Lekki Phase 1 Lekki Lagos",₦,"70,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +32912,Newly Built 5 Bedroom Detached Jumbos Duplex,Chevy Views Estates Chevron Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +32913,Newly Built 6 Bedroom Palatial Mansion & 2 Rooms Bq.,"Ayinde Akinmade Str.,off Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,1,6 beds,7 baths,7 Toilets,Lekki Phase 1 +32914,Newly Built 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +32915,Newly Built Story Buildings Designed For Office.,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,9 beds,8 baths,8 Toilets,Lekki Phase 1 +32916,Lovely Built 2 Bedroom Flats,Vgc J2. Vgc Lekki Lagos,₦,"32,000,000",1,1,1,2 beds,3 baths,3 Toilets,Victoria Garden City +32917,Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +32918,Newly Built 4 Bedroom Detached Jumbo Duplex With Bq,Chevy Views Estates Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +32919,Executive 4 Bedroom Terrace Duplex,"Chevron, Lekki.lagos. Chevron Lekki Lagos",₦,"36,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +32920,Newly Built 4 Bedroom Terrace Duplex With Bq,"Elegushi, Lekki Phase 1 Lekki Lagos",₦,"46,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +32921,Plots Of Land,Lekki Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +32922,3 Plots Of Land,.. Ikota Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +32923,"Buy A Land In Urban Prime One Estate, Lekki",Abraham Adesanya Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets,Other Lekki +32924,"Hot Selling: Fully Furnished 4 Bedroom Bungalow For Sale Owner Is Relocating To Canada With The Family On Permanent Visa. Title: Gazette And Survey Plan Facilities: Tv's, 7 Split Ac, 15/6.5 Kva Mikano Generator, Executive Italian Leather Furniture, Dinn",Lekki Lagos,₦,"40,000,000",1,0,1, beds, baths, Toilets,Other Lekki +32925,This Magnificent 7bedroom Fully Detached Duplex With A Pool At Lekki One Is Up For Sale,Lekki One Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +32926,"Office Complex For Sale! Selling A Brand New Office Complex With Approximately 1400 Square Meters Lettable Space On 5 Floors, The Ground Floor Has A Covered Parking For 20 Cars, 8 Meters Set Back That Can Be Used For Parking, Over 11 Meters In Front, Pen",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +32927,Modern State Of Art 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +32928,Newly Built 4 Bedroom Duplex In Eli Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32929,This Magnificent Fully Detached Duplex With A Bq At Chevy View Estate Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32930,This Magnificent 2bedroom Flat Is Up For Sale At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +32931,Newly Built 4 Bedroom Duplex In Eli Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32932,This Magnificent 5bedroom Fully Detached Duplex With A Bq And A Pool At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +32933,Fairly New 5 Bedroom Fully Detached Duplex For Sale In Osapa London,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32934,"Camberwall Courts, Abijo",Abijo Lekki Lagos,₦,"6,500,000",1,1,0, beds, baths, Toilets,Other Lekki +32935,"Lekki Pearl Garden Abijo, Lekki",Behind Amity Estate And 1 Minute Drive From Lekki Epe Expressway Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Other Lekki +32936,This Magnificent 4bed Terrace Duplex Is Up For Sale At Chevy View Estate,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32937,"For Sales : Newly Built And Tastefully Finished 4 Nos 3 Bedroom Flat With 1 Room Bq Each. *location* : At Ologolo, Igbo Efon, Lekki. *title* : Governor's Consent *price* : N28m Rent Value Is 1.5m To 1.6 M For One Yr",Ologolo Igbo Efon Lekki Lagos,₦,"28,000,000",0,0,1, beds, baths, Toilets,Other Lekki +32938,A Well Finished Detached Duplex,Ologolo Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets,Ologolo +32939,This Magnificent Mini Flat At Chevy View Estate Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets,Chevron +32940,"3 Bedroom Terrace For Sale At Lkota, Lagos Island",Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikota +32941,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +32942,Contemporary 4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32943,Exquisitely Finished 4bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32944,4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32945,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32946,Newly Built 4bedroom Terrace In A Serene Environment,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +32947,Luxury 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32948,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32949,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +32950,4 Bedroom Detached Duplex,Through Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +32951,4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +32952,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +32953,"Well Designed And Finished 5 Bedroom Detached House (triplex: I.e., Ground Floor, 1st Floor, And 2nd Floor) Within A Well Maintained And Fully Serviced Exclusive Residential Court",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +32954,Newly Built 4bedroom Semi Detached Duplex With Fantastic Finishing,In A Well Secured Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32955,"Newly Built 4bedroom Terrace Duplex On 3floors With Spacious Rooms, Compound Etc",In A Well Secured Estate Ikota Lekki Lagos,₦,"39,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32956,"Tastefully Finished 4bedroom Terrace Duplex With A Well Equipped Kitchen, Video Door Bell",After Second Toll Gate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32957,"Newly Built 4bedroom Semi Detached With Bq, Fantastic Finishing",In A Well Secured Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32958,For Sale Fully Detached Duplex Beautifully Built 4/5bedroom Detached Duplex With B.q Is Available,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +32959,"Newly Built 5bedroom Fully Detached Duplex With Bq, Spacious Rooms, Fitted Kitchen",In A Well Secured Estate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +32960,"Newly Built 5bedroom Fully Detached Detached With Along Drive Way, Bq Etc",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32961,"Newly Built 5bedroom Fully Detached Duplex With Bq, Large Compound, Jacuzzi, Double Sitting",Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32962,Affordable Lands For Sale Before Eleko Beach Lekki,Before Eleko Beach In Lekki Lekki Lagos,₦,"2,000,000",1,1,0, beds, baths, Toilets,Other Lekki +32963,Luxury 4bedroom Detached Duplex With Swimming Pool And Studio Cinema For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,6 Toilets,Osapa London +32964,Newly Built 4bedroom Semi Detached Duplex In A Well Secured Estate,In A Well Secured Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32965,"Newly Built 4bedroom Semi Detached Duplex With Bq , Cctv, Jacuzzi, In Well Secured Estate",Osapa London Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +32966,Executive 5bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +32967,Uxury 4bedroom Detached Duplex With 1bq. For Sale Location: In A Gated Close,Gated Close Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32968,"Newly Built 4bedroom Semi Detached Duplex With Bq, Spacious Rooms",In Well Secured Estate Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32969,4 Bedroom Semi Detached Duplex With A Room Boys Quarter And A Family Lounge,In A Well Secured Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32970,"Executive 5bedroom Fully Detached Duplex With Bq, In House Speaker, Jacuzzi Etc",In A Well Secured Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +32971,Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +32972,"5bedroom Fully Detached Duplex With Bq, S/pool,spacious Rooms,jacuzzi,",Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32973,"Luxurious 5bedroom Fully Detached Duplex In A Mini Court With Bq, Cctv, Jacuzzi Etc",In Well Secured Estate By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32974,Newly Built 5 Bedroom Detached Duplex With Bq,Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +32975,Newly Built 5 Bedroom Detached House With A Maid Room,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32976,4 Bedroom Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32977,Remarkable Detached 5 Bedroom Flat,Oral Estate Opposite Chevron Nigeria Hq Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,0 Toilets,Lekki Phase 1 +32978,Newly Built 5 Bedroom Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +32979,5 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +32980,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +32981,4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +32982,Newly Built 5bedroom Duplex At Osapa London,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +32983,Newly Built Modern 4 Bedroom Plus A Rm Bq In A Mini Court,... Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +32984,Newly Built 5 Bedroom Semi Detached House,Comfort Mba Street Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ologolo +32985,3 Bedroom Fully Detached Bungalow,... Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +32986,A Multipurpose Building,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,1 Toilets,Lekki Phase 1 +32987,A 4 Bedroom Fully Detached House With 2rooms Boys Quarters,Vgc Ikota Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +32988,"A Storey Building Designed For Office, School, Hotel Or Factory Space 600sqm Two Floors Located Off Freedom Way, Lekki Phase1 Six Car Park Space Deed Of Assignment Good Neighbourhood Within A Gated Estate Price 120mil",Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +32989,Newly Built Four Bedroom Duplex In Daniel's Garden Lekki.,Along Igbo Efon Before Chevron Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets,Other Lekki +32990,Newly Built Four Bedroom Semi Detached Duplex In Daniel's Garden Lekki.,"Before Agungi, Igbo Efon Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"56,000,000",0,1,1, beds, baths, Toilets,Osapa London +32991,Newly Built 4 Bedroom Apartment In Ikate Lekki.,Ikate Lekki Lagos,₦,"37,500,000",0,1,1,4 beds, baths, Toilets,Ikate +32992,3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate, Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Other Lekki +32993,Luxury Finished Four Bedroom Semi Detached Duplex With Bq.,"Alternative Drive, Chevron Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32994,Four Bedroom Terrace House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +32995,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq,"Alternative Drive, Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +32996,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +32997,4 Bedroom Detached Duplex,"Before Agungi, Before Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +32998,4 Bedroom Semi Detached Duplex With A Bq,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +32999,Two Bedroom Flat,.. Chevron Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +33000,Spacious 4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33001,1000sqm Land,"2plots Side By Side At Bera Estate Chevron Drive 60m Each Governors Consent,semi Detached Duplex At Vgc 100m C/o Gc Chevron Lekki Lagos",₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +33002,675 Sqm Bare Land,Road 12 Vgc Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets,Victoria Garden City +33003,Luxury Finished 4 Bedroom Semi Detached Duplex,Creek Court Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33004,Newly Built 5 Bedroom Semi Detached House With 1 Bedroom Boys’quarter,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets,Ikate +33005,Luxuriously Designed Newly Built 4 Bedroom Terraces,... Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33006,Newly Built Luxury 4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"49,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +33007,Newly Built 4 Bedroom Detached Duplex With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33008,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Southern View Estate By Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33009,Newly Built 4 Bedroom Semi Detached With A Bq,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +33010,Newly Built Luxury 5bedroom Detached Duplex With 2bq For Sale,Lovely Environment Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33011,Invest Land For Sale In Bogije Lekki,Bogije Lekki Agungi Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets,Agungi +33012,"Waterfront Newly Built Luxury 5bedroom Detached Duplex With2bq For Sale With Swimming Pool,gym,cinema Studio",Secure Environment Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33013,"Newly Built 4 Bedroom Fully Detached Duplex At Daniel Garden, Lekki",Daniel Garden Osapa London Lekki Lagos Agungi Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,6 baths,6 Toilets,Agungi +33014,Plots Of Land's At Lexington Estate Sangotedo Lekki,Lexington Estate Sangotedo Lekki Lekki Lagos,₦,"19,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33015,Luxury Newly Built 4 Bedroom Semi Detached Duplex With One Bq,Bridgegate Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +33016,Luxury 5bedroom Detached Duplex With Swimming Pool For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33017,4 Bedroom Fully Detached Duplex With 1bq For Sale.,Bridgegate Estates Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +33018,Luxury Newly Built 4bedroom Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33019,Hot Sale: Brand New 3 Bedroom Duplex With Bq For N40m,Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,6 Toilets,Chevron +33020,This Magnificent 4bedroom Semi Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33021,Brand New 3 Bedroom Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +33022,4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33023,Modern State Of Art 5 Bedroom Detached House For Rent In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33024,Brand New 4 Bedroom Terrace Duplexes,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33025,Newly Renovated 3 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33026,This Magnificent 5bedroom Fully Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33027,This Magnificent 4bedroom Fully Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33028,Newly Built 5 Bedroom Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33029,Luxurious 4bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +33030,Jv Next To Nicon Town Estate Location: Spar Rd Opposite Nicon Town Estate Lekki Value: N500m Size: 3399 Sqm Title: C Of O Proposal:open Brokers Fee:n50m,Spar Road Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33031,4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +33032,4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +33033,Newly Built 5 Bedroom Detached House For Sale In Chevy View Estate,Hauwa Abikan Street Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33034,Newly Built 4 Bedroom Semi Detached House For Sale,Abiola Agboyin Oral Estate Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33035,4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +33036,5bedroom Duplex For Sale In A Serviced Estate At Lekki,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33037,Newly Built 4bed Ensuite Semidetached Duplex,Ikota Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +33038,5 Bedroom Semi Detached Duplex For Sale At Lekki County,Lekki County Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +33039,Two Detached Duplexes At 55% Completion,Ibeju Lekki Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33040,Newly Built 4bedroom Detached Duplex With A Bq In A Very Serene Environment.,Lekki Ikate. Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +33041,Massive 5 Bedroom Detached Duplex With Bq,Ocean Bay Estate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,8 baths,8 Toilets,Chevron +33042,Brand New 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33043,Exquisite 4 Bedroom Fully Detached + Bq,Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33044,Land For Sale,"Conservation Center, Chevron Chevron Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +33045,4bedroom Semi Detached Duplex With B/q,After 2nd Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,1,4 beds, baths,5 Toilets,Ikota +33046,4 Bed Room Duplex,At Lekki Ajah Addo Road Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33047,734sqm Of Fenced Land,Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +33048,3 Bedroom Serviced Apartment For Sale,Ilasan Lekki Lagos,₦,"32,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Lekki +33049,Newly Built 5 Bedroom Duplex + External Bq,Lekky County Homes Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +33050,Property Convertible To Office Or Hotel Or Factory,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +33051,For Sale 3 Bedroom Terrace Location : Orchid. Lagos,Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +33052,Newly Built 3 Bedroom Flat,... Osapa London Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +33053,Newly Built 3 Bedrooms Flat For Sale,... Osapa London Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +33054,Newly Built 4bdrm Semi Detached At Chevy View N65m. Fully Detached N85m,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33055,Newly Built 5 Bedroom Fully Detached House In A Serene Environment,Conservation Court Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33056,Newly Built 4 Bedroom Semi Detached House With One Room Service Quarter In A Serene Neighbourhood,Ikota Gra Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +33057,4bedrooms Terraces At Atlantic View Estate Lekki Lagos Prices Ranges N35m And 49m,Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33058,4bedrooms Terraces At Atlantic View Estate Lekki Lagos Prices Ranges N35m And 49m,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33059,Luxury 4 Bedroom Terrace In A Serene And Secured Neighbourhood,Ikota Gra Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33060,Newly Built 4 Bedroom Semi Detached House With One Room Service Quarter In A Serene Neighbourhood,Conservation Court Estate Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +33061,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +33062,Land For Sale In Lekki(claridge Estate Phase 1),Bogije Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33063,Residential Land For Sale,Abraham Adesanya Vgc Lekki Lagos,₦,"47,000,000",1,1,0,0 beds,0 baths,0 Toilets,Victoria Garden City +33064,Residential Land For Sale In Lekki Lagos (gracias Atlantic View),Off Monastery Road Sangotedo Lagos Vgc Lekki Lagos,₦,"8,000,000",1,1,0, beds, baths, Toilets,Victoria Garden City +33065,Residential Land For Sale,Bogije Vgc Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets,Victoria Garden City +33066,Affordable Land For Sale In Lekki (eminence Court),Sapati By Bogije Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"6,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +33067,Land For Sale In Lekki (claridge Estate),Behind Shoprite Off Monastery Road Sangotedo Lagos Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33068,Half Plot Of Land On 800sqm,Carlton Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +33069,Land For Sale In Lekki (the Claridge Estate ),Behind Shoprite Off Monastery Road Sangotedo Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33070,Land For Sale In Lekki (gracias Court),Behind The Biggest Mall (shoprite) Off Monastery Road Sangotedo Lagos Lekki Lagos,₦,"10,000,000",1,1,0, beds, baths, Toilets,Other Lekki +33071,4 Bed Room Semi Detached Duplex For Sale In Osapa London Lekki,Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +33072,Beach Resort,Nicon Town Lekki Lagos,₦,"66,000",0,1,0, beds, baths, Toilets,Other Lekki +33073,Land For Sale In Ibeju Lekki (divine Grace Luxury Home),Okon Ojeh Village By Atlanta Ibeju Lekki Lekki Lagos,₦,"6,750,000",1,0,0, beds, baths, Toilets,Other Lekki +33074,Land For Sale In Lekki Lagos (vantage Court),Bogije Along Lekki Epe Express Way Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33075,Newly Built 4 Bedroom Duplex In A Seren Evinroment For Sell,"Inside Madiba Estate, Ikate Phase1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33076,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +33077,Land For Sale In Lekki (eminece Court),Sapati By Bogije Lekki Lagos,₦,"5,200,000",1,1,0, beds, baths, Toilets,Other Lekki +33078,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +33079,Land For Sale In Lekki (frontier Estate),Bogije Lekki Phase 2 Lekki Lagos,₦,"13,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +33080,Land For Sale In Abijo Lekki Lagos,Abijo Lekki Lekki Lagos,₦,"11,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33081,Affordable Land For Sale Abidjo Lagos (gracias Emerald Estate Abidjo),Abidjo Lekki Phase 2 Lekki Lagos,₦,"2,500,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +33082,5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33083,4bedrooms Duplex And 4 Bedrooms Semi Detached Duplex For Sale In A Mini Gated Estate At Idado N65 Million And N50 Million Respectively.,Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33084,5bedrooms Detached Duplex For Sale In Carlton Gate Estate Chevron Road Lekki Lagos,Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +33085,5bedroom Fully Detached With A Room Bq For Sale At Lekki,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33086,2plot 1321sqm For Sale At Osapa London With Ojomu Deed 180m,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Osapa London +33087,4 Bedroom Fully Detached House With 2room Bq On 899sqm Land At Goshen Estate Lekki Phase 1 #100m,Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33088,5bedrooma Detached Duplex With 2rooms Bq Do Sale,Carlton Gate Estate By Chevron Road Lekki Lagos Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +33089,A Bare Land With Consent In A Built Up Area Of Ikota Gra,Lantana Avenueikota Gra Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Ikota +33090,"Roxbury Leisure Homes Phase Ii, Ikota, Lekki",Along Lekki Epe Express Way Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +33091,Newly Built 4 Bedroom Terrace Duplex,Sapata Road Vgc Lekki Lagos,₦,"38,900,000",1,1,1,4 beds,5 baths,5 Toilets,Victoria Garden City +33092,Newly Built Luxurious 5 Bedrooms Fully Detached Duplex,"Megamond Estate, Lekki County Home, Ikota Villa Lekki Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33093,5 Bedroom Semi Detached Duplex,.. Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33094,4 Bedroom House For Sale In Lekki,Lekki Lagos,₦,"90,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +33095,Very Cheap Vacant Land For Sale,Monastery Road Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33096,Brand New 2 Bedroom Apartment In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,1 Toilets,Ologolo +33097,Brand New 4 Bedroom Semi Detached House In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +33098,Brand New Construction Of 3 Bedroom Terrace House In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ologolo +33099,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment With A Bq And Parking Space Of 4 Cars,"Banana Island Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33100,Newly Built 4 Bedroom Semi Detached Duplex Plus Bq In Lekki County,Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33101,Fully Serviced 6 Bedroom Fully Detached Duplex Plus Bq In A Serene Environment,Osapa London Lekki Lagos,₦,"96,000,000",1,1,0, beds,6 baths,7 Toilets,Osapa London +33102,Newly Built 4 Bedroom Terrace In A Mini Estate,Osapa London Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +33103,Newly Built 4 Bedroom Semi Detached In An Estate In Ikota,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33104,Land,"Off Kusenla Road, Ikate Lekki Lagos",₦,"85,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikate +33105,Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +33106,"Waterfront With Jetty Newly Built Luxury 4bedroom Terrace Duplex With 1bq,swimming Pool",Lekki Phase1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths, Toilets,Lekki Phase 1 +33107,Well Built & Tastefully Finished 5 Bedroom Detached Duplex Located In A Mini Estate,Along The Alternative Route By Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets,Chevron +33108,Luxury Newly Built Serviced 4 Bedroom Semi Detached Duplex With A Maid’s Quarter Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33109,Newly Built Luxury 4 Bedroom Detached Duplex With 1bq For Sale,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +33110,Newly Built Luxury 4 Bedroom Semi Detached All Rooms Ensuite Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33111,5 Bedroom Duplex (cornerpiece),Lekki Gardens Off Chevron Drive Chevron Lekki Lagos,₦,"41,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33112,"Spacious 3 Bedroom Flat For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets,Lekki Phase 1 +33113,Luxurious And Beautifully Built Units Of 3bedroom,Off Oniru Road Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33114,Exotically Finished Semi Detached House,Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +33115,3 Bedroom Flat,"Milverton, Friends Colony Agungi Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +33116,Vast Acres Of Land Located In Developed And Serene Environment. Very Close To Mega Event Centre,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Chevron +33117,Exquisite 3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +33118,Well Finished Newly Built 5bedroom Fully Detached Duplex On 360sqm With A Bq With Super Finishing At Osapa Lekki.,Osapa Close To Jakande Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33119,5bedroom Fully Detached With A Room Bq For Sale At Osapa London,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +33120,Newly Built 4bedroom Duplex For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +33121,Fully Detached 4bedroom Duplex For Sale At Lekki Chevron,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +33122,6 Bedroom Fully Detached Luxury Mansion For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +33123,Detached 4bedroom Duplex For Sale At Oral Estate Lekki,Oral Estate Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33124,Newly Built Magnificent 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33125,Newly Built 5bedroom Duplex For Sale At Chevy View Estate,Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +33126,Detached 4bedroom Duplex For Sale At Lekki County Ikota,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +33127,Full Detached 5bedroom Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33128,100% Dry Land With Good Title,"Abraham Adesanya,ogombo Road Lekki Lagos",₦,"23,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33129,For Sale A 5 Bedroom Detached House With 2rms Bq @ Vgc. 100m,Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +33130,For Sale 4 Bedroom Semi Detached House @ Idado Lekki Price 45m,Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33131,For Sale A Wing Of 4 Bedroom Duplex With Bq @ Vgc Price 80m,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33132,Luxury 5 Bedroom Fully Detached Duplex Is Now Available For Sale At Victory Park Estate With,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33133,1plot Of Land In Seaside Estate,Seaside Estate Ilasan Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33134,Newly Built 4 Beddroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,3 Toilets,Chevron +33135,Luxury 5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,4 Toilets,Chevron +33136,Luxury 3&4 Bedroom Duplexes,"Oribanwa,lekki Ajah Lekki Lagos",₦,"3,500,000",1,1,1, beds, baths, Toilets,Other Lekki +33137,"Newly Built Luxury 3units Of 4bedroom Terrace Duplex With 1bq,for Sale",Ikate Elegushi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +33138,Tastefully Finished Ensuite 5bedroom Duplex With Bq At Lekki Phase 1,"Kenneth Agbakuru Street,lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33139,4 Bedroom Detached Duplex,"Bera Estates Chevron Drive Road, Lekki Expressway Chevron Lekki Lagos",₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33140,Land In Ikota,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33141,Newly Built 5 Bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33142,2 Plot,Chevron Drive Bera Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets,Chevron +33143,Executive Plot 600sqm,Inside Beechwood Estate Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33144,"4 Bedroom Penthouse All En Suite , Fully Serviced Oniru Ocean View By Victoria Island Extension",Victoria Island Extension Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33145,"Vantage Court, Bogije",Richlaand Estate Bodije Along Lekki Epe Expressway Ikota Lekki Lagos,₦,"15,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikota +33146,"Newly Built 5bedroom Fully Detached Apartment,with A Treated Borehole Water,well Furnished Kitchen,cctv, Spacious Compound And Rooms","36,ibrahim Eletu Way Osapa London Lekki Lagos",₦,"85,000,000",0,1,1,5 beds,7 baths,7 Toilets,Osapa London +33147,Newly Built Luxury 4 Bedroom Terrace Duplex With 1 Bq And Swimming Pool,Lekki Phase1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths,5 Toilets,Lekki Phase 1 +33148,"Alpha Beach Road, Lekki Stand Alone 5 Bedroom House On 2floors With A 1room Ensuite Dsq, Built On A Parcel Of Land Of About 600sqm, Located Within A Highly Secured Estate, Off Alpha Beach Road, Lekki.",Alpha Beach Road Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33149,"3 Bed Room Duplex @ Lekki Gardens Phase2 With Modern Fittings & Jaw Dropping Ambience That Can Only Be Matched By The Architectural Excellence Of Aso Rock! The Property Comes With A Six Month Old 20kva Perkins Generator, All The Newly Impprted Furniture,",Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,6 baths,6 Toilets,Lekki Phase 2 +33150,5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"198,000,000",0,1,1,5 beds, baths, Toilets,Other Lekki +33151,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33152,Land Available At Lekki Epe Expressway,Bogije Agungi Lekki Lagos,₦,"6,750,000",1,1,0, beds, baths, Toilets,Agungi +33153,For Sale; 4 Bedroom Semi Detached Duplex With A Bq At Orchid Hotel Road,Orchid Hotel Road Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33154,Brand New Luxuriously Finished 4bedroom Semi Detached And 5bedroom Detached House With Bq.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets,Osapa London +33155,"Exquisitely 4 Bedroom Duplexes In A Mini Estate At Ologolo, Lekki, Lagos","Grace Court, Ologolo, Lekki, Lagos Ologolo Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ologolo +33156,Newly Built Block Of 17 Units Of Flats,"2 Abiola Apooyin Street, Oral Estate, Chevron Chevron Lekki Lagos",₦,"30,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +33157,5 Bedrooms Detached Duplex House With 2 Rooms Bq For Sale @ Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33158,8 Bedroom Fully Detached Office Block,Freedom Way Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,8 baths,5 Toilets,Other Lekki +33159,Newly Built 4 Bedroom Terrace Duplex In Serene Environment Sharing Fence With Napia Gardens And Very Close To The Lekki Epe Expressway.,Lekki Epe Expressway Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +33160,Newly Built 5 Bedroom Fully Detached Duplex Plus Bq (jumbo Size),Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33161,Fully Serviced 4 Bedroom Terrace Plus Bq In A Mini Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +33162,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33163,Land,"Sapati By Bogije,lekki Epe Express Way Lekki Phase 1 Lekki Lagos",₦,"5,200,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +33164,3 Bedroom Fully Detached Apartment,"Bogije,along Lekki Epe Express Way Lekki Phase 1 Lekki Lagos",₦,"14,500,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 1 +33165,Land,Behind Amity Estate Lekki Phase 1 Lekki Lagos,₦,"11,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +33166,Luxury 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,3 Toilets,Ikate +33167,Well Furnished 5 Bedroom Detached House With Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 2 +33168,For Sale; 5 Bedroom Detached House With 1 Room Bq In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +33169,"Solomon Porch Estate Is An Affordable Land Investment Scheme With Good Title In Abijo, Lekki.",Chevron Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets,Chevron +33170,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33171,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33172,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33173,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33174,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33175,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33176,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33177,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33178,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33179,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33180,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33181,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33182,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33183,Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2,"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33184,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33185,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33186,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33187,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33188,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33189,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33190,Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33191,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33192,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33193,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33194,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33195,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33196,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33197,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33198,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33199,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33200,"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33201,"Eli Court, Chevron Alternative Drive.",Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds, baths, Toilets,Chevron +33202,Blocks Of 3 Bedrooms Flat For Sale Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",1,0,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33203,"Exotic 5 Bedrooms Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos",Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +33204,800 Sqm Land In Osapa London For Sale,Canal West Estate Opp Victory Park Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +33205,"Newly Built Luxury 4 Bedroom Fully Detached Duplex With A Bq,swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +33206,"Newly Built Luxury 5bedroom Detached Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +33207,Well Finished 3 Bedrooms Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +33208,Massive Waterfront Land Measuring 2300sqm Ideal For Hotel Or Office Towers Or Beach Resorts,Remi Olowude Road Water Corporation Road Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33209,Urgent Sale: Tastefully Finished 5 Bedrooms Duplex In A Lovely Location,Lbs Area Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,6 Toilets,Agungi +33210,Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki,After Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Ikota +33211,"Well Finished 5 Bedrooms Terraced Duplex, Lekki Right",Lekki Right Off Pinnacle Road Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +33212,2 And 3 Bedrooms Soon To Be Completed Off Plan Project For Sale With Flexible Payment Plan,Off Fayemi Strt Canal West Estate Osapa London Lekki Lagos,₦,"34,000,000",1,1,1,2 beds,3 baths,3 Toilets,Osapa London +33213,"Newly Built Luxury 4 Bedroom Semi Detached Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +33214,4 Bedrooms Detached Duplex With A Swimming Pool,Megamound Estate Ikota Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +33215,Well Finished 4 Bedrooms Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33216,"400sqm Land In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Ikota Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Ikota +33217,"Amazing 4 Bedrooms Semi Detached Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33218,"Contemporary, Spacious And Functional 5 Bedroom Detached Duplex With 1 Room Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33219,"Executive 5 Bedrooms Fully Detached Duplex, Ikota Lekki",Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33220,Exquisite 5 Bedrooms Detached Duplex,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33221,"Well Finished 4 Bedrooms Terraced Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33222,Exquisitely Built 4 Bedroom Terraced Duplex,"Lekki Conservation Road, By Second Toll Gate Lekki Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33223,"Well Finished 4 Bedrooms Terraced Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33224,"Executive 6 Bedroom Duplex At Abraham Adesanya Estate, Lekki.",Abraham Adesanya Estate Lekki Lagos,₦,"45,000,000",0,0,0,6 beds,5 baths,7 Toilets,Other Lekki +33225,Exquisite 5 Bedrooms Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +33226,"Newly Built Luxury 4 Bedroom Terrace Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +33227,Newly Built 4 Bedrooms Semi Detached Duplex Oral Estate Lekki,Oral Estate Lekki Oral Estate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33228,"Exquisite 2 Bedrooms Apartment, Ikate Lekki",Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +33229,"Executive 5 Bedrooms Fully Detached Duplex, Lekki Phase 1",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33230,Exquisitely Built 5 Bedrooms Detached Duplex,Eletu Way Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33231,"4 Bedrooms Semi Detached Duplex, Lcc Road Lekki","By Lekki Conservation Road, Lagos Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +33232,For Sale: Luxury 4 Bedroom Terrace Duplex In Lekki With 24/7 Electricity,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,5 Toilets,Ikate +33233,Well Finished Compact 2 Bedrooms For Sale,Off Kunsela Road Ikate Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +33234,Esquisite 1 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"28,000,000",1,1,1,1 beds,2 baths,2 Toilets,Ikate +33235,Luxurious Newly Built 4 Bedroom Semi Detached Duplex With Bq Pay & Pack In (daniel's Garden),Osapa London Lekki Lagos Before Agungi Igbo Efon & Few Minutes Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +33236,Luxury Newly Built 6bedroom Fully Detached Duplex With One Bq,By Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +33237,4 Bedrooms Fully Detached Duplex Orchid Road Lekki,Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33238,Newly Built 3 Bedrooms Terraced Duplex,Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +33239,Ecotical Finished 4bedrooms Semi Detached Duplex With Bq At Creek Avenue Court Ikota Lekki,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +33240,Newly Built 5 Bedroom Fully Detached Duplex In Ikota Villa Estate,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +33241,Serviced 4 Bedroom Detached Duplex With Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,4 baths,6 Toilets,Lekki Phase 2 +33242,A 6 Bedroom Duplex (5 Bedroom Ensuite),"Along Lekki/epe Expressway, Lekki, Lagos State Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,6 beds,5 baths,5 Toilets,Lekki Phase 2 +33243,Serviced 3bedroom Flat With Bq,Chevy View Estate Lekki Lagos Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +33244,5 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33245,^plot Of Land For Sale At Lekki Phase 1,Itedo Off Freedoom Road Via Periewinkle Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33246,Luxurious And Serviced 5 Bedroom House,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33247,Newly Renovated 5 Bedroom Detached Duplex At Pinnock Estate Osapa London.,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33248,A Newly Built Four Bedroom Duplex Available For Sale,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +33249,Brand New 4 Bedroom Semi Detached Duplex For Sale In Pinnock Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33250,A Distress Plot Of Dry Land Of 700sqm Along Orchid Hotel Road With Governor's Consent,"Orchid Hotel Road, By Chevron Toll Gate, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33251,"Luxurious 5 Bedroom Duplex W Bq, Swimming Pool, Cinema, And Gym",Lekki Phase 2 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33252,Newly Built Four Bedroom Duplex With Maids Room Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33253,Luxurious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33254,Nicely Built 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33255,Luxurious 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +33256,"Three (3) Bedroom Apartment + Bq At , Lekki Ikate For Sale","Meadow Hall Way, Ikate – Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33257,Continental Hotel Banquet, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +33258,Land Measuring Approximately 3740sqm At Lekki Phase 1 Lagos 400m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,9 beds,9 baths,9 Toilets,Lekki Phase 1 +33259,Affordable 4 Units Of 3 Bedrooms Apartments At Bridge Gate Estate,Bridgegate Estate Agungi Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets,Agungi +33260,Newly Built 2 Units Of Semi Detached Duplexes In A Serene Neighborhood.,"The Alpha Beach Road, Lekki Epe Express Way Chevron Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +33261,Chois Gardens,Abijo Gra Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +33262,Dane Ville Detached,Agungi Ajiran Road Agungi Lekki Lagos,₦,"51,500,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +33263,Courtland Terrace,"Igbokusu Jakande Left, Beside Femi Okunnu Estate Jakande Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33264,Adess Court,Igbokusu Jakande Left Jakande Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33265,Matmoses Cbl Court,Matmoses Cbl Court Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +33266,Fully Serviced Block Of Contemporary Styled 3 Bedroom Apartments With Bqs,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +33267,Fully Serviced Block Of Contemporary Styled 3 Bedroom Apartments With Bqs,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +33268,Camberwall Courts,Abijo Lekki Lagos,₦,"11,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33269,A Landed Property,Vgc Lekki Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +33270,Government Approved Excision(c Of O In Progress),Spati By Bogije Lekki Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"5,200,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +33271,"Fully Serviced 4 Bedroom Terrace House With One Room Boys Quarters In Ikate Elegushi, Lekki.",... Ikate Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +33272,Distress 5 Bedroom Detached House For Sale,Alternative Route. Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33273,Lekki Pearl Garden,"Abijo, Behind Amity Estate Which Is 1 Minute Drive From Lekki Epe Expressway Lekki Lagos",₦,"11,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33274,Tastefully Finished 5 Bedroom Detached Duplex With Bq + Gate House,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33275,Newly Built 4 Bedroom Semi Detached House At Lekki Scheme 2 Close To Abraham Adesanya.,Off Abraham Adesanya Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,4 baths,4 Toilets,Lekki Phase 2 +33276,"Luxury 5 Bedroom Fully Detached Duplex With Bq, Gate House, Inverter, Solar Panel",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33277,Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33278,C Of O,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +33279,Newly Built 4 Units Of Semi Detached Duplex In A Serene Neighborhood,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +33280,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +33281,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +33282,A Newly Built 4bedroom Terrace Duplex Available For Sale Now,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33283,Tastefully Finished Brand New 4 Bedroom Fully Detached Duplex + Bq, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +33284,3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"48,000,000",0,0,1,3 beds,3 baths,4 Toilets,Ikate +33285,Brand New 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,0 baths,0 Toilets,Chevron +33286,Fully Detached 4 Bedroom Duplex,Ilaje Mobil Road Vgc Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +33287,Brand New Self Compound 3 Bedroom Terrace,West End Etate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +33288,Brand New 5 Bedroom Duplex With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33289,Brand New 5 Bedroom Detached Duplex,Off Aa Rescue Road Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33290,Newly Built 4 Bedroom Fully Detached House In A Serene Environment,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +33291,3 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33292,Newly Built 4bed Room Duplex For Sale,Lekkiviwe Estate Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +33293,C. Of. O 648squere Meter Dry Land No Sand Filling Required,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Ikota +33294,Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +33295,Luxurious 5bedroom Fully Detached Duplex At Chevron Drive Lekki.,Chevron Drive Lekki. Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +33296,Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +33297,Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +33298,Jv 6 Acres Of Land,"Eleko Beach Rd Joint Venture Size; 6 Acres Of Land Location; Eleko Beach Road Eleko Junction Ibeju Lekki Lagos, Close To Juah Chinese Company Amen Estate And The New Shoprite Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33299,Lovely Built 21 Rooms Hotel,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,9 beds,9 baths,9 Toilets,Lekki Phase 2 +33300,New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +33301,Lovely Built 4 Bedroom Duplex,Bere Estate. Chevron Road. Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +33302,Furnished 4 Bedroom Detached House With Bq.,"Benna Vista By Orchid Road,lekki. Lekki Phase 1 Lekki Lagos",₦,"57,000,000",1,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33303,"Just Out?? Tastefully Exquisitely Built Large 4 Bedroom Duplex And Furnished Kitchenette With A Boys Quarter. Location: Osapa London, Lei",M S Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +33304,Lovely Built 2 Bedroom Bungalow.,South Pointe Estate. Lekki Phase 1 Lekki Lagos,₦,"22,000,000",0,1,1,2 beds,3 baths,3 Toilets,Lekki Phase 1 +33305,Lovely Built 5 Bedroom Detached Bungalow With Bq,Mayfair Garden Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,1,5 beds,4 baths,4 Toilets,Lekki Phase 1 +33306,"C. F. O, 1.270squre Meter Dry Land No Sand Filling Required",Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Ikota +33307,Newly Built 3 Bedroom Terace Apartment,Lekki Ikate Ikate Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,5 Toilets,Ikate +33308,New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +33309,"C.of.o, Deed Of Assignment And Survey Plan 941squere Meter Cornerpiece",Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets,Ikota +33310,Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +33311,Newly Built 4 Bedroom Detached Duplex With Domestic Quarter,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +33312,"Distress Sale In Lekki 1, 3bed Room Duplex With Bq",Hy Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +33313,Newly Built 4bedroom Duplex For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +33314,5bedroom Duplex With A Room Bq For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +33315,Newly Built 4bed Room Duplex @ Lekk,Gy Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +33316,4 Bedroom Duplex,Domino Axis Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +33317,Newly Built 4bed Room Duplex @ Lekk,Gy Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +33318,"Registered Deed Of Assignment 1,341squere Meter Of Land In Chevron",Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +33319,First Class Hotel In The Neighbourhood Of Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +33320,For Sale 5bed Room Duplex,Fhy Ikate Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +33321,C. Of. O. Half Plot 324squere Meter Dry Land,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets,Ikota +33322,"Residential Land For Sale, Lekki Scheme Ii, Okun Ajah, Off Ahmed Balogun Road By Abraham Adesanya Roundabout, Eti Osa, Lga Ajah, Lagos",Abraham Adesanya Vgc Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets,Victoria Garden City +33323,Newly Built 32 Rooms Hotel,Lekki. Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",1,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +33324,3bedroom Semi Detached Duplex For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +33325,Terrace Duplex,Cluster A South Pointe Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +33326,"18plot Of Land Governor Consent, Facing Express By Second Toll Gate Sharing Fanced With Chevron",Sharing Fanced With Chevron By Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +33327,New 3 Bedroom Terrace,Chevron Alternative Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +33328,New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +33329,Newly Built 3bedroom Duplex With A Bq For Sale At Osapa London Lekki,. Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Osapa London +33330,New Serviced 4 Bedroom Terrace,Eletu Street Osapa London Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +33331,5 Bedroom Fully Detached Duplex With Bq.,Osapa Close To Shoprite. Osapa London Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +33332,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +33333,A 5 Bedroom Duplex For Sale At Lekki,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33334,Newly Built Detach 5bedroom Duplex For Sale At Chevron,Chevyview Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +33335,C. Of. O. 648squre Meter Cornerpiece Plot With Foundation,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Ikota +33336,All Ensuit 5bedroom Duplex For Sale At Ikota Lekki County,Lekki County Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +33337,4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33338,2 Hectares,Skyview Estate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33339,4bedroom Semi Detached Duplex For Sale At Ikota Villa Estate Lekki,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +33340,Governor Consent Office Space And Shop For Sale In Ikota Lekki Per Shop 10m,Platinum Mall Ikota Ikota Lekki Lagos,₦,"10,000,000",0,1,0, beds, baths, Toilets,Ikota +33341,Two Unit Of 3bedroom Flat On A Full Plot,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +33342,5 Bedroom Fully Detached Duplex,Iweanya Ugbogoh Street. Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33343,5 Bedroom Detached Duplex For Sale At Ikate Lekki,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +33344,4 Bedroom Detached House With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33345,Four Bed Semi Detached House,The Northpointe Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +33346,4 Bedroom Duplex,Alan Balogun Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +33347,4 Bedroom Duplex,Westend Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33348,5 Bedroom Fully Detached,Bera Estate Chevron Lekki Lagos,₦,"47,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +33349,2015 Sqm Land,Next To Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +33350,5bedroom Duplex For Sale At Lekki County With A Room Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33351,4 Bedroom Terrace Duplex,Chevron Opposite Abiola Court 10. Chevron Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +33352,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33353,12units Of 3 Bedrooms Flats Service Apartment,Second Round About Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +33354,Lovely Four Bedroom Terrace In A Mini Estate In Chevron With 24 Hours Power,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds, baths, Toilets,Chevron +33355,Four Bedroom Semidetached Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33356,For Sale; Lovely 5 Bedroom Fully Detached House In Ikate,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +33357,"4 Bedroom Fully Detached House With A Bq For Sale At Pinnock Beach Estate, Osapa London",Pinnock Beach Estate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33358,Newly Built 5 Bedroom Detached House With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33359,Beautifully Built 2 Bedroom Maisonette Within An Estate With 24hrs Security,Off Meadow Hall Road Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +33360,Newly Built For Bedroom Semi Detached House With Bq For In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets,Ikota +33361,Beautiful Luxury 5 Bedroom Detached House With Bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +33362,Lovely 5 Bedroom Fully Furnished Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +33363,Luxury 3 Bedroom Flat With One Room Bq For Sale In Ikate,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +33364,Luxury 2 Units Of 5 Bedroom Detached Duplex With Smart Home Features Located In Lekki Phase 1,Ladipo Omotesho Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33365,"Lovely 5 Bedroom Fully Detached House With Pool For Sale In Megamound Estate, Ikota",Ikota Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +33366,Fully Furnished 5 Bedroom Duplex In A Prime Location With Mortgage Option,. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33367,Luxury 5 Bedroom Fully Detached House For Sale,Lekki Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds,5 baths,5 Toilets,Ikate +33368,Exquisite 3 Bedroom Flat For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33369,For Sale; Beautiful 5 Bedroom Semi Detached Duplex For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,4 baths,4 Toilets,Ikate +33370,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33371,Brand New 5 Bedroom Semi Detached House With Bq For Sale At Chevron,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33372,Newly Built 5 Bedroom Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33373,Newly Built Five Bedroom Detached House With Bq And Swimming Pool For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +33374,Lovely Four Bedroom Semi Detached Duplex At Lekki, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33375,Exquisite 3 Bedroom Flat + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +33376,Brand New 4 Bedroom Semi Detached House With Bq For Sale At Chevron Alternative Route,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33377,Brand New 3 Bedroom Self Serviced Flat At Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"34,000,000",0,1,0,3 beds, baths, Toilets,Lekki Phase 2 +33378,Luxury 4 Bedroom Terrace Duplex With Smart Home Features (spread Payment Over 12 Months),Ladipo Omotesho Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33379,Beautiful 2 Bedroom Flat At Lekki, Osapa London Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +33380,"Off Plan Sales; Luxury 10 Units Of 3 Bedroom Apartments At Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +33381,Stunning Four Bedroom Semidetached Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33382,For Sale; Magnificent 6 Bedroom Fully Detached House With One Room Bq At Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +33383,Lovely 4 Bedroom Semi Detached House,", Ikota Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33384,"Luxury Four Bedroom Detached Duplex With Bq For Sale In Megamound Estate, Ikota",Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +33385,Lovely Four Bedroom Semi Detached Duplex At Lekki, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33386,Lovely 2 Bedroom Flat At Lekki, Agungi Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +33387,Lovely Four Bedroom Semi Detached Duplex + Bq At Lekki, Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +33388,Newly Built Five Bedroom Detached Duplex + Bq At Lekki, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33389,Luxury 4 Bedroom Fully Detached House With Mortgage Options,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33390,Four Bedroom Semi Detached House With Bq For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets,Ikota +33391,Lovely 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33392,Lovely 4 Bedroom Terrace,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33393,Newly Built Four Bedroom Semi Detached House With Bq For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +33394,Lovely Four Bedroom Semidetached Duplex At Lekki, Idado Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33395,For Sale; Land Measuring 2100sqm Between Abraham Adesanya And Lbs Directly On Lekki Expressway,Lekki Epe Expressway Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33396,Brand New 4 Bedroom Fully Detached House For Sale At Chevron Alternative Route,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33397,For Sale; Lovely 4 Bedroom Semi Detached House At Vgc,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Victoria Garden City +33398,Lovely Five Bedroom Fully Detached House With One Room Bq For Sale In Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33399,For Sale; Brand New 5 Bedroom Detached Duplex On 2 Floors In Kate,Ikate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +33400,For Sale: Luxury 5 Bedroom Detached House With Two Rooms Bq At Carlton Gate Estate,Carlton Gate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +33401,For Sale; 4 Bedroom Semi Detached House With A One Room Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33402,For Sale; Newly Built 4 Bedroom Semi Detached House With A Bq For Sale,Ikota Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33403,Fully Serviced 3 Bedroom Flat With 24hrs Power(pay 50% And Pack In),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33404,Five Bedroom Detached House With Bq For Sale At Ikota,Ikota Ikota Lekki Lagos,₦,"83,000,000",0,0,0,5 beds, baths, Toilets,Ikota +33405,Off Plan Sales: Lovely Brand New 2 Bedroom Flat At Ikate,Ikate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,2 beds, baths, Toilets,Ikate +33406,For Sale; Massive Newly Built 4 Bedroom Fully Detached Duplex At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33407,Luxury 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33408,Lovely Four Bedroom Semi Detached Duplex With Bq For Sale In Chevon,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33409,For Sale;beautiful 4 Bedroom Semi Detached House In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33410,"For Sale; Beautiful 3 Bedroom Flat At Lekki Gardens Estate, Ikaqte",Lekki Gardens Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths,3 Toilets,Ikate +33411,Luxury 5 Bedroom Fully Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +33412,Luxury 5 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +33413,Lovely Five Bedroom Fully Detached House With One Room Bq For Sale In Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33414,"For Sale, Beautiful 4 Bedroom Semi Detached At Chevron Alternative Route",Chevron Alternative Route Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33415,Exquisite 3 Bedroom Flate For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,1,0, beds,3 baths,4 Toilets,Lekki Phase 1 +33416,For Sale; Beautiful 4 Bedroom Fully Detached Duplex In Ikota,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33417,For Sale; Newly Built 4 Bedroom Semi Detached Duplex With Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33418,Serviced Newly Built 2 Bedroom Flat For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +33419,"For Sale; 4 Bedroom Semi Detached House With A Room Bq At Egerton Estate, Jakande",Jakande Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +33420,Luxury Five Bedroom Detached House For Sale In Megamound Estate Ikota,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets,Ikota +33421,Stunning Three Bedroom Maisonette At Lekki, Agungi Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +33422,Luxury 5 Bedroom Detached House,. Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +33423,For Sale; 5 Bedroom Detached House With A Bq At Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +33424,For Sale; Lovely 5 Bedroom Fully Detached With A Bq For Sale In Oral Estate,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +33425,Stunning Four Bedroom Semidetached Duplex + Bq At Lekki, Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33426,Newly Built Five Bedroom Detached House With Bq And Swimming Pool For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +33427,Newly Built 4 Bedroom Semi Detached House With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33428,For Sale; A Contemporary 5 Bedroom Fuly Detached House With A Bq At Ikota,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +33429,Lovely Four Bedroom House For Sale,Lafiaji Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33430,Lovely 5 Bedroom Contemporary Detached House With Bq For Sale,Lekki Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +33431,Lovely 2 Bedroom Serviced Flat For Sale In Ikate,Ikate Ikate Lekki Lagos,₦,"35,000,000",1,1,0, beds,3 baths,3 Toilets,Ikate +33432,Brand New Serviced 4 Bedroom Terrace House, Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +33433,Lovely 5 Bedroom Fully Detached House With Bq,. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33434,For Sale; Luxury 5 Bedroom Detached House In Megamound Estate Ikota,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +33435,For Sale; Beautiful 4 Bedroom Fully Detached Duplex In Ikota,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33436,For Sale; 5 Bedroom Fully Detached House With A Bq At Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +33437,Brand New 2 Bedroom Tastefully Finished And Luxury Flat At Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,2 beds, baths, Toilets,Lekki Phase 1 +33438,For Sale; Newly Built 2 And 3 Bedroom Apartment At Ikate,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +33439,Six Units Of Five Bedroom Terrace + 1 Room Bq At Lekki, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33440,Brand New 3 Bedroom Self Serviced Flat At Lafiaji,Lafiaji Lekki Lagos,₦,"32,000,000",0,1,0,3 beds, baths, Toilets,Other Lekki +33441,"For Sale, Luxury Serviced 3 Bedroom Terrace With Room Bq At Ikate",Ikate Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +33442,Lovely 5 Bedroom Fully Detached House For Sale In Vgc,Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +33443,"For Sale; Brand New 3 Bedroom Flats At Megamound Estate, Ikota",Megamound Estate Ikota Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +33444,"Newly Built 4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets,Other Lekki +33445,Exotically Finished 4 Bedroom Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33446,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",0,0,1,4 beds,6 baths,6 Toilets,Chevron +33447,"Tastefully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 2, Own Now Before 100% Beautiful (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33448,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33449,Exquisite 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 1 (pay And Pack In),"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33450,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33451,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33452,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33453,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33454,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,3 beds,6 baths,6 Toilets,Other Lekki +33455,5 Bedroom Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33456,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33457,Fully Detached 4 Bedroom Duplex With Bq In Phase 2 Creek Avenue Court Lekki. 12 Months Flexible Plan.with Additional Sitting Room,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +33458,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33459,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33460,Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,6 baths,6 Toilets,Chevron +33461,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33462,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33463,"Awesome Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33464,Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33465,"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra,lekki Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33466,"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33467,"Fast Developing Beautiful Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33468,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33469,Land,"Grand Lux Estate Is Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33470,Finished Fully Detached/semi Detached 4 Bedroom Duplex With Bq,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +33471,"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33472,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33473,Exquisite 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 1 (pay And Pack In),"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33474,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,0,1,4 beds,6 baths,6 Toilets,Chevron +33475,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"15,000,000",0,0,1,4 beds,6 baths,6 Toilets,Chevron +33476,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33477,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33478,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets,Chevron +33479,"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.","Bogije, Sangotedo,lekki Ajah Axis,epe Expressway,lagos,nigeria. Lekki Lagos",₦,"7,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33480,5 Bedroom Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33481,"Fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,1, beds, baths, Toilets,Other Lekki +33482,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33483,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33484,Grand Lux Estate:land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33485,"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33486,Nice 600sqm Residential Land For Sale(oppourtunity To Invest),"Otoolu/igbo Olomi, 10 Mins Drive From Lekki Free Trade Zone Lekki Lagos",₦,"2,800,000",0,1,0, beds, baths, Toilets,Other Lekki +33487,5 Bedroom Detached Duplex With A Bq, Agungi Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +33488,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33489,"3 Bedroom Terrace Duplex (all Rooms Ensuite+guest Toilet And An Additional Attached Bq)in Lekki,lagos,nigeria..","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,1,3 beds, baths, Toilets,Other Lekki +33490,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33491,"3 Bedroom Terrace Duplex (all Rooms Ensuite+guest Toilet And An Additional Attached Bq)in Lekkk,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,0,3 beds, baths, Toilets,Other Lekki +33492,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33493,"Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,environment Fully Developed.","Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33494,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33495,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33496,"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33497,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33498,Affordable Land For Maximum Purchase And Investment,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0, beds, baths, Toilets,Other Lekki +33499,4 Bedroom Semi Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33500,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33501,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33502,Awesome New Affordable Finished Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Agungi Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agungi +33503,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33504,4 Bedroom Semi Detached Duplex With A Bq,Circle Mall Jakande Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33505,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33506,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33507,"Tastefully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 2(95%), Own Now Before 100% Complete By June.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33508,Land For Sale @ Lekki (100% Return On Investment),"Bogije,lekki. Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33509,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33510,5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33511,"Fast,rapid Developing Beautiful Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33512,5 Bedroom Detached Duplex For Sale,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33513,Fascinating New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Few Minutes Before Chevron, Before Agungi Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Agungi +33514,4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33515,"Residential Land For Sale, Bogije, Lekki, Lagos.",Bogije. Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33516,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +33517,5 Bedroom Detached Duplex With A Bq., Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33518,Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"20,000,000",0,0,1,4 beds,6 baths,6 Toilets,Osapa London +33519,Newly Built 3 Bedroom Flat(all Rooms Ensuite + Guest Toilet),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",0,1,1,3 beds,0 baths,0 Toilets,Other Lekki +33520,Land For Sale @ Bogije,Bogije Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33521,"Land @ Bogije With C Of O(300,450,600sqm)",Bogije Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33522,"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33523,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33524,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33525,"Perfectly Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets,Chevron +33526,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33527,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33528,Golden Land For Sale @lekki Dry Land Buy And Build Instantly,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"5,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33529,Grand Lux Estate:land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33530,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33531,3 Bedroom Flat(all Rooms Ensuite + Guest Toilet),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",1,1,0,3 beds, baths, Toilets,Other Lekki +33532,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33533,"Newly Built 2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets,Other Lekki +33534,2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets,Other Lekki +33535,"Cheap Land At Lekki, Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33536,"3 Bedroom Flat(all Rooms Ensuite + Guest Toilet)lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",0,1,0,3 beds, baths, Toilets,Other Lekki +33537,"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33538,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33539,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33540,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33541,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33542,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33543,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33544,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets,Chevron +33545,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33546,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33547,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33548,"Fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33549,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33550,"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",0,1,1, beds, baths, Toilets,Chevron +33551,"Residential Land For Sale, Bogije, Lekki, Lagos.",Bogije. Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33552,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Lekki +33553,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33554,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33555,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33556,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33557,6 Bedroom Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"150,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +33558,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33559,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1, beds, baths, Toilets,Chevron +33560,Affordable Land,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33561,"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33562,"Land For Sale @ Bogije(300,450,600sqm)(get Yours Now....area Developing Very Fast) Or Contact Us Now To Secure Your Portion With N3m )price About To Increase",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33563,"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33564,Irresistible New Affordable Finished Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33565,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33566,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +33567,"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33568,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +33569,"Perfectrly Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,0,1, beds, baths, Toilets,Chevron +33570,"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33571,"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33572,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +33573,4 Bedroom Fully Detached Beach Homes(or Semi Finished Carcass/skeletal ) For Sale,"Okun Ajah, Off Abraham Adesanya Road Lekki Scheme 2 Lekki Lagos",₦,"49,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +33574,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +33575,"Land For Sale ,claim Ownership At Easy Price And Control At Great Price In A Giffy",Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",1,1,0, beds, baths, Toilets,Other Lekki +33576,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33577,Land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33578,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,1, beds, baths, Toilets,Other Lekki +33579,"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33580,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33581,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33582,"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33583,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33584,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33585,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1, beds, baths, Toilets,Chevron +33586,"2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets,Other Lekki +33587,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,1, beds, baths, Toilets,Other Lekki +33588,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33589,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33590,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33591,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33592,"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,1, beds, baths, Toilets,Other Lekki +33593,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33594,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33595,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33596,"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33597,"4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets,Other Lekki +33598,"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33599,4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33600,"4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets,Other Lekki +33601,"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.(n3,750,000 For Half Plot And N7,500,000 For Full Plot)your Best Shot.","Bogije,lekki Epe Expressway,after Beachwood Estate,lagos. Lekki Lagos",₦,"7,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33602,5 Bedroom Semi Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33603,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33604,5 Bedroom Detached Duplex For Sale,Lekki County Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33605,"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Lekki +33606,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33607,Golden Land For Sale @lekki Dry Land Buy And Build Instantly,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33608,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33609,Land For Sale @lekki Dry Land Buy And Build Instantly(developed Environment)limited Offer Available At N17m.........get It Now.flexible Payment Plan Available,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"17,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33610,Affordable Land For Sale(buy And Build) Maximum Return On Investment After Purchase,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0, beds, baths, Toilets,Other Lekki +33611,"Newly Built 2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets,Other Lekki +33612,"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33613,"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets,Chevron +33614,5 Bedroom Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33615,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33616,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33617,"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33618,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33619,Newly Built 3 Bedroom Terrace Duplex,"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,1,3 beds,0 baths,0 Toilets,Other Lekki +33620,Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,0,1, beds, baths, Toilets,Chevron +33621,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33622,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"58,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33623,"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33624,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33625,Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33626,Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33627,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33628,"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets,Chevron +33629,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33630,"Affordable Land At Lekki, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33631,"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33632,"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33633,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Other Lekki +33634,5 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33635,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33636,"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +33637,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +33638,4 Bedroom Semi Detached Duplex For Sale,Oral Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33639,"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33640,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,0, beds, baths, Toilets,Osapa London +33641,4 Bedroom Terrace Duplex For Sale,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33642,5 Bedroom Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +33643,Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33644,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +33645,Great Affordable Land For Sale (600sqms) (buy Now And Get Discount+incentives),Igando Orudu Lekki Epe Expressway Lekki Lagos,₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33646,"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets,Other Lekki +33647,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +33648,Newly Fully Detached Or Semi Detached 4 Bedroom Duplex With Bq In Phase 2,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Lagos",₦,"20,000,000",0,1,1,4 beds,0 baths,0 Toilets,Other Lekki +33649,Land For Sale @ Lekki Beside Royal Gardens,"Lekki, Beside Royal Gardens Off Lekki Epe Exp. Way Ajah Lekki Lagos",₦,"35,000,000",0,1,0, beds, baths, Toilets,Other Lekki +33650,Luxuriously Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +33651,Land For Sale @lekki (fascinating Environment)(100% Return On Investment),"Bogije,lekki. Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33652,"Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,environment Fully Developed.","Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"20,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +33653,Finished Fully Detached/semi Detached 4 Bedroom Duplex With Bq,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +33654,Brand New 5 Bedroom Detached House For Sale,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33655,Elegant 4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33656,Newly Renovated 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33657,5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33658,Luxurious 4 Bedroom Detached House,Chevyview Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33659,Well Maintained 5bedroom Fully Detached House With 2rooms Bq For Sale In Ikate,Still Waters Gardens Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +33660,Luxury Brand New 2 Bedroom Flat For Sale,Ikate Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +33661,5 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33662,Classically Designed 5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate Features:,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33663,5 Bedroom Fully Detached Duplex,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33664,Brand New 4 Bedroom Semi Detached Duplex For Sale,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33665,Exquisite 4 Bedroom All Rooms Ensuite Penthouse Apartment + Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33666,Nicely Built 5 Bedroom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33667,Newly Built 4 Bedroom Detached House All Rooms Ensuite With A Room Bq,Ologolo Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33668,Lovely 2 Bedroom Apartment For Sale At Jakande,Jakande Jakande Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +33669,Brand New 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33670,Spacious And Well Finished 1 Bedroom Apartment In Oceanbay Estate,"Oceanbay Estate, Lafiaji Chevron Lekki Lagos",₦,"16,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +33671,4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33672,A Newly Built 6 Unit Of 3bedroom Terrace Duplex With All Possible Features For Sale,Dare Olude Street Agungi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Agungi +33673,Luxurious 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33674,Brand New 4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33675,Lovely 5 Bedroom Detached Duplex For Sales At Osapa London,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33676,Beautiful Units Of 3 Bedroom Apartment For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +33677,5 Bedroom Semi Detached Duplex,Behind Prime Water Garden Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +33678,2 Bedroom Flat +bq,Near Domino Pizza Agungi Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +33679,Brand New Luxurious 4 Bedroom Semi Detached Duplex With A Bq,"Orchid Hotel Road, By Eleganza Bus Stop, Chevron Toll Gate, Lekki 2. Lekki Phase 2 Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +33680,2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +33681,Massive 6 Bedroom Detached House For Sale,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +33682,"Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33683,Gorgeous 5 Bedroom Duplex For Sale,Lekki County Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +33684,Newly Built 5 Bedroom Terrace Duplex With Bq In Ikate,Right Handside Ikate Lekki Lagos,₦,"115,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +33685,5 Bedroom Fully Detached Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +33686,Luxurious 5 Bedroom Detached House,Chevy Alternative Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33687,Serviced Luxurious 4 Bedroom Terrace House With A Swimming Pool,Chevy Alternative Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33688,4 Bedroom Duplex With Boy Quarters At Chevron,Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33689,Luxury Brand New 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33690,Tastefully Finished 5 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33691,Tasteful 5 Bedroom Fully Detached,Providence Road Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33692,Beautiful 4 Bedroom Fully Detached Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33693,A 3 Bedroom Terraced Duplex With A Room Staffs Quarter For Sale,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +33694,A Lovely 4bedroom Fully Detached Duplex For Sale At Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +33695,Spacious And Exquisitely Finished 4 Bedroom Serviced Semi Detached Duplex With 24hrs Power,Bourdillon Court Off Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +33696,Elegant 4 Bedroom Detached Duplex For Sale At Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +33697,5 Bedroom Fully Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33698,Luxurious 4 Bedroom Semi Detached House All Rooms Ensuite,Oral Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33699,4 Bedroom Detached Duplex,Friends Colony Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +33700,Well Finished 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33701,2(no) 3 Open Plan Detached Office Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,3 baths,6 Toilets,Lekki Phase 1 +33702,Newly Built 2 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +33703,Clean 4 Bedroom Duplex With Bq In Serviced Estate With 24hrs Power,Northern Foreshore Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33704,Luxury 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,7 Toilets,Chevron +33705,Tasfully Finished 5bed Duplex With 2rooms Bq,Nicon Nicon Town Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33706,Four Bedroom Duplex For Sale At Chevron Alternative Way.,Chevron Alternative Way Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33707,Luxurious 5 Bedroom Duplex For Sale,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33708,Well Finished 4 Bedroom Terrace Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +33709,"Luxurious 4 Bedroom Duplex With Spacious Living Room, Ample Parking Space, Nice Environment For Sale",Whit Sand Street Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +33710,Luxurious 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33711,Luxurious 4 Bedroom Semi Detached,Chevyview Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33712,An Exquisite 5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33713,Landed Property,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Osapa London +33714,3 Unit Of 4 Bedroom Semi Detached Duplex For Sale At Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +33715,Nicely Built 3 Bedroom Bungalow For Sale At Thomas Estate.,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +33716,Newly Built 5 Bedroom Detached House All Rooms Ensuite Plus A Swimming Pool,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33717,Exquisitely Built 6 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +33718,Newly Built 4 Bedroom Detached Duplex For Sale In Ikota Villa Estate Lekki Lagos.,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +33719,Land Measuring 1000sqm,"Nicon Town Estate, Zone A Jakande Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +33720,4 Bedroom Semi Detached Duplex With A Room Bq,"Chevy View, Chevron Lekki. Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33721,Lovely Decent 4bedroom Duplex,Lake View Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +33722,An Ultra Modern 4 Bedroom Terrace Duplex For Sale In Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +33723,Affordable Serviced Flats,"Hunponu Wusu Road, Off Hakeem Dickson /omorinre Johnson Street Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths, Toilets,Lekki Phase 1 +33724,"A Lovely Four Bedroom Townhouse For Sale At Ikate Elegushi, Lekki.",Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +33725,Brand New Luxurious 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Chevvy View Estate , Chevron Lekki Lagos. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +33726,5 Bedroom Duplex With Bq For Sale At Orchid Road,Orchid Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33727,Distress Sale: Luxury 4 Bedroom Detached House + Plus Room Bq,Victory Park Estate Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +33728,Beautiful 3 Bedroom Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Chevron +33729,Tastefully Finished 4 Bedroom Townhouse With Ample Parking Space For Sale,Alternative Route Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +33730,5 Bedroom Detached House Plus 2 Bedroom Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33731,Lovely Architecturally Design 5 Bedroom Detached House For Sale In Lekki County Homes Lekki Lagos.,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds,5 baths,6 Toilets,Ikota +33732,4bedroom Semi Detached Duplex,Creeck Avenue Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +33733,Newly Built 5 Bedroom Detached House All Rooms Ensuite,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33734,Brand New Contemporary 4 Bedroom Semi Detached Duplex With Bq,"Off Orchid Hotel Road, By Eleganza Bus Stop By Chevron Toll Gate. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33735,A Luxury Unit Of 7bedroom Detached Duplex With All Possible Features For Sale,Elfe Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +33736,Luxury 4 Bedroom All Rooms Ensuite + Room Bq,Bera Vista Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33737,Exquisitely Finished Luxury 3 Bedroom Flat With Maid's Room,"Victoria Crest Estate, Close To Shoprite Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +33738,Tastefully Finished 4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33739,5 Bedroom Fully Detached With A Bq And Swimming Pool,Megamound Estate Lekky County Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,1,6 beds,6 baths,7 Toilets,Ikota +33740,Luxurious 5 Bedroom Duplex With 2 Rooms Bq For Sale,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33741,Land Measuring 7.337 Acres (#170k / Sqm),Beside World Oil Filling Station; Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +33742,3 Bedroom Serviced Flat At Milverton Court,"Milverton Estate, Osapa London Lekki Lagos",₦,"49,000,000",1,0,0,3 beds,3 baths, Toilets,Osapa London +33743,Well Built 4 Bedroom Semi Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33744,5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33745,Brand New 5 Bedroom Semi Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +33746,4 Bedroom Fully Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +33747,A Luxury 6 Units Of 3 Bedroom Flat For Sale,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33748,Off Plan Luxury 2 Bedroom Apartment,Off Kusenla Road Ikate Lekki Lagos,₦,"36,500,000",1,1,0,1 beds,1 baths,2 Toilets,Ikate +33749,Brand New 4 Bedroom Terrace Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33750,Luxury 4 Bedroom Duplex For Sale At Thomas Estate,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +33751,Tasteful 5 Bedroom Fully Detached All Rooms Ensuite With Swimming Pool,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33752,Luxurious 4 Bedroom Terrace House With A Room Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33753,"Brand New 5 Bedroom Detached House For Sale In Lekki Phase 1, Lekki Right Lagos.", Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33754,5 Bedroom Duplex For With Bq For Sale At Osapa,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33755,Lovely 5 Bedroom Duplex With A Mini Cinemas And A Pool For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33756,Serviced Luxurious 4 Bedroom Terrace House,Chevy Alternative Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33757,A Luxurious 4 Bedroom Terrace Duplex With All Possible Features For Sale,Elfe Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +33758,Brand New 4 Bedroom Semi Detached Duplex For Sale,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +33759,Luxurious 4 Bedroom Terrace House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33760,Tastefully Finished Brand New 3 Bedroom Flat For Sale,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33761,Beautiful 3 Bedroom Semi Detached Duplex With A Room Servant Quarter For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +33762,Executive 5bed Detached Duplex,Lekki Homes Ikota Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +33763,Luxurious 4 Bedroom Semi Detached House In Chevron,Oral Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33764,"Luxurious 4 Unit, 3 Bedroom Flat With 1 Room Bq Each","Babatope Bajide Off Fola Oshibo, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33765,Tasteful 5 Bedroom Fully Detached,Admiralty Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33766,Nicely Built 4 Unit Of 3 Bedroom Flat With 1 Room Bq Each For Sale,"Babatope Bajide Off Fola Oshibo, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +33767,Fenced Land With Structure Measuring 3200sqm,"Facing Lekki Expressway, Accessible From Providence Street Lekki Phase 1 Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +33768,Luxury 5 Bedroom All Rooms Ensuite Duplex + Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33769,Brand New 4 Bedroom Terrace Duplex For Sale In Chevron Alternative,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +33770,Luxury 4 Bedroom Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33771,Spacious 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33772,Exquisite 5 Bedroom Detached House Plus Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33773,Brand New 2 Bedroom Flat For Sale In Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +33774,Clean 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33775,Newly Built 4 Units Of 4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +33776,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33777,For Joint Venture,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +33778,1 Plot Of Land For Sale At Lekki Phase 2 Thesarus Garden In Carebbian Lake City,Opposite Crown Estate By Shoprite Sangotedo Lekki Epe Expressway Lagos Lekki Phase 2 Lekki Lagos,₦,"9,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33779,Off Plan 4 Bedroom Terrace With One Room Bq,"Bayview Estate Behind Oando Filling Station, 4th Roundabout Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +33780,5 Bedroom Detached Duplex,Off Elegushi Palace Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +33781,Plots Of Land Available,"Chevron Roundabout, Chevron Lekki Lagos",₦,"138,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +33782,6 Bedroom Detached House With 2 (no) Bq With Swimming Pool,. Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +33783,Hebron Garden,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33784,4 Bedroom Detached Duplex At Creek Avenue Court,Chevron Alternative Drive Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Ikota +33785,Luxury Newly Built 5 Bedroom Duplex With 1 Bq,Prince Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33786,Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq On 550sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33787,"Fully Detached Duplex, Newly Built 4bedrom With 1bqs ",Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33788,A Beautiful Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33789,5 Bedroom Flat Detached Duplex,Lekki Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +33790,Newly Built 4 Bedrooms Semi Detached Duplex Lekki 1,Behind Prime Water Gardens Freedom Way Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33791,New Listing 5 Bedroom Detached Duplex For Sale 1bqs Watch Full Video At Instagram Igtv @superite.africa,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +33792,"Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With Cinema, Pool",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +33793,"Ocean View Newly Built 4bedroom Duplex With 1bq, Very Spacious And Compound",Pinnock Beach Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +33794,Luxury 4 Bedroom Terrace With Excellent Facilities,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33795,"32rooms Hotel With Swimming With Land Size Measuring 1400sqm,",Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33796,Land Measuring 500sqm,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33797,"Land Measuring 2001sqm For Sale,price110,000 Per Sqm",Nike Gallery Road Ikate Lekki Lagos,₦,"110,000",0,0,0, beds, baths, Toilets,Ikate +33798,Luxury Serivced 4bedroom Terraced Duplex,Lekki Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +33799,"Massive 4units Of Townhouse Ideal For Shopping Complex,office Building On Land Size 1400sqm Directly On Admiralty",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"720,000,000",1,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +33800,"Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With, Cinemas Gymnasium, Swimming Pool,for Sale",Wonderful Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 1 +33801,Selling Now On Promo Price @ Heaven Tulip Estate Chevron Drive Lekki Lagos Nigeria 18 Units 4 Bedrooms Terraces In Service Estate.,Heaven Tulip Estate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +33802,"Luxury New Mansion, This Property Finished Fully 5 Bedroom Detached Duplex With Swimming Pool,cinema Room And 1 Rooms Boys Quarters",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33803,Luxury Newly Built 5bedroom Fully Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33804,Plots Measuring 3500sqms With A 2600sqm Set Back And A Fictional Event Center Available For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33805,Hot Pinnock Beach Sale 1066sqm Corner Piece Land Location: Pinnock Beach Estate Price: 185m Net Title: C/o Call Us Now For More,Osapa Osapa London Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Osapa London +33806,Newly Built Luxious Semi Detached 4bedroom Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33807,"Plot Measuring 25,000sqms Selling For Between N100k To N150k Per Sqms",Lekki Epe Expressway Vgc Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets,Victoria Garden City +33808,Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q In A Developed Serene Close,Off Chevron Drive Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33809,5bedroom En Suite Detached Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33810,Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With 1bq For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33811,This Massively Built 5 Bedroom Detached Duplex With B.q Is Still Available For Sale.,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33812,Exquisitely Built 4 Bedroom Terraced Duplex,"Roxbury Homes, Orchid Road Lekki Lagos Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +33813,4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +33814,5 Bedroom Flat Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33815,Gracia's Garden Scheme Iii Estate,Lekki Lagos,₦,"950,000",0,1,0, beds, baths, Toilets,Other Lekki +33816,Luxury Newly 5 Bedroom Detached Duplex For Sale Location: Chevron Lekki Lagos,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33817,3 Bedroom Flat,Lekki Igbo Efon Lekki Lagos,₦,"1,200,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +33818,Plots Measuring 8500 Available For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33819,"Jv. Land Measuring : 2,700 Sqm",Lekki Agungi Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Agungi +33820,Land Size Measuring 1300 Sqm At Chevron Alternative Route,Lekki Chevron Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Chevron +33821,Plots Measuring Up To 80000sqms On Lekki Epe Expressway Available For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33822,Newly Build Luxury Service 3 Bedroom Flats With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +33823,"Luxury Exquisitely Built Elegant 4 Bedroom Semi Duplex With 1bq For Sale Chevy View State Chevron, Lekki Lagos",Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33824,"A Unit Of Beautifully Built, Elegant And Sophisticated 5 Bedroom Detached Duplex With Bq With Massive Swimming Pool",Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33825,"Newly Built 3 Unit Of 5bedroom Luxury Fully Detached Duplex With Swimming Pool,gym,cinema Video On Instagram Igtv @superite.africa",Gated Community In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,7 Toilets,Lekki Phase 1 +33826,This 4 Bedrooms Waterfront Terrace House With 1 Room Bq Is Available For Sale!!!.,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33827,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33828,Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q In A Developed Serene,Off Chevron Drive Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33829,"Fenced Land Measuring 1,100 Sqm",Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33830,Elegant And Luxury 4 Bedroom Semi Detached Duplex In A Service Estate At Orchid Road,"Lafiaji,orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +33831,Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33832,Luxury Brand New 4 Bedroom Fully Detached Duplex And 1 Bq With 30kva Generator And Acs,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33833,Beautifully Built 500sqm 5bedroom With Spacious Balcony And Car Park Close To Jakande Mall,Jakande Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33834,"Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool,cinema,bullet Proof Doors And 1bq",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33835,"Newly Built 4bedroom Terrace Duplex It Is Beautifully Built,elegant, Exotic And Sophisticated All Room En Suite",Chevron Drive Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +33836,Tastefully Finished 4bedroom Duplex With1bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +33837,5bedroom En Suite Detached Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33838,Finished Brand New Luxury 5 Bedroom Detached Family House With Bq,Ikota Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +33839,Newly Built 5 Bedroom Detached Duplex For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33840,5 Bedroom Flat Detached Duplex,Lekki Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33841,"Executive 5 Bedrooms Fully Detached Duplex, Lekki Phase 1",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33842,Luxury 16units Of 3bedroom Flats Withboy's Quarter At Lekki Phase/oniru Lekki Lagos,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0, beds,3 baths,4 Toilets,Lekki Phase 1 +33843,4 Bedroom Detached Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33844,5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33845,"Fully Detached Duplex, Newly Built 5 Bedroom With 2 Bqs","Northern Foreshore Estate, Chevron Drive Lekki Phase 2 Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33846,Luxury Newly Built 4bedroom Semi Detached Duplex With 2bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33847,Elegant 6 Bedroom Fully Detached Duplex With 2 Bqs Available For Sale,Victory Park Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +33848,Urgent Pinnock Beach Estate Sale 598sqm Land For Sale Location: Pinnock Beach Estate Price: 95m Net Title: C/o,Pinnock Beach Osapa London Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Osapa London +33849,Plot Measuring Up To 30000sqms Available For Sale,Freedom Road Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33850,Recently Completed Fully Detached 5 Bed All Rooms En Suite Duplex On 3 Floors Sitting On 460sqm Available For Sale At Lekki Phase1,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +33851,"Brand New 4bedroom Terrace + Bq + Swimming Pool + Gym + Ample Parking Space. @ Ikate , Lekki Lagos. N80million Asking",Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +33852,"Exclusively Finished 6 Bedroom Canadian Style Luxury House With Swimming Pool, 2 Bedroom Bq.",Victoria Garden City Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +33853,Brand New 5 Bed Room Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33854,"Jv. Land Size: 2,700 Sqm.",Lekki Agungi Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets,Agungi +33855,"Brand New 4 Bedroom Detached Duplex With Bq All Rooms En Suit, Car Port And More",Lekki Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33856,4 Bedroom Terraced Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +33857,"For Sale 10,000sqm Land Directly On Freedom Road, Lekki Phase 1, Lagos. Fantastic Bare Dry Land 10,000sqm Fenced And Gated",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33858,5 Bedroom Flat Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33859,Newly Built Luxury 4bedroom Semi Detached Duplex For Sale,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33860,Luxury Beautiful Newly Built Bedroom Duplex With 1 Bqs,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +33861,"Tastefully Finished Built 500sqm 5bedroom With Spacious Balcony, Very Close To The Jakande Mall",Jakande Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +33862,Massive Service Luxury Newly Built 3 Bedroom Terrace Duplex,Prince Eletu Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,4 baths,4 Toilets,Osapa London +33863,"Luxury Newly Built 4bedroom Semi Detached Duplex With Swimming Pool,gym ,playground And Bq",Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +33864,Luxury Newly Built 5bedroom Detached Duplex With Swimming Pool And 2 Rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33865,Newly Built Luxury 5bedroom Duplex With 1bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33866,5 Bedroom Detached Duplex And 2 Rooms Boy's Quarter,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +33867,Elegant And Well Structured 5bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33868,Tastefully Finished 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths,6 Toilets,Osapa London +33869,Exquisitely Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +33870,Newly Built Fully Detached 5bedroom Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"64,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +33871,5 Bedroom Flat Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33872,A Newly Built 4 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33873,3 Bedroom Flat For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,4 baths,4 Toilets,Osapa London +33874,Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +33875,Newly Built Luxious 6bedroom Duplex With 2room Bq,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +33876,650sqm Land,"Spar Road,lekki Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +33877,Plot Of Land Measuring 3000 Sqms For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33878,"Luxury Exquisitely Built Elegant 6bedroom Duplex With Swimming Pool,gymnasium For Sale In Vgc ( Victoria Graden City) Lekki Lagos",Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +33879,Luxury Finished 2units 4bedroom Semi Detached Duplex With 1bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33880,Tastefully Finished 4 Bedroom Detached Duplex,Lekki Phase1 Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +33881,Beautifully Built 500sqm 5bedroom With Spacious Balcony And 1bq Close To Jakande Mall,Jakande Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33882,Classy 5 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +33883,Newly Built Luxury 4bedroom Semi Detached Duplex For Sale With 1bq,Heaven Tulip Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33884,Newly Built 5bedroom Luxury Fully Detached Duplex With Room Bq For Sale With Bqs At Chevron Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33885,Perfectly Well Laid 5 Bedroom Fully Detached Duplex With 1bq,Lekki Phase1 Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33886,Luxurious 4bedroom Detached Duplex With And Swimming Pool And 2bqs For Sale,Lekki Phase1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33887,*distress Sales* *a Newly Built 4 Bedroom Duplex With A Block Of 2 Mini Flats With A Swimming Pool After Bogije On Lekki Expressway,Lekki Expressway Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +33888,5 Bedroom Flat Detached Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +33889,5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33890,A Newly Build 5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33891,This Exquisitely Built 4 Bedroom Terrace Duplex Is Available For Sale..,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33892,Luxious And Elegant 5bedroom Fully Detached Duplex With Study For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +33893,5 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33894,"Finished Fully 6 Bedroom Detached Mansion With Swimming Pool,cinema Room, Gym Room, And 2 Rooms Bqs On Land Size 1000sqm",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,6 beds,8 baths,9 Toilets,Osapa London +33895,"New Land Alert Location: Pinnock Beach Estate Lekki Phase 1, Lagos Nigeria Title: C Of O Price: 115m Asking Size: 798sqm",Osapa Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33896,"Excessively Large 5bedroom Duplex With Swimming Pool,gym And 2bq For Sale",Pinnock Beach Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33897,"Luxury Newly Built 4bedroom Semi Detached Duplex On 2 Floors With Swimming Pool,gym For Sale",Circle Mall Road Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +33898,"Plot Measuring 1,003sqms",Pinnock Beach Estate Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33899,Newly Built Luxury 5 Bedroom Duplex With Swimming Pool And 2 Bqs,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +33900,Luxury Built 5 Bedroom Duplex With 1bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33901,One Unit Of 4bedroom Terrace Available For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33902,"400sqm Land In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Ikota Lekki Lagos,₦,"32,000,000",0,1,0, beds, baths, Toilets,Ikota +33903,Luxury Newly Built Service 4 Bedroom Terrace Duplex With 1 Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +33904,This Beautifully Built 450sqm 5bedroom Semi Detached Duplex With Sapcious Balcony And A Bq,Lekki Phase1 Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +33905,"Excessively Large 6bedroom Duplex With 2bqs And Swimming Pool,gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,6 beds,5 baths,6 Toilets,Osapa London +33906,A Beautiful Fully Detached 5bedroom Duplex In A Serene Area,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33907,5 Bedroom Detached Duplex In Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33908,2 Bedroom Flat For Sale,Lekki Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +33909,For Sale: Brand New And Superbly Finished 5 Bedroom Fully Detached House With 1bq,Circle Mall Road Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33910,"Fenced Land Measuring 1,100 Sqm For Sale At Africalane",Africanlane Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33911,Brand New 4 Bedrooms Fully Detached,Bera Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +33912,4000sqm Plots Of Land In Carlton Gate Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Chevron +33913,Contemporary 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33914,Contemporary 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33915,Land,Lake View Estate Adjacent Ikota Shopping Complex Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikota +33916,A Full Plot,Road 2 Ologolo Lekki Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets,Ologolo +33917,4 Bedroom Semi Detached With 2bq,Vgc Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +33918,Dry Land,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +33919,Newly Built 8 Units 4 Bedroom Terraced Duplex In A Serene Estate,Pacific Court Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +33920,Clean 4 Bedroom Semi Detached Duplex Plus Bq,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"42,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +33921,12 Unit Of Luxurious 3 Bedroom Apartments And 2 Unit Of 4 Bedroom Penthouse With Unmatched Opulence.,"At Dele Ogunbowale Crescent, Qmb Builder's Mart Road. Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33922,5 Bedroom Detached House In Pinnock Beach Estate,Pinnock Beach Estate Jakande Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,7 Toilets,Other Lekki +33923,5 Bedroom Detached House,At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +33924,Beautifully Finished 2 Units Of 4 Bedroom Terrace Houses,"At Herbert Orji Street, Osapa London, Lekki, Lagos, Nigeria Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +33925,"Newly Built Palatial 3 Bedroom Terrace Duplex At Atlantic Mews Estate, Alpha Beach Road, Lekki, Lagos.","At Atlantic Mews Estate, Alpha Beach Road Lekki Phase 1 Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33926,Tastefully Finished 5 Bedroom Detached House,Northern Foreshore Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +33927,Newly Built Block Of Flats Comprising 6 Units Of 3 Bedroom Apartments And 2 Units Of 2 Bedroom Apartments With Maid Rooms,"At Abioro Street, Ikate, Lekki Lekki Phase 2 Lekki Lagos",₦,"320,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +33928,Three Bedroom Flats At Alpha Beach For Sale,"At Olatunji Street, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +33929,Lush Apartments Exquisitely Finished Four Bedroom Semi Detached Houses,"Lush Apartments, Kusenla Street, Elegushi Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33930,C Of O,Abijo Lekki Lagos,₦,"20,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +33931,Luxury And Furnished Restaurants,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +33932,Furnished 4bedroom Duplex With Spacious Room Bq,Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33933,4 Bedroom Duplex With Bq In Alperton Residence Estate,Osapa London Lekki Lagos,₦,"76,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +33934,Tastefully Built Luxury 5 Bedroom House For Sale In Lekki Lagos,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +33935,Fully Detached 4 Bedroom Duplex With Bq For Sale,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +33936,4 Bedroom Terraced Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +33937,4 Bedroom Semi Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33938,Luxurious Furnished 3bedroom Apartment At Nicon Town Lekki.,"Nicon Town, Lekki Beside Total Filling Station. Nicon Town Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +33939,Governor's Consent,Idado Estate Chevron Idado Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +33940,"3,399sqm Jv At Spar Road,lekki","Spar Road,opp Nixon Town Estate Lekki Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33941,Well Finished 4units Of 3bedroom Luxury Apartment,"Off Admiralty Way,lekki Phase1 1 Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +33942,"Lucrative Land Size Of 1,300sqm (2plots)for Sale Facing Directly Lekki Epe Expressway Before World Oil Ilasan","Directly Facing Lekki Epe Expressway Before World Oil Ilasan,lekki, Lagos Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33943,Governors Consent,By Britainia Hospital Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33944,3 Bedroom Apartment And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +33945,4 Bedroom Apartment With 2 Rooms (bq),Admiralty Homes/alpha Bay Estate Off Lekki Express Way. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +33946,"Global C Of O Land For Sale In Lekki, Lagos (cherry Wood Courts)",Along Lekki Free Trade Zone Lekki Lagos,₦,"6,000,000",1,1,0, beds, baths, Toilets,Other Lekki +33947,Lavishly Furnished 5 Bedroom Duplex And Maids Room,"By Petrocam Filling Station,elf Bus Stop Ilasan Lekki Lagos",₦,"155,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +33948,Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds, baths, Toilets,Ikate +33949,Brand New 4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33950,Brand New 4 Bedroom Fully Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33951,Best Affordable Land (600sqms) @ Tiverton Estate,Igando Orudu Lekki Epe Expressway Lekki Lagos,₦,"4,500,000",0,1,0, beds, baths, Toilets,Other Lekki +33952,"Residential Land For Sale, Bogije, Lekki, Lagos.","Bogije, Lekki Lagos",₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33953,3 Bedroom Flat,"Oribanwa, Lekki Peninsula, Lagos. Lekki Lekki Lagos",₦,"10,950,000",0,1,0,3 beds,3 baths,0 Toilets,Other Lekki +33954,Land,"Bogije, Lekki Lagos",₦,"10,500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33955,3 Bedroom Detached Bungalow For Sale,"Ogunfayor Royal Estate Beside Mayfair Gardens , Awoyaya Lekki Phase 2 Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +33956,4.2 Hectares Of Land At Maiyegun Tourism Scheme With C Of O,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +33957,Brand New Beautifully Designed 5bedroom Detached House With A Room Boys Quarter,Chisco Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +33958,5 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +33959,3 Bedroom Duplex,Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,5 Toilets,Chevron +33960,"Luxurious 4 Bedroom Duplex With Spacious Living Room, Ample Parking Space, Nice Environment For Sale",Orchid Road Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +33961,4bedroom Duplex,Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33962,Massive 21 Rooms Hotel,Lekki Phase 2 Lekki Lagos,₦,"200,000,000,000",0,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 2 +33963,Land At Peach Palm,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +33964,Newly Built 4 Bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +33965,Exquisitely Finished And Spacious 3 Bedroom Flat With A Bq,Close To Domino Pizza Agungi Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +33966,5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +33967,Branf New Luxurious 5bedroom Fully Detached House With A Room Bots Quarter,Idado Estate Idado Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +33968,"Beautifully Finished 5 Bedroom Duplex With Boys Quater, Ample Parking Space, Nice Environment For Sale",Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +33969,Newly Built 5 Bedroom Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33970,12.75 Hectares Of Land Fenced C Of O,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +33971,Land,Beside Safe Court Apartments Ikate Lekki Lagos,₦,"749,870,000",0,0,0, beds, baths, Toilets,Ikate +33972,"Land For Sale In Lekki, Lagos(david's Grace City)",Ibeju Lekki Lekki Lagos,₦,"1,500,000",1,1,0, beds, baths,6 Toilets,Other Lekki +33973,3 Bedroom Flat For Sale In Lekki Ajah Lagos (wealthland Green Estate),"Oribanwa, Lekki Ajah Lagos Lekki Lagos",₦,"11,950,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +33974,Serviced Land With C Of O For Sale In Abraham Adesanya Lekki Lagos,Abraham Adesanya Lekki Lagos,₦,"30,000,000",1,1,0, beds, baths, Toilets,Other Lekki +33975,Land For Sale In Lekki Lagos (win Homes),"Okun Ajah, Orchid Road Lekki Lagos",₦,"15,000,000",1,1,0, beds, baths, Toilets,Other Lekki +33976,Newly Built 4 Bedroom Detached Duplex,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 2 +33977,"Land For Sale In Ibeju Lekki, Lagos (grace Ville)","Ikegun,ibeju Lekki Lekki Lagos",₦,"850,000",1,1,0, beds, baths, Toilets,Other Lekki +33978,Just Built 5 Bedroom Fully Detached Smart Home Duplex,Chevron Lekki Lagos,₦,"77,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +33979,4 Bedroom Duplex Mansion,B4 Vgc Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +33980,New And Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +33981,Newly Built 4 Bedroom Semi Detached Duplex For Sale At Ikota Villa Estate.,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +33982,Land For Sale In Abijo,"Abijo, Lekki Lekki Lagos",₦,"10,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +33983,4 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +33984,3 Bedroom Flat For Sale In Lekki Ajah Lagos (wealthland Green Estate),"Oribanwa, Lekki Ajah Lagos Lekki Lagos",₦,"11,950,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +33985,Super Luxury 4bedroom Detached House + Bq,U3 Estate Lekli Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +33986,"Land For Sale In Ibeju Lekki, Lagos (richview Estate)",Akodo Community Lekki Lagos,₦,"6,500,000",1,1,0, beds, baths, Toilets,Other Lekki +33987,"Land For Sale In Ibeju Lekki, Lagos (marple Woods Estate)","Siriwon Town,ibeju Lekki Lekki Lagos",₦,"3,000,000",1,1,0, beds, baths, Toilets,Other Lekki +33988,One And Half Plot Of Land (distress Sales),"Lekki Penusula Scheme1, Plot18, Blk113, Eti Osa, Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +33989,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,7 Toilets,Chevron +33990,Two Number 5 Bedroom Fully Detached House At The Entrance Of Lekki County Home,Entrance Of Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets,Ikota +33991,Newly Built & Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool & 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +33992,1 Bedroom Flat,"Lekki Garden Paradise 3,chevron Rd, Lekki Chevron Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Chevron +33993,A Plot Approx 713sqm For Sale @ Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +33994,5 Bedroom Detached Duplex With Inbuilt Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33995,Land For Sale At Lafiaji Lekki (win Homes).,"Orchid Hotel Road By Chevron(2nd Toll Gate),lafiaji Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets,Chevron +33996,4 Bedroom Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Ikota +33997,4 Bedroom Semi Detached With Bq And 5bedroom Fully Detached With A Bq,"Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +33998,4bdr Semi Detatched Duplex With Be @ Creek Avenue Court Lekki,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets,Ikota +33999,Luxury 4br Semi Detached Duplex For Sale,Ikota Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Ikota +34000,5bedroom Detached Duplex Location : Alpha Beach,Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34001,"Deluxe 6 Bedroom Fully Detached Duplex With Cinema Room, Swimming Pool & So Much More",Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +34002,Two Number 5 Bedroom Fully Detached House,Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +34003,4 Bedroom Terrace Duplex,Off Orchid Road By Chevron Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets,Chevron +34004,Luxury And Furnished 3bedroom Flat + Bq,By Second Round About Ikate Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +34005,4bedrooms Duplex With A Bq,Back Of Mega Chicken Inside G. R. A Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +34006,Dry Land,Located Beside Vgc Estate Vgc Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +34007,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34008,Luxury 4 Bedroom Terrace Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34009,Brand New 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34010,Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34011,Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34012,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34013,Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34014,Brand New 5 Bedroom Detached Duplex With 1 Room Bq,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34015,Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34016,Nicely Built 4 Bedroom Semi Detached With Bq And Excellent Facilities,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34017,Brand New 5 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34018,Tastefully Finished 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34019,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +34020,Residential Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"23,000,000",0,1,0, beds, baths, Toilets,Ikota +34021,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34022,Tastefully Finished 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34023,4 Bedroom Super Maisonette Duplex With A Bq Available For Sale At The The Horizon Heights Estate,"Behind Naicon Town, On Spar Supermarket Road. Ikate Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +34024,Brand New 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34025,Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +34026,Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq At Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34027,3 Bedroom Flat With Bq At Primewater View Estate,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34028,Furnished 4 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Idado Lekki Lagos,₦,"128,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +34029,Brand New 5 Bedroom Detached Duplex,Osapa Road Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34030,Brand New 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34031,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34032,Luxury3 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +34033,2 Bedroom Appointment,Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"23,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +34034,Tastefully Finished 5 Bedroom Detached Duplex With 2 Room Bq And Excellent Facilities,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34035,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34036,Tastefully Finished 4 Bedroom Terrace Duplex With Room Bq And Excellent Facilities,Orchid Way Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34037,4 Bedroom Terrace Duplex With A Bq ( Off Plan ),By Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"47,799,000",1,1,0,4 beds,5 baths,6 Toilets,Ikate +34038,"4 Bed Semi Detached Duplex With A Bq ,( Off Plan)","By Kusenla Drive , House On The Rock Road. Ikate Lekki Lagos",₦,"57,990,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +34039,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34040,Nicely Finished 4 Bedroom Semi Detached Duplexwith Bq And Excellent Facilities,Thomas Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34041,Luxury 3 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +34042,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Pinnock Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34043,Brand New 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34044,2 Bedroom Apartment With Visitors Toilet ( Off Plan ),By Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"24,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +34045,Promo Promo 3 Bedroom Flat Selling On Off Plan,Nike Art Gallery Road Opposite Wakanow Ikate Lekki Lagos,₦,"24,990,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +34046,Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34047,Luxury 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34048,Beautifully Finished 4 Bedroom Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34049,Brand New 4 Bedroom Terraced Duplex At Orchid Hotel Road,"Orchid Hotel Road, 2nd Lekki Tollgate Lekki Lagos",₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +34050,5 Bedroom Semi Detached Duplex With A Bq ( Built ),Meadow Hall Way Ikate Lekki Lagos,₦,"70,000,000",1,1,0,6 beds,6 baths,7 Toilets,Ikate +34051,Well Finished 4 Bedroom Semi Detached Duplex At Pinnock Beach Estate,"Pinnock Beach Estate, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34052,5 Bedroom Terrace Duplex With A Bq Attached To The Back Of The House,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",1,1,0,6 beds,6 baths,7 Toilets,Chevron +34053,Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34054,Brand New 5 Bedroom Detached Duplex With 2 Room Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34055,Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34056,Brand New 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34057,New Luxury 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34058,Nicely Built 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34059,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34060,Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34061,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +34062,Luxury 4 Bedroom Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34063,4 Bedroom Fully Detached House With A Bq (off Plan ),Orchis Road After Lafiaji Chevron Lekki Lagos,₦,"39,990,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +34064,4 Units Of 3 Bedroom Terraced Duplex At Orchid Hotel Road,"Orchid Hotel Road Just After 2nd Lekki Tollgate, Lekki Lekki Lagos",₦,"92,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +34065,Residential Land For Sale At Ikota Villa Estate,Ikota Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Ikota +34066,"Newly Built 4 Bedroom Detached Duplex At Ikota Villa Estate, Lekki",Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34067,Brand New 5 Bedroom Semi Detached Duplex With Bq And Excellent,Lafaiji Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34068,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34069,Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34070,Brand New 4 Bedroom Semi Detached Duplex With Bq And Excellenct Facilities,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34071,Nicely Built 5 Bedroom Semi Detached Duplex With Bq And Pent House,Orchid Way Ikota Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34072,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34073,Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34074,Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34075,Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34076,Nicely Built 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34077,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34078,Tastefully Finished 4 Bedroom Detached Duplex With Bq And Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34079,Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34080,Incomplete 4 Units 3 Bedroom Terrace Duplex In Good Location,2nd Toll Gate Lafiaji Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +34081,Well Maintained 5 Bedroom Detached Duplex At West End Estate Ikota,West End Estate Ikota Ikota Lekki Lagos,₦,"39,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +34082,2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +34083,Newly Built 3 Bedroom Terrace On 3 Floors,Off Nike Art Gallery Road Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +34084,New Built Smart Home,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +34085,"Newly Built 4bedroom Semi Detached Duplex. Features: 24hours Electricity, 24hours Security, Swimming Pool, Gym, Secured Mini Estate",Off Lekki Epe Express Way Ikota Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +34086,Land For Sale,Ikota Lekki Lagos,₦,"45,000",0,0,0,1 beds,1 baths, Toilets,Ikota +34087,3 Bedroom Terrace House + 1 Room Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +34088,Beautiful 5 Bedroom Detached House + 2 Room Bq,Off Road 13 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34089,Luxury 5 Bedroom Detached House With Bq,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34090,Brand New Stunning 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34091,Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34092,Brand New Stunning 4 Bedroom & 5 Bedroom Fully Detached Duplex With A Room Bq For Sale!!,... Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +34093,Brand New Stunningly Beautiful 5 Bedroom Fully Detached A Room Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +34094,Brand New Stunning 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34095,Brand New Stunning 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +34096,Brand New Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +34097,Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +34098,4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +34099,Lovely 4 Bedroom For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34100,Brand New Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,0 Toilets,Chevron +34101,Exotically Fully Furished 5 Bedroom Massively Sized Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34102,Beautiful Newly Built And Tastefully Finished 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +34103,Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex With Bq For Sale!!,Megamound Lekki County Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +34104,Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex For Sale!!.,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34105,Luxury 4 Bedroom Super Clean & Spacious Semi Detached Duplex With A Room Bq For Sale!., Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34106,Fully Furnished 4 Bedroom Duplex At Ocean Breeze Estate Lekki,Ologolo Ocean Breeze Estate Agungi Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,5 baths,5 Toilets,Agungi +34107,Newly Built 5 Bedroom Duplex At Osapa London Lekki,Bamidele Eletu Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +34108,3 Bedroom Terrace For Sale,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +34109,"One Storey Building For Sale At Igbo Efon, Lekki, Lagos",Olukolu Street Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,8 baths,8 Toilets,Other Lekki +34110,Newly Built 5 Bedroom Duplex With Pool At Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34111,Newly Built 6 Unit 5 Bedroom Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +34112,Super Classic And Most Solidly Constructed New 4bedroom Duplex,Idado Road Idado Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34113,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Orchid Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds, baths, Toilets,Chevron +34114,Exotically Finished 4 Bedroom Fully Detached Duplex With Bq (pay And Pack In).,Ikota Lekki Ikota Lekki Lagos,₦,"53,000,000",1,1,0,4 beds, baths, Toilets,Ikota +34115,New And Exquisitely Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds, baths, Toilets,Lekki Phase 1 +34116,Brand New And Exquisitely Finished 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +34117,4bedroom Semi Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets,Chevron +34118,5bedroom Fully Detached Duplex,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"77,000,000",0,1,1,5 beds, baths, Toilets,Chevron +34119,"Luxury State Of Art 2bedroom Flat With Spacious Rooms, Fully Equipped Kitchen, Luxury Sanitary Wares And Good Lightings.",Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +34120,New Built 2 Bedroom Flat.finished And Partly Furnished,Paradise Estate 2 Chevron Drive Chevron Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets,Chevron +34121,New,Paradise Estate 2 Chevron Drive Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +34122,3 Bed Terraced Duplex With Bq,Elegushi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds, baths, Toilets,Other Lekki +34123,Newly Built 5 Bedroomed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"107,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34124,4 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34125,Fully Serviced 4 Bedroom Terraced Duplex For Available At Orchid Hotel Road,Orchid Road Oral Estate Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34126,"Beautiful Finished With Touch Of Smart Network Block Of Flats, Located In The Heart Of Lekki.",Ikate Lekki Lagos,₦,"28,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +34127,Newly Built 5 Bedroom Detached House With Bq,. Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34128,Five Bedroom Fully Detached House With Bq,. Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34129,Brand New 2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +34130,Brand New Four Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34131,Furnished 2 Bedroom Maisonette, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +34132,Brand New 3 Bedroom Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34133,Brand New 5 Bedroom Fully Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34134,Newly Built 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34135,Luxury Five Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34136,Brand New Serviced 4 Bedroom Terrace House(mortgage Option Available), Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34137,Brand New 3 Bedroom Flat At Lekki, Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +34138,Exquisitely Built Luxury 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34139,4 Bedroom Contemporary Fully Detached Duplex With Service Room & Laundry Room,"Orchid Hotel Road, Chevron Lekki. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,4 beds, baths, Toilets,Chevron +34140,Fully Detached 5 Bedroom Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34141,5 Bedroom Stand Alone With A Bq For Sale At Ikate,Close To Phase 1 Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34142,Newly Built 4bedroom Semi Detached House In A Serene Environment,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34143,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,6 baths,6 Toilets,Osapa London +34144,Newly Built 3 Bedroom Duplex,Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +34145,5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +34146,Luxurious 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34147,5 Bedroom Standalone Duplex With A Bq For Sale At Ologolo,Close To Domino's Pizza Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +34148,Newly Built 4bedroom Semi Detached House With A Room Bq In A Serene Environment,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34149,"Luxuriously Finished 4 Bedroom Duplex With A Bq For Sale, Chevron Axis",Chevron Axis Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34150,Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki,"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +34151,"Luxury 4bedroom Terraced Apartments, @ Parkhust",Alma Beach Estate By Mercedes Ikate Lekki Lagos Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikate +34152,Luxury 4 Bedroom Duplex With A Massive Bq For Sale At Spg Ologolo In Lekki,Spg Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +34153,6 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +34154,Fully Serviced 3 Bedroom Flat With Swimming Pool For Sale At Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34155,Luxury 5 Bedroom Stand Alone Duplex, Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +34156,"4 Bedroom Home With 24 Hour Power Supply And Gym For Sale Near Shoprite, Osapa London",In An Estate Near Shoprite Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34157,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34158,Newly Built 5 Bedroom Fully Detached House,"Off Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34159,Serviced 4 Bedroom Duplex With A Bq & A Garden For Sale At Ikate,Ikate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34160,(luxury 4bedroom Terraced House) @ Perimeter Court 1,"Inside Madiba Estate, Ikate Lekki Phase 1 Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +34161,4 Bedroom Duplex With A Bq For Sale At Ikate,Close To House On The Rock Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +34162,Serviced 3 Bedroom Flat With Swimming Pool For Sale At Osapa/agungi Lekki,Osapa Agungi Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +34163,4 Bedroom Stand Alone Duplex With 24 Hour Electricity For Sale Chevron Axis Lekki,Chevron Axis Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34164,Exquisitely Built 4 Bedroom Terraced Duplex,By Lekki Conservation Centre Road Before Second Toll Gate Lekki Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,5 baths,6 Toilets,Other Lekki +34165,5 Bedrooms Fully Detached Duplex Osapa London,"Modasiru Eletu, Osapa London Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34166,Pre Owned 3 Bedrooms Flat At Milverton Estate Osapa,"Milverton Estate, Osapa London Osapa London Lekki Lagos",₦,"42,000,000",1,0,1,3 beds,3 baths,4 Toilets,Osapa London +34167,Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34168,"5 Bedroom Standalone Duplex With A Bq For Sale At Ikota, Close To Vgc","Ikota, Close To Vgc Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34169,Serviced 4 Bedroom With Washing Machine & Fridge,Before Canal Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +34170,Newly Built 4bedroom Semi Detached House With A Room Bq In A Serene Environment,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34171,Elegant 5 Bedroom Fully Detached House,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34172,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34173,4 Bedroom Terrace Duplex With 24 Hr Electricity Supply,Conservation Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34174,Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34175,5 Bedroom Stand Alone Duplex With 2 Bq & Laundry Room For Sale In An Estate Near Freedom Way Phase 1 At Ikate,In An Estate Near Freedom Way Phase 1 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34176,4 Bedroom Duplex With State Of The Art Finishings, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34177,Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34178,4 Bedroom Terraced With A Bq For Sale At Ikate,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +34179,Newly Built 5bedroom Detached House In A Serene Environment,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34180,"Brand New 4 Bedroom Duplex With Bq For Sale, Chevron Axis Lekki",Chevron Axis Lekki Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34181,Newly Built 4bedroom Terrace Duplex With A Room Bq In A Serene Environment,"Orchid Road, Lekki, Lagos. Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34182,"Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court, Lekki","After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +34183,"Newly Built Luxury 5 Bedroom Detached House For Sale In An Estate, Off Chevron Drive, Lekki, Lagos.","Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34184,Well Finished 5 Bedroom Detached House In A Serene Environment,"Lekky County Homes, Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"60,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34185,Aesthetic 4 Bedroom Duplex,Near Ebeano Supermarket Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34186,Luxurious 4 Bedroom Duplex,Two Streets Off Main Gate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +34187,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34188,5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +34189,"Newly Built 2 Bedroom Apartment For Sale @ 25,5m","Ikota, Vgc Lekki Lagos Ikota Lekki Lagos",₦,"25,500,000",0,1,0,2 beds,2 baths,3 Toilets,Ikota +34190,Brand New Luxury 5 Bedroom Units In Lekki,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +34191,Newly Renovated 3 Bedroom Flat(all Ensuite),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34192,Newly Luxury Built 4 Bedroom Terraced Duplex With Bq In A Serene Environment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +34193,Luxury 3 Bedroom Apartment + Bq,Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +34194,Brand New Excellently Finished 3 Bedroom Apartment Flat,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +34195,Luxury 5 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34196,"Fenced And Gated Parcel Of Land Measuring 10,756sqm","Maroko Foreshore Scheme By Lekki Phase 1, Accessible Through Oriental Hotel, Opposite Shoprite, Backing Queens Drive Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34197,Brand New 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34198,New Four Bedroom Semi Detached Duplex At Alpha Beach,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +34199,Newly Built Terrace Duplex For Sale In Igbo Efon,Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +34200,Luxurous And Very Spacious 5 Bedroom Duplex With Bq,Orchid Hotel Road Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +34201,Luxury 3 Bedroom Apartment In Lekki Phase 1,By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34202,400sqm Land For Sale At Ocean Bay Estate,Lekki Phase 2 Lekki Lagos,₦,"24,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34203,New 4bedroom Luxury Home With Attached Bq Built On 3floors With Your Own Private Gate,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +34204,Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,"Location Ikota Gra Inside Ikota Villa By Mega Chicken, Lekki Ikota Lekki Lagos",₦,"80,000,000",0,1,0,5 beds, baths, Toilets,Ikota +34205,4 Bedrooms Apartment At Lekki Phase 2 Forsale,Ilesan Ilasan Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +34206,Luxurious Brand New 4bedroom Semi Detached Duplex For Sale At Orchid Road Lekki.,"Orchid Road, Lekki Axis By Chevron. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34207,"Twin Duplex For Sale On Christ Ave, Lekki Phase 1.",Christ Avenue Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34208,Luxury Land For Sale,Nicon Nicon Town Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34209,3600 Sqm With 800sqm Setback Land For Sale Lekki Phase 1,Providence Street Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34210,Beautiful Newly Built Four Bed Semi Detached House,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,2 baths,2 Toilets,Agungi +34211,5 Bedrooms Fully Detached With 2 Bq Lundry And Store,Northern Forshore Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +34212,Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,Ikota Gra Inside Ikota Villa By Mega Chicken Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,2 baths,2 Toilets,Ikota +34213,Large Plots Of Land,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34214,Plots Or Land,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34215,Newly Built 6bedroom Duplex,Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,6 beds, baths, Toilets,Other Lekki +34216,4 Bedroom Duplex,"Adjacent Chevron Buena Vista Estate,lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,3 baths,4 Toilets,Chevron +34217,Luxury 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets,Agungi +34218,Two Bedroom Apartment, Oral Estate Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +34219,Lovely 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34220,Brand New Four Bedroom Semi Detached House With A Room Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34221,Lovely Five Bedroom Detached House With Bq, Oral Estate Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +34222,Brand New 5 Bedroom Semi Detached House With A Room Bq(mortgage Option Available),Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34223,Brand New 4 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34224,4 Bedroom Semi Detached House With A Room Bq,. Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34225,Luxury 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets,Agungi +34226,"5 Bedroom Duplex Features Swimming Pool,rooftop Terrace,gymnasium,cinema.fully Automated Smart Home.",Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34227,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,6 baths,6 Toilets,Osapa London +34228,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Chevron +34229,"Contemporary Designed 6 Bedroom Detached House With Spacious Compound,well Finished House",Gated Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,6 beds, baths, Toilets,Osapa London +34230,Executive 4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +34231,2 Units Of 4 Bedroom Semi Detached House,... Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +34232,5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34233,4 Bedroom Terrace Duplex For Sale,Chevron Estate In Lekki Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +34234,4 Bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34235,New Exquisitely Built 4 Bedroomed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +34236,5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"198,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34237,"4 Bedroom Duplex With 2 Self Contained Bqs Located On Chesachi Hani Okoroafor Close , Lekki Phase 1, Lagos.",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,6 baths,7 Toilets,Lekki Phase 1 +34238,5 Bedroom Duplex + Bq, Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,0 baths,0 Toilets,Chevron +34239,5 Bedroom Detached Duplex,Northern Foreshore Estate Of Chevron Drive Lekki Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +34240,3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34241,"New Exquisitely Built 5 Bedroomed Duplex In Osapa London, Lekki",Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34242,3 Bedroom Apartment At Chois Gardens,"Lekki Abijo, Gra Lekki Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34243,Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34244,Luxury 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34245,Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +34246,Brand New 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34247,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34248,Luxury 5 Bedroom Detached With Inverter,Near Shoprite Jakande Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34249,5 Bedroom Home With Inverter And Refrigerator For Sale In Osapa London,Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34250,4 Bedroom Detached Duplex With Bq,Eletu Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34251,5 Bedroom With Kitchen Stools And Table,Close To Shoprite Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34252,A Massive 5 Bedroom Stand Alone Duplex With Bulletproof Doors For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34253,"Ultra Modern 4 Bedroom Townhouse With A Bq At Ilasan, Ikate",Ilasan Ikate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +34254,3 Bedroom Flat,Safe Court Estate Nicon Town Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +34255,Land Measuring 3 Plots Together,Chevy View Estate Chevron Lekki Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets,Chevron +34256,Newly Built 2 Units Of 5 Bedroom Detached Houses + Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34257,"*distress Sales At V.g.c* *landsize* : *2,650 Sqm* *price Now* *n230m & Slightly Negotiable* Fenced & Gated Bareland Located At Road 22a ,v.g.c, Ajah, Available For Sale. *title*: Deed Of Sub Lease.",Vgc Ajah Vgc Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +34258,Executive 4 Bedroom Duplex,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +34259,Newly Built 4 Bedroom Duplex House In A Serene Environment,"Ologolo Village, Eti Osa Agungi Lekki Lagos Agungi Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +34260,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34261,Cofo,Pinncok Estate Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34262,"Newly Built, Tastefully Finished & Luxury 5brm Detached House + Bq @ Vgc, Lekki. #190m",Vgc Garden Vgc Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +34263,Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +34264,4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +34265,Land For Sale In Lekki (gracias Beach Front),Off Monastery Road Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34266,Land For Sale In Lekki (gracias Atlantic View),Off Monastery Road Sangotedo Lekki Lagos,₦,"8,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34267,5 Bedroom Duplex,Chevron Streer Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets,Chevron +34268,Beautiful Value Centric Starter Homes/investment Properties. Top Notch And Well Finished With Modern Appurtenances In A Great Neighbourhood.,"Location: Ikate, Lekki Ikate Lekki Lagos",₦,"28,000,000",0,1,1,2 beds,2 baths,2 Toilets,Ikate +34269,900sqm Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34270,Distressed 5 Bedroom Semi Detached House,... Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34271,"Direct 1800 Land At Victory Park Estate,",... Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34272,5 Bedroom Detached House + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +34273,450sqm Dry Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34274,600 Sqm Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34275,1000 Square Meters Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34276,Furnished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Lekki Lagos,₦,"45,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +34277,Newly Built 5 Bedroom Detarch Duplex,Johnson Omorine Strt Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34278,Tastefully Finished 5 Bedroom Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34279,Luxury 5 Bedroom Detached Duplex With Excellent Facilities, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34280,Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34281,Newly Built 5 Bedroom Duplex.cdv Eastete Lekki,Cdv Eastate Akinmade Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34282,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34283,5 Bedroom Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34284,Tastefully Finished 5 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34285,A Luxury Built 5 Bed Duplex With 2 Family Lounge And A Private Kitchen,Olanrewaju Ninolowo Strt Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34286,Newly Built 3 Bedroom Terrace Duplex With Bq,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets,Chevron +34287,5 Bed Home With A Swimming Pool And Gym,Near Circle Mall Shoprite Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34288,Newly Built 3 Bedroom Terrace Duplex At Lekki Axis Lagos,Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +34289,4 Bedroom Terraced With A Bq,Close To Shoprite Circle Mall Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34290,Newly Built 4 Bedroom Terrace Duplex And Semi Detached Duplex At Lekki Axis Lagos,Chevron Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,5 baths, Toilets,Chevron +34291,Newly Built 3 Bedroom Terrace Duplex At Lekki Axis Lagos,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,1,3 beds,4 baths, Toilets,Chevron +34292,5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34293,4 Bedroom Semi Detached Duplex With Bq @daniels Garden Lekki,By Chevron Agungi Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agungi +34294,Meridian Boulevard,Lekki Scheme 2 Okun Ajah Lekki Phase 2 Lekki Lagos,₦,"14,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34295,Perimeter Court 1,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +34296,*3 Bedroom Terrace Duplex With Bq @bella Home Phase 1,By Chevron Chevron Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +34297,5 Bedroom Luxury Home, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34298,Luxury 4bedroom Semi Detached Duplex With Bq @eli Court Lekki,Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +34299,5 Bedroom Duplex With One Room Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34300,7 Hectares Of Land For Sale,Oral Estate Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34301,Well Finished 5 Bedroom Terraced Triplex,"Horizon 2 Main, Meadow Hall Drive Ikate Lekki Lagos",₦,"70,000,000",1,0,0,5 beds,5 baths,5 Toilets,Ikate +34302,Newly Built 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +34303,Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +34304,Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +34305,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +34306,4 Bedroom With Bq In A Serene Environment (nicon Town Estate),Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +34307,5 Bedroom Detached Duplex.,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +34308,4 Bedroom Terrace Duplex.,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,4 baths,4 Toilets,Chevron +34309,4 Bedroom Semi Detached Duplex,2nd Toil Gate. Lekki Phase 2 Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +34310,4 Bedroom Fully Detached Duplexes,"Beta Estate, Chevron Drive Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34311,7 Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,1,7 beds,7 baths,7 Toilets,Chevron +34312,5 Bedrooms Detached House With A Room Boys Quarter,"Bera Estate, Chevron Drive, Lekki Peninsula, Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34313,Newly Built 4bedrooms Terrace For Sale,Lekki Phase 2 Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34314,A Flat Of Three Bedroom Ensuite On Six Floor With Elevator At Ikate,Ikate Elegusi Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +34315,Newly Well Developed Estate For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +34316,A Newly Built Hotel,Jakande First Gate Jakande Lekki Lagos,₦,"1,900,000,000",1,1,1,10 beds,10 baths,10 Toilets,Other Lekki +34317,2 Bedroom Luxury Flats With Ultramodern Facilities,Pascal Offiah Close Jakande Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +34318,Luxury 3 Bedroom Flats With Ultramodern Facilities (off Plan),Pascal Offiah Close Jakande Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +34319,5 Bedroom Detached Duplex And 1 Bq,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +34320,Newly Completed 5 Bedroom Detached Duplex,Chevron Round About Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34321,"John Great Court, Lekki, Two Beautiful 5 Bedroom Townhouses",Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34322,Newly Built 4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34323,"Barolla Estate, 12 Terraced Houses Available",Adedeji Adekola Street Lekki Phase One Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +34324,"Chevy View Estate, Lekki, 10 Modern Housing Units Of 4 5 Bedrooms.",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34325,"Bayview Estates, 100 Units For Sale",Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +34326,"4 Bedroom Twin Duplex For Sale (lekki, Idado)",Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +34327,"Bridgegate Estate, Lekki, 4 Housing Units Of 5 Bedrooms",Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +34328,"Maiyegun Beach Estates, 200 Luxury Plots",Jakande Lekki Lagos,₦,"191,000,000",1,0,0, beds, baths, Toilets,Other Lekki +34329,"Orchid, Lekki. 6 Modern Housing Units Of 4 – 5 Bedrooms.",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34330,Off Plan 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34331,Beautifully Finished Spacious 4 Bedroom Terraced Duplex.,Orchid Hotel Rd. Chevron Toll Gate. Lekki Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds, baths, Toilets,Chevron +34332,Newly Built Block Of Flats In A Serene Estate And Environment,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +34333,"Four (4)bedrooms Semi Detached House With Bq At Vgc, Lekki,lagos",Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +34334,Newly Built Block Of Flats In A Serene Estate And Environment,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +34335,Land With C Of O For Sale In Lekki ( Frontier Estate),Bogije Lekki Lagos,₦,"13,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34336,7 Bedroom Fully Detached Duplex With 4 Rooms Guest Chalet,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"440,000,000",0,0,0,7 beds, baths, Toilets,Lekki Phase 1 +34337,Luxury 5 Bedroom Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34338,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +34339,Exotically 4 Bedroom Semi Detached Duplex In Creek Avenue Court Lekki. Pay And Pack In.,Back Of Okota School Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +34340,5 Bedroom Fully Detached Duplex With Bq,"Chevron Toll Gate , Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds, baths, Toilets,Chevron +34341,Genuine Lekki Scheme One Plots,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34342,Nlng Cowrie Creek Estate,Nlng Ikate Lekki Lagos,₦,"115,000,000",0,1,0, beds, baths, Toilets,Ikate +34343,Luxury Houses Pinnock Beach,Updc Pinnock Beach Osapa London Lekki Lagos,₦,"180,000,000",1,1,1,6 beds,8 baths,8 Toilets,Osapa London +34344,Smart Win Homes Estate Plots,Orchid Hotel Road Lafiaji Ikota Lekki Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets,Ikota +34345,Distress Sale Detached House,Oriwu Street By U3 Estates Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +34346,Distress Sale 1100sqm Plot,Chevron Twinlakes Chevron Lekki Lagos,₦,"130,000,000",0,1,0, beds, baths, Toilets,Chevron +34347,Megamound Lekki County Estate,Lekki County Ikota Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets,Ikota +34348,Land Measuring 950m2,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34349,4 Nos 3 Bedroom Terraced House With 1 Room Boys' Quarter,Bera Estate By Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets,Chevron +34350,Prime Land For Sale,Orchid Road By Orchid Hotel Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +34351,5 Bedroom Duplex With Bq At Chevron,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34352,5 Bedroom Duplex With Bq At Chevron,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34353,Four Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34354,"Newly Built 2 Floors Building For Office, School, Hotel Or Factory /warehouse",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,1 beds, baths, Toilets,Lekki Phase 1 +34355,Newly Built Duplex,Canal View Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34356,Newly Built & Partly Furnished 4 Bedroom Detached House At Lekki Phase 1 N120m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34357,Distress Vendor Property,Acadia Grove Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Osapa London +34358,Pinnock Beach Plots,Pinnock Beach Osapa London Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Osapa London +34359,758 Sqm Land,By Oral Extension Area Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34360,Land Measuring 950m2,Twin Lake Estate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34361,A 5 Bedroom House With 1 Room Bq,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34362,A 5 Bedroom Detached House With 1 Room Bq And Swimming Pool,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34363,We’ve Got A Brand New 4 Bedroom Terrace Duplex With A Room Bq At Orchid Road.,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34364,Newly Built 4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34365,Newly Built 4 Bedroom Duplex With A Bq,"Conservation Road, Orchid Side Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +34366,Newly Built 8 Units Of 3 Bedroom Terrace,"Pacific Court, Orchid Chevron Lekki Lagos",₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets,Chevron +34367,Very Sweet Brand New 4bedroom Semi Detached Duplex At Orchid Road,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34368,4 Bedroom Duplex With 4 Units Of 2 Bedroom Flat On 900sqm Land At Ologolo Opposite Agungi,Ologolo Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ologolo +34369,Tasted Beautiful Five Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34370,Urgent Land For Sale 2plot Dry Land,V I Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34371,This Magnificent Five Bedroom Fully Detached Duplex At Ikate Lekki Phase One Very Very Beautiful,Lekki Phase 1 Ikate Lekki Lagos,₦,"100,990,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34372,Luxury 4 Bedroom Semi Detached Duplex,Lafaiji Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34373,A Well Finished 2bedroom With Bq At Jakande First Gate Ilasan,Ilasan Jakande Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +34374,Brand New Semi Detached Duplex,Eligansa Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34375,N170million Each: Detached House In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +34376,"Dry,flat Plot Of Land In A Fully Developed Neighbourhood At Oluwa,abijo Gra Lekki #6m",Abijo Gra Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34377,5 Bedrooms Detached Bungalow With Bq On A 650sqm,Mayfair Garden Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +34378,5 Bedroom Fully Detached Duplex With A Bq,"Ikate, Near Chisco Ikate Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +34379,"Exquisite 4 Bedrooms Detached Duplex, Lekki","By Lekki Conservation Road, Lekki Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +34380,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds, baths, Toilets,Chevron +34381,4 Bedroom + 1 Rm Bq Setback In Front,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,4 baths,5 Toilets,Ikota +34382,Massive 4 Bedroom Stand Alone Duplex With Bq,Near Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +34383,"For Sale: 4 Bed Townhouse With A Bq , Study And 2 Living Rooms, 4 Toilets And 3 Baths",Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,3 baths,4 Toilets,Lekki Phase 1 +34384,7bed Room Detached House With 2rooms Bq N 2bedroom Flat Chalet All Room Ensuit With 3 Sitting Room,Atlantic View Estate Lekki Lagos,₦,"85,000,000",0,0,0,7 beds, baths, Toilets,Other Lekki +34385,Plot Of Land Measuring 650m2 At G. Kappa Estate Before Shoprite Sangotedo Lekki Ajah Lagos,Sangotedo Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34386,"Well Maintained 3 Bedrooms Terrace Duplex With Bq Off Fola Oshibo,lekki Peninsula Phase 1.#50m Net",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +34387,Lagoon Front 4 Bedroom House (under Construction),Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34388,"Tastefully Finished 3 Bedroom Duplex At Lekki Gardens Estate,phase2 Along Lekki Epe Express,lagos","A Lekki Gardens Estate,phase2 Along Lekki Epe Express,lagos Lekki Lagos",₦,"30,000,000",0,0,0,3 beds, baths, Toilets,Other Lekki +34389,"2units Of 5bedroom Detached House @ikota Megamond, Lekki 120m Per Unit",Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets,Ikota +34390,"2units Of 4bedroom Semi Detached House In A Serene And Mini Estate At Ikota Villa By 2nd Toll Gate, Lekki Lagos",Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets,Ikota +34391,4 Bedroom En Suite Terraced Duplex,Lekki Garden 3 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34392,Serviced Brand New 4 Bedroom House With 24 Hour Power Supply And A Bq For Sale In Lekki,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34393,4 Bedroom Home With A Bq,Spg Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34394,Aesthetic 5 Bed House With A Bq,Near Total Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +34395,Luxury 5 Bedroom Fully Detached With Bq,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +34396,Land,Dele Ogunbowale Crescent Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34397,Beautifully Finished 5 Bedroom Duplex With Boys Quater,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34398,A Luxurious 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34399,Land Measuring 175 Plots (minimum Plots To Be Sold Is 6 Plots @ 50m/plot),Chevron Drive Opposite Carlton Gate & Bourdillon Court Estate. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34400,Bare Land Measuring 2775.80 Sqm,"Beside Parktonia Hotel, Directly Along Lekki Epe Expressway Ikate Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Ikate +34401,Luxury 3bedroom Duplex For Sale At Lekki Gardens,Lekki Gardens Phase 4 Lekki Lagos,₦,"29,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +34402,Executive Brand New 5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34403,4 Bedroom Semi Detached House With Bq At Bera Estate By Chevron Drive,Bera Estate Chevron Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,5 baths,5 Toilets,Chevron +34404,Newly Built Extremely Well Finished One Bedroom Terrace (on Two Floors)house,Orchid Road Ikota Lekki Lagos,₦,"23,000,000",1,1,0,1 beds,2 baths,2 Toilets,Ikota +34405,Covequest 5 Bedroom Terraced Duplexes,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +34406,Newly Finished 5 Bedroom Detached House With A Pool,Olowo Eko Street Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34407,"A Terrace 4 Bedroom Duplex Serviced Apartment,with Well Equipped Children Playing Ground And Treated Borehole Watwr","12,elegushi Streer Ikate Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,4 baths,5 Toilets,Ikate +34408,Newly Built 4 Bedroom Duplex With Boys Quarters,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +34409,Newly Built 5 Bedroms Fully Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34410,Governor's Consent,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34411,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +34412,5 Bedroom Semi Detached Chevy View,Chevy View Chevron Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34413,Location : Ojulari Road Beside Safe Court Apartment | Behind House On The Rock Size : 4411 Sqm Title: Government Consent Price: 1 Billion,Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34414,"Plots Of Land, Atlantic Courtyard Estate, Okun Ajah",Okun Ajah Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34415,4 Bedroom Detached Duplex With Bq Bakare,Bakare Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34416,5 Bedroom Fully Detached Chevy View,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34417,Land For Sale In Sangotedo Lekki. (amity Estate),"Amity Estate Is Located At Sangotedo, Lekki Lekki Lagos",₦,"16,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34418,5 Bedroom Semi Detached Duplex With 2 Bq,Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Lekki +34419,Land For Sale At Cheap Rate With Promo Price,Lekki Phase 2 Lekki Lagos,₦,"12,350,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +34420,Good Location C Of O Land For Sale In Lekki (pertinence Ltd),"Inside Beechwood Estate, Shapati, Lekki. Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34421,Serviced 2 Bedroom Penthouse Lekki Phase 1 50m,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +34422,5 Bedroom Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 2 +34423,5 Bedroom Detached Duplex With Bq Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +34424,Luxury 4 Bedroom With Bq And Pool Lekki County,Lekki County Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +34425,Luxury 5 Bedroom Detached Duplex With 2 Bq And Pool Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +34426,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +34427,Luxury 4 Bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34428,Land For Sale In Lekki (bank Estate),It Is 14 Minutes From The Lekki International Airport. Lekki Lagos,₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +34429,Luxury 4 Bedroom Semi Detached With Bq In Orchid,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,6 Toilets,Other Lekki +34430,Newly Built 5 Bedroom With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths, Toilets,Chevron +34431,Affordable Land For Sale,Lekki Phase 2 Lekki Lagos,₦,"4,800,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34432,4bedrooom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +34433,5 Bedroom Detached Duplex With Bq Lekki Phase 1,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +34434,Luxury 4 Bedroom Detached Duplex With Bq Osapa,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34435,C Of O Land For Sale (vip Gardens Pertinence Ltd),Lakowe Golf Course Lekki Lagos,₦,"7,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34436,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +34437,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +34438,Newly Built 5 Bedroom Detached Duplex With Bq Lekki County,Lekki County Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 2 +34439,3 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34440,Luxury 5 Bedroom Detached Duplex With 2 Bq And Pool,Pinnock Beach Estate Lekki Lagos,₦,"440,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Lekki +34441,5 Bedroom Detached Duplex Chevron 60m,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34442,5 Bedroom Detached Duplex With Bq And Pool Pinnock,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +34443,Luxurious 5 Bedroom Detached Duplex With Bq,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +34444,C Of O Land For Sale (dpk Estate Sangotedo),"Adjacent Emperor Estate And Shoprite, Sangotedo. Lekki Lagos",₦,"19,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34445,C Of O Land For Sale In Sangotedo (lexington Gardens),Lexington Gardens Is Close To The Expressway And In Close Proximity To Shoprite. Lekki Lagos,₦,"19,000,000",1,1,0, beds, baths, Toilets,Other Lekki +34446,5 Bedroom Detached Duplex With Bq And Pool Pinnock,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +34447,5 Bedroom Detached Duplex With A Bq Price: 80m Location: Lekki,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +34448,Luxury 4 Bedroom Detached Duplex With Bq Lekki,Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +34449,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +34450,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Lekki With C Of O At (creek Avenue Court),"After Chevron Toll Gate, Ikota Lekki Lagos Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Lekki +34451,Land In A Modern Area For Sale At Promo Price,Lekki Phase 2 Lekki Lagos,₦,"11,850,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +34452,3 Bedroom Terrace Duplex With Bq,Lekki Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +34453,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34454,Luxury 5 Bedroom Detached Duplex With Bq And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets,Osapa London +34455,5 Bedroom Detached Duplex With Bq,Pinnock Beach Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +34456,3 Bedroom With Bq Chevron 35m,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34457,5 Bedroom Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +34458,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,6 Toilets,Other Lekki +34459,4 Bedroom Detached Duplex With Bq Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +34460,Ikate 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,6 Toilets,Ikate +34461,Luxury 4 Bedroom Semi Detached Duplex With Bq Ikota,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +34462,Land For Sale In Sapati Lekki (grand Lux Estate),"Bule Pan, Sapati Lekki Before Eleko Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets,Other Lekki +34463,"Luxury 5 Bedroom Detached Duplex, Pinnock Beach Estate, Lekki",Pinnock Beach Estate Jakande Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +34464,Newly Built 5 Bedroom Duplex On Lekki Phase 1,Owolabi Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34465,5 Bedroom Semidetached Duplex,Bridgegate Estate Agungi Lekki Lagos,₦,"65,000,000",1,0,1,5 beds,5 baths,5 Toilets,Agungi +34466,3 Blocks Of 3 Bedroom Flat With A Bq In Osapa London Lekki,2 Minites Away From Circle Mall Osapa London Lekki Peninsular Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +34467,Newly And Uniquely Built 5 Bedroom Detach Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"198,000,000",0,1,1,6 beds,6 baths,7 Toilets,Osapa London +34468,Flash Sale: Pay N38m And Spread Balance For This 4bedroom Semidetached,Oral Estate Lekki Lagos,₦,"49,000,000",1,0,1,5 beds,4 baths,6 Toilets,Other Lekki +34469,4bedroom Semi Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"53,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +34470,4bedroom Duplex Strategically Positioned Close To Chevron. Just About 5minutes Drive From Lekki Toll Gate.,"Chevron Area, Lekki Chevron Lekki Lagos",₦,"51,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +34471,It Is A Lovely 4 Bedroom Terrace Duplex With All Rooms Ensuit,Lekki Garden 3 By Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34472,"Gorgeous And Most Affordable 1bedroom Apartments Available For Sale In Oral Estate, Lekki.",Oral Estate Lekki Lagos,₦,"18,000,000",1,1,1,1 beds,1 baths,1 Toilets,Other Lekki +34473,"5 Bedroom Semi Detached Duplex On 540 Sq. M At Carlton Gate Estate, Chevron Drive, Lekki",Chevron Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,5 Toilets,Chevron +34474,Oceanview 4bedroom Mesionate With Lounge And Lobby For A Lovely Dinner Outing And Bar,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +34475,It Is A Lovely 4 Bedroom Terrace Duplex With All Rooms Ensuit,Lekki Garden 3 By Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 2 +34476,Pack Into Your 4bedroom Serviced Semidetach Along The Express With Swimming Pool With 24hours Electricity,By Opposite Vgc Vgc Lekki Lagos,₦,"49,999,999",1,1,1,4 beds,4 baths,5 Toilets,Victoria Garden City +34477,C Of O. A Lovely 4 Bedroom Detached Duplex,Stillwater Garden Estate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +34478,4bedroom Semidetached Duplex In Ikota Villa Estate,Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +34479,5 Bedroom Semidetached Duplex With Bq N65m,Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +34480,Flash Sale : Own A Newly Built 3bedroom Terrace With Just N1m Initial Deposit,Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets,Chevron +34481,Newly Built Apartment,Chevron Lekki Lagos,₦,"34,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +34482,4 Bedroom Duplex With C Of O,Stillwater Garden Estate Ikate Elegushi Area. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34483,2bedroom Service Apartment For Sale,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34484,Beautifully Painted 4bedroom Semi Detached,Ikota Lekki Lagos,₦,"34,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +34485,Distressed Sale For Half Plot Of Land Close To Shell Cooperative For Sale,Chevron Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Chevron +34486,"For Sale:fully Furnished Service 2bedroom Flat @ Ikate, Lekki",Ikate Lekki Lagos,₦,"60,000,000",1,1,1,2 beds,2 baths,2 Toilets,Ikate +34487,Lovely Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +34488,Lovely 2 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +34489,Lovely Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +34490,Beautifully Built 4 Bedroom Duplex With A Room Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34491,A Lovely 4 Bedroom Duplex, Agungi Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +34492,4 Bedroom Townhouse With A Penthouse,"Springbay Estate 3 Bakare Street, Off Ayigoro Street Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,3 baths,4 Toilets,Ikate +34493,A 4 Bedroom Town House With A Penthouse In A Superbly Managed Estate,"Springbay Estate 3 Bakare Street, Off Ayigoro Street Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",1,0,0,4 beds,3 baths,4 Toilets,Ikate +34494,4 Bedroom Terraces,Chevron Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds, baths, Toilets,Chevron +34495,Governors Consent,Chevy View Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets,Chevron +34496,Brand New 4 Bedroom Fully Detached Duplex.,"Ikota Villa Estate, Ikota Lekki Ikota Lekki Lagos",₦,"85,000,000",0,1,1,4 beds, baths, Toilets,Ikota +34497,Governor’s Consent,"Bera Estate, Chevron Drive, Lekki Lagos State Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds, baths, Toilets,Chevron +34498,30 Room Hotel Situated In The Heart Of Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +34499,20 Room Hotel,Chief Collins Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +34500,Luxury 5bedroom Fully Terraced Duplex + Bq,"Megamound Estate, Lekki , Lagos Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,5 Toilets,Ikota +34501,Units Of 2/3bedroom Flats Available For Up Plan Purchase,Chisco Bus Stop Ikate Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +34502,Newly Built 4 Bedroom Duplex,Beechwood Estate Lekki Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34503,Newly Built 4 Bedroom Duplex,Beechwood Estate Lekki Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +34504,Newly Built 4 Bedroom Duplex For Sale,Beechwood Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34505,Newly Built 4 And 5 Bedroom Duplexes For Sale,"Buena Vista Park, Chevron Lekki Chevron Lekki Lagos",₦,"57,000,000",0,1,0,5 beds,4 baths,4 Toilets,Chevron +34506,Petrol Station,Lekki Express Way Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34507,Newly Built 8 Units Of 4 Bedroom Terrace Duplex,Atlantic View Estate Alpha Beach Chevron Lekki Lagos,₦,"30,000,000",0,1,0,4 beds,2 baths,2 Toilets,Chevron +34508,Land,"Pinnock Beach Estate, Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34509,3 Nos Five Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34510,700sqm Land For Sale @ Vgc,... Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +34511,Land,"Nicon Estate, Nicon Town Lekki Lagos",₦,"920,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34512,Land,"Northern Foreshore Estate,chevron Drive, Lekki Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34513,300 Plots Of Land Measuring 500sqm,... Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34514,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +34515,4 Bed Terrace With Maid's Room ( Off Plan),"Lekki Right, Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34516,5bedroom Duplex With 2rooms Bq,... Lekki Phase 2 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34517,800sqm Corner Piece Land,Cowrie Creek Estate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34518,Land,"C Zone, Nicon Town Lekki Lagos",₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34519,House ( Off Plan), Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +34520,4 Bedroom Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +34521,5 Bedroom Fully Detached With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34522,Land,"A Zone, Nicon Town Lekki Lagos",₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34523,Newly Built 4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +34524,Land,"Parkview Estate, Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34525,Fenced And Gated Bare Land,Lekki Scheme 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34526,Land,"Pinnock Beach Estate, Lekki Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34527,5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34528,"Fenced And Gated Bareland Measuring 1,137sqm","Lekki Scheme 1, Off General Emdim Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34529,Newly Built 5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34530,950sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34531,Lovely Massive 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34532,Waterfront Land,"Pinnock Beach Estate, Lekki Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34533,5 Bedroom Duplex,"Pinnock Beach Estate, Lekki Peninsula Lekki Lagos",₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +34534,Land,"Pinnock Beach Estate, Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34535,Land Measuring 1146sqm ,Off African Lane Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34536,Newly Built 4 Bedrooms Semi Detached House With Two Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34537,Land,"Block 108, Plot 16. Ola Adelekan Close. Off Gen Edmin St, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34538,Serviced 800sqm Plot Of Land,Cowrie Creek Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34539,6 Bedroom Fully Detached House With Pent House,... Nicon Town Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34540,Land, Lekki Phase 1 Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34541,Land,"Melrose Park, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34542,980sqm Land,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34543,Luxury 2 Bedrooms Flat With Good Facilities, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +34544,"93 Land For Clearing & Road Work ,investor Get 192 Plot""at Lekki Eleko Sheard Fenced With Amen Estate Phase2 Land ,, Emen Estat Is Sailing Per Plot #15million [redacted]","93 Acres Clearing & Road Work ,investor Get 192 Plots, At Lekki Eleko, The Land Is Facing Express , Sheared Boundry With Emen Estate Land 08063022968 08080842955 Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths,7 Toilets,Lekki Phase 2 +34545,Land For Sale 2 Plot Facing The Express At Ajuwe Ajah,"At Lekki Ajah Ajuwe, The Land Is Facing The Express Directly, 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34546,Newly Built 4 Bedroom,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +34547,90% Complete 7 Bedroom Duplex,Omo Oba Olukolu Vgc Igbo Efon Lekki Lagos,₦,"85,000,000",0,1,0,7 beds,7 baths,7 Toilets,Other Lekki +34548,"For Sale Toyota Seana, Good Working Condition,at Lekki Ajah",For Sale Toyota Sienna Lekki Phase 1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34549,Excellent 4 Bedroom Terrace / Duplex,"Off Busola Durosinmi Etti Drive, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"190,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34550,Newly Built 5 Bedroom Luxury Duplex At Osapa London,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +34551,"2 Plots Of Land, A Corner Piece, In Jakande , Off Lekki Beach Road.","Gbara Street, Off Lekki Beach Road Jakande Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34552,Newly Built 4 Bedroom Semi Detached Duplex In Daniels Gardens Lekki,Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,6 Toilets,Osapa London +34553,5 Bedroom 2 Story Duplex And A Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34554,5 Bedroom Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34555,Luxurious Apartment In Green City Lekki Phase 1,"Goshen Road, Elf Bustop, Second Round About, Petrocam Filling Station And City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34556,Green City Estates ( 3 Bed Room Flat),"Green City Estates: Elf Bustop, 2nd Round About By Petrolcam Filling Station And City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34557,"5bedroom Duplex,one Room Bq With Swimming Pool On 550sqm",Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34558,Massive 4 Bedroom Detached Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,1 Toilets,Lekki Phase 2 +34559,"Luxury 4bedroom Fully Detached Duplex Plus Bq 2 Living Room And Cctv Etc, At Jakande Lekki",Jakande Lekki Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +34560,Exclusive House Offers At Lekki Phase 1,"Goshen Road, Elf Bustop, Petrolcam Fueling Station, Very Close To City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34561,Exclusive House Offers At Lekki Phase 1,Elf Bus Stop Close To The Petrocam Fueling Station Near City Lodge. 2nd Roundabout Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,1 Toilets,Lekki Phase 1 +34562,Three Bedroom Apartment At Lekki Phase 1,"Green City Lekki: Is Located At Elf Bustop , 2nd Roundabout By Petrolcam Filling Station And City Lodge Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34563,A 4bedroom Fully Detached Duplex Plus Bq At Ashapa London Lekki,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34564,3 Bedroom Terrace Duplex With Bq At Bella Homes 1,Lafiaji Community Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,4 baths,5 Toilets,Chevron +34565,"4 Bedroom Fully Detached Duplex With Bq At Royal Palm Estate Along Orchid Road,behind Oral Estate Ikota Lekki,title Governor Consent",Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +34566,"3 Unit Of A Newly Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,and A Wine Bar At Lekki Phase 1",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34567,"Landinvest Lekki, Ibeju Lekki Lagos",Lekki Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Other Lekki +34568,Luxury 4bedroom Semi Detached Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +34569,4 Bedroom Fully Detached Duplex With Bq Newly Built At Asapa London Lekki With Governor Consent Furnished,Lekki Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +34570,Well Finished Newly Build 5bedroom Fully Detached Duplex On 360 Sqm With A Bq Close To Shoprite Call Me And Asking For More Picture,Lekki Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +34571,Brand New Smart 4 Bedroom & 5 Bedroom Detached Duplex For Sale At Lekki Lagos,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +34572,"3 Bedroom Apartment, Lekki Phase 1,","Goshen Road, Elf Bustop, Petrolcam Filling Station Very Close To City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34573,"Land For Sale 560 Sqm, Inside Lekki Phase 1","Land Fir Sale 560 Sqm ,#120m Inside Lekki Phase1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34574,"Land For Sale ,1000sqm Facing Admiralty Road Lekki Phase 1","Land Ffor Sake 1000 Sqm, Price #320m Inside Lekki Phase1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34575,Land For Sale One Plot Inside Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34576,"Exotic 2020 Real Estate Investment Offer With Very Juicy Returns And A Trip To Dubai.invest In Lekki Pearl Garden, Abijo","Beside Amity Estate,lekki Epe Expressway Ikate Lekki Lagos",₦,"10,000,000",0,1,0, beds, baths, Toilets,Ikate +34577,Neatly Renovated 4 Bedrooms Detached Cornerpiece Duplex,Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +34578,Brand New Beautiful 4bed Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +34579,Cofo,"7,abijo Street, Lekki Lekki Phase 2 Lekki Lagos",₦,"110,011,000",0,1,0,3 beds,2 baths,4 Toilets,Lekki Phase 2 +34580,4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +34581,Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Chevron +34582,Cornerpiece Land Measuring 900sqm,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34583,Land Measuring 400sqm,"Lake View Park 2 Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"29,000,000",0,0,0, beds, baths, Toilets,Chevron +34584,4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34585,Cornerpiece Land Measuring 800sqm,Bera Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34586,5 Bedroom Fully Detached,Ikota Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34587,Joint Venture (jv): Cornerpiece Land Measuring 4 Plots,Off Nevada Hotel Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34588,"Two Contiguous Waterview Plots, Measuring Approximately 2500sqm And Duly Fenced","Plots A 93 & A 94, Road 2, Vgc Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +34589,3 Bedroom Flat With Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34590,1900sqm Land Allocated For Petrol Filling Station(pfs), Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34591,Exceptional 4 Bedroom Off Plan Development In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"104,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34592,4 Bedroom Semi Detached Newly Built,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34593,700sqm Of Land After Victoria Crest 3 Orchid Road,Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34594,2 Bedroom Flat Newly Built For Sale,Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +34595,Brand New And Serviced 3 Bedroom Flat With A Bq + 24hrs Electricity,"Bourdillon Court, Chevron Drive Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +34596,"Distress Sale 3 Bed Rooms Boungalow,at Lekki Sangotedo Shop Rite Area",Sangotedo Lekki Phase 1 Lekki Lagos,₦,"15,000,000",1,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +34597,"Newly Built 3 Bedrooms Triplex In Oribanwa, Lekki Peninsula","Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"23,670,000",1,1,1,3 beds,4 baths,4 Toilets,Lekki Phase 2 +34598,Newly Built 4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +34599,Newly Built 4 Bedroom Terrace N Serene Environment,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34600,Newly Built Luxury Finished 4 Bedroom Fully Detached Duplex With Bq (creek Avenue Court Phase 2),After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +34601,Newly Built 3 Bedroom Terrace Duplex With Bq (bella Homes Phase 2),Toll Gate Axis Lekki Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,4 Toilets,Chevron +34602,Governors Consent,"Adedayo Ogunsanya Street Ivy Home Ikota,lekki County Homes Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +34603,Brand New 3 Bedroom Terrace Duplex With Bq Morgage Available,Lafiaji Orchid Road Oral Estate Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +34604,Luxury 4 Bedrooms Semi Detached Duplex,Oando Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34605,Luxury 2 Bedroom Flat,Oando Road Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +34606,Luxury 5 Bedrooms Fully Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34607,Luxury 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34608,5 Bedroom And 4 Bedroom Smart Home Technology Duplexes For Sale,"Orchid Hotel Road, 2nd Toll Gate Lekki Lagos Lekki Lagos",₦,"62,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +34609,Newly Built 4bed Duplex,Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +34610,For Sale: 6 Bedroom Mansion,Vgc Lekki Lagos,₦,"330,000,000",0,0,0,6 beds,8 baths,8 Toilets,Victoria Garden City +34611,"5 Bedroom House All Rooms En Suite For Sale At Nicon Town, Lekki Lagos.","Road 10, C Zone, Nicon Town Nicon Town Lekki Lagos",₦,"222,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34612,"6 Flats At Agungi, Lekki Lagos For Sale.",Agungi Lekki Lagos Agungi Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Agungi +34613,4 Bedroom Fully Detached [email protected],Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets,Ikota +34614,Newly Built 4 Bedroom Terrace Duplex In Serene Area,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +34615,Newly Built 5bedroom Duplex At Cheveron Lekki Lagos,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +34616,Land At Lekki Pearl Garden Abijo,Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets,Other Lekki +34617,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34618,Four Bedroom Terrace At Lekki,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34619,Newly Built Semi Detached Duplex With Two Room Bq At Lekki,Church/ Paul And Peter Street Off Admiral Macaulay Close Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34620,4 Units Of 4 Bedroom Terrace Duplex With 1 Room Bq At Lekki,Oba Yekini Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34621,Land At Lekki,Orange Island ( Residential Phase) Lekki Phase 1 Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34622,Mansion At Lekki,Plot 9/11 Road 24 Off Road 27 Ikota Lekki Lagos,₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikota +34623,Exquisite Newly Built 5 Bedroom Semi Detached Duplex At Lekki,Ojo Oyewo Road Idado Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34624,Semi Detached 5 Bedroom Duplex At Lekki,Ayinke George Street Off Palm Springs Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34625,"2 Units Of 3,4 And 5 Bedroom Duplex At Lekki",Sillicon Valley Estate Augustina Orji Street Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34626,3 Bedroom Terrace Duplex + Bq At Lekki,Off Palm Springs Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34627,Three Bedroom Terrace Duplex With Room Bq At Lekki,Prince Ademola Street Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +34628,Newly Built 3 Bedroom Flat,"19, Dele Adeyemi Street Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +34629,10 Units Of 4 Bedroom Terrace Duplex At Lekki,"Palm Springs Road, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34630,30 Units Of 3 Bedroom Flat At Lekki,Adenike Ajibode Street Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34631,Exquisite 4 Bedroom Terrace At Lekki, Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34632,4 Bedroom Duplex With Bq,Lekki Garden's Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +34633,4 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +34634,Newly Built And Tastefully Finished 5bedroom Detached Duplex,"Whitesand School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,0 baths,5 Toilets,Lekki Phase 1 +34635,5 Bedroom Detached House In V.g.c,Vgc Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,4 baths,5 Toilets,Victoria Garden City +34636,Land For Sale,Elegushi Street Off Ajifoluke Commissioner Road Oba Yekini Adeniyi Elegushi Unity Estate Iroko Awe Lekki Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34637,4 Bedroom Semi Detached House With 1 Room Bq,Off Durosimi Etti Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34638,Brand New 4 Bedroom Detached Duplex + 2bedroom Bq,"16a, Oladimeji Alao Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34639,5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +34640,Serviced And Perfectly Finished 4 Bedroom Semi Detached Duplex With A Room Self Contain Bq,"Cooplag Estate, Immediately After Second Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34641,3 Bedroom Semi Detached Duplex,"Otunba Wale Olufeko Drive, Off Emmanuel Emenike Street Chevron Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +34642,4 Bedroom Terraced Apartment,Ocean Bay Estate Chevron Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +34643,5 Bedroom Semi Detached House,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34644,Fully Detached 5 Bedroom Duplex With A Bq,Off Akeem Dickson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34645,A Solid And Sound 5 Bedroom Semi Detached Duplex Plus A Room Bq,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +34646,4 Bedrooms Semi Detached House With 2 Rooms Bq, Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +34647,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +34648,Land,"Elegushi, Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34649,10 Units Of Of 5 Bedroom Semi Detached Houses,... Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +34650,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,"Agungi, Lekki Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34651,Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +34652,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +34653,4 Bedroom Semi Detached,Idado Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +34654,"Terraced Houses With Bq, Shared Pool & Gym",Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +34655,Fenced And Gated Plots Of Land,Behind Dillion Office Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34656,5 Bedroom Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34657,Lovely Well Built 4 Bedroom Detached House With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +34658,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34659,4 Bedroom Terraces,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34660,3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +34661,3 Bedroom Flat With Bq,Richmondgate Estate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +34662,4 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34663,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34664,6 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,6 beds,6 baths,7 Toilets,Osapa London +34665,4 Bedroom Terrace Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34666,Luxury 5 Bedroom Detached Duplex With Bq,Kazeem House Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34667,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34668,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34669,Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34670,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34671,Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34672,5 Bedroom Detached Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +34673,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34674,30 Rooms Exotic Hotel,"Eleko, Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34675,Superbly Finished Luxury 5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34676,Serviced 5 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +34677,4 Bedroom Semi Detached,Idado Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +34678,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +34679,4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +34680,Luxury 4 Bedroom Terrace Duplex,"Ikate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34681,Luxury 4 Bedrooms Duplexes With Excellent Facilities,"Ilasan, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34682,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,"Agungi, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34683,3 Bedroom Terrace With Bq.,Close To Lekki 1 Ikate Lekki Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +34684,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +34685,5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +34686,12 Units Of 5 Bedroom Detached House For 80milion,... Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +34687,4 Bedroom Semi Detached Duplex With 1 Room Bq,"Northpointe Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34688,2 Bedroom Terrace Duplex,"Agungi, Lekki Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +34689,Luxury 5 Bedroom Fully Detached Duplex,Adekola Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34690,Luxury And Excellent 4 Bedroom Detached Duplex With Good Facilities, Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34691,Luxury 3 Bedrooms Flat With Excellent Facilities,Lekki Free Zone Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +34692,Luxury 4 Bedroom Terraced Duplex,Off Kusela Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34693,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34694,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34695,Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34696,Tastefully Finished Luxury 5 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34697,Bare Land Measuring 1147 Sqm,Off Africa Lane Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34698,4 Bedroom Semi Detached Duplex With Bq,"Richmondgate Estate, Ikate Ikate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +34699,4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +34700,Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34701,Well Furnished 41 Rooms Hotel,... Chevron Lekki Lagos,₦,"1,500,000,000",0,1,1,0 beds,0 baths,0 Toilets,Chevron +34702,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Mobil Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +34703,4 Bedroom Semi Detached Duplex,"Agungi, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34704,Luxury 3 Bedroom Flat With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +34705,3 Bedroom Terrace With Two Ensuite Bqs,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +34706,6 Bedroom Detached House @ Pinnock Beach Estate, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 2 +34707,Executive 5 Bedroom Duplex With 2rooms Bq,"Pinnock Beach Estate, Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +34708,Luxury 4 Bedroom Terraced Duplex,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34709,Luxury 5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34710,Luxury 2 Bedroom Flat With Excellent Facilities,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +34711,Luxury And Superbly Finished 4 Bedrooms Detached Duplex With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34712,Luxury 5 Bedrooms Detached Duplex With Excellent Facilities,West Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34713,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34714,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34715,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34716,5 Bedroom Terraced Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34717,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34718,5 Bedroom Detached House @ Pinnock Beach Estate,... Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +34719,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Osapa Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34720,5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34721,New 3 Bedroom Flat,Richmondgate Estate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +34722,4 Bedroom Semi Detached Duplex With A Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +34723,4 Bedroom Terraced Duplex With Bq In Serviced Estate,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34724,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34725,Exclusively Finished 5 Bedroom Luxury Family Home Fully Detached Plus Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +34726,Land, Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34727,Luxury 3 Bedroom Flat With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +34728,4 Bedroom Terrace Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34729,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Ologolo Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34730,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +34731,Luxury 4 Bedroom Semi Detached Duplex With Good Facilities,Osapa Road Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34732,Luxury 3 Bedroom Terrace Duplex With Excellent Facilities,"Orchid Way, Lagos Ikota Lekki Lagos",₦,"33,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +34733,Tastefully Finished Luxury 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34734,Luxury 4 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +34735,Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34736,Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34737,Luxury 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34738,3 Bedroom Semi Detached Duplex,Orchid Way Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +34739,Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34740,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,"Northern Foreshore, Chevron Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34741,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ganiyu Street Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34742,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Idado Estate; Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34743,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34744,Luxury 5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34745,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34746,Luxury 5 Bedrooms Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34747,6 Bedroom Detached House @ Pinnock Beach Estate, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 2 +34748,17 Nos Apartment Building,"Babafemi Osoba Street, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"650,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +34749,Massive 5 Bedroom Fully Detached Duplex + 1 Room Bq, Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +34750,Luxury 5 Bedroom Terrace Duplex,"Ikota Villa, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34751,5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +34752,5 Bedroom Duplex With 2 Bedroom Bq,"By Hakeem Dickson Street, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34753,Newly Built 2 Units Of Massive 5 Bedroom Fully Detached Duplex Plus Bq,In A Secure Estate On Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +34754,5 Bedroom Detached House @ Pinnock Beach Estate,... Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +34755,4 Units Of 5 Bedroom Duplex Mansion,... Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34756,Luxury 4 Bedroom Semi Detached Duplex,Orchid Way Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34757,Tastefully Built Elegant And Sophisticated 5 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,0 Toilets,Ikate +34758,5 Bedroom Detached Duplex,Ikota Villa Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34759,Luxury 5 Bedroom Semi Detached Duplex,"Ikota Villa, Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34760,4 Bedroom Duplex,Marwa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34761,4 Bedroom Semi Detached Duplex,Alperton Residences Osapa London Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +34762,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34763,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34764,Carcass 4 Bedrooms Terraced Duplex With Excellent Facilities,"Ilasan, Lekki Lagos",₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34765,Executive 5 Bedroom Duplex In Lekki,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +34766,Luxury 5 Bedroom Terraced Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34767,2 Bedroom Maisonette,Richmondgate Estate Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +34768,Luxury 4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34769,Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34770,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Circle Mall Road Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34771,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +34772,Luxury 4 Bedroom Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34773,3 Bedroom Flat,Milverton Estate Osapa London Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets,Osapa London +34774,4 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +34775,New 4 Bedroom Townhouse,Richmondgate Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +34776,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34777,4 Bedrooms Semi Detached Duplex With A Bq,By Second Toll Gate Lekki Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,4 Toilets,Other Lekki +34778,4 Bed Semi Detached Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +34779,5 Bedroom Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34780,Land For Sale,Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34781,5 Bedrooms Fully Detached Duplex With Bq,. Ologolo Lekki Lagos,₦,"53,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +34782,4 Bedrooms Terraced Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +34783,690sqm Of Land,Off Alpha Beach Admiralty Estate Igbo Efon Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34784,5 Bedrooms Fully Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,1,5 beds,4 baths,5 Toilets,Ikota +34785,Luxury 4bedroom Duplex + Bq,Opposite House On The Rock Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +34786,Spacious 4 Bedrooms Semi Detached Duplex With Bq,By Femi Okunu Road Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +34787,5 Bedroom Detached Duplex,"Whitesands School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +34788,4 Units Of 4 Bedrooms Terrace Duplex,Behind Elegushi Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +34789,Plots Of Land At Southern Greens Estate,"After Stonehedge Estate, Orchid Road Lafiaji 2nd Roundabout Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34790,Land, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34791,Land Measuring 650sqm,Atlantic Beach View Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34792,Luxury 3bedroom Duplex + Bq,Behind Megachicken Ikota Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikota +34793,Newly Built 5 Bedroom Terrace Duplex,Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +34794,Lekki Jv,They Are In Lekki Axis Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34795,Luxury And Massive Hotel Fully Furnished,It On Chevron Road Chevron Lekki Lagos,₦,"1,200,000,000",1,1,1,10 beds,10 baths,10 Toilets,Chevron +34796,Plots Of Dry Land By Orchid Hotel Road,Lafiaji Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +34797,Joint Venture Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +34798,4 Bedroom Duplex At Osapa London.,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,7 baths,7 Toilets,Osapa London +34799,Exquisite 4 Bedrooms Semi Detached Duplex,"About 2 Mins Drive From Circle Mall, Osapa London Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +34800,4 Units Of Townhouse (offplan),Shoprite Area Lekki Phase 1 Lekki Lagos,₦,"104,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34801,Land, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34802,Modern Executive 5 Bedroom Duplex With State Of The Art Facilities,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +34803,"A Well Finished Luxurious And Spacious 5bedroom Semi Detached Duplex, Off Admiralty Way Lekki Phase1, Lagos. *features*: * Jacuzzi * Oven * Microwave * Swimming Pool * Extractor * Acs * 2fridges And 1 Freezer * Gas Cooker *#200m Asking*",A Very Good Area In Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34804,Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34805,Brand New 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34806,3600sqm With Approval For Filing Station,Along Lekki Epe Expressway Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34807,900sqm Land In Lekki Phase 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34808,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34809,5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34810,Land,Orchid Road By Chevron Toll Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34811,4 Bedroom Semi Detached Duplex For Sale At Lekky County Homes,Lekky County Homes Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +34812,Brand New 5 Bedroom Terrace, Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34813,Land,Okunmopo Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34814,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34815,Land Measuring 850sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34816,5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34817,4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34818,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34819,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34820,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34821,3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +34822,A Newly Built Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34823,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34824,Brand New 3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34825,4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34826,3 Plots Together In Agungi,Land Is Before The Bridge Agungi Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +34827,Brand New 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34828,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34829,5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34830,4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34831,Newly Built And Serviced 4 Bedroom Terrace Duplex,Eletu Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +34832,5 Bedroom Detached Duplex In Vgc,V.g.c Vgc Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,4 baths,5 Toilets,Victoria Garden City +34833,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +34834,For Sell 5bedroom Fully Detached Luxury Duplex In Ikate 135m,In A Very Good Area Of Ikate Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +34835,5 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34836,Brand New 4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +34837,5 Bedroom Detached Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34838,A Lovely 4 Bedroom Detached Duplex With One Room Boys Quarter,Agungi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34839,947sqm In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34840, fully Serviced 4 Bedroom Terrace Duplex In Lafiaji,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34841,Massive 4 Bedroom Penthouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34842,Brand New 5 Bedroom Detached House, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +34843,A Lovely 4 Bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34844,Exquisite 4 Bedroom Semi Detach Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34845,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34846,Dry Land,Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34847,2 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +34848,4 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34849,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34850,A Plot Of Land,Orchid Hotel Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34851,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34852,Brand New Exquisite 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34853,680sqm Land,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34854,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34855,4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34856,Massive 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34857,2 Plots Of Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34858,Tastefully Finished 4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34859,Good Land Now Selling At Sagotedo Call Ajayi Apanta Estate Beside Crown Estate And Fara Park Estate,Sangotedo Lekki Exp Way Lekki Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34860,Brand New 3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +34861,4 Plots Of Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34862,Brand New 5 Bedroom Terrace Duplex, Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34863,A Unique 5 Bedroom Detached Duplex With Domestic Quarter, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +34864,Tastefully Finished 3bedroom Flat At Ologolo For Sale,Ologolo Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +34865,Brand New 3 Bedroom Terrace Duplex With A Room Boys Quarter At Osapa London Lekki,Prince Ademola Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +34866,4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34867,Brand New 5 Bedroom Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34868,8 Plots Of Bareland Facing The Express,"Along Lekki Epe Expressway, Close To Oakwood Hotel Chevron Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34869,3000sqm Land In Ocean Bay Estate,Ocean Bay Estate Along Orchid Hotel Rd Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34870,Tastefully Finished Fully Detached 4 Bedroom Massive House With A Room Boys Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +34871,Unique Home Very Special World Class Wow! 4 Bedroom Semi Duplex For [email protected],Chevron Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +34872,5 Bedroom Duplex At Lekki County,Chevi Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34873,"Land Measuring 10,000sqm","Directly Along Freedom Way, Close To Orange Land Lekki Phase 1 Lekki Lagos",₦,"120,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34874,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34875,Brand New 4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34876,Land Measuring 940sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +34877,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34878,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34879,4 Bedroom Terrace Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34880,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34881,Brand New 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34882,Brand New 5 Bedroom Detached House (self Serviced), Lekki Phase 1 Lekki Lagos,₦,"143,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34883,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34884,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34885,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34886,Newly Built 4 Bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34887,Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34888,Waterfront Land Measuring 3428sqm,"Plot M2, Road 22a, Beside Vgc Sport Club Vgc Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +34889,A Lovely 4 Bedroom Duplex,Ajiran Agungi Lekki Lagos,₦,"6,500,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +34890,Luxury 5 Bedroom Semi Detached House In Ikate,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +34891,Brand New Luxury 4 Bedroom Terrace, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34892,4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34893,3 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +34894,Brand New 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +34895,Brand New 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34896,Tastefully Finished 5 Bedroom Semidetached Duplex, Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34897,5 Bedroom Duplex,Osapa Lodon Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +34898,6 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +34899,Fully Detached 4 Bedroom Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets,Chevron +34900,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34901,3 Bedroom Flat (off Plan),Spa Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +34902,Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +34903,5 Bedroom Detached Duplex With Bq,Off Femi Okunnu Road Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34904,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +34905,5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34906,Modern 5 Bedrooms Duplex With Swimming Pool For 185m In Lekki Phase 1,In A Good Area Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34907,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34908,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34909,Lovely 4 Bedroom Semi Detached House,Elegushi Beach Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +34910,Brand New 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +34911,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34912,Land Measuring 1000m2,"Directly Along Admiralty Way, Beside Fidelity Bank Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +34913,Tastefully Finished 4 Bedroom Semi Detached House,Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +34914,Brand New 4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34915,3 Bedroom Flat, Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +34916,Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +34917,5300sqm (8 Plots) Land Facing The Express,Along Lekki Epe Expressway Chevron Lekki Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +34918,Service Plots Of Land,Lekky County Homes Megamound Estate Ikota Lekki Lagos,₦,"95,000",1,1,0, beds, baths, Toilets,Ikota +34919,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +34920,Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +34921,842sqm Sand Filled And Fenced In Agungi,In An Estate Agungi Lekki Lagos,₦,"71,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +34922,4 Bedroom Terrace Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34923,House With Bq,Atlantic View Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34924,Newly Built 4 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34925,4 Bedroom Rooms Duplex With All Facilities Including S/pool At Lekki Phase 1. Title: *cofo* Asking *:#270million*,A Good Area Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34926,*just Out* New 4 Units Of 4bedroom Terrace Duplex With Maid Room,"Atlanic Veiw Estate,alpha Beach Road Ologolo Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +34927,4 Bedroom Semi Detached Duplex With A Room Bq,Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +34928,Tastefully Built 5 Bedroom Detached Duplex,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +34929,4 Bedroom Semi Detached House,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +34930,580sqm Land Near Ice Cream Factory,Near The Ice Cream Factory Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34931,"4 Plots Of Land At Ikota, Facing The Lekki Expressway, Adjacent To Vgc", Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +34932,3 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +34933,4 Bedroom Terrace Duplex,Ikate Leegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34934,3 Bedroom Semi Detached Duplex For Sale In Agungi.,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +34935,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34936,Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34937,4 Bedroom Town House,"Orchid Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34938,Brand New 4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34939,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34940,5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +34941,Brand New 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34942,962sqm Fully Fenced Land,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34943,Fully Detached 4 Bedroom Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34944,5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34945,Brand New 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34946,4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34947,Brand New Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34948,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +34949,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34950,5 Bedroom Terrace, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34951,A Lovely 4 Bedroom Semi Detached Duplex At Lekki Right, Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34952,Newly Built 4 Bedroom Detached Duplex,Ibrahim Eletu Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +34953,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34954,Massive 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34955,4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +34956,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34957,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34958,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +34959,5 Bedroom Semi Detached Duplex,"Agungi, Agungi Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +34960,Plots Of Sand Filled Land,Off Kunsela Road Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +34961,Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34962,4 Bedroom Terrace Duplex, Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34963,Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34964,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +34965,Brand New 4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +34966,2 Bedroom Townhouse,Osapa London Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +34967,4 Bedroom Terrace Duplex, Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34968,5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +34969,Brand New 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +34970,Tastefully Finished 5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34971,7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +34972,Executive 5 Bedroom Fully Detached House With A Room Boys Quarter,Pinnock Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +34973,A Brand New 4 Bedroom Terrace, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34974,Brand New Beautifully Designed 5 Bedroom Terraced Duplex (serviced),By Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +34975,4 Bedroom Semi Detached House,Whiteoak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +34976,Land Measuring 950sqm On Freedom Way,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34977,"10,000sqm At Ikate, Facing Lekki Expressway, Near Oando",Near Oando Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +34978,Brand New 5 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +34979,"Land Measuring 1,199sqm",Directly Along Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34980,Lovely 6 Units Of 5 Bedroom Flat + Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +34981,3 Bedroom Apartment + Bq,"Off Femi Okunnu Road, Beside Pinnock Beach Estate Osapa London Lekki Lagos",₦,"52,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +34982,Brand New Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,"Megamond Estate Off Chevro , Lekki, Lagos Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +34983,5 Bedroom Detached House,Lekki Right Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +34984,960sqm Land In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34985,Brand New 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +34986,4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34987,3 Bedroom Terrace, Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +34988,3 Bedroom Flat, Chevron Lekki Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +34989,3 Bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +34990,Premium Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +34991,5 Bedroom Detached House + Bq, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +34992,Brand New 4 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +34993,900sqm Fenced Land,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +34994,Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34995,Luxury 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +34996,4 Bedroom Terrace, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +34997,"949.451sqm Corner Piece Land For Sale Off Mobil Road, Lekki Peninsula Scheme 2",Off Mobil Road Lekki Phase 2 Lekki Lagos,₦,"23,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +34998,4 Bedroom Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +34999,Brand New Exquisitely Finished 4 Units Of 4 Bedroom Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +35000,Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35001,Brand New 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +35002,Brand New 4 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +35003,5 Bedroom Detached House,Lekki Right Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35004,3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35005,A Lovely 5 Bedroom With Bq,Ajiran Agungi Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,5 Toilets,Agungi +35006,Newly Built 3 Bedroom Apartment Within A Mini Estate,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +35007,4 Bedroom Town House,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35008,Beautiful 3 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +35009,Brand New 4 Bedroom Terrace In Ikate,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +35010,2.5 Hectares Of Land,Facing The Ocean Beside Elegushi Beach Ikate Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35011,A Well Finished 2 Bedroom Apartment,Off Amadasun Street Agungi Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +35012,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35013,Executive 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35014,4 Bedroom Terrace Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35015,Tastefully Finished 5 Bedroom Terrace Duplex,By Conoil Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikate +35016,5 Bedroom Fully Detached Duplex + Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35017,Massive 1 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"27,000,000",0,0,0,1 beds,2 baths,2 Toilets,Ikate +35018,4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35019,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35020,Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35021,A Lovely 3 Bedroom Terrace With A Room Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35022,Brand New 4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +35023,Brand New 4 Bedroom Terrace Duplex With A Room Boys Quarter At Ikate,Spar Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +35024,Massive 7 Bedroom Duplex For Sale In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,8 baths,8 Toilets,Lekki Phase 1 +35025,3 Bedroom Flat, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35026,3 Bedroom Flat, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +35027,4 Bedroom Terrace Duplex, Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35028,3000sqm Facing Lekki Epe Expressway With Setback And Car Park,"Along Lekki Epe Expressway, By Vgc Vgc Lekki Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +35029,Luxury Contemporary Home In Pinnock Beach Estate,Pinnock Beach Estate; Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +35030,Mini Flat,Ikate Lekki Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +35031,Tastefully Finished 3 Bedroom Flat And 4 Bedroom Terrace Duplex,Lekki Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +35032,Brand New Beautifully Designed 5 Bedroom Terraces With A Room Boys Quarter,Off Babatunde Anjows Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35033,17.9 Hectares Of Land,Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +35034,"2 Bedroom Flat For Sale In Westend Esate Ikota, Lekki",Westend Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +35035,1755sqm Land, Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +35036,Land Measuring 13 Acres,Maiyegun Lekki Peninsula Beside Access Bank Estate; Jakande Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35037,Two Units Of Four Bedroom Semi Detached Duplexes For Sale,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +35038,1500sqm Land,Hakeem Dickson Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35039,A Cornerpiece Land Measuring 3227sqm, Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +35040,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35041,Luxury Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35042,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35043,4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35044,5 Bedroom Detached Duplex, Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35045,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +35046,Luxury 5 Bedroom Duplex For Sale,Orchid Road Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35047,3 Plots Of Land Directly Facing Orchid Road,"Directly Facing Orchid Hotel Road, Before The Roundabout Chevron Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35048,4 Bedroom Terrace,"Orchid Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35049,Land Measuring 3500sqm Sand Filled With Federal C Of O,Off Kunsela Road Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35050,Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35051,9 Plots Of Dryland At Lafiaji,Lafiaji Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35052,4 Bedroom Terrace, Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35053,Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35054,Brand New 5 Bedroom Detached Duplex,Megamod Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikota +35055,A Luxury And Exquisite Newly Built Fully Detached 5 Bedroom Duplex For Sale In Agungi,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +35056,Brand New 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35057,Brand New 4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"11,500,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35058,Finished 4 Bedroom Semi Detached Duplex,"Lekki Phase 1, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35059,Brand New 2 Bedroom Flat, Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +35060,Tastefully Finished 5 Bedroom Fully Detached House With A Room Boys Quarter,Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +35061,6 Plots Of Land On Orchid Hotel Road,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35062,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35063,2 And A Half Plot Of Sand Filled Land,Sand Filled Cornerpiece Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +35064,Brand New 4 Bedroom Duplex For Sale In Chevron, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35065,Serviced 3 Bedroom Terrace Duplex With A Room Boys Quarter,Eletu Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +35066,Brand New 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35067,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35068,5 Bedroom Detached Duplex,"Lekki County Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35069,Newly Built Mini Estate Of 3 Bedroom Detached Duplex,Opp Ocean Bay Estate Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +35070,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +35071,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35072,A Brand New Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35073,5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35074,Plot Of Land Near Orchid Roundabout,Near Roundabout On Orchid Hotel Road Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35075,A Plot Of Land Close To Orchid Hotel,Directly Facing Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35076,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35077,Exquisite 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35078,Luxury 4 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35079,Brand New Tastefully Finished 4bedroom Fully Detached House With A Room Boys Quarter,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35080,4 Bedroom Apartment Chevi,Chevi View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35081,Brand New 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35082,Lovely 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +35083,Tastefully Finished 4 Bedroom Town House With 1 Rm Bq In A Mini Estate,Off Resurrection Drive Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +35084,Brand New 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35085,5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35086,Plots Of Land In The Prestiguous Royal Garden Estate,Royal Garden Estate Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35087,A Lovely 4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +35088,6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +35089,Prime Plots Of Land (govt. Scheme),"Lekki, Abijo Gra, Oworonshoki Foreshore, Isheri North Res, Scheme,rever View Estate Opic Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +35090,Brand New Exquisitely Finished 5 Bedroom Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35091,4 Bed Room Duplex,. Idado Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +35092,946 Sqm In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +35093,4 Bedroom Duplex Foe Sale In Chevy View Estate, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35094,1000sqm Land,Nicon Town Estate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35095,2000sqm Mixed Use Land Facing The Express,"Along Lekki Epe Expressway, Close To Oando Filling Station Ikate Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35096,"2 Plots Of Land Facing The Lekki Expressway At Ikota, Near Mega Chicken, Before Vgc",Near Mega Chicken Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35097,Luxury And Beautifully Finished 5 Bedroom Duplex With Bq,Around Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35098,Governors Consent,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +35099,Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikate Area Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +35100,Governor Consent,Buene Vista Estate Orchid Hotel Roaf Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35101,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Around Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Agungi +35102,Luxurious 4bedroom Fully Detached Duplex And Semi Detached Duplex For Sale At Ikota Lekki.,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35103,5 Bedroom Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35104,Luxury And Beautifully Finished 4 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +35105,A Very Spacious 5 Bedroom Detached Duplex,Aound Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +35106,Brand New 5 Bedroom Townhouse,Osapa London Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,1 Toilets,Osapa London +35107,Land For Sale,Chevron Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35108,An Acre Of Land,Lafiaji Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35109,A Plot Of Land,"Awoyaya, Behind Green Springs School. Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35110,Fenced Plot Of Land 708 Sqm,Bakare Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +35111,Fully Detached 4bedroom Duplex At Chevron Drive Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35112,Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +35113,4 Bedroom Terrace Duplex,Ikota Lekki Lagos Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +35114,3 Bedroom Duplex,Off Fola Osibo St Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,2 Toilets,Lekki Phase 1 +35115,650sqm Land,Bakare Estate Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +35116,450square Metres Land,Great Street At Victory Park Estate Lekki Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +35117,5 Bedroom Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Victoria Garden City +35118,New 4 Bedroom Terrace,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,1 Toilets,Chevron +35119,Brand New 4 Bedroom Semi Detach Duplex,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +35120,24 Rooms Hotel,Ogunfaya Estate Beside Mayfair Garden Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35121,"C Of O, Governor Consent And Deed Of Assignment, And Other Relevant Documentation",Richard Nwagu Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35122,Land,Lekki Scheme 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +35123,Luxury And Spacious 6 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"130,000,000",0,1,1,6 beds,6 baths,7 Toilets,Other Lekki +35124,Newly Built Contemporary Fully Fitted Five Bedroom Fully Detached Duplex House With A Bq,Block G Street At Megamound Estate Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35125,Land,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +35126,Exquisite 5 Bedroom Fully Detach,Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +35127,Captivating And Beautifully Built 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Around Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths,5 Toilets,Ikate +35128,Tastefully Finished 5 Bedroom Duplex,Off Lekki Expressway . Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +35129,A Beautifully Finished 4 Bedroom Semi Detached Duplex,Around Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +35130,Delightfully Finished 4 Bedroom Detached Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35131,Mini Estate Properties,Ikate Elegushi Lekki Phase1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +35132,"New Tastefully Built 5 Bedroom Duplex With Bq, Gym House, Swimming Pool And Cctv Camera",Around Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +35133,4 Berroom Duplex With Bq,Along Lekki Conservative Road Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,4 baths,5 Toilets,Osapa London +35134,Tastefully Crafted 3 Bedroom Flat,Around Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,4 baths,4 Toilets,Osapa London +35135,Fully Detached 5 Bedroom Duplex At Lekki,"Alternate Route, Off Chevron Drive, Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +35136,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35137,Land,Palms Ville Courts Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35138,Brand New Five Bedroom Semi Detached Duplex With Penthouse,Bolaji Ademola Street Agungi Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,7 Toilets,Agungi +35139,Automated Furnished 5bedroom Detached House At Carton Gate Estate For Sale,Carton Gate Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +35140,Newly Built 3 Bedroom Flat In A Sarene Neighborhood,Around Ologolo Area Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Lekki +35141,6 Plots Of Land,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +35142,Newly Built Contemporary Fully Detached Duplex House In Chevron. This Is Arguably The Best Contemporary House In The Whole Chevron Lekki .,The Street Is Off Chevron Road Axis Chevron Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +35143,New Tastefully Built 4 Semi Bedroom Duplex,After Second Toll Gate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +35144,Lovely 5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +35145,Newly Built Semi Detached 4 Bedroom Duplex Fully With Bq,Buene Vista Estate Chevron Orchid Hotel Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35146,Luxury And Furnished 4 Bedroom Terrace Duplex,Around Ikate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +35147,Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Orchid Aroad Ikate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +35148,Excellent Luxury 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35149,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +35150,6 Bedroom Detached Duplex With 2 Room Bq,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +35151,5 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,1 Toilets,Ikate +35152,Exquisite Fully Detached 5bedroom Duplex For Sale At Lekki Phase 1,Admiralty Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35153,Spacious And Luxury 4 Bedroom Terrace Duplex,Ikate Area Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +35154,Newly Built Luxury 3 Bedroom Terrace Duplex,Orchid Road By Chevron Alternative Route Chevron Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35155,Tastefully Finished 4 Bedroom Semi Detached,Atlantic View Estate Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,1 Toilets,Other Lekki +35156,Terrace Duplex,"Lekki Garden,chevron Drive Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35157,Brand New 3 Units Of Luxury Finished 4 Bedroom Terrace Duplex,Opposite Nico Town Lekki Nicon Town Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +35158,Newly Built Fully Detached Duplex With Certificate Of Occupancy,Chevron Alternative Road Side; Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35159,4 Bedroom Duplex,Kemi John Street Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35160,Land For Sale,"Off Lekki Epe Express Way,after Pan African University Lekki Phase 1 Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35161,Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Aroad Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +35162,Newly Built Luxury 4 Bedroom Semi Detached Duplex,Mobil Road Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +35163,Nice 6 Units Of 2 Bedroom Flat,Behind Admiralty Estate. Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +35164,Exclusive 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35165,30 Plots Of Dry Land,Around Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets,Chevron +35166,Land For The Mulberry Bespoke Terrace And Pent House,Beside Nicon Town Nicon Town Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35167,Fully Detached 4and 5 Bedroom Duplex At Chevyview Lekki,Chevyview Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35168,5 Bedroom Duplex,Durosimi Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35169,5 Bedroom Duplex With Modern Facilities, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35170,4 Bedroom Fully Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35171,Super Newly Built Five Bedroom Semi Detached Duplex. Superb Best Quality Materials And Best Contemporary With Fully Fitted Kitchen Etc Finishing And,Chevron Alternative Road Axis Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35172,New 4 Bedroom Semi Detached Duplex,Westend Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +35173,4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +35174,30 Acres Of Land,Before Free Trade Zone Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35175,4 Bedroom House, Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35176,700sqm Land,Orchid Hotel Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35177,A Very Spacious 4 Bedroom Semi Detached Duplex,Aroud Ologolo Aroad Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ologolo +35178,Certificate Of Occupancy,Adekunle Street Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35179,4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35180,Lovely Built 5 Bedroom Detached Duplex With Bq,London Estate. Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +35181,Certificate Of Occupancy,Adebuyi Street Gated Mini Estate; Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +35182,Captivating 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35183,A Tastefully Built 3 Bedroom Terrace With Bq,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +35184,Beautifully Built And Luxury 5 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +35185,C Of O,Bvista Gate Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +35186,4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35187,Land, Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35188,5 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +35189,"3,2000 Square Metres Of Land",Ikota Ikota Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35190,Luxury 5 Bedroom Duplex (captivating),"Road Side,osapa, London Osapa London Lekki Lagos",₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +35191,Land At Southern Green Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35192,5 Bedroom Duplex,By Elf Bus/stop Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +35193,5 Units Of A Perfectly Finished 4 Bedroom Detached Duplex With Bq,Around Chisco Ikate Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +35194,"1,400 Square Metres Of Land",Igbo Efon Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35195,5 Bedroom Duplex, Vgc Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +35196,Land,Lekki County Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35197,4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +35198,Land,"Block 1,plot 10, Along The Rock Drive Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35199,3 Bedroom Penthouse + 1 Bedroom Miniflat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,2 Toilets,Lekki Phase 1 +35200,4 Bedroom Terrace Duplex With Bq,Along Lekki Conservative Road Agungi Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +35201,Luxury 6 Bedroom Detached Duplex With Mini Pool,Around Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,1,6 beds,7 baths,7 Toilets,Other Lekki +35202,6 Plots Of Land,Ilamija Chevron Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35203,A Luxury 4bedroom Semi Detached Duplex,Around Chevron Chevron Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +35204,Land,Lafiaji Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35205,"Bank Sale :bare Solid Fenced Land For Sale Size 10,756 Square Metres .at Lekki Phase One Gate Entrance With Water Front Overlooking Queens Drive Ikoyi On The Other Side .stone Throw From Oriental Hotel Victoria Island.",Strategically Located At Lekki Phase One Entrance Lekki Lagos,₦,"2,000,000,000",0,1,0, beds, baths, Toilets,Other Lekki +35206,Anewly Built And Furnished Block Of 9 Unite Of 3 Bedroom Flats,Around Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +35207,720 Sqm Land With Governors Consent,New Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35208,New Tastefully Built 4 Bedroom Terraced Duplex With Bq,Around Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +35209,Captivating And Finished 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Around Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +35210,Luxury Built 4bedroom Duplex For Sale At Osapa,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35211,Luxury 4 Bedroom Semi Detached Duplex,Around Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35212,A Luxury 4bedroom Simi Detached Duplex With Bq,Around Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +35213,A Tastefully And Finished 4 Bedroom Terrace Duplex With Bq,Around Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +35214,Luxurious 4 Bedroom Duplex,Off Lekki Expressway . Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35215,Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +35216,A Plot Of Land,New Road Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35217,5 Bedroom House,Great Street Location Vgc Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +35218,Corner Piece Land,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35219,Well Finished Fully Detached House At Lekki Phase One.,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35220,4 Bedroom Duplexes At Ikota For Sale,Pracht Garden Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35221,1000square Metres Land,Great Street At Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +35222,4 Bedroom Duplex,Oral Estate Lekki Expressway Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +35223,A Tastefully Built 5 Bedroom Duplex,Around Igbo Efon Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +35224,5 Bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35225,4 Bedroom Duplex With A Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +35226,Luxury And Tastefully Built 4 Bedroom Terrace With A Bq,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35227,Brand New 4 Bedroom Semi Detached Duplex,Ben Orji Street Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +35228,Luxury Finished 4 Bedroom Semi Detached Duplex,Ikate Area Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +35229,Beautifully Finished 4 Bedroom Semi Detached Duplex,Around Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +35230,Pay 1m Initial Deposit And Own A House With C Of O In Oribanwa(wealthland Green Estate),"Oribanwa, Lekki Ajah Lekki Lagos",₦,"11,950,000",0,1,0, beds, baths, Toilets,Other Lekki +35231,Luxury 4 Bedroom Semi Detached Duplex,Around Agungi/igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +35232,"4 Bedroom Terrace Duplex With 1 Rm Bq For Sale At Ikate, Lekki Phase 1(perimeter Court 1)","Inside Madiba Estate, Lekki Phase 1 Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Ikate +35233,Land Clearing Survey Excision Landed Filling Dredging And Jvs Jobs Wanted,Lekki Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35234,4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35235,Land,Pclose Ikate Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35236,Captivating 4 Bedroom Semi Detached Duplex,Around Chisco Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +35237,Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +35238,Land For Sale,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35239,Land,Mega Chicken Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35240,Captivating 5 Bedroom Semi Detached Duplex,Around Chisco Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +35241,Luxury 4 Bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35242,4 Bedroom Duplex,Bvista Gate Estate Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35243,1 Acre Of Land,Lekki Phase 1 Ikate Lekki Lagos,₦,"70,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35244,A Very Spacious Finished 5bedroom Semi Detached Duplex,After Second Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35245,4 Bedroom Duplex,Oral Estate Lekki Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +35246,900square Metres Land,Great Street At Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +35247,10 Units Of 2 Bedroom Luxury Apartments,Lekki Chevron Lekki Lagos,₦,"560,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35248,Luxury And Beautifully Finished 4 Bedroom Detached Duplex,Elegushi Area Ikate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +35249,5 Bedroom House,The Street Is Not Far From Lekki Phase One Mosque Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35250,6 Acres Of Land,Victory Garden City Vgc Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +35251,One Plot Of Land,Bera Estate Chevron Drive Area Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35252,Terrace Duplex With Certificate Of Occupancy,Chevron Alternative Road Side; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35253,4 Bedroom Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35254,Captivating And Furnished 3 Bedroom Terrace Duplex,Ikate Area Lekki Lagos,₦,"95,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Lekki +35255,A Plot Of Land,Lakowe Lekki Agungi Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +35256,Land,Victory Park Estate Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets,Osapa London +35257,4 Bedroom Duplex With Bq,Around Bera Estate Igbo Efon Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +35258,A Plot Of Land,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35259,For Sale : Five Units Of Four Bedroom Detached Terrace Duplexes And Four Units Of Five Bedroom Semi Detached .making Nine Units Of Duplex For Sale,Off Vgc Road Vgc Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,7 Toilets,Victoria Garden City +35260,A Nice Clean Dry Land,Ochild Hotel Roaf Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35261,4bedroom Terrace Duplex For Sale,Femi Okunnu Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35262,2 Plots Of Land,Beside Admiralty Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35263,11 Plots Of Dry Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35264,4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35265,6 Units Of 2bedroom Flat,Behind Admiralty Estate. Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +35266,Plots Of Land,Nike Art Gallery Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35267,Luxury 4 Bedroom Terrace Duplex,Around Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds, baths,5 Toilets,Ikate +35268,4 Bedroom Duplex With Bq,Along Lekki Conservative Road Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +35269,Captivating 4 Bedroom Terrace Duplex With Bq,Around Marwa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35270,Newly Built Fully Detached 5 Bedroom Duplex,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +35271,Exclusive 5bedoom At Agungi Lekki,Oba Amusa Agungi Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +35272,Corner Piece Of Land,Royal Gardens Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35273,Newly Built 4 Bedroom Semi Detached Duplex,West End Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35274,New Tastefully Built 4 Bedroom Terraced Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35275,Land For Sale,Bera Estate Chevron Drive Area Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35276,C Of O,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35277,Tastefully Crafted 5 Bedroom Terraced Duplex,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35278,Brand New 5bedroom Duplex,"Oral Estate, Road 1. Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikota +35279,Land Measuring 3200 Sqm Land, Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35280,Luxury 4 Bedroom Semi Detached Duplex,Ilasan Area Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +35281,5 Bedroom Contemporary Fully Detached Duplex With Swimming Pool And Cinema. Location : Osapa London Lekki,Osapa London Lekki Lagos,₦,"198,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +35282,Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35283,4 Bedroom Town House With A Fitted Kitchen And Boy’s Quarters For Sale,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +35284,Newly Built Fully Detached 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +35285,Newly Built Semi Detached 5 Bedroom House,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +35286,Newly Built 5 Bedroom Detached House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +35287,5 Bedroom Luxury Detached House With Bq,Friends Colony Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +35288,3 Units Of 4 Bedroom Semi Detached Duplex,Ocean Bay Estate By Buene Vista Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +35289,5 Bedroom Detach House With A Bq,"Off Durosinmi Etti, Lekki Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35290,4 Bedroom Terrace + Bq,Off Kusenla Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +35291,4 Bedroom Terrace,Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35292,4 Bedroom Semi Detached Duplex With A Bq,Osapa Enroute Shoprite/ Aa Rescue Road. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +35293,4 Bedroom Semi Detached House,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +35294,5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +35295,Tastefully Finished Luxury 5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35296,5 Bedroom Detached Duplex + Bq,"Agungi, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +35297,Luxury 4 Bedroom Semi Detached Terrace Duplex,Ikota Villa Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35298,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35299,Exceptional Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +35300,Luxury 5 Bed Detached Duplex,Off Prince Eletu Way Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35301,Tastefully Finished Luxury 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35302,Luxury 3 Bedroom Flat,"Orchid Way, Lekki Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +35303,Luxury 4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35304,Luxury 4 Bedroom Terraced Duplex With A Room Bq For Sale,Chevron Right Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35305,5 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +35306,Luxury 5 Bedroom Terraced Duplex With Excellent Facilities,Oando Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,2 baths,6 Toilets,Ikate +35307,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Mobil Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +35308,Brand New 5 Bedroom Detached Duplex,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35309,Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +35310,Luxury 5 Bedroom Fully Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35311,Tastefully Finished 5 Bedroom Fully Detached With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35312,Premium 4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35313,5 Bedroom Detached Duplex With Excellent Facilities,"Orchid Way, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35314,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35315,Luxury 5 Bedroom Detached Duplex With Excellence Facilities,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35316,Tastefully Finished 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35317,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35318,Brand New 5 Bedroom Semi Detached House With Bq In Osapa London,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35319,Luxury 3 Bedroom Flat With Excellent Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35320,Luxury 4 Bedroom Terrace With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35321,Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35322,Luxury 5 Bedroom Detached,Lekki Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35323,Tastefully Finished 4 Bedroom Semi Detached,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35324,Luxury 3 Bedroom Flat,Off Shoprite Road Jakande Lekki Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +35325,Luxury 4 Bedroom Semi Detached House,Ikota Villa Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35326,Beautiful Luxury 3 Bedroom Flat,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +35327,Luxury 4 Bedroom Terrace Duplex,Orchid Way Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35328,Tastefully Built 5 Bedroom Luxury Duplex,Chevy View Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +35329,5 Bedrooms Terraced Duplex With Excellent Facilities,Oral Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35330,Luxury 2 Bedroom Flat,Lekki Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +35331,Spacious 4 Bedroom Terrace Duplex With Bq And Excellent Facilities,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35332,680sqm Land,Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35333,Luxury 2 Bedroom Flat,Off Shoprite Road Jakande Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +35334,Tastefully Finished 4 Bedroom Semi Detached With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35335,Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35336,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,2 baths,6 Toilets,Chevron +35337,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35338,Luxury 4 Bedroom Terrace House,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35339,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35340,Luxury And Excellent 4 Bedroom Semi Detached Duplex With Good Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35341,Luxury 3 Bedroom Terrace Duplex With Excellent Facilities,Orchid Way Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +35342,Luxury 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +35343,Brand New 4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35344,3 Bedroom Flat,Osapa London Lekki Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +35345,5 Bedroom Terraced Duplex + 2 Rooms Bq,Richmond Gate Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35346,Semi Detached 4 Bedroom Duplex With Excellent Facilities,Oral Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35347,5 Bedroom Detached Duplex,"Ikate, Lekki Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35348,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +35349,Luxury 2 Bedroom Flat,Ikota Villa Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +35350,Luxury 5 Bedroom Detached Duplex With Excellence Facilities,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35351,Brand New 4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35352,Luxury 3 Bedroom Flat With Excellence Facilities,Ikota Villa Ikota Lekki Lagos,$,"1,600,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +35353,Executive 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35354,Luxury 3 Bedrooms Terrace Duplex With Good Facilities, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35355,Luxury And Excellent 3 Bedroom Semi Detached Duplex With Good Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35356,Luxury 3 Bedroom Flat,Orchid Way Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +35357,Tastefully Finished 4 Bedroom Semi Detached Duplex With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35358,5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35359,3 Bedroom Flat, Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +35360,4 Bedroom Terrace House,Chevyview Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35361,Luxury 5 Bedroom Detached Duplex With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35362,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Northern Foreshore Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35363,Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35364,Luxury 5 Bedroom Terraced Duplex With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +35365,Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Lafaiji; Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35366,Fantastic 4 Bedroom Semi Detached Duplex,"Westend Estate, Ikota Villa Ikota Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35367,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Off Ajiran Road Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +35368,This Magnificent Brand New 4 Bedroom Semi Detached Duplex With A Bq Very Spacious And Very Sweet,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35369,Exquisite 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +35370,Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +35371,Luxury 4 Bedroom Detached Duplex,Orchid Way Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35372,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35373,Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35374,4 Bedroom Duplex,Orchid Way Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35375,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35376,4 Bedroom Detached Duplex With Excellent Facilities,Ikota Estate Ville Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35377,Luxury 5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35378,Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,. Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35379,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35380,Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Northern Foreshore Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35381,Tastefully Finished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35382,Luxury 4 Bedroom Terrace Duplex,Orchid Way Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35383,4 Bedroom Terrace Duplex,Orchid Way Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35384,5 Bedroom Terrace Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +35385,Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Idado Estate Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35386,Luxury 2 Bedrooms Flat With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +35387,2 Bedroom Flat,"Alpha Beach, New Road Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +35388,4 Bedroom Terraced Duplex With Bq,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +35389,Brand New 4 Bedroom Detached Duplex With Excellent Facilities,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35390,"1,600sqm Cornerpiece Land",Lekki Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35391,Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35392,Tastefully Finished Luxury 5 Bedroom Detached Duplex,Chevyview Estate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35393,Fantastic 5 Bedrooms Detached Duplex,Off Shoprite Road Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35394,Our Victory Park Project Is Complete & Open For Inspection... 5 Bedroom Duplex. Study Room. Box Room. Boys Quarters. Patio. Swimming Pool. Cinema. Massive Parking Space. (6 7 Cars). Fitted Italian Kitchen (ariston Italy). Butter Proof 3metres High Biomet,Victoria Park Estate Osapa London Lekki Lagos,₦,"195,000",1,1,1,5 beds,4 baths,4 Toilets,Osapa London +35395,"796sqm Of Land Available For Sale At Mobil Road,lekki ,ajay, The Land Comes With Governors Consent","Mobil Road,lekki Ajah Osapa London Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Osapa London +35396,It’s A 4 Bed Duplex.. 3 Bed One Bq. It About 23 Individual Buildings In The Estate. 3 Car Parks Per Apartment. It’s Serviced. Estate Has Swimming Pool And Gym.. Located At Osapa,Pioneer Road Osapa London Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +35397,Semi Detached Four Bedroom Duplex With A Room Bq At Lekki,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35398,Six Units Of Three Bedroom Apartments At Lekki,Ojo Oyewo Road Off Tunde Adeleye Str Idado Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +35399,Exquisite Fully Detached Four Bedroom Duplex At Lekki Phase 2,Gbangbala Str Off Church/ Pauland Peter Street Off Oba Yekini Elegushi Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35400,4 Bedroom Terrace Duplex With 1 Room Bq At Lekki,Ayinke George Street Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35401,Newly Built Two Bedroom Flat For Sale In Lekki,"Tunde Joda Street, Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +35402,"5 Bedroom Exquisite Detached Duplex In Magamond Estate, Ikota",Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35403,4 Bedroom Duplex,Ikate Lekki Elegushi Area Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35404,"Newly Built 4 Bedroom Terrace At Osapa London, Lekki",Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35405,Newly Built 5 Bedroom Semi Detached With Bq And 5 Bedroom Fully Detached With A Bq,Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +35406,A Very Attractive And Serene 8 Bedroom House Sitting On 2000sqm Water Front Land In Lekki Phase 1.,Lekki Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +35407,Land Measuring 962sqm For Sale At Lekki Scheme 2,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35408,Lovely 4 Bedroom Duplex,Stillwater Garden Estate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35409,4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +35410,4 Bedroom Terrace Duplex + Maids Quarters,Adedayo Adekola Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +35411,"Land Measuring 750sqm In A Private Estate, Fully Infrastructured Estate Periwinkle Estate",Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35412,"A Plot Of Land For Sale @ Abijo G.r.a, Lekki",Abijo Gra Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35413,Newly Built 3 Bedroom Apartment For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35414,2 Plots Of Land For Sale At Alpha Beach Road Off Lekki Epe Expressway,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +35415,"Nicely Built 4 Bedroom Serviced Terrace Duplex Within An Estate At Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +35416,"Land Measuring 1000sqm For Sale In A Private, Fully Infrastructured Estate Periwinkle Estate",Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35417,Newly Built 4 Bedroom Semi Detached With Bq And 5 Bedroom Fully Detached With A Bq,Buene Vista Estate By Chevron Lekki Toll Gate Orchid Hotel Road Chevron Lekki Lagos,₦,"59,500,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +35418,2 Units Of 5 Bedroom Detached House In Victory Park Estate,Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +35419,5 Bedroom Fully Detached Duplex,"Stillwater Garden Estate, Eleguishi Ikate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +35420,Lovely 4 Bedroom Duplex,Lekki Phase 1 Very Close To British International School. Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +35421,"Land Measuring 650sqm For Sale At Orange Island, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35422,"Land Measuring 1000sqm For Sale At Orange Island, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35423,"Well Finished 6 Units Of 1,2 And 3 Bedroom",Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35424,"Land Measuring 614sqm For Sale, Off Monastery Road, Lekki",Off Monastery Road Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35425,Brand New And Well Finished 5 Bedroom Detached Housee,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35426,"Well Finished 4 Bedroom Luxury Terraces Off Freedom Way, Lekki Phase 1",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35427,Newly Built 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +35428,Newly Built 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +35429,Governor Consent,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +35430,Luxury 4bedroom Semi Detached House,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,3 Toilets,Ikota +35431,Nearly 4bedroom Semi Datached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,6 baths,3 Toilets,Chevron +35432,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,5 baths,5 Toilets,Chevron +35433,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.*,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +35434,*top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki*,Lekki Phase 2 Lekki Lagos,₦,"61,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35435,4 Bedroom Semi Detached Duplex,"No 30, Agungi Ologolo Agungi Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Agungi +35436,Detached Duplex With Terrace Finishing,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35437,Dry Land With C Of O,Erangbede Idado Lekki Lagos,₦,"500,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +35438,Dry Land,Ibeju Chevron Lekki Lagos,₦,"2,500,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +35439,"Exquisite And Beautifully Built Four Bedroom Detached Duplex For Sale In 2nd Toll Gate, Lekki, Lagos","2nd Toll Gate, Lekki Phase 2 Lekki Lagos",₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +35440,Newly Built 3 Bedroom Apartment In A Very Good Location In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +35441,Land For Sale At Orchid Road At Promo Price,Ikota Ikota Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets,Ikota +35442,Massive 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +35443,4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35444,A Well Finished Royal 5 Bedroom Fully Detached Duplex In Osapa,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +35445,3/4 Bedroom Terrace Duplex For Sale Plus Flexible Payment Plan,Orchid Road Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35446,5 Bedroom Detached Duplex At Chevron,Chevron Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +35447,Promo! Promo! Promo!!! Land For Sale At Orchid Road At Promo Price,"Orchid Road, Behind Cooplag Gardens Ikota Lekki Lagos",₦,"18,000,000",0,0,0, beds, baths, Toilets,Ikota +35448,4 Bedroom Fully Furnished Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets,Ikota +35449,Very Spacious 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35450,3/4 Bed Terrace Duplex For Sale Plus Installment Plan Victoria Crest Iv,Off Orchid Hotel Road By Second Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +35451,Beautiful 5bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +35452,A Well Finished 4bedroom Stand Alone Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35453,4 Bedroom Fully Detached Duplex At Ikota,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35454,4 Bedroom Terrace Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35455,4bedroom Terrace/ 4bedroom Semi Detached Duplex At Osapa Instalment Payment Available,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +35456,4 Bedroom Semi Detached Duplex Opp Vgc,Opposite Vgc Vgc Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +35457,4 Bedroom Fully Furnished Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +35458,A Beautifully Built And Well Finished Semi Detached Duplex,... Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +35459,Massive 4bedroom Semi Detached Smart Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35460,Exquisite 5 Bedroom Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35461,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +35462,Exquisite 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"32,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35463,Land For Sale At Promo Price,Bogije Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets,Other Lekki +35464,Exquisite 6 Bedroom Duplex,Atlantic View Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,8 Toilets,Lekki Phase 1 +35465,A 2 Units Of Luxurious/beautiful 3bedroom Flats On A Terrace Duplex For Sale!,Freedom Way Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +35466,Brand New Well Finished Cheap 4bedroom Semi Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +35467,A Beautiful/luxurious 4 Bedroom Terrace Duplex Available For Sale In A Drive Road Access!!,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +35468,Distress Sale Of 766.1 Sqm Plot Of Dry Land On Orchid Road,Spg Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ologolo +35469,Dry Fenced Land,Vgc Vgc Lekki Lagos,₦,"73,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +35470,A House Containing 4 Units Of 2 Bedroom Flats Available For Sale,Whitesands Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ologolo +35471,Buy Your Xmas Promo Plots Of Lands At Lekki Pearl Garden Abijo,Abijo Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35472,A 2 Units Of Luxurious/ Tastefully Pent House 3bedroom Flats On A Terrace Duplex Available For Sale!,Freedom Way Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +35473,Plots Of Land For Sale At Eminence Court Bogije Lekki,Sapati Bogije Lekki Lekki Phase 2 Lekki Lagos,₦,"4,680,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35474,Newly Developed Block Of Apartments,Osapa London Osapa London Lekki Lagos,₦,"650,000,000",1,1,0,10 beds,10 baths,10 Toilets,Osapa London +35475,A Beautiful/luxurious 5 Bedroom Detach Duplex House +bq All Rooms Ensuit With Fitted Kitchen For Sale At Ikate Lekki.,Freedom Way Ikate Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +35476,An Irresistible Brand New Fully Detached 5 Bedrooms Duplex In A Serene Environment,Osapa Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +35477,Buy Plots Of Land At Claridge 1 Estate Sangotedo Lekki And Win A Trip To Dubai Automatic,Sangotedo Lekki Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35478,Newly Built 4 Bedroom Semi Detached,Conservation Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35479,Newly Built 4 Bedroom Semi Detached,Conservation Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35480,"Direct Urgent Distress Sale @ Chevron, Brandnew 4 Bedroom Semi Detached Duplex.",Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets,Chevron +35481,"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki* Bella Homes Phase 1 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.",Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,3 Toilets,Other Lekki +35482,Amazing 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +35483,Amazing 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +35484,Amazing 4 Bedrooms Duplex With A Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +35485,Half Plot Of Land In Agungi,Madam Cellular Agungi Lekki Lagos,₦,"38,500,000",0,0,0, beds, baths, Toilets,Agungi +35486,Newly Built 5 Bedroom Lakeview Detached Duplex For Sale,"Megamound Estate, Lekky County Ikota Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +35487,Luxury 4bedroom Terrace Houses,Alternative Route Chevron Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +35488,"Bera Estate, Chevron Drive, Lekki !! A 5bedroom Duplex.",Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35489,Exclusively Finished 5 Bedroom Fully Detached Duplex With Bq,An Estate Close To Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35490,Newly Built 2 Units Of Massive 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35491,4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Facing Lekki Express Road Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +35492,4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +35493,"Affordable Land With Good Title For Sale At Ibeju Lakki, Lagos State",Ibeju Lakki Lagos Lekki Phase 2 Lekki Lagos,₦,"650,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +35494,5 Bedrooms Detached Duplex With A Two Rooms Bq,Farah Park Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +35495,5 Bedroom Duplex With 2 Rooms Bq, Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +35496,5 Bedroom Fully Detached Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +35497,Affordable C Of O Land For Sale In Lekki (pertinence Property),"Inside Beechwood Estate, Shapati, Lekki. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +35498,4 Bedroom Semi Detached,Bogije Lekki Lagos,₦,"1,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +35499,"2 Bedroom Terrace Duplex With C Of O Available For Sale At Abraham Adesanya, Lekki.",Abraham Adesanya Lekki Lagos,₦,"25,000,000",0,1,0,2 beds, baths, Toilets,Other Lekki +35500,4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +35501,Newly Built Fully Detached And 4 Bedroom Semi Detached Apartment With Maids Quarters With Fitted Kitchen And Dedicated Transformer To The Apartment.,Jakande Bus Stop Before Agungi Lekki. Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Agungi +35502,3 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds, baths, Toilets,Chevron +35503,"House For Sale In Chevron Lekki(4 Bedroom Semi Detached Duplex With Bq , No Extra Charges)",Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +35504,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +35505,"House For Sale At Chevronlekki (4 Bedroom Fully Detached With Bq @ Elli Court, No Extra Payments)",Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +35506,4 Bedroom Terrace Duplex,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +35507,Exquisitely Finished 3 Bedroom Terraces Duplex Available At Bella Homes,"Lafiaji Community, Orchid Road, Lekki, Lagos State Chevron Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +35508,5 Bedroom Semi Detached,Alternative Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +35509,Newly Built Smart 5 Bedroom Fully Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road,lekki Lagos Chevron Lekki Lagos",₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +35510,Newly Built 4 Bedroom,"Bera Estate Chevron Drive, Chevron. Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +35511,"House For Sale In Lekki (bella Home)exquisite Finished 3 Bedroom Terrace Duplex With Bq , Pay And Pack In . On Promo Price Of 33m","Bella Homes Phase 2, Close To Chavron Toll Gate. Lakki Chevron Lekki Lagos",₦,"33,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +35512,Newly Built Luxury 6 Units Of 3 Bedroom Apartment In Lekki Phase 1.,Off Admiralty Way Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +35513,18 Units Of 4 Bedrooms Terraces All Rooms Ensuite With Bq In Chevron,"Chevron Alternative, Chevron Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +35514,2 Bedroom Terraced,Bogije Lekki Lagos,₦,"1,000,000",0,1,0,2 beds, baths, Toilets,Other Lekki +35515,"House For Sale In Lekki Phase 1 (exquisitly Finished 4 Bedroom Semi Detached Duplex With Bq At Daniels Garden Osapa London Lakki, Lagos)","Osapa London, Lakki, Before Agungi, Before Igbo Efon And Few Minute Before Chevron Agungi Lekki Lagos",₦,"56,000,000",0,1,1,4 beds,6 baths,6 Toilets,Agungi +35516,House For Sale In Lekki Phase 1 (creek Avenue Court Lekki),"After Chevron Toll Gate Ikota, Lakki Lagos Ikota Lekki Lagos",₦,"53,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +35517,4 Bedroom Semi Detached,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +35518,"House For Sale In Lekki(4 Bedroom Fully Detached Duplex With Bq ) (title Cofo) (creek Avenue, By Medorf Solution)",Before Chevron Toll Gate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +35519,"Frontier Luxe, The Best Mortgage Offer",Bogije Lekki Lagos,₦,"1,000,000",1,1,1, beds, baths, Toilets,Other Lekki +35520,4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35521,The Frontier Estate,Bogije Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets,Other Lekki +35522,2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"20,000,000",0,1,1,2 beds, baths, Toilets,Chevron +35523,"4 Bedroom, Pay And Pack In Semi Detached Duplex With C Of O For Sale At Abraham Adesanya, Lekki",Abraham Adesanya Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +35524,Off Plan Sale 3 Bedrooms Apartment With Bq,Ikate By Elegushi Palace Ikate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +35525,"Lekki Pearl Garden, Abijo",Abijo Lekki Lagos,₦,"10,000,000",0,1,0, beds, baths, Toilets,Other Lekki +35526,5 Bedroom Fully Detached Smart House,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35527,Affordable C Of O Land For Sale In Lakki(vip Garden),"Inside Beechwood Estate Shapati, Along Lekki Epe Express Road Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +35528,Affordable C Of O Land For Sale In Oribanwa Lekki Lagos (rems),"Oribanwa 1, Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"7,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +35529,Affordable Land With C Of O For Sale In Lekki (landway),Bogije Lekki Legos Lekki Lagos,₦,"11,850,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +35530,4 Bedroom Terraced Duplex With A Room Bq,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +35531,A Two Plots Of Land For Sale At Chevy View Estate,Olaoye Close Chevron Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Chevron +35532,An Affordable 4 Bedroom Townhouse At Lekki Phase 1,1 Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,3 baths,4 Toilets,Lekki Phase 1 +35533,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 1 Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35534,Brand New Luxury 4 Bedrooom Duplex With A Bq In The Heart Of Lekki Phase 1,Off Victoria Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35535,Tastefully Finished 4 Bedroom Fully Detached Duplex At Osapa London.,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +35536,4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +35537,Five Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +35538,"2,000sqm Of Land At Vgc",Vgc Lekki Lagos,₦,"250,000,000",0,0,0,8 beds, baths, Toilets,Victoria Garden City +35539,Luxury 5 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +35540,Units Of 4 Bedroom Semi Detached Duplexes With A Staff Quarters Each.,Ikota Ikota Lekki Lagos,₦,"3,800,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35541,3 Bedroom Flat Explore Gardens,2nd Round About Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35542,5 Bedroom Detached Duplex,V.g.c Lekki Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +35543,5 Bedrooms Detached House,"Close To Lekki 1 Gate, Directly Off Admiralty Way, Lekki Ph.1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35544,600sqm Residential Plot Of Land,"Lakeview Park I, Lekki Expressway, Lekki, Lagos Vgc Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +35545,Full Plot Of Land For Sale In Chevy View Estate Lekki.,"Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35546,Luxury 5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35547,Tastefully Finished 3 Bedroom Duplex With 1 Room Boys Quarter,Ologolo Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +35548,5 Bedroom Mansion Fully Detached House,Vgc Lekki Vgc Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +35549,*distress Sales 3 Bedroom Terrace With A Room Bq At Babatope Bejide Street Lekki Phase 1,Mbabatope Bejide Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +35550,1 Bedroom Apartment,"Ocean Bay Estate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"16,000,000",0,0,0,1 beds,1 baths,3 Toilets,Chevron +35551,Luxury 4bedroom Ensuite Flat With Bq Pool Gym,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +35552,4 Bedroom Semidetached Duplex + Bq,"3rd Roundabout, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35553,4 Bedroom Semi Detached Duplex + Bq, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35554,Newly Built And Tastefully Finished 4 Bedroom Detached House,Ologolo Estate Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +35555,4 Bedroom Semi Detached House + Bq,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35556,Fenced Land,Admiralty Estate Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35557,Fully Detached 5 Bedroom Duplex With Boys Quarter Which Has Swimming Pool,Bera Estate Phase Ii Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Agungi +35558,5 Bedroom Fully Detached House,"Sola Oguntade Close Off Bisola Durosimi Lekki Phase 1, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35559,800 Sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35560,5 Bedroom Fully Detached House + Bq, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35561,800sqm Land In Cowries Creek Estate Ikate Lekki,Cowrie Creek Nlgn Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Ikate +35562,500sqm Land For Sale In Pinnock Beach Estate,Pinnock Beach Estate Ikate Ikate Lekki Lagos,₦,"83,000,000",0,0,0, beds, baths, Toilets,Ikate +35563,840sqm Land For Sale In Pinnock Beach Estate Ikate,Pinnock Beach Estate Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Ikate +35564,Newly Built 3 Bedroom Flat Apartment + Bq,Ologolo Estate Igbo Efon Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +35565,Land,"Plot 12 Block 12 , Admiralty Way, Lekki Phase 1,lagos Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35566,3 Bedroom Flat,"Prime Water Garden, Ikate Ikate Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +35567,4 Bedroom Duplex,Friend Colony Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35568,4 Bedroom Detached House With 2 Rooms Bq,Creek Haven Beside Vgc Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +35569,1000sqm Land For Sale In Pinnock Beach Estate Ikate Elegushi,Pinnock Beach Estate Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35570,Exquisitely Built 5 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35571,"Distress Sales* *land Measuring 600sqm Is For Sale* *location* *orchid Road, Lekki Phase1* *title* *governor Consent* *price* *#25m*",Orchid Road Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35572,960sqm Land For Sale In Pinnock Beach Estate Ikate Elegushi,Pinnock Beach Estate Ikate Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Ikate +35573,4 Bedroom Semi Detached Duplex,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +35574,Land For Sale In Lekki,Buena Vista Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +35575,Brand New 3 Bedroom Flat Apartments,Ologolo Estate Agungi Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +35576,5 Bedroom Fully Detached Duplex +bq,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35577,Tastefully Finished 3 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +35578,Finished 5 Bedroom Detached Duplex With A Swimming Pool & A Room Bq Available For Sell In Lekki County Ikota Lekki Lagos,Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +35579,2 Units Of Luxurious 5 Bedroom Waterfront Duplexes Built To International Standards.,Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets,Other Lekki +35580,Newly Built 4 Bedroom Detached Duplex With Excellent Design And Modern Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +35581, Newly Built 5 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35582,22 Units Or Exquisites Well Finished Duplexes With Bq Available For Sell In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +35583,Flourish Apartments And Terraces In A Serene Neighborhood With,By Orchid Road Chevron Lekki Lagos,₦,"4,500,000",0,1,0,3 beds,4 baths,3 Toilets,Chevron +35584,Newly Built 4 Bedroom Semi Detached In A Serene Estate For Sale,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35585,A Newly Built 5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35586,Newly Built 5 Bedroom Serviced Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +35587,Land For Sale In Lekki Phase 1,Off Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +35588,Magnificent 6 Bedroom Detached House,Mabogunje Oniru Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +35589,Fully Serviced 3 Bedroom Flat In A Gated Estate,Off Freedom Way Ikate Lekki Lagos,₦,"38,000,000",1,0,0,3 beds, baths, Toilets,Ikate +35590,Newly Built 5 Bedroom Detached & 4 Bedroom Semi Detached Duplexes,Lekki Phase 2 Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ologolo +35591,"Corner Piece Land Measuring 1,002 Sqm",Vgc Vgc Lekki Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets,Victoria Garden City +35592,Elegantly Built 5 Bedroom Fully Detached Mansion,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +35593,Newly Built 3 Units Each Of 1 & 2 Bedroom Flats,Chevy View Estate Chevron Lekki Lagos,₦,"20,000,000",1,1,0,2 beds,2 baths,2 Toilets,Chevron +35594,5 Bedroom Detached House With 2 Rooms Domestic Staff Quarters,Omorine Johnson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35595,Newly Built 6 Units Of 4 Bedroom Terrace House,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,1 Toilets,Chevron +35596,Luxury 5 Bedroom Detached Duplex With Domestic Staff Quarters,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35597,"Plots Of Land In Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"140,000",1,1,0, beds, baths, Toilets,Ikate +35598,3 Bedroom Luxury Flats,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +35599,Newly Built 4 Bedroom Terrace Duplex With 1 Room Domestic Staff Quarters For Sale,"Ocean Bay Estate,off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35600,Sweet Massive 4bedroom Semi Detached Duplex With Bq,By Chevron Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +35601,Brand New Well Finished 4bedroom Semi Detach Duplex With Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +35602,Sweet 4bedroom Semi Detached Duplex @,By Mega Kitchen Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +35603,Newly Lovely Build 5bedroom Detach Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +35604,New Built 3 Bedroom Fully Detached + 2 Living Rooms + Study,Muiz Banire Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35605,New Built 5 Bedroom Fully Detached + 2 Living Rooms + Study,"Hakeem Dickson,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35606,Luxe Is An Arcade Of Magnificent Surroundings And Exceptional Estate. It Has C Of O As The Property Title.,Lekki Phase 2 Lekki Lagos,₦,"8,500,000",0,1,1,3 beds,3 baths,3 Toilets,Lekki Phase 2 +35607,Newly Built 5 Bedroom House On Two Level With A Pool,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +35608,The Land Has Certificate Of Occupancy As Its Title,Lekki Phase 2 Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +35609,3 Bedroom Terrace Duplex,Silicon Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35610,7 Bedroom Duplex With 4 Rooms Bq,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +35611,5 Bedroom Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +35612,3 Bedroom Flat,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,0 Toilets,Lekki Phase 1 +35613,2 Units 5 Bedroom Mansion,Victory Park Estate; Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35614,950 Square Meters Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35615,5 Bedroom Duplex With Bq,Greenwide Tech Estate. Back Of Corn Oil Petroleum Station Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35616,4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35617,2 Bedroom Flat,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +35618,Newly Built 4 Bedroom Duplex,Madam Celluar Close Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35619,Hotel Building, Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35620,3 Bedroom Terrace Duplex In Lekki Phase 2,Lekki Gardens Estate; Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +35621,4 Bedroom En Suite Terraced Duplex With Ample Parking Space.,"At Lekki Gardens 3 Estate, By Lagos Business School Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 2 +35622,3 Bedroom Flat (serviced),Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +35623,For Sale 4 Bedroom Semi Detached Duplex At Ikota Lekki Lagos N35 Million Naira Net,Ikota Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +35624,"Half A Plot Of Land For Sale In Pearl Garden Estate, Sangotedo",Pearl Garden Estate Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +35625,"The Land Has A C Of O,",Lekki Phase 2 Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +35626,4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +35627,4 Bedroom Fully Detached Duplex With Bq For Sale,... Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +35628,4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35629,4 Bedroom Semi Detached Duplex With Bq For Sale, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +35630,4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +35631,4 Bedroom Terrace For Sale,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +35632,4 Bedroom Terrace Duplex For Sale, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35633,Fully Serviced 4 Bedroom Terrace Duplex With 1 Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Ikate +35634,4 Bedroom Terrace For Sale, Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +35635,3 Bedroom Terrace For Sale, Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +35636,4 Bedroom Terrace For Sale, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +35637,3 Bedroom Terrace For Sale, Ikota Lekki Lagos,₦,"39,500,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +35638,4 Bedroom Terrace For Sale, Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +35639,3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +35640,4 Bedroom Terrace Dupelex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +35641,4 Bedroom Semi Detached Duplex With Bq For Sale, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +35642,Governor's Consent,"Oral Estate By 2nd Toll Gate, Ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +35643,4 Bedroom Semi Detached Duplex With 1 Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets,Chevron +35644,4 Bedroom Semi Detached Duplex With 1 Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets,Ikota +35645,Brand New 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +35646,"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Cheveron Alternate Drive Road Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Chevron +35647,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,Cheveron Alternate Drive Road Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +35648,Brand New 3 Bedroom Terrace,Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Lekki +35649,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +35650,600sqm Of Land For Sale At Bogije Lekki Lagos,Bogije Lekki ( Inside Beechwood Estate) Lekki Lagos,₦,"6,700,000",1,0,0, beds, baths, Toilets,Other Lekki +35651,300sqm Of Dry Land Is Available For Sale At Abijo Gra Lekki Lagos,Abijo Gra Lekki Lagos Lekki Lagos,₦,"6,000,000",1,0,0, beds, baths, Toilets,Other Lekki +35652,600sqm Of Dry Land For Sale At Abijo Gra Lekki Lagos.,Abijo Gra Lekki Lagos. Lekki Lagos,₦,"12,000,000",1,0,0, beds, baths, Toilets,Other Lekki +35653,"Four (4) Master Bedroom All En Suit With Building Incorporated With En Suit Maid's Room Coupled With Magnificent Sitting Room, Luxury Living Area And A Contemporary Spacious Kitchen Area.",Adebisi Popoola Lekki Phase One Lagos State Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35654,5star Hotel And Suites For Sale At Lekki Expressway,Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35655,5 Bedroom Detached Duplex,Lake View Estate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +35656,"Own A 2, 3 Or 4 Bedroom Duplex In Lekki. Spread Payment In 10 Years",Lekki Lagos,₦,"1,000,000",1,1,1,4 beds, baths, Toilets,Other Lekki +35657,Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,Mega Mound Estate Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35658,6 Units Of 4 Bedrooms Luxury Luxury Duplexes With 1 Unit Of 5 Bedroom,Highbrow Estate Ikota By Megachiken Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +35659,"Newly Built 5bedroom Duplex For Sale Cheveron Drive, Lekki",Cheveron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +35660,Exquisitely Finished 4 Bedroom Semi Detached House For Sale,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +35661,4 Bedroom Semi Detached Duplex @ Chevron By 2nd Toll Lekki,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds, baths, Toilets,Chevron +35662,Luxury Finished 4 Bedroom Detached Duplex In A Tranquil Environment,Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +35663,Solidly Built Fully Detached 4 Bedroom House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets,Chevron +35664,"Exotically Finished 4 Bedroom Detached Duplex, Ikota, Lekki.",Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +35665,Camberwall Estate Abijo Gra,Lekki Lagos,₦,"11,500,000",0,0,0, beds, baths, Toilets,Other Lekki +35666,C Of O Land In Abijo,Inside Beachwood Estates Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +35667,4 Bedroom Detached Duplex Located In Lekki County Homes Available For Sale,Lekki County Homes Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +35668,4 Bedroom Semi Detached Duplex,Van Daniel Street Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35669,Luxury 4bedroom Terrace Duplexes,Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35670,Tastefully Finished 4 Bedroom Fully Detached Duplex With Fully Fitted Kitchen (mortgage Option Available),Osapa Axis Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +35671,Luxurious 5 Bedroom Fully Detached Duplex With Bq (fully Fitted Kitchen),Ikota Villa Axis Ikota Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +35672,Newly Built 3 Bedroom Terraced Apartments (mortgage Option Available),"Lakeview2, Lafiaji Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +35673,Tastefully Furnished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +35674,Tastefully Finished 4 Bedroom Fully Detached Duplex (mortgage Option Available),Off Mobil Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35675,Luxury Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ademola Eletu Street Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +35676,Luxurious 4 Bedroom Fully Detached Duplex (mortgage Option Available),Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35677,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Dele Adeyemi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35678,Luxury 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths, Toilets,Ologolo +35679,Neatly Finished 4 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35680,Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +35681,Tastefully Finished 3 Bedroom Apartment With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths, Toilets,Ologolo +35682,Tastefully Designed 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Villa Axis Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35683,Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +35684,Tastefully Finished 4 Bedroom Terraces (mortgage Option Available),Ocean Bay Estate Lafiaji Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +35685,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Osapa Axis Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +35686,Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Axis Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35687,Tastefully Finished 3 Bedroom Terraces (mortgage Option Available),"Ocean Bay Estate, Lafiaji, Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +35688,Luxurious 4 Bedroom Fully Detached Duplex,Ologolo Axis Ologolo Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +35689,Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Axis Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +35690,Tastefully Finished 4 Bedroom Semi Detached Duplex,Ologolo Axis Ologolo Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +35691,Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +35692,Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Dele Adeyemi Agungi Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +35693,Luxurious 5 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Idado Axis Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +35694,Tastefully Finished Fully Detached 4 Bedroom Duplex,Ikate Axis Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +35695,Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Oral Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35696,Luxurious Fully And Semi Detached 4 Bedroom Duplexes (mortgage Option Available),Silver Spring Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35697,Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Dele Adeyemi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +35698,Newly Built 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +35699,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Ikota Axis Ikota Lekki Lagos,₦,"59,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +35700,Luxury Fully Detached 4 Bedroom Duplex (mortgage Option Available),Mobil Road Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35701,Tastefully Finished 4 Bedroom Terraced Duplex (mortgage Option Available),Ikota Villa Axis Ikota Lekki Lagos,₦,"39,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35702,Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Oba Amusa Street Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +35703,Luxury 2 Bedroom Flats With Bq (mortgage Option Available),Rasaq Eletu Street Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +35704,Tastefully Finished 5 Bedroom Fully Detached Duplex (distress Sale With Mortgage Option),Ikota Axis Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +35705,Luxury 4 Bedroom Semi Detached House,Garuba Lawal Street Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35706,Newly Built 5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +35707,5 Bedroom Duplex,Lekki County Estate Chevron Lekki Lagos,₦,"128,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35708,Superb 3 Bedroom Flats, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +35709,Land, Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35710,Land,Igbokushi By Dillon Office. Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35711,2 Bedroom Flat ( Off Plan),Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +35712,Governors Consent,Oceanbay Estate By Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +35713,Land, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35714,5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35715,6 Bedroom Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +35716,Fully Furnished 2 Bedroom Apartment,. Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +35717,4 Bedroom Duplex,Ocean Bay Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +35718,Land In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35719,4 Bedroom Duplex,. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35720,1500sqms Land, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +35721,4 Bedroom Terrace Duplex,"No 20 Kendry Drive, Roxbury Leisure Homes(phase 2) Beside Napier Gardens And Manor Gardens, Vgc Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +35722,Exquisite 4 Bedroom Duplex,Off Freedom Way Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +35723,Land,Lekki County Estate. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35724,5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35725,3 Plot Of Land,Russel School Ikota Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +35726,4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35727,Governors Consent,Bera Estate Chevron. Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35728,Land,"Elegushi, Off Conoil Road. Ikate Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +35729,5 Bedroom Fully Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +35730,Top Notch 2 Bedroom Flat (carcass),"Paradise Estate, Chevron Alternative Route Chevron Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +35731,Newly Built 4 And 5 Bedroom Terrace,Chevron Alternative Route Chevron Lekki Eti Osa Chevron Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35732,5 Bedroom Detached Duplex With 1 Bq For Sale.,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets,Other Lekki +35733,Newly Built 4 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35734,Newly Built 3 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35735,Newly Built 4 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35736,4 Bedroom Duplex For Sale At Western Estate Ikota Villa Lekki,"Western Estate Ikota Villa, Lekki, Lagos. Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +35737,Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +35738,Beautiful Office/school Space For Sale,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,3 Toilets,Lekki Phase 1 +35739,4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets,Ikota +35740,4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds, baths, Toilets,Ikota +35741,"Nearing Completion, % Bedroom Detached House With 2 Rooms Boys Quarters In Lake View Estate On Orchid Hotel Road, By Elegaza Busstop, Lekki",Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +35742,Lovely 5 Bedroom Detached House With A Boys Quarter For Sale In Lakeview Estate,Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +35743,Newly Built 5 Bedroom Semi Detached House With 1 Room Boys Quarter For Sale In Lake View Estate,Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +35744,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +35745,Brand New 2bedroom Flat,... Agungi Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +35746,5 Bedroom Luxury Mansion(a Must See!!!),Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +35747,Luxury 2 Bedroom Apartment,Kunsela Road Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +35748,4 Bedroom Detached Duplex,Lakeview Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +35749,Luxury 5 Bedroom Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +35750,4 Bedroom Luxury Detached Duplex,Lakeview Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +35751,Luxury 4 Bedroom Detached Duplex (best Price Guaranteed!!),Pinnock Beach Estate Osapa London Lekki Lagos,₦,"195,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +35752,Newly Built 4 Bedroom Detached Duplex Available For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets,Ikota +35753,5 Bedroom Duplex With A Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35754,4 Bedroom Semi Detached Duplex With 1 Bq For Sale,Lekky County Homes Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +35755,Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +35756,5 Bedroom Detached Duplex With 1 Bq,Lekky County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +35757,4bedroom Fully Detached Duplex With Bq For Sale At Ikota,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35758,"Selling For N49,000,000 As The Net Price For This Lovely 4 Bedroom Semi Detached Unit For Sale At Chevron",Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35759,Such A Beautiful Abode. For Sale By The 2nd Toll Gate Lekki,Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,6 baths,5 Toilets,Other Lekki +35760,Massive 5 Bedroom Duplex Glass House With A Bq For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +35761,Massive And Spacious 5 Bedroom Duplex With 1 Room Bq For Sale At Lekki,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35762,Super Finished 5 Bedroom Duplex With 1 Room Bq For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +35763,Adorable And Affordable!!! • Modern Built And Styled Semi Detached Duplexes Available For Sale At Jakande Shoprite,Jakande Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +35764,Luxury 5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +35765,Newly Built 5bedroom Fully Detached Duplexes,Ikota Gra Ikota Villa Mega Chicken Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35766,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35767,This Excellently Finish 4 Bedroom Semi Detached Duplex Is Up For Sale At Ikota,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35768,"Decently Built 5 Bedroom Fully Detached Duplex With A Room Bq For Sale At Chevron, Lekki.",Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35769,Well Sized 5 Bedroom Fully Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +35770,Brand New 4bedroom Semi Detached Duplex With A Room Bq For Sale At Agungi Lekki,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +35771,Contemporary 5 Bedroom Duplex + 1 Maid Quarter For Sale At Lekki County,Ikota Lekki Lagos,₦,"70,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +35772,Contemporary Spacious And Functional 5 Bedroom Detached Duplex With A Room Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35773,Well Finished 4 Bedroom Terrace Duplex With Bq Available For Sale At Atlanta View Estate,Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Lekki +35774,4 Bedroom Fully Detached Mansion + Swiming Pool For Sale At Lekki County Estate Ikota,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35775,This Neatly Built New 5 Bedroom Detached Duplex With Bq Is Available For Sale,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +35776,Exquisite And Premium Finished 5 Bedroom Terrace Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikate +35777,Exclusive 4 Bedroom Fully Detached Duplex With Bq For Sale At Lekki County,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35778,Newly Built 5 Bedroom Semi Detached Home For Sale In One Of The Best Gated Estates In Lekki.,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +35779,Brand New 5 Bedrooms Fully Detached Houses For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +35780,Well Finished 4 Bedroom Fully Detached Duplex With A Room Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,5 baths,5 Toilets,Osapa London +35781,"Fully Serviced 4 Bedroom Semi Detached Duplex For Sale Within A Gated Estate By The 2nd Toll Gate, Lekki",Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +35782,5 Bedroom Duplex With 2 Boy's Quarter For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35783,Stunning 4 Bedroom Fully Detached Duplex With A Bq Available For Purchase At Chevron,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35784,4 Bedroom Semi Detached Duplex With A Bq Available For Sale At The 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35785,Lovely Fully Detached 5 Bedroom House For Sale At Ikota Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +35786,Lovely Piece Of 5 Bedroom Fully Detached Duplex With A Bq For Sale At Megamound Estate Osapa London,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +35787,Contemporary 5 Bedroom Duplex + Bq For Sale At Lekki County Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +35788,5 Bedroom Fully Detached Duplex With A Bq For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35789,Beautifully Built 4 Bedroom Detached Duplex With A Bq For Sale At Ologolo Lekki,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +35790,Newly Built 5 Bedroom Fully Detached Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35791,"This Brand New 4 Bedroom Semi Detached Duplex With Bq Is Available For Sale At Agungi, Lekki",Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +35792,Exquisite 5 Bedroom Fully Detached Duplex For Sale At Osapa London.,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35793,Beautiful 5 Bedroom Fully Detached Duplex For Sale At Lekki County,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +35794,A Well Finished 3 Bedroom Apartment For Sale @ Ikate Elegushi,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +35795,"4 Bedroom Semi Detached Duplex With Bq For Sale At Chevron, Lekki",Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35796,4 Bedroom Fully Detached Duplex Available For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +35797,Most Affordable Lekki Phase1 Brand New 4 Bedroom Detached House With Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35798,Serviced 4 Bedroom Semidetached Duplex With A Maid’s Quarter Available For Sale At Chevron,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +35799,5 Bedroom Detached Duplex Available For Sale At Chevron,Chevron Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +35800,Exquisite And Well Finished Brand New 5 Bedroom Fully Detached Duplex With For Sale At Oral Estate Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +35801,Brand New 4bedroom Semi Detached Duplex With A Room Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35802,Hot Deal?? Nicely Finished 4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"56,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35803,Newly Built 5 Bedroom Fully Detached Duplex With Bq In  Bedroom For Sale At Megamond Estate Ikota,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35804,"4 Bedroom Terraced Duplex For Sale At Chevron, Lekki.",Chevron Lekki Lagos,₦,"45,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +35805,This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Bq Available For Sale At Chevron .,Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +35806,Brand New Tastefully Finished 5bedroom Detached House Is For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35807,Exquisitely 5 Bedroom Fully Detached Duplex With A Bq Available For Sale At Orchid Road,Vgc Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,6 baths,6 Toilets,Victoria Garden City +35808,5 Bedroom Detached Duplex With A Room Bq Inside A Mini Estate At Chevron Lekki,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35809,Enormous 5 Bedroom Fully Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35810,Brand New Contempory 4bedroom Detached Duplex For Sale In A Serene And Secured Estate In Lekki.,Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +35811,Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +35812,Affordable Fully Detached 4bedroom Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35813,5 Bedroom Detached Duplex With  Staff Quarters For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35814,5 Bedroom Fully Detached Duplex (driveway Unit) Available For Sale In A Serviced Estate By The 2nd Toll Gate Lekki,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +35815,Exclusive 4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets,Osapa London +35816,"4 Bedroom Fully Detached Duplex With A Bq And Swimming Pool Available For Sale At Lekki County Homes, Ikota.",Ikota Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets,Ikota +35817,Impeccable 5 Bedroom Detached Duplex For Sale @ Osapa London,Osapa London Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +35818,"Luxury 4 Bedroom Semi Detached Duplex For Sale In A Secure Estate By The 2nd Toll Gate, Lekki.",Chevron Lekki Lagos,₦,"43,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35819,4 Bedroom Semi Detached Duplex With Bq For Sale At Chevron Drive,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35820,"Luxury 5 Bedroom Fully Detached Duplex With A Gym, Pool And A Bq For Sale At Pinnock Beach Estate Osapa London",Osapa London Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +35821,Exquisite Finished 4 Bedroom Terrace Duplex Is Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +35822,One Of The Most Beautiful And Most Functional Properties On The Market. This 5 Bedroom Fully Detached Triplex Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35823,Spacious And Exclusive 6 Bedroom Fully Detached Duplex With 2 Room Bq For Sale At Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,7 baths,7 Toilets,Osapa London +35824,Massive Newly Built 5 Bedroom Detached Duplex With 2 Living Rooms And 1 Maids Quarter For Sale,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +35825,Fully Serviced 5bedroom Detached Duplex With A Room Bq At Chevron Lekki. .,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,5 beds,6 baths,6 Toilets,Chevron +35826,Spacious 4 Bedroom Fully Detached Duplex With A Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35827,"This Lovely 5 Bedroom Fully Detached Duplex,with Bq And Swimming Pool For Sale At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35828,"Brand New 3 Bedroom Apartments For Sale, In A Serviced Mini Estate In Ikate",Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +35829,5 Bedroom Fully Detached Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +35830,This Nicely Built 4 Bedroom Detached Duplex With Bq Is Available For Sale At Pinnock Beach Estate Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,5 baths,5 Toilets,Osapa London +35831,5 Bedroom Detached Duplex With A Bq For Sale At The 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35832,Brand New 5bedroom Detached Duplex With A Room Bq Available For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +35833,5 Bedroom Detached Duplex And A Bq for Sale At Chevron Drive.,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +35834,4 Bedroom Fully Detached Duplex With Bq For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +35835,Executive 5 Bedroom Detached Duplex With Penthouse And Bq For Sale At Lekki County,Ikota Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets,Ikota +35836,Amazing 5 Bedroom Duplex For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +35837,"5 Bed Detached Duplex For Sale By Lekki 2nd Toll Gate, Lekki",Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +35838,Brand New Luxury 4 Bedroom Semi Detached Duplex For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +35839,Exquisitely 4 Bedroom Terrace Duplex With A Bq For Sale At Chevron 2nd Toll Gate .,Chevron Lekki Lagos,₦,"38,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35840,Fully Serviced 4 Bedroom Terraced Duplexes Available For Sale Within A Gated Estate In Ikota,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets,Ikota +35841,Fine 5 Bedroom Fully Detached Duplex With Bq Available For Purchase At Osapa London,Osapa London Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets,Osapa London +35842,Brand New 6 Bedroom Fully Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"105,000,000",0,1,1,6 beds,7 baths,7 Toilets,Chevron +35843,Fully Serviced 4 Bedroom Terraced Duplexes In A Secure Estate For Sale At Chevron,Chevron Lekki Lagos,₦,"47,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +35844,Fully Serviced 4 Bedroom Semidetached Duplexes Available For Sale At Ikota Chevron,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets,Chevron +35845,Brand New Nicely Finished 3 Bedroom Terrace Duplex With Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"49,000,000",0,1,0,3 beds,4 baths,4 Toilets,Ikate +35846,Spacious And Well Finished 3 Bedroom Terrace Duplex With A Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,4 baths,4 Toilets,Ikate +35847,Stunning 5 Bedroom Fully Detached Duplex With Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,6 baths,6 Toilets,Ikate +35848,5 Bedroom Detached Duplex With A Room Bq Available For Sale At Chevy View Estate,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +35849,Luxury 5 Bedroom Detached Duplex With A Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35850,5 Bedroom Fully Detached Duplex For Sale At Ikota Villa,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +35851,Very Spacious 4 Bedroom Detached House With A Bq For Sale At 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +35852,Beautiful 5 Bedroom (waterfront) Duplex With 1 Room Bq For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +35853,4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London.,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets,Osapa London +35854,Amazing 5 Bedroom Fully Detached Duplex Is Available For Sale At Megamound Estate Ikota,Ikota Lekki Lagos,₦,"95,000,000",1,0,0,5 beds,6 baths,6 Toilets,Ikota +35855,5bedroom Detached Duplex With A Room Bq For Sale At Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35856,"4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London, Lekki.",Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +35857,This Beautiful 5 Bedroom Fully Detached Duplex Is Available For Sale At Lekki County,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +35858,"Contemporary 5 Bedroom Mansion On 2 Floors! This Well Finished Home Is Sitting On A 1000 Sqm At Jakande By Circle Mall, Lekki Lagos",Jakande Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +35859,Magnificent 4 Bedroom Semi Detached Duplex With A Bq For Sale At Ikota,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +35860,5bed Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,6 Toilets,Osapa London +35861,Serviced Luxury 4 Bedroom Terrace With Boys Quarter,Park And Shop Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35862,Luxury 5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35863,Exquisite 5 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35864,5 Bedroom Duplex Al Rooms Ensuite,Chevy View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35865,Exquisite 4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35866,4 Bedroom Terrace Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35867,Luxury 5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35868,Exquisite 6 Bedroom All Rooms Ensuite Fully Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +35869,Luxury 5 Bedroom All Rooms Ensuite Semi Detached House Plus Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35870,Brand New 4 Bedroom Semi Detached House + Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35871,Luxury 5 Bedroom Fully Detached House With A Rooms Ensuite + Room Bq,Megamound Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35872,Luxury 4 Bedroom Semi Detached All Rooms Ensuite,Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35873,Luxurious 4 Bedroom Detached House,After Bay Side Estate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35874,Newly Built 5 Bedroom Detached House House All Rooms Ensuite,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35875,5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35876,5bedroom Luxury Family Detached Duplex With Swimming Pool Plus Bq Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35877,Tastefully Finished Spacious 5 Bedroom Duplex Plus Bq,Lekki County Homes Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35878,Luxury And Well Finished 5 Bedroom Fully Detached House Plus Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35879,3 Bedroom Flat,"Atlantic View Estate, Alpha Beach Road Lekki Lagos",₦,"35,000,000",1,0,1,3 beds,3 baths,4 Toilets,Other Lekki +35880,Tastefully Finished 4 Bedroom Semi Detached Duplex Plus Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35881,Newly Built 5bedroom Fully Detached Duplex With 2rooms Boys Quarter With Fitted Kitchen In A Serene Environ Of Lekki Phase 1 Sitting On 500sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,6 baths,7 Toilets,Lekki Phase 1 +35882,5 Bedroom Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35883,Well Finished 4 Bedroom Semi Detached Duplex Plus Bq,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +35884,4bedroom Semidetached Duplex Ikate Lekki,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +35885,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35886,5 Bedroom Fully Detached House With Swimming Pool Brand New For Sale At Pincock Beach Estate Lekki La,Pincock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,4 Toilets,Lekki Phase 1 +35887,Tastefully Finished And Spacious 5 Bedroom Fully Detached Duplex With Excellent Facillities,Off Rahman Adeboyejo Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35888,Tastefully Finished 5 Bedroom Fully Detached Duplex For With Bq For Sale In Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35889,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35890,80% Complete 20 Rooms Hotel On 2 Plots Of Land For Sale At Sangotedo Opposite Crown Estate Lekki Lagos,Sangetedo Lekki Lagos Lekki Lagos,₦,"65,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +35891,5bedroom Fully Detached Duplex With A Bq With Super Finishing At Osapa Lekki.,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +35892,Brand New 5 Bedroom Duplex With Swimming Pool Pinnock Estate Osapa London Lekki,Osapa London Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +35893,Newly Built 9 Units Of 4 Bedroom Terrace Duplex,Ikota Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +35894,Brand New Luxury 5 Bedroom Detached Family House Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +35895,Tastefully Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +35896,5bedroom Fully Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35897,Newly Built Super Finish 5bedroom Fully Detached Duplex Plus Bq In An Estate Ikate Lekki,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +35898,5bedroom Fully Detached Duplex Plus Bq Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +35899,Brand New 5bedroom Detached Duplex With A Room Bq At Agungi,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +35900,Luxury And Tastefully Finished 5 Bedroom Duplex With Excellent Facilities And 2 Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35901,Lovely And Luxury Built 3 Units Of 4 Bedroom Terrace Duplex With A Room Bq Each & 1 Unit Of 3 Terrace Duplex With A Room Bq. Ikota Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35902,Luxury Finished 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikota +35903,5 Bedroom Detached Houses With 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +35904,Newly Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35905,Well Finished 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +35906,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +35907,20 Acres Of Land Facing Lekki Express Way Origanrigan Town Ibeju Lekki Lagos,Origanrigan Town Ibeju Lekki Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +35908,Brand New Tastefully Finished Luxury 4 Bedroom Fully Detached Ajah Lekki,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35909,Exclusively Finished 5bedroom Luxury Family Home Fully Detached Plus Bq Ikate Lekki,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +35910,"A Contemporary 5 Bedroom Duplex With A Swimming Pool, Cinema And A Wine Bar For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35911,"4,600 Of Land For Sale At Elegunshi Lekki Lagos",Elegunshi Lekki Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35912,Urban Prime One Abraham Adesanya Ajah Lekki,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +35913,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq For Sale,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +35914,6 Bedroom Luxury Home Vgc Lekki,Vgc Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Garden City +35915,Exotic 7 B/rm Duplex + Bq,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"76,000,000",0,1,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +35916,5 Bedrooms Fully Detached Duplex,... Chevron Lekki Lagos,₦,"75,000,000",1,1,1,6 beds,6 baths,6 Toilets,Chevron +35917,Exquisite 4 Bedroom Semi Detached Duplex With 1 Bq For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +35918,Spacious 4 Bedroom Semi Detached Duplex With 1 Bq For Sale.,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35919,Exquisitely Built 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35920,Terraced Duplex For Sale At Ilasan Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +35921,A Luxurious 4 Bedroom Semi Detached Duplex,Vgc Axis Vgc Lekki Lagos,₦,"45,000,000",1,1,1,4 beds, baths, Toilets,Victoria Garden City +35922,"5 Bedroom Duplex With A Sizable Study, 3 Living Rooms(2 Downstairs & 1 Family Lounge Upstairs) 1 Dinning Area With A Balcony Upstairs. An Empty Land Behind Meant For The Bq Or What Pleases You. Total Land Size Is 700sqm. Title; Deed Of Assignment.",Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35923,Shop For Business,"Odofin Steet, Ajiran Agungi Lekki Lagos",₦,"5,000,000",0,1,0, beds, baths,1 Toilets,Agungi +35924,Spacious 4 Bedroom Semi Detached Duplex With 1 Bq,Lekki County Homes Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +35925,Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikate +35926,6 Bedroom Fully Detached Duplex,"Western Foreshore Estate, Beside Pinnock Beach Estate, Jakande Lekki Lagos",₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +35927,4 Bedroom Terrace Duplex With One Room Bq Inside,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds, baths, Toilets,Ikate +35928,Exquisite 5 Bedroom Detached Duplex With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +35929,4 Bedroom Semi Detached Duplex With 1 Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +35930,Luxuriously Finished 5 Bedroom Duplex With Fitted Kitchen Cabinet With Swimming Pool And Bq In Lekki, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35931,Ultra Modern 2 Units Of 3 Bedroom,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +35932,3 Storey Building Of 6 Bedrooms,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +35933,Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +35934,Neatly Finished & Spacious 4 Bedroom Semi Detached Duplex With A Servant Quarter,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35935,For Sale: Excellently Finished 2 Bedroom Flat In Lekki,Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +35936,A Newly Built Smart 3 Bedroom Flat With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35937,4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35938,4 Bedroom Duplex With A Servant Quarter,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35939,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +35940,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35941,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35942,800sqm Of Land Available,"Northern Foreshore Estate, Lekki Chevron Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +35943,4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35944,Ultra Modern 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35945,Luxurious 5 Bedroom Duplex In Lekki For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35946,"Brand New 4 Bedroom Semi Detached Duplex With A Room Bq For Sale At Chevron Drive Lekki, Lagos",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35947,5 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35948,Well Built & Tasteful 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35949,A Beautiful 5 Bedroom Fully Detached Duplex With Servant Quarter,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35950,5 Bedroom Semi Detached Duplex,Off Gabriel Okoi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35951,5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35952,Well Constructed & Finished 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35953,4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +35954,Brand New 5 Bedroom Detached House With 2 Room Servant Quarters,Jakande Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35955,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35956,Well Finished 6 Bedroom Detached Duplex With 2 Room Bq,Jakande Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +35957,Ultra Modern 1 Unit Of 2 Bedroom,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +35958,Newly Built 14 Unit Of 2 & 4 Bedroom Flat,"Inside Chevy View Estate, Lekki 1 Chevron Lekki Lagos",₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35959,600 Square Meters Of Land,Vintage Park Estate Lekki Phase 2 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +35960,4 Bedroom Terrace Duplex For Sale In Lekki,Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +35961,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35962,4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35963,5 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35964,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35965,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35966,5 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +35967,4 Bedroom Duplex Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35968,Newly Built Smart 4 Bedroom Semi Detached With A Bq In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +35969,A Modern & Luxury 5 Bedroom Town House With A Servant Quarter,Osapa London Lekki Lagos,₦,"69,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35970,Luxury 3 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +35971,5 Bedroom Fully Detached Duplex With Bq And Cctv,Off Odiyan Rd Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35972,"Neatly Finished, Affordable & Spacious 3 Bedroom Terrace Duplex",Chevron Lekki Lagos,₦,"36,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35973,2 Flats Of 3 Bedroom Each,Osapa London Lekki Lagos,₦,"50,000,000",0,0,1,3 beds,4 baths,3 Toilets,Osapa London +35974,4 Bedroom Town Houses,Vintage Park Ii Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +35975,Neatly Finished 3 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"36,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +35976,For Sale: Neatly Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +35977,Ultra Modern 2 Units Of 4 Bedroom,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +35978,For Sale: 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq In Lekki,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +35979,5 Bedroom Fully Detached,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +35980,Fully Detached 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +35981,A Beautiful And Neatly Finished 4 Bedroom Semi Detached Duplex With A Servant Quarter,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +35982,Well Constructed & Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +35983,5 Bedroom Terrace,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +35984,Brand New 6 Bedroom Detached House With 2 Room Servant Quarters,Jakande Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths, Toilets,Other Lekki +35985,5 Bedroom Detached Duplex In Mega Mond Estate Ikota Villa,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +35986,5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35987,Fully Furnished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +35988,6 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +35989,5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +35990,A Tastefully Finished 3 Bedroom Terrace Duplex With A Servant Quarters,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +35991,4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35992,For Sale: 5 Bedrooms Semi Detached House With A Staff Room,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35993,Ultra Modern 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +35994,5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +35995,4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +35996,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +35997,Fully Detached 5 Bedroom Duplex With Bq,Off Ojulari Road Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +35998,5 Bedroom Luxury Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +35999,6 Plots Of Sand Filled Land For Sale At Chevron Lekki 6 Plots Of Sand Filled Land For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +36000,4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36001,Brand New Block Of 3 Bedroom Flat With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +36002,Executive & Well Finished 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36003,3 Units Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36004,Tasteful 4 Bedroom Terrace Duplex At Chevron,Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36005,5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36006,4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36007,An Exclusive 4 Bedroom Semi Detached Duplex With Servant Quarter,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36008,Tastefully Finished 4 Bedroom Terrace Duplex (3units) With Bq,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36009,4 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +36010,3428 Square Meters Of Land,Road 22 Vgc Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36011,Exquisite 4 Bedroom Semi Detached Duplex Up For Sale With 1 Bq,Lekki County Homes Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths,4 Toilets,Other Lekki +36012,4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +36013,Well Finished 4 Bedroom Semi Detached House With 1 Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +36014,5 Bedroom Detached Duplex With 1 Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +36015,4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +36016,5 Bedroom Duplex Demarcated Into Flats,Chief Augustine Anozie Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +36017,Newly Built 4bedrooms Semidetached Duplex With Bq In A Serene Environment,Chevy View Chevron Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +36018,Exclusively Furnished 5 Bedroom Detached Duplex With A Bq,"Second Toll Gate; Lafiaji, Chevron Lekki Lagos",₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +36019,5 Bedroom Duplex With Bq,"Ocean Bay Estate, Orchid Road, Lekki Lagos Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +36020,Luxury 5 Bedroom Detached Duplex For Sale,"Canal West Residence, Osapa London Lekki, Lagos Osapa London Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +36021,"Hampton Lake Estate, Lekki",Off Chevron Alternative Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Chevron +36022,Newly Built Smart 5 Bedroom Fully Detached,"Buena Vista Estate,orchid Road Lafiaji Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +36023,Newly Built 4 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +36024,Tastefully Finished 5bedrooms Detached Duplex With Bq Ina Secured Estate,Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +36025,Tastefully Finished 4bedrooms Semidetached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +36026,Newly Built 4 Bedroom Semi Detached Duplex (furnished),"Off Fola Osibo Road, Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +36027,Newly Built 4 Bedroom Semi Detarched Duplex In Daniels Garden,Few Minutes Before Chevron Estate Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,6 baths,7 Toilets,Chevron +36028,900 Sqm Of Land, Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets,Osapa London +36029,Land,Off Chevron Toll Gate Along Orchid Hotel Road Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36030,Brand New 4 Bedroom Fully Detached House With Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +36031,Newly Built 4 Bedroom Duplex,After Chevron Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36032,Land,"Bogije, Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36033,4 Bedroom Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +36034,Land, Vgc Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36035,Massive 5 Bedroom Fully Detached Duplex + 1room Bq, Ikota Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +36036,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +36037,4 Bedroom Semi Detached Duplex With Bq,"Lekki County, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +36038,Neatly Finished And Spacious 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +36039,4 Bedroom Semi Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +36040,5 Bedroom Fully Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +36041,1020sqm Of Land At At Vgc,Vgc Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +36042,Brand New Lovely 3 Bedroom With Bq,Oral Estate By 2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +36043,4 Bedroom Luxury Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +36044,4 Bedroom Semi Detached Duplex With Bq,Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +36045,4 Bedroom Semi Detached With Bq For Sale!, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds, baths,0 Toilets,Ikota +36046,4 Bedroom Semi Detached Duplex With A Bq,"Lekki County, Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +36047,Land,"Sunrise Garden, Lekki Lagos",₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36048,4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +36049,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +36050,Brand New Lovely 5 Bedroom Fully Detached,Pinock Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +36051,Brand New 5 Bedroom Fully Detached,Couplag Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +36052,2 Bedroom Flat,2nd Toll Gate By Chevron Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,0 baths,0 Toilets,Chevron +36053,4 Bedroom Fully Detached Duplex With Bq,"Lekki County, Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +36054,5 Bedroom Duplex,"Lekki County, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +36055,Clean And Well Built 4 Bedroom Spacious Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +36056,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +36057,4 Bedroom Semi Detached Duplex With A Bq,"Lekki County, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +36058,Land,Southern Green Estate By Orchid Hotel Road Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36059,800 Sqm Land,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36060,Brand New And Tastefully Finished 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +36061,4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +36062,5 Bedroom Luxury Super Spacious Fully Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +36063,6 Bedroom Luxury Mansion, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +36064,4 Bedroom Semi Detached Duplex With Bq, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +36065,4 Bedroom Fully Detached Duplex With Bq, Agungi Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +36066,Land,Lekki Scheme 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36067,"4,bedroom Semi Detached With Bq, Cctv, Automated Gate, And Tastefully Finished",Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36068,3 Units Of 3 Bedroom Terrace Apartments In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36069,6 Units Of Luxury Brand New 4 Bedroom Townhouses,Elf Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36070,680sqm Land,Salem Area Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36071,Massive And Very Large 6 Bedroom Detached House On 800sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,7 baths,8 Toilets,Lekki Phase 1 +36072,5 Bedrooms Terraces + Bq,"Oral Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36073,Spacious 3 Bedroom Flat In A Serene And Secured Serviced Court,"Banana Island Court, Lekki Igbo Efon Lekki Lagos",₦,"27,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36074,6 Bedrooms Fully Detcahed Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets,Osapa London +36075,Land, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36076,Land, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36077,Exquisite 5 Bedroom Fully Detached Duplex With 2 Bq,Peanock Estate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36078,Corner Peice 3 Units Of 3 Bedroom Terrace Apartments In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36079,A Very Spacious 4 Bedroom Terrace House With Maid Room,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,3 baths,3 Toilets,Lekki Phase 1 +36080,4 Bedroom Terrace In Bakare Estate Agungi Lekki,Bakare Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36081,5 Bedrooms Fully Detached Duplex With Bq,Estate Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36082,A Luxury 6 Bedroom Big And Spacious Mansion,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +36083,Newly Built 5 Bedroom Semi Detached Duplex With Bq,Lekki County Home Ikota Lekki Lagos,₦,"75,000,000",0,1,0,6 beds,6 baths,6 Toilets,Ikota +36084,4 Bedroom Fully Detached Duplex With 1bq,Lekky County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +36085,"Frontier Estate, A Residential Estate With Great Highlights","Bogije, Lekki. Lekki Lagos",₦,"6,700,000",0,1,0, beds, baths, Toilets,Other Lekki +36086,4 Bedroom Semi Detached Duplex In Lekki Ph 1,Along Nike Art Gallery Way Ikate Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +36087,2 Bedroom Spacious Apartment,Nike Art Gallery Way Ikate Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +36088,4 Bedroom Spacious Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +36089,Spacious 4 Bedroom Semi Detached Duplex In A Prestigious Location In Chevron. (fully Serviced),Along Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36090,Certificate Of Occupancy,"Bogije, Lekki Lekki Phase 1 Lekki Lagos",₦,"6,700,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36091,4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +36092,Newly Built 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +36093,Newly Built Of Fully Detached 5 Bedroom Duplex With C Of O,Pioneer Road Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +36094,Fully Serviced 4 Bedroom Terraced Duplexes Available For Sale,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +36095,Amazing 2bedroom Luxury Maisonette,"Richmond Gate, Ikate Elegushi. Lekki Ikate Lekki Lagos",₦,"42,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +36096,4 Bedroom Terrace Duplex (with Bq),Ikota Villa Ikota Lekki Lagos,₦,"39,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +36097,4 Bedroom Fully Detached Duplex With A Bq.,Thomas Estate Devine Homes Lekki Lagos,₦,"43,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Lekki +36098,5 Bedroom Detached Duplex With 1 Bq,Ikita Villa Estate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +36099,Premium Listing 4 Bedroom Detached Duplex,Lekky County Home Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +36100,4 Bedroom Detached Duplex With 1 Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +36101,Newly Four Bedroom Fully Detached Duplex In A Serene Environment Osapafor Sale,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +36102,"For Sale: Exquisitely Finished 4 Bedroom Detached Duplex With A Room Bq, Up For Sale. Features: •massive Master's Bedroom •all Rooms Ensuite Walk In Closet •family Lounge •fully Fitted Kitchen •cctv, Etc.",Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36103,Luxury 7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,7 beds,7 baths,6 Toilets,Ikota +36104,Newly Built Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +36105,Newly Built 5 Bedroom Detached Duplex With Contemporary Design,Agungi Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +36106,Newly Built 5 Bedroom Semi Detached Duplex With A Contemporary Design,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36107,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Avenue,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +36108,"5 Bedroom Fully Detached Duplex With Bg, Ample Parking For 4cars Fitted Kitchen Very Spacious Bera Estate Beside Carlton's Gate Chevron Drive. Price 90m Call For Inspection And More Info [redacted]","Bera Estate, Behind Conlton Gate Chevron Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,3 baths,4 Toilets,Chevron +36109,Newly Built 4 Bedroom Fully Detached House,"Alternative Road Off Chevron Drive, Chevron Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +36110,Distress Sales Of Plots Of Land,"Orchid Hotel Road, Ikota Ikota Lekki Lagos",₦,"17,000,000",0,0,0, beds, baths, Toilets,Ikota +36111,5 Bedroom Detached Duplex With Bq (jumbo Size)@ #120m,"Pioneer Road, Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"120,000,000",1,1,1,5 beds,7 baths,6 Toilets,Osapa London +36112,4bedroom Semi Detached With A Bq With Governor Consents,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"55,000,009",1,1,1,5 beds,5 baths,5 Toilets,Chevron +36113,4bedroom Semi Detached Duplex With A Bq At Orchid With Governor's Consent,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Oral Estate Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +36114,A 4 Bedroom Bungalow With Bq,V. G. C Estate. Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36115,Newly Built Smart 5 Bedroom Fully Detached With A Bq With Governors' Consent,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +36116,5 Bedroom Duplex + Bq,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +36117,House For Sale,Shorprite Road Jakande Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +36118,5bedrooom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36119,"For Sale 5 Bedroom Detached Duplex With Bq Location : Osapa London, Lekki . Lagos ",Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36120,Tastefully Built 4 Bedroom With Bq Duplex,"Lakeview Park Ii Estate, By Orchid Hotel Road, Off Laffiaji Village Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,1 Toilets,Chevron +36121,Newly Built 4 Bedroom Duplex For Sale At Conservative Chevron,Conservative Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36122,"Tastefully Finished 4 Bedroom Terraced House Plus 1 B/r Bq For Sale In Royal Gardens Estate, Lekki Expressway","Deji Avenue , Royal Gardens Estate Lekki Phase 2 Lekki Lagos",₦,"49,999,999",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +36123,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Ikota +36124,4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +36125,4 Bedroom Semi Detached Duplex,Chvron Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +36126,600sqm Of Land Lekki, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36127,Newly Built And Fitted 6 Bedroom Mansion Detached With Swimming Pool In Lekki 1,Off Ayinde Akinmade Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +36128,Newly Built And Fitted 6 Bedroom Mansion Detached With Swimming Pool In Lekki 1,Off Ayinde Akinmade Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +36129,Now Selling *@n65m Per Unit (semi Detached)* *@n95m Per Unit (semi Detached)* Newly Built 4units Of Massive 4bed Semi Detached Duplex Plus Bq With Some Super Finishing*,By Shoprite Osapa Osapa London Lekki Lagos,₦,"65,000,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +36130,Jumbo Mansions,Muritala Eletu Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,0 baths,0 Toilets,Osapa London +36131,Newly Built 4 And 5 Bedroom Fully Detached Duplex With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road ,lekki Chevron Lekki Lagos",₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +36132,Serviced 3 Bedroom Flat + Bq,Ojulari Road Off Lekki Expressway Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36133,"A Massive, Well Designed And Finished 5 Bedroom Detached House Within A Fenced Exclusive Premises Located Off Admiralty Road, Lekki Scheme 1","Admiralty Road, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +36134,A Well Designed And Finished 5 Bedroom Detached Triplex,"Off Admiralty Way, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"155,000,000",1,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +36135,"3050sqm Fenced Virgin Land (with About 100 Piles) With Approval For 10 Floor Residential Development Of Thirty (33) Apartments Located Off Admiralty Way, Lekki Scheme 1, Lagos.","Off Admiralty Way, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36136,New 3 Bedroom Erraced House,Lekki Gardens Iii Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +36137,Fully Fenced Commercial Land Measuring 7737 Square Meters,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36138,Affordable Home With Cofo In Lekki,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"10,950,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +36139,Automated Smart Homes For Sale At Give Away Price,Orchid Hotel Road Lekki Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +36140,Newly Built Four Bedroom Semi Detached Duplex With A Fitted Kitchen And A Boy’s Quarters,Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,2 Toilets,Other Lekki +36141,Half Plot Of Land,Off Prince Olanrewaju Street; Elegushi/ Ilasan Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36142,Land For Sale At Chevron Lekki,"Chevron Cooperative, Lafiaji Community, Orchid Road, Lagos Chevron Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Chevron +36143,Land For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"83,000,000",1,0,0, beds, baths, Toilets,Osapa London +36144,Brand New And Nicely Finished 4 Bedroom Semidetached Duplex With Boys Quarters And A Gate House,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +36145,Land In Lekki Lagos,Elegushi Lekki Lagos Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36146,Corner Piece Land For Sale At Ikate Elegushi,"Ikate Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikate +36147,Land In Seagate Estate Ikate Lekki Lagos,"Seagate Estate, Ikate Lekki Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikate +36148,Lovely 3 Bedroom Terrace In Lekki Phase 1,Babatope Bejide Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36149,"Land For Sale In Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikota +36150,Land For Sale In Lekki,Piccadilly Hotel And Suites Road Agungi Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Agungi +36151,A Shop For Sale At Ikota Shopping Complex,Ikota Shopping Complex Vgc Lekki Lagos,₦,"9,000,000",1,0,0,1 beds,1 baths, Toilets,Victoria Garden City +36152,"Luxury Finished 4 Bedroom Fully Detached Duplex House With Bq In Lekki, Ikota Lagos","Chevron Alternative Drive, Lekki, Ikota Lagos State. Chevron Lekki Lagos",₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +36153,6 Bedroom Massive Fully Equipped Fully Detached Duplex With Swimming Pool And 2 Bq With Fitted And Gym.,Cycle Mall Way Jakande Lekki Lagos,₦,"100,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +36154,Tastefully Finished 4 Bedroom Semi Detached Duplex With A Bq Available For Sale,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36155,5bedroom Fully Detached Duplex Plus 1room Bq On 450sqm,Vgc Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36156,New Built Six Bedroom Duplex For Sale At Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets,Victoria Garden City +36157,"Distress Sale Of A Strategically Located Two Plots Of Land In A Built Up Area Of Bera Estate,chevron Drive With Governor's Consent",Bera By Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",1,1,0, beds, baths, Toilets,Chevron +36158,2 Bedroom Flat + Room Bq,Silicon Valley Estate Igbo Efon Lekki Lagos,₦,"21,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +36159,"Land Size: 1,360 Sq.m. I Chevyview Estate", Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36160,4 Bedroom Detached Villa With 2 Bedroom Guest Chalete For Sale In Lekki Kw 2244,Fara Park Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +36161,"Land Size: 2,660sqm (4plots) Corner Piece.",... Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36162,A Dry Bare Land Jv Land 2019 Sqm Corner Piece,... Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36163,3 Bedroom Terrace For Sale In Ikate Elegushi Kw 2243,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets,Ikate +36164,An Exquisitely Finished 3 Bedroom (all Ensuite) 4 Units,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36165,Brand New 4bedroom Terrace Duplex In An Estate In Lekki Pjase1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36166,Luxury 4 Bedroom Terrace In Agungi For Sale,Akinkunmi Ayinla Close Agungi Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +36167,5 Bedroom Fully Detached (villa) Homes,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +36168,Magnificent Event Center Facing The Express,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36169,Terrace Homes,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +36170,Maisonette Apartment,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +36171,8(nos) 3 Bedroom Town Houses With Bq, Agungi Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,0 baths,0 Toilets,Agungi +36172,Newly Built 5 Bedroom In Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,5 Toilets,Chevron +36173,Newly Built 5bedrooms With Bq,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +36174,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Ikota +36175,Massive 5 Bedroom Fully Detached Duplex + Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36176,Newly Built 5 Bedroom Duplex With A Bq In A Serene Environment,Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +36177,912 Sqm Of Land At Lekki Phase 1 With C Of O,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36178,5 Bedroom Semi Detached Terrace Duplex In A Serene Neighbourhood With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +36179,5995 Sqm Land In Lekki Phase 1 (water Front).,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36180,Old Fully Detached 5 Bedroom Duplex,Olajide Olabanji Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36181,"Exquisite Furnished 2 Bedroom Terrace At Pinnock Estate, Lekki, 3 Units In All.",Jakande Lekki Lagos,₦,"130,000,000",0,1,1,2 beds,2 baths,3 Toilets,Other Lekki +36182,Newly Built 10 Units Of 5 Bedroom Fully Detached Duplex Available For Sale.,"Orchid Road, Lekki Before Lekki County Homes. Lekki Phase 2 Lekki Lagos",₦,"86,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36183,Exquisite Two Bedrooms And One Bedroom Apartments For Sale,P.14 B.62 Dr. Ahmid Balogun Street Lekki Phase 2 Lekki Lagos,₦,"26,000,000",1,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +36184,Luxury 4 Bedroom Semi Detached Duplex +bq For Sale At Ikate,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +36185,5 Bedroom Detached Duplex And 1 Bq For Sale.,... Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36186,3 Bed Room Flat With Bq @ Prime Water Veiw Estate,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +36187,6 Units Of 1 Bed Room Apartment,Ikate Ikate Lekki Lagos,₦,"24,000,000",1,1,0,1 beds,1 baths,1 Toilets,Ikate +36188,5 Bedroom Ultra Modern Luxury Duplex,Femi Okunnu Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36189,"13 Units Of 1, 2 And 3 Bedroom Hotel Suites.",Around Lekki Second Roundabout Ikate Lekki Lagos,₦,"850,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +36190,12 Units Of 2 Bedroom Apartments,Ikate Elegushi Ikate Lekki Lagos,₦,"34,000,000",1,1,0,2 beds,2 baths,2 Toilets,Ikate +36191,5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36192,4 Bedroom Terrace,Ajayi Alaba Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36193,Fully Serviced 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +36194,Newly Built And Very Spacious 3 Bedroom Terrace,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +36195,Luxurious Units Of 4 Bedroom Terraces,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +36196,Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +36197,Brand New 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36198,Contemporary 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36199,A Full Plot Of Land Measuring 875 Sqm,Elegushi Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36200,Premium Serviced Plot Of 1089sq.m For Sale At Twin Lake Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"200,000,000",1,1,0, beds, baths, Toilets,Chevron +36201,5 Bedroom Duplex For Sale,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +36202,Studio Apartment, Ikate Lekki Lagos,₦,"14,000,000",0,0,0,1 beds,1 baths,1 Toilets,Ikate +36203,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +36204,4 Bedroom Detached Duplex,Idado Lekki Lekki Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36205,Newly Built Units Of 2 & 3 Bedrooms For Sale.,Oral Estate Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Lekki +36206,Newly Built 3 Bedroom Apartment In A Serene Environment,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets,Ikate +36207,4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36208,Tastefully Finished 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +36209,Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +36210,"Contemporary, Elegant And Spacious 5 Bedroom Fully Detached Duplex.",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +36211,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +36212,Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36213,Jumbo Size 5 Bedroom Duplex For Sale,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36214,4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36215,Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36216,Newly Built 5 Bedroom Detached Duplex Located In A Serene Neighborhood And Offers Constant Electricity Supply.,Chevron Lekki Lagos,₦,"83,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +36217,3 Bedroom Maisonette For Sale,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +36218,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36219,Brand New 4bedroom Terrace For Sale,Ikota Area Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36220,Brand New 5 Bedroom Detached House With Bq For Sale In Lekki Kw 1310,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths, Toilets,Osapa London +36221,6 Units Of 3 Bedroom Terrace For Sale In Lekki,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths, Toilets,Ikate +36222,5bedroom Duplex For Sale In Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +36223,5 Bedroom Detached Duplex,Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +36224,"3 Bedroom Flat For Sale At Victory Park Estate, Lekki Kw 1540",Victory Park Estate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Lekki +36225,Tastefully Finished 5 Bedroom Detached House For Sale At Lekki Kw 1478,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths, Toilets,Ikota +36226,4 Bedroom Terrace For Sale At Chevron Kw 418,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +36227,5 Bedroom Semi Detached Duplex With 1 Room B/q For Sale At Ikate Kw 1456,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths, Toilets,Ikate +36228,Brand New 4bedroom Fully Detached House For Sale (kw 1197),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Lekki Phase 1 +36229,3 Bedroom Terraced Duplex With B/q For Sale In Lekki Kw 1386,Bella Homes 1 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths, Toilets,Chevron +36230,2 (nos.) 4 Bedroom Semi Detached House For Sale At Lekki Phase 2,Garba Muhammed Lawal Avenue Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +36231,Luxury 5 Bedroom Fully Detached Duplex + Bq For Sale In Lekki Kw 1612,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"90,000,000",1,0,0,5 beds,5 baths, Toilets,Ikota +36232,Luxury 4 Bedroom Detached Duplex For Sale At Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths, Toilets,Chevron +36233,Brand New 5 Bedroom Detached Duplex Sitting On 500sqm,Off Akeem Dickson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36234,Stylish Residential 5 Bedroom Duplex On 2 Floors For Sale In Lekki Kw 1408,Lekki Gardens Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths, Toilets,Other Lekki +36235,Brand New 5 Bedroom Fully Detached Duplex (kw1204),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +36236,Third Floor 3 Bedroom Flat For Sale In Lekki Kw 1533,Lekki Gardens Horizon 1 Ikate Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,4 baths,4 Toilets,Ikate +36237,2 Bedroom Terrace Duplex (all Rooms Ensuite + Guest Toilet And Attached Bq),"Oribanwa, Lekki Peninsula, Lagos. Lekki Phase 1 Lekki Lagos",₦,"14,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +36238,Exquisite 9 Bedroom Fully Detached Duplex For Sale,"Lekki County Homes, Megamound Estate Lekki Lagos",₦,"370,000,000",0,0,0,9 beds,9 baths,9 Toilets,Other Lekki +36239,Exotically Finished 4 Bedroom Semi Detached Duplex With B/q For Sale In Lekki Kw 1384,Creek Avenue Court Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +36240,5 Bedroom Duplex For Sale In Lekki Phase 1 Kw 1943,Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets,Lekki Phase 1 +36241,Newly Built 4 Bedroom Semi Detached House With Maid's Room For Sale In Lekki Kw 1309,Ikota Lekki Lagos,₦,"36,000,000",0,1,1,4 beds,5 baths, Toilets,Ikota +36242,5 Bedroom Detached House For Sale In Lekki Phase 1 Kw 1405,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths, Toilets,Lekki Phase 1 +36243,For Sale: 4 Bedroom Terraced Duplex,Near Orchid Hotel Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +36244,"*for Sale* Luxury, Spacious And Newly Built 6units Of 5bed Room Fully Detached Duplex Plus A Room Bq",Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +36245,"Newly Built 4 Bedroom Terraced Duplex For Sale At Chevron, Lekki Kw 1561",Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths, Toilets,Chevron +36246,Very Affordable Dry Land With Cofo For Sale Inside Beechwood Estate Bogiji Lekki Ajah Express Way Kw 1778,Beechwood Estate Bogiji Lekki Lagos,₦,"6,750,000",0,0,0, beds, baths, Toilets,Other Lekki +36247,Brand New 4 Bedroom Flat For Sale In Lekki Kw 1454,Opp. Victoria Park Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths, Toilets,Osapa London +36248,Brand New 5 Bedroom Detached Town House In Lekki Phase1,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +36249,Buy Land In Beechwood Estate,"Beechwood, Shapati Lekki Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +36250,Newly Built 4 Bedroom Semi Detached House For Sale At Ikota Kw 1559,By Ikota Road Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths, Toilets,Ikota +36251,5 Bedroom Semi Detached Duplex With Bq For Sale At Chevy View Estate Kw 577,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths, Toilets,Chevron +36252,Brand New 3bedroom Terrace With A Room Bq For Sale, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +36253,Bespoke And Luxury Newly Built 4 Bedroom Terrace Duplex For Sale In Lekki Kw 1306,Ikota Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths, Toilets,Ikota +36254,A 5 Bedroom Fully Detached Duplex For Sale In Lekki 2,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +36255,5 Bedroom Duplex For Sale At Osapa Lekki Kw 2073,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths, Toilets,Osapa London +36256,2 Bedroom Flat For Sale In Lekki Kw 1989,By Alternative Route Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths, Toilets,Other Lekki +36257,Brand New Luxury 5 Bedroom Fully Detached Duplex On 2 Floors With Bq For Sale In Lekki Kw 1815,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths, Toilets,Osapa London +36258,Newly Built 3 Bedroom Terrace Apartment For Sale In Lekki Kw 1870,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths, Toilets,Ikate +36259,Brand New 4 Bedroom Duplex,Meadow Hall School Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36260,Beautiful Brand New 2 Bedroom Flat With Bq For Sale At Lekki Kw 1308,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds, baths, Toilets,Ikate +36261,Massive 5 Bedroom Duplex For Sale In Lekki,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +36262,Block Of Flats For Sale At Lekki Phase 1 Kw 1947,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths, Toilets,Lekki Phase 1 +36263,Brand New Distressed 2 Bedroom Flat,Jerry Iriabe Area Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +36264,3 Bedroom Terrace In Lekki,Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,5 baths,5 Toilets,Osapa London +36265,F O R S A L E: Beautifully Built 5 Bedroom Fully Detached Duplex And Bq (kw1214),Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds, baths, Toilets,Osapa London +36266,Block Of 4(nos.) 2 Bedroom Flat For Sale In Lekki Kw 1545,Aro Village Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ologolo +36267,3 Bedroom Detached Duplex House For Sale At Jakande Lekki Lagos,"New County Estate, Off Ajifoluke Avenue Jakande Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +36268,C Of O Most Affordable Property In Lekki. Call [redacted] Today,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,5 Toilets,Ikate +36269,12 Units Newly Built 4 Bedroom Terraces.,Orchid Road Before South Point Estate Oral Estate Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36270,Land Behind Tantalizer,Behind Tantalizer Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36271,Newly Built 5 Bedroom Fully Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +36272,4 Bedroom Duplex For Sale In Lekki, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +36273,Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Chevron Lekki/ikota . Pay And Pack In.,"Immediately After Chevron Toll Gate, Ikota Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +36274,4 Bedroom Semi Detached/ 1bq,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +36275,Brand New All Round Marble Luxury Full Detached 6bedroom Duplex Mansion,"Off Ayinde Akinmade Street, Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,1,1,6 beds,7 baths, Toilets,Lekki Phase 1 +36276,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +36277,Well Finished 4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36278,5 Bedroom Fully Detached Duplex,Lekky County Homes ( Megamound) Close To Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36279,300sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Ikota +36280,530 Sqm Land,Acadia Groove Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36281,5 Bedroom Fully Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +36282,Newly Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36283,Land,Lekky County Homes (megamound) Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36284,4 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36285,Newly Finished 4 Bedroom Semi Detached Dulex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36286,4 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36287,4 Bedroom Fully Detached Duplex,Alpha Beach Road Close Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36288,Well Finished Spacious 5 Bedroom Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36289,4 Bedroom Terrace Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36290,Newly Built 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36291,5 Bedroom Fully Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36292,"21,000 Sqm Land",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36293,5 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36294,Excellently Finished 3 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +36295,5 Bedroom Fully Detached Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36296,Newly Built 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36297,675sqm Land, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36298,4 Bedroom Fully Detached Duplex,Buena Vista Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36299,Luxurious 5 Bedroom Fully Detached Duplex,Chevy View Estate; Chevron Lekki Lagos,₦,"109,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36300,Newly Built 5 Bedroom Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36301,4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36302,402 Sqm Land,"Ikota Villa Estate , Ikota Lekki Lagos",₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36303,4 Bedroom Fully Detached Duplex With 1 Bedroom Flat Bq,Ocean Bay Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36304,Sand Filled 600sqm Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36305,Exquisite 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36306,4 Bedroom Terrace Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36307,4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36308,5 Bedroom Semi Detached Duplex,2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36309,Newly Finished 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +36310,5 Bedroom Fully Detached Duplex,. Idado Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36311,4 Bedroom Semi Detached Duplex For Sale,Idado Idado Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36312,3 Bedroom Flat,Atlantic View Estate Chevron Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36313,Well Finished 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +36314,4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36315,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36316,Serviced Plot Of Land (600 Sqm) In Lake View Park Estate,"Lake View Park Estate, Opposite Vgc Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36317,3 Bedroom Semi Detached House In Lekki,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36318,5 Bedroom Fully Detached Duplex, Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36319,4 Bedroom Town House At Lekky County Homes,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36320,5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36321,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36322,Newly Built 5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36323,5 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36324,Lovely 5 Bedroom Fully Detached Duplex Sitting,Chevron Area Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36325,800 Sqm Plot Of Land,"Road 5, Suite I 61 Vgc Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36326,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36327,Newly Built 5 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +36328,4 Bedroom Detached Duplex,Buena Vista Estate Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36329,4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36330,3 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36331,1 Bedroom Bungalow,South Point Estate Chevron Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36332,5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36333,5 Bedroom Fully Detached Duplex,Idado Idado Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +36334,950 Sqm Land (plot 72a Block 33),Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36335,3 Bedroom Apartment For Sale,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36336,5 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36337,5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36338,5 Bedroom Fully Detached Duplex With Bq For Sale In Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36339,Lovely 4 Bedroom Terrace Duplex,"Buena Vista Estate, Orchid Hotel Road, Eleganza Bus Stop, 2nd Toll Gate Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36340,Land,"Diamond Estate, Lekki Phase 1 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36341,Land,"Lake View Park 2, Lekki Peninsula Ii Lekki Phase 1 Lekki Lagos",₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36342,624 Sqm Plot Of Land For Sale In Ikate,Vintage Park Estate Ikate Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets,Ikate +36343,5 Bedroom Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36344,Land,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36345,"Newly Built 5 Bedroom Detached Duplex With Penthouse And Bq For Sale In Acadia Groove Estate, Lekki",Acadia Groove Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36346,Spacious 5 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +36347,5 Bedroom Detached Duplex For Sale In Lekky County Homes,Lekky County Homes Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +36348,4 Bedroom Terrace Duplex With Excellence Finishing,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36349,4 Bedroom Terrace Duplex,5 Street Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +36350,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36351,4 Bedroom Semi Detached Duplex,White Oaks Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +36352,4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36353,Newly Built 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36354,4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36355,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36356,740 Plots For Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36357,400 Sqm Land,Lake View Park 1 Opposite Vgc Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36358,"1,104 Sqm Land",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36359,Newly Built Spacious 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36360,4 Bedroom Detached Duplex With Studio Or Cinema Room,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36361,Luxurious 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,5 baths,6 Toilets,Chevron +36362,Newly Built 4 Bedroom Terrace Duplex,. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36363,500sqm Land For Sale,Chevron Twin Lakes Estate Chevron Lekki Lagos,₦,"62,500,000",0,0,0, beds, baths, Toilets,Chevron +36364,Residential Land,"Lakeview Park 2 Orchid Hotel Rd; Chevy View Estate, Lekki Lagos",₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36365,648 Sqm Land,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36366,Excellently Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36367,650sqm Land,Oral Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36368,Land,"Diamond Estate Phase 1, Along Monastery Rd, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36369,3 Bedroom Terrace Duplex,"Admiralty Estate, Alpha Beach Road Estate Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36370,578sqm Land,Mobil Estate Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36371,400sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets,Ikota +36372,Well Finished 4 Bedroom Semi Detached Duplex,Napier Gardens Estate; Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36373,3 Bedroom Detached Duplex,. Oral Estate Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +36374,5 Bedroom Semi Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36375,Luxury 2 Bedroom Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +36376,5 Bedroom Fully Detached Duplex Sitting,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36377,Newly Built 4 Bedroom Semi Detached Duplex,Alperton Court Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36378,5 Bedroom Detached Duplex, chevy View Estate; Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +36379,"4 Bedroom Semi Detached Duplex In Ocean Bay Estate, Lekki",Ocean Bay Estate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36380,"Well Built 5 Bedroom Detached Duplex For Sale In Osapa, Lekki",Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36381,4 Bedroom Semi Detached Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +36382,340sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"28,900,000",0,0,0, beds, baths, Toilets,Ikota +36383,4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36384,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36385,4 Bedroom Semi Detached For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36386,648sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets,Ikota +36387,Spacious 6 Bedroom Detached Duplex For Sale In Pinnock Beach Estate Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +36388,670sqm Land, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36389,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +36390,4 Bedroom Semi Detached Duplex For Sale In Bera Estate (chevy View Estate),Bera Estate (chevy View) Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36391,4 Bedroom Semi Detached Duplex,Elegushi Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36392,"Newly Built 5 Bedroom Detached Duplex For Sale In Osapa, Lekki",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36393,Well Built 5 Bedroom Detached Duplex With Good Finishing For Sale In Ikate,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36394,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36395,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36396,Newly Finished 5 Bedroom Detached Duplex For Sale,Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36397,Well Finished 4 Bedroom Terrace Duplex With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36398,"1001.88 Sqm Land For Sale (block 1, Plot 20)",Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36399,700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36400,5 Bedroom Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36401,Land,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36402,Newly Finished 5 Bedroom Detached Duplex For Sale In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +36403,7 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"115,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +36404,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36405,3 Bedroom Flat,. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36406,Land,Ocean Bay Estate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36407,Luxury 3 Bedroom Serviced Apartment,Bourdillion Court Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36408,2 Bedroom Terrace Duplex,Mini Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +36409,10200sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36410,4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36411,4 Bedroom Semi Detached Duplex,. Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36412,Spacious 5 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36413,500sqm Land,Buena Vista Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36414,5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36415,5 Bedroom Terrace Duplex,5 Street Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +36416,4 Bedroom Terrace Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36417,500sqm Land For Sale,Acadia Groove Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Osapa London +36418,4 Bedroom Terrace Duplex,Oral Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36419,6 Bedroom Fully Detached Duplex,", 2nd Roundabout, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +36420,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36421,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36422,"4 Bedroom Semi Detached Duplex For Sale In Orchid Hotel Road, Lafiaji, Lekki Lagos","Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36423,4 Bedroom Semi Detached Duplex,Chevron Area Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36424,2 Bedroom Flat,Maruwa Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +36425,750 Sqm Land,Ikate Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36426,4 Bedroom Semi Detached Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36427,4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36428,962sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +36429,400 Sqm Land,Lakeview View Park 2 Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"23,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36430,900sqm Land,Victory Park Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36431,"6 Bedroom Fully Detached Duplex With 4 Living Rooms, 3 Bq And Swimming Pool",Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +36432,Exquisite 3 Bedroom Flat With Penthouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36433,Land,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36434,5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36435,5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36436,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36437,2 Bedroom Flat,"Close To Atlantic View Estate, Along Alpha Beach Road, Opposite, Chevy View Estate Lekki Lagos",₦,"19,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +36438,Mini Flat,South Pointe Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +36439,4 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36440,Newly Built Well Finished 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36441,4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36442,Newly Finished 2 Bedroom Apartment, Oral Estate Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +36443,21000sqm Land, Lekki Phase 1 Lekki Lagos,₦,"97,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36444,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36445,Well Finished 3 Bedroom Serviced Flat,Oral Estate Close To Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36446,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36447,4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36448,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36449,670sqm Land,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36450,5 Bedroom Detached Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36451,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36452,Lovely 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36453,3 Bedroom Flats (off Plan),Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"24,900,000",0,0,0,3 beds,3 baths,0 Toilets,Ikota +36454,600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"46,500,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36455,3 Bedroom Fully Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +36456,4 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36457,960sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36458,Well Finished 3 Bedroom Terrace Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36459,4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36460,3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36461,2 Bedroom Flat,"Bourdillon Court Estate; Chevron Drive, Close To Chevy View Estate, Chevron Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +36462,4 Bedroom Terrace Duplex For Sale,Maruwa Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36463,3 Bedroom Apartment,Primwater View Estate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36464,5 Bedroom Fully Detached Duplex Sitting On 1100sqm,Mobil Estate Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36465,1104sqm Land,Pinnock Beach Estate Road Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36466,3 Bedroom Duplex With 1 Room Bq,Vista Estate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +36467,2 Bedroom Terraced Bungalow,"South Point Estate, Orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +36468,4 Bedroom Semi Detached Duplex, . Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36469,4 Bedroom Terrace Duplex For Sale, Ilasan Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36470,3 Bedroom Terrace Duplex,Lekki Gardens Horizon 2 Estate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +36471,1341 Sqm Land,. Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36472,Newly Finished 5 Bedroom Semi Detached Duplex,Lekky County Homes (megamound); Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36473,900sqm Land For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36474,4 Bedroom Semi Detached Duplex, cardogan Estate; Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36475,650 Sqm Plot Of Land For Sale (with Governors Consent),Atlantic View Estate Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36476,4 Bedroom Fully Detached For Sale,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +36477,4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36478,"940 Sqm Land For Sale (block 66c, Plot 10)",Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36479,Exquisite 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36480,5 Bedroom Semi Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36481,Beautifully Finished 5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36482,5 Bedroom Detached Duplex For Sale In Agungi,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +36483,5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +36484,4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36485,4 Bedroom Fully Detached Duplex For Sale In Oral Estate,Oral Estate Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36486,Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Opposite Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36487,450sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"38,250,000",0,0,0, beds, baths, Toilets,Ikota +36488,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +36489,Well Finished 5 Bedroom Full Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36490,Lovely 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36491,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36492,540sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36493,5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36494,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"88,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36495,5 Bedroom Fully Detached Duplex,Lakeview Park 1 Opposite Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36496,Well Built 4 Bedroom Semi Detached Dupelx,Chevron Area Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36497,600 Sqm Land,Lakeview Park 2 Orchid Hotel Road; Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36498,5 Bedroom Fully Detached Duplex For Sale,Lekki Conservation Area Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36499,4 Bedroom Semi Detached Duplex,"Chevron Area, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36500,5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36501,Exquisite 5 Bedroom Fully Detached Duplex,"Chevy View Estate, Along Chevron Drive Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36502,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36503,4 Bedroom Semi Detached Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +36504,5 Bedroom Detached Duplex,County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36505,5 Bedroom Semi Detached Duplex,"Chevron Area, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36506,"Very Well Finished, Furnished 5 Bedroom Detached Duplex For Sale In Ikate, Lekki", Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36507,3 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36508,4 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36509,3 Bedroom Terrace Duplex,Lekky County Homes (megamound) Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36510,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36511,5 Bedroom Fully Detached Duplex For Sale,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36512,Land,Lake View Park 2 Along Orchid Hotel Rd Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36513,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36514,4 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36515,5 Bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36516,4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36517,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36518,Newly Finished 6 Bedroom Detached Duplex With Detailed Finishing And 10.5 Kva Inverter,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +36519,4 Bedroom Semi Detached Duplex,Chevron Area Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36520,Excellently Finished 5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +36521,4 Bedroom Flat,"Lekki Horizon 1, Ikate Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +36522,5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36523,5 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36524,Spacious 4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36525,3 Bedroom Semi Detached,. Oral Estate Lekki Lagos,₦,"36,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +36526,4 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36527,Fully Fenced 690sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36528,Newly Furnished 4 Bedroom Semi Detached For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +36529,4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36530,3 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"28,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36531,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36532,4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36533,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36534,4 Bedroom Semi Detached Duplex For Sale In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36535,Well Finished 4 Bedroom Terrace Duplex At Atlantic View Estate,Atlantic View Estate Chevron Lekki Lagos,₦,"32,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36536,5 Bedroom Detached Duplex,"Lekky County Homes (megamound); Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +36537,4 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36538,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36539,5 Bedroom Semi Detached Duplex,"White Oak Estate, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +36540,5 Bedroom Detached Duplex,Dobys Haven Close To Vgc Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36541,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36542,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36543,Lovely 2 Bedroom Serviced Apartment,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +36544,4 Bedroom Semi Detached Duplex With Bq For Sale In Agungi,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36545,Excellently Finished Very Spacious 5 Bedroom Detached Duplex With Bq And Laundry Room,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36546,5 Bedroom Detached Duplex,"Ologolo, Lekki, Lagos Agungi Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36547,937 Sqm Land,"Lekki Scheme 2, Beside Fire Station Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36548,4 Bedroom Terrace Duplex For Sale In Ikota Villa Estate (carcass),Ikota Villa Estate Ikota Lekki Lagos,₦,"22,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36549,4 Bedroom Semi Detached Duplexes In South Lake Homes Estate,"South Lake Homes Estate, Ologolo, Opposite Osapa London Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36550,5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36551,605 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"42,350,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36552,4 Bedroom Semi Detached Duplex With Bq,Mobil Estate Close To Vgc Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36553,5 Bedroom Fully Detached Duplex, Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36554,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36555,4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36556,5 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36557,648 Sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets,Ikota +36558,4 Bedrooms Terrace Duplex,June 4 Gardens Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36559,648 Sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36560,576 Sqm Land,Mobil Estate Vgc Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36561,4 Bedroom Semi Detached Duplex In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36562,640sqm Land,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36563,Residential Land,. Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36564,3 Bedroom Terraced Duplex, Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36565,800sqm Land,"Lakeview Park 2 Estate, Orchid Hotel Road Close To Chevron Lekki Lagos",₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36566,508sqm Land,Lekki County Homes Ikota Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36567,800 Sqm Land,"Lakeview Park 2 Estate; Orchid Hotel Road, Chevron Lekki Lagos",₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36568,3428sqm Land,Vgc Vgc Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36569,Newly Finished 5 Bedroom Fully Detached Duplex For Sale Bera Estate (chevy View Estate),Bera Estate (chevy View Estate) Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36570,Well Finished 5 Bedroom Fully Detached Duplex,. Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36571,3 Bedroom Terrace Duplex,Conservation Road Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +36572,500 Sqm Dry Land For Sale In Ocean Bay Estate 35 Million,"Ocean Bay Estate, Lafiaji, Off Orchid Hotel Rd Lekki Lagos",₦,"35,000,000",1,0,0, beds, baths, Toilets,Other Lekki +36573,Distress Sale 6 Bedroom Semi Detached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +36574,Spacious Well Built 5 Bedroom Terrace Duplex,Oral Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36575,6 Bedroom Fully Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +36576,921sqm Land,Lekki County Homes (megamound) Ikate Lekki Lagos,₦,"74,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36577,4 Bedroom Semi Detached Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36578,Land,"Mobil Estate, Mobil Estate Rd After Vgc, Before Ajah Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36579,4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36580,Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36581,324sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Ikota +36582,"7 Contiguous Plots, Measuring 4,550 Sqm",Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36583,4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36584,815sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36585,Newly Finished 4 Bedroom Semi Detached Duplex For Sale In Ololgolo,Ologolo Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +36586,4 Bedroom Semi Detached Duplex For Sale,. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36587,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36588,504 Sqm Plot Of Land For Sale,Pinnock Beach Estate Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36589,1200sqm Land For Sale,Ocean Bay Estate Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +36590,600sqm Land,Mobil Estate Close To Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36591,4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36592,Exquisite 4 Bedroom Semi Detached Duplex,White Oaks Estate Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +36593,Lovely 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36594,4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36595,Very Spacious 5 Bedroom Fully Detached Duplex,Zone A Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +36596,4 Bedroom Semi Detached Duplex,Cardogan Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36597,900sqm Land, Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36598,4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36599,Newly Finished 5 Bedroom Fully Detached Duplex For Sale,Oral Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36600,895sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36601,Lovely 5 Bedroom Terrace Duplex For Sale,Ocean Bay Estate Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36602,Well Finished 5 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36603,"1,350 Sqm Land For Sale In Mayfair Gardens Estate",Lekki Lagos,₦,"29,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36604,4 Bedroom Semi Detached Duplex,Ocean Bay Estate Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36605,4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36606,450sqm Land,Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36607,5 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36608,4 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36609,700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36610,4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36611,Residential Land, ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36612,648sqm Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36613,Plot Of Land,Lake View Park 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36614,4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36615,4 Bedroom Terrace Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +36616,4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36617,3500sqm Land, Vgc Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36618,4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36619,5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36620,3 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36621,4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36622,Very Well Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36623,650sqm Land, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36624,5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36625,4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36626,Well Finished 5 Bedroom Full Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36627,"Very Well Built Spacious 5 Bedroom Detached Duplex With Bq For Sale In Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36628,Lovely 3 Bedroom Flat,Lekki Gardens Ikate Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +36629,Spacious 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36630,4 Bedroom Semi Detcahed Duplex,Oral Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36631,3 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36632,4 Bedroom Semi Detached Duplex With Bq,Idado Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36633,5 Bedroom Fully Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36634,Well Finished 4 Bedroom Bungalow In The Beautiful & Serviced South Point Estate,Southern Point Estate Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36635,Lovely 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36636,450sqm Land For Sale,"Ocean Bay Estate, Off Orchid Hotel Rd, Immediately After 2nd Toll Gate Ologolo Lekki Lagos",₦,"35,000,000",1,0,0, beds, baths, Toilets,Ologolo +36637,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36638,5 Bedroom Fully Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +36639,700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36640,4 Bedroom Semi Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36641,2 Bedroom Apartment For Sale,Atlantic View Estate Opposite Chevy View Estate Chevron Lekki Lagos,₦,"16,000,000",0,1,1,2 beds,2 baths,3 Toilets,Chevron +36642,5 Bedroom Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36643,800sqm Land,"Lakeview Park 2 Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36644,3 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +36645,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36646,3 Bedroom Terrace Duplex For Sale In Agungi,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +36647,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36648,Land,Ocean Bay Estate Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36649,4 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36650,4 Bedroom Semi Detached Duplex,Crest Villa Estate Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36651,3 Bedroom Carcass Flat For Sale,Elegenaza Gardens Estate Vgc Lekki Lagos,₦,"24,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +36652,4 Bedroom Semi Detached Duplex,Napier Gardens Estate; Vgc Lekki Lagos,₦,"69,500,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36653,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36654,5 Bedroom Fully Detached Duplex,Along Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36655,4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36656,"600 Sqm Land For Sale In Mobil Estate, Lekki",Mobil Estate Close To Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36657,Newly Built 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36658,912 Sqm Plot Of Land At Pinnock Beach Estate,Pinnock Beach Estate Jakande Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36659,"1001.43 Sqm Land ( Block 66, Plot 7)",Lekki Scheme 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36660,4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36661,"Well Finished 4 Bedroom Semi Detached Duplex For Sale In Chevron, Lekki",Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36662,3 Bedroom Terrace Duplex,Megamound Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +36663,4 Bedroom Semi Detached Duplex,Road 1 Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,3 baths,3 Toilets,Ikota +36664,4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36665,"1,104 Sqm Land",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36666,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36667,600sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"39,000,000",0,0,0, beds, baths, Toilets,Chevron +36668,Newly Furnished 5 Bedroom Fully Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36669,800sqm Land,Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36670,Spacious 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36671,Spacious 2 Bedroom Flat For Sale In Ilasan 30 Million,Ilasan Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Lekki +36672,3 Bedroom Flat, Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36673,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36674,2 Bedroom Apartment With Bq, Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +36675,4 Bedroom Terrace Duplex For Sale In Lafiaji Lekki Lagos,Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36676,5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36677,1200sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36678,300sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Ikota +36679,Newly Built 4 Bedroom Terrace Duplex,Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36680,3 Bedroom Semi Detached Duplex For,Oral Estate Oral Estate Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +36681,600 Sqm Plot Of Sand Filled Land For Sale,Northern Foreshore Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets,Chevron +36682,4 Bedroom Semi Detached Duplex,Bera Estate (chevy View) Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36683,Fully Fenced And Hayed 430sqm Land For Sale In Lekki Phase 1,Off Fola Oshibo Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36684,"Well Finished 4 Bedroom Semi Detached Duplex For Sale Off Orchidhotel Road, Lafiaji, Lekki","Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36685,Well Finished 5 Bedroom Full Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36686,4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"30,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +36687,4 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36688,Residential Land,. Vgc Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36689,900 Sqm Land,Buana Vista Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36690,4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36691,Modern Luxury 2 Bedroom Apartment In Ocean Bay Estate 31 Million,"Ocean Bay Estate, Lafiaji, Off Orchid Hotel Rd Lekki Lagos",₦,"31,000,000",1,0,1,2 beds,2 baths,3 Toilets,Other Lekki +36692,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36693,Land,Ocean Bay Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36694,5 Bedroom Semi Detached Duplex For Sale,Mobil Estate Road Vgc Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36695,"1,700 Sqm Land (block C4 Plot4)",Lekki Scheme 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36696,4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36697,2 Bedroom Apartment Carcass Apartment For Sale,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"19,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Garden City +36698,Newly Finished 4 Bedroom Detached Duplex For Sale In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0, beds,4 baths,5 Toilets,Ikota +36699,4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36700,760 Sqm Land,Melrose Park Estate Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36701,3 Bedroom Flat,Close To Pinnock Beach Estate Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,3 beds,3 baths,4 Toilets,Osapa London +36702,Land,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36703,Land,"Pearl Gardens Estate, Sangotedo, Along Monastery Rd Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36704,5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36705,Very Well Finished 4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36706,Fully Fenced 690sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36707,5 Bedroom Fully Detached For Sale,Idado Idado Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +36708,4 Bedroom Semi Detached For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +36709,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36710,5 Bedroom Semi Detached Duplex For Sale By Chevron Toll Gate,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36711,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36712,"Newly Built 4 Bedroom Detached Duplex For Sale, Orchid Hotel Road, Lafiaji","Orchid Hotel Road, Lafiaji, Lekki Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36713,4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36714,600sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"36,000,000",0,0,0, beds, baths, Toilets,Chevron +36715,Residential Land, pinnock Beach Estate; Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36716,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36717,5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Extension Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36718,Well Finished 5 Bedroom Full Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36719,648sqm Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36720,Spacious 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +36721,Nice 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36722,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Close To Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36723,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36724,4 Bedroom Semi Detached Duplex (carcass) For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36725,4 Bedroom Semi Detached Duplex,"Chevy View Estate, Opposite Chevron Hq Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36726,600 Sqm Land,Lakeview Park 2 Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36727,4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36728,5 Bedroom Fully Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36729,Sand Filled 2705sqm Land For Sale,Orchid Hotel Road Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36730,4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"49,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +36731,Spacious 5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36732,4 Bedroom Terrace Duplex,Close To Romay Garden Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36733,4 Bedroom Semi Detached Duplex Sitting On 500sqm Land,Mobil Estate Close To Vgc Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36734,4 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36735,4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36736,"Newly Built 4 Bedroom Semi Detached Duplex For Sale In Idado, Lekki",Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36737,Spacious Well Finished 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36738,568sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Chevron +36739,Newly Furnished 5 Bedroom Fully Detached For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"73,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +36740,324sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Ikota +36741,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36742,5 Bedroom Fully Detached Duplex,"Off Adewunmi Adebimpe Drive, Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36743,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36744,4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36745,6 Units Of 3 Bedroom Flat For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"475,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36746,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36747,4 Bedroom Bungalow,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36748,5 Bedroom Fully Detached Duplex,Mobil Estate Close To Vgc Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +36749,Luxurious Well Finished 6 Bedroom Fully Detached Duplex With Spacious Rooms For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,7 Toilets,Chevron +36750,4 Bedroom Detached Duplex With A Room Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36751,5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +36752,5 Bedroom Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +36753,Spacious 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +36754,Land,"Pearl Gardens Estate, Sangotedo, Along Monastery Rd Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36755,4 Bedroom Flat With Bq For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36756,Serviced 2 Bedroom Apartment For Sale,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +36757,5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36758,4 Bedroom Terrace Duplex,Lekki Horizon 2 By Still Water Gardens Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +36759,4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36760,1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36761,3 Bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36762,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36763,600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36764,5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36765,4 Bedroom Semi Detached Duplex For Sale In Bera Estate,Bera Estate By Uba Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36766,5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +36767,Land,"Ocean Bay Estate, Along Orchid Hotel Rd, Lekki Peninsula Ii Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36768,400 Sqm Land In Carlton Gate Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36769,4 Bedroom Semi Detached Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +36770,Land,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36771,Lovely 2 Bedroom Apartment,Boudillion Court Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +36772,400 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"36,800,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36773,650sqm Land,Ikota Villa Estate Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36774,5 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36775,4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +36776,5 Bedroom Fully Detached Duplex For Sale,Lekki County Homes(megamound) Close To Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +36777,600 Sqm Land,Buena Vista Estate Close To Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36778,3 Bedroom Flat,Maruwa Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +36779,4 Bedroom Semi Detached Duplex,"Daniels Court, Orchid Hotel Road Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36780,7 Bedroom Carcass Duplex With Swimming Pool And 2 Rooms Bq,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"70,000,000",0,0,0,7 beds,7 baths,8 Toilets,Victoria Garden City +36781,800 Sqm Land,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +36782,Spacious Well Built 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36783,Well Finished 3 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +36784,962sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +36785,5 Bedroom Semi Detached Duplex With Bq,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36786,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36787,4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36788,Newly Built Spacious 4 Bedroom Terrace Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36789,4 Bedroom Fully Detached Bungalow,Napier Gardens Estate Vgc Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36790,5 Bedroom Fully Detached Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +36791,535sqm Land,Vgc Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36792,Lovely 2 Bedroom Terrace Bungalow,"South Point Estate, Orchid Hotel Road Close To Chevron Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +36793,Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36794,Land,"Lake View Park 1, Ikota Vgc Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +36795,4 Bedroom Semi Detached Duplex, white Oaks Estate; Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +36796,700 Sqm Serviced Corner Piece Plot For Sale 90 Million,Vintage Park Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +36797,4 Bedroom Terrace Duplex (carcass),Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36798,4 Bedroom Semi Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +36799,Lovely 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +36800,5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +36801,Spacious 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +36802,5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +36803,Exquisite 4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36804,10 Units Of 2 Bedroom Flats And 2 Units Of 4 Bedroom Flats,Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +36805,4 Bedroom Semi Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +36806,4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36807,Spacious 4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36808,693 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"55,440,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +36809,900sqm Land For Sale,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36810,4 Bedroom Terrace Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"87,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +36811,100sqm Land,Nicon Town Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +36812,900 Sqm Land,Victory Park Estate Osapa London Lekki Lagos,₦,"93,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36813,700sqm Land With Two 4 Bedroom Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,8 beds,8 baths,10 Toilets,Chevron +36814,900sqm Land,Cowrie Creek Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +36815,1000 Sqm Land,Orange Island; Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36816,5 Bedroom Duplex With 2 Rooms Bq,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +36817,Luxury Four (4) Bedroom Terrace,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,4 Toilets,Chevron +36818,Ultra Luxuriuos Three Bedroom Semi Detached Duplex With A Bq In A Serviced Mini Estate,"Off Orchid Hotel Road, By 2nd Toll Gate,lekki 2. Lekki Phase 2 Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,3 Toilets,Lekki Phase 2 +36819,2 Units Of Brand New 4 Bedroom Semi Detached Duplex,"Van Daniels Street, Off Orchid Hotel Road.lekki 2 Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +36820,Exquisitely Finished 5 Bedroom Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikota +36821,4 Bedroom Semi Detached Duplex,"Bricks Court Estate, Off Orchid Hotels, Eleganza,lekki 2 Lekki Phase 2 Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +36822,Brand New 4 Bedroom Semi Detached Duplex,"Road 22, Ikota Villa Estate, Behind Mega Chicken. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +36823,Brand New 3 Bedroom Flat With Luxurious Finishing,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +36824,Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +36825,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +36826,4 Bedroom Terrace Duplex With 1 Bq,Eleganza Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +36827,Brand New 5 Bedroom Stand Alone Duplex,"By Conoil, Chisco Ikate Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikate +36828,Contemporary Five (5) Bedroom Fully Detached Duplex With A Room Bq,Chevy View Annex Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +36829,Massive 4 Bedroom Semi Detached Duplex," Ikate Around Conoil, Chisco Ikate Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +36830,Superbly Finished 4 Bedroom Fully Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +36831,Juicy 5 Bedroom Ultra Luxury Detached Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,7 baths,5 Toilets,Ikota +36832,4 Bedroom Terrace Duplex,Off Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,6 baths,4 Toilets,Lekki Phase 1 +36833,5 Bed Duplex + Bq,Off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 2 +36834,Ultra Luxurious 5 Bedroom Fully Detached Duplex,"Chevy View, Chevron. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +36835,5bedroom Terrace With A Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +36836,Land, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +36837,Ultra Classic Serviced Four (4) Bedroom Semi Detached Duplex With A Bq,"Brand New Mini Estate Close To Pinnoch Beach, By Femi Okunu Street, Jakande. Jakande Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +36838,7 Units Of Brand New 3 Bedroom Terrace Duplex With Bq,"Van Daniel Street, Off Orchid Hotel Road Ikota Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,4 baths,3 Toilets,Ikota +36839,Very Classy Fully Detached Duplex,"Van Daniel's Street, Off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +36840,Ultra Classic 4 Bedroom Semi Detached Duplex,"Empire Homes, Chevron Alternative Road Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +36841,Brand New 4 Bedroom Semi Detached Duplex With 1 Bedroom Miniflat,"Off Kunsenla Road, Ikate Elegushi,lekki Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +36842,Luxurious 4 Bedroom Fully Detached Duplex,"Road 22, Ikota Villa Estate. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +36843,Luxurious 4 Bedroom Semi Detached Duplex,"Back Of Spar Mall, Chisco Ikate. Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +36844,Brand New 5 Bedroom Fully Detached Duplex,"Empire Homes, Chevron Alternative Drive Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +36845,Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +36846,Luxury 4 Bedroom Semi Detached Duplex,"Victoria Crest, Orchid Hotel Road, Eleganza Bus Stop, After 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +36847,Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +36848,3no 4bedroom Terrace With Bq,Off Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36849,Luxury 4bedroom Duplex +cctv,Behind Megachicken By Vgc Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36850,Dry Land,Vgc Lekki Lagos,₦,"5,300,000",0,0,0, beds, baths, Toilets,Victoria Garden City +36851,Luxury 4 Bedroom Terraced Duplex For Sale At Chevron Alt Route,Chevron Alternative Route Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36852,Luxury 4 Bedroom Semi Detached Duplex,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36853,Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36854,Brand New 5 Bedroom Fully Detached Duplex,Chevron Alternative Route Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +36855,Spacious 3 Bedroom Terraced Duplex For Sale Off Orchid Road Lekki,Off Orchid Road By The 2nd Tollgate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36856,4 Bedroom Terrace House,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +36857,Newly Built 4bedroom Standard Modern Duplex For [email protected] Idado Estate Lekki,Idado Estate Idado Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36858,A 4bedroom Terrace House With Bq; Job Vacancy!!! A Qualified Estate Surveyor With 5 Years Experience And Has Passed Niesv Exams Should Send Applications And Cv To [redacted],Midland Court Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets,Chevron +36859,Spacious And Functional 5bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36860,5 Bedroom Duplex,Whitehead School Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36861,5 Beedroom Detached Duplex,Ologolo Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +36862,Neatly Finished 4bed Duplex,Ologolo 2nd Roundabout Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +36863,5 Bedroom Detached House For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +36864,Contemporary 3 Bedroom Terraced Duplex For Sale,Off Ilasan Road Ilasan Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +36865,Shopping Plaza For Sale Directly Facing The Main Road,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +36866,Luxurious 5 Bedrooms Duplex + Bq,Rasaq Eletu Estate. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths, Toilets,Osapa London +36867,"100,2sqm",Pinnock Beach Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36868,4 Bedroom Duplex,Eleganza Ikota Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +36869,4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +36870,Newly & Beautifully Finished 4 Bed Semi Detached Duplex Situated In New Providence Garden Estate,Behind Northwest Fueling Station Vgc Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +36871,Luxury 4 Bed Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +36872,5 Bedroom Duplex,Rasaq Eletu Estate; Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +36873,1 Bed Room Mini Flat,Ocean Bay Estate By Eleganza Chevron Lekki Lagos,₦,"5,000,000",1,1,0,1 beds,1 baths,2 Toilets,Chevron +36874,Luxurious 4 Bedroom Duplex + Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +36875,Newly Built 4 Bed Semidetached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36876,"Dry 1,300sqm (serviced Plots)",Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Chevron +36877,Luxury & Massive 5 Bedroom Duplex + Bq,By Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +36878,A Plot Of Dry Land On A Developed Part Of Ologolo,By Spg Ologolo Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Ologolo +36879,Serviced Plots Of Land,"Orchid Road; Eleganza Bus Stop, Chevron Lekki Lagos",₦,"24,000,000",1,0,0,0 beds,0 baths,0 Toilets,Chevron +36880,Affordable And Tastefully Furnished 4 Bedroom + Bq Semi Detached House,Arcadia Mews Estate Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets,Osapa London +36881,4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +36882,Affordable Cfo Land For Sale In Lekki Lagos.,Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets,Other Lekki +36883,Massive 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +36884,Newly Built 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +36885,Cfo Land For Sale In Lagos. Lekki.,Lekki Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets,Other Lekki +36886,Newly Built And Tastefully Finished 2 Units Of 4 Bedrooms Fully Detached Houses (separate Compound), Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +36887,Exquisitely Built 5 Bedroom Duplex With A Pool,Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikota +36888,Fully Furnished And Distress Sales 4bedroom Duplex,The Property Is Behind Elevation Church Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +36889,Tastefully 4bedroom Duplex,Off Chevron Road Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36890,Newly Built 4 Bedroom Terrace Duplexe With A Room Bq,"Madiba Estate ,ikate , Lekki Phase 1, Lagos Ikate Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +36891,4 Bed Room Corner Piece Terrace Duplex In Beuna Vistate Estate,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,4 Toilets,Chevron +36892,Nnpc Filling Station For Sale,"Eleko Junction, Ayeleju Lekki Epe Expressway, Lagos Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Lekki +36893,Masterclass 4bedroom Duplex Furnished,Inside An Estate Off Chevron Road Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,4 baths,5 Toilets,Chevron +36894,Cambawall Estate Aboji Gra,Abijo Gra Lekki Lagos,₦,"6,500,000",0,1,1, beds, baths, Toilets,Other Lekki +36895,Newly Built 4 And 5bedroom Semi Detached House,Ocean Palm Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +36896,"Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate, Ikate Lekki Phase 1 Lagos.",Madiba Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +36897,2 Unit Of 4 Bedroom Semi Detached Duplex For Sale,Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +36898,Urban Prime One Levadia,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"10,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +36899,Luxury And Fully Furnished 4bedroom Duplex,The Property Is At Orchid Hotel Road In A Very Beautiful Estate Chevron Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +36900,Plots Of Land At Chaplin Court Estate,Ogombo Road Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"24,500,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +36901,Plots Of Land At Chaplin Court Estate,Ogombo Road Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"24,500,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36902,Distress Sale Of A 3 Units Of 5 Bedroom Terrace Duplex,Balogun Street Off Lekki Epe Express Way Marjeck Bustop Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +36903,Distress And Furnished 4bedroom Duplex,Its Inside Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +36904,Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Bq,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +36905,"6 Bedroom On Two Floors, With 2 Room Annex( Bq) On 1,000sqm",Nicon Town Jakande Lekki Lagos,₦,"480,000,000",0,1,0,6 beds,6 baths,4 Toilets,Other Lekki +36906,Newly Built 4brm Semi Detached House At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +36907,Newly Built And Luxury Furnished 3bedroom Terrace At Horizon 2 Estate Ikate,"Horizon 2 Estate, Meadow Hall School Road Ikate Lekki Lagos",₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +36908,New And Luxury Finished 6bedroom Detached House At Pinnock Estate,"Pinnock Beach Estate, Lekki Jakande Lekki Lagos",₦,"460,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +36909,Nice And Spacious 3bedroom Flat At Horizon 2 Estate Meadow Hall Ikate,Horizon 2 Estate By Meadow Hall School Ikate Ikate Lekki Lagos,₦,"33,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +36910,Newly Built And Luxury Finished 5 Bedroom Detached House With Bq At Osapa London,Osapa Garden Estate Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36911,Spacious 4bedroom Semi Detached With Bq At Ologolo,Whiteoak Estate Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +36912,Luxury 4 Bedroom Semi Detached House With Bq At Chevron,Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +36913,Nice And Spacious 3bedroom Flat With At Bq Behind Romay Garden Ilasan,Behind Romay Garden Estate Ilasan Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +36914,New 2 & 3 Bedroom Flat With Bq In Lekki1,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +36915,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki.,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +36916,"Hurray!! * 4bedroom Semi Detached Duplex With Bq, (creek Avenue Court) Ikota","Just After Chevron, Second Tollgate, Ikota Lekki Lagos. Ikota Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +36917,"One Of Its Kind, Bella Homes Phase1 (3 Bedroom Terrace Duplex With Bq)","Lafiaji Community, Off Orchid Hotel, Lekki Lagos. Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +36918,Luxury 4 Bedroom Terrace With A Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,4 baths,4 Toilets,Ikate +36919,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"5,600,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +36920,For Sale /joint Venture Two Plots Of Land With 6bedrooms Mansionate And 4 Rooms Bq With Governor's Consent,Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +36921,Newly Built 3bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +36922,Newly Built 5 Bedroom Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +36923,Conducive 5 Bedrooms Fully Detached Duplex For Sale. Location: Chevron Axis Price: N75million,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +36924,Lovely And Affordable 5 Bedroom Duplex For Rent At Ologolo,Ologolo Ologolo Lekki Lagos,₦,"39,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +36925,Luxury 5 Bedroom Duplex For Sale,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +36926,4 Bedroom Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +36927,Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale,Idado Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36928,Beautiful And Comfortable 5 Bedroom Fully Detached Duplex For Sale At Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +36929,A Tastefully Built 4 Bedroom Fully Detached Duplex,Villa Axis Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +36930,"Beautiful 5 Bedroom Fully Detached Duplex With A Bq For Sale. It Comes With An Attractive Fully Fitted Kitchen, With Lightnings, Jacuzzi, Cool Wardrobes In All The Rooms And The Bedrooms Are En Suite With Great Sanitary Wares.",Ologolo Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +36931,Beautiful 5 Bedroom Duplex With Two Boy's Quarters For Sale At Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +36932,4 Bedroom Semi Detached Duplex For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +36933,A Lovely 4bedroom Fully Detached Duplex For Sale At Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +36934,Clean 5 Bedroom Flat For Sale/rent At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +36935,Luxury 5 Bedroom Fully Detached Duplex With Maids Room For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +36936,Lovely 2bbedroom Apartment For Sale,Jakande Jakande Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +36937,Luxury 5 Bedroom Duplex For Sale,Conservation Center Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +36938,Newly Build And Lovely 5bedroom For Sale 85m Location: Chervy View,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +36939,Newly Built 3 Bedroom Apartment With Bq In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +36940,4 Bedroom Semi Detached Duplex For Sale At Ikota,Iko Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +36941,Luxury 5 Bedroom Duplex For Rent At Ologolo,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ologolo +36942,4 Bedroom Semi Detached Duplex For Sale At Chevy View,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +36943,Elegant 5 Bedroom Duplex For Sale At Osapa,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +36944,Nice 2 Units 4 Bedroom Semi Detached Duplex,Lkota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +36945,Lovely 5bedroom For Sale 85m Location: Chevy View,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +36946,5 Bedroom Duplex With Bq For Sale At Orchid Road,Orchid Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +36947,Beautiful Units Of 3 Bedroom Apartment For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +36948,Lovely 4 Bedroom Fully Detached Duplex For Sale,Crown Estate By Shoprite Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +36949,Newly Built Smart 5 Bedroom Fully Detached Duplex With A Bq,Buena Vista Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"57,000,000",0,1,1,5 beds, baths, Toilets,Chevron +36950,A 3bedrom Exorbitantly Furnished Flat. All Room Ensuit At Paradise Estate By Ebeano At Drive. Just Call [redacted]. Hevron,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +36951,"Newly Built 4bedroom Duplex, In A Serene Environment, Well Planned And Secured Estate At Chevron.","Chevron, Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +36952,"On Monastery Road Sangotedo, Ajah, Lekki, You Have A Promo Of The Barest Offer. 5.5 Million For 600 Square Metres. Just 24 Plots Available.",Monastery Road Lekki Phase 2 Lekki Lagos,₦,"5,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +36953,Plots Of Land,Abijo.. Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +36954,"Newly Built 6bedroom House All Ensuite With Bq, Swimming Pool, Gym House And Cinema",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +36955,Landed Property,Lekki Pearl Garden Abijo Igbo Efon Lekki Lagos,₦,"5,300,000",0,1,0, beds, baths, Toilets,Other Lekki +36956,Luxury Apartments And Duplexes Now Selling Fast In Berry Court Omole.,Berry Court Omole Phase2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 2 +36957,Newly Built 6bedroom Terraced Shell Duplex In A Serene And Homely Neighbourhood,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,6 beds,6 baths,7 Toilets,Chevron +36958,4bedroom Semi Detach At Ikate Lekki Serene Neighborhood,Ikate Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +36959,Newly Built And Furnished 2 Bedroom Flat In A Serene Environment,Ikate Lekki Lagos,₦,"24,000,000",0,1,1,2 beds,2 baths,3 Toilets,Ikate +36960,Brand New 4 Bedroom Semi Detached Duplex For Sale At Bera Estate,Bera Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36961,Newly Built 4bedroom Duex Located At Chevron Alternative Route Inside An Estate,Empire Estate Cheveron Alternative Route Chevron Lekki Lagos,₦,"70,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36962,Newly Build 5bedroom Duplex With A Bq In A Serene Environment,Jade Street Osapa London Osapa London Lekki Lagos,₦,"90,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +36963,Newly 4bedroon Duplex With A Bq In A Serene Neighborhood,34 Ikota By Vgc Ikota Lekki Lagos,₦,"60,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +36964,Land For Sale,Eko Akete Abijo Lekki Phase 2 Lekki Lagos,₦,"11,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +36965,Land For Sale In Lekki Abijo,Abijo Lekki Lekki Phase 1 Lekki Lagos,₦,"13,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +36966,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36967,2 Bedroom Flat,Nike Art Gallery Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +36968,Land With C Of O,Elerangbe Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"9,500,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36969,4 Bedroom Duplex For Sale,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds, baths, Toilets,Chevron +36970,Newly Built 4 Bedroom Detached Duplex For Sale In Lagos.,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets,Osapa London +36971,Land With Survey,Besides Sky Mart Lekki Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36972,Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets,Ikota +36973,5 Detached Duplex With A Bq,Lekki County Ikota Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +36974,"961.971m² Plot , C Of O Under Processing",Lekki Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36975,New Built 5 Bedroom Detached Duplex,Lekki Lagos,₦,"95,000,000",1,1,0,5 beds, baths, Toilets,Other Lekki +36976,4 Bedroom Luxury Finished Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +36977,C Of O Land For Sale In Lekki Lagos,Inside Beechwood Estate Shepatie Lekki Osapa London Lekki Lagos,₦,"12,500,000",1,1,0, beds, baths, Toilets,Osapa London +36978,4 Bedroom Terrace Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +36979,Distressed 4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +36980,Nice And Spacious 4bedroom Duplex,Lekki Vgc Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +36981,5 Bedroom Cheap Detached Duplex,Chevron Chevron Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +36982,Newly Built 4 Bedroom Semi Detached Duplex For Sale In Lagos.,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets,Other Lekki +36983,4 Bdr Semi Detached With Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +36984,3 Bedroom Terraced Duplex With Own Compound 90% Complete,Westend Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +36985,Land With Deed And Registered Survey,6mins Drive From Lekki Free Zone Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +36986,4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36987,2 Bedroom Flat For Sale In A Serviced Property,Mobolaji Johnson Lekki Phase 1 Lekki Lagos,₦,"34,000,000",1,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +36988,4bed Terraced Duplex For Sale,Lekki Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +36989,"1,292.99m²",Lekki Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36990,3 Bedroom Terrace Duplex,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +36991,4 Bedroom Detached House,. Vgc Lekki Lagos,₦,"130,000,000",0,0,0,7 beds,7 baths,10 Toilets,Victoria Garden City +36992,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Madiba Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +36993,958m² Plot For Sale At Lekki With C Of O,Lekki Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +36994,5 Bedroom Detached Duplex, Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,0 baths,0 Toilets,Other Lekki +36995,4 Bedroom Duplex,Chevron Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +36996,Brand New 4 Bedroom Terraced Duplex,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +36997,5 Bedroom Detached Duplex For Sale,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths, Toilets,Ikate +36998,Land At Amity Estate, Lekki Lagos,₦,"9,600,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +36999,Land With Survey,Abijo Lekki Lagos. Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37000,3 Bedroom Terrace Bungalow With Swimming Pool & Gym,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"24,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +37001,Land With C Of O,"Behind The Biggest Mall ( Shoprite) Off Monastery Road, Sangotedo Lagos Ikota Lekki Lagos",₦,"11,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +37002,5 Bedroom Semi Detached House With Bq On 2 Floors,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37003,2 Bedroom Terrace Duplex Available,Alternative Route Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +37004,4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37005,Land At Majo Creek View, Lekki Lagos,₦,"4,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +37006,4 Bedroom Semi Detached With Own Compound,Westend Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37007,4 Bedroom Terraced Duplex,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37008,"Detached Six (6) Beddroom Duplex With Swimmpool , At Pinnock Beach Lekki","Pinnock Beach Estate, ,lekki Osapa London Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,7 baths,7 Toilets,Osapa London +37009,Nice And Spacious 3bedroom Terrace At Chevron Tollgate,2nd Tollgate By Chevron Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +37010,4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37011,Land With Excision In View For At Lekki Epe Express Way Lagos(fountain Brooks Garden).,"Behind Globe Motor,pan University, Lekki Phase 2 Lekki Lagos",₦,"2,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +37012,For Sale. Tastefully Finished Semi Detached Four Bedroom Duplex Exclusively Finished With An Upgraded Stylish [email protected] Alpha Beach Lekki,Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets,Other Lekki +37013,5 Bedrooms For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets,Ikate +37014,3 Bedroom Flat With Bq With Swimming Pool & Gym,Jakande Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +37015,Survey,Lekki Pearl Garden Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +37016,6 Bedroom Duplex With C Of O,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +37017,2 Bedroom Flat For Sale @ Ilasan Next To Lekki Phase 1,Ilasan Lekki Ilasan Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +37018,"846.822m² , C Of O Under Processing",Lekki Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37019,4 Bedroom Terrace Bungalow With Swimming Pool & Gym,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"27,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +37020,Luxury 2bedroom Flat,Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,2 baths,3 Toilets,Lekki Phase 2 +37021,4 B/r Semi Detached House With Bq,Road 3 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Victoria Garden City +37022,5 B/r Semi Detached House With Bq,Road 38 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +37023,5 B/r Detached House With Bq,Close 56 Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets,Victoria Garden City +37024,Fully Equipped Affordable 3 Bedroom Duplex At Lekki,Beside Oba Elegushi Palace Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths, Toilets,Ikate +37025,Newly Built 4bedroom Semi Detached Duplex,After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,6 Toilets,Ikota +37026,Newly Built 4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +37027,Luxury 4bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths, Toilets,Lekki Phase 1 +37028,Luxury 4bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths, Toilets,Lekki Phase 1 +37029,Product Of The Day* *praise Gardens Eleranigbe,"Eleranigbe Is Located Off Lekki Epe Expressway, To The Left, Immediately After Pan Atlantic Lekki Phase 2 Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +37030,Newly Built And Lovely 4 Bedrooms Semidetached Duplex,Victoria Nest Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +37031,Affordable Plots Of Land,Trillion Estate Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37032,Newly Built4/ 5bedroom Semi Detached Duplex Osapa London In A Beautiful Environment,Jade Street Osapa London Lagos State Osapa London Lekki Lagos,₦,"80,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +37033,Newly Built 4bedroom Semi Detached Building In A Serene Neighbourhood,North West Filling Station By Vgc Vgc Lekki Lagos,₦,"50,000",0,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +37034,2 Nos 4 Bedroom Semi Detached Houses With Study Room And Self Contained Room And Parlour Boys Quarter Each,"Block 1 Plot 23, Road 7, By Alaguntan Community, Via Olusola Harris Way, Off Monsurat Olayinka Street, Off Garba Muhammad Lawal Avenue Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37035,Registerged Deed Of Assignment,Twin Lake Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Chevron +37036,Newly Built 4bedroom Semi Detached Duplex With Bq,Buena Vista Estate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +37037,Exotically Finished 4 Bedroom With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +37038,Newly Built 10 Units Fully Serviced 4 Bedroom Terrace.,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +37039,4 Bedroom Fully Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +37040,5 Bedroom Detached Duplex With A Room Bq,Kazeem Eletu Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37041,4 Bedroom Duplex At Agungi,Fatso Kaffo Street Agungi Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +37042,Executive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37043,3 Bedroom Apartment At Agungi,Close To Domino's Plaza Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +37044,10 Hectare Of Bare Land,Lakowe Area Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37045,4 Bedroom Terrace With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +37046,3 Bedroom ( All En Suite) Luxury Apartment Is Available For Sale,"Off Oba Yekini Elegushi Road, Primewaterview Garden Ii Ikate Lekki Lagos",₦,"42,000,000",1,0,1,3 beds,3 baths,3 Toilets,Ikate +37047,Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +37048,Newly Built Contemporary 5 Bedroom Fully Detached Duplex,Hakkem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37049,A Piece Of Land Measuring 1002sqm Is Available For Sale At Vgc.,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +37050,Newly Built Excecutive 5 Bedroom Fully Detached Duplex With A Room Bq And Fitted Kitchen Is Available For Sale,Kazeem Eletu Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37051,Newly Built 5 Bedroom Fully Detached Duplex With Servants' Quarter.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37052,Palatially Built 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets,Osapa London +37053,Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37054,Executive 5 Bedroom Fully Detachd Duplex With A Room Bq,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37055,Tastefully Finished 5 Bedroom Fully Detached Duplex With A Room Bq.,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37056,Newly Built 4 Bedroom Detached Duplex At Sangotedoselling For 45 Million Asking.,Sangotedo Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37057,4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +37058,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +37059,For Sale 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +37060,"5 Bedroom Duplex At Mega Mound Selling For 90,000000",Megamound County Home. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37061,For Sale 5 Bedroom Detached Duplex With Bq Location,Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +37062,Newly Built 5bedroom Duplex For Sell.,Bera Estate. Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37063,For Sale 5 Bedroom Detached Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +37064,5 Bedroom Detached Duplex With Bq Location,Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +37065,Newly Built 5 Bedroom Duplex At Chevron For Sale.,Bera Street Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37066,900 Sqm Going For 85000000,"Admiralty Way,lekki Phase 1 Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikate +37067,Newly Built 4 Bedroom Duplex At Ikota Villa Estate Selling For 40 Million.,Ikota Villa Estate. Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37068,Newly Built 4 Bedroom Semidetached Duplex For Sale.,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37069,Newly Built 4 Bedroom Semidetached Duplex.,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37070,5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +37071,5 Bedroom House In Lekki Phase 1 With 2bq... Equipped With Full House Sound Surrround Systems. 220m Asking,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37072,"Newly Built 4 Bedroom Duplex @ Lekki County Home,selling @ 45 Million.",County Home Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37073,Newly Built 5 Bedroom Duplex Located At Ikate Lekki For Sale.,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +37074,For Sale 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +37075,4 Bedroom Detached Duplex With Bq,Peanoch Beach Estate Lekki Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Lekki +37076,30 Plots Of Dry Land At Orchid Road Lekki,Orchid Road Ikota Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Ikota +37077,Superb 5 Bedroom Luxurious Custom Built Edifice, Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37078,Super Specious N40 Million Lekki Offer,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37079,Beautifully Finished 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +37080,Super Specious 5bedroom Luxury Massionette Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37081,Spacious 5bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37082,"Newly Built Modern 4 Bedroom Semi Detached Duplex With A Room Bq Located At Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos.",Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +37083,5 Bedrooms Semi Detached,Adebisi Popoola Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37084,4 Bedroom Bungalow Flat With A Pent House,"May Fair Garden Estate, Awoyaya Lekki Ajah Lagos Ilasan Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +37085,New 4 Bedroom Town House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +37086,"Newly Built And Well Finished 3 Units Of 5 Bedroom Fully Detached Duplex With A Swimming Pool, Wine Bar, Well Land Filled And Flood Free At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37087,Residential Land With Governors Consent Inside Atlantic View Estate,New Road By Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +37088,A Bedroom Flat With A Pent House Located In An Estate,"Mayfair Garden Estate, Awoyaya Area Lekki Ajah Lagos Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37089,A Tastefully Built 4 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"52,000,000",1,1,1,6 beds,6 baths,6 Toilets,Lekki Phase 1 +37090,"Executive 4 And 5 Bedrooms House At Chevron, Lekki",Chevron Lekki Lagos,₦,"4,009,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +37091,"5 Bedroom Detached Duplex,a Room Bq For Sale At *lekki* *phase* 1......it's On 516sqm..... *110m...",Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +37092,A Tastefully Built 4 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,4 baths,6 Toilets,Lekki Phase 1 +37093,A Tastefully Built 5 Bedroom Duplex With Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,7 baths,6 Toilets,Lekki Phase 1 +37094,"For Sale: New Built 5 Bedroom Luxury Duplex At Chevron Drive, Lekki, Lagos",Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37095,Newly Built 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37096,Serviced 3 Bedroom Terrace With A Bq & 4bedroom Terrace Without Bq,"Ajiran Agungi Road, Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +37097,Luxury 2 & 3 Bedroom Serviced Apartment,Shoprite Jakande Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +37098,10 Units Of Serviced 4 Bedroom Town House, Jakande Lekki Lagos,₦,"65,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Lekki +37099,Lovely 4 Bedroom Detached Duplex At Lekki Phase 1 N170m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37100,4 Bedroom Detached Duplex For Sale At Lekki Phase 1 N170m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37101,4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +37102,Affordable Plots Of Land, Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37103,Affordable Plots Of Land, Lekki Lagos,₦,"9,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37104,Southern Green Estate Lafiaji Lekki,Lafiaji Lekki Chevron Lekki Lagos,₦,"20,000,000",1,1,0, beds, baths, Toilets,Chevron +37105,Covequest 5 Bedroom Terraced Duplexes,"Oral Estate By 2nd Toll Gate, Ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +37106,Newly Built Five Bedroom Fully Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +37107,"Land In Lekki, Bogije","Bogije, Lekki, Epe Express Way Lekki Phase 2 Lekki Lagos",₦,"6,750,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37108,5 Bedroom Semi Detached Duplex With Bq,"Lekki County, Ikota Villa Estate Ikota Lekki Lagos",₦,"80,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +37109,5 Bedrooms Fully Detached Duplex + Bq Cctv,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37110,Brand New 4 Bedroom Semi Detached Duplex +bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37111,"5 Bedroom Fully Detached Duplex + Bq, Solar, Inverter",Osapa Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37112,"Luxury 5 Bedroom Fully Detached Duplex + Bq Invert Er, Solar Panel",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37113,6 Luxury Duplex Vgc Lekki Lagos,"Road 54, Vgc, Lekki, Vgc Lekki Lagos",₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +37114,"Luxury 5 Bedroom Fully Detached Duplex + Bq, Solar Panel And Invert Er",Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37115,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Eli Court Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +37116,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Cheron Alternative Drive Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +37117,Luxury 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37118,Welcome Home Welcome To Eli Court,Chevron Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +37119,Lovely Five Bedroom Detached House For Sale, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37120,Well Finished 4 Bedroom Semi Detached House With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37121,4 Bedroom Semidetached House With A Bq,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37122,Brand New 5 Bedroom Fully Detached House With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +37123,Exquisitely Finished 5 Bedroom Detached House,Megamound Estate; Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37124,Lovely 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37125,Luxury 4 Bedroom Semi Detached House With Bq,. Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37126,4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37127,4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37128,Lovely 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37129,Brand New 4 Bedroom Maisonette,. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37130,Brand New 4 Bedroom Semi Detached House With Bq,. Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37131,Brand New 5 Bedroom Terrace With A Room,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37132,Tastefully Finished 4 Bedroom Detached House,Lafiaji; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37133,Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37134,Lovely Five Bedroom Fully Detached House,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37135,Brand New 3 Bedroom Flat With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +37136,New 5 Bedroom Detached Duplex With Bq,Foreshore Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +37137,Newly Built 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37138,5 Bedroom Terrace + Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37139,Brand New 4 Bedroom Semi Detached House With Bq,Idado Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37140,Well Finished 3 Bedroom Flat,. Agungi Lekki Lagos,₦,"35,000,000",0,0,1,3 beds,3 baths,4 Toilets,Agungi +37141,Brand New 4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37142,Brand New 4 Bedroom Semi Detached House With Bq,Chevyview Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37143,Lovely 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37144,Exquisitely Finished 5 Bedroom Detached House,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37145,Brand New 5 Bedroom Fully Detached House With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +37146,5 Bedroom Detached House + Bq,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37147,Luxury 5 Bedroom Detached House,. Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37148,Luxury 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37149,5 Bedroom Fully Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37150,Lovely And Tastefully Finished 4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37151,5 Bedroom Detached House, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +37152,5 Bedroom House,Acadia Mews Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37153,Newly Built 4 Bedroom Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37154,5bedroom Fully Detached House For Sale At Osapa London,Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37155,Luxury 5 Bedroom Detached House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"1,050,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37156,Lovely 4 Bedroom Terrace Duplex,Rahobot Close Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37157,3 Bedroom Terrace Duplex + Bq,Lekky County Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37158,Brand New 3 Bedroom Terrace,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37159,Brand New Four Bedroom Terrace Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +37160,4 Bedroom Terraced House With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +37161,5 Bedroom Detached House + Bq,"Northern Foreshore Estate, Chevron Drive Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37162,Luxury 4 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37163,3 Bedroom Flat With A Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37164,Lovely 5 Bedroom Fully Detached Duplex,. Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37165,Tastefully Finished 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37166,Brand New 5 Bedroom Terrace House With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +37167,Well Finished 4 Bedroom Terrace,Lafiaji; Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37168,5 Bedroom Detached House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37169,Luxury 2 Bedroom Flat With Excellent Finishing,Osapa London Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +37170,Lovely New 3 Bedroom Terrace House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37171,6 Bedroom Detached House + Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +37172,4 Bedroom Semi Detached House With A Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37173,Lovely 3 Bedroom Flat,Jeremiah Ugo Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37174,Luxury 5 Bedroom Detached House With Swimming,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37175,Brand New 4 Bedroom Terrace With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +37176,Lovely 4 Bedroom Fully Detached House,Lafiaji; Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37177,Exquisitely Finished 4 Bedroom Semi Detached House,Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37178,Brand New 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37179,Brand New 5 Bedroom Fully Detached House With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +37180,Exquisitely Finished 5 Bedroom Detached House,Megamound Estate; Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37181,5 Bedroom Detached House With Bq, Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +37182,Brand New 5 Bedroom Fully Detached House (lekki Right Hand),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37183,Luxury 4 Bedroom.duplex,Lekki County Homes Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37184,Land With Foundation,Opposite Nicon Town Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37185,5 Bedroom Detached Duplex,At Megamound Estate By Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +37186,Superb 5 Bedroom Semi Detached Duplex,Inside Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37187,Luxury And Distress Sales Of 4bedroom Duplex,The Property Is At Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37188,6bedroom Duplex With 2nos Of 3bedroom Flat,Garba Lawal St Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +37189,Brand New 8 Units Semi Detached 4 Bedroom Duplex,"Victoria Crest Estate, Off Chevron Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +37190,Distress Sales Of 4bedroom Terrace Duplex,Is At Orchid Hotel Road Inside An Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37191,5bedroom Fully Detached House,Off Chevron Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37192,Luxury 4bedroom Duplex,Inside An Estate Off Chevron Road Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +37193,5 Bedroom Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37194,Plots Of Land,"Lafiaji Road, (orchid Hotel Road) Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37195,Executive 4 Bedroom Detached Duplex,Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37196,Land,Chevron Alternative Route Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +37197,Hotel,Off Lekki/epe Expressway Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +37198,4 Bedroom Semi Detached House,Behind Tantalizer Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37199,Newly Built 5bedroom Fully Detached Duplex,"Off Ivory Lane, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +37200,5 Bedroom Fully Detached Duplex With Bq Sitting At The Back With A Very Good Parking Space @ Chevy View Estate,"Off Lekki Expressway, Chevy View,estates. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +37201,Oriental Hotel,Before Lekki First Toll Gate Lekki Phase 1 Lekki Lagos,$,"250,000,000",1,1,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +37202,"Executive Newly Built 5bedroom Fully Detached Duplex With Spacious Rooms, 2 Sitting Rooms, Cctv,jacuzzi,fitted Kitchen Plus A Bq In A Mini Court","At Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37203,Newly Built 7 Bedroom Fully Detach Duplex With A Room Bq,"Chevy View Estate, Chevron Alternative Route Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,1,0,7 beds,8 baths,8 Toilets,Lekki Phase 2 +37204,Distress Sales Of Massive Hotel + Pool,By Pinnacle Filling Station 2sd Round About Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +37205,Luxury Units Of 5bedrooms Detached Duplex,At Vintage Estate Ologolo By Agungi Lekki Lagos Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +37206,Luxury 5 Bedroom Fully Detached House,Ikate By Second Round About Behind Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37207,Newly Built 4 Bedroom Semi Detached Duplex With Room Bq At Lekki.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +37208,"Brand New 5bedroom Fully Detached Duplex With Modern Finishing, Fitted Kitchen, Etc, At Bera Estate,lekki","At Bera Estate, Lagos Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37209,Brand New Four (4) Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +37210,Exclusively Finished 4 Bedroom Luxury Family Home Fully Detached Plus Bq,By Jakande Round About Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ologolo +37211,Executive 5 Bedroom Fully Detached Duplex,Majek After Shop Rite Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37212,Luxury 5bedroom Duplex,The Property Is At Megamound Estate By Lekki County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37213,Luxury 4bedroom Duplex,Inside Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37214,Newly Built And Well Finished 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37215,Newly Built And Very Spacious 2units Of 4bedroom Semi Detach Duplex With A Bq With Modern Finishing At Ikota Gra,"Ikota Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"39,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37216,"6 Units Of Brand New Luxury 5 Bedroom Fully Detached Duplex In A Mini Court With Modern Interior Design , Jacuzzi, Cctv,","At Orchid Road, Lekki Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +37217,Luxury Hotel,Inside Vgc Estate Vgc Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Garden City +37218,Tastefully 5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37219,Tastefully 3bedroom Flat,At Prime Water View Estate Second Round About Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,4 Toilets,Lekki Phase 1 +37220,Luxury 4bedroom Duplex + Bq,Behind Mega Chicken Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37221,Newly 5bedroom Duplex Tastefully Finished With Ultra Modern Up To Date Facilities On 420sqm In Mega Mound Estate County Villa Lekki Lagos C Of O,At Mega Mound Estate. Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37222,4bedroom Semi Detached Duplex (1unit Left),"Ikota Estate, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +37223,10plots Of Land,Lafiaji By Ocean Bay Chevron Axis Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +37224,Luxury 3bedroom Flat,Emmanuel Eminike Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +37225,Dry Lands,Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +37226,5 Bedroom House,Megamound Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +37227,7 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +37228,6 Bedroom Detached House With Penthouse, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +37229,4 Bedroom Duplex,Off Chevron Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +37230,Executive 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37231,Luxury 2units Of 3bedroom Semi Detached,Off Chevron Road Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +37232,Luxury 4 Bedroom Duplex With Excellent Facilities (with Payment Plan),Orchid Road Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +37233,Newly Built And Very Spacious 4 Bedroom Semi Detached Duplex With A Bq,"At Orchid Road, Lekki Phase 1 Lekki Lagos",₦,"54,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37234,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +37235,Luxury And Furnished 4bedroom Duplex,Off World Oil Road In A Mini Estate Ilasan Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37236,5 Bedroom Fully Detached Duplex With Bq,In An Estate At Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37237,Luxury 2 Bedroom Flat,Off Lekki/epe Expressway; Idado Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +37238,Land Measuring 812sqm On Corner Piece, Agungi Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +37239,4 Bedroom Semi Detached Bungalow,Ibeju Lekki Lagos,₦,"15,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +37240,4 Bedroom Terrace Duplex,Off Ajiran Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37241,5 Bedroom Duplex With A Room Bq,"Off Amadasu Street, Spg, Agungi Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +37242,Brand New 2 Units Of 6 Bedroom Fully Detached House With Bq,"Victory Park Estate, Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +37243,6 Bedroom Detached House With Two Rooms Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +37244,4 Bedroom Semi Detached Duplex,Chevron Round About Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +37245,Large Land,Chevy View Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +37246,Five Bedroom Detached House,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +37247,Luxury 5 Bedroom Fully Detached Duplex,Off Lekki/epe Expressway Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37248,Dry Land,Beside Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +37249,Furnished And Massive Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +37250,Massive 5 Bedroom Fully Detached Duplex,Megamound Estate By Lekki County Road Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37251,"5 Bedroom Fully Detached Duplex With Bq,tastefully Finished With Bq,all Rooms Ensuite,modern Carport System,fitted Kitchen(gas,microwave,oven,extractor,gas,fridge)very Large Parking Space For 8 Cars,located At Megamound Mound Estate",At Mega Mound Estate. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37252,3 Bedroom Flat With Bq,"Off Duro Simi Eti Street, Very Close To Lekki Phase 1first Gate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +37253,Super 4 Bedroom Duplex,Westend Estate By Lekki County Homes Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37254,Fantastic Fully Furnished 4bedroom Semi Detached Duplex + Boys Quarters,"Off Fola Oshibo Street, Lekki Phase 1 Lekki Lagos",₦,"148,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37255,Massive 5bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37256,Luxury 4bedroom Detached Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37257,Luxury 4 Bedroom Semi Detached House,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37258,Luxury 4bedroom Semi Detached Duplex,By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37259,Luxury 3bedroom Flat,Chevy View Estate Off Chevron Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +37260,Luxury 5 Bedroom Terrace Duplex,Behind Shop Rite Shopping Mall Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37261,Luxury 4bedroom Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +37262,Beautifully Newly Built Modern 5bedroom Fully Detached Duplex With Bq. Located In An Estate Lekki.,"Very Close To Vgc, Napia Garden, Lekki. Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37263,New 4 Units Of 4bedroom Terrace Duplex At Lekki.,"@ Atlantic View Estate, Alpha Beach Road, Ologolo. Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37264,Tastefully Finished 3 Bedroom Terrace Duplex,Megamound Estate By Lekki County Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37265,16 Units Of Newly & Tastefully Built 4 Bedroom Semi Detached Duplex With Penthouse And Bq At Oral Estate,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"70,000,000",0,1,0, beds,4 baths,5 Toilets,Other Lekki +37266,5 Bedroom Fully Detached House,Ikate Elegushi Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37267,Luxury And Massive 32rooms Furnished,Off Admiralty Way Close To Tantalizer Building Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",1,1,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +37268,Brand New 5bedroom Fully Detached Duplex With Bq,"@ Chevron Alternative Route, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +37269,"2 Units Of Newly, Beautifully, & Spaciously Built 5bedroom Duplex At Megamond, Lekki With : 2 Sitting Room, Fully Fitted Kitchen (imported Kitchen Cabinet), Upscale Sanitary Fittings,water And Sewage Treatment,","At Mega Mound Estate.,lekky County Home Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37270,A 4 Bedroom Duplex,Chevron Road Lekki Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37271,Luxury 5 Bedroom Fully Detached Duplex,Chevy View Estate Off Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37272,Three (3) Bedroom Apartment With Flexible Payment Plan In An Estate,Oral Estate Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +37273,Land,Behind Tantalizer Building Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37274,"Brand New 5bedroom Fully Detached Duplex With,s/pool, Jacuzzi, Modern Finishing, Fitted Kitchen, Etc, At Lekki","At Mega Mound Estate.,lekky County Home Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37275,Five 5 Bedroom Fully Detached House With Swimming Pool,Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37276,Massive 5 Bedroom Fully Detached Duplex,Megamound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37277,Luxury Finished 3 Bedroom Duplex With Payment Plan,Orchid Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +37278,Beautiful 4bedroom Duplex,Around Orchid Hotel Road By Second Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37279,"Beautifully Newly Built Modern Four Bedroom Semi Detached Duplex With Bq. Located At Osapa London, Lekki.",Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +37280,Dry Land,Is At Victory Park Estate Off Osapa Road Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Osapa London +37281,Newly Built 4bedroom Terrace Duplex Plus Bq In A Serviced Estate By Chevron,In A Serviced Estate By Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +37282,Luxury 3bedroom Flat + Bq,Chevy View Estate Off Chevron Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +37283,Luxury 4bedroom Duplex Promo,Off Chevron Round Road Chevron Lekki Lagos,₦,"47,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +37284,4 Bedroom Semi Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37285,Luxury 4bedroom Detached Duplex,Off Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37286,5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +37287,Luxury 4bedroom Detached House,Off Lekki/expressway Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37288,Luxury 4units Of 3 Bedroom Flat + Pool,Off Babatunde Ajus Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37289,Newly Built 4 Bedroom Terrace Duplex With Modern Finishing And Bq 8,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"33,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +37290,Well Maintained Luxurious 6bedroom Duplex All Ensuite With Lobby Etc On A Plot Of Land,Vgc Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,6 beds,7 baths,7 Toilets,Victoria Garden City +37291,Luxury 5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37292,Mansion 5bedroom Fully Detached Duplex,Inside Megamound Estate Homes By Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37293,4 Bedroom Semi Detached Duplex,Off Ajiran Road Agungi Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37294,Brand New 4bedroom Semi Detached And 4bedroom Terrace With Modern Finishing At Ikota With Modern Finishing,"Ikota Estate, Lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37295,Luxury 4 Bedrooms Terrace Duplex,Off Chevron Road; Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37296,Beautifully Newly Built Modern Four Bedroom Semi Detached Duplex With Bq. Located In An Estate Lekki.,"At Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37297,4nos Of 4 Bedroom Terraces, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +37298,Tastefully 4bedroom Duplex,Off Lekki/epe Expressway Osapa London Lekki Lagos,₦,"38,500,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +37299,4 Bedroom Fully Detached Duplex,Ikota Westend Estate Lekki Lagos. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +37300,4 Bedroom Fully Detached  Duplex, Vgc Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +37301,Land At Cedarwood Boulevard For Sale,"Okun Ajah, Lekki Scheme 2, Lagos Lekki Phase 2 Lekki Lagos",₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37302,150 Plots Of Land At Eleganza Not Far From Lekki Miami Beach Resort,"Eleganza Bus Stop, Orchid Hotel Ikate Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Ikate +37303,Land At Nicon Town Estate,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37304,Land,Off Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +37305,Cheap Plots Of Land,Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets,Other Lekki +37306,Semi Furnished 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki,Off Pennok Estate Road Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +37307,"9 Plots Of Land Facing Lekki Epe Express Way,by Second Toll Gate!",By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37308,A Dry Land In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +37309,4 Bedroom Detached Duplex W/ Swimming Pool,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37310,Off Plan 2bedroom Apartments In The Finest Part Of Lekki,Meadow Hall Way Ikate Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +37311,Luxury 2bed+bq Flat,"Admiralty Homes Estate, Off Alpha Beach Road, New Road Bstop, B4 Chevron Bstop Lekki Lagos",₦,"26,000,000",1,0,1,2 beds,2 baths,2 Toilets,Other Lekki +37312,Water Front 6 Units 4bedroom Terrace Duplex With Bq,Admiralty Road Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"5,000,000/year",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37313,4 Bedroom Terrace For Sale In Oral Estate By Second Toll Gate Lekki,Oral Estate Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Lekki +37314,Semi Detached Duplex For Sale In Vgc Lekki,Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,5 baths,6 Toilets,Victoria Garden City +37315,4 Bedroom Detached Duplex At Lekki Lagos State,Chevron Alternative Within Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets,Chevron +37316,Fully Detached Duplex,Jide Agbalaya Street Chevron Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,7 baths,8 Toilets,Chevron +37317,Newly Built 4 Bedroom Terraced Duplex House,"Ologolo Village, Eti Osa Agungi Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +37318,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +37319,Newly Built And Spacious 5 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +37320,Luxury 2 Bedroom Flat + Bq,. Osapa London Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets,Osapa London +37321,Newly Built 4 Bedrooms Terraced Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +37322,Newly Built 5 Bedroom Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37323,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37324,2153.772sqm /4 Plots Of Land,Facing Lekki Epe Expressway By Second Toll Gate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +37325,Newly Built And Spacious 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37326,Fully Detached 5 Bedroom Duplex With A Bq,"Lekki County Estate (megamound), Ikota Lekki Lagos",₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +37327,Beautiful 4 Bedrooms Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37328,Tastefully Finished 4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +37329,6 Bedroom Duplex + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37330,4 Bedroom Semi Detached Duplex + 1 Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37331,11 Offices Shopping Mall In Lekki Phase 1,Fola Osibo Street. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +37332,11 Shopping Mall Offices With Cofo,"Fola Osibo Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +37333,Brand New 4 Bedroom Duplex Detached For Sale Withi Bq With Cofo,"Ikate ,lekki Ikate Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +37334,8 No's Of 2 Flat With Cofo,Ikota By Mega Chicken Roaf Ikota Lekki Lagos,₦,"300,000,000",0,0,1,2 beds,2 baths,3 Toilets,Ikota +37335,"1,300sqm Land At Chevron",Chevron Alt Drive Chevron Lekki Lagos,₦,"113,000,000",0,0,0, beds, baths, Toilets,Chevron +37336,300sqm Land For Sale At Ikota,Ikota Ville Estate Ikota Lekki Lagos,₦,"23,000,000",0,0,0, beds, baths, Toilets,Ikota +37337,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ologolo +37338,Tastefully Finished Ensuite 5bedroom Duplex With 2 Rooms Inbuilt Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37339,8 Units Of Uniquely Designed Semi Detached Duplexes,"Alpha Beach Road, Opposite Admiralty Estate. Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37340,Dry Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +37341,Land For Sale,Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +37342,C Of O And Governor's Consent.the Estate By Pennek,"Along Abraham Adesanya Road, Less Than 2min From The Abraham Adesanya Roundabout Ajah. Lekki Phase 2 Lekki Lagos",₦,"18,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +37343,C Of O Land For Sale In Sangotedo Lekki.,"Behind Novare Mall Shoprite, Sangotedo. Lekki Phase 2 Lekki Lagos",₦,"14,500,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +37344,House For Sale In Lekki.,Close To Chevron Toll Gate Axis Phase 2.furnished And Exquisite 3 Bedroom Terraced Duplex With Bq In Lekki. Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,5 baths,5 Toilets,Lekki Phase 2 +37345,Iland Properties Estate With Global C Of O.,"Inside Beechwood Estate Shapati, Along Lekki Epe Expressway. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +37346,House For Sale,Osapa London Lekki Lagos. Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +37347,C Of O House For Sale.,"Abijo Gra Lekki, Lagos. Lekki Lagos",₦,"18,700,000",1,1,0,3 beds,4 baths,4 Toilets,Other Lekki +37348,House For Sale In Lekki.,"Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +37349,House For Sale In Lekki,"After Chevron Toll Gate, Ikota Lekki, Lagos. Ikota Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,6 baths,6 Toilets,Ikota +37350,4 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37351,Beautifully Finished 5 Bedroom Detached House In Lekki Phase 1.,Off Road 13 Beside Ascon Filling Station Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37352,1 Unit Of 4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37353,Fantastic Detached House Beautifully Located On Admiralty Way.,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37354,4 Bed Room Semi Detached,4 Bed Room Semi Detached At Ikota Not Far From Orchid Area In A Mini Estate For 45 Million Naira Pictures Available On Request. Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,6 Toilets,Ikota +37355,Land In Lekki,"Bogije, Lekki, Epe Express Way Lekki Phase 2 Lekki Lagos",₦,"6,750,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37356,881 Square Meter Plots For Sale At Alpha Beach Road Beside Admiralty Homes Estate,Alpha Beach Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 2 +37357,Newly Built 4 Bedrooms Terrace Duplex,"Adedeji Adekola Close, Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"130,000,000",1,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37358,2 Newly Built 4 Bedroom Terrace With Maids Room.,Akinyemi Avenue Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37359,Exquisitely Finished 5 Bedroom Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37360,"A Newly Built 4 Bedroom Semi Detarched Duplex In Chevron Estate, Lekki, Lagos","After Chevron Toll Gate, Ikota Lekki Chevron Lekki Lagos",₦,"46,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +37361,Newly Built 4 Bedroom Semi Detarched Duplex,Daniel's Garden Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds, baths, Toilets,Chevron +37362,Serviced 24units Of 4 Bedroom Semi Detached Duplex With Bq And 4 Units 5 Bedroom Fully Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +37363,Payment Plan Ongoing 3 Bedroom Terace Duplex Off Orchid Hotel Road.chevron 2nd Toll Gate .lafiaji.lekki @n35 And 4 Bedroom Terrace Penthouse @ N45 Million,Orchid Hotel Road Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +37364,Plots Of Land,Off Spa Road Ikate Ikate Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets,Ikate +37365,Serviced Open Plan Office Space On 3 Floors With Over 160 Sqm Pent House,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +37366,Serviced 3 Bedroom Town House Duplex With Bq And 4 Bedroom Semi Detached Duplex With Bq,Marwa(right Side) Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +37367,5 Bedroom Detached Duplex With Bq In Lekki Phase1,Off Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37368,24hrs Light Serviced 4 Bedroom Semi Detached Duplex @n55 Million And 5 Bedroom Fully Detached With Bq @n65 Million At Osapa.lekki,Osapa Osapa London Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,5 baths,5 Toilets,Osapa London +37369,Five (5) Bedroom Fully Detached Duplex With One Room Bq.,"Off Orchid Hotel Road. 2nd Toll Gate Lekki Epe Expressway Lagos, Lekki Expressway, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +37370,Four (4) Bedroom Detached Duplex (smart House),Bera Estate; Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37371,Newly Built Four (4) Bedroom Duplex With A Room Bq And Waiting Room,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37372,Newly Built Three(3) And Four (4) Bedroom Semi Detached Duplex,Nike Art Gallery Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37373,Newly Built Five (5) Bedroom Detached Duplex With A Room Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +37374,Newly Built Four (4) Bedroom Semi Detached Duplex,Oando Road Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37375,Uncompleted 4 Bedroom Semi Detached House,Da Silva Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37376,Newly Built Two(2) Bedroom Flat In A Serene Environment,Mercedes Benz Ikate Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +37377,Newly Built Four (4) Bedroom All En Suite Semi Detached Duplex,Orchid Hotel Road; Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37378,Four Bedroom Semi Detached Duplex,"Bricks Court; Orchid Hotel Road, Chevron Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +37379,Newly Built Four Bedroom Duplex With One Room Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +37380,Newly Furnished 4 Bedroom Fully Detached Duplex With Boysquarters.,"After Chevron Toll Gate,ikota Lekki,lagos Ikota Lekki Lagos",₦,"53,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikota +37381,Brand New 4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37382,4 Bedroom Fully Detached Dupledx+ Bq,Oral Estate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37383,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37384,"Land For Sale At Frontier Estate, Lekki Ajah",Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets,Other Lekki +37385,3 Bedroom Terrace(all En Suite) With A Bq,Jakande Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Lekki +37386,Commercial Property With C Of O,Oriwu Street By Elf Estate Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +37387,A Newly Built 3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +37388,7 Rooms Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +37389,7 Plots And 4301sqm Land,Lekki Scheme 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37390,4000 Sqm Land,Lekki Conuty Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37391,1 Plot Of Land About 680sqm,Victory Estate Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37392,60 Plots Of Land In Alternative Road,Kajola Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37393,8 Units Of Terraces,Madiba Estate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikate +37394,Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Chevron Lekki/ikota . Pay And Pack In.,Chevron Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,6 baths,6 Toilets,Chevron +37395,"Houses For Sale In Lagos Lekki , 3 Bedroom Newly Finished Terrace Duplex With Bq Close To Chevron Toll Gate Axis, Lekki","Immediately After Second Toll Gate Chevron Ikota, Lafaji Community Chevron Lekki Lagos",₦,"33,000,000",0,1,1,3 beds,3 baths,5 Toilets,Chevron +37396,5 Acres Of Land Fenced At Kajola,Kajola Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37397,64 Sqm Office/ Shop Space,Orchid Road Ikota Lekki Lagos,₦,"2,200,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +37398,Plot Of Land,Chaplin Court Estate Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37399,Two And A Half Plots Of Land Facing The Express Corner Piece,Kajola Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37400,Newly Built 5 Bedrooms Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +37401,4 Bedroom Duplex,Inoyo Haven Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +37402,Fully Furnished 4bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37403,5 Bedroom Fully Detached Duplex On A Land Size Of 500m2, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +37404,5 Bedroom Detached House With A Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37405,Newly Built 2 Bedroom Luxurious Apartment,Block 113 Plot 43 Lekki Peninsula Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +37406,4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37407,Land With C Of O In Lekki Phase 2, Lekki Phase 2 Lekki Lagos,₦,"11,850,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37408,Newly Built 5 Bedroom En Suite Fully Detached Duplex With Bq,"Block K Plot 37, Sir Simon Chibukor Street Ikota Lekki Lagos",₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +37409,Spacious And Exclusive 6 Bedroom Fully Detached Duplex With 2 Room Bq,Pinncock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",1,1,1,6 beds,7 baths,6 Toilets,Osapa London +37410,Landed Property Inside Beechwood Shapati Lekki, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37411,5 Bedroom Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37412,"Newly Built, Classy And Superbly Finished 2 Storey Duplex (5 Bedrooms) With Modern Awesome Facilities",Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikate +37413,Prime Land For Sale In Lekki Phase 1 Facing Lekki Epe Express.,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +37414,Iland Lands Inside Beechwood Shapati Lekki,Lekki Phase 2 Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37415,"5bedroom With 2 Bed Attached Bq On Road 55, Vgc 4 Sale 160m",Vgc Vgc Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +37416,5 Bedrooms Detached House With 2 Rooms Bq And Cinema House,Carlton Gate Estate Off Chevron Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +37417,4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"38,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +37418,Newly Built 4 Bedroom Duplex In A Nice Serene Area @lekki,Osapa London Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,2 baths,2 Toilets,Osapa London +37419,Large Parcel Of Land For Sale At Lekki Free Trade Zone,Lekki Free Trade Zone Ologolo Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ologolo +37420,A Newly Built And Tastefully Finished 5bedroom Fully Detached Duplex At @ Lekki Phase 1 @150m,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37421,A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37422,A Luxury Blocks Of 3bedroom Flat With A [email protected] @ 65m,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +37423,A Newly Built An Tastefully Finished 5bedroom Detarched Duplex At Megamound Lekki County Ikota Villa @ 100m,Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37424,"A Newly Built And Tastefully Finished Bedroom Fully Detarched [email protected] In An Exclusive, Serviced And Well Secured Estate @85m",Ikota Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +37425,A Newly And Tastefully Finished 2bedroom Maisonette Ensuite At Ikate @45m,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +37426,"A Luxury 4bedroom Terraced Duplex Ensuite With Parking For 2 3 Cars At In An Exclusive, Serviced And Well Secured Estate Close To Vgc @55 M",Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +37427,A Newly Built And Tastefully Finished 5bedroom Fully Detached Duplex At Chevron Alternative [email protected],Chevron Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +37428,An Elegantly Built 4 Bed Fully Detarched Duplex Ensuite With A [email protected] On Around 450sqmtrs With A Parking Space Of About 7 8cars @ Oral Estate @79m,Oral Estate Lekki Lagos,₦,"79,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37429,An Elegantly Built 5bedroom Fully Detarched Duplex On 2 Floors With A [email protected] Ikate @98m,Ikate Lekki Lagos,₦,"98,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +37430,An Exquisitely Built And Well Finished 5bedroom Fully Detached Duplex With A Bq Inside A Serviced Estate Within An Estate @ Osapa London @ 85m,Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +37431,A Newly Built And Tastefully Finished 4bedroom Terraced Duplex Ensuite With Parking For 2 3 @ Lekki Phase 1 @ 105m,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37432,A Newly Built And Tastefully Finished 4bedroom Semi Detarched Duplex Ensuite @ Megamound Lekki County Ikota Villa @85m,Ikota Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +37433,An Exquisitely Built And Well Finished 4bedroom Terraced Duplex Ensuite With Parking For 2 3 And A Bq @ Illasan @68m,Ilasan Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37434,A Newly Built 5bed Duplex With A Pent House @ Ikate In A Serene Environment @ 98m,Ikate Lekki Lagos,₦,"98,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +37435,A Newly Built And Tastefully Finished 4bedroom Detarched [email protected] Ikate @ 75m,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37436,An Elegantly Built 4bed Terraced Duplex Ensuite With Parking For 2 3 Cars @ Chevron Alternative [email protected] M,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +37437,A Newly Built And Tastefully Finished 5bedroom Detarched [email protected] Lekki County @ With A Swimming [email protected],Ikota Lekki Lagos,$,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +37438,A Newly Built And Tastefully Finished 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37439,A Newly Built And Exquisitely Designed 4bedroom Semi Detarched Duplex @megamound Lekki County Ikota Villa @85m,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +37440,"A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Megamound Lekki County Ikota [email protected] With A Bq , Aspacious Compound With A Swimming [email protected]",Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +37441,4 Units Newly Built And Tastefully Finished 4bedroom Fully Detarched [email protected] With Bq @ Lekki Phase 1 Around Freedom Way @ 125m,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37442,A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Lekki County @ 68m,Ikota Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +37443,Luxury 4 Bedrooms Detached Duplex With A Room Bq,Oral Estate By Chevron Tollgate Lekki Oral Estate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37444,3 Bedroom Apartment At Prime Waterview Garden 2 Along Freedom Lekki Phase 1,Prime Waters Estate Lekki Phase 1 Lekki Lagos,₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37445,C Of O,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37446,C Of O,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets,Chevron +37447,C Of O,Chevron Alternative Route Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikota +37448,Government Allocation,Chevron Toll Gate Chevron Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets,Chevron +37449,4 Bedroom Semi Detached Duplex With A Bq,"Just By The 2nd Toll Gate, Lekki. Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +37450,Tastefully Finished 4 Bedroom Semi Detached Duplex And 1 Room Boys Quarters,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37451,For Sale Executive 5 Bedroom Duplex In A Serene Environment In Chevy View 85m,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +37452,5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +37453,Fully Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,1,3 beds,3 baths,4 Toilets,Ikate +37454,Nicely Built 4 Bedroom Fully Detached Duplex With 1 Room Bq & Fitted Kitchen,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +37455,4 Bedroom Semi Detached Duplex With A Room Bq And A Security House,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +37456,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37457,Nicely Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Ikate Lagos Ikate Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +37458,Only 1 Unit Of 2 Bedroom Flat Left In This Well Located And Accessible Block Of Apartments,Ikate Lekki Lagos,₦,"30,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikate +37459,Fantastically Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"73,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +37460,5 Bedroom Fully Detached Duplex (driveway Unit) Available For Sale,By The 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +37461,Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +37462,Govt. Approved Excision,"Bogije, Lekki/epe Expressway Lekki Lagos",₦,"4,900,000",0,1,0, beds, baths, Toilets,Other Lekki +37463,C Of O,Lekki Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets,Other Lekki +37464,5 Bedroom Fully Detached Duplex With A Room And Parlour Bq And A Security House,Jakande Lekki Lagos,₦,"72,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +37465,A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Buena Vista Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37466,Well Built And Spacious 5 Bedroom Detached House With A Room Bq,Chevron Tollgate Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37467,Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +37468,4 Bed Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37469,A Tastefully Finished 4 Bedroom Semi Detached Duplex With A Boys Quarter,Chevron Tollgate Oral Estate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37470,Super Luxury 5 Bedroom Detached House With 2 Rooms Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37471,5 Bedroom 2 Story Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +37472,5bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,7 baths,7 Toilets,Victoria Garden City +37473,Luxury 5 Bedroom Detached Duplex With Two Rooms Bq.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37474,A Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37475,Fully Serviced 4 Bedroom Semidetached Duplex With A Maid’s Quarter,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37476,Newly Built 5 Bedroom Detached House Chevy View Estate Chevron,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +37477,Lovely Built 4 Bedroom Semi Detached House With A Room Bq,Pilots Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37478,A Tastefully 5 Bedroom Fully Detached House With A Room Bq,Lekki Agungi Agungi Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +37479,Hot Sales!!!!,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37480,Newly Built 4bedroom Semi Detached In Chevron,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +37481,"Distress Sale ! Terraced Duplex For Sale In Lekki, Jakande.",County Estate Behind Elevation Church. Jakande Lekki Lagos,₦,"35,000,000",1,0,0,4 beds, baths, Toilets,Other Lekki +37482,Newly 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37483,Nicely Built 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Hotel Road By Chevron Tollgate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37484,Newly Built 4bedroom Duplex At Thomas Estate Lekki,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +37485,5 Bed Fully Detached Duplex In Osapa London Lekki,Papa London Lekki Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,4 baths,4 Toilets,Other Lekki +37486,Newly 4/5 Bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +37487,Beautifully Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +37488,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37489,Tastefully Finished 4 Bedroom Semi Detached Duplex And 1 Room Boys Quarters,Lekki Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +37490,Luxury 5 Bedroom Detached House With 2 Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37491,3 Bedroom Flat,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +37492,"Buy, Pay And Pack In, In Chevron Ikota",Chevron Lekki Lagos,₦,"45,000,000",1,1,1, beds, baths, Toilets,Chevron +37493,Still Selling *5bedroom Luxury Family Detached Duplex With Swimming Pool Plus Bq* @n110m. Exclusively Finished 5bedroom Luxury House With Swimming Pool Plus Bq. *features* Sizeable Master Bedroom Exquisite Staircase All Bedrooms En Suite Cctv C,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +37494,4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +37495,Luxury 4 Bedroom Detached House And A Room Bq,Chevron Alternative Route Off Chevron Drive. Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37496,A Lovely Well Built 4 Bedroom Detached House,Ikate Elegushin Ikate Lekki Lagos,₦,"86,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +37497,Meet This Massive Edifice Built With Style And Precision For The Discerning Few! 4 Bedroom Fully Detached Duplex,"Lekki County Homes, Ikota Ikota Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +37498,Investors Delight Over 8.11 Hectares Of Dry Land,Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37499,For Sale Executive 5 Bedroom Detached House In Lekki Phase I 250m,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37500,Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37501,Newly Built 4 Bedroom Semi Detached Duplex With A Fitted Kitchen,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37502,C Of O,Abijo Lekki Lagos,₦,"6,500,000",0,1,0, beds, baths, Toilets,Other Lekki +37503,Newly 4/5 Bedrooms Terrace With Bq In Very Serene Environment,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +37504,A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Conservation Gra Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37505,Luxury 5 Bedrooms Detached Duplex With 2 Rooms Ensuit Maid Room,Pinnock Beach Estate Osapa London Lagos Osapa London Lekki Lagos,₦,"240,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +37506,Lovely Built And Spacious 4 Bedroom Semi Detached House,Chevron Tollgate Oral Estate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37507,Luxury 5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +37508,New 4 Bed Semi Detached Duplex For Sale C Of O In Oniru Lekki Phase 1,Oniru Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,3 Toilets,Lekki Phase 1 +37509,A 3 Bedroom Tastefully Finished Flat Upstairs (in A Block Of 4 Flats),"Tom Ogboi Ave, Springview Estate Itedo, Off Freedom Way Idado Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +37510,Land For Sale Pinnock Estate Water Front Lekki,Pinnock Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +37511,Lovely Built 4 Bedroom Detached House With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +37512,755sqm Land, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37513,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Hotel Road By Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37514,Beautifully Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +37515,Newly Built 4 Bedroom House,Osapa London Jakande Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +37516,Nicely Built 5 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive. Chevron Lekki Lagos,₦,"73,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +37517,Off Plan 1 & 2 Beds At Ikate With Prices From 18m. Secure A Spot With 1m,Ikate Lekki Lagos,₦,"27,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +37518,*newly Built 4bedroom Fully Detached Plus Bq At Chevron Area Lekki For N60m*,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +37519,Nicely Built 4 Bedrooms Detached House,Ikate Elegushi Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37520,Lovely Built 4 Bedroom Detached House With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +37521,5 Bedroom Luxury Detached Duplex And A Room Bq,Chevy View Estate Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +37522,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Opposite Igboefon Idado Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37523,Land ( Per Sqm),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37524,950sqm Land With C Of O, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37525,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +37526,4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lagos State Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37527,4 Bedroom Fully And Semi Detached Duplex,Chevron. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37528,Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Conservation Gra Opposite Chevron Head Office Lekki Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +37529,Brand New 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +37530,Beautiful 5 Bedroom Fully Detached Duplex,Pinnock Estate Lekki Phase 2 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37531,300 Sqm Of Land On A Fast Developing Estate,Lekki Lagos,₦,"500,000",0,1,0, beds, baths, Toilets,Other Lekki +37532,4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37533,Newly Built 4 Bedroom Detached Duplex In A Serene Neighborhood,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37534,Newly Built 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +37535,Newly Build 5 Bedroom Flat With Bq In A Serene Environment,Westend Estate Ikota Villa. Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +37536,5 Bedroom Fully Detached Duplex With Bq,"Pinnock Beach Estate, Osapa London Osapa London Lekki Lagos",₦,"230,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +37537,4 Bedroom Fully Detached Duplex With Bq.,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37538,Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +37539,Already Sand Filled Dry Corner Piece Land In Lekki Scheme 2 With Survey And C Of O Title.,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37540,5 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37541,"3 Bedroom Flat For Sale, Chisco Road, Ikate Lekki N28m",Lekki Garden Jakande Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37542,"5 Bedroom Detached House With A Room Boy's Quarter At Victory Park Estate, Lekki N110m",Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37543,A Shell Of 3 Bedroom Terrace With A Room Boy's Quarter,Lekki Gardens Premier 1 Estate By Enyo Filling Station Ikate Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,5 Toilets,Ikate +37544,4 Units Of 4 Bedroom Semi Detached With Bq,Chevy View Estate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +37545,Serviced 3 Bedroom Flat At Cromwell Estate Checron,"Cromwell Estate Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"51,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +37546,"1,500sqm Land For Sale At Royal Garden Estate Ajah N130m",Royal Garden Estate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +37547,Exquisitely Finished 5 Bedroom Semi Detached With A Room Boy's Quarter At Osapa London,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37548,880 Sqm Land,Nicon Town Jakande Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37549,700sqm Land,Vgc Lekki Vgc Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +37550,"Brand New Well Finished 4 Bedroom Terrace House For Sale With A Room Boy's Quarter At Fairwell Estate, Orchid Lekki","Fairwell Estate, Orchid Ikota Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37551,"5 Bedroom Detached House With A Room Boy's Quarter At Victory Park Estate, Lekki N80m",Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37552,"Exquisitely Finished Brand New 5 Bedroom Fully Detached House With A Room Boy's Quarter At Skc Court Estate, Orchid, Lekki","Skc Court Estate, Orchid Ikota Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37553,"Serviced 5 Bedroom Semi Detached House With A Room Boy's Quarter At Serene Court Estate, Osapa London",Serene Court Estate Osapa London Lekki Lagos,₦,"58,000,000",1,0,0,5 beds,5 baths,6 Toilets,Osapa London +37554,"Newly Built Well Finished 5 Bedroom Detached House For Sale With A Room Boy's Quarter At Signature Estate, Chevron Alternative Off Chevron Drive, Lekki","Chevron Alternative Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +37555,12 Unit 3 Bedroom & 19 Unit Of 4 Bedroom Terraces,"Dunvale Court Estate, Orchid Hotel Rd Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +37556,"For Sale 5 Bedroom Fully Detached House At Pinnock Beach Estate, Lekki N125m",Pinnock Beach Estate Jakande Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets,Other Lekki +37557,1 Plot 0f Land,"Elesan Orchid Road, By 2 Second Toll Gate Ikota Lekki Lagos",₦,"16,000,000",0,0,0, beds, baths, Toilets,Ikota +37558,4 Bedroom Detached House South Lake House,Ologolo Behind S.p.g Ologolo Lekki Lagos,₦,"50,000,000",1,0,0,4 beds, baths, Toilets,Ologolo +37559,"4 Bedroom Terrace Duplex With A Room Boys Quarter At Lekki Gardens Estate By Abraham Adesanya, Ajah",Lekki Gardens Estate By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37560,Very Spacious 5 Bedroom Detached House With 1 Room Bq And Laundry,"Northern Foreshore Estate,chevron Drive Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets,Chevron +37561,"Brand New Well Finished Fully Detached Duplex Of 5 Bedroom House For Sale With A Room Boy's Quarter At Ginza Hills Estate, Orchid Lekki","Ginza Hills Estate, Orchid Ikota Lekki Lagos",₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37562,Land,"Chaplin Estate, Along Abraham Adesunya Road. Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37563,12 Units 3 Bedroom Apartments (off Plan),Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +37564,5 Bedroom Detached House With A Room Boy's Quarter At Ruxbury 2 Leisure Estate Beside Napier Gardens By Vgc,"Ruxbury 2 Leisure Home Beside Napier Gardens Estate, By Vgc Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37565,1550 Sqm Mixed Use Land,Along Alpha Beach Lekki Lagos Igbo Efon Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37566,"Sale Of 4 Bedroom Semi Detached House With Boy's Quarter At Courtland Estate, Along Platinum Way/victory Park Jakande Firstgate, Lekki N65m & N75m","Along Platinum Way/victory Park Jakande Firstgate, Lekki Jakande Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets,Other Lekki +37567,5 Bedroom Terrrace In Spring Bay Estate Ikate,Spring Bay Estate Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,5 beds, baths, Toilets,Ikate +37568,3 Hectares Of Bare Land For Sale Along Orchid Road Lekki,Orchid Road By Conservation Center Lekki Ikota Lekki Lagos,₦,"19,200,000",0,0,0, beds, baths, Toilets,Ikota +37569,12 Units 3 Bedroom & 4 Bedroom Maisonettes By Richmond Estates,Elegushi Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +37570,5 Bedroom Detached House With 2 Sitting Room Plus 2 Room Bq,"Road 2,m Series V.g.c Lekki Vgc Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +37571,"Newly Built Well Finished 4 Bedroom Semi Detached House For Sale With A Room Boy's Quarter At Ginza Hills Estate, Orchid, Lekki","Ginza Hills Estate, Orchid Ikota Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37572,Distressed Sale Of Well Finished 4 Bedroom Semi Detached At Admiralty Home Off Alpha Beach Road Lekki N40m,"Admiralty Home Estate, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37573,Serviced 4 Bedroom Semi Detached House With Boys Quarter,"Bourdillon Court, Chevron Drive Chevron Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +37574,"4 Bedroom Semi Detached Building,parks 4 Cars.lagoon View, Alternative Route, Chevron Lekki N56m","Lagoon View, Alternative Route, Chevron Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds, baths, Toilets,Chevron +37575,"For Sale 4 Bedroom Semi Detached House At Pinnock Beach Estate, Lekki N95m",Pinnock Beach Estate Jakande Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37576,"Tastefully Finished 5 Bedroom Detached House With A Room Boy's Quarter Chevron Alternative, Chevron Drive, Lekki","Off Chevron Alternative, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +37577,10 Plots Of Land (6500sqm),"Off Alpha Beach Road, Lekki Igbo Efon Lekki Lagos",₦,"370,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37578,Serviced Plot Of Land,"Lekki County Estate, Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"36,000,000",1,0,0, beds, baths, Toilets,Ikota +37579,1013sqm Land For Sale At Twin Lake Estate N180m,"Twin Lake Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets,Chevron +37580,"Well Finished 4 Bedroom Semi Detached House With A Room Boy's Quarter At Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37581,3 Bedroom Flat At Prime Water Gardens Estate Lekki Phase 1,Prime Water Gardens Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37582,Newly Built 4 Bedroom Detached House With 1bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37583,Newly Built 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37584,Newly Built 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37585,Newly Built 4 Bedroom Terrace House,World Oil Ilasan Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37586,Newly Built 3 Bedroom Flat Plus 1bq,Dream Work Centre Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,4 baths,4 Toilets,Chevron +37587,Newly Built 5 Bedroom Detached House With 1bq In A Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37588,5 Bedroom Detached House,Cardigan Estate Jakande Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +37589,Fairly New 4 Bedroom Terrace House In A Mini Estatr,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +37590,Newly Built 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +37591,Newly Built 4 Bedroom Terrace House In A Mini Estate,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +37592,Newly Built 5 Bedroom Detached House With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37593,Fully Serviced Blocks Of Petite 2 Bedroom Maisonette At Ikate,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikate +37594,16 Units Of Luxury Flats,Chief Saula Ndakolo Street Ikota Lekki Lagos,₦,"1,200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +37595,Newly Built Luxury 4bedroom Duplex Finish With Exquisite Facilities 4sales @agent Steve,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37596,Apartments At Angles Court Development Estste,Adjacent Friends Colony Agungi Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37597,7 Bedroom Detached House Plus Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +37598,4bedroom Luxury Duplex Finish With Exquisite Facilities @agt Davd,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +37599,Newly Built 4bedroom Flat And A Bq,I19c Beuna Vista Estate By 2nd Toll Gate On Lekki Ajah Expresspressway Its The Orchid Hotel Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,6 Toilets,Osapa London +37600,4bedroom Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37601,1 Unit Of 3 Bedroom Terrace With A Room Bq,Ikate (enyo) Ikate Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +37602,Ellicott 670 Dragon Dredge. Chucks,Lekki Lekki Phase 2 Lekki Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +37603,Land For Sale At Eleko,Elegushi Igbo Efon Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets,Other Lekki +37604,5 Bedroom Fully Detached Plus Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37605,Newly Built Luxury 3units Of 5bedroom Family Duplexes With Modern Amenities,Lekki County Homes Estate Ikota Villa Estate Opposite Ikota School Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +37606,Exquisitely Built 5 Bedroom Detached Family Duplex With World Class Facilities,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +37607,4 Bedroom Semi Detached Duplex,Megamood Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +37608,An On Going Property Development Of Luxury Four (4) Bedroom Masionette Within A Highly Secure Estate (ocean Bay Estate),"Ocean Bay Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37609,Executive Miniflats ( 1bedroom Flat)16 Units,Amadsun Street Igbo Efon Lekki Lagos,₦,"500,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Lekki +37610,Brand New Fully Furnished Serviced 2 Bedroom Flat In Lekki County Hones,Lekki County Homes Ikate Lekki Lagos,₦,"25,500,000",0,1,1,2 beds,3 baths,3 Toilets,Ikate +37611,Luxury 5 Bedroom Fully Detached Duplex + Bq,"Lekki County Homes, Megamound Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37612,Eli Court,Chevron Lekki Lagos,₦,"58,000,000",0,1,0, beds, baths, Toilets,Chevron +37613,Newly Built Luxury And Well Finished 5bedrooms Detached House,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37614,Newly Built 5bedroom Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +37615,Newly Built 5 Bedroom Duplex At Ikota Lekki N60m,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37616,5 Bedroom Fully Detached Duplex* Exquisitely Finished Interiors.,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37617,"Fully Finished Luxurious 3bedroom Detached Duplex All Rooms Ensuite Located Before Chevron, Creek Avenue Court",Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +37618,A 5 Bedroom Semi Detached Duplex With Beautiful And Quality Finishing,Behind Circle Mall Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +37619,Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki Pay And Pack In L,Chevron Alternative Drive Lekki Lagos Chevron Lekki Lagos,₦,"69,000,000",0,1,1, beds, baths, Toilets,Chevron +37620,4 Bedroom Semi Detached Duplex For Sale At Buena Vista Estate By Chevron Toll Gate @ N55million,Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37621,4 Bedroom Semi Detached Duplex,Around Orchid Hotel Chevron Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37622,Newly Built Massive 5bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37623,"Newly Built 5 Bedroom Detached Duplex,elegant And Sophisticated",Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37624,"Lakeside Residential Plots For Sale In A Well Layout Estate At Chervron, Lekki Expressway @ N138,000/sqm","Opposite Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"138,000,000",1,0,0, beds, baths, Toilets,Chevron +37625,"Affordable Land For Sale In Lekki, Inside Beachwood Estate","Beachwood Estate, Shapati, Lekki. Lekki Phase 1 Lekki Lagos",₦,"6,750,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +37626,"Masterfully Built 5 Bedroom Fully Detached Duplex At Ikota Villa At The Back Of Mega Chicken, Fully Equipped House, Fully Equipped Kitchen, Bq, Bar, Refrigerator And Freezer, Study Room, Etc. Marketed By Oluwafunsho",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +37627,A 3bedroom Flat Ground Floor New House With Bq,Bera Estate Otumba Wale Olufunke Str Chevron Lekki Lagos,₦,"27,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +37628,Governor's Consent,"Chevy View, Chevron Lekki Chevron Lekki Lagos",₦,"520,000,000",0,0,0, beds, baths, Toilets,Chevron +37629,Detached 5 Bedroom Duplex With 2 Bedroom And 1 Bedroom Flats Respectively At The Back.,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +37630,Newly Built 5 Bedroom Fully And Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +37631,Land For Sale In Lekki,Agbowa Ikorodu Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"825,000",1,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37632,Iland Lands Inside Beechwood Shapati Lekki, Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37633,Newly Built 4 Bedroom Terraced House With Bq,Ilasan Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Lekki +37634,Newly Finished 4 Bedroom Fully Detached Duplex With Bq In Creek Avenue Court Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,1,1,4 beds,6 baths,6 Toilets,Lekki Phase 1 +37635,A Luxury Fully Detached 4bedroom Duplex At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +37636,6 Bedroom Detached Duplex,11a Pinnock Beach Estate Lekki Lagos Jakande Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,7 baths,8 Toilets,Other Lekki +37637,Newly Built 5 Bedroom Fully Detached Duplex Including 2 Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +37638,Brad New Semi Detached Duplex,Oral Estate Lekki Second Toll Gate Lekki Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37639,2040sqm Of Land With Ample Set Back Under The High Tension Along Lekki Epe Expressway,"Lekki Epe Expressway, Ikota Ikota Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Ikota +37640,2100sqm Prime Land In Lekki 1 For Sale,Collin Ochidiono Street Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +37641,5 Bedroom Detached House In Nicon Town,"Close C10, Nicon Town Estate Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +37642,Luxurious 3 Bedroom Apartment For Sale In Igbo Efon,"Sora Estate Soji Olagunju Street, Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Lekki +37643,3 Bedroom Flat,Sora Estate Soji Olagunju Street Igbo Efon Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +37644,2 Bedroom Serviced Flat For Sale In Igbo Efon,Soji Olagunju Street Igbo Efon Lekki Lagos,₦,"23,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +37645,"3 Bedroom Flats With Bq For Sale In A Serviced Estate Off Freedom Way, Lekki Phase 1, Lagos. Services: 24/7 Power Supply Elevator Inclusive Water Treatment Plant Swimming Pool Basketball Court Gym 24hrs Security. Mortgage Option: Pay 7.5 Million, Tak",Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"750,075,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37646,3 Bedroom Terrace Duplex At 4th Avenue Osapa Village Lekki Few Minutes To Jakande Shoprite 36m Net,Osapa London Lekki Lagos,₦,"350,035,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +37647,@chevron For 35m 3bed With A Room Bq Title: Consent,Chevron Lekki Lagos,₦,"350,035,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +37648,Newly Build 5 Bedroom Detached Duplex,Austin Anozie Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37649,Exquisite 9 Bedroom Fully Detached Duplex + 2bq,Lekki County Homes Lekki Lagos,₦,"370,000,000",0,1,1,9 beds,9 baths,10 Toilets,Other Lekki +37650,Luxury 2bedroom And A Miniflat For Sale,Uba Road Chevron Chevron Lekki Lagos,₦,"27,000,000",1,1,1,2 beds,3 baths,3 Toilets,Chevron +37651,Massive 5 Bedroom Fully Detached Duplex + Bq For Sale At Lekki County,Lekki County Homes Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +37652,"Own Your Brand New Dream House In A Finger Snap, Within A New Mini Estate",Orchid Road Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +37653,Newly Built 4 Bedroom Duplex With Enough Parking Space,Iberekodo Brigde Gate Estate Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37654,*now Selling!!!* (direct Briefs) *4 Bedroom Fully Detached* *house & 4 Bedroom Semi Detached* *house At Ikota Gra Behind Mega* *chicken*,Ikota Lekki Lagos,₦,"55,555,555",0,1,1,4 beds,4 baths,5 Toilets,Ikota +37655,"Direct Property For Sale Location: Lekkie Phase 2 , Ajah, Lagos. Spacious Brand New 5 Bedroom Terrace With 2 Sitting Rooms 1 Bq (5units) Beautifully And Luxuriously Finished. Serviced Apartment. Generator House. Quiet And Serene Environment. Fully Sec",Lekki Phase 2 Lekki Lagos,₦,"600,060,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37656,4 Bedroom Flat Penthouse With Bq,Prime Water View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37657,4 Bedroom Flat Penthouse With Bq,Prime Water View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37658,"Own A Part Of Lekki With Ease. Pay 4.5m, Move In & Spread The Rest For 7 Years. 24 Hours Light, Yearly Dstv Covered, Sparkling Water",Ikate Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,2 baths,3 Toilets,Ikate +37659,2 Units Of 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37660,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37661,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37662,5 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37663,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37664,Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37665,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37666,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37667,5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37668,Lovely 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37669,Lovely 4 Bedroom Duplex In Lekki,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37670,5 Bedroom Semi Detached Duplex In Osapa,Lekki Phase 2 Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37671,"4 Bedrooms Semi Detached Duplex In Ikate, Lekki Phase 1","Ikate, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37672,A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37673,Tastefully Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37674,2 Units Of Open Shop Space In Lekki,Lekki Phase 2 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,1 Toilets,Lekki Phase 2 +37675,Tastefully Built 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"420,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37676,Lovely 5 Bedroom Semi Detached Duplex In Osapa,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37677,"An Exquisite 7 Bedroom Terrace Duplex In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikate +37678,5 Bedroom Detached Duplex In Igbo Efon, Igbo Efon Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37679,5 Bedroom Detached Duplexes For Sale In Chevron,Chevron Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37680,A Lovely 5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37681,Tastefully Built 5 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37682,3 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +37683,Lovely 5 Bedroom Fully Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +37684,4 Units 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37685,Lovely 2 Units Of 3 Bedroom Flat In Ikota, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37686,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +37687,5 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37688,Tastefully Built 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37689,2 Units Of Detached Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37690,A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37691,8 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,8 beds,8 baths,9 Toilets,Lekki Phase 1 +37692,2 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37693,Newly Built 5 Bedrooms Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +37694,4 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37695,A New 6 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +37696,2 Units Of 5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37697,10 Units Of 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37698,5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37699,Lovely 4 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,6 Toilets,Chevron +37700,Lovely 4 Bedroom Detached Duplex,Lekki Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37701,8 Units Of 4 Bedroom Terrace Duplex In Ikoyi, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37702,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37703,3 Bedroom Flat,Eleganza Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +37704,An Exquisite 5 Bedrooms Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37705,Lovely 5 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37706,3 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37707,"3 Units Of 4 Bedroom Semi Detached Duplex In Osapa, Lekki",Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37708,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37709,3 Units Of Newly Built 4 Bedroom Semi Detached Terrace Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37710,Newly Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37711,Lovely 5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37712,2 Units Of 5 Bedroom Duplexes In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37713,Tastefully Built 5 Bedroom Detached Duplex For Sale In Lekki, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37714,5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37715,4 Bedroom Semi Detached Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37716,A Tastefully Built 4 Bedroom Duplex,Syril Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37717,Tastefully Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37718,Furnished 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +37719,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37720,Luxury 5 Bedrooms Detached Deplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37721,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37722,Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37723,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37724,2 Units Of 5 Bedrooms Detached Duplex,Lekki Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +37725,Newly Built 4 Bedrooms Detached Terrace Duplex For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37726,4 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37727,A 4 Bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37728,3 Bedroom Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +37729,2 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37730,2 Units Of 4 Bedroom Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37731,5 Bedroom Semi Detached Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37732,Newly Built 5 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37733,2 Units Of 5 Bedroom Semi Detached Duplex For Sale In Ikota, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37734,A Lovely Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37735,5 Bedroom Semi Detached Duplex In Agungi, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37736,2 And 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +37737,4 Units Of Beautiful 3 Bedroom Flat In Lekki,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37738,2 Units Of Tastefully Built 2 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37739,11 Units Of 3 Bedrooms Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +37740,Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37741,A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37742,5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37743,5 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37744,4 Bedroom Block Of Duplex In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37745,An Exquisite New 5 Bedroom Detached Duplex,Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37746,10 Units Of 3 Bedroom Flat In Agungi, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +37747,8 Units Of Luxurious 3 Bedrooms Flat,Lekki Chevron Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +37748,Well Finished 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37749,4 Bedroom Semi Detached Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37750,"2 Units Of 2 Bedroom Flat In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +37751,Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37752,4 Bedroom Terrace Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37753,5 Bedrooms Semi Detached Duplex,Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +37754,A Block Of 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +37755,4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37756,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37757,Land, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +37758,A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37759,Open Planned Office Space Building,Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,6 Toilets,Lekki Phase 1 +37760,Open Planned Office Space Building,Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,6 Toilets,Lekki Phase 1 +37761,Luxurious 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37762,5 Bedrooms Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37763,A Tastefully Built 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37764,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +37765,Magnificent 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37766,Decent 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37767,Tastefully Built 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37768,A Lovely 4 Bedroom Semi Detached Duplex,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +37769,2 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Jakande Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37770,Decent 4 Bedroom Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37771,A 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37772,5 Bedroom Semi Detached Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37773,Newly Built 4 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37774,A Lovely 2 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37775,2 Units Of New 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37776,Newly Built 4 Bedroom Duplex In Lekki, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37777,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37778,2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37779,3 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37780,Lovely 4 Bedroom Duplex For Sale,Orchid Hotel Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37781,5 Units Of 3 Bedroom Flat In Lekki,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +37782,Lovely 5 Bedrooms Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37783,Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37784,"3 Units Of 4 Bedroom Detached Duplex In Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37785,4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37786,5 Bedroom Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37787,Lovely 4 Bedroom Terrace Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37788,5 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37789,A 5 Bedroom Duplex,Lekki Agungi Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +37790,A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37791,Renovated 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37792,A 5 Bedroom Duplex With 1 Room Boys Quarter,Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37793,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37794,5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37795,A Tastefully Completed 2 Bedroom Flat,Lekki Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +37796,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37797,"765, 561 Square Meters Land F", Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +37798,Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +37799,Newly Built 5 Bedroom Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +37800,4 Bedrooms Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37801,A Lovely 5 Bedrooms Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37802,Newly Built 5 Bedroom Semi Detached Duplex ( Off Plan),Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37803,4 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37804,Newly Built 3 Units Of 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,2 Toilets,Osapa London +37805,8 Units Of Luxurious 3 Bedrooms Flat,Lekki Chevron Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +37806,14 Units Of 3 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37807,2 Units Of Exquisite 5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37808,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37809,4 Bedroom Semi Detached Duplex For Sale In Ikate Lekki,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +37810,4 Units Of 5 Bedroom Terrace Duplex In Chevron, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37811,4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37812,8 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,0 Toilets,Agungi +37813,A Tastefully Completed 1 Bedroom Flat,Lekki Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,1 Toilets,Osapa London +37814,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37815,A Block Of 5 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37816,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37817,2 Units Of 5 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +37818,Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37819,Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37820,2 Units Of 5 Bedrooms Semi Detached Duplex,Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37821,2 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37822,A Luxury 5 Bedroom Terrace Duplex In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37823,Tastefully Built 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37824,5 Bedroom Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37825,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37826,5 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37827,A Lovely 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37828,16 Units Of 4 Bedroom Terrace Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +37829,A Lovely 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37830,4 Bedroom Duplex,Osapa London Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37831,"4 Bedroom Duplex In Osapa London, Jakande",Osapa London Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37832,3 Units Of 7 Bedrooms Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikate +37833,An Exquisite 4 Bedroom Duplex,Lekki Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37834,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37835,"Luxury 4 Bedroom Semi Detached Duplex In Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37836,"2 Units Of 4 Bedroom Semi Detached Duplex In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +37837,20 Units Of 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37838,Tastefully Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37839,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37840,A 5 Bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37841,"5 Bedroom Terrace Duplexin Eleganza, Lekki",Eleganza Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37842,Land, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +37843,Lovely 5 Bedroom Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37844,Newly Built 4 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37845,Newly Built 4 Bedroom Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37846,2 Units Of 4 Bedrooms Semi Detached Duplexes,Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37847,4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37848,An Executive 4 Bedroom Semi Detached Duplex,Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37849,2 Units Of 4 Bedrooms Detached Duplex,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37850,4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37851,4 Bedroom Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37852,4 Bedroom Terrace Duplexe,Eleganza Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37853,4 Bedroom Terrace Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +37854,A Nice 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +37855,A Lovely 5 Bedrooms Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37856,Tastefully Built 5 Bedrooms Detached Duplex,"Ikate, Lekki Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37857,5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37858,2 Units Of Beautiful 2 Bedroom Flat In Lekki, Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +37859,2 Units Of 3 Bedroom Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +37860,A Luxurious 5 Bedrooms Duplex,Lekki Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37861,Lovely 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37862,Lovely 5 Bedroom Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37863,Lovely 3 Bedroom Duplex In Agungi, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +37864,4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37865,5 Bedroom Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +37866,6 Units Of 5 Bedroom Semi Detached Duplex In Ikota, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37867,Tastefully Built 5 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37868,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37869,5 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37870,Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +37871,5 Bedroom Semi Detached Duplex In Osapa,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37872,2 Units Of 4 Bedroom Semidetached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37873,A New 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37874,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37875,5 Bedroom Semi Detached Duplexes In Osapa,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37876,2 Units Of 4 Bedrooms Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37877,Tastefully Built 4 Bedroom Semi Detached Duplex In Lekki,Ikate Elegushi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,5 Toilets,Other Lekki +37878,4 Bedrooms Fully Detached Duplex,Lekki Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37879,Newly Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37880,4 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37881,14 Units Of 4 Bedroom Semi Detached Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37882,Newly Built 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37883,2 Units Of Newly Built 5 Bedrooms Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37884,Lovely 4 Bedroom Semi Detached Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37885,6 Units Of Newly Built 4 Bedroom Terrace Duplex In Lekki,Jakande Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37886,5 Units Of 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37887,4 Bedroom Semi Detached Duplexes In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +37888,A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +37889,5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +37890,4 Bedrooms Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37891,An Executive 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37892,Exquisite 5 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37893,A Beautifully Furnished 5 Bedroom Detached Duplex,Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37894,"Luxurious 5 Bedroom Detached Duplex In Osapa, Lekki","Osapa, Lekki Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37895,5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37896,A Lovely 5 Bedroom Detached Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37897,2 Units Of 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37898,A 5 Bedroom Duplex,Lekki Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +37899,2 Units Of 5 Semi Detached Duplex In Lekki, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37900,An Exquisite 5 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37901,Nice 4 Units Of 4 Bedrooms Terrace Duplex,Lekki Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37902,Well Finished 5 Bedroom Detached Duplex For Sale.,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37903,2 Units Of 4 Bedroom Fully Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37904,An Exquisite 6 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +37905,Lovely 5 Bedroom Fully Detachd Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +37906,Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37907,A 5 Bedroom Terrace Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +37908,Lovely 2 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,1 baths,2 Toilets,Osapa London +37909,8 Units Of Newly Built 3 Bedroom Terrace Duplex In Lekki,Ikota Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +37910,An Exquisite 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +37911,Exquisite 5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +37912,7 Bedrooms Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +37913,.a 4 Bedroom Terrace House,Lekki Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +37914,"Lovely 2 Bedroom Flat In Ikota, Lekki",Ikota Village Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +37915,5 Bedroom Terrace Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +37916,"Wazobia Courts Ibeju Lekki, Lagos By Novarick Homes","4, Babatope Bejide Street, Off Fola Osibo, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"4,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +37917,3 Bedroom Terrace Duplex With Bq,"Orchid Hotel Road Area, Close To Chevron Toll Gate Axis. Chevron Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,5 baths,5 Toilets,Chevron +37918,A Plot Of Land For Sale At Lekki,Mayegun Estate Chevron Lekki Lagos,₦,"23,000,000",0,0,0, beds, baths, Toilets,Chevron +37919,Land For Sale In Lekki(p?tinence Limited),Shepati Lekki Lekki Phase 2 Lekki Lagos,₦,"11,500,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +37920,Land For Sale In Lekki(p?tinence Limited),Shepati Lekki Lekki Phase 2 Lekki Lagos,₦,"11,500,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +37921,5 Bedroom Fully Detached Duplex With 2 Room Bq At Lekki Phase 1,Off Rd 12 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 1 +37922,Frontier Estate Service Plot,Inside Beach Wood Estate Bogije Lekki Phase 1 Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Lekki Phase 1 +37923,4 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,0 baths,0 Toilets,Other Lekki +37924,3 Bedroom Terrace With A Room Bq,Babatope Bejide Crescent Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +37925,2.5 Hectares Of Land Along Elegushi Road,Elegushi Road Ikate Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Ikate +37926,5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +37927,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +37928,Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Alternative Route Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +37929,4 No's Newly Built Semi Detached Duplex 4 Bedrooms All Ensuite,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37930,"4 Bedroom Semi Detached Duplex At Cdv Southlake Homes Ii & Iii, Lekki, Lagos",Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +37931,Distress Sale Of 4 Bedroom Terrace Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"31,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +37932,Fully Detached 5 Bedroom Duplex At Lekki,"Bera Estate, Chevron Lekki Lagos",₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +37933,668sqm Of Land At Agungi,Madam Cellullar Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +37934,4 Bedroom Fully Detached Duplex Plus A Room Bq, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +37935,Four Bedroom Semi Detached Duplex At Lekki,"Arcadia Mews Estate, Osapa London Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +37936,Four Bedroom Semi Detached Duplex At Lekki,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37937,Luxury 9 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,4 baths,3 Toilets,Lekki Phase 1 +37938,4 Bedroom Detached Duplex,Secured Estate Along Orchid Hotel Road Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +37939,Land,"General Paint, Close To Lekki Gardens Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37940,*940 Sqm Cornerpiece @ #65m* Title: C Of O Inside Ikota Villa Estate Gra,Ikota Villa Estate Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Ikota +37941,"Exotically Built 5 Bedroom Fully Detached Duplex In Osapa London, Lekki. Well Furnished, Fitted Kitchen. Pay And Pack In",Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets,Osapa London +37942,632sqm Inside Ikota Villa Gra For 45m With C Of O,Ikota Villas Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikota +37943,"* 1,341 Sqm Land @ #110m* Chevron Alt Drive*registered Deed Of Assignment",Chevron Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +37944,"For Sale Newly Built 5bedrooms Semi Detached Duplex For Sale In Ikota Villa Estate, Lekki, 50m",Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +37945,*exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In*,"Chevron Alternative Drive, Lekki. Lagos State Nigeria Chevron Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +37946,"Luxury 5 Bedroom Fully Detached Duplex In An Estate In Lekki. Before Vgc. All Rooms Ensuit, Fitted Kitchen. Pay And Pack In","Lekki County Estate, Ikota Before Vgc Ikota Lekki Lagos",₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikota +37947,3 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +37948,Land(joint Venture),Northwest Filling Station Vgc Vgc Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +37949,2 Nos Of 1 Bedroom Pent House Flat,Osapa London Osapa London Lekki Lagos,₦,"19,000,000",0,0,0,1 beds,2 baths,2 Toilets,Osapa London +37950,Land,"Elf Bus Stop ,lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +37951,4 Bedroom Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +37952,5 Bedroom Detached Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37953,Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets,Ikate +37954,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.,"Chevron Alternative Drive, Lekki. Lagos State Nigeria Chevron Lekki Lagos",₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +37955,"Exquisitely Finished 5 Bedroom Fully Detached Duplex By Chevron, Lekki. Pay And Pack In*","By Chevron, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,1,5 beds, baths, Toilets,Chevron +37956,Brand New Luxury Finished Fully Detached 5 Bedroom Duplex With Class In An Estate Before Vgc. Lekki .,Inside An Estate Before Vgc Vgc Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,5 Toilets,Victoria Garden City +37957,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.*,"After Chevron Toll Gate, Ikota Lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds, baths,5 Toilets,Ikota +37958,"Newly Built 5 Bedroom Fully Detached Duplex In Ikota Villa Estate, Lekki. Pay And Pack In",Ikota Villa Estate Lekki Lagos State Ikota Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikota +37959,5 Bedroom Detached & Semi Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37960,"Get Your 3 Bedroom Terraced Duplex At Bella Homes Phase 1, Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki. Pay And Pack In",Close To The Toll Gate Axis At Chevron Lekki Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds, baths, Toilets,Chevron +37961,Luxuriously Finished And Partly Furnished 4 Bedrooms Fully Detached Duplex,Off Aniyde Akimade Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +37962,"Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Class In An Estate Before Vgc, Lekki . Pay And Pack In.","Before Vgc, Lekki Vgc Lekki Lagos",₦,"75,000,000",0,1,1,4 beds, baths, Toilets,Victoria Garden City +37963,"Exquisitely Finished 4 Bedroom Semi Detached Duplex By Chevron, Lekki. Pay And Pack In*","By Chevron, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +37964,5 Bedroom Detached Bungalow,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37965,"Exotically Built 4 Bedroom Semi Detached Duplex With Bq At Chevron Alternative Route, Lekki. Pay And Pack In","Chevron Alternative Route, Lekki. Lagos Chevron Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +37966,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +37967,"Luxury 5 Bedroom Fully Detached Duplex In Chevron Alternative Route. Lekki, Lagos State. Pay And Pack In","Chevron Alternative Route, Lekki. Lagos. Chevron Lekki Lagos",₦,"78,000,000",0,1,1,5 beds, baths, Toilets,Chevron +37968,4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +37969,"Tastefully Built 4 Bedroom Terrace Duplex In Chevron, Lekki. Fully Serviced And All Rooms Ensuit With Fitted Kitchen.","Chevron Estate, Lekki, Lagos State. Chevron Lekki Lagos",₦,"38,000,000",1,1,1,4 beds, baths, Toilets,Chevron +37970,5 Bedroom Detached Duplex,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37971,*441 Sqm Land @ #45m* Chevron Alt Drive*registered Deed Of Assignment,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +37972,Irresistible Offer!!!! Buy A Plot Of Land At Lexington Gardens With Instant Allocation And Ready To Build,Sangotedo Lekki Lekki Lagos,₦,"17,000,000",1,0,0, beds, baths, Toilets,Other Lekki +37973,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +37974,Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In.,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"54,000,000",0,1,1,4 beds,6 baths,6 Toilets,Osapa London +37975,308 Sqm Land @ #20m* Inside Ikota Villa Estate Gra With C Of O,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",1,0,0, beds, baths, Toilets,Ikota +37976,Fully Detached 4 Bedroom Duplex With Bq In Creek Avenue Court Phase Two Lekki. Pay And Pack In,"After Chevron Toll Gate, Ikota Lekki Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37977,4 Bedroom Semi Detached Duplex,Lafiaji Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikota +37978,Newly Built 4 Bedroom Semi Detached Duplex In Chevron Alternative Route Lekki. Pay And Pack In,"Chevron Alternative Route, Lekki. Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets,Chevron +37979,Well Finished 8 No Of 4 Bedroom Treeace Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +37980,"Newly Built 5 Bedroom Fully Detached Duplex At Chevron Alternative Drive, Lekki With Good Tittle. Pay And Pack In","Chevron Alternative Drive, Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +37981,Secure A Plot Of Dry Land At Sapati Lekki And Get Instant Allocation,"Blue Pan, Sapati Lekki Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +37982,"Newly Built 4 Bedroom Semi Detached Duplex In Ikota Villa Estate, Lekki. Pay And Pack In",Ikota Villa Estate Lekki Lagos State Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +37983,"Tastefully Built 5 Bedroom Fully Detached Duplex With Bq In Chevron Estate, Lekki.",Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +37984,2 Units Of 4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +37985,5 Bedroom Detached Duplex,Chevron Alternative Route Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +37986,Newly Built 4 Bedroom Semi Detached Duplex In Osapa London Lekki. Pay And Pack In,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +37987,*900 Sqm Land @ #75m* Chevron Alt Drive*registered Deed Of Assignment,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Chevron +37988,Luxury 5bedroom Bq Fully Detached,Circle Mall Shoprite Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +37989,Luxury 3bedroom With Abq For Sale,Circle Mall Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +37990,4 Bedroom Detached Duplex + Bq,Off Orchid Hotel Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +37991,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +37992,5 Bedrooms Fully Detached Duplex,In A Gated Estate Between 2nd Toll Gate And Mega Chicken Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +37993,Newly Built 4 Bedroom Terrace,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37994,A Classically Designed Brand New 4 Bedrooms Duplex With A Bq,Ikota County Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37995,Duplex House ( Off Plan),"Akinmuje Street,onigbogbo Estate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +37996,A Classically Designed 4 Bedrooms Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +37997,4 No's Newly Built Semi Detached Duplex 4 Bedrooms All Ensuite,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +37998,Massive 5 Bedroom Fully Detached Duplex|+ Bq,Orchid Hotel Road Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +37999,Spacious 3 Bedroom Flat For Sale At Orchid Road,Orchid Road Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38000,Beautiful 3 Bedroom Flat,Orchid Hotel Road Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38001,Brand New Bedroom Detached House With Fitted Kitchen Swimming Pool And 2 Room,Nicon Town Is One Of The Popular Estate In Lagos.suited Immediately After Chisco Bus Stop In Lekki Nicon Town Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths, Toilets,Other Lekki +38002,Fenced Plot Of Land With Foundation,10 Family Estate Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38003,Newly Built 4bedroom Duplex With A Boys Quarter,Noibi Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38004,Five Bedrooms Duplex Tripplex,"Lekki Phase 1, Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38005,Newly Built 7 Bedroom Duplex With State Of The Art Fittings At Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,8 baths,8 Toilets,Chevron +38006,Well Finished 4 Bedroom Detached House, Chevron Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +38007,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +38008,Massive 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +38009,4 Bedroom Semi Detach Duplex,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38010,Land,Chois Garden Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38011,Luxury 4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38012,4 Bedroom Semi Detached Duplex,"Abijo, Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38013,Land,Roundabout Lekki Epe Expressway. Chevron Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets,Chevron +38014,Newly Built 5 Bedroom Fully Detached House With 2 Room Bq,. Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +38015,Luxurious 5 Bedroom Semi Detached Duplex,By Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"66,329,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38016,4 Bedroom House,Geer 12 Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +38017,Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen Available For Sale. Location ??ikota Lekki Lagos Price: N55m,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +38018,3 Bedroom Semi Detached Bungalow | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"52,500,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38019,Luxurious 4 Bedroom Maisonette,"By Nike Art Gallery, Lekki Phase 1 Lekki Lagos",₦,"40,090,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38020,Lovely 5 Bedroom Semi Detached Duplex,"By Friends Colony, Agungi Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38021,Lovely 4 Bedroom Semi Detached Duplex With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38022,Newly Built 5bedroom Detached House With One Room Bq,. Ikate Lekki Lagos,₦,"88,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +38023,5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,5 baths,6 Toilets,Ikota +38024,4 Bedroom Semi Detached Bungalow, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38025,Well Finished 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38026,6 Bedroom Detached Duplex (off Plan),Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikate +38027,Dry Land,Ikota Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +38028,12 Units Of Super Luxury 4 Bedroom Terrace Duplex Now Available For Sale.,Ikate Elegushi Lekki Lagos. Ikate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38029,3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +38030,5 Bedroom Fully Detached Duplex,Lekki Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,5 baths,5 Toilets,Ikate +38031,5 Bedroom Fully Detach Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38032,Massive 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +38033,Newly Built 4 Bedroom Semi Duplex With 1 Room Bq,. Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikota +38034,Executive 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38035,4 Bedroom Maisonette (off Plan),Elegushi Ikate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +38036,Executive And Spacious 5 Bedroom Semi Detached Houses With A Penthouse And A Room Bq,. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +38037,Very Spacious 4 Bedroom Semi Detached Houses With A Room Bq. (90% Completed) Location ??agungi Lekki Lagos Price: N61m & N57m,Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +38038,4 Bedroom Terrace Duplex,"By Nike Art Gallery, Ikate Lekki Lagos",₦,"44,815,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +38039,Very Spacious 3 Bedroom Semi Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Osapa London +38040,Executive 4 Bedroom Semi Detached House With Bq, Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38041,6 Bedroom Detached Duplex (off Plan),Ikate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikate +38042,Luxurious 4 Bedroom Maisonette,By Nike Art Gallery Ikate Lekki Lagos,₦,"40,090,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38043,Testfully Finished 5 Bed Room Duplex For Sale; Location ??lekki Phase1 Lagos Nigeria Price:n180m,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38044,Luxurious 5 Bedroom Contemporary Detached House With 2 Rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +38045,5 Bedroom Detached House 1 Room Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +38046,Plots Of Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38047,Executive 4 Bedroom Semi Detached Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +38048,Plot Of Land,Behind Mega Chicken Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Ikota +38049,4 Bedroom Detached House, Agungi Lekki Lagos,₦,"58,000,000",0,0,0,10 beds,10 baths,10 Toilets,Agungi +38050,Luxurious 5 Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +38051,Well Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38052,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"47,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +38053,Newly 4 Bedroom Detached House With 1 Room Bq,. Ikate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +38054,Well Finished 2 Units Of 5 Bedroom Semi Detached House,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38055,Very Spacious And Well Finished 4 Bedroom Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +38056,Lovely 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38057,4 Bedroom Penthouse Apartment,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38058,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +38059,Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen. Location ??ikota Lekki Lagos.,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38060,Exquisite 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38061,4 Bedroom House,Cane 2 Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +38062,Luxurious 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"115,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +38063,Luxurious 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38064,5 Bedroom Semi Detach Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38065,Executive 4 Bedroom Detached Duplex With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38066,Luxurious 5 Bedroom Detached Duplex With A Penthouse And 2 Rooms Bq. Location??victory Park Estate Osapa London Lekki Lagos. Price: N110m,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +38067,Lovely 4 Bedroom Duplex With Bq,Chevron Drive Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38068,Executive & Spacious 5 Bedroom Detached Houses With A Penthouse And A Room Bq Now Available For Sale. Location ??by Lekki 2nd Toll Gate Price: N90m Per Unit,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38069,Very Spacious 4 Bedroom Semi Detached Houses With A Room Bq. (90% Completed) Location ??agungi Lekki Lagos Price: N61m & N57m,Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +38070,Lovely 4 Bedroom Detached House With A Room Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +38071,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,6 beds,5 baths,4 Toilets,Lekki Phase 1 +38072,Exquisitely Finished Units Of 5 Bedroom Detached Houses With A Penthouse And A Room Bq. Location ??ikota Lekki Lagos Price: N95m Per Unit,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +38073,6 Bedroom Bungalow With 1 Room Bq,Abijo Lekki Phase 2 Lekki Lagos,₦,"23,500,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 2 +38074,Land,West Wood Park Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38075,Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen. Location ??by Lekki 2nd Toll Gate.,Lekki 2 Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38076,Executive 5 Bedroom Detached House With A Room Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikota +38077,Land,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38078,Massive 5 Bedroom Detached House With A Room Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38079,Luxurious 4 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38080,Lovely 5 Bedroom Detached House With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38081,Dry Land Fenced With Gate,Ikota Ikota Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +38082,Luxurious 5 Bedroom Detached House With 2 Rooms Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets,Osapa London +38083,Exquisitely Finished 5 Bedroom Contemporary Detached House With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38084,6 Bedroom Semidetached Duplex,Premier 2 Estate Lekki Phase 1 Lekki Lagos,₦,"83,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +38085,Executive & Very Spacious 5 Bedroom Detached House With A Room Bq And A Swimming Pool. Location ??lekki Phase1 Lagos.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38086,Massive 5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +38087,Massive 5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38088,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38089,Newly Built 4 Bedroom Detached House With One Bq,. Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +38090,Exquisite 4 Bedroom Detached House With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +38091,Lovely 5 Bedroom Detached House With A Room Bq, Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38092,Executive 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +38093,Beautiful 4 Bedroom Semi Detached House With A Room Bq, Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +38094,Exquisite And Super Luxurious 5 Bedroom Detached House With Top Notch Finishes And A Fully Equipped Kitchen. Location ??chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +38095,3 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38096,Newly Built 4bedroom Detached House With 1 Room Bq,. Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38097,Very Spacious 5 Bedroom Detached House,Geer 12 Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +38098,5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,5 baths,5 Toilets,Lekki Phase 1 +38099,Luxurious 4 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +38100,Newly Built 4 Bedroom Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +38101,Newly Built Luxurious 4 Bedroom Duplex With A Room Bq,. Chevron Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets,Chevron +38102,Luxurious 6 Bedroom Mansion,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",1,0,1,6 beds,7 baths,8 Toilets,Osapa London +38103,"Executive & Very Spacious 4 Bedroom Detached House With A Room Bq, Air Conditioning Units And Generator. Location ??lekki Phase1 Price: N130m",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38104,2 Bedroom Apartment For Sale At Chery View Lekki Off Plan,Chevy View Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +38105,Land,"Orange Ville Estate, Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38106,Massive 4 Bedroom Detached House,Crown Estate Lekki Epe Express Way. Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38107,Very Spacious And Well Finished 5 Bedroom Detached Duplex With A Room Bq Now Available For Sale. Location ??chevron Lekki Lagos Price: N65m,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38108,Executive 5 Bedroom Terrace Duplex,Chevron Drive Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38109,4 Bedrooms Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38110,Executive 4 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38111,Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38112,5 Bedrooms 1 Room Bq Study Room Box Room Fully Equipped Kitchen Cinema Room L Shape Swimming Pool Great Neighborhood Etc Location ??osapa London Lekki Lagos.,Osapa Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38113,Fully Serviced 4 Bedroom Mansion With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38114,3 Bedroom Flat,"Abijo, Lekki Phase 2 Lekki Lagos",₦,"18,500,000",0,0,0,6 beds,4 baths,4 Toilets,Lekki Phase 2 +38115,4 Bedroom Semi Detached House,By Lekki 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38116,Executive 4 Bedroom Terrace Duplex,By Nike Art Gallery Lekki 3rd Roundabout. Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +38117,Luxury 4 Bedroom Maisonette, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38118,4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38119,Exquisitely Finished Units Of 5 Bedroom Detached Houses With A Penthouse And A Room Bq. Location ??ikota Lekki Lagos,Lekki Ikate. Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +38120,Newly Built 5 Bedroom Detached House With 1 Room Bq,. Chevron Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,6 baths,7 Toilets,Chevron +38121,Exquisite 4 Bedroom Fully Detached House With Bq, Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38122,1 Bedroom Apartment,Paradise Estate Lekki Lagos,₦,"16,000,000",0,0,0,1 beds,2 baths,2 Toilets,Other Lekki +38123,4 Bedroom Terrace Maisonette,Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +38124,Tastefully Furnished 4 Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38125,5 Bedroom Semidetached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38126,3 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +38127,5 Bedroom Contemporary Detached House With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38128,Spacious Units Of 3 Bedroom Terrace Duplex With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +38129,Luxurious 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"108,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +38130,Exquisite 4 Bedroom Townhouse With A Room Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +38131,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Ikate Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,5 baths,5 Toilets,Ikate +38132,Newly Built 5 Bedroom Detached House With 1 Room Bq,. Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +38133,3 Bedroom Terrace Duplex,4th Roundabout Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +38134,4 Bedroom Semi Detached House,By Lekki 2nd Toll Gate Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38135,Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38136,5 Bedroom Fully Detach Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38137,5 Bedroom Fully Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +38138,Exquisite And Very Spacious 5 Bedroom Detached House With Top Notch Finishes And A Fully Equipped Kitchen. Location ??chevron Lekki Lagos Nigeria.,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +38139,Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38140,5 Bedrooms Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +38141,4 Bedroom Semidetached Flat,Chevy View Chevron Lekki Lagos,₦,"50,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38142,4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38143,4 Bedroom Detached Duplex,Lekki Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +38144,4 Bedroom Maisonnette | Off Plan,Chevron Drive Chevron Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +38145,4 Bedroom Maisonette | Off Plan,Paradise 2 Estate Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +38146,3 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38147,3 Bedroom Flat With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +38148,Well Finished 4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38149,Executive 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38150,5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38151,3 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"18,500,000",0,0,0,6 beds,4 baths,4 Toilets,Lekki Phase 2 +38152,4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38153,"Newly Built Semi Detached 4bed Rooms Duplex With 2rooms Bq At Orchid Estate, Lekki Phase 1,laogs","Orchid Estate, Lekki Phase 1,lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38154,Brand 5 Bedroom Terrace + Bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38155,4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38156,3 Bedroom Luxury Apartment For Sale Location:prime Water View Estate,Primewater Estate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,2 baths,2 Toilets,Ikate +38157,Luxury 3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +38158,Luxury 3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +38159,992 Square Metres In Lekki Phase 2. With C Of O,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38160,Frontier Estate,Bogije Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets,Other Lekki +38161,Newly Built 4 Bedroom Duplex At Eli's Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,6 baths,6 Toilets,Chevron +38162,5 Bedroom Fully Detached Duplex+ Bq And Swimming Pool,Lekki County Homes Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38163,Newly Built 5 Bedroom Detached Duplex At Lekki County N105m,Lekki County Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38164,"Houses For Sale In Lagos, 3 Bedroom Newly Finished Terrace Duplex With Bq Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,5 Toilets,Chevron +38165,"Houses For Sale In Lagos, Lekki 3bedroom Newly Finished Terrace Duplex At Osapa London Lekki",Osapa London Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Osapa London +38166,"Houses For Sale In Lekki, Newly Finished Built 4bedroom Semi Detached Duplex With Bq At Chevron Lekki Lagos",Alternative Route To Chevron Ikota Lekki Lagos Chevron Lekki Lagos,₦,"45,000,000",1,1,1,5 beds,6 baths,6 Toilets,Chevron +38167,Newly Built 2 Bedroom Apartment With Bq At Lekki Phase 1 N55m,Christ Church Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +38168,"Houses For Sale In Lagos , 3bedroom Newly Finished Terrace Duplex At Alantic View Estate Igbo Efon Lekki",Agugi Lekki Lagos Immediately After Lekki Phase1 Lagos Agungi Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets,Agungi +38169,Distress Sale. 4 Bedroom Semi Detached Duplex In Lekki 1,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38170,4 Bedroom Semi Detached Duplex In Carlton Gate Estate,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38171,Full Detached Duplex For Sale In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +38172,Affordable 3 Bedroom Ensuite Flat In Oniru Estate,"Lawani Oduloye Street Off Magbogunje Street, Oniru Estate Lekki Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38173,4 Bedroom Detached Duplex + A Room Bq,Ibrahim Odofin Street Idado Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38174,3 Bedroom Terrace Duplex,Lekki Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +38175,Newly Built 5bed Room Detached Duplex Plus A Room Bq,"Off Chevron Drive At Amolegba Street, Bera Estate Chevron Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +38176,Newly Built 4 Bedroom Duplex At Oral Estate. ( Great Neigborhood),Phase 13 Oral Estate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,6 Toilets,Other Lekki +38177,Developers Deal 7 Bedroom House On 845sqm,Lekki 1 Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,7 beds,7 baths,8 Toilets,Osapa London +38178,3 Bedroom Terrace Duplexes + 1 Maids Room,"Orchid Road, Lekki Lekki Lagos",₦,"33,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38179,Superclean 4 Bedroom Duplex (detached),Osapa Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +38180,Duplex For Sale In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +38181,Tastefully Finished 5 Bedroom Duplex At Megamound Estate,Diran Famakinwa Streer Ikota Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,7 Toilets,Ikota +38182,Luxury 2 Bedroom Flat,Oba Amusa Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets,Agungi +38183,Newly Built 4 Bedrooms Terraced Duplex With Two Big Living Area.,Off Kusenla Road Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38184,Newly Built,"Madiba Estate, Ikate Lekki Phase 1 Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds, baths, Toilets,Ikate +38185,Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38186,Brand New 9units Of Luxury 3 Bedroom Flat With A Room Boys,Olubunmi Rotimi Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38187,5 Bedroom Fully Detached Duplex,Chervon Estate Before Vgc Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +38188,Luxury 5 Bedroom Semi Detached Duplex With Boys Quarter,Mega Chicken Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +38189,Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38190,Luxury 4 Bedroom Duplex With Boys Quarter For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +38191,Newly Built Four Bedrooms Duplex Ensuite With Bq,Ologolo Spg Road Off Lekki Express Ologolo Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ologolo +38192,Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38193,Brand New 3 Bedroom Fully Service Flat At Seagate Estate Ikate,Seagate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +38194,Exotically Finished 4 Bedrooms Semi Detached Duplex With Bq For Sale,Ikota Lekki After Toll Gate Chevron Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +38195,Newly Built Three Bedrooms Terrance Duplex With Bq,Toll Gate Axis Chevron Lekki Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +38196,Newly Built 4 Bedroom Serviced Terraces Duplex,Chervon Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +38197,Distressed Sale Of 5 Bedroom Semi Detached In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38198,Distressed Sale. 5 Bedroom Semi Detached Duplexes In Mega Mount,Lekki County Homes Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38199,Global C Of O,Elegushi Estate Ikate Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +38200,Governor Consent,Pinnock Beach Estate Jakande Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +38201,Luxury 4 Bedroom Fully Detached Duplex + Bq For Sale At Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38202,Governor's Consent,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,4 baths,5 Toilets,Chevron +38203,Governor's Consent,"No 20 Babatunde Kuboye Street By Akanbi Dish, Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38204,4 Bedroom Semi Detached Duplex With Bq At Creek Avenue Court Phase 1,Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +38205,"New List Luxury Structure,built With The Right Architectural Brilliance, Now Selling",No 20 Babatunde Kuboye Street By Akanbi Disu. Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38206,3 Bedroom Terrace Duplex + Bq In Bella Homes 1 Lekki,Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,5 baths,5 Toilets,Chevron +38207,*5 Bedroom Fully Detached Duplex For Sale.*,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38208,*5 Bedroom Fully Detached Duplex For Sale.*,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38209,"The Magnificent Luxury Home Is A Massive 6 Bedrooms,",Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Lekki +38210,"Beautifully And Obviously Luxuriously Finished Semi Detached Duplex With Bq, Swimming Pool",Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38211,Perimeter Court 1: Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq.,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +38212,Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +38213,Brand New 4 Bedroom Duplexes At Vgc,Roxbury Leisure Homes Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +38214,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +38215,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki.,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +38216,3 Bedroom Detached Bungalow,"Idiagbon Town, Opp Fara Park Estate Agungi Lekki Lagos",₦,"14,800,000",0,1,1,4 beds,4 baths,4 Toilets,Agungi +38217,6 Units Of 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38218,New 4 Bedroom Duplex At Oribanwa Lekki Ajah Lagos,Wealthland Green Estate Oribanwa Lekki/ajah Jakande Lekki Lagos,₦,"19,975,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38219,Newly Built And Spacious 5 Bedroom Duplex + Bq For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"118,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38220,New 3 Bedroom Duplex At Aribanwa Lekki Ajah Lagos,"Wealthland Green Estate, Aribanwa Lekki Ajah Lagos Jakande Lekki Lagos",₦,"17,675,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +38221,New 4 Bedroom Duplex At 3rd Roundabout Ikate Lekki Lagos,"Inside Madiba Enclave, 3rd Roundabout Lekki Phase 1 Lagos Ikate Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +38222,5 Bedroom Fully Detached Duplex+ Bq,"Lekki County Homes, Megamound Estate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38223,Luxury 5 Bedrooms Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +38224,Newly Built 4 Bedrooms Terraced Duplex In A Serene Environment In Chevron,"Leon Drive, Chevron Alternative Route Lekki Chevron Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +38225,5 Bedroom Semi Detached Duplex + Massive Bq,Lekki County Homes Megamound Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38226,"For Sale!!!! Brand New 5 Bedroom Lovely Duplex With All Rooms Ensuite,",Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +38227,4 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets,Lekki Phase 1 +38228,Luxurious 5bedroom Duplex For Sale In One Of The Most Secure Estate In Lekki,Megamound Estate 2nd Roundabout Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +38229,"Distress Sale Of 4bedroom Duplex In Chevyview Estate, Owner Needs Money",Chevyview Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,1,4 beds,5 baths,5 Toilets,Chevron +38230,Fully Detached 5 Bedroom Duplex,Opposite Victory Park Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38231,Massively Finished 5bedroom Duplex For Sale In Lekki,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +38232,Fully Detached Duplex,Behind Chevron Quarters Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,5 baths,6 Toilets,Chevron +38233,Lovely 4 Bedroom Duplex For Sale,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +38234,Exquisitely Finished 5 Bedroom Duplex,"Ebun Adegboruwa Street, Off Freedom Way, Itedo. Ikate Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +38235,An Exquisite New 5bedroom Fully Detached Duplex With Bq For Sale In Chevyview Estate,Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +38236,"22plots Of Land For Sale In Orchid Road, Lafiaji",Orchid Road Ikota Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Ikota +38237,"Beautifully Built 1, 2 And 3 Bedroom Flat For Sale",Mercedes Road Ikate Lekki Lagos,₦,"55,000,000",1,1,1, beds, baths, Toilets,Ikate +38238,4bedroom Semi Detached Duplex With 2rooms Bq For Urgent Distress Sale At Vgc,Gobu Vgc Lekki Lagos,₦,"62,000,000",0,0,1, beds, baths, Toilets,Victoria Garden City +38239,"Luxurious 5bedroom Duplex, Fully Detached For In Chevy View Estate Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +38240,Newly Completed 2 Bedroom Apartment In Lekki,"Ocean Bay Estate Along Orchid Hotel Road, Lekki Ii Peninsula Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +38241,Newly Built 4 Bedroom Maisonette In A Serene Environment,Ocean Bay Estate Along Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +38242,Brand New 4 Bedroom Semi Detached Duplex + Bq,Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38243,Cossy 5 Bedroom Terrace Duplex For Sale At Ikate Lekki Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38244,A Virgin Land Big Enough For Anything,"No 3 Hawau Abikan Str, Chevy View Estate, Chevron Lekki Lagos",₦,"550,000,000",0,1,0, beds, baths, Toilets,Chevron +38245,Newly 5 Bedroom Duplex In A Serene Neighborhood,"No 5 Hawau Abikan Str, Chevy View Estate. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,7 baths,8 Toilets,Chevron +38246,Luxurious 5bedroom Detached Duplex,Alfred Street Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38247,Luxurious 5 Bedroom Detached Duplex,Moore Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +38248,Luxurious 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +38249,Beautifully Detached 5 Bedroom Duplex,Close To Abiola Court Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38250,An Exquisite And Lovely 4 Bedroom Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38251,Luxurious And Superb Finished 4 Bedroom Duplex,Babington Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +38252,Luxurious 4bedroom Terrace Duplex,Bimbo Adenuga Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38253,Luxurious 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +38254,Luxurious 4bedroom Duplex,Moore Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38255,Luxurious 3bedroom Flat,Ivie Street Oral Estate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38256,Fantastic 2 Bedroom Flat,Eric Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +38257,Luxurious And Newly Built 5bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38258,Fantastic 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +38259,Luxurious 3 Bedroom Flat,Eric Ikate Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +38260,Fantastic 4 Bedroom Duplex,Babs Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +38261,"Newly, Lavishly Built 5 Bedroom Duplex With Bq At Lakeview Park 2, Lekki",Lafiaji Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38262,3 Bedroom Flat,Lekki Right Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38263,5 Bedroom Fully Detached Duplex+ Bq,Chevyview Estate Lekki Lagos,₦,"92,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38264,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38265,5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38266,Newly Built 5bedroom Fully Detached Duplex With Bq In A Serene Environment.,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38267,Governor's Consent,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +38268,Governor's Consent,Megamound Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +38269,Governor's Consent,"Jakande, Shoprite Road Jakande Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +38270,Luxury 4 Bedroom Terrace Duplex With A Room Bq For Sale,Ikate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +38271,"Well Maintained 4 Bedroom Semi Detached Dulpex In A Chevy View Estate,very Serene And Secured Estate","8,william Onoh Street,chevy View Estate,lekki,lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38272,Newly Built 4 Duplex In A Serene Neighborhood....,Elegushi Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikate +38273,4 Bedroom Semi Detached Duplex Plus 1 Room Bq,"8,william Onoh Street,chevy View Estate Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38274,Newly Built 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,10 baths,10 Toilets,Chevron +38275,24 Units Of 3 Bedrm Flats With 1 Bedrm Bq Attached To Each Flat,Elegushi Near House On The Rock Jakande Lekki Lagos,₦,"1,000,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +38276,Newly Build 5bedroom Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +38277,5bedroom Newly Built,No14 Idado Way Idado Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +38278,"A 6bedroom Duplex, Penthouse House, Immediately After Chevron Gate",Southern View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,7 beds,7 baths,7 Toilets,Chevron +38279,3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38280,A Newly 2bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,2 beds,2 baths,2 Toilets,Lekki Phase 1 +38281,Distress Sale 4 Bedroom Terraced Duplex For Sale @agungi Lekki,Agungi Lekki Agungi Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,5 baths,5 Toilets,Agungi +38282,Newly Built 5bedroom Fully Detached Duplex All Luxury Finished With Swimming Pool,Lekki County Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +38283,Newly Built 5bedroom Fully Detached Duplex All Luxury Finished With Swimming Pool For Sale @ Lekki County,Lekki County Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0, beds,6 baths,6 Toilets,Lekki Phase 2 +38284,3 Unit Of 4 Bedroom Terrace Duplex,After Second Toll Gate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38285,3 Units Of 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +38286,Lovely 4 Bedroom Detached Duplex For Sale,After Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38287,Lovely 4 Bedroom Semi Detached Duplex,After Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38288,Exquisitely Finished 4 Bedroom Semi Detached Duolex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +38289,Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38290,Plots Of Land In Southern Green Estate,"Lafiaji,behind Cooplag Gardens Lekki Phase 2 Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38291,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. .,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets,Ikota +38292,Brand New 3 Bedroom Terraced Duplex For Sale,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikate +38293,Newly Built 3bedrooms Terace Duplex.,Muritola Eletu Close. Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths,5 Toilets,Osapa London +38294,Tastefully Finished Fully Detached 5 Bedroom Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,9 baths,9 Toilets,Lekki Phase 2 +38295,Luxury 5bedroom Duplex.,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38296,Executive 5 Bedroom Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +38297,Newly Biult 5bedroom Duplex.,Atternative Root Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38298,Newly Built 5bedrooms Duplex For Sale..,Muritola Eletu Close. Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38299,1030sqm (corner Piece) Of Land In Pinnock Beach Estate.,Beside Femi Okunu Estate Road. Osapa London Lekki Lagos,₦,"180,000,000",1,0,0, beds, baths, Toilets,Osapa London +38300,4 Bedroom Fully Detached Duplex With Bq,"Eli Court Is At Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,0,0, beds, baths, Toilets,Chevron +38301,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38302,5 Bedroom Fully Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38303,4 Bedroom Semi Detached Duplex +bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38304,"A Plot Of Land Measuring 10,700sqm Facing Lekki Epe/shoprite,access From Admiralty,lekki.",Admiralty Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +38305,A Brand New 5bedroom Fully Detached Duplex In A Serene Environment,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38306,Brand New 5bedroom Fully Detached Duplex For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38307,Newly Built 4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38308,Newly Built 4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +38309,C Of O,Bogije Lekki Lagos,₦,"12,350,000",0,0,0, beds, baths, Toilets,Other Lekki +38310,Newly Build Fully Detached Duplex,Opposite Northwest Filling Station Vgc Ikota Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,4 baths,5 Toilets,Ikota +38311,Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38312,6 Bedroom Fully Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +38313,6 Bedroom Fully Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +38314,Newly Built 4 Bedroon Fully Detached Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38315,Newly Built Duplex For Sale,County Homes Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,4 Toilets,Ikota +38316,Certificate Of Occupancy,Bogije Ikate Lekki Lagos,₦,"12,350,000",1,0,0,6 beds, baths, Toilets,Ikate +38317,Newly Build 4 &5 Bedroom Detached Duplex,Opposite Northwest Filling Station Ikota Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,4 baths,5 Toilets,Ikota +38318,Newly Buit 4bedroom Terraced Duplex (1 Year Payment Plan Available),Hd Terrace Phase 2 Chevron Lekki Lagos,$,"125,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +38319,"Newly Built (4)bedroom Fully Detached Duplex At Chevron Alternative Route, Lekki Lagos","Hd Court @ Chevron Alternative Route, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +38320,Tastefully Build 3 Bedroom Flat In A Serene Environment,Otaiku Street Behind Primewater Gardens Lekki Phase 1 Ikate Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,4 Toilets,Ikate +38321,Newly Built 4bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki.pay And Pack In.,Osapa London Lekki Lagos. Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,6 beds,6 baths, Toilets,Osapa London +38322,A Superb Mansion With 2 Sitting Rooms And About 8 Rooms,"Utomi Aire, Along Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,1,8 beds,8 baths,8 Toilets,Lekki Phase 1 +38323,Semi Detached 4 Bedroom Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38324,5 Bedroom Fu;lly Detached Duplex Beunavista Estate,Beunoivista Estate By Orchid Road Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38325,Tastefully Built Semi Detached Duplexes(springs Field Gardesn 2),"Orchid Road,opposite Chevron Chevron Lekki Lagos",₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +38326,Luxury 4 Bedroom Semi Detached Duplex Up For Quick Sale,Conservation Way Chevron Lekki Lagos,₦,"40,000,000",1,0,1,4 beds,4 baths,5 Toilets,Chevron +38327,Affordable Newly Built 4 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38328,Luxury Newly Built 5 Bedroom Duplex With A Bq,Conservation Way By Chevron Tollgate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38329,A Serviced 4 Bedrooms Semi Detached Duplex In Gated A Estate,Conservation Road 2; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38330,3bedroom Terrace Duplex With Bq,"Close To Chevron, Toll Gate Axis Lekki. Chevron Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets,Chevron +38331,A Brand New Mini Apartment,Chevron Drive Chevron Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets,Chevron +38332,Newly Built Luxurious 7 Bedroom Detached House At Lekki Phase 1 N500m,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +38333,A Newly Built And Astonishingly Finished 5/6 Bedroom Duplex With 2 Rooms Servant Quarters,Pinnock Beach Estate Agungi Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38334,A Luxury & Serviced 4 Bedroom Semi Detached Duplex,Conservation Road 2 Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +38335,A Wing Duplex With A Room Bq,Oba Oyekan Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +38336,"3 Bedroom Terrace Duplex With Bq At Chevron, Lekki","Close To Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets,Chevron +38337,A Tastefully Finished 4 Bedroom Fully Detached House At Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38338,A Newly Built 4 Bedroom Duplex With 2 Room Bq,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38339,Exquisitely Finished 4bedroom Fully Detached Duplex With Bq,"Chevron Alternate Drive,lekki Lagos State. Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38340,Newly Built 5 Bedrooms + 2 Rooms Bq Fully Detached Duplex,Pinnock Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,8 baths,8 Toilets,Lekki Phase 1 +38341,Astonishingly Finished 5 Bedroom Duplex,Nicon Town Ikate Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38342,A Luxury & Serviced 4 Bedroom Semi Detached Duplex,Conservation Road 2 Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38343,"Fully Detached 4 Bedroom Duplex With Bq In Phase 2 Creek Avenue Court, Lekki.","Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"46,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +38344,A Newly Built And Luxury 24 Unit Of 3 Bedroom Flat + Servant Quarters,Elegushi Ikate Lekki Lagos,₦,"1,100,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikate +38345,Land For Sale At Lekki Express By 3rd Roundabout,Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38346,Plots Of Land For Sale,Chevron Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38347,A Newly Built 3 Bedroom Terrace Duplex With A Room Servant Quarters,Lekki County Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikota +38348,"A Brand New 4 Bedroom Luxury Serviced Town House With A Room Bq, At Ikate",Ikate Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +38349,A Newly Built 5 Bedroom With 2 Rooms Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +38350,Superbly Newly Built And Astonishingly Finished 5 Bedroom Detached Duplex,Northern Foreshore Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38351,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chelvron Altenative Drive, Lekki Chevron Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets,Chevron +38352,A Luxury & Serviced 3 Bedroom Terrace In Gated Estate,Conservation Road 2 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38353,En Suit Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38354,A Newly Built 5 Bedroom Semi Detached With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +38355,A Luxury & Serviced 3 Bedroom Terrace In A Gated Estate,Conservation Road 2; Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38356,A Luxury & Serviced 5 Bedroom Detached Duplex,Conservation Road 2 Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38357,4 Bedroom Corner Piece Terrace,Agungi Agungi Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38358,A Tastefully Finished 4 Bedroom Town House At Agungi,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,1,4 beds,4 baths,5 Toilets,Agungi +38359,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos. Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +38360,A Massive And Enterprising Hotel,Lekki Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38361,A Newly Built And Astonishingly Finished 5/6 Bedroom Duplex With 2 Rooms Servant Quarters,Pinnock Beach Estate Agungi Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38362,A Well Maintained And Astonishingly 5 Bedroom Duplex,Nicon Town Ikate Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38363,A Newly Built And Astonishingly Finished 5 Bedroom Detached Duplex With 2 Rooms Servant Quarters,Northern Foreshore Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38364,A Tastefully Finished 4 Bedroom Semi Detached With A Room Bq,Off Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38365,A Stylish Fully Furnished And Fully Equipped Brand New 4 Befrrom En Suit Duplex,"Osapa London Lekki, Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +38366,A Newly Built 5 Bedroom Semi Detached House, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38367,"4300sqm Land At Fountain Springville Estate Lekki, Lagos","Fountain Springville Estate, Lekki Lekki Lagos",₦,"210,000,002",0,0,0, beds, baths, Toilets,Other Lekki +38368,Newly Built Modern 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets,Chevron +38369,Serviced 4 Bedrooms Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets,Agungi +38370,Finished 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38371,4 Bedrooms Semi Detached Duplex With 1room Bq,Idado Estate Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Other Lekki +38372,4 Bedroom Semi Detached With 1 Room Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets,Ikota +38373,Newly Built 5 Bedroom Terrace Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38374,4 Units Of 4 Bedroom Terraces At Ikate Elegushi [redacted],Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +38375,Newly Built Lovely 5 Bedroom Fully Detached Duplex At 2nd Roundabout Lekki Luxury 5 Bedroom Fully Detached Duplex,2nd Roundabout Lekki By Petrocam Osapa London Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +38376,"Newly Built 4 Bedrooms Semi Detached Duplex, Furnished With Bq.",Idado Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,6 Toilets,Other Lekki +38377,"8 Units 3 Bedrm Office Complex Sitting On 850sqmts Land Good For Citing Of Banks, Churches, Eateries, Pharmacitical Complex, Furniture And Electronics Showrooms Directly Facing Lekki Expressway","38, Idao Rd Off Jakande Lekki Jakande Lekki Lagos",₦,"350,000,000",0,0,0,3 beds,1 baths,1 Toilets,Other Lekki +38378,Own 2 Bedroom Apartment At Abijio Gra,Lekki Phase 2 Lekki Lagos,₦,"10,500,000",1,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +38379,3 Bedrooms Terrace Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,5 Toilets,Chevron +38380,Beautifully Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38381,"1534sqm Plot Of Land, Fenced For Sale",Off Orchid Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +38382,New And Classy 4 Bedroom Duplex,Chevron Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38383,Tastefully Built 4 Bedroom Terrace In A Serene Environment,Otaiku Street Behind Primewater Gardens Lekki Phase 1 Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +38384,Newly Built 4 Bedroom Semi Detached Duplex With Bq In A Serene Environment,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +38385,Newly 4 Bedroom Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Agungi +38386,Brand New 5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38387,A Newly Buillt 5 Bedroom Fully Detached Duplex In A Serene Environment,Ikate Elugushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38388,5 Bedroom Fully Detached Duplex In A Serene Environment,Lekki Conservative Agungi Lekki Lagos,₦,"43,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +38389,Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38390,5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38391,Newly Built 4 Bedroom Duplex For Sale At Lakeview Park Ii,"Lakeview Park Ii, Lafiaji, Off Lekki Expressway Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38392,Tastefully Finished 4 Bedroom Duplex With Bq For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38393,Luxuriously Finished 5 Bedroom Terrace,"Osapa London, Close To Shoprite Osapa London Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +38394,5 Bedroom Duplex At Vgc For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +38395,Newly Built 5bedroom Penthouse,"Off Adewunmi Adebimpe Drive, Marwa Lagos Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38396,Neatly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +38397,Newly Built 4 Bedroom Duplex With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38398,5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38399,4 Nos Of 4 Bedroom Terrace Duplex With A Boy's Quarter (town Houses),Logos Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38400,5 Bedroom Semi Detached Duplex With A Boys' Quarter,"Hebert Oriji Street, Off Femi Okunnu Road, Osapa London, Lekki, (7th Avenue) Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38401,90 Plots Of 600sqm Dry Land,Orchid Road By Orchid Hotel Lekki Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38402,90 Plots Of 600sqm Dry Land In An Estate,Orchid Road By Orchid Hotel Lekki Chevron Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets,Chevron +38403,90 Plots Of 600sqm Land,"Orchid Road By Orrchid Hotel ,lekki Chevron Lekki Lagos",₦,"28,000,000",0,0,0, beds, baths, Toilets,Chevron +38404,4 Bedroom Semi Detached Duplex,Off Road 5 Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +38405,960 Sq.mtrs. Of Land,Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38406,Fenced Prime Land,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38407,Amazing 5 Bedroom En Suite Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +38408,"Newly Built 7 Unit Terraces, 4 Bedrooms With 1 Servant Quarters With Good Road Access, Proximity To The Atlantic Ocean",Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +38409,5 Bedroom Fully Detached Apartment,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38410,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38411,Newly Built4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +38412,Newly Built 4 Bedroom Semi Detached Duplex,Jakande Shoprite Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets,Osapa London +38413,Newly Built 4 Bedrooms Semi Detached Duplex With Bq In Daniel's Garden Lekki,"Osapa London, Lekki Lagos Igbo Efon Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Lekki +38414,Exquisetely Finished 4 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38415,Land,"Lekki Phase 1, Ilasan Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38416,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki.,"Chevron Alternative Drive, Lekki Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38417,A 4 Bedroom Semi Detached Duplex With Bq,Creek Avenue Court Phase 1 Ikota Lekki Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds, baths, Toilets,Ikota +38418,Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.,"Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38419,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38420,Exclusively Finished 4bedroom Fully Deterched Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38421,Newly Built 4 Bedroom Semi Detached House For Sale In A Serene And Secured Environment,Van Daniel's Close Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +38422,An Exquisitely Finished 4 Bdrm Detached Duplex Located In Lekki.,Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets,Victoria Garden City +38423,Newly Built 4 Bedroom Semi Detached Duplex In A Mini Estate,N/a Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +38424,"Registered Survey, Layout, And Deed Of Assignment.","Ilamija, Close To New Lekki International Airport, Lekki Lekki Phase 1 Lekki Lagos",₦,"900,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +38425,Four Bedroom Detached House For Sale,"Engr Enemoh, Off Freedom Way,lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38426,Four Bedroom Detached House For Sale,"36b Ladi Alakija Crescent, Lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38427,Newly Built 5bedroom All Exquisite Luxury Duplex With Top Notch Finishing For Sale.,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets,Chevron +38428,Newly Built4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +38429,"Well Built Shop For Sale At Ikota Shopping Complex Vgc, On Road 1. Good Title.6m",Road 1 Ikota Shopping Complex Vgc Lekki Lagos,₦,"6,000,600",0,0,0,1 beds,1 baths,1 Toilets,Victoria Garden City +38430,Premium 3 Bedroom Flats In Atlantic View Estate,"Atlantic View Estate, Alhpa Beach Road Chevron Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38431,"Newly Built 4 Bedroom Duplex In Ikota, By Megachicken",Road 5. Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +38432,Newly Built 4 Bedroom Duplex In Osapa London.,Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +38433,Exquisite 5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38434,4 Units Of 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +38435,Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38436,4 Bedroom Fully Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38437,Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38438,Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38439,A Condo Studio Apartment In Jumeirah Uae Dubai,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets,Lekki Phase 1 +38440,1111sqm Bareland At Bakare Estate(bera Estate) By Uba Bank Off Chevron Drive.,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38441,2000 Square Meter Land, Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38442,2000 Sqm Of Land At Bakare Estate Off Chevron Drive Title Deed And Global C Of O Price 180m Asking,Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Chevron +38443,Land, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38444,"12 Nos Of 4 Bedroom Semi Detached Duplex With Bq, New",Good Location On Chevron Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38445,5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38446,Hampton Lake Estate By Chevron Hq,"Chevron Hq Road, Lekki Lagos. Chevron Lekki Lagos",₦,"60,000,000",0,1,0, beds, baths, Toilets,Chevron +38447,5 Bedroom Fully Detached Duplex With Bq,Jakande On Shoprite Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38448,Luxurious 5 Bedroom Duplex With 2 Rooms Bq,Pinock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38449,Exquisite Mansion At Lekki,Lekki County Megamond Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +38450,"8 Nos Of 4 Bedroom Fully Detached Duplex With Bq, New",On Chevron Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38451,Luxurious 4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38452,Lovely 4 Bedroom Fully Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38453,"8 Nos Of 4 Bedroom Semi Detached Duplex With Bq, New",Inside Chevy View By Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38454,Exquisite 4 Bedroom Duplex With Bq,Pinock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38455,4 Bedroom Fully Detached Duplex With Swimming Pool,Chevy View Estate; Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38456,4 Bedroom Fully Detached Duplex With Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38457,"4 Bedroom Terrace Duplex, With Bq, Penthouse",In Bene Vista Estate By Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38458,5 Bedroom Fully Detached Duplex With Bq,Can Be Use For Commercial Or Resident Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38459,2 Floor Of 5 Bedroom Semi Detached Duplex With Bq,"Jakande, By Shoprite Road Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38460,Executive 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38461,Affordable 3 Bedroom Apartment With Detached Bq,"Admiralty Way, Close To Tantalize Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +38462,4 Bedroom Terrace Duplex,Conserbation Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,3 Toilets,Chevron +38463,Lovely 4 Bedroom Fully Detached Duplex With Bq,"Orchid Hotel Road, Ikate Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +38464,4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38465,2 Floor Of 5 Bedroom Fully Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38466,5 Bedroom Fully Detached Duplex With Bq,Chevron Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38467,5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38468,Lovely 5 Bedroom Semi Detached Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +38469,British Design 4 Bedroom Terrace Duplex With Bq,Agungi Road Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +38470,5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38471,Residential Or Commercial 8856sqm Bareland With C Of O.,"Directly On Lekki Epe Express Way, Beside Vgc Vgc Lekki Lagos",₦,"1,300,000,000",0,0,0,1 beds,1 baths,1 Toilets,Victoria Garden City +38472,2 Floor Of 5 Bedroom Fully Detached Duplex With Bq,Elegucshi Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38473,"5 Bedroom Fully Detached Duplex With Bq, New",Inside Chevy View By Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38474,5 Bedroom Fully Detached Duplex With Bq,"Lekki County Homes Megamound, Best Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38475,4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38476,Luxury 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +38477,3 Bedroom Terrace Duplex,Conservation Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38478,Exqusitely Finished 4bedroom Semi Detached Duplex At Ikate Phase 1,Ikate Phase 1 Lekki. Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +38479,5 Bedroom Fully Detached Duplex With Bq,Off Adimralty Road Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38480,5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Megamound (best Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38481,"5 Bedroom Fully Detached Duplex With Bq, Comercial Or Resident",Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38482,Executive 5 Bedroom Duplex With Penthouse Bq,Pinnock Beach Estate. Osapa London Lekki Lagos,₦,"220,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +38483,Luxury 5 Bedroom Detached Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +38484,5 Bedroom Fully Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +38485,Newly Built And Well Furnished 5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths, Toilets,Chevron +38486,"Allocation, Deed Of Assignments",Alpha Beach Rd Igbo Efon Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,3 baths,4 Toilets,Other Lekki +38487,4 Bedroom Semi Detached Duplex At Chevron Estate,Street 41 Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38488,5bedroom Terrace In Lekki Phase 1,Street 40 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38489,"Newly Built Bedrooms Mansion, In The Serene And Prestigious Peanock Estate. It's A Dream House For A Family That Desires One.it Comes With A Cinema, Penthouse, Swimming Pool And Ample Parking Spaces. Call Today To Book A Visit.",5 Peanock St Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +38490,5bedroom Duplex In Vgc,Vgc Lekki Vgc Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +38491,Plots Of Land,Ogombo Road By Abraham Adesanya Roundabout Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38492,"4 Bedroom Detached Duplex, For Sale In Elegushi, Lekki, Lagos",Elegushi Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38493,4 Bedroom Terrace In Lekki Right Hand Side,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38494,"Newly Built 4 Units, 4 Bedrooms Detached",14 Maiyegun St Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38495,Detached Duplex With Ample Parking,Off Ajiran Road Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38496,Land,Orchid Hotel Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38497,5bedroom Duplex In Peanock Beach Estate Lekki,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38498,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +38499,4bedroon Duplex At Chevron Alternative Road,Chevron Alternative Road Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38500,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +38501,5bedroom Duplex In Peanock Beach Estate Lekki,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38502,Newly Built 4units Of 3 Bedroom Terraces,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38503,5bedroom Duplex In Lekki County,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +38504,Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Jakande Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38505,Governors Consent,Road 35 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +38506,Newly Built 4 Bedroom Semi Detached Duplex+ Bq,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38507,4 Bedroom Terrace Duplex On 3 Floors.,"Abiola Court, Agungi Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38508,Exquisite 5 Bedroom Fully Detached Duplex At Chevy Alt Route,Chevy Alternative Route Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38509,Newly Built 2units Of 4bedroom Semidetached House In A Serene Environment In Oral Estate. Almost Complete.,Oral Estate Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38510,Newly Built 5bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38511,Newly Built 4 Bedroom Duplex,Tobioba Street Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +38512,Newly Build 4 And 5 Bedroom Fully Detached In Mini Estate,Ikota Lekki Lagos,₦,"55,000,000",1,1,1,5 beds, baths, Toilets,Ikota +38513,Land Excision And Governor's Consent,Kusenla Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +38514,"5bedroom Detached House Opposite Bera Estate Opposite Chevron Nigeria Hq, Lekki , Lagos.","Opposite Bera Estate Opposite Chevron Nigeria Hq, Lekki , Lagos. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38515,5bed Room Semi Detached House With Bq.walking Closet.spacious Kitchen.study Room.waiting Room.spacious Balcony With A Sea View.spacious Compound To Take About 4 5 Cars.24/7 Clean Water Access.affordable Estate Charges.24 Hours Security,Oral Estate Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets,Other Lekki +38516,A Newly Built Units Of 3 Bedroom Apartment In A 24 Hours Security Secured Gated Estate In Lekki.,Oral Estate Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Lekki +38517,A Newly Built 6 Units Of 2 Bedroom Apartment In A 24 Hours Security Secured Gated Estate In Lekki.,Oral Estate Lekki Lagos,₦,"22,000,000",0,1,1,2 beds,3 baths,3 Toilets,Other Lekki +38518,A Newly Built 4 Bedroom Semi Detached Duplex In A Secured Gated Estate In Lekki.,Idado Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +38519,A Newly Built 4 Bedroom Semi Detached Duplex In A Secured Gated Estate In Lekki.,Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +38520,Brand New Semi Detached House In Osapa London Lekki,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38521,A Newly Built 4 Bedroom Duplex With 2 Living Room And A Bq On 450sqmt,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Agungi +38522,Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Ikota Villa Estate, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38523,Fully Detached Duplex,Gbola Salami Street; Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +38524,3 Bedrooms Flats,Allan Balogun; Osapa London Lekki Lagos,₦,"32,000,000",0,0,1,3 beds,3 baths,4 Toilets,Osapa London +38525,4 Bedroom Duplex,Bourdillon Court Estate Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +38526,"5 Bedroom Duplex For Sale Within An Estate At Maruwa, Lekki. 100million Asking",Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +38527,"A Fenced 1000sqm Land Beside Lekki Gardens Housing Estate, Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Ikate +38528,4 Bedroom Terrace Duplex,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +38529,2 Bedroom Flat,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +38530,4 Bedroom Fully Detached Duplex With A Bq,"Chevron Alternative Road, Adjacent To Atlantic Mall Chevron Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38531,4 Bedroom Semi Detached Duplex With A Bq,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets,Ikate +38532,4 Bedroom Terrace Duplexes,"Orchid Road, By Second Lekki Toll Gate, Lekki Phase 1 Lekki. Chevron Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38533,4 Bedroom Terrace,Behind Madiba Court Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikate +38534,4 Bedroom Semi Detached Duplex With Bq For Sale,"Orchid Road By Second Lekki Toll Gate, Lekki Lagos. Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38535,4 Bedroom Semi Detached Duplex,Chevron Drive. Alternative Road Adjacent To Atlantic Mall Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38536,3 Bedroom Terrace Duplexes For Sale,Orchid Road By Second Lekki Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38537,4 Bedroom Fully Detached Duplex With Bq For Sale,"Orchid Road By Second Lekki Toll Gate, Lekki Lagos. Chevron Lekki Lagos",₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38538,4 Bedroom Semi Detached Duplex With A Bq,"Pinnock Beach Road, Ajiran Jakande Jakande Lekki Lagos",₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38539,4 Bedroom Terrace Duplex,"Pinnock Road, Ajiran, Lekki Lagos. Jakande Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38540,"Serviced Plot In A Serene Estate Developed By Nlng Staff Coop With Well Layed Our Road , Drainage And Recreational Services",Nlng Cowry Creek Estate Ikate Lekki Lagos,₦,"90,000,000",1,1,0, beds, baths, Toilets,Ikate +38541,Prime Plot Ideal For Redevelopment In A Fully Gated And Serviced Estate,Serviced Plot In A Gated Estate With Good Road Network And Drainage System At Diamond Estate Off Monastry Road Via New Shoprite Mall Sangotedo Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 2 +38542,Distress Sale : 4 Unit 4 Bedroom Semi Detached Duplexes With 1 Room Attached And A Gate House,Jasper Ike Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38543,5 Bedroom Fully Detached Duplex+ Bq,Ikota Villa Estate Lekki Lagos,₦,"4,500,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38544,4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38545,Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38546,Newly Built 5 Bedroom Fully Detached Duplex With A Lovely Bq.,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +38547,A Residential Development Of An Exquisite 4 Bedroom Townhouse + Bq,Platinum Way Nicon Town Lekki Lagos,₦,"122,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38548,Newly Built 5 Bedroom Semi Detached Duplex With 1 Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38549,Well Furnished,Rasaq Eletu Street Behind Shotrite Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets,Osapa London +38550,4 Bedrrom Duplex,Rasaq Eletu Street Osapa London Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +38551,Amazing Fully Detached 4 Bedroom Duplex For Sale At Chevron Lekki.,Nicon Town Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +38552,"A Tastefully Finished,cute 4 X 4 Bedroom Duplex In Osapa London, Lekki For Sale",Opposite Seebuff Plaza Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,10 beds,10 baths,10 Toilets,Osapa London +38553,4 Bedroom Semi Detached Duplex In Lekki Phase 1,Off Freedom Road Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38554,Hottest Deal: 4 Bedroom Detached Duplex With Bq At Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38555,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +38556,600sqm Of Land,"Vintage Park Estate, 4th Roundabout Lekki Lagos",₦,"96,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38557,Newly And Tastefully Finished 5 Bedroom Detached House With Swimming Pool,"Oba Okunade Sijuade Close, Chevy View Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38558,Newly And Tastefully Finished 4 Bedroom Wing Of Duplex With Boys Quarter,"Oba Okunade Sijuade Close, Chevy View Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38559,Lovely 4 Bedroom Duplex,Lekki County Home Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38560,Newly Built 5 Bedroom Fully Detached Exclusively Finished Duplex With Boys Quarter,Spring Bay Estate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +38561,Newly Built 5 Bedroom Fully Detached Exclusively Finished Duplex With Boys Quarter,Pinnock Estate Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38562,2500sqm Land With Water Front For Joint Venture,"Atlantic View Estate, New Road. Igbo Efon Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38563,5 Bedroom Duplex,Chevron Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38564,Luxuriously Built 6 Bedroom Duplex With Swimming Pool,Admiralty Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +38565,Exotic Finished 4 Bedroom Semi Detached Duplex With Boys Quarter,Creek Court Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +38566,84 Hectares Of Land,Behind Chevron Chevron Lekki Lagos,₦,"35,000,000,000",0,0,0, beds, baths, Toilets,Chevron +38567,3 Bedroom Terraced Duplex With Boys Quarter,Bella Homes 1 Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38568,5 Bedroom Wing Of Duplex With Boys Quarter On 500sqm,Wumego Street Off Christ Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38569,Newly Built Luxurious Expatriate 4 Bedroom Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +38570,4 Bedroom Duplex + Bq,Osapa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +38571,Govt Excision,"Plot 18,udo Wogu Drive,chevy View Estate,off Chevron Drive, Lekki,lagos Ilasan Lekki Lagos",₦,4,0,1,0, beds, baths, Toilets,Other Lekki +38572,Exquisitely Built Fully Detached 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38573,Beautifully Built 2 Unit Of 5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +38574,New Estate,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38575,3 Bedroom Flat/apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,2 baths,2 Toilets,Lekki Phase 1 +38576,Governor's Consent,Behind Petrocam Close To Citi Lodge Hotel 2nd Round About Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +38577,4 Bedroom Terraced Houses,"Adedeji Adekola, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38578,Land,Elegushi Lekki Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,1 Toilets,Lekki Phase 2 +38579,7 Bedroom Duplex,Beside Diamond Bank Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +38580,Penthouse, Jakande Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38581,4 Bedroom Semi Detached House,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +38582,2 Bedroom Apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +38583,4 Bedroom Semi Detached House,Behind Middle Hall School Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +38584,Land,Okun Ajah Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +38585,4 Plots Of Land For Sale,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +38586,Land,Bodije Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38587,Land 1002sqm, Vgc Lekki Lagos,₦,"135,000,000",0,1,0, beds, baths, Toilets,Victoria Garden City +38588,"Land 600, 800 & 900 Sqm",Orchid Hotel Road Chevron Lekki Lagos,₦,"27,000,000",0,1,0, beds, baths, Toilets,Chevron +38589,Land,Elegushi Lekki Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38590,Land,Ologolo Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +38591,1 Plot Of Fenced Dry Land,Ajiran Agungi Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +38592,Land,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38593,3 Bedroom Flat,Tunde Laitan Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38594,4 Bedroom House Plus A Bq, Lekki Phase 1 Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38595,3bedroom Semi Detached Duplex,Chevron Roundabout Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38596,"4 Bedroom Semi Detached Duplex Off Alpha Beach Road, Lekki",Alpha Beach Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +38597,Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38598,600sqm Cofo At Royal Arcade Awoyaya,Royal Arcade Awoyaya Lekki Phase 2 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38599,600sqm Cofo At Platinum Garden Lekki Origanringan,Platinum Garden Lekki Origanringan Lekki Phase 2 Lekki Lagos,₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38600,600sqm Cofo At Almond Garden. Origanringan Lekki Free Trade Zone,"Almond Garden, Origanringan Lekki Lekki Phase 2 Lekki Lagos",₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38601,"600sqm Cofo At Diamond Spring, Origanringan Free Trade Zone","Diamond Spring. Origanringan, Free Trade Zone Lekki Phase 2 Lekki Lagos",₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38602,"600sqm With Gazette At Vellore Garden, Lekki Town","Vellore Garden, Lekki Town Lekki Phase 2 Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +38603,Plot For Inside Beechwood Estate Shapati Lekki Global C Of O,Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38604,Spacious 5 Bedroom With 100% Facilities In A Serene Environment,"Heritage Place Estate* Monastery Road Behind Novare Mall (shoprite) Sangotedo, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +38605,Contemporary Styled 4 Bedroom Town Houses,Just Before Agungi Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Osapa London +38606,Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38607,Exotically Finished 4 Bedroom Semi Detached Duplex,"Few Minutes Drive From The Lekki 2nd Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikota +38608,Beautiful And Well Built 4 Bedroom Semi Detached House In .ikate Elegushi,Eleguishi Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38609,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Few Minutes From Osapa Bus Stop Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets,Osapa London +38610,5 Bedroom Fully Detached Duplex + Bq,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38611,4 Bedroom Terrace,Bera Estate Chevron Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38612,A Stylish Fully Furnished And Fully Equipped Brand New 4 Bedroom Fully Detatchedduplex,"Daniel's Garden Lekki Located At Osapa London, Lekki Before Agungi, Igbon Efon And Also Minutes Before Chevron. Osapa London Lekki Lagos",₦,"49,000,000",1,1,1,4 beds,6 baths,6 Toilets,Osapa London +38613,Brand New 4 Bedroom Semi Detached Duplex With Bq In The Serene High End Of Lekki Environment.,"Creeks Avenue Court Is Located Close To The Toll Gate At Chevron, Ikota, Lekki, Lagos.ki Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets,Ikota +38614,"A Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate,ikate Lekki Phase 7 Lagos.","Madiba Estate Ikate Lekki,phase 7 Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikate +38615,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds, baths,5 Toilets,Ikota +38616,Bella Homes Phase 2 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.,"Close To Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"36,000,000",0,1,0, beds, baths, Toilets,Chevron +38617,5 Bedroom Fully Detached + Bq,Bera Estate Lekki Lagos,₦,"71,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38618,For Sale 3bdrm With Bq And 5bdrm With Bq,Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +38619,Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +38620,4 Bedroom Triplex, Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets,Agungi +38621,Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki. Pay And Pack In.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +38622,The Grand Atrium Event Centre For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38623,Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38624,"Brandnew 4 Bedroom Semi Detached Duplex ( All Ensuite ) Luxurious Fittings And Amenities,",Oral Estate By Ikota Lekki Lagos Oral Estate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Lekki +38625,Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38626,Distress Sale Solid 5 Bedroom Duplex With Penthouse And 2 Rooms Bq . The Owner Want To Relocate To Usa,Awoysya Ikate Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38627,"Fast Selling: Plots Inside Beechwood Shapati, Lekki",Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38628,Luxury 5 Bedroom En Suite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +38629,Brand New Lovely 5 Bedroom Detached House At Osapa Lekki,"Osapa, Lekki Osapa London Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +38630,Brand New 4 Bedroom Semi Detached House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38631,5 Bedroom Semi Detached House With A Penthouse,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +38632,Lovely Five(5) Bedroom Detached House At Ikota Villa Estate,"Ikota Gra, Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +38633,4 Bedroom House On 500sqm,Pinnock Beach Estate Jakande Lekki Lagos,₦,"133,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38634,4 Bedroom Semi Detached House,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +38635,Brand New Lovely 4 Bedroom At Pinnock Beach Estate With A Lovely Water View,"Pinnock Beach Estate, Osapa Lekki Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +38636,5 Bedroom Detached House, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +38637,"5 Bedroom Detached House At Victory Park Estate, Lekki","Victory Park Estate, Lekki Lekki Lagos",₦,"115,000,000",1,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38638,Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment,"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +38639,Lovely 5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +38640,"Lovely Brand New 4 Bedroom Detached House At Ikate Elegushi, Lekki","Ikate Elegushi, Lekki Ikate Lekki Lagos",₦,"86,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikate +38641,3 Star Hotel With 39 Rooms 2 Penthouses 2 And 3 Bedroom Flat,"Off Orchid Hotel Road, Lafiaji, Chevron Lekki Lagos",₦,"650,000,000",1,0,1,10 beds,10 baths,10 Toilets,Chevron +38642,Brand New 5 Bedroom Detached House 900sqm,"Pinnock Beach Estate, Lekki Lekki Lagos",₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets,Other Lekki +38643,Luxury 3 Bedroom Apartment In Lekki,"By Pinnock Beach Estate, Lekki Jakande Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,4 baths, Toilets,Other Lekki +38644,Serviced Well Finished 5 Bedroom Terrace,"Off Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +38645,Brand New Lovely 4 Bedroom Detached House Lagoon View,"Pinnock Beach Estate, Lekki Osapa London Lekki Lagos",₦,"165,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +38646,5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +38647,"Commercial Property On Lekki Epe Expressway 3,700sqm","Lekki Epe Expressway, Jakande Lekki Jakande Lekki Lagos",₦,"1,200,000,000",0,0,0, beds,10 baths,10 Toilets,Other Lekki +38648,Lovely Five(5) Bedroom Detached House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +38649,Lovely Brand New 5 Bedroom Detached House With A Swimming Pool And Equipped Gym 864sqm,"Pinnock Beach Estate, Lekki Lagos Jakande Lekki Lagos",₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38650,"Lovely And Spacious 5 Bedroom Semi Detached At Atlantic View Estate, Lekki","Atlantic View Estate, Alpha Beach Road, Lekki Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38651,4 Bedroom Semi Detached Duplex For Sale, behind Ikota School Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +38652,Brand New 4 Bedroom Semi Detached House 24hrs Power Supply,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +38653,Land,"Royal Gardens Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38654,Tastefully Finished 5 Bedroom Detached House,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +38655,4 Bedroom Semi Detached House,"Pinnock Beach Estate, Ikate Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +38656,Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment (7th Floor),"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +38657,Luxury 5 Bedroom Detached House At Chevy View Estate,"Chevy View Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"87,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +38658,4 Bedroom Terrace Duplex,"Orchid Hotel Road, By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38659,Lovely Brand New 5 Bedroom Detached House With A Swimming Pool And Equipped Gym 864sqm,"Pinnock Beach Estate, Lekki Lagos. Jakande Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +38660,Beautifully Built Brand New 5 Bedroom Detached House With A Swimming Pool 900sqm,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +38661,Brand New Tastefully Finished 5 Bedroom Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"133,000,000",0,1,0,5 beds,6 baths,6 Toilets,Osapa London +38662,4 Bedroom Semi Detached House,"Whiteoak Estate, Ologolo Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +38663,Brand New Lovely 4 Bedroom Semi Detached In A Fully Serviced Estate 24 Hrs Power,"Vintage Park 2, Osapa Lekkk Oral Estate Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Lekki +38664,Tastefully Finished Detached House In Vgc,Off Road 3 Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38665,Commercial Open Plan Space,Fola Osibo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38666,"Five(5) Bedroom Detached House In Royal Garden Estate, Lekki","Royal Gardens Estate, Ajah Lekki Lekki Phase 2 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +38667,Well Crafted Five(5) Bedroom Detached House,"Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +38668,Brand New 4 Bedroom Semi Detached House,"Whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +38669,Newly Built Luxury 5 Bedroom Detached House,"Off Road 2, Vgc Vgc Lekki Lagos",₦,"205,000,000",1,1,0,5 beds,6 baths,6 Toilets,Victoria Garden City +38670,Luxury 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38671,4 Bedroom Terraced Duplex For Sale At Ikate,"Parkhust Luxury Apartment, Alma Beach Estate, By Mercedes Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikate +38672,Luxury 4 Bedroom Terraced Duplex At Ikate,"Perimter Court1, Madiba Enclave Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +38673,2 Plot Of Land,Chevron Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets,Chevron +38674,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38675,5 Bedrooms Fully Detached Duplex,"Augustina Orji Street, Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +38676,5 Bedrooms Terraced Duplex,"Ugochukwu Orji Street, Behind Spg Building Igbo Efon Lekki Lagos",₦,"42,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38677,Classy 3 4 Bedroom Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38678,Exotic 5 Bedroom Duplex With One Room Bq, Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +38679,Newly Built Semi Detached 5 Bedroom Duplex,Chief Bamidele Eletu Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +38680,Exquisite And Luxury 5 Bedroom Terrace Duplex,Lekki Conservative Road Opposite Chevron Lekki Lagos,₦,"50,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38681,4 Bedrooms Terraced Duplex,"Ugochukwu Orji Street, Behind Spg Building Chevron Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38682,3 Bedrooms Terraced Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +38683,3 Bedrooms Terraced Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets,Chevron +38684,4 Bedrooms Semi Detached Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +38685,5 Bedrooms Fully Detached Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38686,Newly Built 4 Bedrooms Terrace,Adjacent Abiola Court 10 Chevron Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38687,"Inside Beechwood Estate Shapati, Lekki","Inside Beechwood Estate Shapati, Lekki Ilasan Lekki Lagos",₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Lekki +38688,A 4 Bedroom Semi Detached Masionnette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38689,Newly Built 5 Bedroom Fully Detached Duplex + Bq At Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38690,6 Flats Of 3 Bedroom.,"7,lekki County,ikota Estate Ikota Lekki Lagos",₦,"180,000,000",0,0,0,3 beds, baths, Toilets,Ikota +38691,Newly Built 3 Bedroom Terrace Apartment At Osapa London N46m,Osapa London Osapa London Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +38692,4 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38693,Newly Built And Well Finished 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38694,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38695,Luxury Beautifully Built 5bedroom Duplex Mansion With Bq In Ikate,Estate Close To House On Thee Rock Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikate +38696,Brand New Massive 5 Bedroom Fully Detached Duplex,Before Chevron Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38697,Exquisite 5 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38698,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38699,"Luxury Spacious 4bedroom Duplex With Bq In Osapa, Lekki",Canal West Estate Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +38700,4 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38701,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38702,Beautiful 4 Bedroom Semi Detached Duplex With Bq,"Gate 2, Ikota Villa Estate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38703,4 Units Of 4 Bedroom Terrace House,Bakare Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38704,Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38705,"Luxury Foreign 4bedroom Fully Detached Duplex With Bq In Canal West Estate,osapa,lekki",Canal West Estate Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +38706,Luxury Beautiful5 Bedroom Fully Detached Duplex With Bq,. Oral Estate Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,7 Toilets,Other Lekki +38707,Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38708,4 Bedroom Semi Detached Duplex +bq,Osapa Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +38709,5 Bedroom Fully Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38710,Luxury Very Spacious 4bedroom Duplex For Sale,Estate Close To The Express Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ologolo +38711,Lovely 4 Bedroom Fully Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +38712,5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38713,4 Bedroom Terrace,2nd Toll Gate By Orchid Road Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38714,3 Bedroom Flat,Alpha Beach Road Lekki Lagos,₦,"25,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Lekki +38715,4 Bedroom Detached Duplex,Ilaje Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +38716,A Uniquely Built And Well Finished 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +38717,Exquisite 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38718,3 Bedroom Terrace Duplex,Ilaje Opp Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +38719,5 Bedroom Detached Duplex,Chevron Drive Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38720,"Super Luxurious Massive 5bedroom Duplex With Bq In Osapa London,lekki",Osapa Lekki Lekki Lagos,₦,"102,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38721,Tastefully Finished 4 Bedroom Detached Duplex With Indoor Swimming Pool,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38722,Newly Built 4 Bedroom Semi Detached Duplexes With Bq,Pinnock Beach Estate; Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38723,A Newly Built 4 Bedroom Terrace House,Southern View Estate Opposite Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38724,Amazing 5 Bedroom Fully Detached Duplex,Before Chevron Drive Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38725,4 Bedroom Detached Duplex With An Indoor Swimming Pool,Chevron Drive Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38726,A Newly Built 3 Bedroom Flat,Victoria Crest Estate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38727,4 Bedroom Semi Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38728,Amazing 5 Bedroom Detached Duplex + Bq,Chevyview Estate; Chevron Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +38729,5 Bedroom Fully Detached Duplex +bq,Lake View Estate Off Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38730,5 Bedroom Ensuite Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38731,4 Bedroom Semi Detached Duplex,"Southern View Estate , Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38732,Shop,Ajiran Agungi Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +38733,Newly Built 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38734,3 Bedroom Flat With Bq,Victory Park Estate Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +38735,"Palace Size 5bedroom Duplex With Bq,swimming Pool In Chevyview Estate",Chevy View Estate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38736,Beautiful 3 Bedroom Terrace Duplex With A Bq,Orchid Hotel Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38737,2 Bedroom Apartment,Chevy View Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +38738,5 Bedroom Fully Detached Duplex,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38739,5 Bedrooms Fully Detached Duplex,Oral Estate After 2nd Toll Gate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38740,Amazing Newly Built 5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38741,4 Bedroom Fully Detached Duplexes With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38742,"Pay 30% And Move In Luxury 4bedroom Fully Detached Duplex In Ocean Breeze Estate,ologolo Lekki",Ocean Breeze Estate Ologolo Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +38743,4 Bedroom Duplex With Bq,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38744,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +38745,5 Bedroom Fully Detached Duplex + Bq,"Lekki County Home, Ikota Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38746,Beautiful Spacious 4bedroom Fully Detached Duplex With Bq And Gate House,Canal West Estate Osapa London Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,5 baths,6 Toilets,Osapa London +38747,5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38748,4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +38749,5 Bedrooms Fully Detached Duplex,After 2nd Toll Gate Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38750,4 Bedroom Semi Detached + Bq,Chevyview Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38751,"Luxury Spacious 4bedroom Duplex In A Mini Estate For Sale In Chevron,lekki","Orchid Hotel Road, Chevron Lekki Phase 2 Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38752,Amazing 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38753,4 Bedroom Terrace Duplex,Before Vgc Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +38754,4 Bedroom Terrace,Orchid Road By 2nd Toll Gate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38755,5 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38756,4 Bedroom Terrace House,Oral Estate Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38757,Newly Built 4 Bedroom Semi Detached Duplex,"Before Chevron, Idado Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38758,4 Bedroom Semi Detached Duplex With A Bq,"Orchid Road, Southern View Estate Lekki Phase 1 Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38759,"Pay In 4yrs Fully Serviced 4 Bedroom Fully Detached Duplex In A Mini Estate In Agungi,lekki",Lara Ademola Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +38760,5 Bedroom Fully Detached Duplex,Southern View Estate Beside Lekki Conservation Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38761,4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +38762,5 Bedroom Fully Detached Duplex,. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ologolo +38763,Shop Space,Ikota Shopping Complex Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +38764,5 Bedroom Detached Duplex,Arcadia Groove Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +38765,3 Bedroom Terrace With A Large Room Bq,Osapa London Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38766,4 Bedroom Duplex,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +38767,A Newly Built 4 Bedroom Duplex With Bq Attached,Ologolo Road Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +38768,Luxury 2 Bedroom Apartment For Sale At Silicon Valley Estate,"Silicon Valley Estate Off Alpha Beach Road, Before Chevron Round About Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +38769,4 Bedroom Terrace,"Orchid Road, After 2nd Toll Gate Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38770,Newly Built 5 Bedrooms En Suite Detached Duplex + Bq,Pinnock Beach Estate By Shoprite Circle Mall Jakande Jakande Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38771,4 Bedroom Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38772,4 Bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38773,3 Blocks 3 Bedroom Flats,Pinnock Beach Estate Jakande Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +38774,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38775,Luxury 5 Bedroom En Suite Detached Duplex + Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38776,A Very Spacious Kingsize 4bedroom Duplex,Osapa Lekki Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38777,Exquisite 5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +38778,4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38779,A Double Suite (shops),Ikota Shopping Complex Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +38780,Newly Built Luxury 3 Bedroom Apartment,"Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +38781,A Luxury 4 Bedrooms Semi Detached Duplex,"Off Lekki County Road, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +38782,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +38783,4 Bedroom Semi Detached + Bq,Orchid Road 2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38784,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38785,5 Bedroom Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +38786,4 Units Of 3 Bedroom Flat,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +38787,Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38788,4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Road Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +38789,4 Bedroom Terrace House,Barolla Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38790,Luxury Serviced 3bedroom Flat With Bq,. Oral Estate Lekki Lagos,₦,"29,500,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +38791,5 Bedroom Duplex With 2 Rooms Bq,Victoria Garden City Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38792,A Suite (shop),Ikota Shopping Complex Vgc Lekki Lagos,₦,"6,300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +38793,Massively Built 5 Bedroom Fully Detached Duplex, Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +38794,Amazing 5 Bedroom Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38795,Payment Plan Luxury Fully Detached 4bedroom Duplex In Ocean Breeze Estate Lekki,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +38796,Exquisitely Furnished Standard Double Office Space,"Ikota Shopping Complex Vgc, Lagos. Ikota Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,1 Toilets,Ikota +38797,Dry Plots Of Land,Eleko Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38798,4 Bedroom Semi Detached Duplex + Bq,Bera Estate Off Chevron Drive Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38799,Shop/suite,Igbo Efon Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,1 Toilets,Other Lekki +38800,5 Bedroom Fully Detached Duplex,Lekki Conservation Lekki Lagos,₦,"4,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38801,"Spacious Luxury 4bedroom Fully Detached Duplex With Bq And Gatehouse In Chevron,lekki For Sale","Orchid Hotel Road, Chevron Lekki Phase 2 Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,5 baths,6 Toilets,Lekki Phase 2 +38802,Lovely 4 Bedroom Semi Detached Duplex,Chevyview; Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38803,5 Bedroom Duplex With A Maids Quarters,Osapa Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38804,4 Bedroom Semi Detached Duplex,Chevron Drive; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38805,Exquisite 5 Bedroom Detached Duplex With Bq,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38806,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38807,5 Bedroom Semi Detached Duplex + A Maids Room,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +38808,5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38809,4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +38810,4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38811,2 Bedroom Flat,Ikota Villa Estate Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +38812,Amazing Newly Built 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38813,Uniquely Built 5 Bedroom Detached House With Bq,"Chevyview Estate Lekki Ajah, Lagos Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38814,5 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +38815,Luxury 2 Bedroom Apartment,"New Road, Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +38816,5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ologolo +38817,Brand New 4 Bedroom Terrace,Orchid Road After 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38818,5 Bedroom Detached Duplex + Bq,Ologolo Agungi Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +38819,"Luxury Spacious 4bedroom Duplex With Bq In Osapa, Lekki",Canal West Estate Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets,Osapa London +38820,4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +38821,Plot Of Land,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths, Toilets,Other Lekki +38822,Brand New 5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38823,Brand New Massive 5 Bedroom Terrace House + Massive Bq,"Lekki Phase1, Lekki Lagos",₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38824,5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38825,4 Bedroom Semi Detached Duplex Located At Bakari Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +38826,Newly Built Extra Modern Offices For Sale/lease,Agungi Agungi Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets,Agungi +38827,Affordable Luxury Five (5) Bedroom Detached Duplex For Gorgeous Family Lifestyle,"Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38828,"Five (5) Bedroom Detached Duplex Located With Bq @chevy View Estate, Lekki Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38829,"2units 5bedroom Terrace Duplex Off Chevron Drive, Ikoyi Lagos",Chevron Drive Lagos Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38830,Orchid Road: Four(4) Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets,Lekki Phase 2 +38831,Five (5) Bedroom Detached Duplex Located With Swimming Pool,"Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,7 baths,8 Toilets,Lekki Phase 2 +38832,"Three(3) Bedroom Semi Detached Duplex Located @oral Estate, Lekki Lagos",Oral Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,5 Toilets,Lekki Phase 2 +38833,"Five (5) Bedroom Detached Duplex Located With Bq @chevy View Estate, Lekki Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38834,Affordable Luxury Five (5) Bedroom Detached Duplex For Gorgeous Family Lifestyle,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38835,"Affordable Luxury Of 5 Bedroom Detached Duplex At Megamound Estate, Lekki County Homes","Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,7 baths,8 Toilets,Lekki Phase 2 +38836,5 Bedroom Ensuite Detached Duplex With Breathtaking View Of The Environment At Oral Estate Lekki Lagos.,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +38837,5 Bedroom Duplex @ Oral Estate,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +38838,4 Bedroom Semi Detached,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +38839,Five(5) Bedroom Standalone Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +38840,Five(5) Bedroom Stand Alone Duplex With Bq,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +38841,"4 Bedroom Semi Detached @megamound Estate, Lekki County Estate.","Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,6 baths,7 Toilets,Lekki Phase 2 +38842,Alexander Homes 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,7 baths,7 Toilets,Lekki Phase 2 +38843,2500sqmt Land On Lekki Epe Express Way Lagos For Sale,"Lekki Epe Express Way Road, Lekki Lagos Ikota Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Ikota +38844,Oral Estate: 5 Bedroom Stand Alone Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +38845,Five(5) Bedroom Stand Alone Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,7 baths,7 Toilets,Other Lekki +38846,Afordable Five (5) Bedroom Detached Duplex Located At Bakari Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38847,4 Bedroom Terraced With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +38848,Afordable Modern Five(5) Bedroom Stand Alone Duplex With Bq,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +38849,Newly 4 Bedroom Semi Detached Duplex,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +38850,Four (4) Bedroom Detached Duplex Located At Empire Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,7 baths,6 Toilets,Lekki Phase 2 +38851,3bedroom Flat In County Home Ikota Lekki,County Home Ikota Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +38852,Brand New Tastefully Finished 3 Bedroom Terrace House With A Maids Room For Sale,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Ikota +38853,4 Bedroom Terrance Duplex,Ochid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38854,Brand New 4bedroom Semi Detached Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38855,Well Located And High Quality 3 Bedroom Terrace House For Sale At Osapa,"Castle Avenue, Osapa Osapa London Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets,Osapa London +38856,Stylish Urban 4 Nos 3 Bedroom Terrace And 2 Nos 3 Bedroom Penthouse Apartment ( Off Plan),"Atlantic Beach Estate, Lekki Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +38857,Serviced Brand New 4 Bedroom Semi Detached Duplez With A Room Bq At Osapa, Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +38858,5bedroom Semi Detach Duplex In Igbo Efom Lekki,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Agungi +38859,Luxury 5bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38860,Fully Detached 4 Bedroom Duplex With A Room Bq,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +38861,Brand New Luxury 4bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38862,Very Spacious Luxury 4 Bedroom Penthouse Apartment For Sale At Primewater Gardens 2,Primewater View Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38863,Ready To Move In 5 Bedroom Detached House For Sale At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +38864,Brand New Spacious Luxury 5 Bedroom Townhouse For Sale,. Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38865,Fully Serviced 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,4 baths,5 Toilets,Ikota +38866,Luxury 4bedroom Semi Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +38867,Exquisite 5 Bedroom Detached Duplex With Top Notch Facilities,General Emdin Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +38868,3 Bedroom Newly Built Flat (carcass) For Sale At Paradise 3 (lekki Gardens),Lekki Gardens (paradise 3) Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38869,5 Bedroom Duplex,. Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +38870,Newly Built With Excellent Finish 4 Bedroom Terrace House For Sale,Along The Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38871,4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38872,Brand New Tastefully Finished 4 Bedroom Terrace House With A Room Boys Quarters For Sale,Ikota Villa Estate Behind Mega Chicken Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38873,4 Bedroom Semi Detached Duplex,Ochid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38874,Contemporary Luxurious 4 & Bedroom Houses For Sale At Roxbury Homes 2,Roxbury Homes Vgc Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Garden City +38875,Brand New Sophisticated 4 Bedroom Semi Detached House For Sale,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38876,Brand New 5bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38877,Luxury 5bedroom Duplex With A Room Bq Inside Bera Estate Off Chevron Drive Lekki.,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +38878,2 Contagious Plots For Sale,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Ikota +38879,Brand New 5bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38880,Luxury 5bedroom Semi Detached Duplex With A Room Bq In A Gated Part Of Lekki Phase 1.,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +38881,Newly Built 4 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Osapa London +38882,Newly Built 4bedroom Detached Duplex For Sale,Lekki Alternative Route Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +38883,4 Bedroom Terraced Duplex," block 4, Plot 48 Ojomu Family Layout, Oral Estate, By Chevron Toll Gate, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38884,Residential Land," novojo Estate, Lbs, Lekki Expressway, Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +38885,5 Bedroom Detached Duplex," osapa, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38886,2 Acres Of Land For Sale,"Back Of Chevron Drive, Alpha Beach Chevron Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets,Chevron +38887,Newly Built 3 Bedroom Terrace Duplex,"Oribanwa, Lekki Ajah Lekki Lagos",₦,"17,675,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +38888,Newly Built 2 Bedroom Terrace Duplex,"Oribanwa, Lekki Ajah Lekki Lagos",₦,"14,800,000",0,1,0,2 beds,3 baths,3 Toilets,Other Lekki +38889,"4 Bedroom Semi. Detached Duplex For Sale Ib Friends Colony, Estste, Lekki Lagos","Friends Colony Estate, Agungi , Lekki Agungi Lekki Lagos",₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets,Agungi +38890,"800sqm Of Labd Fir Sake At Seagate Estate , Ikate Lekki Lagos","Plot 3, Seagate Estate Phase 1 Peninsula Ikate Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Ikate +38891,2units Of 3bedrooms All Ensuite Terrace Buildings,"Fara Park ,lekki Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +38892,4 Bed En Suite Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +38893,5 Bed Corner Piece Detached Duplex With A Bq,Chevy View Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +38894,4 Bed En Suite Semi Detached Duplex,Ikate Elegushi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +38895,Luxury 5 Bed Ensuite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +38896,4 Bedroom Detached Duplex,Osapa London Lekki Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38897,For Sale 4 Bedroom Detached Duplex,By Second Lekki Toll Gate Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38898,5bedroom Luxury Fully Detached,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,6 baths,5 Toilets,Chevron +38899,Newly Built 4,"Ikota Villa,lekki. Ikota Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +38900,Well Maintained (demolishable) And Vacant 5 Bedroom Fully Detached Duplex With 2 Room Bq,Off Admiralty Road (tantalizer) Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +38901,Land In A Developed Area Of Elegushi Lekki,Ilasan Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Ikate +38902,4 Bedroom Terraced Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +38903,Beautiful 4 Bedroom Detached Duplex,"Osapa, Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,5 baths,4 Toilets,Osapa London +38904,Lovely 4 Bedroom Terraced Duplex,"Orchid Road, Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38905,Luxurious 5 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38906,Land,"Orchid Road, Lekki Lagos",₦,"26,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +38907,Stunning 4 Bedroom Detached Duplex,"Osapa London, Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38908,Luxury 4 Bedroom Semi Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +38909,5 Bedroom Detached Duplex With A Bq,"Mudasiru Eletu Way, Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38910,Newly Built 4 Bedroom Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +38911,5 Bedroom Detached Duplex,"Kazeem Eletu Way, Osapa London Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38912,Newly Built 5 Bedroom Semi Detached Duplex,Behind Prime Water Gardens. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +38913,4 Bedroom Semi Detach (2 Units) Duplex Wth A Room Self Contain Bq At Agungi/osapa London Behind Friends Colony,Osaka London Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,5 beds,6 baths,6 Toilets,Osapa London +38914,"4 Bedroom Detached Duplex( Brand New, 24 Hours Light Service) For Sale At Osapa London Lekki",Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,7 baths,7 Toilets,Osapa London +38915,Newly Built 4 Bedroom Fully Detached Duplexes Plus Bq In Eli Court Chevron Lekki,"Chevron Alternative Drive, Lekki Lagos. Chevron Lekki Lagos",₦,"69,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +38916,2 Storey 5 Bedroom Semidetached Duplex (all Rooms Ensuite),Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38917,Newly Built 4 Bedroom Terrace Duplex (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38918,Newly Built 3 Bedroom Apartment (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38919,Fully Built 2 Storey 5 Bedroom Terrace Duplex With A Boys Quarter,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"53,000,000",1,1,0,6 beds,6 baths,7 Toilets,Chevron +38920,A Newly Built 5 Bedroom Fully Detached Duplex With A Boys Quarter (all Rooms Ensuite),Ibrahim Odofin Agungi Lekki Lagos,₦,"72,000,000",0,1,0,6 beds,6 baths,7 Toilets,Agungi +38921,3 Bedroom Flat (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +38922,5 Bedroom Semidetached Duplex (all Rooms Ensuite),Ibrahim Odofin Agungi Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38923,Global C Of O,Meadow Hall Way Ikate Lekki Lagos,₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikate +38924,"27 Rooms Hotel With 5 Room Duplex Attached, Sitting On 2200 Square Ft For Sale At Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +38925,A Fenced And Gated Dry And Strategic Piece,Vgc Vgc Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +38926,Tastefully Built 5 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +38927,Affordable Land For Sale In Lekki.(the Marjestique Garden G.r.a),G.r.a Abijo Lekki(2 Minutes From Epe Express Way) Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +38928,5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +38929,"Sunrise Terrace Duplexes At Ocean Bay Estate, Lekki","Ocean Bay Estate, After Chevron Toll Gate Plaza, Before Vgc Roundabout Ikota Lekki, Expressway,lekki Epe Road Lagos, Nigeria Ikota Lekki Lagos",₦,"55,000,000",1,1,0,5 beds,6 baths,7 Toilets,Ikota +38930,"? Luxury 9 Units Of 2bedroom Flat With Gym And Swimming Pool At Ikota Villa, Lekki.",Ikota Villa Ikota Lekki Lagos,₦,"25,000,000",1,1,1,2 beds,2 baths,3 Toilets,Ikota +38931,Newly Built 4 Bedroom Terraced House,Oral Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38932,A 4bedroom Semi Detached Unit With Bq,Oluwatosin Adewuyi Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +38933,"Newly Built 4 Bedroom Fully Detached Duplex,in Osapa London",Osapa London Road Osapa London Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +38934,"Newly Built 4 Bedroom Semi Detached Duplex,in Chevron Alternative,self Servied In A Well Secured Environment",Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +38935,"Spacious And Neat Block Of 3,2 And 1 Bedroom Flats",Babafemi Osoba Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +38936,Brand New Four Bedroom Fully Detached Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38937,4 Bedroom Semi Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +38938,5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38939,Four Bedroom Terrace Duplex At Lekki, Osapa London Lekki Lagos,₦,"87,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +38940,Magnificent Five Bedroom Duplex At Ikota,"Megamound Estate, Ikota Lekki Lagos",₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38941,Fully Detached Five Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38942,Four Bedroom Semi Detached Duplex At Lekki,. Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38943,Four Bedroom Terrace Duplex,"Lekki Conservation Centre, Chevron Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38944,Fully Detached 4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38945,Four Bedroom Semi Detached Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38946,Four Bedroom Semi Detached Duplex At Lekki,. Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +38947,Fully Detached 4 Bedroom Duplex,"Orchid Hotel Road, Ikota Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38948,Four Bedroom Fully Detached Duplex At Lekki,. Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38949,5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38950,4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38951,Fully Detached 5 Bedroom Duplex At Lekki, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38952,Fully Detached Four Bedroom Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38953,Four Bedroom Serviced Terrace Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38954,Fully Detached 5 Bedroom Duplex At Lekki,"Chevy View Estate, Chevron Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38955,5 Bedroom Fully Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38956,Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38957,4 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +38958,4 Bedroom Fully Detached Duplex With A Room Bq, Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +38959,Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38960,Four Bedroom Terrace Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +38961,Exquisite Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38962,Fully Detached Five Bedroom Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38963,Fully Detached 5 Bedroom Duplex At Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38964,Four Bedroom Semi Detached Duplex At Lekki,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38965,5 Bedroom Fully Detached Duplex With A Room Bq., Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38966,5 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +38967,4 Bedroom Semi Detached Duplex,. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38968,4 Bedroom Semi Detached Duplex With A Room Bq, Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +38969,Fully Detached 5 Bedroom Duplex At Lekki,"Alternative Route, Chevron Lekki Lagos",₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38970,Semi Detached 4 Bedroom Duplex,. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +38971,Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38972,4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38973,Four Bedroom Semi Detached Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38974,4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38975,Four Bedroom Semi Detached Duplex At Lekki, Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38976,Fully Detached Five Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38977,Fully Detached Five Bedroom Duplex At Lekki,. Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Agungi +38978,Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38979,5 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38980,5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +38981,4 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +38982,Four Bedroom Terrace Duplexes At Osapa London,. Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +38983,Five Bedroom Detached Duplex,"Megamound Estate, Ikota Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +38984,Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38985,Fully Detached 5 Bedroom Duplex At Lekki,"Ikota, Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +38986,Fully Detached Four Bedroom Duplex At Ikota,"Oral Estate, Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38987,Four Bedroom Terrace Duplex,. Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +38988,5 Bedroom Fully Detached Duplex With A Room Bq,Cheveron Alternative Route Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38989,Four Bedroom Semi Detached Duplex At Lekki,. Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +38990,5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +38991,Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +38992,Fully Detached 5 Bedroom Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +38993,4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +38994,4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +38995,5 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +38996,Four Bedroom Terrace Duplex,"Orchid Hotel Road, Ikota Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +38997,Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +38998,A Fully Furnished All Rooms Ensure 5 Bedrooms Duplex House For Sale,"Chevy Estate, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +38999,4 Bedroom Fully Detached Villa With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39000,4 Bedroom Terrace Duplex With Flexible Payment Plan,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"36,500,000",0,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39001,2 Unit Of 3 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +39002,Newly Built 7 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +39003,5 Bedroom Detached House On Land Measuring 480sqm,Akanbi Disu Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Lekki Phase 1 +39004,3 Bedroom Serviced Apartment With Bq,Prime Waters Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds, baths, Toilets,Lekki Phase 1 +39005,Newly Built 3 Bedroom Fully Serviced Apartment.,Lekki Express Way Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39006,For Sale Luxury 5 Bedroom Fully Detached Duplex,Royal Garden Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +39007,"For Sale, New!!! Luxury Built 5 Bedroom Fully Detached Duplex On Two Floors + Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39008,Renovated 6 Bedroom Fully Detached Mansion + Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,8 Toilets,Victoria Garden City +39009,3 (no) 4 Bedroom Luxury Flat On The Pent Floor With Bq,Safe Court Apartment Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +39010,2 Units Of 5 Bedroom Semi Detached Houses,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39011,2 Bedroom Detached Houses With A Room Bq,Chevy View Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +39012,"Waterfront Land Measuring 1,057sqm Block P1 Plot 10",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets,Osapa London +39013,2 Units Of 5 Bedroom Detached Houses,Murphy Agbabiaka Street Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +39014,4 And 5 Bedroom Duplex Houses With Bq.,Alternative Route Chevron Drive. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39015,Fully 5 Bedroom Detached House,Nicon Town Nicon Town Lekki Lagos,₦,"500,000,000",1,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39016,Massive Brand New 5 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39017,5 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +39018,Luxuriously Finished 5 Bedroom Detached House With Boys Quarter,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +39019,"Brand New, Strategically Located And Partly Furnished 2 Bedroom Apartment",Ikota Villa Estate Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +39020,4bedroom Semi Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +39021,Luxurious 5 Bedroom Waterfront Duplexes,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39022,Newly Built 5 Bedroom Detached Duplex In A Serene Neighborhood,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +39023,Well Finished 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +39024,Nicely Done 4 Bedroom Semi Detached House,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +39025,Well Finished 4 Units Of 3 Bedroom Luxury Apartments,Off Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,10 beds,8 baths,10 Toilets,Lekki Phase 1 +39026,Nicely Made Semi Detached 4 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39027,Luxuriously Finished 3 Bedroom Apartment,By Alpha Beach Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +39028,Well Finished 3 Bedroom Apartment,Off Ajiran Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +39029,Brand New Five(5) Bedroom Detached House.,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39030,A Tastefully Finished 5 Bedroom Fully Detached Duplex,Agungi Axis Between Jakande And Chevron Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +39031,5bedroom Detached House With Bq,"Ochid Road, Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +39032,Tastefully Furnished 4 Bedroom Terraced Duplex, Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39033,Tastefully Finished 5 Bedroom Fully Detached Duplex With B/q,Victory Park Estate; Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,6 Toilets,Osapa London +39034,Brand New And Nicely Finished 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39035,Luxuriously Finished 5 Bedroom Fully Detached House,Lekky County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +39036,Top Class Finished Newly Built 5 Bedroom Fully Detached Duplex,. Agungi Lekki Lagos,₦,"60,000,000",0,0,1,5 beds,5 baths,6 Toilets,Agungi +39037,4 Bedroom Terrace Duplex,Main Street Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39038,Spaciously Finished 5 Bedroom Detached House,Lekky County Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +39039,4 Bedroom Terraced Duplex,By Pinnacle Oil Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39040,Luxurious 10 Unit Of 2 Bedroom Flat With Gym And Swimming Pool,"Ikota Second Gate, Road 30 Ikota Lekki Lagos",₦,"280,000,000",1,1,0,2 beds,2 baths,3 Toilets,Ikota +39041,"Magnificently Built, Brand New And Luxuriously Finished 5 Bedroom Fully Detached Duplex",Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +39042,Luxirus 5bedroom Detached Duplex With 1room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +39043,5 Bedroom Fully Detached House With 2 Guest Rooms,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,1,7 beds,7 baths,8 Toilets,Chevron +39044,Luxury And Superbly Finished 4 Bedroom Terrace House,Yetville Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikate +39045,Luxurious 5 Bedroom Detached Duplex With B/q Located At Chevy View Estate,Chevy Ville Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +39046,Newly Funished 5bedroom Detached Duplex With 1room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +39047,Fully Furnished And Serviced 4 Bedroom Penthouse Type Apartment,"Safecourt Estate, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +39048,Newly Finished Luxurious 4bedroom Semi Detached House,"Ochid Road, Ikota, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +39049,2 Bedroom Flat For Sale,Off Ajiran Road Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +39050,Luxury Furnished 4 Bedroom Fully Detached Duplex,"Berra Estate, Chevron Drive Chevron Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +39051,Fully Detached 5 Bedroom Duplex With Bq,"Mario Ama Close, Off Ben Chi Onudo Street, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +39052,Brand New 4 Bedroom Fully Detached House,Lafiaji Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39053,A Well Finished And Exquisitely Built 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39054,Super Classy Brand New 4 Bedroom Fully Semi Detached Duplex,Chevron Axis Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +39055,Brand New And Uniquely Finished 4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +39056,An Exquisitely Built And Elegant 5 Bedroom Fully Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39057,4 Bedroom Detached Duplex,Northern Foreshore Estate; Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +39058,Newly Built 5bedroom Detached House With Bq And Swimming Pool,Megamound Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +39059,Luxury 5 Bedroom Detached Home,"Lekky County, Megamound Estate Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39060,Brand New And Luxuriously Finished Five (5) Bedroom Detached House,Westend Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39061,Newly Built 5bedroom Detached House With Bq And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +39062,Luxury Four (4) Bedroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39063,Newly Constructed 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39064,"5 Bedroom Fully Detached Luxury Duplex With 1 Room Bq Situated At Westend Estate Ikota Villa, Lekki.",Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +39065,Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate Opposite Abiola Court 10 Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39066,Brand New 4 Bedroom Fully Detached House,Behind Mobil Estate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39067,Luxuriously Finished 5 Bedroom Detached House,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,7 Toilets,Osapa London +39068,"Brand New, Tastefully Finished 4 Bedroom Detached Duplex",Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +39069,Fully Detached & Furnished 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,5 baths,5 Toilets,Ikate +39070,Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate Opposite Abiola Court 10 Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39071,Superbly Finished 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +39072,Brand New 2 Bedroom Apartments,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,1,1,2 beds,2 baths,3 Toilets,Osapa London +39073,Beautiful And Well Built 5 Bedroom Detached House,"Lekky County Homes, Megamound Estate Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39074,Brand New And Well Located 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +39075,Well Designed And Finished 5 Bedroom Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39076,"A Newly Built, Well Designed And Finished 5 Bedroom Terrace Duplex",Off Admiralty Way Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +39077,3 Bedroom Terrace Duplex With Bq,"Osapa, Eletu Estate Osapa London Lekki Lagos",₦,"60,000,000",1,1,1, beds,3 baths,4 Toilets,Osapa London +39078,Brand New 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39079,Exotically Finished 4 Bedroom Semi Detached Duplex,Creek Avenue Court; Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39080,Exquisite And Beautifully Finished 6 Bedroom Detached House, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +39081,"Exquisitely Finished, Brand New And Nicely Located 4 Bedroom Semi Detached House",Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ologolo +39082,Executive 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +39083,Luxuriously Finished 5 Bedroom Fully Detached House,Canal View Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,7 baths,8 Toilets,Osapa London +39084,Beautiful 4 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +39085,Magnificent And Beautiful 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikate +39086,Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate, Opposite Abiola Court 10, Chevron Alternative Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39087,Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39088,5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,7 baths,8 Toilets,Other Lekki +39089,6 Bedroom Detached Duplex With Servant Quarters,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +39090,5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39091,3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +39092,4000sqm Land For Sale On Admiralty Road,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39093,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39094,450sqm Land For Sale At Lekki Ph 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39095,4bedroom Semi Detached Duplex,Idado Lekki Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +39096,4bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39097,3 Bedroom Terrace Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +39098,2000sqm Land For Sale On Admiralty Road,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39099,3bedroom Flat For Sale At Agungi,Amusa Estate Agungi Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets,Agungi +39100,Duplex,Herbert Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +39101,4bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39102,580sqm Land For Sale At Lekki Ph 1,Behind Diamond Bank Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39103,4bedroom Terrace Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39104,30 Bedroom Resort Complex,Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,10 beds,10 baths,10 Toilets,Lekki Phase 2 +39105,Distress Sales: Luxuriously Finished 4bedroom Duplex For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39106,Brand New Excellently Finished 5bedroom Detached Duplex For Sale,Megammond Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +39107,400sqmeter,Megamound Estate By Leeki County Homes Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,1, beds, baths, Toilets,Lekki Phase 2 +39108,Newly Built And Lovely 6 Units Of 3 Bedroom Flats,"7, Abioro Street, Off Kunsela Road Ikate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets,Ikate +39109,750sm Bare Virgin Land Global C Of O,"Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39110,"Joint Ventures In Ikate Size: 3,470 Sqm Fenced",Ikate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39111,Newly Built State Of Art 4 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39112,Land,Ocean View Vgc Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39113,Gated Fenced Bare Land Measuring 1000sqm,Ayo Adeleye Street Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39114,5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +39115,Dry Virgin Half Plot Of Land,"Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39116,"Joint Ventures On Conservation Road Chevron Lekki Land Size: 2,200sqm",Conservation Road Chevron Lekki Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +39117,Gated Fenced Bare Land Measuring 640sqm,Ayo Adeleye Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39118,Luxury 5 Bedroom Detached Duplex In A Gated Estate And A Good Neighbourhood,Mudashiru Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39119,"Fully Detached 5bedrooms House With A Room Bq In A Secured Neighborhood, Fully Equipped Kitchen, Jacuzzi Masters, All Ensuites, Nd Lots More",Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39120,1982sqm Gated And Fenced Land,"Directly Behind World Oil, 4th Roundabout Ilasan Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39121,2plots Together,"Kusenla Road, Ikate Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39122,Luxurious 5 Bedroom Detached Duplex In A Gated Estate In A Nice Neighbourhood,Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39123,4 Bedroom Fully Detached Duplex,Westend; Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39124,2plots Together,Behind Oando 4th Roundabout Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39125,Joint Ventures In Lekki Phase 1 Land Size: 3100sqm,Behind Admirality House Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39126,4 Bedroom Semi Detached With All Rooms Ensuit In A Gated And Secured Environment In A Good Neighbourhood,Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39127,4 Bedroom Duplex Mansion In A Gated Compound With Nice Finishing In A Very Nice Neighbourhood,Behind Orchid Hotel Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39128,800 Sqm By Nicon Town Lekki,Nicon Town Nicon Town Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39129,Joint Ventures Behind Redeem Church Jakande Jakande First Gate Lekki Lagos Land Size 1500sqm,Jakande First Gate Jakande Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39130,4 Bedroom Luxurious Terrace Duplex In A Very Nice Neighbourhood,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39131,5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate And Good Neighbourhood,Lekki County Homes Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +39132,"875sqm At Carlton Gate Estate, Chevron Drive, Chevron Lekki Lagos",Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Chevron +39133,4 Bedroom Terrace,June 4 Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39134,500sqm Dry Land,Behind Oando Filling Station Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39135,Brand New 3 Bedroom 6 Numbers Blocks Of Flats In A Gated Compound In A Good Neighbourhood,Behind Orchid Hotel Ikota Oral Estate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +39136,"Lekki Phase1 Jv 4670sqm Location: African Lane,off Admirality Way Lagos",Off Admirality Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39137,"Luxury Serviced Penthouse In A Serviced Estate By Orchid Hotel All Ensuites,fully Fitted Kitchen,glass Finishing Living Area And Lots More","Orchid Road, Chevron Chevron Lekki Lagos",₦,"37,000,000",1,1,0,3 beds,3 baths,4 Toilets,Chevron +39138,"Luxury 3bedrooms Semi Detached Duplex All Ensuites,fitted Kitchen, Ampla Parkings, Large Masters, Double Lounge,pop Finishing, Nice Tiling And Lots More",Chevy View Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +39139,Residential Plots Of Land Fenced,"Off Admiralty Road, African Lane Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39140,4 Bedroom Semi Detached In Gated Estate And Very Fine Neighbourhood,White Oak Estate Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +39141,1050sqm Dry Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39142,Dry Fenced Gated Land,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39143,"Land For Joint Venture, 2plots Together With Good Title In Ologolo Before Igbo Efon, No Premium, Open Proposal",Spg Road Ologolo Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Ologolo +39144,1000sqm Land,Behind Oando 4th Roundabout Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39145,5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +39146,4 Bedroom Detached Duplex In A Gated Compound In A Secured Estate And A Good Neighbourhood,Lekki County Homes Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39147,5 Bedroom Detached Duplex In A Nice Environment And A Good Neighbourhood,Idado Estate Idado Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39148,Hot Jv In Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39149,Brand New 3 Bedroom 4 Numbers Blocks Of Flats In A Gated Compound In A Good Neighbourhood All En Suites With Visitor's Toilet,Behind Orchid Hotel Ikota Oral Estate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +39150,4 Bedroom Semi Detached With All Rooms Ensuit In A Gated And Secured Environment In A Goodand Friendly Neighbourhood,Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39151,Luxurious 5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39152,Standard Full Plot Of Land,"Ilasan Road, Behind World Oil, 4th Roundabout Ikate Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets,Ikate +39153,Newly Well Built Luxury Semi Detached Duplex,By Chevron Alternative Route Conservative Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39154,"Luxury 4bedrooms Serviced Terrace Duplex All Ensuites,fitted Kitchen, Ampla Parkings, Large Masters, Double Lounge,pop Finishing, Nice Tiling And Lots More","By Orchid Hotel, Chevron Right Side Chevron Lekki Lagos",₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39155,Hot Land For Sale At Ibeju Lekki Opp Dangote Refinery 100 Acres,Km 23 Opp Dangote Refinery Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39156,Newly Built 2 Units Of 5 Bedroom Semi Detached On 740 Sqm Land..,Dauda Fasanya Street Off Primewater View Garden Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +39157,Hampton Lake Estate,Chevron Alternative Road Chevron Lekki Lagos,₦,"110,000",1,1,0, beds, baths, Toilets,Chevron +39158,15 Plots Of Land In A Cozy Enverolment Of Lekki Phase 2 By Orchid Road Elengazia,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"24,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +39159,Newly Built 5 Bedrooms Fully Detached Duplex With A Room Bq,"Madam Juliana Okoye Close, Chevron Alternative Road, Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39160,C Of O,"G.r.a Abijo Lekki, Lagos 2 Minutes Drive From Lekki Express Way Lekki Lagos",₦,"13,500,000",0,0,0, beds, baths, Toilets,Other Lekki +39161,Plots Of Land In A Developed And Serene Neighbourhood,Ogombo Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39162,Newly Built 5bedroom Semi Detached Duplexes For Purchase.,"Off Orchid Road, Chevron Lekki Lagos",₦,"53,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39163,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Megamond Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +39164,Newly Built 4 Bedroom Duplex With Swimming Pool,Megamond Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39165,4 Bedroom Duplex With Govt Consent,Megamond Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39166,4 Bedroom Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets,Ikota +39167,Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"59,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39168,Newly Built 4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39169,Newly Built 4 Bedroom Duplex For Sale In Ikota,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39170,Land,Behind Worldoil Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Other Lekki +39171,Newly Built Four Bedroom Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39172,Newly Built 4 Bedroom Terraced Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39173,Newly Built 5 Bedroom Duplex For Sale,Chevy View Estate Igbo Efon Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39174,4 Units Of 4 Bedroom Terrace Duplex,"(atlantic View Estate) ,b4 Chervon Lekki, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +39175,"A Landed Property Measuring About 2.95 Hectares,located In Lekki Scheme Ii",Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"725,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39176,Newly Built 2 Units Of 2 Bedroom Flats,"7, Abioro Street, Off Kunsela Road Ikate Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +39177,4 Bedroom Semi Detached Duplex," oba Ogbagba Close, Lekki Phase 1 Lekki Lagos",₦,"126,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39178,"3 Bedroom Duplex+bq, For Sale At Oral Estate, Lekki,lagos",. Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,5 Toilets,Chevron +39179,Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +39180,Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +39181,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39182,2 Bedroom Flat," west End Estate, Ikota Villa Estate, Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +39183,Hotel / Guest House," oriwu Street, Lekki Phase 1 Lekki Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39184,4 Bedroom Terraced Duplex," chevron Alternative Route, Chevy View Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39185,1001.251sqm Land,Pinnock Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39186,4 Bedroom Terrace Duplex,Prime Water View Estate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,0 baths,0 Toilets,Other Lekki +39187,4 Bedroom Semi Detached Duplex For Sale," ologolo, Lekki, Lagos Lekki Lagos",₦,"51,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39188,Spacious 3 Bedroom Flat,Victory Park Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39189,New 5 Bedroom Detached House @ Megamord Estate Lekki County,Megamord Estate Lekki County Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39190,4 Bedroom Semi Detached Duplex," @ Idado Estate , Before Chevron Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39191,Residential Land," gracias Emerald Abijo , Lekki Epe Express Way Lekki Lagos",₦,"4,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39192,Block Of 4 Nos 3 Bedroom Flat,University View Estate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39193,Commercial Land For Sale," opposite Eti Osa Local Govt Office, Before Chevron Roundabout, Lekki Expressway, Lekki, Lagos Chevron Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39194,3 Bedroom Flat (first Floor),Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39195,4 Bedroom Semi Detached Duplex For Sale," ikota Villa Estate, Lekki, Lagos Lekki Lagos",₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39196,4 Bedroom Terraced Duplex For Sale," osapa, Lekki, Lagos Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39197,5 Bedroom Detached Duplex For Sale," megamound Estate, Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39198,2 Bedroom Flat For Sale," kunsula Road, Ikate Elegushi, Lekki, Lagos Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +39199,5 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39200,1 Bedroom Self Contained (single Rooms) For Rent," road 22, Ikota Villa Estate, Lekki, Lagos Lekki Lagos",₦,"400,000",0,0,0,1 beds,1 baths,1 Toilets,Other Lekki +39201,4 Bedroom Semi Detached Duplex For Sale," jide Agbalaya Street, Chevy View Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39202,Residential Land For Sale," royal Gardens Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39203,5 Bedroom Detached Duplex," beta Estate, Chevy View Estate, Lekki, Lagos Lekki Lagos",₦,"199,999,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39204,Mixed Use Land For Sale," 5plots From Express Abijoh, Abijo, Lekki, Lagos Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39205,4 Bedroom Semi Detached Duplex For Sale," before Chevron, Idado, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39206,"New 5 Bedroom Duplex + Bq For Sale In Chevron, Lekki, Lagos",. Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,7 Toilets,Chevron +39207,5 Bedroom Detached Duplex For Sale," lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39208,4 Bedroom Semi Detatched Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39209,Beautiful 14 Units Of 4 Bedroom Terrace House,Ikota Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikota +39210,Office Space Commercial Property,Chevron Chevron Lekki Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets,Chevron +39211,Enchanting 5 Bedroom Duplex With A Work Of Art,Orchid Road Chevron Lekki Lagos,₦,"97,000,000",0,0,1,5 beds,6 baths,6 Toilets,Chevron +39212,4 Bedroom Detached House,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +39213,Charming Cottage 5 Bedroom Duplex With Majestic Interior,Lekki County Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +39214,Beachfront Plots Of Land,Atlantic View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Chevron +39215,New 4no.4 Bedroom Wing Of Semidetached House + Bq,"Spring Bay Estate, Ikate, Lekki Phase1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39216,Office Space, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39217,Fully Detached 5 Bedroom House + Boys Quarter,"Spring Bay Estate, Ikate, Lekki Phase1 Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39218,Land,Very Close To Court Of Arbitration . Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39219,Magnificient Mediterranean 4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets,Osapa London +39220,Land (lexington Garden With C Of O),Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39221,Land,"Imperial Drive, Lekki Lagos",₦,"10,450,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39222,4 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39223,Beautiful 5 Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ologolo +39224,Beautiful 4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +39225,5 Bedroom Fully Detached Duplex,"Bera Estate, Chevy View Estate, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +39226,Gorgeous 4 Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +39227,"Luxury Built 4 Bedroom Fully Detached + Bq For Sale At Ikate, Lekki",Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +39228,4 Bedroom Duplex,Chevyview Estate Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39229,4 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39230,"Luxury Built 5 Bedroom Fully Detached + Bq For Sale At Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,6 Toilets,Ikate +39231,A Beautiful Four Bedroom Fully Detached Duplex,"Bricks Court, Lekki Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39232,Beautifully Constructed Luxury 5 Bedroom Fully Detached Duplex,"Ologolo Area, Lekki Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +39233,Beautiful 3 Bedroom Apartment In Lekki,. Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ologolo +39234,4 Bedroom Semi Detached Duplex With Penthouse,"Silicon Vale Estate, Ologolo Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39235,Exquisite 5 Bedroom Fully Detached Duplex,"Chevron Drive, Alternative Route, Lekki Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39236,Fully Furnished 5 Bedrooms Detached House + Bq, Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +39237,Residential Land For Sale," gracias Emerald Abijo , Lekki Epe Express Way Lekki Lagos",₦,"4,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39238,3 Bedroom Flat For Sale," canal West Estate., Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +39239,(2)*brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In.*,Oshapa London Agungi Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets,Agungi +39240,5 Bedroom Detached Duplex For Sale," beta Estate, Chevy View Estate, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"199,999,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39241,3 Bedroom Flat For Sale," canal West Estate., Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +39242,5 Bedroom Terraced Duplex For Sale," close To The 2nd Lekki Toll Gate, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +39243,5 Bedroom Detached Duplex For Sale," chevron Drive Opposite Chevron Lekki Office, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"89,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +39244,Newly Built 4 Bedrooms Terrace Duplex,"Opp Chevron, Lekki Chevron Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39245,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Off Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39246,Brand New Luxury 5 Bedroom Fully Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39247,Brand New 4 Bedroom Fully Detached House With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39248,Newly Built 2 Bedroom Flat + Bq, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +39249,New 2 Bedroom Flat,Lekki Right Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +39250,Block Of 4 Nos Of 3 Bedroom Flat,Off Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39251,Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,4 baths,4 Toilets,Ikota +39252,2 Bedroom Flat,"Alma Beach Estate, Ikate Lekki Lagos",₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets,Ikate +39253,5 Bedroom Detached House + Bq, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39254,800sqm At Cowrie Creeek Estate Ikate Lekki Lgaos,Cowrie Creek Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39255,Brand New 5bed Room Detached House With Fitted Kitchen And Bq At Megamould Estate Ikota,Mega Mould Eatate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +39256,Plot Of Land Measuring 800sqm,Off Kusunla Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39257,Executive Four Bedroom Terrace Duplex At Ikate,Elegushi Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +39258,Four Bedroom Semi Detached Duplex,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39259,Residentail / Commercial 6nos 3bed Room Flat With Bq In Lekki Phase One,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +39260,Land,Ikate Elegushi Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39261,5 Bedroom Detached House + Bq, Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39262,5 Bedroom Detached House + Bq, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39263,Plot Of Land Measuring 680sqm At Ologolo Lekki Lagos,Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Ologolo +39264,5 Bedroom Terrace Duplex + Bq, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +39265,Fully Detached Five Bedroom Duplex At Ikate,"Still Water Estate, Ikate Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +39266,Well Renovated 5 Bedroom Detached House,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +39267,4 Bedroom Maisonette With A Room Bq, Jakande Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39268,3 Bedroom Flat With A Room Bq,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +39269,4 Bedroom Terraced Duplex,  Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39270,Residential Land," abijo, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39271,5 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,7 baths,6 Toilets,Lekki Phase 1 +39272,4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"41,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +39273,4 Bedroom Terraced Duplex," chevron Drive, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39274,3 Bedroom Detached Duplex," chevron Drive, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39275,Residential Land," twin Lake Chevron, Chevy View Estate, Lekki Lagos",₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39276,Uncompleted 3 Bedrooms Bungalow,Sapphire Garden Estate Lekki Lagos,₦,"23,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39277,A Wing Of Duplex With 2 Flats House, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39278,5 Bedrooms Detached House,Africa Lane Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39279,5 Bedrooms Detached House,Pinnock Beach Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets,Other Lekki +39280,4 Nos Of 4 Bedroom Townhouses,Admiralty Way Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39281,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39282,Fairly New 3 Bedroom Flat + Bq,Otunba Olufeko Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +39283,1300 Sqm Bare Fenced And Gated Land,"Freedom Way, Osapa London Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39284,1.317 Hectares Land,Lekki Garden Estate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39285,1.317 Hectares Land, Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39286,"Deposit N1,000,000 And Get Instant Allocation At Iland Properties Inside Beechwood Estate, Shepati Lekki","Beechwood Estate, Shepati Lekki Ikate Lekki Lagos",₦,"6,500,000",0,0,0, beds, baths, Toilets,Ikate +39287,4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39288,Land,"By Nike Gallery, Lekki Phase 1 Rhs. Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39289,3 Bedrooms Terrace Duplex,Lekki Garden Estate Phase 4 Lekki Phase 1 Lekki Lagos,₦,"32,000,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +39290,5 Bedroom Duplexes,"Ocean Bay Estate, Orchid Hotel Road By Chevron Chevron Lekki Lagos",₦,"75,000,000",1,1,0,5 beds,5 baths, Toilets,Chevron +39291,Land, Agungi Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +39292,Shopping Mall,"20,baale Street Igbo Efon,lekki Lagos Igbo Efon Lekki Lagos",₦,"12,500,000",1,1,1, beds,1 baths,1 Toilets,Other Lekki +39293,Shopping Plaza,"No1,agungi Close To Domino Pizza,lekki,lagos Agungi Lekki Lagos",₦,"12,500,000",1,1,1, beds, baths, Toilets,Agungi +39294,An Executively Finished Four Bedrooms Terraces Apartment Within A Service Estate Bourdilion Court.lekki.lagos,Bourdilion Court Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39295,5 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39296,Land, Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39297,4 Bedroom House," after Chevron Toll Gate, Ikota, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +39298,4 Bedroom House, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +39299,5 Bedroom Detached Duplex," lake View Park 2, Lafiaji, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39300,4 Bedroom House," creek Avenue Court Phase 2 , Ikota Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +39301,3 Bedroom House," oribanwa,lekki Peninsula,(before Awoyaya), Lekki Lagos",₦,"11,950,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39302,4 Bedroom Semi Detached Duplex," buena Vista Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39303,3 Bedroom Terraced Duplex," close To Lekki 2nd Toll Gate By Chevron, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +39304,4 Bedroom Semi Detached Duplex," orchid Road, Lafiaji, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39305,4 Bedroom Terraced Duplex," palace Road Ikate Eleguishi Lekki, Ikate Elegushi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39306,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39307,7 Bedroom Detached Duplex, Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Lekki +39308,Two Numbers Of Five Bedrooms Duplex,Lekki Ikate Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,6 Toilets,Ikate +39309,3 Bedrooms Apartment Exquisitely Finished And Ready For Occupation At The View,The View Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,5 baths,5 Toilets,Chevron +39310,Commercial Land, directly Facing Express Opposite Osapa London Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39311,Residential Land," by Charlesdony Schools, Abijo Gra, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39312,5 Bedroom Detached Duplex," chevron Axis, Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39313,4 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39314,5 Bedroom Detached Duplex," chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39315,5 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39316,5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39317,4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39318,4 Bedroom Semi Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39319,5 Bedroom Detached Duplex," chevron Environs, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39320,Mixed Use Land," maroko, Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39321,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39322,4 Bedroom Semi Detached Duplex," ikota Gra Road, Ikota Villa Estate, Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39323,5 Bedroom Semi Detached Duplex," creek Avenue, Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +39324,4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39325,Residential Land," abijo Gra, Behind Chalcedony School, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39326,6 Bedroom Detached Duplex," chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"98,000,000",0,0,0,6 beds,8 baths,8 Toilets,Lekki Phase 2 +39327,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +39328,5 Bedrooms Detached House,Bera Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39329,4 Bedroom Detached Duplex," orchid Estate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39330,4 Bedroom Semi Detached Duplex," buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39331,Residential Land," ibeju Agbe Town, Lekki Expressway, Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39332,4 Bedroom Detached Duplex," megamound Avenue, Lekki County Homes., Ikota Villa Estate, Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39333,Newly 5 Bedroom Duplex With Bq All Ensuite In A Serene And Beautiful Estate,Megamound Estate Lekki County Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +39334,4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +39335,Newly Built 5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,5 Toilets,Chevron +39336,Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Osapa London +39337,1 Bedroom Mini Flat," oceanbay Estate, Lafiaji, Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,2 Toilets,Other Lekki +39338,"1,750m2 Land",Sikiru Ayinde Oloko Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39339,4 Hectares (3.993 Hectares) Of Fenced Land,Maiyegun Lekki Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39340,3 Bedroom Flat, Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39341,Mixed Use Land," chevron Via Orchid Hotel Road And Is Opposite Shell Estate(coplag Garden), Chevy View Estate, Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39342,Mixed Use Land," pinnock, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39343,Mixed Use Land,  Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39344,5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39345,Newly Built 2 Units Of 4 Bedrooms Detached House, Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +39346,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +39347,30 Units Of Newly Built Shops, Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39348,2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets,Lekki Phase 1 +39349,Land For Sale In Lekki,. Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39350,Luxury Finished Five Bedroom Detached House With A Room Bq,Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39351,Fully Furnished Five Bedroom Detached House,Prince Ibrahim Eletu Drive Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +39352,Luxury Finished Three Bedroom Flat,Off Kafayat Abdulrazak Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +39353,Luxury Finished Five Bedroom Terrace With A Room Staff Quarters,"Off Petrocham Road, Lekki,phase One Right Lekki Phase 1 Lekki Lagos",₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39354,Newly Built Four Bedroom Terrace With A Room Staff Quarters,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets,Lekki Phase 1 +39355,Newly Built Four Bedroom Terrace Duplex With A Room Staff Quarters,"Off Circle Mall Road, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +39356,Luxury Finished Four Bedroom Terrace With A Room Staff Quarters.,"Off Durrossimi Etti Drive, Lekki Phase One. Lekki Phase 1 Lekki Lagos",₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39357,Newly Built 4 Bedroom Semi Detached Duplex,After Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets,Ikota +39358,Newly Built Contemporary 5 Bedroom Duplex In An Amazing Neighbourhood,"Richmond Estate, Off Meadow Hall Way, Ikate Lekki Ikate Lekki Lagos",₦,"149,000,000",0,1,1,5 beds,6 baths,7 Toilets,Ikate +39359,Land For Sale At Durosimi Eeti Lekki Phase One,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39360,"A Plot Of Land Measuring 2200sqm On Spg Road,agungi.lekki..",Spg Road Agungi Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Agungi +39361,Newly Built 3bedroom Flat,37 Toyin Street Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +39362,Newly Built 4bedroom Flat,Beside Waterboard Lekki Phase 1 Lekki Lagos,₦,"300,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39363,Own A Land In Lekki At An Awoof Price,Lekki Expressway Lekki Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +39364,"A Plot Of Land Measuring Fenced On Interlock Road At Oral Estate,lekki.",Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +39365,A Super Finished Fully Detached Five Bedrooms Duplex With Two Rooms Bq On A Full Plot At Still Water Garden Estate Lekki.lagos,Still Water Garden Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +39366,A Plot Of Land Measuring 948sqm, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39367,Plot Of Land Measuring 2000sqm,Meadow Hall School. Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39368,"A Newly Built Super Finished 4bedrooms Semi Detached Duplex With Bq At Burner Vista Estate,lekki.lagos",Burner Vista Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +39369,"A Super Finished Five Bedrooms Detached Duplex With Bq At Lekki County Estate,lekki.lagos",Lekki County Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39370,"A Plot Of Land Measuring 2500sqm Waterfront At Vgc,lagos",Vgc Vgc Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +39371,A Super Finished 5 Bedroom Detached Duplex With Bq,Northern Foreshore Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +39372,"A Plot Of Land Measuring 800sqm Bareland At Cowrie Creek Nlng Estate,lekki.",Cowrie Creek Nlng Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets,Ikate +39373,"A Super Finished Luxury Hotel With 32rooms At Lekki Phase I,lagos.",Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39374,"20units Of Semi Detached Duplex Within A Mini Estate At Ikota,lekki.lagos",Ikota Ikota Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,4 baths,3 Toilets,Ikota +39375,8000sqm Land, Ikate Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39376,"A Plot Of Land Measuring 1139sqm With C Of O At Lekki Right,lagos.",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39377,Plots Of Land,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39378,"A Four Bedrooms Semi Detached Duplex With Bq At Friends Colony Estate,lekki.",Friends Colony Estate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,5 Toilets,Other Lekki +39379,A Semi Detached Duplex,Eli Court Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +39380,Exquisite 4bed Room Suplex,F Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +39381,Hectare Of Land,"On Coastal Road, Lafiaji Village With Beach Front, By Barbed Wire Bus Stop After 2nd Toll Gate Off Lekki Epe Expressway, Lekki, Lagos. Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39382,Town House Of 3 Units 4br Duplex With Bq.,"Ibiyinka Salvador Street Off African Lane, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39383,4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39384,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"16,500,000",0,0,0,4 beds,0 baths,5 Toilets,Lekki Phase 2 +39385,Residential Land," close 26, Mayfair Gardens Estate, Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39386,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +39387,4 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +39388,3 Bedroom Terraced Duplex," lafiaji, Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +39389,5 Bedroom Detached Bungalow," mayfair Garden Estate, Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,4 Toilets,Lekki Phase 1 +39390,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39391,4 Bedroom Terraced Duplex," orchid, Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39392,Two Plots Of Land, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39393,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39394,Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39395,5 Bedroom Detached Duplex, Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39396,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39397,4 Bedroom Semi Detached Duplex," lekki Expressway, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39398,4 Bedroom Semi Detached Duplex," ikota Gra Back Of Mega Chicken, Ikota Villa Estate Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39399,4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39400,4 Bedroom Semi Detached + Bq,Lekki Right Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39401,5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +39402,Five Units Of Four Bedrooms Fully Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39403,20 Units Of Four Bedroom Terrace Duplex,Fairview Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39404,Four Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39405,Six Units Of 3 Bedroom Flat, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +39406,2 Units Of 5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39407,4 Units Of 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39408,2 Units Of 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39409,20 Units Of Four Bedrooms Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39410,Four Bedrooms Terrace House, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +39411,Two Units Of Luxury Modern 5 Bedrooms Fully Detached, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39412,Four Units Of 5 Bedroom Townhouses With One Room Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39413,Bare Fenced Land, Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39414,"Fully Detached 4 Bedroom Duplex With Bq In Phase 2, Creek Avenue Court, Lekki",Creek Avenue Court Phase 2 Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,6 Toilets,Chevron +39415,Pay And Pack In Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Eli Court Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +39416,Luxuriously Built 20 Rooms Mansion, Lekki Phase 1 Lekki Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39417,2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +39418,2 Plots Of Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39419,20 Rooms Capacity Hotel,Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39420,45 Plots Of Land, Lekki Phase 2 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39421,5 Bedroom Detached House, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +39422,Brand New Beautiful 4 (nos) 5 Bedroom Duplexes,Oba Tijani Akinloye Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +39423,95% Completed 4 Bedroom Detached,Bakare Estate Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +39424,2 (nos) 5 Bedroom Detached House,Parlsey Road Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39425,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +39426,2 (nos) 5 Bedroom Detached Houses,Parsley Road Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39427,4 Bedroom Terrace With 2 Sitting Rooms,Whitesands Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39428,Brand New 12 (nos) 4 Bedroom Terraced Houses,Adedeji Adekola Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39429,Brand New Spectacular 5 Bedroom Detached House,Off Abeke Animashaun Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39430,House On 650sqm,"Peninsula Gardens Estate, Sangotedo Lekki Lekki Lagos",₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39431,5 Bedroom House, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39432,5 Bedroom Detached Duplex For Sale," off Chevron Drive, Chevy View Estate, Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39433,Mixed Use Land," abijo Gra, Abijo, Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39434,Mixed Use Land," meadow Hall Way, Ilasan Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39435,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39436,3 Bedroom Terraced Duplex," off Orchid Road, Lekki Expressway, Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39437,Mixed Use Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39438,Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39439,4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39440,4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39441,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +39442,5 Bedroom Detached Duplex," chervon Alternative, Lekki Phase 2 Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +39443,Residential Land," abijo Gra, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39444,*luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +39445,Mixed Use Land," lafiaji, Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39446,Large 5 Bedrooms Semi Detached Duplexes For Sale In Ocean Bay Estate (governor's Title),"Ocean Bay Estate, Along Orchid Hotel Road, By Chevron Toll Gate, Lekki. Chevron Lekki Lagos",₦,"59,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +39447,Land, Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39448,Land,  Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39449,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39450,5 Bedroom Detached Duplex," megamound Estate, Lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39451,Residential Land," ore Famewo/kunshenla, Ikate Elegushi, Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39452,4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39453,Mixed Use Land," abijo Gra, Abijo, Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39454,4 Bedroom Semi Detached Duplex," whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +39455,4 Bedroom Semi Detached Duplex," conservative Chevron, Lafiaji, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39456,4 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39457,4 Bedroom Detached Duplex," whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +39458,Block Of 4 Nos 3 Bedroom Flat,"University View Estate, Opposite Lagos Business School, Lekki Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39459,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39460,3 Bedroom Flat,Femi Okunnu 2 Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 2 +39461,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +39462,4 Bedroom Detached Duplex," chevron Alternative Drive, Lekki Phase 1 Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets,Lekki Phase 1 +39463,Residential Land," between Road 2 And 3, Water Side, Vgc Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39464,5 Bedroom Detached Duplex," megamound Estate, Lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39465,3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39466,3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39467,3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39468,4 Bedroom Semi Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39469,5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39470,4 Bedroom Semi Detached Duplex," richmond Gate Estate, Ikate Elegushi, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39471,4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39472,Residential Land," abijo, Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39473,5 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"92,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +39474,4 Bedroom Semi Detached Duplex," beside Primewaters Estate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39475,5 Bedroom Detached Duplex," chevron, Chevy View Estate, Lekki Lagos",₦,"93,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39476,Mixed Use Land, Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +39477,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39478,4 Bedroom Terraced Duplex," orchid Road, Lafiaji, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39479,3 Bedroom Detach House,Oba Adeyinka Oyekan Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +39480,Plots Of Land,Ikota Ikota Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Ikota +39481,Brand New Semi Detach House, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +39482,Luxury Flat,Freedom Way Nicon Town Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39483,Luxuriously Built And Furnished 4 Bedroom Semi Detached House,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39484,Brand New Luxury 5 Bedroom Terrace House Plus Bq,Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39485,1340m2 Land,Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +39486,Service 2 Bedroom Terrace Duplex,New Horizon 2 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +39487,Luxury 5 Bedroom House,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +39488,5 Bedroom Detach House With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39489,Luxurious Semi Detached Duplex With C Of O,"New Horizon 1; Lekki Gardens, Ikate Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +39490,3 Bedroom Flat,"New Horizon 1, Lekki Gardens Ikate Lekki Lagos",₦,"37,000,000",1,0,1,3 beds,3 baths,3 Toilets,Ikate +39491,Luxurious 4 Bed Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,3 baths,4 Toilets,Chevron +39492,4 Bedroom Semi Detached Duplex,"Idado Lekki, Just Between Lekki Phase 1 And Ikate) Lekki Phase 1 Lekki Lagos",₦,"58,000,000",1,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39493,"4 Bedroom Newly Built, Semi Detached House","Ologolo Drive , Jakande Lekki Lagos, Lekki Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ologolo +39494,Parkhust Luxury Apartments,Alma Beach Estate Ikate Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,0 baths,0 Toilets,Ikate +39495,Lands,Gracias Court And Residences Ikota Lekki Lagos,₦,"7,000,000",0,1,0,0 beds,0 baths,0 Toilets,Ikota +39496,"Land At Southern Green Estate, Lafiaji, Lekki","Located By The 2nd Tollgate; Chevron Axis Off Orchid Hotel Road, Lafiaji, Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39497,Land,"Lekki Scheme Ii, Okun Ajah, Off Ogombo Road By Abraham Adesanya Roundabout. Eti Osa Lga, Lagos. Vgc Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39498,Northville Estate,Bogije Lekki Lagos,₦,"9,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39499,4 Bedroom Semi Detached Duplex With Bq,Road 6 Ikota Lekki Lagos,₦,"61,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +39500,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39501,5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39502,Functional 5 Star Hotel, Lekki Phase 1 Lekki Lagos,$,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39503,4 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39504,Residential Land,  Nicon Town Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39505,Mixed Use Land," along Orchid Road, Immediately After Lekki 2nd Toll Gate, Lafiaji, Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39506,Residential Land," ikate Elegushi, Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39507,4 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39508,5 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39509,4 Bedroom Semi Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39510,4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39511,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +39512,"6,010.424 Sqm Land",Lekki Peninsula Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39513,4 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 2 +39514,4 Bedroom Semi Detached Duplex," oral Estate, Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39515,900 Square Meters Land,Block 25 Plot 31 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39516,1000 Square Meters Land,Off Ayoola Makanjuola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39517,5 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +39518,5 Bedroom Detached Duplex," oral Estate Lekki, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +39519,"1,292 Sqm Land",Block 69 Plot 40 Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39520,961.971 Sqm Land,Lanre Ojo Drive. Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39521,846.822 Sqm Land,Block 91 Plot 4 Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39522,958 Sqm Land,Block 82 Plot 13 Off Engineer Kola Ajibola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39523,Residential Land," freedom Way By Cis School, Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39524,Mixed Use Land," beside Nicon Town 2 Off Lekki Expressway, Abijo, Lekki Lagos",₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39525,Mixed Use Land For Sale," beside Nicon Town 2 Off Lekki Expressway, Abijo, Lekki Lagos",₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39526,570 Sqm Land, Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39527,Governor's Consent,"Chevron, Drive Chevron Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39528,4 Bedroom Fully Detached,Buena Vista Estate Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39529,5 Bedroom Fully Detached Duplex,Close To Macopolo Hotel Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39530,"Grand Court, Lekki, Lagos.","Lekki Expressway, Behind Lekki Conservation Centre, Lagos. Lekki Phase 1 Lekki Lagos",₦,"48,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39531,5 Bedroom Detached House Plus 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39532,"4 Units Of 5 Bedroom Houses With 3 Living Rooms, A Study, A Swimming Pool, Gym On 2000 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"188,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +39533,4 Bedroom Bungalow,Chevron And Okota Villa Vgc Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +39534,2 Units Of 5 Bedroom Detached Houses With 2 Rooms Bq In Ajah,Royal Gardens Estate Vgc Lekki Lagos,₦,"148,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +39535,5 Bedroom Detached House And A Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +39536,2 Storey Building Of 7 Bedroom Duplex With A Bq,Buckingham Court Chevy View Chevron Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,7 Toilets,Chevron +39537,4 Bedroom Terrace Duplex (off Plan) Clustered Units,Sugarland Luxury Estate Vgc Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39538,5 Bedroom Duplex For Sale,Heritage Place Estate Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,5 baths, Toilets,Other Lekki +39539,Governor's Consent,On The Major Street Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39540,Governor's Consent,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +39541,C Of O,"Chevron Drive,ikota Lekki Chevron Lekki Lagos",₦,"54,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +39542,5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39543,4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39544,5 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39545,5 Bedroom Detached Duplex," bera Estate By Chevron Drive, Chevy View Estate, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39546,5 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39547,4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39548,4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39549,Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39550,4 Bedroom Terraced Duplex," esther Adeleke, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39551,4 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39552,4 Bedroom Semi Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39553,5 Bedroom Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39554,4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39555,2 Bedroom Flat," eko Pearl Towers, Eko Atlantic City, Lekki Lagos",₦,"670,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +39556,5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"96,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39557,3 Bedroom Terraced Duplex," peninsular Gardens Estate Ajah, Lekki Expressway, Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39558,4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39559,4 Bedroom Semi Detached Duplex,"Lekki Expressway, Chevron Lekki Lagos",₦,"48,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39560,Residential Land," green Brooks Estate (high Court Judgement), Abijo, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39561,Land For Sale,Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets,Chevron +39562,4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39563,4 Bedroom Semi Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39564,5 Bedroom Detached Duplex," lafiaji, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39565,4 Bedroom Detached Duplex F," chevron, Lekki Expressway, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39566,4 Bedroom Semi Detached Duplex," chevron Toll, Lekki Expressway, Lekki Lagos",₦,"48,500,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +39567,4 Bedroom Terraced Duplex, Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +39568,Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Ikota +39569,5 Bedroom Detached Duplex," in An Estate Off Amadasun Street, Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39570,5 Bedroom Detached Duplex," amadasun Street, Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39571,4 Bedroom Terraced Duplex," ilasan By World Oil, Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39572,Commercial Land," opposite Ikota Shopping Complex, Lekki Expressway, Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39573,Land For Sale,Gra Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets,Ikota +39574,Residential Land, Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39575,4 Bedroom Semi Detached Duplex," chevyview Estate Lekki, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39576,4 Bedroom Semi Detached Duplex," chevyview Estate Lekki, Chevy View Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39577,5 Bedroom Detached Duplex," chevyview Estate By Chevron Head Office Lekki, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +39578,5 Bedroom Detached Duplex," osapa London Street, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39579,4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39580,3 Bedroom Terraced Duplex," atican Beach Estate Off Abraham Adesanya, Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39581,4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +39582,Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets,Ikota +39583,4 Bedroom Apartment + 1 Bed Bq (furnished),Safecourts Apartments Nicon Town Lekki Lagos,₦,"70,000,000",1,0,1,5 beds,5 baths,5 Toilets,Other Lekki +39584,5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +39585,5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +39586,5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +39587,Brand New 5bedroom Duplex At Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +39588,4 Bedroom Terrace House With Bq (on Going Construction), Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39589,Lovely 2 Unit Of 4 Bedroom Semi Detached Duplex,Kinnock Beach Jakande Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39590,Brand New Semi Detached With Bq @ Lafiaji,Lafiaji Agungi Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +39591,4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39592,4 Bedroom Terrace House,After The 2nd Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39593,4 Bedroom Duplex,"Lekki Gardens, Olokonla, Lekki, Lagos. Lekki Lagos",₦,"28,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +39594,Super 4 Bedroom Terrace House, Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39595,3 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +39596,3 Bedroom Terrace House With Bq,Elegushi Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +39597,Newly Built 5bedroom Fully Detached Duplex With A Room Bq @ Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39598,Four(4) Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"49,900,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39599,Terrace Duplex,"Abiola Court 10, Chevron Alternative Route, Lekki, Lagos. Chevron Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +39600,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets,Chevron +39601,5bedroom Detached Duplex With A Room Bq At Lekki,Not Necessarily Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39602,Richly Finished 4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39603,4 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +39604,5 Bedroom Fully Detached @ Banana Island,Banana Island Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +39605,Hotel,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39606,Exclusively Finished 6 Bedroom Canadian Style Luxury Mansion, Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Garden City +39607,New And Exquisite 4 Bedroom Semidetached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39608,Beautiful 4 Bedroom Serviced Terrace House, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39609,5 Bedroom Detached House,Megamond Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39610,4 Bedroom Semi Detached Duplex For Sale,Osapa Gra Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,3 Toilets,Osapa London +39611,4 Bedroom Terrace House,After The 2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39612,Luxury 2 Units Of 5 Bedroom Detached Duplex With Smart Features,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39613,Newly Built 4 Bedroom Semi Detached Duplex With Bq At Buena Vista Lekki,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39614,Newly Built 2bedroom Flat With A Bq For Sale,Secure And Serviced Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +39615,4 Bedroom Terrace House With Bq, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39616,Distress Sale: 2 Bedroom Bungalow With A Guest House,"South Pointe, Estate Orchid Hotel Road By Chevron Head Office Lafiaji Lekki. Chevron Lekki Lagos",₦,"25,000,000",0,0,1,2 beds,3 baths,3 Toilets,Chevron +39617,3bedroom Terrace Duplex In New County Estate In Lekki For Sale,New County Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Lekki +39618,Five Bedrooms Mansion At Carlton Gate With 2 Rooms Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +39619,5 Bedroom Detached Duplex," pinnock Beach Estate, Osapa London Lekki Lagos",₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39620,4 Bedroom House," ikate Elegushi, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39621,5 Bedroom Detached Duplex," pinnock Beach Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +39622,Mixed Use Land," lekki Epe Express Way, Vgc Lekki Lagos",₦,"250,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39623,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39624,4 Bedroom Terraced Duplex Joint Venture, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39625,5 Bedroom Detached Duplex," lekki Expressway, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +39626,4 Bedroom Terraced Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39627,House For Sale At Lekki Phase 1,"Lekki Phase 1,freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +39628,2 Bedroom Terraced Duplex For Sale," alpha Beach Road, Igbo Efon Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +39629,5 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39630,Corner Piece Land,Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39631,4 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39632,Land For Sale In A Built Up Estate And A Serene Environment,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",1,0,0, beds, baths, Toilets,Ikota +39633,5 Bedroom Detached Duplex," chevron Orchild Hotel Road, Chevy View Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39634,Event Hall For Sale In Lekki,Lekki Epe Express Road Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds,6 baths,6 Toilets,Lekki Phase 1 +39635,5 Bedroom Duplex,Aluko Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,7 Toilets,Other Lekki +39636,4 Bedroom Semi Detached Duplex," ginza Hills Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39637,5 Bedroom Detached Duplex," ginza Hills Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39638,Lekki Vale Estate,Bolorunpelu Opposite The New Lekki International Airport Ibeju Lekki Lagos. Chevron Lekki Lagos,₦,"5,500,000",0,1,0, beds, baths, Toilets,Chevron +39639,4 Bedroom Semi Detached Duplex," orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39640,5 Bedroom Semi Detached Duplex," atlantic View Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39641,4 Bedroom Detached Duplex," orchid Road,chevron Tollgate, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39642,Mixed Use Land," link To Agungi, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39643,5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +39644,5 Bedroom Detached Duplex," chevron Alternative Route, Chevy View Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39645,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +39646,3 Bedroom Detached Bungalow," off Igbo Efon Road, Igbo Efon, Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39647,3 Bedroom Flat," 3rd Roundabout By Nike Art Gallery, Ikate Elegushi, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39648,Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39649,Land,"Cowrie Estate, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39650,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +39651,4 Bedroom Semi Detached Duplex," chevy View Estate By Chevron Drive, Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +39652,Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +39653,5 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,7 baths,6 Toilets,Lekki Phase 2 +39654,5 Bedroom House," off Chief Street, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39655,3 Bedroom Flat," off Orchid Road, By Chevron Toll Gate, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,0 baths,4 Toilets,Other Lekki +39656,4 Bedroom House, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39657,Residential Land," abijo Gra By Chalcedony School, Abijo, Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39658,Residential Land," chevron Road Lekki Lagos., Chevy View Estate, Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39659,Governers Consent,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39660,Finished 2no Units Of 4 Bedroom Semi Detached Houses,"Willow Greens Street, Osapa London, Lagos Osapa London Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets,Osapa London +39661,5 Bedroom Detached House,"Ifiok Ojuolape Street, Osapa London Osapa London Lekki Lagos",₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +39662,6000sqms Land @ Lekki Phase1,Lekki 3rd Roundabout Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39663,A Distress Blocks Of Flat For Sale,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +39664,Fantastically Finished 5 Bedroom Detached House With Modern Facilities,"Willow Greens Street, Osapa London, Lagos Osapa London Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +39665,Tastefully Furnished 4 Bedroom Fully Detached Duplex,Before Agungi Osapa London Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets,Osapa London +39666,Exotically Finished 4 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,3 Toilets,Other Lekki +39667,Sageville Estate Burtons Homes,"Lekki Right, Elegushi Beach Road, Down Nike Art Gallery Road, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets,Ikate +39668,Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +39669,Detached Duplex With Bq,Lekki Lagos Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +39670,5 Bedroom Detached Duplex," skc Court Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39671,5 Bedroom Detached Duplex," signature Estate Chevron Alternative, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39672,4 Bedroom Semi Detached Duplex," ikota Villa Estate Lekki, Ikota Villa Estate, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39673,5 Bedroom Detached Duplex For Sale," ikota Villa Estate, Ikota Villa Estate, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39674,2 Bedroom House, Lekki Lagos,₦,"17,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +39675,5 Bedroom Detached Duplex, Ilasan Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +39676,4 Bedroom Terraced Duplex, Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +39677,4 Bedroom Semi Detached Duplex," orchid Road, Lekki Expressway, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +39678,5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39679,Hotel / Guest House," lekki Vi, Lekki Expressway, Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39680,Hotel / Guest House," chevy Estate, Lagos, Chevy View Estate, Lekki Lagos",₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39681,5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +39682,8 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"280,000,000",0,0,0,8 beds,9 baths,9 Toilets,Victoria Garden City +39683,6 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"190,000,000",0,0,0,6 beds,7 baths,7 Toilets,Victoria Garden City +39684,A Plot Of Land For Sale,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets,Chevron +39685,A 6 Bedroom Mansion For Sale Urgently.,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets,Chevron +39686,5bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39687,Cofo,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets,Chevron +39688,C Of O,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikate +39689,5 Bedroom Detached House + 2 Rooms Bq,Banana Island Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39690,Partly Furnished 4 Bedroom Semi Detached House,Off Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +39691,Luxury Units Of 3br Flat,Off Ebun Ojo Street Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +39692,Duplex,Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +39693,Land,Beside Vgc Off Lekki/ajah Expressway Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +39694,Luxury 4 Bedroom Detached Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +39695,Jv Land,Off Kusenla Road Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Ikate +39696,Lovely 6units Of 3bedroom Flat,Off Shop Rite Road Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +39697,Lands For Jv,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39698,Cozy 3 Bedroom Terrace Duplex With Service Quarters.,"Daniel's Court, Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39699,Ultra Modern 4 Bedroom Duplex With Indoor Pool,Tunji Street Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +39700,Superbly Finished 4 Bedroom Terrace Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"49,000,000",0,0,0, beds, baths, Toilets,Chevron +39701,Exquisite 4 Bedroom Semidetached Duplex,"2nd Tollgate, Opposite Chevron Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39702,5 Bedroom Detached Duplex For Sale," lekki County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39703,Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39704,Luxurious 5 Bedroom Fully Detached Duplex,"Chevy View, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +39705,Massive 5 Bedroom Fully Detached Duplex,"Lekki County Homes, Rd 3 Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikota +39706,2 Bedroom Flat,"Ikota Villa Estate, Road 32 Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +39707,Splendid 4 Bedroom Semi Detached Duplex,Eletu Road; Osapa London Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,5 baths,4 Toilets,Osapa London +39708,Massive 4 Bedroom Semi Detached Duplex,Southern View Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39709,Excellent 3 Bed Flat With Bq And 24/7 Power,Off Kusenla Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +39710,Luxury 5bed Room Fully Detached Home Just Off Fola Osibo,Babajide Babatope Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39711,Ultra Luxury 5 Bedroom Fully Detached Duplex,Bamidele Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39712,Luxury Miniflat With Pool And Gym,"Ikota Villa Estate, Road 32 Ikota Lekki Lagos",₦,"16,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikota +39713,5 Bedroom Detached Duplex,Carlton Estate Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +39714,Luxury 4 Bedroom Fully Detached Duplex With An Indoor Pool,Bakare Estate Off Chevron Drive; Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +39715,Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39716,5 Bedroom Duplex,"Pinnock Estate, A Secured Uacn Developed Estate, Close To Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39717,Classy 4 Bedroom Fully Detached Duplex,Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39718,5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39719,Contemporary 5 Bedroom Fully Detached Duplex With Modern Facilities And Pristine Views.,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39720,Brand New 5 Bedroom Detached Duplex With 2rooms Attached Bq,"Road 55, Vgc V.g.c Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39721,4 Bedroom Detached Duplex, chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39722,Brand New 4 Bedroom Semi Detached Duplex,Van Daniels Street 7th Roundabout Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +39723,5 Bedroom Detached Duplex, bamidele Eletu Street Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +39724,5 Bedroom Duplex,"Pinnock Estate, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39725,Brand New Serviced 4 Bedroom Semi Detached Duplex With Bq,Victoria Crest 3 Off Orchid Hotel; Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +39726,Massive 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +39727,5 Bedroom Duplex,"Africa Lane, Off Admiralty Road, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39728,Brand New 4 Bedroom Terrace Duplex In A Serviced Estate,Off Orchid Hotel Road; Chevron Lekki Lagos,₦,"36,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +39729,C Of O,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets,Chevron +39730,4 Bedroom Terraced Duplex, orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +39731,5 Bedroom Detached Duplex," chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +39732,Modern 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39733,Brand New And Fully Fitted 4 Bedroom Terrace Duplex,Van Daniels Street Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 2 +39734,3 Bedroom Duplex,"Block 13, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39735,5 Bedroom And 4bedroom Duplexes,Ologolo Road Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ologolo +39736,Brand New 3 Bedroom Detached Duplex With Bq,"Safe Courts Estate, Nicon Town Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +39737,5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate; Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +39738,5 Bedroom Detached Duplex, lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39739,"Luxury Exquisitely Built Elegant 5bedroom Semi Detached Duplex With Swimming Pool,gymnasium ,meeting Hall",Circle Mail Road Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Osapa London +39740,Residential Land," cowrie Creek Estate, Ikate Elegushi, Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39741,Exquisite Bullet Proof Mansion For Sale In Lekki,"Carlton Gate, Estate Chevron Lekki Lagos",₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +39742,4 Bedroom Semi Detached Duplex," orchid Hotel Road By Chevron Toll Gate, Lekki Expressway, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +39743,5 Bedroom Detached Duplex," richmond Gate Estate., Ikate Elegushi, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39744,4 Bedroom Semi Detached Duplex,  Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39745,5 Bedroom Detached Duplex," orchid Hotel Road 2nd Toll Plaza, Lekki Expressway, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +39746,4 Bedroom Terraced Duplex," orchid Hotel Road, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39747,Governor's Consent,Road 35 Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,9 baths,9 Toilets,Victoria Garden City +39748,Brand New Luxury Serviced 4 Bedroom Terrace For Sale In A Very Good And Accessible Location,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets,Chevron +39749,4 Bedroom Terraced Duplex," orchid Hotel Road, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39750,Land For Sale At Abijo,4th Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39751,Excision,"Enukunmi Village, Off Eleko Beach Road, Lagos Vgc Lekki Lagos",₦,"3,000,000",0,1,0, beds, baths, Toilets,Victoria Garden City +39752,Semi Detached Duplex,By 2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds, baths, Toilets,Chevron +39753,2 Bedroom Flat,"Chois Garden, Abijo Gra Lekki Lagos",₦,"15,400,000",0,0,0,2 beds, baths, Toilets,Other Lekki +39754,5bedroom For Sale With Bq,"Prince Kazeem Street,osapa London Lekki Osapa London Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +39755,Executive 4 Bed Room Semi Detached Duplex,Creek Avenue Court Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +39756,Luxury Estates In Lekki (let's Form A Thread),Nike Arts Gallery Road Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Ikate +39757,"Buy And Build, 15 Geniue Plots Of Land In Lekki Phase 2 Selling 25m Per Plot.",Eleganza Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +39758,5bedroom Semi Duplex With Bq,Lfek Street Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +39759,5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +39760,3 Bedroom Apartment With Bq,Runabout At Lkata Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39761,5 Bedroom Duplex Detached House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths, Toilets,Ikota +39762,707m2,Off Domino Pizza Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Ologolo +39763,A State Of The Art 3 Bedroom Terrace.,Off Orchid Road. Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths, Toilets,Chevron +39764,Luxury 4 Bedroom Duplex For Sale At Lekki,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +39765,Land,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39766,3 Bedroom House,Plot 33. Off Orchid Road. Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets,Chevron +39767,Brand New 4 Bedroom Terrace Duplex For Sale,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets,Ikate +39768,Cornerpiece Land Ideal For Residential Develoment. For Sale.,Off Orchid Rd. Lafiaji. Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +39769,"4 Bedroom Maisonette Located In Ocean Bay Estate, Lekki","Ocean Bay Estate, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39770,3 Bedroom Luxury Penthouse With Bq,"Ocean Bay Estate, Lekki Phase 2 Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +39771,4 Bed Room Terrace With Boys Quarter Located At Romany Garden,Romany Garden Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39772,"2 Bedroom Luxury Apartment Located In Ocean Bay Estate, Lekki","Ocean Bay Estate, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +39773,Land For Sale.,Lafiaji Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Chevron +39774,Plots Of Land,Vintage Park 1 Behind Toyota Office Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39775,Land,Behind Toyota Office Ikate Lekki Lagos Ikate Lekki Lagos,₦,"84,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +39776,4 Bedroom Duplex With Bq,Behind Femi Okunnu Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39777,Governor's Consent,Off Chevron Drive Chevron Lekki Lagos,₦,"70,000",0,1,0,5 beds, baths,6 Toilets,Chevron +39778,Gosford Castle,Osapa London Lekki Lagos,$,"656,452",0,0,1,10 beds,10 baths,10 Toilets,Osapa London +39779,6 Bedroom Detached Duplex Plus 3room Bq,Alternative Route Chevron Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,6 Toilets,Chevron +39780,Furnished Four Bedroom Duplex For Sale,Ochid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,6 Toilets,Lekki Phase 2 +39781,A Modern And Luxury 5bedroom Duplex In A Well Serene Environment,Elegushi Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +39782,Beautifully Fiished 4 Bedroom Semi Duplex + Bq In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39783,Luxury 5 Bedroom Detached House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +39784,Brand New 3 Bedroom Terrace House,Lafiaji Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +39785,Beautiful 5 Bedroom Detached House + Bq, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39786,Beautifully Finished 4 Bedroom Detached Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39787,5 Bedroom Fully Detached House In Megamound,Megamound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39788,Newly Built Serviced 4 Bedroom Semi Detached Duplex + Bq In Osapa London,Alpherton Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39789,An Exquisite 5 Bedroom Detached House In Megamound,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39790,5 Bedroom Detached Edifice + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39791,Beautifully Finished 4 Bedroom Fully Detached Duplex + Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +39792,Fully Detached Exquisite 5 Bedroom Duplex + Bq,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +39793,423sqm Land,Ologolo Ologolo Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Ologolo +39794,573sqm Land At Lekki Right, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39795,"Luxury And Fantastic Finished 5bedroom Fully Detached Duplex With Swimming Pool, On 650sqm.secure And Gated Environment",Idado Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39796,Very Luxury And Excellent Finished 5 Bedroom Duplex With Bq, Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Lekki +39797,5 Bedroom Duplex With Bq And 4 Number Of 3 Bedroom Flat.on 1190sqm,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Osapa London +39798,Very Beautiful And Well Finished 4 Bedroom Terrace Duplex With Bq.secure And Gated Environment.,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39799,Luxury And Fantastic Finished 5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39800,"520sqm Of Land For Sale At Pinnock Beach Estate,lekki Lagos","Pinnock Beach Estate,lekki Osapa London Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets,Osapa London +39801,For Sale:incompleted 12 Numbers Of 4bedroom Terrace Duplex With Bq At Osapa London,Osapa Osapa London Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Osapa London +39802,Luxury And Superb Finished 4bedroom Terrace Duplex With Bq.royal Garden Estate Ajah,Royal Garden Estate Ajah Vgc Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Garden City +39803,Very Luxury And Superb Finished 5bedroom Fully Detached Duplex With Bq And Swimming Pool At Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39804,Land For Sale 450sqm In Victory Park Estate.lekki Lagos,Victory Park Estate Osapa London Lekki Lagos,₦,"39,000,000",0,0,0, beds, baths, Toilets,Osapa London +39805,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39806,A Luxurious Estate In A Beautiful Atmosphare Of Lekki,Lekki Conservative Chevron Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +39807,"40,000sqm Land", Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +39808,"Off Plan 4bed Terrace With Bq Beside Orchid Hotel, Lekki","Orchid Hotel Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39809,5 Bedroom Detatched House With Swimming Pool And Bq,Agungi Igbo Efon Agungi Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,5 baths,5 Toilets,Agungi +39810,One Bedroom Apartment,Dependable Drive Ikate Lekki Lagos,₦,"18,500,000",0,1,0,1 beds,1 baths,2 Toilets,Ikate +39811,Luxury 5 Bedroom Duplex,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +39812,Apartments, Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39813,Bareland, Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39814,Landed Property,Small Estate After Agunbiade Street. Ologolo Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Ologolo +39815,3 Bedroom Flat,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +39816,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +39817,4 Plots Of Land, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39818,4 Bedroom Duplex + Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +39819,9.5 Hectares Of Land,Akodo. Lekki Free Trade Zone Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39820,5 Bedroom Semi Detached Duplex With Bq, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +39821,Newly Tastefully Built 5 Bedroom Classic Style Luxurious Duplex,Osapa Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +39822,4 Bedroom Duplex Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +39823,4 Plots Of Land,Near The Redeemed Christian Church Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39824,1313887sqm Of Land For Sale At Lekki Phase 1,Itedo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39825,Land,Lekki Expressway Lekki Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39826,4 Bedroom Duplex With A Bq, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +39827,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +39828,Land,Off Lekki Epe Expressway. Agungi Lekki Lagos,₦,"355,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +39829,Land, Osapa London Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +39830,Land,Along Orchid Hotel Road By Shell Quarters By 2nd Toll Gate Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39831,Land,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +39832,4 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +39833,4 Bedroom Semi Detached House With 1bq, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +39834,Land, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +39835,Newly Built 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39836,Land,Free Trade Zone Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39837,4 Bedroom Terrace Apartment, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39838,4 Bedroom Duplex Wit Bq Fully Detached, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +39839,4 Bedroom Semi Detached Duplex With A Room Bq, Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +39840,3 Plots Of Land,Chevron Alternative Route Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39841,6 Bedroom Detached House With A Room Bq,Pinnock Beach Estate Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +39842,Land,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +39843,Land With Governor Consent With Building Approval,Christopher Street Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +39844,678 Sqm Of Land With Governor's Consent,Christopher Street Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +39845,Cofo,Off Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +39846,The Sapphire Penthouses,"Lekki Phase 1, 2nd Round About,lekki Epe Expressway Off Remi Olowude Street, Towards The Atlantic Coast. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +39847,New 5 Bedroom Detached House + Servant's Quarter,Spring Bay Estate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +39848,Units Of Flats,By Jubilee Bridge Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39849,Distressed Sales ! 5 Bedroom Fully Detached Duplex With A Bq In Osapa London,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"77,000,000",0,0,0,5 beds,4 baths,4 Toilets,Osapa London +39850,C Of O,Igbo Efon Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikota +39851,4bedroom Semi Detached Duplex With A Bq In Oral Estate For Sale ( Available For Inspection ),"Second Toll Gate, Lekki Oral Estate Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Lekki +39852,Massive 5bedroom Semi Detached Apartment With 1rm Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39853,4 Bedroom Detached House With Bq,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39854,Two Units Of Luxury Five(5) Bedroom Detached Houses, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39855,Well Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"49,900,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39856,4 Bedroom Semi Detached Duplex,Buene Vista Estate By Chevron Toll Gate Orchid Hotel Road. Chevron Lekki Lagos,₦,"49,900,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +39857,5bedroom Fully Detached Duplex,Osapa Street Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Osapa London +39858,4bedroom Semi Detached Duplex For Sale In A Very Secured Estate In Agungi,Off Ajiran Road Agungi Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Agungi +39859,Furnished 4 Bedroom Terraced Duplex For Sale,"Novojo Estate, Sangotedo A Bit After Lagos Business School Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39860,4 Bedroom Terrace Duplex For Sale,Lagos Business School Lekki/epe Expressway Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39861,Certificate Of Occupancy,Jide Sawyer Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +39862,Certificate Of Occupancy,Jide Sawyer Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +39863,4 Bedroom Detached House, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +39864,C Of O,"Directly Opp Alma Beach Besides Mercedes Benz, Image, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets,Ikate +39865,C Of O,"Directly Opposite Alma Beach Beside Mercedes Benz, Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets,Ikate +39866,C Of O,"Directly Opposite Alma Beach Beside Mercedes Benz, Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets,Ikate +39867,C Of O,Directly Opposite Alma Beach Estate Beside Mercedes Benz Lekki Phase 1 Ikate Lekki Lagos,₦,"95,000,000",1,1,1, beds, baths, Toilets,Ikate +39868,4 Bedroom Maisonette Plus Bq,Amadasun Street Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39869,4 Bedroom Terrace House, Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39870,5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +39871,Captivating 5bedroom Semi Detached Apartment For Sale,Main Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39872,4 Bedroom Terrace,"Salem Street, Spar Road Nicon Town Lekki Lagos",₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39873,5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +39874,Plots Of Land, Chevron Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39875,C Of O,"Megamound Estate, Lekki County Homes. Ikota Lekki Lagos",₦,"115,011,500",0,1,0,5 beds,6 baths,7 Toilets,Ikota +39876,4 Bedroom Semi Detached House,Abayomi Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39877,Land For Joint Venture,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39878,30 Plots For Sale,Orchid Lafiaji Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets,Chevron +39879,Lands For Sale,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Agungi +39880,5 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +39881,C Of O,"Megamound Estate, Lekki County Homes. Ikota Lekki Lagos",₦,"115,011,500",0,1,0,5 beds,6 baths,7 Toilets,Ikota +39882,The Best Luxurious 5bedroom Apartment Within Lekki 1,Mobolaji Johnson Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +39883,Iconic 5bedroom Fully Detached Apartment In Pinnock Beach,Pinnock Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +39884,Luxury 5bedroom Fully Detached Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +39885,Luxury 5bedroom Fully Detached Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +39886,4 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39887,4 Bedroom Terrace House,Gbadamosi Eletu Street Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39888,Serviced Plots By Novare Mall In Lekki Ajah Selling For N14.28m,By Novare Mall Lekki Phase 1 Lekki Lagos,₦,"14,280,000",1,1,0, beds, baths, Toilets,Lekki Phase 1 +39889,Brand New 4 Bedroom Semi Detached Duplex With Bq,Road 3 Oral Estate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +39890,Newly Built 5 Bedroom Duplex With Bq,Chevy View Estate Behind Chevron Alternative Route Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +39891,Newly 4bedroom Semi Detached Duplex With Bq,Road4 Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +39892,Newly Built 5bedroom Duplex With Bq.,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +39893,Brand New 5bedroom Fully Detached Duplex With Bq,Road2 Oral Estate Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets,Other Lekki +39894,4 Bedroom Duplex,Megamond Estate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +39895,Uncompleted Hotel,"Off Lekki Express Way, Jakande, Osapa Jakande Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Lekki +39896,900sqm² Land,"Block 83, Plot 22 Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +39897,5 Bedroom Duplex,Newhall Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +39898,4 Bedroom Semi Detached Duplex With 1 Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39899,Available Four Bedroom Terraced Apartment,Spring Estate Drive Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +39900,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +39901,Contemporary Styled 4 Bedroom Town House With One Room Boy's Quarter,Gbadamosi Eletu Drive Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39902,5 Bedroom Duplex,Ikota Villa Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39903,Governor's Consent,"At Osapa London Lekki Lagos ,well Constructed Osapa London Lekki Lagos",₦,"65,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +39904,Governor's Consent,Behind Chevy View Estate Chevron Lekki Chevron Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +39905,3bed Luxury Bungalow With Bq At Divine Homes Thomas Estate Ajah Lekki.,Divine Homes Thomas Estate Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +39906,Governors Consent C Of O,Beside Oba Elegushi Road Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +39907,Dry Plots Of Lands For Sale At Awoyaya Ahaj.,Behind Greenspring School Awoyaya Lekki Lekki Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets,Other Lekki +39908,Brand New 4 Bedroom Terrace Duplex With One Bedroom Boys Quarter,Ilasan Ikate Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets,Ikate +39909,5 Bedroom Fully Detached Duplex,Olajide Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +39910,5 Bedroom Semi Detached Duplex,Elegushi Beach Road Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikate +39911,Luxury 3 Bedroom Duplex,Lekki Gardens Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +39912,4 Bedroom Bungalow,Northern Foreshore Estate Off Chevron Drive Lekki. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39913,4 Bedroom Semi Detached Duplex,Eti Osa Street Ikate Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,3 baths,3 Toilets,Ikate +39914,Newly Built 4bedroom Duplex For Sale,Buene Vista By Orchid Hotel Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +39915,5 Luxurious 5 Bedroom Terraces In Lekki Phase 1,"Adekola Balogun Street, Off Remi Olowude Street, By Fitness Central Gym, Lekki Phase 1, Lagos State. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,8 baths,8 Toilets,Lekki Phase 1 +39916,Four Bedroom Duplex,Jakande Jakande Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39917,4 Bedroom Semi Detached House With A Pool,Chevron Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +39918,Two Bedroom Flat,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets,Chevron +39919,Executive Four Bedroom Terrace Duplex At Lekki,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39920,Four Bedroom Terrace Duplex,. Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +39921,Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +39922,Four Bedroom Semi Detached Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39923,Brand New Apartments At Lekki,. Agungi Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets,Agungi +39924,4bedroom Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +39925,Beautifully Built 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,5 baths,5 Toilets,Chevron +39926,4 Bedroom Detached House,Lekki Garden Ii Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39927,Fully Detached 4 Bedroom Duplex With Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39928,5 Bedrooms Bungalow,"Vgc, Lekki Vgc Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +39929,Luxury 3 Bedroom Flat With Bq,1st Round About Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +39930,Uncompleted 3 Units Of 4 Bedroom Terrace Duplex,"Awoyaya, Lekki Lekki Lekki Lagos",₦,"12,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +39931,Well Finished 4 Bedroom Terrace,Lekki Garden Estate Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39932,2093 Sqm Land At Lekki Phase 1,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39933,Beautifully Built 4 Bedroom Detached Duplex,"Bera Estate, Beside Uba, Chevron Drive Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39934,6 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +39935,4 Bedroom Terrace Duplexes,After Second Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39936,Fully Detached 5 Bedroom Duplex At Lekki,Vgc V.g.c Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +39937,Secured Plots Of Land In Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +39938,4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +39939,2 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,2 baths,2 Toilets,Chevron +39940,4 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +39941,4 Bedroom Semi Detached House For Sale,Orchard Hotel Area Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +39942,4 Bedroom Semi Detached Duplex + Bq,Creek Avenue Courts Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +39943,Brand New 4 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +39944,Exquisite 4 Bedroom Semi Detached Duplex For Sale,Close Off Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets,Chevron +39945,5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +39946,4 Bedroom Semi Detached House,2nd Round About Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39947,3 Bedroom Terrace Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +39948,5 Bedroom Detached Duplex,Alpha Beach; Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +39949,5 Bedroom Detached Duplex,Vgc V.g.c Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +39950,Luxurious 4 Bedroom Terrace Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +39951,Residential Land In A Gated Estate,"Monastry Road, Lekki Epe Express Road. Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39952,5 Bedroom Fully Detached Duplex,"Adjacent White Sand School, 2nd Roundabout Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +39953,Fully Detached 6 Bedroom Twin Duplex With A Bq,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets,Ikota +39954,4 Bedroom Detached Duplex,3 Mins Drive From Orchid Hotel Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +39955,"3 Bedroom Flats Victoria Apartments, Pinnock Beach",Jakande Jakande Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +39956,5 Bedroom Fully Detached Duplex With 1 Maid Room,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39957,East Amber Lands,Abijo Gra Lekki Lagos,₦,"11,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39958,Southern Greens Estate Lands,Lafiaji Lekki Lagos,₦,"20,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39959,5 Bedroom Fully Detached Duplex With 1 Maid Room,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +39960,Land For Sale,Twin Lakes Estate By Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets,Chevron +39961,5 Plots Of Land,"Alewa Road, Ilasan Elegushi Lekki Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +39962,5 Bedroom Fully Detached Duplex,"Chevron Drive, Chevron Lekki Lagos",₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +39963,5bedroom Terraced Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +39964,5bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +39965,5bedroom Terraced,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikate +39966,4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Ikate +39967,Dry Land With C Of O,10 Min Drive From La Champaigne Tropicana Lekki Phase 2 Lekki Lagos,₦,"750,000",0,1,0, beds, baths, Toilets,Lekki Phase 2 +39968,3 Bedroom Apartments At Greencity Estate.,Elf Bus Stop Lekki After The 2nd Round About Same Street At City Lodge Hotel Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,1 Toilets,Lekki Phase 1 +39969,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"Daniels Garden, Osapa London Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +39970,"Grand 6 Bedroom Detached House For Sale At Chevron, Lekki",Chevron Chevron Lekki Lagos,₦,"150,000,000",1,1,1,6 beds,7 baths,7 Toilets,Chevron +39971,"Newly Built Luxury 5 Bedroom Fully Detached House For Sale At Lekki, Lagos",Osapa Osapa London Lekki Lagos,₦,"98,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +39972,5bedroom Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +39973,5bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +39974,Global C Of O,"Inside Beechwood Estate Shapiro, Lekki. Lekki Phase 1 Lekki Lagos",₦,"6,000,000",1,1,1, beds, baths, Toilets,Lekki Phase 1 +39975,Brand New 5 Bedroom Duplex At Elegushi,Chisco Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +39976,Land,"Lafiaji , Lekki Lagos",₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Lekki +39977,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets,Osapa London +39978,Land,Close To Lekki Beach Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +39979,4 Bedroom Semi Detached Duplex,"Buene Vista Estate By Chevron Toll Gate, Chevron Lekki Lagos",₦,"49,900,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +39980,Land,Destiny Gardens Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +39981,4 Bedroom Detached House With 2 Room Domestic Staff,Alpha Bay Estate Lekki Epe Express Way Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +39982,4 Bedroom Semi Detached House With Staff Quarter,"Mobolaji Johnson, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39983,Luxurious 4 Bedroom Semi Detached With A Room Domestic Staff Quarters,6 Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +39984,3 Bedroom Bungalow Detached House,Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +39985,6 Bedroom House,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +39986,Water Front Mixed Use Plot,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +39987,4 Bedroom Townhouse,Off Christ Avenue Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +39988,Brand New Executive 3bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +39989,Newly Built 5 Bedroom Detached House,Megamound Estate Lekki Lagos Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Lekki +39990,5 Bedroom Duplex,Legacy Street Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +39991,5 Plots Of Land,"Alewa Road, Ilasan Elegushi Lekki Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Lekki +39992,4 Bedroom Semi Detached Duplex,Buene Vista Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +39993,Five Bedroom Detached Apartment With Boys Quaters,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets,Ikota +39994,3 Bedroom Semi Detached Duplex For Sale At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +39995,Exclusive Brand New 5 Bedroom Detached Duplex/bq,Chevyview Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +39996,Exclusively Finished 5 Bedroom Detached Duplex,Bola Crest Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +39997,Luxurious 4 Bedroom Terraces,Tony Crest Chevron Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,4 Toilets,Chevron +39998,"Lekki 4 Bedroom Duplex, Fully Finished (mortgage And Installment Plan )","Daniel's Court, Osapa London, Leki Osapa London Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +39999,2000sqmtrs Land,Lekki Conservation Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40000,4/5 Bedroom Semi Detached Duplexes, Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +40001,Newly Built 4 Bedroom Detached Duplex With Boys Quarters,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +40002,Land, Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +40003,5bedroom Fully Detached Duplex,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"105,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +40004,Luxury 5bedroom Fully Detached,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"108,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +40005,Bare Land,Carlton Gate Estates Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Chevron +40006,Serviced 3 Bedroom Flat,"Grace Court, Ikate Elegushi Ikate Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets,Ikate +40007,Land,"Lafiaji, Vgc Lekki Lagos",₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40008,Newly Built 5 Bedroom Semi Detached Duplex Wit Bq,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +40009,Land, Lekki Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40010,Inprogress 6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +40011,Inprogress 6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,6 beds,7 baths,7 Toilets,Osapa London +40012,3 Bedroom Terraced Duplex With Bq,"18 Silverbird Road, Jakande 1st Gate Bus Stop, Lekki Ilasan Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Lekki +40013,4bedroom Duplex,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +40014,4 Bedrooms Semi Detached Duplex With One Room Boys Quarters,"The Property Is Located At Cdv Court 2, Silicon Valley Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ologolo +40015,2 Bedroom Block Of Flats," ikota Villa Estate, Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +40016,Land," lekki Free Trade Zone, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40017,4 Bedroom Semi Detached Duplex," eli Court, Chevron Alternative Drive, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +40018,4 Bedroom Semi Detached Duplex,"North Pointe Estate Phase 1, Chevy Drive Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40019,5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40020,3 Bedroom Semi Detached Duplex,. Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40021,4 Bedroom Semi Detached Duplex With Bq,Daniels Garden Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40022,4 Bedroom Semi Detached Duplex With Bq,"Eli Court, Chevron Alternative Drive Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +40023,2 Bedroom Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +40024,5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40025,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40026,4 Bedroom Terraced Duplex,Palm City Estate Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40027,3 Bedroom Terraced Duplex, Idado Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40028,4 Bedroom Duplex Cornerpiece Terrace Duplex,. Ikate Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +40029,Residential Land,Bera Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40030,Residential Land,"Bera Estate, Chevron Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40031,4 Bedroom Detached Duplex, Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +40032,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +40033,5 Bedroom Semi Detached Duplex," ocean Bay Estate, Along Orchid Hotel By Chevron Toll Gate, Lafiaji, Lekki Lagos",₦,"62,000,000",0,0,1,5 beds,6 baths,6 Toilets,Other Lekki +40034,Residential Land With Governor's Consent,"Lekki Epe Expressway; Road 12, Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40035,4 Bedroom Detached Duplex," chevron Alternative Drive, Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +40036,4 Bedroom Semi Detached Duplex," chevron Alternative Drive, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +40037,Residential Land," off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40038,Residential Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40039,4 Bedroom Terraced Duplex + Bq With Swimming Pool & Gym,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40040,4 Bedroom Detached Duplex,. Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +40041,Brand New Luxury 4 Bedroom Detached Duplex,Before Agungi/igbo Efon/chevron Axis; Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40042,4 Bedroom Detached Duplex,. Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Lekki +40043,Brand New Luxury 4 Bedroom Fully Detached Duplex With Bq,Before Agungi/igbo Efon/chevron Axis; Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40044,4 Bedroom Semi Detached Duplex With Bq,Daniel's Garden Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40045,Residential Land,Road 12 Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40046,4 Bedroom Detached Duplex For Sale," before Agungi, Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40047,4 Bedroom Terraced Duplex For Sale,  Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets,Osapa London +40048,Residential Land,"Road 12, Victoria Garden City (vgc) Lekki Epe Expressway Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40049,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +40050,3 Bedroom Flat For Sale," oral Estate, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40051,4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Drive Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40052,4 Bedroom Semi Detached Duplex For Sale," chevron Alternative Drive, Lekki Phase 1 Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40053,4 Bedroom Semi Detached Duplex For Sale," daniel's Garde,n Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40054,4 Bedroom Semi Detached Duplex With Bq,Ologolo Agungi Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +40055,Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Osapa London, Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +40056,Exotically Finished 4 Bedroom Senmi Detached Duplex,. Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Ikota +40057,Luxury 5 Bedroom Semi Detached Duplex,Ocean Bay Estate Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Lekki +40058,Luxury 3 Bedrooms Terrace Duplex,Lekki Gardens Estate Lekki Lagos,₦,"29,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Lekki +40059,Exquisitely Finished 4 Bedroom Fully Detached Duplex,"Alternative Chevron Drive, Chevron Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40060,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq.,Osapa London Before Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Agungi +40061,Luxury 4 Bedroom Fully Detached Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +40062,4bedroom Duplex,"Oral Estate, Orchid Road, 2toll Gate,lekki Oral Estate Lekki Lagos",₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Lekki +40063,Beautiful And Spacious 6 Bedroom Duplex For Sale,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets,Lekki Phase 2 +40064,4 Bedroom Terrace Duplex,Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40065,Luxurious 5 Bedroom Fully Detached House,"Lekki County, Vgc Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +40066,4 Bedroom Semi Detached Duplex,Alternative Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40067,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40068,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +40069,Tastefully Finished 3 Bedroom Flat With Bq And Swimming Pool,2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +40070,Lovely 4 Bedroom Fully Detached Duplex,"Chevron, Chevron Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40071,4 Bedroom Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +40072,4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40073,Beautiful 4 Bedroom Detached House,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +40074,4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40075,4 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +40076,Luxuriously Finished 5 Bedroom Detached House,"Osapa, Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40077,5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40078,Luxury 4 Bedroom Fully Detached Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40079,5 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +40080,3 Bedroom Flat,Jude Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +40081,4 Bedrooms Duplex,Pinnock Beach Estate. Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40082,3 Bedroom Pent House,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40083,Tastefully Finished 5/4 Bedroom Detached Duplex With Bq,Southern View Estate By Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +40084,"Dry Land, Fenced And Gated 1500sqm",Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40085,2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +40086,3 Bedroom Flat, Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +40087,5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +40088,Exquisitely Furnished 4 Bedroom Apartment With 1 Room Boys Quaters,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40089,4 Units Of 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +40090,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40091,3 Bedroom Duplex With Bq,After 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +40092,Nice 3 Bedroom Terrace Duplex,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40093,Best Luxury 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +40094,New 5 Bedroom Detached Duplex With Bq,Olushola Akeem Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40095,New Lovely 4 Bedroom Detached Duplex Ajah Lagos,"Lekki, Lagos, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40096,Luxury Spacious 3 Bedroom Terrace Duplex With Bq In Ikota,Ologbo Ajawe Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +40097,5 Bedroom Detached House With B/q,Road 2 Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +40098,Lovely 5 Bedroom Detached Duplex With Bq,Folanke Adebayo Street Chevy Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40099,Beautiful 5 Bedroom Detached Detached Duplex,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40100,4 Bedroom Duplex With Bq,Alternative Chevron Road; Chevron Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40101,Luxury 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. P,"In Eli Court. Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets,Chevron +40102,4 Bedroom Fully Detached Duplex,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"68,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +40103,5 Bedroom Fully Detached Duplex,Olumide Street Idado Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,6 beds,5 baths,6 Toilets,Lekki Phase 1 +40104,2 Bedroom Flat,Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40105,Newly Built Luxury 4 Bedroom Semi Detached And 5 Bedroom Fully Detached Duplexes,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"49,247,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +40106,5 Bedroom Detached Duplex,. Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40107,Mixed Use Land,Lekki Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40108,5 Bedroom Semi Detached Duplex,"By Meadows Hall School, Ikate Elegushi Ikate Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40109,5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40110,5 Bedroom Detached Duplex With 2 Room Bq,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40111,3 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +40112,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40113,5 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40114,Residential Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40115,4 Bedroom Terraced Duplex,Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40116,Event Centre,Ikate Elegushi Ikate Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,10 Toilets,Ikate +40117,4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40118,Residential Land,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40119,4 Bedroom Detached Duplex,. Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40120,Detached Duplex,. Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40121,5 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40122,5 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40123,Block Of Flats,Honeyville Apartments Agungi Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +40124,5 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40125,4 Bedroom Semi Detached Duplex With Bq,"Eli Court, Chevron Alternative Drive Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +40126,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40127,4 Bedroom Terraced Duplex With Bq,"Off Kusunla Street, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40128,Residential Land,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40129,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +40130,5 Bedroom Detached Duplex,"Off Palace Road, Ikate Elegushi Ikate Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40131,4 Bedroom Terraced Duplex,"Off Lekki Epe Expressway, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40132,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40133,5 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40134,1 Bedroom Mini Flat,Off Freedom Before Ikate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,10 beds,2 baths,2 Toilets,Lekki Phase 2 +40135,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40136,5 Bedroom Detached Duplex,"By Chevron, Lekki Expressway Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40137,4 Bedroom Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40138,4 Bedroom Semi Detached Duplex,"By Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40139,New And Tastefully Finished 5 Bedroom Duplex + Bq With Governor's Consent,Chevy View Estate; Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +40140,4 Bedroom Detached Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40141,4 Bedroom Semi Detached Duplex With Bq,Adebisi Popoola Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Lekki Phase 1 +40142,C Of O,Behind Chevron Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets,Chevron +40143,5 Bedroom Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40144,A Luxury 3 Bedroom Terraced Duplex In Lekki Gardens New Horizon Ii Estate,"S7 Unit 2 Olivewood Road, Lekki Gardens New Horizon Ii Estate. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,1,3 beds,4 baths,4 Toilets,Lekki Phase 1 +40145,Mixed Use Land,"Orchid Road, Lafiaji Lekki Lagos",₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40146,5 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40147,2 Bedroom Block Of Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +40148,4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40149,5 Bedroom Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40150,5 Bedroom Detached Duplex,Ikota Villa Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40151,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40152,3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +40153,5 Bedroom Detached Duplex,Mobil Estate Vgc Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +40154,5 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Expressway Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40155,"5 Bedroom Detached Duplex For Sale At Ologolo , Lekki",Ologolo Ologolo Lekki Lagos,₦,"60,000,000",0,1,1, beds, baths, Toilets,Ologolo +40156,4 Bedroom Semi Detached Duplex For Sale,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ologolo +40157,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40158,5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40159,A Residential Plot Of Land,New Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40160,5 Bedroom Detached Duplex With Bq,. Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +40161,Residential Land For Sale, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40162,Residential Lands,"Lekki Expressway, Lekki Lagos",₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40163,4 Bedroom Terraced Duplex For Sale," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40164,Residential Lands,. Lekki Phase 1 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40165,2 Bedroom Flat For Sale, Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40166,6 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +40167,4 Bedroom Detached Duplex,"Lekki Conservation Centre, By Orchid Hotel Road, Lafiaji Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40168,5 Bedroom Detached Duplex With Bq,Alternative Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40169,5 Bedroom Detached Duplex For Sale," chevron Alternative Route, Before Abiola Courts, Chevy View Estate, Lekki Lagos",₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40170,4 Bedroom Detached Duplex For Sale,  Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +40171,4 Bedroom Detached Duplex For Sale," oral Estate, Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40172,6 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +40173,2 Bedroom Flat For Sale," off Lekki Epe Express Way, Ikate Elegushi, Lekki Lagos",₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40174,Office Space For Sale," admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40175,Mixed Use Land For Sale,  Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40176,4 Bedroom Terraced Duplex For Sale," royal Garden Estate, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40177,4 Bedroom Semi Detached Duplex With Bq,Opposite Agungi By Shoprite Circle Mall Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +40178,4 Bedroom Semi Detached Duplex,. Agungi Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40179,4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40180,4 Bedroom Terraced Duplex For Sale," lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40181,5 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40182,3 Bedroom Flat For Sale," ikate Axis On The Side Of Oando Gas Station, Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40183,Residential Land For Sale," off Chevron Drive, Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40184,4 Bedroom Semi Detached Duplex For Sale, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +40185,4 Bedroom House For Sale," behind Mega Chicken, Ikota Villa Estate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40186,3 Bedroom Terraced Duplex For Sale," orchid Road Eleganza Lekki Lagos, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +40187,3 Bedroom Terraced Duplex For Sale," off Orchid Road, Lekki 2nd Toll Gate, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40188,4 Bedroom Terraced Duplex For Sale," orchid Road Eleganza Lekki Lagos, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +40189,Serviced 4 Bedroom Semi Detached Duplex,"Orchid Hotel Road; Off Lekki Epe Expressway, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40190,4 Bedroom Terraced Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40191,Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +40192,5 Bedroom Detached Duplex + 1 Room Bq With Governor's Consent,Ikota Villa Estate; Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40193,Newly Built And Tastefully Furnished 5 Bedroom Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40194,Brand New Luxury Fully Detached 4 Bedroom Duplex With Bq,Daniel's Garden; Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,6 baths,6 Toilets,Osapa London +40195,4 Bedroom Terraced Duplex,"Roxbury Home 2; By Manor Garden/vgc, Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40196,3 Bedroom Flat With A Maid's Room,"Primewater Garden 2; Freedom Way, Elegushi Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +40197,2 Plots Mixed Use Land With Governor's Consent,"After Victoria Crest Estate; Orchid Hotel Road, Lafiaji, By Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40198,5 Bedroom Detached Duplex + Domestic Room With Governor's Consent,"Orchid Hotel Road; Lafiaji, By Tollgate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40199,Luxury Semi Detached Duplex With A Domestic Room With Governor's Consent At Osapa London,By Zenithbank; Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40200,Brand New And Beautifully Designed Fully Serviced 4 Bedroom Terraced Duplex + Bq With Swimming Pool,Off Freedom Way; Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40201,5 Bedroom Detached Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40202,5 Bedroom Duplex With Bq Available For Sale,"Lekki County Homes, Ikota, Lagos Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +40203,"Exquisite 4 Bedroom Terrace Duplex At Pracht Gardens, Ikota, Lagos (offplan).",Ikota Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40204,4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"36,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40205,5 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40206,3 Bedroom Semi Detached Duplex,"Off Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40207,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40208,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40209,4 Bedroom Detached Duplex,. Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40210,Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40211,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40212,3 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +40213,4 Bedroom Semi Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40214,4 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40215,Plaza / Complex / Mall For Sale," lekki Expressway, Lekki Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40216,4 Bedroom Semi Detached Duplex For Sale,  Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40217,Commercial Joint Venture Land,. Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40218,4 Bedroom Detached Duplex For Sale," osapa London, Lekki. Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40219,Commercial Land Joint Venture, Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40220,Residential Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40221,4 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40222,4 Bedroom Terraced Duplex For Sale, Ilasan Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40223,5 Bedroom Semi Detached Duplex For Sale," pinnock Beach Estate, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40224,4 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40225,Residential Land For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40226,Residential Land For Sale," off Omorire Johnson, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40227,Residential Land For Sale," kayode Animashaun Street, Off Admiralty, Lekki Phase 1 Lekki Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40228,6 Bedroom Detached Duplex For Sale," road 12, Vgc Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +40229,4 Bedroom Semi Detached Duplex For Sale," ikate, Ilasan Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40230,4 Bedroom Semi Detached Duplex For Rent," off Lekki Conservation Center Road, Lekki Lagos",₦,"3,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40231,4 Bedroom Semi Detached Duplex For Sale," osapa London, Before Agungi, Igbo Efon And Few Minutes Before Chevron, Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets,Osapa London +40232,4 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40233,4 Bedroom Detached Duplex For Sale," pinnock Beach Estate, Lekki Expressway, Lekki Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40234,6 Bedroom Detached Duplex For Sale, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,7 Toilets,Victoria Garden City +40235,4 Bedroom Semi Detached Duplex For Sale," white Oak Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +40236,5 Bedroom Semi Detached Duplex For Sale, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +40237,4 Bedroom Detached Duplex With Bq,. Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40238,4 Bedroom Detached Duplex For Sale, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40239,5 Bedroom Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40240,4 Bedroom Detached Duplex For Sale," before Agungi, Igbo Efon And Few Minutes Before Chevron, Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40241,Mixed Use Land For Sale," babatunde Anjous Street, Lekki Phase 1 Lekki Lagos",₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40242,4 Bedroom Semi Detached Duplex For Sale," orchid Hotel Road, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40243,Residential Land,"Lekky County Homes; Lekki Expressway, Ikota Lekki Lagos",₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40244,Luxury 4 Bedroom Terrace Duplex + Bq With Swimming Pool,Off Admiralty; Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40245,4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40246,Luxury Serviced 3 Bedroom Flat,"Soji Olagunju Street; Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40247,1 Unit Of 4 Bedroom Semi Detached House With Bq,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +40248,Brand New 4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikate +40249,New 3 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets,Osapa London +40250,4 Bedroom Terraced Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40251,4 Bedroom Terraced Duplex For Sale," ikota Villa Estate, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40252,3 Bedroom Terraced Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +40253,10.9 Hectares Of Dry Waterfront Bare Land,Lekki Beach Gate Street Jakande Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40254,Land,Kikelomo Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40255,Block Of Flats,"17/19, Sherifat Adenike Animashaun Street, Chevy View Estate. Chevron Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40256,Top Notch 4 Bedroom Detached Duplex,"Razak Eletu Street, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +40257,Elegance 5 Bedroom Detached Duplex For Sale,"Razak Eletu Street, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +40258,2 Nos Fitted 4 Bedroom Semi Detached House With 1 Room Boys Quarter,Oral Estate Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40259,Beautifully Finished/fitted 5 Bedroom Detached House With 1 Room Servant Quarter,Oral Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40260,4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40261,8 Units Of 3 Bedroom Apartment On 2000 Sqm,Off Babatunde Anjouse Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +40262,5 Bedroom Duplex + Bq, Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +40263,C Of O, Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40264,4 Bedroom Semidetached Duplex With Bq,"Oba Ogbagba Estate, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40265,Executive Furnished 4 Bedrooms Semidetached Duplex,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40266,5 Bedroom Duplex,Prince Ademola Eletu Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +40267,4 Bedroom Duplex At Abraham Adesanya Lekki Lagos,6 Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40268,2bedroom Flat In Lekki Right,Lekk Right Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40269,5 Bedroom Detached Duplex At Lekki Phase 2, Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,5 beds, baths, Toilets,Lekki Phase 2 +40270,5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +40271,4 Bedroom Semi Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40272,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40273,5 Bedroom Semi Detached Duplex,"Ocean Estate, Lekki Expressway Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40274,5 Bedroom Semi Detached Duplex For Sale,"Ocean Estate, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +40275,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40276,Block Of Flats,. Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +40277,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40278,4 Bedroom Detached Duplex,"By Cisco, Conoil Filling Station, Ikate Elegushi Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40279,5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40280,4 Bedroom Detached Duplex For Sale, Igbo Efon Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +40281,5 Bedroom Detached Duplex For Sale," bera Estate, Chevron, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +40282,4 Bedroom Semi Detached Duplex For Sale," bera Estate, Chevron Drive, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40283,4 Bedroom Detached Duplex For Sale," agungi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40284,Land For Sale, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40285,3 Bedroom Semi Detached Duplex," chevron, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40286,5 Bedroom Detached Duplex,"Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40287,4 Bedroom Semi Detached Duplex," chevron Drive, Chevy View Estate, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40288,5 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40289,5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40290,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40291,Mixed Use Land," off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40292,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40293,4 Bedroom House," ikota Villa Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40294,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40295,4 Bedroom Semi Detached Duplex For Sale, Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +40296,4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40297,Residential Land," close To The British International School, Abijo, Lekki Lagos",₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40298,Residential Land,Off Omorinre Johnson Avenue Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40299,3 Bedroom Terraced Duplex,  Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +40300,5 Bedroom Detached Duplex," off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40301,Residential Land,"Lafiaji, Off Orchid Road Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40302,6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +40303,5 Bedroom Detached Duplex," lafiaji, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40304,6 Bedroom Detached Duplex," oral Estate, Lafiaji, Lekki Lagos",₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +40305,4 Bedroom Terraced Duplex," off Orchard Road, Lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40306,Mixed Use Land Joint Venture," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40307,5 Bedroom Semi Detached Duplex,"Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40308,3 Bedroom Terraced Duplex,"Meadow Hall School; Off David Christian Center, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 2 +40309,5 Bedroom Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40310,5 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40311,Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +40312,6 Bedroom Detached Duplex + Bq With Swimming Pool,  Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +40313,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40314,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40315,5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +40316,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +40317,6 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +40318,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40319,Brand New And Tastefully Furnished 4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Idado Estate; Idado Lekki Lagos,₦,"128,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40320,4 Bedroom Detached Duplex With 2 Bedroom Bq,Idado Estate Idado Lekki Lagos,₦,"128,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40321,5 Bedroom Semi Detached Duplex," baruwa St, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +40322,5 Bedroom Semi Detached Duplex," ocean Bay Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +40323,Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,7 Toilets,Chevron +40324,648 Sqm Dry Land,"Behind Mega Chicken; Ikota Villa Estate, Ikota Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40325,Dry Land,Behind Mega Chicken; Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40326,4 Bedroom Duplex,"10, Denco Courts, Ikate Elegushi, Ikate Lekki Lagos",₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets,Ikate +40327,5 Bedroom Detached Duplex For Sale," ologolo, Lekki, Lagos Lekki Lagos",₦,"58,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +40328,Luxury And Superbly Finished Fully Serviced 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40329,House For Sale," lekki, Lagos Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40330,3 Plots Mixed Use Land,"Alakutor; Mobil Road, Ikota Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40331,4 Bedroom Detached Duplex For Sale," bera Estate Chevron, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40332,4 Bedroom Detached Duplex,Bera Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40333,5 Bedroom Detached Duplex With Bq On 450 M2,. Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40334,5 Bedroom Semi Detached Duplex With Governor's Consent On 465 Sqm In Serviced Estate,"Ocean Bay Estate; Along Orchid Hotel Road, By Chevron Toll Gate, Ikota Villa Estate, Ikota Lekki Lagos",₦,"65,000,000",1,0,0,5 beds,5 baths,6 Toilets,Ikota +40335,6 Bedroom House With 2 Room Service Quarters,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +40336,"3,234 Sqm Office Space Commercial Land",Block 94 Plot4 Providence Street; Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40337,6 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,1,6 beds,6 baths,7 Toilets,Lekki Phase 1 +40338,Promise To Own Primewater View Gardens 2 Lekki Phase 1,Primewater View Gardens 2 Off Freedom Way Lekki Phase 1 Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,3 Toilets,Ikate +40339,3 Bedroom Semi Detached Duplex,"Lekki 2nd Toll Gate, Lekki Expressway Lekki Lagos",₦,"38,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Lekki +40340,4 Bedroom Terrace Duplex,Elf Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +40341,A Luxurious 5 Bedroom Duplex,Chevy Chevron Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40342,"Fully Serviced, Newly Finished 3 Bedroom Penthouse",Platimum Way Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +40343,4 Bedroom Privately Gated Luxury Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40344,Land,"Behind Shoprite, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40345,New | 4 Bedroom Semi Detaced Duplex | Self Serviced,After Second Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40346,Finished And Privately Gated 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40347,A Luxurious Semi Detached 4 Bedroom Duplex,Chevyview Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Chevron +40348,Luxurious 5 Bedroom Duplex With 2units Of 3 Bedroom Flat And A Separate One Story Office Building, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +40349,4 Bedroom Terrace Apartments,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40350,Newly Finished Serviced 4 Bedroom Terrace House,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40351,Off Plan | 4 Bedroom Terrace Apartments | Serviced,Lafiaji (after Second Toll Gate) Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40352,New 4 Bedroom Terrace Duplex | Self Serviced,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40353,Newly Finished And Privately Gated 4 Bedroom Luxury Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40354,Privately Gated 4 Bedroom Luxury Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +40355,2 Bedroom Luxurious Apartment,By Ikate Elegushi (third) Round About Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40356,Corner Piece Dry Land,"Behind Elevation Church, Salem Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40357,4 Bedroom Luxury Terraced Triplex,Off Freedom Way Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40358,1 & 2 Bedroom Studio Apartments,Buenavista Estate (off Orchid Hotel Road) Chevron Lekki Lagos,₦,"10,000,000",0,0,0,1 beds,1 baths,3 Toilets,Chevron +40359,2 Bedroom Luxury Apartment,Off Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +40360,4 Units Of Luxurious 3 Bedroom Flats,Ologolo Road Igbo Efon Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +40361,New 4 Bedroom Luxury Terrace Triplex,Royal Garden Estate Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40362,Luxury 4 Bedroom Terrace,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40363,Contemporary Luxury 4 Bedroom Quadruplex On 3 Floor With 1room Staff Quatersr,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +40364,New | 5 Bedroom Fully Detached Duplex | Self Serviced,"Lekki County Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40365,3 Bedroom Terrace Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"31,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40366,5 Bedroom Exquisitely Finished Terrace Triplex,After Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40367,3 Bedroom Terrace Duplex,By Second Toll Gate Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40368,2 Bedroom Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"22,500,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +40369,4 Bedroom Fully Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40370,4 Bedroom Terraced Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40371,Privately Gated Luxury 5 Bedroom Fully Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40372,4 Bedroom Luxury Terraced Triplex | Off Plan,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40373,5 Bedroom Privately Gated Luxury Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40374,A Luxurious 4 Bedroom Terrace Duplex Close To Chevron Drive For 40m,Chevton Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +40375,Finished And Privately Gated 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40376,4 Bedroom Luxury Penthouse,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40377,Plots Of Land,Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40378,1 Bedroom Studio Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,2 Toilets,Chevron +40379,Lovely 2 Bedroom Apartment In Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +40380,Luxurious 5 Bedroom Terrace Duplex,Alternative Route; Lekki Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,7 baths,5 Toilets,Other Lekki +40381,"Fully Serviced, Newly Finished 3 Bedroom Apartments",Platimum Way Osapa London Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +40382,5 Bedroom Luxury Semi Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40383,A Hectare Of Land,Beside Vgc Lekki Lagos,₦,"40,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40384,Luxury 5 Bedroom Fully Detached Duplex,"Off Lekki Epp, Express Way Ikate Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40385,New | 5 Bedroom Detached Duplex With Swimming Pool | Self Serviced,"Lekki County Estate, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40386,4 Bedroom Semi Detached Triplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40387,3 Bedroom Luxurious Flat, Agungi Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,5 baths,3 Toilets,Agungi +40388,Luxury 5 Bedroom Terrace Duplex With Excellent Facilities,Alternative Route; Lekki Lekki Lagos,₦,"95,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Lekki +40389,3 Bedroom Terrace Apartment,Olugborogan (off Orchid Hotel Road) Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40390,New | 4 Bedroom Luxury Fully Detached Duplex | Self Serviced,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40391,Privately Gated Luxury 4 Bedroom Fully Detached Duplex And 2 Bedroom Flat,Happy Land Estate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +40392,Fully Detached Luxury 5 Bedroom Duplex + 1 Room Bq With Excellent Facilities,Francis Oje; Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,7 baths,5 Toilets,Chevron +40393,A Luxurious 3 Bedroom Terrace Duplex At Chevyview Estate Lekki Lagos,Chevyview Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40394,New | Privately Gated 5 Bedroom Luxury Fully Detached Duplex | Partly Serviced,Off Road 3 Vgc Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +40395,Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40396,"A Luxurious 4brdroom Semi Detached Duplex At Creek Avenue, Lekki",Lekki Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +40397,5 Bedroom Fully Detached Triplex | Serviced,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40398,4 Bedroom Luxury Triplex,"Behind Spg, After Globe Motors Agungi Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40399,2 Bedroom Luxury Apartment | Fully Serviced,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40400,3 Bedroom Luxury Apartment | Off Plan,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +40401,4 Bedroom Luxury Terraced Triplex,After Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40402,Luxury 4 Bedroom Semi Detached Duplex,"Off Lekki Epp, Express Way Ikate Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40403,5 Bedroom Luxury Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40404,3 Bedroom Terrace Duplex,After Chevron Round About Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40405,Luxury 3 Bedroom Terrace Duplex,After Second Toll Gate Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40406,New | 5 Bedroom Luxury Fully Detached Duplex | Self Serviced,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40407,4 Bedroom Semi Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"43,200,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40408,4 Bedroom Duplex,"Off Lekki Epp, Express Way Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40409,New | Luxury 4 Bedroom Semi Detached Duplex | Partly Serviced,Off Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40410,3 Bedroom Luxury Apartments,Off Platimum Way Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +40411,Premium Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40412,Luxury 4 Bedroom Terrace Duplex (off Plan),After Second Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40413,Exquisitely Finished And Privately Gated 4 Bedroom Semi D,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40414,4 Bedroom Luxury Terraced Triplex,"Elf Bustop, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40415,New | 5 Bedroom Luxury Fully Detached Duplex | Partly Serviced,Off Chevron Drive Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40416,6 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,1,6 beds,6 baths,7 Toilets,Lekki Phase 1 +40417,4 Bedroom Flat With Bq,Otunba Adeleke Adeshina Street; Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40418,5 Bedroom Detached Duplex,"Lekki County, Ikota Villa Estate Ikate Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikate +40419,5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,6 Toilets,Chevron +40420,3 Bedroom Terraced Duplex With Bq,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 1 +40421,Old 4 Bedroom Semi Detached Duplex.,Grace Anjous Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40422,Tastefully Finished And Furnished 5 Bedroom Detached House + 1 Room Bq With C Of O,Iweanya Ugbogho; Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40423,2 Bedroom Block Of Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,1,1,2 beds,2 baths,3 Toilets,Ikate +40424,4 Bedroom Terraced Duplex,"Orchid Road, Lekki Expressway Lekki Lagos",₦,"36,500,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +40425,4 Bedroom Semi Detached Duplex With Bq,Off Prince Adelowo Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40426,5 Bedroom Semi Detached Duplex,"Pinnock Beach Estate; Behind Shoprite, Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +40427,4 Bedroom Detached Duplex,. Igbo Efon Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40428,Tastefully Finished And Serviced 4 Bedroom Terraced Duplex,Lekki Right; Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +40429,4 Bedroom Detached Duplex,Lekki Right; Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +40430,5 Bedroom Detached Duplex With Bq,"Orchid Hotels Road, Lekki Expressway Lekki Lagos",₦,"63,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +40431,5 Bedroom Detached House,Minutes Away From Circle Mall (shoprite) Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets,Osapa London +40432,4 Bedroom Semi Detached Duplex,. Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40433,4 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40434,5 Bedroom Semi Detached Duplex,Lekki Expressway Lekki Lagos,₦,"37,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Lekki +40435,Brand New And Tastefully Furnished 5 Bedroom Semi Detached Duplex,"Orchid Hotel Rd; Lekki Expressway, Chevron Lekki Lagos",₦,"37,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40436,3 Bedroom Terraced Duplex,"Orchid Hotel Road; Lekki Expressway, Chevron Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40437,4 Bedroom Semi Detached Duplex With 1 Room Bq,"Orchid Hotel Road; Lekki Expressway, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths, Toilets,Chevron +40438,4 Bedroom Semi Detached Duplex,Oriwu Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40439,Newly Built 4 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40440,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40441,5 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +40442,5 Bedroom Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikate +40443,3 Bedroom Semi Detached Duplex,. Ilasan Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets,Other Lekki +40444,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +40445,4 Bedroom Terraced Duplex,Elf Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40446,5 Bedroom Stylish Home,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +40447,4 Bedroom Fully Detached House,Lekki County Homes. Lekki Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40448,6 Bedroom Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +40449,5 Bedroom House,Mega Chicken Lekki Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +40450,5 Bedroom Detached Duplex On 560 Sqm,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40451,Tastefully Finished And Fully Serviced 4 Bedroom Terraced Duplex,Lekki Expressway; Along Orchid Hotel Road By Toll Gate Chevron Lekki Lagos,₦,"38,000,000",1,0,0,4 beds,4 baths,0 Toilets,Chevron +40452,Tastefully Finished 4 Bedroom Terraced Duplex With Good Title,Lekki Expressway; orchid Hotel Road By Second Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40453,Newly Built 3 Bedroom Semi Detached Duplex,Lafiaji; Chevron Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets,Chevron +40454,Newly Built 3 Bedroom Semi Detached Duplex,Lafiaji; Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths, Toilets,Chevron +40455,Newly Built 3 Bedroom Semi Detached Duplex," lafiaji, Lekki, Lagos Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths, Toilets,Other Lekki +40456,Mixed Use Land,Opposite Victory Park Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40457,5 Bedroom Detached Duplex + 1 Room Bq With Good Title,Idado Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40458,4 Bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40459,5 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40460,2 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,800,000",1,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40461,Newly Built 4 Bedroom Terraced Duplex With Bq,Alternative Route; Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40462,4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"37,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40463,3 Bedroom Flat,"Off Kunsula (conoil Filling Station) Road, Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikate +40464,Tastefully Built 4 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +40465,5 Bedroom Detached Duplex,"Victory Park Estate; By Circle Mall, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40466,4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40467,4 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +40468,4 Bedroom Terraced Duplex,Providence Way Lekki Lagos,₦,"950,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40469,2 Bedroom Mini Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,800,000",0,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40470,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +40471,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40472,Newly Built Bedroom Semi Detached Duplex + 1 Room Bq With Governor's Consent,By Orchid Hotel Road Close To The Toll Gate; Chevron Lekki Lagos,₦,"155,700,000",0,1,0,8 beds,8 baths,0 Toilets,Chevron +40473,4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40474,5 Bedroom Detached Duplex,Osapa London Estate Osapa London Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +40475,4 Bedroom Semi Detached Duplex On Chevron Drive,Chevy View Estate; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40476,Luxury Newly Built 4 Bedroom Detached Duplex + 1 Room Bq,"Lekki Country Homes; Ikota Villa Estate, Ikota Lekki Lagos",₦,"105,000,000",0,1,0,4 beds,6 baths,7 Toilets,Ikota +40477,4 Bedroom Semi Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +40478,3 Bedroom Flat,Close 48 Vgc Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,2 baths,3 Toilets,Victoria Garden City +40479,3 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,3 baths,4 Toilets,Ikate +40480,4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,6 baths, Toilets,Ikota +40481,5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +40482,Residential Land,"Atlantic View Estate, Along Atlantic Beach, Before Chevron And Opposite Idado Idado Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40483,4 Bedroom Terraced Duplex,"Conoil Road, Ikate Elegushi Ikate Lekki Lagos",₦,"40,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikate +40484,4 Bedroom Semi Detached Duplex,"Off Orchid Road, Lafiaji Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40485,4 Bedroom Detached Duplex,"Signature Court, Chevron Alternative Route, Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +40486,4 Bedroom Duplex,"After Chevron Toll Gate, Opposite Lekki County Homes, Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +40487,No. 10 Royale Unit 2: Fully Detached Luxury 4bedroom Duplex,"Victory Park Estate, Osapa London, Jakande Roundabout, Lekki Penninsula, Lekki Epe Expressway Osapa London Lekki Lagos",₦,"140,000,000",1,1,0,4 beds,6 baths,5 Toilets,Osapa London +40488,5 Bedroom Detached Duplex For Sale," close To Vgc, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +40489,7 Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,1,7 beds,7 baths,8 Toilets,Lekki Phase 1 +40490,5 Bedroom Semi Detached Duplex," ocean Bay Estate, Orchid Hotel Road, By Chevron Toll Gate, Lafiaji, Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +40491,4 Bedroom Terrace Duplex With Bq,"Brownstone Estate Off Kusenla Road, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40492,"4 Bedroom Detached House With Bq On 450sqm Land At Victory Park Estate, Lekki",Victory Park Estate; Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths, Toilets,Osapa London +40493,4 Bedroom Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +40494,3 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets,Chevron +40495,16 Bedroom Hotel / Guest House," right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +40496,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets,Lekki Phase 2 +40497,1000 Sqm Residential Land,Acadia Grove Estate By Pinnock Estate; Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths, Toilets,Lekki Phase 1 +40498,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets,Osapa London +40499,4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets,Ologolo +40500,Residential Land,Acadia Estate By Pinnock Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40501,Residential Land," spar Road, Ikate Elegushi, Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths, Toilets,Other Lekki +40502,Newly Built And Tastefully Finished Luxury 4 Bedroom Terraced Duplex + Bq With Governor's Consent,"Parkhust Luxury Apartments; Alma Beach Estate By Mercedes, Elegushi/ Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,5 baths, Toilets,Ikate +40503,3 Bedroom Block Of Flat," island Estate, New Road, Lekki Lagos",₦,"22,000,000",0,0,0,3 beds,3 baths, Toilets,Other Lekki +40504,4 Bedroom Terraced Duplex," orchid, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +40505,4 Bedroom Detached Duplex, Jakande Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths, Toilets,Other Lekki +40506,Office Space, Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths, Toilets,Lekki Phase 1 +40507,4 Bedroom Semi Detached Duplex," off Bisola Durosinmi Etti Dr, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets,Lekki Phase 1 +40508,5 Bedroom Terraced Duplex,"Oral Estate By 2nd Toll Gate, Before Vgc, Ikota Villa Estate Ikota Lekki Lagos",₦,"63,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +40509,Mixed Use Land," southern Green Estate, Lafiaji, Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths, Toilets,Other Lekki +40510,4 Bedroom Terraced Duplex," off Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Lekki +40511,Commercial Land, Vgc Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths, Toilets,Victoria Garden City +40512,800 Sqm Residential Land,Cowrie Creek Estate; Elegushi/ Ikate Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths, Toilets,Ikate +40513,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,5 baths,5 Toilets,Osapa London +40514,Mixed Use Land," off Abraham Adesanya Road, Lekki Phase 2 Lekki Lagos",₦,"9,000,000",0,0,0,0 beds,0 baths, Toilets,Lekki Phase 2 +40515,Exquisitely Finished 5 Bedroom Detached Duplex,"Lekki County Homes (mega Mound Estate); Ikota Villa Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets,Ikota +40516,4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +40517,Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths, Toilets,Osapa London +40518,4 Bedroom Terraced Duplex," orchid Road, Eleganza, By Chevron, Lekki Expressway, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths, Toilets,Chevron +40519,4 Bedroom Semi Detached Duplex," orchid Road, Eleganza, By Chevron Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,5 baths, Toilets,Chevron +40520,4 Bedroom Semi Detached Duplex," vintage Estate, Jakande Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets,Other Lekki +40521,5 Bedroom Detached Duplex + Bq With Swimming Pool,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets,Victoria Garden City +40522,3 Bedroom Terraced Duplex," lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets,Other Lekki +40523,4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,0 baths, Toilets,Other Lekki +40524,Residential Land," closely Located To Greenspring Group Of Schools And Omu Resort, Bogije, Ibeju Lekki, Lagos Lekki Lagos",₦,"7,500,000",0,0,0,0 beds,0 baths, Toilets,Other Lekki +40525,4 Bedroom Semi Detached Duplex,"Creek Avenue Court, By Chevron, Ikota Villa Estate Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40526,5 Bedroom Detached Duplex," off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths, Toilets,Lekki Phase 1 +40527,Residential Land," pinnoch Beach Estate, Osapa London Lekki Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths, Toilets,Osapa London +40528,4 Bedroom Detached Duplex,"Megamound Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40529,7bedroom Fully Detached Mansion + 4 Room Guest Chalet,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,10 beds,10 baths,10 Toilets,Lekki Phase 1 +40530,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,4 beds,3 baths, Toilets,Lekki Phase 1 +40531,Luxury Of 3 Bedroom Apartment,Freedom Road; Lekki Phase 1 Lekki Lagos,₦,"2,200,000",0,0,0,2 beds,2 baths, Toilets,Lekki Phase 1 +40532,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +40533,2 Units Of Five Bedroom Semi Detached Duplex,Road 7 Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +40534,Newly Built 4bedroom Semi Detached Duplex Wit Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +40535,Luxurious 4 X 4 Bedrooms Terrace Building,1 Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +40536,Newly Built 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +40537,Newly Built 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +40538,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +40539,4 Bedroom Semi Detached Duplex,"After 2nd Toll Gate, Before Megachicken Ikota, Chevron Lekki Lagos",₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets,Chevron +40540,Mixed Use Land," oniru Market Area, By Lawani Oduloye Street, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40541,2 Bedroom Block Of Flats, Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +40542,5 Bedroom Detached Duplex," olatunde Amolegba Street, Bera Estate, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +40543,4 Bedroom Semi Detached Duplex," buena Vista Estate, Cityscape Boulevard, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40544,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +40545,Mixed Use Land," about 8 10 Mins From Dangote' S Refinery, Lekki Free Trade Zone, Lekki Lagos",₦,"2,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40546,4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ologolo +40547,Luxurious 5bedroom Semi Detached Duplex At Oral Estate By Chevron 2nd Toll Gate Lekki.,James Street Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +40548,4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"31,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 2 +40549,4 Bedroom Semi Detached Duplex,  Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Lekki +40550,4 Bedroom Semi Detached Duplex,"Buena Vista Estate, By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40551,Brand New 5 Bedroom Detached Duplex With B/q,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40552,5 Bedroom Detached Duplex," lekky County Homes, Ikota Villa Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +40553,2 Bedroom Flat," chevy View Estate, Chevron Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,0 Toilets,Chevron +40554,4 Bedroom Detached Duplex,. Chevron Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40555,6 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,6 beds,6 baths,0 Toilets,Lekki Phase 1 +40556,5 Bedroom Detached Duplex," off Udeco Road, Chevy View Estate, Chevron Lekki Lagos",₦,"93,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +40557,5 Bedroom Semi Detached Duplex," ikota Primary School, Ikota Villa Estate, Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +40558,4 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +40559,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40560,5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40561,4 Bedroom Detached Duplex,. Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +40562,6 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,6 beds,5 baths,6 Toilets,Lekki Phase 1 +40563,5 Bedroom Detached Duplex," behind Shoprite, Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +40564,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40565,4 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40566,Brand New 5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40567,4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40568,Residential Land,"Lakeview Park Ii, Lafiaji Road, Lafiaji Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40569,3 Bedroom Terraced Duplex, Vgc Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,0 Toilets,Victoria Garden City +40570,4 Bedroom Terraced Duplex,. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40571,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +40572,Royalty Homes Estate Lekki Lakowe,"Shapati Town, Lekki Lakowe. Lekki Phase 1 Lekki Lagos",₦,"6,000,000",0,1,0, beds, baths, Toilets,Lekki Phase 1 +40573,Royalty Homes Estate Lekki Lakowe,Behind Beachwood Estate. Lekki Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Other Lekki +40574,5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +40575,Joint Venture Land,Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40576,Land,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40577,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40578,4 Bedroom Detached Duplex,"Mobile Road, After Vgc Roundabout, Lekki Expressway Vgc Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets,Victoria Garden City +40579,Newly Built 4 Bedroom Semi Detached Duplex + 1 Room Bq With Governors Consent,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets,Chevron +40580,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40581,7 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,7 beds,7 baths,7 Toilets,Chevron +40582,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40583,4 Bedroom Terraced Duplex For Sale,Lafiaji Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths, Toilets,Other Lekki +40584,7 Bedroom Detached Duplex,"Lekki County, Ikota Villa Estate Ikota Lekki Lagos",₦,"125,000,000",1,1,1,7 beds,7 baths,7 Toilets,Ikota +40585,Residential Land,"Orchid Road By Ocean Bay Estate; Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40586,3 Bedroom Flat,Lafiaji Lekki Lagos,₦,"23,000,000",0,1,1,3 beds,4 baths,4 Toilets,Other Lekki +40587,Tastefully Finished 4 Bedroom Terraced Duplex + En Suite Bq,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +40588,Dry Mixed Use Land With Governor's Consent,"Southern Green Estate; Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40589,4 Bedroom Terraced Duplex With Bq,Marwa; Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40590,4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lafiaji Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +40591,4 Bedroom Terrace Duplex Off Plan Sales,Orchid Road Off Lekki Epe Express Way By Chevron Toll Gate Applewood Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +40592,Residential Land,"Opposite Buena Vista Estate, Lafiaji Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40593,4 Bedroom Terraced Duplex,"Orchid Hotel Road, Lekki Expressway Chevron Lekki Lagos",₦,"39,000,000",0,1,1,4 beds,5 baths,6 Toilets,Chevron +40594,4 Bedroom Terraced Duplex,"Orchid Hotel Road, Lekki Expressway Chevron Lekki Lagos",₦,"39,000,000",0,0,0,4 beds,5 baths, Toilets,Chevron +40595,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"163,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40596,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40597,"Luxury 2 Bedroom Apartments, On Going Project",Kusenla Road Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets,Ikate +40598,4 Bedroom Terraced Duplex,"Orchid Hotel Road; Close To Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40599,4 Bedroom Detached Duplex,Bera Estate Lekki Lagos,₦,"72,000,000",0,1,1,4 beds,6 baths,5 Toilets,Other Lekki +40600,Well Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40601,Well Built 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths, Toilets,Osapa London +40602,5 Bedroom Luxury Detached Duplex With Governor's Consent,"Megamound Estate; Ikota Villa, Ikota Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40603,Residential Land,"Iroko Awe, Ilasan, By World Oil, After Chisco, Ikate Elegushi Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +40604,4 Bedroom Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40605,4 Bedroom Detached Duplex For Sale," ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets,Ikota +40606,4 Bedroom Semi Detached Duplex With Bq,"After Chevron Roundabout, Lekki Expressway Chevron Lekki Lagos",₦,"31,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +40607,"Plots Of Land At Lakowe, Lekki @ N3.5m",Lakowe Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets,Other Lekki +40608,3 Bedroom Block Of Flats,. Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +40609,4 Bedroom Semi Detached Duplex,"Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +40610,Mixed Use Land,"Off Orchid Hotel Road, By Second Toll Gate Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40611,4 Bedroom Semi Detached Duplex,"Second Toll Gate, Lekki Expressway Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,6 Toilets,Other Lekki +40612,5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ikota +40613,5 Bedroom Detached Duplex,Ceda West Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40614,Newly Built 5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +40615,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +40616,Newly Built 4 Bedroom Terrace,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +40617,5 Bedroom Detached Duplex," ologolo, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +40618,Land," ologolo, Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths, Toilets,Other Lekki +40619,6 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,5 baths, Toilets,Lekki Phase 1 +40620,6 Bedroom Detached Duplex," victory Park Estate, Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths, Toilets,Other Lekki +40621,Residential Land,"Lekky County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40622,2 Bedroom Flat,. Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,2 baths,3 Toilets,Lekki Phase 1 +40623,5 Bedroom Detached Duplex," near Circle Mall, Jakande Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +40624,5 Bedroom Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40625,5 Bedroom Terraced Duplex," lekki Conservative Road, Opposite Chevron, Lafiaji, Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths, Toilets,Other Lekki +40626,5 Bedroom Detached Duplex For Sale,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths, Toilets,Ikota +40627,2 Hectares Mixed Use Land,Lafiaji; Opposite Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40628,5 Bedroom House,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths, Toilets,Chevron +40629,5 Bedroom Detached Duplex,"Pinnock Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40630,"Brand New, Luxury 5 Bedroom Terraced Duplex",Admiral Gabriel Okoi Street; Elegushi/ Ikate Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikate +40631,Newly Built 5 Bedroom Detached Duplex With 1 Room Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40632,5 Bedroom Terraced Duplex,Off Oriwu Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,4 baths,5 Toilets,Lekki Phase 1 +40633,4 Bedroom Terraced Duplex,Off Oladimeji Alo Street Lekki Lagos,₦,"3,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40634,4 Bedroom Terraced Duplex," sunday Dare Close, Off Prince Olarenwaju A, By Romey Gardens, Elegushi, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +40635,4 Bedroom Semi Detached Duplex,By Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +40636,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +40637,4 Bedroom Terraced Duplex," kunshenla, Elegushi, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +40638,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40639,5 Bedroom Detached Duplex," crowd Estate, Lekki Phase 2 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 2 +40640,3 Bedroom Semi Detached Bungalow, off Chevron Toll Gate By Orchid Hotel Gate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets,Other Lekki +40641,Residential Land,  Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40642,6 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"170,000,000",0,1,1,6 beds,6 baths,7 Toilets,Victoria Garden City +40643,Mixed Use Land Joint Venture,"Kusenla Road, Ikate Elegushi Ikate Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +40644,4 Bedroom Detached Duplex,Conservation Drive Chevron Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +40645,5 Bedroom Duplex With A Room Bq For Sale,"Megamound, Lekki County Estate Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +40646,5 Bedroom Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40647,4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40648,5 Bedroom Detached Duplex," off, Oladimeji Alo Street, Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +40649,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +40650,Fully Serviced 4 Bedroom Terraced Duplex + Bq With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"128,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40651,Mixed Use Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40652,Newly Built 5 Bedroom Detached Duplex + Bq With Governor's Consent,Elegushi/ Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikate +40653,4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40654,5 Bedroom Detached Duplex + Gatehouse & Servant Quarters With Governor's Consent,"Lekki County; Ikota Villa Estate, Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40655,5 Bedroom Detached Duplex," westend Estate, Lekki County Homes, Before Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +40656,4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40657,4 Bedroom Semi Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40658,5bed New House For Sale,"Megamound Estate, Kekki County Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +40659,4 Bedroom Semi Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40660,4 Bedroom Semi Detached Duplex Units,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +40661,6 Bedroom Detached Duplex," lekki County Homes Megamound, Ikota Lekki Lagos",₦,"90,000,000",0,0,0,6 beds,0 baths,0 Toilets,Ikota +40662,4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40663,5 Bedroom Detached Duplex," lekky County Homes, Chevron Axis, Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +40664,Tastefully Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Opposite Lekky County Homes Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,6 Toilets,Ikota +40665,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,0 Toilets,Ikota +40666,West Spring Estate Lands,West Spring Estate; Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40667,"Luxurious 3bedroom Semi Detached Duplex For Sale At Buene Vista Estate, By Chevron Toll Gate, Orchid Hotel Rd, Lekki",Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +40668,5 Bedroom Detached Duplex,"Off Kusenla Road, Ikate Elegushi Ikate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,0 Toilets,Ikate +40669,Land,"Lakeview Estate, Opposite Vgc And Ikota Complex Vgc Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40670,5 Bedroom Detached Duplex,"By Chevron Toll Gate, Oral Estate Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +40671,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40672,Residential Land Joint Venture,. Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40673,4 Bedroom Semi Detached Duplex," durosimi Eti, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +40674,5 Bedroom Detached Duplex," megamound Estate, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +40675,5 Bedroom Detached Duplex,"Kayode Otitoju, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,1,1,5 beds,6 baths,6 Toilets,Lekki Phase 1 +40676,Brand New 4 Bedroom Terraced Duplex + Bq With Governor's Consent,Off T.f. Kubuoye; Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40677,"1,000 Sqm Land With C Of O & Deed Of Assignment At Vgc",Lakeview Estate; Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40678,Residential Land," megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"95,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40679,A Plot Of Land,Eden Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +40680,Tastefully Finished 4 Bedroom Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40681,4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40682,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40683,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40684,Newly Built 5 Bedroom Fully Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40685,4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40686,Newly Built 4bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40687,"600 Sqm Land At Lakeview Estate, Vgc",Lakeview Estate; Vgc Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40688,Newly Built 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets,Chevron +40689,Newlt Built Mini Flat For Sale,Chevron Chevron Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,2 baths,2 Toilets,Chevron +40690,Newlt Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40691,800 Sqm Land With Governor's Consent,Lakeview Estate; Opposite Vgc Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40692,6 Bedroom Semi Detached Duplex,Between 3rd And 4th Roundabout; Close To Nicon Town Lekki Lagos,₦,"57,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +40693,Fenced And Gated 2 Plots Land With Governor's Consent,Behind Mega Chicken; Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40694,Newly Built 4 Bedroom For Sale,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40695,5 Bedroom Semi Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +40696,Newly Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40697,4 Bedroom Terraced Duplex,Off Meadow Hall; Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40698,Newly Built 4 Bedroom Fully Detached Duplex + Bq With C Of O,Chevy View Estate; Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40699,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40700,5 Bedroom Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40701,Exquisite 5 Bedroom Terraced Duplex,"Conservative Road; Lafiaji, Opposite Chevron Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40702,4 Bedroom Semi Detached Duplex,"Behind Ikota School, Ikota Villa Estate Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +40703,3 Bedroom Terraced Duplex With Bq,"Orchid Hotel Road; Lafiaji, Opposite Chevron Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40704,4 Bedroom Terraced Duplex,By Chevron Drive; Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40705,Brand New 4 Bedroom Duplex,After Chevron Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +40706,673 Sqm Residential Land With Governor's Consent,Road 12; Vgc Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40707,Brand New Well Finished 3 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets,Agungi +40708,Brand New Fully Serviced 4 Bedroom Terraced Duplex With C Of O & Governor's Consent,Just After Chevron Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +40709,Residential Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40710,4 Bedroom Semi Detached Duplex,Bera Estate Along Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,5 baths,5 Toilets,Chevron +40711,"Brand New, Well Finished 3 Bedroom Semi Detached Duplex + Bq With Governor's Consent",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +40712,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40713,Exquisite Fully Detached 5 Bedroom Duplex + 2 Room Bq With Governor's Consent,Pinnock Beach; Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40714,5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40715,4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40716,"Luxury, Well Finished 5 Bedroom Detached Duplex",Riwu Street; Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40717,"Brand New, Well Finished 4 Bedroom Semi Detached Duplex + Bq With Governor's Consent",Lekki Expressway; Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Lekki +40718,Newly Built 4 Bedroom Terrace,Chevron Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40719,Newly Built 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40720,5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +40721,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40722,700 Sqm Residential Land With C Of O,Normal Road; Vgc Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +40723,5 Bedroom Detached Duplex,"By Chevron Drive; Lekki Expressway, Chevron Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40724,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +40725,Newly Built 5 Bedroom Fully Detached Duplex,. Idado Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Lekki +40726,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +40727,5 Bedroom Fully Detached Duplex,Lekki Agungi Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +40728,4 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +40729,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40730,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40731,Land,Block 65a Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40732,Luxury 4 Bedroom Semi Detached Duplex,Chevy View Estate; Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40733,3 Bedroom Flat,Bera Estate Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Lekki +40734,5 Bedroom Detached Duplex,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +40735,4 Bedroom Semi Detached Duplex With Bq, chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40736,2900 Sqm Land,"By Ocean Crest; Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40737,4 Bedroom Detached Duplex With 1 Room Bq,"Megamound Estate; Lekki County Off Lekki Expressway, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40738,4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +40739,4 Bedroom Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40740,4 Bedroom Terraced Duplex,. Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +40741,4 Bedroom Semi Detached Duplex, chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40742,4 Bedroom Detached Duplex,"Conservation Road; Lekki Express Way, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40743,5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +40744,3 Bedroom Flat," bera Estate, Off Chevron Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,0 Toilets,Chevron +40745,4 Bedroom Semi Detached Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"39,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40746,5 Bedroom Detached Duplex,. Agungi Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,0 Toilets,Agungi +40747,1 Hectare Residential Joint Venture Land With C Of O,Elegushi Waterfront By Lekki Garden Estate; Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +40748,5 Bedroom Detached Duplex For Sale,Nte Nicon Town Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40749,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40750,2 Bedroom Terraced Bungalow," south Pointe Estate, Orchid Road, Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +40751,5 Bedroom Detached Duplex, megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +40752,Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40753,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40754,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,2 Toilets,Chevron +40755,Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40756,Newly Built 3 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +40757,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40758,Newly Built 5 Bedroom Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40759,Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +40760,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40761,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40762,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets,Chevron +40763,Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40764,27 Rooms Hotel / Guest House + 5 Room Duplex On 2200 Sqm With C Of O,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40765,4 Bedroom Semi Detached Duplex," dele Adeyemi Street, Agungi Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets,Agungi +40766,Residential Land," lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40767,Land," bode Ajakaiye Street, Atlantic View Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40768,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +40769,Land, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40770,5 Bedrooms Detached Duplex House, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +40771,Newly Built 4bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40772,Newly Built 4bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40773,Newly Built 4bedroom Semi Detached Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40774,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +40775,Luxury 4 Bedroom Terraced Duplex,Southern View Estate Oral Estate Lekki Lagos,₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +40776,Residential Land," charles Ezekwe Str, Abijo, Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40777,Mixed Use Land," charles Ezekwe Street, Abijo, Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40778,Newly Built 5 Bedroom Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40779,Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40780,4 Bedroom Terrace Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40781,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +40782,Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets,Ikota +40783,3 Bedroom Penthouse For Sale In Lekki,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets,Chevron +40784,Residential Land For Sale," lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40785,Large 5 Bedrooms Semi Detached Duplexes For Sale In Ocean Bay Estate,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 2 +40786,Portable Semi Detached 3 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +40787,4 Bedroom Detached Duplex," lekki County Homes, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40788,Mixed Use Land," behind Lng Estate, With Access From Kushenla Street, Elegushi, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +40789,4 Bedroom Terraced Duplex,New Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40790,4 Bedroom Semi Detached Duplex,By Lekki Toll Gate; Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40791,3 Bedroom Semi Detached Duplex,By Lekki Toll Gate; Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +40792,3 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +40793,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40794,4 Bedroom Semi Detached Duplex,Alpha Beach Road Opposite Admiralty Estate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +40795,4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40796,Residential Land, zone A Nicon Town Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40797,3 Bedroom Flat,. Agungi Lekki Lagos,₦,"30,000,000",0,0,1,3 beds,3 baths,4 Toilets,Agungi +40798,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +40799,5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40800,4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +40801,Residential Land," chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40802,4 Bedroom Terraced Duplex,Meadow Hall Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40803,4 Bedroom Semi Detached Duplex," chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +40804,4 Bedroom Semi Detached Duplex,  Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikota +40805,4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40806,6 Bedroom Detached Duplex,"Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"75,000,000",0,0,1,6 beds,6 baths,6 Toilets,Ikota +40807,4 Bedroom Semi Detached Duplex," road 1, Off The Lekki – Epe Expressway, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikota +40808,5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40809,4 Bedroom Semi Detached Duplex With Bq,Chevy View; Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40810,"Brand New 6 Bedroom Fully Detached Duplex With Swimming Pool, Penthouse And Rooftop Terrace",Vgc Lekki Lagos,₦,"17,500,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Garden City +40811,6 Bedrooms Fully Detached Duplex With Bq,Alpha Beach Road; Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +40812,4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +40813,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikota +40814,Brand New 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40815,4 Bedroom Semi Detached Duplex For Sale,Chevron Conservative Route Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +40816,Well Finished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40817,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40818,4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,0 Toilets,Agungi +40819,5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,5 Toilets,Osapa London +40820,5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40821,Newly Built 4 Bedroom Fully Detached Duplex With Bq,Idado Estate; Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Lekki +40822,4 Bedroom Detached Duplex," orchid Road, Along Funderland, Lafiaji, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40823,4 Bedroom Detached Duplex," near Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40824,Residential Land," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40825,Residential Land," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40826,4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40827,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +40828,4 Bedroom Semi Detached Duplex,Thomas Estate Lekki Lagos,₦,"53,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Lekki +40829,5 Bedroom Detached Duplex," chevy View Estate, Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets,Chevron +40830,5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,0 Toilets,Other Lekki +40831,4 Bedroom Detached Duplex,  Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40832,4 Units Of 5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40833,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikate +40834,5 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 2 +40835,Residential Land," close To Atican Beach, Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40836,4 Bedroom Semi Detached Duplex," just After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,6 baths,0 Toilets,Ikota +40837,4 Bedroom Semi Detached Duplex Wit Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +40838,5 Bedroom Fully Detached Duplex For Sale,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +40839,Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40840,Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +40841,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40842,Newly Built 4 Bedroom Terrace Duplex For Sale,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40843,Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40844,Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +40845,Units Of 2 Bedroom Fully Serviced Apartment,Elegushi/ Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikate +40846,2 Bedroom Flat,"Orchid Road, By Eleganza Chevron Lekki Lagos",₦,"26,000,000",0,0,1,2 beds,3 baths,3 Toilets,Chevron +40847,4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40848,4 Bedroom Semi Detached Duplex,  Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +40849,5 Bedroom Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,0 Toilets,Chevron +40850,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40851,4 Bedroom Semi Detached Duplex,  Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40852,Residential Land," mobil Road, Ilaje (by Vgc), Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40853,5 Bedroom Detached Duplex,"Macaulay Street, Chevy View Estate Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +40854,5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,0 Toilets,Agungi +40855,Newly Built 2 Bedroom Flat,2nd Toll Gate; Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,2 Toilets,Ikota +40856,4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40857,4 Bedroom Detached Duplex,  Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +40858,5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40859,4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +40860,Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets,Ologolo +40861,4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +40862,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40863,4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40864,5 Bedroom Detached Duplex," before Chevron, Agungi Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,0 Toilets,Agungi +40865,4 Bedroom Semi Detached + Bq,"Muritala Eletu Way, Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +40866,Tastefully Finished 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40867,5 Bedroom Fully Detached + Bq,"Muritala Eletu Way, Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +40868,4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,5 Toilets,Osapa London +40869,5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40870,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40871,4 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40872,4 Bedroom Semi Detached Duplex," behind Circle Mall, Osapa London Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +40873,4 Bedroom Terraced Duplex,"Elegushi, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikate +40874,2 Bedroom Flat, Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +40875,Residential Land, Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40876,3 Bedroom Detached Duplex," chevron Alternate, Off Chevron Drive, Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets,Chevron +40877,4 Bedroom Semi Detached Duplex," orchid Road Eleganza, Just After Chevron Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,5 baths,0 Toilets,Chevron +40878,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +40879,5 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40880,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,0 Toilets,Osapa London +40881,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,0 Toilets,Other Lekki +40882,Land,"Lafiaji, Shortly After The 2nd Lekki Toll Gate, Igbo Efon Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40883,Beautifully Built 4 Bedroom Terrace Duplex,By 2nd Toll Gate; Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40884,4 Bedroom Terraced Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40885,4 Bedroom Detached Duplex," off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +40886,Units Of 4 Bedroom Detached Duplex With Bq,By 2nd Toll Gate; Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40887,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,0 Toilets,Ikate +40888,2 Bedroom Terraced Bungalow," south Pointe Estate, Along Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,0 Toilets,Other Lekki +40889,4 Bedroom Semi Detached Duplex With Bq,"Admiralty Estate, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"42,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40890,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikate +40891,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets,Ikota +40892,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,0 Toilets,Ikota +40893,4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40894,Land,"Lakowe Golf Course , Epe Lekki Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40895,Mixed Use Land," freedom Road, Lekki Phase 1 Lekki Lagos",₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40896,3 Bedroom Terraced Duplex," off Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"24,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +40897,5 Bedroom Duplex,Kazeem Eletu Way Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +40898,3 Bedroom Apartment With Gym And Swimming Pool,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +40899,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,0 Toilets,Osapa London +40900,Brand New 4 Bedroom Semi Detached House With Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40901,5 Bedroom Detached Duplex,"Elegushi, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Ikate +40902,4 Bedroom Terraced Duplex, orchid Road Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Lekki +40903,4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40904,Mixed Use Land," nicon Town, Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40905,5 Bedroom Detached Duplex," off Oladimeji Alao Street, Lekki Phase 1 Lekki Lagos",₦,"205,000,000",0,0,0,5 beds,5 baths,0 Toilets,Lekki Phase 1 +40906,4 Bedroom Semi Detached Duplex," off Kusunla Street, Elegushi, Ikate Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,0 Toilets,Ikate +40907,5 Bedroom Detached Duplex,"By Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40908,4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40909,4 Bedroom Semi Detached Duplex,"Off Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40910,4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40911,6 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,7 baths,7 Toilets,Lekki Phase 1 +40912,3 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets,Lekki Phase 2 +40913,4 Bedroom Terraced Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets,Lekki Phase 2 +40914,Mixed Use Land,Balogun Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +40915,4 Bedroom Terraced Duplex, ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikate +40916,4 Bedroom Terraced Duplex,"Off Orchid Road, Ikota Villa Estate Ikota Lekki Lagos",₦,"35,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +40917,4 Bedroom Semi Detached Duplex," orchid Road, Beside Second Toll Gate Ikota Lekki Lagos",₦,"30,000,000",0,0,1,4 beds,4 baths,5 Toilets,Ikota +40918,"Newly Built Luxury 4 Bedroom Semi Detached Duplex At Lekki County Estate, Lekki","Lekki County Estate, Lekki Ikota Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets,Ikota +40919,Newly And Fantanstically Built Luxury 5 Bedroom Duplex,"Megamond Estate, By Chevron Toll Gate, Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets,Ikota +40920,4 Bedroom Terrace Duplex,Lekki Garden Phase 4 Lekki Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +40921,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,1,1,4 beds,4 baths,5 Toilets,Ikota +40922,4 Bedroom Terrace Duplex For Sale,Chevron Alternative Road Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +40923,3 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets,Ikota +40924,4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +40925,3 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets,Chevron +40926,3 Bedroom Terraced Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets,Chevron +40927,4 Bedroom Semi Detached Duplex With 1 Room Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +40928,Land,"1, Emmanuel Ogunsade Street, Off Otunba Street, Itedo, Ikate Lekki Lagos",₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +40929,Land,"Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +40930,4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikate +40931,Brand New Luxurious 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +40932,4 Bedroom Semi Detached Duplex," chevron Toll, Lekki Expressway Chevron Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,4 baths,5 Toilets,Chevron +40933,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"69,000,000",0,1,1,5 beds,6 baths,6 Toilets,Chevron +40934,4 Bedroom Terraced Duplex,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"46,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Lekki +40935,"Stylishly Finished, Brand New Luxury 5 Bedroom Detached House With Bq",Megamound Estate; Ikota By Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +40936,5 Bedrooms Duplex,Chevron Estate Chevron Lekki Lagos,₦,"67,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +40937,4 Bedroom Semi Detached Duplex + Bq With Swimming Pool,Orchid Hotel Road; By Toll Gate Chevron Lekki Lagos,₦,"52,000,000",1,0,0,4 beds,4 baths,5 Toilets,Chevron +40938,4 Bedroom Semi Detached Duplex + Bq With Governor's Consent,Orchid Hotel Road; By Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40939,4 Bedroom Semi Detached Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,5 baths,5 Toilets,Ikota +40940,6 Bedroom Duplex,"Megamound Estate, School Bus Stop, Ikota Lekki Lagos",₦,"80,000,000",0,1,1,6 beds,5 baths,5 Toilets,Ikota +40941,Land,"Resettlement Scheme,off Mobil Road, Ikota Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +40942,5 Bedroom Fully Detached Duplex With Bq And Swimming Pool In Lekki County Homes,Lekki County Homes; Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40943,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40944,5 Bedroom Detached Duplex With Bq,Lekki County Homes; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40945,Nice 3 Bedroom(terrace) Flat,Orchid Bore Road Chevron Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,3 baths,4 Toilets,Chevron +40946,4 Bedroom Semi Detached Duplex + Bq In A Serviced Estate With Governor's Consent,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40947,Magnificent 5 Bedroom Luxury Fully Detached Duplex With A Domestic Room + Swimming Pool,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40948,Standard 2 Plots Of Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +40949,5 Plots Of Land, Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +40950,Land,White Oaks Estate Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +40951,5bedroom House, Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +40952,5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,4 baths,5 Toilets,Osapa London +40953,Luxury 5 Bedroom Duplex + Bq With C Of O,Lekki County Homes; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +40954,4 Bedroom Semi Detached Duplex With Bq,Lekki Peninsula; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40955,4 Bedroom Detached Duplex,New Road; Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40956,4 Bedroom Duplex With Bq,New Road; Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40957,5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +40958,4 Bedroom Detached Duplex,Lekki County Estate; Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40959,5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +40960,2 Units Of New And Nicely Built 4bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +40961,5 Bedroom Detached Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40962,4 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +40963,5 Bedroom Detached Duplex With Bq,3rd Roundabout; Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +40964,5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +40965,4 Bedroom Semi Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +40966,4 Bedroom Semi Detached Duplex With 1 Room Bq,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40967,Exquisitely Finished 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40968,5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40969,4 Bedroom Detached Duplex With Bq,After Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40970,4 Bedroom Semi Detached Duplex With Bq,After Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40971,4 Bedroom Semi Detached Duplex With Bq,Lekki County Estate; Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40972,4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +40973,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40974,4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +40975,5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40976,5 Bedroom Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +40977,5 Bedroom Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +40978,5 Bedroom Fully Detached Duplex,12 Road Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +40979,5 Bedroom Fully Detached + Bq,"Muritala Eletu Way, Osapa,lekki,lagos Osapa London Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets,Osapa London +40980,Superb 5 Bedroom Complete Detached Mansion,. Vgc Lekki Lagos,₦,"450,000,000",0,1,1,6 beds,4 baths,4 Toilets,Victoria Garden City +40981,5 Bedroom Detached Duplex With 1 Room Bq,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +40982,4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40983,4 Bedroom Semi Detached Duplex With Bq,By Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +40984,5 Bedroom Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +40985,Detached 5 Bedroom Duplex With One Room Bq,Lekki County Estate; Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +40986,3 Bedroom Apartment,"Off Remi Olowude Street, Towards The Atlantic Coast., Lekki Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"81,180,000",1,1,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +40987,Contemporary 5 Bedroom Detached Duplex,Lekki County Estate; Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +40988,1 Bedroom Apartment,"Off Remi Olowude Street, Towards The Atlantic Coast, Lekki Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"41,492,000",1,1,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +40989,Luxurious 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +40990,Luxurious 5 Bedroom Duplex,. Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikate +40991,3 Bedroom Semi Detached Duplex,Saheed Elegushi Street Jakande Lekki Lagos,₦,"35,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Lekki +40992,Luxurious 5 Bedroom Duplex,Natalia Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +40993,A Very Lovely And Spacious 4bedroom Terrance Duplex For Sale,Lakeview Pack 11 Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,4 Toilets,Lekki Phase 1 +40994,Land At Southern Greens Estate,"Along Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +40995,Newly Built And Well Finished 5 Bedroom Duplex With Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets,Ikota +40996,4 Bedroom Semi Detached Duplex,After Chevron Tollgate Ikota Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,6 baths,6 Toilets,Ikota +40997,Luxury 4 Bedroom Terrace Plus Bq,"Behind World Oil, Ikate Elegushi Ilasan Lekki Lagos",₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Lekki +40998,5 Bedroom Detached Duplex,Along Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets,Chevron +40999,4 Bedroom Detached Duplex," buene Vista Estate, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"49,500,000",0,1,1,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41000,5 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"115,000,000",0,0,1,5 beds,5 baths,6 Toilets,Victoria Garden City +41001,Newly Built 4 Bedroom Duplex,In A Prestigious Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets,Agungi +41002,5 Bedroom Detached Duplex,"Pinnock Beach Estate, Off Lekki Epe Expressway Osapa London Lekki Lagos",₦,"145,000,000",0,0,1,5 beds,5 baths,6 Toilets,Osapa London +41003,Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41004,4 Bedroom Semi Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41005,Luxury 4 Bedroom Semi Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41006,Land,"Behind Chevron Estate, End Of Peter Ihemesi New Site Chevron Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41007,"Plots Of Land By Chevron Tollgate Along Orchid Hotel Road,lafiaji By Chevron Tollgate,lekki","Orchid Hotel Road,lafiaji,lekki Chevron Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41008,5 Bedroom Detached Duplex, off Lekki Epe Expressway Vgc Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,4 baths,5 Toilets,Victoria Garden City +41009,Furnished And Serviced 5 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets,Chevron +41010,"2.4 Plots Of Land Behind Mega Chicken, Lekki",Gedegede Area; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41011,5 Bedroom Detached Duplex,Chevy View; Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41012,Luxurious 5 Bedroom Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41013,Luxury 5 Bedroom Detached Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets,Ikota +41014,Commercial Land,"By World Oil And Opposite Nicon Estate, Lekki Epe Express Lekki Phase 1 Lekki Lagos",₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41015,4 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41016,Residential Land," lekki County Homes, Ikota Villa Estate, Lekki Epe Expressway Ikota Lekki Lagos",₦,"28,000,000",0,1,1,0 beds,0 baths,0 Toilets,Ikota +41017,Luxurious 4 Bedroom Semi Detached With A Bq,Chevy Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +41018,Luxurious 3 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41019,5 Bedroom Detached Duplex,. Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41020,5 Bedroom Detached Duplex,Beach Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,4 baths,4 Toilets,Ikota +41021,Land,"Agbadon Village, Along Ilaje Road, Behind Emerald Estate. Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41022,Land,"Agbadon Village, Along Ilaje Road, Behind Emerald Estate. Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41023,Luxurious 5 Bedroom Fully Detached Duplex,Eletu Way Jakande Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41024,7 Bedrooms Duplex,New Street Chevron Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,7 Toilets,Chevron +41025,5 Bedroom Fully Detached House,Off Hunponu Wusu Road Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,1,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41026,Luxurious 3 Bedroom Semi Detached Apartment,Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,4 baths,4 Toilets,Chevron +41027,Lekki Epe,Lakowe Golf Course Lekki Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +41028,4 Bedroom Detached Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41029,4 Bedroom Terraced Duplex,Lafiaji Chevron Lekki Lagos,₦,"35,000,000",1,1,0,4 beds,4 baths,5 Toilets,Chevron +41030,Cofo,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41031,Luxurious 6 Bedroom Duplex, Chevron Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +41032,Newly Built 4 Bedroom Duplex,Toll Gate Chevron Lekki Lagos,₦,"49,500,000",0,1,0,4 beds,5 baths,4 Toilets,Chevron +41033,Dry Land,Trade Zone Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41034,Luxurious 4 Bedroom Semi Detached Duplex Plus One Bq,After Chevron Toll Gate Before Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41035,3 Bedroom Semi Detached Duplex,Chebron Drive By Chevy View Estate Chevron Lekki Lagos,₦,"37,000,000",1,0,0,3 beds,3 baths,3 Toilets,Chevron +41036,Fully Finished 7 Bedroom Duplex,By Vgc Ikota Lekki Lagos,₦,"115,000,000",0,1,1,7 beds,6 baths,7 Toilets,Ikota +41037,4 Bedroom Terraced Duplex,. Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,4 Toilets,Ikate +41038,5 Bedroom Detached Duplex With Bq,"Off New Shoprite By Aa Rescue, Jakande Osapa London Lekki Lagos",₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets,Osapa London +41039,3 Bedroom Luxury Flat,Ochid Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,3 Toilets,Chevron +41040,Hot Newly Finished 4 Bedroom Fully Detached Duplex,. Oral Estate Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Lekki +41041,Newly Built 5 Bedroom Detached Duplex,Megamoud Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Ikota +41042,Newly Built Fully 5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +41043,7 Bedroom Maisonette,Alpha Beach Road Agungi Lekki Lagos,₦,"300,000,000",1,0,1,7 beds,9 baths,9 Toilets,Agungi +41044,8 Units Of 4 Bedroom,Osapa London Agungi Lekki Lagos,₦,"480,000,000",1,1,1,0 beds,0 baths,0 Toilets,Agungi +41045,"Land Of 8,856 Sqm",By Northwest Vgc Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41046,Newly Built 4 Bedroom Fully Detached Duplex With In Built Swimming Pool,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +41047,8 Units Of 4 Bedroom Plus Bq,Osapa London Agungi Lekki Lagos,₦,"480,000,000",0,0,1,8 beds,8 baths,8 Toilets,Agungi +41048,4 Bedroom Detached Duplex With A Bq,"Creek Avenue Court, After Chevron Toll Gate Ikota Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +41049,Vip Gardens,Vip Gardens Lakowe Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41050,Luxurious 5 Bedroom Semi Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41051,Governor's Consent,Chaplain Court Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets,Osapa London +41052,Terrace Duplex With C Of O,Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +41053,Luxurious 4 Bedroom Semi Detached Duplex With Bq,Creek Avenue Court; Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,6 baths,4 Toilets,Ikota +41054,Newly Built 3 Bedroom Flat,Atlantic View Estate; Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Lekki +41055,4 Bedroom Terraced Duplex,"Bricks House Court, 2nd Tollgate Lekki Chevron Lekki Lagos",₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +41056,4 Bedroom Semi Detached Duplex,"Bricks Court Estate, 2nd Tollgate Lekki Chevron Lekki Lagos",₦,"53,000,000",0,1,1,4 beds,4 baths,4 Toilets,Chevron +41057,4 Bedroom Semi Detached Duplex With Bq,Happly Land Estate Opp. Lagos Business School; Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41058,Land,"Ikota Villa Estate Off Mobil Road, Ikota Lekki Lagos",₦,"20,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikota +41059,4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,6 baths,6 Toilets,Ikota +41060,4 Bedroom Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41061,Luxury 5 Bedroom Fully Detached Duplex Plus One Bq,"Chevron, Alternative Route Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets,Chevron +41062,Luxury 4 Bedroom Semi Detached Duplex Plus One Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +41063,Exotic 4 Bedroom Semidetached Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +41064,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Tollgate, Ikota Lekki Lagos",₦,"48,000,000",1,0,0,4 beds,6 baths,6 Toilets,Ikota +41065,Finished 4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets,Ikota +41066,Standard Serviced 2 Bedroom With Bq,Osapa London Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,2 Toilets,Osapa London +41067,Acres / Plots Of Lands,22 Olumorukun Street Mushin; Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41068,"2 Plots Of Dry Land At Matoks Layout, Alpha Beach Road With Deed Of Assignment And Survey Plan","Matoks Layout; Alpha Beach Road, New Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41069,Newly Built 8 Units Of 3 Bedroom Services Flat With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +41070,Land, Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41071,600 Sqm Plots Of Land With C Of O,Lakowe; Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41072,Luxury Home In The Prestigious And Serene Vgc,"Close 10; Road 3, Vgc Lekki Lagos",₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets,Victoria Garden City +41073,Super Luxury House,Kusenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikate +41074,5 Bedrooms Duplex, Osapa London Lekki Lagos,₦,"96,000,000",0,1,1,5 beds,5 baths,5 Toilets,Osapa London +41075,Five Bedrooms Duplex,Osapa London Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets,Chevron +41076,Newly Bult 6 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,6 baths,7 Toilets,Ikota +41077,6 Units Of 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41078,2 Units Of 5 Bedroom Detached Duplexe,"Block 10, Plot 6, Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +41079,5 Bedroom Detached Duplex,Off New Shoprite Road Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +41080,2 Units Of Detached Duplex,"Block 10, Plot 6, Pinnock Beach Estate Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +41081,4 Bedroom Massive Semi Detached Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets,Chevron +41082,5 Bedroom Duplex With Self Contain Boys Quarters,Rd 22b; Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +41083,Brand New 5 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,5 Toilets,Agungi +41084,Very Standard 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets,Osapa London +41085,Brand New 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,4 Toilets,Osapa London +41086,4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets,Chevron +41087,Land,Off Oba Amusa Chevron Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets,Chevron +41088,Ultra Modern 5 Bedroom Duplex,Udeko Street Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Chevron +41089,Luxury 2 Unit Of 5 Bedroom Fully Detached Duplex For Sale,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41090,Luxury 3 Bedroom Terrace Duplex,Metro Gardens Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +41091,Luxury 5 Bedroom Fully Detached Duplex With A Room Bq,Behind The Rock Cathedral Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +41092,Tastefully Finished 2 Unit Of Executive 5 Bedroom Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41093,Luxurious 6 Bedroom Fully Detached Duplex (distress Sales)with 2 Unit Of Executive Mini Flat,Behind Romeo Gardens Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +41094,"1200 Sqm Secure, Dry Land",Lafiaji; Vgc Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41095,Land,Lafiaji Igbo Efon Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41096,100% Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41097,Nicely Built 5 Bedroom Detached Duplex With Bq,Osapa London Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41098,4 Bedroom Semi Detached Duplex With Bq,Lekki V.g.c Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +41099,Newly Built And Well Finished 4 Bedroom Terraced Duplex With A Room Bq, Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Lekki +41100,Brand New 5 Bedroom Twin Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41101,Tastefully Built 4 Bedroom Luxury Semi Detached Duplex,"Lekki County Homes, Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41102,Classically Finished 4 Bedroom Luxury Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41103,Lovely 5 Bedroom Fully Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets,Osapa London +41104,Classically Finished & Humongous 5 Bedroom Luxury Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41105,4 Bedroom Semi Detached Duplex With Bq, Oral Estate Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41106,Wonderfully Finished 5 Bedroom Terrace Town House With Bq,12 Main Street. Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41107,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets,Ikota +41108,4 Bedroom Exotically Finished Semi Detached Duplex With Bq,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,6 Toilets,Ikota +41109,A 29 Rooms Hotel,"Tunde Seriki Street, Alpha Beach Road, Chevron Lekki Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +41110,Brand New 4 Bedroom Terrace Duplex,Off Grace Andrews Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41111,4 Bedroom Semi Detached Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41112,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41113,Exotically Finished 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets,Chevron +41114,Brand New Tastefully Finished 5 Bedroom Detached House,Off Admirty Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41115,Luxury 5 Bedroom Fully Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets,Osapa London +41116,Lovely Brand New Four Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41117,Brand New 4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +41118,Exquisitely Finished 5 Bedrooom Fully Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Osapa London +41119,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41120,Land,"Lakeshore Gardens, Opposite Amen Estate, Lekki Phase 2 Lekki Lagos",₦,"3,500,000",1,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41121,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41122,8 Units Of 4 Bedrooms,Osapa London Agungi Lekki Lagos,₦,"90,000,000",0,1,1,0 beds,0 baths,0 Toilets,Agungi +41123,The View 3 Bedroom Luxury Flat + Bq (fully Serviced),Atlantic View Estate; Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41124,"1,018sqm Land At Abijo Gra Lekki",Abijo Gra Agungi Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41125,Exquisite 6 Bedroom Miami Style Luxurious House,Royal Gardens Estate Lekki Lekki Lagos,₦,"260,000,000",0,0,0,8 beds,8 baths,8 Toilets,Other Lekki +41126,Terraces With Deed Of Assignment,Osapa London/ Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,10 baths,10 Toilets,Agungi +41127,4 Bedroom Detached Duplex With Excellent Features,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +41128,House At Wealth Land Green Estate,Metusela; Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41129,4 Bedroom Terrace Duplex At Wealthy Land Green Estate,Lekki Pennisula; Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41130,"Newly Built Spacious 4 Units Of 5 Bedroom Terraced Duplex With A Room Bq,fitted Kitchen,swimming Pool,etc.",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41131,Newly Built And Nicely Finished 5 Bedroom Semidetached Duplex,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets,Chevron +41132,Amazing 4 Bedroom Semi Detached Duplex,Chevron Toll Gate; Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41133,Lovely Four Semi Detached House,. Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41134,Land With C Of O,"Mary Osadolor Crescent; Chevy View Estate, Chevron Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41135,Land,Lekki Palm City Estate. Vgc Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41136,4 Bedroom Semi Detached Duplex,Road 6 Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41137,2 Plots Of Land,By 2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41138,Land,Opposite Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41139,Land,Opposite Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41140,Elegant Luxury 5 Bedrooms With B/q Fully Detached House,Sulaimon Galadima Street. Ikate Lekki Lagos,₦,"79,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41141,Tastefully Finished 4 Bedroom Terrace Houses,Grantham Court Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41142,5 Bedroom Fully Detached House With B/q In Ikota,Around Second Toll Gate. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41143,Fenced Land Approximately 800sqm With C Of O,Lekki Palm City Estate. Vgc Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41144,Brand New And Luxuriously Finished 4 Bedroom Semi Detached House With Boys Quarters.,Westend Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41145,New 5 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41146,3 Bedrooms Terrace Duplex + B/q,Victoria Crest Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +41147,Nicely Finished 3 Bedrooms Detached Duplex,"Fortune City, Lekki Phase 1 Lekki Lagos",$,"280,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +41148,Luxury 4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41149,5 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41150,4 Bedroom Terraced Duplex,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41151,2 Bedroom Apartment,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +41152,3 Bedrooms Terrace Duplex With 1 Room Ensuit B/q,Nicon Town Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +41153,Nicely Finished 4 Bedroom Terraced Duplex,Beside House On Rock Church. Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41154,3 Bedrooms Terrace Duplex With 1 Room Bq,Lekki Palm City Estate Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +41155,1065 Sqm Corner Pieces Land,Elegusghi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41156,Luxury 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41157,Mixed Use Land,Behind Conoil Filling Stattion Ikate Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41158,Mixed Use Land For Sale,Behind Conoil Filling Stattion Ikate Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41159,Superbly Finished 5 Bedrooms Duplex,Famous Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +41160,Beautifully Finished 5 Bedroom Terrace Duplex For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41161,Land, Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41162,5 Bedroom Townhouse With 2 Rooms Boys Quarters,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41163,550 Square Metres Plot Of Land,Pinnock Beach Estate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41164,Residential Land,Northern Foreshore Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41165,Full Plot Of Land,Lake View Park 2 Estate Lekki Phase 1 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41166,600 Square Metres Plot Of Land,Mobile Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41167,3 Plots Of Land (750 Square Metres Each),Atlantic View Estate Lekki Phase 1 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41168,5 Bedroom Detached Duplex With B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41169,5 Bedroom Detached Duplex With 1 Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41170,5 Bedroom Detached Duplex With 1 Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41171,5 Bedroom Duplex With A Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41172,Gracefully Built 5 Bedroom Detached Duplex With A Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41173,5 Bedroom Detached House + Bq,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41174,3 Bedroom Detached Duplex,"Ikota, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +41175,5 Bedroom Detached Duplex + 1 Room B/q,"Ikota, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41176,A Beautifully Designed 5 Bedroom Detached House + 1 Room Servant Quarters,"Megamound, Ikota Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41177,4 Bedroom Lewis Ham London Terrace With A B/q,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41178,Luxury & Newly Built 5 Bedroom Detached Duplex,"Elegushi, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41179,5 Bedroom Fully Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41180,3 Bedroom Terraced Duplex + B/q,Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +41181,5 Bedroom Duplex + B/q,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41182,6 Bedroom Semi Detached Duplex + B/q, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +41183,5 Bedroom Semi Detached + A B/q,"Orchid Hotel Road,beside 2nd Toll Gate Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41184,5 Bedroom Detached Duplex + B/q, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41185,4 Bedroom Semi Detached Duplex + B/q,Chevron Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41186,4 Bedroom Semi Detached Duplex + B/q, Chevron Lekki Lagos,₦,"58,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41187,5 Bedroom Terraced Duplex + B/q, Chevron Lekki Lagos,₦,"62,500,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41188,5 Bedroom Fully Detached Duplex + B/q, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41189,4 Bedroom Semi Detached Duplex + B/q,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41190,4 Bedroom Semi Detached Duplex,"Orchid Hotel Road Beside 2nd Toll Gate, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41191,5 Bedroom Fully Detached Duplex + B/q, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41192,5 Bedroom Fully Detached Duplex,Orchid Hotel Road Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41193,4 Bedroom Terraced Duplex + B/q, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41194,3 Bedroom Terrace Luxury Duplex With 1 Room B/q, Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +41195,4 Bedroom Semi Detached Duplex With 2 Rooms B/q, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41196,5 Bedroom Detached Duplex For Sale,Osapa Jakande Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41197,4 Bedroom Terraced Duplex With 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41198,611 Sqm Land,"Vintage Park Estate, Ikate Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41199,5 Bedroom Detached Duplex With A Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41200,Luxurious 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41201,Elegant 4 Bedroom Semi Detached Duplex With A B/q,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41202,Elegant Luxury 4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41203,4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41204,Beautifully Finished 4 Bedroom Semi Detached Duplex With B/q,Southern View Estate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41205,Luxurious 4 Bedroom Semi Detached Duplex,Southern View Estate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41206,4 Bedroom Terraced Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41207,Land,Osapa Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41208,Land,Behind Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41209,Land,Agunigi Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41210,Newly Built 4 Bedroom Terrace Duplex With A B/q,Jakande Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41211,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41212,Tastefully Finished Fully Detached 4 Bedroom Duplex With B/q,Ikota Villa Estate Vgc Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +41213,Executive 5 Bedroom Fully Detached Duplex With 1 Rooms B/q,Victory Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41214,Gracefully Built 5 Bedroom Detached Duplex With A Room B/q,Victory Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41215,Brand New Tastefully Finished Semi Detached 4 Bedroom Duplex,"Beside Mega Chicken, Lekki Epe Exressway Ikota Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41216,Land,Off Shoprite Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41217,4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41218,Magnificent 5 Bedroom Fully Detached Duplex With 1 Room B/q,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41219,4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41220,Tastefully Finished 4 Bedroom Terraced Duplex,Orchid Hotel Road Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41221,5 Bedrooms Detached House + B/q,Megamound Estate;lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41222,5 Bedroom Detached Duplex With 1 B/q,Lekki County Homes; Mega Mound Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41223,4 Bedroom Semi Detached Duplex + B/q,Oral Estate Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41224,4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevron Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41225,Gracefully Built 4 Bedroom Detached Duplex With A Room B/q,Chevron Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41226,675 Square Metres Land,"Road 3, Close 4 V.g.c Vgc Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41227,525 Square Metres Land,Road 3 Close 4 Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41228,5 Bedroom Detached Duplex With 1 Room B/q,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41229,2 Plot Of Land,Ikota Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41230,Gracefully Built 5 Bedroom Semi Detached With A B/q,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41231,Tastefully Finished 5 Bedroom Fully Detached House With 2 Maid Rooms,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41232,4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41233,5 Bedroom Detached Duplex With A Bq For Sale.,Idado Estate Idado Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41234,600 Square Meter Land For Sale In Lake View Park1,Lakeview Park 1 Vgc Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +41235,A Beautifully Designed 5 Bedroom Detached House With 1 Room Servant Quarters,Lakeview Park 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41236,4 Bedroom Semi Detached Duplex With 2 Rooms B/q.,Lekki Palm City Estate Vgc Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +41237,1300 Square Metres Land,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41238,5 Bedroom Terraced Duplex With 1 Room Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41239,5 Bedroom Terraced Duplex With 1 Room Bq,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41240,2 Bedroom Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +41241,Brand New & Luxuriously Finished 4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41242,2 Bedroom Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +41243,Exquisite 4 Bedroom Semi Detached Duplex,Alternative Route By Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41244,Exquisite Newly Built 5 Bedroom Detached Duplex,Alternative Route By Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41245,Luxury Newly Built 5 Bedroom Detached Duplex With B/q,Alternative Route By Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41246,800 Sqm Land,Megamond Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41247,800 Sqm Land,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41248,Land,Opposite Silver Bird Jakande Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41249,5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41250,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,6 Toilets,Ikota +41251,Newly Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41252,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41253,Top Notch 5 Bedroom Semi Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41254,2022sqm Land,Victoria Garden City Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41255,2400sqm Land,"Road 2, Vgc Vgc Lekki Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41256,Exclusively Built 4 Bedroom Semi Detached Duplex With B/q,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41257,4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41258,4 Bedroom Detached Duplex +bq,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41259,Tastefully Finished 4 Bedroom Terraced Duplex Town House With 1 B/q,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41260,Brand New 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41261,4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41262,4 Bedroom Semi Detached Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41263,486 Sqm Land,E.l.f. Lekki Phase 1 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41264,Newly Built And Strategically Located Shop In A Complex,Lekki Epe Expressway By Ikota Ikota Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41265,600 Square Meters Land,Victoria Garden City Vgc Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +41266,900 Square Meters Land,Victoria Garden City Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41267,2000 Square Meters Commercial Land For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +41268,1400 Square Meters Water Front Land For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +41269,Newly Built 5 Bedrooms Fully Detached Duplex With A B/q,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41270,Newly Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41271,Luxury Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +41272,1420 Square Meters Land,Alternative Route By Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41273,495 Square Meters Land,Lekki Phase 1 By Elf Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41274,658 Square Meter Land,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41275,1321 Square Meters Land,Osapa By Zenith Bank Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41276,1838 Square Meters Land,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41277,Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41278,3 Plot Of Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41279,Luxurious 4 Bedroom Semi Detached Duplex + B/q,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41280,Nicely Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41281,Luxury Fully Detached 4 Bedroom Duplex With A B/q,Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41282,Lovely 4 Bedroom Semi Detached Duplex For Sale,Alternative Route By Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41283,Lovely 5 Bedroom Detached Duplex,Alternative Route By Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41284,Classy 4 Bedroom Semi Detached Duplex,Apperton Place Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41285,Exquisitely Built 4 Bedroom Semi Detached Duplex With B/q,"Cooplag Estate, Lafiaji, Inside Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41286,Luxury & Newly Built 5 Bedroom Fully Detached Duple With Servants Quarters,"Elegushi, Chisco Ikate Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41287,Newly Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41288,1472 Square Meter Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41289,657 Square Meter Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41290,Tasteful 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41291,Luxurious 3 Bedroom Terrace Apartment (mortgage Option Available),Off Mobil Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +41292,Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Rasaq Eletu Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41293,Neatly Finished And Spacious 3 Bedroom Apartment (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +41294,4 Bedroom Detached House,Dan Ogbeide Street; Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41295,4 Bedroom Semi Detached House,Off Fola Osibo Street; Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41296,Brand New 4 Bedroom Terrace,Alpha Beach Rd; Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +41297,Brand New 5 Bedroom Detached House,Off Providence Street; Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41298,4 Bedroom Semi Detached Duplex Plus Bq,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41299,Tastefully Finished 3 Bedroom Terrace Duplex,Osapa Lagos Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +41300,Lovely 4 Units Of 4 Bedroom Terrace,Alpha Beach Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41301,Newly Built And Well Finished 5 Bedroom Detached Duplex With A Room Bq,Jakande 1st Gate Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41302,Luxury 5bedroom Duplex With 1room Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41303,Luxury 4 Bedroom Terrace Duplex With Bq.,Egbuefon Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +41304,Well Finished 2 Bedroom Apartment,Oral Estate; Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +41305,Lovely 3 Bedroom Apartment,Oral Estate; Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +41306,4 Bedroom Detached House With A Jaccuzi,Off Orchid Hotel Road; Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41307,Luxury 5 Bedroom Detached House With Bq,. Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41308,"Newly Built And Nicely Finished 5 Bedroom Semidetached Duplex With A Room Bq,fitted Kitchen,etc.",Off Kazeem Eletu Way Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41309,For Sale Exclusively Finished Brand New Luxury 4 Bedroom Mansion Duplex With Bq In A Secured Estate Is Up For Sale.,Oral Estate Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +41310,"Mega 4 Bedroom Detached Duplex, Lekki",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41311,Newly Built And Nicely Finished 5 Bedroom Semi Detached Duplex With A Room Bq,Off Kunshenla Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41312,Brand New Semi Detached 4 Bedroom House With Bq,Lafiaji Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41313,Brand New 5 Bedroom Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41314,Lovely 3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41315,"Newly Built 5 Bedroom Detached Duplex With A Room Bq,",Off Kunshenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41316,Exquisite 4 Bedroom Fully Detached Duplex,Oba Amusa Estate Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41317,Luxury Hotel Rooms And Penthouses,"Orchid Hotel Road, After 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 2 +41318,Luxury Detached House,Femi Okunu Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41319,Brand New 3 Bedroom Terrace Duplex With Bq,Lafiaji 2nd Roundabout Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +41320,60 Plots Of Land,Abijo Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41321,East Amber Estate With Governor's Consent,"Abijo Gra, Beside Nicon Town Ii, Off Lekki Epe Expresswa Lekki Lagos",₦,"11,000,000",0,0,0, beds, baths, Toilets,Other Lekki +41322,Corner Piece Land,Pinnock Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Osapa London +41323,Beautiful 4 Bedroom Terrace Duplex,Idowu Emma Street Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41324,Lekki Royal Garden,Ibeju Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41325,3 Units Of 3 Bedroom Block Of Flats For Sale, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +41326,Luxury 14 Units Of 3 Bedroom Block Of Flats, Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +41327,2 Units Of 5 Bedroom Semi Detached House,Prince Kazeem Eletu Street Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41328,Newly Built And Well Finished 4 Bedroom Terraced Duplex,Alternative Route Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41329,4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41330,Tastefully Built Fully Detached 5 Bedroom Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41331,Newly Built 3 Units Of 5 Bedroom Terraced Duplex,Off Lekki Expressway Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41332,Elegant Terrace Duplex,. Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41333,Exotic 5 Bedroom Fully Detached Duplex With One Room Bq,. Vgc Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41334,Luxurious 5 Bedroom Fully Detached Duplex,. Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41335,4 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41336,Contemporary 5 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41337,Majestic 5 Bedroom Fully Detached Duplex,"Off Chevron Toll Gate; Lekki Epe Expressway, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41338,4 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41339,5 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41340,Admirable 4 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41341,5 Bedroom Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41342,4 Bedrooms Terraced House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41343,Irresistible 4 Bedroom Semi Detached House,White Oak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ologolo +41344,Luxury Detached House,Lekki Penninsula Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41345,Luxury Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41346,Luxury Semi Detached Building,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41347,Brand New 5 Bedroom Detached House With Bq,. Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41348,Brand New 4 Bedroom Semi Detached House With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41349,Brand New 5 Bedroom Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41350,Exquisitely Finished Five Bedroom Detached House,. Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41351,Well Finished Five Bedroom Detached House, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41352,Majestic Five Bedroom Detached House,. Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41353,Elegant 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41354,5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41355,Luxury Four Units Of Four Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +41356,Newly Built And Well Finished 3 Bedroom Serviced Terraced Duplex,Alternative Route Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +41357,Brand New 4 Bedroom Semi Detached House,Lafiaji Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41358,Brand New Serviced 4 Bedroom Terrace,Lafiaji Chevron Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41359,Luxury 5 Bedroom Fully Detached House With Excellent Features,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41360,Lovely 3 Bedroom Apartment,Pracht Garden Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +41361,Acres Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41362,5 Bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41363,4 Bedroom Duplex For Sale In Lekki,"Mega Chicken Outlet In Ikota, Before Vgc Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets,Ikota +41364,5 Bedroom Detached Duplex For Sale, off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41365,Top Notch 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41366,5 Bedroom Detached Duplex For Sale," admiralty Estate, Off Alpha Beach Road, New Road Igbo Efon Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41367,A Newly Built 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41368,Beautifully Finished 4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +41369,4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41370,4 Bedroom Semi Detached Duplex For Sale,"A Close, Chevron Alternative, Chevy View Estate Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41371,5 Bedroom Detached Duplex For Sale," northern Foreshore Estate, Chevron Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +41372,5 Bedroom Detached Duplex For Sale," mega Mound, Ikota Villa Estate Ikota Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41373,5 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +41374,5 Bedrooms Fully Detached Apartment,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +41375,4 Bedroom Terrace Apartment,6 Saki Close Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41376,4 Bedroom Semi Detached Duplex,"Opp. Agungi By Domino Pizza; Lekki Right, Ologolo Lekki Lagos",₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +41377,4 Bedroom Semi Detached Duplex,Saki Close Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41378,Luxurious 4 Bedroom Terrace Duplex,Hakeem Dickson Street Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41379,4 Bedroom Detached Duplex For Sale," chevron Alternative, Chevy View Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41380,4 Bedroom Terraced Duplex, orchid Road By Chevron Roundabout; Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +41381,4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41382,4 Bedroom Detached House In Ikota,Pracht Gardens Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41383,5 Bedroom Detached Duplex On 700 Sqm,U3 Estate; Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41384,Residential Land,"Victory Park Estate; Lekki Epe Expressway, Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41385,Residential Land For Sale,"Orchid Hotel Road, chevy View Estate Lekki Lagos",₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41386,Residential Land For Sale, off Lekki Epe Expressway Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41387,4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41388,Residential Land,Off Orchid Hotel Rd Just After The Second Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41389,4 Bedroom Detached Duplex, chevy View Estate; Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41390,4 Bedroom Detached Duplex," orchid Hotel Rd; Ikota Villa Estate, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41391,4 Bedroom Detached Duplex With Domestic Quarters, chevy View Estate; Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41392,5 Bedroom Detached Duplex For Sale,Idado Estate Idado Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41393,5 Bedroom Detached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +41394,Residential Land For Sale," royal Gardens Estate, Close To Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41395,4 Bedroom Semi Detached Duplex," lekki Gardens; Chevron Drive, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41396,6 Bedroom Semi Detached Duplex For Sale, third Roundabout Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 2 +41397,Lovely 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +41398,Two Bedroom Flat, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +41399,4 Bedroom Terraced Duplex With A Nice Bq,Royal Garden Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41400,3 Bedroom Luxury Apartment,Ologolo Road Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +41401,5 Bedroom Detached Duplex With A Room Bq (off Plan),Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41402,Lovely 4 Bedroom Semi Detached House,. Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41403,Brand New 5 Bedroom Detached House With Bq,Idado Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41404,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41405,5 Bedroom Detached Duplex For Sale, ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41406,Residential Land For Sale, behind Prime Water Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41407,4 Bedroom Mini Flat For Sale,Lekki Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41408,5 Bedroom Fully Detached Duplex., Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41409,4 Bedroom Semi Detached Duplex With A Bq...,Westend Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41410,4 Bedroom Semi Detached Duplex,Elegushi; Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +41411,Newly Built And Fantastically Finished 5 Bedroom Detached Duplex With A Room Bq,Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41412,Luxury 6 Bedroom House With A Swimming Pool And A Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Osapa London +41413,4 Bedroom Detached Duplex On 500 Sqm, off Chevron Drive; Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +41414,8 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"270,000,000",0,0,0,8 beds,8 baths,9 Toilets,Victoria Garden City +41415,4 Bedroom Semi Detached Duplex For Sale, off Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41416,4 Bedroom Terraced Duplex, . Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41417,Tastefully Finished 5 Bedroom Semi Detached House With Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41418,Newly Constructed 4 Bedroom Terrace House With A Room Bq At Crest Estate,"Orchid Road, Chevron Area, Lekki, Lagsos. Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41419,"Newly Constructed And Tastefully Finished 4 Bedroom Semi Detached House At Beuna Vista Estate, Orchid Road, Lekki, Lagos","Orchid Road, By Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41420,4 Bedroom Terraced Duplex For Sale," orchid Road, Ikota Villa Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41421,Residential Land, lake View Estate Phase 2; Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41422,Residential Land,Lake View Estate Phase 2; Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41423,6 Bedroom Executive Detached House,Nicon Town Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,7 baths,7 Toilets,Other Lekki +41424,3 Bedroom Terraced Duplex," ocean Bay Estate By Orchid Rd; Lafiaji, Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41425,4 Bedroom Semi Detached Duplex, chevy View Estate; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41426,Adorable 4 Bedroom Duplex A,Lekki Gardens 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41427,4 Bedroom Duplex,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41428,Splendid 5 Bedroom Duplex For Sale,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +41429,5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41430,Plots Of Land,Abraham Adesanya Roundabout Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41431,"Newly Built And Excellently Finished 2 Units Of 5 Bedroom Detached Duplex With A Room Bq, Fitted Kitchen",Megamond Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41432,Newly Built And Well Finished 2 Units Of 4 Bedroom Semidetached Duplex With A Room Bq,Adebisi Oyinlola Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41433,Luxury Finished 5 Bedroom Duplex In Lekki For Sale,Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41434,1100sqm Of Land,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41435,Land,Orchid Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41436,Tastefully Finished 5 Bedroom Terrace In Lekki,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41437,"5 Bed Detached Duplex Plus Bq: Chevy View Estate, Chevron, Lekki","Chevy View Estate, Chevron Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41438,Newly Built 10 Units Of 2 Bedroom Serviced Apartment,By Mega Chicken Ikota Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +41439,4 Bedroom Detached Duplex,Mobil Road Before Ajah Bridge; Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41440,4 Bedroom Detached Duplex On 660 Sqm,. Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41441,3 Bedroom Terraced Duplex,Victoria Crest; Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41442,Luxury 4 Bedroom Semi Detached House,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41443,Exquisitely Finished 5 Bedroom Detached House With Bq And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41444,Luxury 5 Bedroom Contemporary Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41445,Brand New 5 Bedroom Detached House With Bq,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41446,Superb 5 Bedroom Terraced Duplex,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,5 baths,5 Toilets,Ikota +41447,4 Bedroom Terraced Duplex,3rd Round About By Nike Art Gallery; Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41448,A Super Luxury Finished Detached Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41449,Superbly Built 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41450,70% To Completion 4 Room Duplex,Lekki Garden Homes 3 At Abraham Adesanya Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41451,6 Bedroom Fully Detached House With A Room Bq, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +41452,3 Bedroom Terrace Duplex,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +41453,Brand New 5 Bedroom Terrace House,Ologolo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41454,Fully Detached 5bedroom Duplex With Bq,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +41455,Brand New 3 Bedroom Terrace Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +41456,Brand New Serviced 4 Bedroom Terrace Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41457,Exquisitely Finished 5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41458,Luxury 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41459,Well Finished 4 Bedroom Terrace With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41460,5 Bedroom Detached Duplex With A Staff Quarters, idado Estate; Idado Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41461,Fabulous 2 Blocks Of 4 Bedroom Apartments & 3 Bedroom Apartments,Eyitayo's Court Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +41462,Gorgeous 2 Units Of 4 Bedroom Duplex,Victory Park Estate; Jakande Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41463,Lovely 4 Bedroom Duplex With Swimming Pool & Pent Roof,"Victory Park Estate, Jakande Lekki Lagos",₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41464,Brand New 4 Bedroom Semi Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41465,Exquisitely Finished 4 Bedroom Fully Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41466,Lovely 4 Bedroom Semi Detached House With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41467,Brand New 5 Bedroom Detached House With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41468,4 Bedroom Semi Detached Duplex With Bq,Friend’s Colony Estate Agungi Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,3 baths,4 Toilets,Agungi +41469,"5 Bed Duplex With Pool, Chevy Estate, Lekki, Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41470,Newly Built 6 Units Of 4 Bedroom Spacious Terraced Duplex With A Room Bq,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41471,5 Bedroom Duplex All Room Ensuite At Jakande Lekki For Sale,Jakande Jakande Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41472,Beautiful 5 Bedroom Semi Detached Duplex,After Circle Mall (shoprite) Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41473,1200 Sqm Land,Rocky Drive Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +41474,800sqm And 700sqm Set Back Prime Land(fenced And Gated),Lekki Epe Expressway; Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41475,Lovely 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41476,Exquisitely Finished 5 Bedroom Fully Detached House,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41477,Plots Of Land,Orchid Road Beside Cooplag Garden Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41478,Newly Built And Excellently Finished 5 Bedroom Detached Duplex With A Room Bq,Megamond Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41479,Fabulous Contemporary Building,Arcadia Grove Estate Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41480,Exquisite 5 Bedroom Detached Duplex,"Megamond Estate, Lekki County Ikota Lekki Lagos",₦,"110,000,000",0,0,0,6 beds,5 baths,5 Toilets,Ikota +41481,"Newly Built And Wonderfully Finished 2 Units Of 4 Bedroom Detached Duplex With A Room Bq, Fitted Kitchen",Megamond Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41482,A Luxury Finished Detached Duplex With Bq,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41483,Newly Built And Well Finished 4 Bedroom Terraced Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +41484,Land Available,Lekki Rose Garden Osokoro Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41485,Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41486,Tastefully Finished 4 Units Of 5 Bedroom Fully Detached Duplex With Bq,Megamound Estate; Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41487,"Fully Detached 4 Bedroom Duplex In Mega Mind Estate, Lekki County","Lekki, Ajah Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41488,Newly Built Luxury 5 Bedroom Semi Detached Duplex With A Room Bq And Fitted Kitchen,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41489,Lovely 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41490,"Southern Green Estate, Lekki","Southern Green Estate, Lafiaji Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41491,Newly Built 4 Bedroom Luxury Maisonette With A Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41492,3bedroom Apartment,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +41493,Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41494,Beautifully Finished 5 Bedroom Terraced Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,6 baths,7 Toilets,Lekki Phase 2 +41495,4 Bedroom Detached Duplex At Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41496,Beautifully Finished 2 Bedroom Flat,. Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +41497,Luxury 5 Bedroom Fully Detached House With Excellent Features,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +41498,Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq En Suite,Chevy View Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41499,Luxury 5 Bedroom Contemporary Detached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41500,Lovely 5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41501,Luxury 5 Bedroom Detached Duplex At Ikate Lekki,Off Conoil Street Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41502,Newly Built And Well Finished With Architectural Designed 3d 5 Bedroom,. Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41503,Fully Detached 4 Bedroom With Bq For Sale,Chevron Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41504,Silky Touch Mall(uncompleted),"3rd Roundabout, Lekki, Phase 1 Lekki Phase 1 Lekki Lagos",₦,"570,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41505,4 Bedroom Duplex,Kunsenla Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41506,2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41507,4 Bedroom Duplex,Abioro Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41508,Fantastic 5 Bedroom Duplex At Jakande Lekki,Jakande Lekki Jakande Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41509,3 Bedroom Flats,Abioro Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +41510,4 Bedroom Duplex,Abioro Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41511,4 Bedroom Duplex,Oladimeji Alao Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41512,4 Bedroom Bungalow All Ensuite Sitting On A Plot Of Land,Behind Lagos Business School Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +41513,4 Bedroom Duplex,Oladimeji Alao Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41514,2 Units Of 5 Bedroom Mansions With Swimming Pool,Victoria Estate Park Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41515,Newly Built 4/5 Bedroom Terraced Duplex,. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41516,Beautiful 5 Bedrooms Detached Duplex + Bq,. Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41517,Luxury 4 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41518,Tastefully Built 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41519,A Well Finished And Furnished Hotel Of 16 Rooms, Lekki Phase 1 Lekki Lagos,₦,"590,000,000",0,0,0,10 beds,0 baths,10 Toilets,Lekki Phase 1 +41520,Top Notch 3 Bedroom Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +41521,Luxury 4 Bedroom Terraced Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41522,Luxury 5 Bedroom Terraced Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +41523,Luxury 5 Bedroom Fully Detached House With Excellent Features,. Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +41524,2 Units Of 3 Bedroom Duplex,Babatope Bejide Crescent Off Folaoshibo Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +41525,Newly Built Massive 6 Bedroom Detached Duplex With Bq (all Rooms En Suite),Marwa Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +41526,4 Flats Of 3 Bedrooms Each With A Bq (governors Consent),Ologolo Agungi Lekki Lagos,₦,"132,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41527,2 Units Of 5 Bedroom Mansion,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41528,Fantastic 4 Bedroom Semi Detached Duplex,. Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41529,12 Units Of Luxurious 5 Bedroom Beautifully Built Terraced House,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41530,4 Bedroom Duplex,. Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41531,5 Bedroom Duplex All Room En Suite,. Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +41532,Land Available,Lakowe Golf And County Estate Road Lekki Phase 1 Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41533,Fully Completed House For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,0,0,8 beds,5 baths,5 Toilets,Lekki Phase 2 +41534,Newly Built And Fantastically Finished Luxurious Detached Bungalow,South Pointe Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,5 baths,5 Toilets,Chevron +41535,Newly Built Palatial 4 Bedroom Semi Detached Duplex With Quality Fittings,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41536,Plot Of Land In A Fast Developing Area,Ibrahim Odofin Street Agungi Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41537,Distress Sale 4 Bedroom Semi Detached Duplex Plus Bq,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41538,4 Bedroom Semi Detached Duplex,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41539,4 Bedroom Wing Of Duplex,Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41540,Land,"Ologolo By Elegushi, Facing Atlantic View Estate Agungi Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41541,4 Bedroom Duplex,Oba Yekini Elegushi Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41542,Plots Of Land With C/o At Khl Gardens Phase 2 Sangotedo,"Okun Mopo, Off Monastery Road, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41543,4 Bedroom Pent House With A Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41544,Elegant 4 Bedroom Semi Detached Duplex At Chevron Alternative,Chevron Alternative Ikate Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +41545,Exquisitely Finished 5 Bedroom Semi Detached Duplex With Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41546,4 Bedroom Semi Detached Duplex With Boys Quarters,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,6 baths,6 Toilets,Chevron +41547,5 Bedroom Fully Detached Duplex With A Boys Quarters,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +41548,4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41549,Exquisitely Furnished Fully Detached 6 Bedroom Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,5 Toilets,Lekki Phase 1 +41550,Fantastic 2 Units Of 4 Bedroom Semi Detached Duplex Apartment,"Westend Estate, Ikota Villa Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41551,Newly Built Block Of Flats On A Full Plot,. Agungi Lekki Lagos,₦,"131,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +41552,A Block Of 4 Flats On Full Plot Of Land,. Agungi Lekki Lagos,₦,"131,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +41553,3 Bedroom Flat,Osapa Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +41554,Brand New 3 Bedroom Flat,Alpha Beach Road Jakande Lekki Lagos,₦,"18,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41555,"Fantastic Newly Built Duplex At Chevron Estate, Lekki",Chevron Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +41556,Superb 5 Bedroom Fully Detached Duplex With Bq And Swim Pool At Lekki County,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"123,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41557,Astonishing 4 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +41558,"A Plot Of Land Measuring 900sqm Strategically Located In A Built Up Area At Lekki Scheme 2,lekki.",Lekki Phase 2. Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41559,A 5 Bedroom Luxury Finished Detached Duplex With Bq,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41560,650sqm Land,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41561,676sqm Of Land,Bera Estate Chevron Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41562,842sqm Of Land,Off Gbolahan Salami Agungi Lekki Lagos,₦,"71,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41563,5 Bedroom Fully Detached Duplex With Bq For Sale At Lekki County Home,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41564,4 Bedroom Detached Duplex Available At Osapa London,"Behind Circle Mall, Shoprite Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets,Osapa London +41565,Palatial 5 Bedroom Detached Duplex,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41566,Newly Built 4 Bedroom Semi Detached +bq & 5 Bedroom Fully Detached And Bq,"Buene Vista Estate, By Chevron Toll Gate Lekki Phase 1 Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41567,Event Center,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,6 Toilets,Lekki Phase 2 +41568,Brand New 4 Bedroom Duplexes,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41569,5 Bedroom Furnished Duplexe Plus Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41570,Lovely 4 Bedroom Semi Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +41571,Classy & Spacious 4 Bedroom Duplex,Off Admiralty Way. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41572,Lovely 3 Bedroom Terrace Duplex,"Alpha Beach Road, Before Chevron Drive. Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41573,4 Bedroom Mansionette On 2 Floors,Behind Spg Hq Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +41574,Brand New 4 Bedroom Duplex House, Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +41575,Exquisitely Finished 2 Bedroom Flat With Bq,Osapa Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +41576,Plots Of Land,Mopo Akinlade Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41577,Superb And Tastefully Furnished 4 Bedroom And 3 Bedroom Terrace Duplex With Bq And Swimming Pool,Shell Estate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41578,700sqm Of Land,Road 6 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41579,4 Bedroom Duplex For Sale At Royal Gardens Estate Ajah,"Royal Gardens Estate, By Ajah Flyover Bridge Idado Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41580,Newly Built And Well Finished With Architectural Designed 3d 5 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41581,Lovely 4 Bedroom Semi Detached Duplex + One Room Bq,"Agungi Ajiran, Agungi Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41582,Brand New 4 Bedroom Terrace + Bq,. Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41583,Luxurious Fully Detached 4 Bedroom Duplex (mortgage Option Available),Off Oba Amusa Street Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41584,Lovely 3 Bedroom Terrace Duplex,"Victoria Crest Iii, Ilaje After The Second Toll Gate Lekki Lagos",₦,"32,750,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +41585,5 Bedroom Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41586,Residential Land,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41587,"A Plot Of Land At New Road Igbon Efon, Lekki",New Road Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41588,"5 Bedroom For Sale At Stillwaters Garden, Ikate, Lekki",Stillwaters Garden Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikate +41589,Semi Detached Bungalow For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41590,Lovely 5 Bedroom Duplex With Quality Finishing In Vgc For Sale,Vgc Lagos Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +41591,Metro Garden Estate Lekki Phase 1,Metro Garden Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,0 Toilets,Lekki Phase 1 +41592,Nicely Finished Detached 5 Bedroom House,Shoprite Road Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41593,Brand New 4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41594,Semi Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41595,"Well Finished 4 Bedroom Semi Detached Duplex In Ikota, By Vgc, Lekki",Ikota Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +41596,Luxury 4 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41597,Lovely 4 Units 3 Bedroom Flat,Ologolo Village Road Agungi Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +41598,"A Well Design, Work In Progress 4 Bedrooms Detached Duplex",Chijioke Chuwkuma Street Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41599,5 Bedroom Detached Duplex For Sale, road 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +41600,Lovely Newly Built 4 Bedroom Semi Detached Duplex,"Agungi,lekki Agungi Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41601,5 Bedroom Semi Detached Duplex," sapphire Estate; Lekki Expressway, Lekki Lagos",₦,"26,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +41602,Brand New 5 Bedroom Fully Detached House With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41603,Tastefully Finished 4 Bedroom Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41604,Luxury 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41605,Luxury 5 Bedroom Fully Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41606,Lovely 5 Bedroom Contemporary Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41607,5 Bedroom Detached Duplex For Sale," off Chevron Drive, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41608,3 Bedroom Flat For Sale," by Conoil Oil Junction, Beside Lekki Gardens, Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +41609,5 Bedroom Semi Detached Duplex For Sale," omoriere Johnson Street, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"92,500,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41610,2 Bedroom Semi Detached Duplex For Sale," gra, Abijo, Lekki, Lagos Lekki Lagos",₦,"16,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +41611,Detached Duplex, . Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41612,Massive Four Bedroom Terrace Duplex,Northern Foreshore Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets,Osapa London +41613,Luxury Four (4) Bedroom Terrace Duplex ( Promo Offer),Conservation Park Road Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets,Chevron +41614,Luxury 5 Bedroom With Bq,"Chief Bamidele Eletu Streetosapa London Lekki, Lagos. Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41615,Luxurious 4 Bed Semi Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41616,Fenced Plots Of Land,Kudirat Salami Street Agungi Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41617,Exquisitely Finished 5 Bedroom Fully Detached House With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41618,Exquisite 5 Bedroom Fully Detached Duplex With Bq,"Ikate, Elegunshi Lekki Ikate Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41619,A Luxury 5 Bedroom Duplex,Northern Foreshore Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41620,Lovely 4 Bedroom Apartment,Safecourt Apartment Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41621,Tastefully Finished 4 Bedroom Flat,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41622,Luxurious Fully Furnished 4 Bedroom Semi Detach Duplex Plus Bq,Atlantic View Estate Alpha Beach New Road Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41623,"800sqm Of Land In Cowrie Creek Estate, Ikate",Spar Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41624,New Luxurious 5 Bedroom Detached Duplex,"Lekki County Homes Estate, Megamond Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41625,Lovely 5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41626,Exquisitely Finished Four Bedroom Semi Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41627,Exquisitely Finished 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41628,Land,Lekki County Homes Ikota Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41629,Exquisitely Finished 4 Bedroom Fully Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41630,Brand New 5 Bedroom Fully Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41631,Lovely 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41632,Newly Built 5 Bedroom Fully Detached House With Bq,Buene Vista Estate By Chevron Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41633,Brand New 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41634,Newly And Trustfully Built 5 Bedrooms Fully Detached Duplex With Bq,"West End Estate Of Lekki County Estate, Lekki Ikota Lekki Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41635,600sqm Land,"Lafiaji, Behind Cooplag (shell Estate) Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41636,Newly Built 5 Bedroom Terraced Duplex,Before Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41637,Exotic 5 Bedroom Semi Detached Duplex,Lekki County Homes Estate (megamond) Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41638,5 Bedroom House,Plantinum Way Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41639,Exquisite 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,999,999",0,1,0,4 beds,4 baths,5 Toilets,Ikota +41640,Land At Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41641,Land At Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41642,Lovely 4 Bedroom Fully Detached Duplex,"Osapa , Lekki Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41643,"A Newly Built 5 Bedroom Fully Detached Duplex With Attached Bq,",Lekki 1 Right Side Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41644,A Nicely Built 4 Bedroom Terrace Duplex,Lekki 1 Right Side Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41645,Lovely 4 Bedroom Duplex,Royalty Road Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41646,A Luxuriously Built 5 Bedroom Fully Detached Duplex With 2 Room Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41647,A Newly Built 6 Bedroom Fully Detached Duplex With 2 Rooms Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +41648,A Newly Built 5 Bedroom Fully Detached Duplex And A Room Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41649,A Tastefully Built 5 Bedroom Fully Detached Duplex With 2 Room Boy’s Quarter,Lekki Nicon Town Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41650,Cheap Affordable Plots Of Dry Land,Lekki Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41651,Trustfully Finished Newly 5 Bedroom Duplex With Bq,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41652,Four (4) Bedroom Terrace,"Whitesands Street, Lekki Phase 1 Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41653,Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41654,6 Plots Of Land, Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41655,Newly Built And Tastefully Finished 4 Bedroom Detached Duplex With Bq,"Bera Estate , Lekki Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41656,Brand New 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41657,A Well Furnished 5 Bedroom Fully Detached Duplex With A Room Boy’s Quarter,Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41658,Lovely 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41659,Trustfully Newly Built 5 Bedrooms Semi Detached Duplex,Lekki Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41660,Lovely 6 Bedroom Semi Detached House With Bq,"Victory Park, Osapa Osapa London Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +41661,Brand New 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41662,Brand New 3 Bedroom Terrace House With Bq,Osapa Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +41663,4 Units Of Newly Built 4 Bedroom Terrace Duplex With Bq,"Alantic View Estate,by New Road Chevron Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41664,Lovely Built 4 Bedroom Fully Detached Duplex,Off Adebayo Street Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41665,Lovely 3 Unit Of Fully 4 Bedroom Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41666,5 Bedroom Duplex With A Room Bq,Beside Elf Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +41667,Newly Built 4 Bedroom Semi Detached House With Bq,Buene Vista Estate By Chevron Toll Gate Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41668,Lovely 4 Bedroom Semi Detached Duplex,1 Lekki Stre Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +41669,Southern Green Estate,1 Lifiaji Str Lekki Lekki Lagos,₦,"18,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +41670,Lovely Detached 4 Bedrooms Duplex With Bq,Olaniyi Street Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41671,Exclusive 4 Bedroom Semi Detached House,Chief Bamidele Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41672,4 Bedroom Semi Detached Duplex,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +41673,7 Bedroom Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds, baths, Toilets,Lekki Phase 1 +41674,5 Bedroom Fully Detached Duplex,Carttin Gate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +41675,7 Bedroom Fully Detached Duplex,Awudu Ekpekha Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +41676,10 Units Of 3 Bedroom Apartments,Eyitayo's Court Oral Estate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41677,4.2 Hectares Of Fenced Land,Maiyegun Tourism Scheme Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41678,12.5 Hectares Of Fenced Land,Maiyegun Tourism Scheme By Alpha Beach Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41679,"Corner Piece Land Measuring 3,600sqm",Behind Femi Okunnu Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41680,Land,Ogumbo Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41681,Brand New 4 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41682,5 Bedroom Duplex With A Bq,Mega Mound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41683,4 Bedroom Luxury Terrace House (mortgage Option Available),Orchid Road Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41684,5 Bedroom Semi Detached House With Bq (mortgage Option Available),Orchid Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41685,9 Plots Of Land Located On Orchid Road,After Lakeshore And Ocean Bay Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41686,Lovely 2 Units Of 4 Bedroom Semi Detached Duplex With Bq ( Off Plan),By Domino's Pizza Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41687,4 Bedroom Luxury Terrace House,Atlantic Boulevard Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41688,2 Nos Of 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +41689,Newly Built 5 Bedroom Detached Duplex In Chevy View With 1 Room Bq,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41690,Luxury 5 Bedroom Duplex,Muritala Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41691,"Well Finished 5 Bedroom Fully Detached House In Ikota, By Chevron","By Chevron, Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41692,4 Bedroom Luxury Semi Detached Duplex With Bq (mortgage Option Available),Westend Estate Ikota Lekki Lagos,₦,"39,500,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41693,2 Units Of 3 Bedroom Luxury Flats (mortgage Option Available),Atlanticview Estate Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets,Other Lekki +41694,4 Bedroom Luxury Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41695,A 700sqm Fenced Land,Ilasan New Road Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41696,5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +41697,4 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41698,Well Finished 4 Bedroom Terrace Duplex Bychevron, Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41699,4 Bedroom Luxury Terrace Apartments With Bq (mortgage Option Available),Aaron Irabor Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41700,4 Bedroom Luxury Townhouse With Bq & Swimming Pool (mortgage Option Available),Femi Olatunji Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41701,4 Bedroom Luxury Semi Detached Duplex (mortgage Option Available),Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41702,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41703,Well Finished 4 Bedroom Semi Detached Duplex In Ikota, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41704,Brand New 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41705,Magnificent 5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41706,4 Bedroom Terrace At Abiola Court 11,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41707,5 Bedroom Mansion At Megamond,Megamond Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41708,Lovely 3 Bedroom Detached Duplex,Atlantic Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41709,Beautiful 4 Bedroom Terraced Duplex With Bq,Ikota Villa 1 Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41710,Lovely 5 Bedroom Fully Detached House With Bq,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41711,Luxury 5 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +41712,6 Bedroom Duplex,Admiral Okoi Close Ikate Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +41713,Range Of Plot Sizes Of Land,"Victory Park Estate, Behind Femi Okunu Estate And Shoprite Mall Jakande Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41714,Newly Built 5 Bedroom Detached Duplex With A Room Boys Quarter,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41715,Newly Built 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41716,"Newly Built 5 Bedrooms Detached Duplex + Bq,","Plot 8 Chief Bashiru Street, Oral Estate, Lekki, Chevron Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41717,1340 Sqm Of Land,"By Agungi, Lekki Express Way, Lekki Agungi Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41718,4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41719,2 Bedroom Flat,Chevy View Estate. Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,0 Toilets,Chevron +41720,4 Bedroom Semi Detached House (ongoing Construction),"Chief Bamidele Eletu Avenue, Opposite Victory Park, Osapa London Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets,Osapa London +41721,3 Bedroom Flat,"Atlantic View Estate, Alpha Beach Road Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41722,Brand New Ultra Luxurious 5 Bedroom Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"138,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41723,"Executive 5 Bedrooms Detached House + Penthouse,pool,gym,in House Cinema",Arcadia Grove Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +41724,4 Bedroom Terrace House,Off Royal Garden Estate Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41725,4 Bedroom Semi Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41726,4 Bedroom Detached House | Off Plan,"Orchid Road, By Lekki Conservative, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41727,Tastefully Furnished 6 Bedroom Duplex (maine Style),Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +41728,4 Bedroom Terrance Duplex,Lekki Ph 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41729,5 Bedroom Detached House,Recheal Nwangwu Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41730,Newly Built 4 Bedroom Semi Detached Duplex With Bq,By Orchid Hotel Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41731,"4 Bedroom Terrace House With B/q For Sale In Osapa London, Lekki", Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41732,5 Bedroom Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"102,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41733,1 Full Plot Of Land,New Road Alpha Beach Lekki Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41734,4 Plots Of Land,Atlantic View Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41735,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"At Ikota Villa, A Min Drive From Chevron Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41736,4 Bedroom Semi Detaced Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41737,Sweet 5 Bedroom Detached House With 2 Room Bq,Calton Gate Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41738,4 Bedroom Semi Detached House, Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41739,Newly Built 4 Bedroom Semi Detached House,"Idado, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41740,4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"8,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41741,4 Nos Of 4 Bedroom Terrance Apartment With One Room Bq,Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Osapa London +41742,Standard 4 Bedroom Duplex,Lekki Drive Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41743,3 Bedroom Duplex With With 1 Room Bq,Mobolaji Johnson Estate Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +41744,45 Rooms Functional Hotel With 2 Wings 2 Bedrooms Penthouse,"Adjacent Chevron Hq, Lekki Chevron Lekki Lagos",₦,"600,000,000",0,0,0,1 beds,0 baths,1 Toilets,Chevron +41745,4 Bedroom Terrace Duplex,Serviced Estate Bh Ikota Chevron Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41746,Over 300 Dry Plots Of Land,"In Stonehenge Estate, Lafiaji, Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41747,"Newly Built 4 Bedrooms Semi Detached Duplex, Oral Estate, Lekki Second Toll Gate, By Chevron.","8 Bahiru Street, Oral Estate, Chevron Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41748,Plot Of Land,Ikota Area Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41749,Exquisitely Finished 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41750,Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Oakville Estate. Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +41751,Land,"Urban Base Estate, Bogije Lekki Lagos",₦,"6,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41752,Lovely 5 Bedroom Detached House With Bq,Victory Park Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41753,35 Unit Of 4 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41754,Lovely 4 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41755,3 Bedroom Serviced Apartment,Spar Road Ikate Lekki Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +41756,Brand New 4 Bedroom Semi Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41757,Lovely 5 Bedroom Contemporary Detached House With Bq,Pinnock Estate Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41758,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41759,10000 Square Meters Land Space, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41760,Exquisite 3 Bedroom Terrace Duplex,Elegushi Road 4 Jakande Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +41761,"1,390.47 Square Metres Corner Piece Plot Of Land",Lekki Phase Ii Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41762,Exquisitely Built 4 Bedroom Semi Detached Duplex,"12a Grace Anjous Drive, Off Adebayo Street, Admiralty Way Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41763,Exquisitely Built 4 Bedroom Duplex,Back Of Mega Chicken Ikota Lekk Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41764,5 Bedroom Fully Detached Duplex Inside Vgc,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +41765,Newly Built 5 Bedroom Detached House In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +41766,5 Bedroom Detached Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets,Victoria Garden City +41767,Exquisitely Built 5 Bedroom House,Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,5 Toilets,Victoria Garden City +41768,Newly Built 5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +41769,Newly Built 4 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41770,Newly Built 3 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41771,4 Bedroom Terrace House,Chevron Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41772,2 Twin 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +41773,Newly Built 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +41774,Newly Built 3 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +41775,5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41776,Newly Built 5bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41777,Newly Built 5 Bedroom Detached Duplex,Megamond Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41778,Newly Built 3bedrooms Flat With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +41779,Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41780,Brand New 4 Bedroom Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41781,Newly Built 4 Bedroom Semi Detach Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41782,Exquisite 5 Bedroom Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +41783,Lovely 4 Bedroom Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41784,Lovely 3 Bedroom Duplex Terrace With 1 Bq,Orchid Hotel Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +41785,"Duplex Promo Sale At Ikota, Chevron Area, Before Vgc, Lekki, Lagos.",Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41786,4 Bedroom Maisonettes And 2 Bedroom Apartments ( Off Plan),"Oral Estate, By Chevron Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41787,A Palatial 4 Bedrooms Detached Duplex.,Rasaq Eletu Street. Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,4 Toilets,Osapa London +41788,Contemporary 5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41789,"8 Units Of 2 Bedroom Luxury Apartments In Ikota, By Chevron, Lekki", Ikota Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +41790,Land,"By 2nd Roundabout, Marwa Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41791,Land,"Vgc, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41792,Land,Eleko Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41793,4 Bedroom Luxury Semi Detached Duplex With Bq,Dillon Off Agungi/ajiran Road Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41794,4 Bedroom Luxury Semi Detached Duplex With Penthouse (mortgage Option Available),Ologolo Close Agungi Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41795,3 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Osapa London +41796,4 Units Of Tastefully Finished 5 Bedroom Terrace Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +41797,Land,Igbo Efon Along Spg Road Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41798,Three Bedroom Flat,Bera Street Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +41799,4 Bedroom Luxury Terrace Apartment,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41800,2 Units Of Brand New 4 Bedroom Duplexes At Chevron Drive,Chevron Drive Lekki Lagos,₦,"7,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41801,Lovely 4 Bedroom Semi Detached House,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41802,Brand New 5bedroom Fully Detached House With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41803,Lovely 4 Bedroom Detached Duplex,Chevi View Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +41804,Luxury Brand New 4 Bedroom Fully Detached House,Osapa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41805,Four Bedroom Terrace With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41806,5 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,"Northpointe Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41807,5 Bedroom Semi Detached House In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41808,Lovely 4 Bedroom Terrace With Bq,Collins Ikate Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41809,Luxury 4 Bedroom Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41810,Lovely 3 Bedroom Terrace Duplex,Altternative Road Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41811,Beautifully Finished 4 Bedroom Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +41812,Land,Sangotedo Ajah Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41813,500sqm Land,Bogije Lekki Phase 1 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41814,Lovely 5 Bedroom House,Plantinum Way Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41815,Beautifully Furnished 5 Bedroom Detached Duplex,5 Streets Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41816,Land,Ikate Elegushi Off Kusela Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41817,Land,Opposite Germain Auto Center Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41818,Lovely 5 Bedroom Duplex,New Road Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,0 Toilets,Agungi +41819,Luxury 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,7 baths,8 Toilets,Ikota +41820,4 Plot Of Land,"Behind Rosemary Gardens Estate, Lekki Ilasan Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41821,Lovely 10 Flat Of 2 Bedroom,Ikota Villa Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +41822,"A 914m2, 992m2 & 1,200m2 Land", Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41823,"5,000m2 Of Land", Chevron Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41824,1 Hectare Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41825,Newly Built 5 Bedroom Fully Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41826,"A 2,400m2 Land",The Rock Drive Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41827,3 Bedroom Flat,"Daniel Court, Off Orchid Hotel Road, After Chevron Roundabout Chevron Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41828,"4 Bedrooms Semi Detached Duplex + 2 Rooms Bq,",Circle Mall Drive (shop Rite) Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +41829,"A Fully Fenced And Gated Bare Land Measuring 1,147sqm,","Opposite Goshen Estate, Behind Lekki Updc Estate. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41830,River View 3 Bedroom Penthouse,Ladipo Latinwo Crescent Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +41831,Executive 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41832,1.5 Plot Of Land,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets,Agungi +41833,1400 Sqm Of Land,Ikate Bus Stop Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41834,4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41835,"Newly Built 4 Bedroom Semi Detached House With Fitted Kitchen And Bq For Sale At Ikate,lekki.", Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41836,5 Bedroom Terrace House,Jeremiah Ugwu Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41837,4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41838,"Land At Northville Estate, Bogije Lekki",Bogije Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41839,5 Bedroom Duplex,Osapa London Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +41840,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41841,3 Bedroom Flat,Elevation Church Jakande Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41842,800 And 1000 Sqm Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41843,"Newly Built 5 Bedroom Detached House For Sale At Victory Park Estate, Jakande, Lekki", Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41844,4 Bedroom Semi Detach Duplex,Lekki County Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41845,5 Bedroom Detached Duplex,Jakande Bus Stop Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41846,Plots Of Land,"Near 3rd Roundabout, Lekki Express Way, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41847,300sqm Land,7mins Drive From The Ajah Jubilee Bridge And About 4 Mins Drive From The Lekki Epe Expressway. Lekki Phase 2 Lekki Lagos,₦,"5,250,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41848,600sqm Of Land,Lafiaji Chevron Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41849,300sqm Land,"Opposite Amen Estate Phase 2, Eleko Beach Rd Lekki Phase 2 Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41850,Lovely 4 Bedroom Terrace Duplex,Oribanwa Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41851,4 Bedroom Terrace Duplex,Oribanwa Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41852,"Dry Land At Brooklyn Court Okun Imedu Ibeju Lekki, Lagos",Okun Imedu Lekki Lekki Lagos,₦,"800,000",0,0,0, beds, baths, Toilets,Other Lekki +41853,Camberwall Estate @ Eleko Rd On Promo Buy & Build With Instant Allocation,Eleko Road Besides Amen Estate Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +41854,Luxurious Neatly And Well Finished 4bedroom Semi Detached Duplex,Star Estate Lekki Forth Round About Behind Shopprite Osapa 2nd Roundabout Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41855,2000sqm Waterfront Land Along Road In Vgc,Road 2 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41856,4 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +41857,4 Bedroom Terrace Duplex,Hakeem Dickson Street Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +41858,3 Bedroom Terrance Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +41859,2 Bedroom Luxury Apartment With Bq (mortgage Option Available),Oniru Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +41860,A 3 Bedroom Luxurious Apartment,Josemaria Escriva Street. Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,3 Toilets,Ikate +41861,4 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +41862,Prime Ocean / Water Front Land,"Jakande, Osapa Osapa London Lekki Lagos",₦,"95,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41863,3 Bedroom Maisonettes,Oba Amusa Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +41864,Newly Built 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,3 baths,2 Toilets,Ikate +41865,Prime Commercial Land Along Lekki Express By Chevron,"By Chevron, Along Lekki Expressway Chevron Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41866,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41867,"1,400sqm Of Land",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41868,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Off Chevron Drive Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41869,Tastefully Finished 4 Bedroom Terrace With Bq,Uac Gardens Road Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +41870,"800sqm Of Land In Lakeview Estate, Opp Vgc","Lakeview Gardens, By Vgc Vgc Lekki Lagos",₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +41871,4 Bedroom Luxury Semi Detached Duplex + Bq (mortgage Option Available),Kudirat Salami Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +41872,Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Estate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41873,7 Floors Of Luxury Office Building In Lekki Phase 1 (off Plan),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,0 baths,10 Toilets,Lekki Phase 1 +41874,Land,Lekki Advert Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41875,Luxury 3 Bedroom Flat Water Front,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +41876,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41877,5 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41878,3 Bedroom Flat, Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +41879,Newly Built 5 Bedroom Duplex In Lekki,Oba Ogbagba Close Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41880,4bedroom Semi Detached House With Bq For Sale,Ologolo Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41881,Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41882,Lovely 5 Bedrooms Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41883,Luxury 5 Bedroom Fully Detached Duplex,"Megamound, Lekki County Ikota Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +41884,Well Built 4 Bedroom Semi Detached Duplex,Ologola Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ologolo +41885,Land,Piccadilly St. Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +41886,Exquisitely 3 Bedroom Flat,"Phase 3, Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +41887,Exquisite 4 Bedroom Duplex,"Phase 3, Pinnock Beach Estate, Osapa London. Lekki Osapa London Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41888,Land,Just A Few Minutes Away From Victoria Garden City Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41889,3 Bedroom Maisonette Duplex,Oba Amusa Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +41890,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41891,4 Bedroom Duplex,Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +41892,"Afordable Land At Ablaq Avenue Off Monastery Road, Sangotedo, Lekki Ph 2","Ablaq Avenue Off Monastery Road. Sangotedo, Lekki Ph 2 Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41893,Land,Off Rasheed Alaba William Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41894,Exquisite And Tastefully Finished 5 Bedroom Mansion For Sale At Arcadia Groove Estate, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41895,A Serviced Lovely And Perfectly Finished 4 Bedroom Semi Detached Duplex With A Room Self Contain Bq,Cooplag Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +41896,4 Bedroom Detached Duplex,Lekki Right Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41897,7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,9 baths,9 Toilets,Lekki Phase 1 +41898,Brand New 5 Bedroom Detached Duplex For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41899,2 Story Building And A Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41900,4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +41901,"Approximately 18,000 Sqm Of Land",Baderinwa Alabi Street Between 1st/2nd Round About Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41902,Land,Lekki Epe Express Way Lekki Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41903,Land At Arium Estate,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41904,5 Bedroom Detached Duplex For Rent,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +41905,5 Bedroom Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41906,4 Bedroom Semi Detached Duplex,"Vgc, Vgc Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +41907,"Brand New 5 Bedroom Detached Duplex At Victory Park Estate, Osapa",Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41908,Land At Southern Greens Estate,Rasheed Olukosi Street Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41909,5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +41910,4 Bedroom Duplex,"Lekki Peninsula, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41911,10 Bedroom Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +41912,4 Bedroom Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +41913,"Brand New 5 Bedroom Detached Duplex At Victory Park Estate, Osapa",Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41914,Brand New 5 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +41915,5 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +41916,4 Bedroom Duplex,Road 5 Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +41917,5 Bedroom Fully Detached With A Bq (off Plan),Megamound Estate Lekky County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +41918,A Newly Built 4 Bedroom Semi Detached House With A Bq,Megamound Estates. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +41919,(4units) Of Newly Built 4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +41920,Land At Urban Base Estate,"Along Lekki Epr Expressway, Bogije Lekki Phase 2 Lekki Lagos",₦,"7,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41921,Modern 5 Bedroom Duplex + 1 Room Bq,Friends Colony Agungi Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Agungi +41922,Land,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41923,Exquisite 3 Bedroom Townhouse + 1 Room Servant Quarters,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +41924,Serviced Plots Of Land,Vip Estate By Shoprite Road Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41925,Direct Mandate: Luxury 5 Bedroom Detached Duplex With Bq.,"Near Chevron Roundabout, Circle Mall Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41926,4 Bedroom Terrace House,Abiola Courts Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +41927,600sqm Dry Land,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41928,"4 Bedroom Semi Detached Duplex Location:lekki Phase 1, Price N120m",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +41929,Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41930,Newly Built 5 Bedroom Duplex,"Off Durosimi Etti, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41931,Lovely 5 Bedroom Fully Detached Duplex,Road 4 Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41932,4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +41933,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41934,Luxury 4 Bedroom Detached House,Osapa Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41935,Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41936,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41937,3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +41938,5 Bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41939,Land,Idado Idado Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41940,950sqm Land,"Igbokusu, By Dillion Office, Jakande Jakande Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41941,Three Numbers Of 800sqm Land,"Off Conoil Road, Ikate Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41942,A 4 Luxury Bedroom,Road 2 Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +41943,4 Plots,"Beside Kicc Church, Osapa Osapa London Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41944,679 Sqm Land,Itedo Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41945,1000 Sqm Land,"Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41946,Nice 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +41947,Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +41948,Luxury 5 Bedroom Fully Detached House,Westend Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41949,Lovely 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41950,5 Bedroom House,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41951,4 Bedroom Duplex,Victory Park Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41952,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +41953,Land,Idado Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41954,4 Bedroom Duplex,Victory Park Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +41955,Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +41956,2 Units Of 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41957,Land,Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Agungi +41958,4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41959,4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41960,4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41961,5 Bedroom House,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41962,4 Bedroom Duplex,Zone C Ikate Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41963,4 Bedroom Duplex,Zone B Ikate Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41964,1000 Square Meters Of Land,Zone C Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41965,800 Square Meters,Zone C Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +41966,3 Bedroom Flat,Off Alpha Beach Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +41967,2 Bedroom Flat,Chevron Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +41968,4 Bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41969,4 Bedroom Terrace House,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41970,4 Bedroom Terrace House,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41971,4 Bedroom Terrace Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +41972,5 Bedroom Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41973,Lovely 5 Bedroom Duplex,"Ikota, Lekki Ajah Beside Mega Chicken Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikota +41974,Luxury 5 Bedroom House,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41975,Exquisitely Finished And Very Spacious 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +41976,Luxury Land At Northville Estate,Lekki Epe Expressway Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +41977,Luxurious 4 Bedroom With A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41978,Luxurious 5 Bedrooms Duplex,Chevy View Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41979,Beautiful 3 Bedroom Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +41980,Exquisite 4 Bedroom Semi Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41981,Exquisite 5 Bedroom Contemporary House With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41982,Luxury And Trustfully Finished 5 Bedroom Terrace Duplex,"Lekki Ajah, Mobil Road Lekki Lekki Lagos",₦,"35,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +41983,Brand New 5 Bedroom Contemporary House With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +41984,Brand New 4 Bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41985,Lovely 4 Bedroom Semi Detached Duplex,"Buena Vista Estate, Eti Osa, Chevron Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +41986,Exquisitely Built 4 Bedroom Detached Duplex,Orchids Hotel Road By Second Toll Gate Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +41987,Luxury Built 5 Bedroom Detached Duplex,8 Sulieman Galadinma Off Chisco Bus Stop Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +41988,4 Bedroom Terrace Duplex,Alternative Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +41989,3 Units Of Furnished 4 Bedroom Terrace Duplex,Orchid/chevron Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +41990,Newly Built 4 Bedroom Semi Detached With Bq,"Buene Vista Estate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +41991,610m² Of Land,By Orchid Hotel Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +41992,5 Bedroom Terrace House,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +41993,600sqm Of Land,Shortly After Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +41994,5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41995,4 Bedroom Terrace,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +41996,4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +41997,5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +41998,Tastefully And Finished 4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +41999,Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42000,Exquisite 4 Bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42001,4 Bedroom Detached Duplex,Ayinda Akinmade Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +42002,6 Bedroom Detached House With Penthouse With Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Lekki Phase 1 +42003,Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42004,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42005,2803sqm Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42006,1280.95sqm Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42007,2110.95sqm Corner Piece Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42008,Lovely Five Bedroom Detached House With Bq,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42009,Exquisite Four Bedroom Semi Detached House With Bq,Oral Estate By Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42010,Brand New 5 Bedroom Detached House With Bq,Megamound Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42011,Brand New 2 Bedroom Apartment With Bq,Ikota Ikota Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +42012,3 Bedroom Flat / Apartment At Alpha Beach Road Lekki Lagos,Alpha Beach Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +42013,3 Bedroom Terrace Duplex With A Bq,Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +42014,2 Bedroom Apartment,Dada Fayemi Close Osapa London Lekki Lagos,₦,"31,500,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +42015,4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +42016,Land,Akiogun Street Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42017,Land,Dideolu Est Oniru Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42018,4 Bedroom Duplex With Bq,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42019,4 Bedroom Semi Detached Duplex With Bq,"Osapa London, Lekki Peninsula Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +42020,Three Plots Of Land,"Beside Orchid Hotel, Ikota Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42021,Land,Plot 99/100 Maiyegun Tourism Zone Off Silverbird Road Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42022,5 Bedroom Duplex And A Bq,"Megamound Estate Lekki County Homes, Ikota Villa, Lekki. Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42023,"Luxury Built Fit For Prime Minister 5 Bedroom Mansion, Vgc Lekki",Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,7 Toilets,Victoria Garden City +42024,4 Bedroom Duplex With Bq,Udogwu Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42025,5 Bedroom Detached Duplex With Bq,Dr Chimezie Street Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42026,Land,Chevron Drive. Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42027,Newly Built 4 Units Of 4 Bedroom Semi Detached Duplex With Bq,Seagate Estate Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42028,4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42029,Plot Of Land,Tf Kuboye Road Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42030,"3 Bedroom Apartment In Brookes Court, Osapa London, Lekki","Dada Fayemi Street, Off Chief Bamidele Eletu Avenue By Circle Mall, Lekki Osapa London Lekki Lagos",₦,"36,450,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +42031,4 Bedroom Semi Detached Duplex With Bq,Lekki Peninsula Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +42032,"4 Bedroom Apartment In Brookes Court, Osapa London, Lekki","Dada Fayemi Street, Off Chief Bamidele Eletu Avenue, By Circle Mall Osapa London Lekki Lagos",₦,"41,400,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42033,600sqms Of Land,Abijo G.r.a Lekki Phase 2 Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42034,Southern Green Estate,"Orchid Road, Lafiaji. Chevron Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42035,640 Sqm Land,"Chevy View Estate, Off Chevron Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42036,4 Bedroom Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +42037,Land,Lekki Free Trade Zone Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42038,Land,Lekki Eleko Behind Amen Estate Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42039,Land (joint Venture),Around Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42040,Exquisite 4 Bedroom Semi Detached Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42041,Furnished Four Bedroom Terrace Duplex With Bq,"Furnished Four Bedroom Terrace Duplex, At Lekki Gardens Estate By Lagos Business School, Lekki. Lekki Phase 1 Lekki Lagos",₦,"28,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42042,Tastefully Finished 5 Bedroom Detached House,Royal Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +42043,Land,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42044,24 Nos Of Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +42045,4 Plots Of Land,Ologolo Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42046,2 Plots Of Land,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42047,Hotel,"Off Ajiran Road, Agungi Lekki Lagos",₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Agungi +42048,5 Bedroom Detached House With 2 Rooms Bq,Richard Nwangwu Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +42049,Land,Ajah Lekki Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42050,3 Bedroom Flat,Off Chevron. Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +42051,High Value Brand New 5 Bedroom Detached Duplex,10 Adekola Adedeji Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42052,Spacious And Well Built Brand New 5 Bedroom Detached Duplex With Bq,Near Jakande Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42053,5 Bedroom Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42054,Beautifully Built 5 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42055,Exquisite 5 Bedroom Detached Duplex With Bq,Near Chevron Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42056,5 Bedroom Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42057,4 Bedroom Detached Duplex For Sale,Ikota Conty Home Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42058,Luxurious 4 Bedroom Detached Duplex With Bq,Close To Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42059,600sqm Of Land,Sangotedo Lekki Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42060,Luxurious 5 Bedroom Duplex,Udogwu Street Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42061,900sqm Cornerpiece Land,Pinnock Estate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42062,4 Bedroom Semi Duplex,Oba Elegushi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +42063,8 Units Of 2 Bedroom Flat,Chevy View Ikate Lekki Lagos,₦,"240,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +42064,10000 Sqm Of Land,Ikate Bus Stop Ikate Lekki Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42065,Land,Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42066,Lovely 4bedroom Detached House With Bq,Oral Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42067,Land,Mega Chicken Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42068,5 Bedroom Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42069,Detached 5 Bed Duplex + A Bq,"Lekki County Estate, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42070,5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42071,5 Bedroom Detached House + 2 Rooms Bq,Off Fola Oshibo Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42072,4 Bedroom Semi Detached Duplex + Bq,Orchid Hotel Road Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42073,Land For Sale,"Admiralty Way ( Overlooking Banana Island , Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42074,Land,Directly On Shop Rite Road The Palms Shopping Mall Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42075,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42076,Neatly Finished Luxury 4 Bedroom Duplex With A Bq,Idado Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42077,5 Bedroom Fully Detached Duplexes With 1 Room Boys Quarters At Osapa London, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42078,Newly Built 4bedroom Detached House Duplex,Alternative Route Chevron Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +42079,5 Bedrooms Fully Detached Duplex,Idado Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42080,Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42081,2&1/2 Plots Facing The Road,On The Agungi Major Road Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42082,Five Bedrooms Fully Detached Duplex With 2 Rooms Bq,"Daniyan Natalia Street, 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +42083,5 Bedroom Fully Detached Duplex,Ladega Street Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42084,Tastefully Finished And Well Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42085,Nicely Finished 4 Bedroom Duplex With 2rooms Bq,Vgc Estate Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +42086,Nicely Built 4 Bedroom Semidetached Duplex,Ikota Conty Home Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42087,Nicely Built 4 Bedroom Semidetached Duplex,Ikota Conty Home Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42088,Lovely Built 4 Bedroom Detached Duplex With A Room Bq,Lekki Gardens Private Residence Wing Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42089,Beautifully Built 4 Bedroom Terrace Duplex With A Room Bq,"Alanbalogun Street, Agungi Agungi Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +42090,A Plot Of Land,Eluju Lekki Phase 2 Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42091,Newly Built 5 Bedroom Duplex With Bq And Security Post House,Westend Estate Ikota Villa Lekki Lagos Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,5 Toilets,Ikota +42092,Brand New Serviced Luxury Flats.,Along Ikate Eleguishi Road Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +42093,4 Bwedroom Duplex With Bq 2 Bedroom Apartment,Secondgate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42094,Full Plot Of Land,Road 2 Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +42095,Brand New 5 Bedroom Fully Detached House With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42096,Lovely 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42097,Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42098,Land,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ologolo +42099,4 Bedroom Semi Detached House With A Room Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42100,4 Plots Of Land,Facing Lekki Epe Expressway Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42101,Bare Land,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42102,Land,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42103,Land (joint Venture),Admiralty Way Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42104,Land,Admiralty Way Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42105,5 Bedroom Detached House + 2 Rooms Bq,"Fola Oshibo Street, , Off Road 14 Lekki Phase 1 Lekki Lagos",₦,"265,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42106,Brand New 4bedroom Semi Detached House With Bq,Ajah Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42107,4 Bedroom Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42108,Fenced Full Plot,Iroko Awe Estate Ikate Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets,Ikate +42109,"4 Bedroom Semi Detached Duplex In Oral Estate, Ikota",Oral Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42110,5 Bedroom House, Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42111,New 4 Bedrooms London Terraces + Bq,"Oral Estate, By Chevron Lekki Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +42112,Residential Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42113,"6 Bedroom Luxury Mansion With Swimming Pool On 1,550sqm Land",Royal Garden Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +42114,5 Bedroom Duplex With A Room Bq,"Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42115,5 Bedroom Duplex With A Room Bq And Swimming Pool,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +42116,Lovely 4bedroom Detached House In Ikota,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42117,Lovely 4 Bedroom Semi Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42118,Exquisite 3 Bedroom Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42119,5 Bedroom Fully Detached Duplex,Ugochukwu Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +42120,Exquisite 5 Bedroom Duplex With A Room Bq,Pinnok Beach Estate Avenue Jakande Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +42121,3bedroom Terrace Bungalow,Orchids Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +42122,4bedroom Semi Detached House With Bq,Ajah Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42123,Large Space 5 Bedroom Fully Detached Duplex With Bq,Chevy View Bakare Estate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42124,3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42125,Land,Zone A Nicon Town Estate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42126,4 Bedroom Townhouse (off Plan),Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42127,Fully Furnished 2 Bed Apartment For Overlooking The Atlantic Ocean,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +42128,Land Directly Facing Orchid Hotel Road Lekki,Orchid Hotel Road Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42129,Full Plot Of Land,Orchid Hotel Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42130,4bedroom Semi Detached House With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42131,Brand New 4bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42132,5 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42133,Brand New 5 Bedroom Massive Luxury Fully Detached Duplex With A Room Bq, Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +42134,Luxurious 5 Bedroom Detached House For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42135,5 Bedrooms Semi Detached Duplex,Oba Amusa Adebambor Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42136,5 Bedroom Detached House, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42137,5 Bedroom Detached Duplex With Bq,Udogwu Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42138,Full Plot Of Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42139,Four Plots Of Land With 4 Storey Building For Sale,Ocean Bay Street Ikota Lekki Lagos,₦,"280,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikota +42140,Land For Sale,Opposite Orchid Hotel Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42141,5 Bedroom Detached Duplex Wit Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42142,Three Bedroom Flat,Off Dominos Agungi Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +42143,800sqm Land Fully Sand Filled Land,Mega Chicken Ikota Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42144,Fully Detached Duplex In Vgc,"Vgc Estate, Ajah Vgc Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +42145,New 5 Bedrooms Duplex,"Garuba Mohammed Way, Lekki Phase Ii Beside Abraham Adesanya Estate. Lekki Phase 2 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42146,Newly Built Luxurious 5 Bedroom Mansion,Close To Osinbajo House Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets,Victoria Garden City +42147,New And Well Finished 4 Bedroom Terrace House With Bq,Admiralty Homes Estate Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42148,Land Measuring 1400sqm,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42149,4 Bedroom Semi Detached Duplex,Off Kazeem Eletu Street Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +42150,Luxury Maisonette At Ibuefon By Ologolo/ Agungi,Ologolo Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42151,Land,"Behind Petrocam,by Citilodge Hotel Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42152,5 Bedroom Duplex,Furo Ezimora Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42153,5 Bedroom Detached Duplex,Lekki Epe Expressway Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +42154,5 Bedroom Terrace With Bq For Sale,Ologolo Ikate Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +42155,Brand New 5 Bedroom Fully Detached House With Bq,Idado Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42156,3 Bedroom Detached House With Bq,Ikota Vila Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42157,2bedroom Apartment,Ikota Villa Ikota Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +42158,Brand New 4bedroom Semi Detached House With Bq For Sale,Megamound Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42159,Luxury 4 Bedroom Detached Duplex With Excellent Facilities,"Bera Estate, By Chevron Drive Lekki Phase 1 Lekki Lagos",₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42160,5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42161,4 Units Of 3 Bedroom Flats,"Directly Off Babatunde Ajus Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"425,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +42162,4 Bedroom Semi Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42163,Brand New 4bedroom Semi Detached House,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +42164,4 Bedroom Terrace House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42165,4 Bedroom Duplex At White Oak Estate,White Oak Estate Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42166,Brand New 3 Bedroom Terrace House In Osapa, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +42167,Bare Land, Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42168,4 Bedroom Terrace Duplex With Bq,Off Babatunde Ajus Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42169,12 Hectares Of Land,Near Nicon Town Estate Lekki Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42170,Land,"Admiralty Way, Opposite Ebano Super Market Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42171,Land (joint Venture),Off Admiralty Way By Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42172,11 Units Of 2 Bedroom And 3 Bedroom Serviced Flat, Jakande Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +42173,4 Bedroom Terrace Duplex With Bq,"Atlantic View Estate, Before Chevron Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +42174,"4 Bedroom Fully Detached Duplex With Bq, At Chevy View Alternative Route Lekki",Chevy View Alternative Route Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +42175,New 4 Bedroom Terrace Duplex,Dream World Africana Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42176,Brand New 4 Bedroom Terrace Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42177,Massive 4 Bedroom Semi Detached House With A Room Bq,Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42178,Luxury 2 Bedroom Flat In Lekki Garden Phase 4,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42179,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42180,New 4 Bedroom Semi Detached Duplex In Lekki,"Ikota Villa Estate, West End Estate Lekki Phase 1 Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42181,5 Bedroom Detached House,"Megamound Estate, Lekki County Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42182,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42183,50 Hectares Of Land,Off Jakande Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42184,3bedroom Serviced Flat For Sale,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42185,Half Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42186,Shopping Complex/ Shops For Rent/sale,Baale Street Lekki Igbo Efon Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets,Other Lekki +42187,Very Sweet Brand New 4 Bedroom Duplex And A Bq, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42188,Consent,Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42189,Land,Orchid Road Chevron Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42190,4 Bedroom House ( Off Plan),Spar Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42191,"14 Plots Of Land Off Monastery Road, Sangotedo","Monastery, Sangotedo Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42192,Brand New 5 Bedroom Duplex At Lekk Phase 1,Lekk Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42193,4 Bedroom Apartment,Odion Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42194,4 Bedroom Apartment,Lafiaji Street Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42195,5 Bedroom Duplex,Brinton Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42196,5 Bedroom Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +42197,Govenor Consent,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42198,3 Bedroom Flat,Pinnock Beach Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Osapa London +42199,4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42200,3 Bedroom Flat,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +42201,Lovely 3 Bedroom Semi Town House,Orchide Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42202,2 Units Of 5 Bedroom Duplex,Megamall Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +42203,Brand New 4bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42204,4 Bedroom Semi Detached Duplex + Bq | Off Plan,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42205,Victoria Crest Estate 3 Luxury 3 Bedroom Terrace Duplex With Excellent Features,"Victoria Crest Estate, Orchid Hotel Road, Beside Buena Vista, Opposite Ocean Bay Estate Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42206,5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42207,4 Bedroom Semi Detached Duplex,Near Multichoice Office Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42208,6300 Sqm Of Land,Lekki Epe Expressway Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42209,5 Bedroom Detached Duplex With A Room Bq,Behind Mega Chicken Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42210,Alexandria Dews Ii 8 Units Of Elegantly Designed Semi Detached Duplexes,"Ologolo, White Oak Estate, Opposite Agungi Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42211,Victoria Crest Estate 3 Beautifully Designed Units Of 4 Bedroom Terrace Duplexes,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42212,3 Bedroom Apartment + Bq,Near Pinnoch Beach Estate And Friends Colony Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +42213,4 Bedroom Terrace Duplex,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42214,3 Bedroom Terrace Duplex,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +42215,Victoria Crest Estate 3 Luxury 4 Bedroom Semi Detached Duplex With Bq,"Victoria Crest Estate, Orchid Hotel Road, Beside Buena Vista, Opposite Ocean Bay Estate Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42216,Victoria Crest Luxury Apartment 3 Bedroom Flat Plus Bq,"Ajiran, Near Pinnock Beach, Femi Okunnu And Friends Colony Estate Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +42217,Plot Of Land,Opposite Fara Park Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42218,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"46,200,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42219,4 Bed Semi Detached Duplex In Lekki,Ikate Elegushi Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42220,"Serviced Plots At Green Haven Inside Chois Garden, Abijo Gra",Lekki Epe Expressway Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets,Other Lekki +42221,Lovely 5 Bedroom Detached House For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42222,Brand New 4bedroom Fully Detached House With Bq For Sale,Chevron Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42223,Brand New 3bedroom Semi Detached House For Sale,Lafiaji Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42224,4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42225,5 Bedroom Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42226,4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 1 Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42227,Lovely 5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,6 beds,5 baths,5 Toilets,Chevron +42228,Twin 4 Bedroom Duplexes,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +42229,Brand New 4bedroom Semi Detached House With Bq For Sale,Lafiaji Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42230,Serviced 3bedroom Terrace Duplex( Off Plan) For Sale,Lafiaji Ikota Lekki Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42231,5 Bedroom Detached House,Vintage Park 2 Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42232,Exquisite 4 Bedroom Maisonettes .,"Heirs Park,lekki Osapa London Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42233,5 Bedroom Detached Duplex With A Bq For Sale,Osapa Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42234,4 Bedroom Terrace Apartment,"Spring Bay Estate, Lekki Phase 1 Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42235,3 Bedroom Terrace Duplex,Westend Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +42236,4 Bedroom Duplex,Before Chevron Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42237,2 Bedroom Flat,Whit Sand School Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +42238,Land,"Off Rasheed Alaba William, Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42239,3 Plots Of Land,Shadyville Close To Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Chevron +42240,Land, Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42241,Luxury 7 Bedroom Duplex With 1 Bq For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +42242,5 Bedroom Semi Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42243,Fantastic 5 Bedroom Detached Duplex For Sale In Lekki Phase One,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42244,A Super Finished 4 Bedroom Terrace Apartments With Bq,Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +42245,5 Bedroom Duplex,Jeremiah Ugwu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42246,5 Bedroom Duplex With 2 Rooms Bq,"Northern Foreshore Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42247,5 Bedroom Duplex With 2 Rooms Bq,"Chevron Alternative Route, Chevron Drive Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42248,5 Bedroom Duplex With 1 Room Bq,"Megamound Lekki County Estate, Lekki Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42249,C Of O,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42250,5 Bedroom Duplex + Pent Floor,Pinnock Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +42251,Brand New 4 Bedroom Semi Detached House With Bq,Osapa Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42252,Brand New 4 Bedroom Semi Detached House With Bq,Lafaji Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42253,5 Bedroom Detached Duplex,Couplag Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42254,Nicely Built 5 Bedroom Duplex,Pinock Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42255,5 Bedroom Detached Duplex,Pinock Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42256,5 Bedroom Detached,Pinock Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42257,Beautifully Finished 4 Bedroom Semi Detached Duplex,Ologolo Jakande Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42258,4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42259,5 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42260,Residential Land,Victory Park Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42261,5 Bedroom Detached Duplex,Couplag Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42262,5 Bedroom Megamond, Jakande Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42263,Newly Built 5 Bedroom Detached Building,Pinock Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42264,Nicely Built 5 Bedroom Detached Duplex,Pinock Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42265,4 Bedroom Semi Detached Duplex + Bq,White Oak Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42266,81 Hectares Of Land,At The Back Of Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42267,5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42268,5bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +42269,Brand New 3 Bedroom Terrace House,Megamound Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +42270,Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42271,Brand New 4 Bedroom Penthouse With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42272,Fully Fenced Land,"Directly Behind Rumen Gardens, Off Elevation Church Drive Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42273,Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42274,4 Bedroom Detached House With A Bq,Lekki County In Mega Mound Estate Lekki . Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42275,5 Bedroom Fully Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42276,Land, Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42277,4 Units Of A 4 Bedroom Duplex,Off Hakeem Dickson Street Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42278,4 Bedroom Semi Detached Duplex With Bq,Chevy View Alternative Route Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42279,5 Bedroom Fully Detached Duplex With Bq,Chevy View Alternative Route Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42280,Brand New 4 Bedroom Semi Detached Duplex With Bq,Osapa Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42281,"A Luxury 5 Bedroom Fitted Kitchen +bq, Gym House,cinema Hall Swimming Pool , Good Parking Space , In Built Central Music System And Cctv Cameras In Acade Estate In Lekki Near Osapa Shoprite",Lekki Acade Estate In Lekki Near Osapa Shoprite Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +42282,Land For Sale,Ologolo Chevron Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42283,Semi Detached Duplex For Sale,"West End Estate, Ikota Villa Esta Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42284,Detached Duplex For Sale,"Nevada Court, Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42285,Detached Duplex For Sale,"Off Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42286,Semi Detached Duplex For Sale,"Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42287,Detached Duplex For Sale,"Oral Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42288,Semi Detached Duplex For Sale,"Behind Mega Chicken, Off Road 23, Ikota Villa Estate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42289,Detached Duplex For Sale,"Behind Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42290,Semi Ddetached Duplex For Sale,"Horizon Court, Off Chevron Drive, Chevy View Estate Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42291,3 Bedroom Terraced Duplex For Sale,"Off Mobil Road, By Emerald Estate Lekki Phase 1 Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +42292,Residential Land For Sale,"Off New Shoprite Road, Jakande Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42293,Luxury 4 Bedroom Terrace Duplex,Kushenla Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42294,4 Bedroom Duplex,Alteernative Route Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42295,Dry And Fenced Land,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42296,A Plot Of Land At Agungi,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42297,A Plot Of Land +2 Rm Bq, Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42298,4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikate +42299,6 Bedroom Mansion,Igboefon Gra Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,7 Toilets,Other Lekki +42300,5 Blocks Of 2 & 3 Bedroom Flat,Kushenla Ikate Lekki Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42301,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42302,3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +42303,Brand New 5 Bedroom Detach With Bq,Megamound Estate Lekki Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42304,3 Units Of Newly Built 5 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42305,4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +42306,4 Bedroom Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,0 Toilets,Lekki Phase 1 +42307,Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42308,5 Bedroom Fully Detached Duplex At Megamount Lekki Country Homes Lekki,Megamount Estate Lekki 2nd Roundabout Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +42309,5 Bedroom Fully Detached Duplex For Sale At Chevy View Alternative Estate Lekki,Chevy View Alternative Route Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +42310,5 Bedroom Detached House + Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42311,4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +42312,4 Bed Room Terraces,Lekki County Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42313,Land,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42314,5 Bedroom Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +42315,Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42316,5 Bedroom Duplex With Two Rooms Bq,Carlton Estate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +42317,5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42318,Brand New 4bedroom Terrace House,Lafiaji Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42319,5 Bedroom Detached House In Megamound,Megamound Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42320,Brand New 4 Bedroom Semi Detached House With Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42321,"Gorgeous 4 Bedroom Duplex In Jakande, Lekki.",Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42322,4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42323,Tastefully Finished 4 Bedroom With Boy's Quarters,Chevyview Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42324,"Hi Tech 4 Bedroom Terrace With Study, 2 Living Rooms And Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42325,2 Plots Of Land + Bq,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42326,4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42327,4 Bedroom Town House With Boys Quater,Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42328,5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +42329,4 Bedroom Fully Detached Duplex,Osapa Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42330,Off Plan For 4 Units Of 4 Bedroom Town House + Boys Quater,Chevron Right Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42331,4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42332,5 Bedroom Fully Detached Comfortable Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42333,5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +42334,10000sqm Facing Lekki Epe Expressway Ikate,Ikate Lekki Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42335,5 Bedroom Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42336,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42337,4000sqm Land Facing Lekki Epe Expressway,Ikota Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +42338,10000sqm Land Facing Lekki Epe Expressway Alasis,Lbs Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42339,A Plot Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42340,Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42341,4 Bedroom Duplex,Eletu Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42342,Newly Built 4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42343,Plot Of Land,Awodele Street Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42344,5 Bedroom Fully Detached Luxury Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42345,700 Square Metres Of Land,5th Round About Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42346,4 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42347,Lovely Finished 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42348,Land,"Elegushi Beach Road, Ikate Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42349,5 Unit Of 2 Bedroom (1unit Available),Ikate Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +42350,Luxury 5 Bedroom Detached Duplex,"Carlton Gate Estate Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42351,3 Bedroom Flats For Sale At Oniru Lekki In A Block Of Flats With Swimming Pool,Bis Lekki Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Lekki +42352,5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42353,Luxury And Stylish 6 Bedroom Mansion,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +42354,4 Bedroom Duplex,"Chevy View Estate Is Located Along Chevron Drive, Of The Lekki – Epe Expressway, And Directly Opposite The Head Office Of Chevron Nigeria Limited. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42355,4 Bedroom Semi Detached House Plus One Room Bq,"Kazim Eletu Street, Osapa , London, Lekki, Lagos Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42356,600sqm Of Land In Various Locations In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42357,3 Bedroom Flat,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +42358,2 Units Of 4 Bedroom Duplex With A Bq,Oyewode Street Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42359,Southern Greens Estate,"Lafiaji Off Orchid Road Behind Coolplag Estate, Chevron Toll Gate Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42360,Exquisite 4 Bedroom Terrace House,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42361,5 Bedroom Fully Detached House With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42362,Luxury 5 Bedroom Fully Detached House,Buene Vista Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42363,Newly Built Well Finished 5 Bedroom Detached Duplex With Bq,Private Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42364,Three Bedroom Flat +bq,Spg Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +42365,5 Bedroom Duplex,Pinnock Osapa London Lekki Lagos,₦,"300,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42366,5 Bedroom Duplex And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42367,Land ( Joint Venture ),"Off World Oil Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42368,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +42369,4 Bedroom Semi Detached Duplex With Bq,Oral Estate By 2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +42370,Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42371,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42372,Lovely 5 Bedroom Fully Detached House With A Room Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42373,Brand New 5 Bedroom Terrace Duplex In Ologolo,Ologolo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42374,Newly Built 4 Bedroom Semi Detached Duplex + Bq In Ikota, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42375,Beautifully Built 4 Bedroom Duplex + Bq,Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42376,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42377,4 Units Of 4 Bedroom Town House With Boys Quaters (off Plan),Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42378,5 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +42379,4 Bedroom Semi Detached Duplex,Ologolo Agungi Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42380,4 Bedroom Fully Detached House With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42381,Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"Ikota Villa, A Min Drive From Chevron Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42382,Well Finished 4 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42383,5 Bedroom Duplex,Demola Eletu Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42384,3 Bedroom House,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +42385,"5 Bedroom Bungalow,on 675sqm Land",Vgc Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +42386,2 Plots Of Land,Behind Oando Filling Station Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42387,Mixed Use Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +42388,Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42389,A 5 Bedrooms Detached Duplex With Two Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42390,Land, Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42391,4 Bedroom Semi Detached Duplex + 1 Room Servant Quarter,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +42392,Fully Detached 4 Bedroom Luxury Duplex With Bq (mortgage Option Available),Westwood Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42393,4 Bedroom Duplex,Idado Idado Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42394,Brand New 5 Bedroom Detached Duplex For Sale At Agungi, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42395,"A Newly Finished Detached Duplex By Chevron Drive,lekki",Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42396,4 Bedroom Semi Detached Duplex For Sale,"Kusenla Road, Lekki Phase 1 Lekki Lagos",₦,"72,500,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42397,4 Bedroom Luxury Townhouses (mortgage Option Available),Gbadamosi Eletu Road Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42398,3 Bedroom Flat,By Nicon Town Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42399,5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42400,5 Bedroom Detached Duplex,Adedeji Dtreet Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42401,Land, Lekki Phase 1 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42402,2 Bedroom Apartments With Bq (mortgage Option Available),Rasaq Eletu Way Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +42403,3 Bedroom Luxury Apartment With Bq (mortgage Option Available),Oniru Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +42404,3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +42405,5 Bedroom Detached Duplex For Sale,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42406,5 Bedroom Duplex (off Plan),By Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42407,Tastefully Finished 4 Bedroom Duplex With 1 Room Bq,Friend's Colony Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42408,Beautifully Finished 5 Bedroom Duplex With 2 Nos 3 Spacious Bedroom Flats,Peter Ochidozie Street Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42409,Brand New 4 Bedroom Terrace For Sale At Lekki Right, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42410,A Tremendously And Fantastically Finished 4 Bedroom Pent House Apartment,Safe Court Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42411,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42412,Land,Royal Garden Estate A Series Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42413,5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42414,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +42415,4 Bedroom Semi Detached Duplex,Olayinka Street Osapa London Lekki Lagos,₦,"72,500,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42416,Tastefully Finished 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42417,10 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +42418,Land,Beside Goshen Estate By Elegunish Roundabout Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42419,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Orchid Road Chevron Lekki Lagos,₦,"43,500,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42420,Property In Royal Garden Estate,Royal Garden Estate. Lekki Phase 2 Lekki Lagos,₦,"249,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +42421,Luxurious 4 Bedroom Terrace Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42422,Fantastically Finished 4 Bedroom Terrace,Lekki Ikate Ikate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42423,Fully Detached 5 Bedroom Duplex,Megamound Estate Lekki Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +42424,Beautiful 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42425,5 Bedroom Semi Detached Duplex And A Bq,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42426,3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42427,"Newly Built 4 Bedroom Semi Detached House For Sale At Chevron Alternative Route, Lekki, Lagos", Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42428,Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42429,4 Bedroom Detached House,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42430,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42431,4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42432,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42433,4 Bedroom Semi Detached Duplex,Orile Ilasan Jakande Lekki Lagos,₦,"62,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42434,4 Bedroom Semi Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42435,One Bedroom Apartment,Alpha Beach Road Chevron Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +42436,Quality 4 Bedroom Semi Detached In Chevron,Chevron Toll Gate Chevron Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42437,5 Bedrood Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42438,Luxury 3 Bedroom Flats With Excellent Fittings,Off Freedom Way Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +42439,4 Bedroom Terrace Duplex,Victory Park Estate Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42440,645sqm Land,Picdally Suite Behind Idado Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42441,2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +42442,Lands In East Amber Estate,Sangotedo Chevron Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42443,5 Bedroom Duplex With Bq,By Orchid Hotel Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42444,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +42445,5 Bedroom Detached Duplex With Bq,"Stillwaters Gardens Estate, Lekki. Ikate Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +42446,Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42447,4 Bedroom Semi Detached Duplex,"Main Road, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +42448,Brand New 5 Bedroom Detached Duplex For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42449,Brand New Luxury 2 Bedroom Flat For Sale At Ikate, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +42450,5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42451,Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42452,4 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42453,4 Bedroom Terraced Duplex,Chuks Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42454,2700sqm Of Land Facing Lekki Epe Expressway,"Oko Ado, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42455,5 Units Of 4 Bedroom Terrace Duplex,Mega Mound Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42456,4 Bedroom Semi Detached Duplex With A Bq,Via Shoprite Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42457,5 Bedroom Detached Duplex With Bq Location Chevron Alternative Road,Chevron Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42458,4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42459,Opportunity To Purchase 4 Bedroom Semi Detachedat Duplex,Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42460,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42461,650sqm Land,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42462,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42463,A Contemporary 4 Units Of 4 Bedroom Terrace Duplex With A Room Bq,Oral Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42464,Luxury Newly Built 4 Bedroom Semi Detached Duplex,Westend Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42465,Well Finished 3 Bedroom Terraced Duplex,"Victoria Crest Estate ,lafiaji Lekki Phase 1 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42466,Serviced Plots,Chevron Alternative Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42467,Brand New 5 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42468,Serviced 4bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42469,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 1 +42470,Tastefully Finished 4 Bedroom Duplex,Ikota Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42471,2bedroom Apartment,"Alpha Beach Road, Chevron Lekki Lagos",₦,"26,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +42472,5 Bedroom Semi Detached Duplex And A Bq,Osapa London Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +42473,Mega Mall Facing Express,Chevron Lekki Chevron Lekki Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +42474,5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42475,4 Bedroom Terrace Duplex + Bq,Off Ihuntayi Off Palace. Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +42476,A Brand New 4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42477,Land, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42478,3 Bedroom Flat,Lekki Lekki Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +42479,5 Bedroom Duplex And A Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42480,Luxury 2 Bedroom Flats With Excellent Fittings,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +42481,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42482,5 Bedroom With A Bq And Swimming Pool,Mega Mound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42483,Land,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42484,Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42485,Land,Lekki Free Trade Zone Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42486,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42487,Land, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42488,Land, Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42489,Land (joint Venture),Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42490,5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42491,6 Bedroom Miami Style Luxurious Open Plan House,Royal Gardens Estate Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +42492,Fantastic 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42493,Lovely Finished 4bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42494,5 Bedroom Detached Duplex With Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42495,4 Bedroom Terrace Apartments With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42496,Brand New 5 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42497,Land, Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42498,4 Bedroom Luxury Semi Detached House (mortgage Option Available),Lafiaji (chevron Alternative Route Axis) Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42499,A Standard Plot Of Land,Femi Okunu Street Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42500,4 Bedroom Fully Detached Luxury Houses,Lekki Epe Expressway Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42501,A Massive And Tastefully Finished 6 Bedroom Fully Detached Duplex With A Fitted Kitchen,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +42502,5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42503,5 Bedroom Detached Duplex,Royal Garden Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,7 baths,7 Toilets,Victoria Garden City +42504,Land, Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42505,5 Bedroom Contemporary Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42506,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42507,5 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +42508,Brand New And Tastefully Finished 5 Bedroom Detached Duplex For Sale In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42509,3 Bedroom Terraced Duplex,Megamound Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +42510,4 Bedroom Duplex,"Primrose Road, Jakande Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42511,4 Bedroom Duplex + Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +42512,Four Bedroom Semi Detached Duplex + Bq ( Rent To Own),Aikoje Osapa London Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42513,Well Finished Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +42514,Newly Built 5 Bedroom,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42515,Newly Built 4 Bedroom Semi Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42516,3 Bedroom Penthouse With Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42517,Lovely 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42518,5 Bedroom Contemporary Detached House With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42519,Brand New 4 Bedroom Terrace House For Sale, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42520,Residential Land,Pinnock Beach Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42521,Five Bedroom Contemporary House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42522,4 Bedroom Detached House,Megamound Estate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42523,5 Bedroom Detached House With Bq,Megamound Estate Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42524,Luxury 5 Bedroom Townhouse In Ocean Bay Estate,"Park Lane, Ocean Bay Estate Chevron Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42525,Land,Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42526,Land,Admiralty Way Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42527,4 Bedroom Duplex With A Bq,Bakare Estate/chevy View Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42528,4 Bedroom Terrace + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42529,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42530,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42531,Land (joint Venture), Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42532,Six Units Of 2 Bedroom Apartment,"Ojo Oyewo Road Off Tunde Adeleye Str, Off Oba Amusa Adebambo Avenue Lekki Phase 2 Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +42533,Stunning 15 Unit Of 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42534,50 Plots Of Land,Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42535,Land,Ikate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42536,5 Bedroom Detached House With 2 Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42537,5 Bedroom Fully Detached Duplex + Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42538,5 Bedroom Detached House + Room Bq,"Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,4 Toilets,Chevron +42539,5 Bedroom House,Megamound Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42540,5 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42541,Tastefully Built 4 Bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42542,Half Plot Of Land,Agungi Lekki Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42543,A Beautiful 5 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42544,A Detached House,"Oluwatosin Olawuyi Street, Oral Estate Ikota Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikota +42545,5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,7 baths,7 Toilets,Ikate +42546,Land, Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42547,3 Bedroom Luxury Terrace Apartments,Orchid Road Chevron Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +42548,4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42549,4 Bedroom Semi Detached Duplex,"Main Road, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +42550,4 Bedroom Luxury Terrace Apartments (mortgage Option Available),Bakare Estate Off Ajiran Road Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42551,3 Bedroom Luxury Flats (mortgage Option Available),Ologolo Agungi Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +42552,4 Bedroom Luxury Semi Detached Duplex,Ademola Eletu Osapa London Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42553,Brand New 3 Bedroom Flat,"In An Estate At Agungi,lekki Close To Domino Pizza Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +42554,3 Bedroom Terrace Houses At Ocean Bay Estate Lekki (mortgage Option Available),Atlantic Boulevard Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +42555,5 Bedroom Detached Duplex,Royal Garden Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +42556,4 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42557,3 Bedroom Luxury Flat,Dele Adeyemi Agungi Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +42558,Northville Estate,Bogije Lekki Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42559,1200sqm Land,Prince Abayomi Close Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42560,Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42561,4 Bedroom Terraces,Off Conoil Filling Station Rd Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42562,Newly Built 5 Bedroom Detached House With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42563,4 Bedroom Terrace Duplex,Around Victory Park Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42564,Land,"Between 2nd And 3rd Round About, Lekki/ Epe Express, Lekki Scheme 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42565,5 Bedroom Terrace Duplex,By Studio 24 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42566,Brand New 5 Bedroom Semi Detached House With A Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42567,Land ( Joint Venture ),"Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42568,Newly Built And Tastefully Finished 5 Bedrooms Detached House In Agungi Lekki,Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42569,Four Bedroom Mansionette At Lekki Phase 1,Heirs Park Residence Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42570,5 Bedroom Duplex,Providence Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42571,5 Bedroom Detached House With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +42572,5 Bedroom Detached House + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42573,60 Units 4 Bedroom Terraces (offplan Payment),Around Elevation Church Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42574,Land At Christal Villa Queen's Court,Shapati Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42575,Brand New 4 Bedroom Terrace Duplex,"Nals Daniel Street By Orchid Hotel, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42576,Newly Refurbished 2bedrooms Flats,Ikota Villa Ikota Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikota +42577,2 Units Of 4 Bedroom Duplex With 2 Bq Each,Bosun Adekoya Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42578,4 Bedroom Detached House With 2 Rooms Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42579,5 Bedroom Semi Detached Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42580,5 Bedroom Fully Detached House,Vgc Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +42581,Land,Elegushi Beach Road. Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42582,5 Bedrooms + Bq,"Hameed Kasimu, Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42583,5 Bedroom Detached Duplex,Rachael Nwangwu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42584,Newly Built 6 Bedroom Duplex,Royal Garden Estate Chevron Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +42585,5 Bedroom Semi Detached Duplex Wiith Swimming Pool,Idado Estate Before Chevron Lekki Idado Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +42586,Luxurious 5 Bedroom Detached House,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +42587,"15,000 Plots Of Land",Free Trade Zone Lekki Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42588,One Plot Of Land,Victory Park Estate Osapa London Lekki Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42589,5 Bedroom Duplex With 2 Rooms B/q,Close 10 Vgc Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +42590,16 Bedroom Duplex,Ibiyinka Salvador St. Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +42591,5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42592,Land,"Orchid Road Behind Coolplag Estate, Lafiaji Lekki Phase 2 Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42593,4 Bedroom Detached Duplex,Southern View Estate Behind Orchid Hotel Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42594,5 Bedroom Semi Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42595,4 Bedroom Semi Detached House,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42596,Partly Furnished 4 Bedroom Fully Detached House With A Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42597,4 Bedroom Semi Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42598,Brand New Executive 4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42599,4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42600,Land,Oceanvale Estate Behind Meadowhall School Ikate Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42601,Newly Built Two Bedroom Flat At Lekki,"24, Cornelius Odigor Street Chevron Lekki Lagos",₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +42602,5 Bedroom Fully Detached House + Bq,"Ikota, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42603,5 Bedroom Duplex + Bq, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +42604,5 Bedroom Detached House And 2 Bedrooms Bq,Lekki Phase One (ikate Elegushi) Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42605,5 Bedroom Duplex,Off Bisola Durosinmi Eti Street Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42606,4 Bedroom Terrace House With Bq,"Chevyview Estate,off Lekki Peninsula Expressway Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42607,Luxury 5bedroom Detached House In Megamound Estate,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42608,4bedroom Terrace + Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42609,4 Bedroom Semi Detached House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42610,4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42611,4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42612,14 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,5 beds,3 baths,4 Toilets,Lekki Phase 1 +42613,Brand New 3 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +42614,Residential Land In Megamound Estate,Megamound Estate Ikate Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42615,Newly Built 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42616,5 Bedrooms Semi Detached Duplex + Bq,Oba Amusa Adebambor Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42617,Brand New Tastefully Finished 5 Bedroom Fully Detached House With A Room Bq,By Meadow Hall Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42618,Newly Built 5 Bedrooms With 2bq Fully Detached Duplex,Professor Kunmi Street Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42619,4 Bedrooms Semi Detached + Bq,Idado Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42620,2 Units Of 650 Square Metres Of Land With 2 Rooms Bq,Olatunji Moore Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +42621,4 Bedroom Duplex At Genese Court,Atlantic View Estate Alao Etti Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42622,2 Bedroom Flats At Alexander Apartments (off Plan),Legacy Boulevard Vgc Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Garden City +42623,40plots Of Land,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,10 Toilets,Chevron +42624,2 Bedroom Flat,Osapa Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +42625,5 Bedroom Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42626,5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42627,5 Bedroom Fully Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42628,6 Bedroom Duplex And 2 Rooms Bq,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +42629,5 Bedroom Detached House With A Room Bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42630,Well Finished 2 Bedroom Flat,Ikate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +42631,Residential Land In Pearl Nuga Garden,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42632,Prime Land,Ologolog Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42633,4 Bedroom Semi Detached Duplex With Bq, Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42634,5 Bedroom Detached Duplex,"Kazeem Eletu, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42635,4 Bedroom Semi Detached House With 2rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +42636,4 Units Of Newly Built 4 Bedroom Terrace Duplex At Lekki,Chevron Alterntive Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42637,6 Bedroom Fully Detached House + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,0 Toilets,Ologolo +42638,Five Bedroom Detached Duplex Sitting On A 1000 Square Meter Landspace At Lekki,Mobil Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42639,5 Bedroom Duplex,Chevron Toll Area Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42640,New Four Bedroom Terrace Duplex At Lekki,Gbangala Street Off Oba Yekini Elegushi Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +42641,5 Bedroom Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42642,5 Bedroom Detached House,Friends Colony Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42643,5 Bedroom Semi Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42644,4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42645,4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42646,5 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42647,Lovely 5 Edroom Fully Deatached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42648,4 Bedroom Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42649,Brand New 5 Bedroom Fully Detached House With A Room Bq,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42650,Brand New 5 Bedroom Detached House For Sale,Megamound Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42651,Brand New 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42652,Lovely 5 Bedroom Fully Detached House With A Room Bq,Megamound Estate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42653,Lovely 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42654,Brand New 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42655,Lovely 5 Bedroom Fully Detached House With A Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42656,Landed Property For Sale,Abijo Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42657,Newly Built 4 Bedroom Semi Detached House With A Room Bq,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42658,Newly Built Serviced 4 Bedroom Semi Detached House With Bq,Alpherton Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,4 baths,5 Toilets,Osapa London +42659,Lovely 4 Bedroom Fully Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42660,Lovely New 4 Bedroom House With A Room Bq,Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42661,Brand New 5 Bedroom Contemporary House With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42662,Newly Built 5 Bedroom Fully Detached House + Bq,"Ikota, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42663,Land, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42664,Land, Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42665,4 Bedroom Detached House,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +42666,5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42667,Exquisitely Finished Fully Detached 5 Bedroom House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42668,2 Plots Of Land,Alpha Beach Road Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42669,2 Units Of Newly Built 4 Bedroom Duplex + Bq In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42670,4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +42671,4 Bedroom Detached Duplex, Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +42672,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42673,5 Bedroom Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42674,5 Bedroom Detached House,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +42675,Land,Lafiaji Chevron Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42676,4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42677,Four Bedroom Semi Detached Duplex With One Room Bq,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42678,3 And 4 Bedroom Terrace,Orchid Road Lekki Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42679,Land,Amiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42680,Plots Of Land,Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42681,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42682,Newly Built 5 Bedroom Fully Detached Duplex For Sale In Osapa London,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42683,Plot Of Land,Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"864,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42684,Residential And Commercial Plots,Eleko Lekki Phase 2 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42685,4 Bedroom Detached House + Bq, Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42686,5 Bedroom House, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42687,"An Exquisite 6 Bedroom Detached Duplex At Pinnock Beach Estate, Osapa",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +42688,Tastefully Finished 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42689,Tastefully Finished 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42690,4 Bedroom Semi Detached Duplex With A Bq,Via Shoprite Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42691,4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42692,4 Bedroom Semi Detached House, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42693,"5,072 Sqm (8 Plots) Of Land",Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42694,3 Bedroom Flat With B/q,Lekki Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +42695,Serviced Brand New 4 Bedroom Terrace House With Ample Parking Space,Orchid Hotel Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42696,7 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +42697,3 Bedroom Terrace Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +42698,"2,700sqm Land",Marwa Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42699,Land,Marnor Gardens Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42700,4 Bedroom Detached House,Behind Shoprite Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42701,Luxury 4 Bedroom Duplex,Hakeem Dickson Lekki Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42702,3 Bedroom Luxury Flat With A Room Bq,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42703,5 Bedroom Detached Duplex,Behind Shopright Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42704,5 Bedroom Fully Detached Duplex With 2 Rooms Boy's Quarter, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42705,4 Bedroom Semi Detached House + Bq,"Ologolo, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ologolo +42706,5 Bedroom Duplex| Off Plan, Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +42707,Luxury And Furnished 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42708,Brand New 4 Bedroom Semidetached Duplex For Sale At Agungi, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42709,Exquisitely Built Four Bedroom Terrace Duplex At Lekki,Alhaji Galadima Street Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +42710,4 Bedroom Terrace Duplex,"Oribanwa, Lekki Peninsula Lekki Lekki Lagos",₦,"18,975,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42711,4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42712,5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42713,4 Bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42714,5 Bedroom Detached House With Bq,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42715,Brand New 4bedroom Semi Detached House With Bq For Sale At Chevy View Estate Lekki,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42716,4 Bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42717,5 Bedroom Semi Detached House With Bq,Atlantic View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42718,5 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42719,4 Bedroom Semi Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42720,4 Bedroom Semi Detached House With Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42721,Plot Of Land,Sangotedo Osapa London Lekki Lagos,₦,"12,800,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42722,Land,Ajifuluke Jakande Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42723,4 Bedroom Semi Detached House, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42724,Land,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42725,6 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +42726,3 Bedroom Terrace House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42727,4 Bedroom Detached House With A Bq,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42728,4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42729,5 Bedroom Fully Detached House With A Room Bq, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42730,5 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +42731,5 Bedroom Duplex + Bq,"White Sand Road, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42732,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42733,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42734,4 Bedroom Terraced Duplex For Sale,Spa Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42735,5 Bedroom Detached Duplex,Elegushi Beach Side Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +42736,4 Bedroom Detached Duplex,"Jamiu Eletu, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42737,4 Bedroom 1 Bq House,Westend Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42738,5 Bedroom Detached Duplex,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42739,"1,275 Square Metres Of Land",Inside Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42740,5 Bedroom Fully Detached House With A Bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42741,4 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42742,2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +42743,5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42744,950sqm Land,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42745,4 Bedroom Semi Detached House With A Room Bq,0sapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42746,Lovely 5 Bedroom Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42747,Tastefully Finished 4 Bedroom Semi Detached With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42748,Plots Of Land At Ibeju Lekki,Ibeju Road Lekki Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42749,Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42750,Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42751,Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42752,Land At Comfort Zone Gardens,Vgc/ajah Bus Stop. Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +42753,4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42754,4 Bedroom Semi Detached House With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +42755,Land,Oceanvale Estate Behind Meadowhall School Ikate Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42756,Land For Sale,"Ikate, Elegushi, Off Kushenla Road, Lekki 1, Lagos. Ikate Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42757,Exquisite 5 Bedroom Detached House,Oral Estate By Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42758,4 Bedroom Terraced Apartment + Bq,"Seagate Estate, Off Spar Rd, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +42759,5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42760,"A Brand New And Tastefully Finished 5 Bedroom Detached Duplex At Pinnock Beach Estate, Osapa",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42761,4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +42762,Four Bedroom Terrace Duplex At Lekki,House On The Rock Way Salem Bus Stop Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +42763,Land,Off Lekki/ Epe Expressway Agungi Lekki Lagos,₦,"355,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42764,Land At Southern Greens Estate, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42765,Lands At Southern Green Estate,Lafiaji Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42766,Land At Africa Lane Lekki,Africa Lane Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42767,Land,Lekki Epe Express Way Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42768,4 Bedroom Apartment,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +42769,4 Bedroom Detached Duplex,Behind Jakande Shoprite By Aa Rescue Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42770,4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +42771,Bungalow On Full Plot,"Vgc, Vgc Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets,Victoria Garden City +42772,Luxury 5 Bedroom Duplex,Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42773,3 Bedroom Terrace Bungalow,"Southpointe Estate, Lafiaji Chevron Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +42774,Land,Lekki Epe Express Way Lekki Lagos,₦,"13,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42775,4 Bedroom Mid Terrace Duplex + Bq, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42776,5 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42777,Land,Ologolo Agungi Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42778,6 Bedroom Apartment, Agungi Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets,Agungi +42779,5 Bedroom Detached Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42780,5 Bedroom Fully Detached Duplex,Ikota Westend Estate Lekki Lagos Ikota Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42781,Land,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42782,290 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +42783,Land,Monastary Road Lekki Phase 2 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42784,4 Bedroom Room + Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42785,4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42786,4 Bedrooms + A Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42787,4 Bedroom Terrace Duplex For Sales,Lekki Lekki Lagos,₦,"24,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +42788,Modern 5 Bedrooms Semi Detached With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +42789,5 Bedroom Duplex At Lekki County Ikota,Lekki County Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42790,A Deluxe 6 Bedroom Detached House With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Osapa London +42791,14 Units Of 3 Bedroom Luxury Flat,Serene Area Of Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +42792,Land,"Lafiaji, Lekki Lagos Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42793,4 Bedroom Duplex,By Chevron Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42794,Brand New 5 Bedroom Duplex On 3 Floors.,"Iweanya Manduike Avenue Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +42795,Newly Built 5 Bedroom Detached House With Bq,Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42796,Land,Express By Chevron Before Gtb Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42797,Brand New 5 Bedroom Semi Detached House With A Room Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42798,Fully Detached Five Bedroom Duplex At Lekki Phase 2,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +42799,Newly Built 3 Bedroom Flat At Agungi,"21, Dele Adeyemi Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +42800,2 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +42801,Massive And Well Built 4 Bedroom Detached House,Off Admiralty Lekkki Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42802,3 Bedroom Terrace House, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +42803,4 Bedroom Terraced Duplex,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +42804,Massive And Well Built 4 Bedroom Detached House,"Admiralty Way, Lekki Scheme 1 Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42805,Luxury Newly Built 4bedroom Detached House In Osapa London Lekki Lagos,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42806,A Plot Of Land Measuring 800sqm,Epe Expressway Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42807,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42808,5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42809,5 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +42810,5 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +42811,Tastefully Finished 14 Units Of 3 Bedroom Luxury Flats On 6 Stories In Lekki Phase 1,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42812,Brand New And Tastefully Furnished 5 Bedroom Fully Detached House,Richard Street Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42813,4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42814,4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42815,5 Bedroomdetached House, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42816,Newly Completed And Exquisitely Finished 5 Bedroom Fully Detached Mansion,Vgc Lekki Lagos State Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,0 Toilets,Victoria Garden City +42817,5 Bedroom Duplex,"Chevy View Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +42818,4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,0 Toilets,Osapa London +42819,A Newly Built And Tastefully Finished 5bedroom Duplex With 2 Rooms Bq,By Jakande Bus Stop Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42820,5 Bedroom Detached Duplex + 1 Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42821,5 Bedroom Detached Duplex,"Prince Ibrahim Letu Street, Osapa Estate, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +42822,Luxury 5 Bedroom Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42823,Tastefully Finished 5 Bedroom Fully Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42824,4 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42825,10 Units Of Charming 4 Bedroom Duplex At Lekki,Crest Villa Court 2 Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42826,Block Of Flats At Lekki,19b Kenneth Agbakuru Street Off Rashidat Williams Street Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +42827,4 Bedroom Seni Detached House,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42828,4 Bedroom Terrace,By Orchid Hotel Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42829,Tastefully Furnished Semi Detached 4 Bedroom Duolex,Atlantic View Estate By Alphabetical Road Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42830,Tastefully Furnished Fully Detached 4 Bedroom Duplex,Atlantic View Estate By Alphabetical Road Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42831,14units Of 3 Bedroom (9 Available),Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets,Ikate +42832,Fully Detached 5 Bedroom Duplex At Lekki,Hakeem Kasunmu Street Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42833,4 Bedroom Duplex With Bq,Oladimeji Alao Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42834,Hotel With 204 Rooms,Chevy View Estate Chevron Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +42835,Executive 4 Bedroom Fully Detached Duplex With Bq,Oba Amusa Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42836,30 Units Of Elegantly Designed 3 Bedrooms Apartments With A Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42837,Luxuriously Furnished 4 Bedroom Duplex With Excellent Interior & Exterior,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42838,Newly Built 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikate +42839,4 Bedroom Semi Detached Duplex,"Vgc, Vgc Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +42840,Modern 4 Bedrooms Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42841,4 Bedrooms Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42842,4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42843,900sqm Land In Lekki Scheme,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42844,A Newly Constructed House, Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42845,4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42846,Luxury 4 Bedroom Duplex+ Bq,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42847,Beautiful 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42848,4 Bedroom Terraced Duplex,Vgc Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +42849,Luxury 2 Bedroom With Excellent Facilities In Idado,Idado Idado Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +42850,4 Bedroom Semi Detached Luxury Duplex With Bq (mortgage Option Available),Westwood Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +42851,A Serviced Lovely And Perfectly Finished 3 Bedroom Terrace Duplex With A Room Self Contain Bq,Cooplag Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +42852,Modern 4 Bedroom Terrace With A Bq,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42853,7 Bedroom Detached Duplex For Sale,Audu Epeka Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,7 beds,9 baths,9 Toilets,Lekki Phase 1 +42854,3 Bedroom Duplex,Lekki Grdens Vgc Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +42855,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42856,4 Bedroom Terrace Duplex,Whitesands Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42857,Lovely 4 Bedroom Aparnmemt At Lekki By Ebon Efon,Igbon Efon Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42858,Newly Built 5 Bedroom Duplex,Oba Amusa Adebambor Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +42859,Land,"Lafiaji, Off Orchid Hotel Ikota Lekki Lagos",₦,"45,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42860,4 Bedroom Semi Detached Duplex,"Westend Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42861,4 Bedrooms Detached Duplex + Bq, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42862,Excellent 4 Bedrooms Semi Detached Duplex With A Bq,Lekki Epe Express Way Ikota Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42863,5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42864,Modern 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42865,600sqm Land In Northern Foreshore Estate Lekki,"Pinnock Beach Estate, Ikate Elegushi Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42866,Newly Built 4 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42867,5 Bedroom Duplex And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42868,Brand New 3 Bedroom Flats For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42869,Three Bedroom Apartment At Lekki,Aboro Street Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +42870,Newly Built Three Bedroom Apartment At Lekki,Abiola Court Estate Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +42871,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42872,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +42873,3 Bedroom Flat,Behind Jakande Shoprite Jakande Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +42874,4 Bedroom Terrace Duplex And Bq,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +42875,798sqm Land In Ocean Bay Estate Off Chevron Toll Gate,"Ocean Bay Estate, Off Chevron Toll Gate Chevron Lekki Lagos",₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42876,4 Bedroom Terrace,Whitesands Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42877,Land, Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42878,Epe Farm Lands,"5a Dozek Close, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42879,Luxury Brand New 3 Bedroom Penthouse Flat, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42880,Luxury 5 Bedroom Duplex,Hebert Orji's Avenue Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +42881,Office Space And Shop,Road 5 Ikota Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +42882,5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42883,4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42884,Brand New 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +42885,4 Bedroom Semi Deatched House With A Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42886,4 Bedroom Semidetached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42887,2 Units Of 4 Bedroom Terrace Duplex At Lekki,Victoria Adode Kobiti Street Orchid Hotel Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42888,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42889,4 Hectares Of Land,Along Jakande Beach Road Jakande Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42890,2 Bedroom Flat, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +42891,Beautiful Two Bedroom Apartment At Lekki,Aboro Street Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +42892,5 Bedrooms Fully Detached Luxury Duplex With A Room Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +42893,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42894,4 Bedroom Semi Detached House,Maple Estate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42895,Land,"Lekki Scheme Ii, Okun Ajah, Off Ogombo Road By Abraham Adesanya Roundabout. Eti Osa Lga, Lagos. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42896,Fully Detached 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets,Victoria Garden City +42897,Elegantly Built Fully Detached 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets,Victoria Garden City +42898,Fully Detached 2 Units Of 5 Bedroom Duplex + Bq,Ikota Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets,Victoria Garden City +42899,Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets,Victoria Garden City +42900,Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets,Victoria Garden City +42901,5 Bedroom Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +42902,3 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +42903,5 Bedroom Detached Duplex,Lekki County In Mega Mound Estate Lekki . Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +42904,4 Bedroom Terrace Apartment + Bq At Lekki,"Maduka Close Off Agiran Street/ Domino Plaza/stanbic Bank, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +42905,Land,"Chevron Drive,opposite Carlton Gate Estate Lekki Lagos",₦,"75,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42906,Land,"Manor Gardens Estate, Direct Drive In From Lekki Expressway Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42907,4 Bedroom Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +42908,5 Bedroom Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42909,5 Bedroom Semi Detached Duplex With A 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +42910,A Stylishly Built 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +42911,3 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +42912,4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42913,5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42914,Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets,Victoria Garden City +42915,6 Bedroom Duplex With 2 Bq For Sale,Ikota Vgc Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Garden City +42916,A Phenomenal 2 Units Of Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets,Victoria Garden City +42917,Epe Farm Lands,"5a Dozek Close, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42918,World Oil Filling Station Lekki,Lekki Epe Express Way Ilasan Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42919,4 Bedrooms Duplex,Royal Paradigm Estate Mobile Road. Ajah Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +42920,Lovely 5 Bedroom Terrace Duplex In Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +42921,5 Bedroom Terrace Duplex,"Oral Estate By 2nd Tollgate,ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +42922,A Newly Built Two Bedroom Flat In Ikate, Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +42923,An Exquisite 5 Bedroom Fully Detached Duplex With Bq In Agungi,"Agungi, With Access To Chevy View Estate. Agungi Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +42924,An Exquisite 4 Bedroom Fully Detached Duplex With Bq,Southern View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +42925,Newly Built Lovely 4 Bedroom Terrace Duplex,Ilasan Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42926,A Brand 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42927,Land,"Admiralty Way, Around Stanbic Ibtc & Fidelity Bank Lekki Phase 1 Lekki Lagos",₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42928,Land,"Perez Drive, Cbd Lekki Phase 1 Lekki Lagos",₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42929,Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42930,Brand New Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound Estate) Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +42931,Luxury 4 Bedroom Terrace Duplex,"Beside House On The Rock, Ikate Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42932,"4 Bedroom Fully Detached Duplex, At Ikota Villa",Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42933,4 Bedroom Fully Detached Ikota Villa Estate,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42934,4 Bedroom Terrace Duplex,Abiola Court 2 Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +42935,Luxury Fully Furnished Detached Duplex With 2 Rooms Bq,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,6 baths,4 Toilets,Victoria Garden City +42936,20 Plots Of Land,Off Lekki Epe Express Road Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42937,2 Wings Of Duplex Of 4 Bedroom Duplex,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42938,5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42939,Luxury 3 Bedroom Flat Plus Bq,Proff Dublin Green Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +42940,4 Bedroom Terrace Duplex,Off Shoprite Road Jakande Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +42941,Luxury 2 Bedroom Flat Plus Bq,Proff Dublin Green Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +42942,5 Bedroom Detached House,Richmond Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +42943,Land,Opposite Carlton Gate Estate Chevron Lekki Lagos,₦,"70,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42944,Land, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42945,5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +42946,5bedroom Duplex +bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42947,Land,Lekki Beach Road Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +42948,Land,About 5mins Drive From Chevron Via Orchid Hotel Road And Is Opposite Shell Estate(coplag Garden). Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +42949,4 Bedroom Semi Detached House,Chevy View Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42950,5 Bedroom Town House With A Room Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42951,5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +42952,5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +42953,Land,Lekki/ Epe Express Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +42954,4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42955,Land,"Seagate Estate, Ikate Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +42956,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42957,Great Duplex With Pent House,Carlton Estate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +42958,3 Bedroom Flat At Ikota Resettlement, Ikota Lekki Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +42959,Brand New 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42960,Brand New 4 Bedroom Semi Detached Duplex,West End Estate Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +42961,4 Bedroom Terrace House With A Bq ( Off Plan),Church Street Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +42962,2 Wings Of 4 Bedroom Duplex,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +42963,4 Bedroom Terrace Duplex,Spar Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikate +42964,Brand New Luxury 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42965,Brand New Tastefully Finished 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42966,A Brand New 3 Bedroom In Ikate., Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42967,2 Units Of 3 Bedroom Terrace House,Baale Street New Road (alpha Beach) Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +42968,Luxurious House & Apartments, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,2 baths,2 Toilets,Agungi +42969,Service 3 Bedroom Flat Plus A Bq,Oba Amusa Agungi Lekki Lagos,₦,"48,999,999",0,0,0,3 beds,3 baths,4 Toilets,Agungi +42970,4 Bedroom Duplex, Ikate Lekki Lagos,₦,"41,800,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42971,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"52,800,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42972,4 Bedroom Terraced Duplex For Sale, Agungi Lekki Lagos,₦,"34,100,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +42973,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"39,600,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +42974,Brand New 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +42975,Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42976,4 Bedroom Detached Duplex,"Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42977,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"71,500,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +42978,5 Bedroom Detached Duplex,"Nicon Town, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"88,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42979,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +42980,5 Bedroom Duplex @ Carlton Gate Estate,B5 Road Carlton Gate Estate Lekki Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +42981,4 Bedroom Terrace Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42982,Newly Built 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +42983,4 Bedroom Semi Detached Duplex,"Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"46,200,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +42984,4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"60,500,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42985,4 Bedroom Semi Detached Duplex For Sale,Ikate Elegushi Lekki Lagos Nigeria Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +42986,4 Bedroom Semi Detached Duplex,Banana Island Estate Lekki Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"41,800,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42987,Exquisitely Built 2 Bedroom Flat At Lekki,Lekki Gardens 4 Estate Road Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +42988,4 Bedroom Detached Duplex,"Ninalowo Street, Off Fola Osibo Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +42989,An Exquisite Newly Built Four Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42990,Brand New Luxury 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42991,Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42992,A Brand New Lovely 3 Bedroom In Ikate.,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +42993,Beautiful 2 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +42994,Massive 4 Bedroom Semi Detached Duplex In Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +42995,Newly Built 2 Bedroom Flat,"8 ,oye Balogun Street, Lekki Phase 1 Lekki Lagos",₦,"10,950,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +42996,Land,Freedom Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +42997,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"99,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +42998,4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"60,500,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +42999,4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43000,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43001,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +43002,A Lovely 5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +43003,5 Bedroom Fully Detached + Bq,Acadia Gardens Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43004,4 Bedroom Detached Duplex,Idado Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +43005,Newly Constructed 3 Bedroom Flat, Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +43006,Newly Constructed 2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +43007,5 Bedroom Fully Detached House With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43008,1 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Ikate +43009,5 Bedroom Detached House With A Room Bq,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +43010,4 Bedroom Semi Detached House With A Room Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43011,4 Bedroom Fully Detached House + Bq,Osapa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43012,Newly Built Fully Detached 5 Bedroom Duplex, Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43013,Fully Detached 4 Bedroom Duplex,Chevron Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43014,Plots Of Land For Sale In Grandville Park Lekki Ajah,"Near By New Shoprite, Lagos Business School, Crown Estate Ikota Lekki Lagos",₦,"6,300,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43015,Massive 6 Bedroom Detached House In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43016,5 Bedroom Dulpex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,6 Toilets,Ikota +43017,One Bedroom ( Off Plan),Lekky Home Ikota Lekki Lagos,₦,"11,100,000",0,0,0,1 beds,2 baths,3 Toilets,Ikota +43018,4 Bedroom Duplex,Lekki Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43019,Land,University View Estate Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43020,Luxury Brand New 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43021,Brand New 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43022,Brand New 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43023,Land, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43024,5 Bedroom Luxury Detached At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +43025,Land At Chevy View Estate,Chevy View Estate. Chevron Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43026,Luxury 5 Bedroom Detached Duplex,Off Conoil Street Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43027,Plots Of Lands,Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43028,Newly Built And Well Finished 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +43029,3 Bedrooms Apartments,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,4 Toilets,Agungi +43030,2 Nos Of 5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +43031,12 Units Of 4 Bedroom Terrace On 2 Floors,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43032,4 Bedroom Fully Detached House,Victory Park Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43033,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43034,Newly Built 28units Of 4 Bedroom Luxury Terrace Duplex, Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43035,6units Of 4bedroom Luxury Semi Detached Duplex (off Plan),Benue Vista Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43036,5 Bedroom Detached House + 2 Rooms Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43037,5 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43038,2 Bedroom Flat, Ikate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +43039,4 Bedroom Terrace Duplex,Chief Raphf Okon Cresent Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +43040,Land, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43041,Land,Stewart Court Lakowe Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43042,5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43043,3 Bedroom Flat,Thomas Estate Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Garden City +43044,5 Bedroom Duplex,Nicon Estate Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43045,3 Bedroom Flat In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43046,2 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 2 +43047,Brand New 5 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43048,Land (joint Venture),Behind Pinnacle Filling Station Plot 2&3 Lekki Peninsula Scheme 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43049,4 Bedroom Terrace Duplex At Agungi Lagos,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,4 Toilets,Agungi +43050,Luxury 5 Bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43051,This Lovely Rare 5 Bedroom Duplex With Excellent Facilities In Osapa London,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43052,4 Bedrooms Semi Detatched Duplex With 2 Bqs,Oniru Alternative Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43053,Luxury 5 Bedrooms Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43054,4 Bedrooms Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43055,A Newly Built 5 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43056,Bare Land,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +43057,Brand New 5bedroom Duplex,Victory Park Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43058,4 Bedroom And A Bq Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +43059,4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43060,4 Bedroom Duplex With Driveway,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43061,4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43062,Semi Detached 4 Bedroom Duplex Plus Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43063,5 Bedroom Detached House,Road 12 Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43064,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Ikota +43065,Luxury Finished Fully Detached 2 Storey Duplex( Off Plan), Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43066,Luxury 5 Bedroom Detached Duplex,Igboefon Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43067,2 Bedroom Flat,Lekki Gardens Phase 4 Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +43068,4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43069,4 Bedroom Semi Detached Duplex,"Millennium Estate, Close To Fatai Arobieke Street Lekki Phase 1 Lekki Lagos",₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43070,"4 Bedroom Block Of Flats At Oral Estate, Lekki Lagos.","Lekki, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43071,Luxury Detached Building,Off Alpha Beach Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,7 baths,7 Toilets,Chevron +43072,Tower With 14 Flats,Off Admirallty Road Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +43073,5 Bedrooms Detached House At Oral Estate Lekki,Oral Estate Lekki By Second Toll Gate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +43074,5 Bedroom Detached House At Oral Estate Lekki,Oral Estate Lekki By Second Toll Gate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +43075,5 Bedroom Detached Duplex With Bq,"Chief Gbolahan Street, Off Jeremiah Ugwu Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43076,Five Bedroom Fully Detached Duplex With One Room Bq,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43077,"5 Bedroom Detached House+bq At Osapa London, Lekki",Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +43078,"5 Bedroom Fully Detached House + Bq At Chevyview Estate, Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43079,5 Bedroom House In Lekki,Megamound Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43080,5 Bedroom House In Lekki,"Chevy View Estate,chevron, Lekki Chevron Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43081,5 Bedroom Duplex,Saki Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43082,"Luxury 4 Bedroom Duplex At Chevron, Lekki, Lagos","Chevron, By Orchid Hotel Lekki Lagos",₦,"47,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43083,5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43084,4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43085,A Plot Of Land At Lekki County Homes,Lekki County Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43086,Newly Built 3 Bedroom Flat With Luxurious Finishing,Alpha Beach Road Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43087,Finely Finished 3 Bedroom Terraced Duplex With A Bq.,Orchid Hotel Road Jakande Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43088,"20,180sqm Of Land Is Available For Joint Venture Between Vgc Entrance And Ikota Shopping Entrance",Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43089,Newly Built 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43090,Luxury 5 Bedroom Duplex,Rasaq Eletu Street Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +43091,Newly Built 4 Bedroom Terrace Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43092,Land At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43093,3 Bedroom Flat,"Oribanwa Lekki Peninsula, Lagos Lekki Lagos",₦,"10,950,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +43094,Land,Bogije Lekki Lagos Lekki Lagos,₦,"7,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43095,4 Bedroom Duplex,Lekki Peninsula Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43096,5 Bedroom Detached House With Bq, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +43097,4 Broom Duplex And Bq Partly Furnished,Lakeview Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +43098,4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43099,"20,180sqmis Available For Joint Venture Between Vgc Entrance And Ikota Shopping Entrance",Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43100,4 Bedroom Semi Detached Duplex At Ikota Lekki,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43101,Land At Urban Base Estate Bogije Lekki,Nil Lekki Lekki Lagos,₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43102,5 Bedroom House,Lekki Ikate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,7 baths,7 Toilets,Ikate +43103,4 Bedroom Terrace Duplex,Agungi Street Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,6 baths,6 Toilets,Agungi +43104,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +43105,Filling Station At Lekki Phase 1,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43106,Half Plot Land,Igbokusu Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43107,4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43108,Land,Orchid Hotel Road Lafiaji Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43109,4 Bedroom Detached Duplex With A Room Bq,"No 20 Abioro Street, Off Elegushi Road, Ikate, Lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43110,Blocks Of 4 Bedroom Flats,No 17 Abioro Street Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43111,3 Bedroom Duplex, Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +43112,5 Bedroom Duplex At Queens Villie Estate,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,3 Toilets,Chevron +43113,3 Bedroom Duplex At Wealth Land Green Estate,"Oribanwa, Lekki Penisula Lekki Phase 2 Lekki Lagos",₦,"1,095,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +43114,5 Bedroom Fully Detached House,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +43115,4 Bedroom Duplex,Ademola Adeshina Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43116,A Newly Renovated 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43117,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +43118,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43119,Tastefully Built 6 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +43120,Luxury 9 Units Of 3 Bedrooms Apartments,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +43121,2 Wings Of 4 Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43122,5 Bedroom Semi Detached Duplex + Bq,"3rd Roundabout, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"99,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43123,5 Bedroom Fully Detached Duplex,Oral Estate Just Facing Lekki Epe Expressway By Chevron Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43124,4 Bedroom Terrace Duplex,"Chevron Alternative, Chevy View Estate Lekki Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43125,4 Bedroom Terrace Duplex With Bq,By Lekky County Homes Estate Lekki Before Megachicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43126,5 Bedroom Duplex With A Bq,By Chevy View Estate Idado Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43127,3 Bedroom Flat In Ologolo,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ologolo +43128,Semi Detached 4 Bedroom Duplex With Bq,Westend Estate Inside Lekki County Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43129,Nice House At Abogije Lekki,Abijor Vgc Lekki Lagos,₦,"203,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Garden City +43130,5 Bedroom Detached Duplex,Otunba Odunsina Street. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43131,4 Bedroom Terrace House,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,3 baths,1 Toilets,Other Lekki +43132,Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq In Elegushi,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43133,New Luxury 5 Bedroom Duplex At Lekki,Off Chevron Rd Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43134,5 Bedroom Luxury Duplex With Bq,"Block 27, Owobode Abiodun Street, Mega Mound Estate, Lekki County. Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,7 baths,6 Toilets,Ikota +43135,Newly Built 5 Bedroom Fully Detached Duplex In Ologolo,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ologolo +43136,The Exclusive Mini Estate,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +43137,6 Bedroom House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"145,000,000",0,0,0,6 beds,7 baths,6 Toilets,Other Lekki +43138,Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +43139,5 Bedrooms House,Pinnock Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +43140,5 Bedrooms Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +43141,5 Bedrooms Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +43142,Semi Detached Duplex, Jakande Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +43143,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +43144,Detached 5 Bedroom House,"Lekki , Lagos Lekki Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43145,5 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43146,Well Built 5 Bedrooms Fully Detached Duplex,Ikota Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +43147,Beautiful 3 Bedroom Terrace Duplex,Oribanwa Lekki Lagos,₦,"16,675,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43148,5 Bedroom Duplex,Ugochukwu Street Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43149,5 Bedroom Fully Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43150,A Luxurious 3 Bedroom Flat In Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +43151,"Beautifully Designed 5 Bedroom Duplex,","Lekki, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43152,4 Bedroom Terrace Apartment,"Renaissance Mews Estate, Behind Roamy Gardens, Opposite Nicon Town, Lekki Lagos Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +43153,4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43154,4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43155,5 Bedroom Semi Detached House,"Chief Collins Street, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43156,5 Bedroom Detached Duplex With Bq,"Megamound Estate, Ikota Lekki Lagos",₦,"114,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +43157,3 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,3 Toilets,Ikate +43158,5 Bedroom Detached Duplex With Bq,"Chevron Drive, Lekki, Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,6 Toilets,Other Lekki +43159,"Newly Built 4 Bedroom Duplex With 1 Room Bq In Osapa, London",Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43160,4 Bedroom Terrace Town House,"Lekki Phase1 ,lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43161,4 Bedroom Terrace Duplex With A Room Bq, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43162,Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43163,"Plots Of Land At Arium Estate, Abijo G.r.a.",Abijo G.r.a Lagos. Lekki Lagos,₦,"10,000,000",0,0,0,10 beds,0 baths,10 Toilets,Other Lekki +43164,5bedroom Semi Detached Duplex,Toyosi Ayetoro Street Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43165,4 Bedroom Duplex With 1bq,Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets,Other Lekki +43166,Tastefully Furnished 5 Bedroom Duplex For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +43167,"3,750 Sqm Land In Lekki Phase 1 For Sale","Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43168,"Amen Estate Is Here Again, 10m Per 600sqm Get Your Own Land Now","Lekki, Lagos, Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43169,4 Bedroom House,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,5 Toilets,Ikate +43170,"4 Bedroom Terrace Duplex In Bakare Estate,agungi.",Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43171,Newly Built 3 Bedroom Terrace House With A Room Bq,Osapa Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +43172,Exquisite 4 Bedroom Detached Duplex At Lekki,Chevy View Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43173,4 Bedroom Detached Duplex With Bq,Orchid Estate By Chevron Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43174,5 Bedroom Detached Duplex With Bq,Osapa London By New Shoprite Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43175,4 Bedroom Duplex,Spar Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +43176,4 Bedroom Terrace Apartment,"Off Spar Road, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +43177,Well Finished 4 Bedroom Semi Detached Duplex Wit Bq,Road 16 Ikota Villa Esatate Ikota Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43178,4 Bedroom Flat,Ikate Lekki Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Lekki +43179,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"Road 16 Ikota Villa Estate, Lekki Lagosm Ikota Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43180,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43181,6 Bedroom Detached Duplex,Alcaldia Estate Lekki Lagos,₦,"260,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +43182,5 Bedroom Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +43183,4 Bedroom Terrace Apartment,Off Spar Road. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43184,4 Units Of 5 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +43185,5 Bedroom House,Pinnock Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43186,4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43187,5 Bedroom Fully Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43188,5 Bedroom Duplex With A Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43189,3 Bedroom Terrace Duplex + Bq,Orchid Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43190,Luxury 5 Bedroom Detached House At Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43191,3 Bedroom Flat Forsale At Lekki Phase 1,Abimbola Street Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,3 Toilets,Lekki Phase 1 +43192,Lovely 5bedroom Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets,Osapa London +43193,Dry Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +43194,5bedroom Fully Detached Duplex With A Mini Flat Bq,"Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43195,Newly Built 5bedrooms Detached Duplex With 1bq,"Chevy View Estate, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43196, New 4 Bedroom Terrace,"Lekki, Lagos, Lagos Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43197,Duplex,Water Front View Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43198,5 Bedroom Fully Detached Duplex,55 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43199,600sqm Genuine Plot Of Land With C Of O,"Sangotedo, Eti Osa, Lagos Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43200,Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,10 beds,10 baths,0 Toilets,Osapa London +43201,A Full Plot Of Dry Land For Sale(fenced And Gated),"Lekki, Lagos, Lagos Lekki Lagos",₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43202,Spacious 4 Bedroom Duplex With Bq In Lekki 1,Near Spar/niccon Town Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43203,5 Bedroom Detached Duplex With A Pent House,Luxury Home In Pinnock Beach Estate Osapa Lekki Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,7 baths,8 Toilets,Other Lekki +43204,900sqm Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,1 beds,0 baths,0 Toilets,Osapa London +43205,Newly Built And Well Finished 5 Bedroom Duplex .,"Victory Pack Estate ,osapa Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43206,4 Bedroom Semi Detached Duplex For Sale In Ikota Lekki,Westend Estate By Lekky County Homes Ikota Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43207,Land At Ibeju Lekki,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"2,100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43208,"Service Plots Of Land At Portview Estate, Ibeju Lekki","Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43209,Land For Sale At Lekki Rose Garden,"Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43210,4 Bedroom Duplex,"Lekki, Lagos, Lagos Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43211,5 Bedroom Duplex,Ajah Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43212,5 Bedroom Detached Duplex,Pinnock Beach Estate Lekki By Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43213,4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Pinnock Beach Estate Lekki By Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43214,Modern Luxury 5 Bedrooms Fully Detached Duplex With Separate Compounds Inside A Serviced Gated Estate,"Lekki, Ikate Elegushi Ikate Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +43215,Luxuriously Finished And Spacious 5 Bedroom Duplex,"Estate By Chevron Toll Gate, Lekki Expressway, Lekki, Lagos Chevron Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43216,5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43217,Land With C Of O,"Lekki, Lagos, Lagos Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43218,Duplex,Thomas Estate Ajah Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43219,Fully Detached Duplex All En Suite,"Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43220,Newly Built And Well Finished 4bedroom Detached Duplex With Bq,"Ikota Villa Estate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +43221,Newly Built 3bedroom Terrace Duplex With Bq,"Ikota Villa Estate, Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +43222,Land,"Lekki, Lagos, Lagos Lekki Lagos",₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43223,Land,"Amen Estate, Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43224,Land At Ibeju Lekki,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43225,Luxury Ocean View Estate,"Ocean View Estate,alfa Beach Road,lekki Lekki Lagos",₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43226,Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43227,2600 Sqm Land,Osapa Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +43228,5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43229,Fully Detached Apartment,Agungi Lekki Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43230,4 Bedroom Terrace Duplex + Bq,Off Admiralty Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43231,5 Bedroom Semi Detached,Adebisi Popoola Crescent Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43232,5 Bedroom Semi Detached Duplex,Buene Vista Estate Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43233,3 Bedroom Flat,Chevy View Within An Estate Lekki Lagos,₦,"375,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +43234,"Corner Piece Bare Land Measuring 1,300sqm",Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43235,Bare Land Measuring 800sqm,Off Kusenla Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43236,Elegant Built 5br +1rm Bq And Swimming Pool. Lekki. Chevron.,"Chevron Drive, Lekki Lagos",₦,"112,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +43237,Land,Destiny Homes Estate Ajah Lekki Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43238,Office Space,"Lekki, Lagos, Lagos Lekki Lagos",₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43239,Delight House,"Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43240,Land For Sale,Agungi Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43241,Land Property,"Lekki, Lagos, Lagos Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43242,Plot Of Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43243,4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Epe Expressway Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43244,Detached 5 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43245,5 Bedroom Duplex,Scheme 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43246,Land,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43247,Land,Osoroko Ibeju Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43248,Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"1,080,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43249,5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43250,300sqm Plot Of Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43251,Land,"Hebron Garden Estate, Eleju, Lekki, Lagos. Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43252,"Super Standard 7 Storey, 18 Flats, Water Front.","Lekki, Lagos, Lagos Lekki Lagos",₦,"7,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +43253,Plots For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43254,4 Bedroom Duplex,Agungi Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43255,2 Bedroom Flat,Abijo Lekki Phase 2 Lekki Lagos,₦,"16,000,000",0,0,0,2 beds,2 baths,9 Toilets,Lekki Phase 2 +43256,Four Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"24,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43257,3 Bedroom Serviced Terrace House,"Lekki, Lagos, Lagos Lekki Lagos",₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +43258,2 Bedroom Flat,"Destiny Homes Estate, Lekki Lagos",₦,"32,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43259,5 Bedroom Fully Detached House,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43260,4 Bedroom Terrace Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43261,4 Bedroom Semidetached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43262,4 Bedroom Duplex,Osapa London Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43263,Affordable Plot Of Land For Sale,United Estate Songotedo Lekki Epe Express Way Ajah Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43264,Executive Semi Detached 3bedroom Duplex For Sale,"Ikota Villa Estate, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +43265,Luxury 5 Bedroom Fully Detached Duplex For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +43266,4 Bedroom House,Sangotedo Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43267,Prime Commercial 2000sqm Land,Between 2nd And 3rd Round About Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43268,5 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43269,Land,Bellavista Gardens Vgc Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43270,Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43271,Land,Peninsula Homes Phase 2 Lekki Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43272,650sqm Land,Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43273,4 Plots Of Land Together,Atlantic View Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43274,5 Bedroom Duplex,Row 2 Vgc Vgc Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +43275,3 Bedroom Flat,Elevation Church Jakande Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43276,800 Sqm Land,Lagoon View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43277,8 Units Of 3 Bedroom Flats For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +43278,"Bare Land Measuring 1,500sqm In Serviced Prime Estate.",Royal Garden Estate. Lekki Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets,Other Lekki +43279,Bare Land,Royal Garden Estate. Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43280,Bare Land Measuring 920sqm In A Prime Serviced Estate.,Royal Garden Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Other Lekki +43281,Bare Land Measuring 660sqm In Prime Serviced Estate.,Royal Garden Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Lekki +43282,Brand New 4 Bedroom Semidetached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43283,14 Units Of 4bedroom Terrace And 4bedroom Semi Detached Duplex,Ikota Villa 2 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43284,Land,Oriwu Street By Citylodge Hotel Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43285,Land,Lekki Epe Express Road Lekki Ikate Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43286,5 Bedroom Duplex With 2 Units 3bedroom Flats,Alpha Beach Rd Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43287,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43288,5200sqm Land,Landmark Road Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43289,Land,Normal Road 4 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43290,Land,Opp Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43291,Land,Lekki Express Lekki Phase 1 Lekki Lagos,₦,"1,275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43292,Fenced Bare Land,Block C Plot 3 Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43293,Unique 5 Bedroom Detached House,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43294,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43295,6 Units Of 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43296,3 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,3 Toilets,Ikota +43297,3bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"23,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +43298,Luxury Built 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets,Osapa London +43299,4 Bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43300,For Sale,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +43301,2bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Lekki +43302,4 Bedroom Semi Detached House,Toll Gate 2 Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43303,"Newly Built 5 Bedroom Fully Detached Duplex For Sale In Chevron Alternative, Lekki, Lagos", Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43304,5 Bedroom Semi Detached And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43305,Land,Labora Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,1 Toilets,Lekki Phase 1 +43306,Land,Labora Lekki Phase 1 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43307,Land,Palmsbay Estate Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43308,Land,Abijo Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43309,2 Unit Of 5 Bedroom Detached Duplex,Off Ologolo Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Lekki +43310,Luxury 4 Bedrooms Semi Detached Duplex With A Bq,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43311,5 Bedroom Detached Duplex,Nicon Town Estate Jakande Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43312,3 Bedroom Flat + Bq, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +43313,Land,"Lekki Phase1 , By 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +43314,5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +43315,Nicely Built 7 Units Of 3 Bedroom Terrace Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +43316,4 Bedroom Detached Duplex,By Aa Rescue Behind Circle Mall Jakande Lekki Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43317,5 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43318,Three Bedrooms Flat,Milverton Estate Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +43319,Well Finished Detached Duplex,Lekki Expressway Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43320,Units Of 5 Bedroom Duplex,"Chijioke Akwukunma Street, Chevy View Estate Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +43321,5 Bedroom Duplex,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43322,Exquisitely Spacious Semi Detached 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +43323,7 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,8 baths,8 Toilets,Chevron +43324,4 Bedroom Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43325,5 Bedroom Detached Duplex With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43326,Land,Olubunmi Owa Str Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43327,Exquisitely Spacious Fully Detached 5 Bedroom Duplex,Back Of Shoprite Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,5 Toilets,Other Lekki +43328,Exquisitely Spacious Semi Detached 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,4 Toilets,Osapa London +43329,5 Bedroom Semi Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43330,5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43331,5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43332,4 Bedroom Detached Duplex,Olayinka Street Osapa London Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43333,Luxurious 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +43334,4 Bedroom Duplex (under Development),U3 Estate Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43335,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43336,5 Bedroom Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"64,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43337,Land,Itamarun Igbo Efon Lekki Lagos,₦,"1,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43338,Luxury 4 Bedroom Terraced Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43339,"5 Bedroom Fully Detached Duplex With Boys Quarter At Osapa, Lekki, Lagos.","Osapa, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +43340,5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43341,5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43342,5 Bedroom Detached Duplex,Ologolo Egbuson Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43343,Land,Epe Express Way Idado Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43344,Land,Akodo Lekki Phase 2 Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43345,Land,Sangotedo Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43346,4 Unit Of 4 Bedroom Detached Duplex With Bq,Kolawole Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +43347,4 Bedroom Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 2 +43348,4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43349,4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43350,4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43351,4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43352,5 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +43353,Tastefully Finished 5 Bedrooms Fully Detached Duplex With Attached Room Bq,Located At Idado Beside Chevy View/chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +43354,5 Bedroom Duplex,Jakande Bus Stop Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43355,Luxury 4 Bedroom Duplex,Opposite Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43356,4 Bedroom Terrace Duplex,Chevron Toll Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43357,5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43358,Beautifully Finished 5 Bedroom Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets,Osapa London +43359,2 Units 4 Bedroom House,Wole Ariyo Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43360,5 Bedroom Duplex,Osaulu Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43361,4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43362,5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43363,4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43364,4 Bedroom Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43365,5 Bedroom Detached House,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43366,5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43367,4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43368,5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43369,5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43370,5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43371,4 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43372,5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43373,Land,Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43374,5 Bedroom Fully Detached Duplex,Dele Adeyemi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +43375,5 Bedroom Fully Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43376,Plots Of Land,Oshoroko Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43377,Land,Idasho Lekki Phase 2 Lekki Lagos,₦,"800,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 2 +43378,4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43379,4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43380,4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +43381,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43382,4 Bedroom Semi Detached House,Meadow Hall School Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43383,5 Bedroom Fully Detached House,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +43384,4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +43385,5 Bedroom Distressed Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +43386,5 Bedroom Duplex,Awobode Street Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43387,Land,"Via Orchid Hotel Road Lakeview Park, Beside Shell Coplag Garden Chevron Lekki Lagos",₦,"20,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43388,Land,Via Orchid Hotel Road Beside Shell Coplag Garden Chevron Lekki Lagos,₦,"20,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43389,Massive 6 Bedroom Detached Duplex,Off Admirality Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets,Lekki Phase 1 +43390,Unique 5 Bedroom Duplex + 1 Room Bq,Chevron Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +43391,4 Bedroom Duplex With Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43392,3 Bedroom Flat And 1 Bq,Whit Sand School Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +43393,Plot Of Land,Block 25 Plot 31 Off Akin Adieola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43394,Plot Of Land,Block 82 Plot 13 Off Engr. Kola Abijola Street Lekki Phase 2 Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43395,4 Bedroom Detached Duplex,"Eti Osa, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43396,Land,Eleko Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43397,Land,Harris Drive Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43398,3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +43399,Land,Harris Drive Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43400,Xmas Sale Now Selling Four Bedroom Semi Detached Duplex Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +43401,Lands,Epe Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43402,Lands,Olokonla Ajah Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43403,5 Bedroom Duplex With 2 Rooms Bq,Osapa Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43404,5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +43405,4 Bedroom Duplex,Agingi Lekki Lagos,₦,"7,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43406,5 Bedroom Detached Duplex With A Bq With All Room Ensuites,Private Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43407,Land,Mega Mound Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43408,Land,Northwest Station Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43409,2 Bedroom Flat,Mega Chicken Ikota Lekki Lagos,₦,"260,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +43410,5 Bedroom Fully Detached Duplex,Chevy Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,5 Toilets,Lekki Phase 1 +43411,5 Bedroom Detached And Bq Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43412,4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43413,Land,New Shoprite Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43414,Lands,Ceddar Wood Estate Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43415,Lands,Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43416,3 Bedroom Fully Detached Duplex With Stand Alone Bq,Behind Shoprite Jakande Jakande Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43417,Semi Detached 4 Bedroom Duplex,Oniru Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43418,5 Bedroom Detached Duplex With A Bq,Eletu Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43419,4.5 Acres Of Land,Off Baderinwa Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43420,4 Bedroom Semi Detached Duplex,Whiteoak Estate Agungi Lekki Lagos,₦,"71,500,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +43421,4 Bedroom Terrace Duplex,By Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,5 Toilets,Chevron +43422,Detached 4 Bedroom Detached House,Off Hakeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43423,Lands,Ilasan Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43424,Sweet Home,Epe Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +43425,"Fully Detach And Semi Detached 4 Bedroom Duplex,",Epe Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,5 baths,0 Toilets,Other Lekki +43426,Land,"Off Monastery Road, Sangotedo Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43427,5 Bedroom Duplex,Acadia Gardens Estate By Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43428,6 Units Of Luxuriously Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43429,Land,Rose Garden Estate Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43430,5 Bedroom Detached House | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43431,5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43432,4 Bedroom Terraced House,Chevron Drive Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43433,4 Bedroom Terraced Houses,Lekki Ocean Side Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43434,20 Acres Of Land,Epe Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43435,4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +43436,15 Hectares Of Land,Akodo Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43437,5 Bedroom Detached Duplex With Bq,By New Shoprite Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +43438,Gazetted Dry Land,Free Trade Zone Lekki Lagos,₦,"1,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43439,Luxury Hotel For Sale In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +43440,Land,Lekki Express Way Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43441,Residential Plots Of Land,Lekki Express Way Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43442,Land,Lekki Peninsula Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43443,4 Bedroom Semi Detached Duplex With Bq,Pinnock Estate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43444,5 Bedroom Semi Detached Duplex With A Room Bq,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"178,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43445,5 Bedroom Duplex + 2bq, Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43446,Four Plots Of Land (2100 Sqm),5th Round About Igbo Efon Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43447,3 Bedrooms Terrace + Bq, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +43448,4 Bedroom Terrace Duplex,Southern View Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43449,Brand New 4 Bedroom Terrace Duplex,Southern View Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43450,Beautifully Finished 5 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43451,5 Bedroom Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43452,4 Bedroom Duplex,Aro Town Opp Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,4 baths,5 Toilets,Osapa London +43453,4 Bedroom Duplex With Bq,"Lekki, Lagos, Lagos Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43454,"Newly Built 5 Bedroom Duplex With 2 Bq, Well Finished Kitchen Fittings And Foreign Wardrobe",Northern Foreshore Chevron Lekki Lagos,₦,"167,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +43455,3 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43456,Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43457,Verified And Genuine Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43458,4 Bedroom Terrace Terrace House,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikate +43459,4 Bedroom Duplex Wit Bq,Lara Ademola By Green Ville Estate Agungi Lekki Phase2 Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43460,Land,Alatishe Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43461,Luxurious Four Bedroom Fully Detached House,Pracht Garden Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43462,Semi Detached 4 Bedroom Luxury House With Bq (mortgage Option Available),Off Orchid Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43463,5 Bedroom Duplex,Ikota Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikota +43464,3 Bedroom Flat,Victory Park Estate Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +43465,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43466,6 Bedrooms Detached House,White Oak Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +43467,Brand New Fully Detached 5 Bedroom House,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43468,Lovely 5bedroom Fully Detached,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43469,5 Bedroom House,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43470,5 Bedroom Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +43471,3 Bedroom Flat,House On The Rock Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,5 Toilets,Ikate +43472,3 Bedroom Flat With B/q,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +43473,5 Bedroom Detached Duplex + Bq,Chevyview Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43474,5 Bedroom Fully Detached House,Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43475,4 Bedroom Terrace Duplex With Pent House,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43476,2 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets,Ikate +43477,Exquisite & Smart 5 Bedroom Fully Detached Duplex With 2 Room Bq,Off Road 3 Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,7 Toilets,Victoria Garden City +43478,Well Finished 4 Bedroom Terrace Duplex Off Carlton Gate Estate,Off Carlton Gate Estate Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43479,A Brand New 4bedroom Terrace House With A Bq,"Abiola Apooyin Street, Oral Estate, Lekki Second Toll Gate Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43480,4 Bedroom Duplex,Spg After Ologolo And Before Igbo Efon Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +43481,Land,Eleko Jakande Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43482,4 Bedroom Detached House,"Providence Street, By 1st Roundabout, Lekki 1, Lagos Lekki Lagos",₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43483,3 Bedroom Flat,Admerilty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43484,5 Bedroom Detached Duplex + Bq,Olatunde Amolegbe Chevron Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43485,4 Bedroom Duplex,Lekki Epe Express Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +43486,3 Bedroom Apartment,Udeco Medical Road Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +43487,Old Detached Duplexe,Off Oyibo Adjarho Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43488,5bedroom Full Detached,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +43489,Land,Victoria Garden City Vgc Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43490,4 Bedroom Detached Bungalow, Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43491,5bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43492,3 Bedroom Flat With Boys Quarters,Shoprite Jakande Osapa Lekki Lagos Jakande Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43493,4 Bedroom Duplex,Road 51 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Garden City +43494,3 Bedroom Flat,"Ijia Street, Near Buena Vista Estate Ikota Lekki Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +43495,4 Bedroom Terraced Duplex With Bq,Ayogoro Street Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +43496,3 Bedroom Bungalow,Southpointe Estate Vgc Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Garden City +43497,4 Bedroom Terrace House With 1 Room Bq (off Plan),Josemara Escriva Street Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43498,5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43499,Land,Lafiaji Off Orchid Hotel Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43500,2 Units Of 4bedrooms Semi Detached Duplex With Bq Each (uncompleted ),Akwuzu Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43501,Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43502,A Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Close To Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43503,A Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Around Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43504,A Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43505,Newly Built 4 Bedroom Semi Detached Duplex,Ivory Close Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +43506,5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43507,Filling Station,"Lekki/epe Express Way,abulepan Before Eleko Junction Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43508,Excellent 4 Bedrooms Semi Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43509,3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43510,Modern Office ( Off Plan),Off C And I Leasing Road Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43511,4 Bedrooms Duplex With Bq,West End Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43512,Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43513,5 Bedroom Detached House,Lekki Phase Of Admiraty Way Lagos Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43514,4 Bedroom Duplex,"Off Admaratty Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43515,Plot Of Land,"Treasure Garden Estate, Agaye Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43516,2 Plots Of Land,Behind Oando Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43517,5 Bedrooms Fully Detached Duplex With Bq,Off Chevron Drive Before Vgc Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +43518,5 Bedroom Detached Duplex With A Bq,Acadia Groove Estate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43519,5 Bedrooms Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +43520,Land,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43521,Land,Association Avenue Osapa Just Behind Shoprite Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43522,4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43523,5 Bedroom Detached House + A Room Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43524,3 Bedroom Apartment,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43525,Newly Renovated 4 Bedroom Duplex 24 7 Power,Sultana St Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +43526,5 Bedroom Duplex,Road 5 Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43527,4 In 1 Cluster 4 Bedroom Duplex,Sultana Chevron Lekki Lagos,₦,"69,900,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43528,4 Bedroom Corner Piece Duplex With 1 Ensuite Bq On 800 Square Metres,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43529,4 Bedroom Semi Detached 1 Room Bq,Duro Etti St Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,0 Toilets,Lekki Phase 1 +43530,Fenced Land,Seagate Estate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43531,5 Bedroom Terrace Duplex,Dada Fayemi Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43532,5 Bedroom Duplex,Royal Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +43533,5 Bedroom Semi Detached Duplex,Omonrire Johnson Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43534,"2 Bedroom Apartment (20% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"31,500,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +43535,5 Bedroom Detached Duplex,Road 12 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +43536,4 Bedroom Semi Detached Duplex,Ikota Housing Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43537,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43538,Virgin Land,Lekki Sheme 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43539,4 Bedroom Semi Detached Duplex,Off Chevron Drive Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43540,Land,Off Spar Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43541,Magnificent 7bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,7 beds,8 baths,8 Toilets,Lekki Phase 1 +43542,Well Built 5bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43543,Spacious And Magnificent 5bedroom Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,7 baths,7 Toilets,Lekki Phase 1 +43544,Excellent Finished Of 5bedroom Duplex,Chevy View Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43545,2 And 3 Bedroom Apartment (off Plan),Lekki Epe Expressway Vgc Lekki Lagos,₦,"29,000,000",0,0,0, beds, baths, Toilets,Victoria Garden City +43546,Off Plan 4bedroom Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43547,Land,Durosimi Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43548,5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +43549,5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +43550,5 Bedroom Detached Duplex,Victory Park Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +43551,5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43552,5 Bedroom Duplex,Osapa Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43553,5 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43554,5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +43555,4 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +43556,4 Bedroom Terrace Duplex With A Bq,Royal Garden Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +43557,5 Bedroom Luxury Apartment,"4 Dada Fayemi Close, Osapa, Lekki Osapa London Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43558,Land,Ikate Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43559,5 Bedroom Luxury Duplex + Bq,"Chevy View, Chevron Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43560,Land,Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43561,Land,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43562,5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43563,5 Bedroom Duplex With A Room Bq, Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43564,Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43565,Plots Of Land,Ajah Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43566,4 Plots Of Land,Opposite Germain Auto Center Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43567,7 Bedroom Mansion, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +43568,Land,Oyibo Adjarho Street Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43569,Land, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43570,5 Bedroom Duplex With A Room Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +43571,Land,Kafayat Abdulrazak Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43572,Land,Road 27 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43573,Land,Off Dele Adedeji Street Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43574,18 Plots Of Land, Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43575,Land, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43576,30 Plots Of Land,Olokonla Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43577,2 Plots Of Land,Jubril Estate Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43578,Land,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43579,Land,Ikota Villa Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43580,Land,Chevy View Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43581,Land,Megamound Estate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43582,Land,Megamound Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43583,2 Plots Of Land,Bakare Estate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43584,Land, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43585,Land ( Joint Venture ), Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43586,Land,"Inside U3 Estate, Along Pinnacle Filling Station Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43587,Land,Off Conservation Road Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43588,Land,Off Conservation Road Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43589,Land,"Off Conservation Road, Olugborogan Lekki Lagos",₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43590,Land,Buena Vista Estate On Orchid Hotel Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43591,Land,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43592,Land,Orchid Hotel Road Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43593,Land, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +43594,A Plot Of Land,Gbetu Behind Mayfair Garden Estate Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43595,Land,Behind Updc Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43596,4 Plots Of Land,Off Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43597,A Plot Of Land,Orchid Hotel Road Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43598,5 Hectares Of Land,Buena Vista Estate On Orchid Hotel Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43599,Land,Facing Conservation Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43600,Land,Road 27 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43601,5 Bedroom House With A Bq,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43602,5 Bedroom House With A Bq,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +43603,4 Bedroom Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43604,Land, Lekki Phase 1 Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43605,Plot Of Land,Iroko Awe Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43606,Land,Iroko Awe Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43607,2 Bedroom Flat, Igbo Efon Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Lekki +43608,5 Bedroom Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +43609,Land, Chevron Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43610,4 Bedroom Semi Detached House,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +43611,4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43612,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43613,4 Bedroom Semi Detached Duplex,Scintilla Close Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43614,5 Bedroom Detached Duplex With A Bq,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43615,"Special Offer! 3 Bedroom Duplex + Extra Penthouse, Electronics, & Laundry Room",Dada Fayemi Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,6 Toilets,Osapa London +43616,"4 Bedroom Flat (10% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"41,400,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43617,3 Bedroom Apartment With Bq,Orchid Estate Off Chevron. Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +43618,4 Bedroom Semi Detached Duplex With Bq,Ikota Villa West End Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +43619,5 Bedroom Luxury Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43620,6 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +43621,3 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43622,Plot Of Land,Arium Estate Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43623,4 Bedroom Terrace Duplex,Orchid Estate Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43624,3 Bedroom Apartment,Estate Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +43625,7 Bedroom Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +43626,3 Bedroom Apartment (off Plan),Lanre Olumide St Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +43627,5 Bedroom Terrace With Bq,Jordan Terrace Estate Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43628,4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43629,6 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Lekki +43630,4 Bedroom Terrace Duplex,Orchid Estate Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43631,4 Bedroom House, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,1 Toilets,Lekki Phase 1 +43632,4 Bedroom Semi Detached Duplex With Bq,Off Chevron Drive Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +43633,4 Bedroom Semi Detached Duplex With 1 Bq, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43634,5 Bedroom Fully Detached Duplex With Bq., Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43635,Governors Consent C Of O,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,1 Toilets,Lekki Phase 1 +43636,3 Units Of 2 Bedroom Apatment,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,2 beds,2 baths,1 Toilets,Lekki Phase 1 +43637,4 Bedroom Duplex,Akinde Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43638,4 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43639,4 Bedroom Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43640,5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43641,4 Semi Detached Duplex, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +43642,5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43643,5 Bedroom Detached Duplex With Bq,Road 16 Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43644,5 Bedroom Duplex,Chief Gbadamosi Street Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43645,4 Bedroom Townhouse And A 3 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43646,Land,Walton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43647,4 Bedroom Bungalow (uncompleted),Lakowe Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +43648,4 Bedroom Semi Detached Duplex,Off Orchid Hotel Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +43649,4 Bedroom Duplex,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,2 baths,2 Toilets,Chevron +43650,6 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +43651,4 Bedrooms Duplex With A Room Bq,Igboefon Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43652,Exquisite 4 Bedroom Semi Detached Duplex With Bq,Alternative Rout Chevron Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43653,8 Acres Of Land,"Okun, Ajah Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43654,2 Plots Of Land,"Okun, Ajah Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43655,4000 Square Meter Land,Off Admiralty Way Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43656,3&2 Bedroom Boungalow,Awoyaya Ikate Lekki Lagos,₦,"16,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43657,Brand New 5 Bedroom Duplex With Bq,Beach Zone Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43658,6 Units Of Tastefully Finished Duplexes For Sale In Chevy View Estate Lekki Lagos,Off Udeco Medical Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43659,600 Sqm Of Land,Okun Ajah Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43660,Land, Jakande Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43661,4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +43662,4 Bedroom Semi Detached Duplex,Alternative Rout Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43663,Beautifully Built 5bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +43664,Land,Lekki Chevron Lekki Lagos,₦,"55,005,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43665,4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43666,4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43667,Luxury Home,Lekki County Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43668,630 M² – 3 Units Of 4 Bedroom Terrace Duplex With A Room Servant Quarters,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43669,Good Deal: A Very Well Finished And Spacious 4 Bedroom Wing Of Duplex For Sale @ Idado Chevy Lekki Lagos,Off Idado Estate Road By Chevy Link Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43670,5 Bedrooms Duplex At Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43671,Beautiful 4bedroom Duplex With Swimming Pool,Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +43672,4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43673,5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43674,"4 Bedroom Terraced House With Bq,swimming Pool And Fitted Kitchen",Off Prime Water Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +43675,5 Bedroom Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43676,Land,"Off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43677,Land, Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43678,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43679,4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43680,Excellent 5 Bedroom Detached House + Bq, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43681,New 4 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43682,3 Bedroom Maisonette(shell Unit),Kusenla Street Ikate Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43683,4 Bedroom Semi Detached Duplex With Bq (shell Unit),Kusenla Street Ikate Lekki Lagos,₦,"52,500,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43684,4 Bedroom Terrace House,"Southern View, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43685,3 Bedrooms Terrace Apartment + Bq,Lafiaji By 2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43686,Land, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43687,4 Bedroom Semi Detached House, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43688,Land,Meadow School Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43689,Governor's Consent,Road 1 Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43690,3 Bedroom Flat,Chevron Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Lekki +43691,5 Bedroom Duplex Plus 2 Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"138,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43692,5 Bedroom Duplex With 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43693,Land, Lekki Phase 2 Lekki Lagos,₦,"125,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43694,Land, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43695,4 Bedroom House,"Chevron Drive, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +43696,4 Bedroom Duplex And B/q, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43697,3 Bedroom Flat,"Lekki, Lagos, Lagos Ikate Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43698,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43699,Land, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43700,5bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43701,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43702,5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43703,Land, Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43704,3 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43705,Land, Lekki Phase 1 Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43706,4 Bedroom House, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43707,2 Bedroom Flat, Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +43708,Land, Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43709,Plot Of Land,"Abijo Gra, Beside Nicon Town Ii, Off Lekki Epe Expressway Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43710,4 Bedroom House, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +43711,Land,Manor Garden Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43712,A Duplex For Sale,Road 12 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,0 Toilets,Victoria Garden City +43713,5 Bedroom Terrace, Jakande Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +43714,4 Bedroom Terraces With 1 Room Bq, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43715,4 Bedroom Duplex With Bq,Before Chevron Roundabout Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43716,5 Bedroom Fully Detached Duplex Plus Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,5 baths,6 Toilets,Lekki Phase 1 +43717,Land,Durosinmi Eti Drive Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43718,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43719,4 Bedroom Terraced Duplex,Buene Vista Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +43720,Land,Nicon Town Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43721,5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43722,5 Bedroom Detached Duplex,Jamiu Eletu Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +43723,4 Bedroom Terraced Duplex,Eletu Way Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +43724,Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43725,C Of O,Agungi Agungi Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43726,Shop, Jakande Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43727,Four Bedroom Duplex,"Duke's Court Estate, Off Adenike Olotu Street, Off Mobil Road Ilaje Bus Stop, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +43728,Brand New 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets,Lekki Phase 1 +43729,5 Bedrooms Detached Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43730,5 Bedroom Detached Duplex,Alpha Beach Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43731,5 Bedrooms Detached Duplex,Beside Spg Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43732,4 Bedroom Semi Detached House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +43733,3 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +43734,5 Bedroom Detached Duplex,Near Uba Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43735,Brand New 4 Bedrooms Terrace Duplex,Buene Vista Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43736,Brand New 4 Bedrooms Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43737,Brand New 4 Bedrooms Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43738,5 Bedrooms Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43739,4 Bedrooms Tarrace Duplex,"Lekki Right, By Elf Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43740,Brand New 4 Bedroom Tarrace Duplex,"Mini Estate, Close To Prime Water Garden Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43741,4 Bedrooms Tarrace Service Apartment,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43742,4 Bedrooms Terrace Service Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43743,4 Bedrooms Detached Duplex,Still Water Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43744,4 Bedrooms Duplex,Estate Close To Pinnacle Filling Station Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43745,5 Bedrooms Detached Duplex,Cadogan Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43746,5 Bedrooms Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43747,Brand New 5 Bedrooms Detached Duplex,Behind Shoprite Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43748,Brand New 4 Bedrooms Tarrace Duplex,Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43749,5 Bedrooms Detached Duplex,Megamound Estate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43750,4 Bedrooms Semi Detached Duplex,Near French Colony Estate Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43751,3 Bedrooms Tarrace Duplex,By Pinnacle Filling Station Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43752,5 Bedrooms Detached Duplex,Chevy View Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43753,5 Bedrooms Detached Duplex,Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43754,5 Bedrooms Detached House,"Inside Vgc, Vgc Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43755,Brand New Luxury 4 Bedrooms Detached Duplex,By Jakabde Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43756,Brand 5 Bedrooms Detached Duplex,By Jakande Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43757,Land, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43758,5 Bedroom Detached Duplex, Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43759,5 Bedrooms Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43760,6 Bedrooms Detached Duplex,Pinnock Road Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +43761,Luxury 5 Bedrooms Detached Duplex,"Megamound Estate, Lekki Lagos",₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Lekki +43762,5 Bedroom Detached Duplex,Off Folasibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43763,4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43764,5 Bedroom Detached House + Bq,Off Lekki County Road Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43765,5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43766,5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43767,Land,Chevy View Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43768,Land,Lekki Ocean View Estate Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43769,Land,Lekki Palace Estate Lekki Phase 2 Lekki Lagos,₦,"3,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43770,Land,Lekki Palace Estate Lekki Phase 2 Lekki Lagos,₦,"4,400,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43771,5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,0 Toilets,Other Lekki +43772,Building, Chevron Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths,0 Toilets,Chevron +43773,Land,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43774,5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +43775,4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43776,4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +43777,3 Bedroom Apartment,"Chevron, Conservation Drive Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +43778,5 Bedroom Duplex With One Bq,"Whitesand School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"97,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43779,Plot Of Land,Lekki Free Trade Zone Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43780,4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +43781,4 Bedroom Duplex,"Atlantic Boulevard, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43782,Land,Lekki Epe Expressway Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43783,Land,Lekki Epe Expressway Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43784,Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43785,5 Bedroom Apartment, Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 2 +43786,4 Bedroom Terrace Town House, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43787,5 Bedroom Semi Detached Duplex,Omorinre Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43788,Land, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43789,5 Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43790,5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,7 baths,7 Toilets,Osapa London +43791,4 Bedroom Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +43792,4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43793,4 Bedroom Duplex,"Behind Emerald Estate Off Mobile Road,ilaje Bus Stop Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +43794,Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43795,4 Bedroom Semi Detached Duplex + 1 Room Bq,"Oral Estate, Ikota. Vgc Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +43796,6 Bedroom Ensuit Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,8 Toilets,Lekki Phase 1 +43797,3 Bedroom Terrace Duplex + Bq, Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +43798,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43799,4 Bedroom Semi Detached Duplex + Bq,"By Northern Foreshore Road, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets,Chevron +43800,3 Bedroom Terraced Apartment, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +43801,Land ( Joint Venture ),Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43802,5 Bedroom Duplex With One Room Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43803,Brand New 5 Bedroom Detached Duplex,Megamond Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43804,Brand New 5bedroom Completely Detached Duplex For Sale In Lekki,Chevy View Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +43805,Brand New 5 Bedroom Completely Detached Duplex,"Royal Gardens , Vgc Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +43806,3 Bedroom Apartment + Bq | Off Plan, Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +43807,One Unit Of 4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +43808,4 Bedroom Detached House,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,6 Toilets,Ikota +43809,4 Bedroom Detached House At Osapa,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43810,New 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43811,New 4 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43812,5 Bedroom Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +43813,5 Bedroom Fully Detached Duplex + Bq,Whitesand Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43814,5 Bedroom Detached House,Bakare Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43815,5 Bedroom Detached House,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43816,4 Bedroom Terrace House,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43817,4 Bedrooms Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43818,A 4 Bedroom Ensuite Semi Detached Duplex With Bq,Igbo Efun Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43819,5 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43820,4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43821,4 Bedroom Ensuite Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43822,Lamd,Behind Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43823,4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets,Chevron +43824,4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43825,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43826,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43827,4 Bedroom Semi Detach Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43828,5 Bedroom Fully Detach Duplex, Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43829,5bedroom Fully Detach Duplex, Osapa London Lekki Lagos,₦,"86,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +43830,5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43831,5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +43832,3 Bedroom Apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +43833,4 Bedroom Semi Detached Duplex With A Room Bq,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,3 baths,3 Toilets,Lekki Phase 1 +43834,4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +43835,4 Bedroom Semi Detached Duplex + Bq, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +43836,4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43837,6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +43838,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43839,Land ( Joint Venture ),Zone M Plot 24 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +43840,2 Bedroom Flat With A Room Bq, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,1 baths,1 Toilets,Ikota +43841,Land ( Joint Venture ),Inside Eko Atlantic City Lekki Lagos,$,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43842,Land ( Joint Venture ),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43843,Land ( Joint Venture ),Link Bridge Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43844,Land ( Joint Venture ), Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +43845,Land ( Joint Venture ),Oba Akinjobi Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43846,Land ( Joint Venture ),Off Goshen Estate Road Back Of White Sand School Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43847,Land,Ilesan Elegushi Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43848,4bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +43849,5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43850,4 Bedroom Duplex, Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43851,4 Bedroom Duplex, Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43852,5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43853,5 Bedroom Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43854,4unit Of 3bedroom Apartment,"Lagos Bussiness School, Sangotedo Lekki Lagos",₦,"24,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +43855,Land,Elegushi Off Kushenla Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43856,5 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +43857,6 Bedroom Detached Duplex With A Penthouse, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43858,2 Bedroom Flat,Seagate Estate Phase 1 Ikate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +43859,4 Bedroom Terraced House,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +43860,32 (units) 3 Bedroom Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +43861,12 (units) 4 Bedroom Terrace Houses,"Adedeji Adekola Street, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +43862,4 (nos) 5 Bedroom Terrace Houses,"Oba Tijani Akinloye Street, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +43863,Land,Otunba Ajose Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43864,Land,Steve Ajose Street Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43865,5 Bedroom Detadhed House,Nicon Town Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +43866,Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43867,5 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets,Ikota +43868,Land,Otolu Along Lacapaign Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43869,Land,Iba Behind Ibeju Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43870,Land, Idado Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43871,Land,Ilamija Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43872,Land,Ilamija Near New Airport Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43873,5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43874,4 Bedroom Semi Detach Duplex,Ologolo Road Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +43875,Land,Along Orchid Hotel By 2nd Toll Gate Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43876,4 Bedroom Semi Detach Duplex,Oral Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +43877,60 Plots Of Land,Ilamija Ibeju Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43878,80 Plots Of Land,Ibeju Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43879,60 Plots Of Land,Iberekodo Near Kayetoro Lekki Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43880,Brand New And Tastefully Furnished 5 Bedroom Fully Detached House,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43881,4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43882,3 Bedroom Apartment | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +43883,4 Bedroom Terrace Duplex, Jakande Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +43884,Mini Flat,Seaside Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43885,Clean And Tastefully Built 6 Bedroom Fully Detached House,Admiralty Way Lekki Phase 1 Lagos State Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43886,A Clean 5 Bedroom Detached House At Vgc,Admiralty Way Lekki Phase 1 Lagos State Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43887,Various Plots Of Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43888,C Of O,Ikota Vgc Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43889,C Of O,Ikota Vgc Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43890,Bedroom Apartment,Abijo Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43891,5 Bedroom Apartment + Bq, Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +43892,4 Bedroom Terrace House,"Located Beside Vfs Global , Plot 24, Providence Street , Lekki Epe Expressway Lekki Scheme 1, Lekki Phase 1, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +43893,Luxury 2 Bedroom Flats,Kunshenla Road Lekki Lagos,₦,"49,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +43894,Land,Lilly Gate Hotel Lekki Lagos,₦,"175,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43895,Land,By Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43896,Land,"Urban Base Estate, Lekki Phase 1 Lekki Lagos",₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43897,4 Bedroom Semidetached Duplex With Bq,Meadow Hall Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43898,3 Bedroom Maisonette,Meadow Hall Way Ikate Lekki Lagos,₦,"35,200,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +43899,4 Bedroom Maisonnette,Kusenla Road Ikate Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43900,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43901,5bedroom Detached Duplex,Road 2 Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +43902,4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +43903,4 Bedroom Duplex,Opposite Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +43904,2 Bedroom Bungalow,Tipper Garage Chevron Lekki Lagos,₦,"18,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +43905,Executive 4 Bedroom Fully Detached Duplex,Bakare Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43906,Luxury 4 Bedrooms Semi Detached Duplex With Boys Quarters,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43907,4 Bedroom Terraced House,"Abiola Court 3, Saki Close Osapa London Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43908,5 Bedroom Duplex + Bq,Hameed Kasumu Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +43909,4 Bederoom Detached Duplex,Crown Estate. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,2 baths,2 Toilets,Lekki Phase 1 +43910,4 Bedroom Duplex,Romay Garden Ikate Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43911,4 Bedroom Terrace House,Barolla Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +43912,3 Bedroom Duplex,Ajibade Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +43913,2 Bedroom Flat,Westend Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikota +43914,6 Bedroom Detached Duplex,Chief Amah Close Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,8 baths,8 Toilets,Ikota +43915,4 Bedroom Semidetached Duplex,Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +43916,6 Bedroom Detached House,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +43917,5 Bedroom Detached House,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +43918,4 Bedroom Detached House In Chevron,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43919,Furnished 4 Bedroom Semi Detached House With Bq,Atlantic View Estate Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +43920,5 Bedroom Detached House With Bq,Carlton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43921,5 Bedroom Duplex | Off Plan,Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43922,2 Plots Of Land,Oribawa Close To The Express Of Ibeju Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43923,Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43924,Land,Ogufayo Royal Estate. Eputu Town Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43925,6 Plots Of Land, Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43926,Land,Ogufayo Royal Estate Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43927,Land,After Buena Vista Estate Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43928,4bedroom End Of Terrace House + A Room Bq,Romay Garden Ikate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +43929,2 Bedroom Apartment,Elegushi Beach Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +43930,2 Bedroom Flat,Meadow Hall Way Chevron Lekki Lagos,₦,"26,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43931,3 Bedroom Duplex,Meadow Hall Way Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +43932,4 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43933,4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +43934,2 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +43935,3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +43936,7 Units Of 4 Bedroom Semi Detached Duplexes, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43937,4 Bedroom Semi Detached Duplexes,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43938,4 Bedroom Semi Detached Duplexes + Bq,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43939,5 Bedroom Fully Detached Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +43940,3 Bedroom Flat With Bq,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +43941,2 Bedroom Flat With Bq,Elegushi Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +43942,2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Ikate +43943,4 Bedroom Semi Detached Duplex + 2 Rooms Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +43944,4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +43945,5 Bedroom Detached Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +43946,4 Units Of Beautifully Finished 4 Bedroom Terrace Duplexes + Bq,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +43947,4 Bedroom Semi Detached Duplexes + 1 Room Bq,Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +43948,1 Bedroom Studio Apartment,Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,0 baths,0 Toilets,Osapa London +43949,4 Bedroom Terrace Duplex + Bq,Elegushi Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43950,3 Bedroom Terrace Duplex + Bq, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +43951,4 Bedroom Semi Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +43952,4 Bedroom Semi Detached Terrace Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +43953,5 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,8 baths,8 Toilets,Chevron +43954,Executive Luxury 5 Bedroom Duplex With A Rooms Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43955,4 Bedroom Semidetach Duplex,Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +43956,4 Bedroom Semi Detached Duplex,"Chevron Drive, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +43957,4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +43958,5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +43959,2 Bedroom Apartment,Meadow Hall Road Ikate Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +43960,2 Bedroom Bungalow,Desa Ibeju Lekki Lagos,₦,"7,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +43961,Land ( Joint Venture ),Off Kushenla Road Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +43962,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43963,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43964,Land,Off Goshen Estate Road Back Of White Sand School Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43965,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43966,Land ( Joint Venture ),Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43967,Land ( Joint Venture ), Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43968,5 Bedroom Detached House + 2 Rm Bq,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,5 Toilets,Victoria Garden City +43969,2 Hectares Of Land,Behind The Presbyterian Church Vgc Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43970,4 Bedroom Duplex,Buena Vista Estate Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +43971,3bedroom Bungalow Detached House,Divine Homes Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +43972,4 Bedroom Terraced House, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43973,5 Bedroom Detached House, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +43974,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +43975,3 Bedroom Terrace Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +43976,Land,Road 27 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +43977,Land,Idado Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +43978,Land,Lekki County Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43979,4 Bedroom Duplex,Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +43980,5 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"365,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +43981,Land,Road Ikota Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +43982,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +43983,4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +43984,60 Plots Of Land,"Oshoroko Village, After Dangote Refinery Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43985,60 Plots Of Land,Oshoroko Village Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43986,15 Plots Of Land,Facing Lekki Epe Expressway At Lakowe Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43987,10 Plots Of Land,Abijo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43988,33 Plots Of Land,"Beside General Paint At Alasia, Facing The Lekki Epe Expressway Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43989,3 Plots Of Land,Oribanwa Facing Lekki Epe Expressway Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43990,6 Plots Of Land,"Eputu, All Facing Lekki Epe Expressway Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43991,30 Plots Of Land,Abraham Adesanya Roundabout Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43992,60 Plots Of Land,"Alahun, Opposite Richmond Estate Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43993,Office Complex,Along Lekki/epe Exp/way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43994,Land,Behind Green Spring School Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43995,Land, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +43996,Land,Off Fola Osibo Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43997,Land, Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +43998,5 Bedroom Modern Detached House,"Royal Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +43999,Land,"Lekki Ekpe Expressway, Lekki Phase 2 Lekki Lagos",₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44000,4 Bedroom Duplex,"Chief Eletu, Osapa London Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44001,5 Bedroom Duplex,Chief Eletu Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44002,3 Bedroom Duplex,"Ilasan, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +44003,5 Bedroom Duplex + Bq,"Whitesand ,along Elf Road, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44004,4 Bedrooms Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44005,Appealing 4 Bedroom Duplex With Bq In Osapa London,Osapa Osapa London Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44006,6bedroom Duplex With 2nos Of 3bedroom Flat,Garba Lawal Street Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Lekki +44007,Well Finished 4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44008,Land,"Road 2, Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44009,Land, Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44010,Land, Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44011,Land,"Igboefun Jakande Lekki Before Chevron, Lekki Phase 1, Lekki, Lagos Igbo Efon Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44012,Land,"Lekki, Lekki Phase 1 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44013,Tastefully Built 5 Bedroom House,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44014,Massive 5 Bedroom House,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44015,2 Units Of 3 Bedroom Flat,"Orile Ilasan, Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +44016,Luxury 4 Bedroom Detached Duplex,"Idado Estate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44017,Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment (7th Floor),"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +44018,Luxury 4 Bedroom Detached Duplex,"Ologolor, Agungi Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +44019,Lovely 5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +44020,5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +44021,Land,"Ikate Elegushi, Ikate Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44022,Land,"Vgc, Vgc Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44023,Land,"Lekki Phase1 , Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44024,4 Bedroom Terraced House,Femi Okunnu Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44025,4 Bedroom Detached Duplex,Crown Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44026,5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +44027,Newly Built 4 Bedroom Duplex + Bq,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44028,2 Wings Duplex Of 5 Bedroom Duplex With A Room Bq Each,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44029,4 Bedroom Duplex With Bq,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44030,4bedroom Terrace Duplex,"Estate, Jakande Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44031,4 Bedroom Terrace Flat,"Oral Estate, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +44032,4 Bedroom Terrace Flat,"Oral Estate, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +44033,5 Bedroom Detached House,"Lekki Phase1, Lekki Phase 1 Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44034,Newly Built 4 Bedroom Duplex,"Lafiaji Opp Chevron Hq Via Orchid Hotel Road, Chevron Lekki Lagos",₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44035,5 Bedroom + A Bq,"Omorire, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44036,5 Bedroom Detached Duplex,"Royal Garden, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,7 baths,7 Toilets,Victoria Garden City +44037,5 Bedroom Contemporary Detached House + Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44038,Luxury 5 Bedroom Fully Detached House + Bq,"Osapa, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44039,Serviced 3 Bedroom Terrace Apartment,John Okafor Street Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44040,4 Bedroom Bungalow With A Storey Building, Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44041,5 Bedroom Duplex,By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44042,Governor's Consent,7th Avenue Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44043,Governor's Consent,Off Lekki Epe Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44044,Governor's Consent,Buena Vista Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44045,Land,Lekki Pennisula Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44046,A Block Of 4 (3bedroom) Flats,Road 48 Vgc Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Garden City +44047,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +44048,2wings Of 5bedroom Duplex + Bq, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44049,Plots Of Land For Sale,"Lafiaji Road, Off Orchid Hotel Ikota Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44050,5bedroom Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44051,5 Bedroom Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44052,Lovely 4 Bedroom Semi Detached House,"Oral Setate, Ikota Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44053,4bedroom Semi Detached,"U3 Estate Lekki Right, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44054,Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44055,5 Bedroom Detached Duplex,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44056,Detached House, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +44057,4 Bedroom Detached Duplex For Sale,Chisco Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +44058,Land,"Lekki Phase 4, Ajah Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44059,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44060,5 Bedroom Terraced Duplex,Vgc Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +44061,5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44062,9 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +44063,5 Bedroom Duplex,Ologoro Area Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44064,4 Bedroom Duplex,Ologoro Area Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44065,3 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,3 Toilets,Chevron +44066,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44067,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44068,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44069,5 Bedroom Detached Duplex With Bq, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +44070,5 Bedroom Duplex,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44071,Serviced 4 Bedroom Apartment + Bq,"Off Spar, Ikate Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44072,Exquisitely Finished 4 Bedroom Terrace House,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44073,Beautiful 4 (nos) 5 Bedroom Duplexes,Oral Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44074,Luxury 5 Bedroom Detached Duplex., Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44075,Half Plot Of Land,Near Eleko Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44076,7 Bedroom Detached Duplex + 2 Brm Bq, Ikate Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets,Ikate +44077,Massive Newly Built 5 Bedroom Detached Duplex,Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,4 Toilets,Chevron +44078,4 Bedroom Semi Detached Duplex,Ologolor Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +44079,Newly Built Four Bedroom Detached House With Bq And Swimming Pool For Sale In Victory Park,"Victory Park, Osapa Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44080,Five Bedroom Detached House With A Room Bq,Ikate Elegushi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44081,5 Bedroom Duplex With 2 Rooms Bq,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44082,Detached House,Orchid Hotel Road Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44083,Terrace House,Igboefon Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +44084,Five Bedroom Semi Detached House + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44085,5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44086,4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44087,2 Wings Of 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44088,Five Bedroom Fully Detached House + Bq,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44089,4 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +44090,5 Bedroom Detached House,Gen Edmin Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44091,5 Bedroom Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44092,"3 Bedroom Apartment (20% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"39,150,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +44093,5 Bedroom Semi Detached Duplex,Oba Musa Agungi Lekki Lagos,₦,"39,000,000",0,0,0,5 beds,0 baths,0 Toilets,Agungi +44094,Mega Filling Station,Eleko Junction Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44095,4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44096,5 Bedroom Fully Detached House + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44097,Land,Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44098,5 Bedroom Detached Duplex + A Room Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44099,5 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44100,4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +44101,Twin Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +44102,5 Bedroom Detached House With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44103,Four Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44104,Four Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44105,Brand New Three Bedroom Flat,Ikate Elegushi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44106,Luxurious 4 Bedrooms Semi Detached With Bq,Alpha Beach Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44107,4 Bedroom Duplex With Miniflat Bq, Vgc Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Garden City +44108,5 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44109,3 Bedroom Bungalow,"Ilasan, Lekki Before Jakande Estate Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +44110,2 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +44111,4 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44112,5 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44113,5 Bedroom Duplex,Ologolo Area Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44114,4 Bedroom Duplex,Ologolo Area Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44115,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44116,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44117,4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44118,Land,Pinnock Beach Estate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44119,Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44120,Land,Igbogun Road Lekki Phase 2 Lekki Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44121,4 Bedroom Duplex,Lekki Phase 2 Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +44122,4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +44123,4 Bedroom Duplex,Lekki Phase 2 Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +44124,5 Bedroom Duplex,Lekki Phase 2 Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +44125,5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +44126,Luxury New 5 Bedroom Duplex With Bq,Femmi Okunnu Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +44127,Duplex In Nothern Foreshore Estate Lekki,Nothern Foreshore Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +44128,New Duplex In Lekki Phase 1,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +44129,5 Bedroom Duplex,Lekki Expressway Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +44130,5 Bedroom Duplex,Lekki Expressway Vgc Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +44131,New Duplex In Chevyview Estate Lekki,Lekki Expressway Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44132,Detached House,Alpha Beach Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44133,Land,Lekki Epe Express Lekki Phase 1 Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44134,5 Bedroom Semi Detatched Duplex With Pent House,Chevy View Estate Off Lekki Peninsula Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44135,4 Bedroom Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44136,5 Bedroom Duplex,Bamidele Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44137,Executive Well Finished 4 Bedroom Terrace Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44138,A Plot Of Dry Land,Tera Annex Estate Shangotedo Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44139,4 No's Of 2 Bedroom Flat,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 2 +44140,Land,Urban Base Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44141,5 Bedroom Terrace House,Off Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44142,4 Bedroom Duplex,Ikota County Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44143,Land (half Plot),"Gra, Abijo Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44144,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44145,5 Bedroom Semi Detached House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44146,5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44147,5 Bedroom Duplex With A Bq,Megamound Estate Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44148,4 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44149,Newly Completed 3 Bedroom Serviced Terraced Duplex With Excellent Facilities,Bamidele Eletu Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +44150,Brand New Serviced 3 Bedroom Terrace Apartment,Spar Road Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44151,Land,Faji Close Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44152,Five Bedroom Fully Detached House,Lekki Right Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44153,4 Bedroom Terrace Duplex,Amadasun Street Igbo Efon Lekki Lagos,₦,"52,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44154,2 Bedroom Terrace House,Ojo Oyewo Idado Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +44155,Land,Ogombo Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44156,Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44157,Land,Ikota Bridge Ikota Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44158,Brand New 4 Bedroom Semi Detached House With Bq,"Lafiaji, Off Chevron Road Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44159,5 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +44160,4 Bedroom Terraced Duplex,Earls Court Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44161,4 Bedroom Duplex,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44162,5 Bedroom Duplex,Lekki Expressway Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +44163,7 Bedroom Detached Duplex,Lekki Ph 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,8 baths,8 Toilets,Lekki Phase 1 +44164,Luxury New Property,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +44165,5 Bedroom Duplex And A Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"118,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44166,Tastefully Built 5 Bedroom Duplex And A Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44167,5 Bedroom Duplex And One Room Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44168,Luxury New Duplex In Lekki Phase1,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44169,Plot Of Land,Eti Osa Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44170,4 Bedroom Terrace Duplex With Bq,Along Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44171,A 5 Bedroom Fully Detached Duplex With Bq,Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44172,4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44173,Land, Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44174,Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44175,Land ( Joint Venture ), Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44176,Land ( Joint Venture ), Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44177,Land ( Joint Venture ),Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44178,Land ( Joint Venture ),Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44179,Land ( Joint Venture ),Aremo Oniru Crescent Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44180,Land ( Joint Venture ),Abisogun Street Off Palace Road Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44181,Land For Sale ( Joint Venture ),Dideolu Estate Oniru Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44182,Furnished Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44183,5 Bedroom Fully Detached Duplex,Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44184,4 Bedroom Terraced Duplex,Victoria Creset Estate. Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44185,4 Bedroom Terrace Duplex,. Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44186,4 Bedroom Semi Detached Duplex In Lekki Phase 1,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44187,4 Bedroom Terrace Duplex Along Orchid Hotel,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44188,4 Bedroom Terrace Duplex,Behind Elegushi Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +44189,5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +44190,An Old 5 Bedroom House,Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44191,An Old 4 Bedroom Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44192,3 Bedroom Luxury Apartment,"Ikate, Elegushi Ikate Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,0 Toilets,Ikate +44193,Serviced Plot Of Land,Kunsela Street Jakande Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44194,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44195,Tastefully Finished 5 Bedroom Duplex,Oba Akinloye Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44196,5 Bedroom Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +44197,5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44198,4 Bedroom Terrace,"Meadow Hall School Street, Ikate Ikate Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +44199,An Old 4 Bedroom Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44200,3 Bedroom Terrace Duplex,Ochid Road Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +44201,4 Bedroom Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +44202,Tastefully Built 4 Bedroom Semi Detached Duplex,Ochid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44203,Tastefully Built 4 Bedroom Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +44204,Brand New 5 Bedroom Semi Detached House,"Meadow Hall School, Alternative Route Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44205,Exotic 5 Bedroom Fully Detached,White Sand Street Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44206,5 Bedroom Fully Detached Duplex + Bq,White Sands School Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44207,4 Bedroom Fully Detached Duplex,Admiralty Estate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44208,Luxurious 4 Bedroom Fully Detached Family Duplex,Admiralty Estate Road Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44209,5 Bedroom Pent House Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44210,Brand New Property Containing 7 Flats,Osapa London Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +44211,Brand New 5 Bedroom Luxury Duplex,"At Admiralty Estate Road, Alpha Beach, Lekki Lagos., Lekki Expressway, Lekki, Lagos Igbo Efon Lekki Lagos",₦,"67,000,000",0,0,0,5 beds,5 baths,1 Toilets,Other Lekki +44212,An Old 4 Bedroom Semi Detached,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44213,Old 5 Bedroom Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44214,5 Bedroom Mansionette,"Off Road 12, Very Close To Lekki Ikoyi Bridge. Lekki Phase 1 Lekki Lagos",₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44215,630 Square Metres Land,Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44216,980 Square Metres Land,Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44217,1000 Square Metres Of Land,Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44218,"5,000 Square Metres Of Land For Sale",Estate Chevron Lekki Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44219,5 Bedroom Semi Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44220,An Old 5 Bedroom Duplex With 2 Rooms Bq,Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44221,4 Bedroom Terrace Duplex,Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44222,Luxury 3 Bedroom Terrace Duplex,Alternative Route Chevron Lekki Lagos,₦,"15,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44223,Land,Gracefield Island Chevron Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets,Chevron +44224,902 Square Metres Of Land,Just After The Roundabout. Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44225,5 Room Office Building,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,3 baths,3 Toilets,Lekki Phase 1 +44226,Acre Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44227,Luxury 2 Bedroom Flat,Spar Road Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44228,4 Bedroom Terraced Duplex,Off Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44229,A Newly Built 6 Blocks Of 4 Bedroom Terrace Town House Duplex With A Room Bq,Elegushi Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44230,A Newly Built 5 Bedroom Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44231,3 Bedroom Terrace Duplex,"Mobil Road, Ilaje Ikota Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44232,Land,Ibeju Lekki(ayeteju) Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44233,Serviced 2 Bedroom Apartment,Cornelius Odinjor Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets,Chevron +44234,Commercial Land On Lekki Ajah Expressway,"Illasan, Lekki Ajah Expressway Lekki Phase 1 Lekki Lagos",₦,"210,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +44235,Luxury Built 5 Bedroom Detached Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44236,Luxury 4 Bedroom Detached Duplex For Sale,Osapa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44237,4 Bedroom Semi Detached Duplex With 1 Bq,"Vintage Park 2, Jakande, Jakande Lekki Lagos",₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44238,An Old 5 Bedroom Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44239,An Uncompleted Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets,Chevron +44240,5 Bedrooms Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44241,5 Bedrooms Semi Detached Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44242,Luxury 4 Bedroom Maisonette All Ensuite,Amadasun Street Just Before The 6th Roundabout Idado Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44243,Exquisitely Built Brand New 4 Bedroom Semi Detached Town House + 1 Room Bq,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44244,Brand New 5 Bedroom Duplex With One Room Boys Quarter,Off Ninolowo Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44245,5 Bedroom Detached,"Victory Park Estate, Beside Nicon Town Ikate Lekki Lagos",₦,"112,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +44246,Residential Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44247,"Brand New Luxury 4bedroom Fully Semi Detached Duplex With A Bq,",Bueno Vista Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +44248,Brand New Detached Duplex For Sale At Lekki Phase 1.,"Oladimeji Alao Street, Lekki Phase1. Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44249,Luxury Apartments In Chevron Area,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44250,A 4 Bedroom Terrace With A Bq,Oniru Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44251,Fully Serviced 3 Bedroom Apartment,Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +44252,900sqm Plot Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44253,2 Nos Newly Built 4 Bedroom Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44254,4 Bedroom Penthouse + One Room Bq,Oba Saheed Elegushi Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,4 Toilets,Lekki Phase 1 +44255,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44256,5 Bedroom Detached Duplex,Lekki Left Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44257,3 Units Of 4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44258,5 Bedroom Detached House With 2 Room Bq,"Ayinde Akinmade Str, Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44259,Beautiful And Newly Built Commercial Property,Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths,3 Toilets,Lekki Phase 1 +44260,Genuine Plot For Sale In Lakeview Park Estate 2,Lakeview Park Estate 2 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44261,"2,093 Square Meter Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44262,3 Units Of 4 Bedroom Terrace Duplex,Lekki Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44263,Nice 4 Bedroom With A Bq In Block Of Flats,"Victory Park Estate, Jakande Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +44264,4 Bedroom Terrace Duplex,Lekki Gardens Estate 2 Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +44265,4 Bedrooms Semi Detached Duplex,Bridgegate Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44266,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44267,Land,A Series Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44268,Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44269,Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44270,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44271,4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44272,2plots Of Land Well Located,Sea Gate Estate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44273,5 Bedroom Duplex With 2 Bedroom Bq,"Igbo Efon, Lekki Igbo Efon Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +44274,4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44275,5 Bedroom Duplex With 2 Bedroom Bq,Igbo Efon Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +44276,4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44277,4 Bedroom Duplex,Adegbenle Street Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44278,5bedroom Detach Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44279,Wing Of Duplex With Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +44280,Brand New Tastefully Finished Property,Lekki Expressway Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +44281,4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44282,Awesome 5bedroom Duplex With Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44283,Duplex,Oral Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44284,4 Bedroom Semi Detached Duplex,"Atlantic View Estate,by Alpha Beach Lekki Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44285,5 Bedroom Detached Duplex With Swimming Pool,Mungamund Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +44286,Luxury 4 Bedroom Semi Detached Duplex With Bq And 3 Sitting Rooms,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44287,Fully Fitted Semi Detached 4 Bedroom Duplex,Oba Akinloye Way Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,6 baths,5 Toilets,Other Lekki +44288,"Land Measuring 2,100 Square Metres",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44289,Prime Plots,Dreamworld Africana Way Ikate Lekki Lagos,₦,"50,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44290,3 Units Of 5 Bedroom Fully Detached Duplex With 2 Room Bq Plus Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +44291,Plot Of Land,Ceder Street Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44292,Land For Sale,Lekki Villas Phase 1 Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44293,Well Finished 4 Bedroom Terrace House With A Room Bq,Opposite Nicon Town Ikate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44294,5 Bedroom Detached House With 2 Room Bq And Swimming Pool,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +44295,3 Units Of 4 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44296,4 Bedroom Town House,Bakare Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,3 baths,4 Toilets,Agungi +44297,Fully Detached Large 4 Bedroom Duplex With Bq,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +44298,4 Bedrom Terrace Duplex,"Buene Vista Estate Lafiaji Lekki, Lagos Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,3 baths,5 Toilets,Chevron +44299,4 Bedrooms Semi Detached Duplex,Oral Estate Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44300,Imported Urban Marquee Tent,Alafia Lekki Lekki Lagos,₦,"20,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44301,Land,Beside Orchid Vgc Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44302,An Executive And Specious 3 Bedroom Flat With A Bq,U3 Estate Lekki Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +44303,7bedroom Water Front Mansion With Bq.,Friends Colony Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,4 baths,7 Toilets,Osapa London +44304,Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44305,Exquisite 4 Bedroom Terraced Duplex+bq In Osapa,Abiola Court Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44306,Plots Of Land,Before Eleko Junction Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44307,2 Plots Of Land,Bakare Estate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44308,4 Bedroom Duplex,Oae Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44309,Finished 4 Bedroom Terrace Duplex With Boys Quarter,2nd Round About Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +44310,Newly Built 3 Bedroom And 2 Bedroom Flat,Circle Shoprite At Osapa London Lekki Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +44311,Well Finished 4 Bedroom Terrace House With A Room Bq,Opposite Nicon Town Ikate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44312,4 Bedroom Semi Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44313,6 Units Of 3 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +44314,2 Wings Of 5bedroom Duplex,Jakande Estate Jakande Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +44315,Brand New 4 Bedroom Detached Duplex With Bq,Oladimeji Alao Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44316,4 Bedroom Terrace Duplex,Buene Vista Estate Off Chevron Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44317,Land For Sale,"Akinifesi Olusola, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44318,Land For Sale,Admiralty Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44319,2 Unit Of 4 Bedroom Detached Duplex With 1bq,"Atlantic View Estate,by Alpha Beach Lekki Chevron Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44320,4 Bedroom Terrace Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +44321,3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44322,3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44323,3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44324,5 Bedroom Duplex In Ikota,"Road 16, Ikota Villa Estate1 Ikota Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44325,5 Bedroom Fully Detached House,Royal Garden Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +44326,Newly Built 5 Bedroom Detached House,Royal Garden Estate Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +44327,Land ( Joint Venture ),Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44328,5 Bedroom Detached House,Admiralty Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44329,Land ( Joint Venture ),Ariori Tajudeen Street Off Alpha Beach Road By New Road Bustop Igbo Efo Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44330,Land ( Joint Venture ),Lekki Phase 1 Series A Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44331,Land ( Joint Venture ),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44332,Land ( Joint Venture ),Lekki Aldmalrity Axis Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44333,4 Bedroom Semi Detached House,"Westend Estate, Ikota Villa Estate 1 Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44334,Land ( Joint Venture ),"Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44335,4 Bedrooms Terrace Duplex For Sale In Chevron,Near Toll Gate Ajah Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44336,Uncompleted Duplex And 2 Storey Hall,Chevy View Idado Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +44337,An Office Space,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44338,A Plot Of Land,Beach Road Jakande Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44339,5 Bedroom Fully Furnished Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,6 baths,7 Toilets,Chevron +44340,5 Bedroom Duplex,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44341,4 Bedroom House,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44342,"1,000 Square Metres Of Fenced Land",Ben Okagbue Mba Street Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44343,"Old Building Of 2 Units Of 4 Bedroom Duplexes On 1,300 Square Metres",Ibiyinka Salvador Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44344,6 Bedroom Luxuriously Built Detached House With Penthouse On 3 Floors And Inbuilt Bq,Prince Adelowo Adedeji Street Junction Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets,Lekki Phase 1 +44345,Luxury 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44346,Land ( Joint Venture ),"On Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44347,Land ( Joint Venture ),"Off World Oil Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44348,Land ( Joint Venture ),Osapa London Lekki Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44349,Land For Sale,"Christ Avenue, Off Admiralty Road. Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44350,4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +44351,Mega Filling Station,"Eleko, Between Eleko And Ibeju Lekki Lekki Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44352,3 Bedroom Terrace Apartment (off Plan),Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"16,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +44353,4 Bedroom Duplex,Be Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44354,Semi Detached Duplex,Ocean Bay Estate After 2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44355,Newly Built 3 Units Of Duplex,Western Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikota +44356,Luxury Fully Detached 5 Bedroom,Chevron Road Chevron Lekki Lagos,₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +44357,A 4 Bedrooms Terrace Duplex,Association Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44358,A 4 Bedrooms Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44359,A 5bedrooms Fully Detached Duplex For Sale In Osapa London,Eletu Road Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44360,Lands,No:providence Street Shangotedo Ajah Lekki Phase 1 Lekki Lagos,₦,"2,600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44361,Luxury Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets,Chevron +44362,A Plot And Half Of Land,Beach Road Jakande Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44363,Beautifully Built Three Bedroom Terrace Building,Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44364,Newly Built Five Bedroom Fully Semi Detached House With One Room Servant Quaters,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44365,4 Units Of 3 Bedroom Duplexes,By South African Embassy Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +44366,4 Bedroom Semi Detached House With Bq,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44367,7 Bedroom Duplex,Awudu Ekpekha Blvd Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +44368,4 Bedroom Duplex With 2 Units Of 3 Bedroom Flats,Ikota Villa Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44369,3 Units Of 4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44370,Fantastic 5 Bedroom Fully Detached House,Richard Nwangu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44371,5 Bedrooms Duplex,Atlantic Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets,Chevron +44372,4 Units Of Three Bedroom Flat,Novojo Estate Agungi Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +44373,Land For Sale,Alma Beach (water Front). Ikate Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44374,Land For Sale,"Opposite Vgc, Facing Lagos Epe Expressway Vgc Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44375,Land For Sale,52 Plots Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"832,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44376,Land For Sale,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"832,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44377,Superb Newly Built 5br Duplex,Off Afrika Lane Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44378,5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44379,2 Bedroom Flat At Lekki Gardens After Lbs,Lekki Gardens After Lbs Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +44380,3 Bedroom Semi Detached,Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44381,3 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44382,6 Units Of 3 Bedroom Flat,Cromwell Court Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44383,Land ( Joint Venture ),By Castle And Temple Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44384,"A 5 Bedroom, Fully Detached Duplex",Oba Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44385,"A 5 Bedroom, Fully Detached Duplex",Oba Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +44386,Detached Duplex (construction On Going) 4 Bedroom With A Bq,Dolo Oyekan Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44387,Newly Built 5 Bedroom Room Duplex.,Akin Legh Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44388,4 Bedroom Duplex,Kss Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44389,5 Bedroom Detached House,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +44390,3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44391,3 Bedroom Terrace House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +44392,5 Bedroom Detached House,"Peanock Estate Behind 2nd Shoprite,lekki Lekki Phase 1 Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44393,Luxiriously Finished 2 Bedroom Apartment,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +44394,4 Bedroom Duplex And 2bq Attached,Road 47b Vgc Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets,Victoria Garden City +44395,Land For Sale," Max Film Cinema, Cbd Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44396,Land For Sale,Lilygate Hotel Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44397,Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44398,Exclusive 4 Bedroom Townhome,"After Nicon Town Behind Globe Motors, Agungi, Lekki Agungi Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,1 Toilets,Agungi +44399,Land For Sale,4th Round About Lekk Ikate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44400,Land For Sale,4th Round About Lekk Ikate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44401,Land ( Joint Venture ),Lekki Rhs Whites And School Area Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44402,Land ( Joint Venture ),"Block 139 Plot 3,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44403,Luxury 5 Bedroon Ensuite Duplex,Within Chevron Axis Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44404,Luxury 5 Bedroon Duplex,Chevron Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44405,Land For Sale,Christ Avene Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44406,5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44407,4 Bedroom Detached Duplex,"Plot 6 Block Iii, 16a, Oladimeji Alao Street, Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44408,3 Bedroom Flat,Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +44409,"3 Bedroom Flat And 2 Bedrooms Flat, With A Servant Quarters Each",Chief Austin Anozie Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +44410,5 Bedroom Semi Detached Duplex,Within Chevron Axis Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +44411,5 Bedroom Fully Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44412,5 Bedrooms Luxury Detached House With 1 Room Bq,Lekki County Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44413,Tastefully Finished 5 Bedrooms Luxury Semi Detached House + 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +44414,Tastefully Finished 5 Bedrooms Fully Detached House With 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44415,A 6 Storey Building Hotel With 153 Rooms,Along Chevron Drive. Chevron Lekki Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Chevron +44416,Tastefully Built Brand New 5 Bedrooms Fully Detached House With 1 Room Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44417,4 Nos Brand New Tastefully Finished 5 Bedrooms Fully Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44418,5 Bedroom Detached House With 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44419,Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44420,4 Bedroom Detached Houses,By Ascon Filling Station Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44421,5 Bedroom Duplex + Bq,White Sand School Rd Ask Bencom Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44422,Exquisitely Finished State Of The Art 4 Bedroom Detached House With Swimming Pool,Olumide Bamidele Street Idado Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44423,Luxury 12 Unit Of 3 Bedroom Flat,Road 7 Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44424,2 Bedroom Luxury Apartment,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,0 Toilets,Lekki Phase 2 +44425,3 Bedroom Flat With 1 Room Servant Quarter,Chevy View Estate Idado Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44426,1222sqm Of Land,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44427,4 Unit Of 4 Bedroom Terrace Duplex,Wonder Church Road Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44428,A Plot Of Land,Abraham Adesanya Round About Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44429,5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +44430,5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44431,5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44432,3 Bedroom Terrace Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44433,5 Bedroom Fully Detached House With A Room Bq,West End Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44434,4 Bedroom Fully Detached Duplex,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44435,7 Plots Of Land,Ajah Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44436,Four Bedroom Semi Detached Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44437,Land For Sale,Auto Germaine Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44438,5 Bedrrom Fully Detached House With A Room Bq,Awobode Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44439,4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +44440,House /land,Royal View Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,6 beds,5 baths,5 Toilets,Ikota +44441,648 Square Metres Of Land,Awoyaya By Mayfair Garden Igbo Efon Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44442,5 Bedroom And 4 Bedroom Detached Duplex,Chevy View Estate By Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44443,4 Bedroom Semi Detached House With Bq,Durosimi Etti Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44444,Land ( Joint Venture ),Rasheed Williams Street Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44445,4 Bedroom Semi Detached House With Bq,Durosimi Etti Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44446,"Brand New 5 Bedroom,in Ensuite Fully Detached House With A Room Bq",Lekki Parse2 Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +44447,Brand New 5 Bedroom Fully Detached House With A Room Bq,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +44448,3 Bedroom Duplex,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +44449,4unites Of 5 Bedroom Duplex With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44450,4bedroom Duplex With Swimming Pool,Ajah Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +44451,Land,Lekki Opposite Lagos Business School Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44452,Newly Constructed And Well Furnished 4 Bedroom Semi Detach Ed House + 1 Room Bq,Apena Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44453,1100.0 Square Meter Land,Pin Nock Beach Lands Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +44454,Apartment Newly Built 3bedroom Flat,Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets,Osapa London +44455,6 Units Of Luxury 2 Bedroom Service Apartment,Osapa London Osapa London Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets,Osapa London +44456,Tastefully Finished 4 Bedroom,Beside Circle Mall Jakande Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44457,3 Bedroom Luxury Apartments,Friends Colony Jakande Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +44458,Exquisite 5 Bedroom Duplex + Pent House,Victoria Park Serviced Estate Jakande Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44459,Semi Detached 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44460,Three Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44461,Land With Global C Of O,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"126,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44462,3 Bedroom Flat,Behind Romay Gardens Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +44463,Newly Built 3 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44464,4 Bedroom Fully Detached Duplex With Bq,Before Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +44465,5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44466,6 Bedroom Detached House With 2 Rooms Bq,Nicon Town Chevron Lekki Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +44467,5 Bedroom Detached House With 2 Rooms Bq,Nicon Town Chevron Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44468,4 Bedroom Detached House With Bq,Nicon Town Chevron Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44469,A Plot Of Land Measuring 1000sqm,Zone B Chevron Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44470,A Plot Of Land Measuring 1000sqm,Zone A Chevron Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44471,A Plot Of Land Measuring 1200m2,Nicon Town Chevron Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44472,3 Bedroom Flat At Chevron For Sale #35m,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44473,4 Bedroom Semi Detached,Ikota Villa Estae Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44474,5 Bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,6 baths,5 Toilets,Ikota +44475,A 5 Bedroom Semi Detached Duplex,"Lekki County Homes, Mega Chicken Lagos Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44476,7 Bedroom Duplex All Room Ensuit,Road 5 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,7 beds,6 baths,5 Toilets,Ikota +44477,5bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44478,For Sale: Brand New 5 Bedroom Fully Detached House With Bq,"Lekki County Estate, Ikota, Lekki . Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44479,2 Nos Of 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44480,Shop,Jakande Jakande Lekki Lagos,₦,"700,000",0,0,0,1 beds,1 baths,0 Toilets,Other Lekki +44481,5 Bedroom Duplex And 2 Units Of 3 Bedroom Flat,Lekki Igbo Efon Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,5 Toilets,Other Lekki +44482,Land,Westwood Estate Ikota Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44483,4 Bedroom Terrace Duplex With A Maid Room,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44484,4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44485,5 Bedroom Detached House,Eruifa Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +44486,4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44487,4 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44488,4 Bedroom Semi Detached Duplex N62m And 5bedroom Fully Detached Duplex For N75m.,Circle Shoprite Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Osapa London +44489,Block Of Flats,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44490,Land ( Joint Venture ),Lekki Phase 1 Behind Tantalizer Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44491,4 Bedroom Semi Detached Duplex,Off Ikota Villa Road Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44492,7 Bedroom With 2 Rooms Bq Mansion,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +44493,"2,100 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44494,2 Story Building And An Uncompleted Duplex,Chevron Estate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44495,Land,"Majek, Close To Crown Estate Shoprite Lekki Phase 2 Lekki Lagos",₦,"22,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44496,Exclusive 5 Bedroom Duplex,Herbert Orgi Street (7th Avenue) Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,7 baths,7 Toilets,Osapa London +44497,Shell 2 Bedroom Apartment @ Lekki Gardens Horizon 2 Estate For Sale,"Meadow Hall Way Lekki Gardens Horizon 2 Estate, Ikate Elegushi, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"18,500,000",0,0,0,2 beds,1 baths,3 Toilets,Lekki Phase 1 +44498,2 Bedroom Serviced Apartments,Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +44499,Land With Global C Of O,1 Km From Dangote Refinery Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44500,Land With Global C Of O,I Mile From Dangote Refinery Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44501,Land,Rich Mall Estate Chevron Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44502,2 Wings Of A Luxury 4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +44503,Plots Of Land At Vgc Lekki,Vgc Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44504,5 Bedroom Fully Detached Duplex With Bq,Idado Street Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44505,3 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +44506,4 Bedroom Semi Detached Duplex (governor's Consent),Ikota 1st Gate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44507,Land,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44508,Land For Sale,Chevron Twin Lake Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44509,Luxury 5 Bedroom Duplex With Swimming Pool,Road 3 Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +44510,5 Bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44511,4 Bedroom Terrace,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +44512,Land For Sale,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44513,9 Bedroom Detached House,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,9 beds,9 baths,9 Toilets,Victoria Garden City +44514,Beautiful 4 Bedroom + Bq Semi Detached In A Secured Gated Enviroment,By 2nd Toll Gard Ikota Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44515,Beautiful 4 Bedroom + Bq Semi Detached In A Secured Gated Enviroment,By 2nd Toll Gard Ikota Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44516,5 Bedroom Fully Detached Duplex With A Pool,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44517,5 Bed Room For Sale,Yeye Olofin Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds,5 baths,6 Toilets,Lekki Phase 1 +44518,Land For Sale,Plot 99/100 Maiyegun Tourism Zone Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44519,5 Bedroom Duplex,James Adejumo Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44520,5 Bedroom Duplex,"Idado Road, Lekki Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44521,Luxurious 4 Bedroom Duplex,Ikota Gate 2 Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +44522,5 Bedroom Duplex,Idado/ Igbon Efon Street Agungi Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44523,Luxury 4 Bedroom Duplex (all Ensuit),Lekki County Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44524,A 2 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +44525,Land,Free Trade Zone Lekki Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44526,Block Of Flats,Jerry Iriabel Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +44527,3 Bedroom Duplex,Mega Chicken Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44528,3 Bedroom Flat,Hope Hariman Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +44529,Land,Tunde Laitan Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44530,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44531,12 Unit Apartment 3 Bedroom Apartment,Road 5 Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44532,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44533,Land For Sale,Eletu Agungi Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Agungi +44534,5 Bedrooms Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44535,"A Mega Shopping Mall , ( Sitting On Total Area 3000sqm)",Chevron Lekki Chevron Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,9 Toilets,Chevron +44536,Block Of Flats,Olushola Agbaje Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets,Lekki Phase 1 +44537,4 Bedroom Bungalow And A Room Boys Quarters With 24/7 Power Supply,Lekki Epe Expressway Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44538,5 Bedroom Duplex With Two Room Bq,"Lake View Park 2, Orchid Road Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44539,Brand New Semi Detached Town House,Chevron Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44540,Newly Built 4 Bedroom Duplex,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44541,Newly Built 5 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44542,4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44543,5 Bedroom Detached House,Awobode Abiodun Street Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +44544,5 Bedroom Town House,Elegushi Ikate Lekki Lagos,₦,"48,500,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +44545,"Land For Sale At Stonehenge Estate, Lekki",Eti Osa Reservation Road Chevron Lekki Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets,Chevron +44546,Land For Sale,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44547,A Luxury Solar Powered 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44548,4 Bedroom Terrace Luxury Apartment,"3, Michael Olawale Cole Street, Off Ladipo Latinwo Crescent, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +44549,Tastefully Built 3 Bedroom Flat With + Bq,Ask Bencom Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44550,8 Units Of Semi Detached 4 Bedroom Duplex At Lekki,Van Daniels Street Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +44551,3 Bedroom Terrace Duplex At Lekki,Victoria Adode Kobiti Street Orchid Hotel Road Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44552,4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44553,4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44554,5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44555,Land With 2 Demolish Able Bungalows,Behind World Oil Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +44556,Luxury 5 Bedroom Fully Detached Duplex With Staff Quarters,"7 Avenue, Ocean Palm Estate Lekki. Ikota Lekki Lagos",₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44557,Newly Built 12 Units 3 Bedroom Apartments,Royal Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +44558,Land For Sale,Ikate Lekki Lagos,₦,"75,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44559,Land For Sale,Ikate Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44560,Land ( Joint Venture ),Beside Oriental Hotel Sharing Fence With Tanzan Jetty Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44561,4 Bedroom Duplex,"Pennisula Garden Estate , Ogombo Lekki,lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +44562,Massive Brand New Luxuriously Finished And Smart 4 Bedroom Detached House With Boys Quarters,Ikota Ikota Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44563,Brand New 3 Bedroom Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +44564,Modern 4 Bedroom House In A Gated Community,Near Domino's Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44565,Luxury 4 Bedroom Terrace Duplex In Lekki,Elegushi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +44566,4 Bedroom Detached With 1 Room Bq,"Olumide Bamidele Street, Idado, Off Lekki/epe Expressway Idado Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +44567,5 Bedroom Detached House With 2 Room Bq,"Sola Oguntade Close, Off Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44568,3 Bedroom Flat Super Finished + Bq,Onna Lane Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44569,3 Units Of 4 Bedroom Terence Duplex,"Immediately After Chevron Toll Gate, Buene Vista Estate Lafiaji Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44570,5 Bedroom Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44571,Building With C Of O,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44572,4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +44573,4 Bedroom Semi Detached House,Road 16 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44574,5 Bedroom Duplex,Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44575,5 Bedroom Fully Detached,Charles Ifeanyi Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44576,Genuine Land,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"600,000",0,0,0,0 beds,1 baths,0 Toilets,Lekki Phase 1 +44577,4 Bedroom Fully Furnished Terrace,Victoria Crest Vgc Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +44578,4 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44579,4 Bedroom Deluxe Fully Detached Duplex,Whitesand School Street Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44580,6 Units Of 4 Bedroom Duplex With A Bq,Off Elf Estate Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +44581,5 Bedrooom Detached House With 2 Rooms Bq And A Swimming Pool On 550 Square Metres Of Land,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44582,5 Bedrooms With 2 Bedrooms Bq Fully Detached,Abimbola Okunlaja Street Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44583,4.2 Hectare Of Land,Jakande Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44584,Brand New 5 Bedroom Fully Detached House With Bq In Lekki,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44585,Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44586,Exotic 3 Bedroom Blocks Of Flats In Igbo Efon,Lekki Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +44587,4 Bedroom Fully Detached Duplex + An Ensuite Bq,Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +44588,7 Bedroom Duplex Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,8 baths,9 Toilets,Lekki Phase 1 +44589,Astonishing 5 Bedroom Detached House +bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44590,4 Bedroom Duplex,"Westend Estate, Ikota Villa Estate, Lekki Lagos. Ikota Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44591,For Sale: Brand New Luxury 5 Bedroom Fully Detached House With Bq,Lekki Ikota Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44592,For Sale: Brand New 3 Bedroom Exquisitely Finished Terrace Duplex With Bq,"Ikota Villa Estate, Ikota, Lekki Ikota Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +44593,Furnished 4 Bedrom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44594,Brand New 4 Bedroom Semi Detached House With Bq,"Orchid Hotel Road, Lekki 2nd Toll Gate, Lekki. Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44595,Fully Service 4 Bedroom Detached House,"Jakande, Lekki Jakande Lekki Lagos",₦,"112,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44596,Newly Built And Well Finished 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +44597,Tastefully Well Finished 3 Bedroom Services Appartment With Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +44598,"Exquisite Well Finished 5 Bedroom Detached Duplex, With Bq,",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44599,"Tastefully Well Finished 5 Bedroom Detached Duplex, With Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44600,"Tastefully Well Finished 5 Bedroom Detached Duplex, With 2 Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44601,4 Bedroom Duplex,Osapa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44602,Newly Built And Well Finished 4 Bedroom Terrace Duplex,"Ikate, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44603,10.9 Hectares Of Land,Maiyegun Lekki Phase 2 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44604,3 Bedroom Duplex,Meadow Hall Road Ikate Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44605,4 Bedroom Terrace Duplex,Chevron Office Lekki Axis Chevron Lekki Lagos,₦,"141,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44606,A Stylish 5 Bedroom Duplex In Lekki,Hakeem Dickson Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44607,Lovely 3 Bedroom Apartments,Lekki Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +44608,4 Bedroom Semi Detached Duplex,Behind The Cathedral Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +44609,16 Units Of Semi Detached 4 Bedroom Duplex At Lekki,South Lake Homes Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44610,Well Finished 4 Bedroom Duplex Ensuite,"Oral State Behind Oando Filling Station Close To The Second Toll Gate, Lekki Express Way Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +44611,4 Bedroom Duplex With A Room Bq,Napier Garden Ikota Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44612,4 Bedroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44613,5 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"49,500,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +44614,4 Bedroom Terrace Duplex,Km39 Lekki Epe Expressway Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44615,5 Bedroom Duplex,Meadow Hall Rd Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44616,Luxurious Fully Detached 5 Bedroom Duplex,Whitesand Street Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +44617,4 Bedroom Terrace Duplex With Bq,"Lekki,epe Expressway Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44618,7 Bedroom Duplex,Christ Avenue Street Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,7 beds,7 baths,9 Toilets,Lekki Phase 1 +44619,Tastefully Finished Brand New 5 Bedroom Ensuite Detached Duplex With Bq And Swimming Pool,Off From Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44620,5bedroom Detached House With 2roooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44621,Land ( Joint Venture ),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44622,5 Bedroom Detached Duplex With Bq,Chevy View Chevron Lekki Lagos,₦,"57,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +44623,5 Bedroom Duplex Fully Detached,Nicon Road Lekki Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44624,4 Bedroom Duplex,Salem Street Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44625,4 Bedroom Serviced Townhouse Plus Bq,Seagate Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +44626,Land For Sale,Bakare Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +44627,Land For Sale,Spar Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44628,Land For Sale,Spar Road Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44629,Land For Sale,Victory Park Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44630,Land For Sale,Victory Park Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44631,Land For Sale,Ologolo Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +44632,Land For Sale,Peace Garden City Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44633,Land With Lagos State Full Title,Baale Street Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44634,5 Bedroom Detached House,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44635,Block Of 6 Flats 4 Units Of 3 Bedroom Flat And 2 Units Of 2 Bedrooom Flat In Agungi,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +44636,4 Bedroom Terrace House,Amadasun Street Igbo Efon Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44637,3 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44638,Land For Sale,Off Kusenla Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44639,5 Bedroom Semi Detached Duplex With A Room Bq,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44640,1 Bedroom Apartment Fully Finished,Scintilla Chevron Lekki Lagos,₦,"14,500,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +44641,Land For Sale,Off Kusenla Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44642,Land ( Joint Venture ),Off Allan Balogun Street Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44643,Land ( Joint Venture ),Off Igbo Efon Gra Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44644,Land For Sale ( Joint Venture ),Royal Garden\ Scheme Phase 2 Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44645,Land For Sale ( Joint Venture ),Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44646,Land ( Joint Venture ),Eti Osa Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44647,Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44648,Land ( Joint Venture ),Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44649,Block Of 6 Flats 4units 3bedroom Flat & 2units 2bedroom Flat,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets,Agungi +44650,Land For Sale,Ikate Off Kusenla Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44651,Land,Lekki Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44652,4 Bedroom Semi Detached With Penthouse,Chevrom Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44653,"2nos, Brand New 5bedrooms Fully With Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44654,Land ( Joint Venture ),Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44655,4 Bedroom Detached Bungalow,"Close 25, Off Road 2 Vgc Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +44656,Affordable Land,Abraham Adesanya Ikate Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44657,Land,Lakeview Estate Phase 2 Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44658,Brand New 5 Bedroom Fully Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"460,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44659,7 Bedroom House,Ikota Ikota Lekki Lagos,₦,"145,000,000",0,0,0,7 beds,7 baths,6 Toilets,Ikota +44660,Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44661,4044sqm Of Land Directly Facing Lagoon,Water Front Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44662,5 Bedroom Duplex,"Road 6, Olushola Harris Street Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,7 Toilets,Lekki Phase 2 +44663,Newly Built 4 Bedroom Back House With A Room Bq,"Emmanuel Emenike Street, Lekki. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44664,450 Square Metres Of Land,Victory Park Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44665,500 Square Metres Of Land,Victory Park Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44666,100 Square Metres Of Land,Victory Park Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44667,900 Square Metres Of Land,Victory Park Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44668,2 Bedroom Flat In Osapa London,Osapa Osapa London Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +44669,Well Serviced 3 Bedroom Flat,The Horizon Estate Ikate Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44670,Land,Aroromi Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44671,"Gym. Intercom System. 2 Nos, Brand New 5 Bedroom Fully Detached Duplex With Bq. Swimming Pool",Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44672,3 Bedroom Flat,Prime Waterview Gardens 2 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets,Lekki Phase 1 +44673,5 Bedroom Detached House With 2bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44674,5 Bedroom House,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44675,4 Bedroom Terrace Duplex,Meadow Hall School Road Ikate Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +44676,Tastefully Finished 8 Units Of Brand New 5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44677,25 Units Of 4 Bedroom Luxurious Terrace With Bq,"Off Chevron Drive, Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44678,Land For Sale,Ilasan Village Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44679,Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44680,Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44681,Land For Sale,Off Allan Balogun Street Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44682,Land For Sale,Igbo Efon Gra Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44683,Land For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44684,Well Furnished With Properties,Lekki 2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44685,4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44686,Land For Sale,Nicon Town Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44687,5 Bedroom Detached House,Idado Estate Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44688,5 Bedroom Duplex,Providence Road Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +44689,4 Bedroom Terrace Duplex,Meadow Hall School Road Ikate Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +44690,895 Sqm Land With Cofo,Block 23 Lekki Phase 2 Lekki Lagos,₦,"35,750",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44691,4 Bedroom Duplex With 2 Room Bq And Laundry Room,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +44692,800 Sqm Of Land,Spar Road Lekki Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44693,2 Nos Brand New 5 Bedroom Fully Detached House With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44694,2 Nos Of Brand New 5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44695,5 Bedroom Luxury Apartment,Banana Island Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,4 Toilets,Chevron +44696,3 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44697,2 Units Of 5 Bedrooms + 2 Rooms Bq Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44698,"Brand New 5 Bedroom Fully Detached House With A Room Bq,","Agungi, Lekki Agungi Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Agungi +44699,3 Bedroom Duplex At Lekki Gardens Phase 2.,Lekky Gardens Phase 2. Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,5 baths,5 Toilets,Lekki Phase 2 +44700,5 Bedroom Semi Detached House,Victory Park Estate Ikate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44701,Well Finished 5 Bedroom Duplex,Lekki Strret Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44702,Plot Of Land,Opposite Puri Mall Vgc Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44703,Well Finished (2 Nos) 4 Bedroom Terrace Duplex,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44704,4 Bedroom Semi Detached Duplex,Closed Street Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +44705,Land For Sale,"Sikiru Alade Oloko Crescent, Close To Italian Int'l School, Off Anjous Drive Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44706,Land For Sale,Block 57a Plot 1 &2 Sikiru Alade Oloko Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44707,Land For Sale,Adebisi Ogunniyi Street Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44708,Land For Sale,Blk 140 Plot 6 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44709,Land For Sale,"Block 68 Plot 3, Abike Sulaimon Off Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44710,Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44711,Land For Sale,"Prof Kiumi Street, Off Akwuzu Street Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44712,Land For Sale,"7 Iweanya Ugboh Street, Off Bisola Durusemietti Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44713,Land For Sale,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44714,5 Bedroom Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44715,5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +44716,Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44717,New Fully Detached 5 Bedroom Duplex With Bq In Agungi,"Dele Ogunade Street By Friends Colony, Agungi, Lekki Agungi Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44718,Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Happy Gardens Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +44719,5 Bedroom Duplex,"Animashaun Street, Chevy View Estate Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,5 Toilets,Chevron +44720,Waterfront Land,Beside Landmark/ Water Corporation Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44721,Tastefully Built 28 Units 4 Bedroom Terrace House,5th Avenue Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +44722,Land For Sale,Sikiru Alade Oloko Crescent Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44723,Land For Sale,Alma Beach Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44724,Land For Sale,Banana Island Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44725,19 Months Old Solid 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +44726,Land,Walton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"16,200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44727,24 Units Of 3 Bedroom Apartment With A Bq,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +44728,12 Units Of 2 Bedroom Terrace Flat,Chevy View Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +44729,Newly Built 4 Bedroom Semi Detached Duplex With A Mini Flat As Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44730,Newly Built 4 Bedroom Terrace Duplex With 1room Bq.,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44731,4 Units Of 3 Bedroom Terrace Duplex,Oyibo Adjarho Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +44732,2 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +44733,3 Bedroom Apartment,Femi Okunnu Estate Ph 4 Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +44734,5 Bedroom Duplex,"Dosek Close, Off Alternative Route Behind Chevron Hq Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44735,New 8 Units Of 4bedroom Terraces With Bq,"Dele Ogunade Street By Friends Colony, Agungi, Lekki Agungi Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44736,Land,Monastery Road Novare Mall Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44737,Newly Built 4 Bedroom Duplex With Bq,Osapa Gra Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +44738,Tastefully 4 Bedroom Duplex With Bq,"Mini Estate, Osapa London Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +44739,4 Bedroom Luxury Penthouse With Gym & Pool,"Noah Court, Chevron , Lekki Lagos. Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44740,5 Bedroom Duplex,"Dosek Close, Off Alternative Route Behind Chevron Hq Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44741,"4 Units Of Tastefully Finished 4 Bedrooms, Semi Detached Duplex",After Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +44742,Land For Sale,Chevron Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44743,Brand New 5 Bedroom Fully Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +44744,5 Bedroom Apartment With Excellent Facilities,Lekki Jakande Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +44745,5 Bedroom Flat With A Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +44746,5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +44747,4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44748,5 Bedroom Semi Detached Duplex,Omonrire Johnson Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +44749,Featured 4 Bedroom Semi Detached Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44750,5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44751,A Plot Of Land At Lekki,Orange Ville Estate Vgc Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44752,A 3 Bedroom Duplex At Ajah With 2.5m,After Abraham Adesanya Roundabout Vgc Lekki Lagos,₦,"2,500,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Garden City +44753,4 Bedroom Terrace Duplex,Meadow Hall Schools Road Ikate Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44754,Fully Detached 4 Bedroom Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Osapa London +44755,A 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikota +44756,4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +44757,Luxury 5 Bedroom Duplex With Excellent Facilities,Ikota County Homes Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44758,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44759,4 Bedroom Detached Duplex,Lara Ademola Street Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +44760,5 Bedroom Duplex,Lekki County Home By Megamound Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44761,5 Bedroom Detached House,Nicon Town Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44762,New 4 Bedroom Semi Detached Duplex,"Chief Ugochukwu Orji Street Behind Spg, Igbo Efon, Lekki, Lagos. Igbo Efon Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44763,Luxury Finished Ocean View 5 Bedroom Fully Detached Duplex,Kensington Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44764,Plots Of Land,Bogije Ikota Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44765,Newly Built 5 Bedroom Duplex,Royal View Estate Opp Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44766,Land For Sale,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44767,Land For Sale,Ebano Supermarket Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44768,Land For Sale,Ndb Behind Uba Or Catholic Mission Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44769,Land For Sale,Chevron Chevron Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44770,Land,Lekky County Homes Ikota Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44771,5 Bedroom Fully Detached Twin Duplex,Plot 2 Block A6 Shafi Sule Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44772,Newly Built Executive Luxury 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44773,Genuine Plots Of Land With Good Title Documents,Off Monastery Road Lekki Phase 1 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44774,4 Bedroom Duplex,Pinnock Jakande Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +44775,Exquisite Newly Built 4 Bedroom Semi Detached Duplex At Agungi,Abdur Raufu Obitayo Street Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44776,4 Bedroom Terrace House,2nd Roundabout Lekki Phase 2 Lekki Lagos,₦,"7,600,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +44777,A 3 Bedroom Duplex,Ajah Vgc Vgc Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Garden City +44778,3 Bedroom Apartment With Bq,Opposite House On The Rock Church Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,5 Toilets,Ikate +44779,Land With Certificate Of Occupancy,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44780,2 Bedroom Flat,Chief Ugochukwu Orgi Street Igbo Efon Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +44781,2 Bedroom Serviced Apartment With 1 Bq,Baale Street Igbo Efon Lekki Lagos,₦,"29,500,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +44782,Well Finished 5 Bedroom Detached House,By Oba Palace Way Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +44783,Well Finished 4 Bedroom Duplex,By Oba Palace Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44784,Land For Sale,Oniru Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44785,Land For Sale,Oniru Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44786,Nicely Built Semi Detached Duplex At Lekki,Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44787,4 Bedroom Detached Duplex,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44788,5 Bedroom Detached Duplex,0ff Chrevon Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44789,4 Bedroom Terraced House,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44790,5 Bedroom Detached Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44791,5 Bedroom Duplex Wit Bq,Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44792,4 Bedroom Terrace House,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44793,3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Ikate +44794,5 Bedroom Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +44795,4 Bedroom Detached House,Orinru Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44796,5 Bedroom Duplex With Bq,Prime Water Garden Ikate Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +44797,Lovely 6 Bedroom Detached Duplex At Lekki,Providence Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +44798,Nicely Finished 4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44799,Exquisitely Finished 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets,Osapa London +44800,6 Bedroom Duplex,Chevron Round About Chevron Lekki Lagos,₦,"68,000,000",0,0,0,6 beds,6 baths,6 Toilets,Chevron +44801,2 Bedroom Flat,Off Chevron Drive Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +44802,3 Bedroom Flat In Chevron,Off Chevron Drive Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44803,3 Bedroom Flat,Off Chevron Drive Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44804,5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44805,4 Bedroom Terraced House,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +44806,Land For Sale,Fara Park Estate Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44807,3 Bedroom Flat,Opp Shoprite Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +44808,"Wonderfully Recently Built And Renovated 5 Bedroom, 6 Bathroom With An Attached Bq Detached Duplex",Thomas O Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +44809,Superb 4 Bedroom Duplex In Chevron,Lafiaji By Eleganza Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44810,30 Units 3 Bedroom Luxury Apartment,Osapa London Extension Agungi Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +44811,700 Square Meters Land With C Of O,Beach Resort Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44812,24 Units Of 3 Bedroom Flat,"In An Estate At Ikota, Next To Eleganza. Ikota Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikota +44813,Corner Plot Of Land,Esther Adeleke Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44814,Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44815,Land,Free Trade Free Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +44816,Land,Orimedu Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets,Lekki Phase 2 +44817,84 Hectares Of Land,"Chevron Drive, Ojo Olokun Chevron Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44818,A Unit Of 4 Bedroom Terrace Duplex With Maid's Room,"Alh Agbeko Sanyaolu Street, Off Barr. Paul Nwachukwu Street, Allan Balogun, Ajiran Lekki Agungi Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44819,5 Bedroom Duplex,Chevyview Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,0 Toilets,Lekki Phase 1 +44820,5 Bedroom Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +44821,Land,Crown Estate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44822,A Bare Land In An Exclusive Secured Estate,Fountain Spring Vile Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44823,Brand New 5 Bedroom Fully Detached Duplex With Bq,Ad Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44824,Tastely Finished 4 Bedroom Detached Duplex With Bq In Igbo Efon,Ologolo Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44825,Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44826,A Multipurpose Choice Landed Property,"Lekki Epe Expressway, Abijo Gra, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44827,Land,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44828,6 Bedroom Tastefully Finished Detached House On 3 Floors,Off Kazeem Eletu Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,6 beds,7 baths,6 Toilets,Osapa London +44829,Tastefully Finished 4 Bedroom Duplex With A Bq,Pinnock Beach Estate Road Osapa London Lekki Lagos,₦,"138,000,000",0,0,0,4 beds,6 baths,7 Toilets,Osapa London +44830,New 3nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44831,4 Bedroom Terraced Duplex,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +44832,4 Bedroom Serviced Apartment,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44833,5 Bedroom Fully Detached Town House,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44834,7 Bedroom Fully Detached Duplex,Royal Crown Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +44835,4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44836,4 Bedroom Semi Detached Duplex,Westend Estate. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44837,2 Units Of 4 Bedrooms Semi Detached House,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44838,"Corner Piece Measuring 6,010.424sqm",Lekki Pennisula Scheme 1 Ikate Lekki Lagos,₦,"810,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44839,3 Bedroom Apartment,Chevy Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44840,"3 Bedroom Flat (2nd, 3rd, And 4th Floor)",Lekki Horizon 1 Ikate Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44841,Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44842,Brand New 4 Bedroom Semi Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44843,Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44844,Brand New Massive 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44845,Brand New 4 Bedroom Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44846,Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44847,Brand New 4 Bedroom Semi Detached House With Bq In Ikota,Westend Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44848,2 Units Of Newly Built 4 Bedroom Duplex,No 14 Road 26 Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44849,2 Bedroom Flat,Westend Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +44850,Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +44851,3 Bedroom Apartment,Gated Community Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44852,4 Bedroom Duplex,Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets,Osapa London +44853,600sqm Of Land,Ajah Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +44854,4 Bedroom Duplex,Pinnacle Filling Station Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +44855,3 Bedroom Apartment,"Grandville Estate, Lekki Phase 1 Via Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +44856,Tastefully Finished 5 Bedroom Duplex With Bq In Lekki,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44857,Luxury 5 Bedroom Detached Duplex With Bq,Inside Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44858,"Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool, 2 Bedroom Bq And Cinema Studio",Close To Second Round About. Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44859,Land With Structure On It,Road 12 Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44860,5 Bedroom Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44861,4 Bedroom Detached House,Chief Ralph Okpon Street Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44862,5 Bedroom Duplex,"Westend Estate, Ikota Ikota Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44863,3 Bedroom Flat,Otunba Olufeko Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44864,4 Bedroom Terrace,Benue Vista Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44865,4 Bedroom Fully Detached Duplex In Ikota,"6b, Road 22, Ikota Villa Estate Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44866,6 Units Of Newly Built 3 Bedroom Flat In Lekki,"1, Ugochukwu Orji Street Agungi Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +44867,Luxury 3 Bedroom Terrace,Orchid Hotel Road Chevron Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44868,2 Bedroom Flat,Chevy View Estate By Chevron Drive Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +44869,3 Bedroom Flat,Chevy View Estate By Chevron Drive Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +44870,4 Bedroom Semi Detached Duplex,Olabisi Close Oral Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44871,2 Buildings On A Piece Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44872,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Southern Lake View Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +44873,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lao's Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44874,Brand New 12 Nos Of 2 Bedroom Flat In Ikate,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44875,Beautiful 4 Bedrooms Semi Detached Duplex With A Room Bq,Off Road 1 Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +44876,3 Bedroom Terrace Duplex,Lekki Garden Estate Phase Ii Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44877,3500sqm Of Land,Kunsela Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44878,5 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets,Ikota +44879,5 Units Of Newly Built 5 Bedroom Terrace Duplex In Lekki,"8, Adedeji Adekola Close Lekki Phase 1 Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44880,A Mega Shopping Mall Building,Chevron Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44881,2 Bedroom Luxury Apartment,Chevron Chevron Lekki Lagos,₦,"87,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +44882,"4 Bedroom Contemporary Terrace Duplex , With Pool, Gym, 24hours Light And Security",Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +44883,Luxurious 3 Bedroom Flat,Spar Road Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44884,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44885,New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44886,A Newly Built 4 Bedroom Terrace Duplex In Lekki,Michael Olawale Cole Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44887,3 Units Of 4 Bedroom Terrace Duplex In Lekki,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44888,4 Bedroom Terrace House,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44889,Land,Close To Lekki Epe Express Way Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44890,New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +44891,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44892,4 Bedroom Duplex,Close To Ilbagno Lekki Phase 1 Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44893,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44894,5 & 4bedroom Duplex,Ologolo Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +44895,4 Bedroom Terrace With Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +44896,Brand New 5 Bedroom Duplex + Bq In Lekki,R.t. Lawal Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44897,Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44898,"10,000 Sqm Of Land",Beside Northwest Filling Station Vgc Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44899,23 Plots Of Land,Beside Royal Garden Estate. Vgc Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +44900,"2,900 Sqm Of Land",Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +44901,"23,000 Sqm Of Land",Beside Femi Okunnu Jakande Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44902,6400sqm Of Land,Jakande Estate Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44903,2600 Sqm Of Land,Beside Germain Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44904,"11,000 Sqm Of Land","Beside Mercedes Benz,ikate Elegunshin Ikate Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +44905,"100,000 Sqm Of Land",Itedo Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44906,5 Bedroom Detached House With 2 Bedroom Bq,"Ahmed Ojikutu By Friends Colony Estate, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,0,0,7 beds,7 baths,6 Toilets,Agungi +44907,New 12 No's 2bedroom Flat For Sale Opposite House,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44908,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lao's Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +44909,Land,Ogombo Town Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44910,Luxury 5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +44911,New 12 No's 2bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44912,"New House 4bedroom Terrace Building All Rooms Ensuit, Fitted Kitchen, Treated Borehole Water, Ample Parking Space Pop Finishing At Osapa London Lekki",Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +44913,4 Bedroom Terrance,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44914,Brand New Fully Detached 5 Bedroom Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44915,Urgent Sale Of 865sqm Land,"Off Pionner Street, En Route Wakanow Travel Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets,Ikate +44916,12 Units Of 2 Bedroom Apartments,"Prince Samuel Adedoyin Way, Ikate Lekki Phase 1 Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets,Lekki Phase 1 +44917,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44918,Luxury Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44919,3 Bedroom Terrance House,Orchid Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +44920,"4 Bedroomduplex With Fited Ac, Tv, Cooker Etc",Ikota Lekki Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,6 Toilets,Ikota +44921,10 Plots Of Land In Lekki Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44922,3 Bedroom Terrace Duplex,Lekki Gardens Road By Abraham Adesanya Vgc Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +44923,Land,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44924,4 Bedroom Terrace House,"Along Dreamworld Africana Road, Behind Orchid Hotels Chevron Lekki Lagos",₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44925,4 5 Bedroom Duplex For Sale In Chevy View,Chevy View Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44926,One Acre And 3 Plots Of Dry Land,Providence Street Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44927,Newly Built 4 Units Of 4 Bedrooms Terrace Duplex,1 Osapa London Street Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44928,4 Bedrooms Semi Detached Duplex Plus Bq,Idado Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44929,4 Bedrooms Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikota +44930,4 Bedroom Semi Detached With Pent House And Bq,Odiyan Street Ikota Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,7 Toilets,Ikota +44931,5bedroom Fully Detached With A Bq,Gbangbala Street Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +44932,5 Bedroom Semi Detached With A Bq,Ggangala Street Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +44933,Brand New 4 Bedroom Semi Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44934,A Newly Built 5 Bedroom Detached Duplex + Bq In Lekki,Kenneth Odidika Close Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44935,Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44936,Excellent Brand New 4 Bedroom Detached Duplex With Bq,Madam Comfort Street Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +44937,Newly Built 5 Bedroomfully Detatched Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44938,Newly Built 4 Bedroom Semi Detatched Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +44939,Newly Built 5 Bedroom Fully Detatched Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikate +44940,Newly Built 5 Bedroom Fully Detatched Duplex With A Room Bq,Fourth Roundabout Before Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets,Chevron +44941,4 Bedroom Duplex With 2 Bedroom Bq,Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44942,4 Bedroom Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +44943,A 3 Bedrooms Semi Detached Duplex Plus Bq,Alpha Beach Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +44944,A 4 Bedrooms Fully Detached Duplex Plus Bq,Alpha Beach Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +44945,Brand New 4 Bedroom Terrace Duplex With A Bq,As Way Lekki Phase 1 Lekki Lagos,₦,"96,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44946,Brand New 4 Bedroom Semi Detached Duplex With Boys Quarters,Idado Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +44947,Plots Of Dry Land,Chevron Tollgate Area Chevron Lekki Lagos,₦,"14,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +44948,Land,Lekki Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44949,5 Bedroom Detached House With Two Room Bq,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 2 +44950,New 12 Nos 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +44951,New 3 Nos 5 Bedroom Duplex,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +44952,Luxury And Affordable 4 Bedroom Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44953,Luxury 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +44954,Brand New 5 Bedroom Town House With Penthouse,Agungi Road Agungi Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44955,Brilliantly Finished 4 Bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44956,Luxury Brand New 4 Bedroom Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +44957,Well Finished 5 Bedroom Detached House,"Ahmed Ojikutu By Friends Colony Estate, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +44958,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44959,New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +44960,5 Bedroom Detached Duplex,Palace Road Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44961,5 Bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44962,Land,Lekki Phase 1 Right White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44963,Land,Lekki Phase 1 Right Off White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44964,Land,White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44965,Land,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44966,5 Bedroom Detached Duplex With A Room Bq,"Behind Spg Office, Befor Igbo Efon Roundabout Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 1 +44967,Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44968,Land,"Beside Italian Inter School Off Chief M.i Okoro Street, Off Akanni Bashorun Street, Off Sikiru Alade Olowo Street Off Adebayo Doherty Street. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44969,Land,"Christ Avenue, Behind Tantalizer Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44970,Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44971,Land,Babatunde Osoba Street Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44972,Land,Babatunde Osoba Street Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44973,Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44974,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44975,Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44976,10 Acres Of Land,Opp The Circle Mall(shoprite) Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +44977,Lovely 5 Bedroom Duplex In Lekki,"Dr Lad Alakija Street, Off Fola Osibo Road, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +44978,10 Hectares Of Land,"On Orchid Hotel Rd, Sharing Fence With Buenavista Estate, Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44979,Land,Camelot Mews Estate Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44980,Land,Camelot Mews Estate Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44981,Land,"Off Orchid Hotel Rd, Behind Ocean Bay Estate Chevron Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44982,Land,Behind Lekki Updc Estate Opp Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44983,4 Bedroom Terrace House,Alao Etti Igbo Efon Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,3 baths,1 Toilets,Other Lekki +44984,Land,Ibeju Lekki Lga Lekki Phase 2 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44985,"1 Storey Building, 3 Bedroom Flat, 4 Flat All Together",Oseni Okota Street Okota Isolo Lagos Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +44986,4 Bedroom Terrace House In Osapa London,Osapa Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +44987,Own A Luxury 1 Bedroom Flat,Alternative Route Chevron Lekki Lagos,₦,"6,000,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +44988,Brand New 4 Bedroom Terrace With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44989,60 Hectares Of Land,Chevron Twin Lakes Chevron Lekki Lagos,₦,"115,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44990,New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +44991,2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets,Ikate +44992,5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +44993,Land,Lekki Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +44994,5 Bedroom Detached Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,7 Toilets,Ikota +44995,500 Square Metres Of Land,Babatunde Koboye Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +44996,4 Bedroom Detached House,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +44997,Fenced 5 Plots Of Land,Lekki Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +44998,3 Bedrooms Luxury Flat,Milverton Estate Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets,Osapa London +44999,4 Bedroom Detached Duplex Plus A Bq,V.g.c Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets,Victoria Garden City +45000,5 Bedroom Fully Detached Duplex,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,4 baths,5 Toilets,Victoria Garden City +45001,4 Bedroom Semi Detached Duplex Plus 2 Bq,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,3 Toilets,Victoria Garden City +45002,"2 Hectares Of Land Measuring 20,180 Sqm In Lekki.",14 Ajiran Road Agungi Vgc Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45003,A 5 Bedroom House Plus Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +45004,Newly Built 5 Bedrooms Duplex Plus Servant Quarters,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikate +45005,4 Bedrooms Semi Detached Duplex Plus Bq,Agungi Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +45006,4 Bedrooms Detached Duplex Plus Bq,Agungi Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +45007,Bare Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45008,A Corner Piece Plot Of Land Measuring 650sqm,New Road Chevron Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45009,A Plot Of Land Measuring 1400sqm,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45010,A Plot Of Land Measuring 600sqm,Foreshore Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45011,: A Plot Of Land Measuring 850sqm,Cbd Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45012,"2,600 Sqm Of Land",Beside German Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45013,"2,600 Sqm Of Land",Beside German Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45014,"11,000 Sqm Of Land",Expressway Beside Mercedes Benz Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45015,Hotel,Alternative Road Ikota Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Ikota +45016,"100,000 Sqm Of Land",Itedo Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45017,Uncompleted 2 Units Of 5 Bedroom Terrace Wit Bq Off Mobil Rd Lekki,Lekki Scheme Ii Ajah Lekki Phase 2 Lekki Lagos,₦,"17,500,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +45018,4 Units Of 4 Bedroom Terrace Duplex Plus Bq,Off Buena Vista Estate On Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45019,4 Bedroom Duple,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45020,Tastefully Finished Spacious 2 Nos 5 Bedroom Duplex With One Room Servant Quarter,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +45021,Land,Off Orchid Road. Ikota Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45022,4 Bedroom Semi Detached House And A Room Bq,Elegushi Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45023,2 And Half Plots Of Land,"Ologolo Bus Stop, Agungi Lekki Lagos. Agungi Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45024,Land Beside Lekki Business School,Lekki Epe Express Way Ikota Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45025,Plot Of Land,Jemtok Street Ikota Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45026,5 Bedroom Town House,Oba Tijani Akinloye Street Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,2 baths,2 Toilets,Ikota +45027,5 Bedroom Duplex With Boy's Quarter,Iron House Ilaso Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 2 +45028,5 Bedroom Duplex,Nicon Estate Road Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +45029,Brand New 5 Bedroom Semi Detached +bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45030,"A Tastefully Finished, 4 Bedroom Terrace",Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45031,"A Tastefully Finished, 3 Bedroom Terrace",Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45032,"A Beautifully Finished 5 Bedroom Fully Detached, Duplex With 1 Room Bq",Chevy View Estate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +45033,A Serviced New 4 Bedroom Duplex With 1 Room Bq,Bourdillon Court Estate Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45034,Newly Built 2 Blocks Of 3 Bedroom Flats,Akintunde Adeyemin Street Lekki Phase 1 Lekki Lagos,₦,"780,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +45035,"2 Units Of 4 Bedroom Duplex With 1 Room Bq Behind, Meadow Hall, Ikate",Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikate +45036,Land,Road2 Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45037,Decently Finished 40feet Container Facilities,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"2,600,000",0,0,0,1 beds, baths, Toilets,Osapa London +45038,A Serviced 4 Bedroom Terrace With 1 Room Bq,Chevron Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45039,4 Bedroom Duplex,Sangotedo Ajah Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45040,5 Bedroom Detached House,After 3rd Roundabout Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +45041,912 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45042,864 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45043,850 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45044,936 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45045,Land,"Beside Living Stone Estate, Opposite Mtn Estate Chevron Lekki Lagos",₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45046,4 Bedroom Duplex Wit Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45047,1 Plot Of 1000sqm Coner Piece,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45048,4 Bedroom Semi Detached House,Atlantic Boulevard Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +45049,Exquisite 5 Bedroom Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45050,4 Bedroom Terrace Duplex,Church Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45051,4 Bedroom Duplex,Lara Ademola Street Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45052,4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45053,4 Bedroom Flat,Ojulari Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45054,Plot Of Land 500sqm In Ikota Villa Estate Lekki,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45055,5 Bedroom Duplex In Ikota,4 Joseph Road Ikota Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets,Ikota +45056,Land,Lekki Penisular Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45057,Exquisite 5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45058,5 Bedroom Detached Duplex With 2 Boys Quarters,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +45059,5 Bedroom Duplex,"Opposite Ajure Police Station, Ajah Vgc Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Garden City +45060,5 Bedroom Detached Duplex +bq,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +45061,4 Bedroom Terrace With Bq,Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45062,1 Bedroom Town House,Lekki Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +45063,4 Bedroom Terrace With Bq In Lekki,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45064,6 Plot Of Land,Okoado Road Vgc Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45065,2 Bedroom Flat In Lekki,Lekki Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +45066,2 Bedroom Flat,Gbara Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets,Osapa London +45067,5 Bedroom Detached Duplex,Off Christopher Ugbaja Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +45068,3 Bedroom Semi Detached,Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +45069,Land,Ogombo Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45070,4 No Of 3 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets,Lekki Phase 1 +45071,3 Bedroom Terrace Duplex,Ochid Hotel Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,3 Toilets,Ikota +45072,Lands,"Orange Ville Estate Located In Developed Area Of Ogombo Town, Off Lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45073,Brand New 3 Bedroom Flat,By Chevron And Vgc Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +45074,Land,"Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45075,Newly Built 3 Units Of 5 Bedrooom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Ikota +45076,5 Bedroom Detached House With A Swimming Pool,V.g.c Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +45077,Newly Built 4 Bedroom Detached Duplex In Lekki,"Road Ii, Ikota Estate Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45078,2 Plots Of Land,Off Alpha Beach Besides Admiralty Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45079,A Newly Built 5 Bedroom Detached Duplex + Bq In Lekki,Otunba Adewoyin Ogungbe Street Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +45080,Newly Built 5 Bedroom Semi Detached Duplex In Lekki,"Kamashe Street, Bakare Estate, Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45081,Two Blocks Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Otunba Adewoyin Ogungbe Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +45082,"2,500 Square Metres Of Land",Beach Resort Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45083,"1,400 Square Metres Of Land",Arcadia Groove Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45084,3 Plots Of Land,By Ajose White House Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45085,1295 Square Metres Of Land,Agungi Motor Road Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45086,3967 Square Metres Of And,Close To 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45087,2750 Square Metres Of Land,By Chisco Round About Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45088,"2,538 Square Metres Of Land",Cloe To Fort Oil Filling Station Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45089,Land,Road 2 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45090,"Furnished 4 Bedroom Duplex With Bq, Gen , Pool, Gym","Vgc, Lekki Vgc Lekki Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45091,A Lovely 5 Bedroom Detached Duplex In Lekki,Richard Nwangwu Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45092,28 Units Of Newly Built 4 Bedroom Terrace Duplex In Lekki,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45093,3700 Square Metres Of Fenced Land,Along Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45094,60 Hectares Of Land,Chevron Twin Lakes Chevron Lekki Lagos,₦,"115,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45095,"3,100 Square Metres Of Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45096,1500 Sqm Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45097,3700 Sqm Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45098,5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +45099,4 Bedroom Terrance Duplex,Behind Nicon Town Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45100,Land,Ilasan Ikate Behind Oando Filling Station Ikate Lekki Lagos,₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45101,Brand New 4 Bedroom Super Deluxe Terrace Duplex With Spacious Bq.,Amiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +45102,960 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45103,Land,Pinnock Beach Estae Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45104,Land N8m Promo Price,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45105,5 Bedroom Duplex,Chervy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45106,4 Bedroom Terrace Apartment In Lekki,Beside Italia School Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +45107,Fully Equiped 4 Bedroom Detached House,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +45108,Exquisitely Built Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Osapa London +45109,2079sqm Of Open Plot Of Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45110,Well Finished Luxurious 5 Bedroom Detached House With C Of O,Chevy Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +45111,Lovely 5bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikota +45112,Land,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45113,Land,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45114,5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45115,Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45116,Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45117,A Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45118,Furnished 5 Bedroom Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikate +45119,6 Bedroom Terrace House,Opposite Chervy Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +45120,"10,000 Square Metres Of Land",Kayode Animashaun Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45121,15000 Square Metres Of Land,Animashaun Street Lekki Phase 1 Lekki Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45122,4000 Square Metres Of Land,Befroe V.g.c Vgc Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45123,3800 Square Metres Of Land,Providence Road Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45124,2895 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45125,5000 Square Metres Of Land,Agungi Bus Stop Agungi Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45126,3700 Square Metres Of Land,Ikate Elegushi Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45127,4 Bedroom Detached Duplex In Lekki,Lekki Ajah Express Way Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45128,5 Bedroom Detached Duplex,Southern View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +45129,A Plot Of Land,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45130,A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45131,A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45132,A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45133,A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45134,5 Bedroom Detached House,Southern View Estate Beside Lekki Conservation Centre Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45135,5 Bedroom Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,0 Toilets,Ikota +45136,5 Bedroom Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +45137,3 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,"Adegbenle Street, Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45138,5 Bedrrom Fully Detached House,Luxurious Garden Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45139,Land,Royal Haven Garden Akodo Ise Lekki Phase 2 Lekki Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45140,Office Complex On 3 Floors On 13 Squaremetres Of Land,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45141,Tastefully Built 5 Bedroom Detached Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +45142,Land,Lekki Rose Garden Osoroko Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45143,4 Bedroom Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +45144,4 Bedroom Duplex With Bq,Lekki Lagos Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets,Agungi +45145,5 Bedroom Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,6 baths,7 Toilets,Ikota +45146,5 Bedroom Duplex With Bq Well Finished,Lekki Lagos Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +45147,3 Bedroom Flat With Bq,Near Aa Rescue Jakande Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45148,7 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,0 baths,0 Toilets,Lekki Phase 1 +45149,2 Nos 5 Bedroom Duplex,Atlantic View Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45150,2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45151,Land,La Campaigne Tropicana Beach Resort Lekki Phase 2 Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45152,7 Bedroom Detached House Plus 2 Bedrooms Flat Bq,Off Wole Olateju Crescent Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +45153,Newly Built 4 Bedroom Detached Duplex In Lekki,"James Anyaeche Avenue, Bakare Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45154,4 Bedroom Terrace Apartment,Ikate Villa Estate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45155,Fully Furnished 4 Bedroom Semi Detached Duplex In Lekki,"Ben Chidi Oyindo Street, Chevy View Estate Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45156,2 Plot Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45157,2 Units Of Lovely 5 Bedroom Terrace Duplex In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45158,2 Units Of Newly Built 3 Bedroom Flat In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"56,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45159,Newly Built 4 Bedroom Fully Detached Duplex In Lekki,"Road A4, Carlton Gate Estate, Chevron Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45160,4 Bedroom Townhouse,"3d Homes,prince Ademola Eletu Osapa London Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45161,4 Bedroom Duplex With A Bq,Fola Osibo Str Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets,Osapa London +45162,Newly Built 3 Bedroom Semi Detached Duplex In Lekki,"Mary Osadolor, Chevy View Estate, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45163,Newly Built 3 Bedroom Semi Detached Duplex In Lekki,"Mary Osadolor, Chevy View Estate, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45164,3 Bedroom Flat,Chevy View Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45165,2 Bedroom Flat,Chevy View Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +45166,5 Bedroom Detached House On 700 Square Metres Of Land,Off Omorire Johnson Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +45167,Land,Ibeju Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45168,"Design 6 Bedroom Duplex With Bq,","Pinnock Beach Estate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"350,000,000",0,0,0,6 beds,7 baths,7 Toilets,Lekki Phase 2 +45169,Land,Lekki Chevron Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45170,Land,Lekki Chevron Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45171,3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45172,Land,Ibeju Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45173,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45174,Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45175,Decent 4 Bedroom Fully Detached Duplex In Lekki,"No. 25 Jide Agbalaya Street, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45176,Lovely 6 Bedroom Fully Detached Duplex In Lekki,"No. 18 Jide Agbalaya Street, Chevy View Estate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets,Chevron +45177,Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Ali Close, Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45178,5 Bedroom Terrace Duplex,Ilaje Road Vgc Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +45179,5 Bedroom Detached House,Elegushi Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +45180,Newly Built 5 Bedroom Semi Detached Duplex In Lekki,"Bello Close, By Pelician Hotel, Behind Gtb, Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45181,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bello Close, By Pelician Hotel, Behind Gtb, Chevy View Estate, Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45182,3 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +45183,Stylishly Built 2 Bedroom Flat,Obaamusa Street Agungi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +45184,Newly Built 4 Bedroom Duplex In Lekki,"Olivia Road, Chevy View Estate, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45185,4 Bedroom Duplex,"Road 3, Ikota Villa Estate Lekki Lagos. Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets,Ikota +45186,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bello Close, Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets,Chevron +45187,Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45188,Newly Built 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +45189,2 Units 4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Ikate +45190,2 Units Of Newly Built 4 Bedroom Duplex In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45191,Newly Built 7 Bedroom Fully Detached Duplex In Lekki,"Atlantic View Estate, Igbo Efon Lekki Lagos",₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Lekki +45192,3 Bedroom Bungalow,Chevron Chevron Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45193,2 Units Of Newly Built 4 Bedroom Penthouse In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45194,10 Units Of Newly Built 2 Bedroom Flat In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets,Chevron +45195,Land,Sangotedo Chevron Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45196,4 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45197,5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45198,4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45199,2 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +45200,4 Bedroom Duplex With Bq,Kunle Idowu Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Lekki +45201,5 Bedroom Duplex With Bq,Abioro Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikate +45202,Newly Built 6 Bedroom Terrace Duplex In Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +45203,2 Bedroom Flat,Freedom Road Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Osapa London +45204,Beautifully Finished And Fitted 3 Bedroom Apartment,Abioro Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45205,4 Bedroom Semi Detached Duplex,"Sir Johnson Asinuga Street, Off Alpha Beach Road Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +45206,5 Bedroom Semi Detached Duplexes + 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45207,3 Bedroom Terrace House,Lekki Garden Phase 2 Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +45208,5 Bedroom Detached House With 2 Room Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,5 baths,5 Toilets,Osapa London +45209,4 Bedroom Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45210,3 Bedroom Flat,Primewaterview Gardens. Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +45211,6 Bedroom Terrace House,Opposite Chevron Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,6 beds,6 baths,7 Toilets,Lekki Phase 1 +45212,Newly Built 3 Bedroom Flat In Lekki,"1 Awe Iroko Street, Off Yemi Adebayo Street, Salem Bus Stop, Jakande Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +45213,5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,6 baths,0 Toilets,Chevron +45214,2 Units Of Newly Built 3 Bedroom Flat In Lekki,"Rock Drive, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45215,5 Bedroom Fully Detached Duplex,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"57,172,500",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45216,4 Bedrooms Semi Detached With Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"45,980,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +45217,4 Bedroom Terrace With Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"40,535,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +45218,3 Bedroom Flat + Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"30,855,000",0,0,0,3 beds,4 baths,4 Toilets,Lekki Phase 1 +45219,4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikota +45220,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Ogidi Crescent, Christ Avenue, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45221,2 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Rock Drive, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45222,4 Bedroom Terrace Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45223,Land,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45224,3 Bedroom Flat,Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +45225,Land,Ibeju Lekki Igbo Efon Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45226,5 Bedroom Duplex With 3d Cinema Hall,Pinnock Beach Estate Jakande Lekki Lagos,₦,"320,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Lekki +45227,"15 Plots Of Land (10,000 Square Metres)",V.g.c Vgc Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45228,"1,000 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45229,Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45230,Land,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45231,4 Bedroom Semi Detached House In Lekki,Ikota Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45232,"2,105square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45233,Land,V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45234,2198 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45235,3000 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45236,"2,105 Square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45237,"2,198 Square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45238,3000 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45239,4 Bedroom Mansion,Vgc Road Vgc Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45240,2 Plots Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45241,6010.424 Square Metres Of And,Oba Elegushi Beah Road Ikate Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45242,"80,000 Square Metres Of Land","Beside World Oil Filling Station, Before Elevation Church Lekki Phase 1 Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45243,Plot Of Land,Along The Express Jakande Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45244,2 Bedroom Terrace Duplex,"Lifiaji Road, Orchid Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Chevron +45245,4 Bedroom Terrace Duplex,"Lifiaji Road, Orchid Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45246,30 Plots Of Land,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45247,15 Plots Of Land,Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45248,6 Units Of 3 Bedroom Flat With A Self Contain Bq,Agungi Agungi Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets,Agungi +45249,3 Bedroom Flat,Ikota Ikota Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +45250,5 Bedroom Mansion,Didiolu Estate Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45251,Well Finished 4 Bedroom Flat,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 1 +45252,Land,General Paint Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45253,Newly Built 2 Units Of 5 Bedroom Degtached House With 2 Rooms Bq On 475 Square Metres Of Land Each,Sybil Iroche Street Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets,Lekki Phase 1 +45254,3 Bedroom Flat,Cromwell Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets,Chevron +45255,4 Bedroom Terrace With Bq,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +45256,Newly Built 5 Bedroom Detached House,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45257,5 Bedroom Detached House With 2 Rooms Bq,"Victoria Park Estate Behind Femi Okunu Estate, By Mobile 3rd Round About. Jakande Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45258,4 Bedroom Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets,Lekki Phase 2 +45259,5 Bedroom Terrace Duplex + A Bq,Northern Foreshore Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45260,5 Bedroom Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +45261,5 Bedroom Detached Duplex,New Haven Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45262,4 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +45263,4 Bedroom Terrace House,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +45264,4 Bedroom Terrace Duplex With A Bq,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45265,3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45266,3100 Square Metres Of Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45267,Land,"Victory Park Estate, Osapa London, Lekki Osapa London Lekki Lagos",₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45268,4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Lekki Phase 1 +45269,3 Plots Of Land,Ilasan Estate Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45270,669 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45271,4000 Square Metres Of Land,Lakeview Estate Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45272,650 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45273,2 Plots Of Land,Ikota Villa Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45274,700 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45275,1000 Square Metres Of Land,Pinnock Beach Estate Resort Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45276,547 Square Metres Of Land,Pinnock Beach Estate Resort Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45277,Newly Built 4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45278,13.067,Off Lekki Beach Road(4th Roundabout) (atlantic Ocean View) Directly On Lekki Beach Shore Line Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45279,Land,Lakowe Idado Lekki Lagos,₦,"5,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +45280,4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45281,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45282,3 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +45283,4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Chevron +45284,"4 Bedroom House With 1 Room Bq, Co","Abiola Court, In Dillon Estate Agungi Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets,Agungi +45285,Land,Omorire Johnson Street Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45286,15000 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45287,2 Unit Of 7 Bedroom Duplex,"Block 8 Plot No. 76 Igbo Efon Village, Close To Alpha Beach Lekki Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,6 baths,7 Toilets,Lekki Phase 1 +45288,16 Plots Of Land,Orchid Road Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45289,1000 Square Metres Of Land,Close To Central Mosque Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45290,3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45291,650 Square Metres Of Land,Oba Amusa Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45292,1000 Square Metres Of Land,Maruwa Round About Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45293,650 Square Metres Of Land,Ologolo Jakande Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45294,1200 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45295,630 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45296,800 Square Metres Of Land,"Spar Road, Nicon Town Estate Jakande Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45297,1000 Square Metres Of Land,"Spar Road, Nico Town Estate Jakande Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45298,Newly Built 5 Bedroom Detached Duplex In Lekki,"Hawau Abikan Street, Chevy View Estate Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45299,4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45300,14 Units Of 3 Bedroom Flat In Lekki,"Abike Court, General Ogomudia Crescent, Lekki Phase 1 Lekki Lagos",₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45301,More Than 6 Units Of 5 Bedroom Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45302,6 Units Of 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets,Agungi +45303,5 Bedroom Duplex With 2 Rooms Bq,4th Roundabout Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets,Ikate +45304,Decent 4 Bedroom Semi Detached Duplex In Lekki,"Off Cornelius Odinjor Street, By Udew Medical Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets,Chevron +45305,4 Bedroom Semi Detached Duplex,"Lekki Gardens By Alternative Route, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45306,A 4 Bedroom Terrace Duplex,Abiola Court Agungi Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets,Agungi +45307,Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45308,Land,Orchid Road Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45309,Land,Fola Daniel Street. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45310,5 Bedroom Terrace,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45311,7 Units Of 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +45312,2538 Square Metres Of Land,Close To Fort Filling Station Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45313,15 Hectares Of Land,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"55,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45314,Land,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"55,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45315,4450 Square Metres,Behind Total Filling Station Close To House On The Rock In Ikate. Ikate Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45316,"15 Plots Of Land (10,000)",V.g.c Vgc Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45317,5 Bedroom Fully Detached Duplex In Lekki,"Dele Adeyemi Street, By Agungi Bus Stop, Agungi Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets,Agungi +45318,Decent 4 Bedroom Semi Detached Duplex In Lekki,"Agungi Road, Agungi Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45319,Newly Built 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45320,Newly Built 5 Bedroom Duplex In Lekki,"Off Chevy View Road, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45321,4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45322,4 Bedroom Terrace Duplex (corner Piece),Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45323,3 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45324,4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45325,3 Bedroom Bungalow,Lafiaji Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45326,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"John Great Court, Off Chevy View Road, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45327,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"John Court, Off Chevy View Road, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45328,10000 Squae Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45329,650 Square Metres Of Land,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45330,700 Square Metres Of Land,Ikate Ilasan Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45331,6500 Square Metres,Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45332,3 Bedroom Terrace Duplex,Behind Femi Okunnu Estate Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +45333,5 Bedroom Duplex,Road 26 Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +45334,5 Bedroom Terrace,Dada Fayemi Close Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +45335,4 Bedroom Detached House,Castle Rock Avenue Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45336,Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45337,7000 Square Metres Of Land,Lekki Epe Expressway Igbo Efon Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45338,5 Bedroom Duplex,Ikota Village Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45339,3 Units Of 5 Bedroomduplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +45340,Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45341,Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45342,Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45343,Land,Off Olaitan Sebanjo Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45344,Land,Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45345,Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45346,Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45347,Land,Adedeji Adekola Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45348,Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45349,Land,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45350,Land,Off Abike Sulaimon Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45351,Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45352,Land,Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45353,4 Units 4 Bedroom Terrace Apartment,"Wole Ariyo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45354,4 Bedroom Semi Detached Duplex,Madam Cellular Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45355,4 Bedroom Semi Detached Duplex,Opposite Victory Park Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets,Osapa London +45356,18000 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45357,Land,Lafiaji Road Lekki Phase 2 Lekki Lagos,₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45358,Land,Agungi Road Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45359,2 Plots Of Land,"Lafiaji, Behind Chevron Staff Cooperative Chevron Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45360,2 Plots Of Land,"Lafiaji, Behind Chevron Staff Cooperative Chevron Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45361,20 Hectares Of Land,"Lafiaji, Opposite Chevron Staff Cooperative Chevron Lekki Lagos",₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45362,12 Hectares Of Land,"Lafiaji, Opposite Chevron Staff Cooperative Chevron Lekki Lagos",₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45363,Newly Built 3 Bedroom Terrace Duplex In Lekki,Kunshella Road Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45364,Decent 4 Bedroom Terrace Duplex In Lekki,"Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 1 +45365,Land,Off Epe Express Way Lag. Lekki Phase 2 Lekki Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45366,150 Plots Of Land,Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45367,Plots Of Land,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45368,Plots Of Land,Eleganza Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45369,Neat 5 Bedroom Fully Detached Duplex In Lekki,"Chief Ganiu Enitan Street, Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45370,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Chief Ganiu Enitan Street, Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45371,5 Bedroom Detached House + Bq,Robert Nebolisa Street Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +45372,8 Plots Of Land And 400 Square Metres Of Land,Chevy View Chevron Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45373,4 Plots Of Land,Osapa London Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45374,8000 Square Metres Of Land,Spare Road Elegushi Ikate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45375,1491 Square Metres Of Land,Kushenla Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45376,2400 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45377,3 Bedroom Terrace,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,2 Toilets,Lekki Phase 2 +45378,2 Unit Of 6 Bedroom Duplex + Bq,Pinnock Beach Estae Jakande Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,5 baths,5 Toilets,Other Lekki +45379,5 Bedroom Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,4 Toilets,Lekki Phase 1 +45380,2300 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45381,3 Bedroom Flats,Itedo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 1 +45382,A Block Of Six Units Of 3 Bedroom Flat In Lekki,"Aaron Irabor Street, Close To Alh. Adewunmi Fowewe Street, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45383,Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Iderekodo Road/mary Osadolor Cr, Lekki Phase 2 Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 2 +45384,Newly Built 4 Bedroom Duplex In Lekki,"Madam Cellular, Off Agungi Road, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45385,Land,1mile From Dangote Refinery Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45386,4 Bedroom Duplex,Elemoro Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +45387,Newly Built 4 Bedroom Town House In Lekki,"Off Orchid Hotel, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45388,4 Bedroom Duplex,Before Chevron Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45389,28 Units Of Serviced 4 Bedroom Terrace Duplexex With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45390,Fully Servide 3 Bedroom Flat With Swimming Pool,"Shevy View Estate, Offchevron Drive Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets,Chevron +45391,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Five Street, By Olajumoke Close, Off Alhaji Adewunmi Fowewe Street, By Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45392,4 Bedroom Terrace Duplex,Ajiran Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45393,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Allan Balogun Street, Off Agungi Road, Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets,Lekki Phase 2 +45394,Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Alhaji Adewunmi Fowewe Street, Off Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45395,Newly Built 4 Bedroom Detached Duplex In Lekki,"Alhaji Adewunmi Fowewe Street, Off Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45396,Newly Built 3 Bedroom Flat In Lekki,"Olajumoke Close, By Adewunmi Fowewe Street, Lekki Phase 2 Lekki Lagos",₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +45397,5 Bedroom Duplex,At Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,4 Toilets,Lekki Phase 1 +45398,1000 Square Metres Of Land,Off Fola Daniel Close Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45399,2043 Square Metres Of Land,On Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45400,Land,Close To Whitesand School Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45401,890 Square Metres Of Land,0ff Olaitan Sebanjo Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45402,963 Square Metres Of Land,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45403,1087square Metres Of Land,0ff Adedeji Adekola Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45404,1100square Metres Of Land,"Behind Citilodge Hotel, Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45405,1100 Square Metres Of Land,Close To Whitesand School Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45406,1139 Square Metres Of Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45407,1000 Square Metres Of Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45408,1067 Square Metres Of Land,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45409,967 Square Metres Of Land,Off Abike Sulaimon Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45410,720 Square Metres Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45411,450 Square Metres Of Land,Off Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45412,500 Square Metres Of Land,Off Providence Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45413,500 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds,0 baths,0 Toilets,Lekki Phase 1 +45414,5 Bedroom Detached House,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45415,Newly Constructed 4 Bedroom Semi Detached House Duplex,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45416,Well Built 3 Bedroom Serviced Apartment In Lekki,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45417,5 Bedroom Detached Duplex With 3 Bedroom Bq,V.g.c Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Garden City +45418,"Three Bedroom Terraced Duplex With Ensuite Service Quarters, Swimming Pool And Gym",Off Road 2 Ikota Lekki Lagos,₦,"35,850,000",0,0,0,3 beds,3 baths,4 Toilets,Ikota +45419,"4 Bedroom Terraced Triplex With Ensuite Service Quarters, Swimming Pool And Gym",Off Road 2 Ikota Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45420,Magnificently Built 6 Bedroom Mansion,"Nicon Town Estate, Lekki Jakande Lekki Lagos",₦,"590,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +45421,4 Bedroom Detached Duplex,Orchid Road Lekki Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45422,4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45423,3 Bedroom Bungalow,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +45424,3 Bedroom Flat With A Bq,Jacob Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45425,4 Bedroom Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +45426,2 Bedroom Flat,Awkuzu Str Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +45427,A Sweet Semi Detached 4 Bedroom Bungalow,Orchid/lafiaji Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45428,5 Bedroom Fully Detached Duplex,Awkuzu Str Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45429,2 Bedroom Flat,Salk Lake Estate Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Lekki +45430,One Bed Room Flat,Emma Abimbola Str Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,1 beds,1 baths,2 Toilets,Lekki Phase 1 +45431,4 Units Of 4 Bedroom Terrace Duplex In Lekki,"Sunday Dare Close, Off Prince Olarenwaju Elegushi Street, Salem Bus Stop, Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45432,5 Bedroom Duplex,"Lekki,phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +45433,9 Units Of Fully Detached Of 5 Bedroom,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Osapa London +45434,New Luxury Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets,Lekki Phase 1 +45435,5 Bedroom Duplex,Damilola Eletu Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45436,Land,Chaplin Court Along Abraham Adesanya Estate Main Gate Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45437,Land,Phase1 Osapa London Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45438,5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +45439,Luxury Semi Detached 4 Bedroom Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45440,4 Bedroom Terrace Duplex,Logos Church Street Off Lagos Epe Express Way Behind Zenith Bank Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45441,3 Bedrooms Flat,"Pioneer Street, Osapa London,lekki Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Osapa London +45442,Half Plot Of Land,Pennisula Estate Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45443,Half Plot Of Land,Pennisula Estate Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45444,3 Bedroom Bungalow,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +45445,5 Bedroom Detached Duplex With 1 Bq,Jakande Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45446,4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45447,Land,Golden Street Lekki Phase 2 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45448,4 Bedroom Duplex,Igbo Efon Round About Ajah Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45449,5 Bedroom Detached Duplex,Mike Adegbite Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45450,Brand New 4 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45451,5 Bedroom Detached Duplex,Off Forla Osibo Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45452,3 Units Of 4 Bedroom Duplex With Servant Room,Igbo Efon Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45453,Brand New 2 Bedroom Flat,Off Kusenla Street Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikate +45454,Luxury Brand New 3 Bedroom Flat,Off Kusenla Street Ikate Lekki Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45455,Plot Of Land,Pearls Estate Monastery Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45456,3 Bedroom Detached Duplex In Lekki,"Plot 9 Tesutu Abiodun, Vgc Lekki Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Garden City +45457,Land,Iketa Elegushi Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45458,4 Bedroom Duplex +bq,Vgc Lekki Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45459,4 Bedroom Duplex +bq,Vgc Lekki Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45460,4 Bedroom Duplex With 2 Rooms Bq,V.g.c Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45461,Land,Daniel Ayomike Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45462,4 Bedroom Semi Detached House,Behind Schme 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45463,Land,Off Nike Gallery By Lekki Round About Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45464,Land,Lekki Expressway Before World Oil Petrol Station Ikate Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45465,Plot Of Land,Off Nike Art And Gallery Lekki Phase 2 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45466,Plot Of Land,Before World Oil Petrol Station Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45467,Fenced Plot Of Land,Alma Beach Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45468,Fenced Half Plot Of Land,Omi Soso Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45469,Plot Of Land,Alma Beach Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45470,Plot Of Land,Ilasan Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45471,Plot Of Land,Ilasan Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45472,Brand New Exquisitely Finished 3 Bedroom Terrace With Bq,1c Pascal Offiah Close Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets,Agungi +45473,3 Bedroom Terrace,Lekki Gardens Estate Opp Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,3 Toilets,Lekki Phase 2 +45474,5 Bedroom Detached Duplex + Bq,Castle Rock Avenue Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Osapa London +45475,4 Bedroom Duplex In Lekki,"No. 6, Road 24, Ikate Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Ikate +45476,3 Bedroom Flat,C Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45477,3 Units Of 4 Bedroom Terrace House,Bakare Estate Agungi Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45478,Exquisitely Finished 4 Bedroom Terrace,Omosehinde Agbaje Close Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45479,5 Units Of 3 Bedroom Terrace Duplex,Maroko Off Mobile Road Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 2 +45480,3 Bedroom Flat,Chevy Veiw Estate Via Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45481,5 Bedroom Fully Detached Duplex With Bq,Kusenla Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45482,3 Plots Of Land,Itedo Junction Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45483,2 Plots Of Land,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45484,Plots Of Land,Fara Park Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45485,2 Bedroom Flat In Lekki,"Abioro Street, Off Kusenla Street, 4th Roundabout, Lekki Phase 2 Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 2 +45486,A 3 Bedroom Flat,Pearly Gate Estate Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Garden City +45487,Land,Kusenla Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45488,Land,Kusenla Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45489,Land,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45490,Land,Silverbird Boulevard Jakande Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45491,5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikota +45492,4 Bedroom Duplex,Sassi Street Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45493,"24,000 Sqm Of Land",World Oil Street Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45494,3 Bedroom Semi Duplex With Bqin Lekki,Off Ologolo Road Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Osapa London +45495,Acres Of Land,Eleko Road Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45496,3 Plots Of Land,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45497,A Plot Of Land,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45498,Land,"Ologolo, Estate Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45499,2 Plots Of Land,At Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45500,A Plot Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45501,5 Bedroom Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets,Lekki Phase 1 +45502,5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45503,5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45504,2 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets,Lekki Phase 1 +45505,A 2 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Lekki Phase 1 +45506,4 Bedroom Detached House,Shoprite Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45507,Land,Steve Ajose Street Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45508,5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,5 Toilets,Osapa London +45509,Land,Block 114a Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45510,Land,Block 12 Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45511,4 Bedroom Terrace Duplex,Kusenla Road At Ikate Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikate +45512,Land,Block 94 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45513,Land,Beside Oba Oyekan Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45514,Land,Kunmi Akingbehin Street Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45515,"A 3,642.69sqm Land",Elf Bus Stop Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45516,"Dry Plots Of Land For Sale Close By Lekki Free Trade Zone, Ibeju Lekki, Lagos",Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45517,A 30 Room Hotel,3rd Roundabout Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45518,5 Bed Room Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,4 Toilets,Ikota +45519,Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45520,3 Bedroom Apartment,Gated Community Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Ikate +45521,3 Bedroom Bungalow,Abraham Adesanya Chevron Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45522,3 Bedroom Bungalow,Abraham Adesanya Chevron Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45523,2 Nos Of 4 Bedrooms Semi Detached House,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45524,Land,Itedo Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45525,Land,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45526,Land,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45527,Land,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45528,Land,Vgc Lekki Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45529,Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45530,Land,Victoria Garden City Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45531,Land,Victoria Garden City Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45532,Land,Victoria Garden City Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45533,Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45534,Land,Victoria Garden City Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45535,Land,After Mobile Filling Station Opp Four Sheraton Hotel Lekki Phase 2 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45536,Land,Tourism Zone Lekki Near Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45537,Land,Maiyegun Tourism Zone Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45538,Land,Okunde Blues Water Near 2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45539,Land,Maiyegun Tourism Zone Agungi Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45540,A 4 Bedroom Semi Detached Duplex,"Victory Park Estate, By Shoprite Roundabout Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45541,A 7 Bedroom Detached House A Room Bq,"Chris Otulana Crescent, Lekki Scheme I Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets,Lekki Phase 1 +45542,7 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,7 Toilets,Lekki Phase 1 +45543,4 Bedroom Duplex + Boys Quarters,Godwin Eche Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45544,Beautiful 3 & 4 Bedroom Terraces.,At Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45545,4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets,Chevron +45546,3 Bedrooms Flat In Lekki,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45547,4 Bedroom Flat,Ojulari Road Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,2 Toilets,Ikate +45548,7 Bedroom Mansion,Ikota Villa Ikota Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,8 Toilets,Ikota +45549,Newly Built 4 Bedroom Semi Detached House,Chike Mba Street Osapa London Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45550,5 Bedroom Duplex,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets,Lekki Phase 1 +45551,Newly Built 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45552,Exquisitely Finished 5 Bedroom Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45553,3 Bedroom Flat,Chevy Veiw Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45554,6 Units Of A 3 & 2 Bedroom Luxury Flat With A Bq Each,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Lekki Phase 1 +45555,Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Osapa London +45556,Land,Victory Park Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45557,800sqm Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45558,Land,Ikate Round About Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45559,A 5 Bedroom Detached House,Pinnock Beach Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45560,5 Bedroom Fully Detached House,Mudashiru Eletu Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45561,A 5 Bedroom Duplex With A Room Bq,Royal Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45562,A 4 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45563,15 Units Of 5 Bedroom Detached House,Ferrari Court Spg Jakande Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +45564,Land,Ikate Round About Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikate +45565,2 Units Of 5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets,Agungi +45566,Exquisitely Finished 5 Bedroom Apartment,Carlton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45567,3 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Ikate +45568,3 Bedroom Flat,Chevy Veiw Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Chevron +45569,Land,Off Airan Road Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45570,Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45571,Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45572,8000 Square Meters Of Fenced Land,"Maruwa Waterfront, Before Ventage Hotel Resort Jakande Lekki Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45573,Land,Orchid Hotel Opp Ocean Bay Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45574,A 680 Square Meter Of Land,Mega Chicken Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Ikota +45575,A Luxury Mansion,"Victoria Garden City, Vgc Lekki Lagos",₦,"600,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Garden City +45576,5 Bedroom Fully Detached House,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45577,4 Bedroom Semi Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45578,Beautiful New 5 Bedroom House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets,Chevron +45579,Beautifully Designed 4 Bedroom Semi Detached Duplex With 1 Room Bq,By Second Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +45580,Corner Piece Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45581,4 Bedroom Semi Detached Duplex + 2 Rooms Bq,Road 25 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Garden City +45582,A 4 Bedroom Detached Duplex With Bq,Carilton Gate Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Chevron +45583,A 3 Bedroom Terrace,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45584,Land,Chevron Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Chevron +45585,Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45586,Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45587,Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45588,Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45589,Brand New Turn Key 4 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45590,Beautiful Brand New 4 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45591,Distinctive Brand New 4 Bedroom Detached Duplex With Exceptional Fittings,At Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45592,5 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,5 baths,6 Toilets,Lekki Phase 1 +45593,Beautiful 4 Bedroom Semi Detached Duplex With A Room Bq,"Off Chevron Drive, Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45594,A 4 Bedroom Duplex,Madam Cellular Close Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45595,3 Bedroom Duplex And A Bq,"By Slot, Lekki Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45596,5 Bedroom Duplex +2bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45597,A 4 Bedroom Detached Duplex With A Bq,"Ologolo, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45598,A 16 Room Luxury Hotel,Emmanuel Abimbola Cole Street Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45599,4 Bedroom Detached House,Pinnock Beach Estate Osapa Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Osapa London +45600,4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Ikota +45601,5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets,Ikota +45602,4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45603,5 Bedroom Duplex +bq,Ikota Villa Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +45604,4 Bedroom Duplex,Ikota Villa Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45605,5 Bedroom Duplex +bq,Ikota Villa Lekki Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +45606,4 Bedroom Townhouse,Lekki Lekki Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45607,Land,Akodo Peninsulat Gardens Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45608,A 4 Bedroom Detached House With A Boys Quater,Pinnock Estate Lekki Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45609,A 5 Bedroom Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45610,5 Bedroom Semi Detached House,"Chevy View, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45611,5 Bedroom Fully Detached Duplex,"Lekki, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Lekki Phase 1 +45612,Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45613,Land,Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45614,A 4 Bedroom Townhouse With A Bq,"Northern Foreshore Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Chevron +45615,4 Bedroom Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,3 baths,4 Toilets,Chevron +45616,Studio Apartment,Ikate Beside Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,1 baths,1 Toilets,Lekki Phase 1 +45617,Exquisitely Finished 1 Bedroom Apartment,Ikate Beside Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"21,500,000",0,0,0,1 beds,1 baths,1 Toilets,Lekki Phase 1 +45618,Studio Apartment,Chevron Drive Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +45619,Exquisitely Finished 1 Bedroom Apartment,Chevron Drive Chevron Lekki Lagos,₦,"18,500,000",0,0,0,1 beds,1 baths,1 Toilets,Chevron +45620,3 Bedroom Penthouse,Oladimeji Ald Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45621,Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45622,A 3 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45623,A 4 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45624,A 4 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45625,Land,Ikota Shopping Complex Vgc Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45626,Land,"Daniel Ayomike Str, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45627,Fully Furnished 4 Bedroom Terrace,"Off Castle And Temple Str, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45628,A 4 Bedroom Semi Detached Duplex With Bq,Off Akeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45629,A 4 Bedroom Wing Of Duplexes With Bq,"Off Hakeem Dickson Street, Oniru Lekki Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45630,A 5 Bedroom Detached Duplex With A Bq,"Ikota Villa Estate, Off Lekki Ajah Road Ikota Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets,Ikota +45631,4 Bedroom Duplex +bq,Agungi Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45632,A 4 Bedroom Duplex With 2 Rooms Bq,"Ihuntayi Street, Oniru Lekki Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45633,A Mini Flat,Christ Avenue Lekki Lekki Lagos,₦,"1,300,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +45634,Plots Of Land,Off Freedom Way Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45635,Plots Of Land,Off Freedom Way Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45636,A 4 Bedroom Mansionette,"Eldarado Estate, 5th Roundabout Agungi Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets,Agungi +45637,"A 2,500sqm Land",Admiralty Way Lekki Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45638,Land,Off White Sand Schools Maruwa Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45639,5 Bedroom Duplex,"Lekki,phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,5 Toilets,Lekki Phase 1 +45640,Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45641,Land,Admiralty Road Lekki Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45642,5 Bedroom Detached Duplex With Two Rooms Bq,Off Ladi Alakija Str. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45643,3 Bedroom Duplex Plus Bq,Off Oladimeji Alo Str. Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Lekki Phase 1 +45644,Plots Of Land,"Off Epe Express Way, Lekki Phase 2 Lekki Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 2 +45645,Land,"Off Agungi Main Str, Agungi Lekki Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45646,5 Bedroom Detached Duplex With Two Rooms Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45647,Mini 5 Bedroom Fully Detached Duplex,Prime Water Road Ikate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Lekki Phase 1 +45648,832sqm Land,Plot 11 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45649,A 5 Bedroom Detached House With A Room Bq,Phase 1 Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45650,A Plot Of Land,"Abijo Gra, Lekki Epe Expressway Lekki Lekki Lagos",₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45651,A 5 Bedroom Mansionette,"Chevron Drive Lekki, Northern Foreshore Estate Chevron Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Chevron +45652,4 Bedroom Duplex Plus Bq,Tunji Aderinto Street Off Ire Akare Estate Road Jakande Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45653,4 Bedroom Semi Detached House,North Pointe Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +45654,Land,"Lekki Right Hand Side, Bosun Adekoya, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45655,8 Units Of 2 Bedroom Flat,"Westend Estate, Ikota Villa Ikota Lekki Lagos",₦,"200,000,000",0,0,0,2 beds,2 baths,3 Toilets,Ikota +45656,5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45657,4 Bedroom Detached,Chevyview Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets,Chevron +45658,Land For Sale At Lekki,Lekki Agungi Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Agungi +45659,6 Plots Of Land,Lekki Peninsula Scheme Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45660,Land,Ogombo Town Off Lekki Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45661,Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45662,Land,Adimiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45663,"A 30,000sqm Land",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45664,"A 20,000sqm Land",Ikota Vgc Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45665,"A 30,000sqm Land","Marw, Lekki Ocean View Lekki Phase 1 Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45666,"A 10,000sqm Land",Off Admiralty Way Lekki Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45667,A 535sqm Land,Lekki Scheme I Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45668,A 500sqm Of Land,Lekki Penisula Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45669,A 900sqm Of Land,Vgc Lekki Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45670,"A 3,000sqm Of Land",Opposite Vgc Shopping Mall Lekki Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45671,"A 1,139sqm Of A Bare Land","Chris Otulana Crescent, Lekki Scheme I, Goshen Estate Lekki Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45672,"A 42,768sqm Of Land",Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45673,6 Plots Of Land,Lekki Epe Expressway Lekki Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45674,"A 1,200sqm Of Land",Fatai Arobieke Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45675,"A 1,000sqm Of Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Lekki Phase 1 +45676,5 Bedroom Semi Detached Terrace Duplex,Richmond Estate Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45677,3 Bedroom Pent House,Off Oba Amusa Street Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Agungi +45678,2 Bedroom Flat,Off Oba Amusa Street Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets,Agungi +45679,4 Bedroom Duplex,Ilasan Opposite Nicon Town Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45680,A 4 Bedroom Semi Detached Duplex,"Govenille Estate, Opposite Alpha Beach Road, Before Chevron Roundabout Lekki Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45681,A 5 Bedroom Detached House With A Room Bq,Phase 1 Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45682,A 900sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45683,"A 1,451sqm Of Land","Road 13, Close 15, Behind Chrisland School Vgc Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45684,"A 1,000sqm Of Land",Near Nicon Hotel Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45685,A 998sqm Of Land,Phase 1 Lekki Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45686,"A 2,261sqm Of Land","Orchid Hotel, Off Chevron Toll Gate Lekki Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45687,"A 2,401sqm Of Land","Block 1, Lekki Road Lekki Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45688,A 4 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 1 +45689,Land For Sale,Opp Lekki Gardens Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45690,Land For Sale,Opp Lekki Garden Estate Lekki Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45691,Plots Of Land,Lekki Free Zone Neighbourhood Lekki Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45692,Land,Marwa Estate Lekki Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45693,Land,"Km 46, Lekki Epe Expressway, Awoyaya, Lagos Lekki Lekki Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45694,4 Bedroom Terraced Duplex In Lekki,Buena Vista Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Lekki Phase 2 +45695,A Plot Of Land,Off Chevron Drive Lekki Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45696,Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45697,6 Bedroom Detached House,Pinnok Estate Lekki Jakande Lekki Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,5 baths,7 Toilets,Other Lekki +45698,6 Bedroom Semi Detached House,Off Admiralty Road Lekki Phase1 Lekki Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets,Other Lekki +45699,5 Bedroom Duplex With 1 Room Bq,Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45700,5bedroom Duplex + A Bq,Osapa London Lekki Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Lekki +45701,3 Bedroom Flat,Chevron Conservation Centre Lekki Lekki Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,2 Toilets,Other Lekki +45702,A Plot Of Land,Mayfair Gardens Lekki Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45703,A Plot Of Land,Abraham Adesanya Lekki Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45704,Plot Of Land,Off Thera Annex Vgc Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45705,4 Bedroom Duplex,Oshopa London Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45706,4 Bedroom Semi Detached House,Jasper Ike Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +45707,Land,Ikota Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45708,Land,Lekki Phase 1 Lekki Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45709,4 Bedroom Terrace House,Nicon Town Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +45710,5 Bedroom Detached House,Lekki Phase 1 Lekki Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +45711,4 Bedroom Semi Detached House,Ikota Ville Lekki Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45712,4 Bedroom Terrace House,Ikota County Homes Lekki Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45713,4 Bedroom Terrace House,Greenville Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45714,4 Bedroom Semi Detached House,Mobolaji Johnson Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Lekki +45715,Office Space,Lekki Epe Expressway Lekki Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45716,4 Bedroom Detached House,Road 44 Vgc Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,3 baths,4 Toilets,Victoria Garden City +45717,Land,Lekki Phase 2 Lekki Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45718,Land,Resort Estate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45719,A 2538sqm Of Land,Akinogun Road Lekki Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45720,4 Bedroom Terrace Duplex,Ikate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45721,4 Bedroom Semi Detached House,Ikate Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45722,5 Luxury Bedroom Duplex,Lekki County Estate Vgc Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets,Victoria Garden City +45723,3 Bed Room Duplex,Canal View Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Lekki +45724,Land,Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45725,Land,"Fountain Springville Estate, Behind The New Shoprite Along Lekki Epe Express Way, Lagos State Lekki Lekki Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45726,Plots Of Land,"Springville Estate, Behind The New Shoprite, Lekki Epe Express Way, Lagos Lekki Lekki Lagos",₦,"37,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45727,Plot Of Land,"Plot Q5, Springville Estate, Lekki, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45728,5 Bedroom Duplex,"Lawrence Akande Close, Off Prof Kiumi Akingbehin Street (street Of Payless Supermarket) Lekki Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45729,Story Building Of 4 Flats 3 No's Of 3bed,Ajah Lekki Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +45730,A 3 Bedroom Terrace Duplex,Lekki Gardens Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45731,3 Bedroom Flat,Osapa Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45732,A 3 Bedroom Apartment,Bamidele Eletu Street Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45733,5 Bedroom Detached House With 2 Room Bq,"Still Waters Gardens, Lekki Lekki Lekki Lagos",₦,"80,000,000",0,0,0,7 beds,6 baths,6 Toilets,Other Lekki +45734,4 Bedrooms Detached House,Beachwood Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45735,A 3 Bedroom Flat,Abijo Lekki Lekki Lagos,₦,"600,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45736,A 650sqm Of Land,By Oniru Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45737,5 Bedroom Duplex,Southern View Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45738,"5 Bedroom Detached House + Bq,","Abdul Rahaman Oseni Street, Off Maiyegun Road, Jakande Lekki, Lagos Lekki Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45739,A 5 Bedroom Semi Detached Duplex With A Room Bq,Ilasan Opposite Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45740,4bedroom Bungalow,"Near Fara Park Estate, Sangotedo, Ajah Lekki, Lagos Lekki Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45741,4 Bedroom Semi Detached House,Platinum Way Jakande Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45742,4 Bedroom Duplex,Road 12 Jakande Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45743,5 Bedroom Semi Detached House,Ikota Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45744,Land,Bunmi Oluwude Lekki Phase 1 Right. Lekki Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45745,4 Bedroom Duplex,Osapa London Lekki Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45746,4 Bedroom Semi Detached House,Lekki Gardens Sangotedo Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45747,5 Bedroom Detached +1bq,Carlton Gate Estate Chevron Drive Lekki Lekki Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45748,5 Bedroom Detached +1bq,Prestigious Carlton Gate Estate Lekki Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45749,"A 1,007sqm Of Land","Block 135, Plot 31 Lekki Lekki Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45750,A Plot Of Land,Farapark Estate Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45751,A Plot Of Land,Victory Estate Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45752,Land,Farapark Estate Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45753,Land,Victory Estate Lekki Lekki Lagos,₦,"2,800,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45754,"A 1,962sqm Of Dry Land","Block 113, Plot 1b Lekki Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45755,4 Bedroom Detached House + 2 Room Bq,Goshen Estate Lekki Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Lekki +45756,A 900sqm Of Land,Plot 15 Block 112 Lekki Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45757,A 900sqm Of Land,Road 14 K 12 Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45758,"A 2,105sqm Of Land",Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45759,"A 2,198sqm Of Land",Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45760,A 3000sqm Of Land,Vgc Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45761,A 10 Plots Of Land,After Mobile Filling Station Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45762,4.206 Hectares Of Land,Maiyegun Tourism Zone Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45763,2.6 Hectares Of Land,Plot 7a And 7b Okunde Blue Waters Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45764,"A 26,510sqm Of Land",Tourism Zone Near Goshen Estate Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45765,13.067 Hectares Of Land,"Plot 5,6,7 & 8 Maiyegun Tourism Zone Lekki Lekki Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45766,A 5 Hectares Of Land,Sangotedo Lekki Lekki Lagos,₦,"3,750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45767,A 12.75 Hectares Of Land,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45768,Land,Vgc Lekki Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45769,A 5 Bedroom Detached House With 2 Rooms Bq,Alpha Beach Road Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45770,4 Bedroom Duplex,Oba Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45771,4 Bedroom Duplex,Oba Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45772,A Plot Of Land,Flourish Gardens Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45773,A Plot Of Land,Flourish Court Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45774,Land,Off Platinum Way. Lekki Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45775,Land,Lafiaji Town Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45776,4 Bedroom Duplex +2 Bq,Dasilva Street Lekki Phase 1 Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,6 Toilets,Other Lekki +45777,Plot Land,Onosa Ibeju Lekki Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45778,Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45779,Plots Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45780,Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45781,Plots Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45782,Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45783,Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45784,Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45785,Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45786,Half Plot Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"850,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45787,Plots Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45788,Plots Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45789,A Plot Of Land,Madonna Gardens Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45790,A Plot Of Land,Flourish Court Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45791,A Plot Of Land,Flourish Gardens Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45792,Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45793,Land,By Lakowe Lakes Golf And Country Estate Lekki Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45794,A 4 Bedroom Terrace House,Ikota Villa Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45795,4bedroom Duplex + 2room Bq,Lekki Lekki Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,0 Toilets,Other Lekki +45796,Land,Rockville Couts Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45797,Land,Hampton Courts Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45798,Land,Brooksville Courts Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45799,Plots Of Land,Ibeju Town Cherrywood Court Estate Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45800,Land,Spring Courts Estate Ibeju Town Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45801,Plot Land,Ibeju Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45802,A 4 Bedroom Duplex With 2 Rooms Bq,Dasilva Street Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45803,Land,Vgc Lekki Lekki Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45804,A 4 Bedroom Terrace With A Bq,Oniru Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45805,A Fully Detached House With A 2 Room Bq,Pinnock Estate Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45806,A 900sqm Of Land,By Lakowe Lakes Golf And Country Estate Lekki Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45807,Detached 4 Bedroom Duplex With Bq,Northern Foreshore Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45808,Land,19a Lekki Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45809,Well Built 3 Bedroom Terrace With Bq,Bosun Adekoya Lekki Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45810,A 6 Units Of A 3 Bedroom Flat Building On A 500sqm Land,Fola Oshibo Street Lekki Lekki Lagos,₦,"320,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45811,Brand New 5bedroom Duplex,Idado Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Lekki +45812,5 Bedroom Detached House,Osapa London Lekki Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45813,Land,Osapa London Lekki Lekki Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45814,3 Bedroom Apartment,Treasure Gareden Lekki Phase 1 Lekki Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +45815,Land,Palace Road Oniru Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45816,6units Of 3 Bedroom Flats,Atlantic View Estate Lekki Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45817,A 4 Bedroom Semi Detached Duplex With A Room Bq,Sangote Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45818,A 740sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45819,"A 1,040.000sqm Of Land",Lafiaji Town Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45820,A 1242.663sqm Of Land,Off Platinum Way. Lekki Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45821,5 Bedroom Detached House,Lekki Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,5 Toilets,Other Lekki +45822,5 Bedroom Detached +2bq,"Off Fola Osibo Street, Lekki Phase1. Lagos Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45823,Plots Of Land,Crown Estate Lekki Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45824,A 4 Bedroom Duplex,Ologolo Lekki Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45825,5 Bedroom Detached Duplex,Ikota Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45826,A 5 Bedroom Duplex With A Room Bq,Calton Gate Estate Lekki Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45827,Land,"Eluju Town,before Eleko Junction.lekki Epe Express Way.lagos., Lekki Expressway, Lekki, Lagos Lekki Lekki Lagos",₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45828,Land,"Along Coastal Road, After Lekki Free Trade Zone,indomie Factory, Power Oil Company And Dangote’s Refinery, Ibeju, Lagos Lekki Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45829,A Plot Of Land,Abraham Adesanya Lekki Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45830,A Plot Of Land,Abijo Gra Lekki Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45831,Plot Of Land,Lekki Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45832,Brand New Semi Detached 5bedroom With Cctv,Igbo Efon Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,5 baths,5 Toilets,Other Lekki +45833,5 Bedroom Duplex,"Chevy View Estate, Chevron Drive Lekki Lekki Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45834,A 5 Bedroom Duplex With A Room Bq,Nicon Town Lekki Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,5 Toilets,Other Lekki +45835,3 Bedroom Flat A With A Bq,Chevon Drive Chevy Lekki Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Lekki +45836,12 Units Of 3 Bedroom Flat,Dideolu Estate Oniru Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45837,A 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Niyi Okunnubi Street Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45838,A 5 Bedroom Detached House With A Bq,"Victory Pack Estate, Lekki Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45839,A 5 Bedroom Detached House,"Rthyme Road, Jakande, Lekki Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45840,A 4 Bedroom Duplex With A Room Bq,Modupe Odulami Street Off Bosun Adekoya Street Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45841,A 5 Bedroom Detached House With A Bq,Lawrence Akande Close Lekki Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45842,A 5 Bedroom Detached House With A Bq,Unity Close Off African Lane Lekki Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45843,28 Room Hotel For Sale,Remi Olowude Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45844,6 Plots Of Land,Nicon Town Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45845,A 14 Units 4 Bedroom Semi Detached Duplex Estate,Kanmi Oyegunle Lane Lekki Lekki Lagos,₦,"434,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45846,A 4 Bedroom Semi Detached Duplex With A Room Bq,Kanmi Oyegunle Lane Lekki Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45847,A 4 Bedroom Terraced Duplex,Provindence Road Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45848,5 Bedroom Flat,Few Mins Drives From The New Circle Mall Shoprite Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Lekki +45849,65 Units Of Terrace Flats,Behind Westend Estate Behind Spg Office Agungi Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45850,3 Nos Of 20 Units Of 4bedroom Terrace,Kushenia Road Ikate Elegushi Lekki Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45851,4 Bedroom Terrace Apartments,Ora Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Ikota +45852,3bedroom Bungalow,Ajah Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Lekki +45853,3 Units Of 4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45854,3 Bedroom Terrace,Ocean Bay Estate Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45855,12 Units Of 2 Bedroom Apartment,Ocean Bay Estate Lekki Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +45856,8 Units Of 1 Bedroom Apartments,Ocean Bay Estate Lekki Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Lekki +45857,4 Bedroom Terrace Duplex,"Off Gbamgbala Road, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45858,15.428 Hectares Of Land,Ikasan Lekki Lekki Lekki Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45859,A 660sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45860,A 668sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45861,4 Bedroom Terrace Duplex,"Gbangbala Street, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45862,Certificate Of Occupancy,"Road 16, Off Lekky County Road Lekki Lekki Lagos",₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45863,Dominion Project,"Plot 10,block 25,lekki Residential Scheme 1 Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45864,9 Bedroom Flats,Alpha Beach Road Lekki Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45865,5 Bedroom Detached +1bq,Off Castle Road Lekki Phase 1 Lekki Lekki Lagos,₦,"2,200,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45866,5 Bedroom Bungalow,Serene Street Off Lekki Epe Express Way By Bogije Lekki Lekki Lagos,₦,"25,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45867,4 Bedroom Terrace Duplex,Serene Close By Off Amadason Street Lekki Lekki Lagos,₦,"48,500,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45868,3 Bedroom Flats,Ikota Villa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Lekki +45869,Land,Alma Beach Ikate Elegushi Lekki Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45870,3 Bedroom Flat,Igbo Efon Chevron Lekki Lekki Lagos,₦,"27,500,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +45871,Land,Arisco Barr Jakande Directly On Lekki Beach Road Lekki Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45872,Land Per Spmts,"Prince Abiodun Road,off Idowu Abiodun Road Oniru Lekki Lekki Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45873,5 Bedroom Detached +2bq,Sybil Lroche Street Off Niyi Okunibi Street Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45874,3 Bedroom Flat A With A Bq,Lekki Phase 1 Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45875,Plots Of Land,Lekki Country Estate Lekki Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45876,Plots Of Land,Lekki Country Estate Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45877,Plots Of Land,Norther Foreshore Estate Chevron Drive Lekki Lekki Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45878,Plot Of Land,Sapphire Gardens Lekki Epe Expressway Lekki Lekki Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45879,Plot Land,1st Right Turn After The Second Toll Gate And Opposite Mobil Corporative Estate On Orchid Hotel Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45880,A 5 Bedroom Detached Duplex,Ikota Villa Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets,Other Lekki +45881,4 Bedroom Semi Detached Duplex+bq,Oloc Jakande After Shoprite Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Lekki +45882,A 5 Bedroom Detached Duplex With 2 Room Bq,Carltongate Estate Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45883,Plot Land,Block 25 Lekki Scheme 2 Lekki Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45884,A 5 Bedroom Detached Duplex,Lekki House Lekki Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45885,Plots Of Land,Abijo Gra In Lekki Peninsular Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45886,Plots Of Land,Lekki Free Trade Zone Lekki Lekki Lagos,₦,"852,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45887,5 Bedroom Semi Detached + 2bq,Vgc Lekki Lekki Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45888,4 Bedroom Fully Detached Duplex,Lekki Country Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45889,A 4 Bedroom Semi Detached Duplex With A Room Bq,Off Romay Garden Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45890,5 Bedroom Fully Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45891,4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45892,2 Bedroom Flat,Lekki Right Maruwa By Pinnacle Filling Station Lekki Phase 1 Lekki Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +45893,2 Bedroom Flat,Western Estate Ikota Villa Estate Lekki Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Lekki +45894,5 Bedroom Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"46,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45895,Land,Chevron Alternative Road Chevron Lekki Lekki Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45896,4 Bedroom Terrace Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45897,5 Bedroom +bq,Behined Havens Homes And Meadows School Ikate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45898,4 Bedroom Duplex,Agungi Lekki Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45899,5 Bedroom +bq,Osapa Gra By New Shoprite Jakande Lekki Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45900,4 Bedroom Duplex +bq,Oba Musa Estate Agungi Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45901,4 Bedroom Duplex,Agungi Lekki Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45902,Land,Lakowe Bodija Ibeju Lekki Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45903,5 Bedroom With 2 Bq,Norther Foreshore Estate Chevron Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45904,Detached Duplex,Osapa Gra By Shoprite Jakande Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45905,4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45906,3 Bedroom Terrace Duplex,Lekky County Ikota Villa Estate Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45907,4 Bedroom Duplex,Mini Service Estate Agungi Lekki Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45908,A 5 Bedroom Fully Detached House With A Bq,Thomas Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45909,5 Bedroom Semi Detached Duplex,Atlantic View Estate Estate Off Alpha Beach On Chevron Drive Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45910,3 Bedroom Flat,Lekki Epe Express Way 6th Roundabout Lekki Lekki Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45911,5 Bedroom Detached Duplex,Ologolo Lekki Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45912,Acres Of Land,Ode Okun After Lekki Peninsula Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45913,Plot Land,Aiyedere Lekki Peninsula Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45914,A Plot Of Land,Akodo Ise Village In Ibeji Lekki Lekki Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45915,3 Units Of A 4 Bedroom Semi Detached Duplex,Off George Omonubi Street Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45916,4 Bedroom Semi Detached House,Da Sliva Street Lekki Phase 1 Lekki Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Lekki +45917,A Plot Of Land,Lekki Scheme Ii Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45918,A Standard Plot Of Land,Ikota Villa Estate Lekki Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45919,A Plot Of Land,Ikota Villa Estate Lekki Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45920,A 5 Bedroom Twin Duplex With 2 Room Bq,Phase 1 Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45921,A 4 Bedrooms Semi Detached House With A Bq,Northern Foreshore Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45922,A Twin 4 Bedroom Duplex,Ibeju Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45923,6 Bedrooms Fully Detached House,Furo Eximora Lekki Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Lekki +45924,5 Plots Of Land For Sale,Ogombo Lekki Lekki Lagos,₦,"6,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45925,5 Bedroom Detached House + 3 Rooms Bq,Admiralty Road Lekki Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45926,5 Bedrooms Fully Detached House,Chevy View Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45927,5 Bedroom Detached House + A Room Bq,Calton Estate Lekki Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45928,6 Units Of A 3 Bedroom Flat,Chevy View Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45929,Semi Detached Duplex Plus A Room Bq,Chevy View Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45930,4 Bedroom Detached Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45931,5 Bedroom Semi Detached Duplex,Behind Romay Gardens Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45932,4 Bedroom Terrace Duplex,Ikate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45933,A 4 Bedrooms Semi Detached Duplex,Crown Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45934,A 4 Bedroom Duplex With A Bq,4th Roundabout Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45935,A 4 Bedrooms Semi Detached House With A Bq,Bela Vista Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45936,A 4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45937,A 5 Bedroom Fully Detached House,Pinnock Estate Lekki Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45938,20 Units Of 3 Bedroom Flats,Lekki Phase 1 Lekki Lekki Lagos,₦,"1,700,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45939,Land,"Free Trade Zone, Lekki Lekki Lekki Lagos",₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45940,Land,"Oakwood Garden Lakowe. By Lakowe Lakes Golf & Country Estate, Lekki Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45941,Land,Ikota Villa Estate Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Garden City +45942,A 4 Bedroom Duplex,Agungi Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45943,A 4 Bedroom Duplex,Ikota Villa Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Lekki +45944,A 4 Bedrooms Semi Detached Duplex,Lekki Garden Phase 4 Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45945,A Plot Of Land,Lekki Epe Express Way Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45946,4 Bedroom Duplex Apartment With 1 Room Bq,Elegushi Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45947,Land,Pinnock Beach Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45948,6 Bedroom Duplex With Bq & Study Room,Oniru Lekki Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,5 Toilets,Other Lekki +45949,Land For Sale,",plot 3. Block 120 Lekki Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45950,4 Bedroom Duplex,"Agungi, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45951,4 Bedroom Duplex + A Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45952,5 Bedroom Detached House + Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45953,2 Units Of 4 Bedroom Duplex,Extention Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45954,A Luxury Brand New 4 Bedroom Terrace,"New Road, Lekki Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45955,4 Bedroom Detached Duplexe + Bq,"Ikota Villa Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45956,5 Bedroom Detached House + A Room Bq,Osapa London Lekki Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45957,15 Bedroom Mansion,Ikota Villa Estate Lekki Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45958,5 Bedroom Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45959,Spacious And Can Be Redeveloped Or Upgraded,Bakare Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45960,14 Units Of New Duplexes With Bq,Peninsula Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45961,3 Storey 6 Bedroom Terraced House,Meadow Hall Way Lekki Lekki Lagos,₦,"50,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Lekki +45962,4 Bedroom Duplex For Sale,Osapa London Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45963,"10,000sqm Of Land Beside Lekki Gardens, Elegushi","Beside, Lekki Gardens Lekki Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45964,Newly Built & Tastefully Finished 4 Bedrooms Detached Duplex,Marcapolo Mini Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45965,Newly Built 4 Bedroom Semi Detached House With One Room Bq,No1 Lara Ademola Street. Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45966,Newly Built 4 Bedroom Terrace Duplex,No1 Lara Ademola Street. Lekki Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45967,5 Bedroom Terrace House,"Jakande, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,3 baths,6 Toilets,Other Lekki +45968,4 Bedroom Terrace House,"Jakande, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45969,Luxury Three Bedrooms Flat With Boys Quarters,"Pearly Gate Estate, Ikota Lekki Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Lekki +45970,5 Bedroom Detached House + 1 Bq,"Osapa London, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45971,2 Unit Of 4 Bedroom Duplex (detached & Semi Detached),Road 3 Lekki Counting Lekki Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45972,5 Bedroom Detached House With A Room Bq,Victory Park Estate Lekki Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45973,5 Bedroom Fully Detached House + A Room Bq,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45974,4 Bedroom Semi Detached House + A Room Bq,"Off Agungi Road, Lekki Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45975,8 Units Of 3 Bedroom Semi Detached Houses +room Bq,"Off Eletu Street, Lekki Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Lekki +45976,4 Bedroom Semi Detached House + A Room Bq,"Chevyview Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45977,2 Units Of 4 Bedroom Terraced House,"Off Agungi Road, Lekki Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45978,4 Bedroom Duplex Withb 1 Room Bq,Lekki Cantting Transformation. Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45979,5 Bedroom Duplex,Lekki Cantting Transformation. Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45980,3 Bedroom Flat,Road Six Cantting Lekki Lekki Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Lekki +45981,4 Unit Of 2 Bedroom Flat,"Close To Lekki Toll Gate, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +45982,Newly Built 4 Bedroom Detach House In A Mini Estate,"Lara Ademola Street, By Nevada Hotels Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45983,5 Bedroom Detached House + 2 Rooms Bq,"Plot 104, Olajide Olabanji Street Lekki Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45984,Block Of Flats In Lekki Expressway,"Ikota Villa Estate, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +45985,8 Bedroom Detached House + 4 Room Bq,Adeniyi Olanrewaju Street Lekki Lekki Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,0 Toilets,Other Lekki +45986,Block Of Flats In Lekki Expressway,Ikota Villa Estate. Lekki Lekki Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Lekki +45987,4 Bedroom Detached House Plus 2 Room Bq,"Plot B25 B8 Close, Carlton Gate Estate, Lekki Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki +45988,5 Bedroom Duplex + 1 Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45989,4 Bedroom Semi Detached Duplex + A Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45990,4 Bedroom Duplex,"Chevy View Estate, Lekki Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Lekki +45991,5 Bedroom Duplex,"Chevy View Estate, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45992,A 1000sqm Land For Sale,"Central Business District, Lekki Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Lekki +45993,5 Bedroom Duplex,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Lekki +45994,5 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Lekki +45995,6 Units Of 2 Bedroom Flat,"Marwa, Lekki Lekki Lagos",₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Lekki +45996,Furnished 4 Bedroom Terrace,"Off Lekki County Homes Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Lekki diff --git a/clean/test.csv b/clean/test.csv new file mode 100644 index 0000000..55814ff --- /dev/null +++ b/clean/test.csv @@ -0,0 +1,2629 @@ +Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood,Type,City +72000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +380000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +380000000.0,0,1,1,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,1,1,0,6,6,7,Ikate,Semi Detached Duplex,Lekki +115000000.0,0,0,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +118000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +170000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,5,4,6,Agungi,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Onikoyi,Terraced Duplex,Ikoyi +200000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Waziri Adeola Odeku,Detached Duplex,Victoria Island +300000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +40000000.0,0,0,0,4,3,3,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +80000009.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +135000000.0,1,0,1,5,5,6,Agidingbi,Detached Duplex,Ikeja +125000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +10000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +56000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +165000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Allen Avenue,Terraced Duplex,Ikeja +50000000.0,0,1,1,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,3,4,4,Ikate,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,0,0,6,7,8,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,6,Other Ikoyi,Terraced Duplex,Ikoyi +45000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +66000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +55000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,0,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +75000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +79000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +90000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +47000000.0,0,1,0,3,3,4,Chevron,Detached Duplex,Lekki +280000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +295000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +46000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,1,3,4,4,Other Lekki,Terraced Duplex,Lekki +220000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +56000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,0,0,0,5,5,5,Ikate,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +145000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ologolo,Terraced Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +53000000.0,1,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +150000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +170000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,1,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +72000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +170000000.0,1,1,1,5,5,5,Ikate,Detached Duplex,Lekki +240000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +65000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +50000000.0,0,1,1,4,5,5,Osapa London,Terraced Duplex,Lekki +72000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +60000000.0,0,1,1,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +260000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +150000000.0,0,0,0,5,2,2,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +170000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +270000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75009009.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,5,6,6,Other Lekki,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +56000000.0,1,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +78000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +135000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,7,Osapa London,Detached Duplex,Lekki +36500000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +140000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +180000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +68000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +111000000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +55000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +69000000.0,0,0,0,4,4,3,Chevron,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +138000000.0,0,0,0,4,6,7,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,7,5,Adeniyi Jones,Detached Duplex,Ikeja +105000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,6,Lekki Phase 1,Terraced Duplex,Lekki +67000000.0,1,0,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +75000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +200000000.0,1,0,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,4,5,4,Banana Island,Detached Duplex,Ikoyi +70000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +53500000.0,1,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +47000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Airport Road,Semi Detached Duplex,Ikeja +300000000.0,0,0,0,4,3,5,Other Victoria Island,Terraced Duplex,Victoria Island +65000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +240000000.0,0,1,1,5,6,6,Alausa,Detached Duplex,Ikeja +47500000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +325000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +42000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +72000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Alausa,Detached Duplex,Ikeja +40000000.0,1,0,0,4,5,5,Ikota,Terraced Duplex,Lekki +90000000.0,0,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +220000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +220000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,1,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +135000000.0,0,1,0,3,4,4,Other Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +350000000.0,0,0,1,5,6,7,Maryland,Detached Duplex,Ikeja +200000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +185000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +170000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +145000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +200000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +65000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +200000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Ologolo,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +450000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +62990000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +55000000.0,1,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Foreshore,Terraced Duplex,Ikoyi +65000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +185000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +85000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +55000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +95000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +320000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +105000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +280000000.0,1,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +380000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,9,9,10,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,3,Omole,Detached Duplex,Ikeja +200000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,7,7,Chevron,Detached Duplex,Lekki +87000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +49000000.0,0,0,0,3,2,4,Osapa London,Terraced Duplex,Lekki +170000000.0,1,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +350000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,1,0,3,3,3,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +135000000.0,0,1,1,5,6,6,Banana Island,Detached Duplex,Ikoyi +33000000.0,0,1,0,3,5,5,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +450000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +260000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Victoria Island Extension,Terraced Duplex,Victoria Island +85000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +235000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +50000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,1,1,1,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,6,Osapa London,Semi Detached Duplex,Lekki +220000000.0,0,1,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +92000000.0,0,1,1,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +30000000.0,0,1,0,4,6,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,1,1,0,5,6,6,Opebi,Detached Duplex,Ikeja +37000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +185000000.0,0,0,0,10,9,9,Allen Avenue,Detached Duplex,Ikeja +255000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +73000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +35000000.0,1,0,0,4,4,4,Chevron,Detached Duplex,Lekki +60000000.0,1,1,0,4,6,6,Maryland,Terraced Duplex,Ikeja +240000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +36000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +160000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +115000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Oniru,Detached Duplex,Victoria Island +150000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +170000000.0,0,0,0,5,6,5,Other Ikeja,Detached Duplex,Ikeja +40000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +33000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +250000000.0,1,0,1,5,7,7,Oniru,Semi Detached Duplex,Victoria Island +45000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,6,6,Chevron,Detached Duplex,Lekki +48000000.0,0,1,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +270000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +47999999.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,4,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,5,9,9,Lekki Phase 2,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,3,3,4,Allen Avenue,Detached Duplex,Ikeja +65000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +176000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +45000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,10,0,0,Ikota,Detached Duplex,Lekki +250000000.0,0,0,1,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +105000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +133000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,5,Omole,Detached Duplex,Ikeja +85000000.0,0,0,1,4,5,6,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,0,5,5,6,Agungi,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,4,Ologolo,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +56000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +85000000.0,0,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +57000000.0,0,0,0,4,3,4,Oregun,Semi Detached Duplex,Ikeja +85000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +78000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +440000000.0,0,1,0,7,7,7,Other Lekki,Detached Duplex,Lekki +500000000.0,0,0,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +78000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +300000000.0,0,1,0,6,6,8,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +47000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +160000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +60000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,0,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +350000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +48000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +135000000.0,1,1,0,5,6,6,Agungi,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +280000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +245000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +60000000.0,0,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +195000000.0,1,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +290000000.0,0,1,1,4,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +190000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +390000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +62000000.0,1,0,0,4,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +270000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +60000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,1,1,0,5,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +80000000.0,1,1,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +17675000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +150000000.0,0,1,0,5,6,5,Adeniyi Jones,Detached Duplex,Ikeja +70000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +170000000.0,0,0,0,4,4,4,Onikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,0,0,5,7,8,Ikota,Detached Duplex,Lekki +56000000.0,1,1,1,4,6,6,Osapa London,Semi Detached Duplex,Lekki +275000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +200000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +420000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Detached Duplex,Victoria Island +235000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +125000000.0,1,1,1,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +170000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +160000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +189000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,1,4,5,4,Osapa London,Terraced Duplex,Lekki +195000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +72000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +150000000.0,1,1,0,5,5,2,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,1,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +95000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +45000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +53000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,0,1,4,4,5,Opebi,Detached Duplex,Ikeja +250000000.0,0,1,0,5,5,7,Ikate,Detached Duplex,Lekki +285000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,6,7,7,Osapa London,Detached Duplex,Lekki +76000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,7,7,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,5,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,1,4,5,4,Banana Island,Terraced Duplex,Ikoyi +210000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +90000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +145000000.0,0,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +60000000.0,0,0,0,6,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +196000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +500000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +88000000.0,1,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,7,7,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +160000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +97000000.0,0,1,0,4,4,4,Oregun,Detached Duplex,Ikeja +230000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +130000000.0,0,0,0,5,4,4,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,GRA,Terraced Duplex,Ikeja +140000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,1,1,1,4,5,6,Chevron,Terraced Duplex,Lekki +20000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +52000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +430000000.0,0,0,0,5,6,6,Old Ikoyi,Detached Duplex,Ikoyi +200000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +270000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +260000000.0,1,1,0,3,3,4,Old Ikoyi,Detached Duplex,Ikoyi +110000000.0,0,1,1,5,6,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +60000000.0,1,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +70000000.0,1,0,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Agungi,Terraced Duplex,Lekki +160000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,GRA,Terraced Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +230000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +400000000.0,1,1,0,5,6,7,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,3,3,Osapa London,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,Other Ikeja,Terraced Duplex,Ikeja +72500000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +76000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +75000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,3,4,4,Other Ikeja,Terraced Duplex,Ikeja +120000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +230000000.0,1,1,1,4,4,4,GRA,Detached Duplex,Ikeja +155000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,1,1,4,8,9,Osapa London,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,7,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +76000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +77500000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +140000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +41000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +400000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +170000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +60000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +185000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +160000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +90000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +68000000.0,1,1,1,4,5,6,Ikota,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +88000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +102000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +39000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +100000000.0,0,1,1,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +55000000.0,1,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +35000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,1,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +97000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +450000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,1,1,5,5,6,Banana Island,Terraced Duplex,Ikoyi +130000000.0,0,0,0,5,4,5,Chevron,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +52000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +75000000.0,1,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +175000000.0,1,1,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +81000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +240000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,3,4,4,Osapa London,Terraced Duplex,Lekki +108000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +72000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +250000000.0,0,1,0,5,6,6,Foreshore,Terraced Duplex,Ikoyi +43000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +120000000.0,0,0,0,8,0,0,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,1,0,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +85000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +275000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +290000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +190000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +130000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +400000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +65000000.0,1,1,0,2,2,3,Ikate,Detached Duplex,Lekki +145000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +61000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +39000000.0,0,1,1,3,3,4,Chevron,Detached Duplex,Lekki +57000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,6,7,7,Victoria Garden City,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +40000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +32000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +74000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Oregun,Detached Duplex,Ikeja +38000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +320000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Opebi,Detached Duplex,Ikeja +59000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +230000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +67000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +55000000.0,1,1,1,4,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +210000000.0,0,1,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +77000000.0,0,0,0,3,3,4,Oniru,Detached Duplex,Victoria Island +105000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +420000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +500000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,1,0,0,3,4,4,Lekki Phase 2,Terraced Duplex,Lekki +400000000.0,0,1,0,6,6,7,Ikate,Detached Duplex,Lekki +46000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +130000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,0,0,5,6,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +155000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +99000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,3,0,0,Other Victoria Island,Terraced Duplex,Victoria Island +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +77000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +36500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +59000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +41000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +48000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +155000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,3,0,0,Victoria Island Extension,Terraced Duplex,Victoria Island +69000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +53000000.0,0,1,1,5,5,6,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Onikoyi,Terraced Duplex,Ikoyi +44000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +410000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,3,3,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +102000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +320000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +330000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,4,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +59000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +155000000.0,1,1,1,4,4,4,GRA,Terraced Duplex,Ikeja +165000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +130000000.0,0,0,0,5,6,6,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Other Ikeja,Terraced Duplex,Ikeja +95000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +180000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +73000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +144000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +60000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,5,6,7,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +115000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +115000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +49000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +205000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +39000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +75000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +295000000.0,0,0,0,8,8,8,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +35000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +170000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +55000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +130000000.0,0,1,0,5,6,5,Other Lekki,Detached Duplex,Lekki +220000000.0,1,1,0,5,7,7,Ikota,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,5,Ikota,Terraced Duplex,Lekki +51000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +67000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +85000000.0,1,1,1,5,5,6,Awolowo Way,Detached Duplex,Ikeja +57000000.0,0,1,1,5,5,5,Ikate,Semi Detached Duplex,Lekki +30000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +20000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,5,5,Oniru,Detached Duplex,Victoria Island +200000000.0,0,0,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +140000009.0,0,1,0,3,4,4,Ikate,Terraced Duplex,Lekki +360000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +53000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +38000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,1,5,6,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +41000000.0,0,0,0,3,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +72000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +50000000.0,0,0,0,3,4,0,Other Ikoyi,Detached Duplex,Ikoyi +125000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +115000000.0,0,1,1,7,6,7,Ikota,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,1,1,5,7,7,Victoria Garden City,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +120000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +280000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,1,5,6,6,Other Ikeja,Detached Duplex,Ikeja +32000000.0,1,1,1,4,4,4,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +200000000.0,0,1,1,5,7,7,Chevron,Detached Duplex,Lekki +190000000.0,0,0,0,5,6,6,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +38000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,1,1,4,7,7,Awolowo Way,Detached Duplex,Ikeja +265000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +300000000.0,1,0,1,5,5,5,GRA,Detached Duplex,Ikeja +200000000.0,0,1,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +55000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,1,0,6,7,7,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,4,5,5,Foreshore,Detached Duplex,Ikoyi +73000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +15000000.0,0,0,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +290000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +125000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +140000000.0,0,1,0,4,5,5,GRA,Detached Duplex,Ikeja +145000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,1,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +79000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +106000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,1,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +335000000.0,0,0,0,6,5,7,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +60000000.0,1,1,1,4,4,4,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +43000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +65000000.0,1,1,1,3,4,4,Ikota,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +110000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +350000000.0,0,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +150000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +51000000.0,0,0,0,3,4,4,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Agungi,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +230000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +350000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,1,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,1,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +90000000.0,0,1,0,4,6,6,Oregun,Semi Detached Duplex,Ikeja +370000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,4,Victoria Island Extension,Terraced Duplex,Victoria Island +50000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +350000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +380000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +130000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +45000000.0,1,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +50000000.0,1,1,0,3,3,3,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,1,5,5,6,Banana Island,Detached Duplex,Ikoyi +50000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Alausa,Detached Duplex,Ikeja +77000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +84000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +45000000.0,1,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +39000000.0,1,1,1,2,3,3,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,1,1,3,0,0,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +35000000.0,1,1,0,1,2,2,Ikate,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +70000000.0,0,1,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +18000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +83000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +250000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +400000000.0,0,1,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,1,0,1,4,5,4,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +140000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +390000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +32000000.0,0,0,0,2,0,0,Other Lekki,Detached Duplex,Lekki +280000000.0,1,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +120000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,1,1,0,3,0,0,Lekki Phase 2,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +110000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +37000000.0,1,1,0,3,4,5,Other Lekki,Terraced Duplex,Lekki +125000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +58000000.0,0,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +40000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,0,0,10,10,10,Oniru,Detached Duplex,Victoria Island +280000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +87000000.0,0,0,0,5,2,6,Other Ikeja,Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +42000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +115000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +460000000.0,1,0,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +75000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +88000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +370000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +42000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +50000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +60500000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +35000000.0,0,0,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +500000000.0,0,0,0,5,6,6,Victoria Island Extension,Detached Duplex,Victoria Island +180000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +180000000.0,1,0,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +27000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +450000000.0,0,1,1,5,8,8,Opebi,Detached Duplex,Ikeja +220000000.0,0,1,1,6,6,7,Agungi,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,5,Onikoyi,Detached Duplex,Ikoyi +85000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +19975000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +57000000.0,0,1,1,4,4,4,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,4,Oniru,Semi Detached Duplex,Victoria Island +48000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +155000000.0,0,0,0,4,5,5,GRA,Terraced Duplex,Ikeja +175000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Ikate,Detached Duplex,Lekki +85000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +58000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +10000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +200000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +275000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +76000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +105000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +440000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,1,0,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Ikate,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Agidingbi,Detached Duplex,Ikeja +78000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +68000000.0,0,1,0,4,5,4,Osapa London,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +78000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +330000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,1,1,1,4,4,3,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Detached Duplex,Lekki +500000000.0,0,0,0,5,7,7,GRA,Detached Duplex,Ikeja +260000000.0,0,0,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +290000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +53000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +300000000.0,1,1,1,5,5,7,Chevron,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +43000000.0,0,1,0,4,3,3,Lekki Phase 2,Semi Detached Duplex,Lekki +164000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,1,0,3,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +120000000.0,0,0,0,3,3,3,Oniru,Terraced Duplex,Victoria Island +205000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +175000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +120000000.0,1,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +320000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +120000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,5,4,Chevron,Semi Detached Duplex,Lekki +130000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +285000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Victoria Island Extension,Detached Duplex,Victoria Island +90000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +53000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,5,7,6,GRA,Detached Duplex,Ikeja +64000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +230000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Omole,Semi Detached Duplex,Ikeja +125000000.0,1,1,1,5,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +60000000.0,0,1,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,1,0,0,0,5,Ikota,Detached Duplex,Lekki +480000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +450000000.0,0,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +140000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +56000000.0,0,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +350000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +37000000.0,0,0,0,4,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +450000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +290000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +38000000.0,0,1,0,5,4,5,Osapa London,Terraced Duplex,Lekki +58000000.0,0,0,0,5,5,5,Allen Avenue,Terraced Duplex,Ikeja +40000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,6,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +280000000.0,0,1,1,5,6,6,Old Ikoyi,Detached Duplex,Ikoyi +290000000.0,0,0,0,5,6,7,Onikoyi,Detached Duplex,Ikoyi +220000000.0,0,0,1,4,5,5,Alausa,Detached Duplex,Ikeja +35000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +97000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Allen Avenue,Semi Detached Duplex,Ikeja +185000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +140000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +90000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,1,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +130000000.0,0,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +80000000.0,1,1,1,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +85000000.0,0,1,1,2,3,0,Lekki Phase 1,Terraced Duplex,Lekki +82000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +175000000.0,0,0,1,4,6,6,Agungi,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +47000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,6,6,7,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +78000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +450000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +40000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +195000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,1,1,0,4,5,5,GRA,Detached Duplex,Ikeja +51000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +125000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,1,1,1,4,4,4,Ikate,Semi Detached Duplex,Lekki +58000000.0,0,0,1,4,6,6,Chevron,Detached Duplex,Lekki +68000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +55000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +165000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +70000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +76000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +130000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,7,Chevron,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +125000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +220000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +85000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +260000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +155000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +54000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +214000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +39000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +500000000.0,0,0,1,6,6,7,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +45000000.0,1,1,1,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +65000000.0,0,0,0,5,4,4,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,7,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +75000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +175000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +150000000.0,0,1,0,4,5,4,Agungi,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +270000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,1,1,0,5,4,5,Ologolo,Terraced Duplex,Lekki +170000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,1,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +45000000.0,0,0,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +93000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +83000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +48000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +55000000.0,0,1,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +95000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +48000000.0,0,1,0,3,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +187000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +40000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +78000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +230000000.0,0,1,1,6,8,8,GRA,Detached Duplex,Ikeja +130000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +75000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +67000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +50000000.0,1,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +230000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +320000000.0,0,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +160000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +69000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +86000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +185000000.0,1,1,0,3,3,4,Other Victoria Island,Detached Duplex,Victoria Island +90000000.0,0,0,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +78000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,3,4,Parkview,Detached Duplex,Ikoyi +120000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +220000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,1,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Agidingbi,Detached Duplex,Ikeja +45000000.0,0,1,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +450000000.0,0,1,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +60000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +185000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,1,1,1,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +100000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +55000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +62000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Airport Road,Detached Duplex,Ikeja +160000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +220000000.0,0,1,0,5,5,6,Parkview,Detached Duplex,Ikoyi +65000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +95000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +280000000.0,0,1,1,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +60000000.0,1,1,1,0,3,4,Osapa London,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +87000000.0,0,1,1,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +59000000.0,0,1,1,5,5,5,Chevron,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +135000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +250000000.0,0,1,0,6,6,7,GRA,Detached Duplex,Ikeja +70000000.0,0,0,0,5,5,5,Omole,Detached Duplex,Ikeja +120000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +240000000.0,0,1,0,5,6,6,Alausa,Detached Duplex,Ikeja +160000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +56000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +35850000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +95000000.0,0,1,0,5,7,8,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +230000000.0,1,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +140000000.0,0,0,0,3,3,0,Foreshore,Terraced Duplex,Ikoyi +180000000.0,0,1,0,4,4,5,GRA,Detached Duplex,Ikeja +115000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +195000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,0,0,5,7,8,Other Lekki,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +175000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +270000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +145000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,3,4,5,Chevron,Detached Duplex,Lekki +145000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +40000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +420000000.0,0,1,0,9,9,9,Other Lekki,Detached Duplex,Lekki +30000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +41800000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +59000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +140000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +270000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +260000000.0,0,0,0,5,4,4,Banana Island,Semi Detached Duplex,Ikoyi +100000000.0,0,0,1,4,4,5,Chevron,Detached Duplex,Lekki +30000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +38500000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,0,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +270000000.0,1,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +135000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,7,5,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +190000000.0,0,0,0,4,3,4,Parkview,Semi Detached Duplex,Ikoyi +47500000.0,0,1,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +90000000.0,1,1,0,3,3,4,Ikate,Terraced Duplex,Lekki +115000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +90000000.0,0,0,0,3,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +100000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +150000000.0,1,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +56000000.0,0,1,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +80000000.0,1,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +117000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,5,7,5,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,6,6,7,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Osapa London,Terraced Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +240000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Lekki Phase 1,Semi Detached Duplex,Lekki +38000000.0,1,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +120000000.0,0,0,1,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +200000000.0,0,0,0,4,4,6,Osapa London,Detached Duplex,Lekki +48000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +180000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +79500000.0,1,1,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,1,1,1,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +230000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +275000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,4,Lekki Phase 1,Detached Duplex,Lekki +245000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +41500000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,0,0,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +92000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +128000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +75000000.0,1,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +95000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +135000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +100000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +155700000.0,0,1,0,8,8,0,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,1,5,6,6,Omole,Detached Duplex,Ikeja +55000000.0,0,0,0,4,3,3,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +53000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +185000000.0,0,1,1,5,5,6,Ikate,Semi Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Chevron,Terraced Duplex,Lekki +54000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +79000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +84000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +200000000.0,1,1,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,6,Chevron,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +48000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +250000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +75000000.0,0,0,1,4,4,5,Ikate,Terraced Duplex,Lekki +40000000.0,0,1,1,4,2,2,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +130000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +400000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +130000000.0,0,0,0,3,3,4,Oniru,Detached Duplex,Victoria Island +75000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +98000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +205000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +123000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +36000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +300000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,1,5,5,5,Ikate,Detached Duplex,Lekki +280000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +75000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +130000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +450000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +75000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +320000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,1,1,4,3,5,Chevron,Semi Detached Duplex,Lekki +96000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Opebi,Detached Duplex,Ikeja +300000000.0,1,1,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +70000000.0,1,1,1,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,0,1,0,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +65000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +175000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +185000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,1,1,5,6,6,Other Ikeja,Semi Detached Duplex,Ikeja +110000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +62000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Awolowo Way,Terraced Duplex,Ikeja +260000000.0,0,0,0,4,3,4,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,0,1,0,6,5,8,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +180000000.0,1,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +200000000.0,1,1,1,5,6,6,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,4,Osapa London,Terraced Duplex,Lekki +40000000.0,0,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +160000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +85000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +210000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,6,5,7,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +36000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +80000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +65000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +74000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +141000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Osapa London,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +320000000.0,0,1,0,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +40000000.0,0,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +145000000.0,1,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +200000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +185000000.0,1,1,1,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +210000000.0,1,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,0,0,0,5,5,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +160000000.0,0,0,0,4,4,5,Foreshore,Terraced Duplex,Ikoyi +85000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +55000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +120000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,3,3,4,Oniru,Detached Duplex,Victoria Island +185000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +58000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +300000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +180000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +78000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +330000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +57172500.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +120000000.0,1,0,1,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +60000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,0,0,6,6,5,Other Lekki,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +110000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +30000000.0,0,1,0,2,2,2,Ologolo,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +115000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +150000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +49500000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,0,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +40000000.0,0,0,0,5,6,5,Ikota,Detached Duplex,Lekki +77500000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +500000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +90000000.0,0,1,1,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +450000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +150000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +32000000.0,0,1,0,3,3,3,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,0,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +140000000.0,0,0,1,4,5,5,Adeniyi Jones,Detached Duplex,Ikeja +250000000.0,0,0,0,10,8,9,Opebi,Terraced Duplex,Ikeja +75000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +390000000.0,0,1,0,6,6,7,GRA,Detached Duplex,Ikeja +210000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +250000000.0,0,0,1,5,5,6,GRA,Detached Duplex,Ikeja +33000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +480000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +150000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +35000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +190000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,1,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +130000000.0,0,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +210000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +140000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +40000000.0,1,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +60000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +480000000.0,0,1,0,6,6,7,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +135000000.0,1,1,0,3,3,4,Other Ikoyi,Detached Duplex,Ikoyi +100000000.0,0,0,0,6,5,5,Other Ikeja,Detached Duplex,Ikeja +62000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +500000000.0,1,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +185000000.0,0,0,0,5,5,6,Old Ikoyi,Terraced Duplex,Ikoyi +280000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +198000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,3,3,Other Lekki,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +60000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +195000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +115000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +62000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Alausa,Detached Duplex,Ikeja +35000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +125000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +205000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,1,5,6,6,Osapa London,Detached Duplex,Lekki +190000000.0,0,0,0,3,3,4,Lekki Phase 1,Detached Duplex,Lekki +86000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,1,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +25000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +205000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +39000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Parkview,Semi Detached Duplex,Ikoyi +53000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +83000000.0,1,0,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,1,1,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +390000000.0,0,0,0,7,7,8,Other Victoria Island,Detached Duplex,Victoria Island +70000000.0,1,1,1,5,5,5,Osapa London,Semi Detached Duplex,Lekki +210000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +48000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +37000000.0,0,1,1,3,3,4,Ikota,Terraced Duplex,Lekki +105000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +59000000.0,0,1,1,4,5,5,Chevron,Detached Duplex,Lekki +86000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,0,1,4,3,3,Ikate,Semi Detached Duplex,Lekki +68000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +37000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +140000000.0,1,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +115000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +58000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +57000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,1,1,4,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,2,2,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +295000000.0,0,1,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +69000000.0,1,1,0,5,4,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Oregun,Semi Detached Duplex,Ikeja +69000000.0,1,1,1,4,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +96000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +500000000.0,0,0,1,3,5,5,GRA,Detached Duplex,Ikeja +170000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +30000000.0,0,1,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +56000000.0,0,1,1,5,5,5,Osapa London,Semi Detached Duplex,Lekki +18500000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +69000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +140000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +65000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,Alausa,Detached Duplex,Ikeja +50000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +30000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,0,0,5,7,8,Lekki Phase 1,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,6,Parkview,Detached Duplex,Ikoyi +270000000.0,0,0,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +115000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +58000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,0,1,0,3,3,4,Other Ikoyi,Terraced Duplex,Ikoyi +170000000.0,1,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +32750000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +300000000.0,1,1,1,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +120000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +70000000.0,1,1,0,4,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +295000000.0,0,1,0,6,6,7,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,0,1,4,5,5,Other Ikeja,Detached Duplex,Ikeja +150000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +145000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +43500000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +68000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +43000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Other Victoria Island,Terraced Duplex,Victoria Island +37000000.0,1,1,0,2,2,2,Other Lekki,Detached Duplex,Lekki +28000000.0,0,1,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +62000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +90000000.0,0,0,0,3,3,2,Lekki Phase 1,Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +69000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +77000000.0,0,1,0,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +83000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +98000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +63000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +57000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,5,Alausa,Semi Detached Duplex,Ikeja +155000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +380000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +60000000.0,1,1,0,3,4,4,Osapa London,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +34000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +300000000.0,0,0,0,4,5,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +55000000.0,0,1,1,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +50000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +280000000.0,0,0,1,5,6,6,Victoria Garden City,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +450000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,1,0,2,2,3,Chevron,Detached Duplex,Lekki +79000000.0,1,1,1,5,5,5,Ikota,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +39000000.0,0,1,1,3,3,4,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +255000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +99000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +70000000.0,1,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +150000000.0,0,1,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +55000000.0,0,0,1,4,4,4,Chevron,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +38000000.0,0,1,1,3,4,4,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +250000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,2,2,3,Osapa London,Terraced Duplex,Lekki +370000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +145000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +26437500.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +37000000.0,0,1,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +37000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +22000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,1,0,4,5,5,Opebi,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +450000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,7,7,Osapa London,Detached Duplex,Lekki +180000000.0,1,1,0,4,4,5,GRA,Detached Duplex,Ikeja +60000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +130000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +100000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +48000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +28000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +43000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +170000000.0,1,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +57000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +67000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +480000000.0,0,0,0,4,5,6,GRA,Terraced Duplex,Ikeja +120000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +90000000.0,0,0,1,4,4,5,GRA,Terraced Duplex,Ikeja +280000000.0,0,0,0,5,6,6,Banana Island,Terraced Duplex,Ikoyi +160000000.0,0,0,1,5,5,6,Agungi,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +160000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +30000000.0,0,1,0,2,3,0,Other Lekki,Terraced Duplex,Lekki +400000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +112000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +128000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +33000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +105000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Allen Avenue,Detached Duplex,Ikeja +75000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +400000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +205000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +170000000.0,0,0,1,4,6,6,Parkview,Terraced Duplex,Ikoyi +75000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +290000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +66000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +260000000.0,0,1,1,4,5,5,Other Ikoyi,Terraced Duplex,Ikoyi +285000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +140000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +44000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +160000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +38000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,6,6,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,1,4,5,5,Chevron,Terraced Duplex,Lekki +53500000.0,1,1,1,4,5,5,Ikate,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +185000000.0,0,0,0,7,7,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +90000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +80000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +78000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +225000000.0,0,1,0,6,5,6,GRA,Detached Duplex,Ikeja +130000000.0,0,1,0,5,6,7,Agungi,Detached Duplex,Lekki +58000000.0,0,0,0,4,4,6,Other Lekki,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +100000000.0,0,0,1,4,5,5,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,0,1,0,5,6,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +230000000.0,0,1,0,5,6,6,GRA,Detached Duplex,Ikeja +300000000.0,0,0,0,5,6,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +40000000.0,0,0,0,4,6,6,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,1,1,4,6,6,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +135000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +38000000.0,0,0,0,3,4,3,Lekki Phase 2,Semi Detached Duplex,Lekki +230000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +125000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,1,5,5,5,Other Ikeja,Detached Duplex,Ikeja +50000000.0,0,0,0,5,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Opebi,Terraced Duplex,Ikeja +68000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +53100000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +40000000.0,0,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +68000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +55000000.0,1,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +38000000.0,0,1,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +198000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,1,4,5,5,Ikota,Detached Duplex,Lekki +400000000.0,0,1,0,4,4,4,Parkview,Detached Duplex,Ikoyi +76000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +40000000.0,1,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +35000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +400000000.0,0,0,0,10,10,0,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +120000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +410000000.0,1,0,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +185000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +100000000.0,1,0,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +235000000.0,1,0,0,4,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,3,0,0,Agungi,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +39000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +225000000.0,0,0,0,5,4,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +250000000.0,0,1,1,5,6,6,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,1,1,3,3,4,Ikate,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +125000000.0,1,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +240000000.0,0,0,0,5,5,6,Other Ikoyi,Terraced Duplex,Ikoyi +145000000.0,0,1,0,7,7,8,Ikota,Detached Duplex,Lekki +92000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,1,1,0,2,2,3,Ikate,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +190000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,1,1,1,5,6,7,Ikota,Detached Duplex,Lekki +130000000.0,1,1,1,5,5,6,Ikate,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +60000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +36000000.0,0,0,0,3,0,0,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +69000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +65000000.0,0,1,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +55000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +72000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +210000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +380000000.0,1,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +47500000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +68000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +380000000.0,0,0,1,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +198000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,7,6,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +60000000.0,0,1,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +150000000.0,1,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +90000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,1,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +220000000.0,0,0,0,3,0,0,Other Ikoyi,Detached Duplex,Ikoyi +145000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +74000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +33000000.0,1,1,0,3,3,4,Chevron,Detached Duplex,Lekki +30000000.0,0,1,1,3,3,3,Victoria Garden City,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +480000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +110000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +500000000.0,0,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +200000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +350000000.0,0,1,1,5,7,7,Banana Island,Detached Duplex,Ikoyi +67000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,4,5,6,Ikate,Detached Duplex,Lekki +60000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +270000000.0,0,0,0,6,6,6,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +79000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,4,3,4,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,1,6,7,7,Chevron,Detached Duplex,Lekki +74000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +40000000.0,0,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,1,4,5,5,Osapa London,Detached Duplex,Lekki +235000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,1,0,7,7,8,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +145000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,1,1,1,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +280000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +40000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,4,Allen Avenue,Terraced Duplex,Ikeja +90000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +380000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,6,Victoria Garden City,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,3,Other Lekki,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,Oniru,Semi Detached Duplex,Victoria Island +90000000.0,1,1,0,5,5,5,Ikota,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,1,1,0,4,5,4,Ikota,Semi Detached Duplex,Lekki +75000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +165000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +230000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +180000000.0,1,1,1,5,5,5,Chevron,Detached Duplex,Lekki +270000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +205000000.0,0,0,0,5,6,6,Old Ikoyi,Terraced Duplex,Ikoyi +50000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +160000000.0,0,1,0,4,5,6,Ikate,Detached Duplex,Lekki +55000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +60000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,3,0,0,Maryland,Semi Detached Duplex,Ikeja +67000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +38000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +165000000.0,0,1,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,1,0,1,4,4,5,GRA,Terraced Duplex,Ikeja +85000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +63000000.0,0,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +53000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +460000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +480000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +290000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +140000000.0,1,1,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +63000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,1,0,7,7,8,Ikota,Detached Duplex,Lekki +100000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +350000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +165000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +90000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,5,6,Ikate,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,4,Ikate,Detached Duplex,Lekki +330000000.0,0,1,0,5,7,8,Chevron,Detached Duplex,Lekki +450000000.0,0,0,0,4,5,4,Banana Island,Detached Duplex,Ikoyi +65000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +40000000.0,1,1,1,3,4,4,Ikota,Terraced Duplex,Lekki +80000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,0,0,3,4,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +135000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +110000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +36000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +130000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +65000000.0,1,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +33000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +280000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,6,5,5,Ikota,Terraced Duplex,Lekki +71000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,1,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,4,Opebi,Semi Detached Duplex,Ikeja +90000000.0,0,1,1,5,5,7,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +190000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +130000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +260000000.0,0,1,0,5,5,5,Victoria Garden City,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +125000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +99500000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,1,5,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +50000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +150000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +195000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +145000000.0,1,1,0,4,5,5,Victoria Island Extension,Terraced Duplex,Victoria Island +400000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,0,3,4,4,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Opebi,Terraced Duplex,Ikeja +110000000.0,0,0,0,5,5,4,Chevron,Detached Duplex,Lekki +400000000.0,0,0,0,5,6,7,Other Ikoyi,Detached Duplex,Ikoyi +185000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +70000000.0,0,0,0,5,2,6,Ikate,Detached Duplex,Lekki +138000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +400000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +110000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +80000000.0,0,1,1,4,4,4,Osapa London,Semi Detached Duplex,Lekki +80000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +100990000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,6,5,5,Other Lekki,Detached Duplex,Lekki +35000000.0,0,1,1,3,3,4,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,5,5,6,GRA,Terraced Duplex,Ikeja +75000000.0,0,1,1,4,3,5,Ikate,Detached Duplex,Lekki +112000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,5,6,Ikota,Detached Duplex,Lekki +180000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Agidingbi,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +85000000.0,0,1,1,4,5,6,Osapa London,Terraced Duplex,Lekki +65000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,8,GRA,Detached Duplex,Ikeja +36000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +230000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +45000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +48000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +230000000.0,0,1,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +45000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +50000000.0,0,0,0,5,4,4,Oregun,Detached Duplex,Ikeja +50000000.0,1,1,0,4,4,5,Opebi,Detached Duplex,Ikeja +90000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,5,6,6,Parkview,Detached Duplex,Ikoyi +69000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,5,GRA,Detached Duplex,Ikeja +65000000.0,0,0,0,5,5,5,Other Victoria Island,Detached Duplex,Victoria Island +130000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +180000000.0,0,1,1,4,5,5,GRA,Detached Duplex,Ikeja +150000000.0,0,0,0,6,8,8,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,4,6,6,Ikate,Terraced Duplex,Lekki +32000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +85000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +110000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +67000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +54500000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,7,Oniru,Detached Duplex,Victoria Island +235000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +45000000.0,0,1,0,4,6,6,Osapa London,Detached Duplex,Lekki +197000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,1,4,6,6,Oniru,Detached Duplex,Victoria Island +80000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +45000000.0,1,1,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +430000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +33000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,1,1,6,7,7,Adeniyi Jones,Detached Duplex,Ikeja +160000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +52800000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,5,4,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +100000000.0,1,1,0,4,5,5,GRA,Terraced Duplex,Ikeja +80000000.0,0,0,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +120000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +385000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,6,Ikate,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Maryland,Detached Duplex,Ikeja +220000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,7,Lekki Phase 2,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +425000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +125000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +250000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Agungi,Detached Duplex,Lekki +50000000.0,1,1,1,4,4,5,Airport Road,Detached Duplex,Ikeja +47000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +50000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,1,0,1,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +145000000.0,1,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +390000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,4,Ikate,Terraced Duplex,Lekki +68000000.0,0,0,0,5,6,5,Other Lekki,Detached Duplex,Lekki +310000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +230000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,5,Chevron,Terraced Duplex,Lekki +480000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +90000000.0,0,1,0,5,6,7,Opebi,Terraced Duplex,Ikeja +68000000.0,0,0,0,4,5,4,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +72000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +57000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +54000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +285000000.0,0,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +280000000.0,1,1,1,5,5,6,Oniru,Detached Duplex,Victoria Island +56000000.0,1,0,1,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,0,0,5,5,5,Victoria Island Extension,Semi Detached Duplex,Victoria Island +400000000.0,0,0,1,4,4,5,Banana Island,Terraced Duplex,Ikoyi +105000000.0,1,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +215000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +280000000.0,1,1,1,3,3,4,Banana Island,Terraced Duplex,Ikoyi +60000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +500000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,5,6,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +72000000.0,1,1,1,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +100000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,3,Allen Avenue,Detached Duplex,Ikeja +70000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +46000000.0,1,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +180000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +45000000.0,0,0,0,0,0,4,Other Lekki,Semi Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +41000000.0,0,1,0,2,3,3,Ikota,Terraced Duplex,Lekki +350000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +330000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +200000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +65000000.0,1,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +52000000.0,1,1,1,4,4,4,Ikota,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +90000000.0,1,1,1,4,5,5,Ologolo,Detached Duplex,Lekki +140000000.0,1,1,1,5,7,7,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +60000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +210000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,1,3,3,4,Opebi,Detached Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +190000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +220000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +115000000.0,0,1,1,5,8,8,Chevron,Detached Duplex,Lekki +150000000.0,1,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +300000000.0,0,0,0,8,0,8,Other Victoria Island,Detached Duplex,Victoria Island +100000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,0,0,0,6,6,7,Ikate,Detached Duplex,Lekki +280000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +100000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +120000000.0,0,1,0,4,5,5,Banana Island,Detached Duplex,Ikoyi +63000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +37000000.0,0,1,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +85000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,1,4,5,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,1,4,5,5,Agungi,Semi Detached Duplex,Lekki +150005000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,5,4,5,Allen Avenue,Terraced Duplex,Ikeja +210000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +40000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +280000000.0,0,1,0,5,4,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +350000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,0,3,4,4,Chevron,Detached Duplex,Lekki +50000000.0,0,1,1,5,6,6,Ikota,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +275000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,1,4,4,5,Ikota,Terraced Duplex,Lekki +150000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +75000000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,3,0,4,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,1,1,4,5,5,Opebi,Detached Duplex,Ikeja +45000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,Oniru,Detached Duplex,Victoria Island +105000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +37000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +350000000.0,0,0,0,5,6,7,Banana Island,Terraced Duplex,Ikoyi +63000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +70000000.0,0,1,1,5,5,6,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +76000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,0,5,5,6,Foreshore,Terraced Duplex,Ikoyi +130000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +200000000.0,0,0,1,7,8,8,Alausa,Detached Duplex,Ikeja +160000000.0,0,0,1,5,6,7,Chevron,Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +82000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Allen Avenue,Detached Duplex,Ikeja +35000000.0,0,0,0,3,3,3,Ikota,Terraced Duplex,Lekki +56000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +93000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +230000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,0,0,0,4,3,4,Osapa London,Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +125000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +30000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +420000000.0,1,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +75000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +185000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +145000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +37000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +43000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +155000000.0,0,0,0,6,6,7,GRA,Terraced Duplex,Ikeja +50000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,5,Onikoyi,Detached Duplex,Ikoyi +230000000.0,0,0,0,5,4,5,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,3,3,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +130000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +45000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +275000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,0,1,4,3,3,Other Lekki,Detached Duplex,Lekki +30000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +92000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +95000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +320000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +56000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +183000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +92000000.0,0,1,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +48000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +73000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +280000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +11600000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +150000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +500000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +50000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Terraced Duplex,Lekki +120000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +105000000.0,0,1,0,5,6,6,Ologolo,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +39600000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +130000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +110000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,1,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +180000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +75000000.0,1,1,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +120000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +105000000.0,1,1,0,5,6,6,Ikate,Terraced Duplex,Lekki +56000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,GRA,Detached Duplex,Ikeja +150000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,1,4,4,8,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,1,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +120000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +87000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +155000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +34000000.0,0,1,0,3,4,4,Victoria Garden City,Terraced Duplex,Lekki +85000000.0,0,0,0,5,5,5,Agidingbi,Detached Duplex,Ikeja +100000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +170000000.0,0,0,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +46000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +105000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +85000000.0,0,0,0,5,5,7,GRA,Detached Duplex,Ikeja +220000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +33000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +135000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +157000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +45000000.0,1,1,1,4,4,5,Ikota,Terraced Duplex,Lekki +35000000.0,0,0,0,3,4,4,Ikota,Terraced Duplex,Lekki +170000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,0,0,0,6,6,6,Other Lekki,Detached Duplex,Lekki +58000000.0,1,1,0,4,6,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +375000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +220000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,0,0,4,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +56000000.0,0,1,0,6,6,7,Osapa London,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +150000000.0,0,1,1,4,5,5,Other Lekki,Detached Duplex,Lekki +112000000.0,1,1,0,5,6,6,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +260000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +52000000.0,0,1,1,4,5,6,Omole,Detached Duplex,Ikeja +140000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +165000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +140000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +54000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +180000000.0,0,1,0,6,7,8,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +87000000.0,0,0,0,3,3,4,Osapa London,Semi Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +45000000.0,0,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +109000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +52500000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +35000000.0,0,1,1,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +190000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +99000000.0,1,1,0,5,5,5,Chevron,Detached Duplex,Lekki +122000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,1,0,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +40000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +47000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,5,5,Other Ikeja,Detached Duplex,Ikeja +125000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,2,2,3,Ikota,Terraced Duplex,Lekki +55000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,0,0,5,6,7,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,1,1,1,5,5,6,Agungi,Detached Duplex,Lekki +37000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +52000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +52000000.0,0,0,0,3,3,4,Osapa London,Terraced Duplex,Lekki +40000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +115000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +350000000.0,1,1,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +300000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,1,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +30000000.0,0,1,0,4,2,2,Chevron,Terraced Duplex,Lekki +450000000.0,0,0,0,10,10,10,Opebi,Detached Duplex,Ikeja +58000000.0,1,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +77000000.0,1,0,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +115000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +90000000.0,1,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +70000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,1,4,4,5,Agungi,Semi Detached Duplex,Lekki +350000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +38000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +180000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +126000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +500000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,6,6,Agungi,Semi Detached Duplex,Lekki +61000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +89000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,3,3,Awolowo Way,Detached Duplex,Ikeja +500000000.0,0,0,0,6,6,6,Old Ikoyi,Detached Duplex,Ikoyi +320000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +47000000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,GRA,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +57000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +79000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +75000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,6,7,Ologolo,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +210000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +185000000.0,0,1,0,3,3,3,Other Victoria Island,Terraced Duplex,Victoria Island +110000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +69990000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +37000000.0,0,0,0,4,6,6,Agungi,Terraced Duplex,Lekki +145000000.0,0,0,0,5,7,7,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,3,3,Other Lekki,Semi Detached Duplex,Lekki +380000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Alausa,Semi Detached Duplex,Ikeja +300000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +160000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +33500000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +240000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +102000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,6,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +100000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +115000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +185000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +62000000.0,0,0,0,3,3,4,Victoria Garden City,Terraced Duplex,Lekki +65000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,3,4,4,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +195000000.0,0,0,1,5,5,6,Other Lekki,Detached Duplex,Lekki +230000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +115000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +65000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +70000000.0,0,0,1,3,4,4,Ikate,Terraced Duplex,Lekki +150000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +220000000.0,1,0,0,4,3,4,Foreshore,Semi Detached Duplex,Ikoyi +55000000.0,0,0,0,6,6,7,Airport Road,Semi Detached Duplex,Ikeja +30000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +45000000.0,1,1,1,3,4,4,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,6,7,7,Ikota,Detached Duplex,Lekki +200000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,4,Adeniyi Jones,Terraced Duplex,Ikeja +390000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +300000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +45000000.0,0,0,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +67000000.0,0,1,0,5,5,6,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,0,3,4,0,Osapa London,Terraced Duplex,Lekki +40000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +41000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +200000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,1,5,6,6,Victoria Garden City,Detached Duplex,Lekki +260000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,1,1,0,5,6,6,Osapa London,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +110000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +43000000.0,0,1,0,3,3,3,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,0,6,7,7,GRA,Detached Duplex,Ikeja +160000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,GRA,Terraced Duplex,Ikeja +110000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +85000000.0,0,0,0,6,6,7,Other Ikeja,Detached Duplex,Ikeja +450000000.0,1,1,1,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +140000000.0,0,1,0,5,5,4,Foreshore,Detached Duplex,Ikoyi +115000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,1,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +500000000.0,0,0,0,5,6,6,GRA,Detached Duplex,Ikeja +65000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +185000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +72000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +55000000.0,0,1,0,3,0,0,Other Ikeja,Detached Duplex,Ikeja +47000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +115000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +85000000.0,0,0,1,4,5,5,Chevron,Detached Duplex,Lekki +128000000.0,0,0,1,4,4,5,Other Lekki,Detached Duplex,Lekki +58000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +289000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +420000000.0,1,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,1,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +120000000.0,0,0,0,5,4,4,Other Lekki,Terraced Duplex,Lekki +110000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +44000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +115000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +40000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +169500000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,0,0,5,7,7,Victoria Garden City,Detached Duplex,Lekki +160000000.0,1,1,1,4,6,6,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +95000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +80000000.0,0,0,0,5,4,4,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +79000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +55000000.0,0,1,0,4,3,4,Chevron,Detached Duplex,Lekki +59000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +69000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +40500000.0,0,1,0,3,2,2,Chevron,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,7,GRA,Detached Duplex,Ikeja +80000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +130000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +100000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +68000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,1,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,0,0,4,3,5,Chevron,Terraced Duplex,Lekki +155000000.0,0,0,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +85000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +200000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +67000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +130000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +33000000.0,0,0,0,3,5,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,2,0,0,Ikate,Terraced Duplex,Lekki +87000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +300000000.0,0,0,0,10,10,10,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,0,0,4,6,7,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,7,Parkview,Semi Detached Duplex,Ikoyi +143000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Agungi,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Ologolo,Terraced Duplex,Lekki +45000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +47000000.0,0,1,0,4,6,6,Victoria Garden City,Detached Duplex,Lekki +78000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +45000000.0,0,1,0,3,3,3,Chevron,Terraced Duplex,Lekki +86000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,0,0,3,0,0,Other Victoria Island,Semi Detached Duplex,Victoria Island +40000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,0,0,3,4,4,Osapa London,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +120000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +45000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +195000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +40000000.0,1,1,0,3,3,4,Ikota,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,GRA,Terraced Duplex,Ikeja +170000000.0,0,0,0,7,7,8,Ikota,Detached Duplex,Lekki +450000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +350000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +120000000.0,0,0,1,5,6,6,Ikota,Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki diff --git a/clean/train.csv b/clean/train.csv new file mode 100644 index 0000000..1031228 --- /dev/null +++ b/clean/train.csv @@ -0,0 +1,8409 @@ +Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood_Opebi,Neighborhood_Other Lekki,Neighborhood_Adeniyi Jones,Neighborhood_Lekki Phase 1,Neighborhood_Ikota,Neighborhood_Chevron,Neighborhood_Lekki Phase 2,Neighborhood_Ikate,Neighborhood_Other Ikeja,Neighborhood_Osapa London,Neighborhood_Ologolo,Neighborhood_Foreshore,Neighborhood_GRA,Neighborhood_Parkview,Neighborhood_Victoria Garden City,Neighborhood_Agungi,Neighborhood_Banana Island,Neighborhood_Omole,Neighborhood_Other Ikoyi,Neighborhood_Oniru,Neighborhood_Old Ikoyi,Neighborhood_Other Victoria Island,Neighborhood_Onikoyi,Neighborhood_Oregun,Neighborhood_Victoria Island Extension,Neighborhood_Allen Avenue,Neighborhood_Alausa,Neighborhood_Maryland,Neighborhood_Waziri Adeola Odeku,Neighborhood_Airport Road,Neighborhood_Awolowo Way,Neighborhood_Agidingbi,Type_Semi Detached Duplex,Type_Detached Duplex,Type_Terraced Duplex,City_Ikeja,City_Lekki,City_Ikoyi,City_Victoria Island,Price +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,4.529647688244794,3.2331982502471486,2.549384143428367,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,360000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,190000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,45000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,105000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,380000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,17500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,360000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,74000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,51000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,123000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,11000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,15500000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,129500000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,415000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,180000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,180000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59500000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,-5.492464153539944,-4.398674542587783,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,125000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,220000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67500000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,167000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,61000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,34000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,183000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,36000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,130013000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +1,0,0,3.2768837080217015,3.2331982502471486,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,325000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,41000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,399999999.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,200000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000009.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,26000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,230000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,205000000.0 +0,1,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,365000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,170000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,27000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,230000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,280000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,185000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,5.782411668467886,4.187182349351515,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,375000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,209000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34100000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,235000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,1,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16675000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,160000999.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,170000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,0,0,-5.492464153539944,-4.398674542587783,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,29000000.0 +0,0,0,5.782411668467886,4.187182349351515,4.362701280552613,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +0,1,0,0.7713557475755168,-2.49070634437905,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,85000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,72000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,160000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,330000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,320000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,262000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,210000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,155000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,205000000.0 +0,0,0,7.035175648690979,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,11500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,32000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,89000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,140000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,470000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,85000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,170000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,265000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,270000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,84000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,225000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38990000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,500000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,400000000.0 +0,0,0,2.024119727798609,3.2331982502471486,3.4560427119904897,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,295000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,29990000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,195000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,140000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,14800000.0 +0,0,0,0.7713557475755168,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,1,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,440000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,175000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,105000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,232000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,95000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +1,1,1,5.782411668467886,4.187182349351515,4.362701280552613,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,320000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,230000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,35000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63100000.0 +1,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,1,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,180000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,185000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,108000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,69000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,45000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,68000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,460000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,175000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58500000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,400000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,0.7713557475755168,3.2331982502471486,4.362701280552613,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,31000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,54000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,36000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,3.2768837080217015,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,78000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,360000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,26000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,305000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,83000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,13000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,380000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,88000000.0 +0,0,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,46000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,180000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,135000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,220000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,205000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,92000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,460000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,165000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,74000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,27000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +0,1,0,3.2768837080217015,3.2331982502471486,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,118000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,92000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17675000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,74000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,51000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,420000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,255000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-1.7341722128706678,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37500000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,3.2768837080217015,3.2331982502471486,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,430000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,170000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,115000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,330000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,3.2768837080217015,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,80000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,125990000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,195000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,124000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,155000000.0 +0,0,1,-1.7341722128706678,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,175000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,256000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,20000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,245000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,260000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,360000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,175000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,1,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17675000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,42000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,380000000.0 +0,1,1,-0.48140823264757543,2.2792141511427824,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,360000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,210000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,165000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,3.2768837080217015,3.2331982502471486,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,178000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,210000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49500000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,250000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,480000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,300000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,360000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,53000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,27000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,-2.98693619309376,-1.5367222452746836,-2.890567267944371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +1,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,138000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,270000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,81000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,430000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,83000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,350000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,275000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,165000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,120000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,135000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,260000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,430000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,280000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,225000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,3.2331982502471486,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-3.7972258365064944,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,117000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,350000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,143000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,39000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,83000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,127000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,4.529647688244794,3.2331982502471486,3.4560427119904897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,420000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,1,0,-2.98693619309376,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60900000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,380000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,112000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,5.782411668467886,4.187182349351515,4.362701280552613,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,235000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,240000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,370000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,87000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,106000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,92000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,299999999.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,270000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,5.782411668467886,4.187182349351515,4.362701280552613,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,96000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,195000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,45000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,155000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,500000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,375000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,368000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,54000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,235000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,84000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,73000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,97000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,265000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,168000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,158000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,278000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,130000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,53000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55500000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,80000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,175000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,20000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,189000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,320000000.0 +0,0,0,2.024119727798609,1.3252300520384157,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,115000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,180000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47500000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,0,0,3.2768837080217015,4.187182349351515,3.4560427119904897,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,450000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,500000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,290000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,185000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,44900000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,39500000.0 +0,1,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59500000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,380000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,138000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,260000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,1,1,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,197500000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35000000.0 +0,1,0,-0.48140823264757543,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18975000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,86000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,89000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,90000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +1,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,160000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,260000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000009.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,430000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,2.024119727798609,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,177990000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,130000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,435000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,360000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,210000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,101000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,380000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,310000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,58000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,1,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,69000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000099.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,5.141166448455881,4.362701280552613,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,35000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38900000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,222000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,87000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,90000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,43000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,310000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,190000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,380000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,360000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,155000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,93000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,61750000.0 +1,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,270000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,61000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,185000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,73000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,155000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,126000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,260000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,74000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,310000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,155000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,77000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,41500000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,87000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,210000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,39000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,450000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,107000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,400000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,92000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,227000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,220000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-3.7972258365064944,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,310000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,87000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,23000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,87000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32750000.0 +1,1,1,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,320000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,220000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,98000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49900000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39800000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,92500000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,350000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,168000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +1,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,68000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,86000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,125000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,145000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,102000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,175000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,79000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,93000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67500000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,0,1,2.024119727798609,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,169000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,74999999.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,31000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,348000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,275000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,1,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,118000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,130000000.0 +0,1,1,2.024119727798609,1.3252300520384157,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,3.4560427119904897,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,72000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,370000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,205000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,450000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,261000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,230000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,85000000.0 +1,1,1,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,235000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,1,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,172000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,0,1,2.024119727798609,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,215000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,470000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,95000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,240000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,380000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,350000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49500000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,83000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,250000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,182000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,100000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,16000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,260000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,4.529647688244794,3.2331982502471486,3.4560427119904897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,320000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,61000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,115000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,69000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,4.529647688244794,4.187182349351515,3.4560427119904897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,285000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,360000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,71000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,82000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,28000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,72000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,105000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,185000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,195000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,180000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,210000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66329000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,350035000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,29000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,1,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,1,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,175000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,210000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,107000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,290000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,1,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,115000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,270000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,124500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,210000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,380000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,185000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,415000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,116000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,240000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,55000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,380000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,84000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,200000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +0,1,1,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49900000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,1,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,365000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +0,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,460000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,75000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,200000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,395000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,380000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,225000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,445000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,240000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,148000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,366000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,165000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,86000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,2.024119727798609,1.3252300520384157,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,1,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +1,1,1,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,26000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,125000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,450000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,165000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,470000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,30000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,275000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,74000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,390000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,185000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,280000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,190000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,96000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,128000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17675000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,10000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,79000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,500000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,275000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,225000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,200000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,270000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,34000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59900000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,210000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,55000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51500000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,102000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,160000000.0 +0,1,0,-0.48140823264757543,-1.5367222452746836,-2.890567267944371,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,-2.49070634437905,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,250000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,395000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,115000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,197000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,122000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,4.529647688244794,3.2331982502471486,3.4560427119904897,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,41000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,98000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,125000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,170000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,280000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,102000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,235000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,145000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,12000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,180000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,103000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,3.2331982502471486,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,1,0,2.024119727798609,1.3252300520384157,2.549384143428367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,4.529647688244794,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,144000000.0 +0,1,0,2.024119727798609,1.3252300520384157,2.549384143428367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,140000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,190000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,99000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,200000000.0 +0,0,0,4.529647688244794,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,320000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,133000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,210000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,130000000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,51500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,310000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,105000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,1,2.024119727798609,3.2331982502471486,2.549384143428367,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,190000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,112000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,184000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,36000000.0 +1,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,185000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,10000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44815000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72500000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,188000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59500000.0 +1,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,270000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52500000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,127000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,155000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,160000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,163000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,235000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,1,3.2768837080217015,3.2331982502471486,2.549384143428367,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,183000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +1,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,44000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,34500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,86000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,430000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,240000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,51000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,1,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,1,0,0.7713557475755168,3.2331982502471486,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,190000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,3.2768837080217015,3.2331982502471486,3.4560427119904897,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,140000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,39000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,30000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,0,0,5.782411668467886,4.187182349351515,4.362701280552613,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17675000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,100000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,125000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40640000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,185000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,2.024119727798609,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,295000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,85000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-2.890567267944371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,25000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48500000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,460000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,4.529647688244794,3.2331982502471486,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,450000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,0,0,2.024119727798609,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33500000.0 +0,0,1,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,3.2768837080217015,3.2331982502471486,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,100000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,7.035175648690979,5.141166448455881,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,230000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,185000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,168000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,46000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,30000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,180000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,232000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,215000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,205000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,149500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,138000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,230000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,105000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,370000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,200000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,28000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,2.024119727798609,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,89000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,128000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,34000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,215000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,290000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,240000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,92000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,115000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,36000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,106000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,210000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,1,2.024119727798609,1.3252300520384157,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,192000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,138000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28500000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,74000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,68000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,230000000.0 +1,1,1,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,470000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,89000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-3.7972258365064944,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,158000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,160000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,160000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,92000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,96000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49500000.0 +0,0,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +1,1,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,10000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-3.7972258365064944,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,34000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,200000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,108000000.0 +1,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,410000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,460000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38000000.0 +0,1,1,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62500000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,250000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,2.024119727798609,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,153000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,270000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,205000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,360000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,190000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,78000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,150000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,225000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,235000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,210000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +1,0,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,66000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,88000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,116000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,112000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,220000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,330000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,93000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,72000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,47000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,48000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,1,2.024119727798609,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,126000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43200000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,195000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,81000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,380000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,235000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,4.529647688244794,3.2331982502471486,4.362701280552613,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,200000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,420000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,230000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,195000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,31000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,185000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,348000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,235000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +1,1,1,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,330000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,175000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48500000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,185000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,150000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,480000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,115000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,230000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000009.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,95000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47500000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,160000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,135000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,98000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,130000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,220000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26000000.0 +0,0,1,0.7713557475755168,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,133000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,105000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,320000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,199999000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,199999000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,1,-0.48140823264757543,-2.49070634437905,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,210000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,14000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,44000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,385000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,350000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,220000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,206000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,220000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,470000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,45000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,110000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,108000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,93000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,128000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,36000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,370000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,93000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,64000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,240000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,195000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,360000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,320000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,280000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,430000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000009.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,87000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +1,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,145000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,335000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,61000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,135000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,170000000.0 +1,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,89000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,430000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,118000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,450000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,56000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000005.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,140000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,14000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,330000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +1,1,1,0.7713557475755168,-0.5827381461703172,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,45000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +1,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,255500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000009.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,125000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69900000.0 +1,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,93000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,25000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,74000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,46000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,220000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,290000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,30000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,295000000.0 +1,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53100000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,300000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,72000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,189000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,36000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,46000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58500000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,65000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,190000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,285000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,140000000.0 +0,0,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,60000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,3.4560427119904897,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,77000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,1,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,110000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,43500000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,190000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,1,0.7713557475755168,4.187182349351515,3.4560427119904897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,200000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,231000000.0 +0,1,1,2.024119727798609,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,97500000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,74000000.0 +0,0,1,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,100000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-3.7972258365064944,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,77000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,108000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,203000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,185000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,350000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,295000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,320000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54000000.0 +0,0,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,260000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,41000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,96000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,0,-2.98693619309376,-4.398674542587783,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,225000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +1,1,1,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,7.035175648690979,5.141166448455881,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,60000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,128000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,5.782411668467886,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,270000000.0 +1,1,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,350000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,54000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,155000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,70000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,160000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,500000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,44000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,170000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,285000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198500000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,93000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,175000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-3.7972258365064944,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,71500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,410000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,1,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69990000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,130000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,260000000.0 +0,0,1,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,130000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,150000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,360000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,64000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,1,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,185000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,0,0,-1.7341722128706678,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,280000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,73000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,62000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-5.492464153539944,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,270000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,145000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,210000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,280000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,45000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,340000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57990000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,96000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,470000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,92000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +1,1,1,-1.7341722128706678,-0.5827381461703172,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,450000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,32000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,290000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,78000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,205000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,375000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,500000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,160000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,35000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,351000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +1,1,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,41800000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,86000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,66000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,400000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,480000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,1,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,2.549384143428367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,176000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,83000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,500000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,69000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,0,5.782411668467886,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,185000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,19975000.0 +0,1,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,175000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100010000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,1,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +1,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,137000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +1,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,190000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38990000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,30000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,1,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,240000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,270000009.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,41000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,135000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,190000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,78000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,500000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,125000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,79000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,52000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,137000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-2.98693619309376,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,200000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,20000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,135000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +1,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,73000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,1,1,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,295000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,158000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,71000000.0 +0,0,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,73000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,95000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,81000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,10000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,102000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,87000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,360000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,76000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,44000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,44000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,60000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,225000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,93000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,71000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,42000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,340000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,235000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,54000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,180000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +1,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,295000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,170000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,115000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,79000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,26000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,10000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,230000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,39000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,470000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,125000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,35000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54500000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,210000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,360000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,1,-2.98693619309376,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79500000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,135000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,22000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,1,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,15000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,72000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,260000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,88000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,97000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,49000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,210000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,74100000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,40000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,350000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,240000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,160000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,54000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,89000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,63000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,61000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,38000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,198000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,392000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,480000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,125000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,75000000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,160000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,47000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,370000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,180000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,260000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,220000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,39500000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +1,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,2.024119727798609,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,48000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,1,0,5.782411668467886,4.187182349351515,4.362701280552613,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,140000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,445000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,115000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,395000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,120000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,185000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-2.49070634437905,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,69000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,20000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,0,0,5.782411668467886,2.2792141511427824,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,0,0,4.529647688244794,3.2331982502471486,3.4560427119904897,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,170000000.0 +0,1,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,0,0,-1.7341722128706678,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,20000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,82000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,0,-2.98693619309376,-2.49070634437905,-2.890567267944371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,79000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,36000000.0 +0,1,1,-1.7341722128706678,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,30000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49500000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56500000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,173000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,56000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,195000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +1,1,1,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,135000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,3.2768837080217015,1.3252300520384157,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,275000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,10000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,150000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,235000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,121000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,36000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.9839086993822481,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,100000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +1,1,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,95000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,44000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,75000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,280000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,170000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,43000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,190000000.0 +1,1,0,-2.98693619309376,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,1,0.7713557475755168,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,85000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-2.49070634437905,-2.890567267944371,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,140000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,77000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,230000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-3.7972258365064944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,85000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +0,0,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,42000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,380000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-5.492464153539944,4.187182349351515,3.4560427119904897,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,420000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,155000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,51000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,115000000.0 +1,1,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,155000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,72000000.0 +0,0,0,7.035175648690979,5.141166448455881,4.362701280552613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,450000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,56000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,301000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,173000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,42000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,1,0.7713557475755168,3.2331982502471486,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,195000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,120000000.0 +0,0,0,2.024119727798609,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,1,-0.48140823264757543,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,75000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,46000000.0 +0,1,0,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,167000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +0,0,0,2.024119727798609,3.2331982502471486,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,160000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,140000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000009.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,86000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,175000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,84000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-2.98693619309376,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,52000000.0 +0,0,1,-1.7341722128706678,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,130000000.0 +0,1,1,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,155000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,62000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,320000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,175000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,240000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,250000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,225000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,50000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,250000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,110000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +1,0,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,52000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,99000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,175000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,85000000.0 +0,1,0,3.2768837080217015,2.2792141511427824,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,260000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,240000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,3.2768837080217015,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,450000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +1,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,83000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,79000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,67000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,240000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,90000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,400000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,68000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,220000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,390000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-1.7341722128706678,-2.49070634437905,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,130000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,280000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,265000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,350000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,200000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,450000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,53000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,500000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48500000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,37000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,270000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,85000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,160000000.0 +1,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,225000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,140000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,450000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +0,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,300000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,98000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,165000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,350000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,200000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +1,0,1,0.7713557475755168,1.3252300520384157,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,260000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,185000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,420000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,55000000.0 +0,0,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-1.5367222452746836,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,225000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,280000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,280000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,360000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +1,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,36000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,120000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,78000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,72000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,107000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,180000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-3.7972258365064944,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,110000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,78000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51500000.0 +1,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,500000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,1,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,88000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,58000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,1,0,2.024119727798609,2.2792141511427824,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,180000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,395000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,155000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,59000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,295000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,390000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,4.529647688244794,3.2331982502471486,3.4560427119904897,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,480000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,180000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,140000000.0 +0,0,0,2.024119727798609,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,31000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43500000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,100000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,400000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,57000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +0,0,0,-0.48140823264757543,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,170000000.0 +0,1,0,3.2768837080217015,1.3252300520384157,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,310000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,73000000.0 +0,1,0,-0.48140823264757543,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18975000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,88000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,90000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,160000000.0 +0,0,1,7.035175648690979,5.141166448455881,4.362701280552613,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,230000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,170000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,43000000.0 +0,0,0,-2.98693619309376,-2.49070634437905,-1.9839086993822481,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,37000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,73000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,99000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,40000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,69000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,32000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,125000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,82000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,150000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,240000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +1,0,0,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,270000000.0 +0,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,82000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,90000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,300000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,58000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,200000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,33000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43000000.0 +1,1,1,4.529647688244794,3.2331982502471486,2.549384143428367,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,110000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,130000000.0 +0,1,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,250000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +1,1,1,-0.48140823264757543,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,75000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,50000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,94000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,45000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,300000000.0 +0,1,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,70000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,51000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,55000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,135000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,170000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,118000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,67000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,83000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,63000000.0 +0,0,0,2.024119727798609,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,80000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,110000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,105000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,60000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,155000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,2.549384143428367,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,240000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,150000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,320000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,165000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,300000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,130000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,190000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,68000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,90000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,50000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,400000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,49000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,145000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,115000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,220000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,60000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,0,0,3.2768837080217015,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,220000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,64000000.0 +0,0,0,2.024119727798609,2.2792141511427824,2.549384143428367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,200000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +1,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,80000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,39000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,66000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,135000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,80000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,57000000.0 +0,0,0,2.024119727798609,1.3252300520384157,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,85000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,270000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,85000000.0 +1,1,1,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,79000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,130000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,50000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,76000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,62000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120000000.0 +0,0,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,450000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,185000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,40000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,140000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,46000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,63000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,70000000.0 +1,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,75000000.0 +1,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,330000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,280000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,48000000.0 +0,1,0,0.7713557475755168,2.2792141511427824,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,500000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +0,1,1,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,90000000.0 +0,0,0,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,92000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,250000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,350000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,400000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,35000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,300000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,65000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,420000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,65000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-1.7341722128706678,-4.398674542587783,-4.703884405068617,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,100000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,99000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,120000000.0 +0,0,0,-1.7341722128706678,-1.5367222452746836,-1.0772501308201252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,170000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,65000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,67000000.0 +0,0,1,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,160000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,95000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,180000000.0 +0,0,0,3.2768837080217015,2.2792141511427824,2.549384143428367,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,165000000.0 +1,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,47000000.0 +0,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +1,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,120000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,75000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,98000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,65000000.0 +1,0,1,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,120000000.0 +0,0,0,2.024119727798609,1.3252300520384157,1.642725574866244,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,115000000.0 +0,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,55000000.0 +0,0,0,0.7713557475755168,2.2792141511427824,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,130000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,1.642725574866244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,245000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,310000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,290000000.0 +1,1,1,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,480000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,55000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,58000000.0 +0,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,140000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50000000.0 +0,1,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,65000000.0 +1,1,0,-0.48140823264757543,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,97000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,72000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,127000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,1.642725574866244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,350000000.0 +0,0,1,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,150000000.0 +1,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,95000000.0 +1,1,1,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,53000000.0 +1,1,0,-0.48140823264757543,0.3712459529340493,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,300000000.0 +0,0,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,165000000.0 +0,1,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55000000.0 +0,1,1,-1.7341722128706678,-1.5367222452746836,-1.9839086993822481,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,33000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,480000000.0 +1,1,0,0.7713557475755168,-0.5827381461703172,-0.17059156225800212,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,75000000.0 +0,1,0,0.7713557475755168,0.3712459529340493,0.7360670063041209,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,115000000.0 +0,0,0,-0.48140823264757543,-0.5827381461703172,-0.17059156225800212,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,434000000.0 +0,1,0,0.7713557475755168,1.3252300520384157,0.7360670063041209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,180000000.0 +0,1,0,-1.7341722128706678,-0.5827381461703172,-1.0772501308201252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33000000.0 diff --git a/clean/validation.csv b/clean/validation.csv new file mode 100644 index 0000000..9a8f38e --- /dev/null +++ b/clean/validation.csv @@ -0,0 +1,2104 @@ +Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood,Type,City +220000000.0,0,0,0,5,6,6,Onikoyi,Detached Duplex,Ikoyi +120000000.0,0,1,0,5,5,5,Maryland,Semi Detached Duplex,Ikeja +480000000.0,0,1,0,7,8,8,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +48000000.0,1,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,5,5,6,Ologolo,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +64000000.0,1,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +51000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,4,5,4,Ikate,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Parkview,Detached Duplex,Ikoyi +200000000.0,0,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +120000000.0,0,1,1,4,4,5,Ologolo,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +130000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +400000000.0,1,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Osapa London,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +62000000.0,0,1,1,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +110000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,0,1,5,5,5,Allen Avenue,Detached Duplex,Ikeja +65000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +90000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +40000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +220000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +118000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +80000000.0,0,1,1,5,7,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,4,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,1,1,0,5,5,6,Ikate,Terraced Duplex,Lekki +75000000.0,0,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +150000000.0,0,0,0,6,6,6,Agidingbi,Semi Detached Duplex,Ikeja +78000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +77000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +55000000.0,1,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +400000000.0,1,1,0,4,4,5,Onikoyi,Detached Duplex,Ikoyi +125000000.0,0,0,1,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +85000000.0,0,1,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +120000000.0,1,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +59000000.0,0,0,0,4,6,6,Osapa London,Semi Detached Duplex,Lekki +70000000.0,1,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Awolowo Way,Semi Detached Duplex,Ikeja +350000000.0,0,0,0,7,7,7,Lekki Phase 1,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +280000000.0,0,0,0,3,0,0,Banana Island,Terraced Duplex,Ikoyi +190000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +148000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +38000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +220000000.0,0,1,0,5,5,5,Banana Island,Semi Detached Duplex,Ikoyi +65000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +41000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,5,6,5,Other Ikoyi,Detached Duplex,Ikoyi +250000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +32500000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,6,6,Chevron,Semi Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +63000000.0,0,1,0,4,3,3,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,4,5,Adeniyi Jones,Detached Duplex,Ikeja +45000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +49000000.0,0,1,1,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +130000000.0,0,0,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,0,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +365000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +200000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +290000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +50000000.0,1,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,0,3,3,3,Ikate,Terraced Duplex,Lekki +85000000.0,0,1,1,4,5,6,Ikate,Terraced Duplex,Lekki +230000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +75000000.0,0,1,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +500000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +85000000.0,0,1,1,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +64000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,6,GRA,Detached Duplex,Ikeja +260000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +80000000.0,0,1,0,6,6,6,Osapa London,Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +80000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Alausa,Detached Duplex,Ikeja +12000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +75000000.0,0,0,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +98000000.0,0,1,1,4,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +230000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +58000000.0,0,1,0,6,7,7,Opebi,Detached Duplex,Ikeja +250000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,5,Oregun,Detached Duplex,Ikeja +158000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,1,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +400000000.0,0,0,0,7,7,8,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +275000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,5,Chevron,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,1,0,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +52000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,6,Other Lekki,Terraced Duplex,Lekki +46000000.0,1,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +68000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +78000000.0,0,0,0,2,0,0,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,1,0,3,4,5,Ikota,Semi Detached Duplex,Lekki +95000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,3,Opebi,Detached Duplex,Ikeja +230000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +300000000.0,0,1,1,5,5,5,Oniru,Detached Duplex,Victoria Island +250000000.0,0,0,0,5,5,5,Other Victoria Island,Detached Duplex,Victoria Island +340000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +90000000.0,0,0,0,10,10,10,Opebi,Detached Duplex,Ikeja +78000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +170000000.0,0,1,0,6,6,7,Omole,Detached Duplex,Ikeja +220000000.0,0,0,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +87000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +60000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +57000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +85000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +100000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,1,1,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,5,4,Other Lekki,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +160000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +80000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +420000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +95000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +120000000.0,0,0,1,8,0,0,Allen Avenue,Detached Duplex,Ikeja +62000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +195000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +110000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +195000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Agungi,Detached Duplex,Lekki +360000000.0,0,0,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Awolowo Way,Semi Detached Duplex,Ikeja +70000000.0,1,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +120000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,0,0,0,4,6,6,Oniru,Detached Duplex,Victoria Island +60000000.0,0,1,0,5,5,6,Lekki Phase 2,Terraced Duplex,Lekki +52000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +375000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +50000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +120000000.0,0,1,1,5,5,6,GRA,Detached Duplex,Ikeja +80000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +48000000.0,0,0,0,4,3,4,Chevron,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +120000000.0,0,0,0,5,3,3,Opebi,Terraced Duplex,Ikeja +120000000.0,0,0,0,2,2,2,Oregun,Detached Duplex,Ikeja +100000000.0,0,1,0,4,5,5,Victoria Garden City,Semi Detached Duplex,Lekki +87000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +240000000.0,0,1,0,4,4,6,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,0,4,6,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Osapa London,Terraced Duplex,Lekki +200000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +62000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,7,0,0,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +49000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +290000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +140000000.0,1,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,1,4,5,5,Ikate,Detached Duplex,Lekki +155000000.0,1,1,0,5,5,5,Ikate,Detached Duplex,Lekki +140000000.0,0,0,0,6,5,7,Victoria Garden City,Detached Duplex,Lekki +50000000.0,1,1,1,4,6,6,Ikota,Terraced Duplex,Lekki +160000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +55000000.0,1,1,0,4,4,4,Banana Island,Terraced Duplex,Ikoyi +350000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +35000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +95000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +42000000.0,0,1,0,2,2,3,Lekki Phase 2,Terraced Duplex,Lekki +27000000.0,0,0,0,2,2,3,Other Lekki,Terraced Duplex,Lekki +52000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +130000000.0,0,1,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +20000000.0,1,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,1,1,0,4,4,4,Other Victoria Island,Detached Duplex,Victoria Island +165000000.0,0,0,1,5,5,6,Ikate,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +37000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +160000000.0,1,1,1,5,6,6,Ikate,Detached Duplex,Lekki +260000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +95000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +120000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,0,3,0,0,Oregun,Terraced Duplex,Ikeja +55000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +130000000.0,0,0,1,3,3,4,Oniru,Terraced Duplex,Victoria Island +380000000.0,0,1,0,5,5,7,Other Ikoyi,Detached Duplex,Ikoyi +170000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +57000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,1,5,5,5,Victoria Garden City,Detached Duplex,Lekki +35000000.0,0,0,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +135000000.0,0,0,0,5,5,6,Other Ikeja,Semi Detached Duplex,Ikeja +50000000.0,0,0,0,3,3,4,Opebi,Semi Detached Duplex,Ikeja +93000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,0,1,0,3,3,4,Adeniyi Jones,Detached Duplex,Ikeja +80000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +125000000.0,1,1,1,4,6,6,Adeniyi Jones,Terraced Duplex,Ikeja +300000000.0,1,1,1,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +180000000.0,0,0,0,1,0,0,Lekki Phase 1,Detached Duplex,Lekki +145000000.0,0,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,0,1,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +280000000.0,0,0,0,4,4,4,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,1,4,6,6,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,GRA,Terraced Duplex,Ikeja +85000000.0,0,0,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +185000000.0,0,0,0,5,7,7,Chevron,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +95000000.0,0,1,1,4,4,4,Victoria Garden City,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +240000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +58000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +360000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +145000000.0,0,0,1,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +130000000.0,1,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +275000000.0,0,0,1,5,5,6,Oniru,Detached Duplex,Victoria Island +76000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +43000000.0,0,1,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +250000000.0,0,0,0,6,6,6,Foreshore,Detached Duplex,Ikoyi +280000000.0,0,0,0,4,5,5,Old Ikoyi,Terraced Duplex,Ikoyi +160000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +185000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +105000000.0,1,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +35000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,0,0,0,3,2,3,Other Victoria Island,Terraced Duplex,Victoria Island +75000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +43000000.0,1,1,0,3,0,0,Victoria Garden City,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +110000000.0,0,1,0,5,5,7,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +350000000.0,1,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +140000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +90000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +450000000.0,1,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,5,5,10,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +38000000.0,1,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +140000000.0,1,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +385000000.0,1,0,1,5,5,8,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +45000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +380000000.0,1,1,0,6,6,7,Osapa London,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +78000000.0,1,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +145000000.0,0,1,1,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +54000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,4,5,5,Ikate,Detached Duplex,Lekki +135000000.0,0,1,0,4,5,5,Maryland,Semi Detached Duplex,Ikeja +60000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Awolowo Way,Detached Duplex,Ikeja +310000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +370000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +145000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +40000000.0,1,1,1,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,4,4,2,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,6,7,7,Victoria Garden City,Detached Duplex,Lekki +225000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +320000000.0,0,0,0,8,8,9,Lekki Phase 1,Detached Duplex,Lekki +64000000.0,1,1,1,4,4,4,Chevron,Terraced Duplex,Lekki +84000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +72000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,1,1,5,5,5,Ikate,Detached Duplex,Lekki +80000000.0,1,1,1,5,5,6,Chevron,Terraced Duplex,Lekki +129000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,4,2,2,Other Lekki,Semi Detached Duplex,Lekki +450000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,1,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +38000000.0,0,0,0,4,5,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,1,1,5,5,5,Chevron,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,1,1,1,5,6,6,Chevron,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,5,Oniru,Detached Duplex,Victoria Island +55000000.0,0,0,0,3,3,3,Ikate,Terraced Duplex,Lekki +50000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +20000000.0,1,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,4,Agungi,Detached Duplex,Lekki +70000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,1,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +65000000.0,1,1,1,4,5,5,Ikota,Semi Detached Duplex,Lekki +160000000.0,0,1,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +33000000.0,0,1,0,3,5,5,Other Lekki,Terraced Duplex,Lekki +148500000.0,0,0,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +63000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Oniru,Semi Detached Duplex,Victoria Island +135000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +150000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +65000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +127000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +57000000.0,0,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +125000000.0,1,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +40000000.0,0,1,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +30000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +110000000.0,1,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +130000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +33000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +280000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +90000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +38000000.0,0,1,0,3,0,0,Opebi,Detached Duplex,Ikeja +195000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +230000000.0,0,1,1,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +120000000.0,1,0,1,5,6,6,Other Victoria Island,Detached Duplex,Victoria Island +53000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +34000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +80000000.0,0,1,1,4,5,6,Ikota,Detached Duplex,Lekki +105000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +440000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +38000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +95000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +79000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,0,0,5,6,6,Other Lekki,Semi Detached Duplex,Lekki +72000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +145000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +120000000.0,1,1,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +285000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,1,5,7,7,Agungi,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +95000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Ologolo,Terraced Duplex,Lekki +320000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +125000000.0,0,0,0,4,5,6,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Agungi,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,4,Adeniyi Jones,Semi Detached Duplex,Ikeja +38000000.0,0,1,0,3,4,3,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +68000000.0,0,0,0,4,5,5,Omole,Detached Duplex,Ikeja +235000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +44000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +48000000.0,1,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +125000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +130000000.0,0,0,0,7,7,7,Adeniyi Jones,Detached Duplex,Ikeja +45000000.0,1,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +220000000.0,0,1,1,3,5,5,Other Victoria Island,Detached Duplex,Victoria Island +50000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +30000000.0,1,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,1,0,4,4,4,Old Ikoyi,Detached Duplex,Ikoyi +250000000.0,1,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +65000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +79000000.0,0,0,0,4,4,4,Ologolo,Terraced Duplex,Lekki +54000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +290000000.0,0,0,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +36000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +270000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +60000000.0,0,0,1,4,4,4,Adeniyi Jones,Terraced Duplex,Ikeja +60000000.0,1,1,1,4,4,4,Chevron,Detached Duplex,Lekki +370000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,0,5,4,6,Ikate,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +180000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Old Ikoyi,Detached Duplex,Ikoyi +120000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +235000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +46000000.0,1,1,1,4,6,6,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Other Ikoyi,Semi Detached Duplex,Ikoyi +36000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +35000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +90000000.0,0,0,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +240000000.0,1,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,1,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,3,3,4,Allen Avenue,Detached Duplex,Ikeja +95000000.0,0,0,0,5,6,7,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,5,4,4,Omole,Detached Duplex,Ikeja +70000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Maryland,Terraced Duplex,Ikeja +37000000.0,0,0,0,2,3,3,Other Lekki,Detached Duplex,Lekki +40000000.0,0,1,0,3,3,3,Adeniyi Jones,Semi Detached Duplex,Ikeja +78000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +88000000.0,1,1,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +98000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,7,6,7,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Other Victoria Island,Detached Duplex,Victoria Island +95000000.0,0,0,0,4,6,7,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +50000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +120000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,7,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,6,5,6,Chevron,Detached Duplex,Lekki +46000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +63000000.0,1,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +330000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +55000000.0,0,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +90000000.0,0,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +33000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +370000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,1,0,5,6,6,Other Victoria Island,Terraced Duplex,Victoria Island +120000000.0,1,0,1,5,5,6,Ikate,Terraced Duplex,Lekki +130000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +80000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +98500000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +58000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,GRA,Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +125000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,1,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +50000000.0,0,0,0,3,3,4,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,6,Agungi,Terraced Duplex,Lekki +34000000.0,0,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +47799000.0,1,1,0,4,5,6,Ikate,Terraced Duplex,Lekki +22000000.0,0,0,0,1,1,2,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +32750000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +150000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +65000000.0,0,1,1,3,4,3,Agungi,Terraced Duplex,Lekki +75000000.0,1,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,7,Ikota,Detached Duplex,Lekki +285000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,0,0,0,6,7,6,Other Victoria Island,Detached Duplex,Victoria Island +38000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +65000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +70000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,4,Allen Avenue,Detached Duplex,Ikeja +34000000.0,0,0,0,3,3,3,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,5,8,8,Other Lekki,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +230000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,7,Other Lekki,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +29000000.0,1,0,0,3,3,4,Lekki Phase 2,Terraced Duplex,Lekki +130000000.0,0,0,0,5,5,6,Omole,Detached Duplex,Ikeja +55000000.0,0,0,0,5,5,5,Ologolo,Detached Duplex,Lekki +230000000.0,0,1,1,5,5,6,Parkview,Detached Duplex,Ikoyi +100000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Other Ikeja,Terraced Duplex,Ikeja +270000000.0,1,1,0,4,5,5,Old Ikoyi,Detached Duplex,Ikoyi +60000000.0,0,1,1,5,5,6,Ologolo,Semi Detached Duplex,Lekki +150000000.0,0,1,1,4,5,6,Other Victoria Island,Detached Duplex,Victoria Island +33000000.0,1,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +350000000.0,0,1,1,5,5,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +130000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +78000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +255000000.0,0,1,0,4,4,4,Foreshore,Detached Duplex,Ikoyi +55000000.0,0,0,0,4,5,4,Ikate,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Ologolo,Detached Duplex,Lekki +75000000.0,0,1,1,5,5,6,Chevron,Terraced Duplex,Lekki +52000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,0,0,0,3,4,4,Old Ikoyi,Terraced Duplex,Ikoyi +155000000.0,0,0,0,2,2,3,Awolowo Way,Detached Duplex,Ikeja +45000000.0,0,0,0,3,3,4,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,3,0,0,Oregun,Detached Duplex,Ikeja +175000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +100000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,1,0,0,4,5,5,Ikota,Detached Duplex,Lekki +265000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,5,Osapa London,Detached Duplex,Lekki +320000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +230000000.0,0,1,0,5,4,5,Agidingbi,Detached Duplex,Ikeja +98000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +120000000.0,1,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +165000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +460000000.0,0,0,1,6,6,7,Other Lekki,Detached Duplex,Lekki +69000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +38000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +49000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,6,Oniru,Detached Duplex,Victoria Island +450000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +400000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +230000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +58000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,1,5,7,7,Other Ikoyi,Detached Duplex,Ikoyi +47000000.0,0,0,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +130000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +53000000.0,1,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +95000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,1,0,1,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +40000000.0,0,0,0,3,3,4,Agidingbi,Terraced Duplex,Ikeja +150000000.0,0,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +45000000.0,0,0,0,3,0,0,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,1,0,7,6,8,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +340000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +180000000.0,1,1,1,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +275000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,1,1,4,4,5,Other Ikeja,Detached Duplex,Ikeja +60000000.0,1,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Other Ikeja,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,5,5,6,Ikota,Semi Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +130000000.0,0,0,0,6,4,4,GRA,Semi Detached Duplex,Ikeja +75000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +25000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +350000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +360000000.0,0,0,0,4,4,5,Parkview,Detached Duplex,Ikoyi +95000000.0,0,0,0,4,5,5,Alausa,Detached Duplex,Ikeja +150000000.0,0,0,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +400000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Opebi,Terraced Duplex,Ikeja +140000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +67000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +100000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +195000000.0,0,0,0,6,6,6,Other Ikoyi,Detached Duplex,Ikoyi +60000000.0,1,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +33000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +275000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +43000000.0,1,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +105000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +170000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +175000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,0,0,0,3,3,4,Other Lekki,Semi Detached Duplex,Lekki +200000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +49247000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +120000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +55000000.0,0,1,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Omole,Detached Duplex,Ikeja +49000000.0,1,1,0,4,4,6,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +99500000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +220000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,5,6,7,Ikota,Detached Duplex,Lekki +350000000.0,1,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +47000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +320000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +280000000.0,0,0,0,5,7,7,Ologolo,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +83000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +125000000.0,1,1,1,5,5,6,Ikate,Detached Duplex,Lekki +75000000.0,0,0,0,4,3,3,Adeniyi Jones,Detached Duplex,Ikeja +43000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +360000000.0,0,1,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +64000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +270000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,4,4,Alausa,Detached Duplex,Ikeja +85000000.0,0,0,0,4,5,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,6,6,7,Ikota,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,0,Victoria Garden City,Terraced Duplex,Lekki +390000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,1,1,1,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +110000000.0,0,1,1,5,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +92000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +67000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +130000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +300000000.0,0,0,0,8,8,9,GRA,Detached Duplex,Ikeja +170000000.0,0,1,0,4,4,6,Opebi,Semi Detached Duplex,Ikeja +105000000.0,0,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +368000000.0,1,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +41000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +59000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +41000000.0,0,0,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +175000000.0,0,0,0,4,4,5,Oniru,Detached Duplex,Victoria Island +48000000.0,0,0,0,5,6,6,Lekki Phase 2,Semi Detached Duplex,Lekki +135000000.0,0,1,0,6,6,6,Chevron,Detached Duplex,Lekki +44000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +65000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +235000000.0,0,0,0,10,0,0,GRA,Detached Duplex,Ikeja +50000000.0,0,0,0,6,5,4,Lekki Phase 1,Semi Detached Duplex,Lekki +39000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +72000000.0,0,0,0,4,4,4,Lekki Phase 2,Semi Detached Duplex,Lekki +135000000.0,0,0,0,5,5,5,Maryland,Detached Duplex,Ikeja +56000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Omole,Semi Detached Duplex,Ikeja +195000000.0,0,1,1,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +35000000.0,0,0,0,3,4,4,Chevron,Semi Detached Duplex,Lekki +24000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +450000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +230000000.0,1,1,1,5,5,6,Ikota,Detached Duplex,Lekki +87000000.0,0,1,1,1,1,1,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +120000000.0,0,0,0,3,0,0,Other Ikoyi,Terraced Duplex,Ikoyi +97000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +300000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +130000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +50000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +295000000.0,0,1,0,6,7,7,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,5,5,6,Opebi,Terraced Duplex,Ikeja +85000000.0,0,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +155000000.0,0,0,0,5,5,7,Chevron,Detached Duplex,Lekki +97000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +400000000.0,1,1,0,5,7,8,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,GRA,Terraced Duplex,Ikeja +68000000.0,0,0,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +295000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Allen Avenue,Semi Detached Duplex,Ikeja +82000000.0,0,0,0,5,6,5,Lekki Phase 1,Detached Duplex,Lekki +62000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +290000000.0,1,0,0,5,5,6,Ikota,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Agungi,Terraced Duplex,Lekki +72000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,1,0,3,3,4,Foreshore,Terraced Duplex,Ikoyi +90000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +84000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +225000000.0,0,0,0,7,9,9,Lekki Phase 1,Detached Duplex,Lekki +230000000.0,0,0,0,6,5,6,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +127000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +170000000.0,0,0,0,6,6,6,Victoria Garden City,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +150000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +85000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +55000000.0,0,0,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +39000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,5,4,Agungi,Terraced Duplex,Lekki +360000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +135000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +108000000.0,0,0,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +125000000.0,1,1,1,4,4,4,Osapa London,Terraced Duplex,Lekki +250000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,1,5,7,7,Osapa London,Detached Duplex,Lekki +57000000.0,0,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,4,Osapa London,Detached Duplex,Lekki +46200000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +65000000.0,1,0,0,4,5,5,Chevron,Detached Duplex,Lekki +18000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,6,6,6,Other Lekki,Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Ologolo,Terraced Duplex,Lekki +85000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +430000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +110000000.0,0,1,0,3,3,4,Ikate,Semi Detached Duplex,Lekki +46000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +135000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +100000000.0,1,1,1,5,5,5,GRA,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Adeniyi Jones,Terraced Duplex,Ikeja +80000000.0,0,1,0,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,6,Osapa London,Detached Duplex,Lekki +30000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +95000000.0,1,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +45000000.0,0,0,1,4,4,4,Ologolo,Semi Detached Duplex,Lekki +55000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,3,3,Other Lekki,Terraced Duplex,Lekki +180000000.0,0,1,1,5,5,5,Ikate,Detached Duplex,Lekki +120000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Ikota,Terraced Duplex,Lekki +370000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,0,0,4,4,5,Old Ikoyi,Semi Detached Duplex,Ikoyi +70000000.0,0,0,0,4,3,4,GRA,Terraced Duplex,Ikeja +65000000.0,0,0,0,5,5,6,Osapa London,Semi Detached Duplex,Lekki +200000000.0,1,1,1,4,5,5,Oniru,Semi Detached Duplex,Victoria Island +55000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +165000000.0,0,1,0,5,5,6,Alausa,Detached Duplex,Ikeja +95000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,7,7,GRA,Detached Duplex,Ikeja +60000000.0,1,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +50000000.0,1,0,0,4,4,5,Ikate,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +59500000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +95000000.0,1,0,0,4,4,5,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +70000000.0,1,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +130000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +90000000.0,0,0,0,4,3,3,Victoria Garden City,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +195000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +57000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +35000000.0,0,1,0,3,4,4,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,1,4,4,5,Osapa London,Terraced Duplex,Lekki +57000000.0,0,1,1,6,6,7,Chevron,Terraced Duplex,Lekki +120000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +55000000.0,1,1,1,4,5,6,Lekki Phase 2,Terraced Duplex,Lekki +32750000.0,0,0,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +250000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +80000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +85000000.0,0,1,0,5,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +350000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,4,6,6,Lekki Phase 2,Terraced Duplex,Lekki +240000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +49900000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +75000000.0,1,1,1,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +95000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Ikota,Detached Duplex,Lekki +45000000.0,0,1,1,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,1,0,3,3,4,Oniru,Terraced Duplex,Victoria Island +175000000.0,0,0,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +40000000.0,1,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,1,1,1,4,5,5,Ikate,Terraced Duplex,Lekki +85000000.0,0,1,0,5,5,6,Maryland,Semi Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +250000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +125000000.0,1,1,1,5,6,6,Other Lekki,Detached Duplex,Lekki +98000000.0,0,1,0,5,5,6,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +310000000.0,0,1,0,5,5,6,Old Ikoyi,Semi Detached Duplex,Ikoyi +42000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Other Ikoyi,Detached Duplex,Ikoyi +300000000.0,0,0,0,5,5,5,Banana Island,Detached Duplex,Ikoyi +65000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +60000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +80000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +180000000.0,1,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +157000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +45000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +88000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +160000000.0,0,0,1,4,4,5,Ikate,Detached Duplex,Lekki +75000000.0,1,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,0,0,1,3,3,3,Chevron,Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +94000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +175000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +90000000.0,0,1,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +200000000.0,0,1,1,5,7,7,Other Lekki,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +370000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +190000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,1,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +60000000.0,0,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +78000000.0,1,1,0,4,5,5,Other Lekki,Terraced Duplex,Lekki +155000000.0,0,1,0,5,4,5,Chevron,Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Osapa London,Terraced Duplex,Lekki +85000000.0,0,1,0,7,7,7,Other Lekki,Detached Duplex,Lekki +85000000.0,0,0,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +60000000.0,0,0,0,4,4,4,Osapa London,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,GRA,Detached Duplex,Ikeja +250000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +114000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +190000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +80000000.0,0,0,0,4,5,6,Chevron,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +82000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,3,0,0,Chevron,Terraced Duplex,Lekki +130000000.0,1,1,0,4,4,5,Victoria Island Extension,Detached Duplex,Victoria Island +45000000.0,0,1,1,3,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +130000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +270000000.0,0,1,0,5,6,7,Oniru,Detached Duplex,Victoria Island +240000000.0,0,1,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +46000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +500000000.0,0,1,0,4,4,5,Banana Island,Detached Duplex,Ikoyi +65000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +35000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +240000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +100000000.0,1,0,0,5,5,6,Allen Avenue,Terraced Duplex,Ikeja +118000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +250000000.0,0,0,1,4,6,6,Foreshore,Detached Duplex,Ikoyi +150000000.0,0,0,1,5,6,6,Chevron,Detached Duplex,Lekki +175000000.0,0,1,0,5,5,5,GRA,Detached Duplex,Ikeja +120000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +145000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +50000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +100000000.0,1,1,0,5,5,6,Ikate,Detached Duplex,Lekki +180000000.0,0,0,0,5,6,4,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,1,0,3,3,3,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +180000000.0,0,1,0,4,6,6,Ikota,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +52000000.0,0,1,0,3,3,4,Other Lekki,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +270000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +48000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +59000000.0,1,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +32000000.0,0,0,0,3,3,4,Ikate,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +120000000.0,0,0,0,4,3,1,Other Ikoyi,Semi Detached Duplex,Ikoyi +80000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +138000000.0,0,1,0,4,4,5,Awolowo Way,Detached Duplex,Ikeja +60000000.0,0,0,0,3,2,3,Airport Road,Detached Duplex,Ikeja +150000000.0,1,1,0,5,5,6,Agungi,Detached Duplex,Lekki +130000000.0,1,1,0,3,3,3,Oniru,Detached Duplex,Victoria Island +299999999.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +120000000.0,0,0,1,4,5,5,Allen Avenue,Semi Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Other Ikeja,Terraced Duplex,Ikeja +265000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,1,1,6,7,8,Adeniyi Jones,Detached Duplex,Ikeja +77000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +130000000.0,1,1,0,5,6,6,Lekki Phase 1,Terraced Duplex,Lekki +130000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,1,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +180000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,1,0,6,6,7,Airport Road,Detached Duplex,Ikeja +220000000.0,0,1,0,5,5,5,Omole,Detached Duplex,Ikeja +70000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +48000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +85000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +42000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +73000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +140000000.0,0,0,0,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +50000000.0,0,0,0,3,3,3,Other Ikeja,Semi Detached Duplex,Ikeja +68000000.0,0,0,0,5,6,6,Other Lekki,Terraced Duplex,Lekki +54000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +35000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +160000000.0,0,1,1,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +120000000.0,0,1,1,4,4,5,GRA,Detached Duplex,Ikeja +34800000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +33000000.0,1,1,1,3,4,5,Chevron,Terraced Duplex,Lekki +40000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,1,0,2,2,3,Lekki Phase 1,Terraced Duplex,Lekki +52000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +59000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +87000000.0,0,1,0,5,6,6,Chevron,Semi Detached Duplex,Lekki +71500000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +200000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +190000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,0,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +160000000.0,0,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,5,6,Ikota,Detached Duplex,Lekki +67000000.0,0,0,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +200000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +59000000.0,0,0,0,5,6,7,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,1,0,4,4,4,Chevron,Terraced Duplex,Lekki +53000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +80000000.0,0,1,1,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +63100000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +105000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +280000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +86000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +460000000.0,0,0,0,5,5,6,Banana Island,Terraced Duplex,Ikoyi +190000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +55000000.0,0,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,1,4,4,4,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +95000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +120000000.0,0,0,0,4,6,6,Other Ikeja,Detached Duplex,Ikeja +55000000.0,0,1,0,5,5,5,Agungi,Terraced Duplex,Lekki +400000000.0,1,0,0,7,7,8,Other Lekki,Detached Duplex,Lekki +85000000.0,1,1,0,4,4,5,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +170000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +185000000.0,1,1,1,3,3,4,Oniru,Terraced Duplex,Victoria Island +62000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +120000000.0,0,0,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,0,0,7,0,0,Other Ikeja,Detached Duplex,Ikeja +300000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +270000000.0,0,0,1,6,6,6,Other Victoria Island,Semi Detached Duplex,Victoria Island +55000000.0,0,1,0,4,4,4,Ikota,Terraced Duplex,Lekki +180000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +295000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +72000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,4,5,Agungi,Detached Duplex,Lekki +250000000.0,0,1,1,5,4,5,Parkview,Detached Duplex,Ikoyi +130000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +250000000.0,1,0,0,5,5,6,Victoria Island Extension,Semi Detached Duplex,Victoria Island +100000000.0,0,0,0,4,4,4,Allen Avenue,Semi Detached Duplex,Ikeja +150000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +72000000.0,0,1,0,5,5,7,Lekki Phase 2,Detached Duplex,Lekki +56000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +30000000.0,0,1,1,4,5,5,Other Ikeja,Semi Detached Duplex,Ikeja +95000000.0,0,1,1,3,4,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,1,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,4,5,Chevron,Detached Duplex,Lekki +37000000.0,0,0,0,4,5,5,Agungi,Terraced Duplex,Lekki +150000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +175000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +105000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,0,0,6,6,6,Ikate,Detached Duplex,Lekki +395000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,5,4,Lekki Phase 2,Semi Detached Duplex,Lekki +260000000.0,0,1,1,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,3,5,Osapa London,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +130000000.0,0,0,0,4,4,4,Ikate,Detached Duplex,Lekki +50000000.0,0,1,1,4,4,5,Ikate,Detached Duplex,Lekki +500000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,6,6,Ikate,Terraced Duplex,Lekki +160000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,4,Agungi,Detached Duplex,Lekki +45000000.0,0,0,0,4,5,5,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +180000000.0,0,0,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +95000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,4,Oniru,Terraced Duplex,Victoria Island +85000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +62000000.0,1,1,0,4,8,8,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,1,0,4,5,5,Ologolo,Detached Duplex,Lekki +150000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +320000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +76000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +63000000.0,1,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +200000000.0,0,0,1,4,5,6,Parkview,Detached Duplex,Ikoyi +150000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,4,Opebi,Terraced Duplex,Ikeja +105000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +125000000.0,0,0,0,5,5,6,GRA,Terraced Duplex,Ikeja +200000000.0,1,1,0,3,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +140000000.0,0,0,0,4,4,5,Onikoyi,Semi Detached Duplex,Ikoyi +57000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +48000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +70000000.0,1,0,1,4,4,4,Other Lekki,Terraced Duplex,Lekki +150000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +280000000.0,0,0,1,5,5,5,Other Ikoyi,Detached Duplex,Ikoyi +125000000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +140000000.0,0,0,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,0,0,3,0,0,Opebi,Detached Duplex,Ikeja +250000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +135000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +90000000.0,0,1,1,5,3,4,Chevron,Detached Duplex,Lekki +150000000.0,1,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,1,1,5,6,7,Ikota,Detached Duplex,Lekki +50000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +115000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +59000000.0,0,1,0,4,6,6,Other Lekki,Detached Duplex,Lekki +250000000.0,0,0,0,5,6,6,Chevron,Detached Duplex,Lekki +98000000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +71000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +160000000.0,0,0,0,5,5,6,GRA,Semi Detached Duplex,Ikeja +160000000.0,0,1,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +75000000.0,0,0,0,5,4,5,Osapa London,Detached Duplex,Lekki +52000000.0,0,0,0,4,4,6,Chevron,Detached Duplex,Lekki +500000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Other Ikeja,Detached Duplex,Ikeja +14000000.0,0,1,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +175000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +63000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,7,Lekki Phase 2,Detached Duplex,Lekki +60000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +48000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +58000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +85000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +63000000.0,0,0,0,4,5,5,Chevron,Terraced Duplex,Lekki +72000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +85000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +65000000.0,0,0,0,3,0,0,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +46000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +64100000.0,1,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +62000000.0,0,0,0,4,4,5,Opebi,Terraced Duplex,Ikeja +45000000.0,1,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +235000000.0,0,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +38000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +115000000.0,0,0,0,4,6,6,Other Victoria Island,Terraced Duplex,Victoria Island +185000000.0,0,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +88000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,1,0,1,5,4,4,Agungi,Detached Duplex,Lekki +125000000.0,0,1,0,5,6,6,Agungi,Detached Duplex,Lekki +350000000.0,0,0,0,6,9,9,Other Ikeja,Detached Duplex,Ikeja +90000000.0,0,0,0,3,0,0,GRA,Terraced Duplex,Ikeja +260000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,4,6,6,Opebi,Detached Duplex,Ikeja +150000000.0,1,1,1,4,4,5,Ikate,Semi Detached Duplex,Lekki +36500000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +87000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +65000000.0,0,1,0,3,4,4,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +80000000.0,0,1,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +220000000.0,1,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,1,1,4,6,6,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,3,4,4,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +70000000.0,0,0,0,4,4,4,Ologolo,Detached Duplex,Lekki +198000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +140000000.0,0,0,0,4,7,7,Allen Avenue,Detached Duplex,Ikeja +150000000.0,0,0,0,5,6,5,Alausa,Detached Duplex,Ikeja +149000000.0,0,1,1,5,6,7,Ikate,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +53000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +380000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +95000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +190000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +250000000.0,1,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +145000000.0,0,1,0,3,3,3,Oniru,Detached Duplex,Victoria Island +200000000.0,0,1,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +60000000.0,0,0,0,4,4,4,Agungi,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +33000000.0,1,1,0,3,3,4,Victoria Garden City,Semi Detached Duplex,Lekki +115000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,6,5,Osapa London,Detached Duplex,Lekki +235000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +125000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +75000000.0,0,1,0,5,5,4,Other Lekki,Detached Duplex,Lekki +61000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +67000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Other Lekki,Terraced Duplex,Lekki +125000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +55000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +33000000.0,0,0,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +140000000.0,0,0,1,4,4,5,Allen Avenue,Detached Duplex,Ikeja +125000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +126000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +135000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +148000000.0,0,1,0,4,4,6,GRA,Detached Duplex,Ikeja +105000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +58000000.0,0,1,0,3,3,4,Ologolo,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +150000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +100000000.0,0,1,1,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +95000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,5,6,6,Osapa London,Detached Duplex,Lekki +82000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +51000000.0,0,1,0,4,10,10,Chevron,Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +65000000.0,0,1,0,3,3,5,Other Lekki,Detached Duplex,Lekki +42000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +95000000.0,0,0,0,4,5,5,Opebi,Semi Detached Duplex,Ikeja +270000000.0,0,0,1,4,4,5,Banana Island,Terraced Duplex,Ikoyi +78000000.0,1,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +33000000.0,0,0,0,3,4,3,Ikota,Terraced Duplex,Lekki +35000000.0,0,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +40000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +65000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ikate,Terraced Duplex,Lekki +60000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +100000000.0,0,1,0,4,4,4,Other Ikeja,Semi Detached Duplex,Ikeja +80000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,6,Alausa,Detached Duplex,Ikeja +160000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +45000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,0,0,3,0,0,Ikate,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Omole,Detached Duplex,Ikeja +55000000.0,0,1,1,4,4,5,Osapa London,Semi Detached Duplex,Lekki +130000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,5,5,Parkview,Terraced Duplex,Ikoyi +76000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +78000000.0,0,1,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +63000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +77000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,Ikota,Terraced Duplex,Lekki +45000000.0,0,0,0,3,3,4,Other Lekki,Detached Duplex,Lekki +68000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +60000000.0,0,0,0,3,3,3,Osapa London,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +72000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,1,0,0,5,5,6,Ikate,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +99000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,6,7,6,Adeniyi Jones,Detached Duplex,Ikeja +105000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +80000000.0,1,1,1,4,4,5,Ikota,Detached Duplex,Lekki +57000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +67000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +85000000.0,0,1,0,4,5,6,Ologolo,Semi Detached Duplex,Lekki +145000000.0,0,1,1,3,4,4,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,0,0,0,5,6,6,Ikate,Detached Duplex,Lekki +45000000.0,0,1,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +57000000.0,1,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +450000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +70000000.0,0,1,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +300000000.0,0,0,0,5,5,7,Lekki Phase 1,Detached Duplex,Lekki +55000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,0,0,4,4,4,Lekki Phase 1,Terraced Duplex,Lekki +110000000.0,0,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +120000000.0,1,1,0,5,5,5,Ikota,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +260000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +220000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +160000000.0,0,0,0,5,5,5,GRA,Terraced Duplex,Ikeja +110000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +38000000.0,1,1,0,2,2,3,Ikota,Terraced Duplex,Lekki +60000000.0,0,0,0,4,6,6,Osapa London,Detached Duplex,Lekki +52000000.0,0,1,0,4,6,6,Other Lekki,Semi Detached Duplex,Lekki +140000000.0,0,0,0,7,8,8,Chevron,Detached Duplex,Lekki +330000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,2,2,2,Lekki Phase 1,Terraced Duplex,Lekki +125000000.0,0,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +78000000.0,0,1,0,4,4,4,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +185000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +148000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +77500000.0,0,0,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +79500000.0,0,1,1,5,5,5,Other Lekki,Detached Duplex,Lekki +170000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +185000000.0,0,1,1,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +350000000.0,0,1,0,5,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +85000000.0,1,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +135000000.0,0,1,1,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +180000000.0,0,0,0,5,6,6,Adeniyi Jones,Detached Duplex,Ikeja +285000000.0,0,0,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +65000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +51000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +160000000.0,0,1,1,4,4,5,Opebi,Detached Duplex,Ikeja +160000000.0,0,0,0,6,6,7,Adeniyi Jones,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +280000000.0,1,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +49000000.0,0,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,5,5,Alausa,Semi Detached Duplex,Ikeja +130000000.0,0,1,0,4,4,4,Ikate,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +92000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +230000000.0,1,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +55000000.0,1,1,1,4,6,6,Lekki Phase 2,Detached Duplex,Lekki +250000000.0,0,0,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,0,0,0,3,3,4,Chevron,Detached Duplex,Lekki +58000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +66000000.0,0,0,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +165000000.0,0,0,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +40000000.0,0,0,0,4,4,6,Ikate,Terraced Duplex,Lekki +50000000.0,1,1,1,4,4,6,Chevron,Detached Duplex,Lekki +88000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +80000000.0,0,0,0,4,4,4,Victoria Island Extension,Semi Detached Duplex,Victoria Island +85000000.0,0,0,0,5,4,6,Allen Avenue,Detached Duplex,Ikeja +105000000.0,0,1,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +450000000.0,1,1,1,6,6,7,Osapa London,Detached Duplex,Lekki +75000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +400000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +50000000.0,1,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +150000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +138000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +260000000.0,0,0,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +100000000.0,1,0,1,5,5,5,Ikate,Detached Duplex,Lekki +350000000.0,0,0,0,7,8,8,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +190000000.0,0,0,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +270000000.0,0,0,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +120000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +155000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +260000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +83000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +40000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +95000000.0,0,1,0,4,4,4,Opebi,Detached Duplex,Ikeja +49500000.0,0,0,0,4,5,4,Chevron,Detached Duplex,Lekki +150000000.0,0,0,0,5,5,5,Allen Avenue,Detached Duplex,Ikeja +67000000.0,0,0,0,4,4,4,Ikate,Semi Detached Duplex,Lekki +47000000.0,0,0,0,5,5,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +60000000.0,0,0,1,5,5,6,Agungi,Detached Duplex,Lekki +60000000.0,0,1,1,4,5,5,Osapa London,Detached Duplex,Lekki +225000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +95000000.0,1,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +100000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +140000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +85500000.0,1,1,0,5,5,5,Osapa London,Semi Detached Duplex,Lekki +46000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +175000000.0,0,1,0,5,6,6,Ikate,Detached Duplex,Lekki +70000000.0,0,0,0,5,4,4,Ikota,Detached Duplex,Lekki +500000000.0,1,1,1,5,6,7,Banana Island,Detached Duplex,Ikoyi +110000000.0,0,0,0,3,0,0,Lekki Phase 1,Detached Duplex,Lekki +78000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +115000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +195000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +60000000.0,1,0,0,4,5,6,Victoria Garden City,Semi Detached Duplex,Lekki +58000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +145000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +50000000.0,0,0,0,5,4,5,Chevron,Semi Detached Duplex,Lekki +68000000.0,0,0,1,3,0,0,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,1,4,4,4,Chevron,Semi Detached Duplex,Lekki +330000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +60000000.0,0,0,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +62000000.0,0,1,1,4,5,6,Osapa London,Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +130000000.0,1,0,0,3,3,4,Other Victoria Island,Terraced Duplex,Victoria Island +470000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,0,1,1,4,4,4,GRA,Detached Duplex,Ikeja +90000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,4,Omole,Detached Duplex,Ikeja +80000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Adeniyi Jones,Terraced Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +65000000.0,1,1,1,5,6,6,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,5,6,6,Opebi,Terraced Duplex,Ikeja +37000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +65000000.0,0,0,0,5,6,6,Ikota,Terraced Duplex,Lekki +27000000.0,0,0,0,4,5,4,Other Lekki,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,5,Chevron,Terraced Duplex,Lekki +140000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +75000000.0,0,0,0,4,6,6,Chevron,Detached Duplex,Lekki +69000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +65000000.0,1,0,1,5,5,5,Agungi,Semi Detached Duplex,Lekki +48000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +480000000.0,0,1,0,5,5,6,Onikoyi,Detached Duplex,Ikoyi +170000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +120000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Ikota,Terraced Duplex,Lekki +220000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +250000000.0,1,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +235000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +65000000.0,0,1,0,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +35000000.0,0,1,0,3,2,3,Adeniyi Jones,Terraced Duplex,Ikeja +95000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +120000000.0,1,1,1,4,4,4,Victoria Island Extension,Detached Duplex,Victoria Island +200000000.0,0,0,0,3,0,0,Allen Avenue,Detached Duplex,Ikeja +105000000.0,0,0,0,5,5,6,Agungi,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +38000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +170000000.0,0,1,1,4,4,5,Victoria Garden City,Detached Duplex,Lekki +140000000.0,1,1,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +105000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +270000000.0,0,1,1,5,5,6,Onikoyi,Detached Duplex,Ikoyi +75000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +97000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +23800000.0,0,0,0,2,0,0,Other Lekki,Terraced Duplex,Lekki +58000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +85000000.0,0,0,0,4,4,4,Osapa London,Semi Detached Duplex,Lekki +49000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +33000000.0,1,1,0,3,5,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,0,0,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +48000000.0,1,0,0,4,6,6,Ikota,Semi Detached Duplex,Lekki +210000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +350000000.0,0,0,0,5,5,6,Banana Island,Semi Detached Duplex,Ikoyi +80000000.0,0,1,1,6,5,5,Ikota,Detached Duplex,Lekki +130000000.0,0,1,1,6,6,7,Other Lekki,Detached Duplex,Lekki +190000000.0,0,0,0,6,6,7,GRA,Detached Duplex,Ikeja +155000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +60000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,0,4,4,4,Ologolo,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,4,4,Other Ikeja,Detached Duplex,Ikeja +54000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +40000000.0,0,0,0,3,3,4,Lekki Phase 2,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Opebi,Semi Detached Duplex,Ikeja +95000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +75000000.0,0,1,1,4,3,3,Ikate,Detached Duplex,Lekki +200000000.0,0,0,0,7,7,7,Opebi,Detached Duplex,Ikeja +65000000.0,1,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +175000000.0,1,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +95000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,1,4,4,5,Ikota,Semi Detached Duplex,Lekki +370000000.0,0,0,0,9,9,9,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +82000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +35000000.0,0,1,0,3,4,4,Other Lekki,Terraced Duplex,Lekki +275000000.0,0,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,6,Other Ikeja,Detached Duplex,Ikeja +200000000.0,0,0,0,4,4,5,Other Victoria Island,Semi Detached Duplex,Victoria Island +90000000.0,0,0,0,5,6,7,Victoria Garden City,Detached Duplex,Lekki +300000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +170000000.0,0,1,0,4,4,5,GRA,Semi Detached Duplex,Ikeja +350000000.0,1,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +53000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +85000000.0,0,0,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +280000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,0,0,4,5,5,Other Victoria Island,Detached Duplex,Victoria Island +60000000.0,0,1,0,4,5,5,Other Lekki,Detached Duplex,Lekki +49000000.0,1,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,0,0,4,4,4,Oregun,Detached Duplex,Ikeja +190000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +46000000.0,0,0,0,3,3,0,Victoria Garden City,Terraced Duplex,Lekki +94000000.0,0,0,0,5,5,6,Chevron,Detached Duplex,Lekki +230000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +380000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +58000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +59500000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +48000000.0,0,0,0,4,6,5,Ikota,Semi Detached Duplex,Lekki +135000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,5,5,5,Osapa London,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Victoria Garden City,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +68000000.0,0,1,0,4,5,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,0,0,3,0,0,Other Lekki,Terraced Duplex,Lekki +40000000.0,1,1,0,2,2,3,Chevron,Terraced Duplex,Lekki +70000000.0,1,0,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +55000000.0,0,1,0,3,3,5,Osapa London,Detached Duplex,Lekki +95000000.0,0,0,0,3,3,3,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,1,6,6,6,Ikota,Detached Duplex,Lekki +50000000.0,0,0,0,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +180000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +110000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +68000000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +56000099.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +76000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +73100000.0,1,1,0,4,5,5,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +60000000.0,1,1,0,4,5,5,Ikota,Terraced Duplex,Lekki +85000000.0,1,1,0,4,4,5,Ikota,Detached Duplex,Lekki +400000000.0,0,0,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +120000009.0,0,1,1,5,5,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Chevron,Semi Detached Duplex,Lekki +79000000.0,1,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki +190000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +160000000.0,0,1,0,4,4,5,Ikota,Detached Duplex,Lekki +75000000.0,0,1,1,5,7,7,Ikota,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +85000000.0,0,0,0,4,4,4,Alausa,Detached Duplex,Ikeja +95000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +110000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +110000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +175000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +90000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +180000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +250000000.0,0,1,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +320000000.0,1,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +45000000.0,1,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +65000000.0,1,1,1,3,4,0,Ikate,Detached Duplex,Lekki +58000000.0,1,1,1,3,3,3,Other Lekki,Terraced Duplex,Lekki +30000000.0,0,1,0,3,6,6,Chevron,Semi Detached Duplex,Lekki +150000000.0,1,0,0,4,4,5,GRA,Detached Duplex,Ikeja +250000000.0,0,0,0,4,8,5,Lekki Phase 1,Semi Detached Duplex,Lekki +135000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +160000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +47000000.0,0,0,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +38000000.0,0,1,0,3,3,4,Chevron,Terraced Duplex,Lekki +55000000.0,0,0,1,4,5,5,Ikota,Terraced Duplex,Lekki +75000000.0,0,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +185000000.0,0,0,0,3,0,4,Other Victoria Island,Detached Duplex,Victoria Island +140000000.0,0,0,0,5,5,6,Oniru,Detached Duplex,Victoria Island +80000000.0,1,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +220000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +400000000.0,1,1,0,0,0,9,Lekki Phase 1,Detached Duplex,Lekki +200000000.0,0,0,0,4,5,5,GRA,Detached Duplex,Ikeja +85000000.0,1,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +85000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +58000000.0,1,1,1,4,4,5,Chevron,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +88000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +47000000.0,0,1,1,4,6,6,Chevron,Semi Detached Duplex,Lekki +110000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,1,5,5,6,Ikota,Detached Duplex,Lekki +235000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +300000000.0,0,1,0,4,4,5,Old Ikoyi,Terraced Duplex,Ikoyi +43000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +48000000.0,0,0,0,4,5,4,Other Lekki,Semi Detached Duplex,Lekki +17000000.0,1,0,0,5,5,6,Ikate,Detached Duplex,Lekki +170000000.0,1,1,0,5,6,6,Lekki Phase 2,Detached Duplex,Lekki +62000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +285000000.0,0,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +455000000.0,0,0,0,7,7,8,Lekki Phase 1,Detached Duplex,Lekki +210000000.0,0,0,0,4,4,5,Waziri Adeola Odeku,Terraced Duplex,Victoria Island +92000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,0,4,4,4,Ikota,Semi Detached Duplex,Lekki +20000000.0,0,1,0,4,4,5,Banana Island,Terraced Duplex,Ikoyi +220000000.0,0,1,0,4,4,5,Adeniyi Jones,Detached Duplex,Ikeja +97000000.0,0,0,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +160000000.0,0,0,1,4,4,5,GRA,Semi Detached Duplex,Ikeja +85000000.0,0,0,0,5,5,6,Allen Avenue,Detached Duplex,Ikeja +55000000.0,0,0,0,4,4,4,Chevron,Terraced Duplex,Lekki +60000000.0,1,1,0,5,5,6,Chevron,Detached Duplex,Lekki +225000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,0,4,4,4,GRA,Detached Duplex,Ikeja +65000000.0,0,1,1,4,4,5,Chevron,Detached Duplex,Lekki +95000000.0,1,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +270000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +57000000.0,0,0,0,4,5,5,Agungi,Detached Duplex,Lekki +270000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,3,0,0,Lekki Phase 2,Terraced Duplex,Lekki +70000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +220000000.0,0,0,1,4,4,5,Oniru,Detached Duplex,Victoria Island +53000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +55000000.0,0,1,0,3,4,4,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +67000000.0,1,1,0,4,5,5,Agungi,Detached Duplex,Lekki +185000000.0,0,1,0,4,4,5,Osapa London,Detached Duplex,Lekki +110000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +70000000.0,0,1,0,4,4,4,Adeniyi Jones,Detached Duplex,Ikeja +85000000.0,0,1,0,4,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +42500000.0,1,1,0,2,3,3,Lekki Phase 2,Detached Duplex,Lekki +47000000.0,0,1,1,4,5,5,Osapa London,Semi Detached Duplex,Lekki +72000000.0,1,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +53000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +200000000.0,0,0,0,4,4,5,Parkview,Semi Detached Duplex,Ikoyi +95000000.0,0,1,1,4,4,4,Ikota,Detached Duplex,Lekki +16500000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +54000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +20000000.0,0,1,1,4,6,6,Chevron,Detached Duplex,Lekki +450000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +350000000.0,0,0,0,4,4,5,Opebi,Detached Duplex,Ikeja +56000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +50000000.0,0,1,1,4,4,5,Osapa London,Detached Duplex,Lekki +210000000.0,0,1,0,4,4,5,Old Ikoyi,Detached Duplex,Ikoyi +68000000.0,0,1,1,5,5,6,Chevron,Detached Duplex,Lekki +320000000.0,0,0,0,6,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,7,Chevron,Detached Duplex,Lekki +35000000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +45000000.0,0,1,0,5,4,4,Chevron,Terraced Duplex,Lekki +145000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +75000000.0,0,1,0,4,4,5,Chevron,Detached Duplex,Lekki +360000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +90000000.0,0,0,0,4,4,5,Agidingbi,Detached Duplex,Ikeja +135000000.0,0,1,1,6,6,7,Chevron,Detached Duplex,Lekki +115000000.0,0,1,0,5,5,6,Ikota,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +53000000.0,1,1,1,4,4,5,Other Lekki,Terraced Duplex,Lekki +48000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +300000000.0,0,1,0,5,6,7,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,1,0,4,5,5,Ikate,Terraced Duplex,Lekki +370000000.0,0,1,1,5,5,5,Banana Island,Detached Duplex,Ikoyi +350000000.0,0,1,0,5,6,6,Banana Island,Semi Detached Duplex,Ikoyi +100000000.0,0,1,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +95000000.0,1,1,0,4,4,5,Ikate,Detached Duplex,Lekki +100000000.0,0,1,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +56000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,3,0,0,Other Victoria Island,Terraced Duplex,Victoria Island +145000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +300000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +90000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +450000000.0,0,0,0,4,6,6,Banana Island,Detached Duplex,Ikoyi +55000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +215000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +37000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +75000000.0,1,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +45000000.0,1,1,0,3,3,4,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,0,0,5,5,6,Chevron,Terraced Duplex,Lekki +80000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +45000000.0,0,0,0,2,3,3,Osapa London,Terraced Duplex,Lekki +47000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +450000000.0,0,1,1,5,5,7,Osapa London,Detached Duplex,Lekki +120000000.0,0,1,0,5,6,6,Omole,Detached Duplex,Ikeja +80000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +42000000.0,0,1,0,3,3,4,Ikota,Detached Duplex,Lekki +45000000.0,0,0,0,2,0,0,Allen Avenue,Detached Duplex,Ikeja +160000000.0,0,0,1,5,5,6,Chevron,Detached Duplex,Lekki +280000000.0,0,1,0,5,5,7,Ikota,Detached Duplex,Lekki +180000000.0,0,0,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +58000000.0,1,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +47000000.0,0,0,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +200000000.0,0,0,0,5,5,5,Onikoyi,Semi Detached Duplex,Ikoyi +65000000.0,0,1,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +400000000.0,0,1,0,5,5,5,Ikate,Detached Duplex,Lekki +82000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +260000000.0,0,0,0,5,5,6,Ologolo,Detached Duplex,Lekki +68000000.0,1,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +72000000.0,1,1,1,4,6,6,Chevron,Detached Duplex,Lekki +260000000.0,1,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +125000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +77000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Ikate,Detached Duplex,Lekki +200000000.0,0,1,0,4,4,5,Parkview,Terraced Duplex,Ikoyi +65000000.0,1,1,0,4,5,5,Other Lekki,Semi Detached Duplex,Lekki +500000000.0,0,0,0,5,5,6,Foreshore,Semi Detached Duplex,Ikoyi +180000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +165000000.0,0,0,0,5,6,6,Ikate,Semi Detached Duplex,Lekki +50000000.0,0,1,0,4,4,4,Ologolo,Terraced Duplex,Lekki +68000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +95000000.0,0,0,0,4,4,5,Osapa London,Detached Duplex,Lekki +155000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +46000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +58000000.0,0,0,0,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +58000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +72000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +110000000.0,0,0,0,5,6,6,Ikota,Detached Duplex,Lekki +120000000.0,0,1,0,5,5,5,Ikate,Semi Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +130000000.0,0,1,0,5,5,6,Ologolo,Detached Duplex,Lekki +53000000.0,0,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +60000000.0,0,1,0,4,4,5,Ikota,Terraced Duplex,Lekki +40000000.0,1,1,0,4,4,5,Chevron,Terraced Duplex,Lekki +250000000.0,0,1,0,4,5,5,Other Ikoyi,Detached Duplex,Ikoyi +360000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Agungi,Detached Duplex,Lekki +175000000.0,1,1,1,5,5,6,Chevron,Detached Duplex,Lekki +60000000.0,1,1,1,4,5,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,0,0,4,5,4,Osapa London,Semi Detached Duplex,Lekki +128000000.0,0,0,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +27000000.0,0,0,0,5,5,6,Other Ikeja,Detached Duplex,Ikeja +110000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +50000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +120000000.0,1,1,1,5,7,6,Osapa London,Detached Duplex,Lekki +56000000.0,1,1,1,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,1,1,0,4,6,7,Ikate,Detached Duplex,Lekki +450000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +100000000.0,0,0,0,5,5,6,Other Ikeja,Terraced Duplex,Ikeja +78000000.0,0,0,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,0,0,0,4,4,5,Oniru,Terraced Duplex,Victoria Island +70000000.0,0,0,0,4,5,5,Oniru,Terraced Duplex,Victoria Island +100000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +450000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +150000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +250000000.0,1,1,0,5,6,6,Chevron,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +220000000.0,0,1,0,5,5,6,Oniru,Terraced Duplex,Victoria Island +110000000.0,0,1,1,4,4,4,Lekki Phase 1,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +120000000.0,0,1,0,5,6,7,Other Lekki,Detached Duplex,Lekki +90000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +50000000.0,0,0,0,5,5,5,Other Ikeja,Detached Duplex,Ikeja +76000000.0,0,1,0,6,6,7,Osapa London,Terraced Duplex,Lekki +40000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +130000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +65000000.0,0,0,0,4,4,5,Lekki Phase 2,Semi Detached Duplex,Lekki +40000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +73000000.0,0,1,0,4,4,4,Ikate,Terraced Duplex,Lekki +180000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +100000000.0,0,1,1,5,5,6,Lekki Phase 2,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Osapa London,Terraced Duplex,Lekki +50000000.0,1,1,1,4,5,5,Ikota,Terraced Duplex,Lekki +200000000.0,0,1,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +135000000.0,0,0,0,4,4,5,Other Ikeja,Detached Duplex,Ikeja +110000000.0,0,0,0,5,6,5,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +125000000.0,0,1,1,4,4,5,Oniru,Terraced Duplex,Victoria Island +290000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +500000000.0,0,0,0,4,3,4,GRA,Detached Duplex,Ikeja +70000000.0,0,0,0,4,5,5,Osapa London,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Oniru,Detached Duplex,Victoria Island +85000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +100000000.0,0,0,0,4,4,6,Other Lekki,Semi Detached Duplex,Lekki +60000000.0,0,1,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +35000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +50000000.0,1,1,1,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +75000000.0,0,1,0,5,5,7,Chevron,Semi Detached Duplex,Lekki +55000000.0,0,1,0,5,5,5,Agungi,Detached Duplex,Lekki +240000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Chevron,Semi Detached Duplex,Lekki +98000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +170000000.0,0,1,0,4,5,5,Lekki Phase 1,Semi Detached Duplex,Lekki +480000000.0,0,0,0,6,6,7,Osapa London,Detached Duplex,Lekki +105000000.0,1,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +57000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +185000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +63000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +125000000.0,0,1,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +120000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +370000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,3,3,3,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +165000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +75000000.0,0,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +165000000.0,0,0,0,5,5,5,Lekki Phase 1,Terraced Duplex,Lekki +38000000.0,1,1,0,4,4,4,Chevron,Detached Duplex,Lekki +38500000.0,1,1,0,2,2,2,Lekki Phase 2,Terraced Duplex,Lekki +110000000.0,0,0,1,4,5,5,Ikate,Detached Duplex,Lekki +65000000.0,0,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +135000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +130000000.0,1,0,0,4,4,5,Foreshore,Detached Duplex,Ikoyi +255000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +100000000.0,1,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +138000000.0,1,1,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +95000000.0,0,0,0,4,4,5,Ologolo,Semi Detached Duplex,Lekki +220000000.0,0,1,1,5,5,6,Other Lekki,Detached Duplex,Lekki +99000000.0,0,0,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +98000000.0,0,0,0,6,8,8,Lekki Phase 2,Detached Duplex,Lekki +220000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +49000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +330000000.0,0,1,0,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +38000000.0,0,0,0,4,4,4,Ikota,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,5,Agungi,Semi Detached Duplex,Lekki +300000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,1,1,5,5,6,Osapa London,Semi Detached Duplex,Lekki +215000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +175000000.0,0,1,0,4,4,6,Lekki Phase 1,Semi Detached Duplex,Lekki +45000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +250000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Ikota,Detached Duplex,Lekki +70000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +185000000.0,1,1,1,5,5,6,GRA,Detached Duplex,Ikeja +66000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +170000000.0,0,1,0,5,5,5,GRA,Semi Detached Duplex,Ikeja +150000000.0,0,1,0,5,6,6,Other Lekki,Detached Duplex,Lekki +80000000.0,0,1,0,5,5,6,Lekki Phase 2,Semi Detached Duplex,Lekki +55000000.0,0,1,0,5,5,5,Chevron,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +95000000.0,0,1,0,4,4,4,Victoria Garden City,Semi Detached Duplex,Lekki +240000000.0,1,0,0,4,4,4,Other Ikoyi,Terraced Duplex,Ikoyi +110000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +220000000.0,0,1,0,6,6,7,Chevron,Detached Duplex,Lekki +350000000.0,0,0,0,3,0,0,Banana Island,Terraced Duplex,Ikoyi +269000000.0,0,0,0,5,5,5,Ikate,Detached Duplex,Lekki +270000000.0,0,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +75000000.0,1,1,1,4,4,5,Ologolo,Semi Detached Duplex,Lekki +70000000.0,0,0,0,5,6,6,Victoria Garden City,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Adeniyi Jones,Semi Detached Duplex,Ikeja +100000000.0,0,0,0,4,4,5,Victoria Island Extension,Terraced Duplex,Victoria Island +100000000.0,0,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +130000000.0,0,0,1,5,5,5,Ikota,Detached Duplex,Lekki +135000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +78000000.0,1,0,0,3,3,4,Ikate,Terraced Duplex,Lekki +230000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +40000000.0,1,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +35000000.0,0,0,0,3,3,4,Osapa London,Semi Detached Duplex,Lekki +220000000.0,1,1,1,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +88000000.0,0,0,0,5,5,6,Ikota,Detached Duplex,Lekki +90000000.0,0,0,1,5,6,6,Airport Road,Detached Duplex,Ikeja +50000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,5,5,6,Opebi,Detached Duplex,Ikeja +270000000.0,0,0,0,5,5,6,Opebi,Semi Detached Duplex,Ikeja +95000000.0,0,1,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +78000000.0,0,0,1,5,5,5,Chevron,Detached Duplex,Lekki +95000000.0,0,1,0,4,5,5,Adeniyi Jones,Semi Detached Duplex,Ikeja +310000000.0,0,0,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +85000000.0,0,0,0,5,6,7,Other Lekki,Detached Duplex,Lekki +45000000.0,0,0,0,4,4,4,Lekki Phase 2,Detached Duplex,Lekki +125000000.0,0,0,0,4,4,5,Chevron,Detached Duplex,Lekki +68000000.0,0,0,0,4,4,4,Oniru,Detached Duplex,Victoria Island +49500000.0,0,0,0,6,6,7,Chevron,Terraced Duplex,Lekki +230000000.0,0,0,0,5,5,5,GRA,Detached Duplex,Ikeja +300000000.0,0,0,0,5,7,7,Old Ikoyi,Semi Detached Duplex,Ikoyi +45000000.0,0,1,0,6,6,6,Ikota,Semi Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +155000000.0,0,1,0,5,5,6,Lekki Phase 1,Detached Duplex,Lekki +70000000.0,1,1,1,4,4,3,Lekki Phase 2,Semi Detached Duplex,Lekki +45000000.0,0,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +70000000.0,0,0,0,4,4,4,Chevron,Detached Duplex,Lekki +55000000.0,0,1,0,4,4,5,Lekki Phase 2,Terraced Duplex,Lekki +42000000.0,0,1,1,3,3,4,Chevron,Terraced Duplex,Lekki +35000000.0,0,1,0,3,0,0,Chevron,Terraced Duplex,Lekki +180000000.0,1,1,0,4,5,5,Oniru,Detached Duplex,Victoria Island +80000000.0,0,0,0,4,5,5,Chevron,Detached Duplex,Lekki +55000000.0,1,1,0,6,6,7,Chevron,Terraced Duplex,Lekki +50000000.0,1,1,1,4,5,5,Chevron,Terraced Duplex,Lekki +65000000.0,1,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +290000000.0,0,0,0,7,0,0,Lekki Phase 1,Detached Duplex,Lekki +130000000.0,0,1,0,4,6,6,Oniru,Terraced Duplex,Victoria Island +35000000.0,0,0,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +170000000.0,0,1,0,4,5,5,Osapa London,Detached Duplex,Lekki +60000000.0,0,1,1,4,6,6,Other Lekki,Detached Duplex,Lekki +70000000.0,1,1,0,4,4,5,Osapa London,Terraced Duplex,Lekki +70000000.0,0,1,0,4,3,3,Chevron,Detached Duplex,Lekki +90000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,6,Lekki Phase 1,Semi Detached Duplex,Lekki +81000000.0,0,1,0,4,4,5,Ikate,Terraced Duplex,Lekki +70000000.0,0,0,0,5,5,5,Chevron,Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Ikota,Detached Duplex,Lekki +47000000.0,1,1,0,4,4,5,Victoria Garden City,Terraced Duplex,Lekki +210000000.0,0,1,1,5,5,6,Osapa London,Detached Duplex,Lekki +125000000.0,1,1,0,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +170000000.0,1,1,1,4,6,6,Lekki Phase 1,Detached Duplex,Lekki +80000000.0,0,0,0,4,4,5,Alausa,Semi Detached Duplex,Ikeja +160000000.0,0,0,0,5,5,6,GRA,Detached Duplex,Ikeja +65000000.0,0,1,0,5,5,6,Ikota,Terraced Duplex,Lekki +300000000.0,0,1,0,5,7,7,Lekki Phase 1,Detached Duplex,Lekki +250000000.0,0,1,0,6,6,6,Lekki Phase 1,Detached Duplex,Lekki +50000000.0,0,1,0,4,5,5,Ikota,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,4,5,Ikate,Terraced Duplex,Lekki +165000000.0,1,0,0,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +63000000.0,0,0,0,5,6,7,Ikota,Detached Duplex,Lekki +33000000.0,0,0,0,3,3,4,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +60000000.0,0,0,0,4,4,6,Ikota,Semi Detached Duplex,Lekki +34000000.0,0,0,0,3,3,4,Chevron,Terraced Duplex,Lekki +56000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +70000000.0,0,1,0,5,5,6,Banana Island,Detached Duplex,Ikoyi +70000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +100000000.0,0,1,0,5,5,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +180000000.0,0,1,0,4,4,4,Other Ikoyi,Semi Detached Duplex,Ikoyi +52000000.0,0,0,0,4,4,5,Ologolo,Terraced Duplex,Lekki +37000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +160000000.0,0,0,0,4,4,5,Other Lekki,Detached Duplex,Lekki +53000000.0,0,1,1,5,5,6,Ologolo,Detached Duplex,Lekki +210000000.0,0,1,0,5,5,7,Osapa London,Semi Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Lekki Phase 1,Detached Duplex,Lekki +280000000.0,0,1,1,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +58000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +36500000.0,0,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +135000000.0,0,0,1,4,5,5,GRA,Terraced Duplex,Ikeja +75000000.0,0,1,0,4,5,5,Ikate,Semi Detached Duplex,Lekki +360000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +65000000.0,1,1,0,5,5,5,Other Lekki,Terraced Duplex,Lekki +175000000.0,0,0,0,5,5,6,Oniru,Semi Detached Duplex,Victoria Island +43000000.0,0,1,0,3,3,4,Ikota,Terraced Duplex,Lekki +150000000.0,0,1,0,5,6,6,Chevron,Detached Duplex,Lekki +45000000.0,0,1,1,4,6,6,Ikota,Semi Detached Duplex,Lekki +140000000.0,1,1,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +90000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +41000000.0,0,1,0,4,2,2,Lekki Phase 2,Semi Detached Duplex,Lekki +63000000.0,0,0,1,4,4,5,Ikota,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,5,Ikate,Detached Duplex,Lekki +150000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +65000000.0,1,0,1,4,4,5,Ologolo,Terraced Duplex,Lekki +150000000.0,1,0,0,5,5,6,Ikate,Semi Detached Duplex,Lekki +70000000.0,0,0,0,4,5,5,Ikate,Terraced Duplex,Lekki +100000000.0,1,1,1,5,7,7,Osapa London,Detached Duplex,Lekki +190000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +300000000.0,0,1,1,5,6,6,GRA,Detached Duplex,Ikeja +150000000.0,0,0,0,4,4,4,Other Ikoyi,Detached Duplex,Ikoyi +250000000.0,0,0,0,3,3,4,Old Ikoyi,Terraced Duplex,Ikoyi +115000000.0,0,0,0,4,4,4,Ikota,Detached Duplex,Lekki +100000000.0,0,0,0,5,6,6,Other Lekki,Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Agungi,Detached Duplex,Lekki +27000000.0,0,0,1,2,2,3,Lekki Phase 2,Terraced Duplex,Lekki +110000000.0,0,1,1,5,6,7,Ikate,Detached Duplex,Lekki +340000000.0,0,0,0,5,6,6,Banana Island,Detached Duplex,Ikoyi +190000000.0,0,1,1,4,4,5,Other Lekki,Detached Duplex,Lekki +260000000.0,0,0,0,4,4,4,Foreshore,Semi Detached Duplex,Ikoyi +32000000.0,0,0,0,3,3,3,Other Lekki,Terraced Duplex,Lekki +55000000.0,0,1,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Other Ikeja,Terraced Duplex,Ikeja +130000000.0,1,1,1,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +128000000.0,0,1,0,5,5,6,Chevron,Detached Duplex,Lekki +250000000.0,0,1,0,4,4,5,Other Ikoyi,Semi Detached Duplex,Ikoyi +40000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +205000000.0,0,1,0,5,5,5,Ikota,Detached Duplex,Lekki +110000000.0,0,0,0,3,3,4,Foreshore,Terraced Duplex,Ikoyi +135000000.0,0,1,0,5,6,6,Ikota,Semi Detached Duplex,Lekki +105000000.0,0,0,0,5,5,6,Other Lekki,Detached Duplex,Lekki +170000000.0,1,1,0,4,4,5,Foreshore,Semi Detached Duplex,Ikoyi +225000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +120000000.0,0,1,1,5,6,6,Ikota,Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Lekki Phase 2,Semi Detached Duplex,Lekki +260000000.0,0,0,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +80000000.0,0,0,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +55000000.0,0,1,0,4,5,5,Ologolo,Semi Detached Duplex,Lekki +260000000.0,0,1,0,4,5,5,Banana Island,Semi Detached Duplex,Ikoyi +40000000.0,0,0,0,5,5,6,Lekki Phase 1,Terraced Duplex,Lekki +100000000.0,0,1,0,4,4,4,Ologolo,Detached Duplex,Lekki +220000000.0,0,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +140000000.0,0,1,0,4,4,5,Other Lekki,Detached Duplex,Lekki +500000000.0,0,1,0,5,6,6,Other Ikoyi,Detached Duplex,Ikoyi +130000000.0,0,1,0,5,5,6,Agungi,Detached Duplex,Lekki +65000000.0,0,1,0,3,3,4,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,6,Agungi,Semi Detached Duplex,Lekki +78000000.0,0,1,1,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +240000000.0,0,1,0,4,4,5,Other Ikoyi,Terraced Duplex,Ikoyi +65000000.0,0,1,0,5,6,6,Ikota,Detached Duplex,Lekki +185000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +70000000.0,0,1,0,3,4,4,Ikota,Semi Detached Duplex,Lekki +65000000.0,0,1,0,5,5,5,Chevron,Detached Duplex,Lekki +290000000.0,0,1,0,4,4,5,Lekki Phase 1,Detached Duplex,Lekki +105000000.0,0,0,0,5,5,5,Adeniyi Jones,Terraced Duplex,Ikeja +110000000.0,0,1,0,4,5,6,Ikota,Detached Duplex,Lekki +500000000.0,0,0,0,5,7,7,Osapa London,Detached Duplex,Lekki +200000000.0,0,1,1,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,4,6,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +54000000.0,0,1,1,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +290000000.0,0,0,0,5,5,5,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,0,1,5,5,6,Other Lekki,Semi Detached Duplex,Lekki +75000000.0,0,0,1,4,5,5,Other Lekki,Terraced Duplex,Lekki +70000000.0,0,0,1,6,8,8,Chevron,Detached Duplex,Lekki +300000000.0,0,1,0,5,5,7,Oniru,Semi Detached Duplex,Victoria Island +168000000.0,0,0,0,4,4,5,Other Victoria Island,Terraced Duplex,Victoria Island +48000000.0,0,0,0,4,5,5,Ikota,Detached Duplex,Lekki +300000000.0,1,1,0,4,4,5,Other Victoria Island,Detached Duplex,Victoria Island +85000000.0,1,1,0,4,4,5,Lekki Phase 1,Terraced Duplex,Lekki +46000000.0,0,0,0,3,0,0,Lekki Phase 1,Terraced Duplex,Lekki +200000000.0,0,0,0,4,4,5,GRA,Terraced Duplex,Ikeja +92000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +50000000.0,0,1,0,4,4,5,Other Lekki,Terraced Duplex,Lekki +105000000.0,0,0,0,3,3,3,Lekki Phase 2,Terraced Duplex,Lekki +450000000.0,0,0,0,6,6,7,Old Ikoyi,Detached Duplex,Ikoyi +145000000.0,0,0,1,3,5,5,Lekki Phase 1,Detached Duplex,Lekki +40000000.0,0,0,0,3,3,4,Agungi,Terraced Duplex,Lekki +55000000.0,1,1,1,4,6,3,Chevron,Semi Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Agungi,Terraced Duplex,Lekki +190000000.0,0,1,1,4,4,5,Oniru,Detached Duplex,Victoria Island +98000000.0,1,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +65000000.0,0,1,0,6,6,7,Other Lekki,Detached Duplex,Lekki +170000000.0,0,0,0,5,5,5,Ikota,Detached Duplex,Lekki +80000000.0,0,0,0,5,5,5,Adeniyi Jones,Detached Duplex,Ikeja +135000000.0,1,1,0,3,3,4,GRA,Detached Duplex,Ikeja +125000000.0,0,0,0,5,5,6,Victoria Island Extension,Terraced Duplex,Victoria Island +280000000.0,0,1,1,5,6,6,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,1,0,4,4,4,Ikota,Detached Duplex,Lekki +140000000.0,1,1,0,4,6,5,Osapa London,Detached Duplex,Lekki +140000000.0,0,1,0,4,5,5,Ikate,Detached Duplex,Lekki +47000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +53000000.0,1,0,0,3,3,3,Chevron,Terraced Duplex,Lekki +125000000.0,0,1,0,5,5,6,Victoria Garden City,Detached Duplex,Lekki +210000000.0,1,1,0,4,4,5,Oniru,Detached Duplex,Victoria Island +350000000.0,0,0,0,5,5,6,Ikate,Detached Duplex,Lekki +300000000.0,1,1,0,5,5,6,Oniru,Detached Duplex,Victoria Island +90000000.0,0,1,0,5,5,5,Other Lekki,Detached Duplex,Lekki +59000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +47000000.0,1,1,0,4,5,5,Victoria Garden City,Terraced Duplex,Lekki +170000000.0,1,1,0,4,5,5,Lekki Phase 1,Terraced Duplex,Lekki +75000000.0,0,0,0,4,5,5,Victoria Garden City,Detached Duplex,Lekki +59000000.0,0,1,1,4,6,6,Osapa London,Detached Duplex,Lekki +28000000.0,0,0,0,4,4,5,Other Lekki,Semi Detached Duplex,Lekki +85000000.0,0,1,0,3,3,4,GRA,Terraced Duplex,Ikeja +270000000.0,0,0,0,4,4,5,Banana Island,Semi Detached Duplex,Ikoyi +175000000.0,0,1,1,5,5,6,Ikate,Detached Duplex,Lekki +105000000.0,0,1,0,5,6,6,Osapa London,Detached Duplex,Lekki +70000000.0,0,1,1,4,4,5,Ikate,Terraced Duplex,Lekki +120000000.0,1,1,1,5,5,5,Agungi,Detached Duplex,Lekki +79500000.0,0,1,1,5,5,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,0,0,0,4,5,6,Ologolo,Semi Detached Duplex,Lekki +145000000.0,0,0,0,5,5,6,Osapa London,Detached Duplex,Lekki +80000000.0,0,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +83000000.0,0,0,0,4,4,4,Other Lekki,Detached Duplex,Lekki +155000000.0,0,0,0,4,4,4,Victoria Garden City,Detached Duplex,Lekki +85000000.0,0,0,0,4,4,5,Osapa London,Semi Detached Duplex,Lekki +47000000.0,0,0,0,4,4,5,Agungi,Detached Duplex,Lekki +28000000.0,0,1,0,4,4,4,Other Lekki,Detached Duplex,Lekki +55000000.0,0,0,0,4,5,5,Lekki Phase 2,Detached Duplex,Lekki +450000000.0,0,0,0,5,4,6,Other Lekki,Detached Duplex,Lekki +130000000.0,0,0,1,5,5,5,Other Lekki,Detached Duplex,Lekki +125000000.0,0,1,0,4,5,5,Agungi,Detached Duplex,Lekki +100000000.0,0,0,0,4,5,5,GRA,Semi Detached Duplex,Ikeja +155000000.0,0,0,0,5,5,6,Adeniyi Jones,Detached Duplex,Ikeja +350000000.0,0,0,0,5,5,6,Parkview,Detached Duplex,Ikoyi +105000000.0,0,1,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +250000000.0,0,0,0,7,7,7,Chevron,Detached Duplex,Lekki +75000000.0,0,1,0,4,5,5,Chevron,Detached Duplex,Lekki +40000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +77500000.0,1,1,0,4,4,5,Victoria Garden City,Semi Detached Duplex,Lekki +50000000.0,0,0,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +65000000.0,1,1,1,4,4,4,Lekki Phase 2,Terraced Duplex,Lekki +80000000.0,1,0,1,3,3,3,Lekki Phase 2,Detached Duplex,Lekki +160000000.0,0,0,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +110000000.0,0,0,0,4,5,5,Osapa London,Semi Detached Duplex,Lekki +70000000.0,1,1,1,4,4,5,Osapa London,Terraced Duplex,Lekki +55000000.0,0,0,0,9,8,8,Other Ikeja,Detached Duplex,Ikeja +111000000.0,0,0,0,5,5,5,Ikota,Terraced Duplex,Lekki +55000000.0,0,0,0,4,4,5,Chevron,Semi Detached Duplex,Lekki +50000000.0,1,0,1,3,0,0,Chevron,Terraced Duplex,Lekki +90000000.0,1,1,0,4,4,4,Lekki Phase 1,Detached Duplex,Lekki +150000000.0,0,1,0,4,5,5,Agungi,Semi Detached Duplex,Lekki +110000000.0,0,1,0,4,4,5,Ologolo,Detached Duplex,Lekki +190000000.0,1,1,0,3,4,4,Other Victoria Island,Terraced Duplex,Victoria Island +105000000.0,0,0,0,5,5,6,Chevron,Semi Detached Duplex,Lekki +65000000.0,0,1,0,4,4,5,Ikota,Semi Detached Duplex,Lekki +52000000.0,0,0,0,4,4,4,Agungi,Semi Detached Duplex,Lekki +70000000.0,0,1,0,3,3,4,Lekki Phase 2,Semi Detached Duplex,Lekki +72000000.0,0,1,0,5,5,5,Ikota,Semi Detached Duplex,Lekki +75000000.0,0,0,0,4,5,6,Agungi,Detached Duplex,Lekki +175000000.0,1,1,1,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +280000000.0,0,1,0,5,5,6,Other Lekki,Detached Duplex,Lekki +90000000.0,0,0,0,4,4,5,Osapa London,Terraced Duplex,Lekki +140000000.0,0,1,0,4,4,5,Lekki Phase 1,Semi Detached Duplex,Lekki +35000000.0,0,0,0,3,4,5,Other Lekki,Semi Detached Duplex,Lekki +45000000.0,0,0,0,3,3,3,Lekki Phase 1,Semi Detached Duplex,Lekki +170000000.0,0,1,1,4,5,5,Lekki Phase 1,Detached Duplex,Lekki +35000000.0,0,0,0,3,0,0,Ikota,Terraced Duplex,Lekki +68000000.0,1,1,1,4,4,5,Lekki Phase 2,Detached Duplex,Lekki +80000000.0,1,1,0,4,5,5,Chevron,Semi Detached Duplex,Lekki +120000000.0,0,0,0,4,4,4,Other Lekki,Semi Detached Duplex,Lekki +150000000.0,0,0,0,5,6,6,Victoria Garden City,Terraced Duplex,Lekki +230000000.0,1,1,1,5,5,5,Osapa London,Detached Duplex,Lekki +280000000.0,0,0,0,6,6,7,Other Lekki,Detached Duplex,Lekki +55000000.0,1,1,0,4,4,5,Chevron,Detached Duplex,Lekki +140000000.0,0,0,0,4,4,5,Other Ikoyi,Detached Duplex,Ikoyi +120000000.0,1,1,0,4,4,5,Ikate,Semi Detached Duplex,Lekki diff --git a/clean/vi.csv b/clean/vi.csv new file mode 100644 index 0000000..661c156 --- /dev/null +++ b/clean/vi.csv @@ -0,0 +1,4459 @@ +,Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets,Neighborhood +0,Luxury 3 Bedroom Apartment With Excellent Finishing,Off Ligali Ayorinde Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1,Ultra Luxury 3 Bedroom Apartment,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +2,Luxury 2 Bedrooms Apartment With Bq,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,4 baths,3 Toilets,Victoria Island Extension +3,Brand New Specious Luxury 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"590,000,000",0,1,0,6 beds,6 baths,7 Toilets,Waziri Adeola Odeku +4,Exquisite 3bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +5,2 Bedroom Apartment,Cluster D1 1004 Victoria Island Lagos,₦,"95,000,000",1,0,0,2 beds,1 baths,2 Toilets,Other Victoria Island +6,Luxury One Bedroom Hotel Styled Apartment,The Knight's Place Ahmadu Bello Way Victoria Island Lagos,₦,"80,000,000",0,0,0,1 beds,1 baths,0 Toilets,Other Victoria Island +7,Luxury 2 Bedroom Apartment,"The Knight's Place, Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos",₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +8,Luxury 2 Bedroom Apartment,"The Knight's Place, Ahmadu Bello Way Victoria Island Lagos",₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +9,Well Finished Open Plan Space,Idowu Taylor Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +10,Office Block On 2 Floors,Saka Tinubu Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +11,"4units Of Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex + A Room Bq,gym Center & Cinema House For Sale!!!",Oniru Victoria Island Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,5 Toilets,Oniru +12,Brand New 2 Bedroom Pent House Apartment With Bq,Victoria Island Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Victoria Island +13,5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Oniru +14,"Luxurious 2 Units Of 4 Bedroom Penthouses With A Room Bq Each. , Swimming Pool, Gym",Victoria Island Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +15,2 Bedroom Penthouse,Akin Adesola Victoria Island Lagos,₦,"160,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Victoria Island +16,Strategic Waterfront Bare Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +17,3 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +18,3 Bedroom Flat,Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +19,3bedroom Apartment,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +20,6 Units Of Affordable Duplex,Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +21,"Luxurious 8 Units Of 3 Bedroom Flat With Bq, Swimming Pool, Gym",Victoria Island Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +22,Newly Built 3 Bedroom Terraces With Bq,Waziri Adeola Odeku Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +23,The Deal: Full Service Contemporary Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +24,Brand New 3 Bedroom Apartment With Bq,Adeola Odeku Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +25,3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +26,4 Bedroom Maisonette,Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +27,3 Bedrooms Fully Serviced Apartments With 24 Hrs Electricity Available For Sale(good For Shortlets,Victoria Island Lagos,₦,"135,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +28,2 Floor Full Service Terrace,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,4 Toilets,Other Victoria Island +29,Purpose Built Office Block On 5 Floors,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +30,This Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +31,"Exquisitely Finished Luxury 5 Bedroom Detached Duplex For Sale At Oniru, Vi.",Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +32,Stellar 3 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +33,Fully Detached And Fully Serviced Contemporary Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +34,Exclusively Built Brand New 6 Bedroom With A Pent Floor,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"550,005,000",0,1,0,6 beds,6 baths,7 Toilets,Other Victoria Island +35,4 Units Of Three (3) Bedroom Luxury Terrace Duplexes.,"Kayla's Haven Terraces, Off Ozumba Mbadiwe (oba Yesufu Abiodun Road) Oniru Victoria Island Lagos",₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +36,Purpose Built Office Block On 2 Floors At The Corner Of Amodu Ojikutu Street.,Amodu Ojikutu Street Saka Tinubu Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +37,Luxury & Executive Four Bedroom Apartment,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +38,3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +39,4 Bedroom Detached House With Bq,Dideolu Etate Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +40,Luxurious 3 Bedroom Flat,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,0 Toilets,Other Victoria Island +41,One Of Its Kind. An Elegant 5 Bedroom Fully Detached Duplex In A Top Private Estate In Oniru,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +42,5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets,Oniru +43,Newly Built 3bedrooms Terrace Duplex,Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +44,Luxury 3 Bedroom Apartment With Service Quarter,"Water Corporation Drive, Off Ligali Ayorinde, Oniru, Victoria Island Extension Victoria Island Lagos",₦,"87,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +45,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +46,Ultra Modern 3 Bedroom Apartment + Bq,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"875,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +47,Almost Completed Luxury 3 Bedroom Apartment With A Maid's Room,"Water Corporation Drive, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +48,Spacious & Serviced 3 Bedroom Apartment With A Bq,"Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +49,Almost Completed Luxury 3 Bedroom Apartment With A Maid's Room,"Water Corporation Drive, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +50,"Luxury 3 Bedroom Apartment With Maid's Room, Laundry Room, Ac & Fitted Kitchen","Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde, Oniru, Victoria Island Extension Victoria Island Lagos",₦,"87,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +51,Functional 27 Rooms Hotel,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +52,Luxury 5 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +53,Ultra Modern 2 Bedroom Apartment +bq,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"710,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +54,Serviced 4 Bedroom Terrace Duplex With Bq.,Mabogunje Street Oniru Victoria Island Lagos,₦,"137,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +55,A Fenced And Gated Land Measuring 2100sqm,Louis Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +56,Fully Serviced 3bedrooms + Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +57,Luxury 4 Bedroom With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +58,5bedrooms Detached Duplex + 1 Room Bq For Sale,Tiamiyu Salvage Ahmadu Bello Way Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Victoria Island +59,Luxury One Bedroom Hotel Styled Apartment Along Ahmadu Bello Way Victoria Island,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"80,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +60,Newly Built 2 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +61,Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +62,6074sqm Water Front Sand Filled Drylland,"Lekki Epe Expressway, Victoria Island, By Oriental Hotel, Lagos Victoria Island Extension Victoria Island Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +63,Newly Built 3 Bedroom Apartment,Adeola Odeku Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +64,Spacious Luxury 3 Bedroom Apartment With Service Quarter,Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +65,4 Bedroom Fully Detached,Oniru Victoria Island Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +66,Luxury 5 Bedroom Masonite Penthouse,Victoria Island Oniru Victoria Island Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +67,Functional 27 Rooms Hotel With Swimming Pool,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",1,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +68,Luxury Waterview Fully Furnished 2 Bedroom Apartment In Blue Water Apartments Lagos,Blue Water Apartments Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,2 beds,2 baths,3 Toilets,Oniru +69,Water Front Land With C Of O,Experience Pure Tranquility And Absolute Peace Of Mind With True Nature Oniru Victoria Island Lagos,₦,"3,000,000,000",1,0,0, beds, baths, Toilets,Oniru +70,"Serviced 3 Bedroom Apartment With Swimming Pool, Gym",Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +71,Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Bq,Oniru Victoria Island Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +72,"Luxury Serviced 5 Bedroom Semi Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +73,Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +74,Hotel Space,Victoria Island Lagos,₦,"1,300,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +75,Land,"Loius Solomon Close, Victoria Island Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +76,2 Bedroom Serviced Apartment,Victoria Island Lagos,₦,"120,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +77,Luxury 3bedroom Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +78,Open Plan Office Space For Sale,"Along Walter Carrington, Ozumba Mbadiwe Victoria Island Extension Victoria Island Lagos",$,"30,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +79,Mixed Used Development On 7 Floors,Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +80,30 Room Hotel For Sale In Victoria Island,Victoria Island Lagos,₦,"4,500,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +81,2 Bedroom Luxury Apartments,Prince Adesegun Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,3 Toilets,Oniru +82,3 Bedroom Apartments Plus 1room Bq For Sale,Mabogunje Road Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +83,800 Sqm Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +84,3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +85,Tastefully Finished 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +86,10 Units Of 3 Bedrooms Flat,Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +87,5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +88,Well Finished 7th Floor Open Plan Space 240 Sqm,By Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"220,000,000",0,0,1, beds, baths, Toilets,Other Victoria Island +89,Smart 6 Bedroom Detached House,Vi Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +90,4100 Joint Venture Landbridge Avenue Oniru Victoria Island*,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Oniru +91,2 Bedroom Furnished Apartment,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"750,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +92,4bedroom Terraced Duplex With 1room,Off Palace Way Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +93,Lovely 6 Bedroom Detached Duplex With 2 Rooms Bq Sitting On 750sqm,Off Bishop Oluwole Street Victoria Island Lagos,₦,"360,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +94,Luxury 3 Bedroom Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"85,000,000",1,1,0,3 beds,2 baths,3 Toilets,Oniru +95,Contemporary 4 Bedroom Detached Duplex,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +96,3 Bedroom Flat With 247 Electricity,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +97,Office Tower,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"60,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +98,Luxurious Newly Built 3 Bedroom Flat,Eko Atlantic City Victoria Island Lagos Eko Atlantic Victoria Island Lagos,₦,"432,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +99,Land,Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +100,4 Bedrooms Terrace + 1 Room Bq,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +101,Brand New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +102,3 Bedroom Maisonette,Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +103,Standard 5 Star Hotel,Kofo Abayomi Victoria Island Lagos,$,"160,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +104,Ready To Build Corner Piece Of 1400sqm Of Land With Governor Consent,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +105,3 Bedroom Luxury Apartments,Prince Adesegun Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +106,Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +107,An Office Building In The Heart Of Victoria Isl,Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +108,Land,Off Water Corporation Road Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +109,Newly Built 2bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"290,000,000/day",1,1,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +110,4 Bedroom Maisonette + Bq,Off Idejo Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +111,3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +112,Land,"Louis Solomon, Victoria Island Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +113,Spacious 4 Bedroom Fully Detached Duplex With Bq Jnf,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,6 Toilets,Oniru +114,Two Storey Building,Murin Okunola Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,2 beds,2 baths,2 Toilets,Victoria Island Extension +115,"Land Measuring 11639sqm Located At Eko Atlantic, V.i",Eko Atlantic Victoria Island Lagos,₦,"11,639,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +116,Two Storey Commercial Building,Off Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +117,"Newly Built 3 Bedroom Terrace Duplex, Communal Swimming Pool And A Room Bq",Vi Victoria Island Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +118,5 Bedroom Detached Duplex With Swimming Pool,"Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +119,Serviced 3 Bedroom Apartment With 1 Room Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +120,Well Developed & Newly Built 4bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +121,2200sq Bareland Fenced With Gate,Bishop Kale Close Off Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +122,4 Bedroom Terrace House With A Room Bq,"Off Adeola Odeku Street, Victoria Island, Lagos Adeola Odeku Victoria Island Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +123,Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool Okny,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets,Oniru +124,"1,287sqm Land (joint Ventures)","Muri Okunola Street, Former Cool Fm Building Victoria Island Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +125,Commerical Property On A 599sqm Of Land,Ajose Adeogun Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +126,3bedroom Luxury Flat,Victoria Island Lagos,₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +127,4 Bedroom Luxury Terrace,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +128,Newly Built Luxury 3 Bedroom Apartment With Swimming Pool,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +129,Well Titled 800sqm Of Land In A Fantastic Location,"Off Palace Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +130,Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +131,Newly Built 4 Bedrooms Semi Detached,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets,Oniru +132,A Modern Purpose Built 7 Floors Hospital,Oniru Oniru Victoria Island Lagos,₦,"10,000,000,000",1,1,1, beds, baths, Toilets,Oniru +133,"Tastefully Finished, Serviced 3 Bedroom Flat",Off Ajose Adeogun Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +134,Fully Furnished 3 Bedroom High Rise Apartment,"Eko Pearl, Eko Atlantic Victoria Island Lagos",$,"960,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +135,2 Bedroom Flat,1004 Victoria Island Lagos,₦,"57,000,000",0,0,1,2 beds,0 baths,0 Toilets,Other Victoria Island +136,Newly Built 4 Bedroom Maisionette,Oniru Victoria Island Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +137,Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool And A Room Bq,Vi Victoria Island Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +138,"11,500 Sq Mtrs Land With Approved Building Plan",Oniru Estate Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +139,Corner Piece Land With Structures On It Measuring 1.230sqms,Bishop Bayodecole/festival Street Off Ademola Adetokunbo Victoria Island Lagos Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +140,3700 Sqm Land For Joint Venture,Adeola Odeku Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +141,3 Bedroom Serviced Flat With A Room Bq,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +142,1 Bedroom Flat,"Off Palace Road, Oniru Oniru Victoria Island Lagos",₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Oniru +143,Hospital Building With 7 Floors Available, Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +144,Well Maintained 4bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"70,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Oniru +145,2 Bedroom Luxury Apartment,Bonny Camp Victoria Island Lagos,₦,"180,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +146,2000 6000sqm Land,Eko Atlantic Estate Eko Atlantic Victoria Island Lagos,$,"2,500",0,0,0, beds, baths, Toilets,Other Victoria Island +147,Complex Of 4500sqm Lettable Spaces,Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +148,Serviced Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +149,Property Of 1260.42sqm,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +150,4 Bedroom Bungalow,Off Kofi Abayomi Kofo Abayomi Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +151,Office Tower,Eko Atlantic City Victoria Island Lagos,$,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +152,Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +153,4600sqm* *fenced And Gated With *approval* *for* *commercial* *purposes*,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +154,Land,Victoria Island Lagos,₦,"180,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +155,Land,Oniru Victoria Island Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +156,Office Space,Bishop Oluwole Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +157,4 Bedroom Semi Detach House +1room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets,Oniru +158,Executive 30 Rooms Hotel,Opposite Eko Hotel Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",1,0,1,0 beds,10 baths,10 Toilets,Waziri Adeola Odeku +159,Fantastic 3 Bedroom Flat,1004 Victoria Island Lagos,₦,"65,000,000",0,0,1,3 beds,0 baths,0 Toilets,Other Victoria Island +160,2700sq Demolishable Structure,Idowu Martins Opp. Mega Plaza Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +161,Land,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,150",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +162,4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +163,"Luxury 3 Bedroom Flats With Bq,swimming Pool And Elevator",Oniru Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +164,"Land Measuring 6,700m² Land",Oniru Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +165,Land,Tamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +166,5 Bedroom Fully Detached,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +167,4 Bedrooms Terrace + 1 Room Bq,Off Oba's Palace Road Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +168,4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,0,0,4 beds,0 baths,0 Toilets,Oniru +169,2000sqm Dry Land With 2 Buildings,Near Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +170,Modern 7 Floor Hospital Building,Oniru Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +171,Hotel In A Serene Neighborhood,Ajose Adeokun Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +172,Land Measuring 1350m² Residential Land Plus 2 Units Of Re Developable Detached Houses,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +173,Available Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +174,Newly Built 5 Bedroom Fully Detached Duplex,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +175,4 Bedroom Serviced Terrace Duplex With A Room Bq,Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +176,4 Bedroom Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +177,5 Bedroom Detached Duplex Available,Festival Road Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +178,3 Bedroom Ultra Modern Serviced Apartment,Victoria Island Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +179,Furnished 2 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"170,000,000",1,0,1,2 beds,2 baths,2 Toilets,Oniru +180,Office Space,Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +181,Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +182,4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +183,3 Bedroom Massionette With Bq,Eighteen65 Residences Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +184,"Well Crafted 1,2,3 Bedroom Apartment",Few Minutes From Oriental Hotels Akin Adesola Victoria Island Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Victoria Island +185,Executive 27 Rooms Hotel (3 Star),"Off Ajose Adeogun Str, Victoria Island, Lagos State. Ligali Ayorinde Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,10 baths,10 Toilets,Other Victoria Island +186,Spacious 4 Bedroom,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +187,Stylish 3 Bedrooms Apartment,Victoria Island (v.i) Eko Atlantic Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +188,Newly Built 4 Bedrooms Terrace + Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +189,5 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,5 beds, baths, Toilets,Oniru +190,1 Bedroom Flat (mini Flat),Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets,Oniru +191,Brand New 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +192,13 Unit Of 2 Bedroom Flat,Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +193,5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +194,Tastefully Finished 4 Bedroom Fully Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +195,4 Bedroom Chalet,Tiamiyu Savage Victoria Island Lagos,$,"460,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +196,Newly Built 4 Bedroom Duplex + Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +197,Luxury Built State Of Art 5bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"260,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +198,Well Maintained 4 Bedroom Penthouse,"Oniru Estate,close To The Palace Road With Swimming Pool Oniru Victoria Island Lagos",₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +199,1100sqm Land,Victoria Island Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +200,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +201,Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +202,6538.581sqm Bare Land,Along Ligali Ayorinde Street Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +203,The Perfect Investment Property For Shortlets And Rentals,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +204,Luxury 3 Bedroom Blocks Of Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +205,Luxury 6 Until Of 3 Bedroom Flat,Oniru Estates Oniru Victoria Island Lagos,₦,"990,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +206,Land,"Louis Solomon Close, By Silverbird Cinemas, Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +207,Land,Close To The Palms Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +208,Land,Fantastic Neighbourhood Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +209,Furnished 4 Bedroom Maisonette + Bq,"Off Idejo Street, Adeola Odeku Victoria Island Lagos",₦,"250,000,000",1,0,1,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +210,4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +211,Exquisite 3 Bedroom Maisonnette With Bq,"Eighteen 65 Residences, Fatai Durosinmi Street Vi Victoria Island Extension Victoria Island Lagos",₦,"180,000,000",1,0,0,3 beds,0 baths,0 Toilets,Victoria Island Extension +212,Fully Serviced 2 Bedroom Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +213,5bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +214,4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +215,12 Units Of 3 Bedroom Flats With Bq (price Per Unit),"Eighteen65 Residences, Victoria Island Lagos",₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +216,New 3 Bedroom Apartment With Great Facilities (14 Units),Off Adeola Odeku Way Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +217,2500sqm Virgin Land With Great Infrastructure,Eko Atlantic Victoria Island Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +218,3 Bedroom Terrace With Swimming Pool And Gym,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +219,Spacious 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +220,4 Bedroom Apartment,1004 Victoria Island Lagos,₦,"90,000,000",1,0,0,4 beds,3 baths,4 Toilets,Other Victoria Island +221,Luxury 4 Bedroom Semi Detached Duplex On Two Floors,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +222,3 Bedroom Luxury Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +223,Off Plan 3 Bedroom Apartments With Great Facilities (84 Units),Ahmadu Bello Way Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +224,Purpose Built Office Block On 2 Floors,Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +225,3bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +226,"Relatively New & Tastefully Finished Luxury, Furnished & Serviced 2bedroom Flat For Sale!!!",Eko Atlantic Victoria Island Lagos,₦,"293,379,100",1,0,1,2 beds,2 baths,2 Toilets,Other Victoria Island +227,Beautiful Serviced 5 Bedroom Semi Detached Duplex, Oniru Victoria Island Lagos,₦,"250,000,000",1,0,1,5 beds,5 baths,6 Toilets,Oniru +228,Building Comprising Of Different (block Of Flats) For Sale!!!,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Oniru +229,Palatial 3bedroom Ensuite Flats,Eko Atlantic Victoria Island Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +230,Fully Finished And Extremely Luxury 3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +231,A Massive Dry Land Measuring 2400sqm Landsize With A Solid Building For Sale!!!,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +232,Three Bedroom Apartment,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +233,Newly Built 4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +234,New 3 Bedroom Apartment With Great Facilities (16 Units),Off Ahmadu Bello Way Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +235,Furnished 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +236,Luxury 4 Bedroom Apartment At Eden Heights,Elsie Femi Pearse Street Victoria Island Lagos,₦,"350,000,000",1,0,0,4 beds, baths, Toilets,Other Victoria Island +237,Beach Front Land,Panche Villa Estate Victoria Island Extension Victoria Island Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +238,Four Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"285,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +239,Newly Built 4bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +240,Bare Land Measuring Approximately 2100sqm,Harbour Light District Eko Atlantic Victoria Island Lagos,$,"1,500/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +241,5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +242,A Massively Built& Tastefully Finished Luxury 27rooms Hotel On 1174.045sqm Landsize For Sale!!!!!,Victoria Island Lagos,₦,"1,300,000,000",1,0,1, beds, baths, Toilets,Other Victoria Island +243,Spacious 4 Bedroom Ensuite Flat,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +244,"*eighteen65 Residences, Victoria Island*","*eighteen65 Residences, Victoria Island* Victoria Island Lagos",₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +245,3 Bedroom Apartment,Victoria Island Lagos,₦,"145,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +246,Furnished 3 Bedroom Apartment At Eko Pearl Towers,Eko Pearl Tower Eko Atlantic Victoria Island Lagos,$,"1,650,000",0,0,1,3 beds, baths, Toilets,Other Victoria Island +247,Brand New 5 Bedroom Detached Duplex With Bq,Victoria Island Oniru Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +248,Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +249,3bedroom Maisonette With Bq,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +250,5 Bedroom Ensuite Terrace Houses,Victoria Island Lagos,₦,"240,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +251,4bedroom Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +252,Amazing Newly Built 4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +253,Luxury4bedroom Penthhouse In Oniru Victoria Island.,Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +254,Leasehold Interest For Space And Hotel In A Prestigious Building For Sale.,Elsie Femi Pearse Adeola Odeku Victoria Island Lagos,$,"17,000,000",1,0,1, beds, baths, Toilets,Waziri Adeola Odeku +255,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +256,3 Bedroom Apartment With Bq,Eko Atlantic City Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets,Oniru +257,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets,Oniru +258,2 Bedroom Apartment,"Fully Serviced Apartment In Serene And Secured Environment, Neighborhood To Oniru Beach, Oriental Hotel,eko Atlantic City Oniru Victoria Island Lagos",₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +259,Land,Near Mega Plaza Idowu Taylor Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +260,Top Notch Luxury 3 Bedroom Block Of Flats With Bq,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"950,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +261,Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +262,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",1,0,0,4 beds,0 baths,0 Toilets,Oniru +263,Beautiful 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +264,Beautiful 4 Bedroom Maisonette,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +265,Serviced & Fully Furnished 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +266,3 Bedroom Maisonette,Victoria Island Lagos,₦,"225,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +267,"Well Built Block Of 6 Units Of 3 Bedroom Apartments, A Room Bq Each On A Land Measuring 1500sqm",Off Ademola Adetokunbo Victoria Island Lagos,₦,"820,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +268,4 Bedroom Terrace Super Luxury Fully Serviced Home, Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +269,Fully Serviced 3 Bedroom Luxury Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +270,1000 Sq.metres Of Land, Eko Atlantic Victoria Island Lagos,₦,"460,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +271,Beautiful Contemporary 4 Bedroom Masionette, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +272,Direct Cash Ready Buyers New 3 Bedroom Apartment,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +273,Old Fully Detached Duplex Sitting On 820sqm Of Land,"Idejo Street, Victoria Island Lagos",₦,"820,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +274,"Luxury 3 Bedroom Apartments, Fully Furnished",Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"110,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oniru +275,Direct Cash Ready Clients New 4 Bedroom Semi Detached Terrace House + Bq,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +276,Superb Luxury Terrace,Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,5 beds,7 baths,7 Toilets,Oniru +277,Massive Four (4) Bedroom Pent Floor Apartment,"Oniru Estate, Oniru Victoria Island Lagos",₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +278,Massively Built Brand New 4 Bedroom Massionette With Swimming Pool,Oniru Estate Oniru Victoria Island Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +279,Newly Built 3bedrooms Apartment + 1 Room Bq,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +280,Newly Built 4 Bedroom Duplex Town House,Oniru Victoria Island Lagos,₦,"144,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +281,Top Notched Finishing Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +282,3 Bedroom Apartment,Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +283,6 Units Of 3 Bed Apartments & 2 Units Of 4 Bed Maisonette,Oniru Oniru Victoria Island Lagos,₦,"1,000,000,000",1,0,0,10 beds,10 baths,10 Toilets,Oniru +284,"Land Measuring 1,400m²","Ologun Agbaje Street, Victoria Island Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +285,"Land With Units Of Detached Duplexes Measuring Approximately 2,400sqm With Approval For 15 Floors Office Building","Tiamiyu Savage Street, In Close Proximity To Eko Atlantic City, Victoria Island Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +286,Fully Furnished 3 Bedroom Flat,Victoria Island Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +287,Very Spacious Fully Serviced Apartments,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +288,2 Units Of Office Block,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +289,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"8,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +290,Newly Built 3 Units Of 3 Bedroom Flats,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +291,Newly Built 3 Bedroom Flats,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,3 Toilets,Oniru +292,Luxury Serviced 4bedrooms Detached House + 1 Room Bq,Oba’s Palace Road Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +293,"Land Measuring 1,676.96m²","Off Adeola Odeku Street, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +294,5 Bedrooms Detached House,Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +295,"Exquisitely Finished, Fully Serviced 4 Bedroom Terrace Duplex On 3 Floors With Roof Top Patio",Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +296,"Land With Dilapidated Structures Measuring 1,250m²","Ahmed Onibudo Street, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +297,3 & 4 Bedrooms Apartment (off Plan),Ahmadu Bello Way Victoria Island Lagos,$,"950,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +298,Practical & Cheap Self Serviced 4 Bedroom Terrace House + Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +299,A Top Notch Super Luxury 3 Bedroom Apartment With Swimming Pool,V.i Adeola Hopewell Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +300,Italian Style Premium Finished 4 Bedroom Maisonette (all En Suite)+1 Room Bq,Oniru Victoria Island Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +301,Newly Built 4bedrooms Terrace + Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +302,Furnished 5bedroom Semi Detached Duplex All Rooms En Suite With Bq With Swimming Pool And Gym,Within A Mini Estate Oniru Victoria Island Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets,Oniru +303,Brand New 4 Bedroom Terrace With A Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +304,Newly Built 4bedrooms Terrace + 1 Room Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Waziri Adeola Odeku +305,Ultra Luxury 2 Bedroom Apartment +bq+elevator+pool+gym,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"750,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +306,5 Bedroom Water View Terrace,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets,Oniru +307,Serviced 1 Bedroom Apartment With Excellent Facilities,Oniru Victoria Island Lagos,₦,"50,000,000",1,0,0,1 beds,1 baths,2 Toilets,Oniru +308,Land,Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"380,000,000",1,0,0,0 beds,0 baths,0 Toilets,Oniru +309,4 Bedroom Semi Detached Duplex,"Victoria Island, Lagos, Nigeria. Victoria Island Extension Victoria Island Lagos",₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +310,Absolutely Stunning Terrace Duplex In Oniru,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Oniru +311,Top Notched Super Luxury 3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +312,3 Bedroom Service Apartment With A Room Bq;,Victoria Island Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +313,Massive Brand New Executive Super 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Vi Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +314,4bedrooms Terrace Duplex + Bq For Sale,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +315,Newly Built 4 Bedroom Pent Housewith Excellent Facilities,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +316,Extraordinary Spacious Brand New 3 Bedroom Block Of Flats,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +317,Luxury 3 Bedroom Apartment,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +318,Luxury 5bedrooms Terrace + 1 Room Bq,Z Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +319,5 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +320,Luxury 2bedrooms & 3bedrooms Apartment (off Plan),Off Ajose Adeogun Behind Zenith Bank Hq Ademola Adetokunbo Victoria Island Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +321,Luxury 2 Bedroom Apartment, Eko Atlantic Victoria Island Lagos,$,"710,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +322,Luxury And Fully Serviced 3 Bedroom Flat,Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +323,"Tastefully Finished, Serviced 3 Bedroom Flat + 1 Room Bq",Ligali Ayorinde Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +324,Top Quality 4 Bedroom Luxury Semi Detached Duplex,Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +325,Luxury 2 Bedroom Blocks Of Flat,Victoria Island Akin Adesola Victoria Island Lagos,₦,"155,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +326,Self Serviced 3 Bedroom Apartment In A Gated Estate,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +327,Beautiful Luxury Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +328,Massively Built Brand New 4 Bedroom Maissionette House With Swimming Pool For Sale,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +329,Brand New Elegant Super Luxury Fully Serviced 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"157,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +330,4 Units Of Serviced 4 Bedroom Terraced House,Oniru Victoria Island Lagos,₦,"900,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +331,"Functional Hotel With 31rooms, Restaurant, Swimming Pool And Gyms On A Land Measuring 4000sqm",Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds, baths, Toilets,Oniru +332,Spacious Well Built Terrace Duplex In An Estate,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Oniru +333,Luxury 3 Bedroom Maisonette,Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +334,Plot Measuring 600sqm,"Aboyade Cole Street, Victoria Island Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +335,Luxury 4 Bedroom Terrace Duplex With Fitted Kitchen,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +336,Beautiful 3 Bedroom Apartment With Swimming Pool,In A Serene Neighborhood Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +337,Newly Built 3 Bedroom Flat,Off Palace Way Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +338,Spacious Luxury 4 Bedroom Terrace House With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +339,Fully Serviced 3 Bedroom Apartment With A Room Bq;,Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +340,Newly Built 2bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +341,Exquisitely Finished & Fully Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +342,5 Bedroom Terraced House,Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +343,Commercial Property,Bishop Oluwole Street Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +344,New 3 Bedroom Apartment,Off Ajose Adeogun Street Ademola Adetokunbo Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +345,Land,Kofo Abayomi Victoria Island Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +346,Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +347,Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +348,27 Rooms Functional Hotel,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +349,Luxury 3 Bedroom Penthouse With Excellent Marine View,"Black Pearl Tower, Eko Atlantic Victoria Island Lagos",₦,"900,000,000",1,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +350,3bedroom Flat With Bq,V.i Victoria Island Extension Victoria Island Lagos,₦,"155,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +351,New Serviced 2 Bedroom Apartment,Gated Estate Oniru Victoria Island Lagos,₦,"62,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +352,Service 2 Bedroom Flat,Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +353,4 Bedroom Semi Detached Duplex,. Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +354,4 Bedroom Detached House,Dideolu Estate Oniru Victoria Island Lagos,₦,"180,000,000",1,0,1,4 beds,4 baths,5 Toilets,Oniru +355,"Studio, 1, 2 & 3 Bedroom Flat",. Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000/year",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +356,Fully Serviced 3 Bedroom Apartment With Good Roi,S Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +357,Prime Land,Eko Atlantic Victoria Island Lagos,$,"3,615,150",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +358,Luxury Executive 4bedroom Terrace Duplex In A Good Location,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,0,1,4 beds,6 baths,6 Toilets,Oniru +359,Newly Built 3 Bedroom Apartment,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +360,Exquisite 3 Bedroom Ensuite Flat + 1 Room Bq,"Victoria Island, Lagos. Victoria Island Lagos",₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +361,Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +362,Newly Built 5br Duplex,Near 4 Points Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +363,An Exquisitely Finished Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +364,4 Bedroom Fully Serviced Duplex,Houston Road. Oniru Victoria Island Lagos,₦,"175,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Oniru +365,Spacious 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +366,4 Bedroom Semi Detached,. Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +367,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +368,Luxury 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",1,1,1,5 beds,5 baths,6 Toilets,Oniru +369,"1, 3 & 4 Bedroom Luxury Apartments",. Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +370,Land,"Akin Olugbade Street, Off Adeola Odeku Akin Olugbade Victoria Island Lagos",₦,"1,433,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +371,Luxurious 3 Bedroom Apartment,Victoria Island Lagos,$,"1,000,000",1,0,0,3 beds,4 baths,3 Toilets,Other Victoria Island +372,New 5 Bedroom Fully Detached House + Bq,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +373,Luxury 4 Bedroom Terrace Duplex With Bq, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +374,4 Bedroom Luxury Terraces,Palace Road Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +375,3 Bedroom Apartment With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +376,5 Bedrooms Fully Detached Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets,Oniru +377,2 Bedroom Flat, Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +378,Commercial Detached Office Space,Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +379,A Well Built Brand New 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +380,Luxury 3bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +381,Newly Built 3 Bedroom Maisonette,Younis Bashorun Victoria Island Extension Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +382,Finished 3 Bedrooms Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +383,27 Rooms Functional Hotel,Off Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",1,0,1,10 beds, baths, Toilets,Other Victoria Island +384,Luxury 4 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"235,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +385,5 Bedroom Penthouse,Palace Road Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +386,Typical 2 Bedroom With Quarters At The Tower.,Victoria Island Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +387,New 4bedroom Terrace Duplex,Near 4 Points Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +388,3 Bedroom Flat With Bq,Ozumba Bonny Camp Victoria Island Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +389,4 Bedroom With 2 Bq,Ogunyemi Oniru Victoria Island Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +390,3bedroom Maisonette,Cluster C6 1004 Victoria Island 1004 Victoria Island Lagos,₦,"67,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +391,Finished 3 Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +392,3 Bedroom Penthouse, Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +393,Modern Day 3 Bedroom Apartment, Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +394,Newly Built 2bedroom And 3bedroom Flat,Victoria Island Lagos,₦,"145,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Victoria Island +395,A Luxury 5 Bedroom Fully Detached Duplex With Bq,Nice Environment Oniru Victoria Island Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +396,Typical 2 Bedroom With Quarters At The Tower,Victoria Island Victoria Island Lagos,₦,"110,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +397,22 Units Of 3bedroom Flats With Bq,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +398,2 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +399,Land,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +400,3 Bedroom Apartment,1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +401,Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +402,Apartment,Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"480,000,000",1,1,1,0 beds,0 baths,0 Toilets,Other Victoria Island +403,3 Bedroom Luxury Flat,Eden Heights Adeola Odeku Victoria Island Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets,Waziri Adeola Odeku +404,Newly Built 4 Bedroom Terrace,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +405,5 Bedrooms Semi Detached Duplex +bq,"Abisogun Street, Off Palace Road Victoria Island Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +406,Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +407,"Tm High Gardens: 2, 3 & 4 Bedroom Apartment At Eko Atlantic City",. Eko Atlantic Victoria Island Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +408,Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +409,12 Bedroom Fully Detached House + Penthouse & 3 Rooms Bq,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +410,3 Bedroom Terraced Duplex With Bq,"Waziri, Ibrahim Crescent Victoria Island Lagos",₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +411,"1,342m2 With A Detached House","On Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +412,Luxury 3bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +413,3 Bedroom Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +414,4 Bedroom Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,200,000",1,1,1,4 beds,4 baths,5 Toilets,Other Victoria Island +415,5 Bedroom Fully Detached Duplex,Tiamiyu Savage Tiamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +416,2 & 3 Bedroom Luxury Flat,. Eko Atlantic Victoria Island Lagos,₦,"360,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +417,A Land Measuring 1670sqm,Louis Solomon Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +418,2 Bedroom Pent House, Victoria Island Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +419,Massive Office Complex With 5 Open Floor Plans,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +420,"Strategic 3,000sqm Land At Akin Olugbade Street, Off Adeola Odeku Street* *victoria Island, Lagos*",Akin Olugbade.... Adeola Odeku Victoria Island Lagos,₦,"600,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +421,Land,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +422,Land,Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"1,500,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +423,Serviced 4 Bedrooms Terrace Duplex With Pool In Oniru Estate Victoria Island Lagos,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +424,Newly Built 4 Bedrooms Terrace Duplex With Pool,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +425,12 Bedroom Detached House,Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +426,3 Bedroom Apartment + Bq,.glotch Tower Adeola Hopewell Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +427,5 Bedroom Detached House,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +428,Land,"Oyin Jolayemi Street, Off Eko Hotels And Suites, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +429,1000 Sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +430,1200 Sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oniru +431,2 Units Of 4 Bedroom Semi Detached,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Oniru +432,4441sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +433,Fully Furnished 2 Bedroom Flat,Victoria Island Lagos,$,"650,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +434,Newly Build Shop Measuring 25sqm,Oniru Market Road Oniru Victoria Island Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets,Oniru +435,10 Rooms Commercial House,Victoria Island Lagos,₦,"650,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +436,27 Rooms Hotel Building,Off Ligali Ayorinde St Victoria Island Lagos Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000/day",1,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +437,4 Bedroom Town House,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +438,A Well Finished 4 Bedroom Semi Detached House With A Room Bq,"Ocean View Estate, Oniru Oniru Victoria Island Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +439,2bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +440,"3,000 Sqm Of Bareland At Eko Atlantic Estate","Residential District, Eko Atlantic Eko Atlantic Victoria Island Lagos",₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +441,4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +442,Serviced 4bedroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +443,Commercial Twin Duplex (10 Rooms),Victoria Island Lagos,₦,"500,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +444,Lovely 3 Bedroom Flat With Maid's Quarters,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +445,2 Units Of Of 5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"144,000,000",0,0,0,5 beds,4 baths,4 Toilets,Oniru +446,30 Rooms Hotel Building,Adetokunbo Ademola Opposite Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000/day",1,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +447,Luxury Functional 27 Rooms Hotel,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",1,0,1,1 beds,1 baths,1 Toilets,Other Victoria Island +448,Land,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +449,"1,277sqm Land With Demolishable Structure",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +450,Serviced 4 Bedroom Maisonette,Oniru Oniru Victoria Island Lagos,₦,"240,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +451,"1,672sqm Fenced & Gated Vacant Land",Solomon Louis Close Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +452,3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +453,Land,Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +454,Land,Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +455,3 Bedroom Maisonette,Victoria Island Lagos,₦,"190,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +456,5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +457,5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +458,3 Bedroom Maisonette,Victoria Island Lagos,₦,"190,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +459,30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +460,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +461,4 Bedroom Apartment,Victoria Island Lagos,$,"1,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +462,Land,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +463,30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +464,Land,Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oniru +465,5 Bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets,Oniru +466,"Newly Built, Units Of 4 Bedroom En Suite Detached Houses On 2 Floors Within A Serviced Premise",Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +467,"Newly Built, 3 Bedroom Luxury Terrace Houses With 1bq",Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +468,Shop Space,Oniru Oniru Victoria Island Lagos,₦,"20,000,000",1,0,0,0 beds,0 baths,0 Toilets,Oniru +469,Water Front Fenced Land With Building Approval For 10 Floors For Outright Sale.: [redacted],Victoria Island Oniru Victoria Island Lagos,₦,"13,000,000,000/day",1,0,0, beds, baths, Toilets,Oniru +470,Luxury 6 Bedroom Detached Duplex With Swimming Pool ( Smart House),Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Victoria Island +471,6units 3bedroom Flat And 2units Of 4bedroom Maisonette For Sale,Victoria Island Extension Victoria Island Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +472,2 Wings Of 5bedroom Duplex And Bq Sitting On 1227.676sqm For Sale In Vi,Victoria Island Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +473,Functional 27 Hotel Rooms*,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +474,"Newly Refurbished Luxury 3 Bedroom Serviced Upper Floor Maisonnette With Air Conditioning , Fully Fitted Kitchen",1004 Estate Victoria Island. 1004 Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +475,3 Bedroom Apartment *,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +476,Functioning Hotel For Sale,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +477,2 Bedroom Penthouse With Bq For Sale At Eighteen65 Estate Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,2 beds,3 baths,3 Toilets,Oniru +478,3 Bedroom Maisonette With A Bq For Sale At Eighteen65 Estate Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +479,3 Bedroom Flat With A Bq For Sale At Eighteen65 Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +480,Land,Ajose Adeogun Street Victoria Island Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +481,Luxury 4 Bedroom Serviced Apartment,"Architech Place, Idowu Taylor Street, Idowu Taylor Victoria Island Lagos",₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +482,7358.102sqm Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +483,Land,Off Palace Road Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +484,Well Built 3bedroom Maisonette,Cluster C6 1004 Victoria Island Lagos,₦,"67,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +485,Land,Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +486,8 Units Of 3bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +487,New Built Blocks Of 3 Bedrooms Flats,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,0 baths,0 Toilets,Oniru +488,22 Units Of 3 Bedroom Flats With Bq,Victoria Island Lagos,₦,"3,500,000,000",1,1,0,3 beds,4 baths,0 Toilets,Other Victoria Island +489,Newly Built 24 Units Of 3 Bedroom Flat,Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,4 baths,0 Toilets,Other Victoria Island +490,New Building With Block Of Flats,Victoria Island Lagos,₦,"100,000,000",1,1,0,2 beds,3 baths,0 Toilets,Other Victoria Island +491,2 Storey Commercial Building Of Open Plan Detached Office Spaces,Victoria Island Lagos State. Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +492,4 Storey Building,Idumota Lagos Island Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +493,Building Is 8 Floors + Penthouse,Adeola Odeku Victoria Island Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Waziri Adeola Odeku +494,Modern Purpose Built 7 Floors Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Oniru +495,Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +496,6 Bedroom Luxury Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets,Other Victoria Island +497,Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +498,Newly Built 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +499,1 Bedroom Mini Flat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +500,4 Bedroom Terraced Duplex With Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +501,An Exquisite 3 Bedroom Apartment On The Pent House,"Eko Pearl Tower, Eko Atlantic Victoria Island Lagos",₦,"900,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Victoria Island +502,Brand New Luxury 3 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate Victoria Island. 1004 Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +503,5 Bedroom Detached House With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +504,Brand New 5bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +505,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +506,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +507,"A Land Measuring 1,315sqm",Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +508,Luxury 4 Bedroom Spacious Detached House With 2 Bq,Oniru Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +509,Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +510,Luxury Finished 2 Bedroom Flat,Ajose Adeogun Victoria Island Lagos,₦,"125,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +511,"Executive 5bedroom Semi Detached Duplex With A Room Bq, At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"250,000,000/day",1,1,1,5 beds,6 baths,6 Toilets,Oniru +512,Fully Detached Property On 1300sqm Of Land In A Good Location,Off Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +513,Newly Built Luxury 2 Bedroom Fully Serviced Apartment + Bq,Muri Okunola Ademola Adetokunbo Victoria Island Lagos,₦,"85,000,000",1,1,0,2 beds,3 baths,3 Toilets,Other Victoria Island +514,2116 Square Meters Land, Ahmadu Bello Way Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +515,1000sqm Of Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +516,Hot 7358 Sqm Commercial Land In Oniru,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +517,"Executive And Luxurious 3 Bedroom Apartment With Bq,",Ligali Ayorinde Victoria Island Lagos,₦,"98,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +518,Newly Built Luxury 3 Bedroom Fully Serviced Terrace Duplexes With Room Bq,"Waziri Ibrahim Crescent, Victoria Island Extension Victoria Island Lagos",₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +519,Newly Built 3bedroom Apartment,Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +520,Brand New Luxury 4 Bedroom Fully Furnished & Serviced Pent Floor Apartment,"Off Palace Road, Oniru Lagos State. Oniru Victoria Island Lagos",₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +521,Landmark Waterview Apartments,Water Corporation Way Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,$,"99,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +522,2 Numbers Of Detached Houses,Victoria Island Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +523,1300 Sqms Land For Sale At Victoria Highland,Oyin Jolayemi Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +524,Executive 4 Bedroom Duplex With A Room Bq, Oniru Victoria Island Lagos,₦,"150,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Oniru +525,4 Bedroom Semi Detached House +1 Room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",1,1,1,4 beds,0 baths,0 Toilets,Oniru +526,Hottest Offer Oniru Water Front Plots; Sand Filled & Fenced. Building Approval For 10 Floors,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +527,Newly Refurbished Luxury 4 Bedroom Fully Finished Terrace Duplex With 2 Bedroom Flat As Bq,Ayo Adebanjo Estate Behind Prince Ebeano Shopping Mall Oniru Victoria Island Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +528,2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +529,A Massive Commercial Bare Land Property Of Size 3100.76sqm,Chief Yesufu Abiodun Road Directly Facing 4point Hotel By Sheraton Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +530,Newly Built 4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +531,15 Floors,Ademola Adetokunbo Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +532,Serviced 2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +533,Measuring 1300sqmts Land,Oniru Victoria Island Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +534,"A Bare Land Measuring 1,700sqm",Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +535,Newly Built Luxury 2 Bedroom Fully Finished Apartment,"Oniru Estate, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"70,000,000/year",1,1,0,2 beds,3 baths,3 Toilets,Oniru +536,Well Situated 1400sqm Of Land,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +537,Exquisite And Luxurious 3 Bedroom Apartment With Maid's Room,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +538,A Fully Detached Duplex With Bq Seating On 1000sqmtrs,"Ologun Agbaje Street, Off Adeola Odekun, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +539,Well Finished Semi Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,0 Toilets,Oniru +540,Newly Built Luxury 4 Bedroom Serviced Apartment,"Seagle Towers, Odudu Eleyiwo Street Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos",₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +541,A Newly Built 4 Bedroom Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +542,Well Maintained Commercial Property,Off Adetokunbo Ademola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +543,Well Built 3 Bedroom Flat With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +544,Land,Along Water Cooperation Drive Oniru Victoria Island Lagos,₦,"260,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +545,Functioning Hotel,Off Ajose Adeogun Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +546,3 Solid Building Of Duplexes,Mike Adenuga Close Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +547,2 Bedroom Apartment Fully,Ikoyi Victoria Island Lagos,₦,"175,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +548,New House,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,0 Toilets,Oniru +549,4 Units Of Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,0 baths,0 Toilets,Oniru +550,2000 Sqm Beside Access Bank Oniru 550m,Beside Access Bank Oniru 550m Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Oniru +551,Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +552,Spacious 4bedroom Semi Detached Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +553,Land,Idowu Martins Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +554,Land,Karimu Kotun Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +555,4 Bedroom Detached Duplex With 2 Sitting Rooms,Oniru Estate Oniru Victoria Island Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +556,Executive 4 Bedroom Tetrace Duplex With A Bq Located Inside Dideolu Estate Oniru.,Dideolu Estate Oniru Victoria Island Lagos,₦,"7,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +557,Exquisitely Finished 5bedroom Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +558,Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +559,Land,Eko Atlantic Victoria Island Lagos,$,"3,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +560,Newly Built Luxury 2 Bedroom Fully Serviced Upper Floor Apartment,"Eko Pearl Towers, Victoria Island Extension Victoria Island Lagos",$,"750,000,000",1,1,0,2 beds,3 baths,3 Toilets,Victoria Island Extension +561,4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +562,Furnished And Serviced 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,1,3 beds,3 baths,4 Toilets,Oniru +563,5 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +564,2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,2 beds,0 baths,0 Toilets,Oniru +565,Furnished 3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,1,3 beds,3 baths,4 Toilets,Oniru +566,New House,Victoria Island Lagos,₦,"550,000,000",0,1,0,6 beds, baths, Toilets,Other Victoria Island +567,Newly Refurbished Luxury 3 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate 1004 Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +568,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +569,3bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,0 Toilets,Oniru +570,"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Oniru Estate Victoria Island Lagos State. Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +571,Newly Built 5 Bedrooms Fully Detached Duplex With Boys Quarter,Oniru Victoria Island Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets,Oniru +572,Residential Plot In The Heart Of Oniru Measuring 800sqm,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +573,Luxury 4 Bedroom Terrace,Oniru Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +574,Tastestully Finished 4 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +575,Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +576,800sqm Land For,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +577,A Well Built 3 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +578,Super Beautiful 5 Bedroom High Toned Luxury Terrace Duplex With Swimming Pool,Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +579,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +580,Victoria Island Quick Sales Large Commercial Barelands,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +581,3 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +582,4bedroom Residence At Oniru Victoria Island,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +583,Land,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +584,New 3 Bedroom Passionate Flat With Bq,Teslim Elias Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +585,Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +586,*executive 30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +587,4 Bedroom Detached House,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +588,Bedrooms Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +589,Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +590,4bedrooms Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +591,5bedrooms Semi Detached Duplex For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +592,Newly Built 6 Bedroom Fully Detached Duplex,Victoria Island Victoria Island Lagos,₦,"580,000,000",1,1,0,6 beds,6 baths,6 Toilets,Other Victoria Island +593,Land,Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +594,Oniru Estate 1500sqm Prime Land,Oniru Estate Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0, beds, baths, Toilets,Oniru +595,"5233/,sqmts Land",Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +596,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +597,Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +598,Cozy 3 Bedroom Apartment In Victoria Island,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets,Waziri Adeola Odeku +599,"Serviced, Well Priced And Neatly Finished 3 Bedroom Flat",Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +600,"A Luxurious 4bedroom Terrace With Bq. Located In A Secured Estate, And A Mini Fully Service Court. Around Ebano Supermarket Mall Axis. Price ; 85m",Close To Ébano Supermarket Onirun Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +601,4 Bedroom Semi Detached Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +602,Land,Along Shoprite Road Oniru Victoria Island Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +603,Fully Serviced Office Space From 28sqm To 200sqm,Onriu Oniru Victoria Island Lagos,₦,"28,000,000",1,0,0,0 beds,0 baths,0 Toilets,Oniru +604,Newly Built 3bedroom Flat House Oniru,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,1,1,3 beds,3 baths,4 Toilets,Oniru +605,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +606,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +607,Massive 4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +608,Land,Oniru Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +609,Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +610,Office Building,Muri Okunola Street Victoria Island Victoria Island Lagos,₦,"581,000,000,000",0,0,0, beds, baths,4 Toilets,Other Victoria Island +611,House,Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +612,5 Bedroom Fully Detached Duplex + Bq,Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets,Victoria Island Extension +613,Super Luxury 3 Bedroom Flat,Ajose Ajeogun Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Victoria Island +614,4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"155,000,000",1,0,1,4 beds,0 baths,0 Toilets,Oniru +615,A Well Maintained 3 Bedroom Flat,Off New Market Road Oniru Victoria Island Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +616,A Well Maintained Commercial Property On 2 Floors,Victoria Island Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +617,4bedroom Semidetached At Ahmadu Bello Way Victoria Island Lagos,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +618,Fully Furnished And Serviced 2 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,1,2 beds,2 baths,3 Toilets,Oniru +619,Land,Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +620,Land,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +621,Brand New 4 Bedroom Spacious Semi Detached Duplex With Bq??* Gated Estate Prestigious Address Ample Car Park Green Area Beautiful Lightings Family Lounge Gate House Fully Fitted Modern Kitchen Study Tv And Telephone Outlets All,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +622,Furnished 3 Bedroom Luxury Flat,Sinari Daranijo Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +623,Brand New 4 Bedroom Terraced Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +624,High Rise Commercial Property,Adeola Odeku Adeola Odeku Victoria Island Lagos,$,"100,000,000",0,0,1,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +625,A Fully Functional Hotel,Victoria Island Lagos,₦,"2,700,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +626,Excellent Luxury 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +627,Land,Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +628,Land,Akin Ogunlewe Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +629,4 Bedroom Town House,Oniru Victoria Island Lagos,₦,"120,000,000",1,0,1,4 beds,0 baths,0 Toilets,Oniru +630,2bedroom Flat,Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +631,Large 6 Bedrooms Fully Detached Duplex,Muri Okunola Eko Atlantic Victoria Island Lagos,₦,"460,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +632,7 Bedroom Dully Detached Duplex,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Victoria Island +633,6units Of 3bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +634,Land,"Along Water Corporation Road, Oniru Oniru Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +635,Land,Victoria Island Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +636,Land,Oniru Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +637,Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +638,Land,Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +639,Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +640,Top Quality 4 Bedroom Luxury Semi Detached Duplex At Oniru Pt,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets,Oniru +641,Newly Built Luxury 3 Bedroom Apartment,"Oniru Estate, Off Palace Road, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +642,"Brand New Luxury 4 Bedroom Serviced Fully Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Ozumba Mbadiwe Via Oba Yesufu Abiodun Road, Oniru Estate Lagos State. Oniru Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +643,"Distress Sale At Victoria Island Building On 1866 Sqm Of Land , Suitable For Office Use Jw",Z Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +644,A Detached Duplex On 825sqm Of Land,Off Idejo Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +645,30 Rooms Hotel(opposite Eko Hotel And Suite Vi) Title: C Of O Land Size: 2.292sqm. Fum,Victoria Island Lagos,₦,"3,000,000,000",1,0,0,10 beds,10 baths, Toilets,Other Victoria Island +646,Contemporary 4 Bedroom Fully Detached Duplex,Off Oniru Palace Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +647,Fully Serviced 3bedroom Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +648,A Commercial Land Property,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +649,Luxury Built 3 Bedroom Flat With Bq,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +650,3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,0 Toilets,Oniru +651,"2,050sqm Of Land",Ademola Adetokunbo Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +652,"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Adeola Odeku, Victoria Island, Lagos State. Adeola Odeku Victoria Island Lagos",₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Waziri Adeola Odeku +653,5 Bedroom Detached House,Kofo Abayomi Victoria Island Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +654,5 Bedroom High Toned Luxury Terrace Duplex With A Swimming Pool And Gym Fully Fitted Modern Kitchen Built In Wardrobes Tv And Telephone Outlets All Bedrooms En Suite Luxury Finishes 24 Electricity,Onirun Lekki Right Side Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +655,Brand New Executive Luxury 3 Bedroom Fully Serviced Terrace Duplex Plus A Room Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +656,5bedrooms Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +657,Brand New Luxury 4 Bedroom Serviced Terrace Plus Bq,"Dideolu Estate, Oniru Victoria Island Lagos",₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +658,3 Bedroom Flat,Victoria Island Lagos,₦,"350,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Victoria Island +659,5 Bedroom Semi Detached Family Home,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +660,New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets,Oniru +661,Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"6,650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +662,"Land Measuring 1,300sqm With A Commercial Detached 5 Bedroom Duplex",Off Sanusi Fafunwa Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +663,"A Parcel Of Land Measuring 1,300sqm",Sanusi Fafunwa Victoria Island Lagos,₦,"450,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +664,Executive Hotel,Victoria Island Lagos,₦,"300,000,000,000/day",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +665,4 Bedroom Terrace Duplex,Estate Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +666,Luxury Built And Fully Serviced 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +667,Newly Built Luxury 1 Bedroom Fully Finished And Serviced Upper Floor Apartment,Magbogunje Street Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,1 beds,2 baths,2 Toilets,Oniru +668,Brand New Luxury 3 Bedroom Apartment With A Room Bq,Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets,Victoria Island Extension +669,Luxurious 4 Bedroom Terraced Duplex With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +670,4 Bedroom Fully Serviced Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +671,Serviced 2 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets,Oniru +672,New House,Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,0 Toilets,Oniru +673,Land,Eko Atlantic Victoria Island Lagos,$,"1,250/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +674,A Block Of 15 Units Of Spacious 1 & 3 Bedrooms Apartment,"10 Akin Adesola St, Victoria Island, Lagos, Nigeria. Akin Adesola Victoria Island Lagos",₦,"4,500,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +675,High Ceiling Luxury Maisonette,Oniru Oniru Victoria Island Lagos,₦,"235,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +676,Luxury Fully Fitted 4 Bedroom Apartment,Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +677,Brand New Office Complex, Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000,000",0,1,1,0 beds,7 baths,0 Toilets,Waziri Adeola Odeku +678,4 Bedroom Fully Detached Duplex With Bq., Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,0 Toilets,Oniru +679,Newly Built 4 Bedroom Semi Detached Duplex, Kofo Abayomi Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,0 Toilets,Other Victoria Island +680,"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Maisonette Plus Bq With Air Conditioning , Fully Fitted Kitchen",Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +681,Land,Akin Ogunlewe Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +682,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +683,Remodeled 5 Bedroom Detached Duplex + 2 Rooms Bq,"Off Ligali Ayorinde Street , Victoria Island Lagos. Ligali Ayorinde Victoria Island Lagos",₦,"700,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Victoria Island +684,New House,Victoria Island Lagos,₦,"600,000,000",0,1,0,6 beds, baths, Toilets,Other Victoria Island +685,New House,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds, baths, Toilets,Oniru +686,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +687,Fully Serviced 4 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +688,Well Situated Land Measuring 4000sqm,Next To Access Bank Head Office Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +689,2 Bedroom Apartment,Eko Hotel Eko Atlantic Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +690,Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool Located In Oniru Lekki Phase 1 Right Side Axis,Lekki Phase 1 Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +691,5 Bedroom Semi Detached Serviced Smart Home,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,0 baths,0 Toilets,Oniru +692,20 Units Apartment,Ajose Adeogun Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +693,Executive 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +694,Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +695,Land,Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +696,New 3bedroom Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +697,5units Of 3 Bedroom En Suite Apartment,"Oniru Estate, Lagos Oniru Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +698,Land,Landmark Road Oniru Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +699,Land,Eko Atlantic Victoria Island Lagos,$,"3,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +700,Newly Built Modern Luxury Flats Consists Of 17unit Luxury Flats,Tony Anegbode Street V.i Lagos. Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +701,Newly Built 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +702,4 Bedroom Maisonnette,Oniru Victoria Island Lagos,₦,"1,200,000,000",1,1,0,4 beds,0 baths,0 Toilets,Oniru +703,4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,0 baths,0 Toilets,Oniru +704,"Luxury 5 Bedroom Fully Finished And Fully Semi Deatched Duplex With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Gafar Animashaun Street , Behind Zenith Headquarters Victoria Island Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +705,Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +706,Newly Built 3 Bedroom Flat Apartments With A Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +707,New House,Ajose Adeogu Street Sanusi Fafunwa Victoria Island Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths, Toilets,Other Victoria Island +708,Furnished 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets,Oniru +709,4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +710,"5,300sqm Plot Of Land",Akarigbere Close Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +711,A Beautifully Built Furnished 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +712,8 Numbers Of 3 Bedroom Flats With 8 Maid Rooms Bq,"@ Adeola Hopewell, Victoria Island, Lagos. Adeola Hopewell Victoria Island Lagos",₦,"950,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +713,Four Bedroom All Ensuite Penthouse,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +714,Executive Brand New 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +715,Land,Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +716,House,Victoria Island Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +717,5 Bedroom Detached Duplex With Bq,Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +718,3 Bed Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +719,New 3 Bedrooms Block Of Flats,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,0 Toilets,Other Victoria Island +720,"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Off Ajose Adeogun Street, Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos",₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Island Extension +721,House,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +722,4bedrooms Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets,Oniru +723,A Beautifully Built 4 Bedroom Maisonnette With A Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,0,0,4 beds, baths, Toilets,Oniru +724,A Massive Commercial Bare Land Of Size 3304.01sqm,Cornerpiece Of Ligali Ayorinde Str And Muri Okunola Str. Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +725,4 Bedroom Exceptional Terrace Duplex,Idowu Martin's Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +726,Newly Built Luxury 3 Bedroom Fully Serviced Apartment,"Eden Heights Apartments 6 Elsie Femi Pearse St, Adeola Odeku Victoria Island Lagos",$,"1,000,000",1,1,1,3 beds,4 baths,4 Toilets,Waziri Adeola Odeku +727,Brand New Serviced Portable 3bedroom Flat No Bq In A Serene And Secured Environment,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +728,4bedroom Terrace Building,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,6 baths,5 Toilets,Waziri Adeola Odeku +729,Luxury 3 Bedroom Apartments With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +730,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,0 baths,5 Toilets,Other Victoria Island +731,4bedroom Terrace Duplex,Musa Yara Sua Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +732,"Newly Built 17 Flats In A Block. 1 No 4 Bed Pent House, 9 No 3 Bedroom , 6 No 2 Bed, And 1 Unit Of 1 Bed, With Ample Car Park , 500kva Transformer And 200kva Gen At Victoria Lsland Lagos Multimodal",Victoria Lsland Lagos Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,1,0, beds, baths, Toilets,Victoria Island Extension +733,"20,000sqm Land",Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +734,Brand New Tastefully Finished Serviced 2 Bedroom Flat With 1 Room Boys Quarters,Oniru Victoria Island Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets,Oniru +735,5 Bedroom Terrace Duplex With Bq,Anifowoshe Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +736,Brand New Executive Luxury 5 Bedroom Fully Detached Duplex,"Oniru Estate, Oniru Lagos State. Oniru Victoria Island Lagos",₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets,Oniru +737,Newly Built 3bedroom Apartment,Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +738,Expansion 6 Bedroom Detached House With Open Plan Office Bungalow,Off Amodu Ojikutu Victoria Island Lagos,₦,"380,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +739,Plastic Factory In A Senere Neighborhood,Lagos Island Victoria Island Lagos,₦,"40,000,000,000/sqm",0,0,1, beds, baths, Toilets,Other Victoria Island +740,"Land Measuring 2,200sqm",Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +741,Massive Block Of Flats House,Opp Mike Adenuga Towers Adeola Odeku Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets,Waziri Adeola Odeku +742,3 Bedroom Fully Serviced Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +743,Semi Detached Duplex,Royal Estate Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +744,"High Rise Property, Land Size: 2031 Square Meters.",Adeola Odeku Victoria Island Lagos,₦,"42,000,000,000",0,1,0,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +745,Land,Karimu Kotun Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +746,3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +747,Primely Located 1000sqm Of Land,Corporation Drive Oniru Victoria Island Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets,Oniru +748,Executive 3 Bedroom Apartment With A Room Bq,1004 Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Victoria Island +749,Executive 4 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"150,000,000/day",1,0,1,4 beds,5 baths,5 Toilets,Other Victoria Island +750,Land,Off Ahmodu Bello Road Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +751,4bedroom Penthouse,Off Palace Road Oniru Victoria Island Lagos,₦,"220,000,000",1,0,1,4 beds,4 baths,5 Toilets,Oniru +752,100mt Self Propel Tanker,Lagos Shores Victoria Island Extension Victoria Island Lagos,$,"1,200,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +753,House,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,1, beds, baths, Toilets,Other Victoria Island +754,New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets,Oniru +755,High Rise Property,"Off Adeola Odeku, Victoria Island Lagos",$,"100,000,000",0,1,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +756,Newly Built 3 Bedroom Fully Finished Upper Floor Apartment,Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +757,Newly Built Luxury 5 Bedroom Fully Finished Detached Duplex,"Oniru Estate, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets,Oniru +758,Furnished 4 Bedroom Maisonette + Bq,Idejo Victoria Island Lagos,₦,"250,000,000",1,0,1,4 beds,0 baths,0 Toilets,Other Victoria Island +759,A Tenanted 3bedroom Maisonette,"5th Floor At Block C6 1004 Victoria Island, Lagos 1004 Victoria Island Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +760,Land,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +761,Executive 2 Bedroom Mansion,1004 Victoria Island Lagos,₦,"170,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +762,Functional 27 Rooms Hotel,"Off Ajose Adeogun Street, Victoria Island,lagos State. Ademola Adetokunbo Victoria Island Lagos",₦,"1,300,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +763,Executive 4 Bedroom Fully Detached Duplex On 15000sqms,Ademola Adetokunbo Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +764,Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,"Oniru Estate , Oniru Lagos State Oniru Victoria Island Lagos",₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +765,New 2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,2 beds,3 baths,0 Toilets,Oniru +766,7000sqm Waterfront Empty Land,"Ozumba Mbadiwe Street , Victoria Island Lagos . Victoria Island Extension Victoria Island Lagos",₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets,Victoria Island Extension +767,Executive 4 Bedroom Semi Detached Duplex,Off Palace Road Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +768,Lovely 4 Bedroom Terrace,Musa Yaradua Street Adeola Hopewell Victoria Island Lagos,₦,"320,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +769,"1,700sqm Of Bareland",Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +770,3 Bedroomt Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oniru +771,"A Corner Piece Of Land Measuring 1,200sqm",Festival Street Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +772,27 Room Hotel,. Ligali Ayorinde Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +773,"1,100sqm Bare Waterfront Land",Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +774,5bedrooms Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +775,New House,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths, Toilets,Oniru +776,A Commercial Land,Akin Olugbade Off Adeola Odekun Str Victoria Island Akin Olugbade Victoria Island Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +777,Beautifully Built 4 Bedroom Terraces Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +778,Newly Built Luxury 3 Bedroom Fully Finished And Serviced Upper Floor Apartment,Adeola Odeku Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets,Waziri Adeola Odeku +779,Newly Refurbished Luxury 2 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +780,"Newly Reburbished Luxury 7 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq With Air Conditioning , Fully Fitted Kitchen And 2 Bedroom Guest Chalet House As Bq",Off Muri Okunola Victoria Island Lagos. Victoria Island Extension Victoria Island Lagos,₦,"400,000,000/year",0,0,0,7 beds,8 baths,8 Toilets,Victoria Island Extension +781,4 Bedroom Terrace Duplex With Bq,Adeola Odeku Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +782,Fantastic 3 Bedroom Flat,Cluster D 5th Floor 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +783,2/3 Bedrooms Flat,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +784,Land,"Dideolu Estate, Victoria Island Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +785,New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets,Oniru +786,A Well Built 2 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"125,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +787,5 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,4 Toilets,Oniru +788,4 Bedroom Fully Furnished And Fully Serviced Maisonette Plus Bq,Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +789,820sqm Prime Land With Structure Off Idejo Street Victoria Island Lagos,Off Idejo Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +790,3 Bedroom Apartment,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +791,A Demolishable Building Property,Ajose Adeogun Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +792,Well Maintained 4 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +793,Land,"Along Water Corporation Road, Oniru Oniru Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +794,Sleek 3 Bedrooms Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +795,A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +796,Honorary 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +797,Land,Goriola Str Off Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +798,4200sqm Land,"Adeleke Adedoyin Off Musa Yar'adua, Vi Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +799,5 Bedroom Terraces Duplex + 1 Maid's Room,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +800,2 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +801,Executive 3bedroom Flat Downstairs With All Rooms Ensuite,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +802,5 Bedrooms Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +803,4 Bedroom Terrace Duplex Forsale,Oniru Victoria Island Lagos,₦,"80,000,000/year",0,0,0,4 beds,4 baths,4 Toilets,Oniru +804,3 Bedroom Flat,Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,3 baths,3 Toilets,Other Victoria Island +805,Modern Day 3 Bedroom Apartment With Elevator And Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +806,Quick Sales In Victoria Island Lagos Off Amodu Ojikutu,Amodu Ojikutu Victoria Island Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Victoria Island +807,Finished 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +808,1450sqm Cornerpiece Of Land At Oniru Estate Victoria Island,Oniru Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Oniru +809,Commercial Property,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +810,1 Unit Of 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"195,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +811,Urban City Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +812,A 4 Bedroom Terrace Duplex At Oniru,Boctrust Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets,Oniru +813,"Newly Built Large Compound 5 Bedroom Semi Detached +bq, Gated Estate",Off Ligali Ayorinde Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +814,New 3 Bedroom Flat With Bq + Elevator,Oniru Oniru Victoria Island Lagos,₦,"98,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +815,"3,300sqm Land",Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +816,A Story Building Sitting On 3000sqm At Adeola Odeku Vi,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +817,Urban City Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +818,8 Floor Block Of Flats + Penthouse,Akin Adesola Victoria Island Lagos,$,"14,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +819,Two Storey Commercial Building,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +820,Spacious 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +821,Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +822,4bedroom Terrace [email protected],Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +823,5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +824,Luxury 4 Bedrooms Terrace Duplex With Bq,Atlantic Mew Estate Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +825,3 Bedroom Apartment + Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +826,Spacious 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +827,Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +828,Newly Built & Fully Serviced 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +829,Luxury 8 Units Of 3 Bedroom Flats,Akin Olugbade Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +830,Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +831,Contemporary 4 Bedroom Fully Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +832,Beautifully Built 3 Bedroom Apartment With A Bq,Eighteen 65 Residence By Fatai Durosinmi Street Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,3 baths,3 Toilets,Victoria Island Extension +833,Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +834,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +835,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +836,Tenanted 2 Bedroom Maisonette,1004 Estate Ozumba Mbadiwe 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +837,2 Bedroom Apartment On The 4th Floor,Vi Victoria Island Lagos,₦,"90,000,000",0,1,0,2 beds,3 baths,3 Toilets,Other Victoria Island +838,Luxurious 3bedroom Apartment Penthouse,Oniru Victoria Island Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +839,4 Bedroom Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +840,Awesome 4 Bedroom Maisonette Duplex With Bq,4 Bedroom Maisonette Duplex With Bq In Eighteen 65 Residence By Fatai Durosinmi Street Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",1,1,1,4 beds,4 baths,4 Toilets,Victoria Island Extension +841,Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +842,Service & New 3bed Room Compact/portable Flat No Bq,Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +843,3 Bedroom Maisonette Duplex With Bq,"Fatai Durosimi Etti Street, Accessible Through Ajose Adeogun Street. Victoria Island Lagos",₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +844,Super Affordable 5 Bedroom Duplex,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +845,2007sqm Plot Of Land,Bishop Kale Street Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +846,4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +847,Brand New 4 Bedroom Semi Detached House,Ahmadu Bello Way Victoria Island Lagos,₦,"300,000,000/year",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +848,Lovely 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +849,Lovely 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +850,An Office Property,A Very Beautiful Environment Ademola Adetokunbo Victoria Island Lagos,₦,"800,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +851,A Newly Built & Tastefully Finished Luxury & Fully Serviced 2 Bedroom & 3 Bedroom Flat For Sale!!!!,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets,Oniru +852,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +853,Luxury & Spacious 4 Bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +854,Well Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +855,19 Floor Commercial Masterpiece,Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +856,Great 4 Bedroom Terrace Duplex Masterpiece,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +857,Luxury 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +858,4 & 5 Bedroom Terrace Duplex With Bq In Victoria Island Extension Oniru,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets,Oniru +859,5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +860,Beautifully Built 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +861,Brand New 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +862,Exquisitely Built 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +863,Lovely 8 Numbers Of 3 Bedroom Apartment,Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +864,4bedroom Terrace Duplex,A Very Beautiful Environment Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +865,4 Bedroom Terrace Duplex With Bq For Sale With Swimming Pool And Gym,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +866,4 Bedroom Terrace Duplex,Vi Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +867,A Newly Built & Tastefully Finished Luxury & Serviced 3bedroom Flat For Sale!!!,Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +868,Beautifully Built 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +869,4 Bedroom Masionette,Victoria Island Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +870,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +871,Nicely Structured 4 Bedroom Terrace Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +872,Luxury 5bedroom Semi Detached Duplex+ A Room Bq For Sale!!!,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +873,A Luxury 5bedroom Fully Detached Duplex With Bq,A Serene Environment Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +874,4 Bedroom Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Victoria Island +875,3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +876,Idle Bank Branch On Approximately 1530sqm Land,Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +877,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +878,Newly Built Luxurious 4bedroom Townhouse With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +879,Idle Bank Branch On 2 Floors On Approximately 1100sqm Land,Very Nice Environment Adeola Odeku Victoria Island Lagos,₦,"800,000,000",1,0,0, beds, baths, Toilets,Waziri Adeola Odeku +880,Fully Serviced Luxury 3 Bedroom Apartment+ A Room Bq For Sale!!!,Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +881,5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +882,3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +883,4 Bedroom Terrace With Swimming Pool,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +884,Newly Built Four Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +885,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +886,2 Bedroom Penthouse Apartment,Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +887,4bedroom Newly Built Contemporary Fully Detached Duplex,Very Beautiful Neighbourhood Oniru Victoria Island Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +888,Western Standard 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +889,Oniru Water Front,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +890,4 Bedroom Terraced Duplex In A Serene Gated Estate,Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +891,5 Bedroom Detached Duplex With Swimming Pool, Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +892,Luxurious 2 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +893,3bedroom Apartment And 4bedroom Penthouse,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +894,3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +895,Newly Built Fully Luxurious Detached Duplex,A Very Secured Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +896,3 Bedroom Apartment,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +897,Exquisite 2 Bedroom Penthouse With Bq,1004 Victoria Island Lagos,₦,"250,000,000",1,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +898,Beautiful And Massive 5units Of 3 Bedroom Terrace Duplex With Bq,Secured Neighborhood Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +899,Executive 5 Bedroom Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Victoria Island +900,Cute 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +901,Furnished 5 Bedroom Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Victoria Island +902,Fully Furnished 3 Bedroom Flat On A Block Of 9 Flats,Z Victoria Island Lagos,₦,"75,000,000",1,0,1,3 beds,3 baths,3 Toilets,Other Victoria Island +903,3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +904,Structured 7 Bedroom Duplex,Muri Okunola Victoria Island Lagos,₦,"390,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Victoria Island +905,Exquisite 3 Bedroom Flat With Bq,Eighteen 65 Residences Fatai Durosinmi Street Vi Off Plan Project Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,0 baths,0 Toilets,Victoria Island Extension +906,Fully Furnished 2 Bedroom Apartment,Bluewater Apartments Oniru Victoria Island Lagos,₦,"135,000,000",1,0,1,2 beds,2 baths,3 Toilets,Oniru +907,Functional Hotel,Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths,10 Toilets,Victoria Island Extension +908,Newly Built 5 Bedroom Detached House;,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +909,"A Commercial Property Comprising 2 Units Of Open Plan Detached Houses Sitting On 1,817m²",Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +910,"Newly Built, Well Finished And Maintained 4 Bedroom Terrace Duplex With Swimming Pool And Gym","Millenium Estate, Oniru Victoria Island Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +911,Tastefully Built 4 Bedroom Terrace House,Off Palace Road Oniru Victoria Island Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +912,Well Serviced 4 Bedroom Apartment;,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +913,Tastefully Built 4 Bedroom Terrace Duplex,E Victoria Island Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +914,Newly Built 4 Bedroom Terrace Duplexes;,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +915,8 Units Of Fully Serviced 3 Bedroom Flats,Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +916,Excellent Top Quality 3 Bedroom Block Of Flats With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +917,Newly Built Executive Elegant 2 & 3 Bedroom Block Of Flats,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +918,Luxury Finished 4 Bedroom Terrace Duplex,"Chery Homes, Oniru, Vi Extension Oniru Victoria Island Lagos",₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +919,Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +920,Brand New And Spacious 3 Bedroom Flat With Bq;,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +921,Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +922,Luxury & Fully Serviced 2 Bedrooms Pent Flat,Oniru Victoria Island Lagos,₦,"67,000,000",1,0,0,2 beds,0 baths,0 Toilets,Oniru +923,Newly Built 5 Bedroom Fully Detached House With A Room Bq;,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +924,A Top Notch And Luxury 3 Bedroom Flat With A Room Bq,"Oniru Royal Estate, Oniru Victoria Island Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +925,Newly Built 5 Bedroom Fully Detached House;,Oniru Victoria Island Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +926,Land Measuring 800m²,"Akin Olugbade Street Off Adeola Odeku Street, Victoria Island Lagos",₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +927,"Waterfront Land Measuring 8,000m²","Along Water Corporation Drive, Beside Queenspark Event Center, Oniru Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oniru +928,Luxury 2 Bedroom Apartment With Bq,In A Serene Neighborhood Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +929,"A Bare Land Measuring 3045sqm Located Near Four Point Hotel Sheraton Victoria Island, Lagos State Nigeria",Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oniru +930,Fully Service 4 Bedroom Semi Detached House;,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +931,Brand New 5 Bedroom Detached House With Swimming Pool;,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +932,"Bareland Measuring 1,676.96m²","Off Adeola Odeku Street, Victoria Island Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +933,"Land Measuring 2,000m²","Goriola Street, Off Adeola Odeku, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +934,Beautiful 4 Bedroom Terrace Duplex,In A Serene Neighborhood Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +935,Nicely Built 4 Bedroom Terrace With Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +936,Affordable 4 Bedroom Detached Duplex In A Strategic Location,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +937,Executive 3 Bedroom Apartment On The 1st Floor,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +938,Newly Built 4 Bedroom Terrace Duplex With A Room Bq;,Victoria Island Lagos,₦,"182,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +939,Top Notch Luxury 4 Bedroom Block Of Flats With Bq,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"1,200,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +940,Brand New 5 Bedroom Luxury Terrace Duplex With Swimming Pool;,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +941,Brand New Exquisitely Finished 4 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +942,Contemporary 4 Bedroom Terrace Duplex With Bq,"Victoria Island, Victoria Island Lagos",₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +943,"Corner Piece Land Measuring 1,230m² With Structure","Sir, Manuwa Street, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +944,5 Bedroom Fully Detached With A Swimming Pool & A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +945,Tastefully Built 4 Bedroom Terraced House With Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +946,Newly Built 4 Bedroom Self Service Flat;,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +947,Brand New 4 Bedroom Semi Detached House With 1 Bq;,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +948,Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +949,Vacant 2 Bedroom Massionette,1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +950,"Land Measuring 2,835.902m²","Akin Olugbade Street Off Adeola Odeku Street, Victoria Island Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +951,Massive And Elegant Newly Built 2 & 3 Bedroom Block Of Flats With Bq,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +952,Newly Built 4 Bedroom Terrace With Swimming Pool,Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +953,"A Corner Piece Bare Land Measuring 3,300.72m²","Off Ligali Ayorinde And Muri Okunola, Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +954,Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +955,Fully Serviced 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +956,Tastefully Built 5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +957,Luxury 4 Bedroom Maisonette In A Good Location,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +958,Newly Built 3 Bedroom Apartment With Excellent Finishing,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +959,2 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets,Oniru +960,Luxury Finished 3 Bedroom Apartment With Bq,In A Serene Neighborhood Victoria Island Lagos,₦,"145,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +961,Nicely Built 4 Bedroom Terrace House With 2 Living Room 1 Bq 1 Study;,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +962,Luxury 4 Bedroom Detached Duplex;,"Palace Road, Oniru Estate. Victoria Island Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +963,Serviced Block Of 2 Nos Of 4 Bedroom Maisonette With Bq And 8 Units Of 3 Bedroom Flats With Bq, Oniru Victoria Island Lagos,₦,"800,000,000",1,1,0,3 beds,4 baths, Toilets,Oniru +964,Newly Built 4 Bedroom Massionette Duplex;,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +965,New Built And Well Serviced 3 Bedroom Apartment With A Room Bq;,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +966,Brand New 5 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +967,"Land Measuring 4,450m²","Chief Yusuf Abiodun, Oniru Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Oniru +968,Massive Elegant Newly Built 2 & 3 Bedroom Block Of Flats With Bq,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +969,Primed 2500sqm In A Strategic Location,Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +970,5 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +971,Brand New Massive Elegant 3 Bedroom Block Of Flats And 5 Bedroom Penthouse With Bq,Vi Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +972,Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +973,Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +974,Newly Built 3 Bedroom Luxury Flat;,Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +975,Brand New Contemporary Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +976,Nicely Built 4 Bedroom Serviced Terrace With A Bq, Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +977,Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +978,"Land Measuring 2,000m²",Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Oniru +979,Serviced 4 Bedroom Apartment With Bq On 7th Floor,"Eden Heights Off Adeola Ayodeji Street, Victoria Island Lagos",₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +980,Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +981,Newly Built 5 Bedroom Semi Detached House With A Bq;,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +982,Newly Built Executive Massive Elegant 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Vi Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +983,A 4 Bedroom Terrace House With A Room Bq (video Available On Request),"Kayla’s Haven, Palace Road, Oniru Victoria Island Lagos",₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +984,Nicely Built 5 Bedroom Terrace Duplex;,Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +985,Luxury 4 Bedroom Terrace With A Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +986,Modern Built 27 Luxury Bedrooms Hotel,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds,0 baths,0 Toilets,Other Victoria Island +987,"Waterfront Plot Measuring 1,839sqm","Off Ligali Ayorinde Street, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +988,Brand New Exquisitely Finished 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +989,Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +990,Lovely 3 Bedroom Flat;,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +991,Exquisite Luxury Finished 1 Bedroom Apartment In Premium Location,Knight Towers Ahmadu Bello Way Victoria Island Lagos,₦,"68,500,000",1,1,0,1 beds,1 baths, Toilets,Other Victoria Island +992,"Land Measuring 2,364m²","Jakande Close, Oniru Victoria Island Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets,Oniru +993,Newly Built 3 Bedroom Service Flat With A Room Bq;,Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +994,Land,"Waterfront, Oniru Victoria Island Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +995,2300sqm Land,Goriola Str. Off Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +996,Jv 3000 Sqm Land,Lekki Right Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +997,Blocks Of 8units Of 3bedroom Luxury Flats,Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +998,1507 Sqm Joint Venture,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +999,2100 Sqm,Victoria Island Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1000,1560 Sqm Of Land,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1001,8 Luxurious Serviced 3bedroom,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +1002,Newly Built 3bedroom Flat With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds, baths, Toilets,Oniru +1003,1272sqm Land,Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1004,5300 Sqm Of Land For A Joint Venture,Victoria Island Lagos,₦,"4,200,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1005,1767sqm Of Land For Joint Venture,Victoria Island Lagos,₦,"885,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1006,200sqm Of Land For A Joint Venture,Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1007,3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1008,9000sqm Of Land,Eko Atlantic Victoria Island Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1009,Nixon Hotel,Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1010,Lovely 3bedroom,1004 Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1011,2000 Sqm Of Land For A Joint Venture,Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1012,Ecobank Building,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1013,A Fantastic 5 Bedroom Semi Detached,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1014,Brand New 4 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1015,Standard 27room Luxury Hotel,Victoria Island Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1016,Commercial Property On 2 Floors, Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1017,Fully Serivced 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Oniru +1018,For Sale 65 Card Rooms 4 Stars Hotel At Tiamiyu Salvage Street Victoria Island Lagos With C Of O,Tiamiyu Savage Victoria Island Lagos,₦,"17,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1019,Newly Built And Contemporary 4 Bedroom Terraced Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +1020,1600sqm Of Land,Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1021,Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +1022,Newly Improved 4bedroom Semi Detached Duplex,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1023,Luxury 4 Bedroom Semi Detached Duplex With A Room Bq For Sale In Victoria Island,Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1024,Luxury 3 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +1025,Fully Furnished 2 Bedroom Maisonette With Excellent Facilities For Sale In Victoria Island,Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1026,Luxury Fully Service And Furnished 3bedroom Apartment With S/pool,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +1027,5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets,Oniru +1028,Executive New 3bedroom Flat With Bq Swimming Pool And Elevator,Estate Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,3 beds,5 baths,4 Toilets,Oniru +1029,Luxury 3 Bedroom Terrace Duplex,S Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1030,4 Bedroom Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1031,New Luxury 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets,Oniru +1032,"1,650 Square Meters Land","Tiamiyu Savage Street, Off Ahmadu Bello, Victoria Island, Lagos. Tiamiyu Savage Victoria Island Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1033,9 Bedroom Detached House + 3 Rooms Bq,"By Ademola Adetokunbo Street, Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"700,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Victoria Island +1034,Mini Estate Of 8building Of Six 3bedroom Terrace,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,1,4 beds,8 baths,8 Toilets,Oniru +1035,Brand New Luxury 3bedroom Flat With All Necessary Amenities,Palace Road Oniru Victoria Island Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +1036,Luxury Executive 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,6 Toilets,Other Victoria Island +1037,Contemporary 4 Bed Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,6 Toilets,Oniru +1038,5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1039,Executive 6bedroom Detached House With Bq,Victoria Island Victoria Island Lagos,₦,"360,000,000",0,0,1,6 beds,8 baths,8 Toilets,Other Victoria Island +1040,"2,000 Square Meters Land","Senrolu Street, Dideolu Court, Victoria Island, Lagos. Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1041,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1042,5 Bedroom Fully Detached Duplex + 4 Rooms Bq On 700sqm Land,"Idejo Street, Off Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1043,Lovely Fully Furnished 2 Bedroom Flat,Eko Atlantic Victoria Island Lagos,$,"1,045",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +1044,A Five (5) Star Luxury Hotel (between Lekki & Victoria Island),Victoria Island Victoria Island Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1045,High Toned 4bedrooms Terraced Duplex With Bq In Oniru Vi,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1046,Eko Atlantic City Land,Eko Atlantic Victoria Island Lagos,$,"945,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1047,Morden 3bedrooms Apartments With Bq & Swimming Pool,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +1048,Functional Hotel,Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +1049,Newly Built Fully Luxurious Detached Duplex,A Well Secured Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1050,Idle Bank Branch On Approximately 1530sqm Land,Nice Environment Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1051,Brand New 8 Unit Of 3 Bedroom Flat With Luxury Facilities, Victoria Island Extension Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1052,Newly Built 4bedroom Fully Detached Duplex With Bq.,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,6 baths,6 Toilets,Oniru +1053,Standard 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1054,Brand New 4 Bedroom Maisonette With Swimming,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1055,"2 Wings Of 5 Bedroom Duplexes On 2,740sqm + Swimming Pool & 2 Rooms Bq","Tiamiyu Savage Street, Victoria Island, Lagos Tiamiyu Savage Victoria Island Lagos",₦,"1,400,000,000",0,0,0,10 beds,8 baths,9 Toilets,Other Victoria Island +1056,A Commercial Land Of 1413 Sqm,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1057,2 Wings Of 5 Bedroom Duplexes,Tiamiyu Savage Victoria Island Lagos,₦,"1,500,000,000/sqm",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +1058,Luxury 3 Bedroom Flat With Excellent Facilities, Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1059,Luxury Executive Portable 3 Bedroom Flat In A Gated Estate,Gated Estate Oniru Victoria Island Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets,Oniru +1060,Executive Luxury 3bedroom Terrace Duplex,Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"220,000,000",0,1,1,3 beds,5 baths,5 Toilets,Other Victoria Island +1061,Waterfront 5star Hotel Of 133rooms,Victoria Island Saka Tinubu Victoria Island Lagos,$,"170,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1062,3 Bedroom Flat + 1 Room Bq,"Off Ajose Adeogun, Victoria Island, Lagos. Victoria Island Lagos",₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1063,2100sqm Of Land,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1064,4 Bedroom Town House With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1065,An Old Detached Duplex With Appurtenances On 820sqm Total Land Size,"Off Idejo Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1066,"A Land Measuring 5,400m2",Ligali Ayorinde Street Vi Ligali Ayorinde Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1067,Land Measuring 2262 Square Meter With C Of O,Victoria Island Victoria Island Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1068,5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets,Oniru +1069,Commercial 5 Bedroom Detached Duplex,Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +1070,"1,500 Square Meters Strategically Located Land","Adetokunbo Ademola ( Close To Eko Hotels), Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1071,"Fully Serviced 4 Bedrooms Terrace Duplex With Private Elevator, Roof Terrace,gym And Pool Vi",Ozumba Akin Adesola Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Other Victoria Island +1072,Waterfront New Luxury 6bedroom Detached Mansion With Bq,Victoria Island Victoria Island Lagos,₦,"550,000,000",0,1,1,6 beds,8 baths,8 Toilets,Other Victoria Island +1073,Executive 4bedroom Flat Apartment,Victoria Island Lagos,₦,"80,000,000",0,0,1,4 beds,6 baths,6 Toilets,Other Victoria Island +1074,New 3 Bedrooms Penthouse,Eko Atlantic Victoria Island Lagos,$,"2,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1075,Land,Festival Road Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1076,5 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1077,Fast Food,Victoria Island Lagos,₦,"491,200,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1078,Newly Built 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1079,Land,Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1080,"Parcel Of Land Measuring 1,413 Square Meters","Ajose Adeogun Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1081,Executive Luxury 30rooms Hotel,Victoria Island Victoria Island Lagos,₦,"3,000,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Victoria Island +1082,"Land Measuring 4,000sqms For Sale In Victoria Island",Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1083,2641 Sqm Land,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1084,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +1085,Newly Built And Luxurious 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1086,A Standard 4bedroom Duplex,Savoy Town Home Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1087,Land,Hamadu Tijani Victoria Island Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1088,New Luxury 4bedroom Semi Detached Duplex With Bq In A Gated Estate,Gated Estate Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,0,1,4 beds,6 baths,6 Toilets,Oniru +1089,Fully Serviced 4 Bedroom Terrace Duplex With A Beautiful Ambience, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1090,4 Acres Of Land, Ahmadu Bello Way Victoria Island Lagos,₦,"6,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1091,Western 4bedrooms Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1092,3000sqm Of Land With Uncomplted Block 8 Nos Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1093,Newly Built 2 Bedroom Flat,Off 4 Points Road Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,2 beds,2 baths,3 Toilets,Oniru +1094,Contemporary 3 Bedroom Terrace Duplex,Akin Adesola Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1095,800sqm Of Residential Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1096,2 Nos Of. 5 Bedroom Detached Duplex With Bq And 4 Bedroom Duplex On 1500sqm With C Of O,Oko Awo Sanusi Fafunwa Victoria Island Lagos,₦,"650,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1097,5 Bedroom Semi Detached With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +1098,Brand New Fully Furnished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1099,: Brand New 3 Bedrooms Apartment,Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +1100,4 Acres Of Land, Kofo Abayomi Victoria Island Lagos,₦,"7,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1101,Strategically Fully Detached 5bedrooms Duplex With Pool,Lekki 1 Axis Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +1102,8 Floors Penthouse Buiding,Akin Adesola Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1103,A Standard 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1104,Fully Furnished 5bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",1,0,1,5 beds,7 baths,7 Toilets,Oniru +1105,Luxury 3 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,3 beds,5 baths,6 Toilets,Oniru +1106,"2,400 Square Meters Land","Goriola Street, Off Anifowoshe Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1107,4 Bedroom Pent House With Bq,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1108,Land Measuring 2500sqm, Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1109,Newly Built 5bedroom Semi Detached Duplex With Bq And Swimming Pool,Kayla Homes Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,7 baths,7 Toilets,Oniru +1110,New And Modern Luxury 1 Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Victoria Island +1111,Brand New 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1112,"Land Measuring 5,300sqms For Sale In Victoria Island.",Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1113,4000sqm Of Land With Approval Of 24 Floors With C Of O,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1114,Well Finished 4 Bedroom Terrace Duplex With Beautiful Ambience, Adeola Hopewell Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1115,"Fully Detached Building On 1,866sqm Land","Akin Adesola, Victoria Island, Lagos. Akin Adesola Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1116,Luxury 4 Bedroom Detached Duplex,"Palace Road,estate Oniru Victoria Island Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1117,An Office Property,Nice Environment Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1118,Shop Measuring 20sqms, Oniru Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1119,Lovely 4 Bedroom Terrace Duplex With Luxury Facilities For Sale In Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"125,000,000/year",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1120,4 Bedroom Maisonette With Bq At Eighteen65 Residences,Durosimi Etti Street Vi Lagos Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +1121,"7,400sqms Waterfront Land For Sale In Oniru",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Oniru +1122,"1,400 Square Meters Land ( Behind Law School)","Behind Nigerian Law School, Off Ozumba Mbadiwe, Victoria Island, Lagos. Adeola Hopewell Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1123,"1 Storey Building Plaza On 1,200 Square Meters Land","Idejo Street, Off Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1124,2 Bedroom Duplex,Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +1125,4 Bedroom Terraced Duplex With,Saka Tinubu Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1126,Functional 27rooms Hotel,Off Ajose Adeogun Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +1127,Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1128,Exquisite 5 Bedroom Fully Detached House With Bq On 400sqm,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1129,1277sqm Of Land,Oko Awo Off Eko Hotel Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1130,Brand New 4 Bedroom Terrace Duplex,Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +1131,5 Bedroom Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,5 beds,7 baths,7 Toilets,Oniru +1132,New Executive Luxury 5bedroom Fully Detached Duplex With Bq Swimming Pool,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"290,000,000",0,1,1,5 beds,7 baths,7 Toilets,Oniru +1133,Newly Built 19 Floors Office,Idowu Taylor Victoria Island Lagos,₦,"40,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1134,7 Bedroom Fully Detached House + Open Plan Space,"Off Ligali Ayorinde, Victoria Island, Lagos. Ligali Ayorinde Victoria Island Lagos",₦,"250,000,000",0,0,0,7 beds, baths, Toilets,Other Victoria Island +1135,Finished Furnished And Functional Hotel,Victoria Island Lagos,₦,"1,200,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +1136,"Land Measuring 2,262sqms Available In Victoria Island",Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1137,Office Building,Ademola Adetokunbo Island Ademola Adetokunbo Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1138,3000sqm Water Front Land For Joint Venture,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1139,Exquisitely 2bedroom Serviced And Furnished Pent Flat,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"70,000,000",1,0,1,2 beds,3 baths,3 Toilets,Oniru +1140,Exquisitely Furnished 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +1141,Newly Built 4 Bedrooms Terrace Duplex With 1 Rm Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,6 baths,6 Toilets,Oniru +1142,Executive 4bedroom Terrace Duplex With Swimming Pool And Gym,Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,1,4 beds,5 baths,5 Toilets,Other Victoria Island +1143,Luxury 3 Bedroom Flat + Bq Fully Serviced,Located In A Very Good And Secure Neighborhood Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +1144,"1,200m2 With 2 Numbers Of 5 Bedroom Houses",Muri Okunola Street Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1145,Buy 4 Bedroom Maisonette With Bq At 1865 Residence Victoria Island Lagos With C Of O,Durosinmi Etti Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",0,1,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +1146,Commercial 5 Bedroom Detached House,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"700,000,000/year",0,0,0,5 beds,5 baths,6 Toilets,Waziri Adeola Odeku +1147,Fully Serviced 4 Bedroom Terraced With Private Elevator,Victoria Island Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1148,1500sqm Of Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1149,A Bare Virgin Land For Any Development,Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0, beds, baths, Toilets,Oniru +1150,Fully Furnished 3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oniru +1151,3 Bedroom Apartment With Swimming Pool,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1152,Luxury 5 Bedroom Fully Detached Duplex With Bq,Oniru Lekki Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,0 beds,0 baths,0 Toilets,Oniru +1153,4bedroom Town House At Dideolu Estate Off Ligali Ayorinde Vi,Ligali Ayorinde Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +1154,800sqm Gated Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1155,Commercial 2floors Office Building On 860sqm Land,Victoria Island Victoria Island Lagos,₦,"600,000,000",0,0,1,0 beds,0 baths,0 Toilets,Other Victoria Island +1156,"3bedroom, 4bedroom And 6bedroom Penthouse",Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1157,For Sale 5 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"460,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1158,5 Bedroom Duplex,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1159,Standard Luxury 4bedroom Semi Detached Duplex With 2rooms Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"125,000,000",0,0,1,4 beds,6 baths,6 Toilets,Oniru +1160,A Luxury Brand New 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1161,An Executive Hotel,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1162,"2,3,4 And 5 Bedroom Maisonettes And Duplex Penthouses","Water Corporation Drive, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets,Victoria Island Extension +1163,A Lovely 4bedroom Detached House,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Oniru +1164,Luxury Brand New 3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +1165,Land With 2 Units Of Detached Houses,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1166,5 Bedroom Detached Duplex, Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1167,5 Bedroom Detached House,Ojo Olobu Vi Victoria Island Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +1168,Joint Venture,Located At Dideolu Estate Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oniru +1169,Lovely Furnished 5 Bedroom Fully Detached House,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1170,Executive 2 Bedroom And 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",0,1,1,2 beds,3 baths,3 Toilets,Other Victoria Island +1171,"7,358 Square Meters Fenced & Gated Land ( 2 & Half Acres)","Water Corporation Road, Off Ligali Ayorinde, Victoria Island, Lagos. Victoria Island Lagos",₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1172,Fully Furnished 3 Bedroom Apartment,Victoria Island Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,3 Toilets,Other Victoria Island +1173,"Blocks Of 20 Units Of Flats + Bqs Each On 2,400 Square Meters Land","Victoria Island, Lagos. Victoria Island Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1174,4 Bed Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1175,"Plot Measuring 4,300sqms", Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1176,Newly Built 3 Bedroom Luxury Apartment With Bq,Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1177,Massive 4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1178,4 Bedroom Duplex With A Self Contained Bq.,"Oniru, Victoria, Lagos Ligali Ayorinde Victoria Island Lagos",₦,"105,000,000",0,1,0,4 beds, baths, Toilets,Other Victoria Island +1179,4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1180,Newly Built 3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1181,Luxury Fully Fitted 3bedroom Penthouse Apartment With Maid's Quarter,"Eko Pearl Tower, Eko Athlantic City Eko Atlantic Victoria Island Lagos",₦,"910,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1182,New Luxury 5bedroom Semi Detached Duplex With 2rooms Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets,Oniru +1183,An Office Property,Nice Environment Ademola Adetokunbo Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1184,3300. 72 Sqm Of Cornerpiece Land With C Of O,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1185,Urban City 3bedrooms Apartments With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1186,New Fully Detached 4bedrooms Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +1187,"2,034 Square Meters Land",Serenolu Street Ligali Ayorinde Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1188,Luxurious 7 Bedroom Detached Duplex,Victoria Island Lagos,₦,"390,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Victoria Island +1189,4 Bedroom Penthouse With A Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1190,3 Bedroom Flat + Bq,"Eighteen 65 Residence, Fatai Durosinmi Street, Vi Victoria Island Lagos",₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1191,2 Bedroom Penthouse With Bq,"Eighteen 65 Residence, Fatai Durosinmi Street, Vi Victoria Island Lagos",₦,"250,000,000",1,1,0,2 beds,2 baths,2 Toilets,Other Victoria Island +1192,3 Bedroom Maisonette + Bq,Eighteen 65 Residence Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1193,4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1194,3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1195,Decent Miniflat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Oniru +1196,4 Bedroom Semi Detached Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1197,This Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1198,Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1199,Land,Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1200,1 Bedroom Apartments,Oniru Vi Oniru Victoria Island Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Oniru +1201,Tastefully Finished 4bedroom Flat,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1202,Tastefully Finished 4bedrooms Flat,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1203,5bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +1204,Ground Floor 4bedrooms,1004 Victoria Island 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1205,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000/year",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1206,4000sqm Of Land,Next To Access Bank Head Office Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1207,Brand New 5 Bedroom Fully Detached Duplex With Pool,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +1208,"Well Renovated, Vacant And Spacious Luxury 4 Bedroom Low Rise Apartment",1004 Housing Estate 1004 Victoria Island Lagos,₦,"82,999,999",1,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1209,3bedroom Flat With Bq ,Fatai Durosinmi Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1210,Tastefully Finished 3bedroom Flats,Nicole's Place Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1211,Tastefully Finished 2 Units Of 2 Bedroom Flats,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,3 baths,3 Toilets,Oniru +1212,Tastefully Finished 4bedrooms,1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +1213,4bedroom Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +1214,Fully Serviced 4 Bedroom Terrace Duplex,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1215,"4,100sqm Land At A Strategic Point",Eko Pearl Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1216,3 Bedroom Apartment,"Victoria Island, Lagos Island Victoria Island Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1217,Functional 27 Rooms Hotel,Ajose Adeogun Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1218,This Luxuriously Built 3 Bedroom Highrise Apartment,Oniru Victoria Island Lagos,$,"1,000,000",0,1,1,3 beds,0 baths,0 Toilets,Oniru +1219,4 Bedroom Semi Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1220,4 Bedroom Semi Detached House,Off Palace Road Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +1221,3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1222,3 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1223,Atlantic Ocean View 7 Floor Building Over Suites,Avenue Suites Tiamiyu Savage Victoria Island Lagos,$,"33,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1224,Land,Victoria Island Victoria Island Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1225,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,0 baths,0 Toilets,Oniru +1226,4 Bedroom Detached Duplex,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1227,5 Bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1228,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1229,4 Bedroom Massionette,Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1230,4 Bedroom Duplex +bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1231,4 Bedroom Terrace Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Victoria Island +1232, 6 Bedrooms Detached Duplex Converted To Office Space, Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1233,A Very Nice Mini Flat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Oniru +1234,Land,Inside A Secured Estate By Kuboye Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1235,A Massive Office Complex Is Available For Sale,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,$,"100,000,000",1,0,1, beds, baths, Toilets,Waziri Adeola Odeku +1236,Demolishable Property,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1237,2 Bedroom Penthouse,"Victoria, Lagos State Victoria Island Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1238,Contemporary 5bedroom Fully Detached House,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +1239,4 Bedroom Terrace Duplex With 1 Room Bq And A General Swimming Pool,Ologun Agbaje Street Adeola Odeku Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +1240,4 Bedroom Masionette,Victoria Island Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +1241,"Executive 5b/r Terrace Duplex In Oniru, V.i",Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +1242,3 Bedroom Flat + A Room Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1243,4 Bedroom Terrace Duplex,Victoria Island Extension Lekki Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1244,Distress Sale: A 65 Rooms Hotel With Modern Furnishings,Victoria Island Lagos Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1245,Lovely Modified 2 Bedroom Maisonette At 1004 Estate.,"1004, Victoria Island 1004 Victoria Island Lagos",₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1246,3 Bedroom Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1247,Well Maintained 3 Bedroom Maisonette,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1248,Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1249,Newly Built 4 Bedrooms Terrace Maisonette Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1250,4 Bedroom Terrace Duplex,"Victoria Island, Lagos Victoria Island Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1251,2 Bedroom 1004 Estate, 1004 Victoria Island Lagos,₦,"65,000,000",1,0,1,2 beds, baths, Toilets,Other Victoria Island +1252,4bed Flat In 1004 Estate,1004 Estate 1004 Victoria Island Lagos,₦,"85,000,000",1,0,1,4 beds, baths, Toilets,Other Victoria Island +1253,"3 Bedroom Apartment For Sale In Oniru, Victoria Island Going For 120m","Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1254,Exquisite 4 Bedroom Massionette,Oniru Oniru Victoria Island Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1255,4 Bedroom Detached House With 2 Bedroom Guest Challet And 3 Room Bq,Off Idejo Street Adeola Odeku Victoria Island Lagos,₦,"380,000,000",0,0,0,9 beds, baths, Toilets,Waziri Adeola Odeku +1256,Six Bedroom Fully Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,6 beds,6 baths,7 Toilets,Oniru +1257,Twin Duplex 10 Rooms In All,"(ajose Adeogun) , Victoria Victoria Island Lagos",₦,"500,000,000",0,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +1258,Top Notch One Bedroom Mini Flat,Palace Road Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets,Oniru +1259,3 Bedroom Flat,Ajose Adeogun Street Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1260,3 Bedroom Flat 1004 Estate,1004 Estate 1004 Victoria Island Lagos,₦,"75,000,000/day",1,0,0,3 beds, baths, Toilets,Other Victoria Island +1261,Spacious Fully Detached Four Bedroom Duplex With Bq And Pool,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds, baths, Toilets,Oniru +1262,Solid Floor 3000 Square Meters Land,Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1263,(4) Bedroom Luxury Detached Duplexes,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1264,5 Bedroom Terraced House,Victoria Island Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +1265,Newly Finished 3bedroom Apartments,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1266,"Brand New Luxury Built, Serviced And Very Spacious 3 Bedroom Apartment",Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1267,3bedroom Apartment,Victoria Island Lagos,₦,"320,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1268,Vi Office And Residential Apartment,Off Adeola Odeku Ademola Adetokunbo Victoria Island Lagos,$,"100,000,000",1,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1269,2 Bedroom Apartment,Flat 1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +1270,Brand New 4 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1271,1260 Square Meters Of Land,Off Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1272,2wings Of 5bed Room Duplex,Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Oniru +1273,3 Bedroom Apartment,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1274,3 Bedroom Luxury Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +1275,Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1276,Commercial Land With 3no Terrace Houses On 1315 Sq.m Along New Market Road Oniru.,New Market Road Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Oniru +1277,Land,Victoria Island Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1278,5 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1279,A Mini Estate Comprising 8 Units Houses Splited Into 6 Nos 3 Bedroom Terraces,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"850,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1280,800sqm Of Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1281,Tastefully Finished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000/year",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1282,"4,000sqm Land",Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1283,"16,800sqm Land",Ahmadu Bello Way Victoria Island Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1284,1350 Sq.m Of Corner Piece Plot, Oniru Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1285,"17,000sqm Corner Piece Land",Victoria Island Lagos,$,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1286,"2,000sqm Land",Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1287,3 Bedroom Flat With Bq (off Plan),Eighteen65 Residences Idowu Taylor Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1288,4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1289,4 Bedroom Terrace Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1290,3 Bedroom Maisonette,Ligali Ayorinde Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1291,Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1292,"2,500sqm Land",Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1293,"5,300sqm Land",Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1294,Fully Furnished 4 Bedroom Penthouse,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1295,Tastefully Finished And Serviced 2 Units Of 2 Bedroom,Oniru Victoria Island Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +1296,4 Bedroom Maisonette With A Room Boys Quarter,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1297,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1298,600sqm Land,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1299,2 And 3 Bedroom Apartments With Communal Swimming Pool And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1300,2400sqm Of Land,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1301,Distress Sale In Eko Athlantic 3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1302,3 Bedroom Fully Detached With 2 Living Room,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +1303,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +1304,2 Bedroom Apartment,Victoria Island Lagos,₦,"18,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +1305,2000 Square Meter Of Land, Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1306,Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1307,Luxury 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1308,3 Bedroom Flat,Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1309,Land,Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1310,Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1311,Penthhouse 4 Bedrooms Apartment,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +1312,4 Bedroom Maisonette,Victoria Island Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1313,Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1314,Oniru Waterfront 7400sqms Land, Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1315,5300 Square Meter Land, Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1316,Land,Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1317,"20,000sqm Corner Piece Land",Victoria Island Lagos,₦,"17,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1318,600sqm Land,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1319,4000 Square Meter Waterfront Land, Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1320,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1321,Awesome 4 Bedroom Terraced Building With A Bq,Oniru Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +1322,"3 Bedroom Apartment With Communal Pool, Gym",Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1323,4 Bedroom Terrace Duplex +bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1324,4 Bedroom Semi Detached Duplex With 2 Room Boys Quarter,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1325,Exquisitely Finished 4 Bedroom Semi Detached House,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +1326,"4,050sqm Land",Oniru Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1327,"7,400sqm Land",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1328,"7,100sqm Land For Sale",Victoria Island Lagos,₦,"6,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1329,Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Victoria Island Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1330,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1331,4 Bedroom Terrace Duplex,"Off Kofo Abayomi, Victoria Island Lagos",₦,"290,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1332,2 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +1333,1000sqm Land,Dideolu Estate Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1334,3 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1335,Charming Custom Built 4 Bedroom Penthouse,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1336,3 Bedroom Apartment,Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1337,Ready To Build 1400sqm Of Land,Idowu Taylor Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1338,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1339,Resplendent 4 Bedroom Terrace With A Bq,Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1340,4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1341,2 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,2 beds, baths, Toilets,Oniru +1342,5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1343,3 Bedroom Terrace,Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1344,1599.665sqmts Land,Oyinjolayemi Street Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1345,Dazzling Four Bedroom Semi Detached Duplex On Two Floors,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1346,Fully Serviced 3 Bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1347,Contemporary 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1348,Dazzling 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1349,Magnificent 4 Bedroom Terrace.,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1350,Available Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1351,Available Land,Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1352,3 Bedroom Flat,Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1353,5 Bedroom Detached Duplex With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1354,Spacious 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1355,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1356,4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1357,Vivacious 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1358,5 Bedrooms Fully Detached Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1359,Lovely 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1360,Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1361,Prestigious 5 Bedroom Fully Detached House,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1362,Tastefully Finished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Oniru +1363,3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1364,Available Land,Oniru Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1365,3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1366,Top Notch 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1367,Kano Guest House And Liason Office With 72 Rooms And Other Offices Reception,Waziri Ibrahim Crescent Victoria Island Lagos Victoria Island Lagos,₦,"2,300,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +1368,Two Storey Commercial Building Affording,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1369,Block Of 8 Units Of Luxury 3 Bedroom Flat With 1 Room Bq Each,Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +1370,3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +1371,3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1372,Top Notch 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,6 Toilets,Oniru +1373,100 Rooms 5 Stars Hotel,Vi Victoria Island Extension Victoria Island Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +1374,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1375,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1376,4 Bedroom Penthouse,Ligali Ayorinde Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1377,Serviced Furnished 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +1378,Luxury 2 Bedrooms Pent Flat With Swimming Pool And Bq,Off Ajose Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1379,Functional 27 Room Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1380,4 Bedroom Apartment,Kofo Abayomi Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1381,5 Bed Detached Duplex With A Room Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1382,3 Bedroom Off Plan Projects,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1383,Top Quality 3 Bedroom Terrace Duplex,Victoria Island Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1384,Commercial Plot With Development,New Market Road Oniru Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Oniru +1385,An Exquisite 3 Bedroom Apartment,Victoria Lsland Eko Atlantic Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1386,Block Of Flats And Maisonette,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"830,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1387,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1388,Lovely Units Of Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1389,Functional Hotel,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1390,12 Units Of 2 Bedroom Flats And 2 Units Penthouse Mini Flats,Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +1391,535m2 Water Front ( Fenced & Gated )*,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1392,Luxury 3 Bedrooms Flat With Swimming Pool And Bq,Off Ajose Ligali Ayorinde Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1393,5 Floor Newly Built Office Complex,Mma Lucy Akpabio Road Off Muri Okunola Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1394,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1395,Newly Built 4 Bedroom Semi Detached House,Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,5 Toilets,Oniru +1396,Newly Built 4 Bedroom Terrace Maisonette With Swimming Area And Gym,Oniru Oniru Victoria Island Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1397,Newly Built 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +1398,Spacious 5 Bedroom Terrace With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +1399,Luxury 4 Bedroom House With Quality Interior And Excellent Facilities,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +1400,Newly Built 4 Bedroom Maisonette,Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1401,Modern 2 Bedroom Apartment,Victoria Island Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1402,Luxury 3 Bedroom Apartment With Excellent Facilities,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1403,Upscale 3 Bedroom Apartment With Ample Parking Space,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1404,Serviced 3 Bedroom Apartment With Excellent Facilities,Vi Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1405,Newly Built 4 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1406,Furnished 2 Bedroom Blue Water,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets,Oniru +1407,Superbly Finished 4 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1408,Newly Built 4 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1409,Newly Built 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +1410,Newly Built 3 Bedroom Apartment With Ample Parking Space,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1411,Newly Built 5 Bedroom Detached Smart Home,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1412,Premium 3 Bedroom Penthouse With Excellent Facilities,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,1,3 beds,3 baths,4 Toilets,Victoria Island Extension +1413,Spacious 3 Bedroom Flat With Excellent Facilities,Victoria Island Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1414,Spacious 3 Bedroom Apartment With A Swimming Area,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1415,Spacious 3 Bedroom Apartment With Fully Fitted Kitchen,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1416,Spacious 8 Units Of 3 Bedroom Apartment With Swimming Area,Oniru Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Oniru +1417,Luxury 4 Bedroom Terraced Duplex With Fitted Kitchen,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1418,Premium 3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1419,Premium 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oniru +1420,Spacious 4 Bedroom Terrace With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +1421,Luxury 2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +1422,Newly Built 3 Bedroom Apartment In A Serene Neighborhood,Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1423,Newly Built 5 Bedroom Semi Detached Duplex With Amazing Facilities,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1424,Newly Built 4 Bedroom Smart Home,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1425,Luxury 3 Bedroom Terrace Duplex With Fitted Kitchen,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1426,Luxury 4 Bedroom Penthouse With Excellent Facilities,Victoria Island Oniru Victoria Island Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets,Oniru +1427,Newly Built 3 Bedroom Apartment With Ample Parking Space,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,4 Toilets,Oniru +1428,Fully Furnished 4 Bedroom Townhouse,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets,Oniru +1429,Newly Built 10 Units Of 4 Bedroom Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1430,Fully Furnished One Bedroom Studio Maisonette,Victoria Island Victoria Island Lagos,₦,"55,000,000",1,0,1,1 beds,1 baths,2 Toilets,Other Victoria Island +1431,Upscale 3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1432,Luxury 4 Bedroom Detached Duplex With Bq,Dideolu Private Estate Victoria Island Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1433,Premium 4 Units Of 3 Bed Terrace Maisonette And 2 Units Of 4 Bedroom Penthouses,Oniru Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Oniru +1434,Newly Built 5 Bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1435,Spacious 4 Bedroom Terrace With Swimming Pool,Oniru Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1436,The Aspire Luxury 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1437,Newly Built 3 Bedroom Apartment In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1438,4 Bedroom Unit Off Plan,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1439,Newly Built 5 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1440,Fully Serviced 3 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +1441,Furnished 2 Bedroom Apartment With Quality Interior,Oniru Oniru Victoria Island Lagos,₦,"58,000,000",0,0,1,2 beds,2 baths,3 Toilets,Oniru +1442,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1443,Newly Built 4 Bedroom Terrace,Victoria Island Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1444,Newly Built 5 Bedroom Terrace Duplex With Swimming Pool,Oniru Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1445,Upscale 6 Bedroom Penthouse,Oniru Oniru Victoria Island Lagos,₦,"220,000,000",1,0,0,6 beds,6 baths,6 Toilets,Oniru +1446,Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +1447,Luxury 4 Bedroom Terrace Duplex In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +1448,Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1449,Luxury 4 Bedroom Terrace With Excellent Facilities,Victoria Island Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1450,Luxury 2 Bedroom Penthouse In A Serene Neighborhood,Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1451,Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1452,Premium 3 Bedroom Apartment With Swimming Area,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1453,Luxury 3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"158,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1454,Premium 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"130,000,000/year",1,0,0, beds,4 baths,5 Toilets,Oniru +1455,3 Bedroom Off Plan,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1456,Premium 4 Bedroom Penthouse With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +1457,Serviced 2 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +1458,Serviced 3 Bedroom Apartment With Excellent Facilities,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",1,0,0,4 beds,3 baths,3 Toilets,Other Victoria Island +1459,Premium 3 Bedroom Apartment Available For A Mortgage Plan,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +1460,Furnished 2 Bedroom Apartment With Excellent Facilities,Victoria Island Lagos,₦,"130,000,000",0,0,1,2 beds,2 baths,3 Toilets,Other Victoria Island +1461,Luxury 3 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1462,Newly Built 3 Bedroom Flat,Sinari Daranijo Street Ligali Ayorinde Victoria Island Lagos,₦,"165,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1463,Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1464,Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1465,Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1466,Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1467,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1468,2034sqm Land,Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1469,1000sqm Land,Lucy Akpabio Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1470,5bedroom Detached House,Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1471,Water Front Land,Victoria Island Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1472,4 Bedroom Duplex,Adeola Odeku Victoria Island Lagos,₦,"320,000,000",0,0,0,8 beds,8 baths,9 Toilets,Waziri Adeola Odeku +1473,3 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1474,Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1475,2bedroom Serviced Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,2 Toilets,Oniru +1476,Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,0 Toilets,Oniru +1477,6 Bedrooms Detached Duplex Converted To Office Space, Victoria Island Lagos,₦,"460,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +1478,5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1479,Commercial Waterfront Land At Oniru Vi,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +1480,Commercial Waterfront Land At Oniru Vi,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +1481,26 Rooms Hotel,Vi Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",0,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +1482,Tastefully Finished 2 Units Of 2 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"62,000,000/sqm",0,0,0,2 beds,2 baths,2 Toilets,Oniru +1483,A 16 Units Of 1 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1484,A 5bedroom Semi Detached Duplex Is Available,"John Adam Street, Oniru Victoria Island Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets,Oniru +1485,3 Bedroom Fully Furnished Luxury Apartment,G Eko Atlantic Victoria Island Lagos,$,"850,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1486,Block Of Flats Available,"Jakande , Oniru Victoria Island Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1487,3 Bedroom Maisonette,"Block D5, 4th Floor, 1004 1004 Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,4 Toilets,Other Victoria Island +1488,5 Bedroom Detached Duplex In A Serviced Mini Estate,Victoria Island Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets,Other Victoria Island +1489,Newly Built 4 Bedroom Masionette,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,6 Toilets,Oniru +1490,Newly Built 5 Bedroom Semi Detached Duplex,"Oniru, Vi. By 4 Points By Sheraton. Oniru Victoria Island Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1491,A Block Of Detached Houses, Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1492,A Functional 27 Rooms Hotel,Off Ajose Adeogun Street Sanusi Fafunwa Victoria Island Lagos,₦,"1,300,000,000",0,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +1493,Newly Built 3 Bedroom Terraced Duplex With Bq, Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1494,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,7 Toilets,Oniru +1495,4 Bedroom Fully Serviced Detached Duplex,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1496,3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Victoria Island +1497,Estate Land,Eko Atlantic Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1498,Newly Built 2 Bedroom Penthouse Apartment,Victoria Island Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,0 Toilets,Other Victoria Island +1499,Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1500,2 Bedroom Fully Finished Luxury Apartment,H2 Eko Atlantic Victoria Island Lagos,$,"750,000",1,1,1,2 beds,3 baths,3 Toilets,Other Victoria Island +1501,Luxury Furnished 4bedroom Penthouse,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,4 Toilets,Oniru +1502,A Hotel Is Available,Off Ajose Adeogun Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1503,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +1504,3 Bedroom Fully Furnished Sweet Apartment,Boid Eko Atlantic Victoria Island Lagos,$,"960,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1505,Fully Serviced 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1506,Unique Standard Commercial House,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1507,"Joint Venture Odeku* Description: 1400sqm Of Land Location: Adeola Odeku , Victoria Island. Specifications: The Owner Wants 12floors Of Luxury Flats. Value: N1.2bn Title: C Of O Professional Fees: 10% Submit Your Proposal",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1508,Land,Oniru Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1509,Distress Sale For Sale In Victoria Island Lagos For Sale,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"104,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1510,4bedrooms Terrace With Bq And Swimming Pool, Victoria Island Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets,Other Victoria Island +1511,4 Numbers 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1512,Spacious 4 Bed Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,4 Toilets,Oniru +1513,Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1514,3bedroom Detached Buplex With Swimming Pool And Bq,E Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,3 beds,0 baths,4 Toilets,Oniru +1515,"Automated Unconventional 5 Bed Detached House With Swimming Pool, Cinema, Gym And 2 Bqs",Victoria Island Lagos,₦,"330,000,000",1,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1516,Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1517,Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1518,Land,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1519,Land For Joint Venture,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1520,4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1521,Luxury And Executive 3 Bedroom Flat,Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1522,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,3 Toilets,Oniru +1523,Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1524,3000sqm Land,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1525,Land,Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1526,Luxury 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1527,Land,Ahmed Onibido Street Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1528,5120sqm Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1529,8 Units Of 3 Bedroom Apartment With 1 Bq For Each Apartment,Akin Olugbade Victoria Island Lagos Akin Olugbade Victoria Island Lagos,₦,"1,300,000,000",1,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1530,3000sqm Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1531,4bedrooms Semi Detached House With Bq, Oniru Victoria Island Lagos,₦,"155,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +1532,Fully Furnished 3 Bedroom High Rise Apartment,Eko Atlantic Victoria Island Lagos,$,"960,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1533,( Distress Sale ) Land,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1534,Joint Venture Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1535,Contemporary Newly Built 4 Bedroom Terrace With Swimming Pool & Gym,Ligali Ayorinde Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1536,3000sqms Land With A Structure,Akin Olugbade Victoria Island Lagos,₦,"1,350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1537,Land,Oniru Oniru Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1538,Fully Serviced 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"98,000,000",1,1,0,0 beds,0 baths,0 Toilets,Oniru +1539,Luxury 5 Bedrooms Semi Detach Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1540,Joint Venture Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1541,Office Space,Victoria Island Lagos,₦,"45,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1542,Brand New Office Complex Of 3 Open Floors Plan,Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1543,Brand New Fully Fitted And Serviced 2 Numbers Of 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1544,Brand New Serviced Portable 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1545,Brand Newly Built Fully Serviced 4bedrooms Terrace Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1546,2bedrooms And 3bedrooms Apartments,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1547,Land,Tiamiyu Savage Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1548,Most Lucrative Block Of 8 Units 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1549,Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1550,5 Bedroom Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1551,Block Of Flats,Oniru Victoria Island Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1552,5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1553,Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1554,Fully Detached House,Along Balarabe Musa Victoria Island Lagos,₦,"610,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1555,A Detached House,Kofo Abayomi Victoria Island Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1556,Land,Louis Solomon Close Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1557,Newly Elegantly Built 5bedrooms Detached Duplex,Oniru Estate Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1558,2 Units Of 7 Bedroom Detached House,Muri Okunola Street Victoria Island Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1559,Office Complex,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1560,3 Floors Commercial Building,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1561,Block Of 8 Numbers Of 3 Bedroom Flats,Off Sanusi Fafunwa Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1562,Newly Built 3 Bedroom Terrace Duplex And Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1563,Fully Serviced And Vacant 4 Bedroom Apartment,1004 Estate Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1564,Elegantly Newly Built Fully Serviced Block Of 17 Flats Apartments,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1565,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1566,Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1567,Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1568,Land,Dideolu Estate Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1569,Luxury 8 Units Of 3 Bedroom Flats,Akin Olugbade Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1570,Portable 2bedrooms Flat With Inbuilt Bq,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1571,3 Bedroom Maisonette With Bq,Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1572,Fully Commercial Detached House,Akin Adesola Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1573,Land,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1574,3 Bedroom Apartment,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1575,6 Numbers 3 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1576,"11,500sqm Land",Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1577,Spacious 5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1578,Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1579,2 Bedroom Flat,Pearl Tower Eko Atlantic Victoria Island Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1580,Spacious 4 Bedroom Terrace Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1581,Penthouse,Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1582,Building Of 6 Flats,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1583,Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1584,4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1585,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1586,Newly Built 3 Bedroom Apartment,Ologun Agbajr Street Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1587,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1588,Executive 3 Bedroom Apartment,Teslim Elias Adeola Odeku Victoria Island Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +1589,Spacious 3 Bedroom Apartments With Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1590,New Penthouse Suite,Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1591,Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1592,Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1593,Land,Waterfront Land Ozumba Mbadiwe Victoria Island Victoria Island Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +1594,Land,Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1595,Waterfront Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1596,Luxury 4 Bedroom Fully Detached Contemporary Home With 1 Room Bq,Dideolu Private Estate Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1597,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1598,Land,31 Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1599,Land,Along Akin Olugbade Street Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1600,4 Bedroom Terrace Duplex With An Open Terrace And A Room Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1601,Luxury 6 Units Of 6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1602,2numbers Of Detached House,Along Iman Augusto Close Off Olosa St Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1603,8 Numbers Of 3 Bedroom Flat With 8bqs,Adeola Hopewell Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1604,Newly Elegantly Built 5bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1605,"4,600 Sqm Land",Broad Street Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1606,Land,Dideolu Estate Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1607,Newly Built 24 Units Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1608,6bedroom Fully Detached Duplex Plus Boys Quarter,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1609,3 Storey Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1610,"Luxury 5 Bedroom Detached Duplex Plus Bq On 500sqm+, Ocean View",Lekki Right Hand/oniru Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1611,4 Bedroom Terrace Duplex (pcl 199),Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1612,4 Bedroom Semi Detached Duplex (pcl 124),Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1613,Luxurious 6 Units Of 3 Bedrooms Flat (pcl 151),Oniru Victoria Island Lagos,₦,"900,000,000/year",0,0,0, beds, baths, Toilets,Oniru +1614,4 Bedrooms Maisonette And Apartments (pcl 144),Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1615,4 Bedrooms Terrace (pcl 033),Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1616,Newly Built 4 Bedrooms Massionette Duplex House With Bq,Vi Victoria Island Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,5 Toilets,Other Victoria Island +1617,4 Units Of 3 Bedroom Fully Serviced Apartments,Oniru Victoria Island Lagos,₦,"90,000,000",1,0,0,3 beds,0 baths,0 Toilets,Oniru +1618,4 Units Of 3 Bedroom Apartment (pcl 217),Oniru Victoria Island Lagos,₦,"300,000,000",0,0,1,3 beds, baths, Toilets,Oniru +1619,4 Units Of 4 Bedroom Terraced Duplex (pcljuly21 002),Oniru Victoria Island Lagos,₦,"150,000,000/year",0,1,0,4 beds, baths, Toilets,Oniru +1620,9 Units Of 4bedroom Terrace ( Pcl 160),Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +1621,4 Bedrooms Terrace (pcl 032),Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1622,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1623,3 Units Of 5 Bedrooms Semi Detached Duplex (pcl 149),Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets,Oniru +1624,4 Bedroom Terraced Duplex (pcl 218),Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1625,4 Bedroom Massionette (0010a),Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets,Oniru +1626,3 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"90,000,000",1,1,1,3 beds,4 baths,4 Toilets,Oniru +1627,Luxury 2 Bedrooom Apartment,Victoria Island Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1628,Fully Furnished And Serviced 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,5 Toilets,Oniru +1629,"2,000sqm Fenced Land",Not Far From Shoprite Oniru Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1630,5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1631,3bedroom Flat,Oniru Royal Estate Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1632,2 Bedroom Apartment,Estate 1004 Victoria Island Lagos,₦,"68,000,000",0,0,1,2 beds,1 baths,2 Toilets,Other Victoria Island +1633,Luxury 3 Bedroom Ocean View Apartment,Remi Olowude Street. Victoria Island Extension Victoria Island Lagos,₦,"193,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1634,4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Serene Neighborhood Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1635,Commercial Storey Building,Via Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1636,Luxiruy 2 Bedroom Apartment With Bq,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"185,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1637,Luxury 2 Bedroom Ocean View Apartment,"Remi Olowude Street, Lekki Waterfront, Lagos Victoria Island Extension Victoria Island Lagos",₦,"135,000,000",1,0,0,2 beds,3 baths,2 Toilets,Victoria Island Extension +1638,10 Units Of 4bedroom Fully Detached Duplex,Mini Estate Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1639,"3bedroom Apartment In 1004 Estate, At Ozumba Mbadiwe Street Victoria Island Lagos.",Estate 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Victoria Island +1640,Brand New Serviced 3 Bed Apartment + Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1641,Newly Built 4 Bedroom Flat,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1642,3 Bedroom Flat,Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1643,800sqm Land In Oniru,Oniru Victoria Island Lagos,₦,"296,000,000",0,0,0, beds, baths, Toilets,Oniru +1644,Newly Built 4 Bedroom Terraced Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1645,Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Oniru +1646,Top Quality 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +1647,Smartly Located Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1648,Parcel Of Land,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1649,Prime Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1650,2007sqm Land,Bislhop Kale Street Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1651,10 Bedroom House,3&4 Water Corporation Road Landmark. Oniru Victoria Island Lagos,$,"120,000/sqm",0,0,0,10 beds,10 baths,10 Toilets,Oniru +1652,Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1653,3 Bedrooms Luxury Terrace With Maidroom(fully Serviced),Off Ahmadu Bello Way Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1654,"Almost Completed 4bed Room Spacious Semi Detached Duplex, A Room Bq",Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1655,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1656,5 Bedroom Detached House,Tiamiyu Savage Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1657,Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +1658,Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +1659,Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1660,Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +1661,5 Bedroom Luxury Terrace, Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1662,Joint Venture Land,Oniru Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1663,Block Of Flats,Victoria Island Extension Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1664,Brand New 3 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1665,"2 Bedroom Serviced Flat & A Bq On 1st Floor (lift, Pool, Gym)",Oniru Estate / Akiogun Road Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,0 Toilets,Oniru +1666,8 Bedrooms Fully Detached House With Gatehouse,Karimu Kotun Victoria Island Lagos,₦,"750,000,000",0,0,0,8 beds, baths,6 Toilets,Other Victoria Island +1667,15units Of 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1668,Serviced Compact/portable 3bedroom Apartment, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1669,2 Bedrooms Apartment (fully Serviced),Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +1670,Office Complex,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1671,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1672,Detached 5 Bedroom House(all Ensuite ) With 3 Rooms Bq,Vgc Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",1,0,1,5 beds,5 baths,5 Toilets,Victoria Island Extension +1673,4 Bedrooms Terrace Duplex With Maidroom(fully Serviced),Oniru Victoria Island Lagos,₦,"138,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1674,14 Units Of 4 Bedrooms En Suite With Walk In Closets And A Bq Semi Detached Houses,Teslim Elias Street Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1675,Spacious 3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +1676,"6 Beds,bq,laundry Room, Penthouse Duplex On The 6th & 7th Floor 650m . 4 Car Park, Sw Pool, Gym, Cctv, 24hrs Ligh, Etc. Oniru Estate Vi Extension",Oniru Estate Vi Extension Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,6 Toilets,Victoria Island Extension +1677,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,1,3 beds,4 baths,4 Toilets,Oniru +1678,15 Number Flats,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1679,Super Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1680,Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1681,Land,Off Ajose Adeogun Street Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1682,5 Bedrooms Semi Detached Duplex With Maidroom(brand New),Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +1683,11 Units 3 Bedroom Service And Fully Furnished Luxury Flat With Bq,Kofo Abayomi Victoria Island Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1684,3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1685,3 Bedrooms Apartment With Maidroom (fully Serviced),Victoria Island Extension Victoria Island Lagos,₦,"190,000,000",1,1,1,3 beds,3 baths,4 Toilets,Victoria Island Extension +1686,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1687,Eko Athlantic 2 Bedroom And 3 Bedrooms Luxury Apartment, Eko Atlantic Victoria Island Lagos,$,"1,245,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1688,3 Bedroom Penthouse Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"2,000,000",1,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1689,"An Executive, Beautiful And Functional 27 Rooms Hotel With Swimming Pool At Off Ajose Adeogun Street, Vi, Lagos.",Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1690,5 Bedroom High Toned Luxury Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1691,3 Bedrooms Terraced Duplex,Vgc Estate Victoria Island Extension Victoria Island Lagos,₦,"400,000,000/year",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1692,Land,Isheri North G.r.a Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1693,3 Bedroom Luxury Flat With Boys' Quarter,Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1694,Beautiful 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1695,Two Story Commercial Building:240 Square Meter Open Plan Office Space Per Floor,"Rauf Talyor Close, Off Adeola Odeku Street, Victoria Island, Lagos State Adeola Odeku Victoria Island Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1696,3 Bedroom Terrace Duplex,E Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1697,Tastefully Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1698,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1699,Fully Serviced 4 Bedroom Terrace Duplex With Private Elevator, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1700,4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1701,4 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1702,Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1703,Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +1704,Brand New 4 Bedroom Fully Fitted Terrace House,Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1705,4 Bedroom Maisonette With Bq,Victoria Island Adeola Hopewell Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1706,Luxury 3 Bedroom Semi Detached Duplex With Bq,Victoria Island Akin Adesola Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1707,5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Oniru Lekki Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1708,Land,Eko Atlantic Victoria Island Lagos,$,"1,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1709,Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1710,3 Bedroom Maisonette,Fatai Durosimi Etti Street Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1711,Hotel,1004 Victoria Island Lagos,$,"150,000,000",1,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1712,3 Bedroom Maisonette Duplex With Bq,Eko Hotel Adeola Odeku Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +1713,3 Bedroom Apartment With Bq,Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1714,Luxury 3 Bedroom Apartment With A Room Bq (high Rise),Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +1715,3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,5 Toilets,Oniru +1716,5 Bedroom Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets,Oniru +1717,Luxury 3bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1718,Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +1719,Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +1720,Land Measuring 1300sm,Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1721,4 Bedroom Detached House With Bq,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,5 baths,6 Toilets,Oniru +1722,Luxury 4 Bedroom Terrace Duplex With Roof Top,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets,Oniru +1723,Luxury 4 Bedroom Massionette With A Bq,Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +1724,Luxury Smart 5bedroom Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths, Toilets,Other Victoria Island +1725,Petroleum Products Import Licence,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1726,A Beautiful 3 Bedrooms Flat,1004 Estate 1004 Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1727,Land,Off Adeola Odeku Street Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1728,Joint Venture,Teslim Elias Close Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1729,Joint Ventures Residential Land,Victoria Island Lagos,₦,"1,000,000,000",1,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1730,Land,Akin Olugbade Victoria Island Lagos,₦,"415,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1731,Crude Oil Lifting License,Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1732,Land,Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1733,Super Luxury 3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"850,000",1,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1734,Lovely Joint Venture,Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1735,Joint Venture,Sinari Daranijo Street Victoria Island Lagos,₦,"885,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1736,Hotel,Vi Victoria Island Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1737,Land,Chief Yesufu Abiodun Street Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1738,Lovely Joint Venture,Dideolu Estate Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Oniru +1739,A Demolishable Structure,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1740,A Parcel Of 26000sqm Land,Victoria Island Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1741,8 Units Of 3 Bedrooms Apartment Plus Bq Each,Akin Olugbade Street Victoria Island Lagos Akin Olugbade Victoria Island Lagos,₦,"900,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1742,2000 Sqm Joint Venture Land,Oba Oniru Oniru Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Oniru +1743,Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1744,3 Bedroom Flat,30akin Ogunlewe Victoria Island Lagos Ligali Ayorinde Victoria Island Lagos,₦,"20,000,000/day",0,0,0,4 beds,3 baths, Toilets,Other Victoria Island +1745,Newly Built Luxury Furnished 3bedroom Apartment & Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +1746,800+ Sqm Bareland,Off Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +1747,Clean 3bedroom Apartment,Off Fourpoint Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +1748,3 Bedroom Off Plan Maisonette,Ajose Adeogun Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1749,Four (4) Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +1750,Five (5) Bedroom Terrace Duplex,Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds, baths,6 Toilets,Other Victoria Island +1751,Newly Built 3 Bedroom Luxury Maisonette With A Bq,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1752,Beautifully Designed 3 Bedroom Terrace Duplex With Bq And Swimming Pool,Victoria Island Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1753,Four (4) Bedroom Terrace Duplex In A Secure Estate,Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1754,Four (4) Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1755,Beautifully Built 3 Bedroom Terrace Duplex + Maids Room,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1756,2 & 3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths, Toilets,Victoria Island Extension +1757,Newly Built Classic 3 Bedroom Serviced Flat,Z Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1758,Four (4) Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +1759,Newly Built 3 Bedroom Serviced Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1760,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +1761,"2 Office Buildings On A Land Mass Having An Area Of Approximately 1,850sqm",Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1762,Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1763,5 Bed Fully Detached Duplex With Swimming Pool,Stunning Detached Duplex With Bq And Swimming Pool Located In One Of The Most Sort After Location Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +1764,Luxury 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1765,3 Bedroom Apartment,F Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +1766,4 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets,Oniru +1767,4 Bedroom Serviced Terraced House For Sale In Oniru Estate,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets,Oniru +1768,4 Bedroom Terraced Duplex,Z Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,5 baths,6 Toilets,Oniru +1769,Fully Serviced 3 Bedroom Apartment,E Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Victoria Island +1770,Newly Built Fully Serviced 3 Bedroom Terraced House,D Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +1771,Fully Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"170,000,000",1,0,0,3 beds,5 baths,4 Toilets,Other Victoria Island +1772,3 Bedroom Fully Serviced Flat,Oniru Victoria Island Lagos,₦,"95,000,000",1,0,0,3 beds,4 baths,5 Toilets,Oniru +1773,4 Bedroom Serviced Terraced House For Sale In Oniru Estate,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,5 baths,6 Toilets,Oniru +1774,Water Front Land,Waterfront Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1775,Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1776,Massive 4 Bedroom Terrace House.,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1777,5 Bed Penthouse Apartment ( With Furnitures ),Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1778,30 Rooms Hotel,Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +1779,"For Sale: Brand New Fully Serviced 14 Units Of Luxury 3 Bedrooms Flat In Victoria Island, Lagos","Victoria Island, Lagos Victoria Island Extension Victoria Island Lagos",₦,"1,820,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1780,"For Sale: Victoria Island Lagos 36,570sqm Multiple Cornerpieces Bareland","Ahmadu Bello/akin Adesola/tiamiyu Savage/karimu Kotun Cornerpieces, Victoria Island, Lagos, Nigeria Ahmadu Bello Way Victoria Island Lagos",$,"75,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1781,"For Sale: 2,100sqm Commercial Plot Opposite Silverbird, Ahmadu Bello Way, Victoria Island, Lagos","Opposite Silverbird Galleria, Ahmadu Bello Way, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1782,"Distressed Sale Of 7,000sqm Bare Land","Off City Of David Church Road,, Oniru, Victoria Island Extension, Lagos Oniru Victoria Island Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1783,"1,839sqm Waterfront Plot Off Ligali Ayorinde, Victoria Island, Lagos, Nigeria","Off Ligali Ayorinde Street, Victoria Island, Lagos Ligali Ayorinde Victoria Island Lagos",₦,"828,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1784,Land,"Akarigbere Close, Off Idejo Street Adeola Odeku Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1785,New Luxury 4 Bedroom Maissonete With Bq,"Inside Oniru Estate, Oniru Victoria Island Lagos",₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1786,"For Sale: 1676.96sqm Bareland Off Adeola Odeku , Victoria Island, Lagos, Nigeria","Off Adeola Odeku Street, Victoria Island, Lagos, Nigeria Victoria Island Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1787,New Luxury 4bedroom Maisonette With Bq,"Oniru Estate, Oniru, Lagos Oniru Victoria Island Lagos",₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +1788,24 Units Top Notch Luxury 3 Bedroom Apartments Plus Bq And 2 Pent Houses (off Plan),"Oniru Estate, Oniru Victoria Island Lagos",₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +1789,Massive Land With Building Approval,"Multiple Cornerpieces Of Akin Adesola/ahmadu Bello/tiamiyu Savage/karimu Kotun Streets, Victoria Island, Lagos, Nigeria Akin Adesola Victoria Island Lagos",$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1790,Block Of 6 Units 3 Bedrooms Flats + Bq,"Oniru Estate, Victoria Island Extension Oniru Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1791,4 Bedroom Townhouse With Service Quarters,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1792,4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1793,Luxury Semi Furnished 3 Bedroom Apartments With Ample Terrace Area,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"950,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +1794,"Plots, Acres And Hectare Size Land",Eko Atlantic Victoria Island Lagos,$,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1795,A Well Serviced Commercial Space,Oniru Victoria Island Lagos,₦,"13,500,000",1,0,0,0 beds,0 baths,1 Toilets,Oniru +1796,A Fully Serviced 4bedroom Penthouse With Servant Quarter And Swimming Pool,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"180,000,000/month",1,0,0,5 beds,6 baths,6 Toilets,Oniru +1797,"A Fenced Land Measuring 2,700sqm Accommodating An Old Structure/duplex Off Adeola Odeku Street, Victoria Island, Lagos State.",Goriola Street Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1798,1400sqm Land,Ahmed Onibudo Street Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1799,Available Land,Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1800,840sqm Land,Off Idejo Street Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1801,Available Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1802,5 Bedroom Detached House,Bishop Aboyade Cole Street Victoria Island Lagos,₦,"790,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1803,Available Land,Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1804,Available Land,Bosun Adekoya Stree Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1805,1260sqm Land,Ahmed Onibudo Street Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1806,Blocks Of Flats House,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1807,Available Land,"Oyinjolayemi Street, Victoria Island Lagos",₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1808,Available Land,Off Bishop Oluwole Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1809,2900sqm Land,Kofo Abayomi Street Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1810,8 Units Of 3bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1811,Commercial 2600sqm Land,Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1812,Available Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1813,36570sqm Land,Victoria Island Lagos,$,"2,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1814,Available Land,Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1815,Commercial 7500sqm Land,Ajose Adeogun Street Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1816,3000sqm Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1817,Available Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1818,Office Complex,Adeola Odeku Victoria Island Lagos,$,550/sqm,0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1819,Commercial Building,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1820,4452sqm Land,Chief Yesufu Abiodun Way Oniru Victoria Island Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1821,Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1822,4 Bedroom Town House With In Built Bq.,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1823,Available Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1824,Newly Completed Block Of 8 Nos 3 Bedroom Luxury Flats With A Room Bq,Oniru Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1825,19 Units Flats And Mansionate,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1826,Available Land,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1827,Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1828,Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1829,4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1830,A Detached House,Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1831,Plot Of Land,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1832,Available Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1833,Available Land,Adeola Odeku Victoria Island Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1834,1008.48sqm Land,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1835,5 Bedroom Detached Duplex,Festival Road Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1836,"5 Bedroom Duplex, With 2bq",Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets,Waziri Adeola Odeku +1837,947sqm Land,Bishop Kale Close Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1838,"Land Measuring 5,300m2",Oniru Victoria Island Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1839,Available Land,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1840,Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1841,Available Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1842,Available Land,Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1843,A Two Story Building,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1844,Available Land,Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1845,Available Land,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1846,"7,000sqms Water Front Land",Victoria Island Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1847,Available Land,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1848,5 Bedroom Detached Duplex,Festive Road Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1849,2 Units Of Structure,Muri Okunola Street Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1850,Available Land,Amen Estate Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1851,3 Bedroom Flat,Eko Atlantic Victoria Island Lagos,$,"850,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1852,2344sqm Land,Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1853,6 Bedroom Detached With 2 Bedroom Guest Chalet And Bq,Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +1854,16000sqm Land,Ahmadu Bello Way Victoria Island Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1855,Available Land,Akin Olugbade Victoria Island Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1856,Two Unit Of Detached House,Muri Okunola Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1857,800sqm Fenced Land,Odudu Eleyiwo Road Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1858,Available Land,Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1859,Available Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1860,Available Land,Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1861,"Newly Built 3 Bedroom Terrace Duplex,",Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1862,Available Land,Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1863,Block Of 6 Units Of 3 Bedrooms Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1864,Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1865,Available Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +1866,A Property Comprising A Dilapidated Two Storey Building,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1867,Vacant Old Block Of 12 Units Of 2 Bedrooms Flats,Adeola Hopewell Victoria Island Lagos,₦,"900,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +1868,1400sqm Corner Piece Dry Fenced Land,Oniru Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1869,3 Bedrooms Terraces Duplex Plus A Bq,Adeola Odeku Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +1870,Available Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1871,Commercial Building,Ligali Ayorinde Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1872,3 Bedroom Flat / Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +1873,5 Bedroom Detached Duplex With 2room Bq,Etim Iyan Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1874,1600sqm Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"320,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1875,Available Land,Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1876,1473.038 Sqm Land,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1877,4450sqm Land,Oniru Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1878,Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1879,Available Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1880,Available Land,Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1881,Mixed Use Waterfront 7353sqm With Additional 3000sqm,Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1882,2173sqm Land,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1883,Vacant Block Of 8 Units Of 3 Bedroom Flats,Adeola Hopewell Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1884,3100.76sqm Commercial Land,Chief Yesufu Abiodun Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1885,2500sqm Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1886,Commercial Building,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +1887,Available Land,Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1888,4000sqm Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1889,A Functional Hotel Of 35rooms,Eko Hotel Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1890,Available Land,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1891,8475.620sqm Waterfront Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1892,Available Land,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1893,Available Land,Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1894,Commercial Building,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1895,Newly Built 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1896,5 Bedroom Detached House With A Bq,Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1897,A Block Of 6 Units,Musa Yar Adua Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1898,7300sqm Land,Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1899,Available Land,Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1900,Available Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1901,Available Land,Uzomba Mbadiwe Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1902,4 Bedroom Spacious Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1903,5 Bedroom Detached Duplex,Ligali Ayorinde Victoria Island Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1904,Commercial Land,Kofo Abayomi Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1905,Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1906,1080sqm Land,Off Muri Okunola Street Victoria Island Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1907,Available Land,Ligali Ayorinde Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1908,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1909,Available Land,T.y Danjuma Street Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1910,Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1911,Available Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1912,30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +1913,2 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +1914,30 Bedroom Hotel,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +1915,The Oriental Hotel,Oniru Victoria Island Lagos,$,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1916,A Nice 400 & 450sqm Plot,Oniru Estate Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1917,1200 Sqm Of Land,Off Kuboye Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1918,Parcel Of Land (water Front),Oniru Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1919,Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1920,Luxury 3 Bedroom Apartment With A Bq,D Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1921,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1922,4 Bedroom Terraced Duplex With A Bq,D Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1923,5 Bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +1924,Luxury 4 Bedroom Terrace With A Bq,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1925,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,3 baths,5 Toilets,Other Victoria Island +1926,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1927,Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +1928,4 Bedroom High Toned Luxury Terrace Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1929,Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1930,4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1931,Spacious 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +1932,Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +1933,Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Lekki Oniru Extension Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +1934,Neat 4 Bedroom Semi Detached Luxury Apartment,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +1935,Gorgeous Massionette At Affordable Price,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +1936,4 Bedroom Detached Duplex In Well Planned Estate,Vgc Harris Drive Victoria Island Extension Victoria Island Lagos,₦,"98,000,000",0,1,1,4 beds,4 baths,4 Toilets,Victoria Island Extension +1937,Newly Built Serviced 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +1938,"Size 1,500 Sqms Fenced Land",Off Mabogunje Street Oniru Estate Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Oniru +1939,800sqm Residential Land,Oniru Victoria Island Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1940,Functional 27 Rooms Hotel,Off Ajose Adeogun Street Victoria Island Lagos,$,"3,500,000",0,0,1, beds, baths, Toilets,Other Victoria Island +1941,5bedroom Detached Duplex With Bq,Victoria Island Lekki Lagos Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets,Other Victoria Island +1942,4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1943,5bedrooms Fully Detached Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,5 beds, baths, Toilets,Oniru +1944,3 Bedrooms Flat With Attached Bq,Off Ajose Adeogun Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +1945,5 Storey Commercial Building,Off Ademola Adetokunbo Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1946,2000m2 Land,Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1947,Brand New Fully Fitted And Serviced:block Of Flats And Maisonette,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1948,A Well Built 3 Storey Building With Ground Floor Area Of About 250sqm,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1949,Waterfront Bare Land,Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1950,5322sqm Land,Off Idejo Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1951,Brand New 4 Bedrooms Duplex,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1952,4200sqm Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1953,2262sqm Land,Off Karimu Kotun Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1954,Bareland,Eko Atlantic Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1955,Fully Serviced Tenanted Fully Fitted 3 Bedroom Apartment With A Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1956,6000sqm Waterfront Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1957,1523sqm Land,Off Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1958,2400sqm Land With Old Detached House With Bq,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1959,3 Bedroom Detached Commercial House, Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1960,Detached House,Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1961,A 2 Storey Branch Premises,Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1962,1781sqm Land,Ajose Adeogun Street Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1963,5 Bedrooms Fully Detached House With Maids Quarters,Ajose Adeogun Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +1964,4 Bedroom Apartment (cluster A),1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1965,New 4 Bedroom Semidetached House,Victoria Island Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +1966,7 Bedroom Detached House With 2 Large Living Room,Off Bishop Oluyole Victoria Island Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets,Other Victoria Island +1967,4523sqm Corner Piece Land,Off Ozumba Mbadiwe Street Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1968,2533sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1969,5400sqm Land,Ligali Ayorinde Victoria Island Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1970,8 Units Of 3 Bedroom Apartments,Off Ademola Adetokunbo Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1971,5 Bedroom Detached Duplex, Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1972,7350sqm Waterfront Land,Victoria Island Extension Victoria Island Lagos,₦,"2,793,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +1973,Available Land,Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1974,Luxurious 3 Bedroom Fully Fitted Fully Equipped Maisonette Apartment, Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +1975,5000sqm Land,Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1976,4700sqm Land,Adeola Odeku Victoria Island Lagos,₦,"3,700,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1977,A Waterfront 5 Star Luxury Hotel,Ozumba Mbadiwe Victoria Island Lagos,$,"220,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1978,"12,000sqm Waterfront Fantastic Operational Business With Private Jetty",Ozumba Nbadiwe Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1979,6 Bedrooms Detached Duplex Converted To Office Space,Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1980,Newly Built 25 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1981,Hotel,Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1982,6units Of 3bedroom Flats Commercial Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1983,4941sqm Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +1984,3300sqm Waterfront Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1985,4000sqm Land With Old 7 Bedrooms Detach House With Bq,Off Adeola Odeku Victoria Island Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +1986,2450sqm Land,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1987,Cornerpiece Detached House,Off Ligali Ayorinde Street Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1988,"Brand New 3 Bedroom Apartment With Bq, Serviced",Adeola Odeku Victoria Island Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +1989,3 Bedroom Flat,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1990,3048sqm Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +1991,Luxury Units Of 3 & 4 Bedroom Houses,Oniru Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1992,1900sqm Land,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1993,6 Units Of 3 Bedroom Apartments,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +1994,27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1995,Available Land,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +1996,2 Nos. Duplexes (a Commercial And Residential Duplex),Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +1997,3 Bedroom Apartment On A Top Floor In A Beautiful High Rise With Views Of The Ocean,Victoria Island Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +1998,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +1999,5322sqm Land,Off Idejo Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2000,6 Rooms Fully Detached Duplex Converted To Office Spaces,Victoria Island Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Victoria Island +2001,6 Floors Highrise Commercial Towers,Victoria Island Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2002,2 Floors Commercial Building,Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2003,2 Bedroom Luxury Apartment,Old Victoria Island Victoria Island Lagos,₦,"165,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +2004,Compound With 2 Detached Buildings,Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2005,3 Bedroom With Bq And Swimming Pool,Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2006,Available Land,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2007,Detached House(corner Piece),Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2008,3000sqm Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2009,1817sqm Commercial Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2010,5000m2 Land,Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2011,Commercial Property,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2012,Available Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2013,Spacious Office Space,Off Ajose Adeogun Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2014,12000sqm Fantastic Operational Business Property,Ozumba Mbadiwe Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2015,30 Room Hotel,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2016,4000sqm Commercial Property,Off Ahmadu Bello Way Victoria Island Lagos,$,"8,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2017,An Office Floor On 3 Blocks,Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2018,5000sqm Fenced Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2019,Fully Fitted 5 Bedroom Luxury Waterview Terraces With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2020,5000sqm Fenced Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +2021,3000sqm Land,Akin Olugbade Street Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2022,3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,₦,"30,000,000/year",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2023,750sqm Land,Ajose Adeogun Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2024,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2025,5 Bedroom Detached House With Bq,Off Bishop Oluyole Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2026,Brand New Fully Fitted And Serviced: 2 Nos Of 4 Bedrooms Maisonette With Bq And 6 Nos Of 3 Bedrooms Flat With Bq,Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Oniru +2027,New 4 Bedroom Semi Detached House,Adeola Odeku Victoria Island Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2028,3300sqm Corner Piece Land,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2029,3 Blocks Detached Houses With Penthouses And Bqs Perfect For Residential And Official/commercial Uses,Off Ajose Adeogun Vi Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2030,A 26 Suites Non Functional Hotel On 1706sqm Of Land At A Strategic Location,Oniru Oniru Victoria Island Lagos,₦,"1,300,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets,Oniru +2031,Contemporary 5 Bedrooms Semi Detached Duplex In A Secured Location In Oniru,Oniru Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +2032,Newly Built Beautifully 5 Bedroom Fully Detached,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +2033,3 Bedroom Apartment On The 11th Floor,Eden Heights Off Adeola Odeku Victoria Island Lagos,₦,"320,000,000",1,1,0,3 beds,4 baths,0 Toilets,Waziri Adeola Odeku +2034,Full Serviced 3 Bedroom Pad,T Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2035,A Well Designed And Spacious 4 Bedroom Terrace Duplex In A Secured Estate In Oniru,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +2036,"4 Bedroom Luxury Detached Duplex With Internal/external Facilities Include: 2 Living Rooms Fully Fitted Kitchens (extractor, Kitchen Cabinets, In Built Cooker Unit Etc)",Oniru Oniru Victoria Island Lagos,₦,"1,850,000,000",0,1,0,4 beds,5 baths,7 Toilets,Oniru +2037,New 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2038,4 Bedroom Apartment,Victoria Island Lagos,$,"600,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +2039,Newly Built 4bedroom Terrace With Maid’s Quarters,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2040,Brook's Channel Points Apartments,Sinari Daranijo Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2041,Fully Serviced 3 Bedroom Flats,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets,Victoria Island Extension +2042,800 Sqmtrs Of Residential Land,"Oniru Private Estate, Oniru Oniru Victoria Island Lagos",₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2043,Newly Built3 Bedroom Flat + 1 Room Bq,1 Minute Walk From Landmark Beach And Film House. Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2044,Sandfilled Strategic Waterfront Land,Victoria Island Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2045,Available Land 260k/ Sqm,Musa Yaradua Crescent Victoria Island Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2046,Available Land,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2047,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2048,Land With Demolish Able Building,Ajose Adeogun Str Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2049,Newly Well Built Grade A Open Plan Office,Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +2050,Newly Built 5bdrm Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2051,6bedroom Detached House With Bq,Off Amodu Ojikutu Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2052,800 Square Meters Land,Oniru Victoria Island Lagos,₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2053,Newly Built Hotel With C Of O,Victoria Island Lagos,₦,"3,500,000,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +2054,Land With C Of O,Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Oniru +2055,Nice 3bedroom Penthouse,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2056,9 Bedroom Detached House,Medical Close Off Olabode George Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2057,3 Units Of 4 Bedroom Maisonette Duplex With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2058,3bedroom Flat With C Of O,Eko Pearl Tower Eko Atlantic Victoria Island Lagos,₦,"650,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2059,5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2060,12 Units Of 3 Bedroom Flats With Bq (payment Plan),Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2061,6 Bedroom Detached House With 3room Bq,Sinari Adaranijo Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2062,Plots Of Land,"...,. Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets,Oniru +2063,2000sqm Land, Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2064,Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2065,8 Units Of Serviced 3bedroom Flat With Bq,Akin Olugbade Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2066,"Functional 27 Room Hotel Off Ajose Adeogun Street, Vi, Lagos",Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2067,Luxury 3 Bedroom Apartment With A Bq + A Swimming Pool.,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2068,Ultra Luxury 3 Bedroom Penthouse + A Maids Room With World Class Facilities.,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"900,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2069,7 Bedroom Waterfront Palatial Mansion With Jetty In Banana Island,Victoria Island Lagos,₦,"4,500,000,000",0,0,1,7 beds, baths, Toilets,Other Victoria Island +2070,Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq In A Secured Estate,Gated Estate Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2071,Serviced & Flawlessly Finished 3 Bedroom Flat With Bq,Gated Estate Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2072,Flawlessly Finished 3 Bedroom Flat With Bq In A Gated & Serviced Estate,Gated Estate Ligali Ayorinde Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2073,Exquisitely Built 4 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Gated Estate Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2074,Magnificently Finished 4 Bedroom Detached Duplex With Bq In A Gated Estate,Gated Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2075,4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,1,4 beds,0 baths,0 Toilets,Oniru +2076,Bare Land,Landmark Road Ligali Ayorinde Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2077,Bare Land,Ligali Ayorinde Road Ligali Ayorinde Victoria Island Lagos,₦,"5,600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2078,Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Gated Estate Victoria Island Lagos,₦,"138,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2079,Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2080,Flawlessly Finished 5 Bedroom Detached Duplex With Bq & Swimming Pool,Gated Estate Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2081,Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Victoria Island Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +2082,Magnificently Finished 4 Bedroom Terrace Duplex With Guaranteed Power Supply,Gated Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2083,5 Bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,1,5 beds,0 baths,0 Toilets,Oniru +2084,Brand New Furnished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +2085,Luxury 3 Bedroom Flat,Victoria Island Lagos,$,"1,000,000",0,0,1,3 beds,5 baths,5 Toilets,Other Victoria Island +2086,Luxurious Super Deluxe 2 Bedrooms Apartments,Jide Oki Street Victoria Island Lagos,₦,"150,000,000",1,1,1,2 beds,3 baths,4 Toilets,Other Victoria Island +2087,Newly Built 3 Bedroom Flat With Bq,Eighteen 65 Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2088,Luxury High Rise Building,Adeola Odeku Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2089,C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2090,C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2091,Newly Built 3 Bedroom Maisonette Duplex With Bq,Eighteen 65 Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2092,C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2093,Lovely Units Of Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",1,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2094,Block Of Eight Units Of Three Bedroom Flats,Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets,Waziri Adeola Odeku +2095,A Building With 2 Floors,Sanusi Fafunwa Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2096,Newly Built 4bedroom Duplex With Bq In Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2097,Joint Venture Bare Land 5200sqm,Ligali Ayorinde Victoria Island Lagos,₦,"4,200,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2098,A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +2099,4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2100,Newly Built 6 Unit Of 3bedroom Flats And 2unit Of Mansionate With Swimming Pool And Gym,Estate Victoria Island Extension Victoria Island Lagos,₦,"1,100,000,000",1,1,1,3 beds,4 baths,4 Toilets,Victoria Island Extension +2101,Newly Built 4bedroom Semi Detached Duplex In A Serene Environment,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets,Oniru +2102,Four Floors Of Office Space,Off Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2103,A Commercial Block On 6 Floors With Ample Parking Space,Victoria Island Saka Tinubu Victoria Island Lagos,₦,"2,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2104,5bedroom Fully Detached House And Spacious,Muri Okunola Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +2105,A Lovely 5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,4 Toilets,Oniru +2106,4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2107,5 Bedrrom Detached Duplex On 750sqm,Muri Okunola Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +2108,"Plot Of Land Measuring 2,900 Square Meters", Kofo Abayomi Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2109,A Newly Built 4bedroom Duplex With A Room Bq,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Victoria Island +2110,Newly Built Four Bedroom Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +2111,Luxury 4bedroom Duplex Semi Detached Duplex,Z Victoria Island Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Victoria Island +2112,A 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +2113,Mini Estate,Chief Yusuf Abiodun Street Oniru Victoria Island Lagos,₦,"1,900,000,000",1,0,0,5 beds,5 baths,6 Toilets,Oniru +2114,Building On The 5th Floor For Sale,1004 Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2115,Oniru Land,Off Palace Road Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2116,3 Bedroom Luxury Terrace Duplexes,Off Ozumba Mbadiwe Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +2117,"2, 3 And 4 Bedroom Luxury Apartment", Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +2118,4 Bedroom Luxury Detached Duplexes In Oniru,Palace Road Oniru Estate Victoria Island. Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +2119,1 Bedroom Apartments,Dubai Victoria Island Lagos,$,"200,243",1,1,0,1 beds,3 baths,3 Toilets,Other Victoria Island +2120,3 4 Bedroom Beautiful Finished Townhouses,"Nshama Town Square, Dubai. Victoria Island Lagos",$,"410,960",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2121,4 Bedrooms Terrace Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets,Other Victoria Island +2122,4 Bedroom Mansionette With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +2123,"Fully Serviced 4 Bedroom Terrace Duplex With Private Elevator, Roof Terrace,gym And Pool", Oniru Victoria Island Lagos,₦,"300,000,000",1,1,1,0 beds,5 baths,5 Toilets,Oniru +2124,Newly Built 10 Units Of 3 Bedroom Maisonettes With Bqs,Visage Apartments Ademola Adetokunbo Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2125,4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2126,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2127,5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2128,5 Bedroom Detached Duplex And 1 Bq,Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2129,Luxury 4 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"189,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2130,Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2131,Land,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2132,16 Units Of 3 Bedroom Flats,Idowu Martins Street Victoria Island Lagos,₦,"2,800,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2133,Land,Akin Olugbade Victoria Island Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2134,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2135,Lavishly Finished 4 Bedrooms Semi Detached Duplex With A Room Bq,Chevron Alternative Route Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2136,2835.902sqm Land,"Akin Olugbade, Victoria Island Akin Olugbade Victoria Island Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2137,4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2138,5 Bedroom Fully Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2139,3 Bedroom Maisonette Duplex With Bq (certificate Of Occupancy) Eighteen 65,Fatai Durosinmi Victoria Island Lagos,₦,"130,000,000/day",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2140,4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2141,Luxury 4 Bedroom Terrace Duplex With Pool,Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets,Other Victoria Island +2142,3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2143,Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2144,4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2145,4 Bedroom Terraced Duplex,Hh Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2146,5 Bedroom Fully Detached Duplex With A Pent House,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2147,1 Bedroom Maisonette,Victoria Island Lagos,₦,"60,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +2148,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2149,6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +2150,Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",1,0,0,5 beds,5 baths,6 Toilets,Oniru +2151,Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,3 beds,3 baths,4 Toilets,Oniru +2152,3 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2153,3 Bedrooms Apartment,Victoria Island Lagos,₦,"110,000,000",1,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2154,3 Bedroom Terraced Duplex,S Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2155,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2156,5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2157,Luxury 4 Bedroom Terrace Duplex In Oniru Vi,Oniru Vi Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets,Oniru +2158,Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2159,Clean 3bedroom Flat With 1 Room Bq, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2160,5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2161,5 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2162,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2163,Exquisitely Finished Luxury 4 Bedroom Terrace Duplexes,"Around Kofo Abayomi, Kofo Abayomi Victoria Island Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2164,Luxury 6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +2165,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +2166,Luxury 4 Bedroom Terrace,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2167,5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2168,3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2169,Luxury Offplan 3 Bedroom Apartment,"Balarabe Musa,vi ,lagos. Victoria Island Extension Victoria Island Lagos",₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +2170,Luxury Offplan 3 Bedroom Apartment,"Balarabe Musa,vi ,lagos. Victoria Island Extension Victoria Island Lagos",₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +2171,Own An Apartment Or Simplex In Azuri Towers,Azuri Towers Eko Atlantic Victoria Island Lagos,$,"4,500,000",1,1,1,6 beds,6 baths,7 Toilets,Other Victoria Island +2172,Luxury 3 Bedroom Terrace Duplex With B/q,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +2173,Brand New Luxury 4 Bedroom Townhouse With B/q,Adeniyi Coker Street Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2174,Luxury 4 Bedroom Fully Detached Duplex With B/q,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2175,3 Bedroom Apartment And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2176,Well Decent Furnished & Serviced Ocean View 2bedroom Maisonette,1004 Victoria Island Lagos,₦,"58,000,000",1,0,1,2 beds,2 baths,3 Toilets,Other Victoria Island +2177,"Newly Built & Fully Serviced 4bedroom Terrace On 2floors With Bq, S/pool & Gym",Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2178,Luxury 4 Bedroom With Bq,"Victoria Island Extension, Oniru Lagos Oniru Victoria Island Lagos",₦,"135,000,000/day",0,0,1,4 beds,4 baths,5 Toilets,Oniru +2179,3 Bedroom Maisonnette With Bq,Ajose Adeogun Street Fatai Durosimi Etti Victoria Island Lagos,₦,"130,000,000/day",0,0,1,3 beds,3 baths,3 Toilets,Other Victoria Island +2180,Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2181,New 4 Bedroom Terrace House In A Serene Environment,"The Roswell Terrace , Off Palace Road Oniru Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets,Oniru +2182,Building On 1866 Sqm Of Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2183,5 Bedroom Duplex With Bq,"Megamound, Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +2184,Luxury 4 Bedroom Apartments With Swimming Pool And Lawn Tennis,Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2185,A New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,5 Toilets,Oniru +2186,3 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2187,4 Bedroom Semidetached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2188,Luxurious 3 Bedroom Terrace,Abraham Adesanya Victoria Island Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2189,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2190,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,4 baths,4 Toilets,Oniru +2191,Units Of Newly Built Luxury 4 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,6 baths,6 Toilets,Other Victoria Island +2192,Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2193,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2194,Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2195,Newly Built 4 Bedroom Duplex With Excellent Facilities,Teslim Elias Close Ahmadu Bello Way Victoria Island Lagos,₦,"300,000,000",1,1,1,4 beds,5 baths,5 Toilets,Other Victoria Island +2196,2 Bedroom Apartment,Adebisi Omotola Akin Adesola Victoria Island Lagos,₦,"100,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +2197,Newly Built And Exotic 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds, baths, Toilets,Oniru +2198,Land,"Akin Adeola,ahmadi Bello Way Akin Adesola Victoria Island Lagos",$,"75,000,000/month",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2199,4 Bedroom Apartment With A Room Bq,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2200,Newly Built 5 Bedroom Fully Detached Duplex Located In A Serene Estate,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,5 Toilets,Oniru +2201,Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,1,5 beds,0 baths,0 Toilets,Oniru +2202,Hotel Of 65 Luxury Card Rooms,Tiamiyu Savage Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2203,Luxury 4 Bedrooms Apartment,Walter Carrignton Victoria Island Extension Victoria Island Lagos,$,"800,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +2204,Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2205,3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets,Victoria Island Extension +2206,Luxury 4 Bedroom Terrace Duplex With Bq,Victoria Island Extension Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2207,4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2208,3 Bedroom Apartment, Victoria Island Lagos,₦,"93,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2209,Newly Built Luxury 4 Bedroom Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +2210,Four Bedroom Terrace Duplex With Swimming Pool And Gym,Addyholly Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,1, beds, baths, Toilets,Victoria Island Extension +2211,Block Of Flats,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2212,4 Bedroom Terrace Duplex With Bq,"Atlnatique Mew Estate , Oniru Victoria Island Oniru Victoria Island Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2213,25 Hotel Rooms,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2214,Newly Built 5 Bedroom Detached Duplex,Festival Road Oniru Victoria Island Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +2215,High Rise Property,Off Adeola Odeku Street Lagos Island Victoria Island Lagos,$,"100,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +2216,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,4 baths,4 Toilets,Oniru +2217,Spacious 4 Bedroom Terrace Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,1,4 beds,5 baths,5 Toilets,Oniru +2218,Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,1,4 beds,5 baths,5 Toilets,Oniru +2219,Spacious 4 Bedroom Semi Detached Duplex With A Mini Flat Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +2220,Ocean View Luxury 2 Bedroom Apartment,Remi Olowude Victoria Island Extension Victoria Island Lagos,₦,"98,000,000",1,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +2221,Tastefully Finished 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2222,Brand New 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +2223,Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Oniru Victoria Island Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2224,Brand New Spacious 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +2225,Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2226,Brand New 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2227,Brand New 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"210,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2228,Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2229,Beautifully Built 4 Bedroom Terrace Duplex,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2230,Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets,Oniru +2231,Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +2232,Newly Built 3 Bedroom Terrace Duplex With A Swimming Pool In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +2233,Luxurious 2 Bedroom Apartment With Boys Quarter,Musa Yaradua Street; Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +2234,Luxurious 1 Bedroom Apartment,Musa Yaradua Street; Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"60,000,000",1,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +2235,Paramount Luxurious 3 Bedrooms Apartment,Remi Olowude Street Oniru Victoria Island Lagos,₦,"134,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +2236,Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2237,Available Land,Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2238,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2239,Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2240,Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2241,3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"875,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2242,Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2243,Luxury 5bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"120,000,000",1,0,1,5 beds,6 baths,6 Toilets,Other Victoria Island +2244,4 Bedroom Apartment," Location: Victoria Island, Lagos Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2245,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2246,Land,Ademola Adetokunbo Victoria Island Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2247,Demolishable Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2248,Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2249,2 Bedroom Apartment With A Bq,Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +2250,Land,Eko Atlantic Victoria Island Lagos,₦,"5,840,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2251,Brand New Luxury Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2252,3 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2253,10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2254,Three Story Building,Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2255,Joint Venture For Land Size Of 1800sqms,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2256,Land Measuring 1500 Sqms,Karimu Kotun Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2257,Vacant Land And Uncompleted Block 8 Numbers Of 3 Bedroom Flats (price Per Sqm),Akin Olugbade Victoria Island Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2258,Beautiful 4 Bedrooms Bungalow With Bq,Victoria Island Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2259,Bare Land Of 1555 Sqm,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2260,8 Unit Of 3bed Room Flat + Bq For Each Flat,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds, baths, Toilets,Oniru +2261,Bare Land Of 1555 Sqm,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2262,Lovely 2 And 3 Bedroom Apartments With Communal Swimming Pool And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +2263,3 Bedroom Flat,S Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets,Oniru +2264,2 Floors Detached Office Space,Victoria Island Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets,Other Victoria Island +2265,55 Room Hotel,Victoria Island Victoria Island Lagos,₦,"1,900,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2266,5 Bedroom Semi Detached Duple,Oniru Victoria Island Lagos,₦,"225,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2267,Office Space,Oko Awo Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"750,000",0,0,0,10 beds,0 baths,0 Toilets,Victoria Island Extension +2268,Premium 4 Bedroom Maissonnette With A Bq,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2269,Newly Built 3 Bedroom Semidetached Duplex With A Bq And Pool In A Serene Environment,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2270,3bedroom Apartment Serviced,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2271,Stunning 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2272,Newly Built 2 3 Bedroom And Studio Shortlet Apartments,Sinari Daranijo Street Behind Zenith Bank Hq Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Victoria Island +2273,3 Star Hotel,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2274,"Adeola Odeku, Off Idejo Str Land For Sale. Size 5,200sqm","Akarigbere Close, Off Idejo Stre Adeola Odeku Adeola Odeku Victoria Island Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2275,"Oniru Lagos, 4 Bedroom Terrace Duplex With Bq",Victoria Island Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +2276,3304sqm Corner Piece Land,Muri Okunola Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2277,"Oniru, Victoria Island,land Size 2300sqm",Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Oniru +2278,"Closable, Oniru Land For Sale 1500sqm",Victoria Island Oniru Victoria Island Lagos,₦,"260,000",0,0,0, beds, baths, Toilets,Oniru +2279,"Oniru Joint Venture Land, Victoria Island 600sqm.",Victoria 6 Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Oniru +2280,"Jv Land At Victoria Island Oniru, 26000sqm",Oniru Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2281,"Oniru, Victoria Island Land For Sale, 1785sqm",Victoria Island Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Oniru +2282,"Oniru Victoria Island, 4 And 5 Bedroom Townhouses",Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2283,4864sqm Jv Land,S Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2284,"Oniru, Victoria Island. 6 And Half Plots For Sale",Victoria Island Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets,Oniru +2285,3 Bedroom Flat,"1004 Estate, Block C Victoria Island Lagos",₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2286,"Victoria Island, Akin Adesola Land For Sale.",Akin Adesola Victoria Island Lagos,₦,"15,000,000,002",0,0,0, beds, baths, Toilets,Other Victoria Island +2287,Spacious 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2288,"Adeola Odeku, Off Idejo Str Land For Sale. Size 5,200sqm","Akarigbere Close, Off Idejo Stre Adeola Odeku Adeola Odeku Victoria Island Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2289,Oniru Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2290,Eighteen 65 Residences Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"120,000,000/month",1,1,0, beds, baths, Toilets,Victoria Island Extension +2291,"Eko Atlantic Joint Venture, Land Size 9000sqm",Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"1,500",0,0,0, beds, baths, Toilets,Other Victoria Island +2292,"Oniru, Victoria Island, Land Size For Sale, 1500sqm",Victoria Island Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Oniru +2293,Brand New 3 Bedroom Apartment,Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +2294,"Oniru Victoria Island, 2 Nos Of 1200sqm Of Land",Victoria Island Oniru Victoria Island Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets,Oniru +2295,Strategic Location Landed Property,Besides Landmark Towers Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2296,"Oniru, Off Place Road, 2350sqm Corner Piece Land",Off Palace Road Oniru Victoria Island Lagos,₦,"455,000,000",0,0,0, beds, baths, Toilets,Oniru +2297,Bank Building,Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2298,15 Story Building,Ademola Adetokunbo Victoria Island Lagos,₦,"25,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2299,4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2300,Luxury 4 Bedroom Terrace Duplex With Bq In Victoria Island,Victoria Island Extension Oniru Oniru Victoria Island Lagos,₦,"130,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2301,Luxury 4 Bedroom Terrace Duplex With Bq,Victoria Island Extension Oniru Oniru Victoria Island Lagos,₦,"130,000,000/sqm",0,0,1,4 beds,4 baths,4 Toilets,Oniru +2302,4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2303,Urban City Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2304,4 Bedroom Terrace,Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2305,3bedrooms Semi Detached Duplex With Bq,Vi Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2306,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2307,Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2308,3 Bedroom Apartments,Phoenix Tower Eko Atlantic Victoria Island Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2309,4 Bedroom Semi Detached Duplex With Bq For Sale,"Oniru, Victoria Island Lagos Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets,Oniru +2310,Newly Built 4bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +2311,3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2312,Exquisitely Finished 4 Bedroom Terrace Duplex And A Room Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2313,Western Standard Beautiful 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2314,2 Bedroom Flat,1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2315,"Modern Day 3 Bed Apartment With Elevator, Swimming Pool And Bq",Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +2316,"Newly Built 4 Bedroom Terraced Duplex With Gym, Swimming Pool And Bq",Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +2317,3 Units Of 4 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2318,Luxury Serviced 3 Bedroom Flat, Eko Atlantic Victoria Island Lagos,$,"1,500,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2319,3 Bedrooms Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2320,Contemporary 4 Bed Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +2321,Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2322,Newly Built 3 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2323,Beautiful 4 Bedroom Terrace,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2324,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2325,3 Bedroom Terrace,Waziri Ibrahim Crescent Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2326,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +2327,Land,H Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2328,3 Bedroom Penthouse,Victoria Island Extension Victoria Island Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +2329,Fully Serviced 4 Bedroom Terrace Duplex With Rooftop,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2330,Newly Built 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2331,2 Bedroom Flats,1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +2332,Luxury 4bedroom Terrace Duplex With Bq And Swimming Pool In Vi,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets,Oniru +2333,4bedroom Semi Detached Duplex With Bq,G Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2334,Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2335,Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"220,000,000",0,1,0,0 beds,3 baths,0 Toilets,Other Victoria Island +2336,"1st Class Office Complex In Victoria Island On Ten (10) Floors With Helipad *land Size: * 2,644 Sqm * Lettable Space: * 9,176 Sqm *",Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2337,4star Luxury Hotel.**** Over 65rooms Dining Conference Halls Swimming Pools State Of The Art Amenities Everything Sell *100% Luxury*,Victoria Island Lagos,₦,"14,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2338,5 Bedroom Fully Detached Duplex With Bq At Oniru,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets,Oniru +2339,Commercial Property In Victoria Island Precisely Ajose Adeogun Is Out Size: 1413sqm.,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2340,2 Units Detached Houses On 8500sqm Land Size At Walter Carrington,Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2341,"Modern Headquarters Building On Eight Floors (5,559m2 Lettable Space)with Another Building On Two Floors (1,200m2 Lettable Space)with Other Auxillary Buildings All On Land Area Of 9,365m2 (2.38acres)",Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2342,"A New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building With Helipad Of 15 Floors",Victoria Island Lagos,₦,"20,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2343,Office Space 1098sqm,Inazuri Towers Eko Atlantic Victoria Island Lagos,$,"4,500/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2344,"A Detached House Within A Land Size Of 2262sqm At Imam Augusto, Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Karimu Kotun Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2345,"25 Luxury Bedrooms Posh Hotel Facility With Restaurant, Lounge/bar, Massive Conference Room, Standard Pool",Victoria Island Lagos,$,"4,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2346,3 Bedrooms Apartments (off Plan),The Knight Towers Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2347,5 Bedroom Maisonette With 2 Bq In Victoria Island,Ahmadu Bello Way Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2348,4200sqm Land In Victoria Island,Victoria Island Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2349,3 Bedroom Detached Duplex With Bq In A Serviced Estate,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2350,10units Of Four (4) Bedroom Luxury Detached Duplexes,Palace Road Oniru Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2351,3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2352,3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2353,*out Now* 8 Units Of 3 Bedroom Flat On A Land Area Of 4100sqm At Victoria Island Lagos,S Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2354,8 Floors + Penthouse Land Area Is 1360 Sqm Each Floor 395aqm Car Park 20 Cars,Victoria Island Lagos,$,"18,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2355,2 Bedroom Penthouse,Victoria Island Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2356,"10,000sqm Of Land",S Ahmadu Bello Way Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2357,3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds, baths, Toilets,Oniru +2358,3000sqm Plot,Akin Olugbade Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2359,"2100 Sqm Land Opposite Silver Bird Galleria, Victoria Island With C Of O And Approved Plan For Highrise Development.",Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2360,5 Bedroom Detached House With 2bedroom Guest Chalet And 2 Bedroom Bq,Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +2361,Super Affordable 5 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2362,Ready To Build Corner Piece 1400sqm Of Land With Governor's Consent,D Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2363,"11,000m2 Plot Along Ligali Ayorinde St By Water Corporation Drive Victoria Island With C Of O",Ligali Ayorinde Victoria Island Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2364,1800 Sqm Land,D Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2365,"A Detached House Within A Land Size Of 2262sqm At Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2366,2475 Square Meters On Akin Adesola Victoria Island,Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2367,"Now Selling Eko Atlantic City ( Marine Zone ) Water Front* *prime Corner Piece Land, Victoria Island, Lagos*",Eko Atlantic Victoria Island Lagos,$,"2,800/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2368,2 Bedroom Brand New Apartment With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +2369,2 Bedroom Luxury Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +2370,13 Block Of Flats On 1000sqm Land Size,Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2371,2835.902sqm Land,F Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2372,2000 Sqm Along Main Road Close To Shoprite,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Oniru +2373,"Penthouses, Luxury Highrise Apartments And Lands Available",Eko Atlantic Victoria Island Lagos,$,"2,700,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2374,"4600 Square Meters At Oniru, Vi. Property Is Sharing Fence With Lagos State Court Of Arbitration. Title: C Of O And Governor Consent",Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +2375,27 Room Hotel On 1706sqm Of Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2376,5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"129,500,000",0,0,0,5 beds, baths, Toilets,Oniru +2377,"1st Class Office Complex In Victoria Island On Ten (10) Floors With Helipad *land Size: * 2,644 Sqm * Lettable Space: * 9,176 Sqm *",Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2378,5 Bedroom Fully Detached Smart Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets,Oniru +2379,4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2380,Commercial Property On 2500sqm At Victoria Island Akin Adesola,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2381,Functional Fast Food,Victoria Island Lagos,₦,"492,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2382,Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets,Other Victoria Island +2383,Hospital On 7 Floors,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2384,3 Bedroom Penthouse On 27 Floor Phoneix Tower,Eko Atlantic Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2385,"New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2386,1200sqm Land,Off Ajose By Bode George Vi Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2387,1000sqm Prime Land,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2388,Strategically Located 4452sqm High Density Fenced And Gated Land, Oniru Victoria Island Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2389,Fully Detached House On 1368sqm Land, Victoria Island Lagos,₦,"435,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2390,Office Complex,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2391,Functional Hotel Of 35 Rooms,D Ademola Adetokunbo Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2392,3 Bedroom Fully Serviced Terrace With Bq,S Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2393,"Block Of 16 Nos 3 Bedroom Flat With Bq, Pool And Gym, With Office Complex Total Land Size 5230sm Off Idejo, Victoria Island",Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2394,"7358.102 Square Metres Situated At Ligali Directly Facing The Beach By Landmark, Victoria Island, Lagos",Ligali Ayorinde Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2395,5 Bedroom Detached House(rear Building) With 4rooms Bq On About 685sqm,Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +2396,"A 5 Bedroom Duplex With 2 Bq, 2 Office Spaces,2 Living Rooms, Sitting On 3000sqm Land",R Victoria Island Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +2397,2 Bedroom Luxurious Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +2398,3 Bedroom Apartments,Eko Atlantic Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2399,Old Structure Measuring 2400sqm,S Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2400,"Prime 4,000sqm Land Next To Access Bank Head Office At Oniru,",Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oniru +2401,1 Bedroom Deluxe Apartment,Victoria Island Lagos,₦,"65,000,000",0,0,0,1 beds, baths, Toilets,Other Victoria Island +2402,"An Expanse Of Land With Building Approval Measuring 20,000 Square Meters And 16,570 Square Meters Totaling 36,570 Square Meters Fully Fenced And Gated Dry Bareland.", Victoria Island Lagos,$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2403,10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"176,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2404,2100 Sqm Land, Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2405,Bloc1000sqm Land With Global C Of O. Dideolu Estate Oniruk,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Oniru +2406,"2,200m2 Fenced And Gatedwith Approved Building Plan For 15 Floors.with Complete Pile Foundation",Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2407,7 Bedroom Detached Duplex At Etim Inyang Crescent Victoria Island. Approximately 1000sqm.,Victoria Island Lagos,₦,"550,000,000",0,0,0,7 beds, baths, Toilets,Other Victoria Island +2408,Mixed Used Development On 7 Floors,Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2409,"4,383 Sqm Land With Approval For 32 Floors Twin Towers", Eko Atlantic Victoria Island Lagos,$,"2,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2410,A Bare Land Measuring 5300sqm On Ligali Ayorinde Street Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"4,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2411,2 Bedroom Flat (5th Floor) Off Plan,A & A Towers Eko Atlantic Victoria Island Lagos,₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +2412,3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2413,Office Complex On 10 Floors Plus Annex Building On Same Street,Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2414,Detached House On 1400sqms, Ademola Adetokunbo Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2415,Various Land Sizes,Eko Atlantic Victoria Island Lagos,$,"2,500/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2416,2400sqm Land,S Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2417,Hotel And Restaurant On 2034 Sqm With Land Certificate,Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2418,"New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2419,The Building Is 8 Floors + Penthouse At Victoria Island Land Area Is 1360 Sqm Each Floor 395 Square Meter,Victoria Island Lagos,$,"14,590,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2420,10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2421,"Oniru Waterfront 7,400sqms",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2422,Seize This Opportunity To Own This Lovely 7 Bedroom Detached House With Service Quarters And Other Ancillary Buildings. Land Area Of 950 Sqm.,Victoria Island Lagos,₦,"550,000,000",0,0,0,7 beds, baths, Toilets,Other Victoria Island +2423,19 Nos Apartments,Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2424,14 Units Of 4 Bedroom Semi Detached Duplex With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +2425,4 Bedroom Apartment And A Room Bq,Eden Heights Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2426,"7,000 Sqm Waterfront Property Directly Located On Ozumba Mbadiwe , Victoria Island (can Be Partitioned Into 2) For Mixed Use Development",Victoria Island Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2427,3 Bedroom Penthouse,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2428,Approximately 2300sqmsqm Bare Land,S Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2429,2 Bedroom Fully Furnished Apartment,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +2430,Off Plan 15 Nos 2 Bedroom Luxury Apartments,Kofo Abayomi Victoria Island Lagos,₦,"165,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +2431,Newly Built 4 Bedroom Terrace Apartment,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2432,14 Units 4 Bedroom Semi Detached Duplex With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2433,A Corner Piece Land Measuring 2600sqm On Muri Okunla By Ligali Ayorinde For Sale.,Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2434,"4600sqn With Approval For Ground + 15 Floors At Oniru, Vi. Property Is Sharing Fence With Lagos State Court Of Arbitration. Title: C Of O And Governor Consent.",Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +2435,5bedrooms Fully Detached Duplex With Bq, Oniru Victoria Island Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,0 Toilets,Oniru +2436,5br Detached House(rear Building) With 4rooms Bq On About 685sqm At Idejo Vacant Possession,Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets,Other Victoria Island +2437,2000sqm In Victoria Island With Building On It,Z Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2438,A 65 Rooms Hotel,Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2439,First Class Office Space On Twelve (12) Floors (,Victoria Island Lagos,$,"40,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2440,An Exquisite Office Space,Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2441,5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"129,500,000",0,0,0,5 beds, baths, Toilets,Oniru +2442,"Akarigbere Close 5,300sqms Land",Y Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2443,3 Bedroom Deluxe Highrise New Apartments,Ahmadu Bello Way Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2444,3 Bedroom Luxury Terraces,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2445,7358sqm Land,S Oniru Victoria Island Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2446,2 Bedroom Brand New Flat,Victoria Island Lagos,₦,"85,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +2447,"A Detached House Within A Land Size Of 2262sqm At Imam Augusto, Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Karimu Kotun Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2448,3400sqm Prime Location In Eko Atlantic Phase 1,Eko Atlantic Victoria Island Lagos,$,"2,350/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2449,3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"164,500,000",0,0,0,3 beds, baths, Toilets,Oniru +2450,This Exquisitely Finished Four (4) Bedroom Terrace Duplex With Swimming Pool And A Room Boys Quarter Is Located In A Serviced And Secured Environment,Victoria Island Lagos,₦,"168,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +2451,Brand New 1 Bedroom Deluxe Apartment,S Ahmadu Bello Way Victoria Island Lagos,₦,"90,000,000",0,0,0,1 beds,0 baths,0 Toilets,Other Victoria Island +2452,Old Fully Detached House On 820sqm,Off Idejo Victoria Island Lagos,₦,"400,000,000",0,0,0,7 beds,0 baths,0 Toilets,Other Victoria Island +2453,Fenced Land Measuring 1650sqm On Oyin Jolayemi Street Victoria Island.,Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2454,"11,000m2 Plot Along Ligali Ayorinde St By Water Corporation Drive Victoria Island With C Of O",Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets,Oniru +2455,"20,000 Sqm Of Bareland",Ahmadu Bello Way Victoria Island Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2456,"Luxury 2 Bedroom, 3 Bedrooms And Penthouse Apartments With Ocean And Marina View",Eko Atlantic Victoria Island Lagos,₦,"270,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2457,"Land Size: 5,979.48sqm The Development On Site Consists Of Office Space 1 (admin), Office Space 2, And Warehouses, 2no. Security Houses, Generator Shed And A Convenience Block.",Along Adeniji Adele Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2458,A Commercial Development On 2 Floors On Land Measuring 800sqm,Victoria Island Lagos,₦,"640,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2459,Commercial Property In Victoria Island,Victoria Island Lagos,₦,"40,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2460,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"133,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2461,Office Complex,Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2462,"A New Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15(fifteen) Floors", Victoria Island Lagos,₦,"15,000,000,000",1,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2463,4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2464,Land Measuring 2800sqm Strategically Located, Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2465,"Ozumba Mbadiwe Waterfront 4,000sqms Lasg C Of O",Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2466,Building On 1866 Sqm Of Land,D Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2467,3 Bedroom Apartment With Bq,Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2468,Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2469,"For Sale Residential Plot Of Land In Oniru Vi Land Size 1,785 Square Metres. Title C O",Oniru Victoria Island Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets,Oniru +2470,1261sqm Land Has Building On It With Documents,S Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2471,"2116 Square Meters Of Land With Pile Foundation, Approval For 15 Floor Storey Building",Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2472,3 Bedroom Apartment, Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2473,2 Bedroom Apartments With Rooftop Garden,Victoria Island Lagos,₦,"145,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +2474,For Sale Bareland Measuring 3000sqm,Kofo Abayomi Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2475,"Land Measuring 2111sqm Location: Harbour Light, Eko Atlantic, Victoria Island Lagos",Eko Atlantic Victoria Island Lagos,$,"1,750/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2476,A Block Housing 6 Units Of 3 Bedrooms Flats With A Room Service Quarters,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2477,Land,"Akin Adesola Street, Ahmadu Bello Way Victoria Island Lagos",$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2478,"2 Bedroom Flat A & A Towers Eko Atlantic City, Vi",Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2479,5 Bedroom Brand New Deluxe Maisonette With 2 Bq,V Ahmadu Bello Way Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +2480,Luxury Penthouse On 3q Floor Executive Residential Tower,Eko Atlantic Victoria Island Lagos,$,"2,300,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2481,5 Bedroom Semi Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,1,5 beds,0 baths,0 Toilets,Oniru +2482,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,1,5 beds,0 baths,0 Toilets,Oniru +2483,2100sqm Waterfront Land, Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2484,Land,Ademola Adetokunbo Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2485,Office Complex On 5 Floors,Ademola Adetokunbo Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2486,Office Complex,Adetokunbo Ademola Street Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2487,Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2488,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +2489,Newly Built Luxury 4 Bedroom Terrace + Bq,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2490,Luxury 3 Bedroom Apartment + Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2491,3 Bedroom Terrace,Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2492,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2493,Newly Built 3 Bedroom Portable Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2494,"1,700sqm Bare Land.",Z Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2495,"4 Bedroom Duplex With Bq, Swimming Pool And Gym",Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2496,3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2497,Fully Serviced 4 Bedroom Terraced Duplex,S Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2498,Newly Built 5 Bedroom Executive Terrace + Bq,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +2499,5bedrooms Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2500,A Functional 27 Rooms Hotel,Off Ajose Adeogun Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2501,4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2502,A Very Beautiful And Magnificent 19 Storey Structure,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2503,3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2504,5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2505,4 Bedroom Room Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2506,Land For Jv,Z Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2507,Luxury 4 Bedroom Maisonette + Bq In Victoria Island,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2508,Lovely Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2509,2 Bedroom Flat In A Fully Serviced Block Of Flats.,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +2510,4452sqm Land,Abiodun Yusuf Way By City Of David Oniru Victoria Island Lagos,₦,"1,558,200,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2511,2400sqm Bare Land,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2512,Newly Built 5 Bedroom High Toned Terraced Duplex,Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Other Victoria Island +2513,"Luxury 4 Bedroom Terrace Duplex With Bq,",Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +2514,Fully Furnished 5 Bedroom Semi Detached Duplex, Victoria Island Lagos,₦,"270,000,000",0,0,1,6 beds,6 baths,6 Toilets,Other Victoria Island +2515,Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2516,Newly Built 4 Units Of 2 Bedrooms Apartment,Off Ajose Adeogun Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2517,Newly Built 4bedroom Terrace Duplex With Open Roof,Oniru Oniru Victoria Island Lagos,₦,"122,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +2518,Grade A 5 Storey High Rise Office Complex,Off Bishop Aboyade Cole Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2519,Available Land,Muri Okunola Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2520,Joint Venture At Victoria Island Lagos,Muri Okunola Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2521,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2522,3 Bedroom Semi Detached Duplex With Bq,F Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2523,6 Bedrooms Fully Detached Spacious House With Bq,Victoria Island Lagos,₦,"420,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Victoria Island +2524,4060sqm Waterfront Land,Beside Oriental Hotel Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2525,Hot Joint Venture At Landbridge Avenue Oniru Victoria Island,Landbridge Avenue Oniru Victoria Island Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oniru +2526,"Functional 5 Star Hotel,with 170 Rooms",Victoria Island Extension Victoria Island Lagos,$,"150,000,000",0,0,1,10 beds, baths, Toilets,Victoria Island Extension +2527,2300sqm Bare Land,Oniru Victoria Island Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets,Oniru +2528,4 Bedroom Detached Duplex,Victoria Island Lagos,₦,"780,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2529,Available Land,Victoria Island Lagos,₦,"350,009/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2530,4600sqm Bare Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Oniru +2531,Quick Joint Venture In Victoria Island,"Bishop Kale Close, Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2532,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2533,Available Land,Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2534,Available Land,Adeola Hopewell Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2535,Quick Joint Venture In Victoria Island,"Bishop Kale Close, Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2536,4 Bedroom Apartment And A Room Bq On The 7th Floor Floor,Off Adeola Ayodeji Street Ademola Adetokunbo Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2537,Available Land,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2538,4 Bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2539,Vacant Parcel Of Land Measuring 2100sqm For Jv At Vi,Karimu Kotun Str. Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2540,4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2541,Hot Joint Venture At Landbridge Avenue Oniru Victoria Island,Landbridge Avenue Oniru Victoria Island Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oniru +2542,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2543,4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2544,Available Land,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2545,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2546,"2,200sqm Land",Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2547,4100sqm2 Land,Eko Atlantic Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2548,Available Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2549,"4 Acres (16,065 Sqm)",Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2550,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2551,Newly Built 3bedroom Flat With Bq And Pool..,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2552,Vacant Parcel Of Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2553,Available Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2554,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2555,Executive 4 Bedroom Spacious Semi Detached Duplex With A Room Bq,Dideolu Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2556,Blocks Of Flats House,Oniru Victoria Island Lagos,₦,"1,600,000,000",1,0,0,3 beds,4 baths,4 Toilets,Oniru +2557,1 Bedroom Luxury Apartment,"Behind Zenith Bank Headquarters, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"70,000,000",1,1,1,1 beds,2 baths,2 Toilets,Waziri Adeola Odeku +2558,4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets,Oniru +2559,A Serviced Compact/portable 3 Bedroom Apartment,"Plot 14, Olaniye Oduloye Street, Oniru Estate Oniru Victoria Island Lagos",₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2560,Tastefully Finished 4 Bedroom Penthouse In A Serene Neighbourhood,Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +2561,Four Floors Of 3 Bedroom Flats,Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2562,Four Floors Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2563,Four Floors Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000/month",0,0,0, beds, baths, Toilets,Other Victoria Island +2564,Contemporary 4 Bedroom Fully Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2565,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2566,Modern Day 3 Bedroom Apartment With Elevator, Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2567,Urban City Tastefully Finished 3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2568,Luxury 3 Bedroom Apartment,Sapara William Kofo Abayomi Victoria Island Lagos,₦,"110,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2569,Luxury 3 Bedroom Flat,"Chief Yusuf Abiodun Street, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +2570,Breathtaking 130m Luxurious 4 Bedroom Terraced Duplex With Bq,Lagos Island Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +2571,Luxury 4 Bedroom Terrace Duplex With Bq & Swimming Pool,"Victoria Island Extension, Oniru Oniru Victoria Island Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2572,4 Bedroom Flat With Two Sitting Rooms Available,Oniru Estate Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,5 Toilets,Oniru +2573,"4,300 Sqm Land",Z Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2574,Newly Built 4 Bedroom,Kofo Abayomi Victoria Island Lagos,₦,"169,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2575,Newly Built 6 Units Of 3 Bedrooms Terrace Duplex,Adeola Odeku Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +2576,"Service, Compact 3 Bedroom Apartment",Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2577,Serviced 3 Bedroom Apartment With Bq,Fatai Durotimi Street Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2578,"4 Bedroom Flat For Sale In Oniru Estate, Victoria Island", Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,4 Toilets,Oniru +2579,Luxury 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds, baths,4 Toilets,Other Victoria Island +2580,Luxury 4bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2581,Contemporary 4 Bedrooms Terrace Duplex With Service Quarters,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,4 Toilets,Oniru +2582,1 Acre Of Land, Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2583,Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2584,Tastefully Furnished 5 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +2585,Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,4 Toilets,Oniru +2586,4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2587,2 Bedroom Flat,Landmark Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets,Oniru +2588,"3 Bedroom Terrace House With Fitted Kitchen, Swimming Pool",Off Odeku Adeola Odeku Victoria Island Lagos,₦,"200,000,000",0,1,0, beds, baths, Toilets,Waziri Adeola Odeku +2589,Brand New 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2590,3 Bedroom Apartment With Bq,Estate Ademola Adetokunbo Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,2 baths,2 Toilets,Other Victoria Island +2591,Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +2592,2bedroom Flat,Orchid Victoria Island Lagos,₦,"32,000,000",0,0,1,2 beds,2 baths,2 Toilets,Other Victoria Island +2593,5 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +2594,A Distress Sale: New 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +2595,New 3 Bedroom Flat With Elevator And Swimming Pool,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2596,A New 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2597,A Functional And Luxury 4star Hotel With 65 Rooms,Victoria Island Lagos,$,"50,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2598,"Distress Sale 4 Bedroom Maisonette House With Bq, Elevator, Pool And Gym In Victoria Island",Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2599,"Distressed Sale Newly Built Open Space Office Terrace In Muri Okunola, Victoria Island",Victoria Island Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +2600,"2364sqm Corner Piece Land In Eko Atlantic, Victoria Island",Eko Atlantic Victoria Island Lagos,$,"2,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2601,"10 Units Of 3bedroom Flat With Bq, And 4 Units Of 1bed Flat",Victoria Island Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2602,3 Bedrooms Apartment,Vantage Court Akin Olugbade Victoria Island Lagos,₦,"140,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +2603,4 Bedroom Luxury Penthouse / 3 Bedroom Luxury Apartment,Oniru Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +2604,3 Bedroom All En Suite Flat With Bq,Oniru Victoria Island Lagos,₦,"77,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +2605,Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2606,Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2607,Fully Serviced 3 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2608,Fully Serviced 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2609,Lovely 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2610,Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +2611,Fully Serviced 3bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2612,Brand New 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2613,Newly Built 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2614,4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2615,4 Bedroom Terrace Duplex With Pool And Bq,Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2616,Exclusive 2 Bedroom Luxury Apartment,"Knight Tower, Ahmadu Bello Way Victoria Island Lagos",₦,"130,000,000/sqm",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +2617,4 Bedroom Semidetached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths, Toilets,Oniru +2618,3 Bedroom Luxury Apartments,Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,0 Toilets,Other Victoria Island +2619,Exclusive 1 Bedroom Luxury Apartment (off Plan),Ahmadu Bello Ahmadu Bello Way Victoria Island Lagos,₦,"70,000,000/sqm",1,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +2620,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2621,"An Executive, Beautiful And Functional 27 Rooms Hotel With Swimming Pool","Off Ajose Adeogun Street, Vi, Lagos Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2622,Available Land,Oniru Victoria Island Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2623,Commercial Property,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2624,Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths, Toilets,Other Victoria Island +2625,Land,Saka Tinubu Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2626,4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2627,Land,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2628,Land,"Danmole Street, Off Idejo Street Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2629,Exclusive 2 Bedroom Apartment,"Silverbird Galleria/standard Chartered, Knight Towers Ahmadu Bello Way Victoria Island Lagos",₦,"170,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +2630,3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2631,3 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2632,Commercial Land Sale In Oniru,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oniru +2633,4 Bedroom Terraced Bedroom With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2634,Four Bedroom,1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2635,4 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2636,4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2637,5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2638,Tastefully Finished 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2639,Oniru Partitioned Land Sales,Oniru Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Oniru +2640,"Off Plan 1, 2, And 3 Bedroom Flats Sales In Vi",Victoria Island Lagos,₦,"60,000,000",1,1,0, beds, baths, Toilets,Other Victoria Island +2641,Newly Built 5 Bedroom Fully Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +2642,Newly Built 3 Bedroom Full Service Terrace Residence,Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2643,Land,Eko Atlantic Victoria Island Lagos,$,"4,743,400/sqm",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2644,4 Bedrooms Maisonette Apartment(1st Floor) With Bq,Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2645,Fully Serviced 3 Bedroom Flat With A Bq,Oniru Victoria Island Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2646,4 Bedroom Terrace With A Bq In A Fully Serviced Mini Estate,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2647,Fully Serviced 4 Bedroom Terrace With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2648,"Luxury 4 Bedroom Maissonette With Swimming Pool, Gym And Bq",Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2649,Tastefully Finished Brans New 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2650,Newly Built Serviced 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2651,A Modern Headquarters Building With An Office Complex On Two Floors And Other Ancillary Buildings All On 2.38 Acres Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2652,Fully Serviced And Brand New 4 Bedrooms Terraced Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2653,2835sqm Land,"Off Adeola Odeku Street, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2654,Neat 3 Bedrooms Apartment, 1004 Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2655,3 Units Of 4 Bedroom Maisonette Duplex,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +2656,Neatly Used 3 Bedrooms Apartment, 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2657,Brand New 3 Bedrooms Flat,Oniru Vi Oniru Victoria Island Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2658,A Tower With 19 Floors,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2659,3 Bedroom With A Bq,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,3 Toilets,Oniru +2660,Land,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2661,Eko Atlantic Now Selling! Luxury Apartments.,Victoria Island Lagos,$,"2,720,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2662,A Commercial Land For Sale At Oniru Water Front Measuring 7358.102sqm With A Certificate Of Occupancy Victoria Island Lagos Nigeria 3 Billion Asking,Z Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Oniru +2663,A Plot Of Land Measuring 650sqm,Z Sanusi Fafunwa Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2664,Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2665,Luxury High Rise 3bedroom Penthouse. (other Floors),Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2666,Brand New Luxury 4 & 5 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2667,Units Of Newly Built Luxury 3 Bedroom Flat,G Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,4 baths,5 Toilets,Oniru +2668,3 Bedroom Flat With Bq,Eighteen Residence Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,0 Toilets,Other Victoria Island +2669,Hotel,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2670,Units Of Luxury 3 Bedroom Flats,Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,5 Toilets,Other Victoria Island +2671,Newly Built Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,5 Toilets,Oniru +2672,A Fully Serviced Ocean View 2bedroom Maisonette,1004 Victoria Island Lagos,₦,"75,000,000",1,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +2673,4 Bedroom Apartment And A Room Bq On The 7th Floor,Royal Residences Adeola Odeku Victoria Island Lagos,₦,"320,000,000",1,0,1,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2674,Newly Built 2 Bedroom Pent Floor Flat, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,1,2 beds,2 baths,3 Toilets,Other Victoria Island +2675,Newly Built 3 Bedroom Flat, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +2676,Newly Built 4 Bedroom Terrace In A Serene Environment,"Dideolu Estates, Vi Victoria Island Extension Victoria Island Lagos",₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Island Extension +2677,"Plot 125, For Sale 2,111sqm In Victoria Island District, Victoria Island (vi), Lagos","Plot 125, Louis Solomon Close, Victoria Island District, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2678,Beautiful 5 Bedroom Detached Duplex With Boys Quarter,Z Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2679,Nice 4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2680,Beautiful 4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2681,Available Land,Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2682,Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2683,Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2684,*newly Built 4 Bedroom Terrace Duplex With Bq* Pay And Pack In,Fola House. Victoria Island Extension Oniru. Victoria Island Extension Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +2685,Newly Built 4bedroom Terrace Duplex. Vi,Adeola Odeku Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +2686,3 Bedroom Apartment With Pent House,1004 Victoria Island 1004 Victoria Island Lagos,₦,"75,000,000",1,0,1,3 beds,2 baths,1 Toilets,Other Victoria Island +2687,Available Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2688,Eatery Sitting On A Land Measuring 1800sqm Land, Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2689,Mixed Use Land With Excellent View For Sale,Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2690,Lovely 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2691,Brand New Open Plan Office Space On 3 Floors,Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,0 baths,3 Toilets,Other Victoria Island +2692,Newly Built 3 Bedroom Apartment,Ajose Adeogun Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2693,Demolishable Fully Detached 5 Bedroom Duplex,Adeola Odeku Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2694,"A Newly Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building",Victoria Island Lagos,₦,"20,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2695,"2835.912sqm For Sale Off Adeola Odeku, Victoria Island @ N1.7billion(negotiable)",Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2696,2 Bedroom Ground Floor Flat,Oniru Victoria Island Lagos,₦,"4,500,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +2697,3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +2698,Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths, Toilets,Oniru +2699,Peridot Heights,Skyeview Housing Scheme Adjacent Novare Mall Sangotedo Eti Osa Victoria Island Lagos,₦,"19,900,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2700,Land For Investment/development,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2701,Available Land,Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2702,Fully Detached Duplex,Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2703,3bedroom Aparment With Bq,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2704,10 Hectares Of Reclamation Land Waters,Oniru Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2705,Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2706,Available Bare Land,Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2707,10 Units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2708,Fine 4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2709,Well Built 4 Bedroom Detached House With A Staff Room In A Serene Neighborhood,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +2710,A Brand New Jv Thats Eko @ Atlantic For The Giants Developers Of Lagos,Circle Of Marina Eko Atlantic Victoria Island Lagos,₦,"4,000,000,000/sqm",0,0,0, beds, baths, Toilets,Other Victoria Island +2711,"Prime Plot Of Land Measuring 1,100 Square Meters And Above",Eko Atlantic Victoria Island Lagos,$,945/sqm,0,1,0, beds, baths, Toilets,Other Victoria Island +2712,Terrace Apartments Of 4 Bedroom,Oniru. Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2713,1 Bedroom Apartment,Paramount Twin Towers Oniru Victoria Island Lagos,₦,"87,505,000",0,0,1,1 beds,2 baths,2 Toilets,Oniru +2714,Newly Built 4bedroom Detached House,Oniru Victoria Island Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2715,Lovely 4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2716,Luxury 5 Bedroom Terrace House,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2717,Luxury 4 Bedroom Detached House,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2718,Luxury 4 Bedroom Pent House, Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2719,Fully Furnished Cozy 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"68,000,000",1,0,1,3 beds,3 baths,4 Toilets,Oniru +2720,Luxury 4 Bedroom Terrace House,Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2721,Luxury 5 Bedroom Terrace House,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2722,Land Measuring 4030 Square Meters,Oniru Victoria Island Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets,Oniru +2723,Luxury 3 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2724,Luxury 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2725,3 Bedroom Apartment,"Eden Heights, Elsie Femi Pearce Street, Off Adeola Odeku Victoria Island Lagos",₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets,Waziri Adeola Odeku +2726,Luxury 5 Bedrooms House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2727,Luxurious 2 Bedroom Flat, Victoria Island Lagos,₦,"110,000,000",0,1,0,2 beds,2 baths,2 Toilets,Other Victoria Island +2728,Functional 27 Rooms Hotel In Vi,Victoria Island Lagos,₦,"1,200,000,900",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2729,A Standard 25 Bedrooms Hotel With Swimming Pool For Sale At Victoria Island,Victoria Island Lagos,₦,"950,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +2730,Executively Designed 4 Bedroom Penthouse Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2731,A Hundred Rooms 5 Star Hotel For Sale At Victoria Island Lagos,Victoria Island Lagos,₦,"2,000,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +2732,"Executively Structured 2 Wings Duplex Consisting Of 5 Bedroom And 4 Bedroom Houses Plus 3 Rooms Bq On A 1407 Sqm Land Size For Sale At Off Ademola Adetokunbo, Victoria Island",Oko Awo Street Ademola Adetokunbo Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2733,Lovely 4 Bedroom Detached Duplex Plus A Room Bq,"Shoreline Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2734,Beautifully Built 4 Bedroom Semi Detached Terraced Duplex For Sale In A Mini Estate At Oniru,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets,Oniru +2735,Newly Completed Luxury Serviced 3 Bedroom Flat,Idowu Martins Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +2736,The Northgate Estate,Victoria Island Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2737,Well Designed 4 Bed Rooms With Bq Located In A Serene Environment In Oniru Estate,Oniru Victoria Island Lagos,₦,"145,000,000",1,0,0,4 beds,4 baths,4 Toilets,Oniru +2738,Exclusive 4 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2739,Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2740,Spacious 3 Bedroom Apartment,Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2741,Magnificent 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2742,Newly Built And Exquisitely Finished 4 Bedroom Townhouse House With Bq,Off Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +2743,Newly Built 4 Bedroom Service Townhouse With A Room Bq,Off Ogunyemi Street Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2744,Luxury 3 Bedroom Apartment,"Palace Road, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds, baths, Toilets,Oniru +2745,Uncompleted 11 Floors Office/space,"Marinho Drive, Victoria Island, Lagos Victoria Island Extension Victoria Island Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2746,Luxury 3 Bedroom Apartment,"Palace Road, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds, baths, Toilets,Oniru +2747,8 Units Of Well Laid Out 3 Bedroom Apartments Plus 1 Room Bq,"Ihuntayi Street, Off Palace Road Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2748,4bedroom Terrace Duplex,"Victoria Island, Lagos Victoria Island Lagos",₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +2749,Eight Units Of Three Bedroom Flat With Bq In Victoria Island,"Akin Olugbade Street, Akin Olugbade Victoria Island Lagos",₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2750,2 Bedroom Flat,Mabogunje Street Oniru Victoria Island Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets,Oniru +2751,Plot Of Land With C Of O, Oniru Victoria Island Lagos,₦,"970,000,000",1,0,0,0 beds,0 baths,0 Toilets,Oniru +2752,4 Bedroom Apartment And Room Bq On The 7th Floor,Royal Residence Off Adeola Ayodeji Street Victoria Island Lagos,₦,"350,000,000",0,1,0,4 beds,3 baths,3 Toilets,Other Victoria Island +2753,Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,5 baths,6 Toilets,Victoria Island Extension +2754,Newly Built 4 Bedroom Terrace Duplex With Bq And 5 Bedroom Terrace Duplex With Bq,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets,Victoria Island Extension +2755,Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,4 baths,5 Toilets,Victoria Island Extension +2756,Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,4 baths,5 Toilets,Victoria Island Extension +2757,Unmcompleted Office Building On Three Floors,Bishop Aboyade Cole Raod Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2758,8 Bedrooms Detached House,Along Balarabe Musa Road Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,1,8 beds,8 baths,10 Toilets,Other Victoria Island +2759,7 Bedrooms Detached House With Two External Office Buildings,Along Karim Kotun Off Akin Adesola Street Karimu Kotun Victoria Island Lagos,₦,"450,000,000",0,0,0,7 beds, baths,10 Toilets,Other Victoria Island +2760,5 Bedroom High Toned Luxury Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets,Oniru +2761,4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island. Oniru Victoria Island Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets,Oniru +2762,C Of O,Victoria Island Extension Victoria Island Lagos,₦,"230,000,000/month",1,0,0,5 beds,6 baths,7 Toilets,Victoria Island Extension +2763,Best Designed 4 Bedroom Terrace Duplexes,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0, beds,4 baths,4 Toilets,Oniru +2764,4 Bedroom Terrace Duplexes With Bq With Governor Consent,Victoria Island Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2765,Fully Serviced Luxury 3 Bedroom Apartment With A Bq,Ligali Ayorinde Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2766,Newly Built 3 Bedroom Apartments,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +2767,Luxury 3 Bedroom Flat,Oniru; Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2768,Luxury Beautiful Service 3bedroom Flats With 1room Bq,Oniru Oniru Victoria Island Lagos,₦,"75,500,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2769,Land, Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2770,13000sqm Land With Structures,Ahmadu Bello Way Victoria Island Lagos,$,"13,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2771,16000sqm Land,Ahmadu Bello Way Victoria Island Lagos,$,"34,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2772,2600sqm Plots Of Land,Ozumba Mbadiwe Victoria Island Lagos Victoria Island Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2773,Parcel Of Land Measuring 3025sqm With C Of O,Idowu Martin's Victorial Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"350,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2774,Land,Along Lilagi Ayorinde Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2775,Land,Along Water Corporation Road Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2776,Land,Water Corporation Road Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2777,Land,Off Idejo Street Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2778,Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2779,Land,Dideolu Estate Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2780,4 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2781,Land,Off Idejo Street Adeola Odeku Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2782,Land,Along Ozumba Mbadiwe Street Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2783,5 Nos Of 4 Bedroom Terrace Duplex With Bq,Oniru Private Estate Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2784,Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2785,Land,Off Idejo Street Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2786,Land,"Oniru, Along Water Corporation Road Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2787,Luxurious Ongoing 4bedroom Terrace Duplex With In The Heart Of Oniru,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2788,4 Bedroom Terrace Duplex,Oniru Private Estate Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2789,Land, Ahmadu Bello Way Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2790,Land, Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2791,5 Bedroom Detached Duplex For Sale,Oniru Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2792,5 Bedroom Semi Duplex For Sale,Off Palace Road Oniru Victoria Island Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2793,Land,Along Ozumba Mbadiwe Street Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2794,6 Bedroom Detached House With All Rooms Ensuite With Guest Chalet And Bqs On A Large Land Measuring 1650qm,Kofo Abayomi Victoria Island Lagos,₦,"900,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +2795,Spacious 3 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2796,Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2797,Four Bedroom Terraced Residences,Oniru Royal Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2798,"5 Bedroom,gym Room &1bq Fully Detached House On A Fully Gated Road And The Best In Oniru Estate",Oniru Estate Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2799,"4 Bedroom Terrace Duplexes, Location: Victoria Island, Lagos",Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +2800,Office Complex For Sale Lagos 8bn Off Adeola Odeku Vi,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +2801,Brand New Luxurious 5 Bedroom Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +2802,"New & Well Built , Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ozumba Mbadiwe Victoria Island Lagos,$,"40,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +2803,10 Bedroom Mansion,Banana Island Victoria Island Extension Victoria Island Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +2804,5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2805,2 Bedroom Luxury Apartment For Sale,1st 6th Floor Eko Atlantic Victoria Island Lagos,$,"710,000",0,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +2806,3 Bedroom Luxury Apartment,1st 6th Floor Eko Atlantic Victoria Island Lagos,$,"875,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +2807,4 Bedroom Detached With 2 Rooms Bq,Vi Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +2808,Fully Detached House,Vi Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2809,4 Bedroom Detached House With 2 Room Bq With Gate House,Vi Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +2810,Fully Detached Duplex At Victoria Island,Vi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths, Toilets,Other Victoria Island +2811,4 Bedroom Terrace House With Bq,T F Kubuoye Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2812,Four(4) Bedroom Duplex,T F Kubuoye Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2813,Land, Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2814,Luxury Brand New 4 Bedroom Terraces In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",1,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +2815,Executive 5bedrooms Duplex With 2 Rooms Bq For Sale At Lagos Business School.,Lagos Business School. Victoria Island Lagos,₦,"50,000,000",0,0,1,5 beds,5 baths,6 Toilets,Other Victoria Island +2816,Exquisite 4 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2817,Exquisite And Luxurious 5 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2818,Executive 4 Bedrooms Terraced Duplex With A Bq And Swimming Pool,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2819,Nice Finished 4 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2820,Fully Serviced All Room Ensuit 4 Bedrooms Penthouse,Oniru Victoria Island Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +2821,Bare Land On Eko Atlantic City,Ahmadu Bello Way Victoria Island Lagos,₦,"1,250,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2822,Newly Built 5 Bedroom Semi Detached Duplex With Bq At Oniru Estate Victoria Island Lagos,Off Palace Road Oniru Estate Victoria Island Oniru Victoria Island Lagos,₦,"147,000,000",1,1,0,5 beds,5 baths,5 Toilets,Oniru +2823,4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island. Oniru Victoria Island Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets,Oniru +2824,4 Bedrooms Duplex,1004 Victoria Island Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2825,8units Luxury Beautiful Service 4bedroom Terrace Duplex With 1room Bq,Off Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +2826,2 Bedroom Flat,"Block D1 Cluster D, 1004 Estate, 1004 Victoria Island Lagos",₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +2827,Hot 4 Bedroom Duplex,Cherry Homes Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +2828,24 Rooms Hotel + Restaurant, Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2829,4 Bedroom Detached House With Separate Studies,Oniru Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets,Oniru +2830,"1,346 Sqm Of Bare Land",Palace Road Oniru Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2831,5 Bedroom Detached Duplex,Ademola Adetokunbo Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2832,3 Bedroom Flat,"Off Palace Road, Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2833,Mixed Use Land,Victoria Island Extension Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2834,Mixed Use Land,"Waziri Ibrahim, Victoria Island Extension Victoria Island Lagos",₦,"485,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2835,5 Bedroom Semi Detached Duplex,... Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2836,Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2837,Tastefully Finished 2 And 3 Bedroom Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2838,7 Bedroom Detached Duplex,"Off A J Mario, Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets,Victoria Island Extension +2839,5 Bedroom Semi Detached Duplex,Palace Road Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2840,4 Bedroom Terrace,Sutherland Court Victoria Island Victoria Island Lagos,₦,"20,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2841,4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,5 Toilets,Oniru +2842,4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2843,3 Bedroom Flat,"1004 Estate, Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +2844,Hotel/ Guest House,Oniru Victoria Island Lagos,$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2845,5 Storey Office Building,.. Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2846,4 Bedroom Semi Detached Duplex,"Victoria Island Extension, Victoria Island Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2847,Hotel/ Guest House,"Lekki Phase 1 By Victoria Island Major Area, Victoria Island Lagos",$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2848,3 Bedroom Flat,Jakande Crescent Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2849,Commercial Land For Sale,Eko Atlantic Victoria Island Lagos,$,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2850,5 Bedroom Detached House With Three Room Bq,Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2851,3 Bedroom Flat,"Dideolu Estate, Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2852,5 Bedroom Detached Duplex,.. Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2853,4 Bedroom Penthouse,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2854,Hotel,"Lekki Phase 1 By Victoria Island Major Area, Victoria Island Lagos",$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2855,9 Bedroom,Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,9 beds,0 baths,0 Toilets,Other Victoria Island +2856,4 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2857,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2858,9 Bedroom Detached Duplex,"Idowu Martins Street, Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,9 beds,7 baths,10 Toilets,Victoria Island Extension +2859,4 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2860,3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2861,Mixed Use Land,"Bishop Oluwole Street, Victoria Island Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2862,2 Bedroom Flat, Oniru Victoria Island Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2863,5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2864,Office Complex,Off Adetokunbo Ademola Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2865,10 Bedroom Twin Duplex,.. Adeola Odeku Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2866,4 Bedroom Terraced Duplex,Four Point Hotel Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,5 Toilets,Oniru +2867,Waterfront Land Measuring 2672sqm,Ozumba Mbadiwe Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2868,Block Of 12 Units Of 2 Bedroom Flat With 2 Units Of 1 Bedroom Pent House,.. Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2869,Residential Land,"Ologun Agbaje Street, Victoria Island Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2870,5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +2871,Brand New 4 Bedroom & Pent Room With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2872,4 Bedroom Fully Detached Duplex,Abiodun Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2873,Mixed Use Land,Kofo Abayomi Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2874,Well Finished 5 Bedroom Detached Duplex,By Lekki Right Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +2875,Luxury 4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2876,Block Of Flats,Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2877,4 Bedroom Semi Detached Duplex,"Bosun Adekoya Street, Oniru Via New Market, Oniru Victoria Island Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2878,3 Bedroom Flat,Victoria Island Lagos,$,"2,200,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2879,Hotel/ Guest House,Kofo Abayomi Victoria Island Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2880,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2881,3 Bedroom Block Of Flats, Adeola Odeku Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2882,4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2883,4 Bedroom Terrace Duplex,... Ligali Ayorinde Victoria Island Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2884,3 Bedroom Flat,.. Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2885,7 Bedroom Detached Duplex,"Off A J Mario, Victoria, Isalnd, Lagos Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets,Victoria Island Extension +2886,Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2887,4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2888,4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +2889,Luxury And Exquisite 3 Bedroom Apartment, Victoria Island Lagos,$,"54,500",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2890,3 Bedroom Flat,"1004 Estates, Oniru Victoria Island Lagos",₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2891,Miniflat, Oniru Victoria Island Lagos,₦,"33,000,000",0,0,0,1 beds,0 baths,0 Toilets,Oniru +2892,Land,"Oniru Private Beach Estate, Vi, Oniru, Victoria Island Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2893,Spacious 4 Bedroom Duplex With 2 Rooms Bq,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2894,4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2895,4 Bedroom Penthouse,.. Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2896,3 Bedroom Flat,"Dideolu Estate, Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2897,5 Bedroom Detached Duplex,"Off Palace Road, Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2898,Office Space,"2a And 2b Oko Awo Close Vi, Victoria Island Extension, Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2899,Office Space, Adeola Odeku Victoria Island Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2900,3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2901,3 Bedroom Serviced Flat,Mabogunje Street Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +2902,3 Bedroom Flat,"Aremo Olusegun, Oniru Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2903,10 Units Of 3 Bedroom Flat With Bq, Victoria Island Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2904,Mixed Use Land,Ahmadu Bello Way / Akin Adesola Street. Ahmadu Bello Way Victoria Island Lagos,₦,"22,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2905,5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2906,3 Bedroom Flat,Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2907,Mixed Use Land,Tiamiyu Savage Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2908,5 Bedroom Semi Detached Duplex,"Oniru Estate, Oniru Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +2909,7 Bedroom Detached Duplex As Office Space.,Muri Okunola Victoria Island Lagos,₦,"300,000,000",0,0,0,8 beds, baths,8 Toilets,Other Victoria Island +2910,"*bank Sale* 1 Unit Of 3bedroom( Ensuite) Luxury Apartment On The 24th Floor At Eko Pearls Towers, Vi",Victoria Island Victoria Island Extension Victoria Island Lagos,$,"1,800,000",0,1,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +2911,Banana Island Ikoyi Water Front 800m2. In Zone. J Plot ? Price. 480mil,Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2912,Victoria Island *4000sqm At Ibrahim Waziri. Price:1.5b,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2913,5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +2914,Commercial Property,.. Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +2915,Joint Venture Brief @ Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2916,"4nos 5 Bedroom Semi Detached Houses On 2200sqm Land At Adeleke Adedoyin Street, Victoria Island. N700m.",Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +2917,"5,050sqm* Of Land For Sale",Ligali Ayorinde Victoria Island Lagos,₦,"220,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2918,3000m2 Fence Round With Entrance Gate,"1004 Estate, Off Ozumba Mbadiwe 1004 Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2919,5 Storey Office Building With A Total Lettable Spave Of 1750sqm,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths,6 Toilets,Waziri Adeola Odeku +2920,3000m2 Fence Round With Entrance Gate,"1004 Estate, Off Ozumba Mbadiwe 1004 Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2921,"New 3 Bedroom Apartment With Bq, Pool And Gym",Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +2922,A Well Located Land,Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Oniru +2923,"New 4 Bedroom Apartment At Oniru, Lagos",Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +2924,4 Bedroom Maisonette,Muri Okunola Street Ademola Adetokunbo Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2925,Block Of 8 Flats,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2926,"Plot Measuring 2,300 + Sqms With Highrise Development Permission",Akin Adesola Street Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2927,Excellent 3 Bedroom Apartment For Sale,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +2928,Two Units Of Detached Houses,Close To Eko Hotel Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2929,Brand New Four Units Of 4 Bedroom Terraces With 4 Car Park Spaces,Close To 1004 Flats Victoria Island Lagos,₦,"1,200,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +2930,Cornerpiece Plot Of 715sqms,Ligali Ayorinde/ Muri Okunola Street Victoria Island Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2931,A Beautiful 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +2932,Luxury Newly Built 4bedroom Terrace Duplex With Swimming Pool And Gym,Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +2933,Luxury 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"80,000,000",1,0,1,3 beds,3 baths,4 Toilets,Oniru +2934,Luxury Beautiful Service 4bedroom Semi Detached’s Duplex With 1room,Gated Community Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2935,3 Bedroom Terrace Duplex.,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +2936,Luxury Beautiful Serviced 3bedroom With 1room,Gated Community Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +2937,4 Bedroom Detached Duplex,Opposite Eko Hotel And Suits Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +2938,Newly Built 5 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +2939,2500sqm Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2940,4126m2 Of Land, Victoria Island Extension Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2941,2 Numbers 5 Bedrooms Duplex On 2000sqm,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2942,2 Numbers 5 Bedrooms Duplex On 2000sqm,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +2943,"A Detached House On Commercial Roaf, V.i Lagos",Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2944,5 Bed Room Detach Duplex,Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,1,1,5 beds,8 baths,8 Toilets,Victoria Island Extension +2945,5 Bed Room Detach Duplex,Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets,Victoria Island Extension +2946,4 Bedrooms Serviced Terrace House For For Sale,Off Place Road Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2947,8 Bedrooms Detached House On 1318 Sqm,Off 1004 1004 Victoria Island Lagos,₦,"350,000,000",0,0,0,8 beds,7 baths,6 Toilets,Other Victoria Island +2948,4 Bedroom Terrace Duplex With Bq,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +2949,"2,672.792 Sqm Land For Sale","Ozumba Mbadiwe Road, Water Front Victoria Island Extension Victoria Island Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +2950,6 Units Of 3 Bedroom Terrace Duplex,"Off Ajose, Victoria Island Extension Victoria Island Lagos",₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets,Victoria Island Extension +2951,A Sharp And Neat Luxurious Taste Fully Finished 2 And 3 Bedroom Flats,Victoria Island Lagos,$,"710,000",0,1,1,3 beds,3 baths,3 Toilets,Other Victoria Island +2952,3 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2953,Luxury 15 Floors High Rise Open Plan Office Complex,Eko City Eko Atlantic Victoria Island Lagos,$,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2954,Newly Built 4bed Room Terrace Suplex,Hy Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets,Oniru +2955,Lovely 3bed Room Duplex With A Bq,Off Palace Way Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets,Oniru +2956,Luxury And Well Built 4 Bedrooms Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +2957,5 Bedroom Terrace Unit,46b Anifowoshe Street Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Waziri Adeola Odeku +2958,4 Bedroom Masionette For Sale,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +2959,State Of The Art One Bedroom Apartment,Water Coperation Drive Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"32,000,000",0,1,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +2960,One Bedroom Luxury Apartment,Wter Coperation Drive Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Victoria Island +2961,"Very Lovely 3 Bedroom Massionette For Sale At 1004 Estate, Victoria Island",1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +2962,"Luxuriously Built 3 Bedroom Apartment For Sale At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +2963,"Nicely Structured 3 Bedroom House For Sale At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +2964,Units Of Luxuriously Built And Serviced 3 Bedroom Apartment For Sale At Oniru Victoria Island Ext,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +2965,Luxury 3 Bedroom Apartment On Victoria Island,Water Coperation Drive Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +2966,4 Bedroom Duplex,... Ligali Ayorinde Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +2967,Tastefully Finished (luxury) 8 Unit Of 3 Bedroom Semi Detached House + Bq,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +2968,2 Bedroom Flat,"Off Palace Road, Oniru Victoria Island Lagos",₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +2969,25 Exotic Suites/mini Suites,... Victoria Island Lagos,₦,"1,500,000,000",0,1,1,1 beds,1 baths,1 Toilets,Other Victoria Island +2970,3 Units Of 4 Bedroom Duplex,... Saka Tinubu Victoria Island Lagos,₦,"1,000,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Victoria Island +2971,Hotel For Sale In Victoria Island 280720,Victoria Island Lagos,$,"40,000,000",0,0,1, beds, baths, Toilets,Other Victoria Island +2972,4 Bedroom Terrace Duplex,... Victoria Island Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Victoria Island +2973,Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Estate Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +2974,A Newly Built And Well Finished Service 4bedroom,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Oniru +2975,Luxury 2 Bedroom Flat With Fantastic View Of The Lagos Lagoon,1004 Victoria Island Lagos,₦,"58,000,000",0,1,0,2 beds,1 baths,2 Toilets,Other Victoria Island +2976,"Hot Cake 3 Bedroom Apartment With Bq In Oniru, Newly Built With Modern Finishes Top Of The Class Fitted Kitchen 70m Asking ...",Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds, baths, Toilets,Oniru +2977,Luxury 4 Bedroom Fully Detached Duplex With A Bq And 2 Living Areas,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,6 Toilets,Oniru +2978,5 Bedroom Duplex For Sale In Victoria Island 150703,Victoria Island Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +2979,Office Building For Sale In Lagos,Ozumba Mbadigwe Ahmadu Bello Way Victoria Island Lagos,₦,"15,000,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +2980,Massive Commercial 6bedroom Duplex With 2room Bq Suitable For Any Office Use For Sale,By Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0,6 beds, baths,7 Toilets,Other Victoria Island +2981,Luxury Newly Built 6units 4bedroom Terrace Duplex With 1bq Each For Sale,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +2982,A Commercial Plot Of Land,Dideolu Estate Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +2983,Victoria Island Sale 3500m2 Bare Land On Musa Yaradua For Sale. Asking 1bn. Title: Very Good.,... Victoria Island Lagos,₦,"1,000,000,000",0,1,0,0 beds,0 baths,0 Toilets,Other Victoria Island +2984,Government Consent,Magodo Phase 2 Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets,Victoria Island Extension +2985,7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",1,1,1, beds, baths, Toilets,Oniru +2986,5 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2987,7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",1,1,1,10 beds,10 baths,10 Toilets,Oniru +2988,4 Bedroom Maisonette,... Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +2989,3 Bedroom Terrace Duplex,... Oniru Victoria Island Lagos,₦,"3,200,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2990,3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2991,3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets,Victoria Island Extension +2992,3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets,Victoria Island Extension +2993,3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets,Victoria Island Extension +2994,Exquisitely Finished Newly Built 4 Bedroom Terrace At Oniru,Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +2995,C Of O,Off Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +2996,Land Measuring 570sqm In The Heart Of Oniru For Sale,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets,Oniru +2997,Waterfront Corner Piece Land (2262m²) For Sale With Governor's Consent,Oniru Victoria Island Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets,Oniru +2998,3 Bedroom Flat,.... Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +2999,7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Oniru +3000,7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Oniru +3001,3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3002,Newly And Tastefully Finished 4 Bedroom Semi Detached Duplexes/townhouses For Sale In Victoria Island,Victoria Island Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3003,22 Unit Of Three Bedroom Each For Sale,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,3 Toilets,Oniru +3004,4 Bedroom Terrace Duplex For Sale In Victoria Island 17jun02,Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3005,2 Bedroom Flat For Sale In Victoria Island 17jun01,Victoria Island Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +3006,4 Bedroom Terrace Duplex,... Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3007,A Plot Of Land In A Business District,Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3008,Durblin One(1)bedroom Apartment,Danjuma Street Ligali Ayorinde Victoria Island Lagos,₦,"20,000",1,1,1,1 beds, baths, Toilets,Other Victoria Island +3009,Exquisite Three(3) Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"100,000",1,1,1,3 beds, baths, Toilets,Other Victoria Island +3010,8 Units Of 3 Bedroom Flat For Sale In Victoria Island 13jun13,Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3011,Spacious 4 Bedroom Terraced Duplex With A Bq For Sale,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3012,Land,Victoria Island Victoria Island Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3013,*brand New 5 Bedroom Detached House For Sale At Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3014,Luxury 4 Bedroom Penthouse,"Along Pricewater Coopers, Opposite Landmark Towers Victoria Island Extension Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3015,"A Massive Property Comprises Of 54 Suites On A 4,126sqm Land.",Off Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"900,000,000",1,0,0,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +3016,3 Bedroom Apartments And Maisonettes,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3017,4 Bedroom Terrace House For Sale In Oniru 10jun22,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3018,4 Bedroom Terrace Duplex For Sale In Victoria Island 09jun21,Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3019,2 Bedroom Flat For Sale In Victoria Island 09jun20,Victoria Island Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +3020,"Governor Consent. 1,234square Meter Of Dry Land In Victory Island Off Ligali Ayorino, Price: 325m",Victory Island Ligali Ayorinde Victoria Island Lagos,₦,"3,250,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3021,Governor Consent. 8000squeter Meter Of Dry Land In Oniru Victory Island In A Well Developed Area Price: 160k Per Square Meters,Water Cooperation Road Oniru Victory Island Oniru Victoria Island Lagos,₦,"160,000",0,0,0, beds, baths, Toilets,Oniru +3022,Luxury 2 Bedroom Flat With Fantastic View Of Lagos Lagoon,1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3023,Certificate Of Occupance Cofo Lagos State,Apagbo By Ologunagbaje Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,10 beds,7 baths,7 Toilets,Waziri Adeola Odeku +3024,4 Bedroom Maisonette With A Maids Room,Musa Y’ardua Street Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3025,4 Bedroom Terrace House For Sale In Oniru 03jun13,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets,Oniru +3026,5 Bedroom Semi Detached Duplex For Sale In Victoria Island 21mar10,Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,4 baths,4 Toilets,Other Victoria Island +3027,Office Complex For Sale In Victoria Island 22may8,Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3028,5 Bedroom Fully Detached House For Sale In Oniru 6may10,Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +3029,4 Bedroom Twin Duplex Houses For Sale In Victoria Island 17apr3,Victoria Island Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3030,"3, 4 Bedroom Terrace For Sale In Oniru 27apr21",Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3031,4 Bedroom Terrace Duplex For Sale In Oniru 7apr9,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3032,"2, 3 And 4 Bedroom Apartments For Sale In Oniru 4apr48",Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets,Oniru +3033,Land For Sale In Victoria Island 31mar34,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3034,3 Bedroom Flat For Sale In Oniru 28mar50,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3035,"4,685.558sqm Land For Sale In Oniru 5may48",Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Oniru +3036,Block Of 3 Bedroom Flats For Sale In Oniru 15apr42,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3037,Office Building For Sale In Vi 25apr31,Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3038,3 Bedroom Flat For Sale In Victoria Island 8may8,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3039,3 Bedroom Apartment For Sale In Oniru 16apr22,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3040,Plot For Sale In Eko Atlantic 01jun55,Eko Atlantic Victoria Island Lagos,$,"1,800",0,0,0, beds, baths, Toilets,Other Victoria Island +3041,2 Bedroom Penthouse For Sale In Oniru 9may31,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets,Oniru +3042,3 Bedroom Flat For Sale In Victoria Island 29apr41,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3043,3 And 4 Bedroom Terrace Duplex For Sale In Oniru 6apr39,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3044,Land For Sale In Oniru 17apr29,Oniru Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets,Oniru +3045,Land For Sale In Victoria Island 30apr34,Victoria Island Lagos,₦,"22,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3046,3 Bedroom Flat For Sale In Victoria Island 9apr34,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3047,3 Bedroom Flat For Sale In Oniru 4may37,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3048,6 Bedroom Detached House For Sale In Vi 24apr69,Victoria Island Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Victoria Island +3049,10 Units Of 3 Bedroom Flat For Sale In Victoria Island 29ape2,Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3050,4 Bedroom Apartment For Sale In Victoria Island 15may24,Victoria Island Lagos,₦,"410,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3051,8 Nos 3 Bedroom Flats On Adeola Hopewell Street Victoria Island,Adeola Hopewell Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3052,Spacious 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3053,Commercial Property,"Waziri Ibrahim Street, Victoria Island Lagos Adeola Odeku Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3054,"4 Bedroom Terrace Duplexes, Location: Victoria Island, Lagos",Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3055,1.200 Per Square Meter,Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +3056,"Fenced & Gated Bare Land Measuring 2,000sqm Plus Off Ligali Ayorinde Victoria Island Lagos. Now Available...... Title Deed(registered)",Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3057,3000sqm Bareland Available In Victoria Island Ext,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Oniru +3058,4000sqm Property For Sale,Kofo Abayomi Street Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,4 Toilets,Other Victoria Island +3059,Fully Serviced Four(4) Bed Fully Fitted Luxurious Semidetached Duplexes,Off Tiamiyu Savage Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths, Toilets,Other Victoria Island +3060,Brand New 4 Bedroom Terrace Duplex With A Room Bq And Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3061,Two Fully Detached Houses On 850sqm Is Now Available For Sale,Off Ademola Adetokunbo Victoria Island Lagos,₦,"600,000,000",0,0,0,8 beds,8 baths,8 Toilets,Other Victoria Island +3062,A Building With Two(2) Units Semidetached Houses In Victoria Island Now Available For Sale ...,Off Akin Adesola Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3063,Newly Built 5 Bedroom Detached House,Off Oniru Market Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3064,5 Bedroom Terrace Duplex For Sale At Oniru Estate Victoria Island Vi421,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3065,3 Bedroom Semi Detached House For Sale At Oniru V.i Vi662,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3066,"2,100sqm Land","1, Engineering Close By Churchgate Towers And Total Plc Idowu Taylor Victoria Island Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3067,New Four(4) Floors Open Plan Commercial Building With Three Sides Glass Opening On A Land Size 2000sqm..,Off Akin Adesola Akin Adesola Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3068,Bare Land Measuring 7000 Sqm At Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3069,"1,360.77sqm Land For Sale At Victoria Island, Lagos.",Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3070,Newly Built 3 Storey Building And Partly Furnished With Excellent Facilities On 1700 Sqm Land For Sale At Victoria Island #43,Ligali Ayorinde Victoria Island Lagos,₦,"870,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3071,"2000 Sqm Bareland At Victoria Island, Lagos",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3072,"1670 Sqm Bare Land At Victoria Island, Lagos",Victoria Island Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3073,"Sales: A Detached Structure Sitting On 1,045sqm Land At V.i 350m",Akin Ogunlewe Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3074,2116 Sqm Land With Raft Foundation At Victoria Island,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3075,"Fully Fenced Land Measuring 5,100sqm For Sale At Victoria Island, Oniru, Lagos.",Oniru Victoria Island Lagos,₦,"200,000",0,0,0, beds, baths, Toilets,Oniru +3076,"4 Bedroom Terrace Apartment In Oniru, Victoria Island, Lagos",Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets,Oniru +3077,"Bare Land Measuring 2959 Sqm For Sale In Victoria Island, Lagos",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3078,"1680 Sqm Bare Land At Victoria Island, Lagos",Adeola Odeku Victoria Island Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3079,Bareland Measuring 2159 Sqm For Sale At Victoria Island,Ahmadu Bello Way Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3080,5 Star Hotel For Sale,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"12,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3081,Fenced 2000 Sqm Of Dry Land, Akin Adesola Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3082,Strategic Fenced Land Measuring 1280sqm For Sale,Chief Abiodun Way By Four Point Hotel Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Oniru +3083,Uncompleted 5 Bedroom Detached House,Oniru Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3084,3184 Sqm For Sale On Idowu Martin,"Idowu Martin Street, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3085,1280sqm Land Alone City Of David,"Yusuf Abiodun Way, Along City Of David Oniru Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3086,3143sqm Land For Sale Along Adeola Odeku,Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3087,Lovely Brand New 4 Bedroom Terrace Duplex For Sale In Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3088,9400sqm Land For Sale Close To Landmark Event Center,"Landmark Road, Oniru Oniru Victoria Island Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3089,5 Bedroom Fully Detached Duplex For Sale In Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3090,Newly Built 3bedroom Flat At Oniru Dideolu Estate,Dideolu Court Vi Oniru Victoria Island Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +3091,Currently Being Built 3 Bedroom Apartments In Victoria Island,Hjd Adeola Odeku Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +3092,3 Bedroom Luxury En Suite Apartment With Maid Room In Oniru,Cbb Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3093,"A 3 Bedroom Bungalow Sitting On A 3,200sqm Opp Mega Plaza",Ghah Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3094,Newly Built 4 Bedroom Luxury En Suite Terrace Duplex In Victoria Island,Fgh Victoria Island Lagos,₦,"180,000,000",1,1,0, beds, baths, Toilets,Other Victoria Island +3095,"4 Bedroom Penthouse For Sale Price: N300,000,000",Teslim Elias Street Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +3096,Quick Sale At Oniru: A 3 Bedroom Serviced Flat Plus Furniture,Oniru Victoria Island Lagos,₦,"100,000,000",1,0,1, beds, baths, Toilets,Oniru +3097,"For Sale; Commercial Land Measuring 1,280sqm In Oniru",Oniru Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Oniru +3098,"A Brand New Office Complex On 4 Floors Lying On A Land Measuring Approximately 1,800 Square Meters",Adeola Odeku Victoria Island Lagos,₦,"2,800,000,000",0,1,0, beds, baths, Toilets,Waziri Adeola Odeku +3099,A Unit Of 3 Bedroom (ensuite) Luxury Apartment At Eko Pearls Towers,Eko Atlantic City Victoria Island Lagos,$,"1,800,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3100,Executive Brand New Terrace Duplex With Bq At Ikoyi.,Abeke Residences Ojora Ikoyi Lagos. Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3101,"A New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3102,"A Detached Structure Sitting On 1,045 Square Meters Land",Akin Ogunlewe Road Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3103,An Affordable Five Bedroom Fully Detached Duplex With Bq For Sale At Oniru.,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +3104,Corporate Building For Sale A Former Access Bank Headquarters On 10 Floors,Adeola Odeku Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3105,Luxury 4 Bedroom Townhouse With 1 Room Bq,... Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3106,This Magnificent 3 Bedroom Duplex With A Bq For Sale At Oniru 65m Asking Price,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3107,Under Construction Newly Built Five Bedroom Detached Duplex With A Boy’s Quarters,Oniru Victoria Island Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +3108,Newly Built Four Bedroom Detached Duplex For Sale,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3109,Newly Built 4 Bedroom Terraces,.. Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3110,"1,300 Square Meter",Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets,Oniru +3111,Newly Renovated 4 Bedroom Terrace Duplex For Sale At Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3112,Executive 3bedroom Flat,@ Lawani Oduloye Street Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets,Oniru +3113,"Brand New Office Complex On 4 Floors Lying On A Land Measuring Approximately 1,800 Square Meters, Situated Along The Commercial Adeola Odeku Street, Victoria Island, Lagos",Adeola Odeku Victoria Island Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3114,"Tastefully Newly Built 4,bedroom Detached House","Road 3 House 6,vgc Victoria Island Extension Victoria Island Lagos",₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3115,Newley Built 4bedroom Semidetached House In A Mini Estate,Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3116,Newly Built 4 Bedroom Terrace Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3117,Old Building 1200sqm,Olubogbaji Street Off Post Office Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3118,4 Bedroom Duplex With Bq,... Saka Tinubu Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3119,9 Bedroom With 200 Seater Event Centre,"21b Idowu Martins Street, Victoria Island, Lagos Kofo Abayomi Victoria Island Lagos",$,"1,200,000",0,0,0,9 beds,4 baths,4 Toilets,Other Victoria Island +3120,4 Bedroom Detached House With 3 Rooms Boys’ Quarter At Victoria Island: N350m,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets,Other Victoria Island +3121,Brand New 4 Bedroom Terrace Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3122,3 Bedroom Flat With One Bq,Ajoseadegun Street Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +3123,Newly Built 4 Bedroom Terrace Duplex For Sale In Victoria Island Lagos.,Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0, beds,4 baths,5 Toilets,Victoria Island Extension +3124,15 Storey Building Tower,Adeyemo Alakija Victoria Island Lagos,₦,"20,000,000,000",0,1,0,0 beds,0 baths,8 Toilets,Other Victoria Island +3125,"Land Measuring 2,228.94sqm",Ahmadu Bello Way Victoria Island Lagos,₦,"1,225,917",0,0,0, beds, baths, Toilets,Other Victoria Island +3126,"Get 1,2 ,3 Bedroom Luxury Apartment In Eko Atlantic With Just 10m Initial Deposit And 2 And Half Years Payment Plan (a And A Tower). A & A Tower Is A New Luxury Residential Development Situated In The Ocean Front District Of The Eko Atlantic. It Is Locat",Ocean Front Eko Atlantic Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +3127,Brand New Fully Detached 7 Bedroom Duplex With Swimming Pool For Sale On Banana Island. Price: 700m,Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3128,Prime Land For Sale On Ahmadu Bello Way And Bishop Oluwole Street Victoria Island 16000 Sqm N350k Per Square Meter Federal Cofo,Ahmadu Bello Way Victoria Island Lagos,₦,"350,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3129,Luxury 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,3 Toilets,Oniru +3130,Brand New 5 Bedroom Fully Detatched House,Osapa London Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,4 Toilets,Oniru +3131,Brand New Fully Furnished Water Front Detached Duplex On Banana Island.,Victoria Island Extension Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3132,Newly Built 4 Bedroom Semi Detached Duplex With 1bq,"Palace Road, Oniru, Lagos Oniru Victoria Island Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +3133,Mixed Use Land For Sale In An High Value Location,Oyin Jolayemi Victoria Island Extension Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3134,"20,000 Sqmt Fence And Gated Land",Ahmadu Bello Way Victoria Island Lagos,₦,"550,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3135,Modern Building In The Heart Of Victoria Island,Akin Adesola Victoria Island Lagos,$,"15,000,000",0,1,1, beds, baths, Toilets,Other Victoria Island +3136,4 Bedroom Flat For Sale At 1004 Estate,Adetokunbo Ademola 1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3137,Newly Built 3 Bedrooms Terraced Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3138,Tastefully Fnished Terrace Duplexe For Sale In Vi,Oniru Victoria Island Lagos,₦,"105,000,000",1,1,1, beds, baths, Toilets,Oniru +3139,Building For Sale At Vi,Ademola Adetokunbo Str. V.i Ademola Adetokunbo Victoria Island Lagos,₦,"1,800,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +3140,Newly Built 3bedroom Flat For Sale At Oniru Inside Oniru Estate,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +3141,"Corporate Offer For Sale Of Property At Bishop Oluwole Street, Victoria Island, Lagos",Bishop Oluwole Ahmadu Bello Way Victoria Island Lagos,₦,"4,600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3142,15 Storey Kanti Towers In Victoria Island,Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3143,3 Bedroom Apartment For Sale Per Flat,Victoria Island Akin Olugbade Victoria Island Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,3 Toilets,Other Victoria Island +3144,A 7 Storey Commercial Property For Sale At Victoria Island,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Victoria Island +3145,New 3 Bedroom Terrace,Off King Palace Oniru Victoria Island Lagos,₦,"49,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +3146,Lovely 3 Bedroom Serviced Flat With One Room Bq For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +3147,For Sale; Luxury 3 Bedroom Terrace House With A Maid's Room At Oniru,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +3148,"For Sale, Luxurious 5 Bedroom Fully Detached Serviced House At Oniru",Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +3149,For Sale; A Brand New 4 Bedroom Tasetefully Finished Terrace House At Oniru,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +3150,For Sale; Brand New 5 Bedroom Semi Detached House With A Room Bq At Oniru,Oniru Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +3151,Exquisitely Finished 5 Bedroom Terrace For Sale,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets,Oniru +3152,Brand New Service 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +3153,Luxury One Bedroom Flat For Sale, Oniru Victoria Island Lagos,₦,"45,000,000",0,0,1,1 beds,1 baths,1 Toilets,Oniru +3154,5 Bedroom Terrace For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths, Toilets,Oniru +3155,Brand New And Exquisitely Finished Service 3 Bedroom Duplex Located In Oniru Extension And Available For Sale,Oniru Extension Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,3 Toilets,Oniru +3156,For Sale; 3 Bedroom Serviced Terraces At Oniru,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +3157,For Sale Nice 3 Bedroom Duplex,Dideolu Estate; Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3158,Fenced And Bareland Measuring 1599.665m2,Oyin Jolayemi Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3159,Serviced 3 Bedroom Luxury Apartment,Water Coperation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3160,"Land Measuring 3,150sqm",Oniru Opp. Rccg City Of David Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3161,"10,000sqm Sand Filled Land Along Landmark Road. (land Can Be Sold In Bits)","Landmark Road, Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3162,"Land Measuring 39,940sqm (3.994 Hectares)","Maiyegun Tourism Zone, Beside Silverbird Radio Victoria Island Lagos",₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3163,4 Bedroom Terrace Detached In Oniru Estate,"Ihuntayi Road, Oniru Private Estate Victoria Island Extension Victoria Island Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3164,Luxury Brand New 4 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3165,Luxury Brand New 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3166,Exquisite 5 Bedroom All Rooms Ensuite Detached House + A Pool,Oniru Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3167,"3 Nos Detached Houses With Six Rooms Bq On 3,200sqm",Along Idowu Martins Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",1,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3168,"Land Measuring 1,413sqm",Ajose Adeogun Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3169,4 Bedroom Fully Detached House + Bq,Behind 4 Points Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3170,Exquisitely Finished 3 Bedroom Serviced Apartment +maid's Room,Water Coperation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3171,"Land Measuring 4,600sqm",Directly Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3172,"Land With Demolishable Structure Measuring 2,600 Sqm",Musa Yar'adua; Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3173,"A Cornerpiece Parcel Of Land Of 2513m2 Along Ahmadu Bello Way, Victoria Island, Lagos For N1.3b","Ahmadu Bello Way, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,300,000,000",0,0,0,10 beds, baths, Toilets,Other Victoria Island +3174,"A Cornerpiece Parcel Of Land Of 2518m2 At Ahmadu Bello Way, Vi With Fed. C Of O. Price. N1.3b.","Ahmadu Bello Way, Vi Ahmadu Bello Way Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3175,Home Dry Land With C Of O Behind Shoprite Sangotedo,Behind Shoprite Novare Mall Eko Atlantic Victoria Island Lagos,₦,"14,500,000",1,1,1, beds, baths, Toilets,Other Victoria Island +3176,"Two Plots Measuring Almost 4,500sqms Both Plots With Existing Buildings On Them With Lagos State Title Selling",Victoria Island Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3177,For Sale :land Size: 2159.844sqm,Vi Ahmadu Bello Way Victoria Island Lagos,₦,"1,180,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +3178,"For Sale : 15,000sqm Land On Ozumba Mbadiwe Road Near Oriental Hotel Victoria Island. Price 5 Billion",Vi Victoria Island Extension Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3179,"For Sale : 15,000sqm Land On Ozumba Mbadiwe Road Near Oriental Hotel Victoria Island. Price 5 Billion",Ozumba Road Victoria Island Extension Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3180,Land For Sale,Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3181,"3300 Square Metres Of Land On Muri Okunola Street, Victoria Island, Lagos. For Sale!!! It Is Located In A Commercial Precinct With High Flow Of Traffic And Accessible Road Network.",Muri Okounola Victoria Island Extension Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3182,"4 Storey Office Building, Located Off Adetokunbo Ademola Street, Victoria Island, Lagos, Nigeria (opposite Eko Hotel) Is Available For Sale",Ademola Adekunbo Street Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3183,Elegantly Built 5 Bedroom Detached Duplex,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +3184,Prime Vacant Bank Building On Plot Measuring 600sqms Available For Sale,V. I Ademola Adetokunbo Victoria Island Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3185,4 Bedroom Semi Detached Terraced,Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3186,Massive 8 Units Of 3 Bedroom Terrace With Swimming Pool And Gym 3500sqm,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +3187,Plot Of Land Measuring 851sqms,Victoria Island Oniru Victoria Island Lagos,₦,"138,000,000",0,0,0, beds, baths, Toilets,Oniru +3188,Luxury Newly Built 5bedroom Semi/terrace Duplex With 1bq,Vi Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3189,Land For Sale,Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3190,"Plots Of Land Measuring Almost 8,500sqms",Vi Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3191,Exquisitely Built 4 Bedroom Terraced Duplex,Ihuntanyi St Oniru Oniru Victoria Island Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3192,For Sale:massive Land Measuring 850sqm Availabe In Prime Victoria Island,Prime Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3193,Plot Measuring 822sqms For Sale,Victoria Island Oniru Victoria Island Lagos,₦,"138,000,000",0,0,0, beds, baths, Toilets,Oniru +3194,"Plots Measuring Almost 4,500sqms",Victoria Island Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3195,Newly Built Office Space For Sale,Victoria Island Area Of Lagos. Victoria Island Lagos,₦,"180,000,000",0,1,0, beds,4 baths,4 Toilets,Other Victoria Island +3196,Oriental Hotel: 5 Star Luxury Functional Waterfront Hotel With Asian Furn,Victoria Island Area Of Lagos. Victoria Island Extension Victoria Island Lagos,$,"250,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3197,Prime Building On Plot Measuring 900sqm On Saka Tinubu Street Victoria Island Is Available For Sale Price: *n320m Title:c Of O,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3198,4 Bedroom Semi Detached Terraced,Vistoria Island Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3199,5 Bedroom Flat Detached Duplex,Victoria Island Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3200,Massive Commercial Land Measuring 1000sqm Facing Oriental Hotel,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Oniru +3201,Elegant And Luxury Built 3bedroom Flat In A Serene Area,Victoria Island Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3202,Nicely Built 2bedroom Flat In A Private Estate,Oniru Private Estate Oniru Victoria Island Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets,Oniru +3203,Home 5 Bedroom Duplex With C Of O In Omole Phase 2,Omole Phase 2 1004 Victoria Island Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets,Other Victoria Island +3204,Certificate Of Occupancy (c Of O),"Ozumba Mbadiwe Road, Close To Oriental Hotel Kofo Abayomi Victoria Island Lagos",₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3205,Newly Built And Serviced 3bedroom Luxury Flat With A Room Bq,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,7 Toilets,Oniru +3206,"4 Bedroom Terrace In A Serene Environment Of Oniru Estate, Victoria Island, Lagos.",Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +3207,9 Floor High Rise,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3208,Super Luxury 1 Bedroom Apartment In Victoria Island,Olosa Street Oniru Victoria Island Lagos,₦,"50,000,000",1,1,0,1 beds,2 baths,2 Toilets,Oniru +3209,"3 Bedroom Apartment + Maid's Room (under Construction ) N10,000,000 Initial Deposit And Spread Balance Payment Over 24 Months","Water Corporation Drive, Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Victoria Island Extension +3210,Luxury 1 Bedroom Beach View Apartment(off Plan),Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"38,000,000",1,0,0,1 beds,2 baths,2 Toilets,Other Victoria Island +3211,Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3212,Tastefully Finished 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3213,Brand New 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3214,Luxury 1 Bedroom Mini Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,2 Toilets,Oniru +3215,Luxury 2 Bedroom Flat With Excellent Facilities,Vi Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3216,Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3217,Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3218,Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3219,Brand New 3 Bedroom With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3220,Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3221,Tastefully Finished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3222,Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3223,Commercial Property On 863 Square Meters Of Land,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds, baths, Toilets,Other Victoria Island +3224,4 Bedroom Detached House + 2 Rooms Bq,Atlantic Beach Estate Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3225,Brand New Spacious 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +3226,Bare Land Measuring 3000sqm,Directly Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3227,Land Measuring 1663sqm,"Oyin Jolayemi Street, Close To Eko Hotels Victoria Island Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3228,Executive 5bedroom Duplex With A Bq For Sale At Vgc.,Vgc Victoria Island Lagos. Victoria Island Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3229,Luxurious Brand New 7 Units Of 4bedroom Terrace Duplex For Sale At Palace Road Oniru.,Oniru Palace Road Victoria Island Lagos. Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3230,"Newly Built 4 Units Of Terraces, 2 Units Of 4 Bedroom And 2 Units Of 5 Bedroom With A Room Bq", Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3231,"A Well Maintained 4brm Detached Duplex + 3rms Bq @ Barabale Musa Cr, V. I. #350m",Barabale Musa C Vi Ahmadu Bello Way Victoria Island Lagos,₦,"350,000,000",0,0,1,4 beds,4 baths,5 Toilets,Other Victoria Island +3232,Brand New 4 Floors Of Office Space, Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3233,Newly Built 4 Bedroom Terrace Duplexes,Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets,Other Victoria Island +3234,"For Sale In Lekki Phase 1 Lagos. An Apartment Which Comprises Of 17 Numbers 1,2&3 Bedrooms (2&3 Bedroom Penthouse), Sitting On A Land Measuring 2801sqm",Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3235,A Strategically Located “commercial Plot” With Governor’s Consent 1.3b,"@ Landbridge Avenue, Oniru Lagos Oniru Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Oniru +3236,3 Bedroom Bungalow With Less Than A Year Of Use... Owner Relocated Abroad 28m,Thomas Estate Before Abraham Adesanya Victoria Island Lagos,₦,"28,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +3237,"Luxury & Newly Built Open Office Space Of International Standard Of 15 Floors , With Ample Parking Space On Each Floors",Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,1,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3238,3 Bedroom Flat With A Bq For Sale,Wurola Court Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3239,4 Bedroom Terraces With A Bq,... Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3240,Newly Built 3bedrooms Flat At Victoria Island,Off Palace Road Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,3 beds,3 baths,4 Toilets,Oniru +3241,Joint Venture At Oniru Land Measuring 4985m2 Fenced And Gated With Approval For Commercial Purposes,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Oniru +3242,Luxury 3 Bedroom Vi Shortlet,Victoria Island Lagos,₦,"400,000",0,1,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3243,5 Bedroom Semi Detached Duplex Oniru,Oniru Victoria Island Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,5 Toilets,Oniru +3244,10 Flats Of 3bedroom Flat,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",1,1,1,3 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3245,4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +3246,1950sqm Bare Land,... Ademola Adetokunbo Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3247,"6,850sqm Bare Land", Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3248,Land,"Palace Road, Oniru Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3249,Luxury 4 Bedroom Terrace Duplex With 2 Room Bq, Oniru Victoria Island Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3250,Fully Fenced & Gated 452 Sqm Bareland,"Mabogunje St, Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3251,933 Sqm Land, Eko Atlantic Victoria Island Lagos,₦,"365,773,320",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3252,4 Bedroom Terrace House With Bq,"Oniru Estate, Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3253,944 Sqm Land, Eko Atlantic Victoria Island Lagos,₦,"370,085,760",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3254,Land,"Dideolu Esate, Victoria Island Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3255,House, Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3256,"Prime Land Measuring 2,300 Sqm In Victoria Island",... Adeola Odeku Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3257,3 Bedroom Flat,"Off Palace Raod, Oniru Victoria Island Lagos",₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +3258,Well Maintained And Serviced 3 Bedroom Ground Floor Flat,"Off Palace Raod, Oniru Victoria Island Lagos",₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +3259,Land, Eko Atlantic Victoria Island Lagos,₦,"377,926,560",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3260,Land, Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3261,Land, Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3262,Fully Fenced & Gated 900sqm Bareland,"Mabogunje St, Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3263,Land,"Ibile Close, Oniru Victoria Island Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3264,Newly Built 4bedroom Terrace Duplex With Ac Units,Victoria Island Oniru Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +3265,Luxury 4bedroom Terrace For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets,Oniru +3266,Land Measuring 3000sqm,Directly Along Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3267,A Corner Piece Detached Building,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3268,Land,Landmark Center Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3269,"4060.646 Sqm Water Front Bare Land For Sale At Ozumba Mbadiwe Street, Victoria Island, Lagos.",Ozumba Mbadiwe Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3270,C Of O,"Oko Awo Street, Victoria Island,lagos. Victoria Island Extension Victoria Island Lagos",₦,"270,000,000",0,0,0,10 beds, baths, Toilets,Victoria Island Extension +3271,C Of O,"Oko Awo Street, Victoria Island,lagos. Victoria Island Extension Victoria Island Lagos",₦,"270,000,000",0,0,0,10 beds, baths, Toilets,Victoria Island Extension +3272,4 Bedroom Terrace Duplex At Oniru,Plot 25 Ihuntayi Street Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3273,Newly Built 4 Bedroom Terrace Duplex At Oniru,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3274,Flat Apartment And Penthouses,Eko Atlantic City Saka Tinubu Victoria Island Lagos,$,"5,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3275,4 Bedroom Duplex,Ihuntayi Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +3276,New 4 Bedroom Luxury Semi Detached House,Oniru Victoria Island Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3277,4 Bedroom Duplex At Millennium Homes Estate Oniru,Millennium Homes Estate Oniru Near Shoprite Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3278,Brand New 3 Nos Of 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3279,Office Space,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3280,Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3281,Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3282,Executive 5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +3283,Tastefully Finished 4 Bedroom Mansionette, Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3284,Nice 3 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3285,Land, Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,7 baths,0 Toilets,Other Victoria Island +3286,4 Bedroom Semi Detached Duplex, Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3287,Luxury 4 Bedroom Apartment With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3288,2 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3289,Luxury 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3290,Landed Commercial Property,V/i Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3291,4 Bed Luxury Terrace With Penthouse And Bq,Near Mega Plaza Victoria Island Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3292,4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3293,5 Bedroom Detached House, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +3294,"Topmost Finished, World Class 10 Units, 3 Bedrooms Luxury & Serviced Apartments",Adeola Odeku Street Victoria Island Lagos,₦,"2,187,500,000",0,0,0,3 beds,4 baths, Toilets,Other Victoria Island +3295,Land,"Ligali Ayorinde, Victoria Island Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3296,4000 Sqm Land At Banana Island,Banana Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3297,An Empty Land,Beside Four Point Hotel Oniru Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets,Oniru +3298,2 Bedroom Flats In Block Of 12(nos),", Adeola Hopewell Victoria Island Lagos",₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3299,3 Bedroom Flat + Maid Room,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3300,4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3301,2700sqm Land For Sale,.... Eko Atlantic Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3302,Luxury Furnished House,"Plot 320, Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3303,4 Bedroom Duplex, Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3304,Old 5 Bedroom Duplex For Sale At Oniru Estate For Quick Sale,Oniru Estate Victoria Island Victoria Island Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +3305,Luxury 4 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3306,Brand New 3 Bedroom Flats,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3307,Brand New Luxury 4 Bedroom Penthouse, Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3308,Executive 3 Bedroom Flat,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,3 beds,4 baths,4 Toilets,Waziri Adeola Odeku +3309,Spacious 4 Bedroomed Purpose Built Town House Offers Excellent Accommodation,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3310,3 Bed High Rise Mansonette,"Cluster D, Block D5 (ground Floor) 1004 Victoria Island Lagos",₦,"67,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3311,2bedroom Flat,1004 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3312,"Fenced And Gated Waterfront Land Measuring 20,000sqm (5,000 Acres)",Ozumba Mbadiwe Street Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3313,2088sqm Fenced And Dry Commercial Land,Churchgate Street. Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3314,Luxury 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3315,Land For Sale,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Oniru +3316,Brand New 5 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Island Extension +3317,5 Bedroom Town House,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +3318,Land Measuring Approximately 5000sqm,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3319,Land Measuring 2600 Sqm,Corner Piece Land Between Jide Oki/ Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3320,Brand New Luxury 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3321,3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3322,Executive 3 Bedroom Flat In Victoria Island, Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3323,3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3324,Luxury 4 Bedroom Duplex In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3325,1346sqm Land,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3326,Land Measuring 4058sqm,Adeleke Adedoyin Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"1,050,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3327,Land Measuring 3000 M2,"Ozumba Mbadiwe; From Addax To Oriental Hotel (waterfront), Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3328,2784sqm At Dideolu Estate,Dideolu Estate Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3329,2 Units Of Exquisitely Finished 2 Bedroom Flat,Muri Okunola Victoria Island Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3330,2 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3331,1 Bedroom Flat,Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3332,5 Bedroom Duplex,Victoria Island Ademola Adetokunbo Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets,Other Victoria Island +3333,Luxury 3 Bedroom Flat For Sale At Oniru,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths, Toilets,Oniru +3334,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3335,1700sqm Land,Off Sakai Tinubu Saka Tinubu Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3336,3bedroom Flat,1004 1004 Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3337,Fully Serviced One Bedroom Apartment,Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets,Victoria Island Extension +3338,"Land Measuring 15,000m2","Directly Along Vi Lekki Expressway, Beside Oriental Hotel (waterfront) Victoria Island Lagos",₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3339,Land Measuring 16000 Sqm,Ozumba Mbadiwe Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3340,Brand New 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3341,Clean 2 Bedroom Flat,1004 Housing Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3342,15 Storey Kanti Towers At Adetokunbo Ademola,Adetokunbo Ademola Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3343,Land,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3344,3 Bedroom Duplex + Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,1 Toilets,Victoria Island Extension +3345,Newly Built One Bedroom Apartment Furnished, Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,3 Toilets,Oniru +3346,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3347,4 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +3348,Office Space With Parking Space In Victoria Island,Victoria Island Victoria Island Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3349,Newly Built 3bedroom Flat,Around Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets,Oniru +3350,Newly Built One Bedroom Apartment Furnished,Foursquare Road Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets,Oniru +3351,Newly Built One Bedroom Apartment Furnished,Oniru Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets,Oniru +3352,Land Measuring 4500m2,Cofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3353,One Bedroom Flat In Victoria Island,Victoria Island Victoria Island Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths, Toilets,Other Victoria Island +3354,"Eight, 3 Bedroom Flats",Olosa Street Tiamiyu Savage Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3355,"Eight, 3 Bedroom Flats",Olosa Street Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,2 baths, Toilets,Other Victoria Island +3356,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3357,Land,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3358,Newly Built One Bedroom Apartment Furnished,Oniru Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets,Oniru +3359,1 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,1 Toilets,Victoria Island Extension +3360,Fully Detached 5 Bedroom Duplex For Sale At Victoria Island Lekki,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +3361,Land Measure 900 Square Metres At Saka Rimini,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3362,Land,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3363,Unit Of 3bedroom Flat,Wurola Court Oniru Victoria Island Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +3364,Newly Built One Bedroom Apartment Furnished, Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,3 Toilets,Oniru +3365,4200sqm Land,Adowu Martin Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3366,Land,Jide Oki Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3367,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3368,Luxury 2 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3369,Luxury 3 Bedrooms Flat With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3370,Tastefully Finished 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3371,Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3372,Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3373,Luxury 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3374,Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3375,Luxury 3 Bedrooms Flat With Excellent Facilities With Bq,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3376,Luxury 4 Bedroom Pent Flat,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3377,Luxury 3 Bedroom Flat With Excellent Facilities,Mojisola Onikoyi Estate Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3378,"4 Bedroom And A Bq, Cinema, Study, Laundryroom, Box Room.",Oniru Palace Road Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets,Oniru +3379,Stunning Four Bedroom Terrace At Victoria Island, Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3380,Pristine 5 Bedroom Terrace Duplex At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3381,8 Units Of Three Bedroom Flat With 1 Room Bq At Vi,"16a Hyde Tower , Akin Olugbade Street Akin Olugbade Victoria Island Lagos",₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3382,Off Plan: Super Luxury 3 Bedroom Ocean Front Apartments With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3383,Off Plan: 4 Bedroom Luxury Penthouse With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3384,Off Plan: Super Luxury 2 Bedroom Ocean Front Apartments With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"145,000,000",0,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3385,"3 Bedroom Maisonette On Ground Floor With Garden At The Rear At 1004, Victoria Island.",1004 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3386,"A Well Finished 3 Bedroom Semi Detached Duplex With 1 Room Boys' Quarter For Sale In Dideolu Estate, Victoria Island",Dideolu Estate Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3387,"A Well Finished 2 Unit 4 Bedroom Terrace Duplex With Bq In Victoria Island, Oniru",Oniru Oniru Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3388,Luxury 3 Bedroom Block Of Flats At Victoria Island,Oniru Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3389,Off Plan: Super Luxury 2 Bedroom Ocean Front Apartments In Victoria Island,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"157,800,000",0,1,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3390,"A Newly Built 4 Bedroom Well Finished Terrace House For Sale In Dideolu Estate, Victoria Island",Victoria Island Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3391,"A Well Finished 3 Bedroom Luxury Apartments For Sale In Dideolu Estate, Victoria Island",Victoria Island Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3392,A Block Of 8 Flats For Sale Tenanted 6 Units Of 3 Bedroom And 2 Units Of 1 Bedroom Pent Flat,Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3393,Tenanted 8 Units Of 3 Bedroom Terrace House With 1 Room Bq Each,Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3394,3 Bedroom Apartment In A Mini Estate,Plot 9 Edudu Eliyemo Street Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3395,4 Bedroom Terrace,No 20 Palace Road Oniru Victoria Island Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3396,Apartment For Sale In Dubai,Dubai Victoria Island Lagos,₦,"107,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +3397,4 Bedroom Terrace,Palace Road Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3398,Apartments For Sale At Victoria Island Lagos(3 Bedroom Apartments At Iconic Tower For High Class),"Behind Zenith Bank Headquarter On Sinari Daranijo Street, Victoria Island Lagos Victoria Island Lagos",₦,"150,000,000",1,1,1,3 beds,4 baths,4 Toilets,Other Victoria Island +3399,Commercial Land In Major Street In V Island,Plot 1o87 Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3400,3 Bedroom Flat,"Oniru ,victoria Extension Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3401,9 Bedroom Massive Mansion + Bq, Akin Adesola Victoria Island Lagos,₦,"900,000,000",0,0,0,9 beds,9 baths,10 Toilets,Other Victoria Island +3402,"Quick [email protected] *4,000m2* Beside Four Point Sheralton. Title: Gov. Consent *price:n300,000* Per M2.",Beside Four Point Sheralton Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"300,000",0,0,0, beds, baths, Toilets,Oniru +3403,Land,Akin Ogunlewe Street Victoria Island Extension Victoria Island Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3404,Land, Victoria Island Extension Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3405,"5 Bedroom Fully Detached Duplex With 4 Rooms Servant Quarters & 2 Rooms Office Sitting On 1,005.14 Square Meters Of Land",Ligali Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3406,Exclusively Designed 4 Bedroom Semi Detached House (carass),George Omonubi Street Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +3407,Residential Complex For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths, Toilets,Other Victoria Island +3408,2 Blocks Of 3 Bedroom Apartment And 2 Bedroom Guest Chalet,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3409,"Building For Sale Along Akin Adeshola, Victoria Island",Akin Adesola Street Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,9 beds,8 baths,10 Toilets,Other Victoria Island +3410,Luxurious 3 Bedroom Apartment In Serene Environment,Oniru Axis Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets,Oniru +3411,8 Units Of Three Bedroom Apartment At Oniru,. Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3412,C/o,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3413,Cofo,Oniru Oniru Victoria Island Lagos,₦,"600,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +3414,"2, 3 Bedroom Apartment With Bq Available For Sale At Oniru. Fully Serviced.",Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets,Oniru +3415,"5 Bedroom Terrace Duplex @ Oniru Estate,  Victoria Island",Oniru Victoria Island Lagos,₦,"135,000,000",0,0,1,5 beds,6 baths,6 Toilets,Oniru +3416,This Stunning 4 Bedroom Terrace Duplex With A Bq Is Available For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"105,000,000",0,0,1,4 beds,5 baths,5 Toilets,Oniru +3417,Newly Built 5bedroom Terrace Corner Piece Duplex With Bq Oniru Vi,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +3418,"Expanse Of Land Measuring 20,000 Sqm & 16,570 Sqm Totaling 36,570 Square Metres For Sale On Victoria Island, Lagos:",Tiamuyu Salvage Akin Adesola Victoria Island Lagos,$,"80,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3419,"1,430 Sqm Of Land For Sale At Oniru Estate Victoria Island Lagos",Estate Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3420,Land For Sale,Oniru Street Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets,Oniru +3421,Luxury 4 Bedroom Town House,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3422,Luxurious 5 Bedroom Terrace With Bq, Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3423,Luxurious 3 Bedroom Penthouse,Off Chief Yesufu Abiodun Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3424,3 Bedroom Flat (all Rooms En Suit) With Bq Flat,Off Abisogun Road Oniru Victoria Island Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3425,Tastefully Finished And Furnished 3 Bedroom Flat With A Servant Quarters,Oniru; Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3426,3300 Square Metres Of Land,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3427,Luxury 2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3428,Brand New Exquisitely Finished And Contemporary 5 Bedrooms House In A Mini Estate With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3429,Plot Of Land Measuring 2121m2 At Eko Atlantic For Sale,Eko Atlantic Victoria Island Lagos,$,"4,242,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3430,For Sale: Excellently Finished 4 Bedroom Terrace Apartment, Oniru Victoria Island Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3431,Nice 2 Bedroom Maisonette In 1004,Cluster D 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3432,8 Units 3 Bedrooms Apartment With 1 Room Bq Each,Oniru Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3433,6 Bedroom Fully Detached Duplex, Sanusi Fafunwa Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Victoria Island +3434,4 Bedroom Semi Detached Duplex With Bq,Estate Victoria Island Extension Victoria Island Lagos,₦,"130,013,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3435,3 Bedrooms Flat + Bq In Oniru, Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3436,4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +3437,5 Bedroom Semi Detached Houses With A Room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +3438,Brand New And Very Spacious 3 Bedroom Apartment With Bq,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3439,"Top Notch Finished 5 Bedroom With A Room Bq For Sale At Oniru, Lagos.",Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3440,2 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +3441,4 Bedroom Apartment,Cluster A2 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Victoria Island +3442,Luxury 3 Bedroom Penthouse For Sale In V.i Kw 2330,Eko Atlantic Victoria Island Lagos,₦,"34,256,343",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +3443,5000sqm On Adeola Odeku,Vi Adeola Odeku Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3444,Luxury And Well Finished 4 Bedroom Terraced Duplex,"Off Palace Road, Oniru Estate, Victoria Island (extension.) Victoria Island Extension Victoria Island Lagos",₦,"85,000,000",0,0,1,4 beds,0 baths,0 Toilets,Victoria Island Extension +3445,A 9 Unit Terrace House,Ologun Agbaje Street Adeola Odeku Victoria Island Lagos,₦,"215,000,000",0,0,0,4 beds,4 baths,4 Toilets,Waziri Adeola Odeku +3446,Hottest Land Sale In Oniru Victoria Island Lagos,Oniru V.i Oniru Victoria Island Lagos,₦,"185,000,000",1,0,0, beds, baths, Toilets,Oniru +3447,"Tastefully Finished 4bedrooms Duplex In Oniru, V.i","Palace Road, Oniru Oniru Victoria Island Lagos",₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +3448,A Luxurious Fully Furnished And Serviced Mini Flat Located In Victoria Island,Oniru Victoria Island Lagos,₦,"55,000,000",1,1,1,1 beds,1 baths,2 Toilets,Oniru +3449,10 Units Of 3 Bedroom Flats,Adeola Odeku Victoria Island Lagos,₦,"1,100,000,000",0,1,0,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +3450,Newly Built 15 Floors Highrise Office Complex For Sale In Lagos.,Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos,₦,"14,400,000,000",1,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +3451,4 Bedroom Semi Detached Duplex For Sale In V.i Kw 2247,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets,Oniru +3452,"I,346sqm Commercial Land Jv In Victoria Island",... Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3453,Fully Detached Duplex With Service Quarters For Sale In V.i Kw 2235,Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths, Toilets,Other Victoria Island +3454,"1600 Sqm Land On Oyinjolayemi Street, Victoria Island, Lagos",Ademola Adetokunbo Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3455,"Eko Pearl Towers Comprises Units Of 2, 3 And 3 Bedroom Penthouse Available For Sale",Eko Atlantic Victoria Island Lagos,$,"710,000",1,1,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3456,4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3457,Newly Built Luxury 3 Bedroom Serviced Apartment In Oniru Estate Kw 1368,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,4 baths, Toilets,Oniru +3458,4bedroom Duplex With 2rooms Bq For Sale At Victoria Island Kw 1818,Balarabe Musa Street Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +3459,For Sale: 5 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3460,Block Of 80% Completed 3 Bedroom Flat,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3461,For Sale: 5 Bedroom Semi Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3462,For Sale: 4 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3463,4 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3464,4 Bedroom Maisonette At Oniru Kw 2076,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths, Toilets,Oniru +3465,4 Bedroom Terrace With Service Quarters For Sale In V.i Kw 2134,Landbridge Avenue Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +3466,Ground Floor Office Space For Sale At Victoria Island,Rauf Taylor Street Victoria Island Lagos,₦,"5,000,000",1,0,0, beds, baths,1 Toilets,Other Victoria Island +3467,6 Floors 5 Star Luxury Hotel In The Diplomatic Area Of Victoria Island Lagos Is For Sale,Tiamiyu Savage Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3468,7000sqm Land,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3469,10000sqm Land,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3470,"2,231 Sqm Land","Along Akin Adesola Road, Vi Akin Adesola Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3471,4407sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3472,3200sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3473,4 Bedroom Semi Detached Duplex For Sale,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3474,5 Bedroom Semi Detached Duplex For Sale,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets,Oniru +3475,Excellently Finished Serviced 4 Bedroom Terrace Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3476,Mixed Use Land," abila Abiodun; Oniru, Victoria Island Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3477,Newly Built 5 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3478,Land, Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3479,Land, Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3480,1345 Sqm Land (price Per Sqm),Oniru Palace Road Oniru Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3481,Land, Ligali Ayorinde Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3482,Land, Victoria Island Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3483,Beautiful 5 Bedroom Semi Detached Duplex For Sale At Parkview Estate,Park View Estate Victoria Island Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Victoria Island +3484,"An Exquisitely Built 3 Bedroom House With A Separate Bq Located Strategically At Oniru Iwith Alarge Parking Space, Swimming Pool, Standby Generator Set, Water Treatment And Exquisitely Finished Is Available For Sale.",Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3485,Nice And Spacious 3 Bedroom Flat At Oniru,Asher Court Of Palace Road Oniru Oniru Victoria Island Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +3486,New And Luxury Finished 5 Bedroom Detached House At Oniru,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3487,Luxury 3 Bedroom Flat, Adeola Hopewell Victoria Island Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3488,"Affordable Land For Aale At Awoyaya Lekki Lagos,(altlatic Bar Estate).",Behind Altlatic Bar Estate Eko Atlantic Victoria Island Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets,Other Victoria Island +3489,Distress Sale: 3 Bedroom Flat At Oniru,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +3490,5 Bedroom Detached House,Akinbo Savage Close. Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3491,Newly Built 5 Bedroom Fully Detached Duplex With Servants' Quarter.,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets,Oniru +3492,Land For Sale,Musa Yaradua Street Kofo Abayomi Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3493,Land,New Market Road Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3494,Ornamentally Built 8 Bedroom Fully Detached Edifice. Located In Banana Island,Banana Island Lagos Victoria Island Lagos,₦,"5,000,000,000",1,1,1,8 beds, baths,10 Toilets,Other Victoria Island +3495,Land For Sale,Dide Olu Estate Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets,Oniru +3496,Fully Serviced And Partly Furnished 4 Bedroom Townhouse,"Landbridge Avenue, By Palace Road Oniru Victoria Island Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3497,Dubai Luxury Hotel Investment,77 Eko Atlantic Victoria Island Lagos,$,"220,000",1,1,0,1 beds,1 baths,1 Toilets,Other Victoria Island +3498,3 Bedroom All Ensuite Apartment On The Ground Floor,Oniru Victoria Island Lagos,₦,"55,000,000",1,1,1,3 beds, baths, Toilets,Oniru +3499,Service 4 Bedroom Terrace,"Oniru, Vi Victoria Island Extension Victoria Island Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3500,4 Bedroom Semi Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3501,Exquisitely Finished 3 Bedroom Flat, Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3502,Lovely 3 Bedroom Flat,1004 Estate Victoria Island Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3503,5 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3504,Brand New And Tastefully Finished 3 Bedroom Service Apartment In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3505,1 Bedroom Serviced Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3506,"10 Acres Of Dry Land With C Of O At Almadu Bello Way ,victoria Island","Almadu Bello Way,vi Ahmadu Bello Way Victoria Island Lagos",₦,"24,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3507,"10 Acres Of Land With C Of O At Ahmedu Bello Way, Victoria Island","Ahmedu Bello Way, Ahmadu Bello Way Victoria Island Lagos",₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3508,"4000 Square Metres Of Land At Akin Adesola Street,vi",Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3509,Executive And Fully Service Units Of 4bedroom Terrace Duplexes,Very Close To 4point Hotel Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +3510,Exquisitely 358 Hotel Rooms,On Lekki/vi Expressway Beside 1004 Estate Kofo Abayomi Victoria Island Lagos,₦,"35,000,000,000",1,1,1,10 beds,10 baths,10 Toilets,Other Victoria Island +3511,Luxury 3bedroom Flat + Bq,Near Four Point Hotel Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +3512,Luxury 3bedroom Flat,Oniru/vi Off Four Point Road Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3513,Luxury 4bedroom Duplex,At Lekki Right Hand Side Very Close To Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +3514,4 Bedroom Semi Detached Duplex With 1 Room Bq,"Abisogun Road,(ihutayi Street After Opeyemi Court) Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3515,Joint Venture Proposition For A Serious Developer,The Land Its Around Shoprite Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3516,Service And Luxury 4bedroom Terrace Duplex,In A Gated And Mini Estate Around Vi Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets,Oniru +3517,Waterfront Hotel,At Oniru/vi Victoria Island Extension Victoria Island Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +3518,5 Bedroom Terrace Duplex,Off Kigali Ayorindé Road Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3519,Luxury 3 Bedroom Apartments For The Rich And Famous,Victoria Island Lagos,$,"1,100,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +3520,Newly Developed Estate,Victoria Island Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3521,Newly Developed Estate,Victoria Island Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3522,Newly Built 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets,Oniru +3523,Hotel For Sale At Victoria Island,Oniru Oniru Victoria Island Lagos,$,"35,000,000",1,1,1,9 beds,9 baths,9 Toilets,Oniru +3524,"3 Bedroom Flat At Oniru, With A Room Bq, For Sale, High Rise, Beach View, With Swimming Pool And Gym",Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets,Oniru +3525,"Office Building, Skyscraper",Ademola Adetokunbo Crescent Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,1,0, beds, baths, Toilets,Other Victoria Island +3526,"15,000 Sqm Spacious Land", Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3527,947.939sqm Land, Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3528,1200sqm Land,Ligali Ayorinde Street Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3529,850sqm Landwith C Of O,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3530,Brand New 4 Bedroom Terrace House In Oniru,Off Palace Road Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3531,5 Bedroom Terrace House In Oniru,Lekki Right Side Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3532,3300 Sqm Land, Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3533,A Newly Built 3 Bedroom Luxury Apartment With A Room Bq,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +3534,Well Finished 4 Bedroom Terrace Duplex For Sale With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3535,"4 Bedroom Terrace Duplex With A Room Boys Quarter At Dediolu Estate, Oniru",Dediolu Estate Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3536,Exquisitely Finished 4 Bedroom Tarrace With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3537,Well Finished 4 Bedroom Terrace Duplex For Sale With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets,Oniru +3538,"Well Finished 3 Bedroom Flat For Sale, Oniru #45m",Oniru Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3539,Newly Completed Service 2 And 3 Bedroom Apartments With Adequate Parking Lots,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +3540,18km Sqm Fenced Plot Of Land Facing Main Express,Oniru Victoria Island Extension Victoria Island Lagos,₦,"6,000,000,000",0,1,0, beds, baths, Toilets,Victoria Island Extension +3541,Land For Sale At Vgc,Vgc Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3542,A Commercial Plot Measuring 4143 Sqms,Landbridge Avenue Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Oniru +3543,2bedroom Apartment For Sale,1004 1004 Victoria Island Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets,Other Victoria Island +3544,"1559sqm Commercial Land For Sale At Oyin Jolayemi Street, Victoria Island, Lagos","Oyin Jolayemi Street, Victoria Island Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3545,"5brm Fully Detached House + Bq At Oniru, V.i N95million",Oniru Oniru Victoria Island Lagos,₦,"95,000,000",1,0,0,5 beds,5 baths,6 Toilets,Oniru +3546,Well Fitted 3bedroom Terrace Duplexduplex With A Bq On 2floors,Bosun Adekoya Street Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,3 beds,4 baths,5 Toilets,Oniru +3547,Decent 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3548,4 Units Of Tastefully Built 3 Bedrooms Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3549,2 Units Of 4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3550,A Tastefully Built 4 Bedrooms Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3551,3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"750,000,000",0,0,0,3 beds,2 baths,3 Toilets,Victoria Island Extension +3552,A Tastefully Built 4 Bedrooms Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3553,Luxury 4 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3554,Lovely 4 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3555,12 Units Of 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3556,Lovely 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3557,3 Units Of Tastefully Built 3 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3558,A Beautiful 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3559,6 Units Of Lovely 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"800,000,000",0,0,0,3 beds,2 baths,3 Toilets,Oniru +3560,Lovely 3 Bedroom Duplex In V.i, Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3561,Exquisite 4 Bedrooms Penthouse,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3562,2 Units Of 3 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3563,Tastefully Built 5 Bedroom Terrace Duplex In V.i, Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3564,Lovely 2 Bedroom Flat In V.i, Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Other Victoria Island +3565,Tastefully Built 3 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3566,Beautiful 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3567,10 Units Of Exquisite 2 Bedroom Flat,Eko Atlantic Victoria Island Extension Victoria Island Lagos,$,"710,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3568,Nicely Built 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3569,An Exquisite 3 Bedroom Flat,Eko Atlantic Victoria Island Extension Victoria Island Lagos,$,"875,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3570,Neat 4 Bedroom Semi Detached Duplex In V.i,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3571,Exquisite 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3572,A Newly Built 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3573,Beautiful 4 Bedroom Terrace Duplex In Lekki,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3574,Lovely 2 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3575,A Lovely 4 Bedrooms Semi Detached Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3576,Tastefully Built 4 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3577,Lovely 3 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3578,2 Units Of Exquisite 3 Bedroom Penthouse,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3579,A Lovely 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3580,Tastefully Built 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3581,10 Units Of 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"260,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3582,Lovely 4 Bedroom Terrace Duplex In V.i, Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3583,Lovely 5 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3584,10 Units Of 3 Bedroom Flat In V.i,V.i Victoria Island Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3585,8 Units Of 2 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3586,Lovely 3 Bedroom Duplex In V.i, Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3587,Tastefully Built 4 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3588,Luxurious And Fully Furnished 1 Bedroom Apartment, Victoria Island Extension Victoria Island Lagos,₦,"39,800,000",0,0,1,1 beds, baths, Toilets,Victoria Island Extension +3589,Office Complex For Sale???? Land Size: 2065sqm. Location ??olosa Street Directly Opposite Eko Hotel & Suites Victoria Island Lagos Nigeria. Price: N2b Title Documents: C Of O,Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3590,Brand New 7 Nos Of 4 Bedroom En Suite Terrace Houses,Off Oniru; Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3591,Affordable Mini Estate In Victoria Island,Adeleke Adedoyin Street Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3592,Exquisite 3 Bedroom Flat In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3593,Massive Commercial Property In Vi (former Embassy),Off Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,$,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3594,Luxury 5 Bedroom Town Houses In V/i,Transit Villa Victoria Island Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets,Other Victoria Island +3595,Serviced 4 Bedroom Town Houses For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3596,3 Bedroom Flat For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3597,"A Prestigious & Elegantly Finished 3 Bedroom Apartment (with A Maid's Room) In Olosa Street Victoria Island , Adjacent To Eko Hotel & Suites","Olosa Street, By Eko Hotel & Suites Ademola Adetokunbo Victoria Island Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +3598,A Prestigious 3 Bedroom Apartment + A Maid's Room By Eko Hotel & Suites,Olosa Street Eko Atlantic Victoria Island Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets,Other Victoria Island +3599,"5,190 Sqm Land",Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3600,Detached Duplexes For Sale,Off Aboyade Cole Victoria Island Lagos Adeola Odeku Victoria Island Lagos,₦,"470,000,000",0,0,0,5 beds,5 baths,6 Toilets,Waziri Adeola Odeku +3601,Luxury Serviced 4 Bedroom Town House,Akiogun Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3602,Luxury Serviced 4 Bedroom Terraced With Very Large Rooms With A Room Bq In Gated Estate,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets,Victoria Island Extension +3603,Lovely And Well Maintained 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3604,Luxury Serviced 4 Bedroom Town House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3605,Newly Built Four Bedroom Detached Duplex For Sale,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets,Oniru +3606,A Lovely And Well Maintained 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3607,Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3608,Land For Sale,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,150",0,0,0, beds, baths, Toilets,Other Victoria Island +3609,Eko Atlantic City Lands,1 Eko Atlantic Victoria Island Lagos,₦,"500,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3610,"4 Floors Office Space On 2000sqm Land Space, Corner Piece With Cctv Cameras Air Conditionals Etc",Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,1,0, beds, baths,9 Toilets,Waziri Adeola Odeku +3611,"Luxury Block Of 10 Flats With Bq Each, Swimming Pool, Gym, Elevator Etc",Jide Oki Vi Victoria Island Lagos,₦,"1,400,000,000",0,0,1,3 beds,4 baths, Toilets,Other Victoria Island +3612,"35,000sqm Fenced Land Boardering Ahmedu Bello / Akin Adesola/tiamiju Savage",Tiamiyu Savage Akin Adesola Victoria Island Lagos,$,"100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3613,Beautifully Built Fully Serviced 3 Bedroom Apartments With Attached Maid Quarters,"Oniru Private Estate, Vi Oniru Victoria Island Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3614,3 Bedroom Penthouse,Elegbata Festival Drive Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +3615,"1,050sq.m Land With Detached Houses Along Ajose Adeogun Street Victoria Island.",Tiamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3616,63 Rooms Hotel For Sale, Akin Adesola Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3617,"15,000sqm Of Commercial Land, On Express Way","Ozumba Mbadiwe Road, Beside Oriental Hotel Victoria Island Lagos",₦,"6,500,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +3618,5000sqm Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3619,3bedroom Flat For Sale,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +3620,Newly Built 4 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3621,Tastefully Finished 3 Units 3 Bedroom Terraced House With Bq,Palace Road Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +3622,5 Bedroom Detached Duplex Ideal For Residential Or Offices In A Tenant Able Condition,Off City Of David Church Road Oniru Oniru Victoria Island Lagos,₦,"130,000",1,0,0,5 beds,6 baths,6 Toilets,Oniru +3623,3 Bedroom Flat In A Serviced Private Residential Building.,Palace Road Off Ihuntai Street Close To Four Points Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets,Oniru +3624,Distress Sale : 3 Bedroom Apartment & 4 Bedroom Pent Flat,Palace Road Oniru Private Estate Oniru Victoria Island Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets,Oniru +3625,"Tastefully Finished 6 Units 5 Bedroom Semi Detached Duplex With Family Lounge, Bq, Swimming Pool And Gym Center.",Palace Road Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets,Oniru +3626,Five Star Hotel At Victoria Island,Victoria Island Lagos,$,"46,000,000",0,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +3627,15000sqm Waterfront Land,Ozumba Mbadiwe Road Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3628,610 Sqm Plot Of Land,Opposite Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3629,3300sqm Land,Muri Okunola Street Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3630,Land At Victoria Island For Sale,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3631,Detached House,Off Adeola Ademola Adetokunbo Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,5 baths,0 Toilets,Other Victoria Island +3632,For Sale 3 Bedroom Terrace With A Separate Bq,Palace Road Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3633,3 Bedroom Luxury Apartment ( Off Plan),"Water Corporation Drive ,off Ligali Ayorinde Victoria Island Lagos",₦,"10,000,000",1,1,1,3 beds,3 baths,4 Toilets,Other Victoria Island +3634,2 Bedroom Flat,"20,ozumba Mbadiwe Way, Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,1,0,2 beds,3 baths,2 Toilets,Victoria Island Extension +3635,Office Space, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3636,6th Floor Open Plan Office Space In Victoria Island,"Off Adeola Odeku, Victoria Island Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3637,6 Bedroom Mansion Duplex, Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,6 Toilets,Other Victoria Island +3638,Office Space, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3639,3 Bedrooms Apartment,"Eko Pearl Towers, Ahmadu Bello Way Victoria Island Lagos",$,"710,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +3640,"Mixed Use Land In Eko Atlantic City 3,433 Sqm $1,000/sqm",Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3641,"Pent Floor Open Plan Office Space, 497 Square Metres",Off Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3642,"Land On Adeola Odeku, Victoria Island",Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +3643,Commercial/residential Property In Victoria Island Mixed Development,Off Adeola Odeku Street. Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets,Waziri Adeola Odeku +3644,6 Bedroom House In Victoria Island,"Off Oyinjola Yemi Street, Victoria Island Victoria Island Lagos",₦,"307,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3645,3 Bedroom Flat,. Akin Olugbade Victoria Island Lagos,₦,"290,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +3646,Land,Off Kasumu Ekemode Street Saka Tinubu Victoria Island Lagos,₦,"610,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3647,Luxury 4 Bedroom Apartment,"Eden Heights, Off Adeola Odeku Victoria Island Lagos",₦,"304,000,000",1,1,0,4 beds,5 baths,5 Toilets,Waziri Adeola Odeku +3648,Open Office Spaces And Shops At Eko Atlantic City,Eko Atlantic City Victoria Island Extension Victoria Island Lagos,$,"6,000",0,0,0,0 beds,0 baths,2 Toilets,Victoria Island Extension +3649,1650sqm Of Land In Victoria Island,"Adeola Odeku, Victoria Island Victoria Island Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3650,Land,"Close To Four Points Sheraton, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3651,Land In Eko Atlantic City Mixed Development,Eko Atlantic City Victoria Island Lagos,₦,"2,831,812,500",0,0,0, beds, baths, Toilets,Other Victoria Island +3652,Luxury 3 Bedroom Apartment With Maids Room,"Water Corporation Drive, Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3653,The Pacific Lagos ( Luxury 1bedroom Apartments),"20, Ozumba Mbadiwe Victoria Island Lagos",₦,"120,000,000",1,1,1,1 beds,2 baths,2 Toilets,Other Victoria Island +3654,World Class 2bedroom Apartments,20 Ozumba Mbadiwe Victoria Island Lagos,₦,"170,000,000",1,1,1,2 beds,3 baths,3 Toilets,Other Victoria Island +3655,Newly Built 4 Bedroom Terrace,Palace Road Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3656,5 Bedroom Maisonette,Before Bar Beach Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3657,Newly Built 1 Bedroom Mini Flat,Victoria Island Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +3658,Lovely 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3659,4 Bedroom Terrace House With Maids Room,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3660,Hotel,Tiamaya Savage Street Victoria Island Extension Victoria Island Lagos,$,"25,000,000",1,0,1,0 beds,0 baths,0 Toilets,Victoria Island Extension +3661,Lagos Oriental Hotel,"3, Maroko Road, Lekki Epe Express Way Eti Osa, Victoria Island Lagos",$,"250,000,000",1,0,1, beds, baths, Toilets,Other Victoria Island +3662,4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets,Oniru +3663,6 Bedroom Detached House With A 2 Rooms Boy’s Quarter,"10a & 10b, A.j Marinho Drive, Victoria Island, Lagos Victoria Island Lagos",₦,"370,000,000",0,0,0,6 beds,6 baths, Toilets,Other Victoria Island +3664,Mixed Use Land," saka Jojo Street, Off Idejo St, Victoria Island Extension Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3665,Governor Consent,Oba Idowu Oniru Avenue Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Oniru +3666,13 Units Of 2 Bedroom Apartments On Land Measuring 1503sqm,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"550,000,000",0,0,0,2 beds, baths, Toilets,Other Victoria Island +3667,A Detached House,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3668,Detached House For Commercial Use,Tiamiyu Street Tiamiyu Savage Victoria Island Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3669,14 Bedroom Detached House With Service Quarters,"320, Akin Ogunlewe Street, Off Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos",₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +3670,Finished 3 Bedroom Semi Detached House,Didieolu Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3671,Beautifully Finished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets,Oniru +3672,A Well Built 4 Bedroom Terrace Duplex,"Akiogun/market Road, Oniru Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3673,Astefully Finished And Stunning Four (4) Bedroom Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3674,Well Built And Finished 3 Bedroom Terraced Duplex,"Off Yesufu Abidoun Way, Oniru Estate Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Victoria Island +3675,Serviced 3 Bedroom Ground Floor Flat,Seagle Towers Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +3676,3 Nos Of 5 Bedroom Town House With A Bq,Off Ligali Ayorinde Victoria Island Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +3677,5 Five Bedroom Terrace Duplex With A Room Bq,Off Palace Rd Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3678,Commercial Property,"Ajose Adeogun Street,victoria Island,lagos Victoria Island Extension Victoria Island Lagos",₦,"610,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +3679,Hotel / Guest House, Tiamiyu Savage Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3680,Vacant Luxury And Partially Serviced 4 Bedroom Terrace Duplex,Ihuntayi Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,0 baths,0 Toilets,Oniru +3681,6 Units Of 3 Bedroom Terrace Apartment,Spring Gate Estate Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets,Oniru +3682,"Newly Built 2 And 1 Bedroom Luxury Apartment At Mivi, Oko Awo, Victoria Island",Oko Awo Ademola Adetokunbo Victoria Island Lagos,₦,"85,000,000",0,1,1,2 beds,2 baths,2 Toilets,Other Victoria Island +3683,24 Bedroom Block Of Flats For Sale," adeola Hopewell, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3684,3 Bedroom Flat For Sale," off Palace Road, Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3685,Office Space For Sale," off Ajose Adeogun Street, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3686,A Commercial Property On 2 Floors,"An Office Block At Idowu Taylor Street, V.i, Lagos State Victoria Island Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3687,Luxury Flats Available For Sale,Victoria Island Akin Olugbade Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets,Other Victoria Island +3688,"3,300 Square Metres Land With Good And Transferable Title","Muri Okunola Street, Victoria Island Lagos",₦,"950,000,000",1,0,0, beds, baths, Toilets,Other Victoria Island +3689,2000 Sqm Land, Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3690,Fenced And Gated 903 Sqm Land,Mabogunje Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3691,5342 Sqm Land, Oniru Victoria Island Lagos,₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3692,4 Bedroom Terrace Duplex,Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3693,3 Bedroom Terrace With Bq, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +3694,Newly Built Open Space Office,Muri Okunola Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3695,4 Bedroom Penthouse, Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3696,Brand New 4 Bedroom Mansionette,Etim Iyang Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3697,Brand New Commercial 3 Storey Building, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3698,Brand New 5 Bedroom Semi Detached House With Bq,City Of David Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets,Oniru +3699,1800 Sqm Land, Idowu Taylor Victoria Island Lagos,₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3700,2 Nos 5 Bedrooms Detached House With Bq,Adeleke Adedoyin Victoria Island Lagos,₦,"1,000,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +3701,5 Bedroom Detached House With 2 Rooms Bq,Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +3702,Brand New Open Office Space, Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3703,Brand New 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3704,Exquisite Four Bedroom Terrace Duplex At Oniru,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3705,5 Bedroom Duplex + Bq, Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3706,3 Bedroom Flat," oniru Palace Road, Oniru Victoria Island Lagos",₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets,Oniru +3707,4 Nos 5 Bedroom Semi Detached Houses,Adeleke Adedoyin Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +3708,3 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3709,7358sqm Land, Oniru Victoria Island Lagos,₦,"2,575,300,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3710,",",Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3711,,Millennium Homes Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3712,1000 Square Meters Land, Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3713,Four Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets,Oniru +3714,Allocation Letter From Bank,Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,5 baths,5 Toilets,Oniru +3715,4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3716,Massive Detached House,Off Adeola Odeku Street Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3717,3 Bedroom Block Of Flats," plot 1388a Olosa Street, Off Adetokunbo Ademola Street, Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",0,0,0,3 beds,4 baths,5 Toilets,Victoria Island Extension +3718,4 Bedroom House, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3719,Mixed Use Land, Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3720,3 Bedroom Flat, Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3721,Mixed Use Land, Oniru Victoria Island Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3722,"For Sale: Lovely 3bedroom Flat Off Palace Road, Oniru Victoria Island","Off Palace Road, Oniru Victoria Island. Oniru Victoria Island Lagos",₦,"58,000,000",1,0,1,3 beds,3 baths,4 Toilets,Oniru +3723,"A Plot Of Land Measuring 2659sqm At Dideolu Estate,oniru Lagos.",Dideolu Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Oniru +3724,A Plot Of Land Measuring 1700sqm On Adetokunbo Ademola Street Victoria Island With An Approval For Filling Station.,Adetokunbo Ademola Ademola Adetokunbo Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3725,A Plot Of Land Measuring 1880sqm,Musa Yar Dua Victoria Island Victoria Island Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3726,"A Plot Of Land Measuring 1600sqm On Idowu Taylor Street,victoria Island,lagos.",Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3727,A Plot Of Land Measuring 7000sqm, Ahmadu Bello Way Victoria Island Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3728,A Plot Of Land Measuring 1400sqm, Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3729,A Plot Of Land Measuring 2200sqm On Akin Adesola Street Victoria Island,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3730,A Plot Of Land Measuring 1800sqm,Ibrahim Waziri Tiamiyu Savage Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3731,"Functional Waterfront 5 Star Hotel For Sale Location: Along Victoria Island, Lagos",F Victoria Island Lagos,$,"250,000,000",1,0,1,10 beds,10 baths,10 Toilets,Other Victoria Island +3732,8 Nos Of 4 Bedroom Semi Detached Houses,"Adeleke Adedoyin Street Off Kofo Abayomi, Victoria Island, Lagos. Kofo Abayomi Victoria Island Lagos",₦,"1,600,000,000",0,0,1,4 beds,4 baths,4 Toilets,Other Victoria Island +3733,Office Space," adetokunbo Ademola Street, Off Ozumba Mbadiwe, Victoria Island Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3734,3 Bedroom Block Of Flats, Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Victoria Island +3735,Mixed Use Land," mobil, Victoria Island Extension Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3736,3 Bedroom Flat," in Oniru Estate, Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3737,3 Bedroom Flat," in Oniru Estate, Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3738,5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3739,5 Bedroom Detached And Semi Detached House With 1 Bedroom Bq, Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +3740,2 Bedroom Flat, Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3741,Commercial Property, Victoria Island Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3742,Landed Property,Abduraham Okene Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3743,Brand New 4 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3744,3 Bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3745,4 Bedroom Semi Detached House With Bq,Moshood Olugbani Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +3746,10 Bedroom Detached House,Akin Ogunleye Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +3747,Commecial Property,Onyi Jolayemi Sanusi Fafunwa Victoria Island Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3748,15 Bedroom Commercial Property," akin Adesola Street, Victoria Island Extension Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3749,2121 Sqm Land,"Hlb Zone, Eko Atlantic Victoria Island Lagos",$,"4,242,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3750,4 Bedroom Duplex,Waziri Ibrahim Crescent Adeola Odeku Victoria Island Lagos,₦,"420,000,000",0,0,0,4 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3751,2670 Square Meter Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3752,1514 Square Meters Land,Saka Jojo Street Off Idejo Street Saka Tinubu Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3753,5 Units Of 4 Bedroom Detached Duplex,"Oniru, Victoria Island. Ligali Ayorinde Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3754,11 Units Of 3 Bedroom Luxury Flats With Bq,"Off Palace Road, Oniru, Victoria Island Ligali Ayorinde Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3755,A Tastefully Finished 3bedroom,Victoria Island 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,2 baths,3 Toilets,Other Victoria Island +3756,Office Building,"Adetokunbo Ademola Street, Off Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos",$,"40,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3757,5 Bedroom Semi Detached House, Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +3758,Luxuriously Built 4 Bedroom Terrace House, Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3759,New 3 Bedroom Serviced Flat With Bq,Oniru Estate Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3760,"Block Of 1, 2 & 3 Bedroom Flats", Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +3761,4 Bedroom Flat With Bq, Oniru Victoria Island Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3762,Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3763,4 Bedroom Terrace House With Bq, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3764,4 Bedroom Terraced Duplex For Sale, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3765,4 Bedroom Semi Detached Duplex,  Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3766,4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3767,3 Bedroom Flat," 1, Sogbesan Close, Oniru Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3768,"Functional 5 Star Hotel For Sale Location: Along Victoria Island, Lagos",Victoria Island Ligali Ayorinde Victoria Island Lagos,$,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3769,5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Oniru +3770,Massive 4bedroom Terrace Duplex,At Oniru/vi Lagos Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3771,Land For Jv,Off Hamadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"960,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3772,7 Beds Detach House,Vi Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,7 beds,7 baths,8 Toilets,Waziri Adeola Odeku +3773,2 Bedroom Flat," eko Atlantic City, Eko Atlantic Victoria Island Lagos",₦,"650,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +3774,4 Bedroom Detached Duplex,  Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +3775,Luxury 3 Bedroom Apartment With Excellent Facilities And Bq,"1, Sogbesan Close, Oniru Oniru Victoria Island Lagos",₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets,Oniru +3776,Brand New 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3777,Fed. C Of O,Lekki Epe Expressway By Oriental Hotels Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Victoria Island Extension +3778,Office Building,"Adetokunbo Ademola Street, Off Ozumba Mbadiwe Victoria Island Lagos",$,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3779,2000sqm Of Land For Sale,Off Kofo Abayomi Street Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3780,Land,"Atlantic View Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3781,Fenced Land For Sale,Sinari Darinjo Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3782,13 Room Hotel, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3783,2500sqm Of Land For Sale At Victoria Island,Kofo Abayomi Street Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3784,4800sqm Of Land For Sale At Victoria Island,Adeleke Adedoyin Street Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3785,1800sqm Of Land At Victoria Island,"Vi , Lagos . Victoria Island Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3786,Land For Sale At Victoria Island,"Vi , Lagos . Victoria Island Lagos",₦,"250,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3787,5 Bedroom Terrace For Sale At Victoria Island,Beside 4 Point Sheraton Hotel Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3788,Office Building For Sale,Olosa Str Tiamiyu Savage Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3789,"5 Story Building Of Superbly Finished 3bedrooms Flat,+bq, All Rooms Ensuit,",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,3 Toilets,Waziri Adeola Odeku +3790,Four (4) Bedroom Terrace House, Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets,Oniru +3791,The Pacific Lagos 1 & 2 Bedroom In A Luxury Apartment In Vi,#20 Ozumba Mbadiwe Street Kofo Abayomi Victoria Island Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets,Other Victoria Island +3792,5 Bedroom Detached House With 2rooms Bq,Adeleke Adedoyin Street Off Kofo Abayomi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +3793,Exquisitely Finished And Fully Serviced 3 Bedroom Flat,Palace Street Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets,Oniru +3794,4 Bedroom Terrace Duplex,"Ihuntanyi Street, Off Palace Road, Oniru Victoria Island Lagos",₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets,Oniru +3795,2500sqm With Demolishable Old Structure,Kofo Abayomi Area Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3796,4 Bedroom Duplex,Ligali Ligali Ayorinde Victoria Island Lagos,₦,"1,223,344,555",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +3797,Well Finished 4 Bedroom Twin Duplexes,Lasode Crescent Off Ozumba Mbadiwe Avenue Victoria Island Victoria Island Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3798,5 Bedroom Detached House,Balarabe Musa Crescent 1004 Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,5 Toilets,Other Victoria Island +3799,World Class 1&2 Bedroom Apartments With Penthouse Suites,Ozumba Mbadiwe Avenue Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",1,1,0,1 beds,1 baths,2 Toilets,Other Victoria Island +3800,3 Bedroom Terrace Duplex,"Emerald Court, Dideolu Estate Victoria Island Extension Victoria Island Lagos",₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3801,4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,5 Toilets,Oniru +3802,Luxury 4 Bedroom Terrace Duplex With 1 Room Bq,. Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets,Oniru +3803,"1,700sqm Land For Mixed Developement","Off Palace Way, Victoria Island Victoria Island Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3804,4 Bedroom Terraced Duplex With Bq,Off Palace Way Victoria Island Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3805,Tastefully Finished 3 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3806,4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3807,3 Bedroom Flat,Odudu Eleyiwo Road Ahmadu Bello Way Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3808,Mixed Use Land,Off Ligali Ayorinde Victoria Island Lagos,₦,"295,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3809,4 Bedroom Detached Duplex With Bq,. Oniru Victoria Island Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3810,2 Bedroom Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3811,2 Bedroom Flat,. Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3812,5 Bedroom Semi Detached Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3813,3 Bedroom Flat For Sale,  Oniru Victoria Island Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3814,4 Bedroom Terraced Duplex With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"6,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +3815,Serviced 5 Bedroom Terraced Duplex With Swimming Pool & Gym,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,6 Toilets,Oniru +3816,Serviced 3 Bedroom Flat,1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Victoria Island +3817,"2 Wings Of 5 Bedroom Detached Duplex With C Of O On 500 Sqm Off Adeola Odeku, Victoria Island",Off Adeola Odeku Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets,Waziri Adeola Odeku +3818,5 Bedroom Semi Detached Duplex For Sale, Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets,Oniru +3819,3 Bedroom Flat,Off Akiogun Road Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3820,4 Bedroom House For Sale,  Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3821,5 Bedroom Detached Duplex," adeleke Adedoyin, Victoria Island Lagos",₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3822,Brand New Tastefully Finished 4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3823,4 Bedroom Flat,"Mabogunje Street, Oniru Victoria Island Lagos",₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets,Oniru +3824,5 Bedroom Detached House With A 2 Room Boy’s Quarter On 1600sqm,"10a. Aj Marinho Drive, Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3825,4 Bedroom Detached House With A 2 Room Boy’s Quarter On 1000sqm,"40 Balarabe Musa Crescent, Victoria Island, Lagos 1004 Victoria Island Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3826,4400 Sqm Land,. Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3827,2500 Sqm Land With Dilapidated Detached House,Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3828,4 Bedroom Detached House On 750 Sqm,Adeleke Adedoyin Victoria Island Victoria Island Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,4 Toilets,Other Victoria Island +3829,Detached House On 950sqm,Sir Manual Street Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +3830,3 Bedroom Luxury Apartment,Coperation Drive Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3831,Off Plan |3 Bedroom Luxury Apartment | Serviced,Musa Yaradua Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3832,Privately Gated Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3833,3 Bedroom Flat In Victoria Island,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3834,Luxury 4 Bedroom Semi Detached Corner Piece Apartment,Off Market Road Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3835,Off Plan |4 Bedroom Terrace Duplex | Serviced,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3836,3 Bedroom Luxury Apartment,Water Coperation Road Victoria Island Extension Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3837,1 Bedroom Luxury Apartments Tailored To Your Highest Standard,"Olosa Street, Opposite Eko Hotels & Suites, Off Adetokunbo Ademola Road Victoria Island Lagos",₦,"45,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +3838,Now Selling | 4 Bedroom Villa Apartment | Fully Serviced,Off Adeola Odeku Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +3839,Luxurious Shopping Mall, Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3840,Own A Unit | 3 Bedroom Luxury Apartment In Victoria Island,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3841,14 Units Of 3 Bedroom Flats And 4 Bendroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +3842,Now Selling | 4 Bedroom Penthouse With Dedicated Elevator | Fully Serviced,Off Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets,Waziri Adeola Odeku +3843,4 Bedroom Luxury Penthouse,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3844,1 Bedroom Luxury Apartment,Water Coperation Road Victoria Island Extension Victoria Island Lagos,₦,"37,000,000",0,0,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3845,Office Building,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3846,"New, Well Built, Fully Equipped Purpose Built Office Space",Adetokunboh Ademola Street Off Ozumba Mbadiwe; Victoria Island Lagos,₦,"40,000,000",0,1,1,0 beds,0 baths,0 Toilets,Other Victoria Island +3847,6 Bedroom Semi Detached Duplex,Off Ajose Adeogun Victoria Island Lagos,₦,"9,000,000",0,1,1,6 beds,6 baths,7 Toilets,Other Victoria Island +3848,3 Bedroom Flat,. Akin Olugbade Victoria Island Lagos,₦,"270,000,000",0,0,1,3 beds,3 baths,4 Toilets,Other Victoria Island +3849,Mixed Use Land," waziri Ibrahim Crescent, Victoria Island Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths, Toilets,Other Victoria Island +3850,Office Space On 863 Sqm,"Off Adeyemo Alakija; Victoria Island Extension, Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths, Toilets,Victoria Island Extension +3851,Commercial Land,. Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3852,Land,. Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3853,4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3854,5 Bedroom Semi Detached Duplex,. Victoria Island Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets,Other Victoria Island +3855,2 Bedroom Flat," eko Pearl, Eko Atlantic Victoria Island Lagos",₦,"710,000",0,0,0,2 beds,2 baths,0 Toilets,Other Victoria Island +3856,4 Bedroom Terraced Duplex With 2 Rooms Servant Quarters,"Ibile Street Off Palace Road; Oniru, Victoria Island Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets,Oniru +3857,Commercial 5 Floors Office Building,Adeyemo Alakija; Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3858,Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3859,Land,. Tiamiyu Savage Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3860,3 Bedroom Flat,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"4,000,000",0,0,1,3 beds,3 baths,4 Toilets,Victoria Island Extension +3861,3 Bedroom Block Of Flats + Bq With Swimming Pool,Oniru; Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3862,Luxury 3 Bedroom Flat With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"37,500,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3863,5 Bedroom Semi Detached Duplex,Oniru; Ademola Adetokunbo Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +3864,3305 Sqm Corner Piece Commercial Land,Victoria Island Extension; Muri Okunola / Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3865,4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3866,"The Empire Residences Ii, Luxury 3 Bedroom Plus Maid Room Development",Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3867,3 Bedrooms Apartment (off Plan),"Water Corporation Drive,off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets,Other Victoria Island +3868,4 Bedroom Terraced Duplex, oniru Victoria Island Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets,Oniru +3869,2 Bedroom Flat," oniru, Victoria Island Lagos",₦,"50,000,000",0,0,0,2 beds,2 baths,0 Toilets,Oniru +3870,"10,000 Sqm Land",Oniru Victoria Island Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +3871,Serviced 1 Bedroom Apartments In Victoria Island,Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3872,5 Bedroom Detached Duplex,Vgc Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,0 Toilets,Other Victoria Island +3873,5 Bedroom Semi Detached Duplex," oniru, Victoria Island Lagos",₦,"175,000,000",0,0,0,5 beds,5 baths,0 Toilets,Oniru +3874,Mixed Use Land,Ajose Adeogun Victoria Island Extension Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3875,Hotel / Guest House, Victoria Island Lagos,₦,"34,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3876,3 Bedroom Block Of Flats,Water Corporation Road Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,1,1,3 beds,4 baths,4 Toilets,Victoria Island Extension +3877,Office Space Of 8 Floors,Off Adeola Odeku Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,10 Toilets,Other Victoria Island +3878,Four Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3879,"Newly Built, Fully Serviced 1 Bed Room Apartment",Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3880,4 Units Of Fully Serviced 1 Bedroom Apartments For Sale,Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +3881,Brand New Luxurious 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets,Oniru +3882,5 Bedroom Penthouse," onigbefon Street, Oniru, Victoria Island Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets,Oniru +3883,Office Space,. Victoria Island Extension Victoria Island Lagos,₦,"199,000,000",0,0,1,0 beds,0 baths,0 Toilets,Victoria Island Extension +3884,Exquisite Apartments,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3885,4 Bedroom Terraced Duplex," oniru, Victoria Island Lagos",₦,"118,000,000",0,1,0,0 beds,0 baths,0 Toilets,Oniru +3886,Well Renovated 4 Bedroom Terrace Duplex.,. Victoria Island Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets,Other Victoria Island +3887,Newly Built 2 Bedroom Flat,Off Palace Road. Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,2 Toilets,Victoria Island Extension +3888,8 Detached (standalone) Duplexes, Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3889,Luxury 4 Bedroom Terrace Duplex With One Bq,Off Ty Danjuma Street. Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3890,Newly Built 12 Units Of Luxury 3 Bedroom Apartments With A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets,Victoria Island Extension +3891,A New Building Containing 8 Units Of Luxurious 3 Bedroom Flats With Bqs Each,Off Oniru Palace Road; Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,1,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3892,4 Bedroom Luxury Terrace Duplex And A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets,Victoria Island Extension +3893,Luxury 4 Bedroom Maisonnette,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3894,Luxury Apartments,Oniru Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets,Victoria Island Extension +3895,4 Bedroom Terrace Duplex With A 1bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +3896,8 Units Of 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +3897,Off Plan 5 Bedroom Semi Detached Duplex With 1bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +3898,Beautifully Built 3 Bedroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +3899,3800sqm Plot Of Land,Oniru/maroko Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3900,A Luxury 3 Bedroom Penthouse,Oniru/maroko Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3901,A Luxury 3 Bedroom Apartment,Oniru/maroko Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3902,3800sqm Plot Of Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3903,Luxury 7 Unit Of Executive 4 Bedroom Terrace Duplex With A Maid's Each( 3 Unit Left),Oniru Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3904,3 Bedroom Fully Detached Bungalow With Two Rooms Boys Quarter For Sale With Land Certificate,Off Ologun Agbaje Victoria Island Victoria Island Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Victoria Island +3905,Plot 1419 Idowu Taylor Street Off Engineering Close,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"800,000,000",0,0,0,6 beds,3 baths,3 Toilets,Other Victoria Island +3906,3 Bedroom Apartment,Along Palace Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +3907,3 Bedroom Semi Detached Duplex With 1 Bq,"Lekki Right Hand Side, Oniru Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +3908,Beautifully Finished 4 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3909,"1,346sqm Land",Ayorinde Vi Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3910,Fully Serviced Luxury 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3911,Luxury Serviced 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +3912,Comfort And Luxury 3 Bedrooms Elite Services Apartment,"Osu Badu Crescent, Behind Turkish Airline Airport West Accra Victoria Island Lagos",$,"400,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3913,Executive 3 Bedroom Apartment With B/q,Vi Extension Ligali Ayorinde Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3914,Luxury 4 Bedroom Terrace Duplex With 1 Room B/q,Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3915,3 Bedroom Luxury Penthouse Apartment,"A J Marinho Drive, Ligali Ayorinde Victoria Island Lagos",$,"9,500,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3916,4 Bedroom Terrace Duplex + B/q,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3917,2500 Square Meter Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3918,4 Bedroom Terraced Duplex With A B/q.,Around Ebanor Super Market Victoria Island Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3919,Luxury 3 Bedroom Apartment,Oniru Estate Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3920,Tastefully Finished 3 Bedroom Luxury Apartment With A Room B/q,Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3921,A Plot Of Land Measuring 1400sqm With Two Detached Duplex, Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3922,Brand New 5 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3923,3 Bedroom Apartment, 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3924,"Uncompleted Office Building And 4no 4 Bedroom Detached Houses On 6,400 Sqm","Ahmadu Bello Way/bishop Oluwole Street, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,500,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +3925,5 Bedroom Semi Detached Duplex, oniru; Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +3926,Mixed Development Land For Sale," eko Atlantic City, Lagos Eko Atlantic Victoria Island Lagos",$,"1,800",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3927,A Fenced Prime Land Measuring 1700square Metre,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3928,Lovely 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3929,Newly Build Serviced 4 Bedroom Terrace,"Off Palace Road,oniru Oniru Victoria Island Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3930,Serviced 4 Bedroom Duplex With Bq,Off Palace Road Oniru V.i Oniru Victoria Island Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3931,Beautifully Finished And Furnished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3932,Three Bedroom Flat/apartment,Ozumba Nbadiwe 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,2 baths,3 Toilets,Other Victoria Island +3933,4 Bedroom Terrace With Bq,Oniru Next To Shop Right Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +3934,Beautifully Finished 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Oniru +3935,Lovely 1 Bedroom Flat,Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets,Oniru +3936,3 Bedroom Flat For Sale," oniru, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +3937,Brand New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3938,A Nicely Built 4 Bedroom Terrace Duplex And A Room Boy’s Quarter,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +3939,Lovely 8 Units Of 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets,Oniru +3940,"Luxury 4 Bedroom Terraced Duplexes For Sale In Oniru, Victoria Island",Palace Road Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3941,4 Bedroom Wing Of Duplex,Moshood Olugbani Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3942,Land At Eko Atlantic City,Eko Atlantic City Victoria Island Extension Victoria Island Lagos,$,"1,250",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3943,Lovely Five 5 Bedroom Semi Detached House With Bq,City Of David Rd Oniru Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3944,Brand New 5 Five Bedroom Duplex + A Room Bq,"Off Oniru Palace Rd, Victoria Island Extension Victoria Island Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3945,Land (joint Venture),Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3946,2 Bedroom Flat At 1004 Estate, 1004 Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +3947,Luxurious 1 Bedroom Serviced Apartment (mortgage Option Available),Water Corporation Drive Oniru Victoria Island Extension Victoria Island Lagos,₦,"39,500,000",0,0,0,1 beds,1 baths,1 Toilets,Victoria Island Extension +3948,Service 5 Bedroom Semi Detached In Oniru,Oniru Victoria Island Lagos,₦,"1,150,000,005",0,0,0, beds, baths, Toilets,Oniru +3949,1000sqm Of Land At Victoria Island,Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3950,"A 4,100m2 Land",Bridge Avenue Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3951,"A 1,800m2 Land", Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3952,"A 1,100m2 Corner Piece Land",Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3953,"2,600m2 Corner Piece Land",Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3954,Commercial Land,Ligali Ayorinde/muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3955,Land,Victoria Island Ahmadu Bello Way Victoria Island Lagos,$,"2,500",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3956,"New Serviced 2, 3 & Penthouses",Eko Atlantic City Victoria Island Lagos,$,"710,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +3957,Land, Sanusi Fafunwa Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3958,13 Bedroom Detached House,Akin Ogunlewe Street Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +3959,Shops/office Spaces,Eko Atlantic City Victoria Island Lagos,$,"6,000",0,0,0,0 beds,0 baths,1 Toilets,Other Victoria Island +3960,"1,934.52sq Metres Land",Ologun Agbaja Off Adeola Odeku Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +3961,2 Bedroom Flats With Bq,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +3962,3 Bedroom Flat,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3963,5 Bedroom Duplex,Elegba Festiva Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +3964,Five Bedroom Townhouse With Two Room Bq,Off Kofo Abayomi Street Victoria Island Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3965,Furnished 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,3 Toilets,Oniru +3966,Five Bedroom Townhouse With A Room Bq,Off Legalized Ayorinde Street Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3967,Land (joint Venture),Idowu Martins Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3968,5 Storey Building Complex,Broad Street Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,8 Toilets,Victoria Island Extension +3969,3 Bedroom Service Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3970,Land (joint Venture),Between Diamond And Gt Banks Near Shoprite Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3971,Brand New 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3972,2600sqm Of Land For At Victoria Island,Dideolu Estate Victoria Island Lagos,₦,"455,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +3973,2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets,Oniru +3974,Land,"Idowu Martins Str, Vi Victoria Island Extension Victoria Island Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3975,8 Bedrooms Duplex Mansion,Ajose Adeogun Victoria Island Lagos,₦,"350,000,000",0,0,0,8 beds,7 baths,7 Toilets,Other Victoria Island +3976,12 Bedroom Apartment,Akin Ogunlenwe Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3977,Units Of Flats For Sale,Victoria Island Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths, Toilets,Other Victoria Island +3978,4 Bedroom Terrace Duplex With A Bq ( Off Plan),Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3979,3 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +3980,Exclusive 3 Bedroom Luxury Apartments Now Selling In Victoria Island,Water Corporation Corporation Road Victoria Island Extension Victoria Island Lagos,₦,"73,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3981,3125m2 Land,Place Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +3982,970sqm Land,Bishop Kale Street Vi. Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3983,Land (joint Venture),Idowu Martins Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3984,"Commercial Property On Akin Adesola Street, Victoria Island, Lagos","Akin Adesola Street, Victoria Island, Lagos Akin Adesola Victoria Island Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +3985,40 Units Of 1 Bedroom Flat Apartment,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +3986,Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +3987,4 Bedroom Terrace Duplex With A Room Bq,Hakeem Dickson Drive Victoria Island Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3988,Lovely 2 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,1 baths,3 Toilets,Victoria Island Extension +3989,5 Bedroom Detached Duplex,Near Land Mark Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +3990,Brand New 3 Bedroom Seviced Flat In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets,Victoria Island Extension +3991,Lovely Terrance House For Sale At Oniru Estate,Oniru Estate Victoria Island Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +3992,"A Luxury,well Finished And Newly Built 5 Bedroom Terrace With A Fitted Kitchen",Palace Road Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Island Extension +3993,3 Bedroom Apartment,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3994,2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets,Oniru +3995,Brand New And Furnished 2 Bedroom Flat At Oniru.,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets,Victoria Island Extension +3996,Luxurious 2 Bedroom Apartment (mortgage Option Available),Oniru Victoria Island Extension Victoria Island Lagos,₦,"46,000,000",0,0,0,2 beds,2 baths,2 Toilets,Victoria Island Extension +3997,4 Bedroom Terraced Duplex, Idowu Taylor Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Victoria Island +3998,3 Unit Of 3 Bedrrom Flat,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +3999,4 Bedroom Terrace Apartment,Land Bridge Avenue Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets,Victoria Island Extension +4000,Pent House,Palace Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4001,4 Bedroom Duplex,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"6,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4002,4 Bedroom Semi Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4003,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4004,10 Story Building With 18 Apartments,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4005,3 Bedroom Terrace Duplex With A Room Bq,Adekoya Street Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4006,3 Bedroom Flat ( Off Plan),Magbogunje Road Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4007,4 Bedroom Semi Terrace Duplex With A Bq,Modupe Odunlami Street Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4008,"Fenced, Gated 9.1 Acres Of Land",Victoria Island Victoria Island Lagos,₦,"25,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4009,3 Bedroom Flat,Ozumba Nbadiwe 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +4010,5 Bedroom Duplex With A Room Self Contain,Lekki Adeola Hopewell Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +4011,Top Notch 4 Bedroom Terrace House,Oniru Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets,Other Victoria Island +4012,4 Bedroom Terrace House With A Room Bq,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4013,A Lovely 3 Bedroom Flat At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4014,2 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4015,90% Complete: 5 Bed Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4016,House, Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4017,Plots Of Land,"By The Palms, Shoprite Victoria Island Extension Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4018,Hotel With 13 Rooms For Sale At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4019,Land,On Ligali Ayorinde Street Facing Ajose Adeogun Street Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4020,4 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"100,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4021,Land At Ligali Ayorinde Street,Ligali Ayorinde Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4022,"Land Measuring 100,000sqm",Eko Atlantic City Victoria Island Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4023,Three Bedroom Apartment With Bq At Victoria Island,Akinogun Road Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4024,3 Bedroom Flat,Queen's Drive Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,3 Toilets,Other Victoria Island +4025,3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4026,3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets,Oniru +4027,Off Plan 3 Bedroom Apartments At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4028,Luxury Serviced 5 Bedroom Terrace At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4029,Brand New 3 Bedroom Flat At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4030,Land For Sale,"Off Ligali Ayorinde Street, Victoria Island, Lagos. Ligali Ayorinde Victoria Island Lagos",$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4031,Exotic 4 Bedroom Terrace Duplex At Oniru,Oba Idowu Oniru Road Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4032,4 Bedroom Townhouse,Musa Yar'adua Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4033,3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4034,4 Bedroom Townhouse (ongoing Construction),Musa Yar'adua Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4035,5 Bedroom Semi Detached Duplex With A Bq,Hakeem Dickson Drive Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +4036,Exquisite And Brand New 3 Bedroom Flat With A Bq,New Oniru Market Area Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4037,10 Storey Building Of 3 Bedroom Flat Of 18 Units Apartment,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4038,Brand New 3 Bedroom Serviced Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4039,4bedroom Service Terrace House With A Room Bq For Sale.,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4040,4 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4041,Classified Lagos High Rising House,By Tantalizer Ademola Adetokunbo Victoria Island Lagos,₦,"15,000,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +4042,42 Luxury Housing,Eko Atlantic Ligali Ayorinde Victoria Island Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4043,3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4044,Land For Sale,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4045,5 Bedroom Detached House, Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +4046,2000sqm Of Land At Victoria Island,"On Abayomi Daramola Street Oniru, Victoria Island Victoria Island Lagos",₦,"410,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4047,4 Bedroom Terraced Duplex,"Oba Oniru Road, Victoria Island Lagos",₦,"115,000,000",0,0,0,4 beds,6 baths,6 Toilets,Other Victoria Island +4048,5bedroom Mansionate,Abisogun Street Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4049,Waterfront Land,Beside Oriental Hotels At Ozumba Mbadiwe Road Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4050,10 Bedroom Duplex,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +4051,Land, Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4052,Fully Detached Five Bedroom Duplex.,Vi Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +4053,2 Bedroom Flat,Muri Okunola Victoria Island Lagos,₦,"58,000,000",0,0,0,2 beds,3 baths,3 Toilets,Other Victoria Island +4054,4 Bedroom Townhouse+bq At Oniru,Aremo Adesegun Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +4055,Brand New Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4056,Land, Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4057,4605sqm Of Land At Eko Atlantic,Eko Atlantic Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4058,Land For Sale At Waziri Ibrahim Crescent,Waziri Ibrahim Crescent Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4059,4 Bedroom Semi Detached Duplex With A Bq,Jasper Ike Street Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4060,5000sqms Of Land At Musa Yaradua Street,Musa Yaradua Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4061,Luxury 3 Bedroom Duplex In Victoria Island,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4062,Contemporary 4 Bedroom Terrace House,"Vi , Lagos Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4063,3 Bedroom Flat With A Bq,Oniru Estate Victoria Island Lagos,₦,"84,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4064,Land,"Location: Lekki Peninsula Scheme 1, Tourism Zone (okunde Blue Water Scheme, In Eti Osa Area Of Lagos State) Victoria Island Extension Victoria Island Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4065,Land,"Ologun Agbaje Street, Adeola Odeku Victoria Island Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4066,Detached House,Saka Tinunbu Saka Tinubu Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,5 Toilets,Other Victoria Island +4067,6 Bedroom Detached Duplex,No51 Victoria Island Lagos,₦,"50,000,000",0,0,0,6 beds,7 baths,6 Toilets,Other Victoria Island +4068,100 % Dry Land, Ademola Adetokunbo Victoria Island Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4069,The Oceanna Hotel Apartments By Grenadines Homes,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"4,038,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4070,"Land For Sale: Location: J 46, Banana Island. Size: 4000sqm.",J46 Ademola Adetokunbo Victoria Island Lagos,₦,420,0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4071,Luxury 4 Bedroom,"Oniru Estate, Victoria Island Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4072,"4680sqm Of Land For Sale At Odeki Str, V.i","Odeku Street, Victoria Island, Lagos Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4073,Service Plots Of Land For Sale,Amity Estate Sangotedo Ajah Victoria Island Lagos,₦,"6,600,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4074,4 Bedroom Terrace Duplex,Off Palace Road. Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4075,3 Bedroom Duplex,"Off Oniru Market Road, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +4076,Fenced Commercial Land Measuring 1650 Sqm On Adeola Odeku V/i,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +4077,5 Bedroom Duplex,Ligali Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets,Other Victoria Island +4078,3 Bedroom Flat,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4079,Tastefully Finished 2 Bedroom Flat,Oniru Estate Off Victoria Island Estate Victoria Island Extension Victoria Island Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4080,5000sqm Dry Land At Dideolu Estate V/island,Dideolu Estate Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4081,4 Bedroom Duplex,Moshood Olugbani Victoria Island Victoria Island Lagos,₦,"6,500,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4082,5 Bedroom Terraced House,Dideolu Street Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4083,4 Bedroom Terrace Duplex With Bq,Mabogunje Road Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4084,4960 Sqm Land,Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4085,2480 Sqm Land,Victoria Island Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4086,Duplex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"15,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +4087,Hotel, Tiamiyu Savage Victoria Island Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4088,Land,Walton Gate Victoria Island Extension Victoria Island Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4089,Commercial Building,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"550,000,000",0,0,0,9 beds,3 baths,4 Toilets,Other Victoria Island +4090,3 Bedroom Flat,Lekki By Pass Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +4091,Land Measuring 5200sqm,Inside Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"143,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4092,3 Bedroom Apartment,"Odudu Eleyiwo Road, Victoria Island Extension Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4093,Well Finished & Fully Serviced 9 Units Of Mixed Luxury Apartment,"Off Market Road, Oniru. Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +4094,Land,Water Corporation Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4095,Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4096,Land,Water Corporation Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4097,3 Bedroom Apartment,Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4098,3 Bedroom Apartment,Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4099,Office Building,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4100,Land,Bis Victoria Island Extension Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4101,House,Musa Yaradua Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4102,5120sqm Land For Sale With C Of O,"Dideolu Estate, Oniru Victoria Island Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4103,Commercial Property, Akin Adesola Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4104,5 Bedroom Semi Detached House,"25 Ihuntayi Road, Oninu Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4105,Land,Landmark Ligali Ayorinde Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4106,4 Bedroom Duplex,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +4107,4 Bedroom Duplex, Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4108,3 Bedroom Apartment,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"750,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +4109,3 Bedroom Semi Detached Duplex, Victoria Island Extension Victoria Island Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4110,Land, Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4111,3bedroom Flat,A.j Marinho Drive Victoria Island Lagos,₦,"750,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +4112,Commercial Property,Off Kofo Abayomi Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4113,Land,Behind Mega Chicken Victoria Island Extension Victoria Island Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4114,Beautifully Finished 5 Bedroom Semi Detached Duplex In Oniru,Victoria Island Victoria Island Lagos,₦,"107,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4115,Brand New Luxury 3 Bedroom Service Apartment,Eko Atlantic Ahmadu Bello Way Victoria Island Lagos,$,"1,150,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4116,4 Bedrooms Detached Duplex,Ottasona Estate Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4117,Land,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4118,Land,Ligali Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4119,Office Space,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4120,8no. 3 Bedroom Flat,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"850,000,000",0,0,0,3 beds,4 baths,4 Toilets,Other Victoria Island +4121,Land For Sale,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4122,Land,"Water Corporation Road, Victoria Island Extension Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4123,Land ( Joint Venture ),Oniru Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4124,Land ( Joint Venture ),Oniru Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4125,4 Bedroom Duplex + Bq, Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4126,2 Bedroom Flat With Bq, Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +4127,4 Bedroom Semi Detached Duplex With 1 Room Bq,Oniru Estate Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4128,Land, Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4129,4 Bedroom Semi Detached House,Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,3 baths,4 Toilets,Victoria Island Extension +4130,Land,Adeyemo Alakija Street Victoria Island Lagos,₦,"98,400,000",0,0,0, beds,0 baths,0 Toilets,Other Victoria Island +4131,Land,Adeyemo Alakija Street Victoria Island Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4132,6 Bedroom With 4 Rooms Bq In Vi,Buriamoh Kenku Off Oyinjola Yemi Victoria Island Lagos Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4133,20 Units Of 3 Bedroom Flats,Oju Olobun Street Karimu Kotun Victoria Island Lagos,₦,"3,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +4134,10 Story Building With 18 Apartments Fully Fitted At Victoria Island,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,3 beds, baths,4 Toilets,Victoria Island Extension +4135,Plot Of Land,"Femi Sule Street, Dideolu Estate Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4136,4 Storey Building Hospital,"4 Point Hotel Road, Oniru Victoria Island Lagos",₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4137,3 Bedroom Duplex,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4138,3 Bedroom Apartment,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4139,3 Bedroom Apartment,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4140,4 Bedroom Terrace House,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4141,3 Bedroom Apartment,Olosa Street Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4142,2700 Square Meter Land In Victoria Island,"Dedeolu Estate, Off Water Corporation Road, Victoria Island Lagos. Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4143,Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4144,1 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,2 baths,2 Toilets,Oniru +4145,3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets,Oniru +4146,Land ( Joint Venture ),Louis Solomon Close Back Of Silverbird Gallery Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4147,Well Finished 6 Bedroom Detached House + 4 Room Bq,"Akin Ogunlewe, Ligali Ayorinde Victoria Island Lagos",₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +4148,Four Flat Of 3 Bedroom Apartments + B/q For Sale,"Adeola Odeku, Adeola Odeku Victoria Island Lagos",₦,"700,000,000",0,0,0,3 beds,4 baths,4 Toilets,Waziri Adeola Odeku +4149,3 Bedroom Luxury Penthouse Apartment In Victoria Island.,# 15 A J Marinho Drive Off Sinari Daranijo Victoria Island Victoria Island Lagos,₦,"2,968,750,000",0,0,0,3 beds,4 baths, Toilets,Other Victoria Island +4150,Land,Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4151,Land,"T.y Danjuma Street, Ligali Ayorinde Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4152,2 Bedroom Commercial Property,Muri Okunola Street Victoria Island Extension Victoria Island Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4153,Off Plan | The Oceanna Hotel Apartments,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"68,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +4154,4 Bedrooms Detached Duplex At Victoria Island,Victoria Island Victoria Island Lagos,₦,"117,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4155,"Land For Sale In Ademola Adetokunbo Street, Victoria Island",Ademola Adetokumbo Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4156,"36,000 Square Metres Of Land",Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4157,10 Bedroom Detached House For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"655,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4158,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4159,1650sqm Of Land For Sale In Victoria Island,Adeola Odeku Street Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4160,4600sqm Of Land For Sale At Kofo,Kofo Abayomi Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4161,Bare Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Oniru +4162,Duplex,Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets,Other Victoria Island +4163,2700sqm Cornerpiece Land At Adeola Odeku,Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +4164,Land ( Joint Venture ),Atlantic Resort @ Oniru Water Corporation Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4165,Land ( Joint Venture ),Zenith Bank Headoffice On Ajose Adeogun Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4166,"1, 650sqm Of Commercial Land At Adeola Odeku",Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +4167,Land,Elsie Femi Pearce Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4168,Bare Land,Dideolu Estate Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4169,3200 Square Metres,Adjacent Orientals Hotel Victoria Island Extension Victoria Island Lagos,₦,"203,125",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4170,3 Bedroom Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +4171,Service 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets,Oniru +4172,4 Bedroom Detached House On 950 Square Metres Of Land.,Balarabe Musa Cr Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,3 Toilets,Other Victoria Island +4173,8 Units Of 3 Bedroom Flat,Plot Adeola Hopewell Victoria Island Lagos,₦,"900,000,000",0,0,0,8 beds,2 baths,2 Toilets,Other Victoria Island +4174,"3,500sqm Of Land At Victoria Island For Joint Venture (j.v)",Victoria Island Victoria Island Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4175,1650sqm Of Land For Sale At Vi,Louis Solomon Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4176,4 Bedroom Detached House,"City Of David Road, Oniru, V.i Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4177,Executive 3 Bedroom Apartment With Bq,Vi Extension Off Ligali Ayorinde Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4178,"Land Measuring 2,660 Square Metres",Dedeolu Estate Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4179,Luxurious 3 Bedroom Apartment Plus Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4180,Luxurious 3 Bedroom Apartment Plus Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4181,A 5 Bedroom Semi Detached Duplex Plus Bq,Opposite City Of David Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets,Victoria Island Extension +4182,Fully Finished And Furnished 3 Bedroom Apartment With Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +4183,Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +4184,Land ( Joint Venture ),Elsie Femi Pearce Street Vi . Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4185,Land ( Joint Venture ),Aremo Oniru Crescent Off Palace Road Oniru Ligali Ayorinde Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4186,Land ( Joint Venture ),Femi Sule Street Inside Dideolu Estate Oniru Lagos Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4187,Land ( Joint Venture ),"Dideolu Estate Oniru, Ligali Ayorinde Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4188,Land For Sale,Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4189,Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4190,7 Storey Apartment Building With Pent House(can Be Converted To Office),Akin Adesola Akin Adesola Victoria Island Lagos,$,"15,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +4191,3 Bedroom Flat,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"146,940,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +4192,2 Bedroom Flat,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"116,250,000",0,0,0,2 beds,2 baths,2 Toilets,Other Victoria Island +4193,1 Bedroom Apatment,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"35,200,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +4194,Fully Serviced Luxury 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4195,6 Bedroom Detached House + 2 Bq,Etim Iyang Crescent Ahmadu Bello Way Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets,Other Victoria Island +4196,1 Bedroom Luxury Apartment,Olosa Street Off Ademola Adetokunbo Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +4197,6 Blocks Of 3 Bedroom Flat,Off Kofo Abayomi Stt Kofo Abayomi Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4198,4 Bedroom Detached House With 1 Room In Built Boys Quarter,City Of David Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4199,Land ( Joint Venture ),Louis Solomon Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4200,Land ( Joint Venture ),Water Cooperation Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4201,Land ( Joint Venture ),Dideolu Estate Oniru Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4202,Land ( Joint Venture ),Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4203,2 Bedroom Flat,"Oniru Chieftaincy Estate, Victoria Island Annex. Victoria Island Extension Victoria Island Lagos",₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets,Victoria Island Extension +4204,5 Units Of 4 Bedroom Duplex With 1 Bq,"Oniru Palace Road, Victoria Island Victoria Island Lagos",₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4205,Semi Detached 4 Bedroom Duplex,Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4206,"8 Nos Of 3 Bedroom Flat On 1,500 Sqm Of Land","Adeola Hopewell Street, Victoria Island Adeola Hopewell Victoria Island Lagos",₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4207,Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4208,Land ( Joint Venture ),Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4209,Land ( Joint Venture ),Dideolu Estate Oniru Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4210,Land ( Joint Venture ),Ajose Adeogun Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4211,5 Bedroom Fully Detached Duplex,Victory Park Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4212,Land ( Joint Venture ),Louis Solomon V/i Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4213,4 Bedroom Apartment,"Ihuntayi Street Off Palaca Street, Oba Oniru Victoria Island Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets,Oniru +4214,Clean 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,1 Toilets,Victoria Island Extension +4215,"16 Units Of 3 Bedroom Flats On 5,100m2 Land",Ozumba Mbadiwe Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4216,"Property Situated At Akin Adesola Street, Victoria Island, Lagos","180 Akin Adesola Street, Victoria Isalnd Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4217,4 Bedroom Detached Duplex,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,5 Toilets,Victoria Island Extension +4218,4 Bedroom And 2 Bq,Balarabe Musa Crescent Ligali Ayorinde Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4219,Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4220,Land ( Joint Venture ),Cooperation Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4221,Land ( Joint Venture ),Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4222,Land For Sale,Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4223,7 Floors Office Space,Ligali Ayorinde Street Ligali Ayorinde Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4224,2000sqm Of Land For Sale At Victoria Island,Kayode Abraham Street Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4225,2000 Sqm Of Land On A Corner Peice With C Of O,Off Ajose Adeogun Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4226,Bedroom Detached House + 5sittings Rooms + Dinning Area,Vgc Facing The Lagoon Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4227,3 Bedroom Luxury Apartment,Water Corporation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,1 Toilets,Other Victoria Island +4228,1 Bedroom Luxury Apartment,"Water Corporation Drive, Off Ligali Ayorinde Victoria Island Lagos",₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets,Other Victoria Island +4229,Luxury 3 Bedroom Flat With A Room Bq,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +4230,Executive Residential Complex In Victoria Island,Victoria Island Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4231,4 Bedroom Fully Detached Duplex,Oniru Estate Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +4232,Land ( Joint Venture ),"Water Cooperation Oniru, Ligali Ayorinde Victoria Island Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4233,Land For Sale At Victoria Island,Akin Adesola Street & Ahmadu Bello Way Victoria Island Lagos,₦,"30,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4234,5 Bedrrom Full Detached Duplex,Victory Park Estate Victoria Island Extension Victoria Island Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4235,20 Units Of 3 Bedroom Luxury Flat,"Oju Olokun Close, Off Ijedo Street Victoria Island Lagos",₦,"4,000,000,000",0,0,0,3 beds,0 baths,0 Toilets,Other Victoria Island +4236,5 Bedroom On 2 Levels Terraced House,Princely Court Along City Of David Road Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4237,3 Bedroom Flat For Sale At Victoria Island,Akin Olugbade Street Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4238,10 Storey Building With 18 Apartments For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4239,10 Storey Building For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4240,2672sqm Of Land For Sale At Victoria Island,Ozumba Mbadiwe Avenue Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4241,Land,Bishop Karli Close Saka Tinubu Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4242,3 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4243,Newly Built 4 Bedroom Terrace With 2 Units Of Study Room And Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4244,4 Bedroom Detached House,Kofo Abayomi Street Victoria Island Lagos Kofo Abayomi Victoria Island Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4245,Duplex Building,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4246,3 Bedroom Fully Furnished Luxury Apartment,Off Oniru Palace Road Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4247,5300sqm Of Land With 8 Units Of 3bedroom Duplexes(demolishable),Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4248,Brand New 4 Bedroom Duplex For Sale In Victoria Island,Off Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4249,A Parcel Of Land,Ozumba Mbadiwe Road.eti Osa Lga Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4250,5 Bedroom Duplex For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4251,3 Bedroom Flat In Victoria Island,Victoria Island Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths, Toilets,Other Victoria Island +4252,Executive 3 Bedroom Duplex For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4253,Land ( Joint Venture ),Ajose Adeogun/ligali Ayorinde. Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4254,Land ( Joint Venture ),"Saka Jojo Street, Off Idejo Street Saka Tinubu Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4255,1300sqm Of Land,Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4256,5 Bedroom On 2 Levels Terraced House,"Princely Court Along City Of David Road, Oniru Estate Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4257,5 Bedroom Terraced House,"Princely Court Along City Of David Road, Oniru Estate Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4258,Affordable Housing Units,Adeola Odeku Victoria Island Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +4259,Units Of House For Sale,"Vi , Lagos . Victoria Island Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4260,"10 Units Of 3 Bedroom, 10 Units Of 1 Bedroom Flat And 6 Bq",Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,000,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +4261,5 Bedroom Duplex,Chevy View Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4262,Land,Bishop Karli Close Saka Tinubu Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4263,Land For Sale,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4264,Newly Built 3 Bedroom Terrace /units Apartment.,"Vi,oniru Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4265,Executive 3 Bedroom Flat For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,3 beds,4 baths, Toilets,Other Victoria Island +4266,"1,800 Sqm Corner Piece (bare Land)",Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4267,10 Units Of 3 Bedroom Flat For Sale (complete Property),V.i Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,4 Toilets,Victoria Island Extension +4268,Land For Sale,Oniru Estate Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4269,Land For Sale,Oniru Estate Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4270,Land For Sale,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4271,Land For Sale,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4272,5 Bedroom Duplex,"Ihuntayi Street, Off Palace Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets,Victoria Island Extension +4273,Massive Office Complex With Penthouce,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4274,Land For Sale,Oniru Estate. Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4275,Land For Sale,"Abibo Adetoro Street, Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4276,Land,"Abibo Adetoro Street, Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4277,Land For Sale,Muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4278,Land For Sale,Kayode Abraham Street Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4279,Land For Sale,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4280,Land For Sale,Muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4281,Land For Sale,Kayode Abraham Street Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4282,5 Bedroom Semi Detached Duplex,"Vi , Lagos . Victoria Island Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4283,5 Bedroom Semi Detached Duplex,"Vi , Lagos . Victoria Island Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4284,3 Bedroom Luxury Apartments,V.i Victoria Island Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,2 Toilets,Other Victoria Island +4285,A Standard Plot Land,Femi Pearse Str Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4286,A Lovely 4 Bedroom Apartment,1004 Estate Victoria Island Lagos 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets,Other Victoria Island +4287,3 Bedroom Flat,"Water Corporation Road, Off Ligali Ayorinde, Oniru, Victoria Island (vi), Lagos Ligali Ayorinde Victoria Island Lagos",₦,"68,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +4288,Fully 6 Bedroom Detached Duplex,Ajose Adeogun Akin Adesola Victoria Island Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets,Other Victoria Island +4289,4 Bedroom Semi Detached Duplex With 8 Bedroom Guest House,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4290,3 Bedroom Flat,Lawani Oduloye Street Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets,Victoria Island Extension +4291,"5,bedrooms Duplex","Victoria Island, Lagos Nigeria Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4292,A Block Of 9 Flats With A Room Bq Each,Near New Market Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4293,Affordable Apartments In Victoria Island,"Victoria Island, Lagos Victoria Island Lagos",₦,"20,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +4294,Affordable Luxury 3 Bedroom Apartment,Oniru Palace Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,5 Toilets,Victoria Island Extension +4295,Office Building,Ademola Adetokunbo Ademola Adetokunbo Victoria Island Lagos,₦,"11,000,000,000",0,0,0,8 beds,8 baths,9 Toilets,Other Victoria Island +4296,Newly Finished 3 Bedroom Terrace,"Muri Okunola,v.i 1004 Victoria Island Lagos",₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4297,15 Units Of 3 Bedroom And 2units Of 2 Pent Floor Luxury Apartments Left With Maid's Room To Each Unit.,Lawani Oduloye Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets,Victoria Island Extension +4298,Selling Fast 16 Units Of 5 Bedroom Semi Detached Apartment With A Bq,Off Ozumba Mbadiwe Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4299,Lands For Sale In Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4300,Luxury 1 2 Bedroom Apartment,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"43,000,000",0,0,0,1 beds,1 baths,2 Toilets,Other Victoria Island +4301,One Bedroom Luxury Apartment For Sale In Victoria Island,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"43,000,000",0,0,0,1 beds,2 baths,2 Toilets,Other Victoria Island +4302,13 Bedroom Detached House For Commercial Purpose For Sale,By Akin Ogunlewe Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4303,A Luxury 3 Bedroom,Akinogun Street Victoria Island Extension Victoria Island Lagos,₦,"775,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4304,1850sqm Of Land At Ayorinde Ligali,Ayorinde Ligali Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4305,5 Bedroom Detached House,Ligali Ayorinde Street Ademola Adetokunbo Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +4306,5 Bedroom Detached Duplex In Victoria Island,Ligali Ayorinde Street Ademola Adetokunbo Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +4307,Land For Sale,"No 17a, Ozumba Mbadiwe Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4308,New Finished 3bedroom Terrace For Sale In V.i Behind Mobil,"Muri Okunola,v.i Victoria Island Lagos",₦,"83,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4309,"6,800 Square Metres Of Land",Beside Landmark/water Corporation Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4310,2000.80 Sqm Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4311,Two Plots Of Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4312,6 Units Of 3 Bedroom Flats,Jojo Saka Street Victoria Island Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4313,Office Building,Victoria Lsland Ademola Adetokunbo Victoria Island Lagos,₦,"11,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4314,5 Bedroom Detached House,Aj Marinho Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets,Victoria Island Extension +4315,A Mini Estate Of 8nos Of 3bedroom Duplex,Off Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4316,2 Wngs Of 4 Bedroom Detached House In Victoria Island,"Victoria Island, Lagos Victoria Island Lagos",₦,"290,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4317,4 Bedroom Semi Detached Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +4318,4 Bedroom Semi Detached Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +4319,4 Bedroom Terrace Duplex With A Bq And Swimming Pool,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +4320,10 Acres Of Land,Opposite Eko Atlantic City Akin Adesola Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4321,200 Square Metres Of Table Land,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4322,A Purpose Built Office Complex On Four Floors With Each Floor Measuring 975 Sqm,Adeola Odeku Victoria Island Lagos,₦,"100,000",0,0,0, beds, baths, Toilets,Waziri Adeola Odeku +4323,Waterfront Land In Victoria Island,Victoria Island Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4324,6 Units Of 4 Bedroom Terrace Houses With 1 Room Bq Each,Ayo Babatunde Crescent Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4325,5 Bedroom House At Waziri Ibrahim Street,Waziri Ibrahim Street Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4326,Land,Off Remi Olowude Street Victoria Island Extension Victoria Island Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4327,13 Bedroom Fully Detached House In Victoria Island,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets,Other Victoria Island +4328,Good,"Austin Alozie Dideolu Estate, Victoria Island, Oniru, Lagos Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4329,4605 Square Metres Of Land,Eko Atlantic Ahmadu Bello Way Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4330,3 Bedroom Flat With A Gym And A Swimming Pool In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4331,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4332,Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4333,Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4334,8 Units Of 4 Bedroon And 2 Bedroom Pent House With Swimming Pool And A Gym,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"2,500,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4335,A Plot Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4336,"Luxury 3 Bedroom Flat With A Bq, Swimming Pool And A Gym",Ojo Olobun Street Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,4 Toilets,Waziri Adeola Odeku +4337,"22,000 Square Metres Of Land",Opposite Eko Atlantic City Ligali Ayorinde Victoria Island Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4338,"Land Measuring 5,300sqm Or Sale",Adeleke Adedoyin Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4339,Detached House,Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4340,Water Front Land Measuring 1900sqm For Sale,"Victoria Island, Lagos Victoria Island Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4341,100 Room Massive Building On Ahmadu Bello /bishop Oluwole Street,Ahmadu Bello /bishop Oluwole Street Victoria Island Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4342,14000sqm Of Land Off Corporation Drive,Off Corporation Drive Victoria Island Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4343,5000sqm Bare Land In Victoria Island,Along Ademola Adetokumbo Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4344,"1234sqm Of Land, Ligali Ayorinde",Behind Amazing Grace Plaza On Ligali Ayorinde Street Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4345,3 Bedroom Flat In Eco Pearl Tower,Eco Pearl Tower Victoria Island Lagos,₦,"221,875,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4346,3 Bedroom Apartment,Oniru Kofo Abayomi Victoria Island Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4347,4 Bedroom Terrace House,Oniru Kofo Abayomi Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4348,5 Bedroom Detached House With 2 Bq In Victoria Island,Off Ajose Adeogun Street Akin Olugbade Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets,Other Victoria Island +4349,3 Bedroom Flat Off Adeola Odeku,Off Adeola Odeku Victoria Island Lagos,₦,"260,000,000",0,0,0,3 beds,4 baths, Toilets,Waziri Adeola Odeku +4350,5 Bedrooms Duplex With Bq,Ozumba Mbadiwe 1004 Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,3 baths,3 Toilets,Other Victoria Island +4351,Fully Furnished 3 Bedroom Serviced Apartment,Victoria Island Victoria Island Lagos,₦,"7,000,000",0,0,0,3 beds,3 baths, Toilets,Other Victoria Island +4352,16 Storey Kanti Towers At Adetokunbo Ademola Street,Adetokunbo Ademola Street Victoria Island Lagos,₦,"14,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4353,Office Complex At Akin Adesola Street,Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4354,"1,500 Square Metres Of Land",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4355,"1,850 Square Metres Of Land",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4356,3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4357,4500 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4358,950 Square Metres Of Land,Dideolu Estate Saka Tinubu Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4359,5180 Square Metres Of Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4360,Victoria Island 22000sqm N7b,Ajose Adeogun Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4361,Land,Adeleke Adedoyin Street Kofo Abayomi Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4362,1600 Square Metres Of Land,Louis Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4363,Plot Of Land At Karim Ikotu,Karim Ikotun Victoria Island Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4364,Land,Eko Atlantic City Ahmadu Bello Way Victoria Island Lagos,$,"2,500",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4365,"A Property For Sale In Ligali Ayorinde,victoria Island",Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4366,Newly Built 5 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,0 Toilets,Victoria Island Extension +4367,Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4368,Land,"Landmark Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4369,Land,"Landmark Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4370,Functional 65 Rooms 5 Star Hotel On 7 Floors Overlooking The Atlantic Ocean.,Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4371,6 Units Of 4 Bedroom Terrace,Oniru Market Road Victoria Island Extension Victoria Island Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets,Victoria Island Extension +4372,4 Bedroom Penthouse,Lawani Oduloye Street. Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,6 baths,6 Toilets,Victoria Island Extension +4373,3 Bedroom Flat,Lawani Odunloye Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4374,3 bedroom Flat +bq,Lawani Oduloye Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,5 baths,5 Toilets,Victoria Island Extension +4375,3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4376,1300 Square Metres Of Land,Off Ligali Ayorinde Ademola Adetokunbo Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4377,4 Bedroom Duplex At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4378,2500 Square Metres Of Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4379,3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4380,4 Bedroom Duplex In Victoria Island,"Dideolu Estates, Victoria Island Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4381,"Heritage Apartments, Louis Solomon Close",Louis Solomon Close Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths, Toilets,Other Victoria Island +4382,4 Bedroom Terrace House,Teslim Elias Ahmadu Bello Way Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4383,"4 Bedroom Semi Detached House On 2 Floors, With A Bungalow On 560,27 Sqm",Mabogunje Street Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4384,A 4 Bedroom Terrace Duplex,Ihuntayi Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,5 baths,6 Toilets,Victoria Island Extension +4385,6 Units Of 3 Bedrooms Flats And 4 Units Of 2 Bedrooms Flats At Vi,Elegba Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4386,Twin 4 Bedroom Duplex,"Kofo Abayomi Street, Victoria Island Kofo Abayomi Victoria Island Lagos",₦,"380,000,000",0,0,0,4 beds,5 baths,5 Toilets,Other Victoria Island +4387,Office Space,Adetokunbo Ademola Street Adeola Odeku Victoria Island Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4388,4 Bedroom Terrace House,"Senrolu/tiwa Danjuma Street Oniru, Victoria Island. Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets,Victoria Island Extension +4389,3300 Sqm Of Land,Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4390,1000 Sq.m Of Land With C Of O,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4391,"36,570sqm Land",Akin Adesola Akin Adesola Victoria Island Lagos,$,"2,800",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4392,Plot Of Land,Ibiyinka Olorunbe Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4393,Luxury New 2 Bedroom Flat,Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4394,16 Storey Building,Ademola Adetokunbo Street Beside Tanterlizer Ademola Adetokunbo Victoria Island Lagos,₦,"13,500,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4395,6 Bedroom Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets,Victoria Island Extension +4396,Brand New 3 Bedroom Flat,Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4397,6000 Square Meters Of Land,Ozumba Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4398,Land,"Along Adekunle Animashaun Drive, Off Remi Olowude Str, By Pinnacle Filling Station, Maruwa Bus Stop, Lekki Oniru Victoria Island Extension Victoria Island Lagos",₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4399,Land,Oniru Road Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4400,A 2 Bedroom Flat With A Room Bq,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4401,A 3 Bedroom Flat With A Room Bq,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4402,Land,Adeleke Adedoyin Street Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4403,Land,Ibiyinka Olurumbe Off Amodu Ojukutu Opp Marina Securities Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4404,4 Bedroom Semi Detached House Off Palace Road,Off Palace Road Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4405,2 Bedroom Apartment,Water Cooperation Drive Victoria Island Extension Victoria Island Lagos,₦,"76,000,000",0,0,0,2 beds,2 baths,3 Toilets,Victoria Island Extension +4406,A 7 Floors 5 Star Hotel,Victoria Island Victoria Island Extension Victoria Island Lagos,$,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4407,Land For Sale At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4408,10 Bedroom Duplex,Akin Ogunlewe Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets,Victoria Island Extension +4409,"Land For Sale At Victoria Island, Oniru Estate, Dideolu Estate, Lagos Nigeria",Femi Sule Street Oniru Estate Lagos Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4410,Luxury 3 Bedroom Flat With Bq,"Fatai Durosinmi Etti Crescent, Via Ajose Adeogun Street, Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4411,3 Bedroom Flat,Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,3 Toilets,Other Victoria Island +4412,Land,Adeleke Adedoyin Street Off Kofo Abayomi Street Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4413,3 Bedroom Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets,Victoria Island Extension +4414,Mini Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,2 Toilets,Victoria Island Extension +4415,"A 20,00sqm Fenced Land","Oniru, Behind 4 Point Hotel Victoria Island Extension Victoria Island Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4416,"A 1,800sqm Of Land",Akin Adesola Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4417,"A 3,000sqm Of Land",Adjacent Globalcom Office Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Waziri Adeola Odeku +4418,"A 6,800sqm Land",Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4419,"A 2,800sqm Of Land","Beside Orientalhotel, Ozumba Mbasiwe Victoria Island Extension Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4420,"A 2,900sqm Of Land",Idejo Street Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4421,"A 3,000sqm Of Land","Oniru, Near 4 Point Hotel Victoria Island Extension Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4422,4 Bedroom Semi Detached House With 2 Rooms Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets,Victoria Island Extension +4423,800sqm Plot Of Fenced Land In Victoria Island,Ologun Agbaje Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4424,7 Bedrooms Detached House,Victoria Island Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,7 beds,6 baths,7 Toilets,Other Victoria Island +4425,Shops,Market Road Victoria Island Extension Victoria Island Lagos,₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets,Victoria Island Extension +4426,4 Bedroom Detached House,Oniru Estate Victoria Island Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets,Other Victoria Island +4427,A Bare Land,Ozumba Mbadiwe Victoria Island Victoria Island Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4428,"A 5,700sqm Of Land",Dideolu Estate Victoria Island Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4429,A 4 Bedroom Semi Detached Duplex With Bq,Off Palace Road Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4430,3 Bedroom Apartment,Eko Atlantic City Victoria Island Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,0 baths,0 Toilets,Other Victoria Island +4431,"A 4,008sqm Of Land",Adeleke Adedoyin Street Victoria Island Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4432,4 Bedroom Detached House + 2 Rooms Bq,Off Onigefon Street Victoria Island Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4433,"A 1,200sqm Of Land",Ibiyinka Olurumbe Victoria Island Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4434,A Full Detached Building,Off Ahmadu Bello Way Victoria Island Victoria Island Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4435,Land,Abisogun Street Victoria Island Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4436,4 Units Of 4 Bedroom Terraced Houses,34 Ihuntayi Road Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4437,8 Units Of 5 Bedroom Town House,Oniru Victoria Island Extension Victoria Island Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets,Other Victoria Island +4438,Land,Ahmadu Bello Way Victoria Island Victoria Island Lagos,$,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4439,3 Hectares Of Land,Oniru Victoria Island Extension Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4440,A Mixed Use Land,Water Corporation Victoria Island Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4441,Office Building,Ligali Ayorinde Street Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4442,20 Nos Of 3 Bedroom Apartment,Victoria Island Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4443,"Brand New High Rise Building On 1,380sqm Of Land",Vi Victoria Island Victoria Island Lagos,$,"40,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4444,A 3 Bedroom House With A Bq,Oniru Victoria Island Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4445,A 1250sqm Land,Kofo Abayomi Victoria Island Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4446,A 1800sqm Land,Sinari Daranijo Street Victoria Island Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets,Other Victoria Island +4447,2 Units Of 4 Bedroom Flat,Victory Park Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4448,4 Bedroom Flat Plus 1 Room Bq,Shortline Estate Victoria Island Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets,Other Victoria Island +4449,"Plot Of Land, Off Amodu Ojikutu Street",Off Amodu Ojikutu Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4450,6 Bedrooms Fully Detached House + 3 Rooms Bq,Sam Adedoyin Victoria Island Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets,Other Victoria Island +4451,House On 1 Acre Of Land At Victoria Island Lagos,Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4452,Bareland Forsale In Victorial Island Lagos,Oko Awo Street Victorial Island Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4453,4 Bedroom Flats,Lawani Oduloye Victoria Island Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets,Other Victoria Island +4454,3 Bedrooms Flats,Lawani Oduloye Victoria Island Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets,Other Victoria Island +4455,"Property For Sale At Dideolu Estate, Oniru Estate, Lekki Right, Victoria Island, Eko Atlantic, Northern Foreshore, Chevron Estate, Nicon Town, Lagos",Victoria Island Lagos Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets,Other Victoria Island +4456,7 Units Of 3 Bedroom Flat & 1 Unit Of 2 Bedroom Flat + 8 Bq's,Olosa Victoria Island Victoria Island Lagos,₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets,Other Victoria Island +4457,7 Bedroom Duplex + 2 Room Bq,"Sam Adedoyin, Victoria Island Victoria Island Lagos",₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets,Other Victoria Island diff --git a/dirty/ikeja.csv b/dirty/ikeja.csv new file mode 100644 index 0000000..2e046d8 --- /dev/null +++ b/dirty/ikeja.csv @@ -0,0 +1,6654 @@ +Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets +Shops,Allen Avenue Roundabout Allen Avenue Ikeja Lagos,₦,"750,000/sqm",1,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Triplex,"Eso Close, Off Oduduwa Crescent, Gra Ikeja, Lagos Ikeja Gra Ikeja Lagos",₦,"280,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +1800m2 Land,Off Adedayo Banjo Street Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Magodo Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Built 4bedroom Fully Detached Duplex,Ikeja Lagos,₦,"295,000,000",1,1,0,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Magodo Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +Massively Built & Tastefully Finished Luxury Block Of 7flats Of 3bedroom Each For Sale!!!,Alausa Ikeja Lagos,₦,"500,000,000",0,1,0,3 beds,3 baths,3 Toilets +"A Brand Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq, Gym + Swimming Pool Area For Sale!!!",Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House With Bq,Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2units Of 5bedroom Semi Detached Duplex+ A Room Bq For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 3bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Units Of 5 Bedrooms Semi Detached Houses,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +Luxury 3 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Industrial Property Of 3 Bays Warehouse,Oba Akran Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"A Newly Built (5) Bedroom Detached Duplex @ Omole Phase 1, Ikeja.",Maryland Ikeja Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semidetached Duplex At Ajao Estate,Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets +4units Of 3 Bedroom Flat,Off Valley Estate Cement Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +Plaza On 1200sqms Land,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets +Land,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Ikeja Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex,Magodo Ikeja Lagos,₦,"295,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Mega Filling Station,Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Mini Flat,Off Toyin Street Toyin Street Ikeja Lagos,₦,"17,000,000",0,0,1,0 beds,0 baths,0 Toilets +"Commercial Property On 4 Floor Along Awolowo Way, Computer Village, Ikeja",Obafemi Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Fenced 7½ Acres Of Land With Warehouses,Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Terrace House + Bq,Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,3 beds,5 baths,5 Toilets +4 Bedroom Wing Of Duplex,Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Unique Executive 41 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"1,400,000,000",0,0,1,0 beds,10 baths,10 Toilets +Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Flat With Bq,Opebi Ikeja Lagos,₦,"1,500,000/year",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Magodo Phase2 Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Strategic Commercial 5 Floors Building,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch Tastefully Finished 4 Bedroom Terrace Duplex,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex With A Mini Flat,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Skarplight Estate Via Ikeja Ikeja Lagos,₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets +Land,Opic Estate Ikeja Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +"12,000 Sq.meter Land",Ikeja Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex 9 Floors,Allen Avenue Allen Avenue Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Duplex In A Serene Neighborhood,Mares Garden Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Storey Building Of 20 Rooms ( Tenement),Oregun Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 7 Units Of 3 Bedroom Flat For Residential Or Commerical Purpose,"Nice Environment Off Allen Avenue Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"550,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built And Exquisite 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets +A 5 Star Hotel,Airport Road Lagos State Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",1,1,1,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With Bq,Ogundana Axis Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Massionate Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Alausa Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Beautifully Finished 3 Bedroom Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,0 baths,0 Toilets +Shops For Sale,Airport Road(ikeja) Ikeja Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +A Functional 33 Rooms Hotel Built On 2100sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"3,800,000,000",1,0,0,10 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With 2living Rooms And 2car Garage,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 3bedroom Flat,Off Opebi Road. Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Storey Building On Half Plot,Akorowunfayo Street Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +34 Modern Hotel Rooms Plus Conference Room And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +20000 Sq Mtr Land With Structure,Isaac John Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Otunba Jobi Fele Road Alausa Ikeja Alausa Ikeja Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 7 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,0,4 beds,0 baths,0 Toilets +A Tastefully Brand New 5 Bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Within A Restricted Estate At Alausa Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Close To Maryland Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,"Awuse Estate Opebi Ikeja, Lagos State Opebi Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Furnished 6 & 3 Bed Duplexes, 2 Bed Apartment With Swimming Pool",Ajao Estate By Chivita Airport Road(ikeja) Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built En Suite Luxury 3 Bedroom Flat With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 5bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Kusiratu Abiola Oregun Ikeja Lagos,₦,"15,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Acres Of Virgin Land,Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 7 Units Of 3 Bedroom Flat. For Residential Or Commerical Purposes,"In A Nice Environment Off Allen Avenue Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"550,000,000",0,0,0,3 beds,4 baths,4 Toilets +A 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 No's Of 5 Bedroom Semi Detached Duplex With Good Location,Ikeja Gra Ikeja Lagos,₦,"205,000,000",0,0,0,10 beds,10 baths,10 Toilets +2 & 3 Bedroom Apartment,Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +2 Storey Block Of 6 Flats,Off Salvation Road Opebi Ikeja Lagos,₦,"185,000",0,0,0,3 beds, baths, Toilets +A Bare Plot Of Land Measuring 1167sqm,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Parcel Of Land Approx 320sqm For Sales In Serene Environment,Oregun Ikeja Lagos,₦,"25,000,000/year",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Maisonette,"Opposite Lagos State Police Command,gra Ikeja. Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"255,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +1 Storey Building Of 21 Rooms,Oba Akran Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Room Bq,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Alausa Ikeja Lagos,₦,"90,000,000/year",0,0,0,4 beds,4 baths,4 Toilets +5bedroooms Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Magodo Ph1 Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Detach Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fantastic 4 Bedroom House Measuring 1445.906 Sqm,No 30 Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,5 baths,5 Toilets +Functioning Construction Company,Ikeja Ikeja Lagos,$,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +20000 Sq Mtr Land With Structure,Isaac John Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Channles Tv Hq Alausa Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +14106.827 Sqm Of Land,Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex And Two Bedrooms Boys Quarter,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Luxuriously Finished 2 Units 4 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,1,4 beds,4 baths,5 Toilets +An Electrical Factory,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5100sqm Land,Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant 6 Bedrooms Ensuite Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets +6 Bedroom Duplex,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets +Furnished 1 Bedroom Flat In A Serene Close,Allen Avenue Ikeja Lagos,₦,"16,000,000",0,0,0,1 beds,2 baths,2 Toilets +"Clean 4 Nos Of 3 Bedroom Flat Off Allen Avenue Ikeja, Lagos. ( For Residential & Commerical Purpose)","Off Allen Avenue Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Between Anthony And Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale:2bedroom Bungalow In An Estate At Allen Ikeja N12m Asking,Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,2 baths,2 Toilets +Tastefully Finished New 5 Bedroom Fully Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kudirat Abiola Oregun Ikeja Lagos,₦,"380,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Maisonette With 1 Room Bq,"Boet Estate, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Units 4bedroom Semi Detached Duplex With 2rooms Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +7unites Of 5bedroom Service And Fully Furnished Luxury Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"840,000,000",1,0,1,5 beds,4 baths,5 Toilets +Well Finished Hotel,"Gra, Ikeja Ikeja Lagos",₦,"2,300,000,000",0,0,0,10 beds,0 baths,0 Toilets +"Office Building On 3 Floors At Adebayo Akannde, Oregun",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat On 732sqm,"Orimolade Street, Ogba Ikeja Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely Built 4bedroom Semi Detached Duplex,Salvation Road Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 And Half Plot Of Land With Story Building,Mangoro Ikeja Lagos,₦,"85,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Functional Hotel,Ikeja Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace And 5 Bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat + Bq,"In A Serene Environment Of Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedrooms Flat,Agidingbi Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Metro Hotel,"Airport Road, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"400,000,000",0,0,0,10 beds,10 baths,0 Toilets +A 10 Bedroom Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +9 Floors Commercial Building,Allen Axis Allen Avenue Ikeja Lagos,₦,"2,000,000,000/year",0,0,1,9 beds,9 baths,9 Toilets +Executive 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Wing Of Duplex,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"100,000,000/sqm",0,0,0,5 beds,5 baths,7 Toilets +4 Acres Of Land,Ikeja Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Relatively New Five Bedroom Fully Detached Duplex With Bq,Off Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Off Toyin Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +2arces And 2plots At Kudirat Abiola Way Oregun Ikeja Lagos Suitable For Any Kind Of Purpose,Kudirat Abiola Way Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +A Well Furnished Spacious 3 Bedrooms Ensuite Bathroom Flat Upstairs With Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Opic Estate Via Ikeja Ikeja Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Prime Fenced 3120sqm Land,Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +8 Units Of Three Bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +A Full Functional Hotel Sitting,Ikeja Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets +Commercial Land/plot,Z Oregun Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Maryland Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Cable Producing Factory,Ikeja Industrial Area Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedrooms Massionate,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +7000 Square Meters Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat In A Perfect Neighbourhood,Maryland Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Completed 5bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Salvation Road Opebi Ikeja Lagos,₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built/furnished 4 Bedroom Fully Detached Duplex,Omole Phase 2 Unity Road Ikeja Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets +Block Of Terrace 1# 4bedroom + Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,0,4 beds,6 baths,6 Toilets +Block Of Flats Of 3 Bedrooms Each + Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,1,3 beds,4 baths,4 Toilets +"Industrial Property On 4.6 Acres Nested Within The Popular Ikeja Industrial Area, Ikeja, Lagos","Within Ikeja Industrial Area, Ikeja Ikeja Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat(all Rooms Ensuite),Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Exquisitely Built 3 Bedrooms Terrace Duplex,Agidingbi Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Plot Of Land,Off Adebola Solanke Area Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace And 5bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Terrace Duplex,Grandville Estate Ikeja Gra Lagos State. Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land In A Serene Environment,Remi Fani Kayode Avenue Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplex In A Serene Neighborhood,Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 7 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Urgent Sale, 2400sqm Open Land Along Lagos To Ikorodu Road Between Anthony And Maryland",Between Anthony And Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Town House,Allen Avenue Ikeja Lagos,₦,"135,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Four (4) Bedroom Terrace Duplex With A Room Bq,Femi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5numbers Of 4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +College,Agidingbi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mega Filling Station,Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Building On A Full Plot Of Land For Sale At Ikeja With C Of O And Maximum Security Which Can Be Used For Both Commercial And Residential Purpose,Off Airport Road Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Pent House And Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly & Well Built To Taste A 4 Bedroom Spacious Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 1034sqm With A 7bedroom Detached Duple,Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Full Plot Of Land,Off Airport Road Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedrooms Semi Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Units Of 3 Bedroom Flat,Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets +3bed Rooms Flat,Off Allen Ikeja. Lagos Mainland Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings 5bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +13 Luxury Hotel Rooms,Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Hotel,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets +6 Units Of Luxurious 3 Bedroom Flat With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 2units Of 4bedroom Semi Detached Duplex With Bq,Estate Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Corner Piece Land Measuring 1500sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1000sqm With A Demolishable Bungalow,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 3 Bedroom Duplex With A Miniflat As Bq,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Almost Completed 7numbers Of 3 Bedrooms Flats,Oladipo Kuku Street Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Mansion,"Gbagba Crescent Estate Ogba, Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Semi Detached Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,7 baths,6 Toilets +4number Of 3bedroom Flat,Opebi Ikeja Opebi Ikeja Lagos,₦,"185,000,000",0,0,1,0 beds,0 baths,0 Toilets +Luxury 4bedroom Semi Detached Duplex,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets +State Of The Art Fully Furnished And Serviced 5bedroom Fully Detached Mansion + Swimming Pool& Gym For Sale!!!,Awuse Estate Opebi Ikeja Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Corner Piece Dryland Measuring 1500sqm With A Demolishable Structure For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets +A Newly Built & Tastefully Finished Luxury 3bedroom Flat + A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +Massive 9bedroom Fully Detached Duplex On 637sqm Landsize For Sale!!!,Ogundana Drive Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,9 beds,9 baths,9 Toilets +Land,Isheri North G.r.a Alausa Ikeja Lagos,₦,"25,000,000",1,1,0,0 beds,0 baths,0 Toilets +Superb Newly Built 4 Bedroom Terraced Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exclusive Luxury And Spacious 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury 4bedroom Fully Detached Duplex+3rooms Bq For Sale!!!,Marwa Garden Estate Alausa Ikeja Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,4 Toilets +"Solid, Massive & Tastefully Finished 4 Bedroom Semi Detached Duplex For Sale!!!",Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3bedrooms Flat Apartment With Bq,Opebi Ikeja Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets +A Functioning Standard 30 Rooms Hotel/courtyard,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"4,500,000,000",0,0,1,0 beds,0 baths,0 Toilets +Smart 3 Bedroom Terraced Duplex,Isheri North G.r.a Alausa Ikeja Lagos,₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Terrace Duplexes For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +"3 Bay Warehouse Each Consisting Of 15,000sq Ft",Morrison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +3 Acres,Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Solid 2units Of 4bedroom Duplexes + Mini Flat (bq) On Land Measuring 1200sqm Landsize For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Decent & Spacious 3bedroom Flat For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Newly Built & Tastefully Finished Luxury 2bedroom Flat For Sale!!,Toyin Street Ikeja Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +"6units Newly Built & Tastefully Finished, Massive & Luxury 3bedroom Flats + (a Bq Each) For Sale!!!!",Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,3 Toilets +A Newly Built & Tastefully Finished Luxury 3bedroom Flats + A Room Bq For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Units Of 3 Bedroom Flats Available For Sale At Oregun Ikeja,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 5bedrooms Duplex Fully Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Build 4 Bedroom Semi Detached,Magboro Ikeja Mangoro Ikeja Lagos,₦,"31,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land Measuring 3600sqm For Sale!!!,Airport Road(ikeja) Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +A Newly Built & Tastefully Finished Luxury 2buildings Consisting Of (6numbers Of 3bedroom Flat+ A Room Bq Each) For Sale!!!!,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 3bedrooms Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets +A Brand New And Sweet 4bedrooms Semi Detached Duplex With A Boys Quarter,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5bedroom Fully Detached Duplex + A Penthouse On 400sqm Landsize For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4bedroom Apartment,Mongoro Cement Close To Ikeja Mangoro Ikeja Lagos,₦,"43,000,000",0,0,1,0 beds,0 baths,0 Toilets +800sqm Of Land,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +645sqm Of Bareland,Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Semi Detached Houses Of 4bedroom + Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 6bedroom Duplex,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,8 beds,0 baths,0 Toilets +Newly Built 4bedrooms Terrace Duplex + 1 Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Block Of 12 Units Of Serviced 3 Bedrooms Flats,Oregun Ikeja Lagos,₦,"50,000,000",1,0,0,10 beds,10 baths,10 Toilets +Fenced Land,Oba Akran Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Fantastic 4 Bedroom Terrace Duplex House With Boys Quarter,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land Measuring 3.5 Acres 12,668.479 (minimum Of 2,000m² To Be Sold @ 150k/sqm)","Off Adeniyi Jones, Ikeja (this Street Linked Adeniyi Jones And Awolowo Road, Ikeja Lagos",₦,"150,000/sqm",0,0,0, beds, baths, Toilets +Redevelopable Block Of 4 Units Of 2 Bedroom Flat On A Plot With 2 Room Boys Quarters,Olawaiye Street Anifowoshe By Computer Village Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Redevelopable Property On A Land Measuring 994sqm,Ogundana Street Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Prime Industrial Property,Ikeja Industrial Estate Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished Contemporary 7bedroom Duplex With A Room Boy's Quarter At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,1,0,7 beds,8 baths,8 Toilets +Fantastic 2unit Of 5bedroom Duplex With 2rooms Boy's Quarter,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Brand New , Exquisite And Luxurious 5 Bedroom Detached Duplex With A Room Boy's Quarter","Magodo Phase 2,ikeja Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached House,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets +Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"430,000,000",1,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached House,Magodo Phase 2 Alausa Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedrooms Detached & 4bedrooms Guest Chalet,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,7 baths,8 Toilets +"Magnificent, Superb And Stylishly Built 7bedroom Duplex With A Room Boy's Quarter At Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,7 beds,8 baths,8 Toilets +Newly Built 4 Bedroom Maisonette,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,000m²","Herbert Macaulay Crescent, Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Magodo Phase 2 Alausa Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Land Measuring 2,008m²","Directly Along Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 3,961m²","Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets +A Massive 7 Bedrooms Detached House All Rooms En Suite On Approximately 800sqm Land, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,8 baths,9 Toilets +4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,4 Toilets +Industrial Land With Sundry Developments,Ikeja Industrial Area Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Prime Industrial Property,Off Oba Akran Avenue Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets +"Prime , Well Located And Fenced 2000sqm Land",Ikeja Gra Ikeja Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Brand New, Exquisite And Luxurious 5 Bedroom Fully Detached Duplex",Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Exquisite 5bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exquisite And Luxurious 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,1,4 beds,4 baths,5 Toilets +Spacious 5bedroom Detached Duplex,"Magodo Phase 2, Alausa Ikeja Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land For Sale (603 Square Metres),Off Adebola Solanke Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"Brand New, Exquisite And Luxurious 7 Bedroom Detached Duplex",Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,7 beds,7 baths,5 Toilets +"Contemporary, Brand New 3 Bedroom Terrace House With Boys Quarter",Ikeja Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +Prime And Well Located 5001sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4bedrooms Terrace And 5bedrooms Terrace + 1 Room Bq,Adebola Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished Contemporary 7 Bedroom Detached Duplex With 2 Room Boy's Quarter,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets +Warehouse / Factory Block,Off Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Exquisitely Well Designed Brand New 4 Bedroom Semi Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Superbly Finished Two(2) Unit Of (5)bedroom Semi Detached,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Plot Measuring 600m²,"Weara Estate, Off Adeniyi Jones, Ikeja Lagos",₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Regular Shaped, Firm And Dry 500sqm Land",Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bay Warehouse,Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Fully Detached Building,"Along Adeniyi Jones Road, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex Plus 2 Bedroom Flat Bq,"Off Awolowo Way,ikeja Awolowo Way Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4units Of 3bedroom Flat,Mangoro Cement Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Duplex With Bq,Ajao Estate Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,4 Toilets +Executive 4 Bedroom Semi Detached Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"90,000,000",1,1,1,4 beds,6 baths,6 Toilets +"1,500sqm Fenced & Gated Vacant Land In A Lovely Environment","Oduduwa, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"525,000,000",0,0,0, beds, baths, Toilets +Hotel,Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Distress Sale; Land Size 39,000sqm",Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings 4 Bedroom Duplex,"Julie Estate,oregun Oregun Ikeja Lagos",₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Demolishable 8bedroom Duplex On 3000sqm Land Corner Piece In A Serene Estate,Akinola Cole Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0,8 beds,7 baths,8 Toilets +Fully Furnished 7 Units Of 5 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,1,5 beds,6 baths,6 Toilets +Executive 6bedroom Duplex With 2bdroom Flat Bq In Good Location,Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,1, beds, baths, Toilets +Standard Big 4flat Of 3bedroom,Opebi Ikeja Opebi Ikeja Lagos,₦,"130,000,000",0,0,1,3 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +Detached House On Approximately 3000sqm,Awuse Estate Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedrooms Flats, Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 3 Bedroom Flats With Bqs,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets +1330sqm Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"380,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land In Ikeja Gra Lagos,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000/sqm",0,0,0, beds, baths, Toilets +Functional Hotel Of 30 Rooms,"Allen Avenue, Allen Avenue Ikeja Lagos",₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Land Measuring 1200sqm With A Structure,In Secured Estate Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Mansion With State Of The Art Fully Furnished And Finished With Turkish Furnitures With Swimming Pool,gym Cctv,intercom .",Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,5 Toilets +An Exquisitely Finished 7 Bedroom Detached House,Serene Estate .. Adeniyi Jones Ikeja Lagos,₦,"270,000,000",1,0,0,7 beds,7 baths,7 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Standard 5bedroom Duplex,Akowonjo Oba Akran Ikeja Lagos,₦,"47,000,000",0,0,0,5 beds, baths, Toilets +2 Units Of Tastefully Finished 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Commercial Property,Oba Akran Ikeja Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Over 2 Hectares Of Land (24,000 Square Meters Land) In A Secure & Gated Mini Estate","Off Oba Akinjobi, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"350,000/sqm",0,0,0, beds, baths, Toilets +Modern 6 Bedroom Bungalow + 2 Rooms Bq,"Adeniyi Jones Estate, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets +"Massive Strategically Located 16,000sqm Land Directly On Adeniyi Jones Ikeja",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"2,200,000,000",0,0,0,6 beds,6 baths,5 Toilets +Almost New Massively Built 7bedroom Exquisitely Finished Detached Duplex On 800sqm Land,Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,1,0,7 beds,7 baths,8 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +1800sqm Fenced & Gated Vacant Land,"Oduduwa, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +A Commercially Viable Property,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,4 Toilets +A Parcel Of Land Measuring Approx 1’663m2,Serene Estate Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 5bedroom Fully Detached Duplex,Opebi Ikeja Opebi Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets +Warehouses And Offices On 3 Acres,Oba Akran Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Building,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Apartment,Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Mini Flat,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"23,000,000",0,0,0,1 beds,1 baths,1 Toilets +A Block Of 4 Flats,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished State Of The Art 5 Bedroom Mansion With Swimming Pool Bq,Awuse Estate Opebi Ikeja Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice 4 Bedroom Fully Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Massive 5 Bedroom Duplex + 2 Numbers Of 3 Bedroom Flats On 1,200sqm","Slightly Off Obafemi Awolowo Way, Ikeja, Lagos. Obafemi Awolowo Way Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,. Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Storey Open Plan Office Building,Alausa Ikeja Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Terrace Duplex In A Good Location,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,6 baths,6 Toilets +Standard 3bedroom Flat,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Classy 600sqm Bareland,Oshogbon Close Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +"Newly Built 6 Bedroom Fully Detached House With Swimming Pool, 2 Rooms Bq","Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +Wonderfully Built 7 Bedroom Fully Detached House + Penthouse,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,7 beds,7 baths,8 Toilets +A 4bedroom Terrace Duplex With Swimming Pool In Awuse Estate Opebi,Awuse Estate Opebi Ikeja Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets +Standard 4numbers Of 3 Bedroom And Two Numbers Of 2bedroom With C Of O,Cement Ikeja Beside Local Airport Mangoro Ikeja Lagos,₦,"53,000,000",0,0,1,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Rowland Court Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Standard,Allen Avenue Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 3bedrooms Apartments,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Standard Commercial Demolishable Bungalow,Awolowo Way Awolowo Way Ikeja Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonettes,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Unit Of Uncompleted 4bedroom Terrace Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Duplex With 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +An Exquisite 4 Bedroom Detached Duplex,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,"Along Opebi Road, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lovely 5 Bedroom Fully Detached House On 1,000sqm Land",Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Twin 5 Bedroom Duplexes,Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,. Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Demolishable House For Outright Sale In An Estate At Off Allen Avenue,ikeja.the Asking Sales Price Is 150 Million Naira,and The Title Of The Property Is Certificate Of Occupancy","Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex With Bq,Off Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classical And Newly Built 5bedroom Detached Duplex With Bq @ikeja Gra,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built & Lovely Furnished 5 Bedroom Fully Detached House,"Awuse Estate, Opebi, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"470,000,000",0,1,1,5 beds,5 baths,6 Toilets +Block Of 4 Flat,Opebi Ikeja Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Big 4bedroom Semi Detached Duplex With Bq,Opposite Mko Abiola Garden Alausa Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds, baths, Toilets +3 Bedroom Flat Plus A Room Bq,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +6bedroom Detached Duplex,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,1,1,0 beds,0 baths,0 Toilets +Strategically And Commercially Viable 1240sqm Bareland,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,2 baths,0 Toilets +Land,Oregun Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +115 Rooms 4 Star Hotel,"Along Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"5,500,000,000",0,0,1,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House + Bq,"Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Units Of 4 Bedroom Semi Detached,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +25 Acres Of Land,Off Acme Road Adeniyi Jones Ikeja Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +9 Acres Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"18 Rooms Office Space /hotel On Two Storey Building In The Heart Of Alausa Very Close To Shoprite, Sectariate Etc For Sale",Alausa Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets +An Office Block,Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built To Taste 4 Bedroom Terrace Duplex In A Serene Estate,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +30 Rooms Hotel With An Open Rooftop On 4floors, Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"20,000sqm Land (4 Acres)",Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"5,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +1350sqm Bare Land For Residential In A Serene Estate(ashogbon),Ashogbon Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4bedroom Terrace Duplex + A Room Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +"New 5 Bedroom Mansion With Swimming Pool, Bq, Cctv In A Lovely Estate","Ikeja, Lagos. Opebi Ikeja Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +680sqms Land,"Off Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Flat,In A Close Mangoro Ikeja Lagos,₦,"150,000/sqm",0,1,0,3 beds,2 baths,3 Toilets +2units Of 5bedroom Duplex,Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4numbers Of Mini Flat,Street Mangoro Ikeja Lagos,₦,"45,000/sqm",0,1,0,3 beds,3 baths,2 Toilets +Ongoing 8 Units Of 4 Bedroom Flat,Remi Fanikayode Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Boys Quarter,Ayo Rosijii Ikeja Gra Ikeja Lagos,₦,"300,000,000",1,0,1,5 beds,5 baths,5 Toilets +3 Bedroom Flat With Bq,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +1.3 Units Of Newly Built 4 Bedroom,Ikeja Gra Ikeja Lagos,₦,"50,000,000",1,0,0,5 beds,8 baths,8 Toilets +Land,Oregun Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat & 3 Numbers Of 2bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Of 5100 Sqm With A Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Finished & Detached Duplex,"Ajao Estate, Airport Road(ikeja) Ikeja Lagos",₦,"80,000,000",0,1,0,6 beds,6 baths,7 Toilets +A Brand New 3 Bedroom Luxury Apartment For Sale,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Alausa Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Major Development On Site Is An L Shaped Five Floor Hotel,"53, Bashiru Shittu Street, Magodo Gra Lagos Ikeja Lagos",₦,"1,157,078,821",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With Bq,"Adeniyi Jones Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Fully Fenced Plot Of Land Measuring 1304.44 Oregun Mixed Development,"Block 4, Guesstimate Avenue Of Etal Road, Oregun Mixed Development Oregun Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Land,Alausa Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Units Of Fully Furnished Top Notch 4 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"720,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Flat,Mangoro Mangoro Ikeja Lagos,₦,"38,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,Alausa Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of 3 Bedroom Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Ajanaku Street Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Fully Furnished 7units Of 5bedooms,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,8 Toilets +Land Measuring 657 Square Metres,Opebi Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 3 Bedroom Luxurious Apartme,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 8 Bedroom Apartment On 2 Wings 4 Bedroom Each,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,1,8 beds,9 baths,9 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedrooms Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Minimah Estate Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of Four Bedroom Semi Detached Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,6 Toilets +A Brand New 3 Bedroom Luxurious Apartment,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fenced 1800 Sqm Swampy Land,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Factory/warehouse/commercial Building,Oba Akran Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Commercial Building ( Office Complex) Of 5 Floors,"Tokunbo Ali Street, Off Toyin Street Toyin Street Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1.184 Hectares Of Dry Bare Land Fenced Round In A Choice Location,Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +645sqm Land*,"Opebi,awuse Estate Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Number 2bedrooms Flat At Off Toyin Street Ikeja Going For #130m Net Doc Rc,Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Mansion*,Gbagba Crescent Estate Ogba Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: 4 Bedroom Terrace Duplex With Bq All Room Ensuite Newly Built Locate Off Allen Avenue Inside Estate Gated Areas Price 150m Negotiable,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +6bedrooms Detached House*,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex *,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Lovely 4 Nos Of 3 Bedroom Flat Back Of Shoprite, Alausa Ikeja, Lagos.",In A Clean Enviroment @ Back Of Shoprite Alausa Ikeja Alausa Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Semi Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Relatively New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Obafemi Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Building,Opebi Road Ikeja Lagos Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Star Hotel,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akran Road Ikeja Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Numbers Of 4 Bedroom Semi Detached Duplex + Bq,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"210,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,T Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Awuse Estate, Opebi Ikeja,lagos Opebi Ikeja Lagos",₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Half Plot Of Land,Onigbongbo Maryland Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Multi House Commercial Property In A Good Location,Slightly Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Magodo Shangisha Phase 2 Alausa Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Story Building Of 16 Rooms,Off Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6 Acres Of Land N1.4b/acre N7.2b (all) Lagos State C Of O At Ikeja Gra Oba Akinjobi Street. N350,000 Per Sqm",Ikeja Gra Ikeja Lagos,₦,"7,200,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Flat With Bq,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets +An Empty (two) 2 Plots Dry Land.,Opposite Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,"David's Court, Off Kudirat Abiola Way Oregun Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Old Structure Of 4bedroom Fully Detached,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraces Duplex With Bq In An Estate Off Adeniyi Jones Ikeja,In A Lovely Serene Estate Environment Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Factory,Oba Akran Ikeja Lagos,₦,"16,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abiola Cresent Toyin Street Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets +A Standard 10 Bedroom Duplex,Off Allen Avenue Ikeja Lagos,₦,"185,000,000",0,0,0,10 beds,9 baths,9 Toilets +Executive 7 Bedroom Fully Detached Duplex With 2 Rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,1,7 beds,8 baths,8 Toilets +Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Modern 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,10 beds,10 baths,10 Toilets +550sqm Of Land,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Bungalow,Otedola Estate Omole Ph2 Ikeja Lagos,₦,"40,000,000",0,0,1,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With 2rooms Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2000sqm With Structure On It For Sale Directly On Opebi Road, 500m Asking",Road Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Land,Alausa Ikeja Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +"Functional Hotel In Ikeja, Lagos",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"Office Building On 3 Floors, Sitting On 774.223sqm Land",Ikeja Mobolaji Bank Anthony Way Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Maisonette With A Room Bq,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With 2 Rooms Bq,Mko Gardens Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,"13b, Isaac John St Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex With Swimming Pool,"@ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex,Omole Extension Via Ikeja Ikeja Lagos,₦,"90,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With A Bq For Sale In Adeniyi Jones Ikeja,Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex,Onipetesi Mongoro Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 4 Bedroom Fully Detached Duplex,Magodo Ph1 Estate Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets +Two Numbers Of 3 Bedrooms Duplex And A Mini Flat Bq,Off Oregun Road Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +1251sqm Land,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +1400sqm Commercial Land For Sale Directly On Oregun Road. Title Is C Of O,Directly On Oregun Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 And Half Acres Of Land,Opposite Elephant House Alausa Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,965sqm Of Empty Land Lying","Isaac John Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"1,100sqm Land By Bamishile Street, Tarred And Gated Street Off Allen Avenue,ikeja Lagos.",Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Tastefully Built Fully Detached 5 Bedroom Duplex,Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Distress Lovely Modern 6 Nos Of 3 Bedroom Flat Plus Penthouse,"In A Crescent Environment, Maryland Ikeja, Lagos Maryland Ikeja Lagos",₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Ensuites Four Bed Detached,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With A Bq And Swimming Pool,Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 5 Bedroom Semi Detached Duplex With Bq,Opic Estate Via Ikeja Ikeja Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets +.550sqm Of Land,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom House+ Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Perfectly Built 4 Bedroom Terraces Duplex With A Bq Inside An Estate,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached With Swimming Pool In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,4 beds,5 baths,5 Toilets +603.246sqm Bare Land,Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1 Bedroom Flat For Sale With 2 Toilets In A Mini Estate Off Allen Avenue, Ikeja",Allen Avenue Ikeja Lagos,₦,"14,000,000",0,1,1,1 beds,1 baths,2 Toilets +Lovely 4bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Furnished Mini Flat, Allen Avenue Ikeja Lagos,₦,"23,000,000",0,0,0,1 beds,1 baths,2 Toilets +Executive Brand New 5 Bedroom Duplex With Bq,Ojodu Berger Ikeja Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Storey Building On Half A Plot Of Land,Unity Road Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedroom Fully Detached Duplex With A Room Bq,Omole Ph1 Ikeja Lagos,₦,"140,000,000",0,0,1,5 beds,6 baths,6 Toilets +250sqm Land In An Estate,Estate Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +671 Square Meters Land,Along Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +9517.06sqmtr Of Empty Land,"Celestial Street, Behind Zenith Bank, Agidingbi. Agidingbi Ikeja Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached House With Bq,Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Unit Of 3 Bedroom Bungalow,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Newly Built To Taste 6 Bedroom Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Bungalow,"Off Makogi Magboro Road, Ikeja Lagos",₦,"30,000,000",0,0,1,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Hotel With 58 Rooms,Ikeka Allen Avenue Ikeja Lagos,₦,"1,000,000,000",1,0,0,10 beds,10 baths,10 Toilets +"Tastefully Finished 5 Bedroom Detached Duplex (all Ensuite) With Fully Fitted Kitchen, Study Room, Jacuzzi, Cctv, Intercom, Automated Gate, Central Multi Media System, Family Lounge, Ante Room And A Room Boys Quarter In",Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +24 Units Apartment With 6 Units Of 3 Bedrooms Inclusive,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedrooms Detached Duplex (all Ensuite),Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +1600sqm Of Land With A Demolishable Building,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Beautifully Built 3bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Floors Building With 10units Of Open Space For Offices,Off Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +*a Brand New 5bedroom Semi Detached Duplex At Maryland: N95 Million Only.* Title: C Of O,Maryland Maryland Ikeja Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +2000sqmts Land,Magodo Shangisa Phase 2 Alausa Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 32 Rooms Hotel With Excellent Facilities,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",1,1,1,10 beds,10 baths,10 Toilets +5 Bedroom Terrace Detached Duplex With 2 Living Room And Adequate Parking Space,Located In A Close Estate Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets +A Well Finished Newly Built 3 Bedroom Flat With A Room Boys Quarter,Isaac John Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +520sqm Land,Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Commercial Property On 1004sqm For Sale Directly On Maryland Bustop, Beside Zenith Bank",Maryland Bustop Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Exclusive 3 Bedrooms Semi Detached Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Lateef Jakande Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional Hotel,Ikeja Allen Avenue Ikeja Lagos,₦,"320,000,000",0,0,1,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Furnished Fully Detached { 4 Bedroom Duplex } With 3 Bedroom Boys Quarter,Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +2numbers Of 5bedroom Duplex And A Number Of 4bedroom Duplex On 900sqm Of Land,Allen Avenue Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4flats Of 3bedrooms Each,Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,3 Toilets +3 Bedroom Flats,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"50,000,000",1,1,1,3 beds,4 baths,0 Toilets +3 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Flats Of 2 Bedroom,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikeja Semi Detached House,Justice Coker Estate Alausa Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detach Duplex Wth Bq In Omole Phase 1,Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +4bedroom Semi Detached House,Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ladipo Kuku Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bays Warehouse +office Complex,Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Ikeja Along Under Bridge Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 3 Bedrooms Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,1,1,9 beds, baths, Toilets +5 Numbers Of 3 Bedrooms Flat,Fola Adebayo Off Tolulope Moonlight Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Private Jet For Sale,Airport Road(ikeja) Ikeja Lagos,$,"3,000,000",0,0,0,1 beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Newly Built 4 Bedroom Wing Of Terrace,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +Warehouse,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat,Orange Estate Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Isaac John Street, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Off Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bay Warehouses,Eleganza Road Oregun Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones For Sale Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4bedroom Semi Detached Duplex At Maryland,. Maryland Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,"Off Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +270 Plots Flat Land,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mende Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terraced Duplex,After Berger Bus Stop Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +4bedroom Detached House With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Units Of 3bedrooms Duplex With 1room Bq N75m Per Unit. 2 Units Available,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Well Maintained Four Bedroom Duplex,Alausa Ikeja Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Commercial Property With A Elevator,Ikeja Lagos,₦,"2,000,000,000",1,0,0,10 beds,10 baths,10 Toilets +A Newly Built 3 Bedroom Semi Detached Duplex,Off Salvation Road Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedrooms Semi Detached Duplex,Cornerstone Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Carcass Of 4 Bedroom Terrace Duplex With Bq On A Two Floor With Well Spacious Sitting Room,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +8 Units Of 4bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Alfred Garden Estate Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Z Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Block Of Flats,Odunduwa Way Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,0 Toilets +Super Massive 4 Bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +"*blocks Of Flat, Comprising 2nos 3bedrooms And 2nos 2bedrooms* On A Full Plot With Parking Space", Ikeja Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Vacant Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,S Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached Brand New Exquisite 4 Bedroom Duplex At Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Awuse Y Opebi Ikeja Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Terrace With Penthouse,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,At Ladipo Bataye Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Anthony Enahoro Estate Ogba Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths, Toilets +2 Wings Of 4bedroom Duplex,Adeboye Solanke Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 2 Nos. Of 4 Bedroom Semi Detached House With Bq Each,Ikeja Gra Ikeja Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Units Of 2 Bedrooms & 2 Bedroom & 4 Units Of Mini Flats,Behind Ahamadiya Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +29 Rooms Hotel,Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Built And Exquisitely Finished 4bedroom Detached Duplex And Semi Detached + A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +Joint Venture Land,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +5bedroom Detached House,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Modern 3 Bedroom Luxury And Spacious Flat,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"150,000,000",1,0,1,5 beds,6 baths,6 Toilets +"Newly Built Tastefully Finishing 4 Nos Of 4 Bedroom Terrace Duplex+ Bq In A Cool Environment, Off Allen Avenue, Ikeja, Lagos. 90% Ready.","In A Cool Environment, Off Allen Avenue, Ikeja Lagos. Allen Avenue Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Duplex,Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets +6 Bedroom House,Shonibare Estate Maryland Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,7 Toilets +New 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +1100sqm Land In Shonibare Estate,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Of 3 Bedroom Flat Fully Detached Bungalow,"In A Lovely Serene Estate, Off Adeniyi Jones Avenue, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +A Block Of Four Flats,"Mangoro, Ikeja Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,"Off Toyin, Mko Abiola Cresent Toyin Street Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +760sqm,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +603sqm Of Land In A Fantastic Location,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Massive Land For Sale At Kudirat Abiola Way Ikeja Lagos,Kudirat Abiola Way Origin Ikeja Oregun Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached House Plus 2 Bedroom Boys Quarters,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Plot Of Land At Opebi Link To Oregun Under Bridge,Opebi Ikeja Lagos,₦,"60,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex With A Room Bq,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Alausa Ikeja Lagos,₦,"100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Landed Commercial Property On 680m2 Land,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Prroperty,Allen Avenue Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional School In Ikeja,Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Office Complex On 3 Floors,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Alausa Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,252.196sqm Of Corner Piece Bareland",Awolowo Way Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Nos Of 3 Bedrooms Flats Plus 2 Nos Of 2 Bedroom Flats + 2 Big Shops,Obafemi Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Duplex,.. Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Omole Ph2 Via Ikeja Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets +Hotel,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Wings Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,1,5 beds,6 baths,6 Toilets +2numbers Of 2 Bedroom Flat,Moshalasi Alagbado Ikeja Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 5 Bedroom Fully Detached Duplex,Omole Ph1 Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets +603.246sqm Bareland,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,1,1,5 beds,0 baths,0 Toilets +Newly & Well Built To Taste Luxury 3 Bedroom Flat With A Room Bq,Maryland Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,0 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets +5bedroom Detach Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +32 Rooms Hotel,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"3,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Flat With Bq + Swimming Pool,Adeniyi Jones Ikeja Lagos,₦,"58,000,000",1,0,0,3 beds,4 baths,4 Toilets +Spacious 6 Bedroom Fully Furnished And Serviced Duplex Plus Bq,"Ajao Estate , Canoe Axis Airport Road(ikeja) Ikeja Lagos",₦,"70,000,000",1,1,1,6 beds,7 baths,7 Toilets +Newly Built 6 Units Of 4 Bedroom Semi Detached Duplex With Bq & Others Amenities,"Okupe Estate, Maryland, Lagos Maryland Ikeja Lagos",₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Landed Property Suitable For All Kind Of Mixed Used Purpose Aside From Filling Station,"Directly On Opebi Road, Ikeja Opebi Ikeja Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets +"5 Units Of 4bedroom Terrace Duplexes With Bq, Gym, Swimming Pool On 1,600 Sqm","Oduduwa Crescent, Gra Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4 Units Of 3bedroom,"Opebi Road, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Terrace Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Condo Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3bedroom Terraced Duplex,Maryland Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Bedroom Duplex,Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,At Obafemi Awolowo Way Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Located 550sqm Of Land,Off Oluyole Bustop Oregun Ikeja Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Directly On Opebi Rd, Ikeja, Lagos Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4&5 Bedroom Fully Detached,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +9acres Of Land,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awuse Estate Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Awolowo Way, Ikeja Awolowo Way Ikeja Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5200 Sqms Fenced Bare Land,Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Of About Finished 5 Bedroom Duplex With 2 Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Finished Mini Flat,"In An Estate, Off Allen Avenue, Ikeja Lagos Allen Avenue Ikeja Lagos",₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Units Of 4 Bedroom Terrace House,Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Omole Ph1 Ikeja Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets +Lovely Modern 4 Bedroom Massionate,"In An Mini Estate, Inside Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Oba Akinjobi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",1,1,1,5 beds,6 baths,6 Toilets +"18,300sqm Good Topography Empty Land",Off Awolowo Way Ikeja Lagos State . Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Corner Piece Bare Land Measuring 5,252 Square Meters",Awolowo Way Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Standard 4 And 5bedroom Detached Duplex With A Room Bq,Ikeja Lagos,₦,"180,000,000",1,0,1,5 beds,6 baths,6 Toilets +"700 Sqm Land For Sale @ Lopez Close, Off Wole Ogunjimi Street, Agbaoku Cda, Opebi Ikeja",Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Executive 6 Bedroom Duplex,Dideolu Estate Ikeja Lagos,₦,"150,000,000/day",1,0,1,6 beds,7 baths,7 Toilets +12000sqm 3 Acres Of Land Directlt Facing A Major Road,Oba Akran Road Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedrooms Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,0 baths,0 Toilets +Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"11,958.48sqmtrs Of Empty Land Behind Conoil Filling Station",Behind Conoil Filling Station At Oregun Off Kudirat Abiola Way. Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Storey Building Office Complex With Pent House And Ample Parking Space,Allen Avenue. Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +575sqm Land. Title C Of O,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Numbers 3 Bedrooms Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Nos Of 4 Bedroom Semi Detached Duplex + Bq,"Shonibare Estate, Ikeja Mobolaji Bank Anthony Way Ikeja Lagos",₦,"210,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +"420sqm Land Directly On Akran, Ikeja.",Road Oba Akran Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat + 4 Rooms Bq,"@ Omolade Okoya Estate, Adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +Functional Hotel Of 18 Rooms On Approximately 1000sqmts With; Hall A Lounge,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Units Of 3bedrooms Duplex With 1room Bq,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Block Of Six Units Of 3 Bedroom Flat With A Bq, Mangoro Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lovely 4bedroom Semi Detached House, All Rooms Ensuite With1rooms Bq",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +Executively Built Hotel In Ikeja Lagos,"Allen Avenue, Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,1, beds, baths, Toilets +"5bedroom Semi Detached In Adeniyi Jones, Ikeja Lagos",Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Hotel In Ikeja Lagos Nigeria,Opebi Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Mixed Use 3plots,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000m2 Plot (with A Duplex And Bungalow) At Remi Fani Kayode Avenue, Ikeja Gra. If",Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"3 Bay Warehouse On 2.8 Acres Of Land For Sale In Morrison Cresent, Oregun",Morrison Cresent Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1000sqm With A Demolishable Bungalow,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Numbers Of 5 Bedrooms Terrace, Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Duplex On 700sqm,Directly On The Road Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +2 Wing 4 Bedroom Semi Detached Duplex,Off Salvation Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,8 beds,8 baths,10 Toilets +4bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Renovated 4 Bedrooms Semi Detached Duplex In An Estate,Alausa Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Built And Exquisitely Finished 4bedroom Duplex + 1rm Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Jv For Residential Or Commercial Purpose* *(premium)* 200m *location:* Ikeja Cbd Rd, Alausa Ikeja Lagos *value:* 600m *land Size:* 5,230sqm *title Doc:* C Of O *agency/facilitation:* Is 5% Of Land Value ...... Semi Direct",Alausa Ikeja Lagos,₦,"600,000,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Blocks Of Flats,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,0 Toilets +"A Detached Bungalow 1,800 Sqm","Oba Ladejobi Street, Gra, Off Oba Akinjobi Way, Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Newly Built 3 Bedroom Terrace Duplex + Bq With Others Good Amenities,Off Allen Avenue Ikeja Lagos,₦,"77,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex + Bq,"In An Serene Estate Environment, Off Adeniyi Jones Ave, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Aristotle Built Semi Detached Duplex + Bq,Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +"Newly Built Tastefully Finishing 4 Bedroom Terrace Duplex (self Compound With Separate Gate) +1 Rm Bq Off Allen Avenue, Ikeja, Lagos (residential/commerical Purpose).","In An Estate Off Allen Avenue, Ikeja Lagos. Allen Avenue Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Commercial Property On 671sqm Of Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Clean 3 Bedroom Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +510sqm Of Land With Demolishable Structure Directly On The Road,Directly On Allen Avenue Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 2 Bedroom Apartment,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +5bedroom Fully Detached Duplex With A Room Bq,Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With A Pent House And A Bq At Adeniji Jones Ikeja Lagos With All You Can Imagine,Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Flat All Room Ensuite With A Bq,In A Secure Estate In Maryland Maryland Ikeja Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +*a Five Bedroom Fully Detached Duplex In Ajao Estate Going For 60 Million Naira With C Of O*,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Flat Serviced With A Bq, Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Flat With Selfcon At Akute Area Ikeja Lagos,Emmanuel Bus Stop After Police Station Ajuwon Road Akute Ikeja Lagos. Ikeja Lagos,₦,"16,000,000",0,0,0,4 beds,2 baths,2 Toilets +A Bungalow Of 3bedroom Flat With 2 Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"6,000,000/year",0,0,0,3 beds,3 baths,3 Toilets +32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Twin Detached Duplex,Fani Kayode Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +7bedroom Ensuite Detached House,Mangoro Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex With Bq,Magodo Ph1 Via Ikeja Ikeja Lagos,₦,"95,000,000",0,0,1,4 beds,5 baths,5 Toilets +3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely Modern 5 Bedroom Fully Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,"Directly On Opebi Rd, Ikeja, Lagos Opebi Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets +Executive 58 Rooms Hotel,"Off Allen Avenue Ikeja, (via Off Toyin Str, Ikeja Lagos Allen Avenue Ikeja Lagos",₦,"100,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 4 Bedroom Semi Detcahed Duplex,"In A Serene Environment Off Obafemi Awolowo Way, Ikeja, Lagos. Awolowo Way Ikeja Lagos",₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely Modern 5 Bedroom Fully Detached Duplex,"In A Lovely Serne Environment, @ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Obafemi Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finishing 4 Bedroom Semi Detached Duplex,Off Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Opebi Road Ikeja Opebi Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Large Vacant Land,Alade Aromire Street. Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Land,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of Flats Plus A Mini Warehouse,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Executive And Very Standard Spacious Newly Built 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,3 baths,3 Toilets +A Modern 4bedroom Duplex With 2nos Of 3bedroom Flat,. Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent 3 Bedroom Duplex With Boys Quarter,Alfred Garden Estate Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets +3 Hectares Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 930sqm,"Off Toyin Street, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 6 Bedroom Fully Detached Duplex With 2 Bedroom Bq,Ikeja Via Opic Estate Ikeja Lagos,₦,"40,000,000/year",0,0,1,6 beds,7 baths,7 Toilets +4 Bedroom Duplex With A Room Bq,Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex,Arepo Via Ikeja Ikeja Lagos,₦,"30,000,000",0,1,1,4 beds,5 baths,5 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets +"4 Nos Of 2 Bedroom Flat Off Toyin Str, Ikeja Lagos","Unity Rd, Off Toyin Str, Ikeja, Lagos. Toyin Street Ikeja Lagos",₦,"180,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Numbers Of 4 Bedroom Terraced Houses,D Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,1,0,4 beds, baths, Toilets +Two Plots Of Land With Bungalow, Ikeja Gra Ikeja Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +36600. (9 Acres) Of Land,Oba Akran Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets +An Executive Newly Built Semi Detached 4 Bedroom Duplex With A Room Bq,Off Allen Avenue Estate Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Luxury Block Of Flats Of 3 Bedroom Fully Serviced Plus 1 Room Bq,"Off Isaac John Street, By Joel Ogunaike Ikeja Gra Lagos State. Ikeja Gra Ikeja Lagos",₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Brand New 4 Bedroom Semi Detached Duplex,Agbaoku Estate Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Numbers Of 4 Bedroom Terrace Duplex With A Room Bq And Swimming Pool On 1300sqm,Ikeja Gra Ikeja Lagos,₦,"480,000,000",1,0,0,4 beds, baths, Toilets +*super Sale In Bayo Dejonwo Estate,"Bayo Dejonwo Estate, Onigbongbo Maryland.. Maryland Ikeja Lagos",₦,"200,000,000/sqm",0,0,1,5 beds,5 baths,7 Toilets +A Massive And Strongly Built Commercial Open Space Structure,"Adeniyi Jones, Ikeja. Adeniyi Jones Ikeja Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +Ultra Modern Purpose Built Office Complex,Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,1,0, beds, baths, Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,1,0,7 beds,0 baths,0 Toilets +5b/r Bungalow With 5bedroom Detached Duplex And 3bedroom Bungalow + A Mini Flat Bq,"Adekunle Fajuyi Way, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +17600sqm,"Kudurat Abiola Way, Oregun Road Ikeja Lagos Oregun Ikeja Lagos",₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Mangoro Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Land,Alausa Ikeja Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,"In A Cool Environment, Awuse Estate, Opebi Ikeja, Lagos. Opebi Ikeja Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Steel Manufacturing Company , Ikeja",Oregun Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +Approximately 2000sqm On Adekunle Fajuyi Way Ikeka Gra.,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"400,000,000/sqm",0,0,0, beds, baths, Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bq,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"3,500,000/year",0,0,0,3 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Rev Ogunbiyi Street. Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse For Sale,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Luxury Semi Detached Duplex, With Mini Flat Bq",Obasa Estate Off Oba Akran Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Bungalow,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Units Of 3bedroom With Bq,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Ensuites Three Bedrooms,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Hot Joint Venture 1442sqm,In A Lovely Serene Environment Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq, In The Heart Of Ikeja",D Allen Avenue Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +"*just Out For Jv Deal!* A Demolishabel Property Located In A Close Off Chivita Rd, Ajao Estate Oshodi, Lagos *location:* Ajao Estate, Airport Road, Oshodi, Lagos *land Size:* 1’627sqm *proposal:* Terrace Houses *premium:* No Premium *sharing Formula:* T",Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"200,000,000/sqm",0,0,0, beds, baths, Toilets +Relatively New 3 Bedrooms Townhouse,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +"A Commercial Building Embodies With Massive Space Of 10units Open Space For Offices With Ample Parking, Suitable For All Kind Of Commercial Activities","Tokunbo Alli, Off Toyin Street. Ikeja. Toyin Street Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,College Road Inside Estate Ikeja Lagos,₦,"100,000,000",0,1,0,0 beds,5 baths,0 Toilets +3bedroom Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +1600sqm With A Demolishable Building,Inside An Estate Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Lovely Sweet 3 Bedroom Flat With Pop Finishing, Interlocking Compound",Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Fully Detached Duplex,Morgan Estate Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets +A Storey Building,Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Available Land,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Redevelopable Detached House On 601.751sqm Of Land,Off Salvation Road Opebi Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Residential Building,Acme Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Self Detached Duplex With A Room Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Bungalow Inside An Estate,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom, All En Suite",Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Duplex In A Serene Environment,Agidingbi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Landed Property Measures 727sqms,Canao Area Of Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached House With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Block Of 3 Bedroom Flat Plus A Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Executive 6 Bedroom Semi Detached Duplex,Maryland Ikeja Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New Massive Five Bedroom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Maryland Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Block Of 4 Flats & 1 Number Of 4 Flat,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Fully Serviced 4 Bedroom Fully Detached Duplex With A 2 Room Bq And Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"225,000,000",1,0,1,4 beds,5 baths,5 Toilets +6 Bedroom Flat,Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Storey Building Comprises Of 4 Numbers Of 3 Bedrooms Flat And 2numbers Of 2 Bedroom,Awolowo Way Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 1115square Meters Of Land With Building At Agidingbi Ikeja,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,9 beds,8 baths,8 Toilets +5bedroom Duplex Semi Detached In Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Office Space/event Center,Salvation Street Opebi Ikeja Lagos,₦,"500,000,000",0,1,1,10 beds,10 baths,10 Toilets +A 4 Star 117 Rooms Hotel,Ikeja Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of 2bedroom & 4 Bedroom Apartment,Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,1,6 beds,8 baths,8 Toilets +Structurally 4 Units Of 3 Bedrooms Apartments,Igbasan Street Opebi Ikeja Lagos,₦,"115,000,000",0,0,0,3 beds,2 baths,2 Toilets +4 Units Of Flats,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,1,4 beds,4 baths,4 Toilets +"Five Bedroom Duplex At Gra Ikeja Lagos With A Room Bq , Swimming Pool And Gym ,separate Transformer Full Security .... #280m With Cofo",Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New; Well Finished And Fully Serviced Unit Of 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets +10 Acres Of Land,Agidingbi Ikeja Lagos,₦,"5,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built And Exquisitely Finished 4bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Units Of 5bedroom Terrace Duplex With A Bq Way At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6bedroom Duplex Apartment,Ikeja Lagos,₦,"95,000,000/day",1,1,1,6 beds,7 baths,7 Toilets +Standard 3 Bedroom Flat And 9 Units Of Mini Flat,12 Odunuga Street Opebi Ikeja Lagos,₦,"150,000,000",1,0,1,3 beds,4 baths,4 Toilets +Commercial 6 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Spacious Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Storey Building Purposely For Commercial With Penthouse,Allen Avenue Ikeja Lagos,₦,"670,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ladipo Kuku Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex (all Ensuite),Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,0,5 beds,6 baths, Toilets +4 Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +New And Modern 2 Numbers 4 Bedroom Semi Detached Houses,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets +Blocks Of 8 Flats Of 4 Bedrooms,Cement Area Ikeja Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,0 baths,0 Toilets +Land,"Awolowo Way, Ikeja Awolowo Way Ikeja Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Sobo Arobiodu Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse,Oregun Ikeja Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths, Toilets +A Unit Of Luxury 2 Bedroom Flat,Dediolu Estate Ogba Ikeja Lagos,₦,"40,000,000",1,1,0,2 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq With Others Good Amenities,In An Estate Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"77,000,000",0,1,0,3 beds,4 baths,4 Toilets +3acres Of Land With Warehouse And Office Building,Oba Akran Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Ahamadiya Ikeja Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Structurally Sound Five (5) Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Plot Of Land In An Estate Off Adeniyi Jones, Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land Directly Facing The Road,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Well Structured Hotel,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Flat Sales: Luxurious 5 Bedroom Flat For Sales In An Estate, Oregun Ikeja, Lagos.","@ Peace Estate, Off Oregun Rd, Ikeja, Lagos. Oregun Ikeja Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 2 Bedroom Flat,"Off Toyin Str, Ikeja, Lagos Unity Road Ikeja Lagos",₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets +"Newly Built, Tastefully Finished 4bedroom Terrace Duplex With Bq, Pool And Generator",Awuse Estate Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Semi Detached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +These Are The Real Pictures Of The 4plots Of Land At Oregun Ikeja Lagos Suitable For Any Kind Of Purpose,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3bedroom Flat With A Room Bq And A Room For Maid At Oregun,Peace Estate Oregun Ikeja Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets +24 Units Serviced Apartment (6 Units Of 3 Bedrooms Inclusive),Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Duplex With A Basement, A 3 Bedroom Flat All Room En Suite.", Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +1600 Sqmts At Adekunlle Fajuyi Gra Ikeja,Adekunle Fajuyi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Suitable Corner Piece That Measures 720 Sqmts Suitable For Commercial Purposes Located In Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Nos 3 Bedroom Flat On 500 Sqmts,Ogba Off College Road Ikeja Lagos,₦,"45,000,000",0,0,0,10 beds,10 baths,10 Toilets +9 Acres Of Land Good For Commercial It Can Be Slightly Negotiable,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Numbers Of 5 Bedroom Fully Detached Duplex With Bq Plus Penthouse,"In A Serene Environment @ Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets +994sqm Corner Piece With Demolishable Structures,"Ogundana Street, Off Allen Avenue. Ikeja Allen Avenue Ikeja Lagos",₦,"175,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Self Compound Terrace With Bq,Wemabod Estate Unity Road Ikeja Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely Clean 4 Bedroom Semi Detached Duplex + Bq,"In A Cool Prestigious Cornerstone Estate, Alausa Ikeja, Lagos Alausa Ikeja Lagos",₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Numbers Of 3bedroom Flats,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq, Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +Furnished 1 Bedroom Flat,"Off, Mini Estate Allen Avenue Ikeja Lagos",₦,"16,000,000",0,1,0,1 beds,1 baths,2 Toilets +3 Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,0 beds,5 baths,0 Toilets +New House,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,0 Toilets +2 Units Of 4bedroom Fully Detached Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of Four Units Of 3 Bedroom Flat,Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedrooms Mansion,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,1,8 beds,0 baths,0 Toilets +New House,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +One Acre And Half Plot Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Full Plot Of Land In Awuse Estate Opebi Ikeja,Awuse Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"63,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Detached Duplex,Heritage Estate Via Ikeja Ikeja Lagos,₦,"72,000,000",0,0,1,4 beds,5 baths,5 Toilets +New House,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New And Fully Serviced Unit Of 3bedroom Flat With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Commercial Land,"Directly On Awolowo Road, Ikeja. Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +637 Sqm Of Land,Inside An Estate Off Allen Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Off Allen ,ikeja Allen Avenue Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Built 4 Bedroom Spacious Detached Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Two Wings 5 Bedroom Duplex With Bq,Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +700sqm Land,Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 600sqm,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +40 Units Of 3 Bedroom Terrace Duplex,Oduduwa Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Flat At Ikeja,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,1,6 beds,5 baths,5 Toilets +8 Units Of 3 Bedroom Luxury Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Storey Building Sitting On 400 Square Meters Of Land,Alade Market Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +6 Unit Of 3bedroom Flat,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Gra Alausa Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land Measuring 550sqm With A 5bedroom Bungalow And 1unit Of 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,T Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Spacious Detached Duplex With 2rooms Bq,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,0 Toilets +Newly & Well Built To Taste Luxury 4 Bedroom Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly & Well Built To Taste Luxury 4 Bedroom Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Cornerpiece Land Measuring 400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detach Duplex,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"400,000,000",1,1,1,4 beds,4 baths,5 Toilets +57 Bedroom Hotel,Toyin Street Ikeja Lagos,₦,"950,000,000",1,0,1,10 beds, baths, Toilets +5 Bedroom Duplex,Ikeja Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of 4 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"140,000,000",0,0,1,3 beds,3 baths,4 Toilets +4bedroom Terrace Duplex + Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Standard Full Plot Of Land With Lovely Bungalow,Mangoro Bustop Before Cement Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +3bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +Block Of 4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"160,000,000",0,0,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Townhouse With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bungalow Sitting On Half Plot Of Land,Ogunsiji Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,1,1 beds,1 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Duplex And 1 Units Of 4 Bedroom Duplex,Niki African Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Units Of 3 Bedroom Flat, Mangoro Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1062sqm With A Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Empty Land Cornerpiece,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Mobil Estate Agidingbin Near Alausa Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring About 580sqm,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With 1 Room Bq,"Akora Estate, Adeniyi Jones Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Built Massive Hall On 3 Story Building,Very Close To Computer Village Oba Akran Ikeja Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets +3bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly & Well Built To Taste A 5 Bedroom Spacious Detached Duplex With A Room Bq,Awolowo Way Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of Office Space,"Yaya Abatan, Ogba Ikeja Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Dry And Fenced 504sqm Land In Ikeja Gra. Lagos Mainland.cofo,Ikeja Gra.lagos Mainland Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxurious 7 Bedroom Fully Detached Duplex + 2 Rooms Bq, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Well Furnished Fully Detached 4bedrooms Duplex, With 3 Bqs",Marwa Gardens Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Standard Full Plot Of Land Measuring More 670sqm With Bungalow,Onipetesi Estate Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +"A Well Furnished Fully Detached 4bedrooms Duplex, With 3bqs",Marwa Gardens Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat,Akora Villa Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built Luxury 3 Bedroom Flat With Bq,Ikeja Adeniji Jones. Lagos Mainland Adeniyi Jones Ikeja Lagos,₦,"56,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat Forsale At Awuse Estate Ikeja,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Spacious Terraced Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +780sqm Land,Ogba Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Empty Land,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex Plus 2 Unit's Of 3 Bedroom Flat At Opebi Ikeja,Ajanaku Opebi Ikeja Lagos,₦,"165,000,000",0,0,1,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex, Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely Built Standard Spacious 3 Bedroom Flat Of 4 Units Less Than 10 Minutes Drive To Airport And Maximum Security,Enclosed Street At Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 550sqm With A 5bedroom Bungalow And 1unit Of 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Furnished 1 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newl Built Lovely Four Bedroom Terrace Houses With A Room Bq Each,"Adegbeyeni Street, Off Allen Avenue Ikeja Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With 1 Room Bq,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Salvation Road Opebi Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detach Duplex At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +Block Of 6 Units Of 3 Bedroom Flat,"Afariogun, Off Awolowo Way Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,2 baths,3 Toilets +5 Bedroom Terrace Duplex With Penthouse And A Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"52,000,000",0,1,1,3 beds,3 baths,4 Toilets +Well Built 4 Bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 500sqm,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Spacious Detached Duplex With 2rooms Bq,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,0 Toilets +Block Of Flats,Opebi Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 1300sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Duplex With Cofo,Adeniyi Jones Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Two Duplexes Comprising Of A Five Bedroom Duplex And A Two Bedroom Duplex,Elepe Royal Estate Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5 Bedroom Duplex,G Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Unit Of Fully Detached 5 Bedroom + Bq,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets +1200sqm Land,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 10 Bedroom Duplex Sitting On 3 Plots, Opebi Ikeja Lagos,₦,"400,000,000",0,0,1,10 beds,10 baths,10 Toilets +Lovely Plot Of Land Measuring More Than Quarter Plot Fenced Compound Gate At Sunday Farm Estate Cement Ikeja With Maximum Security,Sunday Farm Estate Cement Ikeja Mangoro Ikeja Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +A Brand New 4 Bedroom Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +3bedroom Bungalow,Agidingbi Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Street Oregun Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shopping Complex,Street Mangoro Ikeja Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury Fully Functional And Furnished 30 Room Hotel,By Allen Avenue Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,1,10 beds,10 baths,10 Toilets +Commercial Land Of 500,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Executive 3bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,5 baths,5 Toilets +Executive 5 Bedroom Duplex In Ikeja,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedrooms Fully Detached Duplex With Bq In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets +18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedrooms Duplex Fully Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"5,000,000/year",0,0,0,5 beds,0 baths,0 Toilets +Very Solid Blocks Of 8 Units Of 3 Bedroom Apartment,Beco Estate Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Newly Built 4 Bedroom Semi Detached Duplex,Off Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3bedroom En Suite,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5bedrooms Duplex Fully Detached With Bq And Security House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Masionnette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Well Maintained 2nos Of 8bedroom Duplex+ Another 5bedroom Duplex (both Semi Detaches) On 698.22sqm Landsize In An Estate..,Z Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,8 beds,8 baths,8 Toilets +Dry Land Measuring 1300sqm With A Demolishable Structure For Sale!!!,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Duplex Standing Alone,Mangoro Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern Brand New 5bedroom Fully Detached Duplex(all Rooms Ensuite+bq) For Sale!!!!,R Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"73,987,000",1,1,0,3 beds,3 baths,4 Toilets +Super Spacious Two Units Of 5 Bedroom With Boys Quarters,Off Opebi Road Or Salvation Road Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Uncompleted 4bedrooms Bungalows,Olusosun Oregun Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 7 Bedroom Detached Duplex,In An Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,0 baths,0 Toilets +Brand New 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Dry Land Measuring 1034sqm With A 7bedroom Detached Duplex + 2units Of Mini Flats (as Bq),Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex In An Estate,Awuse Estate Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mega Filling Station With 14 Double Pumps And A Car Wash,Ikeja Along Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +A Piece Of Land Measuring 1415 Sqm,In An Estate Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxurious 4bedroom Terrace With Ensuite Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful Blocks Of 3 Bedroom Flats In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +A Very Decent Property Consisting Of 6 Units Of 3 Bedroom Flat Is Available,Alausa Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats With Boys Quaters For Each Flat,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flats With A Bq,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets +A Luxurious 6 Unit Of 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedrooms Semidetached Duplex With Bq,Ikeja Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,5 beds,0 baths,0 Toilets +Tastefully Structured And Finished 4 Bedroom Terrace Duplex Plus Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Luxurious 4bedrooms Townhouse,Oregun Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +20 Plots Available,Opebi Ikeja Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 5bedrooms Duplex Fully Detached With Bq At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,7 Toilets +A Newly Built & Tastefully Finished 4bedroom Semi Detached Duplexes + A Room Bq For Sale!!!,Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Functional Steel Manufacturing Company,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury & Tastefully Finished 4 Bedroom Terraced Duplex For Sale!!!,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Ikeja,Ikeja Lagos,₦,"165,000,000",0,0,0,4 beds, baths, Toilets +Luxurious Newly Built 3bedrooms All Ensuite,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Olu Akerele Street Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Newly Built 3 Bedrooms Apartment,Ikeja Gra Ikeja Lagos,₦,"83,087,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semidetached Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Units Of 4bedrooms Uncompleted Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury & Tastefully Finished 5bedroom Fully Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedrooms Blocks Of Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedrooms Fully Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Fully Detached Duplex With Bq Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Demolishable Old Structure Consisting Of 8bedroom Duplex + 2nos Of 2bedroom Flats For Sale!!!,Opebi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +A Brand New 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Functional Hotel For Lease,Awolowo Way Ikeja Lagos,₦,"20,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Fully Detached Duplex+ A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +Very Spacious And Decent 3 Bedroom Flats,Awuse Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex All Ensuite,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built Beautiful 3bedroom With A Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5bedroom Terrace Duplex With Bq,Opebi Ikeja Lagos,₦,"120,000,000",0,1,1,5 beds,0 baths,0 Toilets +Newly Built 4bedrooms Semidetached Duplex In A Beautiful Estate,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decent 6 Numbers Of 2 Bedroom Flats In A Serene Environment,Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex Fully Detached,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Acres Of Land,Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Luxury 5 Bedroom Duplex At Gbagba,",Gbagba Crescent Ogba Ikeja Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets +Luxurious Newly Built 4bedrooms Duplex Fully Detached & Semi Detached Houses On Three Floor In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Standard 4 Units Of 3 Bedroom With A Bq In An Estate In Mangoro,Mangoro Ikeja Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets +Lovely 34 Modern Hotel Rooms,Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,1,0,0 beds,0 baths,0 Toilets +Nicely Structured 3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +30 Rooms Hotel & 200 Seaters Hall,Ikeja Lagos,₦,"5,000,000,000",0,0,1,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Flats With Bq,Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Terrace With A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"720,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +Estate Land In Opebi On Promo Till June 30th,Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +An Exquisite 25 Room Functional Hotel,"Off Lateef Jakande Road, Ikeja Lagos. Ikeja Lagos",₦,"400,000,000",1,0,1,10 beds,10 baths,10 Toilets +Newly Built 5 Bedrooms Semidetached Duplex & Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Buy And Build Land In Maryland On Promo Till June 14th,Land Is Between Maryland And Opebi In Ikeja Axis Maryland Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +An Hotel With 34 Rooms In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Luxury Penthouse,Ikeja Gra Ikeja Lagos,₦,"155,000,000",1,1,1,0 beds,0 baths,0 Toilets +2 Number Block Of 6 Flats Of 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,3 Toilets +Structured 6 Bedroom Duplex,Off Allen Avenue. Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +1400sqm Of Land,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional Plaza,Omole Phase2 Alausa Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land With Two Units Of 3 Bedrooms Bungalow And 3 Bedrooms Bq,Akinola Cole Crescent Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Storey Building Of 432sqm Of Land,Iyalle Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds, baths, Toilets +"Vast Fenced And Gated Bare Land Measuring 17,000m²","Adeniyi Jones And Obafemi Awolowo Way, Ikeja Lagos",₦,"150,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Apartment With Bq,Rose Gardens 3 Bedroom Apartment With Bq 5 Minutes Drive From Journalist Estate Arepo And Punch Newspaper And Few Minutes From Alausa Ikeja Mangoro Ikeja Lagos,₦,"16,320,000/day",0,0,0,6 beds,6 baths,6 Toilets +A Fully Detached Commercial Property On Land Measuring 671m²,"Directly Facing Awolowo Way, Awolowo Way Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets +Warehouse Space Measuring 2000 Sqms,Oregun Ikeja Lagos,₦,"2,400,000/year",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex + 3 Bedroom Bq,"Gated Close, Off Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,6 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"122,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of Tastefully Finished 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Opebi Road Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Estate Land In Prime Location,"Easton Towers, 15 Minutes From Airport Maryland Ikeja Lagos",₦,"32,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ogunlowo Estate Off Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Land Measuring 2,200m²","Directly Facing Adeniyi Jones, Adeniyi Jones Ikeja Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 4,189.29m²","Directly Along Opebi Road, Opebi Ikeja Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,314m²","Directly Along Oregun Road, Oregun Ikeja Lagos",₦,"190,000,000",0,0,0, beds, baths, Toilets +Land With Dilapidated Structure Measuring 900m²,Toyin Street Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Land Measuring 550m²,"Ladoke Akintola Street, Ikeja Gra Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Flat Plus Additional 3 Numbers Of 2 Bedroom Flat,Mangoro Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Block Of 4 Flats,Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Solid Vacant 2 Units Of 5 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ogunlowo Estate Off Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Fully Detached 7 Bedroom House,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,7 beds,7 baths,8 Toilets +"A Newly Built 4 Nos 4 Bedroom Terrace Houses On 1,500m² Land","Off Awolowo Way, Ikeja Lagos",₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat On 1st Floor (3 Units In The Compound),Off Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Commercial Land Measuring 1,000m²","Directly Along Lateef Jakande Road, Agidingbi Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +3 Bedrooms Flat (1st Floor),"9 Ladipo Kuku Street, Allen Avenue Ikeja Lagos",₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Bareland Measuring 600sqm & 300sqm @ 120m & 70m Respectively,"Ashogbon Estate, Adeniyi Jones Ikeja Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets +Land Measuring 2020.548sqm,Tunde Osilaja St. Off Osho St. Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Cornerpiece Land Measuring 1,000m²","Ogundana Street,, Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Land Measuring 769.185 Sqm,Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Awuse Estate, Opebi Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets +A Strategic Commercial 5 Floors Building Embody With Massive Space Of 10units Open Space For Offices With Car Parking Enough For Minimum Of 11cars,"Tokunbo Alli Str Slightly Off Toyin Street, Toyin Street Ikeja Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +18 Rooms Office Complex,Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700sqm,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Jv 1442sqm Land,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built And Exquisitely Finished 5bedroom Detached,Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets +380sqm Corner Piece Of Land,Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +1000 Sqm Of Land With A Demolishable Bungalow,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 6bedroom Detached Duplex + 3bedroom,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,0 baths,0 Toilets +Functional Construction Company,Ikeja Lagos,$,"25,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +1000 Sqm Of Land, Ikeja Lagos,₦,"269,000,000",0,0,0,0 beds,0 baths,0 Toilets +5100sqm,Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Well Designed Hotel With 32 Rooms,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +300 Sqm Plot Of Land,Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Duplex And 3 Bedroom Semidetached Duplex,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +932sqm With A Demolishable Building,Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4units Of 3bedroom Flat,Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture In Ikeja,Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +12blocks Of Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Finished Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached All Room Ensuite,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000m2 Joint Venture,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Super Brand New 4besroom Duplex,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +12blocks Of Flats,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +A Standard 7bedroom Duplex +pool,Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,7 beds,0 baths,0 Toilets +1600sqm Of Land,Opebi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Exquisitely Finished 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +Corner Piece Fenced Land 1400aqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +500sqm Land,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Of Land,Oregun Ikeja Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bay Warehouse With Office Building On One Acre Of Land With C Of O,Z Oregun Ikeja Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"A Functional 17 Rooms Hotel, Club House/ Guest House Sitting On 3 Plots Of Land",Salvation Road Opebi Opebi Ikeja Lagos,₦,"550,000,000",1,0,0,10 beds,10 baths,10 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building On 5 Floors,"Toyin Street, Ikeja, Lagos. Toyin Street Ikeja Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 5 Floors Office Building Facing Major Road On 2225sqm Land,Allen Opebi Road Allen Avenue Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5 Storey Building Complex,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +466sqm Of Commercial Land,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"70,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +For Sale 560sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 7 Bedroom Duplex With 2 Room Bq With C Of O,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets +Standard 5 Bedroom Fully Detached Duplex All Room Ensuites With Bq,Balogun Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached House + Bqs,Aromire Avenue Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Spacious Warehouse,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 3 Bay Warehouse And Office Building On 18759sqm Land,Off Adeniyi Jones By Oba Akran Ikeja Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 5bedroom Detached Duplex,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Solid Structure 4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Warehouse Of Approximately 9000 Sqm (7bay Warehouses),Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive New 5bedroom Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets +A Standard 5bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Imeasuring 620sqm In A Gated Estate,Off Oba Akran Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Standard 100000 Sqm Land With Warehouse And Office Building,Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Nos Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets +Executive New Luxury 5bedroom Fully Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Distress Sale Of Bareland Measuring 750sqm At Adeniyi Jones Ikeja Lagosng 750sqm At Adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Lagos Ikeja Lagos,₦,"130,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Omole Phase2 Estate Alausa Ikeja Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +One Acre Of Land,Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3bedrooms Terraced Duplex With Bq,Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Block Of 3 Units Of 3 Bedroom Flat With 2 Bedroom Pent House,Oregun Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +New 3bedroom Flat With Detached Bq And Swimming Pool In Gated Estate C Of O,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"56,000,000",0,0,0,3 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Lovely 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets +1000sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"350,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"1,466sqm Of Land",Maryland Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial And Industrial 5200sqm Land With C Of O,Alausa Ikeja Alausa Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Plots Of Land,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Duplex All Rooms Ensuite Plus Visitors Toilet,"Adeniyi Jones,,ikeja Adeniyi Jones Ikeja Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Solid Block Of 6flatsof 4nos Of 3bedroom And 2nos Of 2bedroom,Cement Area Ikeja Mangoro Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,D Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +For Sale 1000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With 3 Bedroom Bungalow,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"95,000,000/day",0,0,0,4 beds,4 baths,4 Toilets +One Wing Of 4 Bedroom Duplex With One Unit 4 Bedroom Flat And One Unit Of 3 Bedroom Flat On 500sqm Land, Oregun Ikeja Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Nos Of 3 Bedroom Flat,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +1300sqm Land,Off Isaac John Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"320,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +897. 750sqm Of Land,Adedotun Dina Close Maryland Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 No Of 3 Bedroom Flat Consisting 2 Blocks,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Standard 6 Units Of3 Bedroom Flats, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Standard 4bedroom,Allen Avenue Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"125,000,000",0,0,1,5 beds,6 baths,6 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With Bq At Opebi,Off Salvation Road Opebi Opebi Ikeja Lagos,₦,"80,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +A Standard 3bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 8 Units 3 Bedroom Flats,"Awuse Estate, Opebi Ikeja Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisite Newly Built 8 Units Of 3 Bedroom Flats With Modern Facilities,Awuse Estate Opebi Ikeja Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets +"6 Bedroom Duplex All Rooms Ensuite Plus Visitors Toilet,2 Rooms Bq,with An Ample Parking Space","Alausa,ikeja Alausa Ikeja Lagos",₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +An Executive 5bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +"3 Units 4 Bedroom Flat All Rooms Ensuite With An Ample Parking Space For Outright Sale At Off John Olugbo Street,ikeja.the Asking Sales Price Is 80 Million Naira.the Property Is Suitable For Both Residential & Commercial Purpose","Off Awolowo Way,ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Nos Of 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets +New Luxury 4bedroom Terrace Duplex With Bq,Gated Estate Allen Ikeja Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,7 baths,7 Toilets +600sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Development On Site Consist Of Warehouse, Office,admin Building,lodge",Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,7 beds,7 baths,8 Toilets +Relatively New And Well Built Finished 3 Bedroom Townhouse, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,3 Toilets +Land,Aromire Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4bedroom Fully Detached Duplex With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"140,000,000",0,1,1,4 beds,6 baths,6 Toilets +Blocks Of Flat With Bq Sitted On 550sqm Of Land,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,1,3 beds,4 baths,4 Toilets +1000sqm Of Land,Ogundana Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"170,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Solid 5bedroom Detached Duplex With 2living Rooms,Alausa Ikeja Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Wing Of Semi Detached 4 Bedroom Duplexes,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use 2 Plots Of Land,Oregun Beside Nnpc Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Semi Detached,Ikeja Gra Ikeja Lagos,₦,"180,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +A Standard 7floors Office Building,Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +An Executive 5bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5 Bedroom Duplex,Omole Phase1 Agidingbi Ikeja Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +998sqm Of Land,Alausa Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +"9 Bedroom Detached Mansion + Swimming Pool, Penthouse",Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets +New Luxury 5bedroom Fully Detached Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,7 baths,7 Toilets +New Luxury 4bedroom Terrace Duplex With Bq In A Gated Estate,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,6 baths,6 Toilets +8 Units Of 4bedrooms Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex Plus A Room Bq,"Estate,adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"85,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +Block Of 4 Flats Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Block Of 3 Bedrooms Flats,Off Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +2000sqm Of Land For Sale At Gra Ikeja Off Isaac John,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +A Standard 4floor Complex,Oregun Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Acme Road Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building On 3 Floors With A Massive Car Park Lot On A Major Road,"Along Mobolaji Bank Anthony Way, Maryland/ikeja, Lagos. Mobolaji Bank Anthony Way Ikeja Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Spacious & Luxury Flat,Ikeja Gra Ikeja Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +3bedroom Flat,Mende Maryland Ikeja Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,"Omole Phase2 Estate, Alausa Ikeja Lagos",₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Functional 25 Rooms Hotel,"Ikeja, Lagos. Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +Standard 4 Flats Of 3 Bedroom,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat Apartment With Bq,Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,5 baths,5 Toilets +An Executive 4bedroom Semi Detached Duplex,Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Well Built Three Units Affordable 4 Bedrooms Terrace Duplexes,Ikeja Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +1600sqm Parcel Of Land With C Of O,Off Ajanaku Str Awuse Estate Opebi Opebi Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +1850sqm Land, Ikeja Gra Ikeja Lagos,₦,"690,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom Detached House With 2 Guest Room,Ikeja Gra Ikeja Lagos,₦,"610,000,000/sqm",0,0,0,9 beds,9 baths,9 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Olu Akerele Street Ikeja Lagos Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Relatively New 3 Bedroom Maisonette,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Standard 7bedroom Fully Detached,Ajao Axis Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,0,0,7 beds,0 baths,0 Toilets +*contemporary 7units Of 3 Bedrooms Flats,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +New Luxury 5bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,1,5 beds,7 baths,7 Toilets +"1,115sqm Of Land",Alausa Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 2000sqm Parcel Of Land Suitable For Church,Off Salvation Opebi Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Oregun Ikeja Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Units Of 3bedroom With 2bedroom Flat,Ajao Estate International Airport Road Close To Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,1,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"92,000,000",0,1,0,3 beds,3 baths,3 Toilets +Well Built And Finished 2 Wings Of 4 Bedroom Duplex With Bq Each,Juli Estate Oregun Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +2493sqm Of Land,Ladoke Akintola Crescent Ikeja Gra Ikeja Lagos,₦,"873,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +New 5bedroom Detached With Swimming Pool And Keyless Entry Voice Recognition,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,6 baths,6 Toilets +2439sqm Land,Off Oba Akinjobi Way Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"2,500 Square Meters Land In A Serene Estate","Talabi Estate, Adeniyi Jones, Ikeja. Adeniyi Jones Ikeja Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +Standard Two 4bedroom Duplex Each With Personal Compound On 658sqm,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,1,4 beds,6 baths,6 Toilets +Standard Commercial Plot Of Land With C Of O,Anifowoshe Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +New 5bedrooms Duplex In Ikeja,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +New Luxury 8units Of 3bedroom Each With Bq In An Estate,Opebi Ikeja Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace With Bq In A Serene Enviroment,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex With 3 Bedroom Bungalow At Oregun,Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"95,000,000/day",0,0,0,4 beds,4 baths,4 Toilets +For Sale 3600sqm Of Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +Executive 5 Bedroom Duplex With Bq And Two Sitting Rooms,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,7 baths,7 Toilets +A Story Building For Outright Sale At Off Mobolaji Bank Anthony,"Off Mobolaji Bank Anthony Way By General Hospital,ikeja Mobolaji Bank Anthony Way Ikeja Lagos",₦,"40,000,000",0,0,0,10 beds,10 baths,10 Toilets +"4,356.123sqm Of Land",Oba Akran Ikeja Lagos,₦,"820,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5bedrooms Fully Detached Duplex,Omole Phase 1 Oregun Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Standard 2 Wing Of 5bedroom Duplex,Off Isolo Way Ajao Estate Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets +2000m2 Land,"Oba Ladejobi, Ikeja Gra, Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +A Lovely 4bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Executive Luxury 2bedroom Flat Apartment,Ikeja Awolowo Way Ikeja Lagos,₦,"20,000,000",0,0,1,2 beds,3 baths,3 Toilets +4 Bedroom Newly Built Semi Detached Duplex With A Bq With All Modern Facilities Are Available.,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"90,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +57 Hotel Rooms Executive Suites With Hall Of Capacity At Toyin Ikeja Lagos,Toyin Street Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With All Modern Facilities,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000/day",0,0,0,4 beds,4 baths,4 Toilets +1500sqm Of Land,Awolowo Way Ikeja Lagos,₦,"400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Functional 26rooms Hotel With Vip Bar,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +3 Plots Of Land,Awolowo Way Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Way Ikeja Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Event Hall With Office Building On 2800sqm Land,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +57 Hotel Rooms, Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,Off Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"490,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000/year",0,0,0,5 beds, baths, Toilets +Commercial Miniflat Office Space#,Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,1,1 beds,2 baths,2 Toilets +Land,Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Fully Detached,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Detached House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 30rooms Hotel And Suite,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Commercial 3 Flat Of 2 Bedroom,Opebi Ikeja Opebi Ikeja Lagos,₦,"120,000,000",0,0,1,2 beds,3 baths,3 Toilets +A Fantastic Open Office Complex,Allen Avenue Allen Avenue Ikeja Lagos,₦,"2,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Vacant 4 Bedroom Semi Detached Duplex,Gated Estate By Mko Abiola Garden Alausa Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,1,0 beds,0 baths,0 Toilets +For Sale 1800sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Multipurpose Commercial Building,Awusi Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +An Office Block Comprising Of About 16 Flats Of 2 Bedroom And 3 Bedrooms On 5 Plots Of Land,Alausa/ Agidingbi Alausa Ikeja Lagos,₦,"720,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 188rooms 5star Hotel On 8900sqm Land,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"6,000,000,000",0,0,1, beds, baths, Toilets +1000sqm Of Land With A Demolishable Structure,Opebi Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bay Warehouses,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 3bedroom Apartment With Detached Room Bq And Swimming Pool,Akora Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,5 baths,5 Toilets +A Standard 5bedroom Fully Detached Duplex,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +Luxury New Executive 4bedroom Semi Detached Duplex,Off Allen Ikeja Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +Complete Luxury 5bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets +New Luxury 3bedroom Flat With Bq And Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,5 baths,5 Toilets +550sqm Of Land,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 7 Bedroom Detached House Sitting On 1500sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets +Standard Solid 2 Numbers Of 5 Bedroom Duplex Front And Back On 730sqm Land,Allen Ikeja Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +670sqm Land,Mende Maryland Lagos Maryland Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"18,300sqm Of Dry Land",Awolowo Way Ikeja Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Commercial Plot,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +35 Hotel Rooms At Ikeja With C Of O,Airport Road(ikeja) Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury Executive 5bedroom Detached Duplex With Bq,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"158,000,000",0,0,1,5 beds,6 baths,7 Toilets +A Standard 5 Storey Building Complex,Opebi Ikeja Lagos,₦,"130,000,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +335sqm Of Land,Maryland Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Units Of 5 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +Executive 4bedroom Semi Detached Duplex With Bq,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,6 Toilets +A Demolishable Old Structure Consists Of 8 Bedroom Duplex + 2 Nos Of 2 Bedroom,Opebi Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Serviced Detached Duplex With 2 Rooms Bq And Swiming Pool, Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,4 Toilets +Uncompleted Structure,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"105,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Super Executive 5 Bedroom Fully Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +6plots Of Land (1acre Of Land ) In An Estate,Awuse Estate Opebi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +500sqm Land,Off Independent Way Ikeja Lagos Ikeja Lagos,₦,"62,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Well Finished 5 Bedroom Detached Duplex With A Room Bq And 2 Sitting Room,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Plots Of Land Fenced,Oregun Ikeja Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With Bq,Opebi Ikeja Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,5 Toilets +Block Of 4 Numbers Of 3 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Executive 4 Numbers Of 4 Bedroom Terrace Duplex On 1500sqm Land,Nice Location Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,6 Toilets +720sqm Plot Of Land In A Close,Off Allen Ikeja Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex With C Of O At Gra Ikeja Lagos,Z Ikeja Gra Ikeja Lagos,₦,"710,000,000/year",0,0,0,7 beds,7 baths,7 Toilets +Commercial Land With Factory On About 800sqm Land,Mongoro Close To Ikeja Along Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex On 705sqm Of Land,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Plot Of Land Imeasuring 620sqm In A Gated Estate,Off Oba Akran Awolowo Way Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"6 Units Of 2 Bedroom Flats Plus 2 Shops,and A Pent House","Unity Street,off Toyin Street,ikeja Toyin Street Ikeja Lagos",₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets +729sqm Land, Agidingbi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 3 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +New Luxury 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Detached House,Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +1070sqm Land With A Detached Building,"Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"265,000,000",0,0,0, beds, baths, Toilets +New 5bedroom Detached Duplex,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,7 Toilets +A Massive Land Measuring 7000sqm,Oregun Ikeja Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5star Hotel Of 32rooms With Hall Of 200capacity,"G,r,a Ikeja Lagos Ikeja Gra Ikeja Lagos",₦,"2,300,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land In An Estate,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Luxury 4bedroom Maisonette With Bq,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,6 baths,6 Toilets +Solid Block Of 4flats Of 3bedroom Each Off Opebi Oregun Link Road,Opebi Oregun Link Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Cornerpiece 2 Blocks Of 4 Flats Consisting 3 Bedrooms Each On 2 Plots Of Land, Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets +75 Plots Of Land With Supreme Court Judgement In An Estate,Mende Maryland Lagos Maryland Ikeja Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +"3 Story Building Plus Pent House At Off Toyin Street,ikeja","Off Toyin Street,ikeja Toyin Street Ikeja Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of 2 Numbers Of 3 Bedroom And 2 Numbers Of 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury Executive 7bedroom House With 2bq On 800sqm.c Of O,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,1,7 beds,9 baths,9 Toilets +1500sqm Land,Ajao Rd Ikeja Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Standard Detached House On 3000sqm Land In Good Location,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,1, beds, baths, Toilets +1017m2 Of Land,... Ikeja Gra Ikeja Lagos,₦,"268,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Terrace Duplex In A Good Location,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,1, beds, baths, Toilets +5000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely Five Storey Building Sitting On Almost 5 Plots,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,5 beds, baths, Toilets +935 Sqm Of Land, Agidingbi Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Units Of 5bedroom Duplex,Juli Estate Oregun Ikeja Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +640sqms Table Land,Omole Phase1 Agidingbi Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"320,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +For Sale 5500sqm Of Land,Awolowo Way Ikeja Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Executive 3bedroom Flat Apartment,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,1,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House With 2 Rooms Bq And Swimming Pool,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"260,000,000",0,1,1,5 beds,7 baths,7 Toilets +Standard Executive Newly Built 3 Bedroom Flat With A Room Bq,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +Honourable And Astonishing 5 Bedroom Fully Detached Duplex With Swimming Pool At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Luxury 2bedroom Flat Apartment In A Gated Estate,Dideolu Estate Ogba Close To Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets +"1,560sqm Of Land",Opebi Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Balogun Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Aromire Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of 3 And 2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Commercial Property Of 3storey Building On 1000sqm,Kudirat Abiola Way Oregun Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +A Standard Well Designed Fully Functional 32 Rooms Hotel,Gra Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,1,0 beds,0 baths,0 Toilets +Furnished 4 Bedroom Semi Detached Duplex,"Ikeja, Lagos. Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +32 Hotel Rooms With Pool And Facilities, Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +New Luxury 5bedroom Fully Detached Duplex With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets +New Luxury 5bedroom Fully Furnished Fully Detached Duplex With Bq Swimming Pool,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"450,000,000",0,1,1,5 beds,8 baths,8 Toilets +Luxury 4bedroom Terrace Duplex With Bq,Oregun Ikeja Oregun Ikeja Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets +Luxury 3bedroom Flat With Bq,Oregun Ikeja Oregun Ikeja Lagos,₦,"60,000,000",0,1,1,0 beds,0 baths,0 Toilets +For Sale 640sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 1500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nite Shift Shopping Complex On 2000sqm,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel/ Shortlets Apartment With 13 Rooms,Opebi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Numbers Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +School,Valley Estate Cement Bus Stop Ikeja Lagos Mangoro Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +2 Units Of 5 Bedroom Duplex + 1 Unit Of 4 Bedroom Duplex + 1 Room Bq Each On 950sqm,"On Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Standard 5bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Functional Nail Factory,Ikeja Lagos Opebi Ikeja Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Block Of 8 Numbers Of 4 Bedroom Flats On 2,000 Square Meters Land","Valley View Estate, Agidingbi, Ikeja, Lagos. Agidingbi Ikeja Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5bedroom Duplex,Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Commercial Demilishable Structure On 2000sqm Land Facing Major Express,Major Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"310,000,000",0,0,1,7 beds,7 baths,7 Toilets +970sqm Of Dryland In A Very Good Estate,Oregun Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 30room Hotel On 800sqm Land,Off Airport Mafoluku Oshodi Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 5 Bedroom Detached Duplex,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Plot Measuring 1000sqm With Demolishable,Ogundana Str Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +New Luxury 5bedroom Detached House With 2bedroom Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"210,000,000",0,0,1, beds, baths, Toilets +1200sqm Of Land,Agidingbi Ikeja Lagos,₦,"230,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Way Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +One Acre Of Land Along Aromire Avenue Ikeja,Adeniyi Jones Ikeja Lagos,₦,"1,400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Of Dry Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Duplex, 5 Bedroom Bungalow & 3 Bedroom Bungalow + Bqs On 1,500sqm Land","Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"370,000,000",0,0,0,10 beds,10 baths,10 Toilets +1200sqm Of Land,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"380,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Standard 25 Rooms Hotel In A Good Location,Ikeja Ikeja Lagos,₦,"30,000,000",0,0,1,0 beds,0 baths,0 Toilets +An Executive 4bedroom Duplex,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex With Office Reception Area,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,1, beds, baths, Toilets +Executive 4bedroom Terrace Duplex With Swimming Pool And Gym,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets +2 Acres Of Land,Alausa Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Commercial Land Measuring 1000sqm And 700sqm,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets +12units Of 3bedroom @ Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"980,000,000",0,0,0, beds, baths, Toilets +A Immaculate Well Designed 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +A Lovely 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flats,Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"140,000,000/day",0,1,0,6 beds,6 baths,6 Toilets +New Luxury 4bedroom Fully Detached Duplex With Bq,Gated Estate Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"135,000,000",0,1,1,4 beds,7 baths,7 Toilets +1700sqm Land,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"555,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Functional 25room Hotel,Acme Agidingbi Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"New Luxury 7bedroom Mansion With Bq, Swimming Pool",Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,1,7 beds,9 baths,9 Toilets +3.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Room Hotel In Gra Ikeja,... Ikeja Gra Ikeja Lagos,₦,"2,300,000,000/day",1,0,1,10 beds,10 baths,10 Toilets +A Block Of 6 Flats & 12 Units Of Lock Up Shops,"Ogba, Ikeja, Lagos. Ikeja Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +4 Units Of 3 Bedroom Terrace Duplex With Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +New Luxury 4bedroom Semi Detached Duplex With Bq,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"115,000,000",0,1,1,4 beds,6 baths,6 Toilets +Complete Luxury Fully Furnished 5bedroom Mansion With Bq,Gated Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets +Standard Full Plot Of Land,Ajao Estate By Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 650sqm Land In A Nice Area,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House + 2 Bedroom Bq In A Serene & Gated Estate,"Peace Court Estate, Adeyemo Alakija, Ikeja Gra, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Standard 2 Block Building Of 14flat Of 3bedroom Furnished,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"500,000,000",0,0,1,3 beds,4 baths,4 Toilets +Executive 7bedroom Duplex With 2flat Of 2bedroom,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"200,000,000",0,0,1,7 beds,8 baths,8 Toilets +1200sqm Of Land,Oregun Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5bedroom Bungalow With 2bedroom Bq On 1025sqm,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"170,000,000",0,0,1, beds, baths, Toilets +Standard 1000sqm Land In A Good Location,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +4 Units Of 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury Commercial 9floors On 4plots,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +1300sqm Of Bareland,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Standard 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Detached Duplex With Bq In Adeniyi Jones Ikeja,Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Detached En Suite Duplex On Two Floors With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Units Of 5 Bedroom Detached Mansion + Swimming Pool,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Commercial Property Suitable For Shoppping Complex With C Of O, Alausa Ikeja Lagos,₦,"270,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"97,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Bareland Measuring 1600sqm Land,Opebi Ikeja Lagos Ikeja Lagos,₦,"230,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex With Bq On 378sqm Land,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex,Magodo Phase2 Estate Alausa Ikeja Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Luxury 3bedroom Flat Apartment In Good Location,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,4 Toilets +Standard 1289sqm Land With Demolishable Structure In A Good Location,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex,Olowora Behind Omole Phase2 Alausa Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Standard 4bedroom Detached Duplex,Alakija Unity Road Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +Nice 5bedroom Detached Duplex With 2bq And Uncompleted.680sqm Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,1,5 beds,7 baths,7 Toilets +Demolishable 4 Bedroom Duplex Structure Of 3600sqm,Adeniyi Jones Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets +New Luxury 5number Of 4bedroom Duplex With Bq On 1400sqm Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"780,000,000",0,1,1,0 beds,0 baths,0 Toilets +Executive Luxury 3 Bedroom Flat With Bq,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,5 baths,5 Toilets +Luxury Executive 4bedroom Maisonette,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets +"1,088sqm Land", Allen Avenue Ikeja Lagos,₦,"140,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Superb 4 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +13 Room Hotel,Toyin Toyin Street Ikeja Lagos,₦,"180,000,000",0,0,1,0 beds,0 baths,0 Toilets +Brand New 4bedrooms Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Single Bay Warehouse,Oregun Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Big Warehouses With An Office Complex Sitting On 2.129 Acres Of Land, Alausa Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 4 Floors Office Complex In An Accessible Location,Oregun Ikeja Oregun Ikeja Lagos,₦,"180,000,000",0,1,1,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,1,0 beds,0 baths,0 Toilets +Serviced 5 Bedroom Terrace Duplex With Bq,Gated Estate Adeniyi Jones Ikeja Lagos,₦,"123,000,000",1,1,1,5 beds,7 baths,0 Toilets +Executive 25room Hotel With Lift Swimming Pool And Conference Hall,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5bedroom Detached Duplex,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 3 Bedroom,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Oregun Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"8,900m² With Hotel Structure",Airport Road Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Rooms Fully Functional Hotel,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",1,0,1,10 beds,10 baths,10 Toilets +3bedroom Flat,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +For Sale 1500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Dry Land,Old Toll Gate Alausa Ikeja Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets +Commercial 4206sqm Land,International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +26 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Of Land,Alfred Garden Olusosun Oregun Ikeja Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Perfect Corner Piece Land Measuring 400sqm,Magodo Gra Phase 2 Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +657sqm Of Land,Opebi Ikeja Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Wing Of Duplex With Miniflat Bq,Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +"1,248sqm Of Land",Along Amaraolu Off Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +1820sqm Of Land With Structure,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 6 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,6 Toilets +A Newly Built 3bedroom,Allen Avenue Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,3 Toilets +New Luxury 3bedroom Flat Apartment,Toyin Ikeja Toyin Street Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,5 baths,5 Toilets +A Dry Bareland Measuring 466sqm With C Of O And Deed Of Assignment,Oregun Lagos Oregun Ikeja Lagos,₦,"70,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Standard 15 Plot Together Selling Per 800sqm,Magodo Phase 2 Gra Shangisha Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 7 Blocks Of 3 Bedrooms Flats With Bq,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets +For Sale 800sqm Of Land,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fantastic Newly Built Luxury 5bd Fully Detached Duplex With Bq,"Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +2000sqm Land, Ikeja Gra Ikeja Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Semi Detached Duplex Terrace With Bq Personal Compound,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets +New Luxury 5bedroom Detached Duplex In A Good Location,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"220,000,000",0,1,1, beds, baths, Toilets +New Luxury 4bedroom Semi Detached Terrace Duplex In A Good Location,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"88,000,000",0,0,0,4 beds,6 baths,6 Toilets +"2 Wings Of 4 Floors Buildings With Tenated Flats, Offices And Bq",S Allen Avenue Ikeja Lagos,₦,"375,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +9500sqm Of Land For Commercial/ Residential Purpose,Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Corner Piece Land With Demolishable Structure. With C Of O At Allen,Ogundana Allen Avenue Ikeja Lagos,₦,"170,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +A Lovely Land Fenced With Gate,"Ibijoke Street, Off Oregun Road Oregun Ikeja Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land Of 3300 Sqm Land Good For School Estate And Hotel,Adeniji Jones Close To Allen Ikeja Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +An Executive 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex On 600sqms,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets +A Lovely 4 Bedroom Semi Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Executive 4bedroom Terrace Duplex In A Good Location,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets +"2plots Of Land Measuring 1,252sqm With C Of O",Etal Avenue Near Nnpc Oregun Oregun Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Commercial Detached House On 671sqm Land Facing Major Road,Major Awolowo Way Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets +New Luxury 4bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,1,4 beds,6 baths,6 Toilets +Two Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs,Opebi Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely 5bedroom Fully Detached Duplex,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Superb Luxury Ensuites Modern & Tastefully Finished Fully Detached 5bd Duplex + Rm Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Standard 6number Of 3bedroom 6rooms Penthouse.c Of O,Ajao Estate Off Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,1, beds, baths, Toilets +New Carcass 4bedroom Terrace Duplex With Bq,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,6 baths,6 Toilets +800sqm Land, Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Duplex Sitting On 600sqm Of Land,S Oregun Ikeja Lagos,₦,"55,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4number Of 3bedroom Terrace Duplex With Bq Swimming Pool Inverter Garden And Generator,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,1,3 beds,5 baths,5 Toilets +Luxury 5bedroom Detached Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +940sqm Of Land Fenced Bareland, Alausa Ikeja Lagos,₦,"280,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Paradise And Spacious 5 Bedroom Fully Detached At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace House + Bq,"Maryland, Ikeja, Lagos. Maryland Ikeja Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Pent House At Adeniyi Jones,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"105,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +New And Modern 5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +680sqm Of Land,Adeniyi Jones Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached House + Bq,"Adeniyi Jones, Ikeja, Lagos. Adeniyi Jones Ikeja Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex With Bq,Behind Lagoon Hospital Ikeja Lagos Balogun Ikeja Lagos,₦,"120,000,000/day",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex +1 Room Bq On 480sqm2 Land, Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Corner Piece Of 4 Bedroom Fully Detached Duplex With 3 Rooms Bq On 500sqm Of Land,Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +9000sqm Of Land,Reverend Ogunbiyi Crescent Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq With C Of O,Adeniyi Jones Ikeja Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +940sqm Of Commercial Fenced Bareland,Alhausa Alausa Ikeja Lagos,₦,"280,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"A 2 Bay Warehouses With 12, 000sqft With Office Building With C Of O",Oregun Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Fully Detached Duplex With Bq,Awuse Estate Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex All Room En Suites With Bq,Aladura Estate Anthony Village Mobolaji Bank Anthony Way Ikeja Lagos,₦,"92,000,000",0,1,0,5 beds,5 baths,5 Toilets +457sqm Of Land In A Very Secured Estate,Maryland Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 5bedroom Duplex Plus 4rooms Bq,Off Opebi Ikeja Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 4bedroom Terrace Duplex With Bq In A Gated Estate,Gated Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,1,4 beds,6 baths,6 Toilets +1900sqm Land, Ikeja Gra Ikeja Lagos,₦,"580,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Numbers Of 4 Bedroom Duplexes + Bq & Gate House,"By Allen Avenue, Ikeja, Lagos. Allen Avenue Ikeja Lagos",₦,"230,000,000",0,0,0,10 beds,10 baths,10 Toilets +New 5bedroom Detached Duplex With Bq And Swimming Pool,Magodo Phase 2 Gra Shangisha By Alausa Ikeja Alausa Ikeja Lagos,₦,"225,000,000",0,1,1,5 beds,6 baths,6 Toilets +6 And Half Plot Of Land,Awuse Estate Opebi Lagos Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex With 2 Rooms Bq,D Adeniyi Jones Ikeja Lagos,₦,"200,000,000/day",0,0,0,7 beds,7 baths,7 Toilets +For Sale 1800sqm Of Land,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom With Boy's Quarter,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,5 Toilets +6 Bedroom Duplex Plus 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"2,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Maisonette,"King's Court, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Room Bq,Toyin Street Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Numbers Of 3 Bedroom Flat And And A 5 Bedroom Duplex,Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds,9 baths,9 Toilets +Land,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Plus 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Isaac John Ikeja Gra Ikeja Lagos,₦,"770,000,000",0,1,0,5 beds,5 baths,6 Toilets +Pharmaceutical Company,"Sapara Close, Off Oba Akran Avenu Ikeja Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse,"Kudirat Abiola Way, Oregun Ikeja Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5units Of 4bedroom Terrace Duplex,Mende Maryland Maryland Ikeja Lagos,₦,"80,000,000/sqm",0,1,1,4 beds,6 baths,6 Toilets +Shopping Mall,Street Mangoro Ikeja Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 12 Units Of 3 Bedroom Apartment,Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bed Rooms Semi Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Osolo Way/international Airport Road(ikeja) Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Of 1700sqm,Adekunle Fajuyi Street Ikeja Gra Lagos Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000/sqm",0,0,0,4 beds,7 baths,7 Toilets +4bedroom Terrace Duplex*,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alausa Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Story Building,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,10 beds,0 baths,0 Toilets +A Foreclosed 5 Star Hotel,Airport Road(ikeja) Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of Rooms On 45ft By 150ft Plot,2rd Junction Oke Ira Ogba Ikeja Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +Brand New & Excellently Finished 3bedroom Apartment,Opebi Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +Fully Detached 5 Bedroom Duplex,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets +Blocks Of Flat With 26 Rooms,Haruna Ogba Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Approximately 530 Sqm Dry Plot Of Land,Within The Well Planned & Serene Juli Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Commercial Building On 5 Floors,Tokunboh Alli Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths,10 Toilets +Brand New And Luxury 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat With Boys Quarter,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Dry & Firm Cornerpiece 500m2 Land For Sale At Omole Phase 1 Extension @ Agidingbi,Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 7 Numbers Of 4 Bedrooms Terrace Duplex With A Room Bq On 1800 Sq Meters Of Land In An Estate,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"800,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouses With Office,Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex + 1 Room Bq,Off Salvation Road Opebi Ikeja Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2units 5bed Room Semi Detached With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Tasty 4 Bedrooms Terrace Duplex With A Bq,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached,"Akere, Ikeja Lagos State Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of Four Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"9,000,000",0,0,0,4 beds,6 baths,0 Toilets +4 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Adeniyi Jones Ikeja 5bedroom Detached House,. Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,8 Toilets +5 Bedroom Semi Detached Duplex,Magodo Phase 2 Gra Estate Ikeja Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 527 Sqm Bare Land,Estate On Kudirat Abiola Way Oregun Ikeja Lagos,₦,"40,000,000/sqm",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Off Allen, Off Bamishile Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Opic Estate, Isheri North Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +2nos. Warehouses/factories,Morrison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land For Sale In Serene Area Of Opebi, Lagos State.",Opebi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Plots Of Land, Maryland Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Commercial Property,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +117 Rooms Hotel,The Hotel Is Just 5km Away From The Murtala Muhammed International Airport And Across The Road Is The Ikeja Shopping Mall. Airport Road(ikeja) Ikeja Lagos,$,"30,000,000",0,0,1,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Maryland Ikeja Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedrm Luxurious Flat ,with Guest And One For The Maid...making It 5 Bedrm Flat In Peace Estate Off Oregun.....55m Asking....it Comes With An Elevator Ib",Off Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex And A Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive Newly Built 3bedroom Flat,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,1,3 beds,4 baths,5 Toilets +5bedroom Detached House On A Land Area Of 639sqm,Allen Avenue Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,4 baths,0 Toilets +Luxurious 3 Bedroom Flat With A Boys Quarter,"Ikeja Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Allen Allen Avenue Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Magodo, Ikeja Ikeja Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale Of 3 Acres Of Land,Along Oba Akran Ikeja Lagos Oba Akran Ikeja Lagos,₦,"12,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Flats Of 3 Bedrooms, Toyin Street Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,2 baths,3 Toilets +Available Land,Oregun Ikeja Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex +bq & Pool,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikeja Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment,Maryland Maryland Ikeja Lagos,₦,"55,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Block Of Flat,Opebi Salvation Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fully Detached House With 10 Rooms,Ikeja Lagos,₦,"100,000,000",1,1,0,10 beds,8 baths,10 Toilets +3500sqm Of Land,Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +A Functional 33 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Brand New Tastefully Finished 3 Bedroom Flat,Merit Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3bedroom Apartment,Off Toyin Street Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +450 Square Meters Of Land,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"An Office Complex On Four (4) Floors With A Total Of 1,000sqm Lettable Space",Allen Road Ikeja Allen Avenue Ikeja Lagos,₦,"650,000,000/year",0,0,0,0 beds,0 baths,4 Toilets +4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Detached Duplex,"Opebi, Ikeja Lagos. Opebi Ikeja Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex And A Bq,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Complex Shop,Street Ikeja Lagos,₦,"180,000,000/sqm",0,0,0,10 beds,1 baths,2 Toilets +Fully Furnished With Modern Finishings (1bedroom Flat) Miniflat,Allen Allen Avenue Ikeja Lagos,₦,"18,000,000",0,1,1,1 beds,1 baths,0 Toilets +4 Bedroom Flat,Ogundana Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exotic 6 Bedroom Detached Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bqm,Awuse Estate Opebi Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,6 Toilets +Tastefully Finished Fully Detached 5 Bedroom Duplex,Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,6 beds,7 baths,8 Toilets +*do You Mind The Cheapest Four (4) Bedroom Duplex In In Town?*,Opebi Ikeja Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets +Tastefully Finished 3 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +"12,000 Sq.meter Land",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Size: 13 Acres,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oregun Oregun Ikeja Lagos,₦,"27,000,000",0,0,1,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Corner Piece Apartments (mainly Office Complex),Off Toyin Street Ikeja Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,2 Toilets +10800sqm Of Land,Oba Akran Ikeja Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +6 Numbers Of 3bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Fully Furnished Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets +18300sqm Of Land,Off Awolowo Way Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 3 Bedroom Bungalow,After Chrisland Schools Opebi Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detarched Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex,Akai Road Awolowo Way Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bed Rooms Terraced Duplex With Bq,Maryland Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 2 Bedroom Flat,Toyin Street Ikeja Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Room Terrace Duplex,Opebi Estate Opebi Ikeja Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale At Ajao Estate.,"Ajao Estate, Along Air Port Road, Ikeja Lagos Airport Road(ikeja) Ikeja Lagos",₦,"70,000,000",0,1,0, beds, baths, Toilets +Land,Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom With Bq,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +6350sqm Land,Mko Abiola Garden Road Alausa Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Re Developable Property,"Along Awolowo Way, Ikeja Lagos. Awolowo Way Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasty 4 Bedrooms Terrace Duplex With A Bq,Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Luxurious Flat,Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Detached Duplex With A Room Bq.,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Bq,Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,5 Toilets +6 Bedroom Duplex,Airport Road(ikeja) Ikeja Lagos,₦,"75,000,000",0,1,0,6 beds,0 baths,0 Toilets +"3 Numbers Of 4 Bedrooms Condo Duplex With A Room Bq On 400 Sq Meters Of Land Each At Opebi, Ikeja,",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +8 Units Of Spacious And Exquisite 4 Bedroom Duplex Plus A Room Bq,Awuse Estate Opebi Ikeja Opebi Ikeja Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +1000 Sqms Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land,"Salvation Str., By Salvation B/stop Toyin Street Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment With A Room Bq,Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Duplex,Omole Phase 2 Ikeja Lagos,₦,"52,000,000",0,1,1,4 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Alausa Ikeja Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets +A Luxury 5 Bedrooms Duplex With A Bq And A Security House,Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Large 10 Bedroom Detached House,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 3bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Hotel Space,Awolowo Way Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office / Commercial Building Of 5 Floors,Ogba Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Semi Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,7 Toilets +Luxurious 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,5 Toilets +Joint Venture Land,Maryland Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Functional Steel Manufacturing Company,Oregun Industrial Area Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Star Luxurious Hotel,Ikeja Lagos,$,"30,000,000",1,0,1,10 beds,10 baths,10 Toilets +Block Of Flats,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets +7 Bedroom Fully Detached House,Opebi Ikeja Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Magodo Close To Phase 2 Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedrooms Flat,Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Oregun Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificently Finished 2 Units Of 5 Bedroom Super Luxury Detached Houses With 2 Living Room,Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Semi Detached Duplex Wth Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 2 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedrooms Detached Bungalow,Joel Ogunaike Street G.r.a Ikeja Ikeja Gra Ikeja Lagos,₦,"970,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Large 10 Bedroom Detached House, 2 Bedroom Flat Chalet, 4 Garages, And 4bqs",Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Tastefully Furnished And Finished 4 Bedrooms Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With 2bq, Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Landed Commercial Property On 680m2 Land Directly On The Road,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detach Duplex,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Luxurious 3 Bedroom Flat With A Boys Quarter At Ikeja Gra Lagos. Price #135m. Title Cofo,"Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land,Opebi Road Ikeja Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplx Wth A Room Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Acres Of Land,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +A 4 Bedroom Flat Plus Additional 3 Units Of 2bedroom Flat,Mangoro Ikeja Lagos,₦,"38,000,000",0,0,0,10 beds,0 baths,0 Toilets +Just Out 4 Bedroom Detached Duplex With Bq On 350sqm Land Fenced And Gated With C Of O, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 7 Numbers Of 4 Bedrooms Terrace Duplex With A Room Bq On 1800 Sq Meters Of Land In An Estate,Adeniyi Jones Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Flat,Toyin Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,2 Toilets +Land,Beside River Valley Estate Ojodu Berger Lagos Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable Structures,Ikeja Gra Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Allen Ikeja Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Agidingbi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Street Mangoro Ikeja Lagos,₦,"180,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Three Bedroom Apartment,Allen Avenue Ikeja Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale;3 Bedroom Flat With A Store Room Price: 37m,",Ikeja Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Good Investment: A Newly Built 4 Nos 4 Bedroom Terrace House, Ikeja Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq For Sale Ikeja Gra N140m Asking #130 Million Net With C Of O,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +650m Land,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Office Complex,Allen Road Ikeja Allen Avenue Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With A Room Bq In An Estate,In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 7bedroom Duplex At Ajao Estate, Airport Road Lagos For Sale","Ajao Estate, Along Airport Road, Airport Road(ikeja) Ikeja Lagos",₦,"85,000,000",0,1,0,7 beds,7 baths,8 Toilets +1720sqm Land,Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Block Of 2 Numbers Of 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Corner Piece Bare Land Of 1600sqm If Land,In An Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Tenement House @ Off Toyin Street Ikeja,Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +New And Tastefully Finished 4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets +2units Of 3 Bedrooms Flat Bungalow,In An Estate At Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Semi Detach Duplex Wth Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terrace Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Piece Of Land Measuring 5,300sqm",Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Units Of 4 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Commercial Land Measuring About 1000sm,Alausa Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,1,4 beds,0 baths,0 Toilets +Luxury 132 Units Of 2 & 3 Bedroom Flat + Bq (delivering Sep. 2022) Mortgage Plan Available,Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Sleek 5 Bedroom Detached Home,Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"18,300sqm Land",Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets +Jv For Residential Or Commercial Purpose* *(premium)* 200m,"Ikeja Cbd Rd, Alausa Ikeja Lagos Alausa Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +"Well Designed Exquisitely Finished & Massively Built Luxury Ensuites Modern 4bd Terrace Duplex With Bq @ Ikeja Gra,",Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Vacant 4bedroom Detached House+2 Bq With Small Garden On 460sqm Land Size,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached House Plus 2 Bedroom Out House,2 Bq",Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5bedroom Detached Duplex With Bq Swimming Pool Cinema,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +519 Sqms Dry Land,Old Tollgate Alausa Ikeja Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets +Land,Off Showemimo Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Pent House,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets +5bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +1.2 Hectares Of Land,Oregun Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Pent House,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex In A Serene Environment + 1bq,Off Allen Allen Avenue Ikeja Lagos,₦,"130,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced House With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,0 Toilets +"Land Measuring 1000sqm With A Demolishable Bungalow, In A Prime And Secured Estate",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex Ikeja Gra 120m,Ladipo Ikeja Gra Ikeja Lagos,₦,"120,000,000/sqm",1,0,1,5 beds,5 baths,4 Toilets +3 Bedroom Flat,Allen Avenue Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +New 4bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Full Plot Of Land, Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Wemimo Ikeja Gra Ikeja Lagos,₦,"176,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +Open Office Space,Oregun Ikeja Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached Duplex Is Available,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +New 4bedroom Duplex With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Standard Bq,Weara Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,5 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +Existing Exquisitely Finished 7 Bedrooms Detached House With 2 Sitting Rooms,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets +New And Modern 5 Bedroom Detached House With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"280,000,000",1,1,0,5 beds,4 baths,5 Toilets +Well Maintained 4 Bedroom Semi Detached Duplex,Howson Wright Estate Oregun Ikeja Lagos,₦,"57,000,000",0,0,0,4 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,7 baths,7 Toilets +2 Units Of 5 Bedroom Semi Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Swimming Pool,Maryland Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 4 Flat House,Ejigbo Area Airport Road(ikeja) Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Cornerstone Estate Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Block Of 6flats Newly Completed,Off Allen Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +A Block Of 3 Bedroom Flats Is Available,Oremeta Oregun Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat With A Room Bq Plus Swimming Pool,Akora Adeniyi Jones Ikeja Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Semi Detach Duplex Wth Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached Duplex Is Available For Sale, Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +Luxury5 Bedroom Detached Duplex With A Room Bq,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Omole Phase One Gra Agidingbi Ikeja Lagos,₦,"350,000,000",1,1,1,5 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex Is Available,"Awolowo, Allen Avenue Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets +Fully Detached 5 Bedroom Duplex And Bq,Adeniyi Jones Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,7 baths,7 Toilets +Land,Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"235,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Smart House With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Super Luxury Duplex In Omole Phase 1estate In Ikeja,Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +32 Rooms Luxury Hotel Ikeja Grab My Direct,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"3,300,000,000/sqm",1,1,1,10 beds,10 baths,10 Toilets +2 Block Of 3 Bedroom Flat,Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Off Awolowo Road Awolowo Way Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +"12,000sqm (3 Acres) Land","Oba Akran Avenue, Ikeja Oba Akran Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets +13 Luxury Rooms Hotel,Balogun Bustop Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,1,10 beds,10 baths,10 Toilets +Closable Joint Venture Land,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Bungalow With 2 Rooms Bq,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +A 5 Bedroom Detached Duplex Is Available,"Ogunlowo Street, Awolowo Way Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Contemporary 5 Bed Fully Detached Duplex With Bq Forsale,Awuse Estate Opebi Ikeja Lagos,₦,"550,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex Is Available,Obafemi Awolowo Way Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds, baths,6 Toilets +650sqm Of Land With A 2 Bedroom Flat Bungalow,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,0 Toilets +5 Bedroom Mini Flat Flat / Apartment,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Omole Phase 2 Agidingbi Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,4 baths,5 Toilets +Nice 4 Bedroom Terrace Duplex With Bq At Gra Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nice 4 Bedroom Flat,Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built & Tastefully Finished 5bedroom Detached Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice Fully Detached 4 Bedroom Duplex With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Maintain Block Of Flats Of 4unit Of 3bedroom Flat,Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached House With 10 Rooms,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Titled 4units Of 3bedrooom Flat,Ojodu Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern Spacious 2bedrooms With 2units Of Mini Flats,Awolowo Way Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Units Of Luxury 3 Bed Room Flats With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Premium & Luxury 4 Bedrom Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Units Of 4 Bedrom Semi Detached Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets +Exquisitely Designed Contemporary 5 Bedroom Detached,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Standard 4units Of 3bed Room Flat,Magodo Phase 1 Gra Agidingbi Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land,Omele Agidingbi Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Corner Piece Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +117 Rooms & Suites Hotels,Allen Avenue Ikeja Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1500sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,By Mma2 Intersecting The Junction To Int'l Airport Ikeja Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Units Of 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neat Luxury 4 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Units Of 3 Bedroom Each With Bq On 1 Acre Of Land Ikeja Gra Lagos Nigeria,Ikeja Gra Ikeja Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxurious Flat,Peace Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished 6 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 12 Numbers 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built Block Of 8units Of 3bedrooms Flat With A Room Bq,Awuse Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5bedroom Spacious Detached Duplex,Off Awolowo Way Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 1300sqm,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished Full Detached 4bedrooms Duplex,Marwa Gardens Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2400sqm With A Demolishable Structure,Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Uncompleted 10 Floors Office Structure,Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxurious Flat,David's Court By Peace Estate Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Spacious Detached Duplex,Opebi Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1300sqm,Adeniyi Jones Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +26 Rooms Hotel,Off Awolowo Way Ikeja Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +300m2 Land,Ajisafe Street Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Emina Crescent Off Toyin Street Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Open Plan Office Commercial Property,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Factory With Warehouse,"Acme Road, Ogba Industrial Estate Ikeja Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Spacious Detached Duplex,Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With 2bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built4 Bedroom Spacious Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bed Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse,Off Kudirat Abiola Way Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Open Plan 5 Storey (1000sqm Each Floor) Commercial Plaza,Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedrom Semi Detached House,Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedrooms Apartments,Awushe Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Agbaoku Estate Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2(numbers) Of 3 Bedroom Terrace Houses,Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Condo Duplex With 1 Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"9,140 Sqm Land",Along Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable Building,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificently Finished 2 Units Of 5 Bedroom Detached Houses,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of Mini Flats & 3 Units Of 3 Bedroom Flat,Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 8 Units Of 4 Bedroom En Suite,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 24 Acres,Ikeja Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 2 Bedroom Flat,Ayobo Alausa Ikeja Lagos,₦,"150,000,000/sqm",0,0,1,3 beds,3 baths,3 Toilets +Brand New 4bedroom Terrace Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,1,0 beds,0 baths,0 Toilets +Brand New 4bedroom Fully Detached Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached Duplex With 1 Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartment,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets +"A 7 Bay Empty Warehouses With Administrative Blocks And 9,000sqm Land",Kudirat Abiola Way Oregun Road Alausa Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Tastefully Finished 5bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,7 baths,8 Toilets +2 Bedroom Luxury Apartment,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"40,000,000",1,1,0, beds, baths, Toilets +A Tastefully Finished 5bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,7 baths,8 Toilets +4 Bedroom Maisonette With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"141,487,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Mansionette With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"83,587,000",1,1,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace House Duplex + Swimming Pool,Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 1 Bedroom Studio Hotel Apartment,5 Minutes Drive To Muritala Mohammed International Airport Maryland Ikeja Lagos,₦,"33,000,000",1,1,0,0 beds,0 baths,0 Toilets +Fully Furnished 1 Bedroom Studio Hotel Apartment,5 Minutes Drive To Muritala Mohammed International Airport Maryland Ikeja Lagos,₦,"30,000,000",1,1,0,0 beds,0 baths,0 Toilets +2000sqm Land For Joint Venture In Prime Location,Awuse Estate Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Triplex,"Salvation Road, Ikeja, Lagos Opebi Ikeja Lagos",₦,"110,000,000",1,1,0, beds, baths, Toilets +Luxury 5 Bedroom Maisonette Duplex With Bq,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"166,187,000",1,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Awuse Estate Opebi Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bay Warehouse For Sale,Acme Road. Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4.58 Acres Of Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Partly Furnished 6bedroom Detached House With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,6 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,Off Adeniyi Road Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Commercial Land,Obafemi Awolowo Way Ikeja Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets +"Joint Venture Land Of 62,000sqm",Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"18,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex + Two Rooms Bq,Ikeja Gra Ikeja Lagos,₦,"230,000,000,000",0,1,1, beds, baths, Toilets +"A Cornerpiece Of Land Measuring 400sqm With A Demolishable Structure On It, In A Prime And Secured Estate",Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Tastefully Built 5 Units Of 3 Bedroom Blocks Of Flat,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,800sqm Bareland",Oba Akran Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +"18,300sqms Bareland","Ajao Road, Off Awolowo Way Adeniyi Jones Ikeja Lagos",₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"17,000,000/year",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Flat With A Room Bq,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Oregun Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Renovated Twin 4 Bedroom Semi Detached Duplex,Salvation Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment + Bq (offplan),Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"87,000,000",0,1,0,3 beds,3 baths,4 Toilets +Available Land,Akeem Balogun Street Agidingbi Ikeja Lagos,₦,"600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Agidingbi Ikeja Lagos,₦,"2,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets +Available Land,Alausa Ikeja Lagos,₦,"3,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets +A 5 Bedroom Semi Detached House With 2room Boys Quarter,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,6 Toilets +A 2 Storey Building Hotel Of 26 Rooms,By Shopright Ikeja Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Fenced And Gated Land With Warehouses,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex With Maidroom,Ikeja Gra Ikeja Lagos,₦,"195,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex And Maidroom,Ikeja Gra Ikeja Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +Block Of Flats,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"110,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Setback,Ikeja Along Airport Road(ikeja) Ikeja Lagos,₦,"53,000,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets +Brand New Luxurious 7 Units Of 3 Bedroom Flat With Bq,"Off Issac John Street, Off Joel Ogunaike Street Ikeja Gra Ikeja Lagos",₦,"616,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Z Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,1,0 beds,0 baths,0 Toilets +3 Bedrooms Flat With Maidroom,Off Adeniyi Jones Ikeja Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Self Bq,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Five Storey Building,Opebi Road Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4bedroom Semi Detached House,Off Ayoola Coker Street Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrm Luxurious,Inside Estate Oregun Ikeja Lagos,₦,"55,000,000,000",0,0,0,5 beds,5 baths,5 Toilets +19 Number Unit 2bedroom And 1 Number Unit 3bedroom Flat, Toyin Street Ikeja Lagos,₦,"900,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With 1 Bq,Opebi Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fenced Land,Ikeja Along Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm In Gra Ikeja Available. Title Fed C Of O, Ikeja Gra Ikeja Lagos,₦,"269,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Detached Five Bedroom Duplex With A Room Bq, Security Post ,massive Compound In An Estate Adeniyi Jones.",Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"87,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Acres Of Land,Niwi Close Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Contemporary Terrace Houses Plus A Room Bq, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Solid Sand Filled Land Measuring 600sqm **** Its A Corner Piece Land,Opebi Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +466sqm Dry Bare Land Suitable For Commercial Purpose Except Supermarket,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Is A 4 Bedroom Condor Duplex With Cinema And A Bq Self Serviced, Opebi Ikeja Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets +Mini Flat, Allen Avenue Ikeja Lagos,₦,"19,000,000",0,1,0,1 beds,1 baths,2 Toilets +Brand New 4 Bed Room Semi Detach Duplex In Any Estate In Ikeja 75m Net,Awolowo Way Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4,300sqm Corner Piece Bare Land",Along Awolowo Road Awolowo Way Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of Luxurious 3 Bedroom Flat With Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With 1 Room Bq, Adeniyi Jones Ikeja Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Just Out..2,000sqm On Ajisafe Street Ikeja Gra. *price...600m..call Me Now*",Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"1,000sqm Corner Piece With Demolishable Structures",Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq At Alhaja Kofoworola St. Ikeja. 90m,Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nice 600 Sqm Land In Gra Ikeja For Urgent Sale *price...115m* (fast Response Pls) Title..letter Of Allocation,Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Detached Duplex,Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4 Plots Of Land Adjacent To Toyin Street Ikeja, Good For Any Commercial Purposes Title: C Of O Price' 350m Asking",Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +An Executive And Very Solid Block Of 4 Units 3 Bedroom Flat On 650sqm Land,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Plots Of Land,Along Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Unit Of 4 Bedroom Duplex Luxury Massionette,"Bisbell Vineyard ,awuse Estate Opebi,ikeja Opebi Ikeja Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Bare Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4units Of 3bedroom Flat One Storey And 2units Of 2bedroom Bungalow,Ifako Ijaye Ogba Ikeja Agidingbi Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +4units Of 3bedroom Flat One Storey And 2units Of 2bedroom Bungalow,"Ifako Ijaye Ogba,ikeja Agidingbi Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +1 Bedroom Studio Apartments,"Adekunke Fajuyi/glorious Ville Court, Ikeja Gra Ikeja Lagos",₦,"40,000,000",1,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Affordable 3 Bedroom Apartment,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Massionette,"Boet Estate, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"130,000",0,1,0,4 beds,6 baths,6 Toilets +A Landed Commercial Property On 680m² Land Directly On The Road,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Finished 5bedroom Fully Detach Duplex With Bq,Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached House,Magodo Alausa Ikeja Lagos,₦,"260,000,000",0,1,0,5 beds,7 baths,7 Toilets +"8 Blocks Of 3bedroom, All Ensuite Sitting On Over 1200sqm Land","Cement, Onipetesi Ikeja Mangoro Ikeja Lagos",₦,"150,000,000",0,0,0,8 beds,10 baths,10 Toilets +A Tastefully Finished 2 Blocks Of 12 Nos Of 3bedrooms Luxury Flats With Bq Each.,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 7bedroom Detached House With 2 Sitting Rooms,Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,7 beds,7 baths,7 Toilets +Newly Built 2 And 3 Bedroom Flat,Obafemi Awolowo Way I Alausa Ikeja Lagos,₦,"63,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,"Oba Akinjobi Street, Ikeja Gra Ikeja Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hot Joint Venture,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House,Lawal Street Oregun Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Functional School,Alausa Alausa Ikeja Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Jv Residential Land,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Single Bay Warehouse,Billings Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functioning Hotel,By Shoprite Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Developable Property,Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mega Filling Station,Dopemu Akowonjo Axis Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Land,Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sweet Joint Venture,Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4 Numbers Of 3 Bedroom,Off Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +Warehouse,Billings Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Floors Office Building,Along Allen Avenue Ikeja Lagos Nigeria Allen Avenue Ikeja Lagos,₦,"900,000,000",1,0,0,0 beds,0 baths,0 Toilets +Solid 5 Bedroom Detached Duplex,Magodo Phase 1 Ikeja Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Plot Of Land Measuring 4000sqm,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex+ 3 Rooms Bq,Marwa Garden Ikeja Alausa Ikeja Lagos,₦,"220,000,000",0,0,1,4 beds,5 baths,5 Toilets +Land,Along Isaac John Street Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Oba Akran Avenue Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land,Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plastic & Hair Attachment Manufacturing /recycling Factory,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced And Gated 1969sqmt Land,Awuse Estate Opebi Ikeja Lagos Nigeria Opebi Ikeja Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Land,Odediran Estate Off Opebi Link Bridge Road Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Acres Of Land Fenced With Gate,Along Adeniyi Jones Ikeja Lagos Nigeria Adeniyi Jones Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Demolishable Corner Piece Story Building,Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classic 4 Beddroom Detached Duplex With Bq,"Queen's Garden Annexii, Isheri North Gra Agidingbi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fine Plots Of Land,Alagbado Ikeja Lagos,₦,"13,500/sqm",0,0,0, beds, baths, Toilets +Land,Alausa Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms With Bq,Awuse Estate. Opebi Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,6 baths,6 Toilets +Hotel,Allen Round About Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block 4 Numbers 3bedroom Flats With 2numbers 2bedrooms Bungalow Bq,Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block 6numbers 3bedrooms Flats,"Beside Shopping Mall, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Minimah Estate Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Obafemi Awolowo Way Ikeja Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Prime Commercial Property,"Ipm Road, Alausa, Ikeja, Lagos Alausa Ikeja Lagos",$,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Units Of 3 Bedrooms Terrace Duplex,"Rev Ogunbiyi Street, Ikeja Gra, Lagos Ikeja Gra Ikeja Lagos",₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Distress Sale: 12,000sqm (3 Acres) Along Oba Akran Avenue, Ikeja, Lagos",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Distress Sale: 12,000 Sqm By Oba Akran Avenue, Ikeja, Lagos","By Oba Akran Avenue, Ikeja, Lagos Oba Akran Ikeja Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"Prime Commercial Property In Alausa Ikeja (close To Lagos State Secretariat, Alausa)","Ipm Road, Alausa, Ikeja, Lagos Alausa Ikeja Lagos",$,"1,400,000",0,0,0, beds, baths, Toilets +"9,000sqm Plot With Commercial Property","Oregun Road (kudirat Abiola), Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"New 4 Units Of Terrace Houses On 1,500sqm","Obafemi Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Acres Cornerpiece Bareland,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: 1,200sqm Plot Off Allen Avenue, Ikeja, Lagos, Nigeria",Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +"17,600sqm Plot With Demolishable Structures","Oregun Road (kudirat Abiola Way), Oregun, Ikeja, Lagos, Nigeria Oregun Ikeja Lagos",₦,"3,800,000,000",0,0,0, beds, baths, Toilets +"9,000 Sqm With 7 Bay Warehouses","Kudirat Abiola Way (oregun Road), Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"50,000,000/month",0,1,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment,Signatoria Court Ikeja Lagos,₦,"79,990,000",1,1,0,3 beds,3 baths,4 Toilets +A Newly Built 5bedroom Fully Detached Plus Bq And Swimming Pool Fitted Kitchen.,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive Newly Built 5 Bedroom Semidetached Duplex,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built 4 Bedroom Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Available Land,No. 11 Ladipo Oluwale Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced 10 Acres Of Land With 8 Bays Warehouse,Agidingbi Ikeja Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 6 Units Of 3 Bedrom Flats With A Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Block Comprising Of About 16 Flats Of 2 Bedroom & 3 Bedrooms On 5 Plots Of Land, Alausa Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Warehouse,Alausa Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +760sqm Land,"Saadatu Street, Off Kudirat Abiola Way Oregun Ikeja Lagos",₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flats With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 6 Bedroom Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,6 beds,6 baths,7 Toilets +Available Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Anifowose Ikeja Lagos,₦,"4,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Toyin Street Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,537 Square Meters",Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Flat With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,"13b, Isaac John Street Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Units Of 3 Bedroom Terraced Duplex, With A Room Bq",Reverend Ogunbiyi Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Alausa Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Flat And Bq,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,No.9 Ladipo Oluwale Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +935sqm Fenced Land,Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Situated Parcel Of Land With A Duplex And A Bungalow,Remi Fani Kayode Rd. Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 1bedroom Flat,Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Detached House,Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,8 beds,8 baths,9 Toilets +Three Bedroom With Bq,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +Detached Bungalow,Oba Ladejobi Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 1 Bq,Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +Lovely 3 Bedroom Flat All Rooms En Suite,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,1,3 beds,3 baths,3 Toilets +A Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Warehouse Of 2.129 Acres At Oregun Industrial Layout,Oregun Industrial Layout Alausa Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +A Brand New 4 Bedroom Terrace Duplex With A Pool & Bq,It's In An Estate Off Allen Allen Avenue Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Plot Of 497sqm Off Allenave,Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +A Functional Hotel At Gra Ikeja,Gra Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,1, beds, baths, Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1100 Sqm Of Land And Property,Balogun Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Semi Detached 5bedroom Duplex At Adeniyi Jones,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Tastefully Finished 2 Blocks Of 12 Nos Of 3bedrooms Luxury Flats With Bq Each.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000/sqm",0,0,1,3 beds,3 baths,3 Toilets +A Well Finished 5bedroom Fully Detach Duplex With Bq,"Off Awolowo Road Lagoon Hospital, Ikeja Awolowo Way Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury 3 Bedroom Flat/apartment With Excellent Facilities Eg Gym, Swimming Pool,",Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Luxury Flat,David's Court Oregun Ikeja Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets +430sqm With A Block Offices/apartment,"Idyalla Street Near Shoprite Alausa, Ikeja. Alausa Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +4bedrooms Detached Duplex & 3bq's (corner Piece),Marwa Gardens Ikeja Lagos Ikeja Lagos,₦,"180,000,000",0,0,1,4 beds,5 baths,5 Toilets +"Land Measuring 24,000 Sqmts (6acres)",Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Flat (4 Units) 648sqm, Fenced Round",Adeleke Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets +Approximately 9000sqm,"Situated Along Kudirat Abiola Way (oregun Road), Alausa Ikeja Lagos. Alausa Ikeja Lagos",₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex And A Bq,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +"3 Bedroom Flat (4 Units) 648sqm, Fenced Round",Adeleke Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets +6 Bedroom Duplex,"Nigeria Airforce Base Shasha, Ikeja Lagos",₦,"250,000,000",0,0,0,6 beds,0 baths,0 Toilets +Office Building,Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +6unite Of 3bedroom Flat In Magodo Phase1,Magodo Phase1 Mangoro Ikeja Lagos,₦,"250,000,000",0,0,1,3 beds,3 baths,3 Toilets +671sqm Commercial Plot,Oregun Ikeja Lagos,₦,"250,000,000/month",0,0,0, beds, baths, Toilets +"24,000 Square Meters (6 Acres)",Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +5+ Bay Empty Warehouse,Along Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Functional And Luxury 5star With 380 Rooms & Various Restaurant,Airport Road(ikeja) Ikeja Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +"4 Bays Of Warehouse On 15,000sqms",Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +4 Star Luxury Hotel,Ikeja Lagos,₦,"11,500,000,000",0,0,0, beds, baths, Toilets +25 Acres Land,Ikeja Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +2346.075sqm Land,Off Toyin Street Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Warehouse,Oregun Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With 1 Bq,Off Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Flats Of 3 Bedroom,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Maisonette,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 2nos Of 3br Duplex And A Mini Flat Bq,Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plot Of Land With Registered Title In Ikaja Gra,Imeja Gra Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"5 Storey Building Purposely For Commercial With Penthouse On Allen Avenue Major Road, Ikeja Lagos",Allen Avenue Ikeja Lagos,₦,"670,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Duplex,Oregun Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +A Modern 4 Bedroom Duplex,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New Luxurious 4 Bedrooms Apartment,Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Star Hotel,Allen Avenue Ikeja Lagos,₦,"4,000,000,000",1,1,1,10 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,M K.o/.maruw Garden Alausa Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets +A Landed Commercial Property,Street Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,0 beds,0 baths,0 Toilets +5bedroom Semi Detech Duplex,Estate In Maryland Maryland Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Luxury Bedroom Duplex With Bq All Rooms Ensuite,Ikeja Gra Lagos State Nigeria Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +A Functional Steel Manufacturing Company,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ogba Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Acres Of Commercial Land,"Ajao Road, Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"2,392,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Along Lagoon Hospital Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Units Of 5 Bedroom Semi Detached Duplexes And A Separate One Storey Building Comprising 2 Studio Flats,"Off Salvation Road, Opebi Ikeja Lagos Opebi Ikeja Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Detached Commercial Bungalow With Registered Conveyance,Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Available Land,Oregun Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Cable Factory,Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Existing Office Complex With C Of O,Allen Avenue Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Newly Built 4nos Of 4bdrm Terrace House With C Of O,Awolowo Way Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bed Room Flat,Ikelade Opebi Ikeja Lagos,₦,"200,000",0,1,0,5 beds,5 baths,2 Toilets +Newly Built And Luxury 4 Units Of 4 Bedroom Duplex With 1 Room Bq,"Off Sobo Ariobiodun Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets +"Massive 4,000 Sqm Land For Mixed Development With Lag C Of O",Sobo Ariobiodun Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury 16 Units Of 3 Bedrom Flats With Bq,Off Oba Akinjobi Street Ikeja Gra. Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +Direct Premium Luxury 4 Bedrom Duplex With 1 Room Bq,"Off Harold Shodipo Street, Ikeja Gra Ikeja Lagos",₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury Built 2 Units Of 5 Bedroom Fully Detached Duplex With 1 Room Bq,Off Sobo Ariobiodun Street Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Direct Luxury 4 Bedroom Semi Detached Duplex With A Room Bq And Luxury Communal Swimming Pool,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"148,000,000",0,1,0,4 beds,4 baths,6 Toilets +"Superb 1,200 Sqm Land In Beautiful Serene Neighborhood","Off Harold Shodipo Street, Off Joel Ogunaike Street Ikeja Gra With Lagos State C Of O Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +Brand New Luxurious & Tastefully Finished 7 Units Of 3 Bedroom Flats,"Off Issac John Street, Off Joel Ogunaike Street. Ikeja Gra Ikeja Lagos",₦,"88,000,000",1,1,0,3 beds,4 baths,5 Toilets +2 Units Of 3bedrooms Flat,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,5 Toilets +"A Strategic 1,600 Sqm Commercial Land","Directly On Issac John Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury 4 Bedroom Town House/mansionnette Duplx With A Room Bq,Awushe Estate Opebi Opebi Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +A Corner Piece Commercial 2 Wings Of 2 Storey Building With Shops On 2 Plots,By Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Off Sobo Ariobiodu Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +An Existing Event Centre,An Existing Event Centre Directly On Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium 4 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"160,000,000/sqm",0,0,1, beds, baths, Toilets +26rooms Luxuy Guest House,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"260,000,000",1,0,1,10 beds,10 baths,10 Toilets +4bedroom Semi Detached House Tastefully Finished With One Room Bq.,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"290,000,000",0,0,0,7 beds,7 baths,8 Toilets +3 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +5befroom Semi Detached Hse,Alausa Ikeja Lagos,₦,"85,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +26 Rooms Hotel,Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms And A Room Bq,Weara Estate Ashogbon Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Via Akira Estate Adeniyi Jones Ikeja Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Alausa Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Property Available,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Star Luxury Hotel,Ikeja Lagos,₦,"11,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flats With One Bq Each,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached House With 2rooms Bq,Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +7bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"270,000,000",0,0,0,7 beds,7 baths,8 Toilets +"4 Bedroom Detached House, With One Room Bq.",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Lovely 4,bedroom Detached House",Fanikayode Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +26 Standard Rooms Hotel,Obafemi Awolowo Way Ikeja Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms And A Room Bq,Weara Estate Ashogbon Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Kudeti Adeniyi Jones Ikeja Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat All Rooms Ensuite With One Room Bq.,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +"4,bedroom Detached House",Ayola Coker Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached House,Via Agbaku Street Opebi Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Terrace Apartments,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A 2 Storey Building With 21 Rooms On 2 Floors,",Iyalla Street Beside Shoprite Alausa Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,10 beds,9 baths,8 Toilets +4 Bedroom Detached Duplex,Anthony Lagos Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Block Of 4 Flat,Richfield Estate Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000/year",0,0,1,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +6bedroom Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"190,000,000",1,1,1,6 beds,7 baths,7 Toilets +Commercial Property Office Space,Agege Motor Road Ile Zinc Bus Stop Mangoro Ikeja Lagos,₦,"120,000,000",0,0,0,8 beds,0 baths,0 Toilets +A Lovely And Nice Exquisite Well Finished 5bedroom Fully Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Tastefully Finished En Suite 3bedroom Flat In A Serene Environment,Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds, baths, Toilets +Massive 8 Bedroom Duplex,Opebi Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +18 Rooms Office Complex,Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Luxury 3 Bedroom Ensuite Apartment,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"81,000,000",1,1,1,3 beds,4 baths,4 Toilets +Commercial Building On 5 Floors,Allen Avenue Ikeja Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Property,Odudu Was Way Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,4 beds,3 baths,2 Toilets +C Of O For A Luxury Hotel,10 Minutes Drive From International Airport... Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Standard Five Bed Room Duplex With Boys Quarters,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets +Three Bedroom Bungalow,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,1,3 beds,3 baths,4 Toilets +112 Luxury Room Hotel,Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"6,000,000,000",0,0,1,10 beds,10 baths,10 Toilets +5 Star Hotel Of 195rooms,Murtala Muhammed Expressway Airport Road(ikeja) Ikeja Lagos,$,"12,000,000",1,0,1,10 beds,10 baths,10 Toilets +Old Building Sitting On 941sqm Land,Ipodo Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained (6) Units Of 3 Bedroom & (3) Units Of 2 Bedroom Flat,Ogba Oba Akran Ikeja Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,4 Toilets +Two Wings Of 5 Bedroom Corner Piece Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,4 baths,4 Toilets +Two Wings 5 Bedroom Corner Piece Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,4 baths,4 Toilets +100% Dry Land Along Alausa Ikeja/ Berger Road For Buy And Build With A C Of O,Rose Choice Garden Ikeja Lagos,₦,"15,000,000/day",0,0,0, beds, baths, Toilets +3 Bedroom Flat Apartment,Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,4 baths,4 Toilets +2&3 Bedroom Apartments In New Premium Mini Estate,Allen Avenue Ikeja Lagos,₦,"49,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Flat,Shonibare Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths, Toilets +Newly Built 5bedrooms Detached House With A Rm Bq In Ikeja Gra For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +5100 Square Metres Of Land With A Building On It,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Newly Built Tastefully Finished 5 Bedrooms Fully Detached House With A Rm Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,4 baths,0 Toilets +8 Bedroom Fully Detached Duplex For Sale And Lease,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets +Newly Built 4bedrooms Town House With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fenced Bare Land,Commercial Neighborhood Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prestige Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets +Tastefully Finished 5 Bedrooms Detached Duplex With A Room Bq And A Pool,Off Isaac John Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Terrace Houses (serviced) For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terrace With A Rm Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace With A Room Bq In A Serviced Estate,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Terrace With A Rm Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Room Boys Quarter,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,1,1,3 beds,3 baths,3 Toilets +Newly Built 4bedrooms Semi Detached Duplex With Room Bq In Ikeja Gra,Off Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Carcass With A Room Bq,Off Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"91,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Units Of 4 Bedrooms Detached House,Ikeja Gra Ikeja Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"2,380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fairly Used Four Bedroom Semi Detached Duplex All Rooms Ensuite One Too With Bq,Gra Ikeja Off Ayoola Coker Street Ikeja Gra Ikeja Lagos,₦,"145,000,000/year",0,0,1,4 beds,4 baths,5 Toilets +Off Plan Contemporary 2 Bedroom Apartment,Musa Akor Close Allen Avenue Ikeja Lagos,₦,"49,612,500",1,1,0,2 beds,2 baths,3 Toilets +"On Going Project Very Luxurious 4bedroom Duplex With Pool,2kitchens,gym,3living Rooms,laundry,pantry,& Private Garage",Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Luxurious Spacious 4 Bedroom Condo Duplex With Bq,Opebi Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 8 Units Of 5 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 8 Units Of 5 Bedroom Fully Detached Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +The Best Western Plus Hostel,"Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"5,050,050,000",0,0,0,0 beds,0 baths,0 Toilets +3.1 Acres Of Dry & Fenced Land In A Prime Area,Oba Akran Oba Akran Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Dry Land In A Prime Area,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Bedroom House,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Luxury Apartments With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets +3bedroom Luxury Apartments With Swimming Pool,Z Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"67,500,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3units Of Newly Built 4bedroom Semi Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Room Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Fully Detached House With A Room,Off Allen Avenue Opebi Rd Opebi Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Fully Detached House With A Room Bq,Off Allen Opebi Rd. Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Units Of Brand New 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Land With C Of O,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq With Modern Facilities,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets +Hotel On 2 Floors By Shoprite Alausa Ikeja,By Shoprite Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Serviced 4 Units 4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"480,000,000",0,0,0,4 beds,5 baths,6 Toilets +Bare Land Measuring 500sqm,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"370,000/sqm",0,0,0, beds, baths, Toilets +Available Land,7mins Drive From Alausa Mangoro Ikeja Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With 2 Rooms Bq,Maruwa Garden Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,6 baths,7 Toilets +Two And Half Acres Of Land With C Of O,Opposite Shoprite Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,Palmgrove Estate Opebi Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1890sqm,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1840sqm At Oba Ladejobi,Oba Ladejobi Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +A Block Of 12 Flats Of 3 Bedrooms Each,Ikeja Gra Ikeja Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Units Of 5 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Land Measuring 640sqm At Gra, Ikeja","Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets +Land Measuring 3900sqm, Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,"Gra, Ikeja Ikeja Gra Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Block Of 12 Flats,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Selling: 4 Bedroom Semi Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Selling: 4 Bedroom Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Land Measuring 500sqm Each, Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 779sqm,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"280,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 500sqm,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 700sqm,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Fenced Land Measuring 4500sqm At Gra, Ikeja",Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fenced Land Measuring 6000sqm,Ikeja Gra Ikeja Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Stars Hotel,Ikeja Allen Avenue Ikeja Lagos,$,"5,500,000,000",1,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"350,000,000/sqm",0,1,1,6 beds,7 baths,7 Toilets +Commercial Land,Joel Ogunnaike Street Gra Ikeja. Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Multiple Bay Warehouses With Offices & Big Open Space,Agidingbi Ikeja Lagos,₦,"700,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bay Warehouse On 5.5 Acres Of Land,Awolowo Way Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mega Filling Station,Abeokuta Express Way Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Multiple Bay Warehouses With Office Building & Staff Quarters,Oba Akran Ikeja Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4units Of 3bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"500,000,000/year",1,1,1,3 beds,3 baths,4 Toilets +Gra Blocks Of 3 Bedrooms Flat With A Room Bq,Oduduwa Crescent Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +(2) Two Storey Commercial Office Building,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Flats 3 Bedroom,Awuse Estate Opebi Ikeja Lagos,₦,"440,000,000/sqm",0,1,0,10 beds,0 baths,0 Toilets +"Block Of 6 Flats Of 3 Bedrooms At Allen Avenue, Ikeja",Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000/sqm",0,0,0, beds,10 baths, Toilets +Well Kept 4 Flats Of 3 Bedrooms,Awuse Estate Opebi Ikeja Lagos,₦,"140,000,000/sqm",0,0,0,10 beds,0 baths,0 Toilets +Land,Opposite Gra Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedrooms Flat,Off Mobolaji Bank Anthony Way Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Off College Road Ogba Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +32 Rooms Hotel,Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plastic & Hair Attachment Manufacturing /recycling Factory,Oregun Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ojodu Berger Express Way Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +"A Massive House That Has 3bedroom Duplex ,4bedroom Flats And Two Self Contain Attached To The Duplex With 3bed At The Back.",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terrace,Mko Gardens Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,3 Toilets +Petrol Station, Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Filling Station,Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available 24 Plots,Agidingbi Ikeja Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Alausa Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5 Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Awolowo Way Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Bedroom Twin Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplexes,Akinwumi Estate Mende Maryland Ikeja Maryland Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex Tastefully Finished, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Petrol Station, Ikeja Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Storey Building Hotel Of 26 Rooms,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plot Of Land,Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 2 Bedrooms Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Warehouse On 12,000sqmt Land",Ikeja Along Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +6 Bedroom Duplex,Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Unit Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Petrol Station,Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mini Estate With 12 Units Of 3 Bedroom Flats,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +15 Plots Of Land,Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Block Of 4 Numbers Of 3 Bedroom Flat,Apata Street Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Storey Building,Maryland Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landed Commercial Property,Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 7numbers 4bedroom Terrace Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive And Beautiful 2 Bedroom Flat,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,1,2 beds,3 baths,3 Toilets +7 Bedroom Detached House,Salvation Rd. Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex + A Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Wing 5bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5bedroom Detach Duplex,Omole Phase One 1 Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Hot Joint Venture,Off Sobo Aribiodun Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detached Of 4 Bedrooms Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Mansion With Underground Packing Space With Swimming Pool An Open Terrace Space House.with Bq,Ikaja.gra Well Gatted And Secure Environment Ikeja Gra Ikeja Lagos,₦,"690,000,000",0,0,0,7 beds, baths, Toilets +Available Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Omole Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four(4) Bedroom Fully Detached Duplex With Bq,"Cornerstone Estate, Opposite Mko Gardens Alausa Ikeja Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5bedroom Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land Measuring 750 Sqm,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedrooms Flats,Alausa Ikeja Lagos,₦,"230,000,000",0,0,0,3 beds,0 baths,0 Toilets +5bed Fully Detached Duplex,Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5bedroom Detach Duplex Wth Bq,Omole.phade 2 Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Joint Venture Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +800ssq Of Land,Off Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2500sqm Land Size,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex Plus I Room Bq,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq .,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Shopping Complex,Opebi Near Salvation Street Ikeja Lagos With C Of O Title And Other Amenities Opebi Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Newly Built Smart Massive 7 Bedroom Mansion,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,7 beds,0 baths,0 Toilets +"A Plot Of Land Fence And Gated At Cocosheen Street Off Ogunmodede Street,allen Bus Stop Ikeja",Allen Avenue Ikeja Lagos,₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets +A Parcel Of Land Squarely And With Sound Topography Within A Serene Neighborhood,"Location: In An Estate, Off Adeniyi Jones, Ikeja, Lagos* *land Size: 1,400sqm* Adeniyi Jones Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex+2 Servant Room With Proposed Swimming Pool On 550sqm Land, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bed,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets +Warehouse,Oba Akran Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Preskan Hotel & Suits,Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,0 baths,0 Toilets +Joint Venture In An Estate Opposite Omole Phase 1,Omole Phase 2 Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel/ Short Let Apartments,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Detached House, Plus 1bedroom Bq",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 5bedroom Detach Duplex With Bq,Omole Phase One Ikeja Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Grand, Serene Fully Detached Five Bedrooom Duplex",Ikeja. Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +Easton Towers Estate,Peace Estate Maryland. Maryland Ikeja Lagos,₦,"50,000,000",1,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace,Off Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds,5 baths,4 Toilets +6 Storey Office Building For Sale At Oba Akran Avenue Ikeja,Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Parcel Of Land Measuring Approximately 4189.29sqm Suitable For Commercial Purpose At Opebi Road Ikeja Lagos. Engi.,Opebi Road Ikeja Lagos Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +8 Units Of 3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +School Building,Mangoro Mangoro Ikeja Lagos,₦,"265,000,000",0,0,1,4 beds,6 baths,5 Toilets +3 Acres Of Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Foreign Functional Construction Company,Ikeja Lagos,$,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Room Fully Detach Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +5 Bed Room Fully Detach Duplex With A Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,0,5 beds, baths, Toilets +9 Floor Of A Commercial Building,Allen Avenue Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detach Duplex,.. Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bed Room Fully Detach Duplex,Opebi Ikeja Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Opebi Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +Furnished 1 Bedroom Flat,Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,1 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Apartment + Maid Room,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +5400sqm Land,Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Available Land,New International Airport Ikeja Lagos,₦,"1,850,000",0,0,0,0 beds,0 baths,0 Toilets +A 1300sqms Land With A Demolishable Structure,Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Storey Building Of Office Space And Show Rooms Sitting On 2,225 Sqm With C Of O",Opebi Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Land,Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building For Sale In Ikeja,Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sale Or Lease Of Land,Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat,Mangoro Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Jv Land Off Allen Avenue, 4008sqm,",Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Land,Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 And Half Plot Land,Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5200sqmgra Land,X Ikeja Gra Ikeja Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets +Twin Duplex,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +(4 Units) 4 Bedroom Terraced House In A Serene Gated Estate,Moa Gardens Adeyeri Estate Ogba Ikeja Lagos Nigeria Ikeja Lagos,₦,"33,000,000",0,0,0,4 beds,5 baths,5 Toilets +9517.06sqm Ikeja Empty Land,S Agidingbi Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Jv Land Of 9.44 Acres, At International Airport Road Ikeja",Airport Road(ikeja) Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"Alausa Ikeja Land ,2200sqm Corner Piece Land",Alausa Ikeja Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +7100sqm Corner Piece Land,E Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1965sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets +5000sqm Jv Land,Billings Way Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex With Bq,Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Detached House Of 6 Bedroom Plus Bq,Oladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"350,000,000/year",1,0,1,6 beds,6 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex With Bq In A Serene Environment,Off Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex With Automatic Gate,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroom Detached House With Bq,"Omofade Crescent, Omole Phase 1 Ikeja Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Units Of 3 Bedroom Flat With A Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat With Pool And Bq,Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,0 beds,0 baths,0 Toilets +Fine Plots Of Land,Queen’s Park Estate Mowe Ofada Ikeja Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +Units Of 2 And 3 Bedroom Apartment,"Isheri North, G.r. Ikeja Lagos",₦,"23,500,000",0,0,0,2 beds,2 baths,3 Toilets +Fine Plots Of Land,Maravillas Estate Alausa Ikeja Lagos,₦,"9,600,000",0,0,0,0 beds,0 baths,0 Toilets +Fine Plots Of Land,"By Isheri North Gra, Opic Ikeja Lagos",₦,"9,600,000",0,0,0, beds, baths, Toilets +"Luxury Serviced Land Few Minutes Away From The Intl Airport & Sheraton, Maryland, Ikeja",Maryland Ikeja Lagos,₦,"32,000,000",1,0,0, beds, baths, Toilets +Rent To Own Made Easy, Adeniyi Jones Ikeja Lagos,₦,"49,900,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,5 baths,6 Toilets +A Very Lovely 4 Bedroom Semi Detached Duplex With A Pent House,Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +"New Modern 5 Bedroom Detached Duplex With 2 Room Bq, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +32 Rooms Hotel,Gra Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Fully Detached Duplex On 1062sqm Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,0 Toilets +4 Bedroom Duplex,Oba Dosumu St Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex For N100m Each,Estate Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Duplex With Bq In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets +A Block Of 8 Bedrooms And Bqs On Over 700sqm,Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,8 beds,8 baths,9 Toilets +Office Complex,Off Unity Road Unity Road Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Newly Built 6 Bedroom Duplex With Bq In Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets +Luxurious 5 Bedroom Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",1,0,1,5 beds,6 baths,6 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"An Office Complex On Five Floors And A Penthouse Along Allen Avenue, Ikeja, Lagos",Allen Avenue Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"A Large Parcel Of Land The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, Directly On Opebi Road, Ikeja, Lagos.land Size: 2225.265 Square Meters",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +1250 Directly Along Joel Ogunaike Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex Plus Gatehouse. This Property Is Sitting On A Land Measuring 908 Square Meters With A Registered Conveyance As Title Documents. Property Is Located Slightly,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"Commercial Property Suitable For Supermarket, Shopping And Office Complex", Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Industrial Warehouses. With Office On 14,acres Of Land (56,035m2)",Ikeja Lagos,₦,"7,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Large Parcel Of Land. The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Houses In Ikeja,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets +Commercial Building On 5 Floors Measuring 100 Square Meters Per Floor,Allen Avenue Ikeja Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +"Redevelopable Property Strategically Located Along Awolowo Way, Few Minutes Before Ikeja Bus Stop 671 Square Meters",Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"A Bay Warehouse And A Block Of 6 Flats. Land Size: 9,312 Sqm",D Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3750sqm Land Directly On Oba Akinjobi Way (high Density Area) With Gov.consent,",Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +The Property Is 6 Units Of 3 En Suite Bedroom Apartments With A Bq Each,Magodo Shangisha Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets +5 Bedrooms Duplex On 340sq Of Land,Magodo Shangisha Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq, Ikeja Gra Ikeja Lagos,₦,"59,200,000",0,0,0,3 beds,0 baths,0 Toilets +"5,000sqm Land",S Ikeja Gra Ikeja Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bay Warehouse At Oba Akran Ikeja,Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bed Fully Detached Duplex With Bq,Magodo Phase 2 Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +"Two Well Located Vacant Contiguous Properties, The First Is A Dilapidated Twin Duplex With Bq And The Other Is A Detached Bungalow. Each Sits On 1,200 M2 Land Directly On Ladipo Oluwole Street Off Adeniyi Jones Avenue",Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +9 Bedroom Fully Detached House With Swimming Pool Cinema And Gym,Ikeja Gra Ikeja Lagos,₦,"635,000,000",0,0,0,8 beds, baths, Toilets +"12,000 Square Meters (3 Acres)",Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,442sqm Plot On A Cool Close In An Estate",Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached With Bq At Ikeja,Awolowo Way Ikeja Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets +"Fenced Land Of About 1200 Square Meters For Sale At Arowojobe Estate, Also Known As Greenland Estate, Maryland.",Maryland Ikeja Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets +2 Units Of Newly Built Tasteful 5 Bedrooms Semi Detached Duplex With Bq,X Maryland Ikeja Lagos,₦,"89,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Acres Of Land On Lateef Jakande Road Agidingbi Ikeja* Is Available For Sale,Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxuriously Finished 6 Units Of 4 Bedroom Detached Duplexes Plus A Room Bq Each,Okupe Estate Maryland Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Redevelopable Mixed Development Property Is Available For Sale.off Salvation Road, Opebi Ikeja Lagos",Opebi Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets + 4 Bedroom Detached Houses In Ikeja,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets +Newly Built Luxuriously Finished 2 Units 4 Bedroom Semi Detached Duplexes + A Room B.q, Ikeja Gra Ikeja Lagos,₦,"598,000,000",0,0,0,4 beds,0 baths,0 Toilets +New 3 Bedroom Flat With Bq,Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached House With 3 Rooms Service Quarters On 1600 Square Meters Of Land,Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,5 beds, baths, Toilets +"1,250sqm On Joel Ogunaike Street Gra Ikeja",Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"4 Star Luxury Hotel Situated At, Ikeja, Lagos Nigeria.",Ikeja Lagos,$,"35,000,000",0,0,0, beds, baths, Toilets +33 Room Hotel Functional,Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"18,759.48 Square Meters Land",Ladipo Oluwole Street Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1800sqm Land With Building On It At Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"A Massive Commercial Building Of 8 Floors Strategically Located On *allen Avenue, Ikeja*. Property Has Ample Parking Space And Adequate Security.",Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0,8 beds, baths, Toilets +111 Room Fully Functional Hotel On 4000sqm,Allen Avenue Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +"Office Complex On Three Floors On About 780sqm Land With Ampleparking Space At Mobolaji Bank Anthony Way, Maryland",Mobolaji Bank Anthony Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +"Hotel"" Comprising Of 57 Bedrooms Hotel, With 30 Seater Restaurant, Expansive Lounging Area, 150 Seater Conference Hall, Swimming And Gym",Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 6 Bedroom Detach Duplex In Isheri Magodo*40kva Generator.,Magodo Isheri Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds, baths, Toilets +"Industrial Property On 4.6 Acres Nested Within Ikeja Industrial Area, 18.759.48sqm (over 4.6 Acres Of Land)",Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +"Warehouses With Offices On 7½ Acres Of Land (30,048m2)with C Of O",Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Dry Corner Piece Bareland Measuring 12000 Square Meters (3 Acres) Along The Ever Busy Oba Akran Avenue, Ikeja Lagos.",Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Industrial Property On 4.6 Acres 18.759.48sqm (over 4.6 Acres Of Land),Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +"Industrial Warehouse, 6 Nos Of 3bedroom Flat, Factory Shed, Store House, Generator House, Canteen/convenient Building And 2 Nos 3bedroom Semi Detached Bungalows On 9,000sqm. C Of O",Kudirat Abiola Way Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxuriously Finished 6 Units Of 4 Bedroom Detached Duplexes Plus A Room Bq Each, Maryland Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Mansion With 1 Room Bq With An Olympic Sized Swimming Pool And 4 Units Of 3 Bedroom Flat On 1860sqm Of Land Location:herbert Macaulay Street,ikeja G.r.a",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,6 beds, baths, Toilets +"A Commercial Building On 3 Floors With Total Land Area Of 600sqm At Adebayo Akannde Street Off Kudirat Abiola Way And Off Billings Way, Oregun",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +3 Bay Warehouse At Ikeja Oba Akran,Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex On 3floors + Bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"99,500,000",0,0,0,4 beds,0 baths,0 Toilets +5 Units Of 3 Bedroom Flat In A Good And Gated Street In Oregun Ikeja Is Out For Sale,Oregun Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +"Massive 6 Bedrooms Fully Detached Houseland Measuring 1,200 Square Metres",Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Block Of 4 Nos Of 3b/r Flats,Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +A Redevelopable Mixed Development Property Is Available For Sale.,Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds, baths, Toilets +3 Bedroom New Terrace,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets +Fully Detached Duplex With Bq And 5 Bedroom At Ikeja,Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Penthouse And 1 Bq,Ikeja Gra Ikeja Lagos,₦,"148,500,000",0,0,0,4 beds,0 baths,0 Toilets +816sqm Mixed Use Land With Old Building On It,Ikeja Gra Ikeja Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +Tastefully Built* And *spacious* 4 Bedroom Semi Detached Duplex At Magodo Phase One,Magodo Phase 1 Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +"Newly Built 4nos 4bedroom Terrace Houses With An Ample Parking Space, Pop Finishes And All Ensuite Spacious Rooms.",Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +2 Acres Directly On Oregun Road.title: Registered Conveyance.,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +7 Nos. 3 Bedroom Flats,Allen Avenue Ikeja Lagos,₦,"248,000,000",0,0,0,0 beds,0 baths,0 Toilets +7bedroom Fully Detached Duplex + 2 Rooms Bq On 792.609sqm Land,Harmony Enclave Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,0 baths,0 Toilets +"Brand New Luxuriously Finished 4 Units Of 4 Bedroom Triplex With Ample Parking Space In Anthony, Maryland, Lagos",Anthony Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"138,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Gym & Pool In Magodo Shangisha On 487sqm. At Magodo Shangisha,Magodo Shangisha Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets +Blocks Of 3 Bedroom Flat With A Bq, Ikeja Gra Ikeja Lagos,₦,"89,000,000",0,0,0,3 beds,0 baths,0 Toilets +"32 Units Of 4 Bedroom And 1 Room Bq Luxury Terrace Houses, Ante Room, Massive Family Living Room, Generous Kitchen And Palatial Master Bedroom And Rooms On 6300sqm",G Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Plots With C Of O At Ooebi Ikeja,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +"Super Luxury Massive 7 Bedroom Detached Smart House With 4 Sitting Rooms And Underground Swimming,2 Room Bq And Spacious Parking Lot", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +"A Fenced And Gated 2.6 Acres (approximately 9,000sqm) Land Along The Ever Busy Kudirat Abiola Way (oregun Road), Ikeja Lagos Nigeria.",Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Commercial Building,Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Industrial Warehouses. With Office On 14,acres Of Land (56,035m2) On *acme Road",Acme Road Ikeja Lagos,₦,"7,800,000,000",0,0,0, beds, baths, Toilets +A Massive Commercial Building Of 8 Floors Strategically Located,R Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,442sqm Plot On A Cool Close In An Estate",Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"An Office Complex On Four Floors With A Pent House At Anifowose, Off Awolowo Way, Ikeja, Lagos",Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +"A Large Parcel Of Land . The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Magodo Shangisha Ikeja Lagos,₦,"184,000,000",0,0,0,5 beds, baths, Toilets +2 Units Of Newly Built And Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached House With 2 Rooms Service Quarters. Land Size: 610 Square Meters,Opebi Ikeja Lagos,₦,"94,000,000",0,0,0,5 beds, baths, Toilets +"Warehouses With Offices On 7½ Acres Of Land (30,048m2)with C Of O",E Oba Akran Ikeja Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Magodo Phase 2 Shangisha Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Bareland Measuring 18,275.809sqm (price Per Sqm)",Ajao Estate Road Ikeja Lagos,₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,Ikeja Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex Plus Boys Quarter @ Magodo 2 3 Units Available,Magodo Phase 2 Ikeja Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets +10000sqm Land Along Billings Way,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +3 Acres Location. Oba Akran Title Cofo,Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +500 Sqm At Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +"(24) Units Of Apartments, Which Comprises Six (6) Units Of Three (3) Bedroom Apartments With A Room Bq (each) Per Block (four Blocks In Total).",Ajao Estate Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Redevelopable Property On 994square Meter Land.,Ogunlana Street Allen Avenue Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +"Bare Land Measuring 1,200sqm (fenced) In A Secured Gated Estate",Joel Ogunaike Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"445,000,000",0,0,0, beds, baths, Toilets +"2 Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs, Swimming Pool, Remote Gate, Etc.",Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +"New 4 Bedroom Townhouse With A Room Bq.location: , Ikeja Gra.",Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +"Lovely 4 Bedrooms Fully Detached Duplex With A Room Bq Is Located In A Very Secured Estate And Features Spacious Compound, Stamped Concrete Floor, Spacious Living Room And Family Lounge, Dining Area, All Rooms En Suite, Fully Fitted Kitchen, Spacious Mast",Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +900sqm Land With Detached House On It,Shonibare Estate Maryland Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10 Luxury Homes Made Up Of Maisonettes, Apartments And Penthouses",Shonibare Estate Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +1200sqm Fenced Land For Sale At Arowojobe Estate (greenland Estate) Maryland*,Maryland Ikeja Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets +4 Nos Of 3 Bedroom Duplex Semi Detached House. Can Park 3 Cars Each. Off Salvation Road Opebi 90% Remaining Sanitary Wares & Compound Flooring.,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Four Units Of Tastefully Finished 4 Bedroom Terraces With Modern Fittings At Ikeja,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +"*5 Bedroom Detached Duplex With Swimming Pool And Cinema, Study And Box Room For Sale In Omole Phase 1 Ikeja*",Omole Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Luxury Maisonette, Ikeja Gra Ikeja Lagos,₦,"81,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4 Bays Warehouses, 3 Floors Residential Block, Gate House And Generator House On 6,639sqm",Ikeja Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Industrial Property On 2 Acres,Ebutte Metta Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bay Warehouses, Office/admin Building, Stores, Workshop, Gatehouse/reception, Drivers Lodge, Changing Rooms, Conveniences, Generator Houses And Other Ancillary Buildings.","Off Ladipo Oluwole Street, Off Oba Akran / Adeniyi Jones, Ikeja Oba Akran Ikeja Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Semi Detached House With Bq,Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +"An Office Complex On Five Floors And A Penthouse With Dedicated Transformer, Elevator, Generating Sets, Ample Parking Space Etc.",Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Hotel For Sale At Ikeja 5 Star Quality,Alausa Ikeja Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +Tastefully Built* And *spacious* 4 Bedroom Semi Detached Duplex At Magodo Phase One,Magodo Phase 1 Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +"Hotel In Ikeja 111 Room On 4,000+ Sqm Pric",Ikeja Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets +Four Units Of Tastefully Finished 4 Bedroom Terraces With Modern Fittings At Ikeja,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +9 Bedrooms Detached House, Ikeja Gra Ikeja Lagos,₦,"640,000,000",0,0,0,9 beds,0 baths,0 Toilets +"3 Bay Warehouses, Office/admin Building, Stores, Workshop, Gatehouse/reception, Drivers Lodge, Changing Rooms,18,759.48 Square Meters Land.","Off Ladipo Oluwole Street, Off Oba Akran / Adeniyi Jones, Ikeja Lagos Ikeja Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets +"Event Center That Can Seat 800 People With Offices And Extra Mini Hall On 2,000sqm With Ample Parking Space That Can Park 40 Cars",Ikeja Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, And All Sitting On 2225.265sqm Land Area.",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bed Semi Detached Duplex,Maryland Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +"A Massive Commercial Building Of 8 Floors Strategically Located On *allen Avenue, Ikeja*. Property Has Ample Parking Space And Adequate Security.",Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0,8 beds, baths, Toilets +"Two (2) Numbers 4 Bedroom Fully Detached Smart Home Duplexes With Bqs, Swimming Pool, Remote Gate,",S Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bed Semi Detached Duplex,Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds, baths, Toilets +"Land Area Of Approximately 20,760 Square Metres Industrial Land With Sundry Developments",Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +2250 Square Meters (more On Ground) Commercial Property Suitable & Ideal For A Resort,Magodo Phase 2 Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With Bq,Maryland Ikeja Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets +Storey Building At A Strategic Location( Suitable For Commercial Purposes),Computer Village Ikeja Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"17,000sqm (5acres)",Adeniyi Jones Ikeja Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +Redevelopable Detached Property Sitting On 3000 Square Meters Land In A Prime Area Off Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +4000sqm Commercial Land In The Heart Of The Central Business District Alausa,Alausa Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Brand New 3 Bedroom Flat,Opebi Ikeja Lagos,₦,"53,000,000",0,0,0,3 beds, baths, Toilets +2 Wings 5bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Land Measuring *5400sqm Corner (piece Land) On Awolowo Way Ikeja, Opposite Airport Hotel Ikeja* Is Available For Sale",Awolowo Way Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Prime Land 1000sqm At Lateef Jakande Ikeja,Lateef Jakande Omole Land Agidingbi Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +A Newly Built 5bedm Fully Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +"One Acre Maryland, Ikeja, Lagos.few Mins Away From Muritala Muhammad International Airport.",Maryland Ikeja Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +"Very Big Detached Duplex Of Land Size: 1080 Square Meters 6 Bedroom And 2 Units Of 2 Bedroom Apartments (bq) Behind With Swimming Pool, Ample Parking, Gatehouse, Etc.",Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets +".superb Finished 5 Bedroom Detached Luxury House With 2 Room Bq On 1,000m2 Land",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds, baths, Toilets +2units Of 5bedroom Semi Detached Duplexes And A Fully Detached 5bedroom Duplex Can Park 9 Cars,Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets +A 1000sqm Land With A Demolish Able Structure,S Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"20,000 Sqm Land",Ajao Road Adeniyi Jones Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached House With 2 Sitting Rooms (all Rooms En Suite) With An Open Terrace Up With A Room Bq Sitting On 1500m2 Land,D Adeniyi Jones Ikeja Lagos,₦,"295,000,000",0,0,0,7 beds,0 baths,0 Toilets +610 Square Meters5 Bedrooms Detached House With 2 Rooms Service Quarters.,Opebi Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Redevelopable Mixed Development Property With A Land Size Of 601.751 Square Meters, Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Super Luxury Massive 7 Bedroom Detached Smart House With 4 Sitting Rooms And Underground Swimming,2 Room Bq And Spacious Parking Lot", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +"A Large Parcel Of Land. The Land Is Measuring 100,079.24 Square Meters With Lagos State Certificate Of Occupancy As Title Documents.", Adeniyi Jones Ikeja Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace In A Mini Serviced Estate,Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +"A Very Big Detached Duplex On 1080sqm Land Of 6 Bedroom And 2 Units Of 2 Bedroom Apartments (bq) Behind With Swimming Pool, Ample Parking, Gatehouse, Etc",Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex Plus Gatehouse. This Property Is Sitting On A Land Measuring 908 Square Meters With A Registered Conveyance As Title Documents. Property Is Located Slightly,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"2 Wings Of 4 Floor Building With Tennated Flats, Offices, Boys Quaters And Other Structures. Land Space : 1,698.388sq.m",Allen Avenue Ikeja Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +"7 Bays Empty Warehouses Approximately 9000 Square Meters With Admini Blocks Suitable For Redevelopment To Shopping Mall, Event Center, Corporate Headquarters, Church.",Kudirat Abiola Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +"Office Complex On 4floors (open Plan Floor) Off Kudirat Abiola Way, Oregun.",Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Fully Functional 32 Room Hotel On 2000sqm In Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,10 beds, baths, Toilets +"Office Building On 5 Floors With Each Floor Having 1000sqm Open Plan Each, Is Available For Sale. Land Size: 2225.265 Square Meters",Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"New Mini Estate Of Eight(8) Units Of 5bedroom Fully Detached Duplex Plus Bq On Two Floors Each Duplex Contains Five Bedrooms, Two Living Rooms, One Study And A Bq* There Is Also A Swimming Pool And A Gym*",Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,5 beds, baths, Toilets +1800sqm Land With Building On It On Herbert Macaulay Street Gra Ikeja Gated And Secured Street In Gra,Ikeja Gra Ikeja Lagos,₦,"635,000,000",0,0,0, beds, baths, Toilets +Office Block On 10 Floors With Pent House,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets +"3 Bay Warehouse Of 15000 Sq Ft Per Bay Making 45,000 Sq Ft Rental Space On 2 Acres",Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Functional 58 Room Hotel On Cornerpice Land Bordering 3 Streets On 2400sqm Land,Toyin Street Ikeja Lagos,₦,"800,000,000",0,0,0,10 beds, baths, Toilets +"Office Complex On 4floors (open Plan Floor) Off Kudirat Abiola Way, Oregun.",Oregun Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Hotel In Ikeja 111 Room On 4,000+ Sqm Pric",Ikeja Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets +"(24) Units Of Apartments, Which Comprises Six (6) Units Of Three (3) Bedroom Apartments With A Room Bq (each) Per Block (four Blocks In Total).",Ajao Estate Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Redevelopable Detached Property Sitting On 3000 Square Meters Land In A Prime Area Off Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +"A Fully Detached Commercial Property Along Awolowo Way, Ikeja Lagos. Size: 671 Square Meters Land.",Ikeja Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +School,S Ikeja Lagos,₦,"980,000,000",0,0,0, beds, baths, Toilets +Commercial Property At Osolo Way Ajao Estate Tittle Deed Of Conver,Osolo Ajao Estate Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Commercial Property At Osolo Way Ajao Estate Tittle Deed Of Conver,Osolo Ajao Estate Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +2000sqm Demolishable 2units Of 3bedroom Semi Detached Bungalow With Bq Each Sitting On A Large Expanse Of Land,Ikeja Gra Ikeja Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"157,000,000",0,0,0,4 beds, baths, Toilets +Approximately 9000 Square Meters. 7 Bays Empty Warehouses With Administrative Blocks,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Magnificently Finished & Large 5 Bedroom Fully Detached Duplex With Bq Within An Exclusive Estate,0 Opebi Ikeja Lagos,₦,"100,010,000",0,0,0,5 beds,0 baths,0 Toilets +"Block Of 6 Flats On 1,000sqm Land For Sale In Magodo Phase 2, Lagos",Omole Phase 2 Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"Ikeja Prime Land 18,300sqm (5acres)",D Adeniyi Jones Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flats With A Room Service Quarters Each.,Oregun Ikeja Lagos,₦,"49,000,000",0,1,0,3 beds, baths, Toilets +"Prime Fenced And Gated Bare Land Land Size: 3,118.813 Sqm",Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House Sitting On 1400 Sqm Off Opebi Road,Opebi Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semidetached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"124,500,000",0,0,0,5 beds, baths, Toilets + 7 Bedrooms Including 2 Master Bedrooms Underground Car Park Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"715,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Brand New Mansion With Swimming Pool On 900sqm,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,7 beds, baths, Toilets +3 Bay Warehouse 15000sqft Each,Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Semi Detached Duplex With Standard Modern Facilities,Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Twin Duplex At Adeboye Solanke Street, Off Allen Avenue With Bq And Registered Conveyance",Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"Dry Corner Piece Bareland Measuring 12000 Square Meters (3 Acres) Along The Ever Busy Oba Akran Avenue, Ikeja Lagos.",Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Vacant And Massive Strategically Located Property Sitting In The Heart Of Adeniyi Jones Avenue, Ikeja Lagos. This Property Comprises Over 20 Apartments And Duplexes (old Buildings). Land Size: 16,000 Square Meters",Adeniyi Jones Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1000sqm With A Small Bungalow., Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +908 Square Meters Old/demolishable Commercial Property Comprising 1 Unit Of 5 Bedroom Duplex With Bq And 2 Units Of 4 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +9 Acres Of Land Off Oba Akran Ikeja Lagos..,Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Finished Four Bedroom Detached Town House With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq Built 2 Floors Above Ground Is Selling. (last Unit),Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds, baths, Toilets +Two Blocks Of 7 Nos Of 3 Bedroom Flat Each Making 14 Flats In All(fully Furnished) With Generator,Ajao Estate Ikeja Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Elegant 5 Bedrooms Detached House + Bq,Ikeja Gra Ikeja Lagos,₦,"220,000,000/sqm",0,1,0,5 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +900 Sqm2 Empty Plot Of Land,"Agidingi, Alausa Ikeja Alausa Ikeja Lagos",₦,"250,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished Five Bedrooms Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished Five Bedrooms Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of Five Bedroom Fully Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5 Bedroom Duplex With Bq,Adeboye Sholanke Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Condo Duplex Available,Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets +Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2009 Hawker 900xp Jet,Ikeja Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +It's A Solid Sand Filled Land Measuring 600sqm ****,Z Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedrooms Terrace Apartments At Glorious Ville Courts Situated In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets +Land For Sale At Magodo Gra Phase 2,Magodo Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House Plus Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fenced And Gated Land,Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Buildings,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,0,4 beds, baths, Toilets +5bedroom Fully Detached Duplex Plus Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Orimolade Estate, Akora Villa Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land Is Available F,Ado Odo Street Off Ogunsholu Street Mangoro Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Nos 1000 Sq. Metres,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"150,000,000/sqm",0,0,0, beds, baths, Toilets +"6 Bedroom Fully Detached Duplex, For Sale/lease With 4 Mini Flats And A Self Contain",Aina Ajobo Ogba Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets +Hotel,Toyin Street Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Omole Phase One Agidingbi Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Available Lands,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 2 Wings Of 2 Storey Building,Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"32room Hotel In Gra Ikeja With Hall,gym, Pool, Lounges,bars And 5 Office Rooms. Land Size 4000m2",X Ikeja Gra Ikeja Lagos,₦,"3,300,000,000,000",0,0,1,10 beds,10 baths,10 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Property On 1200sqm,Harmony Enclave Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Commercial Property,S Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1400sqm Land For Jv,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +945sqm Of Land,Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3300sqm Land With Demolisbale Structure,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Empty Land Of 650sqm At Omole Phase2,Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +4br Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Joint [email protected] Awuse Estate Opebi,ikeja Lagos,",Awuse Estate Opebi Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Available Land,Oba Ladejobi Street Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Redevelopable Duplex With Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +Available Lands,Ikeja Gra Ikeja Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands,Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land On Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Available Lands,Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategic Commercial 5 Floors Building,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300sqm Land,Oba Akran Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Vacant Gated And Fenced Land,Maryland Opebi Ikeja Lagos,₦,"32,000,000",0,0,0,1 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ayoola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +2500sqm Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Land,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,616 Sqm Strategic And Perfect Squared Land",Ariobodun's Street Ikeja Gra Ikeja Lagos,₦,"877,040,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Mobolaji Bank Anthony Way Ikeja,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Available Land With Structure,Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bay Warehouse,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse,"Acme Avenue, Agidingbi Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4bedroom Terrace Duplex + Bq,Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +800sqm Land,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Joint Venture In Awuse Estate, Opebi, Ikeja, Lagos.",Awuse Estate. Opebi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex,Off Awolowo Way Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Building Leasing/1,740 Sqm Directly On Oduduwa Way, Gra Ikeja",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +550 Sqm Land Off Oba Dosumu Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Available Lands (various Sizes),Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Best Western Hotel,Allen Avenue Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Of 650sqm At Omole Phase2,... Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Room Hotel,Ikeja Gra Ikeja Lagos,₦,"2,300,000",0,0,0,0 beds,0 baths,0 Toilets +Large Portion Of Land,Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4br Terrace Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,0,0,4 beds,5 baths,5 Toilets +"Superb Bare Land Measuring 1,200sqm In Gra Ikeja",Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Top Notch Lands In Easton Tower Estate, Maryland, Opebi Ikeja",Maryland Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +12000sqm Bare Land(3 Acres),Along Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Available Land,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Detached With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Northbrooks...be Home,Ikeja Lagos,₦,"3,500,000",1,0,0, beds, baths, Toilets +1no 4br Flat With 4nos 2bedroom Flat,Oregun Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Units 4 Bedroom Detached Duplex With Bq,Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +550 Sqm On Oduduwa Street Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Vacant Bungalow On 1300 Sqm Land,Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +26 Rooms Commercial Tenement Building,Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Executive New 6 Bedroom Duplex,",Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,0 baths,0 Toilets +Available Lands (various Sizes),Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Sophisticated Lagos Based Hotel,Gra Allen Avenue Ikeja Lagos,₦,"7,000,000,000",0,0,1,10 beds,10 baths,10 Toilets +Joint Venture Land,Adeniyi Jones Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Building On 734sqm,Awolowo Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Available Lands (various Prices),Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Flat,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +Joint Venture At Shonibare Estate,Shonibare Estate Maryland Ikeja Lagos,₦,"935,000,000",0,0,0, beds, baths, Toilets +Storey Building Of 17 Rooms Tenement Building,Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land With Structure,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikeja Gra Ikeja Lagos,₦,"135,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land Within Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4189.29sqm With Building Approval,Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +2 Blocks Of 4 Units 3 Bedroom Flat,"Hakeem Balogun Street, Alausa Ikeja Lagos",₦,"190,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Bungalow Commercial Property,Obafemi Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Strategic Commercial 5 Floors Building Embodies A Massive Space Of 10 Units Open Spaces Of Offices,Tokunbo Alli Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,0 baths,0 Toilets +A Very Clean And Spacious Luxury 4 Bedrooms Fully Detached Duplex With 2 Rooms Servant Quarters,D Ikeja Gra Ikeja Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished And Massive Five Bedroom Detached Duplex With Bq,Omole Phase 1 Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,1,0,6 beds,7 baths,7 Toilets +Almost New Massive All Rooms Ensuite 7bedrooms Detached House,Adeniyi Jones Ikeja Lagos,₦,"310,000,000",0,1,0,7 beds,9 baths,9 Toilets +Demolishable Shanties,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Opebi Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akran Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,E Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress 4 Bedroom Detached Mansion,Off Salvation In Fern Valley Estate Opebi Ikeja Lagos,₦,"127,000,000",0,0,1,4 beds,5 baths,6 Toilets +"Magnificently Finished And Large 5bedroom Duplex With 1 Guest Toilet Jacuzzi Within An Exclusive Estate In Opebi,ikeja,",Opebi Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment + Bq In A Serene Environment,Unity Road Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment In A Serene Environment,Unity Road Ikeja Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +30 Bedroom Hotel On 5 Floors In The Heart Of Allen Avenue Ikeja,Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +8 Bedroom Duplex + 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,9 Toilets +4 Bedrooms Detached Duplex. Newly Built,Estate Opebi Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds, baths,5 Toilets +"Fully Detached 6 Bedroom Duplex With A Room, Massive Compound ,up To Two Floors , Security Post In An Estate Adeniyi Jones . 140m",Adeniyi Jones Estate Ikeja Lagos,₦,"140,000,000/sqm",0,1,0,6 beds,4 baths,4 Toilets +5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedrooms Flat. Under Construction.,Gated Neighborhood Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex + Bq,Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedrooms Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +25 Rooms Hotel,Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,1,10 beds, baths, Toilets +3 Numbers Of 4 Bedrooms Condo Duplex With A Room Bq On 400 Sq Meters Of Land,Opebi Ikeja Lagos,₦,"90,000,000/sqm",0,0,0,4 beds,3 baths,4 Toilets +2 Unit Of 4 Bedroom Duplex + Bq,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets +2 Bedrooms Flat. Newly Built,Street Unity Road Ikeja Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,2 Toilets +Newly Built 5bedroom Fully Detached Duplex,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex Newly Built,Estate Opebi Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +9 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets +"4 Bedrooms. Duplex, Condo. Newly Built",Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex + Flats,Toyin Street Ikeja Lagos,₦,"200,000,000",0,0,1,6 beds,7 baths,7 Toilets +Land,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Full Plot Of Land At Cocosheen Street Off Ogunmodede Street Off Allen Bus Stop Ikeja.,Cocosheen Street Off Ogunmodede Street Off Allen Bus Stop Ikeja. Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akran Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxurious & Tastefully Finish 7 Units Of 3 Bedroom Flats With A Room Bq,"Off Issac John Street, Off Joel Ogunaike Street Gra Ikeja Lagos",₦,"616,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4bed Terrace Houses Plus A Rm Bq & 2 Units Of 4bed Penthouse With 2rms Bq,Oba Ladejobi St Off Joel Ogunnike Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"185,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq,Allen Avenue Ikeja Lagos,₦,"135,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom With Bq Terrace Apartments,Rev Ogunbiyi Street Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Jv Deal Mobilaji Bank Anthony Way,Mobilaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Building. Good For Commercial Use, Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +"9,000 Square Meter Warehouse",Acme Industrial Road Ikeja Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Nos Of 5 Bedroom Triplex All Room En Suite 1sitting Room On Each Floor,Omolade Okoya Estate Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +Jv Of 1000sqm Corner Piece Land Off Allen Ikeja,Off Allen Allen Avenue Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: A 5bedroom Semi Duplex With Mini Flat Bq, The Compound Can Park Up To 6cars Off Aba Akran Avenue Ikeja",Off Oba Akran Oba Akran Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Multipurpose Hall Or Church Use Space On 2,800 Sqm Land With Ample Parking Available For Sale",Adeniyi Jones Ikeja Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets +Available Land,Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets +Land,Oba Akinjobi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Terraced Duplexes With Bq,Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury Hotel,Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akran Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built To Taste Luxury 4bedroom Spacious Terrace Duplex With A Bq,Secured Estate Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex In Ikeja G R A,E Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Units Of 5 Bedroom Detached Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terraced Duplexes Sale,Off Salvation Street Opebi Ikeja Lagos,₦,"85,000,000",1,1,0, beds, baths, Toilets +Ikeja Duplexes Sales,Allen Avenue Ikeja Lagos,₦,"1,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Terraced Duplex With A Maids Room,Salvation Road Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,7 baths,7 Toilets +Fairly Used 12 Units Of 3 Bedroom Flats .,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 9 Bedroom Mansion,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,9 beds,9 baths,10 Toilets +Land,By Opebi/oregun Link Road Oregun Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +An Office Complex On Three On Three Floors On About780sqm Land With Ample Parking Space,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"280,000,000/day",1,0,0, beds, baths,10 Toilets +Land,"At Osho Street, Opebi Ikeja Lagos",₦,"40,000,000/day",0,0,0, beds, baths, Toilets +Land,Opebi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"An Office Complex On Five Floors And A Penthouse With Dedicated Transformer, Elevator, Generating Sets, Ample Parking Space, Etc.",Allen Avenue Allen Avenue Ikeja Lagos,₦,"600,000,000/day",1,0,0, beds, baths,10 Toilets +Two Units Of Three Bedroom Terraces With A Room Boys Quarter Each,Adegbeyemi Street Allen Avenue Ikeja Lagos,₦,"75,000,000/day",0,1,0,3 beds,3 baths,4 Toilets +5 Floors Office Building,Toyin Street Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedrooms Detached Duplex (all Ensuite),Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Estate Land,Ikeja Lagos,₦,"2,700,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property Of Offices.,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached Duplex With A Room Bq, Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Floors Office Building,Agidingbi Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 6 Bedrooms Detached Duplex With A Room, Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets +Knightsbridge Hotel Situated On 4 Plots, Toyin Street Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 12 Units Of 3 Bedrooms,Oregun Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedrooms Detached Duplex With A Room Bq,"Off Oduduwa Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Semi Detached Duplex With A Penthouse & A Bq, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Building,Adeniyi Jones Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Units Of 4 Bedrooms Bungalows On 3,300m2.",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With 1 Room Bq, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5 Bedroom Fully Detached Duplex With A Room Bq And A Gate House In A Lovely And Secured Close In Ikeja Gra,",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 1room Bq 120 Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Uncompleted Building Located In The Heart Of Ikeja Business Central District. Governor's Consent,Oba Akran Oba Akran Ikeja Lagos,₦,"200,000,000/sqm",0,1,0,0 beds,0 baths,0 Toilets +An Uncompleted Building Located In The Heart Of Ikeja Business Central District. Governor's Consent,Oba Akran Oba Akran Ikeja Lagos,₦,"200,000,000/sqm",0,1,0,0 beds,0 baths,0 Toilets +Dry Plots Of Land,Opebi Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +A Corner Piece Of Land Measuring 1400sqm,"Oba Akinjobi Street, Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Alausa Ikeja Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Corner Piece House On About 2000sqmtrs Land,"Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Plots Of Land,Opebi Ikeja Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With A Room Bq,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5br Fully Detached Duplexes,Ikeja Gra Ikeja Lagos,₦,"350,000,000/month",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fully Furnished 5bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"102,000,000",0,1,1,5 beds,5 baths,6 Toilets +Very Neat 7bedroom Fully Detached Duplex,Onipetesi Mangoro Ikeja Lagos,₦,"75,000,000/year",0,0,0,7 beds,7 baths,8 Toilets +Brand New 4 Bedroom Terrace Duplex,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +Luxury 40units 3bedrooms Terrace,Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets +Brand New Block Of Flats,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5units Of 5bedroom Terraced Duplex With A Bq,By Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Modern 4 Bedroom Duplex With 2numbers Of 3bedroom Flats,Oregun Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Detached House + 8 Numbers Office Annex,Along Salvation Road Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +1400sqm Cornerpiece Property Off Opebi Road With Old Duplex,Cornerpiece Property Off Opebi Road Opebi Ikeja Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets +"Buy Easton Towers Opebi, Ikeja And Win Free Ticket To Zanzibar For 2",Behind Sheraton Hotel Opebi Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +"Easton Towers Opebi, Ikeja.",Behind Sheraton Hotel Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Standard 8 Units Of 3 Bedroom Flat,Z Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Very Lovely 3 Bedroom Duplex,Off Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Exquisite 4 Bedroom Fully Detached Duplex Available For Sale At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",1,0,0,4 beds, baths, Toilets +Lovely 4 Bedroom Detached Duplex With Boy's Quarter,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Full Plot Of Land,A Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex With Boy's Quarter,Z Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Well Built 4 Bedroom Terraced Duplex With Boysquarter Available For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,$,"120,000,000",0,0,0,4 beds, baths, Toilets +One Acre (6 Plots) Of Land,Along Muritala Mohammed Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Unit Of 4 Bedroom Semi Detached Duplex With Boy's Quarter, Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Brand New 5 Bedroom Detached Duplex Available For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Very Decent 6 Units Of 3 Bedroom Flats With Boys' Quarter,Alausa Ikeja Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets +Nice 4 Units Of 3 Bedroom Flats,Z Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Boy's Quarter,Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Storey Office Building,Irewole Avenue Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +6 Numbers Of 2 Bedroom Flat With 2 Nos Mini Flat,Olu Adetunji Close Off Haruna Bus Stop Opebi Ikeja Lagos,₦,"50,000,000",0,0,1,2 beds,2 baths,2 Toilets +Unlock Luxury In The Heart Of Ikeja Gra,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"58,990,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Unlock Luxury In The Heart Of Ikeja Gra,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"58,990,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Duplex With 1room,Opebi Ikeja Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Omole Phase 2 Ikeja Lagos,₦,"56,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Duplex With 2nos Of 3bedroom Flats,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Bungalow On 1,500 Square Meters Land", Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets +9 Bedroom Mansion Available For Sale Or Lease,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,9 beds,9 baths,9 Toilets +"2,000 Square Meter Land Available For Sale",Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"9,000 Square Meter Warehouse",Acme Industrial Road Ikeja Agidingbi Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq Available For Sale,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,4 Toilets +Studio Apartment (room + Living Room + 2 Toilets + 1 Bathroom A Bq),Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment + Bq,Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq Y,Magodo Shagisha Ikeja Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,5 Toilets +Newly Built 6 Bedroom Detached Duplex With A Bq,Omole Phase 1 Ikeja Lagos,₦,"180,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets +1 Unit 4 Bedroom 2 Storey Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex In A Serene Environment,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets +2 Storey Duplex In A Secured Estate,In An Estate Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,6 beds,5 baths,6 Toilets +"5 Bedroom Detached Duplex, Off Allen Avenue",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,6 Toilets +5 Bedroom Detached Duplex With A Mini Flat,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Duplex With 1rm Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",1,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedroom With 1rm Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Storey 4 Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex Off Awolowo Way,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Hotel,Off Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,1,10 beds,10 baths,10 Toilets +Tastefully Finished 4bedroom Duplex In A Very Beautiful And Serene Neighborhood,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex In An Estate,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Storey 6 Bedroom Duplex In A Serene Estate,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"138,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Duplex In An Estate,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Property,Alli Balogun Str Adeniyi Jones Ikeja Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale In Ikeja Gra: 4 Bedrooms Terrace Duplex With A Room B.q,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths, Toilets +Detached House On Approximately 3000sqm,Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fresh 5 Bedroom Semi Detached Duplex Available, Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Very Clean 5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Good 4 Units Of 3 Bedroom Flat,"Oke Oriya, Aruna Bus Stop Ikeja Lagos",₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely 6 Units Of 2 Bedroom Flat, Ikeja Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built Luxury Finished 5bed Room (semi Detached Self Compound) + Bq Each.,Off Adeniyi Jone Ikeja. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,6 baths,6 Toilets +Newly Built Luxury Finished 5bed Room (semi Detached Self Compound) + Bq Each.,Off Adeniyi Jone Ikeja. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Full Detached Duplex On 300sqm Of Land,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Full Detached Duplex On 300sqm Of Land,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex,Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,"Close To Rightgate Hotel, Oladosu St. Ikeja Toyin Street Ikeja Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +Semi Detached 4 Bedroom Flat Duplex,"Oduduwa Way, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Flat With Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace House,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +5100 Sqm With A Block Of 6 Numbers 3bedroom Flats On It,"Off Sasegbon Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"2,500,000,000",0,0,0,10 beds,0 baths,0 Toilets +4 Bedroom Duplex,Awolowo Way Ikeja Lagos,₦,"52,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedrooms Duplex With Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat,Oba Aladejobi St. Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,1,3 beds,3 baths,3 Toilets +"4.17 Acres Of Land, Former Alade Market","Alade Market, Allen, Ikeja. Allen Avenue Ikeja Lagos",₦,"5,000,000,000",0,0,0, beds, baths, Toilets +6.5 Acres Of Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land 3,700sqm Along Oba Akinjobi Way","Oba Akinjobi, Ikeja Gra. Ikeja Gra Ikeja Lagos",₦,"2,600,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With 1 Room Bq,"Off Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds, baths,5 Toilets +Four Bedroom Terrace Duplex At A Good Enviroment,"Off Awolowo Way, Ikeja, Lagos Awolowo Way Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat (crackers),2nd Round About Oba Akinjobi St. Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"61,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Units Of 5 Bedroom Duplex Flat With Bq.,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Flat With 2 Bq,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached House,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Numbers Of 3bedroom Flats On 350sqm With C Of O,Off Awolowoway Ikeja Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Terrace Duplex With Bq,"Alfred Garden Estate, Ikeja Ikeja Gra Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Flat Duplex With Swimming Pool,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom House,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Detached 4 Bedroom Flat Duplex,"Oduduwa Way, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Terrace Duplex In A Good Location At Ikeja,"Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets +Land In Commercial Area,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,"Omole Phase 2 Extension, Olowora Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Very Neat Twin Block Of 6nos 3bedroom Flats,Off Toyin Street Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Corner Piece Block Of 6 Nos 3bedroom Flats,"Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Fenced And Gated 250sqm In An Estate,Adeniyi Jones Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Newly Built Bedrooms Detached House With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets +5bedroom Detached Duplex With Bq In An Estate Adeniyi Jones Avenue Ikeja,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths, Toilets +4bedroom Detached Duplex +bq In An Estate,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Fenced 500sqm With Foundation On It. Cofo,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Unique 4 Bedroom Duplex For Rent At Opebi, Ikeja Lagos",Opebi Ikeja Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets +"Very Lovely 4 Bedroom Duplex Ikeja Gra, Lagos", Ikeja Gra Ikeja Lagos,₦,"120,000,000/sqm",0,0,0,4 beds,0 baths,0 Toilets +Very Lovely 4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Structured 4 Bedroom Detached Duplex,In An Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Over 4 Acres Of Land For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Brand New And Tasteful 5 Bedroom Twin Duplex Plus Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"187,000,000",0,0,0,5 beds, baths, Toilets +Very Lovely 3 Bedroom Semi Detached Duplex,Omole Phase 1 Gra Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Executively Structured 4 Bedroom Detached Duplex Plus Study Room, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Tastefully Structured 4 Bedroom Detached Duplex Plus A Room Bq For Sale Off Adeniyi Jones, Ikeja.",Off Akora Villa Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +"3 Bay Warehouse Each Consisting Of 15,000 Sq Ft With Office Space Totaling 45,000 Sq Ft On 2 Acres Of Land", Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb 4 Bedroom Semi Detached Duplex, Ikeja Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,0 baths,0 Toilets +Standard Self Contained,Anifowose Oba Akran Ikeja Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex Plus Bq With Security House, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Executively Structured 2 Wings Of 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious And Standard 4 Bedroom Detached Duplex, Opebi Ikeja Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built Fantastic 4 Nos Of 4 Bedroom Duplex,Awolowo Way Awolowo Way Ikeja Lagos,₦,"80,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +A Functional Steel Manufacturing Company Comprising Of 3 Bay Production Block,Oregun Industrial Area Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Bungalow,"4, Mende Street Maryland Ikeja Lagos",₦,"56,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Just Out At Akora Est Adeniyi Jones 4bedrm Detached Duplex With Bbq On 350sqm Land Fence And Gated,Akora Est Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds, baths, Toilets +Four (4) Bedroom Duplex,Opebi Ikeja Opebi Ikeja Lagos,₦,"47,000,000",0,0,1,4 beds,0 baths,0 Toilets +"6 Floor Commercial Building, Wt Pent House.",Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +5bedrooms Detached House Plus Bq On Fani Fayode Street Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,8 baths,8 Toilets +A Bare Land Located At Opebi/oregun Link Road,Opebi/oregun Link Road Opebi Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +A Building Comprising Of Various Shop Outlets And Car Lots Spots In A Commercial Area Of Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Adeniyi Jones Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets +Five Bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets +Four Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Duplex,Adelaja Street Magodo Residential Scheme 11.oq Allen Avenue Ikeja Lagos,₦,"100,000,000/year",0,1,1,4 beds,4 baths,4 Toilets +Commercial Property,Off Medical Road Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +600sqm Land With Structure On It At Anthony,Anthony Area Maryland Ikeja Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Detached Duplex With Attached 5 Room Bungalow Sitting On 2,000 Sq. Land. Deed Of Lease",Land Measuring About 2000 Sqmt Ikeja Gra Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional Steel Company,Oregun Industrial Estate Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"Ikeja, Opebi, Lagos. Opebi Ikeja Lagos",₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets +"1050sqm Mixed Used Land For Sale At Oregun, Ikeja With C Of O",Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +6 Units Of 3 Bedroom Flat With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,3 beds,0 baths,0 Toilets +2000sqm Land,Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"A Functional Steel Manufacturing Company Comprising Of 3bay Production Block, Office Block, Plants And Machinery. Land Size : 14,480sqm. Title: C Of O Price: N 7b",Oregun Industrial Area Oregun Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Olorunfunmi Estate Oregun Ikeja Lagos,₦,"27,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Duplex With A Room Boys Quarter,... Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Detached Duplex With 2 Bq,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,6 Toilets +5bedroom Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,7 Toilets +5bedroom Detached House In Adeniyi Jones. Title : C Of O. Land Size: 400sqm Price : N140m Agent Mike,. Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,7 Toilets +Landed Property,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,$,"1,300,000",0,0,0,10 beds, baths, Toilets +Fully Detached 5 Bedroom Duplex In A Quite Environment,Awuse Estate Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Storey Building,Lateef Jakande Way Agidingbi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets +Nice Building For Commercial Purpose,"Kodesoh Street,close To Computer Village Toyin Street Ikeja Lagos",₦,"300,000,000/sqm",0,0,1,10 beds,10 baths,0 Toilets +Well Maintained 2 Number Of 4 Bedroom Apartment, Opebi Ikeja Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,4 Toilets +Land For Sale With C Of O,Along Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"3,000,000,000",1,0,0, beds, baths, Toilets +Existing Office Complex,65 Allen Avenue Allen Avenue Ikeja Lagos,₦,"650,000,000",1,0,1, beds, baths, Toilets +4bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Eugbayi Street Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +9 Acres Of Land,"Niwil Close Off Oba Akran Avenue, Ikeja Oba Akran Ikeja Lagos",₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Massionettes With Bq,"Awuse Estate, Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Massionettes With Bq And Fitted Kitchen,"Awuse Estate, Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Units Of 4 Bedroom Terrace Duplexes At Opebi, Ikeja Lagos","Opebi, Ikeja, Lagos Opebi Ikeja Lagos",₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land, Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Triplex With Bq,Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds,5 baths,5 Toilets +5 Bedroom Triplex With Bq,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,5 Toilets +6 Bedroom Triplex At Gra Ikeja,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,6 beds,6 baths,6 Toilets +6 Bedroom Triplex At Gra Ikeja,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,6 beds,6 baths,6 Toilets +2 Plots Of Land,26 Akeem Balogun Off Agidigbin Ikeja Agidingbi Ikeja Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets +Nicely Structured 4 Bedroom Semi Detached Duplex, Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Standard 4 Units Of 4 Bedroom Terraced Duplex,Off Obafemi Awolowo Way Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Structured 4 Bedroom Terraced Duplex Plus Bq, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex Plus A 3 Bedroom Apartment Plus A 5 Bedroom Bungalow,Off Opebi Link Rd Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +"Hot Hot Hot... Landed Property Consisting Of 4 Bedroom Duplex With Basement, Plus A 3 Bedroom Apartment Plus A 5 Bedroom Bungalow On A Piece Of Land Measuring 857.58sq For Sale At Ikeja",Off Opebi Link Rd Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished 4 Bedroom Detached Duplex For Sale At Opebi. Ikeja,Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq (off Plan),"Alfred Court, Off Allen Avenue, Ikeja Allen Avenue Ikeja Lagos",₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Uncompleted Building With 6 Floors Approval,Off Awolowo Road Oba Akran Ikeja Lagos,₦,"200,000,000",1,1,1,10 beds,10 baths,10 Toilets +Plots Of Land,Off Awolowo Road Oba Akran Ikeja Lagos,₦,"450,000,000",0,0,1,10 beds,10 baths,10 Toilets +Hotel,... Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional Hospital With All Modern Equipment's On 2plots Of Land,Awolowo Way Ikeja Lagos Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +1200sqms Land With Aproval For Contruction,"Lopes Close,off Opebi,ikeja Opebi Ikeja Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3600sqms (1 Acres) Land,"Ajao Estate,international Airport,ikeja Airport Road(ikeja) Ikeja Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Setback Bungalow,"Opebi,ikeja,behind Tfc Opebi Ikeja Lagos",₦,"95,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxury 6units Of 6bedroom Mansionette On 3floors,Ikeja Lagos Ikeja Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,6 Toilets +7 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets +Land, Obafemi Awolowo Way Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +2 Acres Of Land, Agidingbi Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Muritala Muhammed International Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced House With Bq,Awuse Estate Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land, Agidingbi Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Land,Along Kodesoh Street Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +4 Units 3 Bedroom Flat,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +335sqm Of Land With A Structure To Lintel Level,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Duplex With Swimming Pool,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury And Very Clean 6br Duplex All Round Tiles, All Ensuite, Guest Toilet With Fitted Kitchen",Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,6 beds, baths, Toilets +A Mixed Development Land For Sale @adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +For Sale! Prime Office Block On 10 Floors With Penthouse,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detached* Houses For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,Magodo Gra Phase 2 Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +21 Rooms Hotel For Sale,Alausa Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Bq At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex With 2room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished 4 Units 4 Bedroom Detached House With Bq,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Flat,Queens Drive Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +40 Units Of Terrace Duplex With 4bedroom And A Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat At Alade Close,Alade Close Ikeja Lagos,₦,"80,000,000",0,0,0,12 beds,12 baths, Toilets +5 Bedroom Duplex At Bella Vista Court,Bella Vista Court Ikeja Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Two Wings Dipped Of Four Bedroom Each + Bq [new And Vacant], Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive 5bedrooms Detached Duplex For Sale At Ikeja Gra. (280m Asking),Ikeja Gra. Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Presidential 4 Bedroom Terrace Duplex,Ikeja Opebi Lagos. Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Omole Phase2 Ikeja Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +58 Rooms Hotel For Sale At Ikeja,Off Toyin Off Allen Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +"*3 Bedroom Apartment In Two Unique Locations On The Mainland Side Of Lagos* *location 1 Orchard Pace Shasha Akowonjo* Orchard Place, Shasha, Is A Beautiful Gated Community Of 72 Tastefully Built 3 Bedroom Apartment Units, Closely Linked To The Lagos S",Akowojo Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets +2600sqm Cornerpiece Bareland On Oduduwa Way For 300k Per Sqm 3600sqm On Sowemimo For 200k Per Sqm (2500sqm 3000sqm Possible) 1500sqm Cornerpiece Land On Oba Akinjobi For For 360m 7000sqm Cornerpiece Land On Harold Shodipo Crescent For 300k Per Sqm.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"This Is Inside An Estate In Off Adeniyi For Sale, 6,200sqm With Old 2wings 5bedroom Semi Detached Duplexs And Stand Alone 6bedroom Duplexs With Massive Ample Space In The Compound Fully Vacant Possessions Good For Real Estate Development Hospital ?? Head",Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000,000",0,0,0,5 beds, baths, Toilets +A 4flat Of 3bedroom At Williams Estate Ikeja Lagos State,William Estate Ikeja Lagos State Airport Road(ikeja) Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets +"5 Bedroom Duplex, All En Suite",Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,1,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,Off Toyin Toyin Street Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely Fully Detached 5 Bedrooms Duplex In Ikeja G R A With C Of O, Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets +2 Plots Of Land,26 Akeem Balogun Off Agidigbin Ikeja Agidingbi Ikeja Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets +Affordable Luxury 2 Bedroom Apartments With A Let To Own Scheme,"Salvation Road, After Wema Bank, Omega Courts Opebi Ikeja Lagos",₦,"28,000,000",1,1,1,2 beds,3 baths,3 Toilets +"Move In To An Affordable Luxury 4 Bedroom Apartments. Two Units Remaining, Pay Within (1 15) Years","Salvation Road, After Sheraton, Awuse Estate,omega Courts Opebi Ikeja Lagos",₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Get Your Keys To An Affordable Luxury 4 Bedroom Apartments. Two Units Remaining, Pay Within (1 15) Years","Salvation Road, Awuse Estate, After Sheraton Opebi Ikeja Lagos",₦,"42,000,000",1,1,1,4 beds,5 baths,5 Toilets +Brand New And Cute Two (2) Bedroom Bungalow,"Cocosheen Street, By Ikeja Medical Center Allen Avenue Ikeja Lagos",₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Detached Duplex And 4 Units Of Mini Flats,"Sasegbon Street, Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,Omole Phase 2 Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +23 Bedrooms Guest House,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land Measuring About 1000sm, Alausa Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Duplex Has A Unique Design And Detached, Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Block Of Flat On 2 Floors,"Shanu Street, Off Afariogun Street Awolowo Way Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,0 Toilets +Nicely Built 4 Bedroom Duplex, Oba Akran Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detached 6 Bedroom Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Luxury Serviced Flat, Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,3 beds,0 baths,0 Toilets +Commercial Land,"Olowu Street, Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Bedroom Hotel, Adeniyi Jones Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lakewood Court Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built And Spacious 4 Bedroom Semi Detached Duplex With Bq,Off Awolowo Way Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Property,.. Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +32 Bedroom Hotel, Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Olu Akerele Street, Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,.... Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartment, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Storey Building House,Anifowoshe Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Opebi Road, Omega Courts, Casavilla Estate, Opebi Ikeja Lagos",₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,"Mko Gardens, Alausa Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Residential Land Measuring 300sqm, Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,"Atunisi Street Omole Ext 2, Omole Phase 2 Ikeja Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +7 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,5 Toilets +4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Commercial Land,"Lateeef Jakande Road, Agidingbi Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Voera Just 20mins Drive To Shoprite, Alausa Ikeja Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,"Off Bank Anthony Way, Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,"Salvation Road, Omega Courts, Opebi Ikeja Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel/ Guest House,.. Ikeja Gra Ikeja Lagos,₦,"144,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse, Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,4 Toilets +Land For Sale,Ikeja Gra Ikeja Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Off Opebi Road, Opebi Ikeja Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached House + Swimming Pool,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,7 beds,0 baths,0 Toilets +Newly Built Semi Detached 5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat In An Estate, Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,20 Mins Drive To Allen Roundabout Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,5 Toilets +Shop/ Office Space,"New Alade Market, Alausa Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats,Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse,"Off Oregun Road, Oregun Ikeja Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Land,Oloko Crescent Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +17 Bedroom Hotel / Guest House,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space For Sale.,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,6 baths,5 Toilets +Warehouse For Sale,Oregun Industrial Estate Oregun Ikeja Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Wemabod Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,3 Toilets +Mall,... Mobolaji Bank Anthony Way Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Land,Murtala Muhammed Airport Highway Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Block Of Flats,Marie's Court Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Executive 2 Wing Duplex Of 8 Bedroom With 6 Bedroom Fully Detached, Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0,8 beds,0 baths,0 Toilets +Land,"Isaac John Street, Ikeja Gra Ikeja Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land,Olowu Street Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,.... Allen Avenue Ikeja Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,.... Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"232,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,"Mko Garden Estate, (marwa) Alausa Ikeja Lagos",₦,"122,000,000",0,0,0,5 beds,3 baths,0 Toilets +5 Bedroom Detached Duplex,"Gated And Secured Estate Short Drive To, Ikeja Gra, Ikeja Lagos",₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets +Land,Joel Ogunaike Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Bungalow,Near Shoprite Alausa Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Detached Bungalow.,"Otedola Estate, Alausa Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Refurbished Modern Office Complex, Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space, Toyin Street Ikeja Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Standard 9 Units Of 2 Bedrooms Apartment With 4 Shops On Full Plot,Cement Ikeja Lagos,₦,"28,000,000",0,0,0,2 beds,3 baths,0 Toilets +Block Of Flats,A Serene Close Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Awuse Estate, Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Office Space,"Off Oregun, Oregun Ikeja Lagos",₦,"2,800,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Block Of Flats,"Ola Ayinde Road, Off Mobolaji Bank Anthony Way Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Luxury Penthouse.,127 Oba Ladejobi Street Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Palm View Estate Just 15 Mins Drive To Shoprite Alausa Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat For Sale,"Off Oba Akinjobi Road, Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,.... Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Flat,"Off Allen Avenue Ikeja, Allen, Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Omole Phase 1 Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Opebi Ikeja Lagos,₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets +Mixed Use Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Non Functioning Hotel Situated On *4 Plots* Of Land Is For Sale Along Ajegunle,"Ajegunle, Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +"A Clean Two Wings Of 5bedroom Duplex With Registered Conveyance Located At *gbemisola Street Off Awolowo Way, Ikeja* #130million",Awolowo Way Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Storey Building (hotel),Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Uncompleted Fully Detached House,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +200m2 Of Land,"Oduduwa Crescent, Ikeja Gra Ikeja Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0,1 beds, baths, Toilets +Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets +"Marvellous Pictures Available For A Serious Client For Sales Of This Direct Luxury 6no Of 3 Bedflat Inside A Spacious St At Back Of Shoprite, Alausa Ikeja For 90m! D Yearly Lease Value Of This Wonderful Investment Is More Than 9m P. A! Luxury 3 Floors",Alausa Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +2 Plots Of Land,Along Allen Avenue Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Ikeja Large Lands For Sale,Awolowo Way Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +2 Wings Duplex Of 5 Bedroom,"Agidingbi, Behind Mega Chicken Agidingbi Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Acres Of Land,Oba Akran Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Lovely 4bedroom Detached House With 2nos 2bedroom Flat On 730sqm Land, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Uncompleted Fully Detached House,Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Brand New, Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq",.. Allen Avenue Ikeja Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Block Of 4 Flat Of 3 Bedroom Each,"Orishe Street, Off Awolowo Way Ikeja Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets +3 Acres Of Commercial Land,Oba Akran Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +A Story Building On A Full Plot Of Land,"Oluwu Street, Ikeja Gra Ikeja Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets +6 Plot Of Land,Henry Cari Street Oba Akran Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +"For Sale: An Architectural Master Piece In Awuse Estate, Opebi Ikeja, Lagos ( Direct Brief) Title : C Of O Price : #90m Per Unit Negotiable Contact Me For More Information",Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +"3 Bedroom Bungalow +4bq M1,260m2","Joel Ogunaike Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,3 beds, baths, Toilets +Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +"A Well Maintained 5 Bedrooms Detached House With 3 Bedrooms B/q On 1,000m2 Big Plot, For Outright Sale.",Opebi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"185,000",0,0,0, beds, baths, Toilets +400m2 Of Land,"Oduduwa Crescent, Ikeja Gra Ikeja Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"190,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0, beds, baths, Toilets +A Bungalow On 810.112sqm Lands,"No. 511 Meteorological Quarters, Kodesho Road, Ikeja Ikeja Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets +"A Well Maintained 5 Bedrooms Detached House With 3 Bedrooms B/q On 1,000m2 Big Plot, For Outright Sale. Good For; Office H/q, Hospital, Guest House, Club, Bank Etc. Location: Slightly Off Opebi Road, Ikeja. Title: C Of O. Price: #200m.",Opebi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +1/2 Plot Of Land,"Egbede Close, Beside Airport Hotel, Ikeja Ikeja Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets +"Land Size Of 2,500m2",Talabi Street Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +7 Plots Of Land,"Opposite Ajao Estate, Airport Road(ikeja) Ikeja Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Plot Of Land,"Seidu Ajibowu Street, Off Adeshina Street Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +Warehouse For Sale,Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Ikeja Large Land For Sale,Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +A Bungalow,Oba Akran Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"255,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale,Ikeja Gra Ikeja Lagos,₦,"350,000",0,0,0, beds, baths, Toilets +Fully Furnished 5 Bedroom Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets +8 Acres Of Land,Oba Akran Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Fully Detached House,Aba Johnson Akura Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0, beds,6 baths, Toilets +Brand New Five Bedroom Semi Detached Duplex,Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets +2 Wings Of 5 Bedroom Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached With Bq.,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +A Block Of Flat,Ajasa Street Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +502 Sqmts Land Area To Cut Out Of An Existing Building..(well Shaped),Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Ikeja Gra Prime Land For Sale*,Ikeja Gra Ikeja Lagos,₦,"270,000",0,0,0, beds, baths, Toilets +One Acre Of Land Besife First Bank Along Oba Acran Ikeja,Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Bedroom Fully Detached Duplex On 680m2,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +"3 Plots & Half Directly On Agidingbi Road, Cadbury Ikeja, Lagos. 100% Ok For Any Kind Of Commercial Purpose On Agidinbi Road, Ikeja. Price: 450 Million Asking.",Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +A Block Of 4 Flats Of 3 Bedroom Each + A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Very Hot Land For Sale In Awuse Estate A Nicely Located Dry Land Measuring 300sqm In A Very Serene Area Of Awuse Estate, Opebi Ikeja, Lagos Title : Registered Conveyance Price : #65m",Opebi Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Vacant Commercial Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +4 Flats Of 3broom Flat Each All Rooms Ensuites Seat On 700sqm Of Land,"Ogba, Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +"Six, 3 Bedroom Flat On 2 Plot Off Toyin Street, Back Of Saint Leo’s Church, Ikeja, Lagos.",Toyin Street Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +Plot Of Land,Oba Akran Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +A Prime And Fenced 9 Acre Of Land With Good Title,Oba Akran Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +One Acre Of Land Along Awolowo Way Opposite Airport Hotel Ikeja,Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"A Clean 6nos Of 3bedroom Flats On 1,168.618 Square Meters With Cofo Located Off *sunday Adigun Street At Back Of Shop Rite, Alausa Ikeja* #90million",Alausa Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,4 Toilets +C Of O,Joel Ogunnaike Road Ikeja Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,1,0, beds, baths, Toilets +5000 Square Meter Land At International Mm1 Airport Road Before Mobile Filling Station Mafoluku Oshodi Way.,Mafoluku Mm1 Airport Road(ikeja) Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished Brand New 5bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Detached Duplex In A Serene Environment,Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Factory/warehouse On 17,600 Square Meters",Oregun Ikeja Lagos,₦,"2,750,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 600 Square Meters,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"Fuel Station Directly Off Agidingbi Road, Ikeja",Agidingbi Ikeja Lagos,₦,"690,000,000",0,0,0, beds, baths, Toilets +"5 Bedrooms Duplex On 1000 Sqmts Near Allen Avenue, Ikeja",Allen Avenue Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Serviced Flat,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Newly Built 3 Unit Terrace Building Of 4 Bedrooms Duplex With Bq In Serene Neighborhood,Abba Johnson Crescent Akora Villas Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Newly Built Semi Detached 5 Bedrooms Duplex With Bq In Serene Neighborhood,"Awori Close Akora Villas Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built 2 Unit 5 Bedrooms Duplex With Bq In Serene Neighborhood,Awori Close Akora Villa's Estate Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Lovely Good And Nice Newly Built 3bedroom Flat In Ikeja All Rooms Ensuit,Cocosheen Close Ikeja Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets +Luxury 4bedroom Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Well Maintained Commercial Property,Along Opebi Allen Road Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Block Of 8 Units 3 Bedroom Flats With Bq,... Opebi Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse On 13000sqm,Off Oregun Road Ojota By Philp Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse, Ikeja Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Off Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Units 3 Bedroom Flat, Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lola Holloway St, Omole Phase 1 Ikeja Lagos",₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plot Of Land,... Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex In A Very Quiet Neighbourhood,Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Beautiful Land In A Serene Environment,Omole Phase 2 Extention Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets +A Well Maintained Up/down Tenament Building,Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +An Office Complex On 5 Floors,Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Nos Of 3 Bedrooms Flat,Oregun Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +6 Nos Of 3 Bedrooms Flat With 2 Bq On 1200sqm,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Tenament Building House.,Awolowo Way Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +9 Acres Of Land,Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Prime Commercial Property Selling!! Prime Commercial Property Selling!!!!. Location Ikeja...5 Acres Of Land Within Wemabod Ikeja Selling. Location Ikeja...acre Goes For 400m Asking. A Plot 70m Asking,Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Newly Tasteful Built 3 Nos Of 4 Bedrooms Terrace Duplex With A Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +Tastefully Finished 4 Bedroom Detached Duplex With 2 Rooms Bq,Serviced Estate Ikeja Lagos,₦,"150,000,000",0,0,1,4 beds,5 baths,5 Toilets +Executive 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Units 5 Bedroom Duplex,Along Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,7 Toilets +Newly Built 4bed Room Detached Duplex,Hu Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets +Nice 6 Bedroom Fully Detached Duplex With Modern Facilities At Adeniyi Jones Ikeja Lagos 75m,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +New 4 Bedroom Terrace Duplex With Modern Facilities At Adeniyi Jones Ikeja Lagos 65m,Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Structured 4 Bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +Beautiful 4 Bedroom Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +"Brand New And Well Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +Beautifully Structured 4 Bedroom Terraced Duplex Plus Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths, Toilets +"Beautifully Structured 3 Bedroom Semi Detached Duplex For Sale At Opebi Estate, Ikeja",Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds, baths, Toilets +Executively Built 4 Bedroom Condo Duplex Plus A Room Bq For Sale At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Structured 4 Bedroom Detached Duplex Plus Bq Plus A Sit Out Terrace For Sale At Ikeja,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +"Brand New 4 Units Of 3 Bedroom Detached Duplex For Sale At Opebi Estate, Ikeja",Opebi Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds, baths, Toilets +Properties For Sale... 6 Units Of Newly Built 3 Bedroom Flats For Sale,Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets +"Standard 5 Bedroom Duplex With 2 Rooms Bq For Sale At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +"Hot Properties... 4 Bedroom Terraced Duplex Plus A Bq For Sale At Oregun, Ikeja",Majiyagbe Oregun Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Fresh Out... 6 Units Of 3 Bedroom Flats For Sale At Allen Avenue, Ikeja. 40m Per Flat",Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets +Sale Sale Sale... 3 Bedroom Terraced Duplex For Sale At Ikeja,Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths, Toilets +4 Plots Of Dry Land,Satellite Town Near Peter Nemesi Street Behind Nasco Estate Ikeja Gra Ikeja Lagos,₦,"10,500,009",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Hotel For Sale,.. Ikeja Gra Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"*direct Sales At Give Away Price* *newly Built Lovely 4bedroom Duplex With 2nos Of 2bedroom Flat On 650sqm With 2bedroom Flat Ensuite Bq.* *location: Omolade Shonibare Magodo Isheri Lagos, The Owner Is Relocating* *more Pictures Available* Title: Receipt",Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment With Excellent Facilities,"Shasha, Akowonjo Ikeja Lagos",₦,"22,000,000",0,1,0,3 beds,2 baths,3 Toilets +4bedroom Luxury Semi Detached Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Serviced + Furnished 4bedroom Flats Ensuite +penthouse,"Off Kudirat Abiola Way, Oregun, Ikeja, Lagos Oregun Ikeja Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +1074sqm Land With Uncompleted Structure,Agidingbi Road. Ikeja Agidingbi Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Brand New 3wings Of 4bedroom Semi Detached Duplexes,"Off Toyin Street, Ikeja Toyin Street Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Condo Duplex With 1bedroom Bq,"Oroleye Street,off Abel Oreniyi Salvation,opebi Ikeja Opebi Ikeja Lagos",₦,"90,000,000",0,1,1,4 beds, baths, Toilets +Block Of 4 Units Of 3 Bedroom Flat Off Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,2 baths,2 Toilets +500sqm Mixed Development Land In Agidingbin For Sale,Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +72 Units Of 3 Bedroom Apartment,Allen Avenue Ikeja Lagos,₦,"22,000,000",0,1,1,3 beds, baths, Toilets +"Eight Flat At Ikeja Block Of 8 Flats Comprises Of 3brm, 2brm, Mini Flat, Location: Okeira Ogba Ikeja Lagos. Title: S/r Price 50m Negotiable",Okeira Ogba Alausa Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,5 Toilets +Filling Station For Sale In Alausa 240713,Alausa Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +32 Apartment Hotel,Awolowo Way Awolowo Way Ikeja Lagos,₦,"320,000,000",1,0,1, beds, baths, Toilets +Full Detached 5 Bedroom With Bq In A Private Estate Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex In Ikeja Area,Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Adeniyi Jones 170703,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Detached Duplex & 3bedroom Mini Flat,Adeniyi Jones Ikeja Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,7 beds,8 baths,8 Toilets +2 Ditached Duplex And 3bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikeja Gra 150716,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Apartment For Sale In Adeniyi Jones 150709,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets +Landed Property In Peace Estate Btw 40m To 70m,Peace Estate Maryland Ikeja Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets +Newly Built Brand New 3 Bedroom Flat Of 4 Units With Pop Kitchen Cabinets Wardrobes Water Heater All Rooms Ensuilt With Visitors Interlock Compound And Maximum Security,Punch Estate Airport Ikeja Mangoro Ikeja Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets +Luxury 6bedroom Fully Detached Duplex In A Serene Environment,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,6 beds,7 baths,7 Toilets +Executive Brand New 4 Bedroom Terrace Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets +Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets +Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0, beds, baths, Toilets +Good And Marketable Title,No 10 Kodesho Street Off Awolowo Way Ikeja Lagos Nigeria Awolowo Way Ikeja Lagos,₦,"300,000,000",1,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"3 Wura Esan Close,off Ashongbon Adeniyi Jones Ikeja Lagos",₦,"125,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Units Of 4 Bedroom Terrace Duplex,Oluwaleyimu Street Ikeja Toyin Street Ikeja Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,6 beds,8 baths,8 Toilets +4 Bedroom Terrace Duplex For Sale,Lavender Close Marwa Garden Ikeja Alausa Ikeja Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Terraces,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths, Toilets +2000sqm On Obasa For 200k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets +3000sqm On Sowemimo For 200k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets +2000sqm On Herbat Marculey For 210k Per Sqm,Ikeja Gra Ikeja Lagos,₦,"210,000",0,0,0, beds, baths, Toilets +4 Bedroom Flat For Sale In Agidingbi 08jul05,Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +"*commercial Building For Sale* ,",Off Toyin Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedrooms Terrace Duplex In A Gated Estate At Maryland N40m Net,Maryland Maryland Ikeja Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex At Opebi N55m,Off Salvation Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,1,3 beds,4 baths,4 Toilets +A Block Of 4 No's 3 Bedroom Flat At Off Toyin Street Ikeja N80m,Off Toyin Street Toyin Street Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bed Room Fully Detach Duplex,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,4 Toilets +A Plot Of Land,Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +A Superb And Luxurious Tastefully Finished 4 Bedroom Duplex Fully Detached With One Room Bq,"Off Odudua Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With A Room,... Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land Of 3000sqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +10 Bed Hotel Guest House,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,10 beds,10 baths,10 Toilets +"Land Area: 2,230 Sqm For Sale",Awuse Estate Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,4 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached House,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bay Warehouse,Morrison Crescent Oregun Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex For Sale At Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,.... Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikeja Joint Venture,4088 Sqmt Of Land",Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Duplex And 3 Rooms Bq On 1000sqm Land With C Of O Document Off Opebi Ikeja N180m,Opebi Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,... Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hey Come See Land For Free,Toyin Street Ikeja Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets +Well Built Block Of 4 Nos 3 Bedroom Flat At Off Toyin Street Ikeja N110m,Off Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Plots Of Bareland (2650sqm) Fenced And Gated,"Et Al Avenue , By Kudirat Abiola Way.. Oregun Ikeja Lagos",₦,"400,000,000",0,1,0, beds, baths, Toilets +75 Rooms Hotel,Mobolaji Bank Anthony Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,500,000,000",0,1,1,10 beds,10 baths,10 Toilets +Newly Built 5bed Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,... Allen Avenue Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Twin 4 Bedroom Duplex With Pent House,"Magodo Gra Phase1, Lagos Nigeria. Ikeja Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +6bedroom Duplex For Sales At Oregon Ikeja,Oregon Road Oregun Ikeja Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly 4bed Room Duplex Detach Wit 1bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Flat Of 3bedroom On A Plot Of Land For Sale At Onipetesi Mangoro,Onipetesi Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Flat Of 3bedroom On A Plot Of Land For Sale At Onipetesi Mangoro,Onipetesi Mangoro Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 7 Units Of Fully Equipped And Finished 5 Bedroom Luxury Terrace Building,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex At Ikeja Gra N250m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Old Building On Two Plot Of Land,3 Sadiku Street Agidingbi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,8 baths,6 Toilets +3 Bedroom Flat For Sale In Ikeja 15jun29,Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex For Sale In Ikeja 15jun24,Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikeja 15jun22,Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +C Of O,Ikeja Lagos,₦,"35,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +With C Of O 35m Net,Ikeja Lagos,₦,"35,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex For Sale In Ikeja 13jun19,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +25 Plots Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex + 2 Mini Flat Bq,Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets +"One Acre Of Land , 6plot Of Land For Sale Inside Awuse Estate Ikeja",Awuse Opebi Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Executive 5 Bedroom Fully Detached Duplex With A Bq,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New 6bedrooms Detached Duplex With A Bq At Adeniyi Jones Ikeja For Sale.,Adeniyi Jones Ikeja Lagos. Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets +One Acre Of Land For Sale In A Close At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 3 Numbers Of 4 Bedroom Terrace Duplexes With Bq Each,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Executive 4 Bedroom Terrace Duplex With A Bq,Awuse Estate Opebi Ikeja Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,5 Toilets +5 Bedroom Duplex For Rent In Adeniyi Jones 09jun23,Adeniyi Jones Ikeja Lagos,₦,"4,000,000",0,1,0,5 beds,5 baths,5 Toilets +Building On A Land For Sale In Alausa 09jun11,Alausa Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +3bedroom All Room Are Suit,Mangoro Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets +Block Of 4 Flat 3 Bedroom Flats,Off Obafemi Awolowo Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious 3 Bedroom Apartment In Adeniyi Jones Is For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Storey Building Of 9 Bedroom For Sale In Mangoro 07jun31,Mangoro Ikeja Lagos,₦,"75,000,000",0,0,0,9 beds,9 baths,10 Toilets +Brand New 4 Bedroom Detached House At Allen Avenue Ikeja. Price: 80m,Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Semi Detached Duplex At Opebi Ikeja N60m,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +12 Units Of 3 Bedroom Flat For Sale In Ikeja 03jun02,Ikeja Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets +Warehouse On 3 Acres,Kudirat Abiola Obafemi Awolowo Way Ikeja Lagos,₦,"25,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom House For Sale In Oregun 02jun20,Oregun Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikeja 30apr8,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale In Ikeja 27apr23,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Hotel For Sale In Ikeja 12may18,Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex For Sale In Ikeja 14apr40,Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Commercial Building For Sale In Ikeja 9may42,Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +57 Rooms Hotel For Sale In Ikeja 13may52,Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Fully Detached House For Sale In Ikeja 25apr38,Ikeja Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bed Duplex With Block Of Flats For Sale At Off Ogba Iju,Ogba Ikeja Oregun Ikeja Lagos,₦,"55,000,000",0,0,1,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Semi Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,5 Toilets +Executive Brand New 2 Wings Of 4 Bedroom Semi Detached Duplex With Bq,Adekunle Villa Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikeja 28apr16,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex For Sale In Ikeja 18apr33,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Ikeja 4apr14,Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat For Sale In Ikeja 30apr21,Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex For Sale In Ikeja 30apr9,Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Ikeja 30mar35,Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached House For Sale In Ikeja 6may9,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Omole 30mar24,Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Ikeja 14apr29,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Duplex For Sale In Ikeja 15apr34,Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Units Of 4 Bedroom Terrace Duplex For Sale In Ikeja 7apr23,Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,.. Alausa Ikeja Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikeja 27apr20,Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikeja 12may19,Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikeja 30mar14,Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedrooms Mansionette For Sale In Ikeja 18apr30,Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Duplex For Sale In Ikeja 14apr8,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Executive Brand New 6 Bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,1,6 beds,7 baths,7 Toilets +5 Bedroom fully Detached Duplex For Sale In Ikeja 25apr45,Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex For Sale In Ikeja 23apr8,Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikeja 25apr4,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Ikeja 11may44,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Units Of 4 Bedroom Duplex For Sale In Ikeja 5may37,Ikeja Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,4 Toilets +Block Of 6 Units Of 3 Bedroom Flats For Sale In Ikeja 12may30,Ikeja Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached House For Sale In Ikeja 13may40,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Ikeja 13may42,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Ikeja 27mar10,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Ikeja 25apr62,Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex For Sale In Ikeja 8apr25,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Filling Station For Sale In Ikeja 9may36,Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex For Sale In Ikeja 23apr1,Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Ikeja 7apr28,Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +58 Rooms Hotel For Sale In Ikeja 01jun52,Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Ikeja 28apr19,Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex For Sale In Ikeja 25apr47,Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikeja 22apr26,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Ikeja 2apr35,Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat For Sale In Ikeja 12may20,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale In Ikeja 11may38,Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +8 Units Of 5 Bedroom Detached House For Sale In Ikeja 21apr15,Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Ikeja 11may4,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Terrace Duplex For Sale In Ikeja 23apr5,Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +36000sqm Land For Sale In Ikeja 22may6,Ikeja Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace For Sale In Ikeja 9may35,Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrence Duplex For Sale In Ikeja 23apr50,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Ikeja 8apr25,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached House For Sale In Ikeja 13may12,Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Ikeja 25apr3,Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Ikeja 24apr22,Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex For Sale In Ikeja 21apr13,Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Ikeja 18apr43,Ikeja Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikeja 30apr14,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +330 Sq M Land For Sale, Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex For Sale In Ikeja 3apr38,Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Units Of 3 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex For Sale In Ikeja 14apr12,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Ikeja 22may9,Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikeja 22apr70,Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Storey Commercial Building For Sale In Ikeja 12may31,Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Serviced Apartment For Sale In Ikeja 01jun36,Ikeja Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex For Sale In Ikeja 22mar19,Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikeja 27apr39,Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Opebi 28may13,Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +12 Units Of 3 Bedroom Flats For Sale In Ikeja 7apr24,Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Duplex For Sale In Ikeja 12may33,Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Ikeja 22may7,Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached House For Sale In Ikeja 18apr42,Ikeja Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikeja 18may20,Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +15 Nos Of 3 Bedroom Flat For Sale In Ikeja 22apr68,Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +New 4 Bedroom Semi Detached Duplex In A Serene Environment,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bare Land,Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +Newly Build 4bedroom Terrace Houses With A Room Bq Fully Furnished,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 6 Nos Of 3 Bedroom Flats In A Serene Environment In The Heart Of Allen Ikeja Sold Per Flat,Off Ogumodede Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,.. Ikeja Gra Ikeja Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +Block Of 4 Flats (2 No 3 Bedroom Flats & 2 No 2 Bedroom Flats) + Bq (2 No 2 Bedroom Flats) Built On Approximately 624sqm,Toyin Street Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,2 baths,3 Toilets +A Wing Of 4 Bedroom Duplex With Bq,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +"5bedroom House + 2extra Rooms +2rmbq, Swimming Pool, Parking Space For At Least 8cars, On 500sqm.",Omole Phase 1 Agidingbi Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +"For Sale : Newly Built 4 Bedroom Terrace Houses With A Room Bq Fully Furnished With Everything Necessary At Wemabod Estate, Off Adeniyi Jones, Ikeja, Lagos",Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Land With C Of O,Oregun Oregun Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Duplex,36 Omo Le Phase One Agidingbi Ikeja Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 4br Duplex,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classic 4br Terrace House,Esugbayi Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,0,0,4 beds,5 baths,5 Toilets +A Bungalow On 850 Sqmeter Along The Road... Presently It Is Being Used For Carlot,Awolowo Way Opp Lagoon Hospital Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets +A Newly Built 7 Unit Terrace Of 5 Bedroom Duplex With Bq,"Ikare Close Orimolade Estate, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"70,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Duplex With Bq In A Serene Neighborhood,"Akinola Cole Crescent, Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In A Serene Neighborhood,"Abba Johnson Crescent, Akora Villa Estate Adeniyi Jones Ikeja Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq, Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3 Units Of 3 Bedrooms Terrace Duplex Self Compound, Ikeja Lagos,₦,"34,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Virgin Land For Sale In Ikeja Gra Size : One Acre,Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Fully Detach 5 Bedroom Duplex At Ikeja,Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,5 beds,5 baths,6 Toilets +A Block Of 4 Flat Of 3 Bedrooms For Sale At Oregun Ikeja,"Oregun, Ikeja Lagos Oregun Ikeja Lagos",₦,"70,000,000",1,1,1,3 beds,3 baths,2 Toilets +"Sales!!! 2 Plots Together Directly On Kudiratu Abiola Way, Oregun Ikeja, Lagos",Kudiratu Abiola Way Oregun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +2000sqm Land At Corner Piece In G Capper Maryland Ikeja Lagos.,Maryland Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +5bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale! : 3bedroom Duplex,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedrooms (6 Blocks Of Flats) House With Very Big Compound And Bq For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,3 Toilets +Now Selling: Six (6) Units Of Newly Built Luxury 3bedroom Flats + Bq @ Gra Ikeja Lagos,Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds, baths, Toilets +"4bedroom Semi Detached Duplex Self Compound @the Front , 5bedroom Semi Detached Duplex @ The Back, And Each Duplex Has 2rooms Bq",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +Don't Let Your Kids Ask Why You Never Invested In Ibeju Lekki,18 Samuel Awoniyi Street Opebi Ikeja Lagos,₦,"800,000",0,1,0, beds, baths, Toilets +Verified C Of O Land In Mowe Ofada,Ladipo Kasumu Allen Avenue Ikeja Lagos,₦,"1,000,000",0,1,0, beds, baths, Toilets +Verified And Secured Estates,50 Ladipo Kasumu Allen Avenue Ikeja Lagos,₦,"850,000",0,1,0, beds, baths, Toilets +Bareland Of Size 977sqm For Sale,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"180,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Detached House For Sale At Ikeja Ik212,Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale At Opebi Ikeja Ik262,Opebi Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +Units Of 3 Bedroom Flat For Sale At Adenuyi Jones Ik857,Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Ensuite 5 Bedroom Duplex For Sale At Ikeja Gra Ik268,Ikeja Gra Ikeja Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale At Awuse Estate Opebi Ik326,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Adekunle Villa Ikeja Ik307,Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +1436sqm Open Plan Office,.. Oregun Ikeja Lagos,₦,"43,080,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Semi Detached 4bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land For Sale At Oregun Ikeja Ik621,Oregun Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +32 Rooms Hotels For Sale At Ikeja Ik780,Ikeja Lagos,₦,"1,990,000,000",0,0,0,10 beds,10 baths,10 Toilets +Warehouse On 1 Acre Of Land,Oregun Oregun Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 5 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Ik173,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 3bedroom Flat And 2rooms Bq For Sale At Ikeja Adeniyi Jones,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex For Sale At Allen Avenue Ikeja Ik601,Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Ik776,Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale Off Adeniyi Jones Ikeja Ik600,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex For Sale At Ikeja Ik787,Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fenced And Gated Estate In Ibeju Lekki,Toyin Street Ikeja Gra Ikeja Lagos,₦,"850,000",0,1,0, beds, baths, Toilets +For Sale 4 Bedroom Fully Detached Duplex With Bq Newly Built,Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets +600 Sqm Land In A Gated And Serene Part For Sale At Ikeja #08,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +"A Four Bay Warehouse + Admin Building Sitting On Two And Half Acres Of Land For Sale At Oregun, Lagos #10",Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Newly Built 5bedroom Duplex + Bq (adeniyi Jones,ikeja)",Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Apartments With 1 Bedroom En Suite Bq,Sarah's Court Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 9units Of 3 Bedroom With Swimming Pools At Heart Of Lagos Ikeja With C Of O And Maximum Security,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,1,3 beds,0 baths,0 Toilets +Newly Built 3 Storey Office Building With A Penthouse And C Of O At Capital Of Lagos Ikeja,Anifowoshe Ikeja Lagos,₦,"120,000,000",0,1,1,0 beds,0 baths,0 Toilets +Acres Of Land For Sale At Gra Ikeja With C Of O And Maximum Security,. Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale At Toyin Ikeja Ik153,Toyin Street Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment For Sale In Ikeja Ik110,Ikeja Lagos,₦,"7,500,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale At Opebi Ikeja Ik112,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex On 1600sqm For Sale At Ikeja Gra Ik145,Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale,Salvation Opebi Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +New And Tastefully Finished 4 Numbers Of 5 Bedroom Semi Detached Duplex And A 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duolex With Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale 4 Bedroom Duplex At Opebi Estate Lkeja Lagos N50m Asking,Opebi Estate Opebi Ikeja Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land With C Of O For Sale In Omole Phase Ii Scheme Ii (berry Court ),Omole Phase Ii Estate Alausa Ikeja Lagos,₦,"21,000,000",1,1,0, beds, baths, Toilets +For Sale : Distressed Sale Reduced Price:three Bedroom Apartment Flat Inside The Amazing Citiview Estate Its Just 5minutes Drive From Alausa Secreteriat Ikeja,The Apartment Is Inside Citiview Estate 5minutes Drive From Alausa Ikeja Alausa Ikeja Lagos,₦,"28,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Semi Detached Duplex For Sale With Self Compound,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Twin Duplex Of 5 Bedroom,Off Lateef Jakande Rd Agidingbi Ikeja Lagos,₦,"45,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4bedroom Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex In A Serene Area,Opebi Ikeja Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom House For Sale In Ikeja,Adedayo Banjo Street Allen Avenue Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Units Of Luxury And Spacious 3bedroom Flats @ Oregun, Ikeja. Price: N35,000,000",Oregun Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds, baths, Toilets +2000sqm Of Land With An Old Structure,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Purposely Built Residential Quarters,Ogundana Allen Avenue Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"Shop For Sale At Alade Market, Awolowo Way, Ikeja",Alade Market Obafemi Awolowo Way Ikeja Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +"5 Acres Of Land At Awolowo Way, Ikeja",Awolowo Way Ikeja Lagos,$,"20,000,000",0,0,0, beds, baths, Toilets +"2 Units Of Newly Built 5 Bedroom Detached House + Bq @ Ikeja Gra, Each C Of O",Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,1,1,5 beds, baths, Toilets +5 Bedroom Detached Duplex For Sale At Magodo Gra Yb017,Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Opebi Yb047,Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Semi Detached Duplex For Sale At Adeniyi Jones Yb011,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom House With Bq For Sale In Ikeja Yb016,Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex For Sale In Ikeja Gra Yb039,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale At Adeniyi Jones Ikeja Yb046,Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +All Room Ensuite 4 Bedroom Terrace Duplex For Sale Opebi Yb020,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached House For Sale In Ikeja Yb012,Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Fully Detached Duplex With A 2bedroom Bq,Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex For Sale In Ikeja 09yb001,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Land Size:3700sqm, With Registered Conveyance.",. Maryland Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Newly Built And Well Finished 5 Bedroom Duplex,. Ikeja Gra Ikeja Lagos,₦,"150,000",0,1,0,5 beds,5 baths,7 Toilets +Executive 12 Rooms Functional Hotel,Off Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",1,0,1, beds, baths, Toilets +Executive Block Of 4 Flat Of 3 Bedroom Each,At The Back Of Jabita Hotel Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,1,3 beds,4 baths,4 Toilets +Mixed Development Land Measuring 4000sqm,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Executive 18 Rooms Hotel For Sale,Ikeja Ikeja Lagos,₦,"450,000,000",1,0,1, beds, baths, Toilets +112 Rooms All Ensuite Rooms For Sale,Allen Avenue Ikeja Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 5 Bedroom Fully Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Petrol Station On 4 Plots Of Land With 5 Pumps,Alausa Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +A 12 Rooms Functional Hotel On About 600sqm Land All Rooms En Suites,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +A 4 Bedroom Terrace Duplex With A Room Bq,Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bay Warehouse With Administrative Blocks On 9000sqm Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Functional Hospital For Sale,Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,1, beds, baths, Toilets +"It Sits On About 350 Sqm, Has It's Own Compound And Is Located In Gra 1000 Sqm Bare Land In Ikeja Goes For 190 200 Million, So The Price Of This Facility At 135m Is Not Bad, Unless You Want Sth Bigger.",Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Office Space 5.5m,Ikeja Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +Office Space 4.3milljon,Ikeja Lagos,₦,"43,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale #135m,... Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Detached Duplex With Bq At Magodo Gra Shangisha Phase 2,... Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Rent To Own, Pay Rent For 2 15 Years And Own Your Home. En Suite Furnished 4 Bedroom Apartment With Modern Facilities. Pay Equity Contribution And Park In While You Pay The Balance Installmentaly Between 2 15 Years.","Omega Court,opebi Ikeja Lagos",₦,"37,500,000",0,1,1,4 beds,6 baths,6 Toilets +2000sqmt Of Land (180k Per Square Meter),Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"180,000",0,0,0, beds, baths, Toilets +5000 Square Meter Prime Land,Akin Adejobi Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4000 Square Meter Of Land @ Obasa Street,Obasa Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4400 Square Meter Of Land @ Isaac Jones,Isaac Jones Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House With 1 Nos Boys Quarters (bq),... Maryland Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment At Opebi Ikeja For Sale,Salvation Road Opebi Ikeja Lagos,₦,"28,000,000",0,1,0,2 beds,5 baths,5 Toilets +Property For Sale At Ikeja Gra,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets +"A 714sqm Cornerpiece Parcel Of Land, Fenced With Gate In Awuse Estate, Opebi, Ikeja Lagos",Awuse Estate Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +A Prime Land With Demolishable Or Refurbishable Structures.,Awuse Estate Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets +A Building,Obafemi Awolowo Way Ikeja Lagos,₦,"15,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Large Parcel Of Land Measuring 29 Plots,"Ajao Road, Off Adeniyi Jones Avenue Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +A Parcel Of Land Measuring Approximately 2600sqm,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Newley Built Luxury 3bedroom Apartment And Bq,Opebi Ikeja Lagos,₦,"82,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Apartment With Ample Car Parking Space,Along Salvation Road Opebi Ikeja Lagos,₦,"37,500,000",0,1,0,4 beds,6 baths,6 Toilets +"*4.5 Acres On Oregun Road, Ikeja, Lagos* *sited On 17,600 Square Metre ( 4.5 Acres).* *property With A Warehouse (demolishable)* *suitable For Highrise Hotel, Private Residential Estate, Event Centre Or Any Other Mixed Development Use.* *located On Billin",Oregun Ikeja Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +"8,400sqm Residential Land For Sale In Ikeja Gra* *location:: Adeyemo Alakija Street* *it Is Fenced And Gated With Security* *lagos State C Of O. And It Also Has Building Approval.* *can Be Sold In Bits* *per Sqm:: #200k* *the Whole Land Is : N1.7b*",Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +"17,900sqm) Of Land With Scanty Demolishable Structure For Sale* *location: Off Awolowo Way Ikeja Lagos* *it Is Fenced And Gated Facing The Road* *lag State C Of O.* *price...n2.5b*",Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +"4000sqm Land At Adeniyi Jones* *location: Off Adeniyi Jones, Ikeja Lagos* *the Property Has An Old Building On It* *title: Cofo And Governor's Consent* *price...n500 Million Asking*",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"4,100sqm Land At Adekunle Fajuyi Way* *location: Shogunle Bus Stop On Adeniyi Jones, Ikeja Gra* *the Property Has A Structure That Can Be Renovated Or Demolished Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Mi",Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"One And Half Acres Of Land Opposite Airport Hotel* *location: Along Awolowo Way Ikeja Lagos* *it Is Fenced And Gated Facing The Road* *title: C. Of O., D. P. R. License And Approval For Filling Station.* *price...n1.8b*",Awolowo Way Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +"9acres Of Land On Oba Akran Ikeja* *location: Oba Akran Close To Naijarite, Ikeja* *the Property Has A Structure That Can Be Renovated Or Demolished Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Million For An",Oba Akran Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +*for Sale: On Ikeja Gra Lagos Cornerpiece Plot Measuring 5900sqm With Lagos State Cofo Selling For N2.5bn,Gra Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +1000 Square Meter Of Land At Oduduwa Crescent,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets +30 Plots Of Land @ Ajao Street (70m Per Plot),Ajao Street Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +"5000sqm Land At Oregun Alausa* *location: Kudirat Abiola Way, Oregun, Ikeja* *the Property Has A Temporary Structure That Serves As Admin Office With Toilet, Fenced, Gated And The Whole Land Is Tarred And Interlocked* *title: Cofo* *price...n500 Million",Oregun Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"4000sqm Land At Adeniyi Jones* *location: Ladipo Oluwole Street Off Adeniyi Jones, Ikeja* *the Property Has A Solid 2wings Of Open Plan Office Space, Fenced And Gated* *title: Wemabod* *price...n650 Million Asking*",Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"(8,600sq.m) Land Beside Maryland Mall (shoprite,)* *location: Beside Maryland Mall Directly Facing Ikorodu Road* *registered Conveyance.* *price...n1.5billion*",Maryland Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"*7,100 Sqm Of Fenced And Gated Land On Bank Anthony Way Maryland* *with Office Complex. Can Be Comfortably Used For An Estate, Shopping Mall, 5 Star Hotel Or Church* *title Governors Consent.* *price N1.8b.* *half Of This Life Plot Of Land Can Also Be",Maryland Ikeja Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +"2600sqm On Mobolaji Bank Anthony Way, Maryland, Beside Keystone Bank, Near Ikeja Army Cantonment*. *consisting Of One Storey Building And A Bungalow With Appurtenances.* *the Property Is Quite Strategic And Can Be Used For A Mall, Office Complex, Residen",Mobolaji Bank Anthony Way Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Newly Built 3units Of 3 Bedroom Semidetached Duplex In Ikeja Around Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds, baths, Toilets +For Sale || 5 Bedroom Fully Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Condonium For Sale,Adeniyi Jones Ikeja Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +C Of O,Awolowo Opebi Ikeja Lagos,₦,"1,000,000,000",0,1,0, beds, baths, Toilets +An Exquisite 6bedroom Detached Duplex At Ikeja In A Very Serene Environment And Very Accessible.,Ikeja Adeniyi Jones Lagos. Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets +A Block Of 6no 3bedroom Flat Available For Sale In Ikeja,Adekunle Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,3 Toilets +Functional Hotels Comprising 24 Rooms/a Story Building.,Off Allen Avenue Ikeja Lagos,₦,"230,000,000",1,0,1,0 beds,0 baths,0 Toilets +Newly Built 8unit Of 5bedroom Terrence Duplexs With A Room Bq Inside An Estate In Off Adeniyi Jones Ikeja All The Rooms Are Ensult With Guest Toilet ?? Fixed Kitchen Cabinet Quality Marble Spanish Tiles On The Floor With Ample Parking Space In The Compoun,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Four Blocks Of Three Bedroom Flats For Sale Off Allen Avenue ,ikeja Lagos State. Title: Cofo .price: #120m. Negotiable",Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,Bamishile Estates Off Allen Avenue. Allen Avenue Ikeja Lagos,₦,"65,000,000",1,1,1,5 beds,6 baths,6 Toilets +Lovely Built 3 Bedroom Flats & 2 Bedroom Flats.,Bayo Ajayi Streets. Alausa Ikeja Lagos,₦,"80,000,000",1,0,1,1 beds,1 baths,1 Toilets +Lovely Built 4 Bedroom Duplex With Bq,Awuse Estate. Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 8 Units Of 5bedroom Duplex With Bq At Ikeja In A Good Environment.,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is Newly Built 3nos Of 4bedroom Terrence Duplexs With A Room Bq Inside An Estate In Off Adeniyi Jones Ikeja..document: C Of O...going For 85m,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Brand New 3 Units Of 4bedroom Duplex In A Good Environment And Very Serene.,Adeniyi Jones Off Allen. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,"3 Olaoshe Close, Agege, Off Ikeja Along Airport Road(ikeja) Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4bed Duplexe,Off Toyin Toyin Street Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bed Duplexe,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Commercial Property Sitting On 2,600 Sqm",Opebi Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"Hot Sales Land With Buildings Demolished Already On 2,600sqm", Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Deluxe Apartments,"End Of Fatai Doherty Close, Off Akin Laguda, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Lovely 3bedroom Flat With 1,room Service Quotres",Bamiselle Street Allen Avenue Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Tastefully Newly Built 3,bedroom Duplex",Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Newly Built 4bedroom Semi Detached Duplex With Bq Fitted Kitchen, Jacuzzi, Spacious Sitting Room Etc",In A Well Secured Estate Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,"Off Adeniyi Jones, Ajao Road Adeniyi Jones Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Nice 5bedroom Detached House + 4bedroom Duplex Bq On 2plots Of Land Along Adekunle Fajuyi Way Near Maryland Ikeja G R A Ikeja Lagos. With C Of O #250million.,Maryland Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Newly 4,bedroom Detached House",Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets +"Luxurious 4bedroom Terrace Duplex On 3floors With Bq, Spacious Rooms In A Mini Court",In Well Secured Estate Opebi Ikeja Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Ikeja Gra, Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Detached Bungalow,Otedola Estate Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment In Opebi Ikeja,Opebi Ikeja Lagos,₦,"28,000,000",0,1,1,2 beds, baths,1 Toilets +4 Units 4 Bedroom + 1room Bq Condo Duplex,Awuse Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"An Old 4 Bedroom Wing Of Duplex (needs Renovation) With A Bq, Gate House, Etc. Built On 350 Square Meters Land",Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Duplex In An Estate In Maryland,Arowojobe Estate Maryland Ikeja Lagos,₦,"63,000,000",0,1,1, beds,3 baths,5 Toilets +"2 Wings Of 4 Bedroom Duplex At Itelorun Close, Adekunle Village","5, Itelorun Close, Adekunle Village Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +30m2 Office Space,Alausa Shopping Mall Alausa Ikeja Lagos,₦,"20,000,000",1,0,0, beds, baths, Toilets +"More Than 5 Bay Empty Warehouses With Administrative Blocks Suitable For Redevelopment Of Shopping Mall, Event Center, Corporate Headquarters, Church, Hospital, Hotel, Etc...",Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Entire Store For Sale,Opebi Ikeja Lagos,₦,"15,000,000",0,0,1,4 beds,1 baths,1 Toilets +4 Plots Of Land Going For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Cornerpiece Land And Building In Gra Ikeja,No. 2 Isaac John Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +3 Plots Of Land,Awuse Estate Ikeja Lagos Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Size 1200sqm,"Joel Ugonaike, Road Ikeja Gra Ikeja Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: Luxury 4bedrom Condo With Bq At( Awuse Estate) Opebi, Ikeja",Oroloye St Off Abel Oreniyi Opebi Ikeja Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets +Plots Of Land For Sale In Magodo Heights,Magodo Jubilee/ Cmd Road Alausa Ikeja Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets +"A Four (4) Bedroom House, All Rooms En Suite With Two (2) Living Sitting Rooms, One Study, One Ante Room, One(1) Visitors Toilet, One (1) Kitchen, One (1) Pantry/store And Two Rooms (2) Boys/maid Quarter En Suite With Kitchenette.","House 7, Peace Court, 2/4 Adeyemo Alakija, Gra Lkeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"200,000,000",0,0,0,4 beds, baths, Toilets +5 Bedrooms Detached Duplex In Omole Phase I20m Negotiable,Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Duplex,Akinola Cole Crescent Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,4 baths,5 Toilets +Functional 58 Rooms Hotel In A Busy Commercial Location,Toyin Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +*brand New 5bed Duplex For Sale @ Magodo!! Slvmrsbiso*. A Newly Built 5bedroom Duplex All En Suite Ample Parking Space Barbed Fence Wire Automated Gate Cctv Cam Chandalier Fitted Fitted Kitchen Swimming Pool Laundry Room Gate House Study Room,Magodo Shangisha Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Semi Detached 4bedroom Duplex With A Room Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Units 4 Bedroom Duplex @ Aderniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +2 Wings Of Semi Detached Duplex,Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"420,000",0,0,0, beds, baths, Toilets +Land For Sales,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Newly Built And Tastefully Finished 3 Bedroom For Sale Off Allen, Ikeja",Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets +"Brand New 5 Bedroom Duplexes For Sale At Opebi, Ikeja",Salvation Road Opebi Ikeja Lagos,₦,"85,000,000",1,1,1,5 beds,4 baths,6 Toilets +"Fully Detached 5 Bedrooms Duplex For Sale, Ikeja Gra",Omole Phase 1 Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Affordable Land For Sale At Opebi Allen Ikeja Lagos,Opebi Allen Ikeja Lagos Opebi Ikeja Lagos,₦,"40,000,000",1,1,0, beds, baths, Toilets +Warehouse For Sale,"Ikosi Road ,oregun Industrial Estate, Ikeja Lagos. Oregun Ikeja Lagos",₦,"2,800,000,000",0,0,0, beds, baths, Toilets +Filling Station For Sale At Agidingbi Ikeja,Agidingbi Agidingbi Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,"Omole Phase1, Ikeja Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +New 4 Bedroom Duplex With Bq And Modern Facilities At Omole Phae 1 Ikeja Lagos,Omole Phase 1 Ikeja Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex Ensuite With Bq,Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +7 Acres Of Land For Sale,Hakeem Bello Alausa Ikeja Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets +"3 Bedroom Flats, Semi Detached Apartments",Ikeja Gra 2 Ikeja Gra Ikeja Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,3 Toilets +8 Units Of 3 Bedroom Flats In Ikeja Gra 1 With Bq For Sale,Ikeja Gra 1 Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Commercial Property 3 Floors Office Structure With 2 Large Warehouses Structure, Oregun Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 7 Bedroom Duplex With 4rooms Bq For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,7 beds,7 baths,7 Toilets +Medical Facility For Sale,Lagos Mainland Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +1 Acre Of Land Fenced And Gate,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Executive Newly Built 4 Bedroom Seni Detached Duplex With Bq,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Warehouse On A 3 Acres Of Land For Sale At Oregun Ikeja,Oregun Ikeja Oregun Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 5nos Of 5 Bedroom Terrace Duplex With A Room Bq,"Estate Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New Executive 5bedroom Fully Detached Duplex With 2 Bq For Sale At Ikeja.,Ikeja Adeniyi Jones Via Allen Bus Stop. Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Detached 5bedroom Duplex For Sale At Adeniyi Jones Ikeja Lagos,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedroom Duplex With A Room Bq For Sale At Allen Avenue,Akin Taylor Estate Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Office Space,Oregun Road Oregun Ikeja Lagos,₦,"1,500,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 8 Numbers Of 5 Bedroom Luxury Terrace Houses With Bq Each,"Akora Estate, Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Oduduwa Crescent. Ikeja Gra Ikeja Lagos,₦,"240,000,000",1,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,. Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Demolishable Property For Sale On 4000 Sqm At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"375,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built Fully Detached 5bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Executive 5 Bedroom Duplex With A Room Bq,"Adeniyi Jones Estate, Ikeja Adeniyi Jones Ikeja Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Executive Brand New 5 Units Of 5bedroom Terrace Duplexes At Ikeja Adeniyi Jones For Sale.,Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Brand New 8units Of 4bedroom Terrace Duplex For Sale At Ikeja Adeniyi Jones.,"Ikeja Adeniyi Jones, Off Allen Bus Stop. Adeniyi Jones Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive Brand New 5 Bedroom Duplex With 2 Rooms Bq,Estate Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +Furnished And Service 5 Bedroom Fully Detached Duplex With Swimming Pool,G.r.a Ikeja Ikeja G.r.a Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets +Executive 4 Bedroom Terraced Duplex With Bq,"Opebi, Ikeja Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets +A Newly Built Semi Detached 4bedroom Duplex For Sale At Adeniyi Jones,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built All Ensuit 5bedroom Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Furnished 4bedroom Terraced Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Executive Brand New 8unit Of 4 Bedroom Terrace Duplexes With A Room Bq,Estate Off Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex With A Bq For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Wings Of 3 Bedroom Duplex For Sale At Ikeja,Sir Gabriel Taylor Estate Allen Avenue Ikeja Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,3 Toilets +Blocks Of Flat For Distress Sale At Opebi.,Opebi Ikeja Lagos,₦,"180,000,000",0,0,0,10 beds,10 baths,10 Toilets +Lovely 6 Bedroom Fully Detached House With 4 (no) 2 Bedrooms Flat For Sale At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds, baths, Toilets +Brand New 5 Bedroom Luxury Town House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Furnshed 4 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +Land For Sale @ Omole Phase Ii (best Option To Purchase),Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Ikeja Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets +"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +"Land For Sale ,great Land Offer At Magodo Phase 2......readily Available",Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +"Land Measuring 2,500 Sqm",Allen Avenue By Opebi Roundabout; Opebi Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Storey Building Along Allen Avenue Road,Along Allen Avenue Close To Opebi Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +18000sqm (1.8 Hectares),Ajao Road Off Adeniyi Jones/awolowo Way Adeniyi Jones Ikeja Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 3 Acres,"Alausa, Ikeja Alausa Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +40 Units Of 3 Bedroom Terrace Duplexes With An Inbuilt Maids' Room,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"2,800,000,000",0,1,0,4 beds,3 baths,4 Toilets +Bareland Measuring 2600sqm,Afolabi Awosanya Street Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 2 Plots (1,428.761sqm)",On Oba Akran Road Oba Akran Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 4200 M2,Awuse Estate; Opebi Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Built 4bedroom Terraces In Maryland,Mende Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 2 And A Half Plots,"Agidingbi Junction, Awolowo Way Ikeja Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Berry Court Omole Phase 2 Extension,Magodo Ikeja Lagos,₦,"21,000,000",1,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"235,000,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +"*for Sale: Fuel Station Off Agidingbi Road, Ikeja* Petrol Station For Sale With Transferable Dpr Licence Location Alausa Ikeja",Agidigbi Agidingbi Ikeja Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex With Modern Day Structure,"Amazing Grace Estate, Airport Road(ikeja) Ikeja Lagos",₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,An Estate Off Adeniji Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,5 Toilets +A Relatively New 5bedroom Duplex With A Bq Sitting On 450sqm Of Land,Omole Phase One Ikeja Gra Ikeja Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets +Massive Commercial Building On Land Measuring 2000sqm At Isaac John Street,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Luxury New Mansion This Property Finished Fully 5 Bedroom Detached Duplex And 2 Rooms Boy's Quarter,Ikeja Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale On Allen Major Road,... Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Land At Berry Court Estate Omole,Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets +Newly Completed And Furnished 5 Bedroom Duplex With Bq,Magodo Phase 2 Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets +In Allen Avenue (4 Storey Building The Wing Of Formal Mama Cass Restaurant,Allen Avenue Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +3700sqm Land For Sale At Ikeja,"Oba,akinjobi Way Ikeja Ikeja Gra Ikeja Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Mixed Develop Land For Sale 1,500sqmat Ikeja Gra","At Adekunle Fajuyi Way,ikeja Gra Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +"Residential Land For Sale 836sqm [email protected] Akintola Street Gra,","Ladoke Akintola Street Gra,lagos State Ikeja Gra Ikeja Lagos",₦,"160,000,000",0,0,0, beds, baths, Toilets +A Massive Warehouse For Sale 1 Acres,Oba Akran Road Oba Akran Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"20,000sqm Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets +3486m² Mixed Develop Land Ikeja Gra For Sale,@adekunle Fajuyi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +1600sqm Residential Land For Sale At Ikeja Gra,"Ladipo Bataye Street, Gra Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +Purely Residential Land For Sale 1956sqm Ikeja Gra,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +"Prime Land For Sale 1,500sqm For Sale At Ikeja Gra","At Showemimo Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Certificate Of Occupancy (c Of O),Gra Ikeja (ajisafe Opposite Senator Amosun House). Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5,500m² Land At Oba Akinjobi Way. Ikeja Fine Sale",Oba Akinjobi Way Ikeja Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Multistory Commercial/industrial Building,Plotc 2a Ikosi Road Oregun Ikeja Oregun Ikeja Lagos,₦,"1,633,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With 2 Rooms Detached (bq),"Ikeja Gra, Ajisafe Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Bare Land 1,260sqm @joel.ogunnaike Str,ikeja For Sale","Joel Ogunnaike Start,ikeja Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +"1,500sqm Land For Sale At Eso Close,ikeja Gra","At Eso Close,off Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +Bare Land For Sale 3700sqm At Oduduwa Crescent Ikeja,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Prime Land For Sale Ikeja Gra Size:3400sqm,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"4,100sqm Land For Sale At Ikeja",At Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1000sqm Bare Land For Sale At Oduduwa Crescent, Ikeja Gra","Ladoke Akintola Street Gra,lagos State Ikeja Gra Ikeja Lagos",₦,"160,000,000",0,0,0, beds, baths, Toilets +1625sqm Prime Land For Sale At Ikeja Gra,Adekunkle Fajuyi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"500sqm Prime Land At Oduduwa Cr,ikeja Grafor Sale","Oduduwa,crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"98,000,000",0,0,0, beds, baths, Toilets +"Mixed Develope Land 1,100sqm At Oba Akinjobi Way Ikeja Gra",@oba Akinjobi Way Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplexes,"Off Oremeta Street, Oregun,ikeja Oregun Ikeja Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Registered Surveys,Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +A Newly Built 5 Bedroom Duplex Terrace With B/q,"Off Joel Ogunaike Street, G R A Ikeja. Ikeja Gra Ikeja Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Newly Built 5 Bedroom Duplex Terrace With B/q,"Off Joel Ogunaike Street, G R A Ikeja. Ikeja Gra Ikeja Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Brand New House 4bedroom Terrace Duplex With 1room Bq For Sale With Modern Finishing For Sale,"Off Opebi Road Ikeja, Opebi Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +8 Units Of 4 Bedroom Plus Bq Condo Duplex At Awuse Estate Opebi.,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex In A Mini Estate,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Flat For Sale,Marries Court Ikeja Gra Ikeja Lagos,₦,"54,000,000",0,0,0,2 beds,2 baths,3 Toilets +188 Rooms 4 Star Hotel For Sale,Mma Road Airport Road(ikeja) Ikeja Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +32 Rooms Hotel For Sale,Maryland Maryland Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached With Bq,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 1800 Square Meters Bare Land,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +8 No. Luxurious Newly Built 5 Bedroom Fully Detached Duplex In A Mini Estate With Swimming Pool And Gym,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,7 Toilets +4 Bdrm Det. Hse Plus 4 (nos) 60% Completed Terrace Apts On 2481 Sqm,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"Residential Land Measuring 3700 Square Meters For Sale At Ikeja Gra, Ikeja.",Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Fully Detached Duplex For Sale At Awuse Estate, Opebi",Awuse Estate Opebi Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds, baths, Toilets +Luxury 112 Rooms Hotel For Sale,Allen Avenue Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Six (6) Acres Of Land Located Along Airport Road (local Airport) Ikeja,Airport Road Airport Road(ikeja) Ikeja Lagos,₦,"2,340,000,000",0,0,0, beds, baths, Toilets +Newly Built 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,6 beds,7 baths,7 Toilets +Newly Built 6 Bedroom Duplex,Opebi Ikeja Lagos,₦,"58,000,000",0,1,0,6 beds,7 baths,7 Toilets +Newly Built 3 Bedroom Flat At Off Allen Avenue Ikeja N40m,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built 4 Bedroom Duplex With A Room Bq And 2 Sittings, Swimming Pool In A Mini Estate",Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +"30rooms Hotel Wit Open Roof Top On 1000sqm On Allen Avenue,ikeja Lagos","Allen Avenue,ikeja Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +Irrestitble Five Bedroom Semi Detached Duplex + Bq At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +For Sale: 2bedroom +bq,Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,2 beds, baths, Toilets +A Commercial Building For Sale,Balogun Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +"Berry Court, Omole Phase Ii Extension Scheme Ii",Omole Phase 2 Extension Ikeja Lagos,₦,"21,000,000",0,1,0, beds, baths, Toilets +Big Shop For Sale Directly On Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Big Shop For Sale Directly On Awolowo Way Ikeja,Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Shop For Sale Directly On Awolowo Way Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Shop For Sale Directly On Awolowo Way Ikeja,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Newly Built Four Bedroom Terraced Duplex At Ikeja, Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,4 Toilets +Newly Built 5bedroom Fully Detached House With A 2 Room Bq,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Residential Land,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished And Finished 5 Bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 2units Of 5bedroom Maisonette With A Room Bq Each,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Units Of 4bedroom Terrace Duplex With A Room Bq In A Serene Environment,"Opebi, Ikeja Opebi Ikeja Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Residential Land At Awuse Estate,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Of 7 Units Of 5bedroom Terraces And A Detached House With A Room Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Corner Piece Plots Of Land Measuring 1,968.76sqm",Agbaoku Street Off Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Affordable Land In Omole Phase Ii Lagos,Omole Phase Ii Extension Ikeja Lagos,₦,"16,000,000",1,1,0, beds, baths, Toilets +Affordable Lands For Sale At Isheri North Lagos,Isheri North Ikeja Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets +12 Units Of 4 Bedroom Condo Duplex Plus A Room Bq,Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Units Of Newly Built Terrace Duplexes,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 12 Rooms Luxury Hotel,Balogun Off Lagoon Hospital Awolowo Way Ikeja Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Lovely 5bedroom Detached Duplex With 2rooms Bq At Ikeja Behind Shoprite.,"Ikeja, Alausa Behind Shoprite. Alausa Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 12 Rooms Hotel For Sale And Leasing Too At Ikeja Balogun.,Ikeja Balogun Bus Stop Off Awolowo Way. Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Hotel At Ajao Estate Along Int. Airport,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Executive 5 Bedroom Duplex With Two Rooms Bq,Behind Shoprite Alausa Ikeja Alausa Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets +A Brand New 3 Bedroom Semi Detached Duplex,Sariki Aro Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +A Fully Detached 10 Bedroom Duplex With 1 Room B/q,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,10 beds,4 baths,4 Toilets +85m 2units Of 4bedroom Duplex Dor Sale At Oregun Ikeja Lagos,Oregun Ikeja Oregun Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Warehouse On A Property Of Approximately 6,800m2.", Oregun Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Fully Detached Duplex,... Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets +Mansion, Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,7 beds,9 baths,9 Toilets +2 Plots Of Land Available In Oregun,Oregun Ikeja Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets +Newly Built & Tastefully Finished 5 Bedroom Detached House + Bq,. Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 1251sqm (45m/plot),"Alhaji Muili Street By Oluyole Bus Stop, Kudirat Abiola Way Oregun Ikeja Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets +"Newly Built Four(4) Bedroom Terrace House Having All Ensuite Bathrooms, Dedicated Garage And Self Serviced Inside Awuse Estate",Awuse Estate Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale 2500sqm Of Land At Mobolaji Bank Anthony Ikeja,Along Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Newly Built 4/5 Bedroom Terrace Duplexes + Bq & Elevator,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Skeletal 5 Floors Of Open Plan Offices Plus Warehouse Spaces Attached And Banking Hall,Acme Road Agidingbi Ikeja Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Newly Built, Tastefully Finished, Luxury & Furnished Block Of 6nos 3brm Apartments + Bq Each & Pool @ Allen Avenue, Ikeja. #100m/flat",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets +"*urgent Sale:* ???? *a Well Maintained/fairly New & Tastefully Furnished 4brm Terrace Duplex + Bq & Gen In A Serviced Mini Estate @ Opebi, Lagos.* *price: #85m.",Opebi Opebi Ikeja Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +"*urgent Sales:* ???? *table Land Measuring 500sqm @ Oduduwa Crescent, Ikeja Gra, Lagos.* *price: #100m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"*urgent Sales:* ???? *a Demolishable Detached House + Bq On 3,700sqm Land @ Ikeja Gra, Lagos.* *price: #750m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 600sqm & 680sqm @ Odùduwà Cr., Ikeja Gra, Lagos.* *price: #150m Each, G. Consent.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 1,600sqm With Demolishable Bungalow Off Sowemimo Street, Ikeja Gra, Lagos.* *price: #260m, C Of O.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +"*urgent Sales:* ???? *a Fenced & Gated Land Measuring 870sqm @ Ikeja Gra, Lagos.* *price: #170m, G. Consent.*",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Flat,"Sasegbon Street, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 3 Bedroom Terrace Building And Fully Seviced,Remi Fani Kayode Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets +A Newly Built 5 Bedroom Duplex In A Serene Neighborhood,Hamony Eastate Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex With 2 Sitting Room And A Store,"Church Street, Opebi Ikeja Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Boys Quarter,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat,"Remi Fani Kayode Street, Ikeja, Gra Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Nice Looking 5 Bedroom Semidetach Duplex With Bq,Esugbayi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,1,1,6 beds,6 baths,6 Toilets +A Luxury 3 Bedroom Terrace Building Fully Serviced And Well Furnished Kitchen With Swimming Pool.,Adeyemi Alakija Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",1,1,1,3 beds,3 baths,4 Toilets +"A New Terrace 4 Unit House, 4 Bedroom Duplex With Bq,furnished And Fully Ensuit In A Good Environment And Good Locatio",Ogunlowo Street Off Lagoon Hospital Awolowo Way Ikeja Awolowo Way Ikeja Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With 2 Rooms Boys Quarter,Dosumu Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Boys Quarter,"Victoria Odeniran Street, Salvation Opebi Ikeja Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite Semi Detached 5bedroom Duplex,Merit Residence Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Certificate Of Ownership,"3 Wura Esan Close,off Ashongbon Street Adeniyi Jones Ikeja Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +40 Rooms Hotel/guest House,. Awolowo Way Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 3 Bedroom Flats,Around Alade Market Allen Avenue Ikeja Lagos,₦,"38,000,000",0,1,0,3 beds,2 baths,3 Toilets +2 Plots Of Land,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Semi Finished Apartments,... Opebi Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace,Magodo Shangisha Alausa Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite Four Bedroom Duplex At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Clean 5 Bedroom Semi Detached Duplex At Oregun Ikeja N55m,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale: Purpose Built Office Complex On 4 Floors Arranged In 2 Wings At Off Obafemi Awolowo Way Ikeja N110m,Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Tastefully Furnished 3bedroom Flat Upstairs And Vacant Possession.,Minima Estate Airport Road(ikeja) Ikeja Lagos,₦,"80,000,000",0,1,1,3 beds, baths,3 Toilets +5 Bedroom Detached House With 3 Rooms Service Quarters On 2000 Square Meters Of Land,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,5 beds,3 baths,4 Toilets +"An Aluminium Manufacturing Company Comprising Of Equipment, Plant & Machinery, 2 Big Warehouses And Office Blocks",Billings Way Oregun Ikeja Oregun Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"4bedroom Duplex With 2 Rooms Bq In An Estate @ Adeniyi Jones, Ikeja 70m",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Property Comprising An Old (demolishable) Building & Bareland On Approximately 4000 Square Meters (1 Acre),Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +For Sale!!! 2 Units Of 6 Bedrooms Fully Detached Duplex With A Maid Bq At The Back,Awori Close Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds, baths, Toilets +"Berry Court, Omole Ph 2 Extension 18m Per Plot",Omole Phase 2 Ikeja Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,1,0,5 beds, baths, Toilets +"4 Bedroom Terrace Duplex With A Room Bq In A Serene Close At Off Opebi Road, Ikeja Lagos.",Off Opebi Road Ikeja Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Terrace Duplexes,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex With Bq,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built And Clean 5 Bedroom Terrace Duplexes In A Well Secured Estate.,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Newlybuilt, Well Finished With State Of The Art Finishings 4 Bedroom Semi Detached Duplex, All Round Tiles, All Rooms Ensuite With Guest Toilet, Fitted Wardrobes Fitted Kitchen Cabinets With Shelves, Pop Ceiling, 3 Units",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Terrace Duplex,Off Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 8 Units Of 4 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +3.8 Acres On Off Awolowo Way Ikeja Lagos. With A Deed Of Registered Conveyance,Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Executive Newly Built 2wings 4 Bedroom Duplex With A Room Bq,Estate Off Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +40 Units Of 3 Bedroom Terrace Duplexes With A Room Bq,At Ikeja Gra Ikeja Lagos,₦,"3,200,000,000",0,0,0,3 beds, baths, Toilets +Executive 6 Units Of Serviced Three Bedroom Flat,Off Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Duplex With A Bq,Off Allen Bus Stop Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Executive Brand New 4 Bedroom Terrace With Two Rooms Bq,Off Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Semi Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Duplex,"Off Bayo Shodipo Street, Off Akinremi Street, Anifowoshe Ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +Executive 4wings Of 3 Bedroom Duplex Each Duplex Have Bq,Off Toyin Ikeja Toyin Street Ikeja Lagos,₦,"95,000,000",0,1,0,3 beds,4 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detach Duplex With A Room Bq In A Serene Estate,Akinola Cole Estate Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,1,1,6 beds,7 baths,8 Toilets +900sqm Land With C Of O,Oba Akran Oba Akran Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +It Is Lovely Dry Land At Ikeja,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +C Of O,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +12 Rooms Hotel With C Of O,Balogun Bustop By Lagoon Hospital Balogun Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Distress Sale: Dry And Fenced Land Measuring 1000sqm,Foluso Alade Street Opebi Ikeja Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 And Half Plot Of Land,Aromire Street Allen Avenue Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Allen Allen Avenue Ikeja Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets +One Acre Of Land With A Building, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Acres Of Commercial Land,Off Oba Akran Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Furnished 4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,0 baths,0 Toilets +5 Bay Empty Warehouses With Administrative Blocks,"Along Kudirat Abiola Way (oregun Road), Alausa Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Prime Land Measuring 10,000 Sqm",... Mobolaji Bank Anthony Way Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Serviced 3bedroom Flat For Sale In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Absolutely Exquiste Brand New 4bedroom Terrace In Ikeja Gra For Sale,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Solid 3000sqm Land For Sale,Off Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +A Newly Build 4flat Of 3bedroom Flat At Punch Estate Ikeja Lagos,Punch Estate Mangoro Ikeja Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Block Of Four 3bedroom Flat At Punch Estate By Airport Ikeja Lagos Title C Of O,Punch Estate Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Detached Duplex At Gra Ikeja Lagos,Femi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets +A Bungalow On A Full Plot Of Land Ikeja Lagos,Adepeju Mangoro Ikeja Lagos,₦,"24,000,000",0,0,0, beds, baths, Toilets +Brand New 5bedroom Duplex Detached With 2rooms Bq At Ikeja Gra On 300 Sqm Title C Of O,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets +"Block Of 5 Nos Of 3bedroom & 3 Shops,1 Unit Of Mini Flat Warehouse Corner Piece Of 546 Sqm At Opebi Ikeja Title C Of O",Opebi Opebi Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +A 900 Sqm At Oregun Ikeja Facing Major Road,Oregun Major Road Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +A Story House And Bq On A 1+ A Plot Of Land At Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +4 Numbers Of 3bedroom Flat Selling Per Flat Up And Dawn At Ikeja By Local Airport Inside Punch Estate,Punch Estate Airport Road(ikeja) Ikeja Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets +"(7) Seven Plots Of Land At Punch Estate Ikeja By Airport,his Good For Hospital, Company, Hotel,schools,etc",Punch Estate At Babaponmile Mangoro Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Four Floor Building At Kodesho Ikeja,it Vacant Formally Used By Federal Ministry Of Labour",Kodesho Awolowo Way Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +8 Flat On A Full Plot Land At Onipetesi Estate Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +"*unbeatable Deal In Magodo Gra Phase 1!* *the Plush, Magodo Gra...epitome Of Luxury* *the Plush* Is The True Definition Of Quality Living With The Very Best Of All Modern Amenities. Guaranteed Roi In The Plush Is Projected To Be At Well Over 150% In 24 M",Magodo Gra Alausa Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +Newly Built Bungalow,Ikeja Gra Ikeja Lagos,₦,"200,000,000",1,1,0,7 beds,7 baths,7 Toilets +A Brand New 4 Bedroom Detached Duplex With A Room Self Contain,Grace Estates Close To Mma2 Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets +Block Of 6 Units Of 2 Bedroom Duplex At Ikeja,21 Adesina Street Obafemi Awolowo Way Ikeja Lagos,₦,"155,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Ikeja,"31 Fani Kayode, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Semi Detached Duplex With A Room Bq,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Allen Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Detached Duplex With 2rooms Bq,Via Oba Akran Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"2,000sqm Of Land","Adeniyi Jones, Ikeja Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Duplex For Commercial Use At Ikeja, Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Four Bedroom Duplex Plus Bq At Ikeja,Adeboye Solanke Street Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious Four Bedroom Terrace At Ikeja, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached Five Bedroom Duplex With Four Room Bq At Ikeja,Corner Stone Estate Alausa Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Flat For Sale At Ikeja,Off Adeniyi Jones Street Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Well Finished 3 Bedroom Terrace Duplex, Oba Dosumu",Oba Dosumu Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Service 3 Bedroom Flat,Mende Villa Maryland Ikeja Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Prestigious Hotel, Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Flat With Excellent Facilittes, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedrooms Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious Dry Land (price Per Sqm), Ikeja Gra Ikeja Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +30 Plots Of Dry Land,Off Awolowo Road Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +"For Sale At Ikea Adeniyi Jones 1600sqmt Of Land At Akora Estate, Govt Consent",Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +2600sqm Land With Buildings Demolished Already With C Of O,Bisalap Adeniyi Jones Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,600sqm Land",By Oregun Road Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"36,000 Sqm Bare Land On 9 Acres At Ikeja",... Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted Building Sitting On 700 Sqm, Oba Akran Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land With A Solid Bungalow,... Opebi Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +40 Units Of 5 Bedroom Townhouses In Ikeja Gra, Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Arces And Plots Of Land,Ikeja Ikeja Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Acres Land,Agidingbi Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedrooms Detached House,"3, Ogundana Allen Avenue Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 3 Bedrooms Flats,"2,talabi Adeniyi Jones Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovely Built 3 Bedroom Terrace Apartment With Bq At Ikeja Gra N50m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Two Wings Of 4 Bedroom Detached Duplexes With Bq,"Opebi End, Henry Adefowope Street, Opebi Ikeja Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,3 Toilets +Solid Plot Of Land,"24, Talabi Adeniyi Jones Ikeja Lagos",₦,"95,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Completed 4 Bedroom Duplexes + Bq,. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedrooms Detached House,"10,regina Coker Balogun Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +A High Rise Office Building,5 7 Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxurious 5 Bedrooms Detached House,"10,regina Coker Awolowo Way Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +2000 Sqms Land The Title Of The Property Is Governors Consent,"Mende,maryland,ikeja,lagos Mainland Maryland Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Acres Land With Registered Conveyance,Off Ajao Road Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Vacant 5bedroom Detached House With Mini Flat Bq On 600 Sqm Of Land Title C Of O Location At A Close In Omole Phase 1 Ikeja Lagos Going For 100 Million,Omole Of Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Well Finished 4 Bedroom Duplex With A Room Bq In A Good Secured Estate At Opebi,Opebi Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With A Room Bq Attached For Sale,Ogunsoji Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Off Agidingbi Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Fenced And Gated Land Measuring 1,150sqm",Joseph Close Off. Alhaji Asabi Close Off Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2600 Sqm,Off Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +One Acre On Ladipo Oluwole,"Off Adeniyi Jones & Off Oba Akan, Close To Guinness Area Beside Chrisland School Oba Akran Ikeja Lagos",₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 8,820 Sqm",Ladipo Oluwole Street Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 2,400sqm",Ajao Road Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tate Of The Art 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built And Well Finished 3 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq , All Round Tiles, Fitted Wardrobes, Pop Ceiling, Fitted Kitchen Cabinets And Shelves, Separate Gates.",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Units Of 4 Bedroom Terrace,Church Street Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Warehouse,Oregun Close Oregun Axis Oregun Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1 Acre,Ladipo Oluwole Street; Off Adeniyi Jones Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Brand New 5 Bedroom Terrace Duplex With 1b/r Bq,"Ikare Close, Orimolade Section, Akora Estate Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,5 Toilets +680sqm Land, Oregun Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom House +2 Extra Rooms For Study And Luggage , + 2 Roombq, Swimming Pool, Big Compound Space ...150m Asking Negotiable",Omole Estate Awolowo Way Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds, baths,5 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Off Agidingbi Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Oregun Road Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Newly Built With State Of The Art , Well Finished And Clean 5 Bedroom Terrace Duplexes",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Apartment + Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 3 Bedroom Apartment With Bq,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Commercial Land Measuring 1 Acre,Directly Along International Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1100sqm Land In Ikeja,Central Business District (cbd) Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,7 Toilets +4 Bedroom Duplex With Guest Chalets Situated On 3482sqm Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + Bq, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2 Wings Of 5 Bedroom Duplex With A Bq And Lobby On 670 Sq Metres Land Within An Estate, Agidingbi, Off Acme Road, Ikeja. C Of O. N100m Asking.",Of Awolowo Way Awolowo Way Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +A House,Oladapo Street Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Duplex,Emmanuel Ikeja Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,5 Toilets +750sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 8 Bedroom Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,8 Toilets +500sqm Of Land,Gra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +13 Rooms Hotel,Tonade Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets +Newly Built Duplex With Swimming Pool And Gym +boys Quarter,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"420,000,000",1,1,1,6 beds,6 baths,7 Toilets +Two Wings Duplex Of 4 And 3 Bedrooms + 1 Room Bq At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Function School With 22 Class Room,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets +Newly Executive 6 Bedroom Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets +"8,200sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached House With A Lovely Mini Flat Bq,Howson Wright Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,0 Toilets +An Exclusive Hotel On 2090 Square Metres,Toyin Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,. Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +"10,460 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Acres Of Land,Off Acme Road Ikeja Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Decent 4bedroom Terrace Duplex For Sale,Ogundana Estate Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Plot Of Land For Sale At Oregun Ikeja Lagos,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,5 Toilets +A 5 Bedroom Duplex With 2 Rooms Bq,Crescent Estate Maryland Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +A 4 Bedroom Terraced Duplex,Allen Avenue Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3bedroom Flat With Registered Conveyance For Sale In Ikeja,Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,2 Toilets +A Coner Piece Plot Of Land,By Adeniyi Jones Oba Akran Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice Block Of 3 Bedroom,Adeleke Allen Avenue Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,2 baths,2 Toilets +Land Measured 2700sqm With Old Bungalow,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Secondary School For Sale At Opebi Ikeja,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,"Off Adeniyi Jones, Ikeja Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,1,4 beds,5 baths,4 Toilets +A 4 Bedroom Detached House With A Room Bq,April Haven Court Ikeja G.r.a Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Warehouse On Opebi On 1,800sqm",Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4(nos ) 3bedroom Flat Off Allen Avenue Ikeja Lagos,Allen Avenue Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 350sqm Of Land,Allen Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000sqm Of Land",Opebi Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 3 Bedroom Flat,Allen Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,2 baths,3 Toilets +2 Newly Built Fully Detached Duplex With A Room Bq,Off Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,5 Toilets +All Room Ensuit 5 Bedroom Duplex With Cofo,Omole Phase2 Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +A 230sqm Of Land,Phase 1 Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Emmanuel Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Duplex At Omole1 For Sale,Omole Omole Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +A 5 Bedroom Detached Duplex,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex At Opebi Ikeja Lagos,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +School For Sale,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets +School For Sale,Opebi Area Opebi Ikeja Lagos,₦,"400,000,000",1,0,1, beds, baths, Toilets +Hotel For Sale,Tonade Area Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets +A 550sqm Of Land,Ogunusi Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2nos 5bedroom Duplex +bq,Akinremi Street Obafemi Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,4 Toilets +A 6 Bedroom Detached House With 2 Rooms Bq,Off Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely Built 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Unit Of 3 Bedroom Flat,Abiodun Close Allen Avenue Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,2 baths,3 Toilets +Land Measured 2700sqm With Old Bungalow,Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,9 beds,8 baths,8 Toilets +2nos Of 4bedroom Duplex,"2, Bayo Sodipo Oba Akran Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +6 Bedroom Duplex,Ladioke Akintola Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets +5 Bedroom Flat,Oregun Alausa Ikeja Lagos,₦,"38,000,000",1,1,0,5 beds,5 baths,5 Toilets +Averagely New 3bedroom Flat,Tejumoye Close Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,3 Toilets +St Gloria School On An Acre Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Flat,Mende Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Terrace 4 Bedroom Duplex With 2 Rooms Bq At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Wing Of 4 Bedroom Semi Detached House Plus 1 Bq,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Units Of 4 Bedroom Fully Detached Duplexes In A Mini Estate At Gra Ikeja.,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +An Helicopter Service Property On 2 Acres Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,Isaac John Ikeja Gra Ikeja Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Five Bedroom Duplex,Faithfulness Omole Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Hotel For Sale,Tonade Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets +Fully Detached 5 Bedroom House At Ikeja Gra,Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Mansion House,Seun Street Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land,Gra Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +An 850sqm Of Land,Shonibare Estate Maryland Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 6 Bedroom Duplex With Boys Quarter,Ogundana Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets +Open Plan Office Space Of 4bedroom Flat,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,4 beds,2 baths,2 Toilets +Hotel With Restaurant,Tonade Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"35,000,000",1,0,1,10 beds,10 baths,10 Toilets +"4,000sqm Of Land",Gra Ikeja Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4numbers Of 3bedroom Flat With Registered Conveyance For Sale In Ikeja,Dopemu Airport Road(ikeja) Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,2 Toilets +A 5 Bedroom Detached House,Off Sobo Arobiodu Street Ikeja G.r.a Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 3bedroom Flat Size Good For An Office Or Residential,Abiodun Close Allen Avenue Ikeja Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets +Brand New 6 Bedroom Duplex With A Room Bq,Off Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,6 Toilets +A 4 Bedroom Detached House With A Room Bq,Off Oduduwa Crescent Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached House With 2 Rooms Bq,Isaac Jones Street Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace House + A Room Bq, Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3,000 Square Metres Office Space",Off Agidingbi Agidingbi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Off Oregun Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +10 Bedroom House,Off Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0,10 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikeja Gra Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets +Governors Consent,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +Luxury 3 Bedroom Apartments With Excellent Facilities,Gra Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of Newly Built 2 Bedroom Flat With 2 Rooms Bq At Ikeja,Oritse Street Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,3 Toilets +Land For Sale At Ikeja,Onipetesi Estate Mangoro Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Floors Of 500 Sqm Office Space In Ikeja,Opposite Refuge Mortgage Bank Opebi Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,6 Toilets +Irresistible Eight Bedroom Detached Duplex At Ikeja, Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,8 Toilets +Decent Complex + Penthouse At Ikeja, Oba Akran Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex At Ikeja,Longe Street Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of Newly Built 4 Bedroom Duplex + Bq At Ikeja, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Completed And Tastefully Finished 2wings 4bedrooms Semi Detached House Duplex With 2rooms Massive Penthouse On Each Unit On 2 Floors,Opebi Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom House At Pristine,Pristine Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Terrace Houses With 1 Room Service Quaters,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +2100sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4200sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Executive 5 Bedroom Detached Duplex At Sobo Arobiodun Street,Sobo Arobiodun Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Full Plot Of Land At Ogunshefunmi Street,Ogunshefunmi Street Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Land,. Ikeja Gra Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Royal Estate Alausa Alausa Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,M K O Alausa Ikeja Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished And Well Maintained 3 Bedroom Flat In A Block Of 6 Flats,Opebi Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +700sqm Of Land At Oduduwa Crescent,Oduduwa Crescent Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +6500sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex On Isaac John Street,Isaac John Street Ikeja Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +3800sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"3, 4, 5 Bedroom Terraces And Semi Detached Duplexes",Ikeja Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets +Seven Bedrooms Detached House With4 Living Rooms And 2 Floor Backhouse,Adeniyi Jones Ikeja Lagos,₦,"150,000,000",1,1,0,7 beds,7 baths,7 Toilets +Land,Opebi Allen Opebi Ikeja Lagos,₦,"40,000,000",0,1,0,0 beds,0 baths,7 Toilets +4 Bedroom Detached House With 2 Rooms Bq, Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Block Of Flats,Pade Odanye Close Off Adeniyi Jones Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Affordable Land For Sale In Magodo Gra, Ikeja(adloyaty)",Magodo Gra Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Flat,Pade Odanye Close Off Adeniyi Jones Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 4 Bedroom Terrace Duplex With Bq,Ikeja Gra Ikeja Lagos,₦,"135,000,000",0,0,1,4 beds,5 baths,5 Toilets +The Berry Court,Omole Phase 2 Ikeja Lagos,₦,"5,000,000",1,1,0, beds, baths, Toilets +Newly Built 8 Unit Of Luxury 4bedroom Detached Houses On Three (3) Floor,"Ikeja Gra, Ikeja, Lagos State Ikeja Gra Ikeja Lagos",₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Triplexes Omega Court Phase 1 And 2,"Victoria Odediran Street, Salvation Road Opebi Ikeja Lagos",₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +"???? Semi Direct Brief For Sale Oduduwa Crescent Gra Ikeja Lagos Old Detached House On 2,000 Sq Meter Priece: 400 Million Asking Title: Lagos State Registered Title Call: Taiye [redacted]91 Oretayos Global Services","Oduduwa Crescent Ikeja Gra, Ikeja Lagos Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +"90% Completed 4units Of 4 Bedroom Detached House, Plus 4units Of 60% Completed Terrace Aparments On 2481 Sq Mt Land",Sasegbon Street Ikeja Gra Lagos Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,4 beds,5 baths,5 Toilets +Purpose Built Office Complex On 4 Floors Arranged In 2 Wings And A Penthouse. Other Ancillary Building Includes A Generator House And A Gate House,Afisman Drive Off Akinremi Street Anifowose Ikeja Lagos Oba Akran Ikeja Lagos,₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets +"For Sale: Purpose Built Office Complex On 4 Floors Arranged In 2 Wings And A Penthouse. Other Ancillary Building Includes A Generator House And A Gate House @ Afisman Drive, Off Akinremi Street, Anifowose, Ikeja. N110m (negotiable).","Afisman Drive, Off Akinremi Street, Anifowose, Ikeja. N110m (negotiable). Adeniyi Jones Ikeja Lagos",₦,"110,000,000",0,0,0,10 beds,10 baths,10 Toilets +"3 Bedroom Fully Detached, Terrace And Flats",Ikeja Ikeja Gra Ikeja Lagos,₦,"135,125,000",1,1,0,3 beds,3 baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths, Toilets +8 Nos. 5 Bedroom Terrace Duplex + 1 Room Bq,Ikeja Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths, Toilets +News Newly Built 4 Bedroom House With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Terraced 4bed Suplex,Estate Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Dry Standard Plot Of Land,Opebi Link Road Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Duplex All Ensuite,Gra Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Solid 7 Bedroom Detached House + Pent House With A Storey Building Of 2 Nos 2 Bedroom Flat,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets +2 Units Of 4 Bedroom Flat With 2 Units Of 2 Bedroom Bq,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Deluxe 5 Bedroom Terraced Duplex In Akora Villas Estate, Adeniyi Jones","Akora Villas Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Strategically Located 4,000sqm Land Fenced And Gated Within A Close On Oduduwa Crescent Ikeja G.r.a","Oduduwa Crescent, Ikeja G.r.a Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets +8 Bedroom House For Sale At Ikeja Gra,Lkeja Gra Lagos Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +2 Units Of 4 Bedroom Flat,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets +600sqm Of Land For Sale At Omole Phase 2 Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets +600sqm Of Land For Sale At Omole Phase 2 Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets +"1900sqm At Joel Ogunaike Opposite Country Club, Ikeja Gra N680m",Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +"A Functioning 20 Rooms Hotel For Sale Off Allen Ave, Ikeja",Ogundana Street Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets +Two Plot Of Land Opebi Road,Opebi Opebi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Flats,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tastefully Finished 5 Bedroom Duplex With Bq,Adeniyi Jones Axis Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +3bed Room Flat,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Town Houses In One Compound,Allen Avenue Allen Avenue Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bed Room Duplex, Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets +4bed Room Duplex,Magodo Shangisha Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets +Two Wing Duplex,Toyin Toyin Street Ikeja Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4 Flats,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,10 beds,9 baths,9 Toilets +3story Building,Ikeja Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths,9 Toilets +Newly Built Luxurious Fully Furnished Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +"18,300sqm (4.5acres) Land For Sale",... Obafemi Awolowo Way Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Detached House With 2 Rooms Bq,Off Adeniji Jones Ikeja Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Building Facing A Very Busy Major Highway For Sale @ Distress Price,Ikeja Lagos,₦,"70,000,000",1,0,0,8 beds,8 baths,8 Toilets +Luxury 5 Bedroom Fully Detached House,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land Measuring 5, 100 Sqm For At Joel Ogunaike Ikeja Gra Lagos",Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,200 Sqm For Sale At Olowu Ikeja Lagos",Olowu Street Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"1, 600 Land Fenced And Gated For At Ikeja Gra Lagos",Off Sowemimo Strret Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 2, 550 Sqm For Sale At Ladoke Akintola Ikaja Gra Lagos",Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"4, 000 Sqm Of Land For Sale Off Adeniyi Jones Avenue Ikeja Lagos",Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +5bedroom Super Luxury Detached Duplex Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedrooms Storey Building Luxury Tastefully, Finished, With Swimming Pools At Ikeja Gra",Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land Measuring 670 Sqm On Corner Piece For Sale At Ajao Estate Lagos,Ajao Estate Lagos Airport Road(ikeja) Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +800 Sqm Of Land For Sale At Oba Akran Ikeja Lagos,Oba Akran Street Oba Akran Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 27, 000 Sqm For Sale At Oba Akran Ikeja Lagos",Oba Akran Street Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +1.6 Hectares (4 Acres) Of Land For Sale Close Muritalla Mohammed Airport Mm2 Ikeja Lagosa,Airport Road Ikeja Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Land Measuring 500 Sqm For Sale At Off Isaac John Ikeja Gra Lagos,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +500 Sqm Of Land For Sale At Off Oduduwa Close Ikeja Gra Lagos,Oduduwa Close Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +2 Acres Of Land For Sale At Opebi Allen Ikeja Lagos,Opebi Allen Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"5,391 Sqm Of Land For Sale A Long International Airport Road Lagos",International Airport Road Lagos Airport Road(ikeja) Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Units Of 3 Bedrooms Semi Detached Duplex Self Compound,Ikeja Lagos,₦,"34,000,000",0,1,0,3 beds,4 baths,5 Toilets +2500 Square Metres Land, Allen Avenue Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached House,Off Salvation Road Opebi Ikeja Lagos,₦,"295,000,000",0,0,0,7 beds,7 baths,8 Toilets +A Tastefully Finished 3 Bedroom M Block Of Flat,Abule Ogba Ikeja Lagos,₦,"16,500,000",0,0,0,3 beds,3 baths,4 Toilets +Warehouse Factory Block On 2.948 Acres Of Land,Off Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 (nos) Serviced 3 Bedroom Apartment,Off Bamishile Street Allen Avenue Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Town House,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With Boy's Quarters, Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,2 baths,3 Toilets +A Well Finished & Fully Furnished 3 Bedroom Serviced Apartment,Ikeja Lagos,₦,"5,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Town House,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built (80% Completed)4 Bedroom Terrace Duplex,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Luxury Duplex With Bq,Off Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House, Mobolaji Bank Anthony Way Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Detached House On 2870 Sqm Land,Off Shobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,4 baths,4 Toilets +2 Wings Semi Detached 4 Bedrooms Duplex,Street Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,3 Toilets +5 Bedroom Duplex With Servants' Quarters,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex With 1 Room Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace Duplex With Bq,Street Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000m2 Double Winged 4 Bedrooms Semi Detached Duplex(dilapidated Building/tenement House),Estate Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Building With 1 Bedroom Bq,Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Mimimah Estate Airport Road(ikeja) Ikeja Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Acres Of Land At Ikeja,Oba Akran Ikeja Lagos,₦,"800,000,000",0,1,0, beds, baths, Toilets +"Land, Apartment, House",Omole Phase 2 Extension Awolowo Way Ikeja Lagos,₦,"5,000,000",1,1,0,4 beds,4 baths,4 Toilets +4units Of Exquisitely Designed And Luxuriously Finished Semi Detached Duplexes For Sale At Adeniyi Jones Ikeja Lagos Nigeria,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +8units Of Brand New 5bedroom Fully Detached Houses For Sale In Ikeja Gra.,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +84rooom Hotel For Sale In Ikeja Close To The International Airport.,Off Mobolaji Bank Anthony Way. Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,700,000,000",1,0,1, beds, baths, Toilets +How To Get Luxury Apartments At Affordable Prices In Nigeria,Ikeja Lagos,₦,"3,500,000",1,1,0, beds, baths, Toilets +3 Bedroom Estate Flat In Ikeja Gra For Sale,Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Omole Phase Kw 2341,Omole Phase 1 Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Detached Duplex For Sale In Omole Phase 1 Kw 2340,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets +Land For Sale In Omole Ikeja For N16m,Omole Ikeja Lagos,₦,"16,000,000",0,1,0, beds, baths, Toilets +Uncompleted Block Of Flats,Bradford Street Off Kudirat Abiola Way Oregun Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Dry 100% Land,Magodo Gra Ikeja Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +"A Plot Of Land Measuring 974sqm On Awolowo Way, Ikeja",... Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Well Finished 5 Bedroom Duplex,Michael Ogun Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Detached 5 Bedroom Duplex Plus 2 Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat At Ikeja,Awolowo Way Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +714sqm Land With Demolishable Bungalow For Sale I,... Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse On 9 Acres In Ikeja Industrial Estate For Sale:, Adeniyi Jones Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House At Ikeja Gra N160m,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Units Of 3 Bed Room Flat @ Allen Avenue,Allen Avenue Allen Avenue Ikeja Lagos,₦,"650,000,000",1,1,0,3 beds,2 baths,3 Toilets +Plots Of Land,0 Opebi Ikeja Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom (all En Suite) Bungalow For Sale In Ikeja Kw 1409,Magodo Phase 2 Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths, Toilets +2 Nos Of 5 Bedroom Semi Detached Duplex For Sale Kw 1404,Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths, Toilets +"3,000sqm Of Land",Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel For Sale At Ikeja Kw 1946,Opebi Ikeja Lagos,₦,"180,000,000",0,0,1,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive Plaza For Sale (kw1201),Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Exquisite 5 Bedroom Duplex For Sale In Omole Phase 1 Kw 2096,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets +6 Storey Building Office Complex For Sale At Ikeja Kw 1421,Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Duplex For Sale In Ikeja Kw 1757,Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths, Toilets +5 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex. (kw 184),Oregun Ikeja Lagos Oregun Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,6 baths,6 Toilets +Duplex,0 Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Opebi Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of 18 Luxury Flats,Ikeja Gra Ikeja Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets +New And Exquisitely Finished 5 Bedroom Terraced Duplexes,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex With Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Bungalow With 1 Room B/q For Sale In Ikeja Kw 1394,Gbemisola Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,2 baths, Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,4 baths,0 Toilets +Tastefully Designed 5 Bedroom Detached Duplex With 1 Room B/q For Sale At Ikeja Gra Kw 1462,Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths, Toilets +Mini Estate,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 2500 Square Metres,Alausa Cbd Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: 4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +A Well Maintained Fully Detached 5 Bedroom Duplex,Omole Phase 1 Estate Agidingbi Ikeja Lagos,₦,"135,000,000",1,0,1,5 beds, baths, Toilets +2 Bedroom Flat,0 Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +6 Bedroom Detached Duplex,0 Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Plots Of Land For Sale At Ikeja Kw 2108,Wempco Road Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built And Tastefully Designed 5 Bedroom Semi Detached Duplex For Sale In Ikeja Gra Kw 1465,Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,5 Toilets +Amazing Brand New 4 Bedroom Detached Duplex For Sale In Allen Avenue Ikeja Kw 1573,Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Omole Phase 2 Extension Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,2 baths,3 Toilets +25 Acres Large Industrial Land With Structures,Industrial Estate Ikeja Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional Ceramic Tiles Producing Factory Sitting On 8 Acres Of Land,. Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +House For Sale. A Purposed Designed Commercial Property With Approval For 6 Floors.,Oba Akran Ikeja Lagos,₦,"300,000,000",0,1,0, beds, baths, Toilets +188 Rooms 4 Star Hotel,Airport Road Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: A Newly Built Semi Finished 5 Bedroom Semidetached Unit With An Attached Bq; Job Vacancy!!! A Qualified Estate Surveyor With 5 Years Experience And Has Passed Niesv Exams Should Send Applications And Cv To [redacted],Salvation Road Opebi Ikeja Lagos,₦,"60,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Terrace Duplex With 1bedroom Bq,Maryland Maryland Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Floor Commercial Property,Acme Road Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Omole Estate Phase Ii Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,3 baths,3 Toilets +"2nos Of A Storey Buildings Of 6flats Of 3bedroom Flats, 4flats Vacant Already Of Land Measured 856.703sqm With [email protected] Ogba Ikeja",Oba Akran Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Four Bedroom Terrace Building With Bq,"Awuse Estate, Opebi Opebi Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets +"Outright Sale: A Large Warehouse With An Administrative Block Of Offices Built On 1acre Of Land. Price: ? 950,000,000 (negotiable).",Morrison Cresent Oregun Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Berry Court Omole Phase2,Omole Phase 2extension Ikeja Gra Ikeja Lagos,₦,"16,000,000",1,1,0, beds, baths, Toilets +"4 Bedroom Duplex With 3 Bedroom B/q All Ensuite At Awuse, Estate Opebi",Awuse Estate Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,6 baths,6 Toilets +Berry Court Apartment,Imole Phase 2 Extension Ikeja Gra Ikeja Lagos,₦,"60,000,000",1,1,1, beds, baths, Toilets +An Exclusively Built 5 Bedroom Duplex With Bq In A Conducive Environment Of Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,5 Toilets +Buy A House And Win A Car,Omole Phase 2 Ikeja Gra Ikeja Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets +Full Plot Of Land With 2 Nos Of 2 Bedroom, Oregun Ikeja Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 (nos) 4 Bedrooms Detached Houses Plus 60% Completed 4 (nos) 4 Bedroom Terrace Apartments,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nice 3bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Allen Av Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale At Opebi Ikeja N55m,Off Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex At Howson Wright Estate Olusosun N40m,Olusosun Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex At Opebi Ikeja N68m,Opebi Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New & Tastefully Finished 4 Bedroom Fully Detached Duplex At Allen Avenue Ikeja N63m,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Standard Full Plot,Off Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury New 4bedroom Duplex,Nice Environment Allen Avenue Ikeja Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3bedroom Flat For Sale,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Of 4br Terrace Duplex + 1rm Bq In Opebi Ikeja #50m,Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 5bed Room Duplex,Omole Ikeja Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikeja Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment Unit With Payment Option, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,3 beds,2 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex At Adeniyi Jones Ikeja N40m,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Allen Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale. A Block Of 4flat Of 3bedroom Each At Ikeja,Obafemi Awolowo Way Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +Property For Sale Olowu Street Ikeja,Olowu Street Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +A Plain Solid Dry Land Measuring About 500sqm,Off Odegbami Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0, beds,0 baths,0 Toilets +Newly Built 5bedrooms Duplex With A Room Bq,Omole Estate Phase 1 Agidingbi Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Nos 3 Bedrooms Flats,"4,ogunnusi Rpadroad Agidingbi Ikeja Lagos",₦,"25,000,000",0,0,0,3 beds,6 baths,6 Toilets +The Plush Estate Magodo Gra,Magodo Gra Phase 1 Isheri Off Berger Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Luxury Detached House With 3 Rooms Servant Quarters,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bay Warehouses With Offices Inside And A Service Reception,Morison Crescent Oregun Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Great Land Offer At Magodo Phase 2......readily Available,Magodo Phase 2 Ikeja Gra Ikeja Lagos,₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets +A Semi Deterch Duplex In Opebi,Opebi Allen Avenue Ikeja Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex At Cement Ikeja With C Of O,Cement Mangoro Ikeja Lagos,₦,"18,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built And Tastefully Finished 2 Units Of Luxury 5 Bedroom Fully Detached Houses + Bq Each In An Estate Off Adeniyi Jones, Ikeja, Lagos.",Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Tastefully Finished 3 Bedroom Flats (1st Floor) And 4 Bedroom (ground Floor) All Ensuite With 2 Units Of Mini Flat Bq At Marwa Brook Estate, Cbd Agidingbi, Ikeja.",Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +"Modern Tastefully Finished And Well Built 5 Bedroom Fully Detached With Spacious Fitted Kitchen In An Estate At Adeniyi Jones, Ikeja",Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress Sale Four Bedroom Duplex,Airport Airport Road(ikeja) Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +Estate Land For Sale; Berry Court Omole Phase Ii Extension,Omole Phase 2 Extension Ikeja Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets +Fairly New 4 Bedroom Terrace House With 1 Room Boys Quarter,Oroleye Street Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 7 Bedroom Duplex With 4rooms Bq Inside Estate Off Adenyi Jonse On Land Is 750sqm.,"In Well Secured Estate, Adeniyi Jones Ikeja Adeniyi Jones Ikeja Lagos",₦,"135,000,000",0,0,0,7 beds,7 baths,7 Toilets +Prime Commercial Land 4.17 Acres Corner Piece At Allen Avenue Round About,Bounded By Obafemi Awolowo Road. Allen Avenue. Ikeja Medical Road And Afolabi Aina Street. Awolowo Way Ikeja Lagos,₦,"3,500,000,000",0,1,0, beds, baths, Toilets +2 Wings Of 4 Bedrooms Duplexes,"Alhaji Jimoh Street, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Plots Of Dry Land With C Of O At Oregun,Oregun Oregun Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex With A Room Bq,Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Luxury Hotel + Pool,At Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 3bedroom Terrace Duplex With Modern Finish,"Off Adeniyi Jones, Off Ajao Road Adeniyi Jones Ikeja Lagos",₦,"35,000,000",0,1,0,3 beds,2 baths,3 Toilets +Land Measuring About 5948sqm For Commercial Purposes,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Hotel,Off Open I Allen Way Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +"8 Units Of 5 Bedroom Fully Detached Duplex Plus Inbuilt Bq + S/pool, With Modern Finishing In A Mini Court .",At Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"255,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Units Of 4, 3 And Mini Flats","Marwa Brook Street,cbd. Agidingbi Ikeja Lagos",₦,"65,000,000",0,0,0,7 beds,0 baths,0 Toilets +"8 Units Of Newly Built Of 5 Bedroom Terrace Duplex On 2floors With Bq Each,pumping Machine ,dedicated Central Generator Etc.",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Black Of Demolishable Duplex With Bq On 810sqm Of Land In A Well Secured Environment,At Off Allen Road Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +2 Nos Of 3 Bedroom Flat,Off Allen Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Functional Event Centre,Off Oregun Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4bedroom Bungalow With 2sitting Room Plus 2rooms Bq On 680sqm In An Estate, Adeniyi Jones ,ikeja",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets +"Newly Built 6 No's Of 3 Bedroom Luxury Flats With 1 Room Service Quarter Each On 1,000sq Meters,s/pool, Fitted Kitchen, Cctv Security, Elevator, Etc",Off Allen Road Allen Avenue Ikeja Lagos,₦,"600,000,000",0,1,0,3 beds,4 baths,4 Toilets +Massive Hotel At Ikeja,Muritala Muhammed Way Airport Road(ikeja) Ikeja Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Beautiful Furnished 4bedroom Terrace Duplex (pay And Start Cooking) Of (4units In The Compound) With A Bq In An Estate,In A Secured Serene Environment At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +8 Plots Of Land,Along Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Units Of Tastefully Finished 4 Bedroom Terrace Duplexes With A Room Bq.,Off Opebi Road Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex In A Well Secure Estate At Adeniyi Jones Ikeja,In A Well Secured Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Executive Newly Built 5 Bedroom House On 3floors With A Study, 3 Sitting Areas, Fully Fitted Kitchen, Cctv, Intercom Etc",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four Units Of Tastefully Finished 4 Bedroom Terrace Duplexes With A Room Bq.,Off Opebi Road Opebi Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +6units Of 4br Terrace Duplex,Allen Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Block Of Demolishable Building On Full Plot Of Land In A Well Secured At Adeniyi Jones,In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets +Six Bedrooms Semi Detached Duplex, Airport Road(ikeja) Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets +"5 Bedroom Fully Detached Duplex On 2foors With Spacious Rooms, Fitted Kitchen, Etc In An Estate At Adeniyi Jones Ikeja",In An Estate At Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +The Centurion Collection (ikeja Government Reserved Areas),"Olugbayi Street, Ikeja, Gra Ikeja Gra Ikeja Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom In Prime Location In Ikeja,Salvation Road Opebi Ikeja Lagos,₦,"37,500,000",1,1,0,4 beds,4 baths,5 Toilets +Off Plan 2 Bedroom Apartments In Opebi,Salvation Road Opebi Ikeja Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5bedroom Triplex At Prime Location In Opebi,Salvation Road Opebi Ikeja Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +"2units Of 3 Bedroom Duplex, 2units Of 3 Bedroom Apartment With 1unit Of 2 Bedroom Flat",Oregun Oregun Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Duplex With 2 Rooms Bq On 1000 Square Metres,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets +"4 Spacious Bedroom Terrace Development With A Study, A Laundry, A Room Bq And 3 Cars Parking",Ali Balogun Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1781 Square Meters Land At C B D Alausa, Ikeja",Central Business District Alausa Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"Luxury 5 Bedroom Detached House At Awuse Estate, Opebi","Henry Adefowope Street, Awuse Estate Off Opebi Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Flat With Bq,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 6 No. Luxurious Flats For Sale,"Cocosheen Close, Off Allen Avenue, Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"40,000,000",0,1,0,3 beds,2 baths,3 Toilets +Corner Piece Two Wing Duplexes Of 4bedrooms Each With Bq,"52, Ajanaku Street, Opebi, Ikeja, Lagos. Opebi Ikeja Lagos",₦,"230,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built Three Bedroom Apartment,Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Six (6) Bedroom Terrace Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex In A Serene Environment,Odegbami Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Duplex,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Built 5 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,1,0,6 beds,5 baths,6 Toilets +4 Bedroom Terrace House With 2 Sitting Rooms In Ikeja,Opposite Police Command Headquarter Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,1,0,5 beds,0 baths,0 Toilets +One Acre Of Land In A Serene Neighborhood,Inside Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Plaza / Complex / Mall For Sale,"2, Tokunboh Alli Street, Off Toyin Street, Ikeja, Lagos., Allen, Ikeja, Lagos Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0, beds,8 baths,10 Toilets +Lovely 5 Bedroom Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +Petrol Filling Stations For Sale On 4 Plots Of Land With A Story Building And Shops,Secretariat Alausa Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Flat,Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached Duplex With A Bq And Swimming Pool,Omole Phase 2 Ikeja Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex At Opebi, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 4 Bedroom Terrace Duplex,Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Well Built 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached Duplex With A Bq,Omole Phase 1 Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"92,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 6 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Omole Phase 2 Extension Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Duplex,Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex For Sale At Amen Estate Allen Ave Ikeja..going For 130m.,Amen Estate Allen Allen Avenue Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,7 baths,7 Toilets +"5 Bedroom Terrace Duplex For Sale At Ikeja Gra ,,going For 125m...very Spacious....good Security,pool And Other Facilities",Gra Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex With A Bq And Swimming Pool,Omole Phase 2 Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 6 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"125,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely 8 Units Of 3 Bedroom Flat,Omole Phase 1 Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Bq,. Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Semi Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Is Newly Built 6nos Of 3beroom Flat For Sale Inside An Estate In Off Adeniyi Jones Ikeja All The Rooms Are Ensult With Guest Toilet ?? Ground Floor Fixted Kitchen Cabinet Quality Marble Spanish Tiles On The Floor 50m Slightly Negotiable,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Well Built 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,. Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,Omole Phase2 Ikeja Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale Or Lease Rooms Luxury Hotel Ikeja Balogun Bus Stop Off Lagoon Hospital Awolowo Way Ikeja ...gov Consent And C Of O 150m Asking.. Lease 12m X 5yrs,Off Balogun Awolowo Way Ikeja Lagos,₦,"150,000",0,0,1,10 beds,10 baths,10 Toilets +Land,Omole Phase 1 Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Units Of 2 Bedroom Duplex,Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 5 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Allen Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"116,000,000",0,0,0,5 beds,0 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of 2 Bedrooms Flat,Ogba Ikeja Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex With A Bq,. Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Detached Duplex,Gra Ikeja Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely 6 Bedroom Detached Duplex,Ogba Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedrooms Detached Duplex With A Bq For Sale,Off Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex,"Opebi, Ikeja Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Four(4) Bedroom Semi Detached Duplex,Allen Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Hotel/guest House,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Hotel/guest House,Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +For Sale 4 Unit Of 4 Bedroom Terrace Duplex In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",1,1,0,4 beds,5 baths,5 Toilets +Block Of Flats For Sales,"Onipetesi Estate,mangoro, Ikeja Lagos",₦,"38,000,000",0,0,0, beds, baths, Toilets +Hotel/suite/guest House,Off Toyin Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale Newly Built 5 Bedroom Detached House In An Estate In Adeniyi Jones,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Hotel/guest House,"Awolowo Way, Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Block Of Flats For Sales,"Onipetesi Estate, Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Ikeja ( In Camberwall Estates ),"Abijo, Gra Ikeja Gra Ikeja Lagos",₦,"11,500,000",1,1,1, beds, baths, Toilets +A Fully Fenced Land Measuring 5800sqm With A Demolishable Old Building.,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With Swimming Pool Gym Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"69,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Detached House In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Omole Phase 2 Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bongalow For Sale,Off Alade Street Ikeja Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4bedroom Detached Jenny,Coker Estate Alausa Ikeja Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Prime Plot Measuring Approximately 3919 Sqms With C Of O At Opebi,Off Henry Adefowope Crescent Opebi Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Terrace Duplex For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets +Newly Built 5bedroom Terrace Duplex And A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bedroom Duplex And Bq,Ikeja Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +It Is A Two Wing Of Duplex Left Wing Is A 6 Br Right Wing Is 4 Br Duplex + 2br Flat.,Off Seriki Aro Obafemi Awolowo Way Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Fully Detached Duplex With Bq Sitting On 2000sqm Of Land All Ensuite,Off Isaac John Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,9 beds,9 baths,10 Toilets +A Semi Detached Duplex(one Side) For Sale,Afisman Drive Off Akinremi Street Anifowoshe Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets +"4 Bedroom, 2 Living Room Semi Detached Duplex(one Side Only)",Afisman Drive Anifowoshe Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets +"Forsale: Beautifully Furnished (pay And Start Cooking) 4 Bedroom Terrace Duplex (4units In The Compound But 2 Units Available For Sale) With A Bq In An Estate At Off Adeniyi Jones Avenue, Ikeja Lagos.",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +Full Plot Of Land With Demolishable Bungalow For Sale At Alausa Ikeja N35m,Alausa Alausa Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Semi Detached Duplex For Sale,Off Isaac Johnson Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Duplex,Off Isaac John Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,1,1,5 beds,6 baths,6 Toilets +6 Bedroom Detached House With 4 Rooms B/q And Guest Charlet With Swimming Pool On 2000sqm,Along Oduduwa Way Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Commercial Property,Along Aromire Road Allen Round About Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Guest House For Sale,Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Mixed Use Development Land,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Land,Ajisafe Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With 3 Room Bq,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Ikeja,"38, Oduyemi Street, Anifowoshe Ikeja. Lagos Ikeja Gra Ikeja Lagos",₦,"600,000",1,1,0, beds, baths, Toilets +726sqm Land Off Toyin Street.,Toyin Street Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +600sqm Land Off Awolowo Way,Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Ikeja,"38, Oduyemi Street, Anifowoshe Ikeja. Lagos Ikeja Gra Ikeja Lagos",₦,"600,000",1,1,0, beds, baths, Toilets +780sqm Along Salvation Road,Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +1400m2 Residential Land,Anuoluwapo Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"For Sale: 6units Of 3brm Flat, All Rooms En Suite",Ikeja Lagos,₦,"27,000,000",0,1,0,3 beds,2 baths,2 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Open Plan Purpose Built Office Complex On 5 Floor With 3 Floor Bq,Tokunboh Alli Street Off Toyin Street Toyin Street Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3nos Terraced Duplexes With 1 Room Bq (each),Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 8nos Of 4 Bedroom Terraced Duplexes With 1 Room Bq(each),Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Corner Piece 9 Acres Of Land Directly On Oba Akran Avenue.,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +1150m2 Plot Of Land,Ashabi Cole Alausa Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Land,Agidingbi Agidingbi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale,Anifowoshe Ikeja Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Sasogbon,Sasogbon Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +12 No Of Luxury 4bedroom Condo Duplex Plus A Room Bq.,. Opebi Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land Measuring 1781.28sqm At Cbd Agidingbi/alausa Ikeja Lagos.,. Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +4 No Of 5bedroom Fully Detached Duplex Situated In A Serene Environs @ Okeja Gra.,. Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Omole Phase1 Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Ultra Modern Building, Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Semi Detached House,Allen Avenue Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,"Omole Phase 2,magodo Ikeja Gra Ikeja Lagos",₦,"18,000,000",1,0,0, beds, baths, Toilets +3 Bedrooms Terrace Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths, Toilets +"Property For Sale In Ikeja Gra, 2 Plots, Asking 300m",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex Plus Bq In A Serene Area,1 Ogunsiji Close Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"74,999,999",0,0,0,4 beds,5 baths,6 Toilets +Land,Aromire Road Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,"Ibadan Close,off Agbaoku Street, Opebi Opebi Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +840sqm Of Land,Remi Fani Kayode Street Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +5 Bed Room Duplex With 2room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"185,000,000",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Built Five Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Super Finished 4bedrooms Semi Detached Duplex With Bq On Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"7 Units Brand New Duplex For Sale At Adeniyi Jones, Ikeja",Abba Johnston Crescent Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxurious 3bedroom Flat With Bq,Off Salvation Road Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Purposefully Built 34 Rooms Hotel Structure With Swimming Pool N 3 Conference Halls (60,50,16 Seaters Hall) On Land Size Of 2400sqmts Plot",Ikeja Gra Area Ikeja Gra Ikeja Lagos,₦,"900,000,000",0,0,1,3 beds, baths, Toilets +4 Nos Exquisitely Finished 5 Bedroom Semi Detached House,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"108,000,000",0,1,0,5 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached House With Bq In A Mini Estate Off Adeniyi Jones Avenue,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +20 Units Of Luxury 2 Bedroom Flats In A Serviced Mini Estate,Allen Avenue/ Toyin Street Allen Avenue Ikeja Lagos,₦,"700,000,000",1,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Duplex,"Omole Phase 1, Agidingbi Ikeja Lagos",₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built Luxury 6 Bedroom Duplex In Akora Estate,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,6 Toilets +3 Units Of 4 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets +C Of O,Oba Akinjobi Road Ikeja G R A Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"A Brand New Luxury And Tastefully Finished 4bedroom Semi Detached Duplex With Bq On Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"An Acre Of Land Measuring Over 4000sqm Slightly Off Adeniyi Jones,ikeja.lagos",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Luxury Terrace Duplex,Ikeja Gra Ikeja Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Duplex For Sale,G Cappa Estate Mobolaji Bank Anthony Way Ikeja Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets +"Newly Built A Storey Building With, Mini Flats And Room Selfs","Onilekere Cement Ikeja, Lagos Nigeria. Mangoro Ikeja Lagos",₦,"25,000,000",0,1,0,7 beds,7 baths,7 Toilets +"Newly Built A Storey Building With, Mini Flats And Room Selfs","Onilekere Cement Ikeja, Lagos Nigeria. Mangoro Ikeja Lagos",₦,"25,000,000",0,1,0,7 beds,7 baths,7 Toilets +"4 Bedroom Home Ensuite With 2 Sitting Rooms, 1 Study Ante Room, Kitchen, Pantry. 2 Rooms Bq Ensuite With Kitchentte. There Is No Conversion And Is A Single House. Title: Global C Of O, Government Consent And Deed Of Assignment. Price Negotiable.","House 7 Peace Court, 2/4 Adeyemo Alakija Street, Ikeja, Gra Opposite Dstv Ikeja Gra Office, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +C Of O,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +C Of O,Allen Avenue Ikeja Lagos Allen Avenue Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4br Terrace Duplex + 1rm Bq In Opebi Ikeja #50m,Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Strategically Located 7,000 Sqm Of Land",Off Joel Ogunaike Street Ikeja Gra Ikeja Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Emerald Garden Series.... For Your Residential & Commercial Plots @ Shimawa, Ikorodu, Ibeju Lekki, Mowe Ofada And So On","Ib, Alfred Olaiya Street Opebi Ikeja Lagos",₦,"4,200,000",0,1,0, beds, baths, Toilets +Land,Cbd Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,"Boundary With Magodo Phase Ii, Omole Phase Ii Ikeja Lagos",₦,"18,000,000",0,1,0, beds, baths, Toilets +Land,Magodo Phase Ii Ikeja Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets +100% Dry Land,Opic Isheri Ikeja Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets +Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrance Duplex For Sale,Off Opebi Rd Opebi Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semidetached Duplex For Sale At Adeniyi Jones Ikeja,Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets +Titans Empire Builders Prosperity And Property Is Sure,Allen Avenue Ikeja Lagos,₦,"38,000",0,1,0,3 beds,3 baths,3 Toilets +Four Storey Building, Allen Avenue Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 8 Nos Of 5 Bedroom Terrace, Adeniyi Jones Ikeja Lagos,₦,"640,000,000",0,1,0,5 beds,5 baths,5 Toilets +"A Well Maintained 5 Bedroom Fully Detached Duplex With 2 Sitting Rooms, 2 Boys Quarters (rooms), And Facilities",Omole Phase 1 Ikeja Lagos,₦,"140,000,000",0,0,0,7 beds, baths, Toilets +Fully Serviced Luxury Apartments With Bq And A Common Swimming Pool,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,0,0,3 beds, baths, Toilets +"Brand New 8 Nos Of 5 Bedroom Terrace All  Room Ensuit With 1 Room Bq On 1600sq Land In A Super Secure Serene Environment, Title C Of O.  Location : Akora Estate, Adeniyi Jones, Ikeja Lagos. ",Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets +6 Units Of 3 Bedroom Flat,Majekodunmi Street Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds, baths, Toilets +Six Nos Of 3 Bedroom Flat, Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of Semi Detached Houses With Bq,Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom House With Bq,"Ibadan Close, Off Agbaoku Street Ikeja Lagos",₦,"65,000,000",0,1,0,4 beds, baths, Toilets +For Quick Sale!!!! 4600sqm Land,"Directly On Aromire Road, Ikeja Ikeja Gra Ikeja Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets +5bedroom Duplex With 2 Room Bq For Sale At Ikeja Gra,Gra Ikeja Lagos,₦,"185,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Ogunsolu Mangoro Ikeja Lagos,₦,"13,000,000",0,0,0,5 beds,4 baths,4 Toilets +"A Dry Land For Sale At Asibi Cole Road, Off Lateef Jakande Road, Agidingbi Alausa Ikeja I","Alhaji Asabi Cole Road, Off Lateef Jakande Road, Agidingbi Alausa Ikeja Alausa Ikeja Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +8 Units Of 5 Bedroom Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"3 Bedroom Of Six Units With, Each Bq. C Of O For Sale. Preferred Corporate Tenant For The Whole Blocks.",Off Allen Allen Avenue Ikeja Lagos,₦,"300,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land Near Murtala Muhammed Airport For Sale,Near Murtala Muhammed Airport Airport Road(ikeja) Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets +"Newly Built And World Class Luxury 3 Bedroom With Bq, Cctv Cameras, Elevator/staires, Swimming Pool, Gym, 24hrs Light+security, Streetlight, Frontdesk Service, 200kva Standby Gen, Serviced And Kitchen Furniture Fitted. {each Flat #95million (asking)...}",Off Allen Allen Avenue Ikeja Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,5 Toilets +Land Near Murtala Muhammed For Sale,Close To Murtala Muhammed Airport Airport Road(ikeja) Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"7,000 Sq.m. Land",On Harold Sodipo Street Beside Avicenna School Ikeja Gra Ikeja Lagos,₦,"250,000",0,0,0, beds, baths, Toilets +One Acre Of Land,. Oba Akran Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +One Acre Of Land,. Oba Akran Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +2 Acres Of Land,On Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +One Acres Of Land,. Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +A Vacant Land,20 Sodipo Close Olusosun Ikeja Lagos Oregun Ikeja Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached House +2 Nos.mini Flats Bq,Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Block Of Apartments For Sale In Salvation Estate Ado Owode Ajah Lagos,"20, Oduyemi Street Awolowo Way Ikeja Lagos",₦,"65,000,000",0,0,0,10 beds,10 baths,10 Toilets +"A 2 In 1 Double Shop For Sale Opposite Mko Abiola Gardens In Ikeja. Very Suitable For Trading, Storage And Services",Mko Abiola Gardens Road Ikeja Alausa Ikeja Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets +Terraced Duplex For Sale," methodist Street Awuse Estate,off Opebi Road, Salvation Bus Stop, Ikeja Lagos State, Opebi, Ikeja, Lagos Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale Four Bedroom Terraced House In Ikeja Gra,Reverend Ogunbiyi Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Its On Over 500sqm Land At Magodo Gra Phase 1,Magodo Ikeja Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets +Ikeja City Estate,"29,ajao Road Off Awolowo Way Ikeja Obafemi Awolowo Way Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 650sqm By Balogun Bus Stop,ikeja.lagos",Balogun Balogun Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 620sqm With C Of O Off Awolowo Way,ikeja.lagos",Off Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +"A Corner Piece Land Measuring 750sqm Fenced With C Of O At Omole Phase I,lagos.",Omole Phase I Omole Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached Duplex At Maryland N90m,Maryland Maryland Ikeja Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Maisonette Duplex,Salvation Road Opebi Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +6plots Of Land At Ikeja Airport Hotel Axis,"Opp, Airport Hotel Oba Akran Ikeja Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex," allen, Ikeja Lagos",₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets +Newly Built Two Storey Building,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built Tastefully Finished Duplex, Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Detached House,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,9 Toilets +Block Of 2 Bedrooms Flat, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Duplex + Bq, Ikeja Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land, Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished (4) Bedroom Apartment,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4no 3bedroom Flat With 4rooms Bq,Boet Estate. Adeniyi Jones Ikeja Lagos,₦,"120,000",0,0,0,4 beds,3 baths,2 Toilets +4bedroom Terrace Duplex For Sale,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets +Well Finished 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Land,Ajao Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Jv On 750sqm At Ogba Gra,"Ogba Gra, Behind Exellence Hotel Agidingbi Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Acre Of Land For Sale At Wemco Rd,Wemco Rd Agidingbi Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"Brand New 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +"Tastefully Finished 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets +"Tastefully Finished 3 Bedroom Flat, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets +"Tastefully Finished 5 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +1 Acre Of Land For Sale At Alausa Cbd,Alausa Cbd Alausa Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Land, Oba Akran Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex For Sale,Alfred Gardens Oregun Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Tastefully Finished 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +1 Acre Of Land For Sale At Oregun Rd,Kudirat Abiola Road Oregun Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +1 Plot Of Land Strategically Located,Wemco Road Agidingbi Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Quarter Plot Of Land For Sale At Ogba,Ajayi Road Ogba Agidingbi Ikeja Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +4 Units Of 3 Bedroom Flats At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,12 beds,12 baths, Toilets +"Executive 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Land,Alhaji Jakande Road Agidingbi Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4 Flats On Land Measuring 648sqm,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +A School With Over 500 Students For Sale At Oregun Ikeja Lagos.,Oregun Ikeja Oregun Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Residential Land," fagba Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," adeniyi Estate, Ogba, Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land," samuel Abegunde/off Ajayi Road, Oke Ira, Ogba, Ikeja Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land," kayode Street, Ogba, Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Salvation Road Opebi Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Oduduwa Ikeja Gra Ikeja Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 5 Bedroom Terrace Duplex With A Bq,Alakija Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Well Built And Maintained 4 Bedroom Terrace Duplex,Talabi Adeniyi Jones Ikeja Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Flats Of 3 Bedroom Flat,Adeleke Obafemi Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 5bedrooms Duplex In Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Build 2bedrooms Duplex In Adeniyi Jones Ikeja,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Sarah Court, Adeniyi Jones, Ikeja* Title Registered Deed Of Assignment 3 Br Serviced Apartment With Bq N60m 4 Br Serviced Apartment With Bq N70m",Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Block Of Flats," gra, Ogba, Ikeja Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Flat," medium Housing Estate, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,4 beds,3 baths,3 Toilets +3 Bedroom Flat," off Wempco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat," off Wemco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex," giogious Estate, Ogba, Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Mini Flat," ogba Gra, Off Wempco Road, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex," akilo, Ogba, Ikeja Lagos",₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets +Landed Property With Survey,Power Line Area Unity Road Ikeja Lagos,₦,"9,000,000",0,0,0, beds, baths, Toilets +3 Storey Building Of 12 Flats Of 2/3 Bed Room With Warehouse,"34 Kadiri Street Ikeja, Oregun Oregun Ikeja Lagos",₦,"250,000,000",0,0,0,2 beds,3 baths,2 Toilets +3 Bedroom Detached Bungalow," along Akinwale Street, Off Thomas Salako Street, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +Residential Land," kayode Street, Ogba, Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," ogba Estate, Ogba, Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +12 Bedroom Block Of Flats," ogba, Ikeja Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex," ogba Estate, Ogba, Ikeja Lagos",₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +8 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,8 beds,0 baths,0 Toilets +New And Vacant 5 Bedroom Semi Detached House,Harmony Estate Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale," ikeja Gra, Ikeja, Lagos Ikeja Gra Ikeja Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex For Sale," adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached House,"Opebi Area, Opebi Ikeja Lagos",₦,"295,000,000",0,0,0,7 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Bungalow House,Oregun Oregun Ikeja Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Half Plot Of Land Measuring 299 Sq Metres In Julie Estate Irequn, Ikeja.","Julie Estate, Oregun Oregun Ikeja Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex For Sale," adeniyi Jones, Ikeja, Lagos Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Flat, Allen Avenue Ikeja Lagos,₦,"12,000,000",0,0,0,2 beds,0 baths,0 Toilets +Partially Furnished And Serviced 5 Bedroom Fully Detached Duplex With A Swimming Pool,. Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +Land,Awuse Estate Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Bungalow,Igbasan Opebi Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Nos 3 Bedroom Flat, Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Itelorun Close Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Regina Omolara Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Structure On 3 Floors, Awolowo Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Nos Of Shops, Awolowo Way Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,0 baths,0 Toilets +236 Sqm Two Storey Building, Awolowo Way Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Office Complex On 3 Floors,Close To Ikeja City Mall Awolowo Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4538 Sqm Land,Aromire Road Adeniyi Jones Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats, Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,4 Toilets +Residential Land," omole Phase 2, Ikeja Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +1024sqm Fenced Plot Of Land, Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Two Wings Of 4 Bedroom Duplex, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Two Wings Of 5 Bedrooms Duplex,Off Toyin Toyin Street Ikeja Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, off Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +Residential Land, Opebi Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Land,Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,6 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"530,000,000",0,0,0,7 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Meters Of Land, Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +18000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +3900 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Meter Land, Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meters Land, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Meters Of Land, Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land, Ikeja Gra Ikeja Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +850 Sqm Of Land, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Wings Of 12 Rooms Duplexes, Ikeja Gra Ikeja Lagos,₦,"560,000,000",0,0,0,10 beds,0 baths,0 Toilets +Executive 5 Bedroom Fully Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Executive 4 Bedroom Terrace With Bq, Ikeja Gra Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets +Executive 3 Bedroom With Bq, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Distress Sales A Plot Of Land Measuring 1400sqm At Omole Phase I,Omole Phase I Omole Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 4000sqm(one Acre) Off Adeniyi Jones,ikeja.lagos",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +"Over Five Plots Of Land At Awuse Estate,opebi,ikeja.",Awuse Opebi Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 5856sqm Fenced With Gate,Sasegbon Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +8number Of 5 Bedrooms Terraces + 1 Room Bq, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land," omole Phase 2, Ikeja Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq, Opebi Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +12 Rooms Functional Hotel, Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished And Furnished 30 Rooms Hotel, Allen Avenue Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Terrace Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,5 Toilets +5 Bedrooms With 2 Rooms Bq Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +10 Bedrooms Detached House,Ogundana Street Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Brand New Detached 5 Bedroom Duplex With 2 Rooms Bq,Boet Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury Brand New Detached 5 Bedroom Duplex With 2rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Off Showemimo Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Partially Furnished 5 Bedroom Detached Duplex With A Room Bq,Michael Ogun Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," estate, Ogba, Ikeja Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +20000 Sqm Commercial Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +8400sqm Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Meters Of Land,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +7100 Sqm Land,Harold Shodipo Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sqm Land,Showemimo Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3800 Sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200 Sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Meters Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3482sqm Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2100 Sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +1989 Sqm Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600 Sqm Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Square Meters Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Square Meters Land + 5 Bedroom Duplex,Showemimo Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1100 Square Meter Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meters Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +995sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Adeniyi Jones Ikeja Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Dry Land For Sale In A Gated Estate Measuring 700sqm .title Is Registered Deed,Valley Estate Cement Mangoro Ikeja Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +5nos Luxury 5 Bedroom Semi Detached House,Serene Close Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced Luxury 2 Bedroom Flat,Maries Court Ikeja G.r.a Ikeja Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +Shop For Sale,Alade Allen Avenue Ikeja Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Oluwalogbom Agidingbi Ikeja Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +A Multipurpose Property,Allen Allen Avenue Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Mixed Use Land," ogba, Ikeja Lagos",₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Flat,Robin Close Marwa Garden Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House With Bq, Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +200sqm Warehouse,"Off Kudirat Abiola Way, Oregun Ikeja Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," omole Phase 1, Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets +Commercial Building,Adekunle Fajuyi Rd Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,800m2 Residential Land",Oduduwa Way. Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,160m2 Prime Residential Land",Abimbola Close Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Jones Adeniyi Jones Ikeja Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets +20000m2 Commercial Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel, Toyin Street Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex On 400m2 Land With 2 Rooms Bq,Remi Fani Kayode St. Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached Duplex On 350m2 Land With A Room Bq,Adeyemo Alakija St. Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2,000m2 Mixed Dev Land",Sobo Arobiodu St. Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +580m2 Prime Residential Land,Abimbola Close Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +500m2 Residential Land,"Oba Dosumu St, Ikeja Gra Ikeja Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,989m2 Commercial Land",Isaac John St. Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +609m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"122,000,000",0,0,0,0 beds,0 baths,0 Toilets +500m2 Residential Land,Remi Fani Kayode St. Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,800m2 Prime Residential Land",Oduduwa Gated St. Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,482m2 Mix Dev Land",Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3620m2 Residential Land,Oba Dosumu St Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500m2 Mixed Used Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000m2 Commercial Land",Joel Ogunnaike St. Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Used 3 Bedroom Detached Duplex,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace Duplex With A Room Bq,Adeyemo Alakija St Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2 Nos Of 5 Bedroom Duplexes, Each On 500m2 Land And With A Room Bq Each",Ladoke Akintola St. Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +800m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +500m2 Residential Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,200m2 Commercial Land",Joel Ogunnaike St. Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +1835.179m2 Residential Land,"Ladoke Akintola St, Ikeja Gra Ikeja Lagos",₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"8,400m2 Residential Land",Adeyemo Alakija St. Ikeja Gra Ikeja Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New 8 Bedroom Detached Duplex On 1,200m2 Land With 2 Rooms Bq",Oba Dosumu St. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,8 beds,8 baths,9 Toilets +"Fairly Used 5 Bedroom Detached Duplex On 1,000m2 Land",Off Ladoke Akintola St Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,5 Toilets +1000m2 Residential Land,"Oba Dosumu St, Ikeja Gra Ikeja Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex On 500m2 Land With A Room Bq,Off Showemimo St. Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +1500m2 Land,"Showemimo St, Ikeja Gra Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700m2 Commercial Land,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets +Fairly New 5 Bedroom Detached Duplex On 500m2 Land With 2 Rooms Bq,Off Sobo Arobiodu St Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat With A Room Bq,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +"1,000m2 Mixed Dev Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gra Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fairly Used 5 Bedroom Semi Detached Duplex On 800m2 Land With 2 Rooms Bq,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Executive Detach Duplex,Thomas Okoya Estate Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Commercial Property Facing Lagos/abeokuta Express,Facing Lagos/abeokuta Express Mangoro Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +C Of O,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 3 And 4 Bedroom Semi Detached Houses With Additional One Bedroom Bq Each, Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +750 Sqm Warehouse, Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Event Centre,"Off Oregun Road, Ikeja Oregun Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom House,"Ogundoyinbo Street, Ogba Agidingbi Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Unit Of 3 Bedroom,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Comtemporary Designed 5 Bedroom Semi Detached House,Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Warehouse Factory Block, Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Four(4) Bedroom Detached Houses, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Six(6) Bedroom Mansion, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Majestic 5 Bedroom Detached House, Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flats, Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brilliantly Designed Four(4) Bedroom Maisonette, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Aluminium Manufacturing Company, Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Terrace Duplex At Adeniyi Jones,Wemabod Estate; Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom House,Oladoyinbo Street Ogba Ikeja Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets +Land With Warehouse, Awolowo Way Ikeja Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent Six(6) Bedroom Mansion, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Designed 5 Bedroom Semi Detached House, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Block Of Flats, Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Semi Detached Duplex," adekunle Fajuyi, Ikeja Gra Ikeja Lagos",₦,"650,000,000",0,0,0,10 beds,9 baths,10 Toilets +2 Bedroom Flat," by Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat," by Oba Akinjobi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Block Of Flats,  Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,2 beds,3 baths,3 Toilets +6 Units 3 Bedroom Flats,"Oluwaleyinmu Street /amore Street, Off Toyin Street Ikeja Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat," reverend Ogunbiyi, Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Full Plot Of Land At Outskirts Of Omole Phase2,Outskirts Of Omole Phase2 Omole Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +Office Space," opebi Rd, Opebi Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," omole Phase 2, Omole Phase 2, Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat," off Oba Akinjobi Way., Ikeja Gra Ikeja Lagos",₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +Majestic Storey Building For Sale,River Valley Estate Ikeja Lagos,₦,"90,000,000",1,0,1,5 beds,2 baths,2 Toilets +4.17 Acres For Sale @ Ikeja,Allen Allen Avenue Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"2 Wing Of 5 Bedroom, Well Finished And All Rooms En Suite With One Room Bq","Omofade Crescent, Omole Phase 1, Ikeja. Agidingbi Ikeja Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Detached House,Olutoye Crescent. Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land, Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land Measuring 416.704 Sqms.,Opebi Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 12 Unit Of 4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Terrace House,"Off Salvation Road, Opebi Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 2 Bedroom Terrace Duplex,"Extension, Omole Phase 2 Omole Ikeja Lagos",₦,"20,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxurious 5bedroom Fully Detached Duplex With 2 Rooms Bq,"Omole Phase 2, Lagos Omole Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Highly Luxurious 4bedroom Semi Detached Duplex With Bq,Omole Phase 2 Extension Omole Ikeja Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 6 Bedroom Mansion,"Omole Phase 2, Beside Otedola Jubilee Estate Omole Ikeja Lagos",₦,"260,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxurious 5 Bedroom Detached Duplex,Omole Phase 2 Omole Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 12rooms Luxury Hotel Space For Either Sale Of Lease,Balogun Bus Stop Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Brand New 5bedroom Detached Duplex,"Kayode Taiwo, Magodo Gra Phase 2 Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Duplex With A Room Bq,"Magodo Gra, Isheri Omole Ikeja Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale,Olayinka Street. Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land For Sale,Olayinka Street Opebi Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Duplex,Ikare Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,7 baths,7 Toilets +Duplex,Ikare Close Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +1800sqm Property For Sale At Ikeja,Olorunisola Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets +6 Nos Of 2 Bedroom Flats,Ayinde Sanni Close Oregun Ikeja Lagos,₦,"57,000,000",0,0,0,10 beds, baths, Toilets +4 Bedroom Semi Detached House,Gra Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached House.,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +Beautifully Furnished 4 Bedroom Terrace Duplex,Off Adeniyi Jones Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Study Room And A Bq,Peace Estate Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,5 baths,6 Toilets +Lagos State Government C Of O,Bayo Ajayi Agidingbi Ikeja Lagos,₦,"110,000,000",1,0,1,5 beds,5 baths,5 Toilets +3 Bedroom Bungalow With Various Boy's Quarters,Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,3 beds, baths, Toilets +Land For Sale At Unilag Estate Magodo Ikeja Lagos State,Unilag Estate Magodo Ikeja Lagos State Opebi Ikeja Lagos,₦,"37,000,000",1,1,1,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,"Mko Gardens, Alausa, Lagos. Alausa Ikeja Lagos",₦,"95,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,Coca Cola Awolowo Way Ikeja Lagos,₦,"72,000,000",0,1,0, beds, baths, Toilets +Land For Sale Off Olutosin Ajayi Street,Off Olutosin Ajayi Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +4 Units Of A 4 Bedroom Detached Duplex, Allen. Allen Avenue Ikeja Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Unit Blocks Of Luxurious Flats,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,3 Toilets +6 Units Of 3 Bedroom Luxury Flats.,Allen. Allen Avenue Ikeja Lagos,₦,"720,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fully Detached Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets +Allocation Document,"Agege Motor Road, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"3,500,000",0,1,0, beds, baths, Toilets +Allocation Document,Allen Ikeja Lagos,₦,"4,000,000",0,1,0, beds, baths, Toilets +Contemporary Five (5) Bedroom Semi Detached Houses,Off Isaac John Street And Minutes Drive From Radisson Blu Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plot Of Land,Off Obafemi Awolowo Rd Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Bungalow Penthouse All Rooms En Suit With Mini Flat Bq + Securityhouse On Full Plot With Enough Parking Space...c Of O,Araromi Maryland Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 4 Bedroom Terraces,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Of Six Units With C Of O For Sale.,Allen Allen Avenue Ikeja Lagos,₦,"100,000,000",1,1,1,3 beds,4 baths,4 Toilets +Semi Detached Duplexes For Sale,Akin Taylor Estate Allen Avenue Ikeja Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +For Sale At Gra Ikeja 5 Nos Of 5 Bedroom Semi Detached Duplex Houses,Gra Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Off Agbaoku Opebi Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Units Of 3 Bedroom Flat,"Off Oregun, Olusosun Oregun Ikeja Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"6 Units Of Luxury And Well Finished Serviced 3 Bedroom With Bq,", Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Nos Of Terrace Duplex And Bq,Off Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom + Miniflat,Awuse Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxury 36 Rooms Hotel (a Combination Of Standard Suites And Single Rooms),"Off Mma, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With Bq,Obakinjobi Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 4 Bedroom Terrace With Bq,Opebi Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +10 Bedroom Commercial Property,Ogba Ikeja Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Not Far From Gani Fawehinmi's Library Allen Avenue Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,"Magodo Phase 1,magodo Isheri Ikeja Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +House, Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,2 baths,4 Toilets +4 Bedroom Apartment,Off Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Off Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,0 Toilets +Anike Courts,"Opebi Allen, Ikeja Opebi Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +C Of O,Off Awolowo Way Ikeja Very Close To Lagos Airport Hotel. Awolowo Way Ikeja Lagos,₦,"150,000,000",0,1,0,10 beds,10 baths,10 Toilets +Well Finished 4 Bedroom Duplex,Off Kudirat Abiola Way Oregun Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Townhouse & Bq,Off Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +7bedroom Detach House,Opebi Opebi Ikeja Lagos,₦,"70,000,000",0,1,0,7 beds,7 baths,8 Toilets +4bedroom Duplex With Bq At Oregun,Oregun Oregun Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Flat 3bedroom And 4flat On 2bedroom In Full Plot Of Land With C Of O,Onipetesi Estate Mangoro Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds, baths,4 Toilets +Mixed Use Land," opebi Link Road, Opebi Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," awolowo Way, Alausa Ikeja Lagos",₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Awolowo Way Alausa Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced 178 Sqm Mixed Use Land With C Of O,Central Business District; Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ogundana Close; Allen Avenue Ikeja Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 4bedroom Detached Duplex With Bq For Sale At Omole Phase2,"Omole Phase 2, Ikeja Omole Ikeja Lagos",₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +New Depulex House For Sale,Oyero Street Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exclusively Finished 5 Bedroom Terrace Duplex In Ikeja Gra,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exclusive Office Suite At The Modern Ahcn Towers,Cipm Alausa Ikeja Lagos,₦,"600,000",0,0,0,0 beds,10 baths,0 Toilets +5 Bedroom Flat On 1500 Sqm, ladoke Akintola Street; Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Wings Of 4 Bedroom Duplex For Sale,Gbemisola Street Allen Avenue Ikeja Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex & 1 Bq,Estate At Abc Bus Stop Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex + Bq,Samuel Awoniyi Off Salvation Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedrooms Semi Detached Duplex And 1bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of Terrace House,Opebi Ikeja Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detach Duplex,Off Salvation Opebi Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat & 1 Bq,Alade Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Fully Detached Duplex & 2 Bedroom Flat Bq Up & A Room Self Contain Down,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Bq Terrace House,Awuse Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Harmony Enclave Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Semi Detach Duplex,Ikeja Gra Esugbayi Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets +"3 Bedroom Flat, Visitor Room And 1bq",Off Salvation Road Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detach Duplex,Awuse Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Duplex With B/q,"Akora Estate, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Rev. Ogunbiyi Area Ikeja Gra Ikeja Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Cofo,Remi Fani Kayode Avenue Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Direct Brief Bank Distress Sale Of A Luxurious Hotel Complex,Opebi Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Residential Land,. Ikeja Gra Ikeja Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Flat,Ondo Close Allen Avenue Ikeja Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,3 Toilets +9 Acres Of Land For Sale At Oba Akran Avenue Ikeja,Ikeja Oba Akran Ikeja Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom House For Sale, Ikeja Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets +6 Bedroom Duplex,Joel Ogunaike Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,6 beds,7 baths,7 Toilets +Commercial Land For Sale, Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," along Adeniyi Jones Street, Oba Akran Ikeja Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Bedroom Detached Duplex,"Atere Junction Omele Phase 2, Omole Phase 2 Ikeja Lagos",₦,"87,000,000",0,0,0,10 beds,10 baths,10 Toilets +Hostel," off Salvation Road, Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Factory On 17,600 Sqm Land",Plot 1a Billing Way; Oregun Ikeja Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lands,Magodo Omole Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Tastefully Finished 6 Bedroom Fully Detached Duplex With 2 Rooms Bq,Adeniyi Jones Ikeja Lagos,₦,"125,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Luxury Duplex,Cole Street; Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,5 Toilets +Commercial Property,. Allen Avenue Ikeja Lagos,₦,"230,500,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Omole Phase 2 Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Flat With Servants Quarters,Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Land,Between Allen Road; Allen Avenue Ikeja Lagos,₦,"230,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Wempco Road Agidingbi Ikeja Lagos,₦,"180,000,000",0,0,1,5 beds,4 baths,6 Toilets +Well Built And Brand New 4 Bedroom Semi Detached (carcass) Duplex,Opebi Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,. Toyin Street Ikeja Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Commercial Land, along Awolowo Way Ikeja Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths, Toilets +5 Bedroom Detached Duplex," omole Phase 2, Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths, Toilets +Industrial Land, Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths, Toilets +Block Of Flats,Onipetesi Estate Mangoro Ikeja Lagos,₦,"38,000,000",0,0,1,0 beds,0 baths,0 Toilets +Block Of Flats,Onipetesi Estate Mangoro Ikeja Lagos,₦,"40,000,000",0,0,1,0 beds,0 baths,0 Toilets +Residential Land," independent Street, Anifowoshe, Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths, Toilets +Commercial Land,. Oba Akran Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 6bedeoom Mansion For Sale At Omole Phase2, Otedola","Phase2, Otedola Omole Ikeja Lagos",₦,"260,000,000",0,0,0,6 beds,7 baths,7 Toilets +8 Units Of 5 Bedroom Terraced Duplex, off Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets +"6bedroom Mansion For Sale At Omole Phase2, Opp Alausa Ikeja","Omole Phase2, Otedola Omole Ikeja Lagos",₦,"260,000,000",0,0,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex," abba Johnson Crescent, Adeniyi Jones Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,  Allen Avenue Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,0 Toilets +4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished And Furnished 4 Bedroom Detached Duplex With 2 Room Bq,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," pen Cinema, Ogba, Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," off Lateef Jakande Road, Omole Phase 1, Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With C Of O At Omole Phase 2,Omole Phase 2 Omole Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Ikeja Gra, Luxury 7 Bdr Detached Duplex, Excellent Finish",Off Lagos Country Club Road Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,1,0,7 beds,9 baths,9 Toilets +4 Bedroom Terraced Duplex,. Ikeja G.r.a Ikeja Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +Land,Alausa Alausa Ikeja Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,. Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +98 Bedroom Hotel,Allen Roundabout Allen Avenue Ikeja Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths, Toilets +Office Space,. Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,3 baths,3 Toilets +6 Bedroom Detached Duplex,  Ikeja Gra Ikeja Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,0 Toilets +Duplex,Boet Estate Abc Busstop Adeniyi Joness Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +"12 Rooms Luxury Hotel For Sale Off Awolowo Way, Ikeja",Balogun Busstop Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Boet Estate Abc Busstop Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Luxurious 4bedroom Semi Detached Duplex For Sale At Omole Phase2, Otedola Ikeja",Omole Phase2 Omole Ikeja Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 12room Guest/hotel For Ikeja 150m,Olu Akerele Awolowo Way Ikeja Lagos,₦,"150,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex With 2 Rooms Servants Quarters On 700 Sqm,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex," dideolu Estate, Ogba, Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets +Land,"Treasure Park And Gardens Phase, Alausa Ikeja Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land With Governor's Consent,Remi Fani Kayode Street; Ikeja Gra Ikeja Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Off Agbaoku Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Omil Agu Land And Property,Treasure Park Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets +"Fully Detached 5bedroom Duplex With 2rooms Bq At Alausa , Ikeja",Behind Shoprite Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets +Lands For Sale,Tresure Park And Greden Alausa Ikeja Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets +Land,Behind New Redeemed Camp Ikeja Gra Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, . Ikeja Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex + 1 Room Bq With C Of O,Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land At Ikeja,Awuse Estate Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Existing 3 Bedroom Duplex With Bq,Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 5bedroom Fully Detached Duplex For Sale At Omole Phase2,Omole Phase2 Omole Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets +Furnished Guest House With Governor's Consent,Ikeja Lagos,₦,"150,000,000",0,0,1,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," adekunle Fajuyi Way, Ikeja Gra Ikeja Lagos",₦,"500,000,000",0,0,0,5 beds,7 baths,0 Toilets +Executive 6 Bedroom Duplex And 2 Bedroom Bungalow On A Full Plot,Sanyaolu Street Off Oregun Road Ikeja Oregun Ikeja Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,6 Toilets +4 Bedroom Terraced Duplex, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Akin Lakanu Close Adeniyi Jones Ikeja Lagos,₦,"250,000,000",0,0,1,6 beds,8 baths,8 Toilets +5 Bedroom Detached Duplex," off Opebi Allen Road, Opebi Ikeja Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,Omole Phase 1 Ikeja Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +New 4bedroom Duplex At Omole Phase2,Omole Phase2 Omole Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Detached Duplex,  Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,0 Toilets +Hotel,Gra Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,1,10 beds,10 baths,0 Toilets +Brand New Luxurious 4 Bedroom Fully Detached Duplex,Omole Phase2 Omole Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Units 3 Bedroom Luxury Apartments With Bq, Allen Avenue Ikeja Lagos,₦,"600,000,000",1,1,0,3 beds,3 baths,4 Toilets +11 Plots Of Land In Ikeja Computer Village,Computer Village Airport Road(ikeja) Ikeja Lagos,₦,"800,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Allen Avenue Ikeja Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Wing Of 3 Bedroom Duplex, Toyin Street Ikeja Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,3 Toilets +3 Units Of 4 Bedroom Duplex,2 4 Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex With A Room Bq,In An Estate Off Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Akinola Crescent Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,5 Toilets +6 Bedroom Semi Detached Duplex,Off Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House,"Off Ajose Street, Mende Maryland Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,"Off Ajose Street, Mende Maryland Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With One Room En Suite Bq, Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Omole Phase 2 Ikeja Gra Ikeja Lagos,₦,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets +New 2 Bedroom Duplex,Olowora Omole Ikeja Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,2 Toilets +A Block Of 3 Bedroom Flats,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Terraced Duplex,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Salvation Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Duplex,Wemabod Estate Adeniyi Jones Ikeja Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,4 Toilets +Brand New 3bedroom Flats Plus Bq,Off Allen Avenue Ikeja Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Off Aromire Street Adeniyi Jones Ikeja Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Registered Deed Of Assignment,Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Houses,Honda Places Adeniyi Jones Ikeja Lagos,₦,"16,500,000",0,1,1,3 beds,4 baths,4 Toilets +5994sqm Fenced Land,Asogbon Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +3815sqm Land At Ikeja Gra,Adekunle Fajuyi Gra Ikeja G.r.a Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,Omole Phase 2; Omole Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace House,Ayo Rosiji Street; Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Apartment With One Room Bq, Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House, Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bay Warehouse On 2000 Square Meters,Oregun Oregun Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex For Sale,Oba Dosumu Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +Clean And Well Finished 3 Bedroom Serviced Flat With A Room Boys Quarters,Allen Avenue Allen Avenue Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely Built Duplex,. Allen Avenue Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly And Tastefully Finished 5units Of 5bedroom Terrace In Ikeja Gra,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Terraced Duplex,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom Terrace Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Detached House,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,4 Toilets +Tastefully Finished 4 Bedroom Detached House,. Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Town House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Newly Built With State Of The Art , Well Finished And Clean 5 Bedroom Terrace Duplexes In A Well Secured Estate.",Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Very Clean 4 Bedroom Duplex With A Room Bq,. Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Sowemimo Street Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land 520 Sqm,Omofade Omole Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Allen Avenue Ikeja Lagos,Allen Avenue Allen Avenue Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Semi Detached Duplex,Omole Phase 1 Fm Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Tenement Story Building With 16 Rooms + 2 Bedroom And A Bq For Sale.,Oba Akran Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached,"Off Salvation Road, Awuse Extension. Opebi Ikeja Lagos",₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4bedroom Terrace,Off Opebi Road Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq All Rooms En Suit,Estate Off Allen Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fantastic Newly Built 5 Bedroom Detached Duplex,Omole Phase 2 Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,4 Toilets +Fenced 3600 Sqm Of Bare Land,Off Oregun Road Oregun Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Lagos Ikeja Lagos,₦,"105,000,000",0,0,0,6 beds,5 baths,5 Toilets +6 Bedroom Duplex,Ogba Agidingbi Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Acres Of Land With 6 Bay Ware House,Oregun Road Oregun Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House In Adeniyi Jones, Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex + Bq + Pool,In An Estate Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets +Superb Perfectly Finished 5 Units Of 5 Bedrooms Duplex,Merit Estate Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Wings Duplex, Allen Avenue Ikeja Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 12 Bedroom Terrace Duplex,Off Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,10 beds,8 baths,9 Toilets +Luxury 5 Bedroom Detached Duplex,"Near Fani Kayode Street, Gra Ikeja Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +14 Plots Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neat 5 Bedroom Semi Detached House,Ayo Rosiji Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached House,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +410sqm Land,Off Opebi Link Road Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Duplex With A Room Bq,Adeniyi Jones Lkeja Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Townhouse For Sale,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Terrace 4 Bedroom Townhouse,Off Salvation Rd Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached House, Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex And A Storey Building Boys Quarter,"Adekunle Fajuyi, Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Nice 2 Bedroom Bungalow, Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +"1,200sqm Land",Cbd Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 3 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovely 3 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +Beautiful 5 Bedroom Duplex,Bamishile Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom Duplex,Off Adeniyi Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Nice 6 Bedroom Duplex,Ondo Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets +Nice 4 Bedroom Duplex,Julie Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Superbly Built 3 Bedroom Duplex,Minima Estate Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovey 4 Bedroom Duplex,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Unit Of 3 Bedroom,"Seriki Aro Avenue, Ajao Ikeja Gra Ikeja Lagos",₦,"53,000,000",0,0,0, beds, baths, Toilets +4bedroom Duplex,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +1300sqm Fenced Land,Jobi Fele Way Cbd Alausa Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Land Measuring 6000sqm,"By J A Paul, Cbd Alausa Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 2,000sqm",Off Salvation Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Well Functioning Hotel,Off Toyin Street Toyin Street Ikeja Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +735 Sqm Of Land,Phase 1 Magodo Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Alakija, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Acres Of Land,Along Toyin Street Toyin Street Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Rooms Bq, Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Exquisite House,Bankole Cole Cresent Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom Terrace Duplex,Ladoke Akintola Str. Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,5 Toilets +5 Bedroom Terrace Duplex,Esugbayi Street Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets +5 Bedroom Terrace Duplex,Remi Fani Kayode Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets +Blocks Of 32 Units Of 3 Bedroom Flat,Isaac John Street Ikeja G.r.a Ikeja Lagos,₦,"2,600,000,000",0,0,0,3 beds,0 baths,3 Toilets +10 Units Of 5 Bedroom Terrace Duplex,Obama Dosumu Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,5 Toilets +Newly Built 5 Bedroom Executive Detached Duplex,At Omole Phase 2 Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plot Of Land,Omole Phase 1 Near Agidingbi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 350sqm Of Land,Opebi Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Rooms Boutique Hotel,Western Side Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Plots Of Land With A Complex On It,Isaac John Ikeja G.r.a Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Plots Of Land Approved For Petrol/filling Station,Ikeja Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Duplex With Bq,Talabi Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Semi Detached Duplex,"Victoria Odeniran Street,off Salvation,opebi Ikeja Opebi Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Half Plot Of Land,Juli Estate Oregun Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Floors Commercial Building, Allen Avenue Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Existing Hotel With International Standard,Olu Okerele Street Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Nice 5 Bedroom House Sitting On 1000sqm,Just By Chrisland School Opebi Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached House With Bq,Ogundana Street Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,4 baths,6 Toilets +"7,000 Square Meter Land",Bank Anthony Way Maryland Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kayode Ikeja Gra Ikeja Lagos,₦,"152,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Duplex With Bq,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Behind Latter Rain Assembly Auditorium Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +1826sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +670m2 Land, Airport Road(ikeja) Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5units Of 4 Bedroom Terrace Duplex | Off Plan, Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive 4 Bedroom Detached Duplex With Bq,Opp.dstv Office Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop Space,New Alade Market Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Square Metres Shops Space,New Alade Market Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Agidingbi Road Wempco T Junction Agidingbi Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Office Space Building, Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom House, Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Double Corner Piece Land In Maryland,Directly Facing Ikorodu Road Maryland Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Newly And Well Finished 5 Bedroom Terrace Duplex,Off Allen Avenue Ikeja Allen Avenue Ikeja Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom House,"Kudirat Abiola Way, Ikeja Alausa Ikeja Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Furnished Terrace Duplex + Bq,Mini Estate Off Allen Allen Avenue Ikeja Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +Warehouse Plus 2 Storey Building Office Block,"Oregun Road, Ikeja Oregun Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Royal 4 Bedroom Duplex,"Oduduwa Road, Off Isaac John Ikeja Gra Ikeja Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Opebi Allen Opebi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Semi Detached Royal 4 Bedroom Duplex,"Oduduwa Road, Off Isaac John Ikeja Gra Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Bq,Magodo Gra Phase 1 Alausa Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plots Of Bare Land,Off Opebi Road Opebi Ikeja Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets +"3,700 Square Metre Bare Land",Along Toyin Street Toyin Street Ikeja Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisitely Built 5 Bedroom Detached Duplex,Herbert Macaulay Crescent Ikeja Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +9 Plots Of Land At Adeniyi Jones Ikeja, Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Terrace House At Adeniyi Jones Ikeja,Molade Okoya Thomas Street Adeniyi Jones Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Opebi Road Along Agbaolu Street Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Six Flat Complex,Majekodunmi Allen Avenue Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,2 baths,3 Toilets +Land For Sale,Agidingbi Road Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1900sqm Fenced Plot Of Land,Off Lateef Jakande Agidingbi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Units Of 6 Bedroom Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale At Ikeja,Joel Ogunaike Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"65,000sqm Of Land At Lagos Ibadan Expressway",Lagos Ibadan Expressway Ikeja Lagos,₦,"37,500",0,0,0, beds, baths, Toilets +New 4bedrm Terrace House,Church Street Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land Measuring 1500 Square Metres,Alausa Cbd Alausa Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale At Ikeja,Joel Ogunaike Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Bare Land, Adeniyi Jones Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Oroleye Street, Salvation Bustop Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Detached House With Challet And 4 Rooms Bq,"Off Oduduwa Crescent, Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"850,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Awuse Estate Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Detached Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +One Arce Of Land,Awolowo Ikeja Opposite Airport Hotel Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,0 Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +25 Rooms Hotel, Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Hotel Complex,Plot 4 & 5 Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Toyin Street Ikeja Toyin Street Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Tastefully Furnished 5bedroom Duplex With Chalets, Bq & Swimming Pool",Ikeja Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,7 Toilets +Land,Dideolu Court Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Obafemi Awolowo Way Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette Duplex + 1bq Carcass @ Savvy Court Estate (under Development),Ogundana Close Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land At Zeder Pavilion Estate. Agindingbi Ikeja. (rc),2 Minutes Drive From Zenith Bank Plc Agidingbi Ikeja Lagos,₦,"40,500,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel Complex, Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Nos. 3 Bedroom Flat All Ensuite,Alausa Alausa Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Full Plot Of Residential Land Measuring 750sqm,River Valley Estate Ikeja Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Mo Tower, Allen Avenue",Allen Avenue Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +5 Set Of Luxurious 5 Bedroom Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +50 Acres Plots Of Land,Isheri North Gra Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat With Bq, Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Industrial Estate By Adeniyi Jones Ikeja Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +505.5sqm Of Land At Ladoke Akintola,Ladoke Akintola Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +822.24sqm Of Land On Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Oba Akran Ave Ikeja Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel For Sale At Ikeja,Off Ikeja Guinness Roundabout Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +3972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Salvation Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,"3, Bode Amoo Close Adeniyi Jones Ikeja Lagos",₦,"200,000,000",0,0,0,5 beds,3 baths,4 Toilets +A 5 Bedroom Duplex,Omomle Phase 1 Agidingbi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Flats Of Detached Bungalow On One And Half Plot Of Land,"Oba Akran, Ikeja Oba Akran Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +2780sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +16 Nos Of 4 Bedroom Terraces All Rooms Ensuite With A Room Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fantastic 5 Bedroom Detached House,Sunday Adigun Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Omole Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Oregun Ikeja Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,4 Toilets +Land,Along Agbaoku Street Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Hotel Complex For Sale At Ikeja,Opebi Link Road Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Bungalow,"Off Opebi,ikeja Lagos Mainland Opebi Ikeja Lagos",₦,"85,000,000",0,0,0,7 beds,5 baths,5 Toilets +Twin Duplex,Omole Phase 2 Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex, Oregun Ikeja Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Flat,"Estate Off Oregun, Ikeja. Oregun Ikeja Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Newly Built 4 Bedroom Semi Duplex With A Room Bq In Allen, Ikeja",Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Bq, Allen Avenue Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Agidingbi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Raji Street Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Opebi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex And A Storey Building Boys Quarter,At Adekunle Fajuyi Ikeja Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Land,Adeyemo Alakija Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land At Sasegbo Street,Sasegbo Street Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Dry Land At Christal Villa Queen's Court,Lekki Obafemi Awolowo Way Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +2528sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex For Sale At Ikeja,Oba Dosunmu Street Ikeja Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets +4080sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Bamidele Close Off Billing Way Behind 10 Degree Event Centre. Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Luxury Terrace House,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Commercial Property, Allen Avenue Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of Four Bedroom Terrace Duplex At Ikeja,10 Church Street Off Irewole Street Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"8 Bedroom Duplex With 2 Units Of 5 Bedroom Duplex On 1,000 Square Metres Of Land",Off Opebi Road Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,8 beds,0 baths,0 Toilets +Newly Built And Well Finished 2 Bedroom Flats Of 6 Flats,Close Allen Avenue Ikeja Lagos,₦,"170,000,000",0,0,0,2 beds,2 baths,3 Toilets +Bedroom Detached Duplex, Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 1879 Sqm,Cbd Alausa Ikeja Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Bungalow + Bq,Onipetesi Estate Mangoro Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +2.5 Acres Of Land,By Christ Embassy Church Oregun Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built Bedroom Duplex With 2 Rooms Bq On 1,340 Square Metres Of Land",Dosunmu Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets +100000sqm Of Land For Sale At Ikeja,Acme Road Ikeja Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets +2 Nos 5 Bedroom Brand New Semi Detached Duplexes, Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets +Guest House,Salvation Road Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Nos Of 4 Bedroom Terrace Duplex,At Magodo Gra Phase 1 Ikeja Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Mansion With 2 Rooms Bq,At Omole Phase 2 Ikeja Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedroom Detached Mansion,Omole Phase 2 Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedroom Detached Duplex,Off Isaac John Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury Homes At Rose Court,"Akora Villas, Off Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Wings 5 Bedroom Duplex With 2 Nos 2 Bedroom Flat,Off Allen Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House For Sale,"Continental Way, Magodo G.r.a Ikeja Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings 5 Bedroom Duplex With 2 Nos 2 Bedroom Flat,Folawewo Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +1535sqm Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets +2000sqm Of Land For Sale At Ikeja Gra,Sowemimo & Fani Kayode Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land,Fani Kayode & Ladoke Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With 2 Bedroom Flat Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Behind Alfred Garden Oregun Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Office Space, Mangoro Ikeja Lagos,₦,"110,000,000",0,0,0,10 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq In Ikeja,Opposite Omole Phase 1 Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four Unit Of 4 Bedroom Terrace+ Boys Quarters,Off Adbaoku Street Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Land Measuring 3,972sqm At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land 2,000sqm Along Mobolaji Bank Anthony Way",Maryland Mobolaji Bank Anthony Way Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +3 Units Of Newly Built 4 Bedroom Fully Detached Duplex In Ikeja,"34b Remi Fani Kayode, Ikeja Gra Ikeja Lagos",₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Odudu Crescent Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Nos Of 3b Edrooms Flat +2nos Of 2 Bedrooms Flat In Nice At Opebi,Off Church Street Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5989sqm Of Land For Sale At Ikeja Gra,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land On Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Land,Oregun Mixed Development Scheme Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Duplex With A Bq At Ikeja Gra,Fani Kayode Road Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,6 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex At Ikeja,Longe Street Agidingbi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +3482sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4214sqm Of Land At Sobo Arobiodu Street,Sobo Arobiodu Street Ikeja Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land,"Adeleke Solanke Close, Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Funished Duplex,Salvation Opebi Alen Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +Land,Omolade Okoya Thomas Estate Adeniyi Jones Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ladipo Oluwole , Adeniyi Jones Ikeja Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Lola Holloway,omole Phase 1 Adeniyi Jones Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Salvation Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Cornerpiece Block Of 4 Flat Of 3 Bedroom Flat,Allen Avenue/toyin Street Ikeja Lagos State Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Prime Bare Land On 3 Plots At Opebi,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Clean 3 Bedroom Luxury Flat,Awuse Estate Opebi Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Vacant 12(units) Lock Up Shops, Offices And 3(units)3 Bedroom Flat Offices",Awolowo Way Opposite Computer Village Ikeja Lagos Awolowo Way Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedroom Mansion,Ikeja Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Plot Of Land Measuring 2,235 Square Meters",Remi Fani Kayode Street Gra Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex,Ajao Estate Isolo Airport Road(ikeja) Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000sqm Of Land For Sale At Ikeja Gra,Adeyemo Alakija Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Two Rooms Bq,. Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Plots Of Land At Remi Fanikayode Street,Remi Fanikayode Street Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +2000sqm Of Land At Joel Ogunaike Street,Joel Ogunaike Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"New Block Of 20 Units Of 3 Bedroom Flats, All Rooms Ensuite With A Room Bq",Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"5,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached House,Off Adeniyi Jones Ikeja Lagos Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets +Fenced Acre Of Land,Ladipo Obateye Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Five Bedrooms Duplex+mini Flat Boysquarter On 580sqm,Off Ajanaku Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,4 baths,5 Toilets +5edrooms Duplex+ 2rooms Bq On,Off Abel Oreniyi Opebi Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds, baths,5 Toilets +Five Bedroom Detached + Bq On 500sqm,Off Babinton St Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Mall ( Off Plan),Allen Round About Allen Avenue Ikeja Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex With Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ibadan Close Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Prime Fenced Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex, Oba Akran Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,10 Toilets +A Prime Fenced Land On Two And Half Acres With Warehouse And Offices Structure,Agidingbi Road Ikeja Lagos Agidingbi Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 2(nos) Of 4 Bedroom Duplex,Ikeja Gra Lagos State Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ayo Rosiji Crescent Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5942sqm Of Land At Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Land,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3900sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Land,Fani Kayode Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +8200sqm Of Land At Adeyemo Alakija Street,Adeyemo Alakija Street Ikeja Lagos,₦,"1,650,000,000",0,0,0, beds, baths, Toilets +4 Blocks Of 3 Flats And Bq House,Olutoye Creasent Adeniyi Jones Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,3 Toilets +3872sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached House, Duplex With Bq",Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land (joint Venture),"Oroleye Street, Salvation Bustop Opebi Ikeja Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 5 Bedroom Detached Building,"8, Michael Ogun Ikeja Gra Ikeja Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Unity Road By Toyin Street Ikeja Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,By Abiola Crescent Toyin Street Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms And 3 Bedroom + 1 Bq, Adeniyi Jones Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom And 4 Bedroom With 1 Bq, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Duplex,Omole Phase 1 Estate Omole Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +"4 Bedroom Flat At Magodo Gra, Shangisa, Ketu, Lagos",Adeniran Street Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex At Opebi, Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,Off Allen Avenue Ikeja Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +C Of O, Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Lopez Close Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,5a Adediron Street Magodo Gra Alausa Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Omole Phase 1 Agidingbi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +8 Units Of 4 Bedroom Terrace Duplex,"Boet Estate, Adeniyi Jones Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Salvation Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Talabi Estate Adeniyi Jones Ikeja Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Full Detached House With Pool,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,7 beds,7 baths,5 Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fadeyi Bus Stop Maryland Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,An Estate Adeniyi Jones Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Genuine And Dry Plots Of Estate Land At Magodo Gra, Lagos","Magodo Gra Phase 2, Shangisha Ikeja Lagos",₦,"40,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Plots Of Dry Estate Land At Magodo Gra, Lagos","Magodo Gra, Phase 2, Shangisha Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land Along Oregun/opebi Link Bridge.,Along Opebi Oregun Link Bridge Opebi Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Duplex In Ikeja Gra,Micheal Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,8 beds,10 baths,10 Toilets +Land,Opebi Village Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1532sqm Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Executive 6 Bedroom Detached Duplex,Ikeja Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,6 beds,6 baths,7 Toilets +Flat Apartment,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Bareland At Alausa Ikeja Lagos,Radio Bus Stop Alausa Ikeja Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex(corner Piece),Oroleye Street Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000sqm Of Land For Sale At Oba Akinjobi,Oba Akinjobi Way Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Land,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Oroleye Street Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4000sqm Of Land For Sale At Adeyemo Alakija,Adeyemo Alakija Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat At Magodo Gra,Off Basheer Shittu Ikeja Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex At Magodo Gra,Off Basheer Shittu Ikeja Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom For Sale,Allen Awolowo Way Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,"5 Mins Drive From Lagos State Secretariat, Cmd Road Ikeja Gra Ikeja Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,"Akora Estate, Adeniyi Jones Adeniyi Jones Ikeja Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"765,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury New 2nos 6 Bedrooms Detached House,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +Neat Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets +Classic 6 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"60,000,000",0,0,0,6 beds,6 baths,0 Toilets +Land,"Alausa, Ikeja, Lagos Ikeja Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,0 Toilets +Land,"Ikeja, Lagos Ikeja Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached House,"Ikeja, Lagos Ikeja Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted 2/3 Bedroom Flat,"Ikeja, Lagos Ikeja Lagos",₦,"15,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ikeja, Lagos Ikeja Lagos",₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom En Suite,"Ikeja, Lagos Ikeja Lagos",₦,"24,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Plots Of Land With C Of O,"Ikeja, Lagos Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plot Of Land With C Of O,"Ikeja, Lagos Ikeja Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex+ Bq, Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq, Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Flat / Apartment,Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached With One Room Bq.,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplexes With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets +Executive 4 Bedroom Duplex With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets +Luxury Block Of Flats,"Ikeja, Lagos Ikeja Lagos",₦,"400,000,000",0,0,0,2 beds,2 baths,0 Toilets +Newly Built House,"Ikeja, Lagos Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Duplex With A Room Bq,"Ikeja, Lagos Ikeja Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,0 Toilets +5 Bedroom Detached Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,0 Toilets +5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,0 Toilets +A Vacant 6 Blocks Of 2 Bedrooms On 1 Acre Of Land,Ladoke Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,2 beds,4 baths,4 Toilets +Estate Land,"Ikeja, Lagos Ikeja Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land, Obafemi Awolowo Way Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Commercial Corner Piece Bare Land Measuring 6000sqm,Sobo Arobiodu Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat,"Ikeja, Lagos Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,0 Toilets +Vacant 5 Bedroom Fully Detached House,Alausa Alausa Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,"Shomolu, Lagos, Lagos Ikeja Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Half Plot Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex With 2 Bedroom Bungalow,"Ikeja, Lagos Ikeja Lagos",₦,"55,000,000",0,0,0,6 beds,6 baths,0 Toilets +One Acre Of Land,"Ikeja, Lagos Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Flat With A 4 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,4 baths,0 Toilets +5 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"87,000,000",0,0,0,5 beds,2 baths,0 Toilets +3 Bedroom Flat,"Off Pako Bus Stop, Dopemu Mangoro Ikeja Lagos",₦,"40,000,000",0,0,0,3 beds,2 baths,3 Toilets +Newly Built Four Bedroom Terrace Duplex For Sale In Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Folusho Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"110,000,000",0,0,0,4 beds,5 baths,0 Toilets +Building,"Ikeja, Lagos Ikeja Lagos",₦,"30,000,000",0,0,0,0 beds,10 baths,0 Toilets +Lovely 6 Bedroom Detached Duplex,Ikeja Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets +Luxury 5 Bedroom Duplex,Offladoke Akintola Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Shop,New Alade Market Allen Avenue Ikeja Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Bare Lan,Oladosu Street. Unity Road Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex (ongoing Construction),Channels Avenue Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Obafemi Awolowo Way Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +14 Plots Of Land,"Lateef Jakande Road, Agidingbi. Agidingbi Ikeja Lagos",₦,"840,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Ikeja Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,0 Toilets +Shopping Mall, Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Flats,"Shonibare Estate, Maryland Lagos State Maryland Ikeja Lagos",₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom Duplex And 4 Bedroom Duplex,Adegbite Off Sule Street Mangoro Ikeja Mangoro Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 & 3 Bedroom Flat,Arowojobe Maryland Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedrooms Duplex With 2 Large Office Space,Emmanuel Keshi Street Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets +Newly Built 3bedroom Flat + 1bq,Ogba Ikeja Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Awuse Estate Ikeja Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets +1200sqm+ Structure House,Magodo Ikeja Lagos,₦,"180,000,000",0,0,0,9 beds,10 baths,0 Toilets +5 Bedroom Detached Duplex + Bq,Magodo Ikeja Lagos,₦,"100,000,000",0,0,0,6 beds,5 baths,5 Toilets +37 Acres Of Land,Maryland Ikeja Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Acres Of Land,Awolowo Rd Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Semi Detached Duplex,Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Maryland Ikeja Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In Magodo,Magodo Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +920sm Land,Toyin Street Ikeja Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Isheri Ikeja Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House, Mobolaji Bank Anthony Way Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distressed Sale Pig Farm,Oke Aro Ikeja Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +New Duplex For Sell Ikeja,Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,0 Toilets +Plot Of Land,Magodo Gra Ikeja Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ogundan Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Ikeja, Lagos Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Buy One, Refer 3 15 New Buyers, And Get 200% Of Your Money Back",Imota Ikeja Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted Building,Magodo Ikeja Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished Office Space,Ogba Ikeja Lagos,₦,"460,000",0,0,0,0 beds,0 baths,0 Toilets +A Story Building,Allen Avenue Ikeja Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Alakuko, Alagbado",Alagbado Ikeja Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,3 Toilets +An Exclusive Estates Land Offer!,Ikeja Gra Ikeja Lagos,₦,"3,500,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment (off Plan),Agbeke Balogun Agidingbi Ikeja Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex, Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets +An Industrial Property,Off Oregun Road Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Cane Village Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Detached Duplex With 5 Bedrooms, Guestroom, And A Bq",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,4 baths,4 Toilets +A Newly Completed 6 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,6 beds,4 baths,4 Toilets +5 Bedroom Terrace Duplex, Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex +1 Room Bq, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With 1 Room Bq, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,4 baths,4 Toilets +Jv Land,"Off Isaac John, Ikeja Gra Ikeja Lagos",₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House + Bq, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,15 Onamila Crescent Valley Estate Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Property,Oba Akran Oba Akran Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oregun Oregun Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Flat,Off Opebi Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land ( Joint Venture ), Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Twin Duplex With Bq,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Kajola Str Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Apartment (off Plan),Opebi Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Soji Adegbenga Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land, Opebi Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alausa Oregun Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury Apartment,Salvation Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Storey Building At Unity Road,Unity Road Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Land,Alhaji Bankole Adeniyi Jones Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kudirat Abiola Way Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kudirat A Biola Way Alausa Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House With 2 Rooms Bq,Mole Phase2 Ikeja Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,"Off Adeniyi Jones, Adeniyi Jones Ikeja Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House, Agidingbi Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Agidingbi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex And A Bq,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex,Awushe Estate Opebi Opebi Ikeja Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Nos. Mini Flats And 3 Nos. Room Self Contained Apartments + Shop,"Asenuga Street, Off Osho Street, Opebi Link Bridge, Opebi Opebi Ikeja Lagos",₦,"100,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Storey Building,Bayo Shodipo Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House + Bq,"House 5, Peace Court, 2/4, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Terrace Duplex, Adeniyi Jones Ikeja Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land, Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel, Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel For Sale At Ikeja, Awolowo Way Ikeja Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Agidingbi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Toyin Street Ikeja Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets +Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets +Hotel, Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awuse Estate Opebi Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Old Lastma Office At Anthony For Sale,Old Lastma Office Mobolaji Bank Anthony Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Detached Duplex,Off Oregun Road Oregun Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Storey Building,Acme Road Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Serviced Apartment, Oregun Ikeja Lagos,₦,"38,500,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Flat,Omole Phase 2 Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +2nos 4 Bedroom Flat And 2 Nos 3 Bedroom Flat,Ajalli Str Airport Road(ikeja) Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex, Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Storey Building, Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Michael Ogun Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq,"Lily Drive, M.k.o Abiola Gardens Alausa Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 5 Bedroom Duplex With 2 Bungalow In Gra Ikeja,Gra Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Land For Sale, Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Oba Akran Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land ( Joint Venture ),Bolanle Close Allen Avenue Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Oba Dosunmu, Ikeja Gra Ikeja Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meter Land,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Flat,Sumola Street Maryland Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets +Land,Cbd Close Union House Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedroom Flat,Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"5,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnaike Street Ikeja Lagos,₦,"1,400,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosunmu Street Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Street Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Street Ikeja Lagos,₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds,0 baths,0 Toilets +30 Rooms Hotel At International Airport Road Ikeja For Sale,International Airport Road Ikeja Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Land,Joel Ogunnaike Street Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Crescent Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ajisafe Street Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"353,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abimbola Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnike Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Lagos,₦,"200,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Oba Dosunmu Street Ikeja Lagos,₦,"175,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosunmu Street Ikeja Lagos,₦,"156,600,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Lagos,₦,"153,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Lagos,₦,"100,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Oba Dosunmu Street Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Nos Of 4 Bedroom Detached Duplexes,Michael Ogun Off Sobo Arobiodun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Semi Detached Townhouse Duplex,Ladoke Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Awowojobe Estate, Maryland Ikeja Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikeja Gra Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Allen Avenue Ikeja Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Adeniyi Jones Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Prime Fenced Land On 3 Acres,Cbd Alausa Ikeja Lagos Alausa Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Clean And New 5 Bedroom Fully Detached House,Sunday Adigun Street Alausa Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Prime Fenced Land At Ikeja Gra,Bateye Street Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +A Prime Fenced Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Terrace Duplex At Opebi Ikeja,Max Estate Off Salvation Road Opebi Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200sqm Of Land For Sale At Abimbola Street,Abimbola Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land For Sale At Ikeja,Joel Ogunnike St. Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land For Sale At Remi Fani Kayode Street,Remi Fani Kayode St. Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +975m2 Land For Sale At Oba Dosumu Street,Oba Dosumu St. Ikeja Lagos,₦,"175,500,000",0,0,0, beds, baths, Toilets +870m2 Land For Sale At Oba Dosumu Street,Oba Dosumu St. Ikeja Lagos,₦,"156,600,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House With 2 Rooms Bq, Adeniyi Jones Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +28 Rooms Hotel, Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bank Anthony Way Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"353,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abimbola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnike Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnike Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Hectares Of Land For Sale At Ikeja,"Adekunle Fajuyi Street, Gra Ikeja Ikeja Lagos",₦,"110,000",0,0,0, beds, baths, Toilets +Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"175,050,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"156,060,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"153,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Ikeja Gra Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Dosunmu Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"98,400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Bungalow,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Behind Elizade Oregun Ikeja Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Off Wemco Oba Akran Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Awuse Estate Opebi Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 4 Units F 4 Bedroom Detached House With Bq,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Magodo Phase 2 Alausa Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isheri Igando Express Road Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isheri Igando Express Road Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land With 2 Bungalows And Office Space,Johnson Street Obafemi Awolowo Way Ikeja Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached House With Bq,"Along Abeokuta Express Road, Dopemu, Ikeja Lagos",₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets +Factory,Acme Road Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lace Factory On 1 Acre Of Land At Ikeja Industrial Scheme,"Ikeja Industrial Scheme By Acme Road, Ikeja Ikeja Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +Shop Space,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"5,800,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Allen Avenue Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,782 Square Meter Of Land In G.r.a Ikeja",Gra Ikeja Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +1 Acre Of Land,Lopez Close Opebi Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Mansion + 2 Living Rooms,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,000,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,"Herbert Macaulay Crescent , Ikeja Gra Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,7 baths,8 Toilets +A Plot Of Land,Oba Dosunmi Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + 2 Room B.q,"Ikeja Gra, Ikeja Gra Ikeja Lagos",₦,"111,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex On 2 Floors,"Joel Ogunnaike Street, Ikeja Gra Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,"Ajisafe Street, Isaac John, Ikeja Gra Ikeja Lagos",₦,"250,000,000",0,0,0,4 beds,6 baths,6 Toilets +1 Plot Of Land On Tarred Road Close To Balogun,Close To Balogun Busstop Ikeja Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets +6300 Sqm Of Land At Ikeja,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +New Luxury 2 Bedroom Serviced Apartments,"Ayonubi, Toyin Street Ikeja Lagos",₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Alfred Olaiya Street Opebi Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Maryland Estate, Maryland Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +New Luxury 2 Bedroom Ensuite Apartments,Ayonubi Close Toyin Street Ikeja Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +Dry Land,"Alausa, Alausa Ikeja Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Apartment,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Atoyetubo / Ajao Estate Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Atoyetubo / Ajao Estate Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Acre Of Land On Kudirat Abiola Way,Kudirat Abiola Way Ikeja Lagos,₦,"355,000,000",0,0,0, beds, baths, Toilets +6300sqm Of Land For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Two Bungalows,Johnson Street Obafemi Awolowo Way Ikeja Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,Close To Zenith Bank Awolowo Way Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detatched Duplex With Bq, Ikeja Gra Ikeja Lagos,₦,"375,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plot Of Land,Opebi Link Bridge Opebi Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gra Mansion,"Ikeja, Gra Ikeja Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets +A Brand New 4bedroom Duplex + Bq,"Off Allen Avenue, Close To Former Alade Market Allen Avenue Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Duplex + 2room Bq,Shonibare Estate Maryland Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +Office Block Directly On Opebi Road,Opebi Road Opebi Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bed Detached Duplex,Off Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Justice Coker Estate Alausa Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Off Salvation Way Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,By Punch Mangoro Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land For Sale,Arowojobe Estate Maryland Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Mende Maryland Ikeja Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Mansion,No 29 Oroleye Street Salvation Road Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Alausa Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Shonibare Estate Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Femi Feni Kayode Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Atoyetubo/ajao Street Obafemi Awolowo Way Ikeja Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Former Hotel Building,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Hotel,Opebi Link Road Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex With A Bq,Omole Phase 2 Near Alausa Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Omole Phase 1 Near Alausa Ikeja Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Bedroom Duplex,Dosunmu Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets +3 Bedroom Apartment,Alli Balogun Adeniyi Jones Ikeja Lagos,₦,"63,500,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With A Bq,Omole Phase 2 Near Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Omole Phase 1 Near Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Property,Airport Exit Airport Road(ikeja) Ikeja Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +A Newly Built 8 Bedroom Duplex With Swimming Pool For Sale In Gra Ikeja,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,8 beds,8 baths,8 Toilets +A Newly Built 5 Bedroom Duplex With A Room Bq For Sale In Ikeja,Ikeja Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Mansion On 1500 Square Metres,Ajao Estate Airport Road(ikeja) Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plot Of Land,Kola Amodu Crescent Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex +2 Rooms Bq,Estate Ikeja Gra Ikeja Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,6 Toilets +2 Nos Of 5bedroom Detached Houses With A Room Bq,Off Abah Johnson Adeniyi Jones Ikeja Lagos,₦,"140,000,009",0,0,0,5 beds,5 baths,6 Toilets +Bungalow For Sale,Off Olowo Ikeja Awolowo Way Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 825.75sqm Land,"Wasimi, Onigbogbo Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,"Regina Omolara Street, Off Agbaoku Crescent. Opebi Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Flat With A 4 Bedroom Duplex,"Ewututu,off Mma Road Airport Road(ikeja) Ikeja Lagos",₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets +New 4 Bedroom House For Sale At Ikeja,Magodo Gra 1 Ikeja Ikeja Lagos,₦,"69,900,000",0,0,0, beds, baths, Toilets +4 Units Of 2 Bedroom Flats For Sale,Magodo Gra1 Isheri Ikeja Ikeja Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths, Toilets +7 Units Of A 3 Bedroom Flat Building,Cement Bus Stop Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,3 beds,2 baths,2 Toilets +2 Unit Of 4 Bedroom Flat,"Anifowoshe Ikeja Very Close To Computer Village, Obafemi Awolowo Way Ikeja Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Property For Rent At No 1, Sasegbon Street Gra Ikeja Lagos.","1, Sasegbon Street Gra Ikeja Lagos. Ikeja Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets +2 Blocks Of 4 Flats Of 3 Bedroom Flats,Ikeja Lagos Airport Road(ikeja) Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,3 Toilets +48.9 Acres Of Land,Koreta Street Agidingbi Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Agidingbi Ikeja Agidingbi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Storey Building,A Close Off Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Set Of Flat,"Alaba Street, Off Oworosoki Road Ikeja Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +"8,000 Square Meters Of Land",Adekunle Fajuyi Way Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6,061 Square Metres Of Land",Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,942 Square Metres Of Land",Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,200 Square Metres Of Land",Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,200 Square Metres Of Land",Oba Akinjiobi Way Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"3,972 Square Metres Of Land",Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"3,361 Square Metres",Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,972 Square Metres Of Land",Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,724 Square Metres Of Land",Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets +"2,528 Square Metres Of Land",Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,989 Square Metres Of Land",Isaac John Street Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,915 Square Metres Of Land",Isaac John Street Ikeja Lagos,₦,"325,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,895 Square Metres Of Land",Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,800 Square Metres Of Land",Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,532 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,500 Square Metres Of Land",Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,275 Square Metres Of Land",Ajisafe Street Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,200 Square Metres Of Land",Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,200 Square Metres Of Land",Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +"1,000 Square Metres Of Land",Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000 Square Metres Of Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Oduduwa Stree (gate Street) Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Ajisafe Street Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ajisafe Street Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +573 Square Metres Of Land,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +520 Square Metres Of Land,Adeyemo Lakija Street Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Oduduwa Stree (gate Street) Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Ladoke Akintola Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Plot Of Land,Adefowope Crescent Opebi Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 4 Bedroom Duplex With 2 Bq,Esugbayi Street Ikeja Gra Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Landed Property,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Land,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Bamgbose Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +Old Storey Building,Anifowoshe Oba Akran Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Three Bedroom Flat.,Ezekiel Street Toyin Street Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,2 baths,2 Toilets +Tastefully Built 32 Units Of 3 Bedroom Luxury Flats All Room Ensuite,Ikeja Gra Lagos State Ikeja Gra Ikeja Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Acres Of Land,Agidingbi Agidingbi Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment,Oduduwa Crescent Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Landed Property For Sale,Land /properties For Sale 1. A Plot Of Land With Tenement Houses On 600 Square Meters. Price:#25m @ Otunba Str Ojodu Ikeja Lagos 2. A Plot Of Land On 686 Square Meters Along Abiodun Adeyemi Str Ojodu Ikeja Lagos Nigeria. Price:#24m 3. A Plot At 54 Aina Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Awuse Estate Opebi Ikeja Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Adeniyi Jones Street, Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Opebi Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +1143m2 Land For Sale At Ikeja Gra,Joel Ogunnaike Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Land,Joel Ogunnaike Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi Ikeja Lagos Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Acres Of Land For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"81,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +An Uncompleted Building,Oba Akran Oba Akran Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Tastefully Finished 7 Bedroom Detached House For Sale At Ikeja,Anthony Village Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),"Adeniyi Jones,ikeja,lagos. Adeniyi Jones Ikeja Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Anifowose, Heart Of Ikeja Lagos Agidingbi Ikeja Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Opebi Road Opebi Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Adekule Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"(direct Brief) 5bedroom Detached House On 800sqm Land For Sale In River Valley Estate Ojodu Berger, Ikeja.",River Valley Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,"Idowu Adebanjo Street, Off Omofade Crescent, Omole Phase 1 Agidingbi Ikeja Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),"Curtis Adeniyi Jones Street, Off Adeniran Ogunsanya Adeniyi Jones Ikeja Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex For Sale At Ikeja,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale At Ikeja,"Ikeja Gra, Lagos Ikeja Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex For Sale At Ikeja Gra,By Shobo Arobiodu Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +2 Units Of 4 Bedroom Flats With 2 Units Of 2 Bedroom Flat On 799 Square Metres,"Gbemisola Str ,off Allen Av, Ikeja Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,2 baths,10 Toilets +2 Units Of 4 Bedroom Flat With 2 Units Of 2 Bedrooms Flat,"Gbemisola Str ,off Allen Av, Ikeja Allen Avenue Ikeja Lagos",₦,"85,000,000",0,0,0,4 beds,2 baths,4 Toilets +Bareland On 765 Square Metres,"Sylvia Crescent Opp Zenith Bank, Anthony Maryland Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Acres Of Land At Ikeja For Sale,Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Fully Fenced Bareland,Anuoluwapo Close/regina Omolara Street Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House Plus Two Rooms Boys Quarters,"House 1, Peace Court, 2/4, Adeyemo Alakija Street Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,"Peace Estate, By Clay Bus Stop, Oregun Lagos Oregun Ikeja Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedrooms Furnished Duplex At Magodo,Phase2 Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exqusitely Finished 6 Units Of 5 Bedroom Terrace Duplex,Bella Vista Terraces Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of Office Space On 3 Floors,Cipm Avenue Ikeja Alausa Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths, Toilets +Land For Sale,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sowemimo Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Fani Kayode Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Duplex With A Bq,"Dosunmu Street Off Isaac John Street, Gra Ikeja Ikeja Gra Ikeja Lagos",₦,"450,000,000",0,0,0,8 beds,8 baths,8 Toilets +Land (title C Of O),Ikeja Ikeja Lagos,$,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +18725.8 Square Metres Of Land,Ajao Road Adeniyi Jones Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Akora Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land ( Joint Venture ),Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Off Opebi Allen At Salvation, Opebi Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi Allen Avenue Ikeja Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +8000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +6061m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0, beds, baths, Toilets +5942m2 Of Land For Sale At Ikeja Gra,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +4200m2 Of Land For Sale At Sobo Arobiodu Street,Sobo Arobiodu Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +4200m2 Of Land For Sale At Ikeja Gra,Oba Akinjiobi Way Ikeja Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +4000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +3972m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +3872m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"3,482m2 Of Land For Sale At Ikeja Gra",Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +3361m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0, beds, baths, Toilets +2972m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +2724m2 Of Land For Sale At Ikeja Gra,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2700m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets +2528m2 Of Land For Sale At Ikeja Gra,Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +1989m2 Of Land For Sale At Ikeja Gra,Isaac John Street Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +1895m2 Of Land For Sale At Ikeja Gra,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1800m2 Of Land For Sale At Ikeja Gra,Ladipo Bateye Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1532m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +1500m2 Of Land For Sale At Ikeja Gra,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +1275m2 Of Land For Sale At Ikeja Gra,Ajisafe Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1200m2 Of Land For Sale At Shodipo Street,Off Harold Shodipo Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1200m2 Of Land For Sale At Ikeja Gra,Obo Arobiodu Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Bateye Street,Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +1000m2 Of Land For Sale At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +1000m2 Of Land For Sale At Ikeja Gra,Adekunle Fajuyi Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +928m2 Of Land For Sale At Ikeja Gra,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +740.162m2 Of Land For Sale At Ikeja Gra,Oduduwa Street Ikeja Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +575m2 Of Land For Sale At Ikeja Gra,Ajisafe Street Ikeja Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +573m2 Of Land For Sale At Ikeja Gra,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +520m2 Of Land For Sale At Ikeja,Adeyemo Alakija Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +500m2 Of Land For Sale At Oduduwa Street,Oduduwa Street Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +500m2 Of Land For Sale At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +475m2 Of Land For Sale At Remi Fanikayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +464m2 Of Land For Sale At Ikeja,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Luxury House With C Of O,Phase 1 Ikeja Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Floors Commercial Building,Toyin Street Toyin Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds,0 baths,0 Toilets +A Tastefully Finished 4 Bedroom Duplex With Boys Quarters,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Open Plan 5floor Office Building,Off John Olugbo St. Unity Road Ikeja Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Bankole Oregun Lagos Oregun Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +312sqm Of Land For Sale At Ikeja,Ajao Road Ikeja Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets +36 Plots Of Land For Sale At Ikeja,Ajao Road Ikeja Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Duplex For Sale At Ikeja,Omole Phase 1 Ikeja Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Land,Cbd Alausa Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alausa Secretariat Alausa Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Empty Land,Off Shrine Alausa Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Adekunle Fakunle Street Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Purpose Built School On 3floors With Play Area,Bank Anthony Way Maryland Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached House,Herbert Macaulay Crescent Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Twin Terrace 4 Bedroom Duplex,Julie Estate Oregun Ikeja Lagos,₦,"81,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land,Beside Zenith Bank Agidingbi Ikeja Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Unit Of Furnished 4 Bedroom Detached House,Sobo Arobiodun Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House With A Room Bq,Opebi Estate Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Multi Storey Building With Warehouse/ Factory,Ikosi Road Oregun Via 7up Oregun Ikeja Lagos,₦,"1,633,500,000",0,0,0,0 beds,0 baths,0 Toilets +Ipd,Adeyemi Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Old Tenament Building,8 Shanu Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Numbers Of All Ensuite 5 Bedrooms Semi Detached Duplex With Bq,Kehinde Akinsette Close Maryland Ikeja Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +Twin Duplex,Julie Estate Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop,Olowu Street Mobolaji Bank Anthony Way Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,10 Toilets +Land For Sale,Alausa Ikeja Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 5 Bedroom Terrace Duplex With 1 Room Bq Each,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Building,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Exquisitely Finished 5 Bedrooms Semi Detached Duplex,Off Ajanaku Opebi Ikeja Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +Exquisite Hotel,Off Obafemi Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Ikaja Ikeja Gra Ikeja Lagos,₦,"6,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Posh 6 Bedroom Detached House,Gra Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Fantastic 6 Bedroom Terraced Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"155,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Bedroom Mansion,G. R. A Ikeja Gra Ikeja Lagos,₦,"465,000,000",0,0,0,8 beds,9 baths,10 Toilets +5 Bedroom Detached Duplex + An Ensuite Bonus Room,Gra Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terrace Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex In Ikeja,Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Agbaoku Street Allen Avenue Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,G. R. A Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exclusive Semi Detached 5 Bedroom House In Ikeja Gra,G. R. A Ikeja Gra Ikeja Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Semi Detached 4 Bedroom Duplex At Ikeja,Allen Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Acres Of Land,Oregun Oregun Ikeja Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Acres Of Land,Oba Akran Oba Akran Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2900sqm Of Land At Opebi,Opebi Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat + Bq At Ikeja,Allen Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets +Land,Ogunsolu Street. Mangoro Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 8bedroom Duplex With 2 Rooms Bq And Swimming Pool On 1,340 Square Metres",Dosumu Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets +6 Bedroom House For Sale At Ikeja,Oba Akinjobi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +8 Bedroom House For Sale At Ikeja,Dosumu Street Ikeja Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"200,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +4560sqm Of Land For Sale At Ikeja,Alausa Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom House For Sale At Ikeja,Along Cement Road Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Aba Johnson Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Warehouse,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,10 beds,0 baths,0 Toilets +Land For Sale,"Oregun Road, Kudirat Abiola Way Oregun Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Agbaoku Street Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 4 Bedroom Semi Detached House,Allen Avenue Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land ( Joint Venture ),Tunde Gafaru Close Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Admiral Oduwaye Street, Omole Phase 1, Lagos State Alausa Ikeja Lagos",₦,"800,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Akinola Cole Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +40 Units Of 3 Bedroom Luxury Terrace Duplexes For Sale At Ikeja,Ikeja Ikeja Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +"16 Rooms Hotel With 2 Challets, A Bar, Restuarant And To Functional Generators On 1,100 Square Metres Of Land",Off Salvation Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Of Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,600 Square Metres Of Land",Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"8,100 Square Metres Of Land",Behind High Court Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"8,000 Square Metres Of Land",Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Opebi Road Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached House With Bq On 60 Square Metres Of Land,Opebi Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Duplex In Ikeja,Opebi Opebi Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Terraced Duplex,Okunnu Terraces Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Bedroom Detached House,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"9,000,000",0,0,0,7 beds,7 baths,7 Toilets +Land For Sale,Tunde Gafaru Close Adeniyi Jones Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Bungalow,Lagos Ibadan Expressway Ikeja Gra Ikeja Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex And A Bq,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +40 Units Of 3 Bedroom Terraced Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terraced Duplex,Opebi Opebi Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Attractive 2000 Sqm Land,"Agba Oku Estate. Opebi, Ikeja Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Attractive 2000 Sqm Land,"Agba Oku Estate. Opebi, Ikeja Opebi Ikeja Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Awolowo Way Opp Alausa Mall Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Detached House At Ikeja,Ikaja Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,4 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Detached House In Ikeja,Bolanle Close Allen Avenue Ikeja Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land For Sale,Issac John Street Ikeja Gra Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Property 2 Block Of 2 Storeys Building,Off Coker Road Illupeju Lagos Maryland Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way. Ikeja Gra Ikeja Lagos,₦,"405,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Off Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Shasegbon Street Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Unit Of 4 Bedroom Terrace Duplex + 2 Roombq,Efuleye Close Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,Wole Ogunjimi Street Off Agbaoku Street Opebi Ikeja Opebi Ikeja Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Besides Total Filling Station Alausa Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Bungalow,Femi Otedola Estate Alausa Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Oba Akran Ikeja Oba Akran Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex,Oduduwa Crescent Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land For Sale,Cbd Alausa Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Awolowo Way Opp Alausa Mall Alausa Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Detached House,Bolanle Close Allen Avenue Ikeja Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedrooms Semi Detached Duplex In Ikeja,Howson Wright Estate Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +Semi Detached Duplex,Ladipo Bateye Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Ladipo Oluwole Agidingbi Ikeja Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land In Ikeja,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Off Agidingbi Agidingbi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Olowu Ikeja. Airport Road(ikeja) Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Detached House, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +2 Plots Of Land At Ikeja,Opebi Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex With Warehouse,Alausa Alausa Ikeja Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,3 Toilets +Fully Detached 4 Bedroom Duplex,Shonny Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Opebi Road Opebi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi Township Opebi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Opebi Township Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Awuse Estate Opebi Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,G Cappa Estate Maryland Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Etsoye Close Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Akinsete Close Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Olaperi Street Maryland Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Shony H'way Maryland Ikeja Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"910,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Measuring 1781.28,Cbd Ikeja Agidingbi Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sobo Arobiodu Street Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"505,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"405,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Street Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oba Dosumu Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Off Harold Shodipo Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adekunle Fajuyi Way. Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Shasegbon Street Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ladipo Bateye Street Balogun Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Village Adeniyi Jones Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Of Land At G Cappa Estate,G Cappa Estate Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1400sqm Of Land At Akinsete Close,Akinsete Close Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +1100sqm Of Land At Olaperi Street,Olaperi Street Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +820sqm Of Land At Shony Way,Shony Way Ikeja Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +2972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +2724sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2700sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets +Dry Land For Sale At Ladoke Akintola,Ladoke Akintola Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Warehouse,Opebi Opebi Ikeja Lagos,₦,"280,000,000",0,0,0,1 beds,0 baths,3 Toilets +2007sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +1895sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1800sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +1500sqm Of Dry Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +1275sqm Of Land At Oba Dosumu Street,Oba Dosumu Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land Off Harold Shodipo Street,Off Harold Shodipo Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land On Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +928sqm Of Land At Remi Fani Kayode Gra,Remi Fani Kayode Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +573sqm Of Land At Shasegbon Street,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +464sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached House,"Ikeja Gra, Ikeja, Lagos. Ikeja Gra Ikeja Lagos",₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Landed Property,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex + Bq,Church Street Opebi Ikeja Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Acres Of Land For Sale,Adekunle Fajuyi Way Ikeja Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +6061sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"910,000,000",0,0,0, beds, baths, Toilets +5942sqm Of Land On Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3872sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +3482sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +3361sqm Of Land On Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"505,000,000",0,0,0, beds, baths, Toilets +2972sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +2724sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2700sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"405,000,000",0,0,0, beds, baths, Toilets +2528sqm Of Land At Ladoke Akintola Street,Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2007sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1989sqm Of Land At Isaac John Street,Isaac John Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +1895sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1800sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +1500sqm Of Land At Oba Akinjobi Way,Oba Akinjobi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +928sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +888sqm Of Land At Oba Ladejobi Street,Oba Ladejobi Street Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +550sqm Of Land At Shasegbon Street,Shasegbon Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +464sqm Of Land At Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,"The Citiview Homes Is Eight Minute Drive From Magodo/alausa Secretariat, Lagos State Seat Of Power. Arepo., Alausa, Ikeja, Lagos Ikeja Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +2 Nos 3 Bedroom Duplex With 2 Nos 3 Bedroom Flat,Community Road Allen Avenue Ikeja Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Improved 5 Bedroom Semi Detached Duplex,Alhaji Shittu Alausa Ikeja Lagos,₦,"94,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex At Ikeja,Oroleye Opebi Ikeja Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex At Ikeja,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of 5 Bedroom Terrace Duplex At Ikeja,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Opposite Omole Phase 1 Agidingbi Ikeja Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land In Ikeja,"Off Fajebe Street, Onipetesi Estate, Mangoro Ikeja Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 4, 5 Bedroom Semi Detached Townhouse At Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Nice 5 Bedroom Semi Detached Duplex In Ikeja,"Akin Osiyemi Street, Allen Avenue Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets +2 Bare Plots Of Land,"Mechanic Village, Agidingbi Agidingbi Ikeja Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shrine Agidingbi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Square Metres Of Land,Ipodo Street Obafemi Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Square Metres Of Land,Anuoluwapo Street Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2403 Square Meetres Of Land,Along Ajao Road Adeniyi Jones Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Acres Of Land For Sale,"Gra , Ikeja , Lagos. Ikeja Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Land For Sale On Remi Fani Kayode Street,Remi Fani Kayode Street Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House,Off Allen Allen Avenue Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Of Partly Furnished And Fitted Duplexes With Modern Finishing,"2, Esugbayi Street Off Sobo Arobiodu Street,ikeja Gra Ikeja Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +"6,000 Square Metres Of Land",Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,200 Square Metres Of Land",Awolowo Way Obafemi Awolowo Way Ikeja Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom With 2 Bq And A Swimming Pool,Magodo Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Land For Sale,"Ladoke Akintola Street. Ikeja Gra , Lagos . Ikeja Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +"Land For Sale In Ogba, Opposite Excellence Hotel",Shorinmade Street Ikeja Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat,"Adekoya Street, Mende Estate. Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Duplex,Oduduwa Crescent Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,6 beds,7 baths,7 Toilets +2 Bedroom Detached Duplex,Bolanle Close Allen Avenue Ikeja Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Duplex,Gra Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 4 Bedroom Terrace Duplex,Talabi Adeniyi Jones Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +7000sqm Of Land On Bank Anthony Way,Bank Anthony Way Ikeja Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sasegbon Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sobo Arobiodu Ikeja Gra Ikeja Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Way Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"517,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Harold Shodipo Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"216,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Ladejobi Ikeja Gra Ikeja Lagos,₦,"164,280,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"167,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"147,980,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"167,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"152,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"12,350,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"12,270,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"107,350,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"91,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"85,500,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex,"Gra , Ikeja , Lagos Ikeja Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +Detached,Joel Ogunnaike Gra Ikeja Ikeja Lagos,₦,1,0,0,0, beds, baths, Toilets +Nice Duplex (13 Rooms Office Space) In Ikeja,"53 Ogundana Street, Off Community Lane, Allen Avenue Ikeja Lagos",₦,"200,000,000",0,0,0, beds,10 baths,0 Toilets +5 Bedroom Detached House For Sale,"Adeyemo Alakija Street, Gra Ikeja Lagos Ikeja Lagos",₦,"185,000,000",0,0,0, beds, baths, Toilets +2 Nos Of 4 Bedroom Duplex,Adeboye Solanke Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +18 Executive Rooms For Commerical Use,Behind Ikeja Shopping Mall. Obafemi Awolowo Way Ikeja Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Shopping Mall,Olowu Street Ikeja Mobolaji Bank Anthony Way Ikeja Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +1000 Square Meters Of Land In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Land (measuring 6000 Sqm) In Ikeja G.r.a,Ikeja G.r.a Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land (measuring 1000 Sqm) In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Shopping Complex,Olowu Mobolaji Bank Anthony Way Ikeja Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (measuring 1000 Sqm) In Ikeja,Mobolaji Bank Anthony Way Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Town House In Ikeja,Off Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +To Let: Block Of 20 Luxury Serviced Flats At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"7,000,000",0,0,0,3 beds,3 baths, Toilets +For Sale: 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Plot Of Land In Ikeja,Oregun Ikeja Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Locked Up Shop,Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"5,700,000",0,0,0,0 beds,0 baths,0 Toilets +A Demolish Able Bungalow On 1 Plot Of Land For Sale,Ologun Street Ikeja Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Bungalow,Off Agbaoku Street Opebi Ikeja Lagos,₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets +"3,700 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000 Square Metres Of Land",Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000 Square Metres Of Land",Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Adeyemo Alakija Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex In Ikeja,Ogunusi Road Ikeja Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +"3 Bedroom Duplex With Swimming Pool On 3,482.56 Square Metres Of Land",Adekunle Fajuyi Road Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely Built 5 Bedroom Duplex At Akintola Adeguwa,Akintola Adeguwa Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Commercial Land For Sale At Muritala Mohammend Airport,Muritala Mohammend Airport Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja G.r.a Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,Ikeja Gra Ikeja Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House,Off Bolanle Close By. Ikeja Medical Center Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Units Of 4 Bedroom Duplex Office Space,"70 (a,b,c) Off Allen Avenue, By Nikky Africana Allen Avenue Ikeja Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Acres Of Land,Lateef Jakande Agidingbi Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Ikeja,Aranpasanwu Street Opebi Ikeja Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Twin Terrace Duplex In Adeyemo Alakija Street Ikeja Gra,Adeyemo Alakija Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House Atisheri North,Isheri North Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Newly Built 4br Semi Detached House In An Estate Ikeja,Off Allen Avenue Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Acres Of Land,Jakande Road Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5 Bedroom Duplex,Toyin Street Toyin Street Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +660 Square Metres Of Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 6 Bedroom Fully Detached Duplex In Ikeja.,"4b Awori Close Akora Estate, Adeniyi Jones Ikeja. Adeniyi Jones Ikeja Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +Neatly Built 6 Bedroom Fully Detached Duplex In Ikeja.,"4a Awori Close, Akora Estate Adeniyi Jones Ikeja Lagos",₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 6 Bedroom Fully Detached Duplex In Ikeja,"No. 24 Oba Akinjobi Street, Close To Abiola Close, Ikeja Gra Ikeja Lagos",₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Terrace Duplex In Ikeja,"10 Adeyemo Alakija Street, Off Sobo Arobiodun Street, Ikeja Gra Ikeja Lagos",₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 2600sqm,Off Opebi Allen Road Opebi Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 5 Bedroom Fully Detached Duplex In Ikeja.,"30 Aba Johnson Crescsent, Off Onipinla Lane Harmony Estate Adeniyi Jones. Adeniyi Jones Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Magodo 14 Alausa Ikeja Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Units Of Newly Built 5 Bedroom Duplex In Ikeja,"Clifford Osawaru Close, Off Alalija Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In Ikeja,"7b Adeyemo Alakija Street, Ikeja Gra Ikeja Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +2000 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3.9 Acres Of Land,Off Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +334 Square Metres Of Land,Oyero Street Adeniyi Jones Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Square Metres Of Land,Opposite Trinity Mall Awolowo Way Ikeja Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent 5 Bedroom Semi Detached Duplex With Bq,"Henry Adefope Street,awuse Estate,opebi,ikeja Opebi Ikeja Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +3482.56 Square Metres Of Land With Dilapidated 3 Bedroom Duplex,Adekunle Fajuyi Road Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,3 beds,0 baths,0 Toilets +8 Bedroom Detached House With Bq And A Swimming Pool,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,8 beds,0 baths,0 Toilets +4 Bedroom Terraced House With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Vacant Office Complex On 4 Floors,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Kadiri Street Oregun Ikeja Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 6 Storey Building For Sale On A Commercial Road In Ikeja Fairly New,Oba Akran Oba Akran Ikeja Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +750 Sqm Warehouse For Sale,"Beside Total Filling Station, Ojota, Close To Olusosun Oregun Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Duplex In Ikeja,Adeboye Solanke Street Allen Avenue Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Open Plan Office Space On 4 Floors,Along Toyin Street Toyin Street Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (registered Conveyance And Survey Plan),Oyetubo Street/ Ajao Road Awolowo Way Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +120 By 60 Feet Land,Agidingbi Agidingbi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Piece Of Land For Sale,"Through Nnpc Opposite Firstbank, Behind Elizade Oregun Ikeja Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Refurbished 5 Bedroom Duplex,Kayode Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Refurbished 5 Bedroom Duplex,Kayode Adeniyi Jones Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 5 Bedroom Detached Duplex Houses + 1 Room Bq,Hubert Macaulay Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +2 Units Of Newly Built 5 Bedroom Duplex In Ikeja,"29 Fani Kayode Street, Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex In Ikeja,"6a Oduduwa Street, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In Ikeja G.r.a,Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished Purposely Built Galleria On 4 Floors,"Opebi, Ikeja, Lagos Ikeja Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +12 Room Luxury Hotel At Olu Akerele,Olu Akerele Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +An Executive & Luxurious Hotel Complex With 85 Rooms,Opebi Link Road Ikeja Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,"Off Sule Street, Mangoro Mangoro Ikeja Lagos",₦,"55,000,000",0,0,0,9 beds,8 baths,8 Toilets +Luxury Five Bedroom Duplex In Magodo Phase 2,Basheer Shittu Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Land,Henry Adefowope Street Opebi Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Allen Allen Avenue Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Hotel,Opebi Opebi Ikeja Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +2 Unit Of 3 Bedroom Flat,Behind 10 Degree Event Center Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets +5 Units Of 5 Bedroom Semi Detached Duplex In Ikeja,"36b Ladoke Akintola, Ikeja Gra Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 5 Bedroom Semi Detach Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Fully Detach Duplex In Ikeja,Ikeja G.r.a Ikeja Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Pent House With 2 Living Rooms,Oregun Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With A Studio Room And A Maids Room,Oregun Oregun Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Off Oba Akinjobi Street. Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +A 1000 Square Meter Land In Maryland,Beside Rhema Church Maryland Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Acres Of Land Along Muritala Mohammed Airport Road,Muritala Mohammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Magodo Gra Phase 2 Alausa Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex At Magodo Shangisha,"Magodo, Shangisha Ikeja Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets +500 Square Metres Of Land,Ladoke Akitola Street Ikeja Gra Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Duplex On 500 Square Metres With Bq,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Duplex,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,Anifowoshe Obafemi Awolowo Way Ikeja Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House Plus Bq,Ikeja Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +800 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Acres Of Land,Muhammed Airport Road Beside Mobil Filling Station Airport Road(ikeja) Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opebi/allen Junction. Opebi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Hectares Of Land,Along Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Acres Of Land,"Beside Mobil Filling Staion,along Muritala Mohammed Airport Road Airport Road(ikeja) Ikeja Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1.6 Hectares Of Land,"Mm2 Airport, Ikeja Airport Road(ikeja) Ikeja Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,108 Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"46,adeniyi Jones Road Adeniyi Jones Ikeja Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Of Land With Structures On 2 Floors,Ladoke Akintola Road Ikeja Gra Ikeja Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Of Land,Oba Akinjobi Road Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Mansion Plus 2 Units Of Office Space For Sale,"13, Abba Johnson Crescent, Adeniyi Jones Ikeja Lagos",₦,"285,000,000",0,0,0,7 beds,6 baths,6 Toilets +3 Acres Of Land On Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +3 Acres Of Land Along Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +A Block Of 6 Units Of 3 Bedroom Flat Off Toyin Street,Off Toyin Street Ikeja Lagos,₦,"60,000,000",0,0,0,18 beds,18 baths, Toilets +Newly Built 4 Bedroom Flat In Ikeja,Ayo Rosiji Street Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Acres Of Land On Muritala Muhammed Airport Road,Muritala Muhammed Airport Road Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Duplex,Ogunlowo Close Adeniyi Jones Ikeja Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Units Of 4 Bedroom Flat,Opebi Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3900 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1950 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Adekunle Fajuyi Street Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2900 Square Metres Of Land,Awuse Estate Opebi Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ikeja G.r.a Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached House,B Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,Awolowo Way Awolowo Way Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Partially Furnished 7 Bedroom Semi Detached House, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Lavished Finished 5 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Well Built 4 Bedroom Detached House At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Land,Adeniyi Jones Road Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oregun Road Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fajuyi Adekunle Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Issac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Acres Of Land,Lateef Jakande Road Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4100 Square Metres Of Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +3900 Square Metres Of Lan,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Acres Of Land,Lateef Jakende Road Agidingbi Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Detached Duplex + 2 Room Bq,Ikeja G.r.a Ikeja Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +1050 Square Metres Of Land,"Ajanku Street, Awuse Estate Opebi Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +1400 Square Metres Of Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +6500 Square Metres,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats At Cement,Cement Ikeja Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets +Plot Of Land,Kudirat Abiola Way Oregun Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Detached Duplex + 2 Rooms Bq In Ikeja,"5, Micheal Otedola Street Off Joel Ogunnaike(lagos Country Club) Ikeja Gra Ikeja Lagos",₦,"800,000,000",0,0,0,10 beds,8 baths,8 Toilets +"An Industrial Property , Facing Mobolaji Johnson Avenue",Mobolaji Johnson Way Ikeja Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Shops,New Alade Market Allen Avenue Ikeja Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,15 Opebi Road Opebi Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Functional School (primary And Secondary) On 1400 Square Metres Of Land,Oregun Oregun Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Units Of 5 Bedroom Detached Duplex Houses, Off Oduduwa Crescent",Off Oduduwa Crescent Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex,Adeniyi Adeniyi Jones Ikeja Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished And Spacious 5 Bedroom Fully Detached House At Ikeja Gra,"Gra, Ikeja Ikeja Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets +Luxurious Newly Built 4 Units Of 4 Bedroom Duplex,Off Opebi Opebi Ikeja Lagos,₦,"63,000,000",0,0,0,4 beds,5 baths,5 Toilets +8 Units Of 3 Bedroom Flats,Gbemisola Street Off Allen Avenue Allen Avenue Ikeja Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +A Newly Renovated 5 Bedroom Twin Duplex,Off Wemco Around Alausa Shoprite Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Duplex At Ikeja Gra,"Gra, Ikeja Ikeja Lagos",₦,"2,500,000,000",0,0,0, beds, baths, Toilets +A Newly Built 4 Bedroom Terrace Duplex In Ikeja,"16, Church Street, Off Salvation Road Opebi Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2000 Sqm Of Land,Off Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Semi Detached In Ikeja Gra,"Michael Ogun St, Ikeja Gra Ikeja Lagos",₦,"185,000,000",0,0,0, beds, baths, Toilets +Fenced Gated Land,Adeniyi Jones Avenue Adeniyi Jones Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Semi Detached Duplex With 2 Rooms Bq,Ikeja Lagos Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets +Newly Built 5 Bedrooms Duplex Gra Ikeja,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +A Twin Duplex Of 4bedroom With 2rooms Bq,"Awoniyi Elemo Str, Airport Road(ikeja) Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Juli Estate Oregun Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Juli Estate Oregun Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +One & Half Plot Of Bare Land At Sasegbon Street,Sasegbon Street Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Plot Of Land,Opebi Road Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +530 Sqm Of Land,Mobolaji Bank Anthony Way Mobolaji Bank Anthony Way Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +1050 Sqm Of Land,Along Opebi Ling Bridge Opebi Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"Well Finished 5 Units Of 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Executive 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House On 3 Floors With A Pent Floor And A Room Bq,Abba Johnson Crescent Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Half Plot Of Land,"9 Wasimi Street,off Ikorodu Road Maryland Ikeja Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Home That Brings Comfort,Ladoke Akintola Ikeja Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +House For Sale,Allen Avenue Ikeja Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +"Well Finished 2 Wings Of 5 Bedroom Duplex, Adeyemo Alakija Street",Adeyemo Alakija Street Ikeja Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Wasimi, Maryland Maryland Ikeja Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex + Bq,Awuse Estate Opebi Ikeja Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terrace Duplex,Emeka Ayaogu Housing Estate Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Emeka Anyaoku Housing Estate Beside Police Hq Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Mangoro Bstop Mangoro Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Emeka Anyaoku Housing Estate Beside Police Hq Gra Ikeja Gra Ikeja Lagos,₦,"50,000,000",0,0,0,4 beds,3 baths,3 Toilets +Land,"Ajanaku Street, Awuse Estate Opebi Ikeja Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Beco Cocrete Mongoro Bustop Mangoro Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House + Bq,Rev. Ogunbiyi Street Ikeja Gra Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +A 4 Bedroom Terrace Duplex,Emeka Ayanku Housing Estate Ikeja Gra Ikeja Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex With 2 Rooms Bq,Adeniyi Jones Estate Adeniyi Jones Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Adebayo Banjo Opebi Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced Open Space For Office Use,Cmd Road Alausa Ikeja Lagos,₦,"640,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Oluwole Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Aromire Awolowo Way Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Single Bay Warehouse On 1200sqm Land,Acme Agidingbi Ikeja Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Way Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Street Ikeja Gra Ikeja Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sobo Arobiodun Ikeja Gra Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Street Ikeja Gra Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"1,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Joel Ogunnaike Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Fani Kayode Ikeja Gra Ikeja Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oduduwa Way Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sasegbon Street Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adekunle Fajuyi Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ayoola Coker Ikeja Gra Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ladipo Bateye Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Storey Building,"Bayo Shodipo Street, Off Afisman Drive Ikeja Gra Ikeja Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,10 Toilets +"Exquisite 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +"Executive 4 Bedroom Terrace Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +"Well Finished 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +"Executive 4 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +Uncompleted 4 Bedroom Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +"Tastefully Finished 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Well Finished 5 Bedroom Detached Duplex In Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Land,Agbaoku Area Opebi Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Road Awolowo Way Ikeja Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Ikeja Gra Ikeja Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale In Opebi Ikeja,"Church Street, Opebi Ikeja Ikeja Lagos",₦,"62,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Detached At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Paper Mill,Billings Way Oregun Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached House With 3 Rooms Servant Quarters,"Mko Garden Estate(marwa) , Hibiscus Street Alausa Ikeja Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Acres Land,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Servant Quarters,Ladoke Akintola Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Oba Akran Avenue Oba Akran Ikeja Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Road Alausa Ikeja Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mobolaji Johnson Avenue Alausa Ikeja Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikosi Road By Daystar Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Muritala Mohammed International Airport Airport Road(ikeja) Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of A 3 Bedroom Flat Building,Oregun Oregun Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,1 baths,1 Toilets +A 4 Bedroom Terrace Duplex,Ikeja Gra Estate Ikeja Gra Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of A 3 Bedroom Flat Building,"Oba Akran Road, Beside Guinness Factory Oba Akran Ikeja Lagos",₦,"45,000,000",0,0,0,3 beds,2 baths,2 Toilets +2 Bedroom Flat,Ikosi Road Oregun Ikeja Lagos,₦,"60,000,000",0,0,0,2 beds,1 baths,2 Toilets +5 Bedroom Duplex,Adeyemo Alakija Ikeja Gra Ikeja Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,"Toyin Street, Ikeja Ikeja Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Terrace House All Rooms En Suite With 1 Rooms Bq,Awuse Estate Opebi Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +8 Units Of 5 Bedroom Terrace Houses All Rooms En Suite With 1 Room Bq,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace In Ikeja,Awuse Estate Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Oba Akran Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Adeniyi Jones Adeniyi Jones Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached House With A Chalet,"Agbalajobi Crescent, Ogba Gra, Off Wempco Road, Ogba Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A 1,500sqm Land",Oduduwa Street Ikeja Gra Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom House On Wemco Road,Wemco Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land With Units Of Flats,Omole Phase 1 Estate Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Land,"Off Adeniyi Jones, Ikeja Ikeja Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Obafemi Awolowo Way, Ikeja Ikeja Lagos",₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mobolaji Bank Anthony Way Ikeja Ikeja Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Off Gra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Offgra Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +1000sqm Of Land At Olowu Street,Olowu Street Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Full Plot Of Land At Ipodo,Ipodo Ikeja Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Half Plot Of Land Close To Ikeja Shopping Plaza,Close To Ikeja Shopping Plaza Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached House, By Adeniyi Jones",By Adeniyi Jones Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Land,Anifowoshe Ikeja Ikeja Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex With 3 Open Plan Space,Onipetesi Industrial Estate Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Coca Cola Bustop Ikeja Ikeja Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 18,000sqm Of Land",Off Awolowo Way Awolowo Way Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,000sqm Of Land",Fani Kayode Ikeja Gra Ikeja Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,000sqm Of Land",Ladoke Ikeja Gra Ikeja Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,000sqm Of Land",Isaac John Street Ikeja Gra Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,400sqm Office Space",Fani Kayode Ikeja Gra Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,000sqm Of Land",Gra Ikeja Gra Ikeja Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,000sqm Of Land",Gra Ikeja Gra Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 500sqm Of Land,Gra Ikeja Gra Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +4 Bedroom,Methodist Church Street. Opebi Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom Detached House With 2 Rooms Bq,"Olaribiro Street, Behing Alade Market Awolowo Way Ikeja Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Gra Ikeja Ikeja Gra Ikeja Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets +A 900sqm Of Land,Off Salvation Opebi Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,842sqm Of Land",Kudirat Abiola Way Oregun Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 10 Acre Of Land,Oregun Road Oregun Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Duplex With A Room Bq,"Along Amori Odumosu, Close By Thomas Okoya Estate Adeniyi Jones Ikeja Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom House With A Bq,Gra Ikeja Gra Ikeja Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Townhouse With A Bq,"Adekunle Fajuyi Way,ikeja Gra Ikeja Gra Ikeja Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached,Immanuel Street Maryland Ikeja Lagos,₦,"144,000,000",0,0,0,6 beds,5 baths,5 Toilets +2000 Sqm Plot Of Land At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Executive 5 Bedroom Terrace Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Offices Complex At Adeniyi Jones,Adeniyi Jones Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +1400sqm Of Land At Ikeja Gra,Ikeja Gra Lagos Ikeja Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Duplex,Shonibare Maryland Maryland Ikeja Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Mende Maryland Maryland Ikeja Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Maryland Maryland Ikeja Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Detached Duplex, Ikeja Gra",Ikeja Gra Ikeja Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +A Shop Space,New Alade Market Ikeja Ikeja Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +"2,700sqm Of Land At Oduduwa Crescent",Oduduwa Crescent Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"3,699sqm Of Land At Remi Fani Kayode Street",Remi Fani Kayode Street Ikeja Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +780sqm Of Land At Adekunle Fajuyi Way,Adekunle Fajuyi Way Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +"2,780sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"5,000sqm Of Land At Joel Ogunaike Street",Joel Ogunaike Street Ikeja Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"2,000sqm Of Land At Joel Ogunaike Street",Joel Ogunaike Street Ikeja Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +"1,173sqm Of Land At Ayoola Coker Street",Ayoola Coker Street Ikeja Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +"2,007sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"2,505sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land At Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +"1,989sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"3,972sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"3,482.56sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +392sqm Of Land At Oduduwa Street,Oduduwa Street Ikeja Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"1,980sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"1,115sqm Of Land At Oduduwa Way",Oduduwa Way Ikeja Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"4,200sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"5,942sqm Of Land At Sasegbon Street",Sasegbon Street Ikeja Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"1,826sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"1,000sqm Of Land At Sasegbon Street",Sasegbon Street Ikeja Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +"3,900sqm Of Land At Oba Akinjobi Way",Oba Akinjobi Way Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"4,214sqm Of Land At Sobo Arobiodu Street",Sobo Arobiodu Street Ikeja Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"1,400sqm Of Land At Remi Fani Kayode Street",Remi Fani Kayode Street Ikeja Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +"1,007sqm Of Land At Adekunle Fajuyi Way",Adekunle Fajuyi Way Ikeja Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +"1,383sqm Of Land At Ayoola Coker Street",Ayoola Coker Street Ikeja Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +"2,100sqm Of Land At Isaac John Street",Isaac John Street Ikeja Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +750sqm Of Land At Ayoola Coker Street,Ayoola Coker Street Ikeja Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land On Ladipo Bateye Street,Ladipo Bateye Street Ikeja Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"3,872.95sqm Of Land At Ladoke Akintola Street",Ladoke Akintola Street Ikeja Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"1,000sqm Of Land At Ladipo Bateye Street",Ladipo Bateye Street Ikeja Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Warehouse,Off Senu Street Ikeja Ikeja Lagos,₦,"27,000,000",0,0,0,3 beds,2 baths,2 Toilets +3 Bedroom Flat,Amusa Oluyide Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,1 baths,1 Toilets +A 5 Bedroom Duplex,Sobo Arobiodu Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Warehouse,Oba Akran Ikeja Ikeja Lagos,₦,"2,020,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Bayo Shodipo Ikeja Ikeja Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shopping Mall With Office Suites,Ikeja Ikeja Ikeja Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Olowu Street Ikeja Ikeja Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ladoke Akintola Street Ikeja G.r.a Ikeja Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom,"No 8 Immanuel Street Maryland, Off Mobolaji Bank Anthony Way, Ikeja Ikeja Lagos",₦,144,0,0,0, beds, baths, Toilets +A 1179sqm Of Land,Lateef Jakande Road Ikeja Ikeja Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex At Ikeja Gra,Ikeja Gra Ikeja Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +A 3 Bedroom Flat With A Room Bq,Allen Ikeja Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 5 Bedroom Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Outright Sale,"Ladoke Akintola, Ikeja G.r.a Ikeja Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +Lot 113: Isheri North Residential Scheme Of 828sqm Of Land For Sale,Isheri North Residential Scheme Ikeja Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House,Magodo Gra 2 Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Conveyance,"Olowu Street, Ikeja Lagos Ikeja Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +"1,586sqm Of Land","Beco Concrete, Mongoro Bus Stop Ikeja Ikeja Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House + 1 Room Bq,"G.r.a, Ikeja Ikeja G.r.a Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached Duplex With A Miniflat,Omole Phase 1 Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Story Commercial Building At Ikeja,Towards Ikeja Local Govt Office Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +A 6 Bedroom Duplex,Omole Phase 2 Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets +A 5 Bedroom Duplex,Omole Phase 2 Ikeja Ikeja Lagos,₦,"27,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With Underground Swimming Pool And Bq At G.r.a Ikeja,"G.r.a Ikeja, Lagos Ikeja Lagos",₦,"290,000,000",0,0,0, beds, baths, Toilets +Buildings With Swimming Pool On 2007m2 Of Land,Adekunle Fajuyi Road Ikeja Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex At Ikeja Gra,Gra Ikeja Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +An 85% Complete 4 Bedroom Detached House,Minimah Estate Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Billings Way Ikeja Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Akinwunmi Street Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 1000sqm Of Land,Oduduwa Way Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Acres Of Land,Ladipo Oluwole Street Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 22,000sqm Of Land",Obafemi Awolowo Way Ikeja Ikeja Lagos,₦,"6,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Acres Of Land,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 7,625sqm Of Land",Obafemi Awolowo Way Ikeja Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,960sqm Of Land",Off Agbaku Street Ikeja Ikeja Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,007sqm Of Land",Adekunle Fajuyi Way Ikeja G.r.a Ikeja Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,482sqm Of Land",Adekunle Fajuyi Way Ikeja G.r.a Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,942sqm Of Land",Sasegbon Ikeja G.r.a Ikeja Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,000sqm Of Land",Mobolaji Bank Maryland Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 9,000sqm Of Land",Billings Way Ikeja Ikeja Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,200sqm Of Land",Billings Way Ikeja Ikeja Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 27,000sqm Of Land",Oba Akran Avenue Ikeja Ikeja Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,"G.r.a, Ikeja Ikeja G.r.a Ikeja Lagos",₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex,"Sunday Farm Estate, Cement Ikeja Ikeja Lagos",₦,"50,000,000",0,0,0,6 beds,0 baths,0 Toilets +A 5 Bedroom Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Terraced Duplex,Omole Phase 1 Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 6 Bedroom Detached Duplex,Oladipo Bateye Ikeja G.r.a Ikeja Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Plots Of Land,Maryland Ikeja Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +57 Rooms Hotel,Ikeja Ikeja Ikeja Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikeja Gra Ikeja G.r.a Ikeja Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Blocks Of 6 Units 3 Bedroom Flats,Maryland Ikeja Maryland Ikeja Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fully Plot Of Land,Opebi Ikeja Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Office,Murtala Mohammed Int'l Airport Road Ikeja Ikeja Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedrooom Detached Duplex,Sobo Arobiodu Ikeja G.r.a Ikeja Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Registered Deed,Shonibare Estate Maryland Ikeja Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,6 Toilets +Orchid Court,Micheal Ogun Ikeja G.r.a Ikeja Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Warehouse/office Space,Oba Akran Road Ikeja Ikeja Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached +1bq,Herbert Macaulay Gra Ikeja Ikeja Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bedroom Detached House+home Office,Ada Johnson Crescent Off Adeniyi Jones Ikeja Ikeja Lagos,₦,"230,000,000",0,0,0,7 beds,0 baths,0 Toilets +A Paper Mill,Mobolaji Johnson Road Ikeja Ikeja Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units 5 Bedroom Flats,Okupe Estate Maryland Ikeja Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Terrace,Opebi Ikeja Ikeja Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Townhouse House,Opebi Ikeja Ikeja Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached House,Sobo Arobiodun Street Ikeja G.r.a Ikeja Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Property For Sale In Ikeja,Yinusa Adeniji Ikeja Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land, Fenced And Gated",Behind Afeni Driving School Lagos Abeokuta Express Ikeja Ikeja Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Terrace House,Mende Villa Estate Ikeja Ikeja Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Bungalow+2bq,Off Ajose Street Maryland Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets +Open Plan For Office,Adeniyi Jones Ikeja Ikeja Ikeja Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat A With A Bq,Ajose Street Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex +bq,Folashade Abike Street Omole Phase 2 Ikeja Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Detached Duplex With A Room Bq On A 700sqm Land,Opebi Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Warehouse,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Duplex With A Bq,Folashade Abike Street Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex,Gra Ikeja Ikeja Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 6 Bedroom Duplex With A Bq,Gra Ikeja Ikeja Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +A 4 Bedroom Duplex With A Bq,Gra Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Land,Back Of Rccg Camp Ground Ikeja Ikeja Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +A Land,River View Estate Ikeja Ikeja Lagos,₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets +A Block Of Office On 946sqm,Oba Akran Avenue Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Airport Road Ikeja Ikeja Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Secretariat Ikeja Ikeja Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Oba Akran Ikeja Ikeja Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Duplex,Alausa Ikeja Ikeja Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Office Space,Adeniyi Jones Ikeja Ikeja Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Blocks Of Primary & Secondary School,"Oregun, Ikeja Ikeja Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hostel Accommodations,Idiroko Estate Maryland Ikeja Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached House + Chalet,"Opebi, Ikeja Ikeja Lagos",₦,"250,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Flat With 2 Room Chalet,Talabi Estate Ikeja Ikeja Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Henry Adefope Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Warehouse/ Admin Block,Alausa Ikeja Ikeja Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,"Mende, Maryland Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Very Big School,Ogba Ikeja Ikeja Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Off Isaac John, Ikeja G.r.a Ikeja Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plot Of Land,Isheri North Ikeja Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + 2 Room Bq,Ajose Maryland Ikeja Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Units Of 2 Bedroom Flats, One And Half Plot",Governor Road Ikeja Ikeja Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale,Off Adeniyi Jones Avenue Ikeja Ikeja Lagos,₦,"180,000,000",0,0,0,5 beds,2 baths, Toilets +6 Units Of 4 Bedroom Terrace Town Houses,"Adeyemo Akapo, Omole Phase 1 Estate. Ikeja Ikeja Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +A 4 Bedrooms Semi Detached Duplex,Gra Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex,Gra Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Certificate Of Occupancy,"Dry Land Near Ikeja International Airport, Facing The Expressway. Ikeja Lagos",₦,900,0,0,0, beds, baths, Toilets +Shop For Sale,"Folashade Bola Tinubu Ojo Airport Market, Ikeja Along, Off Ikeja Along Bridge. Opposite Ikeja Local Government Ikeja Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +6 Units Of 4 Bedroom Terrace Duplex With A Room Bq,Gra Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Big Warehouses,Oluwole Ikeja Ikeja Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace Duplex With A Room Bq,Alausa Area Ikeja Ikeja Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom Flats,Off Toyin Street Ikeja Ikeja Lagos,₦,"55,000,000",0,0,0,3 beds,2 baths,2 Toilets +A 3 Bedroom Flat With A Room Bq,Off Allen Avenue Ikeja Ikeja Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 3 Bedroom Terrace Duplex,Alfred Garden Estate Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +For Sale,Atinuke Olabanji Street Off John Olugbo Street Ikeja Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Detached Duplex For Sale,"Tithe Farm Street, Opic, Isheri North, Lagos Ikeja Lagos",₦,"65,500,000",0,0,0, beds, baths, Toilets +Luxury Flat,Off Allen Avenue Ikeja Ikeja Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets +"For Sale Description: Two Story Building (4nos 2bedroom Flat Plus 2nos 2 Bedroom Flat With An Open Roof. Location:bayode Oluwole St, Off Balogun B/s,",No 3 Bayode Oluwoe Street Off Awolowo Way Balogun Bustop Ikeja Lagos Ikeja Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With 1 Room Bq At Omole Ph 2,Omole Estate Phase 2 Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +2 Duplexes & 2 Bedroom Bungalow Via International Airport Road,International Airport Road Ikeja Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex,Ayo Ola Koker Street Ikeja G.r.a Ikeja Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale,Ikeja Gra Ikeja Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +6 Units Of A 3 Bedroom Flat,Off Toyin Street Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,2 Toilets +A 5 Bedroom Duplex Apartment With A Bq,Omole Phase 1 Ikeja Ikeja Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 3 Bedroom Flat Apartment With A Bq,Omole Phase 1 Ikeja Ikeja Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 5 Bedroom Duplex With A Room Bq,Minimal Estate Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex With A Room Bq,Minimal Estate Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Bedroom Raised Bungalow At Felicia Koleosho Street,Felicia Koleosho Street Ikeja Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +A 4 Bedroom Duplex With A 2 Bedroom Flat Bq,Mko Abiola Garden Ikeja Ikeja Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Acres Of Land Off Toyin Street,Off Toyin Street Ikeja Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +A 6 Bedroom Duplex Mansion,Harold Sodipo Cresecent Ikeja G.r.a Ikeja Lagos,₦,"365,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Units Of 5 Bedroom Duplex With 1 Room Bq,Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of 5 Bedroom Duplex,Ladoke Akintola Street Ikeja G.r.a Ikeja Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Wings Of 4 Bedroom Terrace Duplex With 2 Room Bq,"Adeyemo Alakija Street, Ikeja G.r.a Ikeja Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Of 5 Bedroom Terrace Duplex With 1 Room Bq,No 25 Remi Fani Kayode Ikeja G.r.a Ikeja Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Off Adeniyi Jones Ikeja Ikeja Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 4 Bedroom Duplex With 2 Rooms Bq,No 14 Akin Osiyemi Street. Ikeja Ikeja Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat,Abbi Street Maryland Ikeja Lagos,₦,"4,500,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex With 1 Room Bq,Olaperi Street Maryland Ikeja Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Units Of 3 Bedroom Flat,Oyedele Ogunniyi Maryland Ikeja Lagos,₦,"165,000,000",0,0,0,3 beds,2 baths,3 Toilets +4 Units Of 4 Bedroom Duplex,Sasegbon Street. Ikeja Ikeja Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Mansionatte With 2 Rooms Bq,Oba Akinjobi Street. Ikeja Ikeja Lagos,₦,"420,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Duplex With 1 Room Bq,No 6 Michael Ogun Street Ikeja Ikeja Lagos,₦,"97,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Dethached Duplex With 1 Room Bq,Ayola Coker Street Maryland Ikeja Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Terrace Duplex + A Room Bq,Alfred Garden Estated Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 2 Units Of 4 Bedroom Detached Houses,"Shonebare Estate, Maryland Ikeja Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Along Oba Akran Avenue, Ikeja Ikeja Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Factory,"Off Adeniyi Jones/off Oba Akran Avenue, Ikeja Ikeja Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex + A Room Bq,"Ikeja Gra, Ikeja Ikeja Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 32 Room Functional Hotel,"Idiroko Estate, Ikeja Ikeja Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,No 7 Tola Adewunmi Street. Maryland Ikeja Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Ikeja Gra,Oba Akinjobi Ikeja Gra Ikeja Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shop,Alade Market Ikeja Ikeja Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Ikare Close, Orimade Crescent Ikeja Ikeja Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With 1 Room Bq,Ajose Street. Maryland Ikeja Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Olukuye Street Maryland Ikeja Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With 1 Room Bq,"Olaperi Street, Maryland Ikeja Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land For Sale,Adeniyi Jones Ikeja Ikeja Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,"Adeniyi Jones, Ikeja Ikeja Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,No 26 Oreleye Street. Ikeja Ikeja Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,No 33 Omodara Street. Ikeja Ikeja Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,"Oduduwa Crescent, Ikeja Ikeja Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached House With Bq,"Showemimo Street, Gra, Ikeja Ikeja Lagos",₦,"205,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace In Alausa | Agidinbgi | Oregun,Coker Estate Ikeja Ikeja Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets diff --git a/dirty/ikoyi.csv b/dirty/ikoyi.csv new file mode 100644 index 0000000..ff9a7b4 --- /dev/null +++ b/dirty/ikoyi.csv @@ -0,0 +1,9276 @@ +Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets +Newly Built 5 Bedroom Fully Detached Duplex,"Oniru Estate Victoria Island, Awolowo Road Ikoyi Lagos",₦,"250,000,000",1,1,1,5 beds,6 baths,6 Toilets +"Luxury 5 Bedroom Terrace With Private Elevator, Cinema And Spa",Banana Island Estate Banana Island Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,7 baths,7 Toilets +Luxury 5 Bedroom Triplex Penthouse With Private Pool & Spa,Banana Island Estate Banana Island Ikoyi Lagos,$,"4,000,000",1,1,0,5 beds,8 baths,8 Toilets +5 Bedroom Detached Duplex With 2 Staff Quarters And Two Sets Of Kitchen,Off Cameron Road Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,8 baths,9 Toilets +Land Size: 1800 Sqm + Waterfront Dry Bareland,"Zone Q, Banana Island, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With 2 Maid's Room,Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"370,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With 2 Maid's Room,Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury Serviced 3bedroom Terrace Duplex,Falomo Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets +12 Units Of 3 Bedroom Flat With 1 Room Bq Each,"Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"95,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House + 1 Room Bq,Off Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Terrace House+ Bq,Banana Island Ikoyi Lagos,₦,"670,000,000",1,1,0,4 beds,4 baths,4 Toilets +Premium 3 Bedroom Apartment + Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury Waterfront 5 Bedroom House,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +New & Premium 4 Bedroom Semi Detached Terrace House +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,0,0,4 beds,4 baths,0 Toilets +Premium 4 Bedroom Terrace House +bq+pool+gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Apartment,Ikoyi Central Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,1,0,4 beds,4 baths,5 Toilets +Classy 3 Bedroom Terrace House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,0 Toilets +"Very Closable Waterfront Land 3,827.031sqmts",Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,300,000",1,0,0,4 beds,4 baths,5 Toilets +New 5 Bedroom Detached House + Bq,Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lavishly Built 5 Bedroom Detached House,"Cooper Road, Old Ikoyi Ikoyi Lagos",₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fresh 6 Bedroom House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart And Super Lucurious 5bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 3 Bedroom Apartment& Bq In A Serene Secured Estate Environment For Sale !!!,Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Serviced 4 Bedroom Pent House Luxuriously Finished,Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"20,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Along Banana Island Road Ikoyi Lagos,₦,"420,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom Maisonette,Banana Island Estate Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Newly Built & Tastefully Finished Luxury & Contemporary Fully Serviced 3bedroom Flat + A Room Bq For Sale!!!,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"290,000,000",1,1,0,3 beds,4 baths,4 Toilets +Lovely 3 Bedroom Maisonette,Parkview Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,4 baths,4 Toilets +Luxury And Beautiful Finished 3 Bedroom Luxurious Apartments,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +Executive 5 Bedroom Fully Detached House On Two Floors.,Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Pent House With Bq,Old Ikoyi Ikoyi Lagos,₦,"385,000,000",1,1,0,4 beds,5 baths,5 Toilets +3bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex,Off Macpherson Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Waterfront 5 Bedroom Fully Detached Duplex With A Pool, Cinema And Bq",Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Massive 5 Bedroom Semi Detached Home,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"165,000,000",1,1,0,2 beds,2 baths,3 Toilets +6 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Beautiful Luxury Fully Automated 4,bedroom Pent House Maisonette Apartments",Old Ikoyi Ikoyi Lagos,₦,"385,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Tango Towers Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets +Brand New 5bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 3 Bedroom Apartment& Bq In A Serene Secured Estate Environment,Gerard Road Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury Fully Automated 3 Bedroom Home,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +Brand New 4 Bedroom Mainsonette With A Bq, Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +This 5bedroom Semi Detached & 6bedroom Fully Detached Are In The Market,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex & 2room Bq.,Banana Island Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Finished Two Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"120,000,000",1,1,0,2 beds,3 baths,3 Toilets +Luxury Vintage Mansion,Banana Island Ikoyi Lagos,₦,"1,600,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq & Swimming Pool (water Front),Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets +Sea View Luxury Serviced 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive 4 Bedroom Fully Detached Duplex With B.q|,Ikoyi Lagos,₦,"340,000,000",1,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 3 Bedroom Apartment With All Fittings Specially Imported And Installed.,Osborne Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedrooms Automated Home,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Waterfront Three Bedroom Apartment With A Maid's Room,"Marion Apartments, Banana Island Road Banana Island Ikoyi Lagos",₦,"240,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Detached House With Boys Quarter,Shoreline Estate Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,3 baths,3 Toilets +Beautiful Luxury Fully Automated 1 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",1,1,1,1 beds,2 baths,3 Toilets +Waterfront Luxury 5 Bedroom Fully Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets +4floors+panoramic Waterview Exquisite 5 Bedroom Semi Detached House On 4 Floors With An Elevator And A Spacious Room Staff’s Quarter,Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Waterfront Home,Banana Island Road Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Duplex With Swimming Pool And 2bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,6 baths,6 Toilets +Vacant 4 Bedroom Detached House +( A Gym & A Room Bq) On 600sqm Landsize For Sale!!!,Queens Drive Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Flat With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 3bedroom Flat With A Bq !!!,Banana Island Ikoyi Lagos,₦,"198,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Apartment At The Belmonte,Bourdillon Ikoyi Lagos,$,"1,600,000",0,0,0,4 beds,4 baths, Toilets +Brand New 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury And Exclusive 3 Bedroom Flat,Ikoyi Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 2 Bedroom Apartment With A Boy’s Quaters,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Penthouse.,Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex With Elevator,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 3 Bedrooms Apartment,Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,4 baths,4 Toilets +Beautiful Luxury Fully Automated Apartments,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"940,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Apartment At The Residence With 2 Servant Quaters,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated Luxury With Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"360,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Detached 4 Bedroom Duplex,Banana Island Road Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Serviced 4 Bedroom Luxuriously Finished,Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex For Sale!!!!,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom House With 2 Rooms Bq,Shoreline Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 6 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"1,900,000,000",0,1,0,6 beds,7 baths,7 Toilets +3 Bedroom Apartments With 1 Bq Are Located In A Secured Estate.,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +Brand New 3 Bedroom Flat With A Bq,Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,5 Toilets +Ongoing 5 Bedroom House,"The Authograph, Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Houses With 1 Room Service Quarters,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,4 beds,4 baths,5 Toilets +26 Numbers Of Premium 3 Bedroom Apartments,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,600,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House + Bq + Pool Etc,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",1,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Detached House With Cinema & Private Elevator,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,7 Toilets +Super Luxury & Modern 3 Bedroom Flat With Bq,Gerald Road Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex With 2room Bq On 600m² Land,"Hanour Point Estate, Ikoyi Lagos",₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +6bedroom Detached Mansion,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",1,0,1,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Detached House With Private Jetty,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Fully Detached Duplex,In A Prestigious Neighborhood Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Terrace House + Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exquisitely Finished 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Waterfront Land Measuring 1,691m²",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Well Furnished 2 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,1,2 beds,2 baths,2 Toilets +Fully Detached 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Excellent 4 Bed Semi Detached Duplex With Swimming Pool And Gym In Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets +Spacious And Luxury One Bedroom Apartment On Banana Island Road Ikoyi,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"72,000,000",1,0,0,1 beds,1 baths,2 Toilets +A 4bedrooms Semi Detached House + Bq,Dolphin Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,3 baths,4 Toilets +Fully Serviced 2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedrooms Flat,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,005,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Waterfront 5 Bedroom Detached House + 2 Rooms Bq,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious And Luxury One Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"72,000,000",1,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Penthouse Apartment On Multiple Floors + Elevator,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"2,000,000",1,0,0,5 beds,5 baths,6 Toilets +Ecquisitely Finished & Brand New 5 Bedroom Detached Duplex On 4 Floors With Elevator & Cinema (video Available On Request),Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Renovated 4bedrooms Terrace + Bq,Parkview Estate Ikoyi Lagos,₦,"8,000,000",1,0,0,4 beds,5 baths,5 Toilets +"Land Measuring Approximately 1,662m² And Riped For Immediate Development.","Elegushi Road (formerly Club Road), Old Ikoyi, Ikoyi Lagos",₦,"1,250,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached House,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Numbers Of 3 Bedroom Terrace Houses,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Apartment + Bq,Banana Island Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +Smart Luxury 3 Bedroom Blocks Of Flat And Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",1,0,0,4 beds,4 baths,5 Toilets +3bedrooms Condo Apartment + Bq,Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,"Ikoyi, Lagos, Nigeria Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex With A Bq;,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartments,Banana Island Road Banana Island Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq;,Shoreline Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Jv,Off Gerald Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +900sqm Land In A Gated Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Semi Detached Duplex + Bq,Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Off Bourdillion Road Old Ikoyi Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets +Remodeled 4 Bedroom Duplex With 2 Rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 6 Bedroom Detached Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxurious Executive 4bedroom Terrace Duplex,Kingsley Road Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Furnished & Serviced 2bedroom Flat+ A Room Bq For Sale!!!,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,2 baths,2 Toilets +Luxurious Executive 5 Bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 2 Bedroom Apartments With An Elevator,Ikoyi Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Automated 6 Bedroom With Pent House Duplex,Ikoyi Lagos,₦,"1,900,000,000",0,0,0,6 beds,6 baths,7 Toilets +Well Maintained 4 Bedroom Duplex,Off Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,3 baths,4 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,0 baths,0 Toilets +Furnished 2 Bedroom Flat With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets +26 Firmly Built Luxurious 3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Land 2,008sqm Land",Milverton Road* Off Bourdillon Road Ikoyi Lagos,₦,"770,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxe 3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,5 Toilets +Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,460,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Newly Build 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets +Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets +New Executive 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Amazing 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With Two B.q,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex Available,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex With Swimming Pool And Jetty,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Modern, Luxurious And Beautifully Finished 3 And 4 Bedrooms Flat",... Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Off Kingsway Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale!!!!,Mojisola Onireke Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +New 3 Bedroom Apartment With Great Facilities,Off Alfred Rewane Road Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Penthouse Masionette,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"485,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets +1134sqm Vacant Residential Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,360,000,000",0,0,0, beds, baths, Toilets +Beautiful 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxurious Units Of 2, 3 Bedroom Flats And 4 Bedroom Maisonette",Old Ikoyi Ikoyi Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +1938sqm Corner Piece Residential Land,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,520,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex With Swimming Pool,Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,6 baths,6 Toilets +1002sqm Fenced Land For Residential Development,Off Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Z Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,S Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Along Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,750,000,000",0,0,0, beds, baths, Toilets +New 4 Bedroom Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Lots Of Features,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex For Sale!!!,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,5 Toilets +Amazing Newly Built 5 Bedroom Semi Detached House With Two Room's B.q,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Furnished 2 Bedroom With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"320,000,000",1,0,0,4 beds,4 baths,5 Toilets +24 Units Of Luxury 3 Bedroom Apartment & 3 Penthouses,Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,A Very Nice Environment Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Bare Land,Olori Mojisola Estate Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Furnished 2 Bedroom With B.q,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,1,2 beds,2 baths,3 Toilets +3 Bedroom Flat With A B.q,S Gerard Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Detached House With 1 Room Bq On 340sqm Land,Raymond Street Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Luxury Penthouse Apartment,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,7 Toilets +Waterfront With Jetty 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury At Its Finest 4bedroom Maisonette.,Gerard Road Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3004sqm/670k Waterfront Land,Ikoyi Lagos,₦,"670,000",0,0,0,0 beds,0 baths,0 Toilets +New 6 Bedroom Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Clean And Well Finished 4bedroom Semidetatched Duplex With A Bq, Spacious Ensuite Bedrooms,",Gerard Road Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,5 baths,5 Toilets +Amazing New 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,0 beds,0 baths,0 Toilets +Smart 3 Bedroom Ensuite Maisonettes (off Plan),Bourdillon Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Massionette Plus Bq,Elizabeth Grace Court 3 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets +Brand New Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4bedroom Terrace House With A Room,Off Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,4 Toilets +Well Furnished 6 Units Of One Bedroom Flat,... Ikoyi Lagos,₦,"80,000,000",1,0,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential/commercial Land For Sale!!!,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +1135 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +5000sqm Fenced Land,Along Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartments With A Room Servant Quarter,"Gerrard Road, Mason Apartments Old Ikoyi Ikoyi Lagos",₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Duplex, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,7 baths,7 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Detached Duplex,Bourdillon Street Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,6 beds,6 baths,8 Toilets +2 Storey Furnished Guesthouse,Ikoyi Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive New 5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Serviced 5 Bedroom Semi Detached Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Serviced 4 Bedroom Terraced Duplex,Within Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,6 Toilets +New Unit Of 4 Bedroom Serviced Apartment With Bq,Alexandra Road Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,5 baths,5 Toilets +"A Newly Built & Tastefully Finished Luxury Well Finished 4units Of 4bedroom Terrace Duplexes + A Penthouse,a Room Bq & A Study For Sale!!!",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,1,5 beds,5 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex On 2floors +2rooms Bq For Sale!!!,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,1,5 beds,5 baths,5 Toilets +6 Bedroom House,Ikoyi Lagos,$,"5,000,000",0,1,0,6 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Plot Of Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2008sqm Mixed Used Property,Directly On Milverton Road Old Ikoyi Ikoyi Lagos,₦,"1,365,440,000",0,0,0,0 beds,0 baths,0 Toilets +900 Sqm Land,Osborne Phase 2 Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,700sqms Land",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +570.473sqns Land,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Royal Palm Drive Osborne Phase 2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",1,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"955,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"185,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of Abandoned 12 Floors,Off 2nd Avenue Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished Automated 5 Bed Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Alexander Road, Old Ikoyi Ikoyi Lagos",₦,"2,350,000,000",0,0,0, beds, baths, Toilets +Luxury 6 Bedroom House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool,Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds, baths, Toilets +Brand New 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Maisonette;,Parkview Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New & Smart 5 Bedroom Fully Detached Duplex With Bq;,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"380,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House + Bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Automated Maisonette;,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Located In A Safe And Secure Environment Chevron Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,0 baths,0 Toilets +Spacious 4 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers Only Newly Built 5 Bed Maisonette On 2 Floors + Pool,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New Exquisitely Finished 4 Bedroom (corner Unit),Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Penthouse With Excellent Facilities,Ikoyi Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +Prince Ademola Osinuga Exclusive! Reasonably Priced Newly Built 4 Bedroom Semi Detached House In Parkview @n280m!,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand Bew 5 Bedroom Penthouse With A Bq;,Off Banana Island Road Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +Superb Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached House With Boys Quarter,Onikoyi Road Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached House + Bq,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fresh / Newly Built 5 Bedroom Fully Detached House + Swimming Pool + Elevator + 2bq Etc In Banana Island Estate @n1.7b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built Luxury 3 Bedroom Apartment + Bq + Pool + Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,3 beds,3 baths,4 Toilets +One Of The Best Investment Deals In The Market! Top Floor 4 Bedroom Apartment + Bq Etc @n300m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House + Bq,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Priced 6 Bedroom Terrace House + Bq+pool,Banana Island Estate Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets +Direct Cash Clients Only New 5 Bedroom Semi Detached House + Bq Etc In A Mini Estate Within Banana Island Estate @n600m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Semi Detached 5 Bedroom House + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment +bq+pool+elevators,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House +massive Rooftop,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fenced And Gated 2storey Building On A Land Measuring 484sqyrds,Norman Williams Awolowo Road Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,In A Premium Neighborhood Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets +Block Of 8 (nos) 4 Bedrooms Luxury Flats,Hameed Kasumu Street Ikoyi Lagos,₦,"1,950,000,000",1,0,0,4 beds,4 baths,5 Toilets +Waterfront Fully Detached 4 Bedroom House,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached Villa,Ikoyi Ikoyi Lagos,$,"5,000,000",0,1,0,6 beds,6 baths,7 Toilets +Waterfront 3 Bedroom Apartment +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex With Ample Parking & Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"225,000,000",1,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Maisonette With A Bq;,Banana Island Ikoyi Lagos,₦,"490,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedrooms Flat,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury Waterfront 3 Bedroom Apartment + Bq,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +Executive Elegant Brand New Royal 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000/sqm",1,1,1,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Sized & Reasonably Priced 4 Bedroom Fully Detached House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom House + Bq @n750m,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Terrace House + Bq,"Banana Island Estate, Banana Island Ikoyi Lagos",₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built & Strategically Located 4 Bedroom Maisonette On 2 Floors+bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +"4,200m2 Waterfront Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Strategic Waterfront Land With Jetty Measuring Approximately 2,700m² (video Available On Request)","Alexander Road By The Lekki Bridge Roundabout, Ikoyi Lagos",₦,"2,300,000,000",0,0,0, beds, baths, Toilets +Executive Royalty Spacious 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Banana Island Road Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq;,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built & Affordable 3 Bedroom Apartment +bq,Parkview Estate Old Ikoyi Ikoyi Lagos,₦,"112,000,000",1,1,0,3 beds,3 baths,4 Toilets +Direct Cash Ready Buyers Newly Built Luxury 3 Bedroom Apartment + Elevator + Bq In A Mini Estate Within Ikoyi @n122m,Ikoyi Ikoyi Lagos,₦,"122,000,000",1,1,1,3 beds,3 baths,4 Toilets +Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,575,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached House + Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House With Bq,Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Super Luxury Executive 2 Unit Of 5 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fresh 8 Nos Luxury & Furnished 4 Bedroom Apartments + Bq + Elevators,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"1,500,000,000",1,1,1,10 beds,10 baths,10 Toilets +Brand New 6 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,$,"1,400,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached House + 2bq+parking For Up To 10cars+pool+elevator Etc @n850m,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Detached Duplex With Private Elevator In A Prestigious Address,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds, baths, Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Lawrence Road Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium 4 Bedroom Semi Detached Terrace House + Bq+ Gym + Pool,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Terrace House +bq+swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0, beds, baths, Toilets +2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",1,1,1,2 beds,2 baths,2 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"460,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"400,000,000",1,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Terrace Houses,Banana Island Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths, Toilets +Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom House + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +2250 Sq.metres Land For Sale,Magbon Close Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Furnished 5 Bedroom Penthouse With Amazing Facilities,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse Flat With A Bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette With Bq;,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom House +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Apartment With Bq, Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Apartment With Amazing Features,Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Waterfront 4 Bedroom Semi Detached Terrace House + Bq,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment + Bq+pool+elevators,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful Ultra Luxury 7 Bedroom Vila With Fountain Pool + Elevator Etc,Parkview Estate Parkview Estate Ikoyi Lagos,$,"3,500,000",0,1,0,7 beds,7 baths,8 Toilets +Finished 6 Bedroom Terrace House;,Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartments,"The Residence Apartments Along Banana Island Road Between Rebecca Court & Olive Tree Parish Church, Ikoyi Lagos",₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellent Prime Plot Of Land Measuring 1000sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +Highly Competitive Family Friendly 3 Bedroom Apartment + Tennis+ Squash,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedrooms Apartment + 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Apartment With Bq,Olori Mojisola Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +New & Highly Classy 4 Bedroom Maisonette On 2 Floors +bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment +pool +gym+ Adequate Parking,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +New 4 Bedroom Terrace House + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Lovely 8 Units Of 4 Bedroom Semi Detached Duplex With Bq And Swimming Pool,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Affordable 3 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New Modern 4 Bedroom Massionette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Serviced 4 Bedroom Apartment +bq+pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"195,000,000",1,0,0,4 beds,3 baths,4 Toilets +"Fully Serviced, Ocean View 3 Bedroom Flat","Ocean Parade, Banana Island Ikoyi Lagos",₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom House + Bq + Cinema + Pool,Banana Island Estate Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Apartment +bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,0 Toilets +Prince Ademola Osinuga New 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Floor Block Of Serviced Flats,Off Alfred Rewane(kingway) Road Ikoyi Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Luxurious 5 Bedroom Mansion,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fresh & Furnished 5 Bedroom Semi Detached Terrace House + Bq + Swimming Pool + Gym Etc In Banana Island Estate @n650m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex In Premium Location,In A Serene Estate Neighborhood Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse Apartment On A Whole Floor + Bq+gym+ Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"1,400,000",1,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Top Floor Apartment +great View + 2 Rooms Bq+3 Cars Vip Parking Etc @$1.350m,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"1,350,000",1,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,2 beds,2 baths,3 Toilets +Prince Ademola Osinuga Offers! One Of The Most Notable Oceanview 5 Bedroom Penthouse Apartment @$2m, Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets +Decently Finished 5 Bedroom Semi Detached Duplex In Ikoyi, Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Reasonably Priced 4 Bedroom Apartment +bq+gym+pool Etc In Old Ikoyi @n165m,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New Excellent Spacious Super Luxury 3 Bedroom Block Of Flats,Banana Island Road Ikoyi Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace With A Room Bq;,Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Serviced Apartment,Alexander Road Gerard Road Ikoyi Lagos,₦,"270,000,000",1,0,0,4 beds,4 baths,5 Toilets +Very Well Built & New 4 Bedroom Apartment + Bq + Pool+gym,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Premium & Newly Built 4 Bedroom Semi Detached House,Ikoyi Ikoyi Lagos,₦,"242,000,000",0,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers Only New 5 Bedroom Maisonette On 2 Floors + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Waterfront 5 Bedroom Detached House + 2 Rooms Bq,Off Onikoyi Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Luxury Block Of 6flats On A Land Measuring 1600sqm,Banana Island Ikoyi Lagos,$,"7,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment + Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace House + Bq,Banana Island Ikoyi Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Massive 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Flat;,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury 5 Bedroom Fully Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets +New & Well Built 6 Bedroom Detached House + 2bq+ Elevator + Etc In A Mini Estate Within Banana Island Estate @n700m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Waterfront Plot For Sale (1,157 Square Meters)",Banana Island Ikoyi Lagos,₦,"1,041,300,000",1,0,0, beds, baths, Toilets +4 Bedroom Luxury Masionette + Bq,Osborne Estate 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Flat + 1 Room.bq,Club Road Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Ikoyi, Lagos Nigeria Ikoyi S.w Ikoyi Lagos",₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Cash Ready Buyers Newly Built 5 Bedroom Detached House In A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached House + Bq + Rooftop,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached House + Bq+pool+gym,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Semi Detached House With Bq,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,7 Toilets +Premium 4 Bedroom Terrace House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Well Sized 4 Bedroom Semi Detached Terrace House + Bq+ Pool+ Gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"640,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"115,000,000",1,0,0,3 beds,3 baths,4 Toilets +Premium & Bargain Newly Built 3 Bedroom Apartment + Bq + Elevator, Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Detached House + Pool + Gym,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massively Built 5 Bedroom Fully Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bed Fully Detached Duplex In Ikoyi,Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets +Luxury 4 Bedroom Apartment + Bq+pool+ Gym @n205m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"205,000,000",1,0,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers Only Newly Built 4 Bedroom Penthouse Apartment + Elevator Etc,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"470,000,000",1,1,0,4 beds,4 baths,5 Toilets +Amazing New 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000/sqm",1,0,1,5 beds,5 baths,6 Toilets +Serious Cash Ready Buyers 5 Bedroom Semi Detached House + Bq+pool,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets +Renovated 4 Bedroom Terrace House With A Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Demolishable Storey Building On 500 Square Metres,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,6 Toilets +Newly Built Premium Unfurnished 4 Bedroom Penthouse Apartment On A Whole Floor,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 5 Bedroom Maisonette House With 2 Rooms Bq And Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Highly Functional & Reasonably Priced Waterfront Investment! 4 Bedroom Semi Detached Terrace House +2bq+tennis+pool,Banana Island Estate Banana Island Ikoyi Lagos,$,"700,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Town House With 2 Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Terrace With A Bq;,Osborne Phase 1 Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +Magnificent & Newly Built 5 Bedroom Waterview 5th Floor Apartment On A Whole Floor + Bq+pool+gym @$1.5m,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,5 baths,6 Toilets +2100 Sq.metres Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached House + Bq,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers Newly Built 4 Bedroom Semi Detached House + Bq+ Pool,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Classic View Waterfront 3 Bedroom Block Of Flats With Swimming Pool And Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury And Fully Serviced Three (3) Bedroom Apartment With Bq,Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built All Ensuite 3 Bedroom Apartment +bq+elevator+pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment + Bq + Tennis,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Waterfront Land Measuring 1,800sqm With Dilapidated Building","Ademola Street, Off Awolowo Road, Ikoyi S.w Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Amazing 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Luxurious Two Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +New 4 Nos 3 Bedroom Terrace Houses + Bq+ Swimming Pool + Gym +etc In Banana Island Estate @n2.4b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Freshly Upgraded Multiple Units Of 3 Bedroom Apartments,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets +Tastefully Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exiting 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Direct Cash Ready Clients Only Well Priced Family Friendly 3 Bedroom Apartment + Tennis+ Squash+ Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Terrace House + Bq,Banana Island Ikoyi Lagos,₦,"475,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Luxury Apartment With Bq,In A Serene Premium Neighborhood Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +"1,984.8sqm Of Land","Osborne Foreshore Estate, Ikoyi Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom,Banana Island Ikoyi Lagos,₦,"430,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House + Bq,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment + Bq + Pool + Elevator,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Apartment;,Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +Direct Cash Ready Clients Only Well Sized Newly Built 5 Bedroom Semi Detached House @n580m,Ikoyi Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace House+bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Class Leading Newly Built & Large Size 4 Bedroom Apartment + Bq + Pool + Gym,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With Ample Parking Space,Banana Island Ikoyi Lagos,₦,"20,000,000",0,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers Newly Built 5 Bedroom Detached House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Direct Cash Ready Buyers Only! Luxury Waterfront 3 Bedroom Apartment + Squash + Gym+pool Etc @n150m,Off Onikoyi Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built Fully Detached 5 Bedroom House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Strategically Located Mixed Use Land 5,286sqmts",Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Most Reasonably Priced Detached Waterfront Property + Jetty + Swimming Pool Etc In Banana Island Estate Yet @n1.2b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Recently Upgraded 4 Bedroom Terrace House + Bq + Private Garage Etc In Banana Island Estate @n450m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,4 baths,5 Toilets +Super Affordable 4 Bedroom Apartment + Bq+pool+gym @n210m,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Apartment +bq+ Gym+pool @n210m,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Maisonette On 2 Floors + Bq @n550m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +Waterfront Luxury 3 Bedroom Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"320,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fresh & Newly Built 5 Bedroom Maisonette House On 2 Floors + Bq+pool+gym+etc,Banana Island Estate Banana Island Ikoyi Lagos,₦,"505,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Apartment With Excellent Facilities,Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Bq;,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Waterfront 4 Bedroom Apartment + Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +Super Affordable Fully Detached 5 Bedroom House +2rooms Bq,Parkview Estate Ikoyi Lagos,₦,"370,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built Lavishly Luxury 3 Bedroom Apartment With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartment,"Gbenga Ashafa Street, Unit 1b Parkview Estate Ikoyi Lagos",₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Penthouse Apartment +bq,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Spacious Luxury 5 Bedroom Semi Detached Duplex With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land (880 Square Metres),Shoreline Estate Banana Island Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Most Reasonably Priced Waterfront Detached House In Banana Island Estate @n1.220b,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Direct Cash Ready Buyers Only Newly Built 5 Bedroom Detached House + Bq @n430m,Ikoyi Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,$,"1,200,000",1,1,0,5 beds,5 baths,6 Toilets +"Brand New 2 Bedroom Flat Located Off Alexander Road, Ikoyi.",Off Alexander Road Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom (all Ensuite) Fully Detached House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Prince Ademola Osinuga Deal! Newly Built 6 Bedroom Semi Detached House In Central Ikoyi @n330m Non Negotiable!,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached House,... Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Units Of 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Sophisticated 24 Units Of 3 Bedroom Flat With Bq,",Banana Island Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Brand New 3 Bedroom Flat With A Bq Located Off Alexander Road, Ikoyi.",Off Alexander Road Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Built High End 4 Bedroom Apartment +bq In In A Mini Estate,Ikoyi Central Old Ikoyi Ikoyi Lagos,$,"1,400,000",1,1,0,4 beds,4 baths,4 Toilets +New 5 Bedroom Semi Detached House +bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 2,295sqm @ 590k/sqm","Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,360,000,000",0,0,0, beds, baths, Toilets +Excellent Prime Plot Of Land Measuring 498sqm,Banana Island Ikoyi Lagos State Ikoyi Lagos,₦,"625,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 3 Bedroom Terraced House,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,0 baths,0 Toilets +Direct Ready Buyers Newly Built Waterfront Detached House + 2bq @n600m,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +1566 Sq.metres Land,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"625,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Premium 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Semi Detached House + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massively Built Super Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notched Finishing Super Luxury 5 Bedroom Semi Detached Duplex Sitting On 400sqm Room Bq With Swimming Pool,Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massively Built Furnished 5 Bedroom Terrace Duplex With Swimming Pool And Bq For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +Beautiful 6 Bedroom Fully Detached,Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Flat,Parkview Estate Ikoyi Lagos,$,"500,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Apartment + Bq + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Furnished 3 Bedroom Apartment With Amazing Facilities,Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets +Prince Ademola Osinuga Mega Deal! Ultra Luxury 4 Bedroom Apartment In Central Ikoyi @n190m!!,Old Ikoyi Ikoyi Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets +Very Cheap! Fresh Newly Built 5 Bedroom Maisonette On 2 Floors +bq+pool+gym Etc In Banana Island Estate @n500m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House + Bq,Off Onikoyi Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massively Built Super Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 3 Bedroom Apartment +bq+tennis+ Garden,Banana Island Estate Banana Island Ikoyi Lagos,$,"1,200,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Furnished 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House + Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"400,000,000",1,0,0,5 beds,5 baths,6 Toilets +Serious Cash Ready Clients Only Newly Built Detached House Within A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Riverside Apartment,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment With Amazing Facilities,Ikoyi Lagos,₦,"270,000,000/year",1,0,0,2 beds,2 baths,3 Toilets +Amazing Top Floor 4 Bedroom Apartment+bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,500,000",1,1,0,4 beds,4 baths,5 Toilets +Ultra Luxury Ocean View 6 Bed Fully Automated Detached Mansion,Banana Island Ikoyi Lagos,$,"5,000,000",0,1,0,5 beds, baths, Toilets +Direct Buyers Only Fresh & Newly Built 5 Bedroom Detached House + Private Elevator Etc In Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +One Of The Most Practical Waterfront 4 Bedroom Semi Detached Houses,Banana Island Estate Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Premium 4 Bedroom Semi Detached Terrace House + Bq+ Gym,Banana Island Estate Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,240sqm","Lugard Road, Old Ikoyi Ikoyi Lagos",₦,"700,000/sqm",0,0,0, beds, baths, Toilets +Brand New Luxury 6 Bedroom Townhouse With Bq,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"15,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Prince Ademola Osinuga Award Wining 5 Bedroom Penthouse Apartment On 3 Floors,Off Onikoyi Road Ikoyi Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Flat With A Bq,Osborne Phase 1 Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Opulent 5 Bedroom Fully Detached Duplex In Premium Location,In A Serene Estate Neighborhood Ikoyi Lagos,₦,"650,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Topmost Floor 4 Bedroom Apartment,Central Ikoyi Old Ikoyi Ikoyi Lagos,$,"3,500,000",1,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Clients New 5 Bedroom Semi Detached Terrace House + Elevator,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities,Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,4 Toilets +New 4 Bedroom Semi Detached Terrace House @n310m,Onikoyi Road Old Ikoyi Ikoyi Lagos,₦,"310,000,000",1,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Clients Only Newly Built 4 Bedroom Maisonette,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment + Bq + Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached House On 3 Floors + Bq + Swimming Pool Etc,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets +Affordable & New 3 Bedroom Apartment (just 1 Unit Left) + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Direct Cash Ready Clients Newly Built 5 Bedroom Detached House In A Mini Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"520,000,000",0,1,0,6 beds, baths, Toilets +"Land Measuring 2,700m²","Mekuwen Street, Old Ikoyi Ikoyi Lagos",₦,"1,755,000,000",0,0,0,0 beds,0 baths,0 Toilets +Direct Cash Ready Buyers Only Massive Investment Deal With 54 Apartments,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"12,300,000,000",1,0,0,10 beds,10 baths,10 Toilets +Newly Built 4 Bedroom Semi Detached Terrace House,Off Onikoyi Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Priced Newly Built 4 Bedroom Penthouse Apartment + Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Gorgeous 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Prestigious Neighborhood Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spaciously Built Super Executive Water Front 6 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Ikoyi Banana Island Ikoyi Lagos,₦,"1,700,000,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exquisite Luxury 6 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,6 baths,7 Toilets +Fresh / Newly Built 5 Bedroom Semi Detached House In A Mini Estate Within Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"580,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Waterfront Apartment + Bq + Elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"225,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 6 Bedroom Semi Detached Terrace House +bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace House + Bq + Swimming Pool,Ikoyi Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment + Bq,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets +Top Notched Finishing Brand New 6 Bedroom Fully Detached Duplex With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built Waterview 3 Bedroom Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Ground Floor Apartment + Bq+ Pool + Squash + Gym,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +Prince Ademola Osinuga Offers New Fully Detached House + Private Pool + Cinema Room + Gym + 2 Rooms Bq Etc In Banana Island Estate @n1.7m,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built Fully Detached House + Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 6 Bedroom Fully Detached House +2bq+elevator,Banana Island Estate Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +Direct Cash Ready Clients Only Newly Built Luxury 5 Bedroom Detached House + Pool + Elevator Etc In Banana Island Estate,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Outstanding Top Floor 5 Bedroom On Multiple Floors + Pool+gym+etc @$2m,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Fully Detached 5 Bedrooms House,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built, Contemporary Design, Luxurious, 6 Bedroom (en Suite) Mansion",Off Alexandra Road Ikoyi Lagos,₦,"1,400,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached With Private Cinema;,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Fully Detached 5 Bedroom House +bq+ Cinema+ Swimming Pool+elevator,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Super Luxury 3 Bedroom Apartment With Swimming Pool And Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Duplex With Bq,Dolphin Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Units Of 4 Bedroom Terrace House,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",1,1,0,4 beds,4 baths,5 Toilets +Solid 5bedroom Duplex With 2rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Luxury 6bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikoyi Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Duplex + Bq,Banana Island Ikoyi Lagos,₦,"255,500,000",1,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"895,000,000",0,0,0,0 beds,0 baths,0 Toilets +Twin Highrise,Old Ikoyi Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment+bq,Banana Island Banana Island Ikoyi Lagos,₦,"187,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace House,Glover Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Vacant 2000m2 Land In A Serviced Estate,"Parkview Estate, Ikoyi, Lagos Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Villas,Second Avenue Axis Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 2 Bedrooms Luxury Apartment,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,3 baths,3 Toilets +New 5 Bedroom Semi Detached Duplex 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,8 baths,8 Toilets +"Newly Built 5 Bedroom Fully Detached Smart House + Elevator, Pool, Gym, Cctv Cameras","Off Thompson Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"950,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Built And Serviced 4 Bedrooms Terrace Duplex With Pool,"First Avenue, Banana Island Ikoyi Lagos",₦,"450,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Penthouse Apartments,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",1,1,1,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat & 1 Room Bq With Access To Swimming Pool & Gym Facilities,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Brand New, 90% Finished 5 Bedroom Detached House House",Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Off Bourdillon Old Ikoyi Ikoyi Lagos,$,"1,300,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedrooms Detached House With Pool,Off Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex With Pool,First Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +806sqm Bareland,Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,4 baths,4 Toilets +Luxury Vintage Mansion Of 9 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,9 beds,9 baths,10 Toilets +Newly Built 5 Bedrooms Detached House,2nd Avenue Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fantastic 2br Flat,Near Ikoyi Club Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,2 beds,2 baths,3 Toilets +Plots Of Land,3rd Avenue Facing Waterfront Banana Island Ikoyi Lagos,$,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land In Shoreline Estate Ikoyi Lagos State Nigeria,Shoreline Estate Off Turnbull Road Ikoyi Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Waterfront Apartment,Bayview Estate Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly 5 Bedrooms Waterfront Detached House With Pool In Ikoyi Lagos,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Apartment,Banana Island Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 3 Bedroom Flats +bq,Bourdillon Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartments,Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Designed 3 Bedroom Terraced Duplex,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,5 baths,5 Toilets +5bedroom Detached Duplex,Onikoyi Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Massionette,Probyn Bourdillon Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment + Bq,Banana Island Ikoyi Lagos,₦,"219,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Meckwen Road Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Maisonette Apartments,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land Measuring 11700 Square Meters On Gerard Road Ikoyi Lagos,Gerard Road Ikoyi Lagos,₦,"5,700,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",0,0,0,1 beds,0 baths,0 Toilets +2 Plots Of Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,5 beds,0 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Cameron Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +26 Units Luxurious 3 Bedroom Apartment,Ikoyi Lagos,₦,"4,500,000,000",1,1,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Spaced 5 Bedrooms Fully Detached Mansion,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Very Serene And Secure Environment Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Townhouse,Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,5 baths,5 Toilets +5 Bedroom Detached House,Glover Road Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New And Smart 6 Bedrooms Detached House With Pool In Aquapoint Estate, Ikoyi Lagos",Aqua Point Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,6 beds,5 baths,6 Toilets +8 Bedroom Fully Detached Mansion In An Estate,"Osborne Foreshore Estate Phase 1, Ikoyi, Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"750,000,000",0,1,0,8 beds,8 baths,9 Toilets +Newly Built 4 Bedroom Penthouse Apartment,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,0,1,4 beds,5 baths,4 Toilets +Cameron Place: 4 Bedroom Maisonettes Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Furnished 6 Bedroom Mansion With 2 Room Bq And Swimming Pool,Gated Estate Banana Island Ikoyi Lagos,$,"500,000,000",0,1,1,6 beds,8 baths,8 Toilets +Newly Built 6 Bedrooms Detached House On 900 Square Meters Land,"Off Queen Drive, Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0,6 beds,6 baths,7 Toilets +Cheap Land Of 2500sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +"Fully Automated 5 Bedrooms Detached Duplex With 2 Bqs, Private Elevator",Ikoyi S.w Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Waterfront 2 Units Of 5 Bedroom Fully Detached Houses + 2 Rooms Bq Each,"Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Kings Court (5 Detached Units),Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Shoreline Estate Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached House + Bq In An Estate,"Ikoyi, Lagos. Ikoyi Lagos",₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 12 Units Of 3 Bedrooms Apartments With Pool,Tony Aromosele. Street Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built Luxury 4 Bedrooms Terrace Duplex With Pool,2nd Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive Mansion,Osborne Foreshore 1 Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Apartments,1st Avenue Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,4 baths,5 Toilets +871sqm Commercial Building,Falomo Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Units Of 4bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished And Exquisite 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",1,0,1,2 beds,2 baths,3 Toilets +"5 Bedroom Terrace Duplex With Bq, Swimming Pool, And Gym",E Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,"On Mekunwen Road, Off Bourdillion & Queens Road Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms All Ensuit With A Rooftop Sport Bar,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land On Bourdillon Road Ikoyi,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets +Solid 4 Bedroom Fully Detached Duplex ( Suitable For Commercial & Residential Purpose),"Off Awolowo Road, South West Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets +5bedroom Detached Duplex,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 1339sqm Commercially Viable Land,Alfred Rilwane Road Gerard Road Ikoyi Lagos,₦,"600,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Maisonette,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built & Fully Furnished & Serviced Luxurious 4 Units Of 5 Bedroomterraces + Bqs In An Estate,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"800,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Flat,. Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,4 baths,4 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +11 Units Of 3 Bedroom Apartment,Ikoyi Lagos,₦,"2,500,000,000",1,1,0,10 beds,10 baths,9 Toilets +New Block Of 26 Units Of Exquisite Spacious 3bedroom Flat,Off Turnbull Toad Ikoyi Lagos Ikoyi Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Building,Ribadu Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",1,1,0,10 beds,0 baths,10 Toilets +Luxury And Magnificent 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Fully Detached Duplex,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 1000 Square Meters In Abacha Estate Ikoyi Lagos,Abacha Estate Ikoyi Abacha Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,0 Toilets +Newly Built 4 Bedrooms Penthouse With Pool,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Units Of Newly Luxuriously Built 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Superbly Finished Automated 5 Bed Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Villas,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +900 Sqm Land,Osborne Phase 2 Ikoyi Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedrooms Furnished Terrace Duplex With Pool In Banana Island Estate Ikoyi Lagos,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built (3) Blocks Of 24 Flats Of 3 Bedrooms & 3 Units Penthouses (27units In Total). Each Units With Elevator. And Industrial Borehole,Off Bourdillon Way Bourdillon Ikoyi Lagos,₦,"7,000,000,000",1,1,0,3 beds,3 baths,4 Toilets +New Executive 4 Bedroom Terrace Duplex With 2rooms Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Maisonette With Pool,Luggard Avenue Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets +Commercial Building On 439sqm With Land Certificate In A Good Location,Off Awolowo Way Ikoyi Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,0,1, beds, baths, Toilets +4 Bedroom Luxury Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedrooms Automated Maisonette,Ikoyi S.w Ikoyi Lagos,$,"1,500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Strategically Located Residential Bareland Of 1687sqm Waterfront In Onikoyi Mojisola Estate Ikoyi / Can Be Sold In Half,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +A 5bedroom Terrace Duplex + 2sitting Rooms & Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Detached Hosue,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 3bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Serviced Terrace House With 2 Rooms Boy’s Quarters,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,7 baths,7 Toilets +Land,Luggard Avenue Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Off Lawrence Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +High Rise 4br Flat With Bq,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land,Alexandra Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Detached Apartment,Banana Island Ikoyi Lagos,₦,"1,600,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Landed Property On Meckwen Road, Ikoyi, Lagos","Mecknwen Road, Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"570,000/sqm",0,0,0, beds, baths, Toilets +Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,7 baths,7 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Standard 4bedroom Semi Detached,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Exquisite Building With Luxury Apartments,Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000m2 Residential Land","Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Meckwen Road Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoya Avenue Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Flat,2nd Avenue Extension Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets +Land,Kalabari Close Off Queen Drive Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Block Of Flats (27 Flats),Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2500 Square Meters In Osborne Estate Ikoyi Lagos,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Spacious 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,1 beds,1 baths,4 Toilets +Massive Furnished 5bedroom Duplex,It's Located At Banana Island Estate Banana Island Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom,Second Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex ( Self Compound),"Alexander Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ground Floor 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Terrace Duplex All Ensuit + A Room Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fantastic 2 Bedroom Spacious Apartment, Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached,Banana Island Estate Banana Island Ikoyi Lagos,₦,"600,000,000/sqm",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Terraced Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Super Luxury Flat With 2 Bq,Glover Old Ikoyi Ikoyi Lagos,$,"875,000",1,0,0,4 beds,5 baths,6 Toilets +Serviced Fully Furnished 3 Bedroom With Bq,Onikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds, baths, Toilets +5bedroom Fully Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,4 beds,5 baths,4 Toilets +Land,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Mansion,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Fully Furnished With Swimming Pool, Gym And World Class Fittings",Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House +;3 Rooms Bq,"Off Gerrard Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom House,Second Avenue Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Flats,. Ikoyi S.w Ikoyi Lagos,₦,"85,000,000",1,0,0,2 beds,3 baths,3 Toilets +A Family House With 9 Bedrooms All Rooms Ensuit,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,10 Toilets +"6 Bedrooms Detached Waterfront House With Pool In Banana Island ,ikoyi Lagos","2n Avenue Banana Island Estate Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"1,700,000,000",0,1,0,6 beds,6 baths,7 Toilets +750m2 Prime Land,Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 3000sqmtrs,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"435,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Massionatte With 2 Rooms Bq,Bourdillon Ikoyi Lagos,₦,"1,000,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +"2 Bedroom Waterfront Apartment With Gym, Swimming Pool And Elevator Forsale",Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds, baths, Toilets +24 Units Of 3bedroom Flat,Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Parkview Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Awolowo Awolowo Road Ikoyi Lagos,$,"90,090,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Banana Island Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat,"Olori Mojisola, Along Banana Island Ikoyi Lagos",₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury Waterview 4 Bedroom Terrace House,Patrick Habour Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Standard 5bedroom Terrace Duplex With Swimming Pool,Banana Island Ikoyi Lagos,₦,"800,000,000/year",1,1,0,5 beds,6 baths,6 Toilets +Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Semi Detached Home With A Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Estate Ikoyi S.w Ikoyi Lagos,₦,"420,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Oniru Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fantastic Contemporary Terrace Building,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Five Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Magnificently Spaced 5 Bedroom Fully Detached Mansion With Swimming Pool, Elevator, Cinema",Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,5 Toilets +Massive 6 Bedroom Fully Detached Duplex,Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,1,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq,Kings Court Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Fully Automated 6 Bedrooms Furnished Mansion With A Cinema, Elevator, Pool , Gym",Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0,6 beds,6 baths,6 Toilets +Well Spaced 4bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A New Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Houses With Bq,Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Hotel,Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cedarwood Luxury Duplexes,Ikoyi Lagos,₦,"197,500,000",1,1,1,4 beds, baths, Toilets +Beautiful Mordern 3 Bedroom Penthouse With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +Superbly Finished Automated 5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Penthouse,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Apartment,Estate Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,1,5 beds,5 baths,6 Toilets +Top Notch Quality 2 Bedroom Flat With Bq And Gym,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,2 Toilets +Waterfront 3 Blocks Of 21units Of 4bedroom Penthouse And 3bedroom Flats,Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat With Bq,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds, baths, Toilets +Land,"Mekunwen Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 2 Bedrooms Apartments,Ikoyi Lagos,₦,"185,000,000",1,0,0,2 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,"Lawrence Road, By Wheatbaker Hotel, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Lands,Old Ikoyi Ikoyi Lagos,₦,"1,440,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"380,000,000",1,0,0,3 beds, baths, Toilets +Land,Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +5bedroom Semi Detached House,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000/year",0,0,0,5 beds,5 baths,5 Toilets +"An Exclusive And Elegant Block Of Apartments,",Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fenced 300sqm Plot Of Land,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Gerard Road Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Exotic 3 Bedroom Flat With Bq,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,4 Toilets +4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",1,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Off Keffi Road Baidu Street Ikoyi S.w Ikoyi Lagos,₦,"120,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1040 Sqm Land,"Keffi Street, South West Ikoyi Lagos. Ikoyi S.w Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached Mansion With 2bq,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,8 beds,8 baths,9 Toilets +4 Bedroom Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Brand New 6 Bedroom Terrence Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,7 baths,7 Toilets +4 Units Of 5 Bedroom Fully Detached Duplex,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Alfred Rewane Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,4 beds,4 baths,5 Toilets +Ikoyi Banana Island,Ikoyi S.w Ikoyi Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,1,5 beds,5 baths,6 Toilets +Full Building,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Furnished Luxury Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Bourdillon Ikoyi Lagos,₦,"125,000,000",1,0,0,3 beds,2 baths,3 Toilets +Waterview 5 Bedrooms Flat,"Shoreline Drive Estate, Ikoyi. Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detach Duplex,Banana Island Ikoyi Lagos,$,"1,800,000",0,0,0,6 beds,7 baths,7 Toilets +A Brand New Fully Finished 4 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema,bq",Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Built Block Of Detached And Semi Detached Duplex In An Exotic Mini Estate,Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +500sqm Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +Spacious And Well Designed Fully Serviced 3bedroom Apartments,Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +"1500 Sqm Well Shaped,gated & Fenced Plot Of Land",Banana Island Ikoyi Lagos,₦,"125,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,200sqm Land",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Superb 5bedroom Luxuriously Finished House With 2 Bq And A Swimming Pool On Two Floors In Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Land,Glover+dtch Bldg Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shaw Rd Old Ikoyi Ikoyi Lagos,₦,"830,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flats,Off Kingsway Road Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Exclusive Location Parkview Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Old Ikoyi Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq All Rooms Ensuite In A Clean & Secured Environment At Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,6 baths,5 Toilets +Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"1,075,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Turnbul Street Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +"13,711.7sqm Of Residential Land",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi Gated Estate Location: Ikoyi, Lagos:",Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,7 Toilets +Brand New 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront 5 Bedrooms Detached Duplex With Swinming Pool,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4,700sqm Land",Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alfred Rewane/osborne Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"830,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Land Size: 6,400 Sqm",Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets +Flamboyant 3 Bedrooms Apartments With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets +4bedroom Terrace Duplex With Bq At Kingsway Road Ikoyi Lagos,Kingsway Ikoyi Lagos Ikoyi Lagos,₦,"250,000,000",1,1,1,4 beds,5 baths,5 Toilets +Ocean View 6 Bedrooms Fully Detached Duplex,"Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,1,1,6 beds,6 baths,7 Toilets +4 Bedroom Flat,Ocean Parade Banana Island Ikoyi Lagos,$,"2,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious Finish 5 Bedroom Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Semi Detached Duplex,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5bedroom Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fantastic 5bedrooms Detached Duplex With 2rooms Bq , Study Room, Bar And Sauna",Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets +3 Bedroom Partly Furnished Serviced Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,0,1,3 beds,3 baths,4 Toilets +800 Sqm Of Land Located In A Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Turnbull Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4812+ Square Meters Of Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"4 Kingsway Close, Off Alfred Rewane Road, Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (880 Square Metres),Shoreline Estate Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bare Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,748,500,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat Maisonnate With Bq,Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,3 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace House With Bq,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedrooms Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 5 Bedroom Smart Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Serviced 3 Bedroom Flat With Bq And Gen,Bourdillon Ikoyi Lagos,₦,"150,000,000",1,0,1,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,3rd Ave Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds, baths, Toilets +11 Units Of 5 Bedroom Classic Contemporary Stand Alone Units,Mixed Use Area Banana Island Ikoyi Lagos,₦,"980,000,000",0,1,0,5 beds,5 baths,1 Toilets +A Block Of 24 Units Luxury Flats,Banana Island Ikoyi Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +Offplan Sale Of Luxury Apartments In Ikoyi,Ikoyi Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets +Block Of Luxury Apartments,Turnbull Road Gerard Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +"This Castle Has Got 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space, 7 Bathrooms, 2 Rooms Maids Quarters",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxury 4 Bedroom Smart House,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Maisonette,Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets +Fantastic 5 Bedroom Fully Detached Duplex House Jnf,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +Offplan Sale Of 24 Units 3 Bedroom Luxury Apartments,Femi Okunnu Road (formerly Cooper Road) Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fairly New 3 Bedroom With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets +3bedroom Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,3 beds,3 baths,3 Toilets +7 Bedroom Detached,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,7 Toilets +A 4 Bedroom All En Suite Serviced Apartment,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Dolphin Estate Ikoyi Lagos,₦,"22,000,000",0,0,1,2 beds,2 baths,3 Toilets +"1,700sqm Land",Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fully Service Ensuite 3bedroom Luxury Apartments +bq,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Spacious 11 Units Of 3 Bedrooms Apartments With Swimming Pool, Gym, Elevator &bq",Ikoyi Lagos Ikoyi Lagos,₦,"2,200,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Serviced Apartment,Banana Island Road Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land,Mekuwen Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4400m² Land,Glover Rd Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Finished 3 Bedroom Apartments,Ikoyi Lagos,₦,"220,000,000",1,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,750,0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Apartment/ Duplexes Within An Exquisite And World Class Residential Property On 20 Floors.,Bourdillon Ikoyi Lagos,$,"1,500,000",1,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets +1312 Sqm Land With A Structure Of 8units Of 3 Bedroom Flat,Awolowo Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kalabari Old Ikoyi Ikoyi Lagos,₦,"670,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Rd Old Ikoyi Ikoyi Lagos,₦,"4,035,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000sqm 10,000sqm Waterfront Vacant Land",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Elegantly Finished 3 Bedroom Apartment With Gym, Communal Pool And A Room Bq",Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3bedroom Serviced Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +"18,000²m Land",Kingsway Rd Old Ikoyi Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Masionete,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,0 baths,0 Toilets +6300m² Land,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom All Ensuite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets +Newly Built Waterfront 5 Bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Directly On Bourdillon Road Bourdillon Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"3,700sqm Corner Piece Land",Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Flat Apartment,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +"5 Bedrooms Detached Duplex With Pool, Cinema, Gym, Rooftop Terrace And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000",0,1,0,5 beds,5 baths,6 Toilets +A Lovely 3bedroom Terrace,Orange Mews Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,1,3 beds,0 baths,0 Toilets +4313 Sqm Of Land,Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxuriously Finished 4 Bedroom Terrace Duplex With Bq, Swimming Pool And Gym Jnf",Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,6 Toilets +Executive 3bedroom Serviced Apartment,Osborn Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4,400sqm Land",Old Ikoyi Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +4300sqm Land,Alexander Ave Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets +Fantastic 3 Bedroom Flat,Off Banana Link Road Ikoyi Lagos,₦,"175,000,000",0,1,0,3 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex Plus Bq,"Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"500,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 5 Bedrooms Detached House + 1 Room Bq,Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Maisonette Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"680,000,000",1,1,1,5 beds,6 baths,5 Toilets +"4,880sqm Land",Kingsway Rd Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,0,0,6 beds,0 baths,0 Toilets +Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely 4 Bedroom Super Luxury Apartment,Banana Island Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Detached House With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Modern 3 Bedroom Terraced House,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"520,000,000",1,0,1,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",1,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House,2bd Ave Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Luxuriously Finished 3 Bedroom Apartment With A Bq,"Along Banana Island Road, Onikoyi, Ikoyi Lagos",₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +3bedroom Apartment With A Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraces,"Osborne Foreshore Estate Phase 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Exotic Smart & Fully Automated 5 Bedrooms Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets +Jv At Club Road Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Newly Built Luxury 3bed Maisionette In A Well Secures Gated Estate,Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets +Water Front Mansion,Banana Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,10 beds,8 baths,9 Toilets +Amazing 5 Bedrooms Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,000,000,000",1,0,1,0 beds,0 baths,0 Toilets +4bedroom Water Front Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Duplex With 2 Rooms Bq,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets +Oniru Beach Front Land,Oniru Beach Lagos Old Ikoyi Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Tastefully Finished 2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,2 baths,3 Toilets +Furnished 2 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New Fully Serviced 3 Bedroom Flat,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,1,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Smart Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Milverton Old Ikoyi Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +"26,000sqm Land",Ikoyi Crescnt Old Ikoyi Ikoyi Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"18,000m² Of Land",Afred Rewane Road Old Ikoyi Ikoyi Lagos,$,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lawrence Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"19,200²m Land",Off Oba Elegushi Old Ikoyi Ikoyi Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Rd Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedrooms Detached Duplex With Pool, Cinema, Gym, Rooftop Terrace And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Terrace+bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,400m² Land",Glover Rd Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lawrence Old Ikoyi Ikoyi Lagos,₦,"1,012,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mekuwen Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,8 Toilets +Fantastic 4 Bedroom Town House With Bq,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,0 baths,0 Toilets +Newly Built Ultra Modern 2 Bedrooms Apartment,Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,2 beds,3 baths,3 Toilets +"Fashionable 5 Bedrooms Detached Duplex With Swinming Pool, Gym, And Elevator",Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fantastic 5 Bedroom Detached House With Bq,Shoreline Estate Ikoyi Lagos,₦,"400,000,000",1,0,0,5 beds,0 baths,0 Toilets +Fantastic 6 Bedroom Detached House With Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,0 baths,0 Toilets +Exquisitely Serviced 3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds, baths, Toilets +Lovely 4 Bedroom Terrace,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +"Luxurious 5bedroom Fully Detached Duplex, At Banana Island, Lagos",Banana Island Ikoyi Lagos,₦,"1,600,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Flat,"Banana Island Road, Ikoyi Banana Island Ikoyi Lagos",₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury Finished En Suite 5 Bedroom Detached House With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Of Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Turnbull Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront Plot (1,157 Square Meters)",Banana Island Ikoyi Lagos,₦,"1,041,300,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Banana Island Road Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached House,2nd Ave Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +A Well Maintained 3 Bedroom Flat With A Room Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Well Built 4 Bedroom Townhouse + 2 Unit Of 2 Bedroom,"2nd Avenue Off Osborne Road Ikoyi, Lagos 2nd Avenue Extension Ikoyi Lagos",₦,"750,000,000",0,0,0,4 beds,5 baths,4 Toilets +Water Front Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Ensuite Apartments,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedrooms Maisonnetts With 2 Rooms Boy's Quarter,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,0 baths,0 Toilets +26 Firmly Built Luxurious 3 Bedroom Apartments.,Ikoyi Lagos,₦,"4,500,000,000",1,1,0,0 beds,0 baths,0 Toilets +Serviced Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets +Waterfront Land,Alexander Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Ikoyi Lagos,₦,"165,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 1unit Of 5bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets +8 Units Of 3 Bedroom Flat,Old Ikoyi Awolowo Road Ikoyi Lagos,₦,"1,000,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Duplex With Bq,Dolphin Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Luxury 4 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Banana Island Road Ikoyi Lagos,₦,"360,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Shopping Complex,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Onikoyi Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious Serviced 2 Bedroom Apartment,Ikoyi Lagos,₦,"175,000,000",1,1,1,2 beds,2 baths,3 Toilets +Serviced Contemporary 5 Bedroom Apartment,Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"420,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,5 Toilets +Prime Parcel Of Land 1000sqm,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 6 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets +5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Executive 4 Bedrooms Detached Duplex With Bq,Old Ikoyi Lagos Island Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedrooms Terraced Duplex With Bq,Ikoyi Lagos Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment Ikoyi,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +10 Unit Of 3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"2,400,000,000",0,1,0,3 beds,3 baths,3 Toilets +6bedroom Detached Duplex,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,000,000,000",0,1,1,6 beds,6 baths,7 Toilets +Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Renovated Waterfront 5 Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious Finished Fully Detached 5 Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,2/sqm,0,0,0,5 beds,6 baths,6 Toilets +Executive Newly Built 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +Land,Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"20,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,3 Toilets +20000 Sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +1112sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Opulent Quality 5 Bedroom Fully Detached Duplex,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +9000sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +1006sqm Of Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikoyi Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bqs,Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,"Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"777,000,000/year",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom En Suite Detached House On 3 Floors,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built, Units Of 4 Bedroom En Suite Detached And Semi Detached Houses On 2 Floors Within A Serviced Premises",Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Water View Apartments,Banana Island Road Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +4500sqm Land Forsale,Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +2800sqm Land Forsale,Banana Island Ikoyi Lagos,₦,"1,290,000/sqm",0,0,0, beds, baths, Toilets +24 Units Of 3 Bedroom Flats*,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3004sqm Land*,Alexander Road Ikoyi Lagos,₦,"670,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land*,Adeyemi Lawson Off Bourdillon Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"*12,000sqm* Waterfront Land In A Residential Axis Of Banana Island",Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets +"5,400sqm* Waterfront Land In A Residential Axis Of Banana Island",Banana Island Ikoyi Lagos,₦,"1,300,000,000/sqm",0,0,0, beds, baths, Toilets +1700sqm Land Waterfront Mojisola N1.5billion,Waterfront Mojisola Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +1700sqm Waterfront Land Mojisola Onikoyi N1.5billion,Mojisola Onikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +2100sqm And 2700sqm Lands,Mekwen Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets +2100sqm Land,2nd Avenue Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets +900sqm Land,Shoreline Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +1000sqm Non Waterfront Land,Residential Side Of Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets +Spacious 3 Bedroom Flat + Bq & Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury Serviced 3 Bedroom Furnished Apartment +1 Room Bq On The 2nd Floor,Queens Drive Falomo Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Well Furnished 5 Bedroom Terrace With Swimming Pool And Gym Inside A Secured Estate,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Terraced House,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets +3/4 Bedroom Ultra Luxury Apartment With 2 Bq.,Old Ikoyi Ikoyi Lagos,₦,"1,850,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With A Beautiful View,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat In Banana Island, Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,1,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,0 beds,5 baths,6 Toilets +Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"700,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Semi Detached Duplex On 300sqm Land For Sale!!!,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,4 Toilets +Waterfront Plot Measuring 4800sqms,Waterfront Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +1134sqms Land,Zone J Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets +Serviced Massive 5 Bedroom Fully Detached House With 2bq,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,7 Toilets +Ocean View Executive Massive 6 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,6 beds,6 baths,8 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart Contemporary 4 &5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Build 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets +Executive Newly Built 5 Bedroom Duplex With Amazing Facilities,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Massionette Plus Bq,Elizabeth Grace Court Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,1,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"115,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 6bedroom Detached Duplex With Swimming Pool And 2 Bq, Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,8 Toilets +Well Furnished Executive Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +6 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,6 beds,6 baths,7 Toilets +Brand New 3bedroom Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Water View Brand New Luxury 5bedroom Fully Detached With Swimming Pool, Cinema",Ikoyi Lagos,₦,"580,000,000",0,0,0,5 beds,5 baths,7 Toilets +Executive New 4 Bedroom For Sale,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +"12,100 Sqm Waterfront Land", Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 7 Bedroom Fully Detached Duplex.,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,7 beds,7 baths,8 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Flat,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Amazing 4 Bedroom Flat With Good Facilities,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Flat,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace With Pool & Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2,100 Square Meters Land",Z Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Water View Brand New Luxury 5bedroom Fully Detached With Swimming Pool, Cinema",Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +Executive New 6 Bedroom With Good Facilities,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +Amazing New 6 Bedroom,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +Executive Massive 4units Of 4bedroom Maisonette, Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,6 Toilets +New Executive 3 Bedroom Flat With Sea View & Swimming Pool, Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Well Finished 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Terrace For Sale With Amazing Facilities,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace With Executive Facilities Comes With Swimming Pool And Gym Excellent View,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Executive Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq On 1700sqm Landsize For Sale!!!,Ikoyi Lagos,₦,"2,000,000,000",1,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4,723sqm Waterfront Bareland",Zone L9 Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"26,000sqm Ikoyi Crescent",Ikoyi Crescent Banana Island Ikoyi Lagos,₦,"11,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Six Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,$,"1,450,000",1,1,0,6 beds,6 baths,7 Toilets +Amazing 4 Bedroom Terraced Duplex House,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets +Fully Furnished Luxury 5bedroom Terrace With Two Staff Quarters Available, Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6100sqm Of Land At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury & Exquisitely Finished 5bedroom Fully Detached Duplex + A Room Bq On 450sqm Landsize,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,1,6 beds,6 baths,6 Toilets +4 Numbers 5 Bedroom Fully Serviced Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex With A Bq In Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxury 4bedroom Terrace Duplex + (3sitting Rooms & A Room Bq ) For Sale!!!,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,4 Toilets +"5 Bedroom Detached Duplex With Swimming Pool, Cinema,elevator And Gym",Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 6bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikoyi Lagos,₦,"390,000,000",0,1,0,6 beds,6 baths,7 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 3,607 Square Meters (with Structure)",Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Vacant 54 Highrise Luxury Apartments(house) For Sale!!!,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex With An Elevator And A Pool,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 3 Bedroom Flat With Executive Facilities,Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,1,3 beds,3 baths,4 Toilets +Executive 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Fully Detached House With A Bq,Gerard Road Ikoyi Lagos,₦,"340,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Penthouse Is Literally The Top Floor Experience.,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully 6bedroom Detached Duplex With 2bq And Swimming Pool Available For Sale .,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +New Amazing 5 Bedroom Terrace With Good Facilities Inside Banana Island Come's With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Terrace Duplex For Sale Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Penthouses With Top Class Facilities For Your Living Comfort Or Investment.,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +4units Of 3 Bedroom Terrace Apartment Sited In A Well Secured Estate At Ikoyi Lagos.,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex Situated In Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartments Within A Serviced Estate With Top Notch Facilities,Old Ikoyi Ikoyi Lagos,₦,"195,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Excellent Facilities Comes With A Rooftop,Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Luxurious Units Of 4 And 5 Bedroom Smart Maisonette With Swimming Pool,elevator And Gym",Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +Executive Well Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Fully Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq(waterfront),Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Fully Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxurious Furnished 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +"Block Of Flats On A Land Size Measuring 5,299.745 Sqm",Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Maisonette And 4bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplexes At Ikoyi Lagos,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Unit Of 3bedroom Apartment And 4 Bedroom Maisonette,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex With Bq For Sale,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Furnished , Well Built 6 Bedroom Fully Detached Duplex With 2 Rooms Bq",Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +A Newly Built & Tastefully Finished Luxury 6bedroom Fully Detached (mansion) On 600sqm Landsize For Sale!!!, Ikoyi Lagos,₦,"1,400,000,000",0,1,1,6 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Terrace Duplex With Bq,Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Penthouse Apartment,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +"2,700 Square Meters Land",Mekunwen Road Banana Island Ikoyi Lagos,₦,"1,755,000,000",0,0,0, beds, baths, Toilets +"2,3 And 4 Bedroom Terrace Apartment Sited In A Well Secured Estate At Ikoyi Lagos.",Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautifully Built 5 Bedrooms Fully Detached House In A Mini Estate, Old Ikoyi Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxurious, Stylish And Uber Contemporary 3 And 4 Bedroom Apartments, Maisonettes And Penthouses",2 Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets +Brand New Units Of 3 Bedroom Penthouse With Bqs At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Prime Lands In Banana Island,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 5 Bedroom Terrace With Two B.q, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land In Ikoyi,On Turnbull Road Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +5 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Are The Penthouse And 3/4 Bedroom Apartments, Ikoyi Lagos,$,"1,400,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury Units Of 2, 3 & 4 Bedroom Apartments Within A Serviced Estate With Top Notch Facilities",Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New Units Of 3 Bedroom Flats With Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +New Furnished 5 Bedroom Duplex For Sale In Banana Island Comes With Swimming Pool & Gym,Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Executive Luxury 4 Bedroom For Sale,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Solid Five (5) Bedroom Fully Detached Duplex,Mosley Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly 6 Bedroom For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +Amazing Facilities 2 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Amazing Newly Built 6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,6 beds,6 baths,7 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Semi Detached Duplex With Rooftop And Elevator,Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bed Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Executive 5 Bedroom Fully Detached,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedrooms Fully Detached House In An Estate, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,7 Toilets +Brand New Exquisitely Fully Detached Duplex With Bq And Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +11 Classic Contemporary Stand Alone Units With 5 Bedrooms,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex With Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Massionette With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets +Decently Finished 3 Bedroom Apartment With Bq,Gerard Road Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,4 baths,4 Toilets +Fully Serviced 3 Bedroom Apartment With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets +"6 Bedroom Fully Detached Duplex With Swimming Pool, Gym And Cinema",Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,7 Toilets +3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment With Bq And 4 Bedroom Maisonett With Bq,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"240,000,000",1,1,0,3 beds,3 baths,4 Toilets +Well Built 3 Bedroom Flat Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,4 baths,4 Toilets +Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Apartment Units With 3 Bq.,Old Ikoyi Ikoyi Lagos,$,"1,600,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Waterfront Land Measuring 4100 Sqm, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex Situated In Ikoyi,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets +"Waterview Plot Measuring 1,135sqms N1.1million Per Sqm",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds,4 baths, Toilets +4 Bedroom Terrace That Comes With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Unit Of 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Executive Furnished 3 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,3 beds,3 baths,4 Toilets +6 Bedroom Fully Detached Duplex Sitting On 500sqm,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached,Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly Built Waterfront 5bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Residential Development Of 3 Bedroom Apartments (off Plan),Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +20 Units Of Fully Serviced 3 Bedroom Flats,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxurious 4 Bedroom For Sale Come's With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,4 baths,5 Toilets +New 6 Bedroom With Amazing Facilities For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,1,6 beds,6 baths,6 Toilets +Exquisite 5bedrooms Detached House In Banana Island Ikoyi,Off 2nd Avenue Banana Island Foreshore Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,1,5 beds,5 baths,7 Toilets +Classic Finished 2 Units Of 5 Bedrooms Fully Detached House In Banana Island,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,1,5 beds,5 baths,7 Toilets +Luxury 3 Bedroom Apartment,Z Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Maisonette With Open Roof Terrace And Bq,Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Units Of Luxury 5 Bedroom Fully Detached Duplexes + 2room Bq Each On 512sqm Landsize For Sale!!!!,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets +Executive 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront Six Bedroom House With Jetty.,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Luxurious 3 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,1,3 beds,3 baths,4 Toilets +Well Standard 3 Bedroom Apartment,Dolphin Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,3 beds,2 baths,2 Toilets +An Impeccably Designed 5 Bedroom Semi Detached Duplex With A Beautiful View,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Semi Detached With + 2 Bqs,Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Apartments,Z Bourdillon Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,4 Toilets +Furnished Two Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,1,5 beds,5 baths,5 Toilets +Exquisite 4 Bedroom Duplexes With 2 Sitting Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Units Of 5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,$,"1,300,000,000",1,1,0,5 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury High Rise 4 Bedrooms Apartment With 2 Bq (on The 19th Floor)*,Bourdillon Ikoyi Lagos,$,"3,200,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Standard 5bedroom Detached,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detached Duplex With A Bq,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,0 baths,0 Toilets +7 Bedroom Waterfront Fully Furnished Palatial Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,8 Toilets +Waterfront Brand New 4 Bedroom Penthouse,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Marionette House,Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"420,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Maisonette Waterfront Apartments,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2, 4 Bedroom Marionette Waterfront Apartments",Ikoyi Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 & 4 Bedroom Waterfront Apartments,Ikoyi Lagos,₦,"15,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +Land,Zone H 37 Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedroom Flats,Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Automated 4 Bedroom Maisonette With A Self Contained Bq;,Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Ikoyi Lagos,₦,"650,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +Lovely Prime Plot Of Land Measuring 1090sq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,308,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Penthouse Maisonette With A Bq;,Ikoyi Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,000sqm",Zone P77 Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Waterfront Land Measuring Approximately 3,700m²","Zone L , Off 4th Avenue In A Close, Banana Island Ikoyi Lagos",₦,"4,070,000,000",0,0,0, beds, baths, Toilets +"Fully Serviced, 5 Bedroom Fully Detached House With Open Roof Terrace",Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Terrace Duplex With A Bq;,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New Fully Serviced 2, 3 Bedrooms & A 4 Bedroom Penthouse",Ikoyi Lagos,₦,"120,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq In Premium Location,In A Serene Neighborhood Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,3 Toilets +"Land Measuring 4,812sqm","Zone L, Plot 9, Banana Island Ikoyi Lagos",₦,"900,000/sqm",0,0,0, beds, baths, Toilets +Fully Serviced 12 Units Of 3bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Flat With Bq;,Ikoyi Lagos,₦,"125,000,000",0,1,0,3 beds,3 baths,4 Toilets +Ongoing 3 Bedroom Flat With A Bq;,Osborne 2 Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Off Banana Island Road Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Waterfront Bareland Measuring 1,939m²","Zone Q, Banana Island Ikoyi Lagos",₦,"2,132,900,000",0,0,0, beds, baths, Toilets +Beautifully Built 4 Bedroom Luxury Flat With 2 Rooms Bq;,Ikoyi Lagos,₦,"480,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Contemporary Penthouse;,Ikoyi Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,$,"1,500,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With 1 Room Bq,Ikoyi Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Mansionette With Gym + Pool + Elevator,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious And Investment Friendly 3 Bedroom Flat With Bq;,Gerard Road Ikoyi Lagos,₦,"135,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 6 Bedroom Fully Detached Duplex;,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Beautifully Built 3 Bedroom Flat With A Bq;,Off Oba Adeyinka Road Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Renewable Property On 2,000m² Land","2nd Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Penthouse Flat;,Ikoyi Lagos,₦,"395,000,000",0,1,0,4 beds,4 baths,5 Toilets +50% Completed 5 Bedroom Semi Detached Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Built And Spacious 5 Bedroom Fully Detached Duplex With A 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With A Bq;,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Elevator In A Beautiful Estate,Banana Island Ikoyi Lagos,₦,"580,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Osborne 2 Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment In Premium Location,Waterfront Apartments Banana Island Ikoyi Lagos,₦,"220,000,000",1,0,0,3 beds,3 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With A Bq;,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,"Mosafejo Close, Old Ikoyi Ikoyi Lagos",₦,"2,503,200,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 5 Bedroom Luxury Maisonette,In A Prestigious Neighborhood Ikoyi Lagos,$,"1,200,000",1,0,1,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Maisonette With Bq,E Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Exquisitely Finished 4 Bedroom Maisonette,Ikoyi Ikoyi Lagos,₦,"390,000,000",1,1,0,4 beds,4 baths,5 Toilets +15 Units Of State Of The Art 4 Bedroom Flat (490m/unit),"Ikoyi Forshore Along Banana Island Road, Ikoyi Lagos",₦,"480,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious And Luxurious 4 Bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Maisonette:,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Luxury Maisonette With Swimming Pool,In A Serene Neighborhood Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Apartment In Premium Location,In A Serene Neighborhood Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,4 Toilets +Beautiful 3 Bedroom Flat With A Bq;,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 3 Bedroom Apartment With Bq,In A Serene Neighborhood Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Apartment + 1 Maid Room,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With A Bq;,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Semi Detached Duplex With Ocean View,Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq;,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment In Prime Location,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,3 Toilets +Tatsefully Finished And Furnished 3 Bedrooms Flat,Mosley Road Ikoyi Lagos,₦,"250,000,000",1,0,1,3 beds,3 baths,4 Toilets +Luxuriously Finished 5 Bedroom Semi Detached House With Bq;,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Ultra Luxurious Penthouse On 2 Floors With Private Cinema For Sale,Old Ikoyi Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Penthouse Flat With A Bq;,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With 2 Rooms Bq;,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat;,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Exquisitely Finished 5 Bedroom Mediterranean Styled House,Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Flat With A Bq;,Gérard Road Ikoyi Lagos,₦,"220,000,000/year",1,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Fully Detached House With A Bq,Banana Island Ikoyi Lagos,$,"2,500,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Terrace Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex;,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Elevator In A Beautiful Estate,Banana Island Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With A Room Bq;,Banana Island Road Ikoyi Lagos,₦,"360,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bed Semi Detached Duplex With Swimming Pool And Gym,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massively Super Luxury 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Ikoyi Bourdillon Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,4 baths,6 Toilets +Units Of 4 Bedroom Maisonette;,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Super Luxury Spacious 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikoyi Bourdillon Ikoyi Lagos,₦,"720,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Standard 5 Bed Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With Excellent Finishing,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Flat;,Ikoyi Lagos,₦,"115,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex With 1 Room Bq And 1 Studio Bq;,Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 1,800m²","Zone R, Banana Island Ikoyi Lagos",₦,"1,530,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Semi Detached With A Bq;,Banana Island Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,6 beds,6 baths,7 Toilets +Fully Automated 5 Bedroom Maisonette With A Self Contained Bq;,Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 1,000m²","Zone J44, Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Spacious 4 Bedroom Penthouse Flat With 2 Rooms Bq;,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"560,000,000",1,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace Duplex With A Bq,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Amazing And Spacious 4 Bedroom Penthouse Flat,D Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Penthouse Maisonette With 1 Room Bq;,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq;,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 2,500m²","Osborne Phase 2, Ikoyi Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +Brand New 2 Bedroom Apartment:,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Waterfront Bareland Measuring 4,600m²","Zone J15, Banana Island Ikoyi Lagos",$,"11,000,000",0,0,0, beds, baths, Toilets +Beautifully Built 6 Bedroom Fully Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Land Measuring 28,000m²","Directly On Bourdillon Road, Bourdillon Ikoyi Lagos",₦,"16,000,000,000",0,0,0, beds, baths, Toilets +Nicely Built 4 Bedroom Terrace House;,Ikoyi Lagos,₦,"255,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Designed 5 Bcdroom Semi Detached House With 2 Room Underground. (finishing Materials On Ground),"Mcpherson Street, Ikoyi Lagos",₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Semi Detached Duplex With Bq;,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"3 Bedroom Apartment, 4 Bedroom Apartment & 2 Penthouses;",Ikoyi Lagos,₦,"650,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Exquisitely Finished, Brand New 4 Bedroom Penthouse (video Available On Request)",Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With 2 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Ultra Luxury 4 Bedroom Maisonette In A Strategic Location,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Fully Serviced Flat (carcass),"River Side Apartments Along Banana Island Road, Ikoyi Lagos",₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely Studio Apartment:,Old Ikoyi Ikoyi Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,2 Toilets +Units Of 3 Bedroom Fully Automated Apartments;,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Detached With 2 Rooms Bq,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached House With 2 Rooms Bq;,Off Kingsway Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flats Apartment;,Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Detached House With 2 Rooms Bq;,Off Kingsway Road Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 1 Room Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Serviced Maisonette Plus Maid's Room;,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Finished And Fully Serviced 4 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,$,"750,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Built 3 Bedroom Penthouse Maisonette With Bq;,Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Tastefully Finished 1 Unit Of Brand New 5 Bedroom Semi Detached Duplex With Elevator,"Olori Mojisola Estate, Off Banana Island Road, Ikoyi Lagos",₦,"520,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace With Swimming Pool, Gym, Home Office",Banana Island Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,4 baths,5 Toilets +"Strategic Residential Plot Measuring 2,033sqm","Abacha Estate, 2nd Avenue Extension Ikoyi Lagos",₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Mansionette With Elevator + Swimming Pool In A Beautiful Estate,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 1 Room Bq;,Ikoyi Lagos,₦,"20,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace With 2 Rooms Bq;,Bank Road Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built 24 Flats Of 3 Bedrooms Each And 3 Penthouses On 3,600m²","Off Bourdillon, Ikoyi Lagos",₦,"7,500,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Semi Detached House With A Bq;,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,1,0,2 beds,2 baths,3 Toilets +Beautiful 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets +Land Measuring 2876sqm,Kingsway Road Ikoyi Lagos,₦,"2,300,800,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Luxury Built 3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,$,"1,200,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Serviced Apartment In Premium Location,Bayview Apartments Banana Island Ikoyi Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,3 Toilets +Brand New Contemporary 6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 3 Bedroom Apartment With 2 Maid Rooms In Prime Location,The Vantage Bourdillon Bourdillon Ikoyi Lagos,₦,"370,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Beautiful Location,Banana Island Ikoyi Lagos,₦,"480,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 4 Bedroom Massionette With A Bq;, Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Flat With Bq,Glover Road Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool,Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Direct Clients Only Newly Built 5 Bed Fully Detached House + Private Elevator + Swimming Pool + Cinema Room Etc In Parkview @n550m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Fully Serviced Maisonette Plus Maid's Room, Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Nice Prime Plot Of Land Measuring 941sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,035,100,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq On 522m²,"Off Queen's Drive, Ikoyi Lagos",₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Penthouse Flat With A Bq;,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace Duplex With A Bq;,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Detached With A Room Bq;,Banana Island Road Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,In A Serene Neighborhood Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,3 Toilets +"Land Measuring 1,134m² @ 1.2m/sqm","Zone J60, Banana Island Ikoyi Lagos",₦,"1,360,800,000",0,0,0, beds, baths, Toilets +Smart And Spacious 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Apartment;,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Off Banana Island Road Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Waterfront Land Measuring 2,060m²","Zone J, Located Off 2nd Avenue, Banana Island Ikoyi Lagos",₦,"2,369,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,500m²","Zone A19, Banana Island Ikoyi Lagos",₦,"1,950,000,000",0,0,0, beds, baths, Toilets +Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Automated Classic 5 Bedroom Fully Detached Duplex,In A Prestigious Serene Neighborhood Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With A Bq;,Off Alfred Rewane Road Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Waterfront 3 Bedroom Flat With A Bq;,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached With 2 Rooms Bq;,Off Banana Island Road Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With A Bq;,Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Maisonette With A Bq;,Banana Island Road Ikoyi Lagos,$,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Penthouse:,Old Ikoyi Ikoyi Lagos,₦,"385,000,000",0,1,0,4 beds,4 baths,5 Toilets +Premium Plot Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 2 Bedroom Flat;,South West Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,3 Toilets +New 4 Bedroom Semi Detached Terrace House + Bq + Swimming Pool,Central Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Maisonette:,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"Shoreline Estate, Ikoyi Lagos",₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 1 Bedroom Apartment;,Old Ikoyi Ikoyi Lagos,₦,"70,000,000",0,1,0,1 beds,1 baths,2 Toilets +Nicely Built 3 Bedroom Flat With A Bq;,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Strategically Located Parcel Of Land Measuring 6,300sqm","2nd Avenue, Ikoyi Lagos",₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Units Of 4 Bedroom Maisonette Penthouse;,Ikoyi Lagos,₦,"385,000,000",0,1,0,4 beds,4 baths,5 Toilets +Smart And Luxurious 4 Bedroom Terrace Duplex With 2 Rooms Bq;,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With A Bq;,Off Banana Island Road Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 And 4 Bedroom Maisonette With A Room Bq,"Lugard Avenue, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Maisonette With A Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex With A Private Elevator For Each Unit;,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Tastefully Finished 4 Bed Terrace Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Fully Serviced Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Peak Quality Ocean View 5 Bedroom Semi Detached Duplex In A Prestigous Address,Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets +"Land Measuring 2,000m²","Milverton Road, Old Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Joint Venture Of 900sqm,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +6400sqm Joint Venture,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat With A Room Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +1400sqm For A Joint Venture,Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +1800sqm For A Joint Venture,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3123 Sqm,Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 5bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With Room Bq,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land In Shoreline Estate Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +1939aqm,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0, beds, baths, Toilets +Joint Venture 900 Sqm,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +100 Plots Of Land,Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +21000 Sqm Land,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"93,000,000",0,0,0,3 beds,3 baths,3 Toilets +2523sqm Land,Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Ikoyi Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +A Standard 4bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5300sqm Of Land,Lugard Ikoyi Lagos Ikoyi Lagos,₦,"2,600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House With A Private Cinema,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Standard 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4800sqm Land,Banana Island Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6000 Sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +5200sqm Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fantastic 5bedroom Fully Detached,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Detached Mansion,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,6 baths,6 Toilets +New Luxury Executive 3bedroom Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,3 beds,5 baths,5 Toilets +Executive Luxury 2 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"168,000,000",0,1,1,2 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Terrace With A Room Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Luxury & Palatial Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive Luxury 5 Bedroom Detached House,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 24 Unit Of 3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"6,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Units Of 4 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,1,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land Measuring 1393 Sqm With 57 Meters Frontage With Cofo,Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,1,4 beds,6 baths,6 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5000sqm Of Land Corner Piece,Lugard Old Ikoyi Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 26 Unit Of 3 Bedroom Flats,Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",1,1,0,3 beds,3 baths,4 Toilets +"26,000sqm Of Land",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Flat With 24hrs Light,S Bourdillon Ikoyi Lagos,₦,"160,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Flat With Swimming Pool, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Plot Measuring 1,869sqms Milverton Road, Ikoyi.",Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Brand New 3bedroom Flat With A Bq !,Banana Island Ikoyi Lagos,₦,"198,000,000",0,1,0,3 beds,3 baths,4 Toilets +City View 3 Bedroom Apartment With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 3 Bedroom Maisonette,D Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets +6900sqms Land, Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 24 Units Of 3bedroom And 8 Units Of 2bedroom Penthouse On 11255sqm Land,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex + Bq And Swimming Pool,Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 6 Bedroom Fully Detached House With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,7 baths,7 Toilets +Luxury Fully Detached 6 Bedroom And 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets +Non Waterfront Land Measuring 688 Sqm With 32 Meters Frontage,Banana Island Banana Island Ikoyi Lagos,₦,"585,000,000",0,0,0, beds, baths, Toilets +A Well Level And Mixeduse Piece Of 600sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Exquisitely Newly Built 4nos Of 4bedroom Terrace Duplex + Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets +New & Furnished 1 Bedroom Flat In A Lovely Serviced Estate,"Osborne, Ikoyi, Lagos. Ikoyi Lagos",₦,"89,000,000",1,1,1,1 beds,2 baths,2 Toilets +Exquisitely Service 3bedroom Ground Floor And First Floor With S/pool,Mosley Ikoyi Mosley Road Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Exquisite 5 Bedroom Fully House In A Serviced Estate,"Parkview Estate, Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5bedroom With Swimming Pool 3siting Room 2bq Elevator And Cinema On 450sqm,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets +Exquisite Ikoyi Waterfront Home,Atlanta Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,600,000,000,000",0,0,0, beds, baths, Toilets +3944sqm Of Land,James George Street Ikoyi Lagos Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Luxury Flats,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"7,000,000,000",1,1,0,3 beds,3 baths,4 Toilets +7 Bedroom Fully Detached House + 2 Rooms Bq On 580sqm,"Off Awolowo Road, Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets +Luxury 4bedrooms Terrace House With 2bq,Close 107 Banana Island Ikoyi Lagos,₦,"430,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elite 5 Bedroom Detached Duplex With 2 Rooms Bq And Pool, Ikoyi S.w Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,5 baths,5 Toilets +5400sqm Of Land With Pile Foundation For Twin High Rises 15 Storey Luxury Towers,Glover Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Vacant Plot Measuring 2,000sqms",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Condominum,"Ikoyi, Lagos Ikoyi S.w Ikoyi Lagos",₦,"370,000,000",1,1,1,4 beds,5 baths,6 Toilets +"Land Measuring 2,550sqms For Sale In Ikoyi",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +3100sqm Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 6bedroom Detached Duplex With Private Elevator And Swimming Pool,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,1,1, beds, baths, Toilets +Ultra Luxury Pent House,Banana Island Ikoyi Lagos,$,"9,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Of 3133sqm,Ikoyi Lagos,₦,"1,535,170,000",0,0,0, beds, baths, Toilets +Exquisite 6 Bedroom Detached House With Elevator,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,7 Toilets +Mini 2 Bedroom And 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"89,000,000",1,1,1,2 beds,1 baths,2 Toilets +For Sale 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",0,1,0,4 beds,4 baths,4 Toilets +3800sqm On Corner Piece With C Of O,Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 3 Bedroom Flat,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +"A Large Expanse Commercial Land 6,302sqm Fenced",Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,462.046sqms",Banana Island Ikoyi Lagos,₦,"1,608,250,600/year",0,0,0,0 beds,0 baths,0 Toilets +A Partitioned Land Measuring 1134.583sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4bedroom House With Carpark Of 5cars,Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,1,5 beds,7 baths,7 Toilets +2500sqm Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 6plots Of Land Close To Radio Nigeria Ikoyi,Ikoyi Closer To Radio Nigeria Ikoyi S.w Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +2500sqm Of Water Front Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Furnished 5bedroom Detached Duplex,Off Queen Drive Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,1,1,5 beds,8 baths,8 Toilets +Luxurious 5 Bedroom Contemporary Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With 2rooms Bq,Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,7 baths,7 Toilets +Finished 5 Bedrooms Semi Detached Duplex In Ikoyi,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets +11 Units Of 3 Bedroom Apartments With Bq, Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000",1,1,0,10 beds,10 baths,10 Toilets +Bareland Measuring 1200sqm,Bank Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"650,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 11units Of 3bedroom Flat + Bq,Located In A Very Good Neighbood Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 4nos Of 5 Bedroom Fully Serviced Maisonette Plus Maid's Room For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex For Sale In Osborne Phase Ii,Osborne Foreshore Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace,G Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Luxury 6 Bedroom Fully Detached Duplexes With Private Elevator,Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 26 Units Of 3 Bedroom Flats,T Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Lovely Estate Made Up Of (16) Units Of 4 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 3 Bedroom Carcass,Osborne Foreshore Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Units Of New And Modern Luxury Residential Blocks Of Flats,Ikoyi S.w Ikoyi Lagos,₦,"17,000,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5bedroom Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Detached House With Bq In A Serene And Secure Environ,Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 3bedroom Townhouse,Ikoyi Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +Waterfront Standard 8200sqm Land,Off Awolowo Road Southwest Ikoyi Awolowo Road Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Off Close 220 Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Standard 4bedroom Detached Duplex On 480sqm With Land Certificate,Off Awolowo Way South West Ikoyi Awolowo Road Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +For Sale One Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"75,000,000",0,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex Stand Alone For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Distressed Hot Sale: 3,944 Square Meters Land","James George Street, Ikoyi, Lagos. Dolphin Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Apartment With A Penthouse,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,3 beds,3 baths,4 Toilets +(j61) 500 Sqm Of Land Front Plot Is Now For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Standard 3bedroom Flat,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3bedroom Apartment In An Estate,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets +"2, 3 & 4 Bedroom Waterfront Homes",. Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Newly Built Serviced Four(4) Storey Commercial Office Complex.,Ikoyi S.w Ikoyi Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +"Brand New 5 Bedroom Detached Duplex With A Room Bq For Sale In Onikoyi, Off Banana Island Road","Onikoyi, Off Banana Island Road Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +"10,000sqms Land For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets +533sqms Land With 24 Meters Frontage For Sale In Ikoyi,Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets +"Land Measuring 2,000sqms With 51 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets +"2,500 Square Meters Waterfront Land","Alexander Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 3 Bedroom Flat With Bq,Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,1,3 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Contemporary Design Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Super Spacious 5 Bedrooms Luxury Maisonette,Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,6 baths,6 Toilets +Massive 2000sqm On Zone H,S Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3100sqm Of Land In Banana Island Ikoyi With C Of O,Banana Island Ikoyi Lagos,₦,"2,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Ocean View 3 Bedroom Flat, Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 & 4 Bedroom Apartments,. Banana Island Ikoyi Lagos,₦,"857,000,000",0,0,0,4 beds,5 baths,5 Toilets +Plot Of Land Measuring 740sqm,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat,T Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +Waterfront Fully Detached 5 Bedroom House With Jetty & 2 Bqs,"Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3,100 Square Meters Parcel Of Land","Bank Road Off Macgregor Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Waterfront Land Of 2750sqm On Alexander With Small 2 Bungalows With Federal C Of O,Alexander Avenue Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flat,Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious And Modern 4 Bedroom Apartment,Glover Axis Old Ikoyi Ikoyi Lagos,$,"1,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached House And Bq,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,6 Toilets +Brand New 4 Bedroom Maisonette With Gym,Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Maisonette With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Standard Luxury 3bedroom Terrace Duplex With Bq,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +370sqm Of Land,Keffi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +1097sqm Of Land Corner Piece,Awolowo Road Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Luxury 3bedroom With Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"249,000,000",0,1,1,3 beds,5 baths,5 Toilets +Waterfront 5 Bedrooms Detached Duplex With Jetty & 2bq,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +600sqms Land Available In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached House,Z Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Waterfront Plot Measuring 4,611sqm",Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale In Ikoyi Lagos.,Ikoyi Lagos,₦,"250,000,000",1,0,0,3 beds,3 baths,4 Toilets +Massive 4 Bedroom Semi Detached With Swimming Pool And Gym,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +984sqm Land,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"Parcel Of Land Measuring 1,937 Square Meters Cornerpiece Land","Plot P2, On 2nd Avenue, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"2,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House With Bq,Ikoyi S.w Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Waterfront 4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,5 Toilets +Finished And Spacious 3bedrooms Apartments With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets +"(l13b) 2,923.345 Sqm Land Is Now For Sale In Banana Island Ikoyi Lagos",Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat,S Ikoyi S.w Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite & Luxurious 5 Bedroom Fully Detached Mansion In A Prestigious Estate,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 3bedrooms Flat With Bq In Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Osborne Estate Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"127,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Standard Mixed Use Acre Of Land 3944sqm With C Of O,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Executive 3bedroom Flat Apartment In A Good Location,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,1,1,3 beds,4 baths,4 Toilets +Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Maissonette With Bq And Elevator,Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxury Newly Built 3 Bedroom Flat With Bq,Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,5 baths,6 Toilets +2 Units Luxury 6 Bedroom Fully Detached,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Of Land,Lugard Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1250sqm Of Land Fenced And Gated,Club Road Old Ikoyi Lagos L Old Ikoyi Ikoyi Lagos,₦,"820,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5bedroom Duplex,Gated Estate Off Banana Island Road Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,7 Toilets +"Waterfront Plot Measuring Almost 3,600sqms For Sale In Osborne Phase 1",Osborne Foreshore Estate Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built 4 Bedroom Terrace Duplex With Bq, Swimming Pool, Gym And Dedicated Transformer",Ikoyi Lagos,₦,"720,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury And Spacious 2 Bedroom Flat,D Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +1000sqm Of Land For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Luxury And Spacious 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,0,0,2 beds,2 baths,2 Toilets +For Sale 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets +"1,700m2 Waterfront Plot + 50 Meters Waterfront Frontage","Mojisola Onikoyi Estate, Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets +An Executive 4bedroom Duplex + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Service Apartment,Alexander Avenue Ikoyi Lagos Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"230,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +2300sqm Of Water Front Land For Joint Venture,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 4 Bedrooms Semi Duplex With A Room Bq,"Onikoyi, Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront 4bedroom Detached Duplex With 2bq,Waterfront Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,1,4 beds,6 baths,6 Toilets +"6,930 Square Meters Land","Glover Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"4,700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"310,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets +High Class Opulent Luxury 5 Bedroom Automated Maisonatte,Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Brand New 5 Bedroom Detached House With A Massive Swimming Pool,Banana Island Ikoyi Lagos,₦,"25,000,000/year",1,1,0,5 beds,5 baths,6 Toilets +Executive 4bedroom Maisonette With Bq Swimming Pool And Gym And Elevator,Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,6 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"780,000,000",0,1,0,6 beds,6 baths,6 Toilets +Tastefully Built 4bedroom Fully Detached Duplex With A Bq,Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,6 baths,7 Toilets +Waterfront Luxury 5bedroom Detached Duplex With Swimming Pool And Jetty,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,7 Toilets +New Executive 5bedroom House With 2room Bq,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,8 baths,8 Toilets +Tastefully 6units Of 3br Flat + 2units Of 4br Mansionette + Pool + Bq,Located In A Very Good And Secure Neighborhood Old Ikoyi Ikoyi Lagos,₦,"950,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Executive 2 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,0 baths,0 Toilets +533sqms Land With 27 Meters Frontage For Sale In Ikoyi,Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets +"Water Front Plot Of Land On 5,005sqm",S Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Flat,Ikoyi S.w Ikoyi Lagos,₦,"175,000,000",0,1,0,2 beds,2 baths,3 Toilets +2917sqm Of Bareland,Ikoyi Osborne Estate Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"680,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With One Room Bq, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Smart Home Fully Detached Duplex,Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Vacant 4 Floors Former Bank Premises On 700sqm Of Land,Awolowo Road Ikoyi Lagos,₦,"650,000,000",1,0,0,4 beds,7 baths,7 Toilets +Furished 6bedroom Home,Ikoyi Old Ikoyi Ikoyi Lagos,$,"5,000,000",0,1,1,6 beds,6 baths,7 Toilets +"2,000sqms Land For Sale In Ikoyi",Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +"New, Luxuriously Finished, Furnished & Serviced 3 Bedroom Ensuite Flat In An Estate","Osborne, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"164,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land Measuring 500sqm,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 24 Flats Of 3 Bedroom Flats With Pent Houses All Room Ensuites At No 12 Adeyemi Lawson Off Bourdillon Ikoyi With C Of O And Governors Consent,Bourdillon Ikoyi Lagos,₦,"7,600,000,000",0,1,0,3 beds,3 baths,3 Toilets +Water Front Of 3 Blocks Of 21 Units Of 4 Bedroom Penthouse And 3 Bedroom Flat On 6100sqm Of Land,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment With A Maid's Room,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Finished 3 Bedroom Spacious Apartment With Bq,Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,3 Toilets +Ultra Luxury Maisonettes,Banana Island Ikoyi Lagos,$,"2,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Luxury Automated Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,6 baths,6 Toilets +Contemporary Designed 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +3004sqm Waterfront Plots Of Land In Old Ikoyi,Alexander Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"670,000",0,0,0, beds, baths, Toilets +"1,639sqms Land", Old Ikoyi Ikoyi Lagos,₦,"819,500,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 3 Bedroom Apartments With Bq And Pool, Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets +Spacious 5 Bedroom Penthouse All Room Ensuite In A Serene Neighbourhood,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,7 baths,7 Toilets +"2, 033sqm Of Land With Lagos State C Of O",2nd Avenue Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring 2,250sqms",Ikoyi Lagos,₦,"1,250,000,000",0,0,0, beds, baths, Toilets +Water Front Land Of 2200sqm,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 3,400sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"An Exquisitely Furnished 5 Bedroom Luxury Detached House On 1,800sqm",Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,1,5 beds,5 baths,6 Toilets +1620sqm Of Land Fenced And Gated With C Of O,Club Road Old Ikoyi Lagos L Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"11,500sqm Of Land",Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front 2 Units Of Fully Detached 5 Bedroom Duplexes,Off Banana Island Road Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,5 Toilets +Water Front Plot Of Land On 4611sqm,S Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land Measuring 943sqms For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +A Standard 5bedroom Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200sqm Of Land With Demolishable Structure On Bank Road,Mcgregor Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,566sqms With 50 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedrooms Townhouse With Bq & Pool,Ikoyi S.w Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,7 baths,7 Toilets +"Land Measuring 2,184sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,201,200,000",0,0,0, beds, baths, Toilets +"For Sale Newly Built 5 Bedroom Fully Furnished Maisonette With Ensuite Rooms With 2 Rooms Bq , Swimming Pool, Gym, Elevator, Fully Furnished At Banana Island Foreshore Ikoyi Lagos",Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +Waterfront Plot Of Land For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"1,018,160,000",0,0,0, beds, baths, Toilets +Executive 9 Bedroom Mansion On 766sqm Land,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,9 beds,9 baths,9 Toilets +Newly Built 5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,5 Toilets +Well Built 3 Bedrooms Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets +"6 Bedroom Fully Detached Duplex With Pent House, Private Elevator , Swimming Pool And Other Facilitie",Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedrooms Terrace Duplex,Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Plot Measuring 1500sqm,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Flat,Shoreline Estate Gerard Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Water Front 4600sqm Of Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Non Waterfront Measuring 1,000sqm With Pile Foundation For Sale In J 44, Banana Island",Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +An Executive 5 Bedrooms Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +"10 Units Of 3 Bedroom Flats, With 1 Unit 4 Bedroom Penthouse With Swimming Pool",D Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Excellent Ensuites Modern 4 Bedroom Manssionette,Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets +(plot P2) 1937 Sqm Of A Corner Piece Land For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Complete Luxury Smart 2bedroom Apartment,By Ikoyi Golf Ikoyi Lagos,₦,"170,000,000",0,1,1,2 beds,3 baths,3 Toilets +4800sqm Of Massive Water Front In A Mixed Used Land,Banana Island Ikoyi Lagos,₦,"4,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,.. Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,566sqms With 47 Meters Frontage For Sale In Ikoyi",Ikoyi Lagos,₦,"620,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With A Swimming Pool,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Detached House,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 2bedroom Flat,Bourdillon Ikoyi Lagos,₦,"175,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Block Of Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",1,0,0,3 beds,3 baths,4 Toilets +"A Vacant High Rise Property Comprising 54 Apartments Of 1, 2 And 4 Bedroom Apartments At Ikoyi Lagos",Ikoyi Lagos,₦,"16,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrance Duplex,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Waterfront 2 Numbers Of Fully Detached 5 Bedroom Duplexe,Off Banana Rd Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,0,5 beds,6 baths,6 Toilets +"1,950sqm Of Residential Land",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5bedroom Detached Duplex With Bq And Gym,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,7 baths,6 Toilets +"2,923 Square Meters Parcel Of Land","Zone L, Plot 13b, Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"900,000/sqm",0,0,0, beds, baths, Toilets +Executive 4bedroom Terrace Duplex With Bq Swimming Pool,Packview Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,1,4 beds,6 baths,6 Toilets +Luxury 3 Bedroom Flat Is Now For Sale In Old Ikoyi Lagos.,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 3 Bedroom Apartment,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +500 Square Meters Front Plot,"Plot J61, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +New 11 Flat Of 3bedroom With Bq Each.swimming Pool And Elevator,Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,1,1,3 beds,5 baths,5 Toilets +A Standard 5bedroom Terraced Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Well Built 3 Bedroom Apartment With Luxury Facilities,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of 4 Bedroom Massionate + 4 Bedroom Pent House,Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +4numbers Of 5bedroom Terrace Duplex With Bq Swimming Pool On 1984sqm Land,Osborne Phase 1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Plus Boys Quarter,Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House + 2 Rooms Bq On 600sqm,"Off Bourdillion Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"720,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Waterfront Measuring 1,900sqm For Sale In Zone Q, Banana Island",Banana Island Ikoyi Lagos,₦,"2,185,000,000",0,0,0, beds, baths, Toilets +New Luxury Villa,2nd Avenue Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Apartment,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Flat + 1 Room Bq With Swimming Pool & Gym,"Gerrad, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +New Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"140,000,000",0,1,1,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Vacant 2295m2 Land,"Mekunwen Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,377,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom All Room En Suite With A Room Bq With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Terrace With A Room Bq For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Luxuriously Finished 4 Bedrooms Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi S.w Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,5 baths,5 Toilets +Giovanni Residence: 4 Bedroom Terrace At Banana Island,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets +Fully Sericed 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,350,000,000",1,0,0,4 beds,4 baths,5 Toilets +Massive Land On 1350 Sqm Is Now For Sale In Banana Island Ikoyi Lagos. Located On Residential Zone E,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +A Standard 4bedroom Fully Detached With Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets +2568sqm Of Land Fenced And Gated,Club Road Old Ikoyi Lagos L Ikoyi Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With 2 Rooms Bq,Living Gold Estate Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Unit Of 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With A Room Staff Quarter, Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land Of 3600sqm With A Duplex,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Classy 5 Bedrooms Fully Detached Home With Private Elevator, And Cinema",Ikoyi S.w Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Luxury 6 Bedroom Fully Detached Duplex With Private Elevator, Gym, Swimming Pool With Pent House",Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,0,0,6 beds,6 baths,7 Toilets +Four Units Of 4 Bedroom Terrace Duplex,Onikoyi Estate Lagos Banana Island Ikoyi Lagos,₦,"165,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Maisonette,Emerald Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Oligarch Standard 5 Bedrooms Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Block Of 6 Flats,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Executive 3bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Three Bedroom Flat,Ikoyi Parkview Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached House,W Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat With A Beautiful Ambience,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Standard High Rise Property,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Contemporary 5 Bedrooms Fully Detached Duplex With Swimming Pool In Ajah, Lekki",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +"1,000 Square Meters Land With Piling Foundation Done","Plot J44, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Serviced 4 Bedroom Terrace House With Swimming Pool & Gym,"Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House + Bq,"Bourdilon, Ikoyi, Lagos. Bourdillon Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land On 1,420sqms For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"923,000,000",0,0,0, beds, baths, Toilets +"3,600m2 Mixed Development Land","Glover Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,900,000,000",0,0,0, beds, baths, Toilets +New Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,1,1,3 beds,5 baths,5 Toilets +3800sqm Of Land With Old Structures,Glover Road Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New Five Bedroom Fully Detached House, All Room Ensuite With 2room Bq",Golden Estate Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,8 Toilets +3 Bedroom Terrace Duplex,E Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex In Banana Island.,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,0,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets +"4,313 Square Meters Parcel Of Land","Alexander Road, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats On 400 Sqm Land,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,4 Toilets +Brand New Luxury 3 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House With A Room Bq,S Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Floor Of Exclusive Residential Estate Of 15 Units Of Luxury Flats,"Ikoyi, In Close Proximity To Ikoyi Club, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House,"Mojisola Onikoyi Estate,ikoyi. Banana Island Ikoyi Lagos",₦,"210,000,000",0,0,0,5 beds,6 baths,6 Toilets +Enormous 6 Bedrooms Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000,000",0,1,0,6 beds,7 baths,7 Toilets +W A T E R F R O N T Land,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land Measuring 943sqms,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,700sqms For Sale In Ikoyi",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Flat With Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached,. Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,6 baths,6 Toilets +For Sale 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Standard 24units Of 3bedroom Flats,Bourdillon Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Shopisticated 24 Units Of 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"195,000,000",0,1,0,3 beds,3 baths,3 Toilets +"A 2 , 3 And 4 Bedroom Apartment",Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +City View 3 Bedroom Apartments With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets +An Executive Hotel Of 58 Rooms,Old Ikoyi Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Penthouse,Bourdillon Bourdillon Ikoyi Lagos,$,"1,900,000",1,0,0,4 beds,4 baths,5 Toilets +1137sqm Land,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Terrace Duplex,Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedroom Apartment With One Room Bq,Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +1950sqm Of Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land Measuring 1000 Sqm,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Newly Built And Unique 5bedroom Duplex,Turnell Avenue Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land,Old Ikoyi Ikoyi Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Measuring 875sqms For Sale In Ikoyi,Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Z Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +New Luxury 4bedroom Semi Detached Duplex With Bq Swimming Pool And Gym,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,6 baths,6 Toilets +An Executive 5 Bedroom Fully Detached Duplex, Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Rise Property Of Two Building 54 Flat Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,1,4 beds,0 baths,0 Toilets +Vacant 4592m2 Land,"Mekunwen Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"2,986,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Luxury 5bedroom Maisonette With Bq Swimming Pool And Elevator,Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached House With Luxury Facilities, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury 4 Bedroom Flat With 2 Rooms Staff Quarters,H Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +4300sqm Of Land With Structure With C Of O,Mcgregor Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex Within A Secured Estate Is Now For Sale Is Now For Sale At Ikoyi Lagos,Ikoyi S.w Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Water View Apartments,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +Automated 5 Bed Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets +3600sqm Of Land,Bourdillon Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 3,400.882sqm",Zone J Third Avenue Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With S/pool And Gym,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Service 4bedroom With Bq,Off Bourdilon Bourdillon Ikoyi Lagos,₦,"160,000,000",0,1,1,4 beds,6 baths,6 Toilets +Water Front Plot Of Land On 1939sqm,S Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 2 Bedroom Ensuite Flat With Swimming Pool & Gym,"Gerrad, Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets +Large Land Of 6578sqm On Residential Zone For Sale.,Banana Island Ikoyi Lagos,₦,"5,920,200,000",0,0,0, beds, baths, Toilets +Vacant Plot Measuring 1000sqm,Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets +"2,677 Square Meters Parcel Of Land","Mekunwen Road, Ikoyi, Lagos. Bourdillon Ikoyi Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets +4300sqm Of Land With C Of O,Alexander Avenue Ikoyi Lagos Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Vacant High Rise Property Of 54 Apartments,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front 5 Bedroom Detached House,Off Banana Island Road Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,157 Square Meters Waterfront Parcel Of Land","Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,041,000,000",0,0,0, beds, baths, Toilets +New Executive 6 Bedroom Detached Duplex With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000/year",0,1,1,6 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Ikoyi Lagos,₦,"720,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Maisonatte,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary Design 5 Bedroom Detached Villa,Ikoyi S.w Ikoyi Lagos,₦,"1,850,000,000",0,0,0,4 beds,5 baths,6 Toilets +"Luxury 3 Bedroom Flat With Excellent Facilities In Osborne, Ikoyi.", Osborne Foreshore Estate Ikoyi Lagos,₦,"95,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Water Front 5 Bedroom Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4bedroom Terrace,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6,500sqms Land For Sale In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"4,400,000,000",0,0,0, beds, baths, Toilets +Finished Combined Commercial And Residential Building,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Brand New 3 Bedroom Apartment With Swimming Pool, Gym Etc",Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +New Luxury 5bedroom Maisonette With Swimming Pool Gym And Elevator,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,5 beds,7 baths,7 Toilets +Brand New 4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Mini Estate Consisting 21units Of 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Penthouse,H Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,4 Toilets +For Sale 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets +Massive 4 Bedroom Terrace Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,500m2 Land","Lugard Avenue, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"1,012,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,6 baths,6 Toilets +"1,500 Square Meters Residential Parcel Of Land","Plot A19, Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"1,150,000/sqm",0,0,0, beds, baths, Toilets +A Very Fertile And Mixed Use Land Of 1200sqm,Ikoyi Lagos,₦,"468,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets +Exquisite 6 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",1,1,1,6 beds,6 baths,7 Toilets +Luxury 3 Bedroom Flat,S Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Water Front Land Of 1134sq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,002sqm Of Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Decent Semi Detached 4bedroom + 2room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Massive Commercial Detached House,K Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Plot For Sale In Onikoyi,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"495,000,000",0,0,0, beds, baths, Toilets +Luxurious Furnished 5 Bedrooms Terrace Smart House In Ikoyi,Ikoyi Ikoyi Lagos,$,"1,200,000,000",0,1,1,5 beds,5 baths,5 Toilets +Luxury Newly Built 4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,4 beds,6 baths,6 Toilets +Block Of 12 Unit Flats,Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury Automated 5bedroom Detached With 3bq And 6parking Space,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"420,000,000",0,1,1,5 beds,8 baths,8 Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Luxury Terraced With Swimming Pool, Elevator, A Room Staff Quarter",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets +For Sale Executive 2 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,2 Toilets +New Luxury Executive 3bedroom Maisonette With Bq,Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,1,3 beds,5 baths,5 Toilets +Newly Built 4 Bedroom,Glover Axis Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets +Massive 5 Bedroom Fully Detached,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Duplex,Off Awolowo Way Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex,"Ikoyi, Lagos State Ikoyi Lagos",₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +3000sqm Land,Adeyemi Lawson Off Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home With Private Elevator,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",1,1,1,5 beds,5 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,6 baths,6 Toilets +Plots Of Land,Cameron Road Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,6 Toilets +Serene 500sqmts Of Duplex,Alhaji Bashorun Off Norman Williams Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,760,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 3 Bedroom Apartment,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Dolphin Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 2 Bedroom Penthouse,Eighteen65 Residence Fatai Durosimi Street Victoria Island Ikoyi Lagos,₦,"250,000,000/month",0,1,0,2 beds,2 baths,2 Toilets +Breathing 3 Bedroom Maisonette,Eighteen65 Residence Fatai Durosimi Street Victoria Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land,Highbrow Ikoyi Crescent Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Highbrow Ikoyi Crescent Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Mekunwen Rd, Ikoyi Ikoyi Lagos",₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Along Kingsway Road Ikoyi Ikoyi Lagos,₦,"10,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat Apartments,Off Banana Highland Road Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,"Gerrard Road, Ikoyi Lagos Gerard Road Ikoyi Lagos",₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Alfred Rewane/osborne Rd,ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Alexander Road, Ikoyi Ikoyi Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,2nd Avenue Ikoyi With A Structure 2nd Avenue Extension Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Acacia Drive Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Royal Palm Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Alexandra Road,ikoyi Ikoyi Lagos",₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Unit Of 2 Bedroom Flat,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3bedroom Flat,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lawrence Road Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Eko Akete Estate Obalende, Ikoyi Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Spaced 4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplexes,Olori Mojisola Estate Off Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +25 Units Of Luxury Flats,"Off 2nd Avenue, Banana Lsland Residential Zone Banana Island Ikoyi Lagos",₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"H Zone, Banana Island Ikoyi Lagos",₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"975,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kingsway| Cameron Road Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Units Of 4 Bedroom Terrace Houses,Off Tumbull Drive Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,400sqm Prime Land",Glover Raod Old Ikoyi Ikoyi Lagos,₦,"55,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11,000sqm Prime Land",Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Full Detached House,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,5 beds,0 baths,0 Toilets +800sqm Land,Banana Island Ikoyi Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +820sqm Land,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +813sqm Land,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1000.099sqm,Residential Zone Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +*luxury 4 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"360,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Townhouse With Bq,Ikoyi Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Semi Detached With Bq,Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex & Maisonette With Bq,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Townhouse With Bq,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spaciously Well Built 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets +Spacious 4 Bedroom Terrance Duplex,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury Maisonette,Ikoyi Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Dolphin Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Semi Detach Duplex,Osborne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Falomo Ikoyi Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Bedroom Smart Home,Shoreline Banana Island Ikoyi Lagos,₦,"1,400,000,000",1,1,1,6 beds,6 baths,7 Toilets +Luxuriously Finished 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,4 Toilets +Beautiful Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 6 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11 Units Of 3 Bedroom Apartment With Bq, Swimming Pool And Elevator For Sale In Ikoyi",Parkview Estate Ikoyi Lagos,₦,"200,000,000/day",0,1,0,3 beds,3 baths,3 Toilets +2 And 3 Bedroom Apartments,Onikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Five Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Estate Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Maisonette House,Cedarwood Luxury Maisonette Awolowo Road Ikoyi Lagos,₦,"197,000,000/day",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Serviced Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex With Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"360,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Semi Detached Duplex With [email protected] Island,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +Exquisite Mansion Of 5befroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Maisonette,Ikoyi Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +12 Nos X 3 Bedroom Serviced Apartment For Sale,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex With A Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Maisonette,Ikoyi Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets +4bedroom Penthouse,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex For Sale In Ikoyi,5 Bedroom Fully Detached Duplex Falomo Ikoyi Lagos,₦,"370,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +Ultra Luxurious 5 Bedroom Terrace With 2 Bedroom Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets +Beautiful Modern 3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +27 Flats With Penthouses,Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart Luxury 5 Bedroom Semi Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Alexander Court Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Exclusive 3(numbers) 4 Bedroom Detached Houses,Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Superbly Finished Automated 5 Bed Fully Detached House With Elevator, Cinema, Gym And Swimming Pool",Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Building For Cooperate Office Use On 5 Floors,Awolowo Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced House On 3 Floors With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 2bedroom Flat With One Toilet & Bathroom On The First Floor At Dolphin Highrise Dolphin Estate.,Estate Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,2 beds,1 baths,1 Toilets +Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikoyi Lagos,₦,"50,000,000",1,1,1,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Maisonette With Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,1,4 beds,5 baths,6 Toilets +A Newly Built Block Of 4 Numbers 5 Bedroom Maisonettes With 2 Room Boy’s Quarter,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex 2 Room Bq With Pool,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Luxurious 6 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,7 baths,7 Toilets +5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex 2 Room Bq With Swimming Pool,Bourdillon Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex On 2 Floors + Bq + Lagoon View,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,7 baths,7 Toilets +1000sqm Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House Clean 8 Units Of 5 Bedroom Fully Detached Duplex With Swimming Pool And Gym,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 11 Units Of 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"2,200,000,000",0,1,0,3 beds,4 baths,4 Toilets +939sqm Waterfront Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 3 Bedroom Flat + Bq, 24hrs Electricity",Park View Esate Parkview Estate Ikoyi Lagos,₦,"115,000,000",0,1,0,3 beds,4 baths,4 Toilets +Land,Macpherson Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Six Bedroom Mansion With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"2,800,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000/sqm",0,1,0,3 beds,4 baths,4 Toilets +A Commercial Building,"Along Kingsway Road, Ikoyi Lagos Nigeria Ikoyi S.w Ikoyi Lagos",$,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2008sqms Land*,Milverton Road Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Detached Duplex With Bq,Queen’s Drive Ikoyi S.w Ikoyi Lagos,₦,"1,900,000,000",1,1,0,6 beds,6 baths,5 Toilets +Fully Serviced 2bedroom Massionette,Copper Road Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Duplex In Ikoyi,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Offplan Sale In Banana Island 5 & 6 Bedroom Full Detached And Semi Detached,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000/sqm",1,1,1,6 beds,6 baths,6 Toilets +5 Bedroom Semi Detached House With Swimming Pool + Bq,Mcpherson Macpherson Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Luxury Apartment,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Dolphin Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,1 Toilets +"Astounding 2 Bedroom Apartment For Sale, Old Ikoyi",Ikoyi Lagos,₦,"250,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached House,Off Banana Island Road Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedrooms Maisonette Penthouse,Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,4 Toilets +8 Bedroom Fully Detached Duplex For Sale,Osborne Foreshore Estate Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000/sqm",1,0,0,8 beds,8 baths,8 Toilets +Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +New 5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,1 Toilets +Newly Built 4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Spacious 4 Bedroom Penthouse On The 16th,Bourdillon Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,5 baths,5 Toilets +Blocks Of Flat On 2 Storey Building,Norman Williams Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets +Brand New Fully Serviced 3 Bedroom Flat,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Luxury Apartment,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Units Of 4 Bedroom Semi Detached Luxury House,Parkview Estate Ikoyi Lagos,₦,"450,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 2 Units Of 5 Bedroom Fully Detached Houses,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,5 baths,6 Toilets +Four Storey Building Consisting Of Units Of 3 Bedroom Flat (off Plan), Ikoyi S.w Ikoyi Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Off Banana Island Road In Am Estate Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,0 baths,0 Toilets +Stunning 2 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Executive Well Maintained Serviced 4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"698,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New Luxury Fully Serviced 2 Bedroom With Pool,Bourdillon Ikoyi Lagos,₦,"190,000,000",1,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semidetached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +27 Units Of Blocks Of Flat,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"6,000,000,000",1,0,0,0 beds,0 baths,0 Toilets +Executive Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 6 Bedroom Detached Duplex,Ikoyi Lagos Nigeria Ikoyi Lagos,₦,"2,800,000,000",0,1,0,6 beds,6 baths,7 Toilets +Fully Furnished Luxury 4 Bedroom Penthouse With Bq,Banana Island Ikoyi Lagos,$,"3,000,000",1,0,1,4 beds,0 baths,0 Toilets +5 Bedrooms Maisonette,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Furnished 3 Bedrooms Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom In A Serene Environment,Off Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +4000 Sqm,Ikoyi Lagos Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +2000sqm,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Penthouse,Parkview Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury House,Off Banana Island Road Ikoyi: Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Service Apartment,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land At Park View,Parkview Estate Ikoyi Lagos,₦,"700,000,000/sqm",0,0,0, beds, baths, Toilets +Prime Plot Of Land Measuring 1000sqm,Ikoyi Bourdillon Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service 2 Bedroom Apartment,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,1,0,2 beds,2 baths,3 Toilets +A Massive Tastefully Finished 4 Bedroom Modern Luxurious Flat,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Waterfront Estate With 21 Units Of Apartments,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"6,500,000,000",1,0,0,0 beds,0 baths,0 Toilets +Super Luxurious Terrace Duplex Of 5 Bedroom With Bq,"Off Bourdillion Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +2600 Sqm Land In Park View Water Front,Park View Water Front Land Parkview Estate Ikoyi Lagos,₦,"900,000,000/sqm",0,0,0, beds, baths, Toilets +Executive Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +6000 Sqm,Ikoyi Lagos Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +8 Units Of 3 Bedroom Flats,Awolowo Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Bedroom Duplex With Bq On 690 Sqm,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,6 beds,5 baths,5 Toilets +4 Bedroom Maisonette Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets +Land For Sale At Park View,Parkview Estate Ikoyi Lagos,₦,"420,000,000/sqm",0,0,0, beds, baths, Toilets +5bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedrooms Semi Detached House,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Olorimojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq,"Osborne Foreshore Estate Phase 1, Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Fully Detached With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets +For Sale Exquisite Power Luxury Island 5 Bedroom Fully Detached Duplex With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000/year",0,1,0,5 beds,6 baths,6 Toilets +Waterfront Four Bedroom Semi Detached House With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,6 baths,6 Toilets +Automated 4 Bedrooms Duplex Terrace With Two Bq Rooms,Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +5000 Square Meters Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Land,Facing Alfred Railway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached,Olori Mojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,1,5 beds,5 baths,5 Toilets +Fantastic House With Jetty,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Corner Piece And Waterfront 1,939sqm Parcel Of Land",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +"6,340 Sqm",Ikoyi Lagos Ikoyi Lagos,₦,"3,804,000,000",0,0,0, beds, baths, Toilets +Newly Built 5units Of 5bed Room Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +Waterfront 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 3 Bedrooms Apartment With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"235,000,000",0,0,0,3 beds,3 baths,4 Toilets +Light Automated 5 Bedrooms Duplex,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,7 baths,7 Toilets +Plot Of Land Measuring 647sqm In Banana Island Residential Zone E,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Topnotch 3 Bedroom Flats And Studio Apartments,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets +A 7bedroom Duplex Mansion,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,1,5 beds,5 baths,6 Toilets +850sqm Land, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,245 Square Meters Of Land",Gerald Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With Bq,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Executive Newly Built Standard And Tastefully Finished 3 Bedroom Apartment With A Room Bq In A Secured Estate,Ikoyi Lagos Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",1,1,1,5 beds,5 baths,6 Toilets +"5/4/3 Bedroom Detached And Semi Detached Duplexes, Massionatte, And Apartments With Jetty And Boat Club",Ikoyi South Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets +"2 Bedroom Smart House With Cctv, Staff House, Gym Etc",Off Ikoyi Golf Course Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxury 5 Bedroom Terrace Duplex,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +10 Units Of 3bedroom Flat With 4bedroom Penthouse,Ikoyi Lagos Ikoyi Lagos,₦,"2,400,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Apartment,Milverton Road Off Alexandra Gerard Road Ikoyi Lagos,₦,"380,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With A Swimming Pool And Bq,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Pent House, Banana Island Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +"19,200 Sqm",Ikoyi Ikoyi Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Luxury Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"25,000,000,000",0,1,1,5 beds,5 baths,4 Toilets +4 Bedroom Apartment + Pool +gym In Ikoyi,Off Bourdillon Road Ikoyi Lagos. Bourdillon Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,4 Toilets +Executive 2 Bedroom Flat, Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000,000",1,1,0,5 beds,6 baths,7 Toilets +25 Units Of Luxury Flats,Banana Island Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Semi Detached House With A Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedrooms Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,0 baths,0 Toilets +Standard 3 Bedroom Terraced Duplex,Ikoyi Lagos,₦,"125,000,000",0,1,0,3 beds,3 baths,4 Toilets +7bedroom Detached Duplex At Banana Island Lagos,"Banana Island, Foreshore Estate, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"7,000,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"330,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,By Parkbiew Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Olori Mojisola Esate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Luxurious Flat,Alexander Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +24 Flats Of 3 Bedroom And 3 Penthouses,Bourdllon Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"175,000,000",1,1,0,2 beds,0 baths,0 Toilets +Sophisticated Standard 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,10 baths,10 Toilets +3 Bedroom+ Bq En Suite Flat, Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Residential Apartment For Sale 2.bedroom Flats With C Of O. Fitted Kitchen., Adult Pool, Gym In S Secured Environment",Gerrad Road Gerard Road Ikoyi Lagos,₦,"120,000,000",1,0,0,2 beds,3 baths,3 Toilets +5bedroom Semi Detached,Olori Mojisola Esate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"440,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1900sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Luxurious Bedroom House, Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,0,1,5 beds,5 baths,7 Toilets +Newly Built Three Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 6 Bedroom Townhouse,Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,7 baths,9 Toilets +Luxurious 4 Bedroom Penthouse Apartment With Bq,Banana Island Ikoyi Lagos,$,"2,500,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Top Notch 3 Bedroom Flat With C Of O,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached House & Boys Quarters,Banana Island Ikoyi Lagos,₦,"2,400,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Contemporary Detached Duplex,"Ikoyi Banana Island, Lagos Nigeria Banana Island Ikoyi Lagos",₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1 And 2 Bedroom Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",1,1,0,2 beds,2 baths,2 Toilets +5bedroom Detached Duplex,"Banana Island, Ikoyi Lagos Nigeria Banana Island Ikoyi Lagos",₦,"2,750,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxurious Apartment Oceanview (6th Floor),"Banana Island Road, Ikoyi, Lagos State Banana Island Ikoyi Lagos",₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +"A 5 Bedroom Fully Furnished Penthouse Suite On 2 Floors With Pool, Gym, Etc.","Along Alexander Road, Ikoyi Lagos. Ikoyi Lagos",₦,"400,000,000",1,0,1,5 beds,5 baths,6 Toilets +Tasteful 5 Bedroom Detached Duplex.,Reeve Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 6bedroom Mansion,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000,000",0,0,0,6 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Dolphin Duplex,Itafaji Street Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedrooms Fully Detached House With A Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Standard 4 Bedroom Terraced (penthouse) Duplex, Ikoyi",Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Fully Furnished Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,3 baths,3 Toilets +"Exquisitely Finished 6bedroom Duplex, With Jetty.",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 2 Bedroom Flat,"Lugard Road, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Royal Palm Drive, Osborne Phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"285,000,000",0,0,0,4 beds,0 baths,0 Toilets +24 Luxury Flats Of 3 Bedroom With Lift,Banana Island Ikoyi Lagos,₦,"14,000,000,000",1,1,0,3 beds,10 baths,0 Toilets +Waterfront Bare Dry Land,"Acacia Drive, Osborne Phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Of Land,"Royal Palm Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Of Land,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets +26 Units Of 3 Bedroom Flat,Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +2527sqm Of Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +690 Sqm Plot Of Land,Off Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds, baths, Toilets +New 3bedroom Flat +bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land Measuring 500sqm,"Aqua Point Estate, Onikoyi Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached House With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,7 beds,7 baths,8 Toilets +Primely Located 500sqm Corner Piece Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ruxton Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Phase1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Bed Room With Bq,Ikoyi Lagos,₦,"1,500,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land Measuring 1929sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Ikoyi Lagos,₦,"380,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House,Banana Highland Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Acacia Drive Osborne Phase2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Waterfront Apartment In Banana Island With Swimming Pool,Banana Island Ikoyi Lagos,₦,"185,000,000",0,1,0,4 beds, baths, Toilets +Land Measuring 3800m² Fenced With Gate,Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alfred Rewane Road Ikoyi Lagos,$,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New 4bedroom Mainsonette Ikoyi, Lagos",Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,6 Toilets +Serviced 3 Bedroom Penthouse,Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fantastic 4 Bedroom Penthouse Masionette,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Of Land,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Banana Island Road Ikoyi Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxurious Water Front 24 Units Apartments With Bq, Banana Island Ikoyi Lagos,₦,"11,000,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Terrace House,Osbourne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,0 Toilets +Land Measuring 1000sqm,Lawrence Street Old Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Furnish 4bedrooms Semi Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"290,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,"Alimosho Street, Dolphin Estate Ikoyi Lagos State. Bourdillon Ikoyi Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets +1139sqm Land With A Demolishable Structure,Kingsway Road Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massively Built 4 Bedrooms Townhouse,Idanre Close Osborne Foreshore Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm With A Demolishable Structure,Adeyemi Lawson Of Bourdillon Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment Fully Serviced,Ikoyi Lagos,₦,"175,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Sited 900sqm Of Land,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0, beds, baths, Toilets +3133 Sqm Of Land,Facing Bank Road And Mcgregor Roads Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Waterfront Land Measuring 4,750 Sqm",Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"780,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Elizabeth Grace Court 3,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Available Land,Ojota Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Flat With Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land Measuring 1000sqm,"Lawrence Street, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,400,000",1,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Penthouse Maisonette,Old Ikoyi Lagos Ikoyi Lagos,₦,"550,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Standard 5 Bed Fully Detached House With Elevator, Cinema, And Swimming Pool",Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautifully Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Apartment For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Brand New Luxury & Spacious 6 Bedroom Fully Finished And Fully Serviced Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Shoreline Estate Ikoyi Lagos State. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",1,1,0,6 beds,7 baths,7 Toilets +Executive 3 Bedroom Waterfront Apartments,Z Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Block Of 12 Units 3 Bedroom Flats On 2,400sqm Plot + Swimming Pool & Gym",Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +25 Units Of Luxury Flats,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +4800 Sqmeter Water Front Plot,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,0 baths,0 Toilets +New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Exquisitely 6 Bedrooms Detached Duplex With Cinema Room, Pool, Elevator",Banana Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury Serviced 3 Bedroom Furnished Apartment + 1 Room Bq,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds, baths, Toilets +25 Units Of Luxury Flats,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built Luxury Waterfront 4 Bedroom Fully Finished And Fully Serviced Detached Duplex With Air Conditioning ,fully Fitted Kitchen And 2 Rooms Bq",Osbourne 1 Foreshore Estate Lagos State. Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedroom Terrace Duplex,D Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Luxury 3 Bedroom Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Brand New, Luxury And Well Finished 4 Bedroom Flat With A Room Servant’s Quarter At Abraham’s Court Estate, Rumens Road, Ikoyi, Lagos.","Abraham’s Court Estate, Rumens Road, Ikoyi, Lagos. Old Ikoyi Ikoyi Lagos",₦,"205,000,000/year",1,1,0,4 beds,5 baths,5 Toilets +8 Units Of 5 Bedrooms Terrace Building With Swinming Pool Gym Centre,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,5 Toilets +2 Bedroom Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,0 baths,0 Toilets +"1,800sqm Land",Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sq.m Waterfront Plot, Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Waterfront Bare Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,300sqm Land",Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 5400² Fenced With Filling Foundation And Lasg Consent,Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With 2 Room Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3,280sqmt Land",Onitana Street Off Frist Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Luxury Terraced Duplex,"Off Bourdillon Road, Ikoyi, Lagos Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Land Measuring 1,900sqm",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Fully Detached Home With Private Elevator,Ikoyi Lagos,₦,"950,000,000",0,1,0, beds, baths, Toilets +Land,Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Mobolaji Johnson Ikoy Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom With 2 Room Bq,Glover Road Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Ilabere/ Ilu Drive Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Serviced Apartment,Banana Island Ikoyi Lagos,₦,"100,000,000",1,0,1,1 beds,1 baths,2 Toilets +"1,000sqms Mixed Used Land",Milverton Road Old Ikoyi Ikoyi Lagos,₦,"855,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2,500sqm Land",Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1891.69 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Osborne Phase1 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale Of 4 Bedroom Pent Floor + 2 Rooms Bq And 4 Parking Spaces,Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Home Off Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Contemporary, Elegant And Luxurious Hotel",Osborne Foreshore Estate Ikoyi Lagos,₦,"4,300,000,000",0,0,0, beds, baths, Toilets +Brand New 5bedroom Fully Detached Duplex,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex,Ruston Road Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,6 baths,6 Toilets +4bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex For Sale At Ikeja Gra,Ikeja Gra Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +500sqm Of Land,Osborne Phase 2 Ikoyi Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Massionette House,Banana Lsland Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Superbly Finished Automated 5 Bed Fully Detached House With Elevator, Cinema, Gym And Swimming",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 3 Bedroom Flat With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,4 baths,4 Toilets +2 Units Luxury 6 Bedroom Flats,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +About 875sqm Land,Mekuwen Off Bourndillion Road. Bourdillon Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +4500/sqmts Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 900sqm,Shoreline Estate Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"5,553sqm Of Land In Ikoyi",Mekunwen Ikoyi Lagos,₦,"1,804,725,000",0,0,0, beds, baths, Toilets +1700 Square Meters Waterfront Land, Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elite Class Fully Automated 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Newly Built 5 Bedroom Detached House With Bq, Gate House And Pool",Gerard Road Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +Ultra Luxury 4 Bedroom Maisonette + Bq With Suspended Swimming Pool (delivering Jan 2022),Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Brand New Luxury 3 Bedroom Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets +Executive 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,1,5 beds,6 baths,6 Toilets +6 Unit Of 3 Bedroom Apartment And A Penthouse With 1bq Each,Mojisola Onikoyi Area Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New Block Of 24 Units 3 Bedroom Flats + 3 Units Of 3 Bedroom Penthouses,Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3bedroom Apartment,Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Fully Serviced Terrace Duplexes,"40 Bourdillon, Old Ikoyi Ikoyi Lagos",$,"2,000,000",1,1,1,4 beds,5 baths,5 Toilets +"4,700sqm Land For Sale On Alexander Avenue, Ikoyi, Lagos",Ikoyi Lagos,₦,"3,400,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Serviced Upper Floor Apartment,"Old Ikoyi, Lagos State. Old Ikoyi Ikoyi Lagos",₦,"280,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Luxuriously Finished 4 Bed Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi Lagos,₦,"700,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Maisonnete In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment,Glover Road Old Ikoyi Ikoyi Lagos,$,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Mansion With Bq,Ikoyi Lagos,₦,"1,100,000,000",0,0,0,8 beds,0 baths,0 Toilets +740sqm Land,Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000.008sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Jv At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2,600sqm Land",Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +6000sqm Of Land,Second Avenue Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Hot Waterfront Land On Residential Zone,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +1344sqm Of Well Located Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment And A Penthouse With A Bq,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Macgregor Ikoyi Lagos,₦,"300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Blocks Of Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"123,000,000",1,1,0,3 beds,3 baths,4 Toilets +"1,000sqm Of Land",2nd Avenue Estate 2nd Avenue Extension Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Luxurious 3 Bedroom Waterfront Apartment,Banana Island Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,0 baths,0 Toilets +A Luxury 5 Bedroom Fully Detached Duplex + Bq With Waterfront View,"Patrick Habour Estate , Off Onikoyi , Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land Measuring 7000m² Fenced With Gate,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Apartment,Turnbull Road Ikoyi Lagos,₦,"110,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 4bedroom Mainsonette With A Bq,Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Prestigous Super Classy 5 Bed Fully Detached Home With Private Elevator, And Cinema",Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds, baths, Toilets +"Luxury 3 Bedrooms Apartment With Swinming Pool, Gym Centre, Bq",Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"750,000,000",1,1,0,5 beds,6 baths,6 Toilets +Well Finished 2 And 3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"530,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Serviced Upper Floor Apartment,Mojisola Onikoyi Estate Ikoyi. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +Very Hot Waterfront Land On Residential Zone,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0, beds, baths, Toilets +High Rise Building,"Off Kingsway Road, Ikoyi Lagos",₦,"15,000,000,000",0,0,0,2 beds,0 baths,0 Toilets +Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Bedroom Fully Detached,Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxurious Apartment Available,Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Bedrooms Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"178,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bedrooms Detached Duplex With Swinming Pool,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New And Solidly Built 5 Bedroom Semi Detached Duplex With Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +7 Bedrooms Fully Detached Duplex On 3 Floors Plus A Mini Flat,Parkview Estate Ikoyi Lagos,₦,"1,700,000,000",0,1,0,7 beds,7 baths,8 Toilets +Luxury Finished 3 Bedroom Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Brand New Extremely Luxury 4 Bedroom Flat +bq,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,5 Toilets +24000sqm Of Land, Bourdillon Ikoyi Lagos,₦,"6,570,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury Estate On 2710sqm Land Of 10 Units Of 3bedroom Flats,3 Units Of 2bedroom Flat, 2 Units Of 1bedroom Flat","Onikoyi Road, Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4580sqm Land Up,Gerard Road Old Ikoyi. Gerard Road Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +Smart 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Glover Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,0,0,2 beds,2 baths,3 Toilets +"4,800sqm Land (can Sell 2800sqm , 2400sqm And 2000sqm)",Kings Way Road Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"2,000sqm Land",Banana Island Ikoyi Lagos,₦,"1,025,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Newly Built 4 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Well Located Land Measuring 1,119sqm",Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"690,000,000",0,0,0, beds, baths, Toilets +Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1891.69 Sqms Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Maids Room,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Apartment With Maid’s Room,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 6 Bedroom Fully Detached,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedrooms Luxury Detached Mansion,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,1,5 beds,5 baths,6 Toilets +Perfect 4 Bedrooms Semi Detached Duplex With Swimming And Gym,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1,139sqm Commercial Land",Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds, baths, Toilets +Land,Zone L Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4600sqm Of Land,Macgregor Street Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,3 beds,3 baths,3 Toilets +Very Lovely 5 Bedrooms Fully Detached And Serviced Mansion,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1015sqm,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment,Alexander Avenue Ikoyi Lagos,₦,"250,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,Z Banana Island Ikoyi Lagos,₦,"560,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,180sqm Land",Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq,"Kingsway Road Ikoyi, Lagos State. Old Ikoyi Ikoyi Lagos",₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets +Executive Exquisitely Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,4 Toilets +24 Units Of 3bedrooms Flat And 3 Pent Houses,Ikoyi Lagos,₦,"7,500,000,000",0,1,0,10 beds,10 baths,10 Toilets +Excellent 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Smart Home,Banana Island Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,7 baths,8 Toilets +Land,Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets +6100 Sqmeter Water Front*,Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Sqm Of Land,Directly On Alexander Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished Waterfront 5 Bedroom Detached Duplex With 2 Bq At Onikoyi,Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Off Kingsway Road Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautifully Built 4 Bedroom Terraced Duplex With A Room Bq,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Lush 5 Bedroom Detached House For Sale In Banana Island,ikoyi,lagos.",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,1,5 beds,5 baths,6 Toilets +"Well Situated Plot Of Land Measuring 1,002sqm",Milverton Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With An Uncompleted Structure,2nd Avenue Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Duplex With Bq, Master's And Madam Bedroom, Family Lounge Etc (2 Units Left)", Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Designed & Finished Contemporary Oceanview 6 Bedroom Detached Luxury Mansion,Ikoyi Lagos,$,"5,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Mansion,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,0 Toilets +Land,Along Turnbull Road Ikoyi Lagos,₦,"440,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Apartment With Bq Suaited In A Serene Environment,Cooper Road Ikoyi S.w Ikoyi Lagos,$,"1,000,000/year",1,1,0,3 beds,3 baths,4 Toilets +11 Units Of Brand New 3 Bedroom Flats With Boys Quarters, Ikoyi Lagos,₦,"2,400,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Terrace,Dillon Parkview Estate Ikoyi Lagos,₦,"130,000,000/sqm",1,1,0, beds, baths, Toilets +Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Land Measuring 1,245sqm",Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +Ultra Luxury Ocean View 6 Bed Fully Automated Detached Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds, baths, Toilets +Executive 4 Bedroom Semi Detached And Fully Detached Duplex,Off Turnbull Road Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +"6,000sqm Land",Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +304sqm Of Land,Off Keffi Road Ikoyi Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +"Newly Built Luxury 8 Bedroom Fully Finished And Fully Serviced Duplex With Air Conditioning ,fully Fitted Kitchen And 2 Rooms Bq",Osbourne 1 Foreshore Estate Lagos State. Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",1,1,0,8 beds,9 baths,9 Toilets +4 Bedroom Maisonnette With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +Available Land,Bedwell Ikoyi Lagos,₦,"420,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautifully Built And Well Furnished 5 Bedroom Detached Duplex With 3 Rooms Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Luxury Newly Built 5 Bedroom Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Banana Island Estate Ikoyi. Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,6 baths,6 Toilets +Mixed Used Land,"Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +500sqm Of Land,Off Alexander Avenue Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +20 Unit Of 3 Bedroom Apartment With 1bq Each,Onikoyi Road Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +1900sqms Joint Venture, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 3 Bedroom Serviced Upper Floor Apartment,Old Ikoyi Lagos State. Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,3 beds,4 baths,4 Toilets +746sqm Of Well Titled Land In A Serene Gated Estate,Second Avenue Estate Abacha Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Flat With Bq,Thompson Avenue Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,1,1,3 beds,4 baths,4 Toilets +"4,400sqm Land For Sale At Kingsway Close, Ikoyi, Lagos",Ikoyi Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Corner Piece 4,506sqm For Joint Venture",Bayo Kuku/gerard Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment + Bq,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,3 Toilets +Four Bedroom Apartment Available,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Furnished Three (3)bedroom Terrace Plus Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,4 Toilets +2600sqm Of Land,Club Road/oba Elegushi Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3100sqm Of Land In A Fantastic Location,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +3000sqm Fenced & Gated Waterfront Land With Jetty,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished Newly Built 7 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,7 beds,7 baths,7 Toilets +"Land Measuring 5,000sqm",Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Banana Island Estate, Ikoyi Lagos. Banana Island Ikoyi Lagos",₦,"1,000,000,000",1,1,1,5 beds,6 baths,6 Toilets +"Brand New, Contemporary And Tastefully Finished 5 Bedroom Fully Detached Duplex, With 3 Bedroom Boys Quarter",Off Turnbull Road Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikoyi Lagos,₦,"1,075,000,000",0,0,0,0 beds,0 baths,0 Toilets +Presidential 6 Bedrooms Detached Duplex With Swimming & Gym,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex,Maitama Sule Street Awolowo Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Acacia Drive Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"850,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1090sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 30 Bedroom Boutique Hotel,Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terraced Duplex With Bq,Osborne Phase 2 Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 4 Bedroom Terraced Duplex,Onikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Executive 5bedroom Duplex, In An Estate At Ikoyi",Ikoyi Lagos,₦,"400,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +"Prime 1,000sqm Residential And Fenced Land",Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Mc Pherson Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Fully Serviced Apartment With 2 Rooms Servant’s Quarters,"Banana Island Road, Plot 6, Block 7, Osborne Foreshore Estate Ikoyi Lagos",₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 3bedroom Flat,2nd Avenue Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Executive 5bedroom Detached Duplex Apartment With A Room Bq, At Ikoyi",Ikoyi Lagos,₦,"600,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets +"Banana Island, Ikoyi Within The Mixed Development Zone. It Consists Of Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters",Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets +Relatively New 8bedroom Flat In A Serene Neighborhood,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,9 baths,9 Toilets +Land,Zone Q Waterfront Banana Island Ikoyi Lagos,₦,"1,150,000/year",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Executive And Luxurious 3 Bedroom Apartment With Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +11 Units Of 3 Bed Luxury Apartments With Bq,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exclusive 3 Bedroom Apartment,2nd Avenue Estate Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace House,Osbourne Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,0 Toilets +Beautiful Water Front Detached House For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds, baths, Toilets +"Status 5 Bedrooms Detached Duplex With Swimming Pool, Gym And Elevator",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Bedroom Fully Detached House With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,7 beds,7 baths,8 Toilets +Beautiful 4 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +8200 Sqms Water Front Land,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Excellent 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,5 baths,5 Toilets +12 Bedroom Maisonette And 1 Penthouse,Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 1 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"82,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,6 Toilets +"Elizabeth Grace Court 1,",Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets +"5,561sqm Of Land In Ikoyi",Ikoyi Crescent Ikoyi Lagos,₦,"1,807,325,000",0,0,0, beds, baths, Toilets +"8,000sqm Plot Of Land In Old Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets +"4,100sqm Waterfront Land", Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Size Of 1134 Square Meter Residential Plot,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedrooms Fully Detached Duplex For Sale In Ikoyi,... Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,6 baths,6 Toilets +601sqm Of Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"270,450,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedrooms Detached Duplex Newly Built With Swinming Pool & Gym Centre,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex For Sale Inside Banana Island Ikoyi,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With A Bq,Kingsway Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +Hot Joint Venture,"Osborne Phase 2, Ikoyi, Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bank Road Old Ikoyi Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000sqm Of Waterfront Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Luxiourious 9bedroom Detached Manson, At Banana Island, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"17,000,000/day",1,0,1,9 beds,10 baths,10 Toilets +A Well Maintained 2 Bedroom Flat,Off Awolowo Road Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds, baths, Toilets +4 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Banana Island Ikoyi Lagos,$,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land Of 536sqm Suitable For Any Development,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +About 11500sqm With Old Structure Up,Gerard Road Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 3bedroom Maisonette In A Secured And Serene Environs,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen","Ilubirin , Osbourne 2 Ikoyi. Osborne Foreshore Estate Ikoyi Lagos",₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets +Land Measuring 4000m²,Banana Island Ikoyi Lagos,₦,800,0,0,0,0 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Terraced Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,4 beds, baths, Toilets +3bedroom All Ensuit,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +An Exquisitely Furnished 5 Bedrooms Luxury Detached House,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,Osborne Phase2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedrooms Mansionette With Bq,Osborn 2 Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets +Land Measuring 800sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4500/sqmts Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Duplex With Servant Quarter Location: Ikoyi,jw",Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With A Bq,Banana Islamd Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Semi Detached House,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Opulent Quality 5 Bed Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,7 Toilets +5bedrooms Massionette,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Along Cooper Road Ikoyi Lagos,₦,"550,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +46000 Sqms Land,Old Ikoyi Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart And Furnished 5bedroom Duplex,Banana Island Ikoyi Lagos,₦,"2,400,000,000",1,1,1,5 beds,6 baths,6 Toilets +1700sqm Waterfront Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +"A Corner Piece Land Measuring 2,500 Sqm",Osborne Ph2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Spacious 4 Bedroom Terrance Duplex,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets +8200 Sqms Waterfront Land,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ligali Ayorinde Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2room Bqs,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Furnished Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"26,000,000",0,0,1,3 beds,4 baths,4 Toilets +Serviced 3 Bedroom Flat With Bq,Banana Link Road Ikoyi Lagos,₦,"260,000,000",1,0,0,3 beds,0 baths,0 Toilets +A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Filling Station,Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bed Detached Duplex With 2 Bqs,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Units Of 2bedroom Apartments,Ikoyi Lagos,₦,"175,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built Luxurious 5 Bedroom Detached House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ligali Ayorinde Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +*for Sale* Newly Built 4bedroom Fitted Terrace Duplex In *parkview Estate* ( *10 Units Available * ) *title: C Of O & Deed Of Sublease* *price: #160,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built High Rise Building 24flat 3bedroom +3 Penthouse,Adeyemi Lawanson Street Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Very Good 1000sqm Land At Banana Island,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Ongoing 3 Bedroom Bq Off Plan Sales, Awolowo Road Ikoyi Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +A 1000sq Meter With 30 Meter Width,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +"5,000sqm Land",Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Size Of 4611 Sqmeter Water Front Plot,Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedrooms Duplex,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Maisonette With Maid’s Room.,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment In Parkview Estate Ikoyi,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"115,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exclusively Built 3 Bedroom Flat With A Bq Located In An Estate, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Executive 5bedroom Fully Detached Duplex With 2room Bq, At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"850,000,000/day",0,0,0,5 beds,6 baths,6 Toilets +1500sqm Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Brand New, Contemporary And Tastefully Finished 5 Bedroom Semi Detached Duplex With 2 Bedroom Boys Quarter",Off Turnbull Road Ikoyi Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom All En Suite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +"1,600sqm And 2,400sqm Land",Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"1,200sqm Land",Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,600sqm Land",Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Ultra Modern Luxury Terrace Duplex For Sale At Banana Island,Inside Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury Fully Automated 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 3 Bedroom Flat With A Room Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Block Of Flats At Norman Williams Street, Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedrooms Terrace Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 3 Bedroom Apartment With Study,Olori Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 6 Bed Townhouse With Bq And Swimming Pool,Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds, baths, Toilets +500sqm Of Land In A Fantastic Location,Parkview Estate Ikoyi Lagos,₦,"236,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Fully Serviced Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets +Water Front 4 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Block Of Flats,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +About 1000sqm Land,"2nd Avenue, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Beautifully Finished 6 Bedroom Fully Automated Magnificent & Detached House, Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,1,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,7 Toilets +A High Rise Building In Ikoyi .the Square Meter Is 5322 Meter,S Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 2 Bedroom Serviced Upper Floor Apartment,Bourdillon Ikoyi Lagos,₦,"180,000,000",1,1,0,2 beds,3 baths,3 Toilets +4bedroom Water Front Property,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Newly Built Luxurious Mansion For Sale At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exactly 3400sqm With Old Structure,Bourdillon Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 24 Flats Of 3 Bedrooms Each And 3 Penthouses,Bourdillon Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6,900sqm Of Land",Queen's Drive Ikoyi Lagos,₦,"2,271,750,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Luxury Finished 6 Bedroom Mansion Pr,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Ultra Luxury 4 Bedroom Maisonette + Bq With Suspended Swimming Pool (delivering Dec. 2022),Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Banana Island Ikoyi Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Demolishable Building Consisting 1 Unit 3 Bedroom Flat, Units 2 Bedroom Flat & 2 Units Sefcontain Apartments Plus Bq",Off Alexander Road Lagos State. Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,3 beds,4 baths,4 Toilets +A Well Maintained 3 Bedroom Flat,Off Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5 Bedroom Detached Duplex In Ikoyi,Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Luxurious And Modern 5 Bedroom Detached Waterfront Duplex With Bq, Pool And Elevator", Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Land Measuring 900 Sqm,Shoreline Estate Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Zone B Banana Island Ikoyi Lagos,₦,"1,500,000,000/sqm",1,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,3 beds,3 baths,4 Toilets +2500sqm Of Land,Macpherson Avenue Macpherson Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Residence,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +800 Square Meters Of Land For Joint Venture,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Z Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Well Built 4 Bedroom Terraced Duplex Wit A Bq,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +5bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 1245sqm,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Aqua Point Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom All En Suite Serviced Apartment With Bq,Off Bourdillon Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Turnbull Road Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Of Sale At Off Gerrard Road Ikoyi,Gerrard Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets +Luxury 6 Units Of 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Banana Island Ikoyi Lagos,$,"15,000,000",1,0,1,3 beds,3 baths,4 Toilets +Elizabeth Grace Court 3,"Osbourne Foreshore 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds, baths, Toilets +Exquisitely Furnished 5 Bedroom Fully Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,5 baths,5 Toilets +Waterfront 700sqm Available,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Detached House For Sale Inside Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 6 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,6 beds,6 baths,7 Toilets +600sqm Of Land,Keffi Street Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land,Old Ikoyi Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +746sqm Of Land,Second Avenue Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Upgraded 2 Bedroom Apartment,Alimosho Street Dolphin Estate Ikoyi Lagos,₦,"25,000,000",1,0,0,2 beds,2 baths,3 Toilets +18 Units Of 3 Bedroom Flats And And 3 Penthouses,S Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"3,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Residence,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 24 Units Of 4 Bedrooms Flat With Bq,Banana Island Ikoyi Lagos,₦,"11,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautifully Built 4 Bedroom Maisonnette With A Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury And Exquisitely Finished 5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex With 2 Rooms Bq,Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious And Lovely Environment 4 Bedroom,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Apartment/maisonette.,Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,5 baths,6 Toilets +Executive Luxury 4 Bedroom Terrace Duplex With 2 Rooms Bq.,Banana Island Ikoyi Lagos,₦,"450,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Around Bourdillon Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Townhouse,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths, Toilets +3 Bedroom Luxury Apartments,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Maisonette With Bq,Off Alfred Rewane. Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Olori Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Joint Ventures 2,400sqm Land",Off Queen Drive Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,$,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 6 Bedroom Fully Detached Mansion With 2 Maid Rooms,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,1,6 beds,6 baths,7 Toilets +3 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Furnished 4bedroom Penthouse At Oniru,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Maisonatte With A Room Bq,Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Luxury 5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Four(4) Bedroom Terrace With Staff Quarter’s,Banana Island Ikoyi Lagos,₦,"520,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Contemporary House And A Bq,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +1100sqm Waterfront Land With Old Structure,Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +740sqm Land,Thurnbul Rd Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Massive 5 Bedroom Townhouse,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex,By Banana Island Estate Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,4 beds,4 baths,4 Toilets +Excellent 3 Bedroom Apartment With A Boys Quarter,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +Four Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Contemporary House And A Bq,Banana Island Ikoyi Lagos,$,"1,200,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedrooms Fully Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq.,Osborne Estate Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,0 Toilets +Serviced 5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Water Front Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Banana Island Ikoyi Lagos,₦,"580,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +2 Bedroom Smart Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxury 4 Bedroom With Excellent Facilities,Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Ilubirin Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"770,000",0,0,0,0 beds,0 baths,0 Toilets +2805 Sqm Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Oworoshoki, Victoria Island, Ikoyi Ikoyi Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom With An Attached Bq At Ikoyi,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths, Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Edifice On An Exclusive Island,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Joint Venture 10,000 Sqm",Parkview Estate Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,7 beds,8 baths,8 Toilets +6000sqm Plot Of Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,0,4 beds,4 baths,5 Toilets +"This Lovely 5 Bedroom Semi Detached Duplex With Two Bqs, Three Living Rooms And A Study Is Located In A Secured Estate",Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Pent House,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +"4 Bedroom Terraces With Bq, Swimming Pool And Gym",Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +1340sqm Of Land,Close Off Acacia Osborne Foreshore Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6 Bedrooms, 2 Unique Living Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Corner Piece Land.,Bayo Kuku And Kingsway Road Opposite The Garden Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Serviced 3 Bedroom Apartment With Swimming Pool, Gym, Cinema",Ikoyi Lagos,₦,"155,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Serviced Luxury 3 Bedroom Apartment With Swimming Pool, Gym And Bq",Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets +Waterfront 4 Bedroom Semi Detached House With A Bq,Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Maisonette With 2 Rooms Boy's Quarter, Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Ventures Land,Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House,Dolphin Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Deluxe 5 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Townhouse,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1661.827 Square Meters Land,Oba Elegushi Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Unit Of 3 Bedroom Flat With Bq And One 4 Bedroom Penthouse With Bq,Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Royal Palm Drive Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2700 Square Meters Waterfront Property,Alexander Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,"Mekwuen Road, Off Queens Drive Ikoyi Lagos",₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Bedwell Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished Luxury 4 Bedroom Massionette With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +1700m² Waterfront Land,Olori Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Alexandra Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront Brand New 4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Fully Detached House,Awolowo Road Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Luxury Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds, baths, Toilets +6 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Apartments,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Luxury 3 Bedroom Duplex With A Study, Gym, Swimming Pool", Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terraces With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Brand New 5 Bedroom Semi Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Awe Inspiring 3bedroom Apartment+bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette Apartment.,Cecilia Noyes Place Banana Island Ikoyi Lagos,$,"950,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,3 Toilets +"About 1,800sqms Of Land With 5 Bedroom",Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedrooms Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Pent House,Thompson Prive Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 6 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Lands,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Semi Detached,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Flat With Swimming Pool, Gym And Bq",Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Bedwell Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse Maisonette With Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Massionette,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment.,Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +Executive Massive 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bed Semi Detached Smart Home With A Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Lands,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartments,Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Townhouse,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 3 Bedroom Apartment,Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 3 Apartments,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"73,500/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Mekwen Land Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Brand New 5 Bedroom Fully Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Massionette With A Bq,Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Flat,Off Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Breathtaking 6 Bedroom Contemporary Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,350,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Unit,Ikoyi Lagos,$,"4,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Terraces Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Club Road Off Glover Road Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Glover Road Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,3 Toilets +4000sqmts Land,Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"560,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With A Room Bq Swimming Pool And Gym Elevator,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedrooms Terrace,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex With Bq,Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,5 beds,5 baths,6 Toilets +Deluxe 5 Bedroom Terrace Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Corner Piece Plot Measuring 1,767sqm",Off Queens Drive Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached With A Bq,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Adeyemi Lawson Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Deluxe 5 Bedroom Terraced Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,$,"1,700,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,2nd Avenue Extension Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Waterfront Massionette,Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch Well Spaced 4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"735,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Apartment With Swimming Pool,Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Swimming Pool, Private Elevator And 2 Room Bq",Banana Island Estate Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House Plus 2 Rooms Servant Quarters,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Land,Banana Lsland Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Quality 2 Bedroom Flat With Bq And Gym,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Duplex With Bq,Lugard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Spaced Fully Detached Duplex,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +High Class Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Duplex With Bq,Lugard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartments, Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat With Swimming Pool And Gym,Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom All En Suite With A Room Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,5 Toilets +"Luxury 3 Bedroom Flat, Pent House",Osborne Phase2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Serviced Apartments With A Room Bq,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Smart 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse With A Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Storey Buildings,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flats,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0,3 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedrooms Detached Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Penthouses,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Duplex With Bq,George Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"Standard Automated 5 Bedroom Detached Duplex With Swimming Pool Cinema, Etc.",Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets +Exquisitely Finished 5 Bedroom Detached Smart House,Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom?? Fully Detached Houses With 2 Rooms Bq All Rooms Ensuite In A Clean & Secured Environment At Banana Island.,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,5 beds,6 baths,6 Toilets +2800m2 Water Front Land In Good Location,Osborne Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4 Units Of 5bedroom(all En Suite) Terrace,Osborne Foreshore Estate Ikoyi Lagos,₦,"980,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached House,Off Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,7 Toilets +10 Unit Of 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built 4 Bedroom Terrace Duplex With Bq,Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Duplexes With Bq,Fowler Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully 3 Bedroom Flat Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5bedroom Fully Detached Duplex With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Mansion With Swimming Pool, Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Plots Of Land,Banana Island Ikoyi Lagos,₦,"1,350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fitted 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +1000 Sqm Prime Land,Off Bourdillon Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Land,Bourdillon Road Ikoyi Lagos,₦,"4,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"4,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bed Maisonette,Old Ikoyi Ikoyi Lagos,₦,"365,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House With Bq,Banana Island Road Ikoyi Lagos,₦,"335,000,000",1,0,0,4 beds,4 baths,5 Toilets +"2,500sqm Land",Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +10 Blocks Of 3 Bedroom Flats,Off 2nd Avenue Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Blocks Of 3 Bedroom Flats,Off 2nd Avenue Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +690sqm Land,Awolowo Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Riverside Apartment,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets +"Furnished 5bedrooms Detached House,",Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,093sqm Dry Land",Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets +3100 Sqm Of Land,Osborne 2 Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ruxton Avenue Ikoyi Lagos,₦,"2,240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Acres Of Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,071sqm Land",Mekuwen Road Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Adeyemi Lawson Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1661.827 Land,Oba Elegushi Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,578sqm Land",Queens Drive Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2997sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Osborne 1 Ikoyi Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +800sqms Land,Osborne Phase One Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,340sqm Land",Osborne Layout Ilubirin Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Kingway Road Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartments,Ikoyi Lagos,₦,"170,000,000",1,0,0,2 beds,3 baths,3 Toilets +Land,Royal Palm Drive Osborne Phase 2 Ikoyi Lagos,₦,"350,000,000",1,0,0,0 beds,0 baths,0 Toilets +8 Plots Of Water Front Land,Zone L Water Front Banana Island Ikoyi Lagos,₦,"550,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"320,000,000",0,0,1,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,4 baths,4 Toilets +Land,Banana Island Ikoyi Lagos,₦,"600,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached,Banana Island Ikoyi Lagos,₦,2/day,1,1,1,6 beds,7 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,000,000/month",1,1,1,4 beds,4 baths,4 Toilets +Standard Modern Vacant 4floors,Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqm Mixed Use Land,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Detached Duplex,Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,8 baths,8 Toilets +Newly Built 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"760,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"160,000,000",1,0,0,2 beds,2 baths,0 Toilets +"6 Bedroom Fully Detached Duplex With Elevator, Swimming Pool",Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000,000",0,1,0,6 beds,6 baths,8 Toilets +Massive 5 Bedroom Detached House With Elevator And Swimming Pool,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,7 Toilets +Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With 3 Rooms Bq,"Shoreline Estate, Off Turnbull Road Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,7 Toilets +3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"580,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +"4 Bedroom Terrace Duplex With Gym, Swimming Pool And Maid Room",Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Masionette,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrece Duplex With 2 Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,3 Toilets +New Modern 4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,4 beds,4 baths,5 Toilets +3000sqm Waterfront Land,Alexander Road Ikoyi Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Finished 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Penthouse Apartment,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With A Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Penthouse,Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex Smart Home,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,3 Toilets +"4313 Sqm Land On Alexander Road, Ikoyi",Alexander Road Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Townhouse,Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached With A Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,7 Toilets +Super Luxurious High Rise 4 Bedroom Maisonette With Bq,Elizabeth Grace Court 3 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Contemporary Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +"5 Bedroom Fully Detached House With Elevator, Cinema, Swimming Pool",Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,7 Toilets +Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4bedroom Duplex,Osborne Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium Land,Oniru Ikoyi Lagos Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5400sqms Land,Gerard Road Ikoyi Lagos,₦,"3,780,000,000",0,0,0,0 beds,0 baths,0 Toilets +Charming And Elegantly Built 7 Bedroom Duplex Mansion With Private Jetty,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Semi Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"360,000,000",1,1,0,5 beds,5 baths,6 Toilets +Direct Sale Of 3500sqm Of Land In Osborne Phase 2,Osborne Phase Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets +Beautifully Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets +Opulent Quality 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex With Bq At Parkview Estate Ikoyi,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Exquisitely Finished 6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And 2 Room Bq",Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Exquisite 4 Bedroom Terrace,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,₦,"5,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Unite Of 4 Bedroom Maisonette And 5 Units Of 3bedroom Flat With 1roomm Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets +15 Plots Of Land,Parkview Estate Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land,Falomo Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedrooms Mansion,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,1,0,7 beds,7 baths,8 Toilets +Luxury 5 Bedroom Automated Maisonette,Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Fully Detached 4 Bedroom Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Flat With Boys Quarters,"New Ikoyi, In Close Proximity With Banana Island Ikoyi Lagos",₦,"225,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Joint Venture Land Size: 4,200m²",Alfred Rewane Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxurious 5 Bedroom Semi Detached Duplex With Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets +A Demolishable Property,Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 9 Bedroom Fully Detached Mansion With 2room Bq,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,1,0,9 beds,9 baths,10 Toilets +New 5 Bedroom Fully Detached Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Joint Venture Land 5,391sqm",Shoreline Estate Ikoyi Off Banana Island Old Ikoyi Ikoyi Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium Waterfront Land,Oniru Ikoyi Lagos Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Size Of 4600sqm,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Land Facing Kingsway Rd Rumens Nd Web Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"18,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace With A Room Bq,Osborne Phase Ii Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Mansion,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Ikoyi Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Shoreline Estate Off Banana Island Falomo Lagos Falomo Ikoyi Lagos,₦,"4,043,250,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury Finished 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Luxurious Units Of 4 And 5 Bedroom Smart Maisonette With Swimming Pool,elevator And Gym With A Room Bq",Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Ground Floor,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +11 Units Of Brand New 3 Bedroom Flats With Boys Quarters,Ikoyi Lagos,₦,"2,300,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxuriously Finished 4 Bed Terrace Duplex With Bq, Swimming Pool And Gym",Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +"3,124.159 Sqm",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Shoreline Estate Ikoyi Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Newly Built 5 Bedroom Fully Detached With Boys Quarter,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Boys' Quarter,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,4 Toilets +"10,400 Sqm Of Water Front Land",Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Ikoyi Bourdillon Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Luxury & Palatial Maisonette + Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Estate Made Up Of 16 Units Of 4 Bedroom Terrace With Bq In A Serene Environment Fully Serviced In A Mini Estate,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinema Room",X Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront Sand Filled And Gated Land Measuring 7358sqm,Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Maisonette + Bq,Banana Island Lagos Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +2000sqm Waterfront Land,Ikoyi South West Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom And 3 Bedroom Flats,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Super Luxury Apartment,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Boys' Quarter,Off Bourdilion Ikoyi Bourdillon Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Bourdillon Ikoyi Lagos,₦,"1,120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets +4574.5sqm Land,Dolphin Okoyi Dolphin Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace For Sale In A Lovely Estate,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",W Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Charming 4 Bedroom Semi Detach Duplex,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Automated Maisonette,Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront Land, Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Property Description 6 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"2,500,000,000,000",0,1,0,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedroom Detached With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Off Keffi Street Ikoyi Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"200,000,000",1,0,0, beds, baths, Toilets +Plot Of Land,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standing Five (5) Units Of 5 Bedroom Mansions With Boys Quarters,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 3bedroom Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat With A Room Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Smart House,"Salvation Estate, By Shoreline Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached With 2 Rooms Bq,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat With A Room Bq,Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 6 Bedrooms Scientifically Automated & Magnificently Crafted Mansion,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +18 Units 3 Bedroom Flats 3 Units Penthouse,Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With A Room Bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury And Smart 4bedroom Maisonette,Lugard Avenue Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedroom Detached House With 2 Rooms Bq In A Serene Neighborhood,"Oroke Drive, Ikoyi Lagos Bourdillon Ikoyi Lagos",$,"1,500,000",0,0,0,4 beds,4 baths,5 Toilets +Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Automated 5bedrooms Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Shoreline Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedrooms Detached House,Banana Island Ikoyi Lagos,$,"100,000",0,0,0,0 beds,0 baths,0 Toilets +"A Newly Built 30 Units Of 2, 3 Bedroom Luxury Apartments With Penthouse And Other Appurtenances",Glover Road Ikoyi Lagos,$,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Without Bq,Along Orchid Orchid Hotel After Chevron Toll Gate Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Waterfront Mansion,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Maisonette,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3bedrooms Flat,Thompson Road Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Smart Houses,Off Queen's Drive Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land,Osborne Phase 1 Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Wings Of 24 Unit 4 Bedroom Luxury Apartments,Banana Island Ikoyi Lagos,$,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Modern Highrise Buildings,Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1120m2 Land,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained Vacant 4 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury Block Of 12 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land,Osborne Phase 1 Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Units Of Luxuriously And Exquisitely Designed 5 Bedroom Mansions,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Bed Boutique Hotel,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached With Bq,Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Osborne 2 Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,269 Sqm Waterfront Land","Acacia Drive, Osborne 2 Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Apartment & Maisonette With 2 Rooms Bq,Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Spacious 8 Units Of 3bedrooms Flat,Parkview Estate Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of Luxurious 4 Bedroom Serviced Apartments With Boys Quarters,Salisbury Court Parkview Estate Ikoyi Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built And Well Maintained Block Of Flats Of 3 Bedrooms,Ikoyi Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Mansion,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Lands,Osborne Phase 2 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 10 Luxurious Executive 3 Bedroom Flats And A Massive 4 Bedroom Pent House Apartment,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Tower Of 10 Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"561,465,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Mansion,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bed Luxury & Palatial Maisonette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Super Luxury 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Apartment,Tango Towers Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex,Harbor Point Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Serviced 5bedrooms Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Plot Of Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Off Alexander Abacha Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Gerrard Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedrooms Apartments With Bq +swimming Pool +gym,S Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedrooms Semi Detached Duplex House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds, baths, Toilets +2 Bedroom Massionette (0033a),Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,2 beds, baths, Toilets +6 Bedroom Fully Detached House (pcl 158),Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds, baths, Toilets +4 Bedroom Semi Detached Duplex (pcl 214),Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +Luxury 4bedrooms Penthouse And 4bedrooms Maisonettes House,4th Avenue Lucrezia Towers By Sujimoto Banana Island Ikoyi Lagos,$,"2,200,000",1,1,1,4 beds,4 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4bedrooms Semi Detached Duplex House With Bq +swimming Pool +gym,Z Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built Semi Detached 4 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built Semi Detached 4 Bedroom Duplex.,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Bourdillon Ikoyi Lagos,₦,"72,000,000",0,0,0,3 beds,2 baths,2 Toilets +400sqm Land,Off Keffi Road Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"1,700,000,000,000",1,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Serviced Apartments,"Bayview Apartments, Inside Banana Banana Island Ikoyi Lagos",₦,"145,000,000",1,1,1,2 beds,3 baths,3 Toilets +Luxury Flat,Banana Island Road Ikoyi Lagos,₦,"150,000,000/year",1,1,0,0 beds,4 baths,4 Toilets +2 Bedroom Serviced Apartment,Inside Banana Banana Island Ikoyi Lagos,₦,"145,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Houses On Two Floors,Kingsway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +New House,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths, Toilets +New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds, baths, Toilets +New 3 Bedroom Terrace With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,1,3 beds,4 baths,0 Toilets +New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds, baths, Toilets +2 Bedroom Serviced Apartment,Inside Banana Banana Island Ikoyi Lagos,₦,"145,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Luxury Villa,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,0,5 beds,6 baths, Toilets +New Luxury 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000,000",1,1,0,10 beds,0 baths,0 Toilets +5 Bedrooms Luxury Detached House, Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,1,1,5 beds,6 baths,0 Toilets +House,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,0 Toilets +4 Bedroom Terrace Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Designed 5 Bedroom Detached House On 3 Floors,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +11 Units Of 3 Bedroom Apartments With Bq, Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",1,1,0,3 beds,10 baths,0 Toilets +3 Storey Building,Awolowo Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,6 baths,0 Toilets +Tastefully Finished Waterfront 2 Units Of 5bedroom Fully Detached Duplex,"Olori Mojisola Estate, Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"110,000,000",1,1,1,2 beds,3 baths,0 Toilets +4 Bedroom Semi Detached With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,4 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Smart Luxury Apartment,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,1,2 beds,3 baths,0 Toilets +New House,Bourdillon Ikoyi Lagos,₦,"300,000,000",1,1,1,3 beds, baths, Toilets +New House,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,0 baths,0 Toilets +Water Front Newly Built Three (3)bedroom Flat Plus Boys Quarter,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,4 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace With Bq,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace House,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets +New House,Banana Island Ikoyi Lagos,₦,"2,850,000,000,000",1,1,0,6 beds, baths, Toilets +3bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,7 baths,0 Toilets +Newly Built 3 Bedroom Serviced Flat Plus Boys Quarter,Banana Island Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,7 baths,0 Toilets +New House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,6 baths, Toilets +4 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"530,000,000",1,1,0,4 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace With 1 Room Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,0 baths,0 Toilets +New House,Off Bouadillon Bourdillon Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds, baths, Toilets +New House,Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,1,1,5 beds, baths, Toilets +House,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"925,000,000",0,1,0,5 beds, baths, Toilets +Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"950,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With A Room Boys' Quarter,Bourdillon Ikoyi Lagos,₦,"380,000,000",1,1,1,4 beds,0 baths,0 Toilets +4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Contemporary Detached Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,0,5 beds,0 baths,0 Toilets +Ocean View 6bedroom Detached Luxury Mansion With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",1,1,0,6 beds,0 baths,0 Toilets +Two Units Of 5 Bedroom Fully Detached Houses With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With Maid’s Room,Iroko Close Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Block Of Flats,Onikoyi Off Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,0 baths,0 Toilets +5bedroom Fully Serviced Maisonette,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Semi Detached Duplex On 3 Floors, Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,6 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Detached House,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000,000/sqm",0,0,0,5 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flats + Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",1,0,0, beds, baths, Toilets +New House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Luxury Townhouse With Maid's Room,"Kwara Street, Zone 11, Residential Area Banana Island Ikoyi Lagos",₦,"580,000,000",1,0,0,4 beds,5 baths,6 Toilets +Refurbishable Fully Detached 6bedroom Duplex,Off Norman Williams Street Via Awolowo Rd Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,6 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",1,0,0,5 beds,0 baths,0 Toilets +A Luxury And Automated 5bedroom Detached House,Banana Banana Island Ikoyi Lagos,₦,"960,000,000",0,1,0,5 beds,6 baths,7 Toilets +House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,0 Toilets +6 Bedroom Detached Duplex With Cofo In Ikoyi,Off Norman Williams Street Ikoyi S.w Ikoyi Lagos,₦,"195,000,000",0,0,0,6 beds,6 baths,6 Toilets +New House,Glover Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths, Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,0,2 beds, baths, Toilets +"A Virgin Land Measuring 3,944 Sqm",Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,0,5 beds, baths, Toilets +4 Bedroom Terrace House With Boys Quarter,Park View Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,4 Toilets +New House,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0, beds,5 baths, Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,1,0,10 beds, baths, Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"300,000,000",1,0,0,3 beds,0 baths,0 Toilets +3bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,100,000",1,0,1,3 beds,0 baths,0 Toilets +Elite Class Fully Automated 5 Bedroom Detached Duplex With 2 Bqs,Off Kingsway Road Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds,6 baths,0 Toilets +Newly Built 3 Bedrooms Apartments,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,0 Toilets +4 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds, baths, Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds, baths, Toilets +House,Banana Island Ikoyi Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths, Toilets +6 Bedrooms Terrace House With 1 Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,6 beds,0 baths,0 Toilets +New House,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds, baths, Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"225,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets +New House,Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,1,5 beds, baths, Toilets +Old House,Ikoyi S.w Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets +Four Units Of 5 Bedrooms Massionette Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Tastefully Finished 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"435,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Condo With Family Living Room + Bq,"Probyn Road, Off Bourdillon, Ikoyi. Old Ikoyi Ikoyi Lagos",₦,"470,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Luxury Terrace Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,0 baths,0 Toilets +House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",1,1,0,3 beds,0 baths,0 Toilets +Luxury 5 Bedroom Villa With Bq,Olawale Dawodu Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,0,0,5 beds,5 baths,6 Toilets +Modern Fully Fitted Block Of 24 Luxury Apartments Of 3 Bedrooms With Bq,Banana Island Ikoyi Lagos,₦,"12,500,000,000",0,1,0,3 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"4,275,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Apartment,Ikoyi S.w Ikoyi Lagos,₦,"500,000,000",0,0,1,5 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"4,275,000,000",0,0,0, beds, baths, Toilets +Land Measuring 4500 Sqm,Kingsway Road Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2639sqm On 2nd Ave Ikoyi For Sale,2nd Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +2400sqm Land,Gerard Road Ikoyi Lagos,₦,"1,450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 3394sqm,Off Second Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Ikoyi Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land Of 5391sqm Very Close To Banana Island,Shoreline Estate Ikoyi Lagos,₦,"4,043,250,000",0,0,0, beds, baths, Toilets +Land Measuring 3100sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm At Ikoya Road Ikoyi For Sale,Ikoya Old Ikoyi Ikoyi Lagos,₦,"975,000,000/sqm",0,0,0, beds, baths, Toilets +4000sqm Land On Bourdillon Road Ikoyi,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"3,600,000,000/sqm",0,0,0, beds, baths, Toilets +"Block Of Flat, 8 Units Of 3 Bedroom Flat With 1 Room Bq Each",Victoria Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,3 beds, baths, Toilets +"Super Luxurious Maisonette With Elevator,lounge,swimming Pool,security",Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lugard Old Ikoyi Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2247sqm On Magbon Close Ikoyi For Sale,Magbon Close Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000/sqm",0,0,0, beds, baths, Toilets +7 Bedroom Demolishable Duplex,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,7 Toilets +Land Measuring 6000 Square Meters,"2,000,000,000 Old Ikoyi Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 6000 Square Metres In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2539sqm On Milverty Road Ikoyi For Sale,Milverty Road Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Rise Apartments 26flats,Ge Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",1,0,0,3 beds,3 baths,4 Toilets +2200sqm Of Land At Ikoya Road Ikoyi,Ikoya Road Old Ikoyi Ikoyi Lagos,₦,"1,386,000,000/sqm",0,0,0, beds, baths, Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 7000 Sqm,Thompson Ave Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In Ikoyi,Ikoya Old Ikoyi Ikoyi Lagos,₦,"546,000,000/sqm",0,0,0, beds, baths, Toilets +Land,2nd Avenue Ikoyi Lagos State 2nd Avenue Extension Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2633 Sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Osborne Foreshore 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,4 baths,4 Toilets +4224sqm Waterfront On Queen's Drive Ikoyi,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"3,600,000,000/sqm",0,0,0, beds, baths, Toilets +6980sqm Land For Sale On Glover Road,Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000/sqm",0,0,0, beds, baths, Toilets +Commercial Land,Club Road Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,$,"1,300,000/year",0,0,0,3 beds,3 baths,3 Toilets +4574.5sqm Land,James George Estate Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Of Land For Sale In Ilabere Street,Ilabere Sreet Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000/sqm",0,0,0, beds, baths, Toilets +1600sqm For Sale On Milverty Road Ikoyi,Milverty Road Old Ikoyi Ikoyi Lagos,₦,"1,040,000,000/sqm",0,0,0, beds, baths, Toilets +A Luxury 4 Bedroom Duplex,Opposite Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,6 Toilets +4500sqm For Sale In Kingsway Road Ikoyi,King's Way Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000/sqm",0,0,0, beds, baths, Toilets +7 Bedroom Duplex Mansion,Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3429sqm Corner Piece On Temple Road Ikoyi,Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000/sqm",0,0,0, beds, baths, Toilets +2700sqm Water Front In Alexander Road,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom Terrace House With Bq,Mosley Road Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets +High Rise Office Complex,Afred Rewane Old Ikoyi Ikoyi Lagos,$,"54,000,000/sqm",1,1,0,0 beds,0 baths,0 Toilets +Joint Venture Land Available On Gerald Road By Bayo Kuku,Bayo Kuku Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Land,Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 5200 Sqm,Lugard Ave Ikoyi Lagos State Nigeria Old Ikoyi Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Second Ave 2nd Avenue Extension Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 4200 Corner Piece Available,Afred Rewane Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2419sqm On Rumens Street Ikoyi For Sale,Rumens Street Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000/sqm",0,0,0, beds, baths, Toilets +A Block Of 26 Flats,Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture,"Alfred Reward Road, Ikoyi Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerard Road Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +9500sqm Bareland,Banana Island Ikoyi Lagos,₦,"1,250,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets +Commercial Property,Banana Island Ikoyi Lagos,₦,"1,000",0,0,0,6 beds,6 baths,6 Toilets +4 Storey Building,Old Ikoyi Ikoyi Lagos,₦,"4,700,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets +Well Built 6 Bedroom Fully Detached House,Bourdillon Ikoyi Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets +Smart 4 Bedroom Flat In Serene Environment,Efcc Bus Stop Awolowo Road Ikoyi Lagos,₦,"197,500,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Luxury Maisonette,Banana Island/ikoyi Banana Island Ikoyi Lagos,₦,"188,000,000",0,1,0,4 beds,4 baths,5 Toilets +2units 4 Rooms Duplex,Lekki Scheme I Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +36 Units Of 3 Bedroom Flat,Adeyemi Lawson Street Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats,Adeyemi Lawson Off Bourdillon Bourdillon Ikoyi Lagos,₦,"6,500,000,000/year",1,1,0,10 beds,10 baths,10 Toilets +Magnificent 5 Bedroom Fully Detached Duplex With 2 Bq And Pool,Old Ikoyi Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,6 Toilets +17 Units Of 3 Bedroom Flats,Ikoyi Lagos,₦,"1,700,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Waterfront Apartment @ Ocean Parade Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Luxury Duplex With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Home,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartments,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets +Spacious 2 Units Of 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace House,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedrooms Flat,Bourdillon Ikoyi Lagos,₦,"270,000,000",1,0,0,3 beds,3 baths,4 Toilets +Lovely 16 Units Of Three Bedroom Terrace Duplex,Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Posh 2 Bedrooms Apartment With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,1,3 beds,0 baths,0 Toilets +4 Bedroom Flat,"Abraham's Court, Rumens Road, Off Kingsway Road Ikoyi Lagos",₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets +Excellent 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom With Bq Duplexes Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace,Ikoyi Lagos,₦,"275,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With A Mini Lounge.,Macpherson Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Duplex With Maidroom(fully Serviced),Old Ikoyi Ikoyi Lagos,₦,"230,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Fully Detached Triplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,1,5 beds,5 baths,5 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +29units Of 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Jenture Venture Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Apartment,Alexander Rd Macpherson Ikoyi Lagos,₦,"260,000,000",1,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"32,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Automated 1 Bedroom Apartments,Ikoyi Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,1 Toilets +5 Units Of Super Luxury 4 Bedroom,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexandra Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"19,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedrooms Apartment With Maidroom (fully Serviced),Road Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Units Of Super Luxury 4 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Luxury Apartment With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000,000",1,1,1,0 beds,0 baths,0 Toilets +5 Bedrooms Apartment With Maidroom,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"415,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Maidroom,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment With Bq,Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land 1500 Sqm,Banana Island Ikoyi Lagos,₦,"1,250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury Five (5)bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex With Pool And Jetty,Aqua Point Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartments With 1 Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,1,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex With Maidroom(fully Furnished),Parkview Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex With 2bqs,Banana Island Ikoyi Lagos,₦,"900,000,000",1,1,1, beds, baths, Toilets +"This Luxury Finished 6 Bedrooms, 2 Unique Living Rooms Differently Designed To Suit Each Space, 7 Bathrooms, 2 Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,1,6 beds,6 baths,7 Toilets +"This Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Private Elevator",Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Self Compound+bq,Z Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Waterfront Duplex, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Updated List Of Plots Available,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built Waterview 5 Bedroom Fully Detached Duplex With Swimming Pool,Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"950,000,000",1,0,0,5 beds,5 baths,6 Toilets +2600sqm At Oba Elegushi Rd ( Former Club Road) Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment Oceanfront, Banana Island Ikoyi Lagos,$,"1,500,000",1,0,0,4 beds,4 baths,5 Toilets +5bed Semi Detached +2room Bq., Mojisola Onikoyi Estate Ikoyi Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +1300 Sqm Land, Gerard Road Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Detached Waterfront Houses In A Fully Serviced Mini Estate With Each Unit Facing Water With Own Jetty,Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Detached Duplex With Cinema,home Office,fully Fitted Kitchen,swimming Pool Etc",Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,1,1,5 beds,5 baths,6 Toilets +High Class Opulent Luxury 5 Bedroom Automated Maisonette,Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5bedroom Duplex +3rm Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"375,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Pent House Oceanview Apartment,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,7 Toilets +"5 Bedroom Fully Detached Duplex With Cinema, Home Office, Fully Fitted Kitchen, Swimming Pool Etc",E Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,7 Toilets +2 Blocks Of Luxury 3/4 Bedroom Apartments.,Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,5 baths,6 Toilets +Brand New 3bedroom Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"205,000,000",1,1,0,3 beds,3 baths,4 Toilets +Well Built Three(3) Bedroom Apartment,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedroom Flat With A Bq,Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets +Luxury 2 Bedroom Flat With A Bq,Bourdillon Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +A 5bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Automated Maisonette,Ikoyi Ikoyi S.w Ikoyi Lagos,$,"2,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Brand New 3bedroom Apartment With A Bq.,Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets +A 2 Bedroom Flat With Furnishes,Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",1,0,1,2 beds,2 baths,3 Toilets +A 3bedroom Apartment With A Bq,Ikoyi Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +Solidly Built 6 Bedroom Mansion With Private Master's Bedroom,Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"2,000,000,000",1,1,0,6 beds,7 baths,7 Toilets +5 Bedroom Mansion,Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Modern 3 Bedroom Flat With A Bq,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Flat On The 6th Floor With Gym And Pool,Off Alfred Rewane Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Storey Building With 2 Units Of 3 Bedroom Flat +bq,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Outstanding Decently Spaced 5 Bed Fully Detached,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Mansion,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellent 4 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Opulent Luxury 5 Bed Automated Maisonette,Ikoyi Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex At Mojisola Onikoyi Foreshore Estate Off Banana Island,Off Banana Island Banana Island Ikoyi Lagos,₦,"655,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Massionette,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Spacious 5 Bedroom Luxury Maisonette, Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Smart Home With A Bq, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bed Detached Duplex,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +City View 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Units Of 6 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,$,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11 Units Of 3 Bedroom Apartments With Bq,",Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Tastefully Finished 2 Bed Luxury Apartment,Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 6 Bedroom Fully Detached House,Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached,Waterfront Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat (en Suite) With Balcony,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Apartment,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4. Bedroom Maisonette With Bq,Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace House,Off Bourdillon Road Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartment,Off Alexander Road Ikoyi Lagos Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets +6units Of 3bedroom Flat Apartment,Queens Drive Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,1,0,3 beds,3 baths,4 Toilets +Standard 5 Bed Fully Detached House,Main Ikoyi Town Road 2nd Avenue Extension Ikoyi Lagos,₦,"850,000,000/sqm",0,1,1,6 beds,6 baths,7 Toilets +5 Bedroom Mansion With Swimming Pool,2nd Avenue Extension Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Masionette,Ikoyi Lagos,$,"2,000,000",0,0,0,5 beds,5 baths,7 Toilets +Newly Luxury 4 Bedroom Detached Duplex On 2 Floors,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 3 Bed Apartment With Swimming Pool And Gym,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Flat,Park View Estate Gerard Road Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Furnished 4 Bedroom Mensionate With A Bq,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace House With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +1400sqm Land,Off Queen Drive Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Condominium,Bourdillon Ikoyi Lagos,₦,"452,615,624",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartments With Swimming Pool,Off Alexander Way Parkview Estate Ikoyi Lagos,₦,"180,000,000/sqm",0,1,0,3 beds,0 baths,0 Toilets +Clean 5 Bedroom Duplex With A Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment,Ikoyi Lagos,$,"875,000",1,1,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Duplex With Separate Boys' Quarters Sitting On 500sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"255,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury And Fully Furnished 3 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,3 beds,3 baths,3 Toilets +Smart Home 4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",0,0,1,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached House For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex,Ikoyi Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths, Toilets +Smart Home 4 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment With A Study Room And 1 Room Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,0 baths,0 Toilets +Newly Built Luxury 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 6 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,250,000",1,1,0,6 beds,6 baths,6 Toilets +6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Serviced Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 24 Unit Of 4 Bedroom Luxury Apartments,Banana Island Ikoyi Lagos,$,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 890sqm,Okotie Eboh Awolowo Road Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 4600sqm Land,Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom + Bq With Federal Government Consent,"Elizabeth Grace Court 3, Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,1,0, beds, baths, Toilets +Sweet Joint Venture,"Mekunwen Street, Off Queen Drive Ikoyi Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom + Bq And Pool,Luxurious House Mansionette At Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Luxury 6 Bedroom Mansion,Ruxton Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Superb Residential Land,Ikoyi Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Plus Boys Quarter,Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2000sqm,Close 101 Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom House,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Massive Parcel Of Land,Gerard Road Ikoyi Lagos,₦,"6,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 2918sqm Waterfront,Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landed Property,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land Property Of 1134sqm,Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedrooms Apartment With Excellent Facilities,Banana Island Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Plot Of Land Measuring 4000sqm,Close 101 Banana Island Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Meaning 2000sqm Waterfront,Close 101 Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1245sqm,Gerrard Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic Joint Venture Land,Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 3133sqm Land,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely Parcel Of 2600sqm Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture,"Old Ikoyi, Off Glover Road Ikoyi Lagos",$,"1,700/sqm",0,0,0, beds, baths, Toilets +Luxurious Contemporary 5 Bedroom Duplex,Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Parcel Of 6000sqm Land,Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 4300sqm Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury Twin Highrise,Old Ikoyi Ikoyi Lagos,₦,"15,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxuriously Finished House With 2 Bq,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +1139sqm Land,"Rumens Street, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture,"Mcdonald Road, Old Ikoyi Ikoyi Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Sweet Parcel Of 746sqm Land,Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +Renovated Serviced 4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Luxury Flat,Mojisola Onikoyi Estate Off Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"15,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Star Hotel,Osborne Foreshore Estate Ikoyi Lagos,$,"9,000,000",0,1,0,0 beds,0 baths,0 Toilets +Exquisitely Built Luxury 3bedrooms Flat Apartment,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached With Swimming Pool,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached Houses,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 14000sqm Land,Ikoyi Lagos,₦,"18,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment With Bq.,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Sweet Joint Venture,Cameron Road By Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Mini Estate Block Of Flats,2nd Avenue Extension Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Five Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom + Bq With Federal Government Consent At Elizabeth Grace Court,Elizabeth Grace Court With Federal Government Consent Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Land,Off Queen Avenue Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace (brand New),Bourdillon Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Waterfront 4 Bedroom Semidetached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront 4 Bedroom Semi Detached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplexes With 2 Sitting Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Prime Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonnet Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Fully Detached House With Bq,Off First Avenue Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Landed Property In Banana Island,Off Second Avenue Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +Landed Property,Third Avenue Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Boys Quarter,Ikoyi Lagos,₦,"14,000,000",0,0,0,4 beds,0 baths,0 Toilets +Dry Landed Propery,Second Avenue Banana Island Ikoyi Lagos,₦,"2,125,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,500 Sqm In Banana Island",Off Second Avenue Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0, beds, baths, Toilets +Lovely 4bedroom Terrace,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +Family House With 9 Bedrooms All Rooms Ensuite,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,9 Toilets +Five (5) Bedroom Duplex,Ikoyi Lagos,₦,"595,000,000",0,1,0,5 beds,6 baths,6 Toilets +Six (6) Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +26 Units Of Luxurious 3 Bedroom Apartments,Gerard Road Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +Four (4) Bedroom Terraced House With Bq,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,5 baths,5 Toilets +Six (6) Bedroom Mansion,Shoreline Estate Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,7 baths,7 Toilets +Five (5) Bedroom Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Terrace Duplex,Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Serviced Apartments With A Room Bq,Bayview Apartments Banana Island Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets +Family House With 9 Bedrooms All Rooms Ensuite,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,9 beds,9 baths,9 Toilets +Exquisite 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,4 Toilets +Seven (7) Bedroom Contemporary Town House With Private Elevator,Ikoyi Lagos,₦,"240,000,000",0,0,0,7 beds,7 baths,8 Toilets +Five (5) Bedroom Contemporary Mansion,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedrooms Apartment,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Luxurious Fully Detached Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"1,150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Falomo Ikoyi Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets +Three (3) Bedroom Flat,Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,4 baths,4 Toilets +Three (3) Bedroom Apartment,Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets +Three (3) Bedroom Flat With Bq,Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets +Three (3) Bedroom Flat, Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets +Very Spacious 4 Bedrooms Luxury Apartments,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Five (5) Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Wonderful Houses,Ikoyi Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,0 Toilets +Three (3) Bedroom Flat With Bq,Ikoyi Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Six (6) Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,7 Toilets +Hot Joint Venture Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Apartment,Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Z Ikoyi Lagos,₦,"150,000,000",1,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Penthouse,Z Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,5 baths,6 Toilets +3bedroom Apartment Ikoyi,Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached House,Z Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,6 Toilets +5 Bedroom Detached House,D Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached House For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 6 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"1,200,000,000",1,0,0,6 beds,7 baths,8 Toilets +4 Bedroom Semi Detached House For Sale In Ikoyi,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"470,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached House In An Estate For Sale In Ikoyi,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,7 baths,8 Toilets +5 Bedroom Semi Detached House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached House,S Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Apartments,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Z Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,5 baths,6 Toilets +4bedroom Terraced Duplex Ikoyi,Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartment,E Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Maisonette For Sale In Ikoyi,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Smart House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Massive Plots For Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Off Plan 4 Bedroom 2 Storey Apartment With Two Bqs,The Skyvilla Ikoyi Lagos,₦,"370,000,000",0,0,0,4 beds,6 baths,7 Toilets +3 Bedroom Waterfront Apartment,Ikoyi Lagos,₦,"200,000,000",1,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale In Ikoyi,Ikoyi Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Ikoyi Lagos,₦,"190,000,000",1,0,0,3 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House,Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,6 baths,7 Toilets +Fully Furnished 5 Bedroom Smart House For Sale In Ikoyi,"...,. Ikoyi Lagos",$,"1,200,000,000",0,0,1,5 beds,7 baths,8 Toilets +B Bedroom Semi Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached House For Sale In An Estate In Ikoyi,Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,7 baths,8 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,7 baths,8 Toilets +Newly Built 5 Bed Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"1,550,000,000",1,1,0,5 beds,6 baths,6 Toilets +Rare Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Massive 5 Bedroom Fully Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxurious And Smart 4 Bedroom Maisonette + Bq,Elizabeth Grace Court 3 Estate In Osborne Foreshore Estate Home Of Luxury For People Of Class And Royalty Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat,Awolowo Road Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Maisonette Duplex + Bq,Elizabeth Grace Court 1 Estate Ikoyi A Place Of Comfort And Luxury Parkview Estate Ikoyi Lagos,₦,"170,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +800 Sqm,"Osbourne Phase I, Ikoyi, Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,500 Sqm Waterfront Plot","Osbourne Phase 2, Ikoyi, Lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: 5 Bedrooms Exquisitely Furnished Super Luxury Mansion, Off Queen's Drive, Ikoyi, Lagos, Nigeria","Off Queen's Drive, Old Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",$,"6,100,000",0,0,0,5 beds, baths, Toilets +Brand New Waterfront 5 Bedroom Detached Home,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Old Ikoyi Fully Furnished Penthouse,"Along Alexander Road, Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"500,000,000",1,0,1,5 beds,5 baths,6 Toilets +Land,Soule Close Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Prime 6,698.374sqm Plot On Lugard Road, Old Ikoyi, Lagos, Nigeria","Lugard Road, Old Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"4,823,000,000",1,0,0,0 beds,0 baths,0 Toilets +"1,850sqm Plot","Mojisola Onikoyi Estate, Off Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,500 Sqm Land","L23 Banana Island Estate, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Spacious 6 Bedrooms Detached House + Bq,Norman Williams Street South West Awolowo Road Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 4 Bedroom Masionette + 1 Room Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets +"For Sale: Parkview Estate, Ikoyi, Lagos, Nigeria Super Luxury 6 Bedroom Mansion","Parkview Estate, Ikoyi, Lagos Parkview Estate Ikoyi Lagos",₦,"2,300,000,000",0,0,0,6 beds, baths, Toilets +"5 Bedroom Fully Detached Duplex + 2rooms Bq Off Queen's Drive, Ikoyi, Lagos, Nigeria","Off Queen's Drive, Old Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Maisionette,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront Home,"Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale: Parkview Estate Ikoyi 5 Bedroom Detached Luxury Duplex,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"365,000,000",0,0,0,5 beds,6 baths, Toilets +"Prime Shoreline Estate Koyi, Lagos Plot",Shoreline And Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"720,000",0,0,0, beds, baths, Toilets +"1160sqm Medium Density Plot Of Land On Bank Road, Ikoyi, Lagos, Nigeria","Bank Road , Ikoyi, Lagos, Nigeria Old Ikoyi Ikoyi Lagos",₦,"835,000,000",0,0,0, beds, baths, Toilets +"Old Ikoyi, Lagos Super Luxury 5 Bedroom Mansion On 1,800sqm",Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New Waterfront 4 Bedroom Terrace Plus Bq For Sale Off Banana Island Road, Ikoyi Lagos","Mojisola Onikoyi Estate, Off Banana Island Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +Old Ikoyi Brand New Luxury Pent House Masionette Of 4 Bedroom + 2 Rooms Bq,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets +"For Sale: Commercial Property Directly On Awolowo Way, Sw Ikoyi, Lagos, Nigeria",Awolowo Road Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +"3,200sqm Land Directly On Banana Island Road, Ikoyi, Lagos",Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Verified Alexander Avenue Old Ikoyi Plot,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"3,309,750,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Gerard Road Ikoyi Lagos,₦,"180,000,000",1,0,0,3 beds,4 baths,4 Toilets +4 Bed Terraced House,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Waterview 5 Bed House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Apartment,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom House,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Self Serviced Brand New 5 Bedroom Detached Home,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Fitted 4 Bedroom Smart Home,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,$,"900,000",0,0,0,3 beds,3 baths,4 Toilets +567.291 Square Meter Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bed Luxury Maisonette,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,6 baths,6 Toilets +Ultra Modern 4 Bedroom Apartment,Ime Heights Ikoyi Lagos,₦,"132,990,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bed Luxury Maisonette,Riverside Apartment Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,$,"1,000,000",1,1,0,5 beds,7 baths,7 Toilets +567.291 Square Meter Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets +Magnificent 5 Bedrooms Maisonette,Bourdillon Ikoyi Lagos,$,"1,100,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bed Luxury Maisonette,The Aria Ikoyi Lagos,₦,"65,990,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 3bedroom Flat,Joshua Okeowo Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,3 beds,3 baths,4 Toilets +Magnificent And Mighty 5 Bedrooms Detached Duplex And Bq,Off Boudilon Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,7 baths,6 Toilets +Newly Built Bedrooms Terraces,Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,8 Toilets +Five Bedrooms Detached Duplex For Sale In Ikoyi,Ikoyi Lagos,₦,"1,700,000,000",1,1,0,5 beds,6 baths,7 Toilets +Well Furnished Two Bedrooms Apartment For Sale In Ikoyi,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,1,2 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Bare Land Measuring 1,500sqm",Mcewen Street Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Apartment Plus Bq (offplan),Banana Island Ikoyi Lagos,₦,"170,500,000",0,0,0,3 beds,3 baths,4 Toilets +Super Smart 5 Bedrooms Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,1,1,5 beds,5 baths,6 Toilets +1950sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Structure On 2 Floors,Muri Okunola Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,Lugard Avenue Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +939. Sqm Mixed Zone Plot,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +A 6 Nos 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Macpherson Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Old Ikoyi Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1615sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +897sqm Bare Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace Duplex Plus A Room Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Detached 5 Bedroom With 2room Bq,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"690,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +19200sqm Land With Old Structure,Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Penthouse,Banana Island Ikoyi Lagos,$,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"560,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Acres Of Land,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4200sqm Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"580,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Designed Luxury 5 Bedroom Terrace House With 2 Bq,Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5414.69sqm,Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 2 Units Of 5 Bedroom Fully Detached Houses With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex + 2 Bedroom Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3944sqm Land,"Alagbon, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +740sqm Land,Off Alexander Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm,Ikoyi Lagos,₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Banana Island Ikoyi Lagos,$,"280,000",0,0,0,2 beds,2 baths,2 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +1160sqm Bare Land,Ikoyi Lagos,₦,"720,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace,Banana Island Ikoyi Lagos,₦,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets +984sqm With A Demolishable Building,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +500 Sqm Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,2nd Avenue Extension Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +1134sqm Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex + 2 Bedroom Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly And Tastefully Finished 5 Bedroom Detached Smart House,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,7 Toilets +5500sqm Corner Piece Land,Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"690,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Functional Hotel,Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 2,060 Sqm Land", Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Houses,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,$,"480,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Flat,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +2600sqm,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,2 beds,2 baths,2 Toilets +Available Land,Mekunwen Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land,Awolowo Road Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +1136sqm Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Opulent Quality 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4200sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4611sqm Waterfront Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +495sqm Corner Piece Land,Awolowo Road Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land,Banana Island Ikoyi Lagos,₦,"1,950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,6 beds,7 baths,7 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +26000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqms Bare Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +16 Units Of 4 Bedroom Terrace Plus Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +3200sqm Land,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"675,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/year",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached House With Bq,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Flat,Banana Island Ikoyi Lagos,$,"200,000",0,0,0,1 beds,1 baths,2 Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Smart House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached + Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Banana Island Ikoyi Lagos,$,"700,000",0,0,0,4 beds,4 baths,5 Toilets +875 Square Meters Land,Mekunwen Road Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"3,700 Sqms Prime Land",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5 Bedroom Fully Detached House With Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +624.655sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +6931sqm Land,Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Plot,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,1 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semidetached House,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Value Centric 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 8 Bedroom Mansion With 2 Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,8 beds,8 baths,9 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqmts Land,Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4800sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,500sqmts Water Front Land",Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Of 4300sqm,Alexander Avenue Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +4594sqm Land,Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2750sqm,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cornerpiece 4600sqm Vacant Plot,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Detached Duplex,Bana Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,5 beds, baths, Toilets +Luxiriously Finished 4bedroom Terrace Duplex And Bq,Ikoyi Lagos,₦,"700,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished & Spacious 3 Bedroom Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,0 baths,0 Toilets +Mansion,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,1,1,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",1,0,0,4 beds,3 baths,4 Toilets +Exquisitely Finished & Spacious 3 Bedroom Luxury Flat With A Bq,Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Banana Island Road Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,3 baths,4 Toilets +A 500sqm Plot At Osborn Phase 2,Osborn Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Houses,Off Banana Island Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 6 Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,6 beds,6 baths,6 Toilets +Ultra Luxurious 5 Bedroom Terrace With 2 Bedroom Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osborne Estate Phase 1 Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedrooms Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,7 Toilets +Two Bedrooms Apartment For Sale In Ikoyi,Ikoyi Lagos,₦,"1,500,000,000",1,1,1,2 beds,3 baths,4 Toilets +Newly Built Three Bedrooms Apartment,Ikoyi South West Ikoyi S.w Ikoyi Lagos,$,"1,500,000",0,1,0,5 beds,4 baths,5 Toilets +English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,0 baths,0 Toilets +Luxuriously Finished 4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious 5 Bedroom Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +Waterfront 5 Bedroom Duplex + Jetty,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Furnished 5 Bedrooms Luxury Detached House,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Modern 5 Bedroom Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bed Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,4 beds,5 baths,5 Toilets +Waterfront 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,4 Toilets +Spacious 5 Bedroom Terrace,Banana Island Ikoyi Lagos,$,"1,500,000",1,1,0,5 beds,6 baths,6 Toilets +Exquisite And Luxury 3 Bedroom Flat With State Of The Art Facilities,"Joe Faraday Close, Off Banana Island Estate Road, Mojisola Onikoyi Estate, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"180,000,000",1,0,0,3 beds,3 baths,4 Toilets +650sqm Commercial/residential Land Ikoyi,Off Norman Williams Street Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +2677sqm Land,Mekunwen Street Okoyi Old Ikoyi Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom,Lugard Road Ikoyi Lagos,₦,"250,000,000",0,1,0,2 beds,2 baths,2 Toilets +3 Bedroom,Lugard Road Ikoyi Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Duplex,"Dolphin Estate, Ikoyi Dolphin Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2,500m² Land Situated At L23, Banana Island With Lagos State Ratification.",Banana Island Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats(27 Flats),Old Ikoyi Ikoyi Lagos,₦,"75,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Bedroom Luxury Flats With Swimming Pool And Other Lifestyle Facilities,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Lugard Road Ikoyi Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex,"...,. Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +15 Floors Commercial Building For Office Space,Kingsway Road Ikoyi Lagos,$,"85,000,000",0,0,0, beds, baths, Toilets +2500sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +2000sqm Land,Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +3500sqm Land,Old Ikoyi Ikoyi Lagos,₦,"1,750,000,000",0,0,0, beds, baths, Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600sqm Land,Tumbull Drive Ikoyi Lagos,₦,"960,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +1000sqm Corner Piece Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 5 Bedrooms Detached Duplex With State Of The Art Lightings And Sanitary Ware In All The Rooms,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Fully Detached 5 Bedroom Fully Detached Duplex With 2 Bq Fully Fitted House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Masterpiece House,Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Six(6) Bedroom Fully Detached House With Waterfront Swimming Pool Gym,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New Self Serviced 5 Bedroom Semi Detached Duplex,Off Alexander Road Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Fitted 3 Bedroom Terrace,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,4 Toilets +3 Bedroom Fully Fitted Apartment, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4000sqm Land,Off Macpherson Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Fully Detached 5bedroom +3room Bq House, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Fitted 4 Bedroom Semi Detached Home With 2 Living Rooms & Bq,Off Alexander Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +2015sqm Land,Off Macpherson Ikoyi Lagos,₦,"1,309,750,000",0,0,0, beds, baths, Toilets +"4 Bedroom Semi Detached Apartment, 2 Extra Rooms And A Bq",Banana Island Ikoyi Lagos,₦,"610,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Duplex With A Bq,Banana Island Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets +3000sqm Land,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +1200sqm Waterfront Land,Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"19,200sqm Land",Oba Adeyinka Oyekan Old Ikoyi Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Fitted 4 Bed Apartments With Swimming Pool Gym Squash Tennis,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Room House Designed As A Guest House And A 3 Bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Fully Furnished Fully Fitted 4 Bedroom Penthouse Maisonette Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +1500sqm Land,Glover Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Two Units 5bed Semi Detached + 2rmbq House,Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +1000sqm Land,Ikoya Avenue Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +4 Bed Mansionette,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Bella Vista Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,0 baths,0 Toilets +Available Land,Off First Avenue Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"985,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Shoreline Estate Ikoyi Lagos,₦,"840,000,000",0,0,0, beds, baths, Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments With Bq,Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets +4500sqm Land,Off Macpherson Ikoyi Lagos,₦,"2,925,000,000",0,0,0, beds, baths, Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4100sqm Waterfront Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +1125sqm Land,Of Macpherson Road Ikoyi Lagos,₦,"618,750,000",0,0,0, beds, baths, Toilets +"2,033sqm Residential Plot",Abacha Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Land,Ikoyi Club Side Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +2400sqm Waterfront Land,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Fully Fitted And Serviced 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Glover Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Off Alexander Road Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,0 baths,0 Toilets +5343sqm Land,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +874sqm Land,Island Shoreline Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Penthouse,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +1937sqm Corner Piece Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Dilapidated Detached House,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Fitted 2 Bedroom Maisonette On 205sqm Land, Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Water Front Plot Measuring 1,939 Sqm",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Apartments On 300sqm Land (off Plan), Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Commercial Highrise ( Fully Tenanted) No. Of Floors 15,Kingsway Road Ikoyi Ikoyi Lagos,$,"120,000,000",0,0,0, beds, baths, Toilets +Bare Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Detach House With 2 Bed Chalet And 3 Bedroom Bq,Off Macpherson Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Detached Houses With All Rooms Ensuite One Room Boys Quarter Each,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Fitted 3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bed Room House With 3 Room Bq Renovation Needed,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,2nd Avenue Extension Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Corrner Piece Plot Measuring 1,000 Sqm",Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +1400sqm Cornerpiece Land,Banana Island Ikoyi Lagos,₦,"1,680,000,000",0,0,0, beds, baths, Toilets +4 Bedroom High Rise Apartment,Ikoyi Lagos,$,"3,850,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan Brand New Four(4) Bedroom Terraces,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Land,Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0, beds, baths, Toilets +8 Bedrooms Mansion All Rooms Ensuite,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets +5200sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,560,000,000",0,0,0, beds, baths, Toilets +Corner Piece Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Detached Duplex,Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Fitted House,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +2100sqm Bareland,Off Queensdrive Ikoyi Lagos,₦,"1,260,000,000",0,0,0, beds, baths, Toilets +Four (4) Bedroom Fully Fitted Apartment In A Private Estate With Lawn Tennis Gym Swimming Pool,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Houses,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built Property With 3 Bedroom Apartments With Bqs And Basement Car Parks,Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +"5,400sqm Land",Glover Road Mosley Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments And Fully Fitted 3 Bedroom Penthouse Maisonette,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,2nd Avenue Extension Ikoyi Lagos,₦,"2,000,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Nos Of 3 Bedroom Flat With Swimming Pool & Gym,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,4 Toilets +935sqm Land, Banana Island Ikoyi Lagos,₦,"748,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Fully Fitted And Furnished Terrace,Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,1,3 beds,3 baths,4 Toilets +Brand New Fully Fitted Smart 5 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600sqm Land,Kuramo Close Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Stylishly Fully Fitted 5 Bedroom Detached House,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +1550sqm Land With Fully Detached House,Mark Close Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"3,200sqm Land With Demolishable Structure",Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 8 Units Of 5 Bedroom Terrace With Private Swimming Pool,Off Alexander Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Contemporary House,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +7000sqm Available Land,Off Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +1100sqm Land,Parkview Estate Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel ( Brand New),Ikoyi Lagos,$,"12,000,000",0,0,0,10 beds, baths, Toilets +4 Bedroom Terrace Houses With All Rooms Ensuite.,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Automated Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New Water View 5 Bedroom Detached Duplex, 1 Study Fully Fitted Fully Equipped Cinema Room Swimming Pool", Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detached 6 Bedroom; 2 Living Rooms ; 3 Kitchens; Cinema; Swimming Pool,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Apartments With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +1000sqm Land,Off Mobolaji Johnson Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +"Luxury Flats Consisting Of 26 X 3 Bedroom, 2 X 2 Bedeooms X 2 Penthouses",Glover Road Ikoyi Lagos,$,"35,000,000",0,0,0, beds, baths, Toilets +Brand New Waterfront 4 Bedroom 1 Study Room Fully Fitted Terrace With Swimming Pool And Bq, Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +30 Bedroom Turkey Boutique Hotel,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Mansionette & Penthouses,Lugard Avenue Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200sqm Land,Off Queensdrive Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Maisonette Apartment,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +1300sqm Land,Ikoya Street Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom House, Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Fully Fitted Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 10 Bedroom Fully Furnished Detached House,Ikoyi Lagos,₦,"2,100,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 3 Bedroom All Ensuite Apartment With Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Cooper Road Ikoyi Lagos,₦,"680,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +"26,000sqm Land",Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4100sqm Waterfront Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,640,000,000",0,0,0, beds, baths, Toilets +1700sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,275,000,000",0,0,0, beds, baths, Toilets +"Brand New Fully Fitted 3 & 4 Bedrooms, 2 Bq Each Luxury Apartments With 5star Reception", Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Detached 5 Bedroom Fully Detached Duplex With 2 Bq Fully Fitted House, Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Alexandra Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikoyi 1000sqm Waterfront Land,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +1150sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,041,300,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +3300sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,155,000,000",0,0,0, beds, baths, Toilets +4 Bedroom 2 Living Rooms 1 Study Detached House On 600sqm,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available 2300sqm Land,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +2750sqm Waterfront With Jetty & House,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Multi Level Duplex,Thompson Road Ikoyi Lagos,$,"1,600,000",0,0,0,5 beds,5 baths,6 Toilets +"3,100sqm Land",Banana Island Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Automated 5 Bedroom Contemporary House,Banana Island Ikoyi Lagos,₦,"820,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +950sqm Corner Piece Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"4,300sqm Land",Bedwell Road Old Ikoyi Ikoyi Lagos,₦,"675,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached And Fitted House With A Bq,Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Luxury Flat,Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,2 baths,2 Toilets +Brand New 4 Bedroom Full Automation Massionettes, Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Automated Detached Duplex With 2 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200sqm Land, Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +4244sqm Waterfront Land,Queens Drive Ikoyi Lagos,₦,"3,183,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Abacha Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Serviced 5 Bedroom Penthouse,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bed Brand New Fully Detached Semidetached Houses With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Uncompleted Semidetached And 2 Bedroom Bq Each,Off Queens Drive Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Fully Fitted 5 Bedroom House With 2 Living Room,Off Bourdillon Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +950sqm Land,Tumbull Drive Ikoyi Lagos,₦,"570,000,000",0,0,0, beds, baths, Toilets +7000sqm Land,Gerard Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Hotel,Osborne Foreshore Estate Ikoyi Lagos,$,"7,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5200sqm Waterfront Land,Ph2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Land,"Club Road, Old Ikoyi Ikoyi Lagos",₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1400sqm Plot With 5 Bed House & Swimming Pool,Off Bourdillon Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5000sqm Waterfront Land,Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +1550sqm Land,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +500sqm Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three(3) Bed Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,2 baths,4 Toilets +Fully Fitted 3 Bedroom Apartment,Awolowo Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +Maisonette,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Alexander Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four (4) Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 3 Rooms Chalet,Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +600sqm Land,Banana Island Ikoyi Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets +Available Land,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1700sqm Land,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +740sqm Land,Off Alexander Road Ikoyi Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House With Detached Maids Quarters,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Self Service 4 Bedroom Terrace With Own Compound, Ikoyi Lagos,₦,"340,000,000",1,0,0,4 beds,4 baths,5 Toilets +3385sqm Land,Off Alexander Ikoyi Lagos,₦,"1,692,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Z Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Ikoyi S.w Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury fully Fitted 5 Bedrooms  detached House,Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With 2 Room Bq,Off Awolowo Road Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom High Rise Apartment,Ikoyi Lagos,$,"1,850,000",0,0,0,3 beds,3 baths,4 Toilets +934sqm Land, Banana Island Ikoyi Lagos,₦,"747,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lugard Street Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +500m2 Land,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Waterfront Land,"Alexander, Old Ikoyi Ikoyi Lagos",₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Maisonette,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Units Of 4 Bedroom Terrace,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Rand New 11 Units Fully Fitted 3 Bed Apartments And 4 Bed Penthouse Apartment With A Bq Each,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1950sqm Land,Second Avenue Ikoyi Lagos,₦,"1,170,000,000",0,0,0, beds, baths, Toilets +A Block Of 10 Units Luxurious Apartments, Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Fully Detached House On 3600sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land, Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom All Rooms En Suite With Lawn Tennis Squash Swimming Pool & Gym,Banana Island Ikoyi Lagos,$,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets +2000sqm Land,Off Queens Drive Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Colonial 6 Bedroom Detached House With Bq,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,0 baths,0 Toilets +Fully Fitted 1 Bedroom Apartment,Ikoyi Lagos,₦,"85,000,000",0,0,0,1 beds,1 baths,2 Toilets +1700sqm Waterfront Land,Off Banana Island Ikoyi Lagos,₦,"1,275,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Exotically Built 3 Units Of 4 Bedroom Terrace Apartment With A Waiting Room, Bq, Swimming Pool And Gym.",Off Alexander Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Maintained Building,Ribadu Road Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +6900sqm Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"5,700,000,000",0,0,0, beds, baths, Toilets +1850sqm Land,Off Alexander Road Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +2400sqm Land,Gerard Road Ikoyi Lagos,₦,"1,025,000,000",0,0,0, beds, baths, Toilets +1600sqm Land,Kuramo Close Ikoyi Lagos,₦,"624,000,000",0,0,0, beds, baths, Toilets +Block Of 27 Flats Of 3 Bedrooms,Off Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats With The Pent House On 2 Floors, Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront 8 Units 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +584sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +600sqm Land For Joint Venture,Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +1700sqm Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,190,000",0,0,0, beds, baths, Toilets +600sqm Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Fully Fitted 3 Bedroom Apartment With A Bq,Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Abacha Estate Ikoyi Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Land,Banana Island Ikoyi Lagos,₦,"1,020,000,000",0,0,0, beds, baths, Toilets +Full Detached House With 1 Room Bq,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600sqm Land,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"624,000,000",0,0,0, beds, baths, Toilets +400sqm Land, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +2600sqm Land,Off Mekwen Ikoyi Lagos,₦,"1,820,000,000",0,0,0, beds, baths, Toilets +Ikoyi Offplan Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Flat,Off Alexander Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,3 Toilets +3133sqm Land,Old Ikoyi Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 2 Bedroom Serviced Apartments,Ikoyi Lagos,₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets +Fully Fitted En Suite 1/3 Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"14,000,000/year",0,0,0,3 beds,0 baths,0 Toilets +Off Plan 4 Bedroom Maisonette,Zz Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +1100sqm Land, Banana Island Ikoyi Lagos,₦,"990,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Elevator,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Superb And Spacious 5bedroom Detached Duplex With Bq,",Park View Estate Parkview Estate Ikoyi Lagos,₦,"600,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Ocean View Furnished Bedroom Mansion With Pool And Cinema,Macpherson Ikoyi Lagos,₦,"1,400,000,000",0,1,1,6 beds,8 baths,7 Toilets +2060 Square Meters Dry Land,Banana Island Estate Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"26,000 Square Meters Of Land",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 11 Units Of Flat Consisting Of 10 3 Bedrooms And 4 Bedroom Penthouse With Elevator,Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Massive 5 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths,0 Toilets +Fully Furnished 5 Bedroom Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +Luxury Built 3 Bedroom Maisonette,Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,1,1,3 beds,3 baths,3 Toilets +Filling Station,Zone J Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets +Value Centric 4 Bed Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Banana Island Banana Island Ikoyi Lagos,$,"1,500,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Penthouse (offplan),Banana Island Banana Island Ikoyi Lagos,$,"3,500,000",1,1,1,5 beds,6 baths,6 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonettes,"L14, Close 101, 1st Ave, Mixed Development Banana Island Ikoyi Lagos",$,"2,500,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Flat,Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets +4812sqmtrs Mixed Use Land For Sale At Banana Island Estate Ikoyi,"Banana Island Estate, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"4,330,800,000",0,0,0, beds, baths, Toilets +5200 Sqmtrs Of Land,"Lugard Street, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4610 Residential Land For Sale At Banana Island Estate Ikoyi,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,$,"5,300,000,000",0,0,0, beds, baths, Toilets +"3 Bedroom Penthouse Maisonette For Sale At Osborne Phase 2 Estate, Ikoyi","Osborne Estate Phase 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,"Banana Island Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"250,000,000",0,1,1,3 beds,3 baths,4 Toilets +Brand New 7 Bedroom Detached House,"Banana Island Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"2,200,000,000",0,1,0,7 beds,7 baths,8 Toilets +C Of O,"Akindele Animashaun Street, Beside (twinwaters Plaza) Waterfront Oniru Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 876sqms,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Measuring 740sqms,Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring 1,000sqms",Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Land With Fgn Consent,Banana Island Ikoyi Lagos,₦,"555,000,000",0,0,0, beds, baths, Toilets +800sqm Land,Oyal Palm Drive Osborne 2 Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Water View House, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,6 baths,6 Toilets +840sqm Land, Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 740sqms,Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +Former Bank Premises On 4floors With Registered Deed,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,... Banana Island Ikoyi Lagos,₦,"120,000,000",1,0,1,2 beds,3 baths,3 Toilets +6bedroom Castle With C Of O, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,1,6 beds,7 baths,7 Toilets +2 Bedroom Furnished Apartment,"...,. Banana Island Ikoyi Lagos",₦,"120,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 5bedroom Detached Duplex,Onikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Measuring 876sqms,Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Macgregor Road 1,566sqms With 47 Meters Frontage",Macgregor Road Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Bank Road 2,000sqms With 51 Meters Frontage",Ikoyi Lagos,₦,"620,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plots Of Land,Keffi Str By Awolowo Road Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring 1,125sqms",Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"1,200,000,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +840sqm Land For Sale,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace House With A Room Bq,Banana Island Ikoyi Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Bank Road 1,566sqms With 50 Meters Frontage","Bank Road , Ikoyi Ikoyi Lagos",₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring Almost 1,700sqms",Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat(water Front)with Bq, Banana Island Ikoyi Lagos,₦,"190,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Macgregor Road 533sqms With 24 Meters Frontage,Macgregor Road Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alfred Rewane Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"4,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,295sqms Land", Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,295sqms Land For Sale",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring Almost 1,700sqms",Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Flat,Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Banana Island Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Rooms Boys Quarters,Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Plot Measuring 1,000sqms",Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Plot Of Land With Lasg Land Certificate,Bourdillion Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Available Land,Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +6bedroom Semi Detached House With Bq 2(nos) 4bedroom Massionete + Bq 2 (nos) Luxury 3bedroom Flats + Bq.,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"5,500,000",0,0,0,6 beds,8 baths,8 Toilets +World Class Luxury 3 Bedroom Apartment With A Maid Room,"Old Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxuriously Finished 5 Bedroom Penthouse,Off Glover Rd Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets +Offplan Sales In Banana Island With Flexible Payment Plan 3 Nos Of 5 Bedrom Waterfront Detached Houses,Off Second Avenue Bananaisland Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury Brand New 3 Bedroom Flat With A Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"195,000,000",1,1,1,3 beds,4 baths,5 Toilets +Massive 2 Units Of 4 Bedrom Semi Detached House With 2 Room Bq Each,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,6 Toilets +Waterfront Plot Mixed Use Development Land. Size: 4800sqms,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Exquisitely First Class Finished Cornerpiece Property On Large Ground Consisting.....6 Bedroom Semi Detached Spacious House + Bq.... 2 Nos 4 Bedroom Massionete + Bq....2 Nos 3bedroom Flats,Off Boudillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury Finished 5 Bedroom Detached Duplex With A Bq Located Within Beautiful Secured Banana Island Ikoyi.,Off 3rd Avenue Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,6 baths,7 Toilets +".luxury 3 Units Of 4 Bedroom Terrace Duplex With Servant's Room,",Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Apartment With A Bq,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +Empire Court 3 & 4 Bedroom Ultra Luxury Apartments With 2 Bq,Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0,4 beds,4 baths,5 Toilets +Filling Station,Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ultra Luxury 6 Bedroom Detached House,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built Luxury 3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With A Room Boy’s Quarter,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom's Penthouse With A Private Elevator In Oniikoyi,"Off Banana Island Road, Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"285,000,000",1,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,1,3 beds,0 baths,0 Toilets +5 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached House With Bq,"Oroke Drive, Off Queens Drive Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5,400sqm Land",Falomo Ikoyi Lagos,₦,"5,400/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"730,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elizabeth Grace Court 1,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Contemporary Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",1,1,0,5 beds,7 baths,7 Toilets +Luxurious 2 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Automated 5 Bedroom Fully Detached,Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Maisonette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette + Bq And 2 Penthouses + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +22 Floors Of Maisonette,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,6 baths,6 Toilets +22 Floors Of Maisonette,Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,7 baths,7 Toilets +C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,$,"1,000,000",0,1,0,5 beds,7 baths,7 Toilets +Magnificent 6 Bedroom Fully Detached Duplex With Private Elevator And Swimming Pool,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,1,0,6 beds,7 baths,8 Toilets +C Of O Dry Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Super Spacious 5 Bed Luxury Maisonette With Swimming Pool, Gym And Elevator",Ikoyi Lagos,$,"1,200,000",0,1,1,5 beds,7 baths,7 Toilets +Magnificent Quality 5 Bedroom Fully Detached Duplex,Ikoyi S.w Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,7 Toilets +A Royal Finished 8 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,8 Toilets +5 Bedroom Fully Detached Smart Duplex,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Town House (triplex),Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Penthouse Apartment,Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Super Luxury Apartment With Bq,Banana Island Ikoyi Lagos,₦,"233,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bed Super Maisonnette With Bq,Royal Palms Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"76,990,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bed Luxury Terrace Duplex,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"125,990,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Maisonnette Duplex With Bq (off Plan),"No 1, Onikoyi Road Ikoyi Lagos",₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +3/4 Bedroom Luxury Terraces Duplex With Bq (off Plan),Osborne Foreshore Estate Ikoyi Lagos,₦,"177,990,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq (off Plan),Riverside Ii Banana Island Ikoyi Lagos,₦,"170,500,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bed Luxury Maisonette With Bq ( Off Plan),Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,5 baths,0 Toilets +Super Luxury 3 Bedroom Apartment With Bq (offplan),Osborne Foreshore Estate Ikoyi Lagos,₦,"86,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette Duplex With Bq (offplan),Banana Island Ikoyi Lagos,₦,"178,000,000",1,0,0,4 beds,5 baths,5 Toilets +Exquisite 4 Bedroom Maisonette Duplex With Bq,Alexander Road Banana Island Ikoyi Lagos,₦,"175,000,000/day",1,0,0,4 beds,5 baths,5 Toilets +"Bareland Banana Island Water Front Plot, Size :2060sqm",Off Second Avenue Banana Island Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex With Bq,Off Kingsway Road .ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bare Land 4600sqm Water Front Plot Banana Island Ikoyi,Off Second Avenue Banana Island Ikoyi Lagos,$,"12,000,000",0,0,0, beds, baths, Toilets +Direct Sale 6100 Sqm Banana Island Ikoyi,Residential Zone J And P Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets +"Bareland, Plot J44 1000sqm Banana Island Ikoyi",In A Close Off Second Avenue Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Bare Land Plot :j60d :1134sqm Banana Island Ikoyi,"Off 3rd Avenue , Plot :j60d Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Luxury Maisonette With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"136,990,000",1,0,0,5 beds,6 baths,6 Toilets +Joint Venture 4200sqm Land Gerard Road Old Ikoyi,Residential Highbrow Gerard Road Old Ikoyi Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Block Of 3bedrooms Apartment,Norman Williams South West Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land 4570sqm,Residential Plot Jzone Street Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq (offplan),Banana Island Ikoyi Lagos,₦,"170,500,000",1,0,0,3 beds,3 baths,4 Toilets +"Banana Island Water Front Land: Plot : L9, Size: 4600sqm",Mixed Zone Plot : L9 Banana Island Ikoyicommercial Land Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplex With Bq,Off Bourdillon Old Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Lovely Mini Flat,Osborne Foreshore Estate 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets +1939 Sqm Water Front Land,Water Front Banana Island Ikoyi Lagos,₦,"1,300,000/sqm",0,0,0, beds, baths, Toilets +An Exquisitely Finished 5 Bedroom Semi Detached Duplex With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Corner Piece Plot Measuring 5,414.69 Square Meters With Pile Foundations For Twin 15 Storey Luxury Towers",Glover Road Ikoyi Lagos,$,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With Governor's Consent In A Good Location.,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +An Exquisitely Finished 5 Bedroom Semi Detached Duplex With An En Suite Basement And A Room Bq,Banana Island Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets +"A Waterfront 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Maisonette Duplex,"Elizabeth Grace Court 1, Parkview Estate Ikoyi Lagos",₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +"A Contemporary 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,... Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,5 Toilets +2bedroom Luxury Apartment,Bourdillon Ikoyi Lagos,₦,"112,000,000",1,1,0,2 beds,3 baths,3 Toilets +2800sqm Land,Kalabari Off Queen Drive Falomo Ikoyi Lagos,₦,"1,960,000,000",0,1,0, beds, baths, Toilets +2300sqm Land,Mekwen Off Queen Drive Falomo Ikoyi Lagos,₦,"1,380,000,000",0,0,0, beds, baths, Toilets +Luxurious 3bedroom Apartment,Bourdillon Ikoyi Lagos,₦,"159,000,000",1,1,0,3 beds,4 baths,4 Toilets +1bed Studio Apartment,Bourdillon Ikoyi Lagos,₦,"89,000,000",1,1,0,1 beds,2 baths,2 Toilets +5 Bedroom House,Banana Island Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +Over 1000sqm Land,Foreshore Estate Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,5 beds,5 baths, Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Fully Serviced 3 Bedroom Apartment,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Fully Serviced 2 Bedroom Apartment,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"130,000,000",1,1,0,2 beds,2 baths,3 Toilets +Captivating 5 Bedroom Detached Duplex With Pool, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Eye Catching Luxury 4 Bedroom Maisonette With Bq,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplexes,"Turnbull Road, (opp. Banana Island Road) Ikoyi Lagos Ikoyi Lagos",₦,"240,000,000",1,0,0,4 beds,4 baths,4 Toilets +1200sqm Land,Bode Olajumoke Street Parkview Estate Ikoyi Lagos,₦,"750,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool.,"Ikoyi, Lekki Ikoyi Lagos",₦,"700,000,000",0,1,1,5 beds,6 baths,6 Toilets +"11 Units Of 3 Bedroom Apartments With Bq, Elevator, And Swimming Pool", Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Maisonette In The Plus Residence Ikoyi,Cedarwood Luxury Beside Efcc Office Ikoyi Lagos,₦,"197,500,000/day",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Maisonette With Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury Duplexes,Ikoyi Lagos,₦,"700,000,000",1,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Fully Detached House With Bq,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 4bedroom Maisonette With A Bq,Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,3 beds,3 baths,4 Toilets +4bedrooms Semi Detached Duplex With Bq,Ikoyi S.w Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With 2 Rooms Boys Quarters,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With 2 Rooms Boys Quarters,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terraces With 1 Room Boys Quarter,Ikoyi Crescent Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely Environment 4 Bedroom Apartment,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartments,Z Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"480,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Top Notch Maisonette,Old Ikoyi Ikoyi Lagos,$,"1,100,000",0,0,0,4 beds,4 baths,5 Toilets +8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +12 Bedroom Maisonette And 1 Penthouse Villa,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace.,Banana Island Ikoyi Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedrooms Detached House,"Banana Island ??,ikoyi Banana Island Ikoyi Lagos",$,"1,500,000",1,1,1,5 beds,5 baths,6 Toilets +Luxurious 5bedroom Detached Duplex Very Spacious With Modern Finishing,Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds, baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq For Sale,Ikoyi Lagos,₦,"1,000,000,000",1,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Detached Duplex With Private Elevator,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Smart 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +English Style 6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Well Apportioned 5 Bedroom House,Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex,Ikoyi Off Banana Island Road Ikoyi Lagos,₦,"1,400,000,000,000/year",0,1,1,6 beds,0 baths,7 Toilets +Luxury 4 Bedroom Maisonette And 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"300,000,000",0,0,1,4 beds,4 baths,5 Toilets +9 Bedroom Mansion Detached House,Banana Island Ikoyi Lagos,₦,"16,000,000,000",0,0,0,9 beds,9 baths,10 Toilets +Ultra Luxury 3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly built 5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Off Kingsway Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury, Sleek 4 Bedroom Residences",Close To Banana Island Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Modern 4 Bedroom Massionette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Offering Ultra Luxury 3 4 Bedroom Apartment & 4 Bedroom Maisonette Penthouse,Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxe 3 Bedroom Apartments,Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedrooms Maisonette,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Fully Automated Apartment,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +Hotel,Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedrooms Apartment With 1 Room B/q,Glover Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,1,3 beds,3 baths,4 Toilets +Presidential 5bedroom Fully Detached House With Bq Living Room,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant Built 2 Bedroom Smart Luxury Apartment,"Off Ikoyi Golf Course, Ikoyi, Lagos Ikoyi Lagos",₦,"170,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Detached Six Bedrooms Mansion With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Maisonette And A Room Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Maisonette + Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment And A Room Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Storey Furnished Guesthouse,Ikoyi Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Full Detached Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,6 beds,8 baths,9 Toilets +Luxurious 5 Bedroom Fully Furnished Maisonette,Banana Banana Island Ikoyi Lagos,$,"1,200,000",1,1,1,5 beds,7 baths,8 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Flat Maisonnette With Bq And Furnitures And More,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Semi Detached With Swimming Pool,Ikoyi Lagos,₦,"210,000,000",0,0,1,4 beds,4 baths,5 Toilets +Waterfront 5 Bedroom Duplex With Servant Quarter,Ikoyi Lagos,₦,"580,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,1,5 beds,7 baths,7 Toilets +1000sqms Land,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Great Plot At J Zone 2,500sqms",J Zone Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex With Servant Quarters,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,5 Toilets +5200sqms Plot,Old Ikoyi Ikoyi Lagos,₦,"700,000/sqm",0,0,0, beds, baths, Toilets +Brand New 28 Rooms Guest House,Ikoyi Lagos,$,"14,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedroom Flat With Gym And Has World Class Finishing,Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +850 Sqms Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Great Plots 1,180sqms",G Zone Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex In A Highbrow Neighborhood,Ikoyi Lagos,₦,"200,000,000",1,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Maisonettes And 2 Penthouses,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Duplex,Ikoyi Ikoyi Lagos,₦,"930,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Houses,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished Spacious 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of 5 Bedroom Terraced Duplex,Osborne Foreshore Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 8 Nos. Of 4 Bedroom Luxury Flats,Parkview Estate Ikoyi Lagos,₦,"1,900,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikoyi Lagos,₦,"8,500,000/year",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Renovated 4 Bedroom Terrace Duplex + A Room Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",1,0,0,4 beds,5 baths,5 Toilets +1134sqm Land,Block J Plot 60 D Banana Island Ikoyi Lagos,₦,"1,360,800,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex,Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxury And Brand New 3 Bedroom Flat,Ikoyi Lagos,₦,"112,000,000",0,1,0,3 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,5 beds,5 baths,6 Toilets +Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets +Luxurious Finished 7 Bedroom Fully Detached Duplex,Bananq Island Banana Island Ikoyi Lagos,₦,"5,000,000,000",1,1,1,7 beds,7 baths,8 Toilets +Newly Renovated Block Comprising Of 12 Number 3bedroom Flats,Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached,Awolowo Road Ikoyi Lagos,₦,"380,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built And 4bedroom Semidetached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +The Executive 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"665,000,000",0,1,0,5 beds,6 baths,6 Toilets +36 Units Of Luxury 4 Bedrooms Flat,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"720,000,000/sqm",0,0,0,10 beds,0 baths,0 Toilets +Massive Block Of 8 Flats Of 3 Bedrooms,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"1,600,000,000/sqm",0,1,0,10 beds, baths, Toilets +Block Of 10 Flats Of 3 Bedrooms At Bourdilllion Road For Sale,"Bourdilllion Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"1,100,000,000/sqm",0,0,0,10 beds, baths, Toilets +4 Bedroom Pent House For Sale,Onikiyi Estate By Banana Banana Island Ikoyi Lagos,₦,"180,000,000/sqm",0,0,0,4 beds, baths, Toilets +Luxury 4 Bedrooms Flat Located Rummens Road For Sale,Rumens Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,10 beds, baths, Toilets +4 Bedroom Detached Duplex With A Room Bq,Ikoyi Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +8 Bedrooms Mansion, Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,8 beds,0 baths,0 Toilets +Land,Mekwuen Road Ikoyi Lagos,₦,"1,755,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"1,360,800,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat, Ikoyi Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment, Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +H.code Properties: Guesthouse,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,$,"14,000,000/year",1,1,1,10 beds,10 baths,10 Toilets +Quality Ocean View 5 Bedroom Semi Detached Duplex In A Prestigous Address,Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +Nicely Built Ocean View 5 Bedroom Semi Detached Duplex In A Prestigious Location,Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Banana Island Ikoyi Lagos,₦,"17,000,000/month",0,1,0,5 beds, baths, Toilets +4 Bedroom Maisonette Duplex With Bq,Addyholly Grace Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +4bedroom Maisonette Wit Bq In An Rise Building With Private Swimming Pool,Addyholly Elizabeth Grace Osbourne Fourshore Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With C Of O,Addyholly Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Unit Of 3 Bedroom Flat,Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +Property Consists Of 2 Numbers Standing (high Rise),Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,0,0,5 beds,5 baths,6 Toilets +"Newly Built, 3 Bedroom Luxury Apartment",Old Ikoyi Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished Luxury 4 Bedroom Wing Duplexes,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette,Parkview Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +Filling Station,Awolowo Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mansion,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +"Newly Built, 3 Bedroom Luxury Apartment",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool For Sale,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq!!!,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Maisonette With Bq,Ikoyi Lagos,₦,"465,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Apartments For Sale In Banana Island Lagos Nigeria.,Banana Island House Banana Island Ikoyi Lagos,₦,"200,000,000/day",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette Duplex With Bq,Elizabeth Grace Court 1 Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette Duplex With Bq,Elizabeth Grace Court 1 Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom,Parkview Estate Ikoyi Lagos,₦,"170,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets +Super Luxurious 5 Bedroom Detached Duplex,Bourdillon Ikoyi Lagos,₦,"900,000,000",0,1,1,5 beds,6 baths,6 Toilets +Land Measuring 500sqm,R21 Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,1,4 beds,5 baths,6 Toilets +Federal C Of O,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,300,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Condominium With 2 Boys Quarters,"Probyn Close, Off Bourdillon Road Old Ikoyi Ikoyi Lagos",₦,"398,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Boys Quarter,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"420,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets +Tastefully And Luxuriously Built 5 Bedroom Maisonette With A Bq In A Serene And Secured Neighborhood,Ikoyi Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Built 2 Bedroom Flat With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Apartment With 2 Rooms Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat For Sale In Secure And Serene Estate In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"112,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Townhouse With 2 Boys Quarters,Federal Government Layout Banana Island Ikoyi Lagos,₦,"470,000,000/month",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +"3,400.882 Sqm Land",Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flats,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Well Built 6 Bedroom Detached House All Rooms Ensuite,Banana Island Estate Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,6 beds,0 baths,0 Toilets +11 Units Of 3 Bed Apartments With Bq,Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 5 Bedroom Semi Detached Duplex But Only 2 Units Remaining, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 & 3 Bedrooms Apartment With Swimming Pool And Gym,Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,0 baths,0 Toilets +Super 6 Bedroom Detached Duplex With 2 Rooms Bq,With Swimming Pool Gym Etc Title: Governor's Consent Parkview Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +A Brand New 3 Bedrooms Flat Pent House,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Units Of 2 And 3 Bedroom Apartments,Onikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Architectural Masterpiece Which Consists Of 6 Bedrooms And 2 Bq In Banana Island Features/amenities 1. Land Area Is Approx 700sqm 2. Fully Furnished Spanish Kitchen With Miele Appliances,Inside Banana Estate Ikoyi Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,6 beds, baths, Toilets +The Longest House 2 Bedroom Apartment And 3 Bedroom. With Bq. In Eko Alactic,Ight And A Minimum Of 3 Night Is What Is Obtainable At Eko Pearltowers. Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,2 beds, baths, Toilets +Land,Ikoyi Lagos,₦,"650,000",0,0,0, beds, baths, Toilets +4 Units Of 5 Bedroom Maisonettes With Maid's Room,Banana Island Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land,Balrabe Musa Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellent 4 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished 7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,7 beds,0 baths,0 Toilets +Luxurious Finished 7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,7 beds,0 baths,0 Toilets +3 Bedrooms Flats,Osborne Foreshore Estate Ikoyi Lagos,₦,"8,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautifully Finished 5 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bdedroom Waterfront Fully Furnished Palatial Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,7 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With A Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished Spacious 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Maisonette With A Bq,Ikoyi Lagos,₦,"310,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets +Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Gerard Road Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Maisonette Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury Fully Automated 5 Bed Detached Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"923,000,000,000",1,1,0,5 beds,8 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,5 Toilets +Elizabeth Grace Court,Parkview Estate Ikoyi Lagos,₦,"170,000,000/month",0,1,0,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom,Onikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 4bedroom Maisonette,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"9 No Of 1 Bed Room Flat, 20 No Of 2 Bed Room Flat, 24 No Of 4bed Room Flat, 1 No Of 5 Bed Room Penth House",Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +5bed Room Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets +5 Bed Room Fully Detach Duplex,Banana Island Ikoyi Lagos,₦,"950,000,000",0,1,0,5 beds, baths, Toilets +32 Units Of 3 Bedroom Flat Plus 24 Units Of 4 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"10,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land In Ikoyi,Macpherson Ikoyi Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,D Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With 2rooms Underground Bq Attached In Ikoyi,Macpherson Ikoyi Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With 2rooms Underground Bq Attached In Ikoyi,Macpherson Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +17 Rooms Furnished Guest House,"Osborne Foreshore, Second Avenue, Osborne Towers Osborne Foreshore Estate Ikoyi Lagos",$,"2,000,000",0,0,1,10 beds,10 baths,10 Toilets +Land In Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Fully Detached Duplex With Servant Quarters,Osbourne Estate Phase2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Vintage 9 Bedroom Detached Mansion On 766.416sqm,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,9 beds,10 baths,10 Toilets +60units Of Luxury 3bedroom Apartments And Studio Apartments,Garrald Building Old Ikoyi Gerard Road Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds, baths, Toilets +5bedroom Maisonette With Servant Quarters,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,0 baths,0 Toilets +9 Bedroom Detached Mansion On 766.416sqm,Banana Island Ikoyi Lagos,₦,"2,700,000,000",0,0,0,9 beds,0 baths,0 Toilets +Six Bedroom Semi Detached Luxurious Building With Private 8 Car Parking Space,Olawale Dawodu Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,1,6 beds,6 baths,7 Toilets +Luxury 4bedroom Maisonette Duplex,Acacia Close Osborne Foreshore Estate Ikoyi Lagos,₦,"79,000,000",1,0,0,4 beds,4 baths,5 Toilets +"A Brand New Tastefully Finished 5 Bedroom Duplex With 2 Room Bq At Parkview Estate, Ikoyi. Title: C Of O",Parkview Estate Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,6 baths,6 Toilets +Renovated 4bedroom Duplex,Dolphin Estate Ikoyi Dolphin Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Penthouse,D Old Ikoyi Ikoyi Lagos,₦,"10,001,000",0,1,0,4 beds,5 baths,5 Toilets +11 Units Of Brand New 3 Bedroom Flats With Bq,Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Maisonette Duplex,Alexander Way Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury Vintage 9 Bedroom Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Private Elevator And A Boys Quarter (bq),Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment In A Serene Environment,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq,"...,. Ikoyi Lagos",₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +Terrace Sale Ikoyi Lagos,Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets +Luxury 8 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,10 baths,10 Toilets +Land For Sale Ikoyi,Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +600sqms Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Osborne Phase 2 Land,5200sqm Waterfront",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Super Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"99,999,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Luxury Maisonnette + Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"61,990,000",1,1,0,3 beds,3 baths,4 Toilets +Waterfront Land Banana Island Ikoyi,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets +"Osborne Phase 1, Land",Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Parkview Estate Land, 1357sqm With Demolishshable Structure, Can Be Split Into 678sqm",Parkview Estate Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"49,990,000",0,0,0,4 beds,4 baths,5 Toilets +"Banana Island Land Reclamation Of 164 Acres, Ikoyi",Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets +2000sqm Land With 4 Bedroom Detached Duplex Plus Bq,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Osborne Phase 2 Land, 2915sqm",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"Ikoyi, Orsborne, Foreshore 4 Bedroom Maisonette + Bq",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"70,990,000",1,1,0,5 beds,5 baths,6 Toilets +3500sqm Land With Structure,Temple Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikoyi Land For Sale, 900sqm. 350 Million Asking",Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Top Notch Sky Scraper 3 Bedroom Apartment,Gerard Road Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Parkview Estate Land, 876 Sqm, With Demolishshable Structure On It",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Parkview Mansion Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"680,000,000",1,0,1,10 beds,10 baths,10 Toilets +"Osborne Phase 1, Land Size 584 Sqm For Sale",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +8 Master Bedroom Luxury Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,0 baths,0 Toilets +"Ikoyi Land For Sale, James George Street, 3994sqm",James George Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Parkview Estate Ikoyi 540sqm,Ikoyí Parkview Estate Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"69,999,000",0,0,0,4 beds,4 baths,5 Toilets +"Osborne Phase 1, Waterfront Plot",S Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Flats Apartments, Banana Island Ikoyi Lagos,₦,"3,500,000,000",1,1,1,4 beds,4 baths,4 Toilets +26000sqm Land,Off Gerad Road Ikoyi Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Parkview Estate , Land For Sale. Corner Piece, 950sqm",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +Banana Island Waterfront Land. 2000sqm,Banana Island Ikoyi Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Maisonnette,Banana Island Banana Island Ikoyi Lagos,₦,"49,990,000",0,0,0,4 beds,4 baths,5 Toilets +Queen's Drive Old Ikoyi Land,Z Old Ikoyi Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront View Plots Of Land,"Acacia Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +2700sqm Land With 6 Bedroom Detached Duplex,Ikoyi Makween Road Ikoyi S.w Ikoyi Lagos,₦,"1,620,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Osborne Phase 2 Land , 2915 Square Meters",Z Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Duplex,Osborne Foreshore Waterfront Osborne Foreshore Estate Ikoyi Lagos,₦,"29,990,000",0,0,0,4 beds,4 baths,4 Toilets +"Parkview Estate Land, 1000sqm Land Size On Agodogba",Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +"Parkview Estate Land, Size 950sqm. With Demolishshable Structure",Parkview Estate Ikoyi Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets +"Osborne Phase 1 Land, Size 548sqm",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Banana Island Land 1060 Square Meters.,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landed Property,Behind Golden Gate Restaurant Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"Osborne Phase 2 Land, 2500sqm",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"Banana Island Land, 2 Locations, 500 Square Meters Each.",Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Banana Island Luxury Flats ( Waterfront Views),Banana Island Banana Island Ikoyi Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Dry Land Fenced With Gate,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Three Bedrooms Apartment,Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,1,3 beds,3 baths,4 Toilets +An Exquisite 3 Bedroom Luxury Apartment In A Serene Environment,Gerard Road Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"680,000,000",0,1,0,5 beds,5 baths,5 Toilets +Neatly Built 3 Bedroom Pent House With Maid's Room,Onikoyi Banana Island Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +Foreign Designed Luxury 5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New And Contemporary Finished 5 Bedroom Detached House With Bq Swimming Pool,Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +29 Units Of Spacious 3 Bedroom Waterfront Apartments,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets +Renovated 5 Units Of 5 Bedroom Terrace,Banana Island Ikoyi Lagos,$,"1,400,000",0,0,0,0 beds,0 baths,0 Toilets +Parkview Mansion,S Parkview Estate Ikoyi Lagos,₦,"680,000,000",1,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +"5 Bedroom Fully Detached Duplex, With Jetty For Sale","Ikoyi, Lagos Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths, Toilets +Luxury And Spacious 7 Bedrooms Mansion,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished Units Of 3 Bedroom Apartments + A Room Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Apartment With Gym And Swimming Pool.,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Terrace Duplex With A Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,"Ikoyi, Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Massionette,Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 4 Units Of 5 Bedrooms Maisonette,Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,5 beds,5 baths,6 Toilets +Self Serviced 4 Bedroom Terrace Duplex At Ikoyi,Ikoyi Parkview Estate Ikoyi Lagos,₦,"155,000,000/sqm",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 2bqs,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Finished 3 Bedroom Apartments, Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,3 Toilets +Luxury And Spacious 2 Bedroom Flat,Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished Units Of 2 Bedroom Apartments + A Room Bq,Onikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterview 3 Bedroom Apartment With Bq,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,X Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace House With Two Living Room,"Osborne Foreshore Estate, Phase 1 Ikoyi Lagos. Osborne Foreshore Estate Ikoyi Lagos",₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets +4 Bedroom Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat Penthouse,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +3bedrooms Apartment With Bq,Z Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Duplex, Old Ikoyi Ikoyi Lagos,₦,"750,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Smart Home 5 Bedroom Semi Detached Duplex With 3 Rooms Bq, Banana Island",Banana Island Ikoyi Lagos,₦,"485,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Massionette,Banana Island Ikoyi Lagos,$,"1,000,000",1,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartments With 1bq,Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Fully Detached Mansion For Sale,"Ikoyi, Lagos Ikoyi Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Awolowo Road Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,2 Toilets +4 Bedroom Duplexes,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,5 baths,4 Toilets +"Automated Massion , Magnificent & Fully Furnished 10 Bedroom",Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Partitioned Land,Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With 2 Room Bq Swimming Pool And Elevator Cinema Room Inside Park View Estate Ikoyi.,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,1,0, beds, baths, Toilets +"Newly Built Luxury 5bedroom Semi Detached Duplex With Bq For Sale In A Mini Estate, Onikoyi.",In A Mini Estate In Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"360,000,000",0,1,1,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bed Semi Detached Smart Home With A Bq,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Super Spacious 5 Bedroom Luxury Maisonette With Swimming Pool, Gym And Elevator", Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Excellent 4 Bedroom Semi Detached Duplex With Swimming Pool And Gym, Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Deluxe 5 Bedroom Terrace Duplex With 2 Bq Location: Banana Island, Lagos.",Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds, baths, Toilets +4 Units Of Luxury 3 Bedroom Terrace With A Room Bq Each,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With Swimming Pool Ample Parking 5 To 6 Cars Cinema 2 Room Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +24 Units Of 4 Bedroom Flat At Ocean Parade,Banana Island Ikoyi Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House.,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +2500m2 With Federal C Of O At Osbourne Phase 2,Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool,= Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym On 650sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets +"Prime 6,931sqm Land At Glover Road",Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Parkview Estate Ikoyi Lagos,₦,"255,000,000",0,0,0,4 beds,0 baths,0 Toilets +Waterfront 4300sqm At Queens Drive,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex With Bq And Lush Gardens,Bank Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets +A Vacant Block Of All En Suite 10 Units Of Luxury Apartments Comprising The Followings: 1). 1 Unit Of 5 Bedroom Luxury Penthouse 2). 1 Unit Of 4 Bedroom Luxury Penthouse 3). 3 Units Of 3 Bedroom Maisonettes 4). 3units Of 3 Bedroom Flats 5). 1 Unit Of 2,Ikoyi Lagos,₦,"4,000,000",1,1,0, beds, baths, Toilets +Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +"1,939sqm Mixed Development Water Front Plot",Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom In Osbourne Phase 1 With 2 Spacious Living Rooms Terrace House And One Room Bq At The End Unit Of The Building With A Nice Size Corner Piece Yard,Osbourne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"182,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Big Waterfront Plot For Development In Osborne Phase 2 Estate, Ikoyi* Plot Measuring 4,000sqms With Lasg Cofo",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"199,500,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats Lying On 2500sqm Of Land.,Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0, beds, baths, Toilets +Block Of 6 Flats, Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Condominium With Family Living Room And A Maids Room, Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House.,Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +"Highrise With Penthouse And 26 Units, 3 Bedroom Flats &bq",Old Ikoyi Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +Brand New Penthouse, Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Brand New Luxury 2 Bedroom Apartment,"Ring Road, On The Right, By The Water Next To Osborne 2, Opposite Dolphin Ikoyi Lagos",₦,"112,000,000",0,0,0,2 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedrooms Fully Detached Duplex With Service Quarters.,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Detached Smart House With 8 Car Park Space And Elevator,Old Ikoyi Ikoyi Lagos,$,"1,500,000",1,1,0, beds, baths, Toilets +A 5 Bedroom Fully Furnished Penthouse Suite On 2 Floors With Pool,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets +"Prime 4,397sqm Land At Glover Road",Gerard Road Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets +Waterfront 5 Bedroom Luxury Detached House On 1300sqm With Jetty Access,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,5 beds, baths, Toilets +"8 Bedroom House With 3 Parlors, 4 Bedroom Bq, Swimming Pool And 1500sqm Land Size",W Parkview Estate Ikoyi Lagos,₦,"670,000,000",0,0,0,8 beds,0 baths,0 Toilets +"The Development Comprises Of 24 3 Bedroom Luxury Apartments. These Modern And Contemporary Apartments Are Equipped With Fully Fitted Kitchens And Appliances, Pre Wiring For Smart Home Automation Systems, Ensuite Bedrooms, Walk In Closets, Balconies And A",Old Ikoyi Ikoyi Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets +4bedrooms Semi Detached Duplex With Bq,Z Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +Block Of Flat On 1000sqm, Awolowo Road Ikoyi Lagos,₦,"510,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ojora Ikoyi *3,137* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets +2 Units Of 5 Bedrooms Detached Duplex With Classical Finishing,Z Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of 8 (nos) 4 Bedroom Luxury Flats With Service Quarters. The Property Features State Of The Art Finishes.,Old Ikoyi Ikoyi Lagos,₦,"1,950,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House With Bq Almost Completed In Shoreline Estate Just Before Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets +"Land Description: 1,500sqmt On A 19",Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +English Style 6 Bedroom Fully Detached Mansion,E Old Ikoyi Ikoyi Lagos,₦,"740,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Maisonnette In An Exclusive Mini Estate Of 4 Units In Banana Island,Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Semi Detached In Am Estate In Ikoyi,Ikoyi Lagos,₦,"295,000,000",0,0,0,5 beds, baths, Toilets +54 Apartment High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House 5299.745 Sqm.,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House With Swimming Pool And Bq,Parkview Estate Ikoyi Lagos,₦,"349,000,000",0,0,0,4 beds, baths, Toilets +Sales Alexander Ikoyi Waterfront Land Size!: 2750mt2title: Fed Govt C Of O.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House With Underground Swimming Pool And Bq,Old Ikoyi Ikoyi Lagos,₦,"545,000,000",0,0,0,5 beds, baths, Toilets +Block Of Flats Lying On 2500sqm Of Land.,Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Gym In A Mini Estate In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"645,000,000",0,0,0,5 beds, baths, Toilets +Contemporary 5 Bedroom Fully Detached House In Mini Estate Ikoyi,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +Land Measuring 2917sqm Situated In Osborne Scheme 2,Z Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +6931sqm Land At Glover Road Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +3100sqm Bank Rd Ikoyicofo,Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Serviced Luxury 5 Bedroom Fully Detached House, 2 Bq, Fully Fitted Kicthen, Ac In All Rooms & Fire Alarm System.",Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets +54 Apartment High Rise Property Comprising 2 Numbers Block Of Buildings A (9 Floors) And B (10 Floors) With Pent House 5299.745 Sqm.,Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +Lands,E Old Ikoyi Ikoyi Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Sales Alexander Ikoyi Waterfront Land Size!: 2750mt2title: Fed Govt C Of O.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment (en Suite),Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds, baths, Toilets +Joint Venture Of 4600sqm Waterfront Bare Land,Old Ikoyi Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex With Bq,Old Ikoyi Ikoyi Lagos,₦,"232,000,000",0,0,0,3 beds, baths, Toilets +Stunning 8 Units Of 4 Bedroom Semi Detached Townhouse,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets +Detached House On 5 Floor With 8 Car Park Spaces In Estate At Ikoyi,Old Ikoyi Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds, baths, Toilets +"26,000 Square Metersoff Gerrard Road, Ikoyi Lagos",Gerard Road Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets +1940sqm Land, Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonnette,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land In Old Ikoyi 2750mt2 Title: Fed Govt C Of O. 1500mt2 Can Be Reclaimed From The Water.,Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"8 Units Of 4 Bedroom Terrace, A Private Elevator, Dumb Waiter ( Freight Lift ) And A Service Quarter On Four (4) Floors.",Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds, baths, Toilets +Four Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Waterfront Residences In Banana Island* Built On On *6,200sqms*, This Project Has 18 Flats Units Of 3 Bed Flats And And 3 Penthouses",Banana Island Ikoyi Lagos,₦,"6,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Apartments, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets +"1150 Sqm Land At Magbon Close, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"718,000,000",0,0,0, beds, baths, Toilets +"Vacant Old Structure On 2,645 Square Meters Plot.", Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartment,Bourdillon Ikoyi Lagos,$,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Flats, Old Ikoyi Ikoyi Lagos,₦,"129,000,000",0,0,0,3 beds,0 baths,0 Toilets +4600 At Mcgregor Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets +Four Bedroom Terrace Duplex On Two Floors,L Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +44 Units Of Luxury Furnished 4 Bedroom,Bourdillon Ikoyi Lagos,$,"1,600,000",0,0,0,4 beds,0 baths,0 Toilets +Lands,E Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs In Ikoyi, Lagos:",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"590,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Luxury Apartment In A Fully Serviced Highrise Apartment,Bourdillon Ikoyi Lagos,$,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land For Sale At South West Ikoyi, 889.463m²",Ikoyi S.w Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"1,467.046 Square Meters Land",Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat,Bella Vista Estate Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,0 baths,0 Toilets +New Block Of Flat At Old Ikoyi 15 Units Of Luxurious 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,$,"9,000,000",0,0,0, beds, baths, Toilets +"The Waterfront Property Is A 4 Bedroom Unit Sitting On 4 Floors And On Land Size Of 1,200sqm",Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,6 beds, baths, Toilets +Apartments,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool??*, Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets +Higrise Apartment Luxuriously Built In 4 Buordillon Tower In Prestigious Ikoyi For Sale,Bourdillon Ikoyi Lagos,$,"4,000,000,000",0,0,0, beds, baths, Toilets +A Vacant High Rise Property Comprising 2 Numbers Block Of Buildings,Off Kingsway Road Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Room Bq In An Estate In Ikoyi,Ikoyi Lagos,₦,"375,000,000",0,0,0,5 beds, baths, Toilets +Block Of 8 (nos) 4 Bedroom Luxury Flats With Service Quarters. The Property Features State Of The Art Finishes.,Old Ikoyi Ikoyi Lagos,₦,"1,950,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Flat,Bellavista Estate Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +"Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi.",Osborne Foreshore Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi.",Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Waterfront Land Measuring 3,632m²",W Banana Island Ikoyi Lagos,₦,"1,200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Parkview Estate Ikoyi Lagos876 Square Meters,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +2 Units Of 3 Bedroom Flat, Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Building On A Piece Of Land Split Into 3 Units Of 3bedrooms, And The Other 2units Made Up Of 2 Bedrooms Each",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +24 Units Of 4 Bedroom Highrise Luxury Apartments In Ocean Parade Estate Banana Island,Banana Island Ikoyi Lagos,$,"35,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached House With Bq,Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Duplex With Bq Luxuriously Built,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Flats With Bq Brand New,Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Prime 6,500sqm Land At Ikoyi Crescent",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Old Ikoyi Ikoyi Lagos,₦,"780,000,000",0,0,0,5 beds,0 baths,0 Toilets +500sqm Available Land, Ikoyi Lagos,₦,"800,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Penthouse,Banana Island Ikoyi Lagos,$,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets +"5200m2 With Embankment, Federal C Of O & Lagos State Regularisation",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +1500 Dry Bare Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Luxury Highrise Apartments For Sale At 4 Buordillon Tower Ikoyi,Bourdillon Ikoyi Lagos,$,"4,000,000,000",0,0,0, beds, baths, Toilets +"Bedwell Ikoyi *16,895* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets +Land,Mcgregor Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bank Road Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Ikoyi Lagos,₦,"218,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land Use High Density Bedroom Colonial House With Bqland Size 2000sqm,Old Ikoyi Ikoyi Lagos,₦,"670,000/sqm",0,0,0, beds, baths, Toilets +"4bedroom(all Room Ensuite) Penthouse With Service Quaters In A Service Apartment Location: Tango Towers, Along Bourdillon Road, Ikoyi, Lagos.",Buordillon Road Old Ikoyi Ikoyi Lagos,$,"1,700,000",0,0,0, beds, baths, Toilets +5bedroom Duplex With Bq And Pool Inside Banana Island.,Banana Island Ikoyi Lagos,₦,"740,000,000",0,0,0,5 beds, baths, Toilets +"3,500 Square Metres With A Demolishable Colonial Building Is Now Available",D Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Waterfront Land At Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +27 Units Of 3 Bedroom Flats With Penthouse,Lawson Street Ikoyi Lagos,₦,"6,200,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Top Notch Exquisitely Finished Terraces , Maisonettes And Penthouses",Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +New 5 Bedroom Fully Detached Duplex With Bq Swimming Pool Cinema And Bq At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"980,000,000",0,0,0,5 beds, baths, Toilets +Penthouse At Old Ikoyi With Ultra Luxury,Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +2 Units Of 5 Bedroom Duplex Penthouse,Banana Island Ikoyi Lagos,$,"3,500,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Luxuriously Built Apartment On Buordillon Ikoyi,Bourdillon Ikoyi Lagos,$,"1,800,000",1,1,1,3 beds, baths, Toilets +4 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Terrace Houses. Each Unit Features: All Rooms Ensuite 2 Room Service Quarters 2 Car Garage,Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds, baths, Toilets +4080sqm Land, Bourdillon Ikoyi Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Semi Detached House With Bq And Open Rooftop Terraces Fitted Kitchen And Ample Parki5,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +"Land Size: 1,950 Sqmsbanana Island Waterfront Mixed Use Zone Plot*",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Water Front On 1000sqm Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,6 beds, baths, Toilets +5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets +Ultra Luxury 5 Bedroom Detached House With Elevator Swimming Pool Gym Ample Parking,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds, baths, Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema And Gym On 650sqm,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets +5 Bedroom Terrace House On 2 Floors With Bq And Fitted Kitchen,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets +"Ruxton Ikoyi *2,348* Sqmt Land",Old Ikoyi Ikoyi Lagos,₦,"420,000/sqm",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached House With Acs Sitout Terrace Fitted Kitchen Bq,Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached With Bq In An Estate In Ikoyi,Ikoyi Lagos,₦,"275,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Semi Detached House With Bq At Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets +6 Bedroom Fully Detached Smart Home With Bq,Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,6 beds, baths, Toilets +Super Spacious 5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment With 2 Sitting Rooms & Bq,S Old Ikoyi Ikoyi Lagos,₦,"172,000,000",0,0,0,3 beds, baths, Toilets +"Shoreline Estate, Ikoyi* Plot Measuring 876sqms",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +1170sqm Land For Sale @ Ikoyidimension: 18 Meters By 65 Meter,Off Alfred Rewane Ikoyi Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +A Vacant Block Of All En Suite 10 Units Of Luxury Apartments Comprising The Followings: 1). 1 Unit Of 5 Bedroom Luxury Penthouse 2). 1 Unit Of 4 Bedroom Luxury Penthouse 3). 3 Units Of 3 Bedroom Maisonettes 4). 3units Of 3 Bedroom Flats 5). 1 Unit Of 2,Ikoyi Lagos,₦,"4,000,000,000",1,1,0, beds, baths, Toilets +3944 Sqm Land, Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2553 Sqm Of Land On Milverton Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +4554sqm Land,Off Queens Drive Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Shoreline Estate, Ikoyi* Plot Measuring 1,015sqms With State C Of O",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Duplex With Bq,Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +"1,600sqm Land", Ikoyi Lagos,₦,"490,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm At Rumen Ikoyicofo,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +1500sqm Land,Lugard Street Old Ikoyi Ikoyi Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,6 beds,0 baths,0 Toilets +"26,000 Square Metersoff Gerrard Road, Ikoyi Lagos With Fed C Of O",Off Geread Road Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets +4500sqm Land At Old Ikoyi At Mckween,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +"4,300sqm Land With Registered Title", Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4600sqm Waterfront Land At Banana Island Ikoyi,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets +Ocean View Elegant 5 Bedroom Fully Detached House With Swimming Pool??*, Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Brand New Fully Fitted Luxury Service Apartments,Ring Road Ikoyi Lagos,₦,"159,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Luxury Apartments With Bq,Ocean Parade Banana Island Ikoyi Lagos,$,"1,200,000",1,1,0,4 beds,0 baths,0 Toilets +"4,000 & 4,244 Land At Queen Drive, Ikoyi. Title: C Of O",Queens Drive Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land, Parkview Estate Ikoyi Lagos,₦,"456,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",1,0,1, beds, baths, Toilets +Demolishable Buidling On 1000sqm At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"490,000,000",0,0,0, beds, baths, Toilets +Twenty Four Units (24) Of Two (2) Bedroom Apartments,Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets +"Spectacular Architecture, 5 Bedrooms Semi Detached House; Nestled Within A Prestigious Estate",Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +"Land Size: 1,950 Sqmsbanana Island Waterfront Mixed Use Zone Plot*",Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +"Studio, 2, 3 And 4 Bedroom Apartments",Before 3rd Mainland Ilubirin City Ikoyi Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached House With 1 Room Bq For Commercial 340sqm Land,Raymond Njoku Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +"A 5 Bedroom With 2 Spacious Living Rooms Terrace House And One Room Bq At The End Unit Of The Building With A Nice Size Corner Piece Yard,",Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",1,0,0,5 beds, baths, Toilets +2300sqm Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Luxury Smart House With Penthouse On With Elevator And 8 Car Park Spaces,Old Ikoyi Ikoyi Lagos,$,"1,800,000",1,1,0,5 beds, baths, Toilets +Magnificent And Well Finished 5 Bedroom Detached House In A Residential Zone,W Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets +4300sqm At Queens Drive Ikoyi,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex In Gulliano By Sujimoto Banana Island,Banana Island Ikoyi Lagos,₦,"595,000,000",0,0,0,5 beds, baths, Toilets +Digital Luxury Apartments And Duplexes With Bq,Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Flat With Bq And Pool,Parkview Estate Ikoyi Lagos,₦,"97,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Serviced Luxury 5 Bedroom Fully Detached House, 2 Bq, Fully Fitted Kicthen, Ac In All Rooms & Fire Alarm System.",Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets +"Tastefully Finished 4 Units Of 5 Bedroom Fully Serviced Maisonette Plus Maids Room Sitting On 1,088sqm Land",W Banana Island Ikoyi Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds, baths, Toilets +"6 Bedroom Fully Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",G Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,0 baths,0 Toilets +"House On 4,088sqm On Bourdillon Rd, Ikoyi With Lagos State Title (91 Yrs Unexpired Residue)",Bourdillon Ikoyi Lagos,₦,"755,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool Cinema Gym And Open Roof Terrace In Mini Estate In Banana Island,Banana Island Ikoyi Lagos,₦,"740,000,000",0,0,0,5 beds, baths, Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty,Ikoyi Lagos,₦,"615,000,000",0,0,0,5 beds, baths, Toilets +Waterfront 5 Bed Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Great Buy 4 Bedroom Terrace Duplex With Bq Waterfront Garden Ample Parking,Ikoyi Lagos,₦,"195,000,000",0,0,0,4 beds, baths, Toilets +Waterfront 5 Bed Fully Detached Duplex With Jetty And 2 Bqs,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront 6 Bedrooms Detached House With Swimming Pool Cinema And Gym,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds, baths, Toilets +"5 Bedroom Semi Detached Duplex, Rooftop Terrace, Communal Pool And A Room Bq",S Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Detached Luxury Smart House In Banana,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds, baths, Toilets +"A Commercial Building Consisting Of 15 Floors Of Office Spaces Inclusive Of The Ground Floor, Each Floor Measuring Approximately 1000 Square Meters Together With Facilities",Old Ikoyi Ikoyi Lagos,$,"110,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House With Bq Almost Completed In Shoreline Estate Just Before Banana Island Road,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets +"4,088sqm On Bourdillon Rd, Ikoyi With Lagos State Title (91 Yrs Unexpired Residue)",Bourdillon Ikoyi Lagos,₦,"735,000/sqm",0,0,0, beds, baths, Toilets +"4,300sqm Land Along",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land At Alexander 2800sqm,Old Ikoyi Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Land Measuring 3,500 Square Metres With A Demolishable Colonial Building Is Now Available On Temple Road, Old Ikoyi, Lagos.*",Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +An Ultra Luxury 4 Bedroom Apartment, Bourdillon Ikoyi Lagos,$,"1,800,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq In A Service Estate,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets +4bedroom(all Room Ensuite) Penthouse With Service Quaters In A Service Apartment.,Bourdillon Ikoyi Lagos,$,"1,700,000",0,0,0, beds, baths, Toilets +Partitioned Land Measuring 3100sqm, Ikoyi Lagos,₦,"850,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerard Road Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land Measuring 2917sqm Situated In Osborne Scheme 2,Z Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mckween Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm At Old Ikoyi With Demolishable Building,Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Land,Alexander Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2750mt2 Water Front Land,Alexandria Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In High Density Old Ikoyi 6400sqm,Old Ikoyi Ikoyi Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets +Waterfront 3 Bedroom Flat With Bq,Ikoyi Lagos,₦,"159,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Furnished And Unfurnished 1st Floor, 3 Bedroom Apartment + 2rooms Bq.",S Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Strategically Located:2,000sqm Land", Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Deluxe Penthouse With Bq And Elevator,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds, baths, Toilets +2 Bedroom Lovely And Luxurious Apartment,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +A 4 Bedroom All En Suite Serviced Apartment With Bq,Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lavishly Finished 5 Bedrooms Detached House On 4 Floors, Old Ikoyi Ikoyi Lagos,₦,"798,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq At Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Apartment (en Suite) ,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +A Vacant Block Of All En Suite 10 Units Of Luxury Apartments,Bourdillon Ikoyi Lagos,₦,"4,000,000,000",1,1,0, beds, baths, Toilets +Fully Detached Houses,Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +"11,743sqm Prime Land At Gerrard Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets +"Fantastic Fully Detached 5bedrooom Duplex, Excellent 2bedroom Bq",Q Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Waterfront Estate Within Banana Island Estate, On 8100sqm Land Three Blocks Each With 6 Units 3 Bedroom Apartments And 1 Unit Penthouse, Totaling 21 Units Of Apartments.",Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0, beds, baths, Toilets +Spacious 3 Bedroom Apartment,Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 3 Bedroom Serviced Flat,"Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"210,000,000",1,0,1,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities,Parkview Parkview Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,150,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Tastefully Finished 5 Bedroom Fully Detached Duplex,D Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Oba Elegushi Road (former Club Road) Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,₦,"5,250,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely And Luxuriously Built 2 Units Of 5 Bedroom Detached Duplex With 2 Rooms Bq,Off Alfred Rewane Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Finished 6 Bedrooms,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom,Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Topnotch Finished 3 Bedroom Apartment + Bq + Swimming Pool + Gym + Jetty,Banana Island Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +Exquisitely Finished New Palatial 6 Bedroom Mansion,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached Duplex With A Bq,Ikoyi Lagos,₦,"610,000,000",1,1,0,6 beds,6 baths,7 Toilets +Beautifully Finished 5 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +State Of The Art 5 Bedroom Luxuriously Finished House,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"351,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,4 baths,4 Toilets +Luxury Finished 6 Bedrooms Mansion With 2 Room Bq,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Banana Island Ikoyi Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 8 Bedroom Mansion In Ikoyi,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets +Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Waterfront Apartment,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikoyi Lagos,₦,"301,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Apartment,Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,star Hotel For Sale In Ikoyi Lagos State",Ikoyi S.w Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +4800sqm Of Bare Land,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,760,000,000",0,0,0,0 beds,0 baths,0 Toilets +8bedroom Fully Detached Mansion,"Osborne Phase 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"1,000,000,000",0,0,0,8 beds,8 baths,10 Toilets +1939sqm Waterfront Land,Zone Q In Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200sqm Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of Flat,Gerard Road Ikoyi Lagos,₦,"5,000,000,000",0,1,0,10 beds,10 baths,10 Toilets +Six Bedrooms For Sale In Ikoyi,Ikoyi West Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000/year",0,1,0,6 beds,6 baths,7 Toilets +Luxury Flat,Ocean Parade Banana Island Ikoyi Lagos,₦,"480,000,000/sqm",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"1,150,000,000",0,1,0,5 beds,5 baths,7 Toilets +"1,800 Sqm Waterfront Land",Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (price Per Sqm),Ruxton Ikoyi Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land,Bourdillon Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Alhaji Bashorun Street Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Per Sqm,Ikoyi Lagos,₦,"650,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Banana Island Ikoyi Lagos,$,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Eight Bedroom En Suite Mansion With Bq And Swimming Pool,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,1,8 beds,8 baths,9 Toilets +5 Bed Luxury Maisonette,Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"3,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1900sqm Waterfront Land,"Zone Q,banana Island Banana Island Ikoyi Lagos",₦,"1,100,000/sqm",0,0,0, beds, baths, Toilets +Available Land,Gerrard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Magbon Close Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Joint Venture, Bourdillon. Ikoyi*",Bourdillon Bourdillon Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +Exquisite Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With 2 Bq,Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 8 Bedroom Mansion With Bq And Swimming Pool In Parkview Estate,Gerard Road Ikoyi Lagos,₦,"680,000,000",0,1,1,8 beds,8 baths,8 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5000sqm Waterfront Land With Jetty,J43 Banana Island Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +Available Land,Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +14 Room Mansionette + Penthouse,Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4088sqm Land With A Massive 7 Bedroom Fully Detached House With Bq,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +7000sqm Land (high Density),Gerard Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Joint Venture Development On 4570.473sqm Waterfront Banana Island Lagos,Banana Lsland Foreshore Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets +Available Land,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Gerard Road Ikoyi Lagos,₦,"462,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Waterfront Banana 4570.473sqm Jv, Banana Island, Ikoyi","Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"750,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Block Of 3bedroom Flat With Bq,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +24 Units Of 3 Bedrooms Flats,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land Per Sqm,Ikoyi Lagos,₦,"950,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Penthouse Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +4611sqm Waterfront Land,"Zone J 15,banana Island Banana Island Ikoyi Lagos",$,"10,000,000",0,0,0, beds, baths, Toilets +"4,088sqm Land",Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion,Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"210,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Per Sqm,Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable Detached House,Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Smart Maisonette,Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land (price Per Sqm),Off Queens Drive Ikoyi Lagos,₦,"680,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +New 3bedroom Apartment,Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,James George Street Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq For Sale,Banana Island Ikoyi Lagos,₦,"1,100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Joint Venture Development,Bourdillon Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Sea View 5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land (price Per Sqm),Cooper Road Ikoyi Lagos,₦,"650,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Lagoon Front 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,Bourdillon Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,500sqm With A Demolishable Colonial Building",Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Waterfront 5 Bedroom Detached House With 3 Rooms Bq,"Osborne Foreshore Estate,ph 1 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Turnbull Rd Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands (various Prices),Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"620,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Glover Road Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Acre Of Land,Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Smart House With Swimming Pool,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Commercial Office Complex Of 15 Floors With Each Floor At 1000sqm,Old Ikoyi Ikoyi Lagos,$,"120,000,000",0,0,0, beds, baths, Toilets +3100sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Flat(serviced On 5th Floor) With Swimming Pool,24hrs Electricity,24hrs Security,gym Etc","Rumens Road,off Kingsway Road Old Ikoyi Ikoyi Lagos",₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +8 Bedroom Duplex Mansion,Old Ikoyi Road Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,1,8 beds,8 baths,8 Toilets +Land Per Sqm,Banana Island Ikoyi Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Pent House,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Terrace Duplex Luxury Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,6 baths,7 Toilets +Available Land,Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 3 Bedroom En Suite Serviced Block Of Flats,D Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +1950sqm Land With A Detached Duplex,2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"1,267,500,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,8 beds,0 baths,0 Toilets +Land,Shoreline Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +1804sqm Waterfront Land,"Osborne Foreshore Estate,ph 1 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Available Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11 Units Of Brand New 3 Bedroom Flats With Boy's Quarters,",An Estate Ikoyi Lagos,₦,"2,300,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cornerpiece Old Ikoyi Land For Joint Venture:,Reeve Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +950sqm Cornerpiece Land,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Lagos,₦,"168,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +City View 3 Bed Apartment With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 3 Bed Apartment With Bq,Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Townhouse With A Room Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Townhouse With A Room Bq At Mojisola Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,5 baths,8 Toilets +A 4 Bedroom All En Suite Serviced Apartment With Bq,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Renovated 4 Bedroom 4th floor Flat,Alexander Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,1,0 beds,0 baths,0 Toilets +3 Bedroom +bq Duplex In Ikoyi,Osborne Foreshore Osborne Foreshore Estate Ikoyi Lagos,₦,"50,990,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex All Rooms En Suite With A Room Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets +31 Exclusive Residences Comprising Of Enormous All En Suite 3 Bedroom Duplexes,Ikoyi Lagos,₦,"206,000,000",0,0,0,3 beds,3 baths,4 Toilets +The Overlook Condominiums,"3, Okotie Eboh Street, Awolowo Road Ikoyi Lagos",₦,"206,000,000",0,1,1,3 beds,3 baths,4 Toilets +9 Storey Building Of Executive Flats,Okotie Eboh Street Ikoyi Lagos,₦,"206,000,000",0,0,0,2 beds,2 baths,3 Toilets +"5,300 Water Front Land",Z Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Mansions With Boys Quarter,"Off Abia Street, Banana Island Ikoyi Lagos",₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Plot Of Land,Parkview Estate Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Detched Mansion, Banana Island Ikoyi Lagos,₦,"1,600,000,000",1,0,0,0 beds,0 baths,0 Toilets +100% Dry Land With Government Excision Suitable For Residential,Bolorunpelu Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Exclusive 4 Bedroom Terrace With Gym, Swimming Pool.",F Osborne Foreshore Estate Ikoyi Lagos,₦,"148,500,000",1,1,0,4 beds,4 baths,0 Toilets +Newly Built 5 Bedroom Maisonette,Off Alfred Rewane Road/mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Duplex,Ikoyi Lagos,₦,"135,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Apartment, Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 8bedroom Fully Detached And 2 Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"950,000,000,000",0,0,0,8 beds, baths, Toilets +Off Plan Fully Detached Duplex,Ikoyi Crescent Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Alexander Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Uniquely Designed 5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"595,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"305,000,000",0,1,0,5 beds,7 baths,8 Toilets +Brand New Spacious 3 Bedroom Apartment,Second Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,3 Toilets +Well Built 6 Bedroom Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,1,0,6 beds,8 baths,8 Toilets +Exquisitely Finished 6 Bedroom Fully Detached House,Banana Island Estate Ikoyi Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,1,0,6 beds,6 baths,6 Toilets +Brand New Luxury 3 Bedroom Apartment,Off Glover Road Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached House With 2 Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +15000 Sqm Land For Outright Sale Off Bourdillion Road Ikoyi,Off Bourdillion Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished 6 Bedroom Fully Automated Magnificently & Newly Built Detached House,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,7 baths,7 Toilets +Brand New 6 Bedroom Fully Detached Duplex,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,1,0,6 beds,6 baths,6 Toilets +"Exquisitely Finished 5 Bedroom Detached With 2 Rooms Bq Available For Sale In Parkview Estate,ikoyi",Parkview Right Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Mansion,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Luxury Detached Duplex,Second Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Mansion With Swimming,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Off Alexander Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful And Clean Three Bedroom Apartment With One Room Maid's Room,R Ikoyi Lagos,₦,"250,000,000",0,0,1, beds, baths, Toilets +Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets +"960sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Maisonette Penthouse With Pool, Gym, Fully Fitted Kitchen", Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Contemporary Built And Tasteful Finished 5 Bedrooms Fully Detached,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4bedroom Terrace Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +"New 4bedroom Semi Detached House With Bq In Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1000sqm Land In Osborne Phase 1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +"480sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +8 Bedroom Mansion,Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets +"Ultra Modern 5 Bedroom Terrace Duplex, 2 Bq's Each",Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Penthouse Apartment With Bq,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +New Contemporary Built And Tasteful Finished 5 Bedrooms Fully Detached,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,1,0,5 beds,5 baths,6 Toilets +"745sqm Land In Osborne Phase 2 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"260,000/sqm",0,0,0, beds, baths, Toilets +"2500sqm Land On Rumens Road, Ikoyi Lagos",Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Bella Vista Estate Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,3 baths,4 Toilets +Distress Sale: 800sqm Land,S Osborne Foreshore Estate Ikoyi Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 5bedroom Fully Detached House With 2rooms Bq,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress 3 Bedroom Pent House Maisonette With Bq,Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +"8units 3bedroom Flat With Bq, 2units 4bedroom Penthouse Maisonette Duplex With Bq And 1 Unit 1 Bedroom Flat",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,8 beds,8 baths,9 Toilets +"8 Bedroom Mansion At Osborne Phase1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,1,0,8 beds,8 baths,9 Toilets +"1500sqm Land In Osborne Phase 1 Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"570,000/sqm",0,0,0, beds, baths, Toilets +New 5 Bedroom Semi Detached House With Bq,S Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress Sale 4bedroom Pent House Maisonette With Bq And With Elevator,Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2500sqm Land On Oba Eleguishi Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"3100sqm Land On Bank Road, Ikoyi Lagos",Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Macpherson Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +"18,000m2 Land With Frontage Directly Facing Kingsway Rd And Two Other Streets N15b",Old Ikoyi Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +Luxury New 4bedroom Terrace Duplex With Bq At Osborne Phase1 Estate Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +"840sqm Land On Cooper Road, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"650,000/sqm",0,0,0, beds, baths, Toilets +"4 Bedroom Luxury Pent House Maisonette With Bq, Pool, Gym Etc In Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +*excellently Built 5 Bed Semi Detached Duplex In Ikoyi,Ikoyi Lagos,₦,"350,000,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Banana Island Estate Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale At Banana Island,Off 2nd Avenue Close To Mike Adenuga House Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +English Style 6 Bedroom Fully Detached Mansion,S Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Mini Estate Available,Banana Island Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets +"Super Spacious 5 Bedroom Luxury Maisonette With Swimming Pool, Gym And Elevator",3 Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,0 baths,0 Toilets +Newly Built And Well Maintained 3 Bedroom Flat Luxury Apartment + Bq,Gerard Road Ikoyi Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Waterfront 5 Bedroom Fully Detached Duplex With Jetty And 2 Bqs, Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,0 baths,0 Toilets +Newly Built And Well Maintained 3 Bedroom Flat + Bq (6th Floor),S Gerard Road Ikoyi Lagos,₦,"165,000,000",0,1,0,3 beds,4 baths,5 Toilets +Fully Fenced And Gated Corner Piece Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Terrace Duplex,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,3 beds,3 baths,4 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"545,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Corner Piece Plot Of Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +570sqm Residential Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +A New Luxury 4 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Luxurious 4bedroom Penthouse,Bourdillon Ikoyi Lagos,$,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New Tastefully Built 5bedrooms Detached Duplex For Sale At Banana Island Ikoyi.,Banana Island Ikoyi. Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Units Of 6 Bedrooms Fully Detached Duplex With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury Finished 6 Bedrooms Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Banana Island Ikoyi Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Smart House,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 2 Room Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Water Front Plot,Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 6 Bedrooms House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinema",Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New 5 Bedroom Fully Detached Smart House With Swimming Pool, Private Elevator And Cinemaroom",Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With En Suite Basement,Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Banana Island Ikoyi Lagos,₦,"1,150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Roof Top Terrace And 2 Bq,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool,Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +"5 Bedroom Semi Detached Duplex + Rooftop Terrace,",Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,5 beds,0 baths,0 Toilets +Land Measuring 1600sqm,Off Turnbull Road Ikoyi Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Fully Detached Duplex, Swimming Pool, Private Elevator",Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 And 5 Bedroom Smart Maisonette,Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4nos All Ensuite 5bedroom Maisonette Plus Bq,Banana Island / Onikoyi Road Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Luxury Detached Duplex With Swimming Pool,Lekki County Banana Island Ikoyi Lagos,₦,"135,000,000",0,1,1,5 beds,6 baths,6 Toilets +??luxury 4 Bedroom Semi Detached Duplex With Swimming Pool??*,Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds, baths, Toilets +An All Ensuite 4bedroom Semidetached Duplex Plus Bq,Dolphin Estate / Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +"2,923.345 Sqm. Land", Banana Island Ikoyi Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Renovated 5bedroom Semi Detached Duplex,S Dolphin Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Waterfront 5 Bedroom Duplex With Servant Quarter,Ikoyi Lagos,₦,"580,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built & Well Maintained Block Of Flats Of 3 Bedrooms,"Gerrard Rd,ikoyi, Lagos State Ikoyi Lagos",₦,"165,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ikoyi Sales,Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse Flat With Bq,Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Apartment With A Room Bq, Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,0 baths,0 Toilets +8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets +Block Of Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 4 Bedroom Semi Detached House With Bq,Off Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Luxuriously Finished House With 2 Bq,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached House With Swimming And Cinema,Ikoyi Lagos,₦,"1,400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Block Of 29 Units Of 3 Bedroom Flats,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Duplex With 2 Rooms Self Contained Bq,Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 3 Bedroom Flat With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat With Bq,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Four Bedroom Massionate,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mansion,Z Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,10 baths,10 Toilets +2 Number Brand New Storey Buildings,Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Maisonette With Bq,2nd Avenue Extension Ikoyi Lagos,₦,"15,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion,Shoreline Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,0 baths,0 Toilets +Mini Flat,Z Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,1 beds,2 baths,2 Toilets +Off Plan Sales,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",1,1,0, beds, baths, Toilets +Block Of 10 Units Of 4 Bedrooms Flats,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets +"8bedroom [email protected] Estate,ikoyi",Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,8 beds,8 baths,9 Toilets +"6 Bedrooms, 2 Unique Living Rooms",Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,6 beds,7 baths,8 Toilets +Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 5 Bedroom Detached House With 2 Rooms Bq,Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +8 Masters Bedrooms Mansion,Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartment,Z Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikoyi Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully 5bedroom Fully Detached Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,0,1,5 beds,5 baths,6 Toilets +Mansion On 1500sqm Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms All En Suite In Ikoyi,Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedrooms Apartment (18 Units),Banana Island Bella Vista Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat (29units),Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedrooms Duplex,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Bedroom Commercial Building On 550sqm,Awolowo Road Ikoyi Lagos,₦,"550,000,000",0,0,0,8 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex + Bq,Awolowo Road Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex + Bq,Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets +Lovely Mini Flat,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000",1,0,0,1 beds,1 baths,0 Toilets +4 Bedroom Flat With Bq,Parkview Estate Ikoyi Lagos,₦,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedrooms Apartment With Bq,Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Mansion,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached And Serviced Mansion,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built Waterview 5 Bedroom Mansion,Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Apartment With Bq,D Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,0 Toilets +New Built High 2 Units High Rise Blocks Of Flats,"Off Kings Way Road , Ikoyi . Ikoyi Lagos",₦,"15,000,000,000",0,1,0, beds, baths, Toilets +Brand New 6 Bedroom Automated Luxury Mansion,Shoreline Estate Ikoyi Lagos,₦,"1,500,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,A Zone Banana Island Ikoyi Lagos,₦,"950,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedrooms Apartment (60 Units),Ikoyi Lagos,₦,"170,000,000",1,1,1,3 beds,3 baths,3 Toilets +4612sqm Waterfront Residential Land,Zone J Banana Island Ikoyi Lagos,$,"10,000",0,0,0, beds, baths, Toilets +*land,J Zone Banana Island Ikoyi Lagos,₦,"5,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Penthouses,Lugard Avenue Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Flat @ikoyi,Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 & 5 Bedroom Penthouse,Lugard Avenue Macpherson Ikoyi Lagos,₦,"750,000,000/year",0,0,0, beds, baths, Toilets +Lovely 3 Bedroom Flat,Ikoyi Lagos,₦,"240,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Luxury 4 Bedroom Terrace Duplex @ Ikoyi,Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +New 4 Bedroom Terrace Duplex With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2306sqm Land, Zone J, Residential Plot",Zone J Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0, beds, baths, Toilets +Luxury 8 Bedrooms Mansion At Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"650,000,000/year",0,0,0,8 beds,8 baths,9 Toilets +*land For Sale,H Zone Banana Island Ikoyi Lagos,₦,"2,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +11 Units Luxurious 3 & 4 Bedrooms Flats,Off 2nd Avenue Extension Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Waterfront Luxury 3 Bedroom Apartment,Marion Apartment Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette,"Block 4, Plot 4, Joe Faraday Street, Olori Mojisola Avenue, Off Banana Island Rd. Ikoyi. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat,Ikoyi Lagos,$,"1,300,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex For Sale!!!!,Ikoyi Lagos,₦,"450,000,000",1,0,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Maisonette For Sale!!!!,Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,6 baths,7 Toilets +Luxury 3 Bedroom Flat For Sale,Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment,Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat With A B.q,Glover Road Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets +Luxury 4 Bedroom Flat For Sale,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,6 Toilets +"Newly Built Luxury 3 Bedroom Apartment With Gym, Communal Pool And A Room",Ikoyi Lagos,₦,"210,000,000",1,1,0,3 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace House With Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built High Rise Property Comprising Of 3 Bedroom Flats, 4 Bedroom Maisonette, 4 Bedroom Penthouse",Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"260,000,000",1,1,1,3 beds,3 baths,4 Toilets +Water View 500sqm Bareland In Banana Island Lagos,Banana Island Banana Island Ikoyi Lagos,$,"1,200,000/sqm",1,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",1,0,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedrooms Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,4 baths,4 Toilets +30 Units Of Luxury Fully Serviced 3 Bedroom Flat (off Plan),Bourdillon Ikoyi Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxuriously Structured 5 Bedroom Semi Detached Duplex Plus Bq For Sale At Ikoyi,Banana Island Rd Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 8 Bedroom And 4 Parlours Castle In Osborne Foreshore Estate, Ikoyi",Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,8 beds, baths, Toilets +Very Lovely 4 Bedroom Terraced House With Boys Quarter,Z Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Designed 5 Bedroom Ultra Luxury Terrace Duplex For Sale At Banana Island. Ikoyi,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds, baths, Toilets +Innovation!!! Luxury!!!!! Grandeur!!!!!!!,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"135,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +Luxury Redefined The Aria,Royal Palms Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,8 baths,8 Toilets +The 31 Luxury Units Literally Overlook The Ikoyi Golf Course As Well As The Lagos Polo Club.,Okotiebo Old Ikoyi Ikoyi Lagos,₦,"202,331,250",0,1,0,10 beds,10 baths,10 Toilets +4 Bedroom Terrace Duplex With A Bq, Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,1,4 beds,4 baths,5 Toilets +Land,Glover Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq Available,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq, Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,3 Toilets +"Beautiful, Single Family Semi Detached Home With 3 Bqs",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,0,6 beds, baths, Toilets +2 Units Of 3 Bedroom Luxury Apartment Available,Banana Island Ikoyi Lagos,₦,"135,000,000",1,1,0,3 beds,3 baths,3 Toilets +"Beautiful, Single Family Semi Detached Home With Original Tile Floors",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"275,000,000",0,1,0,6 beds, baths, Toilets +"Beautiful, Single Family Terraced Duplex Home With Original Tile Floors",Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds, baths, Toilets +Modern Design Luxury 3 Bedroom Apartment,Banana Island Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds, baths, Toilets +"Luxurious 4 Bedroom Maisonette At The Ime Height, Ikoyi","Ime Height, Alexander Road Gerard Road Ikoyi Lagos",₦,"132,000,000",1,0,0,4 beds,4 baths,5 Toilets +Available Land,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands (various Prices),Banana Island Ikoyi Lagos,₦,"1,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Mixed Use Land,Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Furnished 4 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale,Parkview Estate Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,7 baths,7 Toilets +A Well Situated 1085sqm Land Available At Banana Island For Urgent Grab,Banana Island Ikoyi Lagos,$,"2,100,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Penthouse In Ikoyi,... Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex,Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +2917.73sqm Waterfront Land,Osborne Phase 2 Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq Attached,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",1,0,0,4 beds,6 baths,6 Toilets +A Classic Super Luxury 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,6 beds,6 baths,7 Toilets +"6,000 Sqm Of Land On 2nd Avenue, Ikoyi, Lagos",On Second Avenue Few Blocks Away From Defence House 2nd Avenue Extension Ikoyi Lagos,₦,"3,600,000,000,000",1,0,0, beds, baths, Toilets +4 Bedrooms Semi Detached,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Norman Williams Street Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,401sqm Land",Mekunwen Street Off Queens Drive Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive Land @ Bourdillon Road Is Ready For Outright,Bourdillon Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Huge Land For A Jv?? Waterfront Banana ??,Banana Island Ikoyi Lagos,₦,"3,450,000,000",0,0,0, beds, baths, Toilets +Available High Rise Building Apartments,"17/17a, Olu Holloway Road. Ikoyi Lagos",₦,"12,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive Land On Cameron Road Ikoyi,Cameron Road Ikoyi Lagos,₦,"1,288,000,000",0,0,0, beds, baths, Toilets +"5,200sqms Joint Venture",Ajanaku Street Off Salvation/opebi Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Good Size Land On Polo Road Ikoyi,Polo Road Ikoyi Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets +Massive Land @ Falomo Close,Falomo Close Falomo Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Well Built 4 Bedroom Semi Detached House With A Staff Room,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Hot New 5,400sqms Jv @ Glover Road, Old Ikoyi",Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Very Massive Land,Alexander Ave Ikoyi Lagos,₦,"2,388,750,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments,20 Bourdillon Ikoyi Lagos,₦,"370,000,000/sqm",1,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,"Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"300,000,000",0,0,1,4 beds,5 baths,5 Toilets +3 Bedroom Luxury Houses,Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Tastefully Finished 5bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,5 beds,8 baths,8 Toilets +Luxury 3 Bedroom House,Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached House,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom House,Banana Island Road Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Ikoyi Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Onikoyi Lagos Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Land For Sale At Banana Island, Ikoyi",Zone A Banana Island Ikoyi Lagos,₦,"750,000/sqm",0,0,0, beds, baths, Toilets +Brand New Tastefully Finished 5bedroom Semi Detached House,Banana Island Road Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom House,Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace House,Ikoyi Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedroom Semi Detached House,Ikoyi Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land For Sale At Cooper Road,ikoyi",Cooper Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached House,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Banana Island Road Banana Island Ikoyi Lagos,₦,"1,350,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Full Service Pad, Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +"4 Bedroom Luxury Apartment With Bq In Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Serviced 3 Bedroom Flat,Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq Pool,Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment Plus 1 Room Bq,8 Thompson Avenue Bourdillon Ikoyi Lagos,₦,"140,000,000",1,0,0,3 beds,2 baths,3 Toilets +A Land,Osborne Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Detached Duplex 2wings,Banana Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,Old Lkoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land,"*average Sized Plots On Macgregor Road, Old Ikoyi* Old Ikoyi Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +A Land,Bananas Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Land,"Meckwueen Rd,ikoyi Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +"2,330 Square Meters","20a, Gerrard Ikoyi, Lagos. Gerard Road Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Fenced And Gated Corner Piece Plot Of Land, Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom With En Suite Basement And Bq,Ikoyi Lagos,₦,"320,000,000",0,1,1,5 beds, baths, Toilets +3 Bedroom Luxury Apartment With 2 Rooms Bq,Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,0,3 beds,6 baths,6 Toilets +Amazing 4 Bedroom Terrace Duplex With Swimming Pool And Gym,Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0, beds, baths, Toilets +Land For Sale At Ikoyi With Federal C Of O,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Parkview Ikoyi,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"Waterfront Plot, Mojisola Onikoyi Estate, Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land Measuring 3133sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Bank Road Ikoyi,Bank Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Built 4 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Built 4 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Apartments,Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,5 beds, baths, Toilets +Prime Water Front Plot Of Land,"Osborne Phase 2 Ikoyi, Lagos Ikoyi S.w Ikoyi Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +Plot Of Land,"Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"800,000/sqm",0,0,0, beds, baths, Toilets +3bedroom Luxury Terrace Duplex,"Banana Island, Lagos Banana Island Ikoyi Lagos",₦,"290,000,000",0,0,0,3 beds, baths, Toilets +Block Of 27 Flats Of 3 Bedrooms,Off Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"6,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 6 Bedroom Mansion,"Shoreline Estate, Ikoyi Ikoyi Lagos",₦,"1,400,000,000",0,0,0,6 beds, baths, Toilets +Penthouse,Bourdillon Ikoyi Lagos,₦,"600,000,000",0,0,0,4 beds,6 baths, Toilets +"Distress Sale: Plot Of Land For Sale In Lekki, Lagos",Bourdillon Ikoyi Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Luxurious High Rise With European Finishes,Glover Road Ikoyi Lagos,$,"35,000,000",1,0,1, beds, baths, Toilets +Newly Built 5 Bedroom Detached House For Sale In A Serene Environment,Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets +6 Bedroom Detached Duplex For Sale,Ikoyi Lagos,₦,"750,000,000",0,0,0,7 beds,6 baths,7 Toilets +3 No 5 Bedroom Semi Detached Houses At Parkview Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 3bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,3 beds,3 baths,4 Toilets +2500sqm Of Land,Park View Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Units Of 4 Storey Ikoyi Property,Awolowo Road Ikoyi Lagos,₦,"2,000,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000/year",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"50,000,000/year",1,1,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq, Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat,Moseley Road Mosley Road Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths, Toilets +4 Bedroom Luxury Duplexes,4 Kingsway Close Off Kingsway Road. Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Room Bq,Oniru Victoria Island Ikoyi S.w Ikoyi Lagos,₦,"120,000,000/year",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Apartment For Sale In Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Tower 3 Bedroom Apartment,Tango Towers Bourdillon Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace Duplex,Off Macpherson Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Glover Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1430sqmland,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +2500sqm Waterfront Land For Joint Venture,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +1600sqm Land,Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Brand New Self Service Fully Fitted 5 Bedroom Terrace,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury Fully Fitted 4 Bedroom Apartment,Off Tumbull Drive Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Fully Tenanted 15 Floor High Rise,Old Ikoyi Ikoyi Lagos,$,"45,000,000",0,0,0, beds, baths, Toilets +Luxury Serviced 4bedroom Flat Plus 1room Bq,Abraham's Court Runens Rd Off Kingsway Ikoyi Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,0,4 beds,5 baths,5 Toilets +596sqms Land,"Osborne Foreshore 1 Estate,ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Sea View Apartment,1st Avenue Banana Island Ikoyi Lagos,$,"1,008,750",1,0,0,4 beds,4 baths,5 Toilets +Urgent Luxury 2nos Of 5bedrom Duplex And 2bedroom Duplex Closer To The Gate,Parkview Estate Ikoyi Lagos Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With A Bq,Off 5th Avenue Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Luxurious Units Of 3 Bedroom Apartments With Payment Plan,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Executive 5 Bedrooms Semi Detached Duplex With An Elevator.,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced Luxury 4 Bedroom Apartments With 2 Rooms Servant’s Quarters,Bourdillon Ikoyi Lagos,₦,"400,000,000",0,1,0, beds, baths, Toilets +24 Number Large And Super Luxury 3 Bedrooms With 2 Bqs) And Two Penthouses,Glover Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Cooper Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ruxto Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Club Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Masterpiece 5 Bedroom Townhouse,Banana Island Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,5 beds,5 baths,6 Toilets +Units Of Contemporary Themed 3 Bedroom Apartments,Gerard Road Ikoyi Lagos,₦,"96,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Residents Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ruxton Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Reeve Road Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,J Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace House + Bq,Off Queens Drive Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Ruxton Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +"1,000sqms With [31 Meters Frontage And 839sqms N470m [24 Meters Frontage]",Waterfront Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex And 5bedroom Duplex Penthouse,Off Gerard Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Water Front Residence 4/5bedroom Home,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,5 Toilets +Land,Oba Elegushi Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,.. Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Apartment,Banana Island Area Banana Island Ikoyi Lagos,₦,"320,000,000",1,1,0,4 beds,4 baths,5 Toilets +Units Of 4 Bedroom Terrace Duplex & A Room Bq,Old Ikoyi Gerard Road Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex With 1 Bq And Swimming Pool, Cinema",Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,"Banana Island, Banana Island Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Duplex With A Room Bq For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Newly Built Fully Detached Five (5) Bedroom Duplex.,Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four (4) Bedroom Stand Alone Homes Ensuite With Bq,"Cooper Road Off Bourdillon, Ikoyi Ikoyi Lagos",₦,"230,000,000",0,1,0,4 beds,5 baths,4 Toilets +6 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,6 baths,6 Toilets +1839sqm Waterfront Bareland @ Banana Island,Banana Island Ikoyi Lagos,₦,"1,011,450,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex With 2rooms Bq For Sale At Banana Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4007 Sqm For Sale In Queens Drive Ikoyi Lagos,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets +Land,Thompson Avenue Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Flat At Queens Drive,Queens Drive Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +6 Bedroom Duplex With Cinema,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With 3 Rooms Bq,Estate Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Old Duplex At Dolphin Estate,Dolphin Estate Ikoyi Lagos,₦,"73,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Town House At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land,Abacha Abacha Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Mansion Exquisitely Finished,Banana Island Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 3 Apartment,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Units Of 3 Bedroom Flat At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,12 beds,16 baths, Toilets +3 Bedroom Luxury Flat,Mosley Mosley Road Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Luxury Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Luxury Flat,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,754sqm Plot Residential Zone Banana Island",Banana Island Ikoyi Lagos,₦,"570,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,500,000,000",1,1,0,6 beds,6 baths,7 Toilets +Functional Filling Station,"Awolowo Road, Ikoyi, Lagos Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,"Inside A Nice And Serene Area At Living Gold Estate, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Servant Quarter,Olori Mojisola Off Banana Island Onikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,1,5 beds,7 baths,8 Toilets +3 Bedrooms Apartment,Alexander Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedrooms Detached Duplex,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Detached Duplex,Banana Island Ikoyi Lagos,₦,"920,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets +Brand New And Luxurious 3 Bedrooms Flat,Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Falomo Mojisola Onikoyi Estate Ikoyi Lagos,$,"45,000,000",0,0,0,5 beds,4 baths,5 Toilets +Office Building,Kings Way Road Mojisola Onikoyi Estate Ikoyi Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Houses/5 Bedrooms Pent Houses,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ikoyi Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +Luxury Beautiful 4bedroom Terrace Duplex With 1room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex For Sale In Osborne Foreshore Phase 2,Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Brand New 4 Bedroom Fully Detached Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Bedroom Mansion, Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,0 baths,0 Toilets +Luxury 6 Bedroom Detached Duplex, Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Units Of Fully Serviced 5 Bedroom Detached And 4 Units Of 5 Bedroom Semi Detached House," Granary Mansions, Banana Island Ikoyi Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,1,1,5 beds,8 baths,8 Toilets +Exquisitely Fully Furnished 3 Bedrooms Terraced Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Units Of Fully Serviced 5 Bedroom Terrace Town House, Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Houses With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +Three Bedroom Semi Detached Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex Newly Built With Pool Gym, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With 1 Room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Fitted Automated 5 Bedroom Contemporary House, Banana Island Ikoyi Lagos,₦,"820,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Luxury Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House,Mitchell Okotcha Street Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex With Bq,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached House,.. Banana Island Ikoyi Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,"Banana Island Road, Banana Island Ikoyi Lagos",₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartment (off Plan Sales),Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mixed Use Land,"Jubril Amin Street, Parkview Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"399,999,999",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Serviced Flat,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Milverton Road, Off Alexander Avenue, Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +650sqm Dry Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Well Finished 5 Bedroom Detached House With Bq,Secured Estate On Bannan Island Road Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of Luxury 4 Bedroom Terrace Duplex,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel/ Guest House,.. Osborne Foreshore Estate Ikoyi Lagos,$,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Off Royal Palm Drive, Osborne Foreshore Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Detached Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,"Off Keffi Road South West Ikoyi, Falomo Ikoyi Lagos",₦,"350,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Off Plan 3 Bedroom Luxury Flat With A Room Bq,Old Ikoyi Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex Plus 2 Rooms Bq,Directly Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Lugard Avenue, Old Ikoyi Ikoyi Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,George Street Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"2nd Avenue, Banana Island Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,"Okotie Eboh Close South West Ikoyi, Falomo Ikoyi Lagos",₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,.... Old Ikoyi Ikoyi Lagos,₦,"595,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,... Mojisola Onikoyi Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Sqm Of Mixed Used Land,"Kingsway Road, Old Ikoyi Ikoyi Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Detached Duplex,"Banana Island, Ikoyi Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 6 Bedroom House With 2 Rooms Servant Quarters,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"7,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Awolowo Road Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,2 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,... Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"235,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Block Of Flats,Osborne Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium Luxury 3 Bedroom Apartment,Glover Road Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Off Bourdilion Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duple,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,.... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedrooms Duplex, Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,... Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Penthouse And 4 Bedroom Terrace Duplex, Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,.... Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Bourdillon Road, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Flat With 3 Rooms Bq,.. Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,5 baths,5 Toilets +Residential Land,Banana Island Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Units Of 5 Bedroom Semi Detached Duplex,"Oni Ikoyi, Banana Island Banana Island Ikoyi Lagos",₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plots Of Land, Banana Island Ikoyi Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,"Off Gerrard Rd, Old Ikoyi Ikoyi Lagos",₦,"1,500,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +Residential Land,"Off Udi Street In Osborne Foreshore, Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Adeyemi Lawson, Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,4 beds,0 baths,5 Toilets +4 Bedroom Terrace Duplex,5th Avenue Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +Existing 4 Bedroom Terraced House,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Close To Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Storey Building Suitable For Office Spaces,Norman Williams Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Penthouse,.... Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,... Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,"Biado Close, Off Keffi Street Awolowo Road Ikoyi Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Flat,"Bourdillon Rd, Old Ikoyi Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,6 Toilets +Residential Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,... Dolphin Estate Ikoyi Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Rexton Road Off Alexanda Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,. Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +Mixed Use Land,Kingsway Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Nassarawa Street, Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Of 4 Bedroom Luxury Apartments,Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"5,500,000,000",0,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,0 baths,0 Toilets +Spacious 5 Bedroom Luxury Detached House, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedroom Detached House On 3700sqm For Sale In Old Ikoyi With 5 Bedroom Guest Chalet Price 1.6b Asking Title Lagos C Of O,Ikoyi Lagos,₦,"1,600,000,000",0,0,0,6 beds,6 baths,6 Toilets +Bourdillon Land For Sale,Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +"Detached Building And Outbuildings 2900m2 Land At Cameroon Road, Ikoyi Lagos.","Cameron Road, Ikoyi Lagos",₦,"1,100,000,000",0,0,0, beds, baths, Toilets +"Fenced Land Measuring *4,600 Square Meters* In A Choice Zone Of Banana Island (residential Zone)",Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Ikoyi Land For Sale,Parkview Estate Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +"*luxury Townhouse In Banana Island* 5bedroom Duplex House With 3sitting Rooms, 2 Rooms Bq For 500m Without Furniture And 550m With Grade A Furnitures On 560sqm. Private Elevator, Kohler Kitchen With Bosch Appliances And Tv, Swimming Pool, Gym, Walk In C",Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Land For Sale* @ Ikoyi,Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +A Striking Modern Waterfront Property With Stunning Views Newly Constructed In One Of The Most Luxurious Neighborhood Of Ikoyi Lagos Nigeria. Land Size: 1800 Square Meters Location: Banana Island Estate Ikoyi Lagos Nigeria. Title Documents: Certifica,Ikoyi Lagos,₦,"3,000,000,000",1,1,1, beds, baths, Toilets +Joint Venture In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,5 beds, baths, Toilets +4 Bedrooms Detached House In Shore Land Estate For Sale @ Ikoyi. Title: C Of O Price; 300m.,Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,"Ikoyi Club, Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds, baths, Toilets +6300 Sqmts @ Bourdillon Road Ikoyi.,Bourdillon Ikoyi Lagos,₦,"400,000",0,0,0, beds, baths, Toilets +6bed Room Fully Detach Duplex With 3living Room,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0, beds, baths, Toilets +"A Block Of 6 (2) Bedrooms Flats, With A Very Spacious Car Park For Sale In Old Ikoyi.... Land Size: 1,300sqm Location: Ikoyi Title: Governor’s Consent Price: 500m.",Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Ikoyi Land For Sale,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Ikoyi Land For Sale*,Bourdillon Ikoyi Lagos,₦,"2,650,000,000",0,0,0, beds, baths, Toilets +"Ground Floor Three Bedroom Flat @adeyemi Lawson Street, Ikoyi","Adeyemi Lawson Street, Ikoyi Lagos",₦,"115,000,000",0,0,0, beds, baths, Toilets +6bed Room Duplex In Ikoyi Banana Island...3billion,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +2 (nos) 5 Bedroom Duplexes,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +Self Service Brand New 4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +6 Bedroom Detached House On 3700sqm For Sale In Old Ikoyi With 5 Bedroom Guest Chalet Price 1.6b Asking Title Lagos C Of O,Ikoyi Lagos,₦,"6,000,000,000",0,0,0,6 beds,6 baths,6 Toilets +"1,600 Sqmts At Turnbull Road Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +"*for Sale* Speaking To Mandate. Luxury Waterfront 6 Bedrooms Fully Detached House With Bq, 3 Living Rooms , Fitted Kitchen, Box Room And Study, Cctv , Swimming Pool, Gym And Jetty On 600 Sqmts Of Land At Banana Island Ikoyi Lagos. Price : N850 Millions",Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +"A 21 Rooms Beautiful And Stylish Guest House With Modern Facility For Sale @ Osborne Foreshore Estate Ikoyi. Title: C Of O. Price N1 Billion, 800m Net.",Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +6bed Room Fully Detach Duplex With 3living Room,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,1, beds, baths, Toilets +2000 At Oba Elegushi Off Glover Road. Price:1b/fed.cofo,Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +3500m2 Of Land,"Alexander Road, Ikoyi Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets +1100 At George Street Price:400m,Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House On 520m2,Abacha Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +A Prime Fenced Land @ Ikoyi,2nd Avenue Extension Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +A Well Improved And Tastefully Finished 4 Bedroom Flat With Bq In A Complex Of Luxury Apartments.,Bourdillon Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +1200sqm Prime Corner Piece Land,... Gerard Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"*for Sale*water View Luxury Five 5bedroom Semi Detached Duplex Plus Bq And Swimming Pool,elevator, Three Living Room, Roof Top Balcony For Rent In Banana Island",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1800sqm At Banana Island,Banana Island Ikoyi Lagos,₦,"675,000",0,0,0, beds, baths, Toilets +70% Built Luxury Five(5) Detached Duplex With 2living Room And 2room Boys Quarter Within An Estate Off Onikoyi Lagos* With Swimming Pool Land Size 750sqm* *p,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets +"*for Sale*water View Luxury Five 5bedroom Semi Detached Duplex Plus Bq And Swimming Pool,elevator, Three Living Room, Roof Top Balcony For Rent In Banana Island",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2100sqmfor Sale In Kings Way Road Ikoyi,Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Hot Sale In Old Ikoyi 2397.081sqm For Sale,Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Residential Waterfront Land Measuring 3400sqm In Osborne Phase1 For Sale,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Banana Island Ikoyi Lagos,₦,"530,000",0,0,0, beds, baths, Toilets +1000sqm Land For Sale In Banana Isaland,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Strategically Located Land In Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2600sqm Land For Sale,Old Ikoyi Ikoyi Lagos,₦,"920,000,000",0,0,0, beds, baths, Toilets +3600sqm Land For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"2300sqm Land At Zone A Banana Island, Lagos",Banana Island Ikoyi Lagos,₦,"1,270,000,000",0,0,0, beds, baths, Toilets +3700sqm Land For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Fully Automated House, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,0 baths,0 Toilets +Well Built 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Ten Units Of 4 Bedroom Semi Detached Houses,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +Waterfront Plot,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +"Plot Measuring Almost 2,400sqms With 99 Years Lagos State C Of O Lease",Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House On 500 Square Meters,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets +"Plot Measuring 1,000sqms Or 2,000sqms Or 4,000sqms",Banana Island Ikoyi Lagos,₦,"530,000/sqm",0,0,0, beds, baths, Toilets +"Plot Measuring 2,300 Square Meters",Okotie Eboh Street Old Ikoyi Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +Three Units Of 4 Bedroom Terraces,Off Wheatbaker Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Plot Measuring 1,020 Square Meters With Lagos State C Of O",Bank Road Macgregor Street Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +"A Colonial Looking Detached House On 4,400 Square Meters",Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets +"Plot Measuring 4,400 Square Meters",Ruxton Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Ongoing Development 24 Units Of 3 Bedroom Maisonettes With 1 Room Bq,Glover Road Old Ikoyi Ikoyi Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +Two Units Of Semi Detached 5 Bedroom Duplexes,Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Property On Land Measuring 6,300 Square Meters",Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets +Residential Zoned Plots,Zones A And B Banana Island Ikoyi Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +Three Units Of 4 Bedroom Terraces With Bq,... Osborne Foreshore Estate Ikoyi Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Duplex With Swimming Pool For Sale In Banana Island Ikoyi, Lagos",Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment, Osborne Foreshore Estate Ikoyi Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely Brand New 4 Bedroom Semi Detached Duplex,Awolowo Road Ikoyi Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished State Of The Art 4 Bedroom Waterfront Detached Duplex With 2 Rooms Boys Quarter,Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Block Of 10 Units Of 3 Bedroom Flats,"Ademola Street, Off Awolowo Road Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Flat With A Room Bq,Parkview Estate Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,3 Toilets +Waterfront Contemporary Luxury 4bedroom Terrace Duplex And 4bedroom Penthouse Duplex,Waterfront Residential Zone Banana Island Ikoyi Lagos,$,"1,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusively Finished 4bedroom Duplex For Sale At Banana Island Ikoyi Lagos,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,6 Toilets +Land,Old Ikoyi Ikoyi Lagos,₦,"375,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Semi Detached Duplex,310 Close Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Uncompleted 5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Landsize: 2,645sqm",... Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Residential Land,Osborne Phase 1 Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Furnished 3 Bedroom Flat,"Adeyemi Lawson Road, Behind Queen's Drive Parkview Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"530,000",1,0,0, beds, baths, Toilets +Beautiful 5bedroom Duplex For Sale Inside Banana Island With Pent House,Onikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With Miniflat Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Stunningly Built Four (5) Bedroom Duplex,Along Onikoyi Road Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Olawale Daisy Road Banana Island Ikoyi Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Thompson Street Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Thousand Square Meters Of Land,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5bedroom Duplex For Sale Inside Banana Island With Pent House,Onikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Magnificent, Spacious And Stunningly Built Four (4) Bedroom Terraced Duplex",Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,Off Kingsway Road Ikoyi Lagos,₦,"314,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale On The Heart Of Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"600,000,000,000",0,0,1,5 beds,5 baths,5 Toilets +Beautifully Finished 4 Bedroom Terrace Duplex With 1 Room Bq,Ikoyi Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,5 Toilets +Luxury Built 6 Bedroom All Rooms En Suite Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,6 beds,6 baths,7 Toilets +5 Bed Room Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets +5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,8 baths,8 Toilets +Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters,Banana Island Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Luxury Terrace House With A Room Bq For Sal,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Luxury Terrace House With A Room Bq For Sale,Macpherson Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Tastefully Finished Terrace For Sale,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury Brand New 4 Bedroom Terrace Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Semi Detached House With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Parkview Estate Ikoyi Lagos,₦,"118,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,0 baths,0 Toilets +"3,600 Sqm Land(400,000/sqm)",... Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxurious 4bedroom Terrace Duplex For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Renovated 4 Bedroom Semi Detached Duplex,Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +Ongoing Off Plan Development Of 5 Units Of 5 Bedroom Semi Detached Maisonettes,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bed Room Duplex,Oniru Ikoyi Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,4 Toilets +3 Bedroom Water Front Apartment With Swimming Pool An And A Bq Parking Slot And Boy Quarter,Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Tastefully Structured 5 Bedroom Townhouse For Sale At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +Serviced Brand New 4 Bedroom Terrace Duplex For Sale In Parkview,Parkview Estate Ikoyi Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Tastefully Structured 4 Bedroom Detached Duplex Plus Bq For Sale At Bourdillion, Ikoyi",Bourdillon Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +"Its Brand New... 5 Bedroom Duplex For Sale At Mojisola Onikoyi Off Banana Island Rd , Ikoyi",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets +"Tastefully Built 4 Bedroom Flat With Bq For Sale At Rumens Street Off Bourdilon Road, Ikoyi",Bourdillon Ikoyi Lagos,₦,"101,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxuriously Built 36 Rooms Hotel Plus 2 Executive Suites For Sale At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Brand New Detached 4 Bedroom And 2 Rooms Bq Sitting On 500sqm, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With 2 Rooms Boys Quarter For Sale In Banana Island,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,6 baths,6 Toilets +Executive 3 Bedroom Flat,... Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Serviced 3br Apartment At Mojiola Onikoyi Estate N130mill (85% Completed),Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Exquisite 4br Town Housewith Bq At Off Bourdillon Rd, Ikoyi",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Duplex,Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,5 baths,6 Toilets +Waterfront Land At Banana Island,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Waterfront Plot In Measuring 1,200sqms",Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built Luxury 5bedroom Semi Detached Duplex With Maids Room With Swimming Pool,gym",Banana Banana Island Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful Lagoon View Massive 5bedrooms Duplex Penthouse With 2rooms Bq For Sale,Off Gerard Road Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets +Off Plan Sale 4 Bedrooms Terrace Houses,Residents Banana Island Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +"Plots On Cameron Road, Old Ikoyi [1000sqm ,2000sqm And 1566sqm",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +High Streets Plots For Sale In Old Ikoy,Bourdillon Bourdillon Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale Smaller Plots In Ikoyi 600sqm, 1000sqm , 700sqm And 1450sqm",Ikoyi Areas Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,400sqms Land For N280,000 Per Sqms",Aso Street Parkview Estate Ikoyi Lagos,₦,"672,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Waterfront Plots For Sale , 800sqm, 500sqm,and 420sqm",Banana Island Banana Island Ikoyi Lagos,₦,"275,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex For Sale In Mojisola Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +52 Flats Of 3 Bedrooms With Bq,... Ikoyi Lagos,₦,"10,000,000,000",0,1,0,3 beds,0 baths,0 Toilets +15 Units Of 3 Bedroom Flat,... 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",0,0,1,3 beds,3 baths,3 Toilets +Land Measuring 1200sqm,Shoreline Estates Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Beautiful Massive Luxury 5 Bedroom Detached Mansion For Sale,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,7 Toilets +A Brand New & Spacious 3 Bedroom Apartments With A Bq,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths, Toilets +Luxury Beautiful Service 8units 5bedroom Fully Detached’s Duplex With 1room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bed Room Detach Duplex,Banana Island Ikoyi Lagos,₦,"370,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Servant Quarters,Olori Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,000,000,000",0,1,1,5 beds, baths, Toilets +A 5 Bedroom Semi Detached Duplex For Sale At Onikoyi Lagos,Olori Mojisola Onikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +4bedroom Terrace Duplex And One 5bedroom Penthouse,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"245,000,000",1,1,0,4 beds,5 baths,5 Toilets +Well Finished 4bedroom Semi Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex And 5bedroom Penthouse Off Plan Sales,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built Luxury 4 Bedroom Terrace House,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,0 Toilets +A Luxurious 4 Bedroom Maisonette (penthouse),"Joe Faraday, Off Banana Island Road, Ikoyi. (frankforte Height) Mojisola Onikoyi Estate Ikoyi Lagos",₦,"250,000,000",1,0,0,4 beds,4 baths,5 Toilets +Prime Fenced Land For Sale,Second Avenue Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +The Penthouse Apartments Aduke Court Ikoyi,"Off Bourdillion, Ikoyi Bourdillon Ikoyi Lagos",₦,"500,000,000",0,1,1,4 beds,5 baths, Toilets +Masterpiece 5bed Townhouse,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,5 Toilets +5bed Detached House With 2bed Bq,Banana Island Banana Island Ikoyi Lagos,₦,"470,000,000",1,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 5 Bedroom Semi Detached Duplex For Sale In Onikoyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom Fully Detached Duplex For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Brand New Luxury 3 Bedroom Flat Is Now Available For Sale In Mojisola Onikoyi Estate Ikoyi With,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Serviced 4bedroom Detached Duplex For Sale At Alexander Old Ikoyi,Alexander Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedroom Semi Detached Duplex For Sale At Awolowo Road Ikoyi,Okotiebo Awolowo Road Ikoyi Lagos,₦,"160,000,999",0,1,0,5 beds,5 baths,5 Toilets +A Brand New Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,1,4 beds,5 baths,4 Toilets +"*federal Government Allocation* 8,200sqm Land Located On The Corner Piece Between Turbo Road And Bannan Island Road.",Banana Island Road Ikoyi Lagos,₦,"2,378,000,000",0,0,0, beds, baths, Toilets +Land Size: 4600m² For Sale, Gerard Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,... Ikoyi Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Ikoyi Ikoyi Lagos,₦,"250,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Onikoyi 08jul08,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Block Of Flats, Banana Island Ikoyi Lagos,₦,"181,400,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Terrace Duplex, Osborne Foreshore Estate Ikoyi Lagos,₦,"129,990,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Maisonette,... Osborne Foreshore Estate Ikoyi Lagos,₦,"60,990,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 3 Bedroom Serviced Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets +Waterfront 4 Bedroom Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 3 Bedroom Serviced Apartment,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"175,000,000",1,1,0,3 beds,4 baths,4 Toilets +State Of The Heart Waterfront 5 Bedroom Semi Detached Duplex,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Duplex,Glover Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,1,0,7 beds,7 baths,7 Toilets +First Class Luxury Duplex,Gloval Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,1,0,7 beds,7 baths,7 Toilets +3 Bedroom Terrace Duplex For Sale In Banana Island 03jul12,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,1,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex For Sale In Banana Island 03jul07,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,1,5 beds,5 baths,5 Toilets +C Of O,Off Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +*distressed Sale* Land For Sale On Bourdillion Road.,Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,1,0, beds, baths, Toilets +"Bare Land Measuring 1,730 Square Meters & Rectangular In Shape",Alexander Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With Boys' Quarters,Awolowo Road Ikoyi Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets +Block 0f 2 No 2 Bedroom Flat,Alh. Bashorun Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,4 Toilets +Four(4) Bedroom Terrace Duplex With Governor's Consent,Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex,.... Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,... Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Block Of Flats, Osborne Foreshore Estate Ikoyi Lagos,₦,"59,900,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Fully Detached Duplex With 2bq,Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 4 Bedroom Flat For Sale At Bourdillon, Old Ikoyi",Bourdillon Ikoyi Lagos,₦,"300,000,000",1,0,0,4 beds,4 baths,5 Toilets +Plot Measuring *405sqms With Fgn Cofo Selling For N245m*,Off Ondo Street Banana Island Ikoyi Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached House With 2 Rooms Bq With Parking For 4 6 Vehicles On 450sqms,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,... Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,... Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikoyi Lagos,₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House For Sale In Banana Island 22jun03,Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +A 7 Bdrm Waterfront Det. Hse With 3 Rm Bq On 6400 Sqm* Land,"Jubril Aminu Str. Off Tony Eromosele Str. Parkview, Ikoyi. Ikoyi Lagos",₦,"1,400,000,000",1,1,1,7 beds,7 baths,7 Toilets +"Penthouse, Comprising Of A Chapel And Gym, 8 Bedrooms Ensuite Osborne Phase 2, Ikoyi, Lagos",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",1,0,0,8 beds,7 baths,7 Toilets +Architectural Masterpiece Which Consists Of 16 Ultra Luxury Maisonettes And 2 Pent Houses Of 4 Bedrooms Each.,Banana Island Banana Island Ikoyi Lagos,$,"1,300,000,000",1,1,0,4 beds,5 baths,5 Toilets +"A Gated Cul De Sac, Waterfront 4nos Newly Built 5bedroom Semidetached Houses Situates In Banana Island, Ikoyi, Lagos",Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds, baths, Toilets +Brand New Self Service 3 Bedroom Terrace Duplex For Let At Osborne Phase 2 Ikoyi Lagos.,Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Waterfront 3 Bedroom Flat For Sale In Banana Island Ikoyi.,Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Five Bedroom,Banana Island Ikoyi Lagos,₦,"540,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built Semi Detached 5bedroom Duplex For Sale At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +Jv Banana Island,Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Standalone Home With A Swimming Pool And 24 Hour Power Supply For Sale At Bank Road Ikoyi,In A Serviced Estate At Bank Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,... Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Waterfront Duplex,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,... Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Detached Bq,Adeyemi Lawson Street Bourdillon Ikoyi Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Apartment,... Old Ikoyi Ikoyi Lagos,$,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House For Sale In Ikoyi 17jun03,Ikoyi Lagos,₦,"475,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,... Mojisola Onikoyi Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale In Banana Island 1,279sqm Location Plot G Price 650m",Residents Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment For Sale At Parkview Estate Ikoyi,"Parkview Estate Ikoyi, Lagos. Parkview Estate Ikoyi Lagos",₦,"190,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached,house.","Banana Lsland,ikoyi Banana Island Ikoyi Lagos",₦,"850,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Fully And Exquisitely Furnished Luxury 5 Bedroom Penthouse Flat For Sale At Bella Vista Towers, Banana Island","Bella Vista Towers, Banana Island Banana Island Ikoyi Lagos",$,"5,000,000",1,0,1,5 beds,5 baths,6 Toilets +Newly Built Luxury 6 Bedroom Fully Detached Duplex For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplexes And Townhouses With Bq,Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex For Sale In Shoreline Estate Ikoyi,Shoreline Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,000sqm Land Wit 4bedroom Detached House.",Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +Joint Venture On A Plot Of Bare Land At Ikoyi,Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With 2 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +Classically Finished 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat Pent House With Excellent Facilities,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex For Sale,Ikoyi Bourdillon Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat With A Room Bq And Excellent Facilities,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Terrace Duplex With 2 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2 Units 5bedroom Semi Detached Duplex In A Waterfront Mini Estate With Jetty Access,elevator",Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex For Sale In Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedroom Flat For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive 5 Bedroom House For Sale Off Awolowo Road Old Ikoyi Lagos On 660sqm,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +52 Flats Of 3 Bedroom With Bq,Gerard Street Ikoyi Lagos. Gerard Road Ikoyi Lagos,₦,"10,000,000,000",0,1,0,10 beds,10 baths,10 Toilets +Newly Built Luxury 5 Bedroom Semi Detached Duplex For Sale In Onikoyi Banana Island,Banana Island Ikoyi Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale In Ikoyi 10jun28,Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale In Ikoyi 10jun25,Ikoyi Lagos,₦,"320,000,000",0,0,1,5 beds,5 baths,5 Toilets +New Five Bedroom Terrace House On 4 Floors Having An Inbuilt Elevator,Off Bourdillon & Also Accessible From Queens Drive Bourdillon Ikoyi Lagos,₦,"240,000,000",0,1,0,5 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Ikoyi 09jun38,Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Ikoyi 09jun37,Ikoyi Lagos,₦,"475,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment For Sale In Banana Island 09jun25,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,1,3 beds,3 baths,3 Toilets +Movamo Court,"Close 216, Second Avenue, Banana Island Ikoyi Lagos",₦,"4,500,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedrooms Terrace Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Ikoyi 07jun17,Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Bode Olajumoke Crescent Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +(off Plan Development) Luxurious 3 Bedroom Flats With State Of The Art Finishing And Fitted Kitchens,Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,3 beds, baths, Toilets +Terraced 4 Bedroom Duplex For Sale,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Duplex,"Plot J52 314 Close, Second Avenue, Banana Island Ikoyi, Eti Osa Local Government, Lagos Banana Island Ikoyi Lagos",₦,"1,500,000,000",0,1,0,6 beds,6 baths,6 Toilets +7 Bedroom Detached Duplex For Sale In Banana Island 06jun11,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,1,7 beds,7 baths,7 Toilets +Luxurious 4bedroom Terrace Duplex With 2room Bqfor Sale,Parkviwe Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Luxury Townhouse With 2 Maids Room,"Zone M, Federal Government Layout Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Premium 4 Bedroom Maisonette With A Maids Room,Probyn Road (osinowo Road) Off Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House For Sale In Ikoyi 03jun16,Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,4 Toilets +"Block Of 6 (2) Bedrooms Flats, With A Very Spacious Car Park For Sale In Old Ikoyi....",Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Residential Building With Boys Quaters,Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Office Building,Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +7 Bedroom Semi Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"900,000,000",1,0,0,7 beds,7 baths,8 Toilets +5 Bedroom Duplex For Sale In Ikoyi 02jun16,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,1,4 beds,4 baths,5 Toilets +8 Bedroom Apartment For Sale In Banana Island 21mar01,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,7 Toilets +3 Bedroom Flat For Sale In Banana Island 12may39,Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Maisonette For Sale In Banana Island 30may76,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Banana Island 28may11,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Apartment For Sale In Banana Island 15apr1,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikoyi 22apr28,Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Ikoyi 23apr12,Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Flat,.. Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace For Sale In Ikoyi 4apr5,Ikoyi Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Banana Island 01jun25,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Town House For Sale In Banana Island 25apr43,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Townhouse For Sale In Banana Island 29apr47,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Banana Island 28apr4,Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Maisonnette For Sale In Ikoyi 23apr11,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex For Sale In Ikoyi 29apr50,Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Banana Island 3apr33,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Ikoyi 7apr10,Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace House For Sale In Banana Island 15may12,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale In Ikoyi 13may48,Ikoyi Lagos,₦,"250,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace For Sale In Banana Island 9may38,Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House For Sale In Banana Island 30apr4,Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Banana Island 16apr2,Banana Island Ikoyi Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,4 Toilets +Storey Building For Sale In Ikoyi 11may37,Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House For Sale In Banana Island 8may26,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +11 Units Of 2 And 3 Bedroom Flats For Sale In Ikoyi 31mar33,Ikoyi Lagos,₦,"1,500,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex For Sale In Ikoyi 5may31,Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +36 Rooms Hotel For Sale In Ikoyi 15may28,Ikoyi Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land For Sale In Ikoyi 25apr5,Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Masionette For Sale In Banana Island 22apr62,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Ikoyi 13may49,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Ikoyi 6may48,Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment For Sale In Ikoyi 29apr25,Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Townhouse For Sale In Banana Island 4apr36,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House For Sale In Banana Island 15may11,Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Banana Island 7apr4,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikoyi 16may19,Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Banana Island 9may26,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikoyi 30may27,Ikoyi Lagos,₦,"280,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached For Sale In Ikoyi 6apr45,Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace House For Sale In Ikoyi 28mar2,Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Banana Island 22mar20,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets +Well Finished And Serviced 4 Bedroom Town House With 1 Room Boy's Quarter,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette,.. Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Ikoyi 23apr13,Ikoyi Lagos,₦,"2,300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex For Sale In Ikoyi 9may47,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Brand New 4 Bedroom Detached Duplex,.. Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +House For Sale In Ikoyi Lagos,"Abacha Estate, Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Banana Island Ikoyi Lagos,M27 Close Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Built 3 Storey Building Hotel With 21rooms,Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,1,10 beds,10 baths,10 Toilets +Newly Built Luxury 5 Bedroom Furnished Terrace Duplex For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplexes For Sale In Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Residents Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached Duplex With A Room Bq,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful Built Luxurious 4 Bedroom Semi Detached Duplex For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 6bedroom Fully Detached Mansion For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxurious 4 Units Of 4 Bedroom Terrace And 2 Units Of Penthouse In Banana Island,"Plot 6c, Zone M, Federal Government Layout, Banana Island Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms And One Additional Bedroom As Boy’s Quarter (all Rooms En Suite),"26, Probyn Road (onisiwo Road), Ikoyi, Lagos. Ikoyi S.w Ikoyi Lagos",₦,"270,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxuriously Finished Waterfront Four(4) Bed Semidetached Houses For Sale/lease In Banana Island Ikoyi Lagos....,Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Flat For At Old Ikoyi,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"12,000,000",1,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Deteached Duplex,corner Piece With 2 Room Bq",Norman Williams Street South West Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished Five Bedroom,Banana Island Lagos State Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +12 Unit Of 3 Bedroom Flat For Sale At Ikoyi,Parkiew Parkview Estate Ikoyi Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Detached 5 Bedroom Duplex For Sale,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,7 Toilets +Lagoon View Luxury Duplex With Elevator,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached House Off Olori Mojisola Onikoyi,Onikoyi Banana Island Ikoyi Lagos,₦,"385,000,000",0,0,0,4 beds,4 baths,5 Toilets +1209.134 Sqm ... Shoreline Estate Off Banana Island Road,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +2300sqm Banana Island Residential Land,Banana Island Banana Island Ikoyi Lagos,₦,"1,265,000,000",0,0,0, beds, baths, Toilets +2000 Sqm,Ikoyi Lagos,₦,"1,150,000,000",0,0,0, beds, baths, Toilets +C Of O,Banana Island Ikoyi Lagos,₦,"850,000,000,000",1,1,1,5 beds,7 baths,7 Toilets +"10units Of 3bedroom Flats With 1bq Each ,with Swimming Pool,gym",Residents Banana Island Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxurious Contemporary 4 Bedroom Detached Duplex For Sale,Off Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished And Well Built 6bedroom Detached Duplex With Garden/swimming Pool For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,6 beds,6 baths,7 Toilets +5bedroom Fully Detached’ Duplex In A Mini Service Estate,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 4bedroom Terrace Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Kaydar’s Gate , Luxury 4 Bedroom Town House & Pent Floor Apartments","Zone M, Federal Government Layout , Off Onikoyi Banana Island Ikoyi Lagos",₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets +Skyvilla Luxury 4 Bedroom Condominiums With 1 Bq Sitting On 3 Floors Each,"26 Probyn Road , (onisiwo Road) Bourdillon Ikoyi Lagos",₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Plots Of Land For Sale Together Inside Parkview Estate Ikoyi,Park View Estate Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Units Of 4 Bedroom Terrace Duplex For Sale At Osbourne Ikoyi Vi300,Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex For Sale At Banana Island Ik781,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +23 Flats 12 Flats Of 2 Bed Each With Bq& 11 Flats Of 3 Bed Each With Bq,Old Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Semi Detached Terrace Duplex For Sale At Ikoyi Vi436,Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Luxury 5 Bedrooms House Plus Swimming Pool,"Banana Island Foreshore Estate, Ikoyi Banana Island Ikoyi Lagos",₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bed Room Duplex,Hy Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,5 Toilets +Waterfront Land Measuring 4922sqm At Zone J Banana Island,Zone J Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Orient Style Luxury 5 Bedroom Villa,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom And 4 Bedroom Penthouse. The 3 Bedroom Flat Comes With 2 Bq Biggest 3 Bedroom Flat In Ikoyi/vi Covering 350sqm 250m,Ikoyi/ Victoria Island Gerard Road Ikoyi Lagos,₦,"250,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House,Off Banana Island Ikoyi Lagos,₦,"504,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1, 736 Sqm Land For Sale In Old Ikoyi, Lagos",Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"Waterfront Land Measuring 3,600.226sqm At Osborne Phase 1, Ikoyi",Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"2,000sqm Land For Sale On Aqua Point Estate, Banana Island",Banana Island Ikoyi Lagos,₦,"250,000",0,0,0, beds, baths, Toilets +"1000sqm Bare Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +"Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land At The Residential Part Of Banana Island Estate, Ikoyi Lagos.",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets +"820sqm Land For Sale In Mojisola Onikoyi Estate, Ikoyi, Lagos",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +"500sqm Bare Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +"1000 Square Metres Land For Sale On Cooper Road, Ikoyi",Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +"Waterfront Land Measuring 1,800sqm For Sale In Banana Island, Ikoyi, Lagos",Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"Fenced And Gated Bare Land Of 2340sqm For Sale At Old Ikoyi, Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"1400 Sqm Bare Land Waterfront For Sale At Shoreline Estate, Ikoyi",Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Strategic Land Measuring 4500sqm (1acre),Alfred Rewane Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +"3500 Sqm Bareland, Suitable For Commercial / Residential Use",Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"600 Square Metres Land For Sale At Park View Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +500 Sqm Land For Sale In Old Ikoyi. Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"2 Nos Of 500 Square Metres Land For Sale At Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +2100 Sqm,Banana Island Banana Island Ikoyi Lagos,₦,"840,000,000",0,1,0, beds, baths, Toilets +Ensuite 4 Bedroom Duplex For Sale At Ikoyi Vi130,Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,5 baths,5 Toilets +Furnished Elegantly Built 5 Bedroom Luxurious Duplex For Sale At Banana Island Vi143,Banana Island Ikoyi Lagos,₦,"760,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale At Bourdillion Ikoyi,"Bourdillion, Old Ikoyi Bourdillon Ikoyi Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +2547sqm Land,Club Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1450 Sqm For Sale At 1st Avenue,"1st Avenue, Off Kingsway Road. Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"560,000,000",0,0,0, beds, baths, Toilets +Magnificent 5 Bedroom Detached House For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Masterpiece 5 Bedroom Townhouse That Screams Luxury Down To The Last Shard Of Glass,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly Built 6 Bedroom Duplex In A Serene Location,Banana Island Ikoyi Lagos,₦,"1,300,000,000",1,1,1,6 beds,6 baths,6 Toilets +Elegant 5 Bedroom Duplex With Bq For Sale In Ikoyi Lk037,Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious And Contemporary Five Bedroom Fully Detached Duplex In Old Ikoyi,Street Inside Mojisola Onikoyi Estate Old Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Detached Duplex With 2 Bq For Sale In Banana Island Vi048,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,4 beds,4 baths,5 Toilets +Banana Island For Sale At Land Size: 2300sqm,Zone A Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets +Newly Built And Serviced 4 Bedroom Terrace,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Two Block Of Luxury Residential High Rise Apartments With 54 Apartments,Great Street On Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built A Block Of Luxury 8 (no) 3 Bedroom And 2 (no) 4 Bedroom,.. Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,3 beds,3 baths,4 Toilets +Banana Island Land With 2000sqm In Land Sizw,Zone B Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets +Banana Island Land With 2000sqm In Land Size,Zone B Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets +A Newly Built Five Bedroom Luxurious And Fully Detached House Inside An Estate In Old Ikoyi,Street Inside Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +3600sqm Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2192 Sqm At Queen Drive,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +4095sqm Waterfront At Osborne Phase 2,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"1800sqm For Sale On Adeyemi Lawson , Ikoyi",Adeyemi Lawson Macpherson Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +2600sqm Land Along Kingsway Road,"Kingsway Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4236 Sqm Land At Parkview Estate,Parkview Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Sqm For Sale At Osborne Phase 2,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +1800 Sqm Of Waterfront Land For Sale @ Ikoyi Banana Island Road,Banana Island Road Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikoyi Lagos,$,"780,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; Beautifully Finished 4 Bedroom Townhouse In Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment (pent House),Wemabod Towers Gerard Road Ikoyi Lagos,₦,"300,000,000",1,0,1,4 beds,4 baths,5 Toilets +Superb 3 Bed Apartment In Upscale Ikoyi,Olori Mojisola Onikoyi Street Banana Island Ikoyi Lagos,₦,"175,000,000",1,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Hotel Apartment,Banana Island Road Banana Island Ikoyi Lagos,₦,"85,000,000",1,1,1,2 beds,2 baths,3 Toilets +Spacious 1 Bedroom Hotel Apartment For Sale,Banana Island Road Banana Island Ikoyi Lagos,₦,"60,000,000",0,1,0,1 beds,1 baths,2 Toilets +1344sqm Of Dry Land In Osborne Foreshore 2,Ghh Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikoyi Terrace Update. Description: A Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court,Off Bourdillon Bourdillon Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +2600 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4300 Square Meter Land, Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Superb 5 Bedroom Detached House And 3 Bedroom Bq On 1100sqmt,Mitchell Okocha Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,8 baths,8 Toilets +A Unit Of Unique Luxury 4 Bedroom Fully Serviced Apartment Measuring 528.334 Square Meters Within A Newly Built Block,Ikoyi Lagos,₦,"420,000,000",1,1,0, beds, baths, Toilets +5bedroom Fully Detached Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Brand New 3 Bedroom Flat For Sale In Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +"1,000 Residential Land On A Serene And Secure Street On Old Ikoyi Road, Lagos State, With C Of O",Old Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"12 Units Of 3 Bedroom Apartment With 1 Room Bq Each, Gym, Generator, Gate House, Swimming Pool, Etc.","Sir Tony Eromosele Crescent, Parkview Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"950,000,000",1,0,1,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House For Sale In Ikoyi Yb028,Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Triplex For Sale In Ikoyi Yb030,Ikoyi Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikoyi Vi002,Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached + Bq + Fitted Kitchen + Cctv Camera.,Off Ajayi Obembe Street Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Quick Sale; Land Measuring 1,949.923sqm In Banana Island",Banana Island Banana Island Ikoyi Lagos,₦,"550,000",0,0,0, beds, baths, Toilets +Off Plan Of Luxurious 4 Bedroom Maisonette In Ikoyi,Probyn Street Bourdillon Ikoyi Lagos,₦,"270,000,000",1,1,0,6 beds,6 baths,6 Toilets +A 12 Nos Of 3 Bedroom Apartment With 1 Room Bq Each,Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Fenced Land Measuring 1736 Square Meters On Alexandra Road,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +A 7 Units Of 4 Bedroom (all Rooms Ensuite & Jacuzzi In Master Bedroom) Luxury Apartment (waterfront View) At Banana Island,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A 24 Units Of 4 Bedroom Luxury Apartments, Including 6 Penthouses Each With Inbuilt Bq",Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Bareland Sitting On 1,730 & Rectangular In Shape Located Along Alexandra Road, Ikoyi",Alexandra Road Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +A 7 Units Of 4 Bedroom (all Rooms Ensuite & Jacuzzi In Master Bedroom) Luxury Apartment (waterfront View) At Banana Island,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors,Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +"An Old Vacant Fully Detached / Demolishable Building On 2,672 Sqm Land",Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Wing Of Duplex On Approximately 350 Square Meters,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Serviced Flat For Urgent Sale In Ikoyi,"Abraham's Court, Rumens Road, Off Kingsway Road Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Functioning Hotel For Sale,Queens Drive Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land,Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Off Banana Island Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,6 baths,6 Toilets +4bed Room Penthouse,Ju Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 3bed Room Maisionette,Hu Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,1,3 beds,3 baths,4 Toilets +Service Massive Luxury 5bedroom Fully Detached’ Duplex With Swimming Pool And 2bq For Sale,Off Lugard Ave Old Ikoyi Ikoyi Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets +Banana Island Sale Update ? 2000sqm 1.2b Zone B Lagos C Of O Direct Brief,Banana Island Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex, Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Service 3bedroom With Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"160,000,000",1,1,1,3 beds,3 baths,3 Toilets +4 Bedroom Detached House With 1 Nos Boys Quarters (bq),... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Off Plan: Two Units Of 5 Bedroom Detached Houses With Bq, Cinema Room, Swimming Pool,",Glover Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury Newly Built 5 Bedroom Semi Detached Duplex With 2bqs, Swimming Pool, Gym For Sale",Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Ornerpiece Plot Measuring 6,300sqsms With Lagos State Cofo ",Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House With Two (2) Nos Of Boys Quarters (bq),... Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Exotic 5 Bedroom Detached House For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"250,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern State Of Art 5 Bedroom Detached Duplex For Sale In Banana Island Ikoyi Lagos With.,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exotic 5 Bedroom Semi Detached Duplex,.. Banana Island Ikoyi Lagos,₦,"300,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Large Parcels Of Lands At Various Location In Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Detached 5bedroom Duplex For Sale At Parkview Estate Ikoyi Lagos With A Bq,Park View Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq Sitting On 500 Square Meters Land At The Residential Part Of Banana Island Estate, Ikoyi Lagos.",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newley Built 4bedroom Apartment With A Self Bq,Parkview Estate Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,1,5 beds, baths, Toilets +4 Bedroom Terrace With A Maids Room 250m Asking,Ojora Road Ikoyi Lagos,₦,"250,000,000",1,0,0,4 beds, baths, Toilets +"The Property Consist Of 4 Unit Of Luxury 3 Bedroom Flat Tastefully Finished With A Room Domestic Quarters,",Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets +26 Numbers Of 3 And 4 Bedroom Deluxe Apartment,"Gerard, Ikoyi Gerard Road Ikoyi Lagos",₦,"5,500,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built Luxury 4bedroom Semi Detached Duplex With Maids Room With Swimming Pool,gym",Nice Street Banana Island Ikoyi Lagos,₦,"26,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Fitted Kitchen And A Boy’s Quarters,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +"1608 Sqm Of Land For Sale @ Osborne Phase One, Ikoyi, Lagos.",Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Newly Built Fully Serviced Luxurious 4 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +For Sale!!! Brand New 4 Bedrooms Fully Detached House Features: • All Rooms Ensuite • 2 Living Rooms • Fitted Kitchen • Central Air Conditioning System • Swimming Pool • Inbuilt Speakers • Balcony • 2 Rooms Bq • Box Room • Ample Parking • Walk In Closet,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 3 Bed Room Flat,Beside The Ocean Parade Tower Banana Island Ikoyi Lagos,₦,"69,990,000",0,1,0,3 beds,4 baths,4 Toilets +A 2 Bedroom Flat With A Room Bq,.. Banana Island Ikoyi Lagos,₦,"130,000,000",0,1,0,2 beds,2 baths,2 Toilets +4095sqm Land,Phase 11 Osborne Foreshore Estate Ikoyi Lagos,₦,"870,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 10 Apartments(3 Bedrooms & 4 Bedroom Flats),Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",1,1,1,3 beds,4 baths,4 Toilets +Renovated 4 Bedroom Semi Detached House On 3 Floors.,"Chris Ali Street, 2nd Avenue. Abacha Estate Ikoyi Lagos",₦,"350,000,000",1,0,1,4 beds,5 baths,5 Toilets +Lovely Built 8 Bedroom Waterfront Mansion,Banana Island Banana Island Ikoyi Lagos,₦,"3,815,000,000",1,1,1,8 beds,9 baths,9 Toilets +Lovely Built 3 Units 4 Bedrooms Terrace Duplex With Room Bq,Osborne 2 By Oceans View. Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Semi Detached Apartment,"Acacia Drive, Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos",₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets +"*for Sale: Ornamentally Built 8 Bedroom Fully Detached Edifice Sitting On 2,300 Square Metre Land On Banana Island*",Banana Island Ikoyi Lagos,₦,"4,500,000,000",1,1,1,8 beds, baths, Toilets +Property On A Large Expanse Of Land,Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Bedroom All Rooms Ensuite Apartment,Banana Island Estate Banana Island Ikoyi Lagos,₦,"70,000,000",1,1,1,2 beds,2 baths,3 Toilets +"Luxury Newly Built 5 Bedroom Detached Duplex With 2bqs, Swimming Pool, Gym Cinema For Sale",Resident Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court Located Off Bourdillon Road, Ikoyi Lagos.",Off Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets +Luxury And Sophisticated 3 Bedroom Apartments In A Highly Prestigious Neigbourhood In Ikoyi,Off Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of 5 Bedrooms Luxury Detached Houses Which Comes With A Boys Quarters. Swimming Pool,Resident Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With 2 Room Bq,Bode Olajumoke Street Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Sale???????????? Super Luxury 30bedroom Boutique Hotel Having 4nos Elevator, Industrial Kitchen, Equipped Gym, Restaurant, Bar, Pool Etc @ Ikoyi. Title: C.of.o Price: 2.5billion",Old Lkoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +"2 Units Of 5 Bedroom With Two Room Bq Each, All Sitting On Over 1000sqm",Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"Block Of 2 Units Of 4 Bedroom Flat With 2 Rooms Bungalow Boys’ Quarter At , Ikoyi: N200m",Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +5 Bed Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,6 Toilets +All Ensuit 10 Units Of 3bedroom Flat Water Front For Sale At Awolowo Road Ikoyi,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets +Wing Of 5bedroom Semi Detached Duplex For Sale At Parkview Estate Ikoyi,Park View Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat For Sale In Mojisola Onikoyi Estate Ikoyi Lagos.,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Bank Sale 4500 Sqm ,ikoyi Glover Road",No 44 Glover Road Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Plot Mesuring 1540sqms In D Zone With Lagos State Cofo,Ikoyi Banana Island Ikoyi Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets +"*for Sale In Shoreline Estate, Ikoyi* Plot Measuring 805 Sqms With *lagos State Cofo* N320m",Shoreline Estates Ikoyi Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Corner Piece Plot Measuring 1540sqm,Zone D Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex For Sale At Onikoyi Estate Ikoyi,Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +2600sqm Land Size With Old/demolishable 5bedroom Duplex For Sale,Off Glover Road Close To Ikoyi Police Station Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",1,1,0,0 beds,0 baths,0 Toilets +"Luxury Service 4bedroom Flats With Swimming Pool,gym And Elevator",Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq For Sale In Onikoyi,Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +Ikoyi And Victoria Island Properties,Ikoyi And Vi Ikoyi S.w Ikoyi Lagos,₦,"6,000,000",0,1,0,5 beds,4 baths,5 Toilets +Terraced Duplex For Sale Chic City Living,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,7 Toilets +Juicy Ikoyi,Royal Palm Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +A 21 Rooms Guest House At Osborne Foreshore Estate Ikoyi.,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,1,1,10 beds,10 baths,10 Toilets +4 Bedroom Luxury Flat/ Apartment,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +"Plot Of Land Measuring 898.419m2 At Osborne Ii, Ikoyi. N150m",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets +"5 Bedrooms Fully Detached House + Bq + Fitted Kitchen With Heat Extractor In A Compound That Can Take Up To 7 Cars. At Parkview Estate, Ikoyi. =300m. Direct Brief!",Parkview Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths, Toilets +Detached Duplex,"Banana Island, Ikoyi Lagos",$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Detached House In Shore Land Estate For Sale @ Ikoyi Title: C Of O,Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Plot Of Land About 654sqm At Bourdillon Road Ikoyi Lagos,Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Newly And Luxuriously Built 3 Bedroom Block Of Flats With Swimming Pool And Gym,Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds, baths,4 Toilets +"Plot Measuring 1,540sqms In D Zone With Lagos State Cofo",Ikoyi Banana Island Ikoyi Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets +"Newly Built 4 Bedrooms Detached Duplex, Banana Island Lagos","Banana Island, Ikoyi Lagos Banana Island Ikoyi Lagos",₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Plot Measuring Almost 2,600 Square Meters",Glover Road Old Ikoyi Ikoyi Lagos,₦,"930,000,000",0,0,0, beds, baths, Toilets +"Luxurious 3 Bedroom Apartment, Ikoyi Lagos",Mojisola Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Land Measuring 3,600.226sqm With Cofo In Osborne Road, Ilubinrin Foreshore, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"800,000,000",0,1,0, beds, baths, Toilets +Land Measuring 3600sqm,.. Ikoyi Lagos,₦,"1,440,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land Measuring 5100sqm,.. Ikoyi Lagos,₦,"2,500,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land Measuring 4000sqm,.. Ikoyi Lagos,₦,"2,800,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Land Measuring 500sqm With Cofo In Webb Road, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"200,000,000",0,1,0, beds, baths, Toilets +"Land Measuring 500sqm With Cofo In Copper Road, Ikoyi, Logos For Sale",Ikoyi Lagos,₦,"230,000,000",0,1,0, beds, baths, Toilets +"Land Measuring 611sqm With Cofo In Mekwun Road Of Queens Drive, Ikoyi, Lagos For Sale",Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets +All Ensuit 5bedroom Duplex For Sale At Ikoyi Bank Road,Ikoyi Club Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +"1735sqm Land Directly On Alexandra Road,ikoyi","Alexandra, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +"1500sqm Land With A Rear Bungalow On Gerald Road,ikoyi","Directly On Gerald Road,ikoyi Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detached Duplex For Sale At Ikoyi,Boirdllon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex & 2 Bedroom,Park View Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,1,1,5 beds,6 baths,6 Toilets +Lovely Built 8 Bedroom Detached Duplex On 2300sqm.,Banana Island. Banana Island Ikoyi Lagos,$,"10,000,000",1,1,1,8 beds,8 baths,8 Toilets +Luxury 3 Bedroom Penthouse And A Maid Room,Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Serviced Flat For Sale,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 4 Bedroom Terrace For Sale,Ikpyi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Tastefully Finished Semi Detached House For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"For Sale; Luxury 5 Bedroom Detached House With A Two Room Bq At Banana Island, Ikoyi",Ikoyi Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Tastefully Finished Detached House For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Off Plan Sales; 6 Units Of Luxurious And Contemporary 4 Bedroom Terraces With A Maids Room Attached At Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Semi Detached House For Sale,Ikoyi Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Tastefully Finished Serviced Flat,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +"For Sale, Brand New Luxury And Tastefully Finished Pent House Off Queen's Drive, Ikoyi",Queen's Drive Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Off Plan Sale, Park View Estate Ikoyi 4 Units Of Contemporary Styled Fully Detached Homes With Maids Room Each",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds, baths, Toilets +Brand New 3 Bedroom Tastefully Finished Serviced Flat For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 2 Bedroom Luxury Serviced Flat At Banana Island,Banana Island Estate Ikoyi Lagos,₦,"90,000,000",0,1,0,2 beds, baths, Toilets +Brand New 4 Bedroom Tastefully Finished Detached House,. Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Tastefully Finished Detached House For Sale,Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Bq For Sale,Banana Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat With Bq At Onikoyi Estate Banana Island,Onikoyi Estate Banana Island Ikoyi Lagos,₦,"140,000,000",1,1,1,3 beds,3 baths,4 Toilets +Prime Land Measuring 2600sqm,Along Gerald Road Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"8 Bedroom Exquisitely Finished Ultra Elitist And Modern Water Front Mansion On 1800sqm Land,",Waterfront Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,8 baths,9 Toilets +1482sqm Land In Osborne,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,5 baths,0 Toilets +Land Measuring 5300m2,Queensdrive (waterfront) Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +State Of The Art 2 Bedroom Apartment,"25, Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Exquisite 5 Bedroom All Rooms Ensuite Semi Detached Duplex + A Room Bq,Oni Ikoyi Area Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land Measuring 28,000sqm", Bourdillon Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury One Bedroom Serviced Apartment,"25, Shitta Bay Street, Along Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"50,000,000",1,1,0,1 beds,1 baths,2 Toilets +Exquisitely Finished 8 Units Of 4 Bedroom Duplex With A Bq,Off Alexandra Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1000sqm,Webb Road Ikoyi Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets +Land Measuring 5 Acres,Oba Awolowo Way Awolowo Road Ikoyi Lagos,₦,"5,500,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 3,566m² (360k/m²)","Cameron Street, Ikoyi Lagos",₦,"1,283,760,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Executive 4 Bedroom Detached Duplex For Sale In Banana Island Ikoyi Lagos.,Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bareland Measuring 5800sqm (rectangular In Shape),"Olumegbon Street, Off Alfred Rewane Road, By Bat Building Ikoyi Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Newly Built, Luxury 5 Bedroom Detached House With 2 Rooms Bq And A Swimming Pool.",Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With 2 Rooms Bq And Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Serviced Flat With 1 Room Bq,Onikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Exquisitely Built 5bedroom Detached House With 2 Room Bq,cinema Room, 2car Indoor Parking ,4 Outdoor Parking And Swimmimg Pool",Ikoyi Banana Island Ikoyi Lagos,₦,"570,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New Contemporary Finished Waterview 5 Bedroom Fully Detached Mansion With 2 Room Boys Quarters With Swimming Pool,gym",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"695,000,000",0,1,0,5 beds,6 baths,7 Toilets +500sqm Bare Land For Sale On Cooper Road Ikoyi. Title: Fed Cofo N225m Net,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"225,000,000",0,1,0, beds, baths, Toilets +"5 Detached House On 1,200sqms + Bq",Bourdillion Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,5 beds,6 baths,6 Toilets +Waterfront View 5 Units Of Massive Luxury 5 Bedroom Terrace House + 2 Room Bq With Rooftop Lounge Private Elevator,Bourdillion Bourdillon Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +"New Luxury 5 Bedroom Mansion With S/pool, 3 Bq, Study Room, Gym Room, Laundry Room, Very Large Compound On 1200sqm Land",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,8 baths,7 Toilets +Plot Measuring1000sqm At J Zone Banana N450k Per Sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +"Plot Measuring Almost 2,400 Square Meters With Lagos State Cofo",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"820,000,000",0,0,0, beds, baths, Toilets +Cornerpiece Plot Directly Off 2nd Avenue Measuring 500sqm Selling For N500k Per Sqm,2nd Avenue Banana Island Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 10units Of 4bedroom Semi Detached In A Mini Estate,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Plot Measuring 1200sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"698,000,000",0,0,0, beds, baths, Toilets +"Contemporary Architecture, Impeccable Finishing With Luxury At Its Finest, 4 Bedroom Terrance With Bq",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets +Finished Fully 5 Bedroom Detached Duplex With Swimming Pool And 2 Rooms Boy's Quarter And Cinema Room,Paved Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,7 baths,7 Toilets +Finished Fully Finished 5 Bedroom Detached Duplex With Air Condition And 2 Rooms Boy's Quarter,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets +Front Plot Measuring 1350sqms With Lagos State Title Available For Sale,Queen's Drive Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths,6 Toilets +"Exquisitely Built Elegant 5 Bedroom Semi Detached Duplex With Elevator, Gymnasium And 2bq",Residential Zone Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Built 4 Bedroom Terraced Duplex,By Ikoyi Club Old Ikoyi Ikoyi Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +"For Sale: Large And Strategically Located Plot Measuring 8,000 Square Meters With Lagos Title Selling For N3.5bn",Glover Road Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +"For Sale: Large And Strategically Located Plot Measuring 4,400 Square Meters With Lagos Title Selling For N1.9bn",. Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +"4,500 Square Metres Of Land On Gerrard Road, Ikoyi. For Sale! Title: Federal Government Certificate Of Occupancy. Sale Price: ?1,500,000,000",Gerard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 1000sqm At M Zone Banana,Ikoyi Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"Luxury Exquisitely Built Elegant 4 Bedroom Terrace Duplex With Swimming Pool, Gymnasium, All Rooms En Suite",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Rear Plot For Sale Measuring 700sqm,Glover Road Ikoyi Lagos,₦,"295,000,000",0,0,0, beds, baths, Toilets +Cornerpiece Plot Directly Off 2nd Avenue Measuring 700sqm Selling For N500k Per Sqm,2nd Avenue Banana Island Ikoyi Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +Rear Plot For Sale Measuring 1400 Sqm On Glover Road,Glover Road Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths,2 Toilets +"Luxury Newly Built 5bedroom Duplex With Swimming Pool,cinema,study Room And 2bq For Sale",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Land (4,325 Sqms)",Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq And Swimming Pool,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Plot Measuring 26,000 Square Meters With Lagos State Cofo",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0, beds, baths, Toilets +Super Luxury All En Suite 4 Bedroom Maisonette With An Attached Maid's Room,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,5 baths,5 Toilets +"*for Sale In Mixed Use Zone Of Banana Island, Ikoyi* Back Plot Measuring 850sqms Selling For N380k Per Sqm",Mixed Used Zone Banana Island Ikoyi Lagos,₦,"323,000,000",0,0,0, beds, baths, Toilets +Massive Land Measuring 850sqm Avalaible For Sale,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets +"For Sale: Large And Strategically Located Plot Measuring 6,300 Square Meters With Fg Cofo Selling For N1.8bn",2nd Avenue Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Vacant Plot Measuring Up To 1750sqms Available For Sale,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 1000sqm Second Avenue,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"Plots Measuring 26,000 Square Meters On Glover Road With Lagos State Cofo And Building Plan Approval Selling For N450,000 Per Sqms.",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +Well Designed Luxury (masterpiece)5 Bedroom Detached Mansion With Swimming Pool And Cinema Studio And Bqs,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Massive Luxury 10bedroom Fully Detached Mansion With Lift Elevator , Cinema Studio,bar,gym And Swimming Pool + 3rm Bq At Osborne Phase1",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Semi Detached Newly Built 5 Bedroom Duplex,Parkview Estate Road Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxious 5bedroom Fully Detached Duplex For Sale With Swimming Pool And Cinema Available.,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"430,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Finished 3 Bedroom House And Other Luxury Features,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Luxury Newly Built 6bedroom Detached Duplex With Swimming Pool,cinema And 2bq At Ikoyi",Ikoyi Old Ikoyi Ikoyi Lagos,₦,"430,000,000",0,0,0,6 beds,6 baths,7 Toilets +"Cornerpiece Plot Directly Off 2nd Avenue Measuring 1,200sqms",2nd Avenue Banana Island Ikoyi Lagos,₦,"698,000,000",0,0,0, beds, baths, Toilets +"Plot Measuring 4,600sqms With Lagos State Cofo","Mekunwen Road, 2nd Avenue Extension Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets +"Luxury Exquisitely Built Elegant 6bedroom Duplex With 2bqs,swimming Pool And Cinema",0ff Bodylon Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +#superite Africa New Listing# @ Banana Island Fresh For Sale Contemporary Luxury At Its Very Best. Features: 5bedroom Fully Detached Duplex With 3 Living Rooms And 2b/q. Swimming Pool And Cinema Studio,Residential Zone Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Luxurious 3 Bedroom Flats, With 1 Room Bq",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +Perfectly Well Laid 5 Bedroom Detached Duplex With 2 Room Bq And A Cinema Room,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of Luxury 4 Bedroom Terrace Houses With Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets +Luxurious Ongoing Massive 3 Bedroom Terrace Duplex With Swimming Pool With Bqs,Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Apartment,Ocean Parade Towers Banana Island Ikoyi Lagos,$,"1,200,000,000",0,0,0,4 beds,5 baths,6 Toilets +"Plot Measuring 4,600sqms With Lagos State C Of O Selling","Mekunwen Road, Old Ikoyi Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Block Of Flats For Sale In Ikoyi Description* High Rise Property Comprising 2 Nos Block Of Buildings A(9 Floors) & B(10 Floors),Ikoyi Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Measuring1000sqm At B Zone Banana N650k Per Sqm,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000",0,0,0, beds, baths, Toilets +"Ongoing Luxury 8 Units Of 5 Bedroom Terrace House With Swimming Pool, Gym",Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Old Detached House On 1,000 Sqms Directly On Bourdillon Road – With 92 Years Unexpired Lease/lagos State Cofo",Ikoyi Bourdillon Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +Land For Sale Measuring 2700sqm With Lagos State C Of O.,Glover Road Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"2,600 Square Metres On Gerrard Road, Ikoyi Title: Good And Transferable Sale Price: ?900,000,000",Gerard Road Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Finished Fully 5 Bedroom Detached Duplex With Study Room And 1 Rooms Boy's Quarter,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Newly Built 5 Bedroom Fully Detached Duplex With Cinema And 2 Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +"2,623 Square Meters Of Land For Sale Location: Oba Adeyinka Oyekan, Avenue Ikoyi Title: Good Price: ?800,000,000.00",Oba Adeyinka Ave Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"Newly Built Luxury 4bedroom Terrace Duplex With Swimming Pool,gym And Bq",Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets +Plot Of Land Measuring 650sqm Available In Banana Island,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Architectural Masterpiece Which Consists Of 16 Ultra Luxury Maisonettes And 2 Pent Houses Of 4 Bedrooms Each In Banana Island,Ikoyi Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,4 baths,5 Toilets +An Upmarket Boutique Hotel Styled With Anonymity And Privacy Concerns. It Is 95% Complete,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"4,200,000,000",0,0,0, beds, baths, Toilets +"5bedroom Mansion With 2bq.2kitchen.studyroom ,laundry Room.very Large Compound With Carport. Massive Finished For Sale At Parkview",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,7 baths,7 Toilets +"Luxury Waterfront Newly 3bedroom Flats With 1bq ,swimming Pool,gym Kid Play Ground",Residential Zone Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Lovely 4 Bedrooms Terrace Duplex, Banana Island Road, Ikoyi","Banana Island Road, Ikoyi Lagos Ikoyi Lagos",₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +"3000.0001 Square Meters Of Land For Sale Location: Bank Road, Ikoyi Title: Certificate Of Occupancy Certificate Of Occupancy",Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Finished Fully Finished 5 Bedroom Detached Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Exquisitely Built Elegant 4bedroom Fully Detached Duplex With, Gymnasium, Swimming Pool, For Sale I",Residents Zone Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets +Plot Of Land For Sale,2nd Avenue Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Luxury Townhouse At Magbon Close,At Magbon Close Macpherson Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +Dry Land Very Hot,Mekwen Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Fully Serviced 4bedroom Semi Detached House With 2room Service Quarters,green Area And Ample Parking Space.",Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +1000sqm Bare Land For Sale,At Cooper Road Ikoyi Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex,"Osborne 2, Ikoyi,lagos Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",0,1,0,5 beds, baths,4 Toilets +3bedroom Exclusive Apartment For Sale,"10club Road,ikoyi Ikoyi Lagos",₦,"205,000,000",1,0,0,3 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Stand Alone Duplex With 2 Rooms Bq.,Ikoyi Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,. Banana Island Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,0 Toilets +2000sqm Bare Land For Sale,Mojisola Onikoyi Behind Shoreline Estate Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +2340sqm Of Are And Gated Land For Sale,4b Iru Close Off Queen Drive Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached House + 1bq,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds, baths, Toilets +"Land Measuring 1,735sqm",Alexander Street Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Detached House With Jetty,Banana Island Banana Island Ikoyi Lagos,₦,"920,000,000",0,0,0, beds, baths, Toilets +30 Rooms Hotel For Sale,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +"New And Tastefully Finished 5 Bedroom Fully Detached House With Swimming Pool, Cinema Room, & 3 Room Bq",Banana Island Ikoyi Lagos,₦,"600,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Twin High Rise Property Of  a 9 Floors & B 10 Floors Consists Of A & B,Olu Holloway Road Old Ikoyi Ikoyi Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached @ Banana Island Road,Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"4brm Fully Detached House @ Off Glover Road, Ikoyi",Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Duplex For Sale,Park View Estate Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Units Of 4 Bedroom Townhouses/terraced Duplexes With Swimming Pool,Ikoyi Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New 3 Bedroom Apartment With Bq At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette Duplex ( Off Plan ),Osborne Foreshore Ii Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"62,700,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maissnate Duplex ( Off Plan ),Banana Island Road Banana Island Ikoyi Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Terrace Duplexbrand With Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With 2 Room Bq,Ikoyi Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Apartment ( Off Plan ),"Ikoyi, Osborne Foreshore Ii Estate Osborne Foreshore Estate Ikoyi Lagos",₦,"47,700,000",1,1,0,3 beds,3 baths,4 Toilets +1200sqm Of Land,Old Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds,2 baths, Toilets +Luxury 4 Bedroom Terrace Duplex With 1 Room Bq, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Flat With Excellent Facilities, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Maisonette With Excellent Facilites,. Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +C Of O,Off Macpherson Street Ikoyi Lagos Bourdillon Ikoyi Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Tastefully Finished Luxury Detached House,. Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New 4 Bedroom Luxury Finished Terrace House At Ilabere, Old Ikoyi", Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Luxury Service Flat, Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Tastefully Finished Detached House, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"440,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached House With A Bq,Banana Island Ikoyi Lagos,₦,"520,000,000",0,1,1,5 beds,6 baths, Toilets +Hotel Forsale In Park View Ikoyi,Joseph Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",1,0,0,10 beds,10 baths,10 Toilets +1000sqm Land For Sale At Osborne Phase 1,Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Townhouse With 2 Bed Bq At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Water Front View Land Forsale At Off Queen Drive Ikoyi Lagos Land Size: 5000 Sqm Price: 2.7b,Queen Drive Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +1000 Sqm Of Land J Zone In Banana Island,Off 3rd Avenue Banana Island Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +611 Square Metres Of Back Land For Sale At Old Ikoyi,Mekuwen Street Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Houses With Swimming Pool And A Pool House,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds,4 baths,5 Toilets +Hotel In Parkview,Richard Street Parkview Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,10 beds,0 baths,0 Toilets +"A Fenced And Gated Land With A Structure On It At Osborne Phase 2 Land Size: 1,416 Sqm Price: 250m Title Document: Federal Certificate Of Occupancy",Osborne 2 Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Well Maintained 4 Bedroom Semi Detach Duplex For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Water Front View Land At Banana Island By 2nd Avenue Ikoyi Zone: J51 Land Size: 1000 Sqm Price: 440m Title Document: Federal Certificate Of Occupancy,Banana Read Banana Island Ikoyi Lagos,₦,"440,000,000",0,0,0,10 beds, baths, Toilets +4 Rooms Terrace House At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Residetial Land Forsale At Off Oba Elegushi Or Old Club Road Ikoyi Lagos Land Size: 2,700 Sqm Price: 1.2b Title Document: Federal Certificate Of Occupancy",Obaelegushi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land For Residential / Commercial Bulding At Mobolaji Johnson Avenue Ikoyi,Mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Duplex In A Serene Environment,Queen Street Banana Island Lagos Banana Island Ikoyi Lagos,₦,"550,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5bedroom Duplex In A Serene Environment,Queen Street Banana Island Lagos Banana Island Ikoyi Lagos,₦,"550,000",0,1,0,5 beds,6 baths,6 Toilets +6 Nos 4 Bedroom Town House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Second Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 2,496sqm","Osborne Phase 2, Block 9, Plot 22 Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Seven (7) Bedrooms Luxury Detached House Plus Bq, Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,7 beds,0 baths,0 Toilets +800 Sqm Land, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3182 Sqm Land, Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Immaculately Finished 4(four) Bedroom Detached House For Sale In Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,5 baths,4 Toilets +Brand New Executive 5bedroom Duplex With 2 Bq At Banana Island.,"Banana Island, Off Ikoyi. Banana Island Ikoyi Lagos",₦,"700,000,000",0,0,0,6 beds,6 baths,6 Toilets +Six (6) Nos Five (5) Bedrooms Luxury Detached Houses Plus Bq, Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrance Duplex,Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +The Overlook Condominiums 31 Luxury Units Of 2 4 Bedrooms,Okotie Eboh Street Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets +2nos Building For Sale In Ikoyi,Olamijuyin Ave Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets +Newly Built 5 Bedroom All Ensuite Mansion In A Serene Environment,"Mojishola, Onikoyi Banana Island Ikoyi Lagos",₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress Sale Of Luxury Flats,3rd Avenue Banana Island Ikoyi Lagos,₦,"135,000,000",1,1,1,3 beds,5 baths,5 Toilets +Distress Sale Of Flat Tango Tower,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"170,000,000",1,0,0,3 beds,5 baths,5 Toilets +1200sqm Landed Property At Parkview,Off Tony Eromosele Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +A Bare Land In A Serene Part Of Old Ikoyi,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +Magnificent 6 Bedroom Mansion At Banana Island Ikoyi Lagos N5b,Banana Island Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,6 beds,6 baths,7 Toilets +Distress Vendor Property,Off Oyinkan Abayomi Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0, beds, baths, Toilets +Fresh Plots Of Land,Mosley Road Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Strategic Residential Plots,Sokoto Street Banana Island Ikoyi Lagos,₦,"550,000",0,0,0, beds, baths, Toilets +Spacious 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedrooms House + Swimming Pool In Banana Island,"Directly Off 3rd Avenue, Banana Island, Lagos. Banana Island Ikoyi Lagos",₦,"650,000,000",0,1,0,5 beds, baths, Toilets +Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors (but Share Common Compound) With Bq,Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,3 beds, baths, Toilets +"Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex On 3 Floors Off Bourdillion, Ikoyi",Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,0 baths,0 Toilets +"Lovely 4 Bedrooms Terrace Duplex, Parkview Ikoyi","Tori Court, Gbenga Asafa Rd Parkview Estate Parkview Estate Ikoyi Lagos",₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +1500sqm Land With A Rear 3bedroom Bungalow Directly On Gerald Road,Gerrald Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"Semi Mandate, 6bedroom Detached House On 2,000sqm Well Finished Property With Cofo",Banana Island Banana Island Ikoyi Lagos,₦,"5,100,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Wing Of Duplex On Approximately 350 Square Meters Located At Olori Mojisola Onikoyi Street, Off Banana Island Road, Ikoyi Lagos.",Onikoyi Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets +Exquisitely Serviced And Furnished 2bedroom Flat,Second Avenue Old Ikoyi Ikoyi Lagos,₦,"140,000,000",1,0,1,2 beds,2 baths,3 Toilets +Land Measured 4050 Square Metres,King's Way Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Condo Flat For Sale,Bourdillon Ikoyi Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets +645sqm Land, Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,500 Sqm Bareland",... Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,520 Sqm Bareland", Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Location: Banana Island Size : 19,400sqm Waterfront | Block K & L Price: 6.5bn Title: Federal C Of O",Banana Island Ikoyi Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Medici With Bq Milverton Ikoyi,Bourdillon Ikoyi Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq Ikoyi,Ikoyi Lagos,₦,"585,000,000",0,1,0,7 beds,7 baths,7 Toilets +Banana Island 5 Bedroom With Bq Pool And Gym,Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,6 Toilets +Water Front Land 9 Joint Venture), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Banana Island 5 Bedroom Detached Duplex With Bq,Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With 2 Bq Banana Island,Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,7 Toilets +Guiliano By Sujimoto 1 Unit Left Amazing Deal,Banana Island Ikoyi Lagos,₦,"460,000,000",0,1,0,1 beds,1 baths,1 Toilets +4 Bedroom Terrace With Pool Ikoyi,Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +"5 Bedroom Semi Detached Duplex With Bq , Fitted Kitchen And Rooms",Adeyemi Lawson Road Macpherson Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Irresistible Four Bedroom Terrace Duplex At Ikoyi, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,426 Sqm Land",... Old Ikoyi Ikoyi Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detatched Duplex With B Q And Swimming Pool And Cinema,Banana Island Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0,5 beds,5 baths,5 Toilets +1500 Square Meter Of Land For Sale Mekunwe Old Ikoyi,Mekunwe Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets +1400 Square Meters Land For Sale At Gerrard Old Ikoyi Lagos,Gerrard Old Ikoyi Ikoyi Lagos,₦,"520,000,000",0,1,0, beds, baths, Toilets +1500 Square Meters Of Land For Sale At Lugard Old Ikoyi,Lugard Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Duplex With Swimming Pool And Cinema, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bed Room Terrace With A Study Apartment, Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Flat With One Room Bq,Off Banana Island Road Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +"2,000sqm Land",... Parkview Estate Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000sqm Land For Sale",... Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 6 Bedroom Detached House With 2 Room Bq, Banana Island Ikoyi Lagos,₦,"970,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,"Acacia Drive, Osborne 2 Ikoyi Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Mahogany Way, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely And Spacious 3 Bedroom Apartment,... Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Automated 4 Bedrooms Fully Detached House, Ikoyi Lagos,₦,"380,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Thompson Road, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,008sqm Land For Sale", Ikoyi S.w Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"1,750,000,000",0,0,0,6 beds,0 baths,0 Toilets +Super Luxury Six Units Of Absolutely Super Luxury Detached Houses,Queens Drive Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +1000 Sqm Dry Land,Zone J60 Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Land,Kingsway Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Contemporary Family Villa ( Off Plan), Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront 7 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,7 beds,0 baths,0 Toilets +Dry Land,Zone J49 Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Alexandra Road, Ikoyi Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House In Old Ikoyi,... Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,5 beds,0 baths,0 Toilets +"1,566 Sqm Land","Cameron Road, Ikoyi Lagos",₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Land,Cooper Road Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Cooper Road, Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land,"Acacia Drive, Osborne 2, Ikoyi Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +1980 Sqm Land,Zone P1 Banana Island Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"1,155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated Brand New 5 Bedroom Detached House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Sweet Corner Piece 1,300sqm Dry Land",Zone D Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Plus 1 Bedroom Flat Guest Chalet, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With An Extra Guest Room,Off Alexander Drive Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Elma Street, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +510sqm Land,"Olagunsoye Oyinlola Street,2nd Avenue Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq, Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fenced Land,Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Alexandra Road, Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Sqm Dry Land,Zone J60 Banana Island Ikoyi Lagos,₦,"920,000,000",0,0,0,0 beds,0 baths,0 Toilets +611 Sqm Of Bareland,Mekuwen Road Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Finished 3 Bedroom Apartment With Bq,... Bourdillon Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Zone J1, Banana Island Ikoyi Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +566 Sqm Land,"Cameron Road, Ikoyi Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Detached House + Swimming Pool, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets +1300 Sqm Land,Cooper Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,0 baths,0 Toilets +Waterfront Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,"Mahogany Way, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedrooms Semi Detached House, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With 3 Living Rooms + Bq, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Bare Land,"Glover Road, Ikoyi Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Glover Road, Ikoyi Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom House,"Mojisola Onikoyi,off Banana Island Road Banana Island Ikoyi Lagos",₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +1000 Sqm Bare Land,Zone J51 Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kingsway Road Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom En Suit Duplex ( Off Plan), Banana Island Ikoyi Lagos,₦,"570,000,000",0,0,0,5 beds,0 baths,0 Toilets +Six Bedroom Penthouse Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,Oba Adeyinka Oyekan Rd (2nd Avenue) Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +450 Sqm Land,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With 2 Bedroom Staff Quaters, Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Off Banana Island, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 2 Bedroom Apartment, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Onikoyi Estate, Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,"Gerard Road, Ikoyi Lagos",₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced 623 Sqm Land,Zone P53 Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartments Ikoyi (pre Construction Sale), Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Fenced And Gated Bare Land Of 2,340 Sqm",Iru Close Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"820,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedrooms Semi Detached House Plus A Room Servant Quarters, Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +1000sqm Residential Plot,Zone J Plot 60 Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached House,... Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Units Of 4 Bedroom Terrace Houses (off Plan), Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Zone P1, Banana Island Ikoyi Lagos",₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Off Alexander Drive Ikoyi S.w Ikoyi Lagos,₦,"100,000,000",1,0,1,2 beds,0 baths,0 Toilets +Waterfront Land,"Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean And Lovely 4bedroom Terrace Off Bourdillon Ikoyi For Sale,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Executive 2 Bedroom Flat At Banana Island Ikoyi N95m,Banana Island Banana Island Ikoyi Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets +*for Joint Venture: 3077.907sqm,Joint Venture Ikoyi Gerrard Road 08063022968 08080842955 Gerard Road Ikoyi Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm At Banana Island Ikoyi Lagos,Zone A18 Banana Island Ikoyi Lagos,₦,"525,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With 1 Room Bq,Right Hand Side Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Prime Plot Of Land Measuring 6302 Sqm,Second Avenue; Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment For Sale In Ikoyi,Gerard Rpad Gerard Road Ikoyi Lagos,$,"1,600,000",1,1,0,3 beds,3 baths,4 Toilets +Land Measuring 3200sqm,Eleko Close Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With One Room Boy's Quarters For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment For Sale,Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly 4 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached For Sale,Banana Island Ikoyi Lagos,₦,"420,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Colonial House For Sale,Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"500,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Study For Sale,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Terrace Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale,Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartments For Sale,Banana Island Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +Executively Built 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Excellent Facilities, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Bedroom Luxury Flats With A Room Bq For Sale At Parkview Estate, Ikoyi Lagos.",Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ocean View 8bedroom Mansion,Dabiri Street Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,1,0,8 beds,10 baths,10 Toilets +Newly Built Luxurious 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful Five Bedroom Semi Detached Duplex At Ikoyi,Olamijiyin Avenue Off Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Serviced Apartment,Milverton Road Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Furnished 3 Bedroom Flat At Ikoyi,Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,4 baths, Toilets +"Oceanview Serviced Three 3 Bedroom Luxury Flat At Banana Island, Ikoyi, Lagos","Banana Island, Ikoyi, Lagos Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths, Toilets +Well Finished And Crafted 2 Bedroom Terrace Duplex Plus Bq,Off Alexander Road Gerard Road Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,3 baths,2 Toilets +5 Bedroom Fully Detached House With A Bq,Olusegun Aina Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Finished And Crafted 4 Bedroom Terrace Duplex Plus Bq,Off Alexander Road Gerard Road Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,4 Toilets +One Block Of 15 Floors,Kingsway Temple Old Ikoyi Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Three 3 Bedroom Block Of Flat At Justice Court, Maroko Close,off Queens Drive, Ikoyi, Lagos","Justice Court, Off Queens Drive, Ikoyi, Lagos Ikoyi Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths, Toilets +Waterfront Land, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Bare Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Cameron Avenue, Ikoyi Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Parkview Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Flat With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +6300sqm Fenced Land, 2nd Avenue Extension Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Tastefully Finished Detached Duplex,2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom House With Private Pool,Banana Island Ikoyi Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Land,Zone G Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale, Brand New 5bedroom Detached House Plus 2room Be In A Mini Estate With Swimming Pool",Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0,7 beds, baths, Toilets +5 Bedroom Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +8800sqm Land, Ikoyi S.w Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Mansion On 2000sqm Land, Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,7 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Gbenga Ashafa Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Luxury 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Parkview Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Exquisitely Finished Detached House, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Flat,Off Awolowo Road Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Kingsway Road, Ikoyi Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: Brand New 5bedroom Detached House Plus 2rm Be In A Mini Estate,Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,0, beds, baths, Toilets +Brand New And Exquisite 3 Bedroom Flat,Off Banana Island Road Bourdillon Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Flat With 2 Room Bq,. Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully 5 Bedroom Fully Detached With Bq And Excellent Facilities,Banana Island Road Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets +15000 Square Meters Land, Ikoyi S.w Ikoyi Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 19,400 Sqm",Zones K & L Water Front Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Plus Bq In Banana Island,Banana Banana Island Ikoyi Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,4 Toilets +Waterfront Land, Banana Island Ikoyi Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +1800sqmt With Extensions To 400sqm Fenced Plot,Osborne Foreshore Estate Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Fenced And Dry Plot Of Land, Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets +7400 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House With 1 Room Bq,"Onikoyi, Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New And Massive 5 Bedroom Semi Detached House With Bq, Banana Island Ikoyi Lagos,₦,"25,000,000",0,0,1,5 beds,0 baths,0 Toilets +24 Units Of 4 Bedroom Luxury Apartments+6 Penthouses Each With Inbuilt Bq Self Contain,... Banana Island Ikoyi Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"530,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With 2 Room Bq,. Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ornamentally Built 8 Bedroom Fully Detached Edifice, Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,8 beds,0 baths,0 Toilets +6800 Sqm Land, Gerard Road Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 2 Bedroom En Suite Flat,Second Avenue Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,0,0,2 beds,2 baths,2 Toilets +Fully Serviced 4 Bedroom Semi Detached House,Off Second Avenue Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedrooms Terraced Duplex,"Milverton Road, Off Alexander Avenue Ikoyi Lagos",₦,"260,000,000",0,1,1,4 beds,5 baths,5 Toilets +New Jv With Demolished Building On It,On Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful And Luxury 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +Massive And Well Built 6 Bedroom Mansion With Penthouse 4 Rooms Boys Quater,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Units Of 5 Bedroom Semi Detached Luxury House,Abayomi Fatusin Street Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Olori Mojisola Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Waterfront Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,8 Toilets +Luxury 3 Bedroom Pent Flat For Sale At Osborne Phase 1,Osborne Phase 1 Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths, Toilets +Luxury 3 Bedroom Duplex,Off Bourdilion Bourdillon Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Pent Flat For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths, Toilets +This Is A Luxury 5 Bedroom Fully Detached Duplex With Servant Quaters Located In Ikoyi. Superb. Price...650m Negotiable.,In A Very Good Area Of Ikoyi Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,5 Toilets +2200sqm,Bourdillon Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land Measuring 5,542sqm",Webb Road (olawale Dawodu) Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths, Toilets +1000sqm Land,Ruxton Road Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone M Banana Island Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 5500sqm,"Wale Daodu Street, Former Webb Road, Off Kingsway Road, Close To Ikoyi Registry Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace, Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex For Sale In Ikoyi, Bourdillon Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Brand New 3 Bedroom Flat,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Flat Apartment, Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,5 baths,5 Toilets +Luxury Brand New 2 Bedroom Flat,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets +2000sqm At Ilabere Avenue,Ilabere Avenue Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,6 baths,6 Toilets +1500sqm In Osborne Phase 2,"Acacia Drive, Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1500sqm,Cameron Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Banana Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Pent Flat,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 6 Bedroom Detached Duplex For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +Exquisite 4 Bedroom Semi Detached Duplex For Sale At Banana Island Foreshore,Banana Island Foreshore Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Bourdillon Bourdillon Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,6 beds,6 baths,7 Toilets +7 Bedroom Exclusively Finished And Furnished Fully Detached Houses With Bq,Waterfront Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,1,1,7 beds,7 baths,8 Toilets +2500sqm Prime Plot,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 5 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +1000sqm Land,Off Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Partitioned Land Measuring 1500sqm,Ikoya Close Ikoyi Lagos,₦,"510,000,000",0,0,0,0 beds,0 baths,0 Toilets +1450sqm Residential Land, Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flats, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bedroom Flat,Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,3 beds,3 baths, Toilets +4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +2500m2 Of Land,"Plot 8a, Block 6 Osborne Foreshore Estate Ikoyi Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,861sqm","Zone L, Residential Zone Banana Island Ikoyi Lagos",₦,"745,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2496sqm,"Osborne Phase 2, Block 9 Plot 22 Osborne Foreshore Estate Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Executive Mansion,Ikoyi Parkview Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,5 beds,5 baths,6 Toilets +1482sqm Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace, Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 1000sqm (cornerpiece),Mojisola Onikoyi Ikoyi Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 6 Bedroom Detached House With A Room Boys Quarter At Banana Island,Ogun Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,5 baths,6 Toilets +Exquisitely Built Spacious 5 Bedroom Terrace Duplex (rose Of Sharon),Falomo Close Off Queensdrive Macpherson Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 6 Bedroom Sitting On 950 Sqm,Banana Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,321close Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sqm Land Located On Glover Road Ikoyi,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Iru Close Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Reeves Road Ikoyi Gerard Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"199,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Aromire Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Ikoyi Lagos,₦,"1,350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 3 Bedroom Flat In A High Rise Building,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Rumens Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2950 Sqm,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2647sqm,Cooper Road Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,J Zone Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Club Road Ikoyi Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ogun Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious And Contemporary Fully Detached Duplex In Old Ikoyi,An Old Ikoyi Street Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds, baths,6 Toilets +Empty Land Of 4534 Sqmt, Gerard Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,3 beds,0 baths,3 Toilets +Land For Sale,Reeves Road Gerard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measures 2500 Square Metres,Kuramo Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2200 Square Metres,Bourdillon Way Ikoyi Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,J44 Zone B Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +835 Square Metres,Off Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,George Street Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Temple Road Gerard Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000sqm Of Land",Banana Isand Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2300sqm,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"851,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Flat,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +"A 1,700sqm Of Land",Turnbull Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +1400sqm Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"574,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lugard Avenue Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,327close Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +"For Sale :banana Island Ikoyi Land Bare Land/ Corner Piece Land Measuring 1,297 Square Metres In Residential",Residential Plot Zone D3 Banana Island Ikoyi Lagos,₦,"720,000,000",0,1,0, beds, baths, Toilets +Land,Bourdillon Road Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ojora Road Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Flats,Ikoyi Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Terrace House,"Ruxton Street, Ikoyi Lagos Bourdillon Ikoyi Lagos",₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land Measuring 611 Square Metres,Mekuwen Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: Banana Island Bare Land At Zone P. Plot P53 , Size: 623.659square Metres .title: Lagos State Governors Consent",Residential Zone Plot P53 B1 Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,0, beds, baths, Toilets +Land Measuring 2700,Glover Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Waterfront Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measures 2191 Square Metres Waterfront,Off Third Avenue Banana Island Ikoyi Lagos,₦,"1,007,860,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom And 2 Bedroom Terraces At Alexander Ikoyi,Alexander Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land For Sale,Oroke Drive Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Semi Detached Duplex Ensuite,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land Measures 500 Square Metres,Banana Island Banana Island Ikoyi Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +One Acre Of Land At James George Estate Ikoyi Lagos,James George Estate Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land 1500 Square Metres,Ruxton Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Certificate Of Occupancy,Bourdillon Street Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",1,0,0,5 beds,6 baths,6 Toilets +Land Measures 5000sqm Cooper Road,Copper Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",1,1,1,5 beds,5 baths,5 Toilets +Land For Sale,Iru Close Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Nos Of 3 Bedroom Flat,Water Front Residential Zone Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measures 2300 Square Metres,Gerrard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Land Has A A Federal Certificate Of Occupancy,D3 Residential Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0, beds, baths, Toilets +Land,Gerrard Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A High Rise Building,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Luggard Road Ikoyi Lagos,₦,"830,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,J Zone Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land Measures 4500 Square Metres,Gerrard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 6 Bedroom Detached Duplex,Nicon Town Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets +New 4 Bedroom Townhouse,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,1 Toilets +One Acre Of Land,Alagbon Beside Ebony's House 2nd Avenue Extension Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Luxury Serviced Apartment For Sale (on Milverton Road, Ikoyi, Lagos)",21 Milverton Road Ikoyi Lagos,₦,"199,000,000",0,0,0,3 beds,4 baths, Toilets +3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Macpherson Avenue Macpherson Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2700 Sqm,Glover Road Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex,Living Gold Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets +Land,Reeves Road Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Reeves Road Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 5 Bedroom Duplex For Sales At Ikoyi.,... Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land Measures 7500,Banana Island Road Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measures 3500sqm,Aromire Street Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 19,000sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Semi Detached 4 Bedroom Duplex For Sale At Parkview Ikoyi,Parkview Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land Measuring 2476,Club Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex At Ikoyi,Parkview Ikoyi Parkview Estate Ikoyi Lagos,₦,"850,000,000",1,1,0,6 beds,6 baths,7 Toilets +Land Measure 4000,Bourdillon Road Ikoyi Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: Bare Land In Residential Plot Zone B Banana Island Ikoyi. Land Size: 2000.01square Metres ,title Is A Lagos State Governors Consent",Residential Plot Zone B Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,1,0, beds, baths, Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +1525 Square Metres,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Temple Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Udi Street Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale Five Bedroom Fully Detached Duplex In Old Ikoyi Lagos,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Luxury Duplex, Banana Island Ikoyi Lagos,₦,"520,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land Measures 7000 Square Metres,Mosley Road Ikoyi Mosley Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Barrow Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Land,James George Street Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ruxton Road Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land,Kingsway Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Detached House,. Banana Island Ikoyi Lagos,₦,"7,000,000,000",0,0,0,8 beds,8 baths,8 Toilets +5800 Land,Off King's Way Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,250sqm Of Land",Temple Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Temple Road Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,250sqm Of Land",Temple Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale : Dolphin Estate Ikoyi , A Superb Detached Wing Of Four Bedroom Duplex House With Two Bedrooms Boys Quarter House",Apapa Road Dolphin Estate Dolphin Estate Ikoyi Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +One Acre Of Land At Jemes George Ikoyi,James George Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measures 1000 Square Metres,Bourdillon Way Ikoyi Bourdillon Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"230,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,J Zone Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable 14 Rooms On 650 Square Metres Of Land,"S/w Old Ikoyi, Moshalashi Street Old Ikoyi Ikoyi Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Road Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ruxton Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom House,327close Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets +Plot Of Land With 14 Rooms,Moshalashi Ikoyi S.w Ikoyi Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,B Close Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Temple Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale,J44 Zone B Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Of 3000 Sqm,Mcpherson Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Of 4 Bedroom Luxury Flat,Banana Island Banana Island Ikoyi Lagos,₦,"8,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +Corner Piece Land,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5100sqm Of Land In Ikoyi For Sale,Old Ikoyi Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +Jv Banana Island Old Ikoyi,Banana Island Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +Land,Banana Island Way Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600sqm Land,Copper Road Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +653.991sqm Of Land At Banana Island,"Banana Island, Borno Street Ikoyi Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Temple Road Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Banana Island Banana Island Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Duplex,Osborne Foreshore Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex, Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Unit 3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Town House Terraced Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Meisonnette Pent House,Old Ikoyi Ikoyi Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Semi Detached House With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Ikoyi Parkview Estate Ikoyi Lagos,₦,"14,500,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Gbenga Ashafa Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Luxury 5 Bedroom Detached Duplex With Excellent Facilities, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Duplex,Dolphin Estate Dolphin Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Waterfront Detached House With 1 Room Boy's Quarter In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex In Ikoyi,Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached House On 950sqm In Banana Island, Ikoyi",Banana Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Tastefully Finished 5 Bedroom Sea View Semi Detached House In Banana Island Estate, Ikoyi",Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Uniquely Built, Exquisite, And Massive Seven (7) Bedroom Detached House",Ikoyi Ocean View Estate Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,10 Toilets +"1,730sqm Bare Land For Sale At Hot Ikoyi Axis Lagos!",Alexandra Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Brand New High Quality Luxuriously Finished Five Star Master Piece Three(3) Bed Waterfront Apartment With Jetty,Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +Waterfront 1500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"620,000,000",0,0,0, beds, baths, Toilets +5200m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +1500m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +898m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +1350m2 Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Mixed Development Land For Sale At Banana Island Zone Q 1800sqm,Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (jv),Lawrence Road Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom House With Bq + Swimming Pool,Banana Island Estate / Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace,"Milverton Road, Banana Island, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom House With Swimming Pool + Cinema House,Banana Island / Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Five Bedroom Semi Detached Duplex For Sale,Residential Waterside Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale Osborne Phase Two: 1344 Sq Mt Land At Block 1 Plot 8.,Osborne Phase 2 Extension Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Very Lovely 4 Bedroom Terrace Duplex,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,"102 Close, Banana Island Ikoyi Lagos",₦,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Mike Adenuga Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +1550sqm Waterfront Plot,"Olori Mojisola Shoreline Estate Ikoyi, Lagos. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Forshore Phase 2 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex | Off Plan, Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Nativity Close , Parkview Estate Ikoyi Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex On 950 Sqmter,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +1405 Square Metres Prime Development Land,"Turnbull Road, Old Ikoyi, Ikoyi, Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Osborne Foreshore 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Terrace House,Osborne Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Mojisola Onikoyi; Off Banana Island Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"590,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartments With 2 Maid's Room And 5 Bedroom Maisonette With 2 Maid's Room And A Roof Terrace,"Plot 22, Bourdillon Road, Ikoyi, Lagos Bourdillon Ikoyi Lagos",₦,"260,000,000",1,1,0,3 beds,5 baths,5 Toilets +For Sale In Ikoyi 3 Bedroom Apartment,Mosley Road Ikoyi Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets +4000 Sqmt Land, Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 6 Bedroom Mansion, Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury And Exquisitely Finish Property,Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,4 baths, Toilets +3 Bedroom Luxury Apartments With 2 Maids' Room & 5 Bedroom Maisonette With 2 Maids' Room,"39, Bourdillon Road, Ikoyi, Lagos Bourdillon Ikoyi Lagos",₦,"350,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Furnished Lovely 20 Units Of Semi Detached Duplexes For Sale At Oni Koyi,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,1,4 beds,5 baths,5 Toilets +Luxury Brand New 2 Bedroom Apartment For Sale At Most Prestigious Banana Island Ikoyi,Banana Island Ikoyi Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths,3 Toilets +Captivating 5 Bedroom Fully Detached Duplex With Bq For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets +Perfectly Finished 5 Bedroom Detached Duplex With State Of The Art Finishing For Sale At Ikoyi.,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Terrace Duplex Available For Sale At Ikoyi,Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Waterfront Land Measuring 1, 500 Sqm For Sale At Mahogany Way Osborne Phase 2 Ikoyi Lagos",Mahogany Way Ikoyi Lagos Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos,Waterview Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3, 500 Sqm Of Bareland On Alexander Ikoyi Lagos",Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"2, 500 Sqm Of Land For Sale Kuramo Ikoyi Lagos",Kuramo Close Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"2,000 Sqm Dry Land For Sale At Ikoyi Lagos",Off Kingway Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1,350 Sqm For Sale At Mahogany Way Osborne Phase 2 Ikoyi Lagos",Mahogany Way Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +611 Sqm Of Bareland Land For Sale Off Queen Drive Ikoyi Lagos,Off Queen Drive Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000 Sqm Of Land With 5 Detached Bedroom House At Bourdlon Ikoyi Lagos",Bourdilon Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +"4,500 Sqm Of Land For Sale At Banana Island Ikoyi Lagos", Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1, 470 Sqm Of Land For Sale At Osborne Foreshore Phase 2",Osborne Foreshore Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +"2,000 Sqm Of Land For Sale Off Kingway Road Lkoyi Lagos",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,100 Sqm O2,100 Sqm Of Land For Sale At Glover Road Ikoyi Lagos Close To",Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,500 Sqm Of Land For Sale At Banana Island Ikoyi Lagos",Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 4, 325 Sqm For Sale At Kingways Road Ikoyi Lagos",Kingway Road Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"1,392 Sqm Of Land For Sale Ruxton Ikoyi Lagos",Luggard Avenue/moboliji Off Kingsway Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,600 Sqm Of Land For Sale Off Glover Road Ikoyi Lagos","Glover Road, Old Ikoyi Ikoyi Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +850 Sqm Of Land For Sale At Shoreline Estate Off Banana Island Lagos,Shoreline Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,700 Sqm Of Land Waterfront At Osborne Foreshore 1 Ikoyi Lagos",Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Apartment With 12 Number Of 3 Bedroom Flats On Space Of 1, 394 Sqm At Parkview Ikoyi Lagos",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,1,0,3 beds,3 baths,3 Toilets +"1,200 Sqm Of Land For Sale At Obalende Close To Passport Office Ikoyi Lagos",Passport Offfice Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1, 500 Sqm For Sale At Acacia Drive Osborne Phase 2 Ikoyi Lagos",Acacia Drive Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +500 Sqm Of Land,Copper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Sqm Of Land For Sale At Luggard Avenue Off Kingway Road Ikoyi Lagos,Lugard Avenue/ Moboliji Off Kingway Road Lkoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos, Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2, 000 Sqm Of Land Bareland For Sale At Glover Road Ikoyi Lagos",Glover Road Ikoyi S.w Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"3,100 Sqm Of Land At Glover Road Ikoyi Lagos",Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"3,500 Sqm Of Land For Sale At Kingway Road Ikoyi Lagos",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2, 500 Sqm Of Land",Kingways Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land For Sale Close To Park View Estate Ikoyi Lagos,Olori Mogishola Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,1,1, beds,5 baths,8 Toilets +3000 Square Meters Of Land,Bank Road Ikoyi S.w Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Brand New Fully Detached 4 Bedroom And 2 Rooms Bq, Banana Island, Ikoyi Lagos.?",Banana Island Ikoyi Lagos,₦,"550,000,000",0,1,1,4 beds,4 baths,5 Toilets +1200 Square Meter Plot Of Land,Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +"Luxurious, Fully Furnished 3 Bedroom Flat In Ikoyi",Ikoyi Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets +Luxury Serviced 4 Bedroom Flat With Bq,Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury & Exclusive 3 Bedroom Flat,Off Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment,Off Gerard Road Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +6units Of 2 Bedroom Flat With 2units Of 1 Bedroom Flat With Bq,Ikoyi Lagos,₦,"550,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Duplex On A Corner Piece,Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4000 Square Meters Of Land,Glover Road Falomo Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +2623 Square Meters Of Land,Oba Adeyinka Oyekan 2nd Avenue Extension Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Furnished 3 Bedroom Flat For Sale,Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +For Sale: Tasteful 4 Bedroom Terrace Duplex With Two Living Rooms,Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2000 Square Metres Of Land,Gerrad Road Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Casa Beira Mar(banana Island),Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds, baths, Toilets +5 Bedrooms Terrace Duplex With Bq,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Block Of Flat On 3000sqm Off Awolowo Road, Ikoyi",Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Estate Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace + Bq,"Parkview, Parkview Estate Ikoyi Lagos",₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat In Ikoyi,Macpherson Macpherson Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 4bedroom Luxury Townhouse + Bq In Ikoyi,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Federal C Of O,"Ikoyi Oba, Ademola Oyekan Ikoyi Lagos",₦,"2,700,000,000",0,0,0, beds, baths, Toilets +For Sale 3bedrooms Flat + Bq At Parkview Estate Ikoyi N90m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Unit Of Unique Luxury 4bedroom Fully Serviced Apartment Measuring 528.334sqm,"Ikoyi Foreshore (close To Banana Island), Ikoyi. Banana Island Ikoyi Lagos",₦,"460,000,000",1,0,0,4 beds,0 baths,0 Toilets +Uniquely Built 7 Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxurious And Well Finished 5 Bedroom Terraced Duplex With 1 Room Stewards’ Quarters Within A Serviced (low Density) Residential Court Located Off Bourdillon Road, Ikoyi.","Off Bourdillon Road, Ikoyi. Bourdillon Ikoyi Lagos",₦,"230,000,000",1,0,1,5 beds, baths, Toilets +"Newly Built Luxury 5 Bedroom Semi Detached Duplex In A Well Planned Low Density, High Profile, Serene And Relaxing Residential Court Located Within Banana Island Estate, Ikoyi, Lagos.","Banana Island Estate, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"450,000,000",0,1,0,5 beds, baths, Toilets +Four (3) Bedroom Apartments And A 6 Bedroom Penthouse With A Pool And Gym On 1600sqms,Banana Island Ikoyi Lagos,₦,"2,800,000,000",1,1,1,9 beds,9 baths,10 Toilets +Land In Banana Island Ikoyi Lagos,M27 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat Plus Bq,Banana Island Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land In South West Ikoyi,"Off Awolowo Road, Sw Ikoyi Ikoyi S.w Ikoyi Lagos",₦,"230,000,000",0,1,0, beds, baths, Toilets +A Serviced Four Bedroom Fully Detached Duplex With A Boys Quarters For Sale In Ikoyi,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Semi Detached Duplex With A Fitted Kitchen And A Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Terrace Duplex With A Fitted Kitchen And A Bq For Sale,Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Ikoyi Residential Plot Measuring 2,346sqm", Ikoyi Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,300 Square Meters", Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex With A Bq,Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets +"3,600sqm (6plots) Bare [email protected] Ikoyi & Joint Venture!",... Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurty 4 Bedroom Duplex With 2 Rooms Service Quarters For Sale In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths, Toilets +600sqm Land For Sale In Osborne With C Of O,Osborne Foreshore Estate Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +"Land Size: 2,370sqm Hot Jv In Parkview Ikoyi", Parkview Estate Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Units Of 4 Bedrooms Town House, Bourdillon",Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Town House,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets +6302sqm Land Ikoyi, 2nd Avenue Extension Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Block Of 9 Floor Luxury Apartments On 5,299.745sqm Land",Olu Holloway Rd. Ikoyi Lagos,₦,"7,000,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment For Sale,Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex For Sale In Ikoyi Kw 2004,Bourdilion Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths, Toilets +4 Bedroom Terraced Duplex,0 Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Off Bourdillon Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette At Banana Island (kw1207),Banana Island Ikoyi Lagos,$,"1,300,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fenced And Gated 1,208 Sqm",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 4bedroom Waterfront Apartment (kw1196),Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced House Sits On 2 Floors For Sale In Ikoyi Kw 1406,Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths, Toilets +4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +3600sqm Land,"Cameron Road, Ikoyi Dolphin Estate Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Renovated 5 Bedroom Semi Detached House With 2 Rooms Bq,Chris Alli Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 6 Bedroom Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedrooms Fully Detached Duplex In Park View Estate 320 Million,Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,1,0,6 beds,7 baths,6 Toilets +Block Of 10 Luxury 3 Bedrooms Flats,"Ikoyi Southwest, Off Awolowo Road Ikoyi Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,200 Sqm Water Front Land","Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1488sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,400 Sqm Land",Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Finished Very Spacious 3 Bedroom Flat For Sale In Parkview Estate, Ikoyi",Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +Serviced 5 Bedroom Terrace Triplex With Bq,Iro Close Off Oyinkan Abayomi Drive Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,. Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious Well Built 4 Bedroom Terrace For Sale In Park View Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Flat For Sale In Parkeview Estate Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5,726 Sqm Land",Alfred Rewane Road Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Fenced 1,476 Sqm Land",Along Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,107 Sqm Land","Glover Road, Ikoyi Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,. Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land, Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Old Detached House, Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Duplex In Park View Estate,Park View Estate Ikoyi Lagos,₦,"950,000,000",1,1,1,7 beds,6 baths,6 Toilets +Land, Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 500sqm For Sale, Located In Banana Island",Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Luxury Brand New 5 Bedroom Detached Duplex For Sale,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Parkview Estate,Prof. Jubril Aminu Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,1,0, beds, baths, Toilets +New And Luxury Finished 5 Bedroom Detached House At Parkview Estate Ikoyi,Layi Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Duplex With Bq For Sale,Banana Island Ikoyi Lagos,₦,"850,000,000",0,1,0,5 beds,7 baths,7 Toilets +Shop For Sale In A Nice Location,Ikoyi Falomo Ikoyi Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets +"1500m² Bare Land, Estate Ikoyi",Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment,Glover Road Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Flat,Glover Road Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +12 Plots Of Land,Banana Island Parkview Estate Ikoyi Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 2nos Of 7bedroom Detached Houses With Bq, Swimming Pool, Gym, Jetty And Other Facilities On 580sqm Each",Banana Island Ikoyi Lagos,₦,"1,000,000,000",1,1,1, beds, baths, Toilets +Penthouse With Indoor Swimming Pool,Around Tinubu Center Avenue Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets +"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema",Ikoyi Lagos,₦,"480,000,000",1,1,0,5 beds,5 baths,5 Toilets +A Tastefully Built 4 Bedroom Detached Duplex,"Gloval Road, Via Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",1,1,1,4 beds,6 baths,6 Toilets +Detached Duplex,Granary Mansion Banana Island Ikoyi Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets +A Tastefully Built 4 Bedroom Detached Duplex,"Gloval Road, Via Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"400,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex On 350sqm,Olori Mojisola Onikoyi Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace House,Living Gold Estate Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished And Luxurious Wing Of 4 Bedrooms Semi Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"530,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Luxury Terrace House At Old Ikoy,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Luxury Service Flat With A Room Boys Quarters,Off Kingsway Road; Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 6 Bedroom House,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Tastefully Finished 3 Bedrooms Luxury Flat At Banana Island Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Osborne Foreshore Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Luxury Finished Terrace House, Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 & 2 Bedroom Serviced Flat At Ikoyi,Ikoyi Ikoyi Lagos,₦,"12,000,000",0,0,0,3 beds,3 baths, Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Water Front And 2bedroom Luxury Service Flat,Banana Island Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Detached 6 Bedroom House For Sale In Banana Island,Banana Island Road Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Semi Detached House At Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Town House,"Off Alexander Road, Ikoyi Ikoyi S.w Ikoyi Lagos",₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5bedroom Tastefully Finished Luxury Terrace With A Pent House And Maid Room At Ikoyi For Sale,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Luxury Terrace With A Pent House,"Off Bourdillon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Property For Sale Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Property For Sale Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Property For Sale In Banana Island,Banana Island Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Guest House In Osborne For Sale,Osborne Osborne Foreshore Estate Ikoyi Lagos,$,"10,000,000",0,0,1,10 beds,10 baths,10 Toilets +Massive 5 Bedroom Fully Detached Duplex,Off Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,1,1,5 beds,5 baths,6 Toilets +Massive 8 Units Of 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"320,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Bedroom Fully Detached House,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Units Of 4 Bedroom Terrace Duplex,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,4 beds,4 baths,5 Toilets +30rooms Fully Furnished Hotel,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 5 Bedroom Detached House With Cinema Room,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment With 2 Sitting Rooms And Bq,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury And Modern 5 Bedroom Semi Detached House,Ikoyi Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury 3 Bedroom Flat @ Banana Island, Ikoyi,",Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Waterfront Plot Measuring 1,540 Square Meters In Shoreline Estate",Shoreline Estate Ikoyi Lagos,₦,"645,000,000",0,0,0, beds, baths, Toilets +Joint Venture Proposition For A Serious Developer,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built And Luxury 4 Bedroom Terrace With Green Area, Pool And Gym",Ikoyi Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +Hot Lands,Off Gerald Road Bourdillon Ikoyi Lagos,₦,"930,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Fully Detached House With 2 Rooms Bq, Swimming Pool And Cinema",Mojisola Onikoyi Estate Ikoyi Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,7 Toilets +Residential Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 9 Units Of 3 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New And Spacious 5 Bedroom Duplex,Ikoyi Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Terraced Duplex With Private Lift,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",1,1,0,5 beds,6 baths,5 Toilets +15 Floors Newly Built Office Complex,Alfred Rewane Rd Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1300sqm,Mobasoji Johnson Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Newly Built 4 Bedroom Terrace With 1 Room Bq,Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +"4 No's Of 5bedroom Terrace Duplex With A Bq, Swimming Pool, Gym And A Garden Etc",Located Inside Osborne Phase 1* Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,Off Osborne Estate Road Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Mini Flat, Banana Island Ikoyi Lagos,₦,"50,000,000",1,1,1,1 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex,Ocean Parade Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Penthouse With Maid Room And Open Terrace,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets +Half Plot Of Land,. Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4bedroom Furnished Terrace Duplex,Off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"350,000,000",1,1,1,4 beds,4 baths,5 Toilets +8 Bedroom Detached House,Off Kwara Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0,8 beds,8 baths,8 Toilets +5 Bedroom Terrace Duplex,Off Milverton Road Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedrooms Terrace + Bq, Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 7 Bedroom Waterfront Duplex, Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,7 beds,7 baths,8 Toilets +Luxury And Brand New Fully Serviced 4 Bedroom Apartment With Bq,Old Ikoyi Ikoyi Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2 Avenue Abacha Estate Ikoyi Lagos,₦,"210,000,000",0,1,1,4 beds,4 baths,5 Toilets +8 Bedroom Mansion With Bq,Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,1,0,8 beds,9 baths,9 Toilets +7300 Square Meters Of Land At Ikoyi,Along Kingsway/ Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +3bedroom Luxury Flat For Sale (26mansionette),Glover Road Old Ikoyi Ikoyi Lagos,₦,"140,000,000",0,1,1,3 beds,3 baths,4 Toilets +Brand New Fully Fitted All Rooms Ensuite Four (4) Bedroom Semi Detached House,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 8 Units Fully Detached And Fully Fitted All Room Ensuite 4 Bedrooms,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxurious 4 Bedroom Semi Detached Houses With Maid Apartment,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Falomo Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +C Of O,Olori Mojisola Shoreline Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Commercial Building Sitting On Approximately 4326 Square Meters,Alfred Rewane Awolowo Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O,Alexander Avenue Ikoyi Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: Two Different Mortgage Banks Located In Ikoyi/abuja/enugu In Nigeria.,Two Different Mortgage Banks Located In Ikoyi/abuja/enugu In Nigeria Ikoyi S.w Ikoyi Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets +Land Of 6302sqm With C Of O, 2nd Avenue Extension Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Martins Courts Glover Road, Ikoyi, Lagos, Nigeria",Glover Road Gerard Road Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"670,000,000",0,1,0,5 beds,5 baths,6 Toilets +Demolishable Building For Sale In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 900sqm For Sale, Located In A Residential Area In Banana Island",Banana Island Ikoyi Lagos,₦,"495,000,000",0,0,0, beds, baths, Toilets +Newly Built Duplex For Sale At Ikoyi,Off Bourdillion Bourdillon Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths, Toilets +Land, Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kingsway Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Per Sqm), Banana Island Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets +"House For Sale In Ikoyi. A 5 Bedroom Fully Detached Duplex In Old Ikoyi, Lagos.",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths, Toilets +Land ( Per Sqm), Banana Island Ikoyi Lagos,₦,"580,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 7 Bedroom Detached Duplex For Sale At Banana Island, Ikoyi.",Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,7 beds, baths, Toilets +5 Bedroom Luxury Terrace Ensuite,Ilabere Avenue Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +Office Complex,Mulliner Tower Old Ikoyi Ikoyi Lagos,₦,"110,000",1,0,0, beds, baths, Toilets +2000sqm Land,"Web Road, Old Ikoyi Ikoyi Lagos",₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1000sqm Web Road, C Of O","Wed Road ,old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"345,000,000",0,0,0, beds, baths, Toilets +2169sqm Land For Sale At Banana Island Ikoyi N420k/sqm,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"420,000",0,0,0, beds, baths, Toilets +Fully Serviced 3 Bedroom Flat In Block Of 12 Flats With Fitten Kitchen,"Adeyemi Lawson,ikoyi, Lagos Island Old Ikoyi Ikoyi Lagos",₦,"120,000,000",0,0,0,3 beds, baths, Toilets +"1000sqm Land For Sale At Shoreline Estate N300,000/sqm",Shoreline Estate Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Terraces With Bq(offplan), Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House Sitting On Approximately 800sqm Land At Thompson Avenue Ikoyi,Thompson Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths, Toilets +2500 Sqm Water Front Land,"Acacia Driveosborne 2, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat All Room Ensuite,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Newly Built 5 Bedroom Detached House With Wonderful Finishing,swimming Pool And A Roof Top Balcony",Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached House With A Wonderful Finishing In Banana Island Estate,Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Massionette House In A Secured Estate,Banana Island Ikoyi Lagos,₦,"270,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached House With Nice Finishing,Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Prime Parcel Of Land,Along Alexandra Avenue Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Fed C Of O,Alexandra Avenue Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,6 Toilets +4bedroom Maisonette Plus Bq,Close To Ocean Parade Banana Island Ikoyi Lagos,₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets +Property For Sale,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +Joint Venture,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"400,000,000",0,1,0, beds, baths, Toilets +Newly Built Four Bedroom Duplex Detached,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"260,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex Plus Bq,Off 3 Avenue Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Joint Venture,Onikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,1,0, beds, baths, Toilets +"Well Finished, Luxury Four (4) Bedroom Terrace House With An Attached One Room Maid's Quarter",Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +C Of O,Close To Kwara Street Banana Island Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Vacant 12 (nos) 3 Bdrm Apartments With 1 Rm Bq Each Plus Gym, Generator House, Gate House And Swimming Pool On 1394 Sq Mt Land",Parkview Estate Ikoyi Lagos,₦,"1,000,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +"6300sqm Land Sale At Oba Adeyinka Oyekan Avenue, 2nd Avenue Road, Ikoyi Lagos","Oba Adeyinka Oyekan, 2nd Avenue Road, Ikoyi 2nd Avenue Extension Ikoyi Lagos",₦,"1,750,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 2497.0815sqm On Gerrard Road,ikoyi.lagos",Gerrard Road. Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 1500sqm On Gerrard Road,ikoyi.lagos",Gerrard Road Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Exquisite 5 Bedroom Semi Detached Duplex,Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat,Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,1 baths,2 Toilets +A Luxurious 3 Bedroom Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Units Of 4 Bedroom Semi Detached Terrace Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 3 Bedroom Flat In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Neat 4 Bedroom Semi Detached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets +Luxury 5 Bedroom Flat In Ikoyi, Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Elegant 5 Bedroom Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Wings Of 5 Bedroom Fully Detached Duplex,Ikoyi Awolowo Road Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Terrace,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 5 Bedroom Semi Detached Duplex,Ikoyi Gerard Road Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Furnished 4 Bedroom Semi Detached Duplex With 24hours Power For Sale.,Gerard Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Building (block Of Flats) In Ikoyi,Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Flat In Banana Island,Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Tastefully Built 5 Bedroom Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex In Ikoyi, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of Lovely 3 Bedroom Flat In Ikoyi,Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 4 Bedroom Terrace House,Ikoyi Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of Tastefully Built 4 Bedroom Terrace Duplex In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Good 4 Bedroom Terrace Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Units Of 4 Bedroom Terrace Duplex,Ikoyi Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of Tastefully Finished 3 Bedroom Flat In Ikoyi,Abacha Estate Ikoyi Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Tastefully Built 2 Bedroom Flat In Ikoyi,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Nice 3 Bedroom Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +An Elegant 6 Bedroom Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Semi Detached Duplex In Ikoyi,Dolphin Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,4 Toilets +6 Units Of 3 Bedroom Flat,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 5 Bedroom Semi Detached Duplex In Ikoyi For Sale.,Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedrooms Semi Detached Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Furnished 4 Bedroom Semi Detached Duplex With 24hours Power,Ikoyi Gerard Road Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Room Bq In Ikoyi,Vi Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +6 Bedrooms Fully Detached Duplex For Sale,Ikoyi Parkview Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Units Of 2 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"101,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Terrace Duplex In Ikoyi, Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of 4 Bedroom Mezonet,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Tastefully Built 4 Bedroom Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +An Executive 5 Bedroom Semi Detached Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Very Spacious Office Space In Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,7 Toilets +An Exquisite 5 Bedroom Detached Duplex,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +Description: 3 Units Of 3 Bedroom Luxury Flats With 1 Rm Bq Location: Mojisola Onikoyi Estate Off Banana Island Road. Ikoyi. Amenities: Fully Fitted Kitchen & Wardrobes. Video Door Entry. Surround Music System. Air Conditioners. Intercom. Cctv. Ds,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +882m2 Plot Land At Abacha Estate,Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +500m2 Land At Cooper Rd Ikoyi.,Copper Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land For Sale On Gerald Road,Gerald Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +6500sqm Of Land On Glover Road,Glover Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +8000sqm Of Land Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +3500sqm Of Land At Lugard Avenue,Lugard Avenue Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +5600sqm Of Land Off Kingsway Road,Off Kingsway Road Ikoyi Lagos,₦,"350,000",0,0,0, beds, baths, Toilets +6000sqm Of Land At Queens Drive,Queens Drive Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +4050sqm Of Land On Kingsway Road,Kingsway Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +5200sqm Of Land By Alakija,By Alakija Ikoyi Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +4000sqm Of Land On Gerald Road,Gerald Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +5000sqm Of Land On Queens Drive,Queens Drive Ikoyi Lagos,₦,"2,500,000",0,0,0, beds, baths, Toilets +2800sqm Of Land On Glover Road,Glover Road Ikoyi Lagos,₦,"1,300,000",0,0,0, beds, baths, Toilets +5897sqm Of Land Off Kingsway Road,Off Kingsway Road Ikoyi Lagos,₦,"1,800,000",0,0,0, beds, baths, Toilets +3150sqm Of Land On Cameron Road,Cameron Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Land,Water Front Residential Land Banana Island Ikoyi Lagos,₦,"1,640,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Alexander Ikoyi S.w Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Zone J Banana Island Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Zone M. Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land For Sale,"Zone M,banana Island Banana Island Ikoyi Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 3 Bedroom Apartment,"Bannana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"165,000,000",1,0,0,3 beds,3 baths,4 Toilets +Nicely Finished 4 Unit Of 3bedroom Flat With A Room Bq At Onikoyi Off Bannana Island Road.,. Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,1,1,3 beds,3 baths,4 Toilets +Waterfront Units Of Luxurious 5 Bedroom Semi Detached Duplexes With Bq, Banana Island Ikoyi Lagos,₦,"480,000,000",1,1,1,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Detached House With 2 Rooms Bq. (serviced) Location ??ikoyi Lagos Nigeria Price: 450m,Bourdillon Ikoyi Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +Executive 5 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Off Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Detached House,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Brand New 5 Bedroom Detached House With 2 Room Bq, Banana Island Ikoyi Lagos,₦,"700,000,000",0,1,1,5 beds,5 baths,6 Toilets +"4 Bedroom Maisonette For Sale Onikoyi, Opposite Rebecca Court, Banana Island Off Plan",Rebecca Court Banana Island Ikoyi Lagos,₦,"129,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Premium Apartment For Sale,Onikoyi Banana Island Ikoyi Lagos,₦,"85,500,000",0,0,0,4 beds,5 baths,5 Toilets +Waterfront 4 Bedroom Semi Detached Duplex," Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"150,000,000",1,0,1,4 beds,4 baths,5 Toilets +3 Units Of Luxurious 3 Bedroom Terrace Duplexes Plus A Room Bq Location ??banana Island Ikoyi Lagos. Price: N275m Per Unit.,Banana Island Ikoyi Lagos,₦,"290,000,000",1,1,0,3 beds,4 baths,4 Toilets +Well Furnished 3 Bedroom Apartment For Sale In Parkview Estate,Lekki Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths, Toilets +Executive 5 Bedroom Detached House With 2 Rooms Bq And A Roof Top Terrace. (serviced) Location ??ikoyi Lagos Nigeria Price: 320m,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Unit Of 5 Bedroom Luxury Detached Houses With Boys Quarters,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Terrace At Old Ikoyi,Lekki Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment For Sale At Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Duplexes Plus A Room Bq Location ??banana Island Ikoyi Lagos. Price: N400m,Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment At Old Ikoyi,Lekki Ikoyi Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Semi Detached House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +"For Sale, Lease And Rent",Banana Island Ikoyi Lagos,₦,"500,000,000",1,1,0, beds, baths, Toilets +Waterfront Block Of Flats At South West Ikoyi,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Terrace Duplex,Oloto Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets +Super Finished 5 Bedroom Town House,Off Glover Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built State Of An Art High Rise Located In Ikoyi,Bourdillion Bourdillon Ikoyi Lagos,$,"1,500,000",1,1,1,4 beds,3 baths,3 Toilets +Newly Built Smart Home In Ikoyi,Shoreline Drive Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,1,0,4 beds,5 baths, Toilets +Well Finished 5 Bedroom Fully Detached Duplex For Sale In Onikoyi Estate,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +700 Square Metres,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,5 beds,5 baths,5 Toilets +Land Measuring 450m2,Off Ilubrin Estate Osborne Osbourne Ikoyi Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Osborne Two Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Bareland At Zone J 60,J 60 Residential Area Of Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +7 Bedroom Duplex And 2 Bedroom Bq.,Off Awolowo Way Falomo Ikoyi Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets +Plot Of Land,Nativity Close Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Square Metres,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"360,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex,Off Macpherscson Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 8 Bedroom Mantion,Kwara Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,10 beds,9 baths,10 Toilets +Fully Furnished 8 Bedroom Mansion,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,8 baths,8 Toilets +Fully Furnished 5 Bedroom Duplex +bq,Kwara Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Flat,I Piccadilly Street Ikoyi S.w Ikoyi Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,3 Toilets +Newly Built 4 Bedroom House On 3 Floors.,Banana Island Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached House,Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 5 Bedroom Duplexes,Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace House,Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +Detached House,Ikoyi Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +"Waterfront Blk Of 10 Units Of 3 Bedrm Flats All Rooms Ensuite With 10 Rms Bq , Elevator, Gym,water Treatment Plant, N Office @ Old Ikoyi",Off Awolowo Road Old Ikoyi Lagos Awolowo Road Ikoyi Lagos,₦,"900,000,000",1,1,0,3 beds,3 baths,3 Toilets +Fully Detached Semi Serviced 4 Bedroom Duplex For Sale @ Banana Island Ikoyi,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets +2000m2 Bare Land With Federal C Of O On Old Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Breathtaking Luxury & Exotic Finished 6 Bedroom Penthouse For Sale At Ikoyi Lagos N300m,Ikoyi Bourdillon Ikoyi Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets +A Tastefully 4 Bedroom Town House With A Room Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment With Bq At Parkview Estate Ikoyi N85m,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"85,000,000",1,1,0,2 beds,3 baths,4 Toilets +En Suit 3 Bedroom Flat+ 1 Detached Servant Quarters, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Newly Built And Luxury 24 Unit Of 3 Bedroom Flat,Banana Island Estate Banana Island Ikoyi Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Fenced 750 Sqm Of Land,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +1208sqm Land, Parkview Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Ikoyi Crescent,Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +A Fenced Plot Of Land,"Plot 3, Behind Banana Island Apartment. Banana Island Ikoyi Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +"2600sqm Land On Gerard Road, Ikoyi.",Gerard Road Gerard Road Ikoyi Lagos,₦,"850,000,850",0,0,0, beds, baths, Toilets +Land In Ikoyi,Ikoyi Crescent Osborne Foreshore Estate Ikoyi Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Old 3 Units Of 3 Bedrm Flat,"69, Norman Williams Street, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,3 beds,2 baths,2 Toilets +"4 Bedroom Detached Duplex ...a Showpiece Home Is Now For Sale In Banana Island, Ikoyi",Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,4 beds,4 baths,4 Toilets +10 Units Of 3 Bedroom Flats,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Boys Quarters,Titanium Towers Gerard Road Ikoyi Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Banana Island. 2476 Square Meters, 1900 Square Meters Totaling 4376 Square Meters. N450k Per Square Meter(net)",Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +"1,250sqm Semi Direct Plot Of Land","J51 (d) Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"500,000",0,0,0, beds, baths, Toilets +Semi Direct Plot Of Land (1050sqm),"M27 C Banana Island, Ikoyi Banana Island Ikoyi Lagos",₦,"410,000,000",0,0,0, beds, baths, Toilets +2000 Sqm Waterfront Sandfilled Bareland,Acacia Drive Osborne2 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0, beds, baths, Toilets +750sqm Solid Land,Osborne Foreshore Estate Ikoyi Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +1000sqm Mixed Use Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Corner Piece Mixed Use Land,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +63room Hotel For Sale On Victoria Lsland,Ikoyi S.w Ikoyi Lagos,₦,"2,300,000,000",1,1,1, beds, baths, Toilets +6 Units Of Fully Detached 5 Bedroom House With Bq And 4 Units Of Semi Detached 4 Bedroom House With Private Study And Bq,Banana Island Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,0,0,5 beds, baths, Toilets +"3,300 Square Meter Land", Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Residential Or Commercial 4,000sqm Bareland With C Of O.",Bareland Facing Road At Onikoyi Along Banana Entrance Gate . Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,1 beds,1 baths,1 Toilets +"Commercial Land In 3 Deffrent Locations In Ikoyi, Lagos","Alexander Rd, Kingsway Rd, Osborne Road, Oba Adeyinka Oyekan Rd (2nd Avenue) Old Ikoyi Ikoyi Lagos",₦,"2,600,000,000",0,0,0,1 beds,1 baths,1 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Terrace Duplex,. Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elite 5 Bedroom Terrace House With Bq, Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq, Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex In Banana Island,Banana Island Road32 Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +3bedroom Flat,Off Bank Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Semidetach Duplex,232 Ogun Street Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse For Sale And Rent Option Sale Price: N180m Asking Rent: N9m Per Annum.,"Rumens Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds, baths, Toilets +"The Biggest Plot In Old Ikoyi: 26,000sqm On Glover Road With Lagos State Cofo And Building Plan Approval",Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land @ Banana Island (waterfront),Close 310 Plot J60 Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Brand New Lovely 4 Bedroom Luxury Apartment For Sale In Ikoyi,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +"A Plot Of Land Measuring 1725sqm On Alexander Ave,ikoyi.lagos",Alexander Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 1736sqm On A Corner Piece Alexander By Bourdilion Rd,ikoyi Lagos.",Bourdilion Bourdillon Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 1113sqm On A Corner Piece On Bourdilion Road,ikoyi.lagos",Bourdilion Bourdillon Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 3500sqm On A Corner Piece On Alexander Road.ikoyi Lagos,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 700sqm With Fed C Of O On Lugard Rd,ikoyi.lagos",Lugard Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 1000sqm At J Zone Banana Island,ikoyi.lagos",J Zone Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +High Rise Luxuriously Built Furnished Three (3) Bedroom Apartment For Sale In Ikoyi Lagos ...,Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Luxurious House With Swimming Pool.,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Plot Of Land,J2 Banana Island Ikoyi Lagos,₦,"599,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Boys Quarter,Alhaji Bashorun Street Off Norman Williams Street Awolowo Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Luxurious House With Swimming Pool.,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +2600sqm Of Land,Gerard Road Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +4500sqm Of Land,Gerard Road Gerard Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Plot Of Land Measuring 1,137.690sqm",Funso Martin's Street Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Land Available,Kingsway Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex,Ruxton Road Ikoyi Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets +Covenant Real Estate Limited,Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +820sqm Land Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Cofo At Mojisola Onikoyi Estate. Ikoyi,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 1 Bedroom Apartment (off Plan),"25 Banana Island Rd, Ikoyi. Banana Island Ikoyi Lagos",₦,"50,000,000",1,1,0,1 beds,1 baths,2 Toilets +Corner Piece Land On Awolowo Road,Awolowo Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Serviced 3 Bedroom Apartment In Ikoyi,"Off Queens Drive, Ikoyi Ikoyi Lagos",₦,"90,000,000",0,0,0,3 beds,4 baths, Toilets +Luxury Four(4) Bedroom Terrace Duplex In Ikoyi,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +3 Bedroom Apartment,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Five Bedroom Detached House On Glover Road,Glover Road Ikoyi Lagos,₦,"307,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury 5 Bedroom Terrace House In Ikoyi,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"98,000,000",0,0,0,4 beds,5 baths,6 Toilets +3 Bedroom Apartment, Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Terrace House,"Off Queens Drive, Old Ikoyi Ikoyi Lagos",₦,"305,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Lovely Brand New 4 Bedroom Flat In Parkview, Ikoyi",Parkview Ikoyi Ikoyi Lagos,₦,"98,000,000",0,0,0,4 beds,5 baths, Toilets +Luxury Five(5) Bedroom Fully Detached House ( Off Plan),"Glover Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Luxury 5 Bedroom Terrace House,"Off Queens Drive, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"330,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New And Serviced Four(4) Bedroom Terrace House, Bourdillon Ikoyi Lagos,₦,"255,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Luxury 5 Bedroom Terrace Duplex In Ikoyi,Off Queens Drive Ikoyi Lagos,₦,"305,000,000",0,0,0, beds, baths, Toilets +26000sqm Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"480,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," ojora Road, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Luxury Apartments,Off Onikoyi Street Banana Island Ikoyi Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths,3 Toilets +Lovely Finished 3 Bedroom Apartment At Parkview Estate Ikoyi Lagos N90m,Femi Pedro Parkview Estate Ikoyi Lagos,₦,"90,000,000",1,0,0,2 beds,3 baths,4 Toilets +Newly Built Luxury 3 Bedroom Flat For Sale At Ikoyi Lagos N95m,Off Queens Drive Macpherson Ikoyi Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Executive 3 Bedroom Flat At Bamana Island Ikoyi Lagos N130m,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Penthouse Flat At Ikoyi Lagos N140m,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,400,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace For Sale,"Park View Estate,ikoyi Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Osborne Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Houses With Bqs,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,K Falomo Ikoyi Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Super Luxury Detached House,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,"Park View Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Units Of Tastefully Finished 3bed Ensuite Flats For Sale,Queens Drive Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Terrace House,Off Queens Drive Falomo Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Detached House With 2 Rooms Servant Quarters,",Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,5 baths,6 Toilets +Some Cheap Ikoyi Sales You Will Love...,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious Mansion For Sale In Banana Island Ikoyi Lagos,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"5,000,000,000",1,1,1,10 beds,10 baths,10 Toilets +Exquisite 5 Bedrooms Terraced Duplex With State Of The Art Facilities, Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Terrace House With Study For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Exquisite 4 Bedroom Penthouse In The Heart Of Ikoyi,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Colonial House For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built,Ikoyi Ikoyi Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +3bedroom Flat In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"180,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedrooms Detached House For Sale,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Ikoyi Ikoyi Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Glover Old Ikoyi Ikoyi Lagos,₦,"550,000,000",1,1,0,4 beds,5 baths,5 Toilets +Apple Island,Apple Island Ikoyi Lagos,₦,"350,000,000",0,1,0, beds, baths, Toilets +6 Bedroom Detached Duplex," ojomu Road, By Ikoyi Roundabout, Old Ikoyi Ikoyi Lagos",₦,"600,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Terraced Duplex,"George Street, Ikoyi Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Governor Consent,Ikoyi Community Ikoyi S.w Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom Semi Detached House With A Bq,Olamijuyin Avenue Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Detached House With A Room Bq,3rd Avenue Banana Island Ikoyi Lagos,$,"2,500,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House With A Room Bq,"Off Gbenga Ashafa Street, Parkview Estate Ikoyi Lagos",₦,"185,000,000",1,0,0,5 beds,5 baths,6 Toilets +A 7650sqm Water Front Land,Zone J Banana Island Ikoyi Lagos,₦,"3,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Semi Detached House On 3 Floors With Fitted Kitchen, Elevator, 2 Rooms Bq Etc","Gbenga Ashafa Street, Onikoyi Parkview Estate Ikoyi Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets +"3 Nos 5 Bedroom Semi Detached House On 3floors With Fitted Kitchen, 1 Room Bq Etc","Gbenga Ashafa Street, Onikoyi Parkview Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached House With Two Rooms B/q,Professor Jubril Aminu Street Parkview Estate Ikoyi Lagos,₦,"300,000,000",1,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Detached House With 3 Rooms Boys Quater,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 & 5 Bedroom Luxury Semi Detached Houses With B/q,Olamijuyin Avenue Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex With A 2 Rooms Maid Quarters,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,8 Toilets +Newly Constructed Four Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Built 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Terrace House,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Newly Built, Well Designed And Finished 4 Bedroom Terraced Duplex",Off Bourdillion Road; Old Ikoyi Ikoyi Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Ambassadorial And Lavishly Finished Seven (7) Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,7 beds,7 baths,8 Toilets +Magnificent 3 Bedroom Terrace Duplex,Off Bourdillon Road Falomo Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Modernized 5 Bedroom Executive Mansion,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Uniquely Built, Exquisite And Massive 7 Bedroom Detached House",Parkview Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets +Luxurious And Well Finished 4 Bedroom Terraced Duplex,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive And Well Built Five (5) Bedroom Detached House,. Banana Island Ikoyi Lagos,₦,"620,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Well Finished 5 Bedroom Detached House,Ikoyi Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Well Designed, Finished, And Fitted 4 Bedroom Detached Duplex",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Newly Built, Well Designed, Luxury 5 Bedroom Semi Detached Duplex",Off Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets +Brand New 4 Bedrooms Terrace House,James George Dolphin Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4000sqm Jv On Banana Island Qa1,Ikoyi Banana Island Ikoyi Lagos,$,"5,000,000",0,0,0,3 beds,3 baths,3 Toilets +3600sqm Jv Land On Banana Island J15,Ikoyi Banana Island Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat On Osborne Towers,Osborne Towers Ikoyi Ikoyi Lagos,$,"1,500,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,6 Toilets +5000sqm At Bourdillon For Joint Venture,Bourdillon Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +1270sqm Of Land,Off 3rd Avenue Plot J51 Banana Island Ikoyi Lagos,₦,"450,000",0,0,0, beds, baths, Toilets +Land For Sale In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"430,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Duplex With Swimming Pool For Sale,By Rexton Close To Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"650,000,000",1,1,0,5 beds,5 baths,6 Toilets +House For Sale," agodogba Avenue,parkview Estate, Parkview, Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," ayodogba, Parkview, Ikoyi Lagos",₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +Mixed Use Land," norman Williams Off Awolowo Road, Old Ikoyi Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Prime Land Of About 2250 Sqm, Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 5 Bedroom Ensuite Luxury Terrace House,Queens Drive Ikoyi Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land For Sale," banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +"4,500 Square Meters Land, Title Is Certificate Of Occupancy","Gerard Road,ikoyi Gerard Road Ikoyi Lagos",₦,"1,500,000,000",1,0,0, beds, baths, Toilets +"3 Nos. High Rise Residential Block Of 12 Floors, 3 Bedroom Apartments With Bq",Alagbon Ikoyi Lagos,₦,"8,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,"Club Road, 2nd Avenue Extension Ikoyi Lagos",₦,"190,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Unit Of 3 Bedroom Apartment House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,1,1,3 beds,3 baths,4 Toilets +"2,600 Square Metres Land For Sale","Gerard Road, Ikoyi Gerard Road Ikoyi Lagos",₦,"900,000,000",1,0,0, beds, baths, Toilets +3 Bedroom Flat / Apartment,Mosley Mosley Road Ikoyi Lagos,₦,"300,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex House,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished Waterfront 5 Bedroom Semi Detached House, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Ornamentally Built 8 Bedroom Fully Detached Edifice, Banana Island Ikoyi Lagos,₦,"4,500,000,000",0,0,0,8 beds,0 baths,0 Toilets +New 3 Bedroom Mansionette With Bq, Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With 2 Rooms Bq, Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New 2 Bedroom Terrace House, Old Ikoyi Ikoyi Lagos,₦,"130,000,000",0,1,0,2 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached House With Bq,Glover Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House With A Room Bq, Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Penthouse Mansionette With Bq,Shoreline Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With Bq,Shoreline Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +Block Of 8 Nos 3 Bedroom Flat With 2 Nos 4 Bedroom Mansionette Penthouses With Bq, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Mansion, Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,10 baths,10 Toilets +Brand New 5 Bedroom Semi Detached Duplex With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Serviced 4 Bedroom Fully Detached House With Bq,Off Alexander Road Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat With Bq,. Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,1,0,3 beds,0 baths,0 Toilets +2500 Square Meter Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terrace With Bq,Off Alexander Road Ikoyi Lagos,₦,"260,000,000",0,0,0,3 beds,5 baths,5 Toilets +New 4 Bedroom Terrace House With Bq, 2nd Avenue Extension Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Serviced Semi Detached House, Banana Island Ikoyi Lagos,₦,"180,000,000",1,0,0,4 beds,0 baths,0 Toilets +New 4 Bedroom Semi Detached House With Bq,Okotie Eboh Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +New 3 Bedroom Semi Detached House With Bq,Okotie Eboh Ikoyi S.w Ikoyi Lagos,₦,"140,000,000",0,1,0,3 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury Waterfront 6 Bedrooms Fully Detached House With Bq, Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Maissonette, Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats And Mansionette, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +812 Sqm Land,Shoreline Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 8 Bedroom Semi Detached House + Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,1,0,8 beds,0 baths,0 Toilets +Brand New 4 Bedroom Penthouse + Bq, Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,1,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +700 Sqm Land,Lugard Ikoyi Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500 Square Meters Land, Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5100 Sqm Land, Ikoyi S.w Ikoyi Lagos,₦,"1,785,000,000",0,0,0,0 beds,0 baths,0 Toilets +9000 Sqm Land,Club Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Sqm Land,"Cameron Road, Ikoyi Lagos",₦,"39,600,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Land,"Web Road, Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom High Rise Flat With Bq, Gerard Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq, Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq, 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Exquisite 5 Bedroom Fully Detached House With Swimming Pool, Gymnasium And Club House With Children Play Ground",Park View Estate Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets +Luxurious Four Bedroom Terrace Duplex At Ikoyi,"Femi Okunnu, Ikoyi Lagos",₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ikoyi Residential Scheme 1 Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land, Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," banana Island, Banana Island Ikoyi Lagos",₦,"630,000,000",0,0,0,5 beds,0 baths,0 Toilets +High Rise Of 13 Storey Building, Gerard Road Ikoyi Lagos,₦,"8,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6500sqm Fenced Land, 2nd Avenue Extension Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 3964 Sq Mtrs At James George Street By Alagbon Close , Off Old Federal Secretariat, Ikoyi, Lagos","Land Measuring 3964 Sq Metrs At James George Street, By Alagbon Close, Off Old Federal Secretariat, Ikoyi, Lagos. Ikoyi Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached House, Macpherson Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Self Serviced New Four Bedroom Terrace, Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex,210 Close Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +1400 Sqm Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 3,674 Sq Mtrs At Reeve Road, Ikoyi, Lagos.","Reeve Road, Off Glover Road, Ikoyi, Lagos. Ikoyi Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House + Bq, Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land," queensdrive, Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex," parkview, Ikoyi Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets +Mixed Use Land, Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury Four Bedroom Semi Detached House, A Room Bq With Two Units Of Two Bedroom Flat And One Unit Miniflat.",Abia Street Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Finished Five Bedroom Terrace With A Room Staff Quarters.,"Off Bourdillon Street, Ikoyi Bourdillon Ikoyi Lagos",₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Bourdillon Old Ikoyi Ikoyi Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land Measuring 1560sqm, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bareland Measuring 2000sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 576sqm With Raft Foundation, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm On Bourdilion Road,Bourdilion Road Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 5000sqm On Queens Drive,ikoyi Lagos",Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 2500 Sqm Waterfront At Osborne Phase 2, Ikoyi",Osborne Phase 2; Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Super Finished 4bedrooms Semi Detached Duplex With Bq Newly Built On Milverton Road,ikoyi.lagos",Milverton Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Plot Of Land Measuring 576sqm At Onikoyi,ikoyi.lagos", Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 2509 Sqm Waterfront With Embarkment On Royal Palm Avenue,osborne Phase 2, Ikoyi","Royal Palm Avenue; Osborne 2, Osbourne Ikoyi Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2000sqm,Bank Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Femi Pedro Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Waterfront Plot Of Land Measuring 2000 Sqm On Awolowo Road, Ikoyi",Awolowo Road; Ikoyi S.w Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 500sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 500sqm,Cameron Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Cameron Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 1500sqm On Mekuwen Street,old Ikoyi.lagos",Mekuwen Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +A Bareland Measuring 2275sqm,Shew Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 500sqm, Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Distress Sales A Plot Of Land Measuring 4000sqm,James George Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm,Lugard Avenue Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 900sqm,Mobolaji Johnson Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 3000sqm,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1100sqm, Parkview Estate Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Lugard Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1560sqm, Gerard Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1450sqm,Temple Road Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm With A Demolishable Building, Bourdillon Ikoyi Lagos,₦,"770,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1129sqm At Banana Island J Zone.ikoyi.,J Zone Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 20000sqm On Kingsway Road,ikoyi Lagos.",Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"15,000,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 1000sqm,Bedwell Street Old Ikoyi Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 7400sqm On Kingsway Road,ikoyi.lagos",Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 5106sqm,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land,  Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Nos 3 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,3 beds,0 baths,0 Toilets +1736 Sqm Land, Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"5,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Brand New Exquisitely Built And Serviced Maisonette, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Exquisitely Finished Detached House With 1 Room Bq, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats," banana Island, Banana Island Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex," off 3rd Avenue, Banana Island Ikoyi Lagos",₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex," mojisola Onikoyi Estate, Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mixed Use Land, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," off Awolowo Road, South West, Ikoyi Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +2250sqm Land, Gerard Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land, Banana Island Ikoyi Lagos,₦,"7,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1089 Sqm Bare Land, Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat,Parkview Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +1500 Square Meters Land,"Mahogany Way, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5200 Square Meter Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500 Square Meter Land,Water Front Plots On Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Square Meters Land,"Acacia Drive, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +1350 Square Meters Land,"Mahogany Way, Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Of 5 Bedroom Duplex,Bode Olajumoke Crescent Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace, Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached House, Abacha Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,210 Close Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +1371 Square Meters Land,Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3500 Square Meter Land,Alexander Road/ Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,900 Sqmt Bare Land",Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced & Gated Bareland Of 2340sqm In Ikoyi,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Plot Of Land Size 700sqm,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Classic Units Of 3 Bedroom Flats + 2 Units Of 3 Bedroom Penthouse+ 2 Units Of 2bedroom Flats + 1 Unit Of 2 Bedroom Penthouse Sitting On 2000sqm Of Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Fenced & Gated Mixed Used Bare Land Measuring 7,300 Sqm",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Plot 5100sqm With A Lagos State Title.,Ademola Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Land On Zone J60,Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 (3) Bedroom Flats With 6 Room Bq,Kingsway Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land On 1000sqm Land (not Waterfront),Zone Banana Island Ikoyi Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Waterfront Land,Zone Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 3 Bedroom Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fenced Detached House Located On Size 1000sqm,Bourdillion Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikoyi Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Bare Land For Sale On Cooper Road Ikoyi.,Cooper Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Office Space," norman Williams, Falomo Ikoyi Lagos",₦,"170,000,000",0,0,0,0 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex, Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached Duplex,"Off Bourdilon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached House, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Federal Cofo,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Wing Of Duplex,Olori Mojisola Onikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"230,000,000",1,0,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With Bq, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite Four(4) Bedroom Terrace House,Parkview Estate Off Alexander Road Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +For Sale,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 30 Rooms Hotel,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"2,500,000,000",1,1,1, beds, baths, Toilets +5 Bedroom Terrace For Sale,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Osborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace For Sale,Off Glover Road Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets +Superb Four (4) Bedroom Detached House, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Large Expanse Of Land,2nd Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House, Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace For Sale,Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,3 Toilets +5 Bedroom Detached Duplex, Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat, Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,  Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom House, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 4 Bedroom Fully Detached Duplex,Off Bourdillon Road Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,  Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom House," directly Off 3rd Avenue, Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Queens Drive Ikoyi S.w Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," banana Island, Banana Island Ikoyi Lagos",₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land For Sale @ Ikoyi,Elm Street Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +5 Bedroom House," gerrard Road, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Flat," off Onikoyi Lane, Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat," glover Road, Old Ikoyi Ikoyi Lagos",₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets +Duplex,Along Banana Estate. Banana Island Ikoyi Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +Massive 7 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,7 beds,7 baths,8 Toilets +Luxury 4bedroom Detached Duplex,Off Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"500,000,000",0,1,1,4 beds,4 baths,5 Toilets +Duplex,Banana Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Detached Duplex,2 Street Banana Island Ikoyi Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Residential Land, Banana Island Ikoyi Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan Sale Of 4 Bedroom Luxury Apartment With A Maids Room,2nd Avenue Banana Island Ikoyi Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced Luxurious Four (4) Bedroom Town House With One (1) Servant's Quarters,"2, Bank Road, Ikoyi Old Ikoyi Ikoyi Lagos",₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Luxury 2 Bedroom Apartment (under Construction) N7,5000,00 Initial Deposit And Spread Payment Over 24 Months. Project Delivery In 30 Months",Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"7,500,000",1,1,1,2 beds,2 baths,2 Toilets +Some Extra Explanation On Poisson,"13b Femi Adebule Street, 13b Ikoyi S.w Ikoyi Lagos",₦,"10,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land, Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +2100 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4800 Sqm Of Land For Sale At Ikoyi,Kingsway Road Ikoyi Lagos,₦,"2,900,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Temple Road,Temple Road Ikoyi Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets +3000sqm Of Land At Ilabere Road,Ilabere Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +4000 Sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +3106.587sqm Of Land For Sale At Ikoyi,Cameron Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +537sqm Of Land For Sale At Ikoyi,Macpherson Avenue Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Old Ikoyi,James George Street Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Dry Land For Sale On Milverton Road,Milverton Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +1100sqm Of Land For Sale At Ikoyi,"Plot 2a, Templeroad Ikoyi Lagos",₦,"475,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Shaw Road,Shaw Road Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Ikoyi,Gerald Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Cameron Road,Cameron Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +900sqm Of Land For Sale At Ikoyi,Temple Road Ikoyi Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets +1645sqm Of Land At Turnbull Road,Turnbull Road Ikoyi Lagos,₦,"470,000,000",0,0,0, beds, baths, Toilets +800sqm Of Land At Glover Road,Glover Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"4,534sqm Empty & Fenced Land",Gerrard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +550sqm Land For Sale At Ikoyi,Ademola Street Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +999.90sqm Of Land On Shaw Road,Shaw Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Okunola Martin's Close,Okunola Martin's Close Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Rear Plot On Copper Road,Copper Road Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Ikoyi,Milverton Road Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Lugard Road,Lugard Road Ikoyi Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Aromire/kingsway Road Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Milverton Road,Milverton Road Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Property For Sale On Okotie Eboh Street,Okotie Eboh Street Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2200sqm Of Land For Sale At Glover Road,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +1400sqm Of Land At Turnbull Road,Turnbull Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2811sqm Of Land For Sale At Glover Road,Glover Road Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"7,100sqm Of Empty & Fenced Land",Gerrard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0, beds, baths, Toilets +1001 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets +2000 Sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Enchanting 4 Bedroom Terrace House,"Ruxton Road Old Ikoyi, Off Bourdilon Road Ikoyi Lagos",₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisite Four(4) Bedroom Terrace House,Parkview Estate Off Alexander Road Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Units Of Detached Houses, Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Semi Detached House,Eko Street Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 3 Bedroom Flat, Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrance House,. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrance Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House, Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Giuliano De' Medici By Sujimoto Construction Penthouse,Banana Island Banana Island Ikoyi Lagos,₦,"850,000,000",1,1,1,5 beds,5 baths,6 Toilets +Giuliano De' Medici By Sujimoto Construction Terrace,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets +Lucrezia By Sujimoto Construction (off Plan) Penthouse,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,4 baths,5 Toilets +Lucrezia By Sujimoto Construction (off Plan) Maisonettes,Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",1,1,1,4 beds,4 baths,5 Toilets +The Medici By Sujimoto Construction,"Milverton, Ikoyi Bourdillon Ikoyi Lagos",₦,"260,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Off Boudillion Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Shoreline Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mobolaji Johnson Street Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikoyi Lagos,₦,"340,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat With Bq, Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Penthouse Maisonette With Bq, Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq,Osborne Phase2 Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lugard Road Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bank Road And Macgregor Road Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Club Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lugard Road Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets +Certificate Of Occupancy,"Thompson Avenue, Falomo Ikoyi Lagos",₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Govrnor's Consent,"Thompson Avenue, Old Ikoyi Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,0,4 beds,4 baths,5 Toilets +Governors Consent C Of O,Beside Shoreline Estate Bourdillon Ikoyi Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Duplex,Road 217 Banana Island Ikoyi Lagos,₦,"750,000,000",0,1,0,5 beds,6 baths,8 Toilets +Glencove Terrace Osborne Foreshore,"6 Iroko Street, Osborne Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"165,000,000",1,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Maisonette With A Room Bq,Queens Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,@31 Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terraced Duplex For Sale In Old Ikoyi,Off Bourdillon Avenue Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,1,1,4 beds, baths, Toilets +3 Bedroom Flat,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +6bedroom,Parkview Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,7 baths,7 Toilets +3 Bedroom Flat,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,2 baths,2 Toilets +4 Bedroom Detached Duplex For Sale,  Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land Joint Venture,. Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex For Sale, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex With Bq,. Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Semi Detached For Sale In Parkview Estate, Ikoyi",Off Layi Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Large Commercial Property,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Units Of Five Bedroom Semi Detached House,Adeyemi Lawson Street Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land, kingsway Road By Rumens Road Old Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Zone K Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"670,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex With Bq,. Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,  Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land,. Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale," bourdilon, Old Ikoyi Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale, Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,. Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat For Sale,  Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Flat For Sale, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,2 beds,3 baths,3 Toilets +1 Bedroom Mini Flat For Sale, Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,0 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex With Governor's Consent,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +"2,025 Sqm Residential Land With C Of O",Zone B7; Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land With C Of O,J Zone; Banana Island Ikoyi Lagos,₦,"435,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"780,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Milverton Old Ikoyi Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets +Mixed Use Lands,Bank Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land For Sale, Banana Island Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale,  Banana Island Ikoyi Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale," adeyemi Lawson Off Mcpherson, Old Ikoyi Ikoyi Lagos",₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex For Sale," off Mcphson, Old Ikoyi Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom House For Sale, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,Macgregor Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom House For Sale,  Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Before Movano Court Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Serviced 4 Bedroom Flat,Ocean Parade Towers Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,4 beds,4 baths,4 Toilets +Mixed Use Land,Ilabere Avenue Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ruxton Street Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"1,800,000",0,0,0,5 beds,5 baths,5 Toilets +Flat For Sale,  Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale, Banana Island Ikoyi Lagos,₦,"1,800,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land,  Banana Island Ikoyi Lagos,₦,"520,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,  Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat For Sale," off Joshua Okeowo Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex," off Bourdillon Road, Old Ikoyi Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Contemporary Designed En Suite 5 Bedrooms Duplex With 2 Rooms Maid's Quarters,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedroom Duplex,Salisbury Court Parkview Estate Ikoyi Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets +5bedroom Detached House With S/pool Table, Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +1002 Sqm Land With Governor's Consent,Aso Street; Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +New | 5 Bedroom Fully Detached Duplex | Self Serviced,"Residential Area, Banana Island Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Off Plan | 1 Bedroom Luxury Apartment | Serviced,Banana Island Road Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets +Off Plan | Luxury 5 Bedroom Terrace Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Semi Detached Town Houses,Off Alfred Rewane Road 2nd Avenue Extension Ikoyi Lagos,₦,"480,000,000",0,0,0,4 beds,4 baths,5 Toilets +Finished Luxury 4 Bedroom Terraced Triplex In Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartment,Off Alfred Rewane (kingsway Road) Ikoyi S.w Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Finished 3 Bedroom Apartment With Servant Quarters,Off Queens Drive Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Off Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Ocean View 8 Bedroom Triplex With A Swimming Pool And 8 Rooms Bq,Jubril Aminu Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,10 baths,8 Toilets +Privately Gated 5 Bedroom Fully Detached Triplex,Off Gerard Road Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,"Off Layi Bembe Road, Parkview Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning. Unique. And Very Upscale 6 Bedroom Fully Detached Triplex,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Terrace | Off Plan,Off Osbourne Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Semi Detached Town Houses,Off Alfred Rewane Road 2nd Avenue Extension Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Ocean View Luxury 8 Bedroom Triplex,Jubril Aminu Parkview Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,8 beds,10 baths,8 Toilets +Privately Gated 5 Bedroom Semi Detached Duplex,Residential Area Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Terrace | Off Plan,Off Second Avenue Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Luxury Penthouse,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 2 Bedroom Luxury Apartment,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"110,000,000",0,0,0,2 beds,1 baths,2 Toilets +Exquisitely Finished 3 Bedroom Luxury Apartment,Off Onikoyi Road Banana Island Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Apartment,Ocean Parade Towers Banana Island Ikoyi Lagos,₦,"7,200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan | 2 Bedroom Luxury Apartment | Serviced,Banana Island Road Banana Island Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Privately Gated 4 Bedroom Terrace Duplex,Turnbull Road Ikoyi S.w Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Luxury Apartment,Off Oniikoyi Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Apartment,Ocean Parade Estate Banana Island Ikoyi Lagos,₦,"390,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Terraced Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +Top Class 4 Bedroom Luxury Terrace Duplex,Off Alexander Road Ikoyi Lagos,₦,"280,000,000",1,0,1,4 beds,4 baths,5 Toilets +30 Bedroom Luxury Hotel With Penthouse Suite,Off Osbourne Road Osborne Foreshore Estate Ikoyi Lagos,$,"9,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Finished 2 Bedroom Apartment,Off Queens Drive Ikoyi Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom Semi Detached 3 Floo House,New Ikoyi Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,7 beds,8 baths,7 Toilets +Bare Land, Gerard Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House,. Bourdillon Ikoyi Lagos,$,"1,600,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Terraced Duplex With Bq,The Medici Terraces; Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,5 baths,6 Toilets +Residential Land,Zone K Banana Island Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"800,000,000",1,1,1,4 beds,5 baths,5 Toilets +Residential Land,Zone L Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,. Banana Island Ikoyi Lagos,₦,"85,000,000",1,0,1,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,1st Avenue Banana Island Ikoyi Lagos,₦,"360,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,. Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Banana Island Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," banana Island Road, Mojisola Onikoyi Estate, Ikoyi Lagos",₦,"190,000,000",0,0,0,4 beds,4 baths, Toilets +Residential Land," j 35 Residential Zone, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"630,000,000",0,0,0,0 beds,0 baths, Toilets +Mixed Use Land, Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,0 beds,0 baths, Toilets +Mixed Use Land, Banana Island Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths, Toilets +Residential Land,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," close 104, Banana Island Ikoyi Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths, Toilets +3 Bedroom Flat,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +3 Bedroom Terraced Duplex," osborne Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"140,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedroom Detached Duplex," mike Adenuga Crescent, Banana Island Ikoyi Lagos",₦,"750,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Terraced Duplex," osborne Foreshore Estate Phase Ii, Ikoyi Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex,Ajayi Bembe Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,1,1,5 beds,4 baths,5 Toilets +6 Floors Office Space,Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,9 baths,0 Toilets +Luxurious 8bedroom Mansion At Osborne Ph1,Osborne Ph1 Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,1,0,8 beds,8 baths,9 Toilets +New 4 Bedroom Semi Detached Duplex + Bq With C Of O On 500 Sqm,Parkview Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built & Contemporary 5 Bedroom Detached Duplex + 1 Room Bq With C Of O,Mojisola Onikoyi Estate; Off Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terraced Duplex,Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths, Toilets +3 Bedroom House," maroko Close, Oyinkan Drive, Ikoyi Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets +Fully Serviced 4 Bedroom Flat + Bq & Swimming Pool With C Of O,Off Okotie Eboh; Off Awolowo Road Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Residential Land,Phase One Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terraced Duplex Units With Servants Quarters,Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +Residential Land, Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,. Ikoyi Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"600,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Land For Sale In Banana Island, Ikoyi, Lagos.",. Banana Island Ikoyi Lagos,₦,"400,000",0,0,0, beds, baths, Toilets +Mixed Use Land,Cooper Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Third Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Off Bourdillon Ikoyi Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +"The Amlads Place, Banana Island Road. (luxury 1 & 2 Bedroom Apartment","Prestigious Olori, Onikoyi, Banana Island Road Banana Island Ikoyi Lagos",₦,"52,000,000",1,1,0,1 beds,2 baths,2 Toilets +Luxuury Tastefully Furnishd 3 Bedroom Flat With 1 Room Bq,Awolowo Road; Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,1,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Off Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets +Commercial Land,Bourdilion; Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land,"Web Road, By Kingsway Road Ikoyi Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Bank Road Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Osborne Road Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Bourdillon Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq With Governor's Consent,Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Joint Venture Land,Adeyemi Lawson; Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Osborne Phase 2, Osborne Osborne Foreshore Estate Ikoyi Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +1930 Sqm Joint Venture Land With C Of O,Block P Plot 11; Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J43 Banana Island Ikoyi Lagos,₦,"900,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," eleko Close Off Macpherson Road, Old Ikoyi Ikoyi Lagos",₦,"650,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land," phase 2, Osborne Foreshore Estate Ikoyi Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," end Avenue, Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,0 Toilets +A 3 Bedroom Flat,Kosofe Road Dolphin Estate Ikoyi Lagos,₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex,  Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,0 Toilets +Mixed Use Land," thompson Avenue, Old Ikoyi Ikoyi Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"610,000,000",0,0,0,6 beds,6 baths,0 Toilets +3 Bedroom Flat, off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,. Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,6 baths,0 Toilets +5 Bedroom Detached Duplex," 3rd Avenue, Banana Island Ikoyi Lagos",₦,"675,000,000",0,0,0,5 beds,7 baths,0 Toilets +4 Bedroom Semi Detached Duplex," 2nd Street, Phase 1, Osborne Foreshore Estate Ikoyi Lagos",₦,"180,000,000",0,0,0,4 beds,3 baths,0 Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex (off Plan)," alexander Road, Ikoyi Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,0 Toilets +7 Bedroom Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,1,7 beds,7 baths,8 Toilets +5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"650,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. 2nd Avenue Extension Ikoyi Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Duplex, Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury 30 Bedroom Fully Furnished Guest House,2 Osborne Foreshore Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Almost Completed 5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Newly Built Block Of Flats,. Ikoyi Lagos,₦,"120,000,000",0,1,1,3 beds,3 baths,3 Toilets +Cheapest Newly Built 2 Bedroom Flat Inside Banana Island,Mixed Use Zone Banana Island Ikoyi Lagos,₦,"90,000,000",1,1,0,2 beds,2 baths,3 Toilets +1500sqm Plot Of Land,Gerard Road Old Ikoyi Ikoyi Lagos,₦,"630,000,000",0,0,0,2 beds,1 baths,1 Toilets +3 Bedroom Flat With Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +Corner Piece Of Land Available,Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Banana Island Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Contemporary Newly Redeveloped House In Old Ikoyi,Mcpherson Avenue Bourdillon Ikoyi Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Serviced Apartment With A Room Bq,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets +Waterfront Land,Queensdrive Bourdillon Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Spacious Semi Detached Duplex With A Room Bq,Off Laye Ajayi Membe Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Maisonette,Old Ikoyi Parkview Estate Ikoyi Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Elegant 3 Bedroom Semi Detached House,Old Ikoyi Bourdillon Ikoyi Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Flat,Oakwood Residence Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +898sqm Land,Elm Street Osbourne Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5 Bedroom Duplex,Queens Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Waterfront 1500 M2 On Mahogany, Osborne","Mahogany Off Acacia Drive, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5200 M2 & 2500 M2 Waterfront Plots On Acacia Drive, Osborne 2",Acacia Drive; Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 3500 M2 On Alexander Road/onikoyi Road,Alexandra; Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,700 M2 On Corner Of Rumens/bourdillon Road",Rumens Road; Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Luxury House,Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +"Magnificent 5 Bedroom Fully Detached Mansion With Garrage, Gym On 4000sqm Land",Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,500,000",0,0,0,5 beds,5 baths,6 Toilets +Architectural Master Designed Brand New 5 Bedroom Mansion,Trasacco Valley Estates Banana Island Ikoyi Lagos,$,"1,350,000",0,0,0,5 beds,5 baths,6 Toilets +1400 Square Meter Land,Onikoyi Parkview Parkview Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Meter Land In Ikoyi,Lugard Avenue 2nd Avenue Extension Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +1500 Sqm Land,Osborne 2 Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +1800 Sqm Land,Adeyemi Lawson Ikoyi Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +1004 Square Meter Land,Cooper Road Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Meter Land,Ruxton Street Gerard Road Ikoyi Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two & Three Bedroom Flat,Off Aso Road Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Plot Of Land Measuring 8000sqm,Alakija Road Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1130sqm,Kingsway Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2800sqm,Ruxton Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm,Maroko Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2600sqm,Iru Close Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1650sqm,Club Road Old Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm,Lugard Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Nos Of 500sqm Plots Side By Side,Off Kingsway Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built And Well Finished 5 Bedroom Spacious Detached Duplex With A Room Bq, Fitted Kitchen, Etc.",Off Banana Island Road; Mojisola Onikoyi Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedrooms House With C Of O,Norman Williams; Awolowo Road Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land, Parkview Estate Ikoyi Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +"4,000sqm Prime Land",Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Position Plot Of Land Measuring 500sqm,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Superbly Finished 4 Bedroom Fully Serviced Apartment With 2 Rooms Bq,Off Orsborne Road Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built With State Of The Art Finished 5 Bedroom Detached Duplex With A Room Bq,2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Bank Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale, awolowo Road Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale, oniru Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale, off Bourdillon Road Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,0 Toilets +5 Bedroom Semi Detached Duplex With In Built Bq, zone H Plot 40; Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets +Lovely 2 Bedroom Flat For Sale,Banana Island Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Finish,Off Mike Adenuga Crescent; Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 8 Bedroom Detached Mansion,Off Mike Adenuga Drive Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,8 beds,8 baths,9 Toilets +Newly Constructed And Tastefully Finished 3 Bedroom Serviced Apartment With Bq,Chris Ali Street Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +Mini Estate Of 4nos Of 4 Bedroom Detached Houses On 4500sqm,Off Bourdilloin Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built (ongoing Project) Waterfront 3 Bedroom Serviced Apartment With A Room Bq Each, And Fitted Kitchen",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely Built 5 Bedroom Semi Detached House,Parkview Parkview Estate Ikoyi Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,. Dolphin Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Terrace Duplex,Mekunwen Road Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastely Finished 3 Bed Room Flat In Banana Island For Sale,3rd Avenue Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury Built 4 Bedroom Apartments,Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace With Boys Quater,Milverton Road Gerard Road Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished 5 Bedroom Fully Detached House,Banana Island Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets +A 3 Bedroom Flat Fully Furnished,Off Queens Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +An Elegant Duplex,. Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,8 beds,5 baths,0 Toilets +A Mansion At Banana Island,. Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex, . Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached House With Bq,Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Units Of 4 Bedroom Serviced Apartments,"Probyn Street, Old Ikoyi Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Luxurious 5 Bedroom Duplex,Residential Zone Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exotic 5 Bedroom Detached Duplex With Swimming Pool,"Off 5th, Avenue Banana Island Ikoyi Lagos",₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terraced Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite Five Bedroom Semi Detached Duplex,Zone H Plot 40 Ogun Street Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Built 8 Bedroom Mansion,Zone C Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,8 beds,9 baths,9 Toilets +Lovely 5 Bedroom Fully Detached House,Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Corner Piece Semi Detached Duplex With Bq,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Waterfront Mansion With Guest Chalet,2nd Avenue Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Block Of Five Flats, Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land, Old Ikoyi Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Room Bq,Oshbore Foreshore Estate Phase 1 Ikoyi Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +"1,036m2 Bare Land At Copper Road Ikoyi","1,036 Meter Square Bareland @ Copper Road Ikoyi Lagos Ikoyi Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Duplex Penthouse,Gerard Road Gerard Road Ikoyi Lagos,$,"1,300,000",0,0,0,4 beds,4 baths,5 Toilets +Carcass 2 Bedroom Flat,Mixed Used Zone Banana Island Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detach House | Off Plan, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Parkview Estate Off Ago Palaceway Okota Parkview Estate Ikoyi Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Banana Island Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets +Shop,Falomo Falomo Ikoyi Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House | Off Plan, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Apartments For Sale At Banana Island Letout.com.ng,Banana Island Banana Island Ikoyi Lagos,₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +"4 Bedroom Terrace + Bq,", Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"4,080,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 3 Bedroom Flat,Mojisola Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 7 Bedroom House With 5 Bedroom Boysquarters, Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets +4000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Top Notch 4 Bedroom Duplex,Ilabere Avenue Ikoyi S.w Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Furnished 8 Bedroom Castle,Banana Island Estate Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,9 Toilets +Land,Zone B Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Luxuriously Built House, Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"1,350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Duplex, Ikoyi Lagos,₦,"3,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +An Unique And Tremendously Finished 3 Bedroom Apartment,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Duplex, Gerard Road Ikoyi Lagos,₦,"9,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Milverton Rd. Ikoyi Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,3 Toilets +600m² Of Land For Sale At Osborn Phase 2,Osborn Phase 2 Ikoyi Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +801sqm Land,"Osborne Phase 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Mega Mansion,Off 3rd Avenue Banana Island Ikoyi Lagos,$,"3,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 3 Units Of 4 Bedroom Terrace Duplex In The Exclusive Osborne 2 Estate, Ikoyi",Orsborne 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully 5 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite Four Units Of 3 Bedroom Flats,Onikoyi Road Off Banana Island Ikoyi Lagos State Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terraced Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Queens Drive Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Units Of 3 Bedroom Flat + Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Water Front 1,604sqm Land","Royal Palm Drive, Osborne Phase 2 Ikoyi Lagos",₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +5200m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +898m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500m2 Of Land,Ikoyi Osbourne Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 3500m2 Of Land,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,700m2 Of Land",Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone M Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2300 Sqm With Embankment On Royal Palm Drive,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished Wing Of Duplex With 2 Room Bq,"Parkview, Ikoyi Parkview Estate Ikoyi Lagos",₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Terrace For Sale At Ikoyi,"Plot 8, Iru Close Off Queens Drive Ikoyi Lagos",₦,"195,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment For Sale At Ikoyi,Adeyemi Lawson Street Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House + 2 Rooms Bq,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +2000sqm Of Land,Banana Islands Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Of Land,Banana Islands Ikoyi Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Measuring 1000sqm,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"1,620,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqmts Of Land,Bank Road Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Zone L Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Furnished 5 Bedroom Fully Detached House For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"860,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets +3700m2 Of Land At Ikoyi,George Street Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With Bq, Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Mojisola Onikoyi Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Luxury Finished 4 Bedroom Terrace Duplex With Swimming Pool,Osborne Phase2 Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 2 Bedroom Luxury Apartment,Off Layi Obembe Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +700 Square Meter Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Serviced Luxury Flats,Gerard Road Gerard Road Ikoyi Lagos,₦,"11,000,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land, Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury High Rise 27 Units Of 3 Bedroom Flats And 2 Units Of 5bedroom Maisonette,Old Ikoyi Old Ikoyi Ikoyi Lagos,$,"2,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Sqm Land For In Parkview Ikoyi,N/a Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Glover Road Ikoyi Lagos. Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,J 46 Banana Island Ikoyi Lagos,₦,"1,680,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterproof Land Measuring 1400 Square Meters,Off 2nd Avenue Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 4 Bedroom Terrace Duplex,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,5 baths,0 Toilets +5 Bedroom Penthouse Suite, Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,0 baths,0 Toilets +"New 4 Bedroom Terrace House + Bq,","Off Gbenga Ashafa, Parkview Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2800sqm Joint Venture Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Off Turnbull/banana Island Road. Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Storey Building, Old Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat With A Room Bq,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +500sqm Land,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Luxury Terrace Apartment With A Room Boys Quarter,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Luxury Flat With Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Block Of Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Zone E Banana Island Ikoyi Lagos,₦,"340,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000sqm Of Land At Lugard Road, Ikoyi",Lugard Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 6 Bedroom Fully Detached House With 2 Rooms Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land For Sale At Osborne Foreshore Estate Ikoyi Lagos,Udi Street Osborne Foreshore Estate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,1 beds,0 baths,1 Toilets +3 Bedroom Luxury Service Flat,Shalom Apartment Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House (pending Construction),Banana Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom House ( Off Plan),Banana Island Ikoyi Lagos,₦,"950,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex | Off Plan, Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,J 35 Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Land,Lugard Avenue Ikoyi Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedroom With Bq,Ikoyi Abacha Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat, Awolowo Road Ikoyi Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets +667sqm Land, Banana Island Ikoyi Lagos,₦,"325,000,000",0,0,0,0 beds,0 baths,0 Toilets +917sqm Land, Banana Island Ikoyi Lagos,₦,"447,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,414sqm Land","Off Queen's Drive, Iru Close Ikoyi S.w Ikoyi Lagos",₦,"425,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Duplex,Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"2,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land Measuring 2940sqm,Mobolaji Johnson Avenue Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Off Reeve,old Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2000 Sqm Waterfront Land On Acacia Road,",Acacia Road Osborne Foreshore Estate Ikoyi Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land(joint Venture),Banana Island L3 Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Urgent Sale*36 Room Luxurious Hotel Situated On 1,450 Square Meter In Ikoyi With Diverse Cuisine Options, First Class Meeting & Business Facilities, Swimming Pool Asking Price: N2.5b Negotiable",Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land, Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Blocks Of 26 (units) 3 Bedroom Flats With 1 Room Bq Each Plus Swimming Pool,"Gerrard Road, Ikoyi Gerard Road Ikoyi Lagos",₦,"9,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Luxury Terrace House + Bq,Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached House + 3 Rooms Bq,Parkview Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,6 beds,6 baths,7 Toilets +"A 1,936.279sqm Land","Plot 20, Zone K Banana Island Ikoyi Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Lugard Road By The George Hotel Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Banana Island, Bamisoro, On Mike Adenuga Area Ikoyi Lagos",₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Off Alexandra/bourdilon Street Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land (joint Venture),Zone G Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 4 Bedroom Terrace Duplex,"Turnbull Road, Ikoyi, Lagos Gerard Road Ikoyi Lagos",₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Bq,Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,"Osbourne Phase 2 Estate, Ikoyi. Osborne Foreshore Estate Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Units Of 5 Bedroom Fully Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"960,000,000",0,0,0,5 beds,5 baths,6 Toilets +839sqm Land At Abacha Estate, Abacha Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Sqm Of Land For Sale At Ikoyi,George Street Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Fenced 9500sqm Of Land At Ikoyi,Macdonald Street Ikoyi Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +9 Units Of 4 Bedrooms With A Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Waterfront At Banana Island Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,Bank Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +1500sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"365,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex With Bq,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A 1,500sqm Land",Eko Atlantic City Ikoyi S.w Ikoyi Lagos,$,"2,625,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,Abacha Abacha Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +12 Units Of 4 Bedroom & One Bedroom Town House ( Off Plan),Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +"A 1000 Sqm Land On Temple Road,ikoyi . Lagos",Temple Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Block Of Six Flats With Bq On Gerald Road,ikoyi.lagos",Gerald Road Gerard Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Tastefully And Well Finished 4 Bedroom Terrace,Bode Olajumoke Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Fantastic And Newly Finished 4 Bedroom Terrace,Queen's Drive Macpherson Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Nice And Newly Built 5 Bedroom Semi Detached Duplex,Off Eko Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Newly And Fantastically Finished 5 Bedroom Town Houses With Fitted Kitchen,Cooper Bourdillon Ikoyi Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Plot Of Land Measuring 1000sqm At Ruxton,ikoyi,lagos",Ruxton Str Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex, Ikoyi Lagos,₦,"5,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +Nice 3 Bedrooms Flat,. Ikoyi S.w Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,3 Toilets +Newly Built 12 Units Block Of 3 Bedroom Flat,Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,4 Toilets +Land Fo Sale,J Close Series Water Front Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,000sqm Of Land",Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedrooms Duplex, Parkview Estate Ikoyi Lagos,₦,"680,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land (joint Venture),Alexander Bourdillon Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Sqm Of Land For Sale At Old Ikoyi,Reeve Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerard Road Old Ikoyi Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Alfred Rewane Road Old Ikoyi Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Flats At Ikoyi,7 Sumbo Jibowu Street Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrrom Town House, Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +24 (units) 4 Bedroom Apartments With 1 Room Bq Each.,Ikoyi Lagos Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Ruxtn Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 5 Bedroom Fully Detached Duplex With A Study Room,Cameron Green 2nd Avenue Extension Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex For Sale,Ir Close Old Ikoyi Ikoyi Lagos,₦,"205,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Bourdilon Road Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Onikoyi Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets +Lovely 5 Bedroom Detached Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +2900 Sqm Of Land For Sale At Old Ikoyi,Temple Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Land,Onikoyi Along Banana Island Road Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace Duplex,"Off Alexandra Old Ikoyi, Old Ikoyi Ikoyi Lagos",₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets +Royal Oak Terrace Is A Development Of 4bedroom Terrace Apartments,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Around The Queens Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets +A 5 Bedrooms Detached Duplex With Two Bedroom Bq,Onikoyi Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +655sqm Land, Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4285 Sqm Of Land For Sale At Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Sparkling 4 Bedroom Terrace Duplex At Ikoyi,"Royal Palm Drive, Osborne Foreshore, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Land, Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Wing Of 3 Bedroom Maisonette,"Olori Mojisola Street, Onikoyi Extension Ikoyi Lagos",₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Mansion, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,2nd Avenue Banana Island Ikoyi Lagos,₦,"5,110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Zone L, Waterfront Land. Banana Island Ikoyi Lagos",₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Cameron Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +631sqm Land, Banana Island Ikoyi Lagos,₦,"307,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land With Existing Building For Sale,Kingsway /alfred Rewane Road Ikoyi Lagos,₦,"2,400,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex, Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached House With Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom House For Sale At Ikoyi,Okotie Eboh Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 2 Bedroom Pent House Flat For Rent,Park View Estate Ikoyi Lagos,₦,"5,000,000",0,0,0,2 beds,2 baths, Toilets +Land, Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,M Zone Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,P58 Banana Island Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Masionette With Bq, Elevator, Pool And Gym",Banana Island Extension Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,J Close Series Water Front Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Land,Marocco Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom And 3 Bedroom Luxury Apartment, Banana Island Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace House, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Tastefully Finished 6 Bedroom Fully Detached House, Banana Island Ikoyi Lagos,₦,"490,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached House,Ikoyi 2nd Avenue Extension Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Luxury Terrace House With A Maid's Room For Sale At Old Ikoyi,Alexander Old Ikoyi Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace House With A Room Bq,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200 Sqm Of Land For Sale At Ikoyi,2nd Avenue Ikoyi Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,Ajayi Bembe Street Parkview Estate Ikoyi Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Luxury Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Living Gold Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +3650 Sqm Of Land For Sale At Ikoyi,Aromire Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +4396 Square Metres Of Land,J Close Series Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Acacia Drive Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 3 Bedroom Flats,Banana Island Road Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Olagunsoye Oyinlola Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Luxury Detached House With 2 Rooms Bq,Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Off Shore Osborne Foreshore Estate Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedrooms Fully Detached House With 2room Boy's Quarter At Parkview Estate,ikoyi.",Park View Estate Ikoyi Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached House,Off Thompson Street Old Ikoyi Ikoyi Lagos,₦,"950,000,000",0,0,0,6 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Luxury Terrace House,"Osborne Foreshore Estate, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Furnished Luxurious 2 Bedrooms Service Flat,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,3 Toilets +26 Units Of 3 Bedroom Flats,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,520,000,000",0,0,0,3 beds,3 baths,3 Toilets +Exclusively Finished 2 Bedroom Apartment In A Block Of Flat,Banana Island Banana Island Ikoyi Lagos,₦,"125,000,000",0,0,0,2 beds,2 baths,2 Toilets +"3 Bedroom Masionette With Bq, Elevator, Pool And Gym",Banana Island Extension Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"127,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex +penthouse +bq,Banana Island Banana Island Ikoyi Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,J 35 Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Roxton Street, Ikoyi. Ikoyi S.w Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Tastefully Finished 6 Bedroom Fully Detached House With Bq, Banana Island Ikoyi Lagos,₦,"620,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 4bedroom Luxury Semi Detached House For Sale.,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +800sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Land, Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets +3200 Sqm Of Land At Cameron,Cameron Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Blocks Of Luxury 26nos Of 3bedroom Flats On 13 Floors,Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Newly Built And Tastefully Finished 4 Bedroom Luxury Terrace House With A Room Boy's Quarter At Parkview Estate, Ikoyi.",Park View Estate Ikoyi Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +A Very Good Land Off Awolowo Road., Awolowo Road Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Catchy Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +14 Bedroom Detached House, Ikoyi Lagos,$,"3,200,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terrace Houses With 1 Unit Pent House With Bq At Osborne 2,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Banana Island,At Banana Island Road Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Detached House, Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of 4 Units 3 Bedrooms Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Ogun Street Osborne Foreshore Estate Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,$,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land At Banana Island Ikoyi,G5 Street Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +2800 Sqm [email protected] Gerald Road Ikoyi,Gerald Road Ikoyi Gerard Road Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone Q Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +28 Luxury Flats For Sale,Dolphin Estate Dolphin Estate Ikoyi Lagos,$,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Banana Island Ikoyi Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached House,Orsborne Phase 1 Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Orsborne Phase 1 Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Amen Estate Phase Ii,Nile Banana Island Ikoyi Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Onikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opposite Adenuga's House Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Parkview Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Olagunsoye Oyinlola Street Abacha Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikoyi, 4 Bedroom Detached House, C Of O",Off Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Royal Palm Avenue Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom With Bq,"Banana Island, Ikoyi, Lagos. Banana Island Ikoyi Lagos",₦,"220,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Maroko Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Old Ikoyi Ikoyi Lagos,₦,"231,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Serviced Flat,Banana Island Banana Island Ikoyi Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Service Flat With A Maid Room,Banana Island Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached House With 2 Room Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House With A Room Bq,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House With A Room Bq,Osborne Ii Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Terrace House,Falomo Falomo Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Furnished 8 Bedroom Mansion,Osborn Foreshore Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,8 beds,8 baths,9 Toilets +6 Bedroom Exquisitely Finished Detached House,2nd Avenue Ikoyi Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land (joint Venture), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat At Banana Island.,3rd Avenue Ikoyi Lagos,₦,"190,000,000",0,0,0,3 beds,4 baths,3 Toilets +A Tastefully Finished Mansion, Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +House, Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Town House And Penthouse In Ikoyi,Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Detached Duplex At Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,7 baths,7 Toilets +8 Bedroom Detached House, Banana Island Ikoyi Lagos,₦,"5,200,000,000",0,0,0,8 beds,0 baths,0 Toilets +5 Bedroom House, Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land At Amen Estate Ii,Nile Banana Island Ikoyi Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat+bq At Ikoyi,Queens Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +Mini Estate,Glover Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,"3b Oroke Drive Off Queens Drive, Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0,5 beds,5 baths,3 Toilets +Twin Duplexes Furnished With Acs And Jacuzzis At Abacha Estate Ikoyi,Abacha Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 4 Bedrooms Duplex,Off Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished New 5bedroom Duplex At Banana Island Ikoyi,Ikoyi Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedrm Duplex,"Ikoyi Obalende, Lagos, Lagos Ikoyi Lagos",₦,"450,000,000",0,0,0,5 beds,6 baths,0 Toilets +Distressed Sale 4 Bedroom Semi Detached House + Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,6 baths,6 Toilets +Ikoyi 1200 Sqm Shoreline Estate Price 270m Net,Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lugard Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 1000sqm Land,Roxton Street Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Off 5th Avenue Banana Island Ikoyi Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,0 Toilets +8 Bedroom Fully Detached Edifice,Banana Island Ikoyi Lagos,₦,"5,000,000,000",0,0,0,8 beds,8 baths,8 Toilets +15 Units 3 Bedroom Flat Ensuite With Bq,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"2,500,000,000",0,0,0,3 beds,4 baths,0 Toilets +Well Built 5br Detach Duplex +1maid Room.,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"220,000,000",0,0,0,6 beds,5 baths,0 Toilets +"5bedroom Well Built Full Detach,.","Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"260,000,000",0,0,0,5 beds,6 baths,0 Toilets +Newly Built All Ensuite 4bedroom Terrace With Bq,"Ikoyi, Eti Osa, Lagos Ikoyi Lagos",₦,"1,000,000,000",0,0,0,4 beds,5 baths,0 Toilets +"Prime Water Front Bare Land Measuring 1,800sqm",Ogun Street Osborne Foreshore Estate Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"Prime Bare Land Measuring 1,500sqm","Block 3, Plot 5, Osborne Foreshore Estate Ikoyi Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +"Prime Bare Land Measuring 1,000sqm",Onikoyi Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"265,000,000",0,0,0, beds, baths, Toilets +1000 Square Meters Of Land,"Eti Osa, Lagos Ikoyi Lagos",₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eti Osa Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon / Rumen Bourdillon Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Onikoyi Parkview Estate Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Club Road Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Elm Street Osborne Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Layi Ajayi Bembe Street. Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exclusively Finished 2 Bedroom Apartment,Zone Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Flat,Off Queens Drive Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets +5bedroom Semi Detached House,Bourdillon Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Off Bourdilon Old Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Ruxtn Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Onikoyi Street Ikoyi Lagos,₦,"145,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Queens Road Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Adetokunbo Ademola Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),J15 Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Okotie Eboh Close Ikoyi S.w Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Parkview Parkview Estate Ikoyi Lagos,₦,"7,500,000",0,0,0,4 beds,4 baths,4 Toilets +Fenced Two Plots Of Land,"Aja, Eti Osa Ikoyi Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eti Osa Ikoyi Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Penthouse Duplex, Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,2 baths,3 Toilets +2 Bedroom Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,2 beds,1 baths,2 Toilets +Land,Eti Osa Ikoyi Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"5,200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,"2nd Avenue, Ikoyi Abacha Estate Ikoyi Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Alade Odonewu Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets +En Suite 3 Bedroom Serviced Apartment,Bourdillon Bourdillon Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,3 Toilets +Well Upgraded 4 Bedroom Serviced Apartment,"Ikoyi , Lagos. Ikoyi Lagos",₦,"270,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House With Bq,"Solomon Court,mojisola Onikoyi Banana Island Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House With 2 Rooms Bq, Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Bq,"Mojisola Onikoyi Off Banana Lsland, Ikoyi. Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Zone A Banana Island Ikoyi Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette,Olori Mojisola Street Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat On 13 Floors,Gerrard Road Gerard Road Ikoyi Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mansion,Road C Banana Island Ikoyi Lagos,$,"15,000,000",0,0,0,8 beds,8 baths,9 Toilets +3 Bedroom Luxury Flat In Awolowo Towers,"Awolowo Road Ikoyi, Lagos Nigerian Ikoyi Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment,Banana Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Solomon Court Banana Island Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Mansion, Banana Island Ikoyi Lagos,₦,"1,400,000,000",0,0,0,7 beds,0 baths,0 Toilets +2nos 5 Bedroom Detached Houses, Banana Island Ikoyi Lagos,₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,7 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq, Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bedroom Detached House,Street Parkview Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,7 beds,7 baths,8 Toilets +Land,Nativity Parkview Estate Ikoyi Lagos,₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With 1 Room Bq, Old Ikoyi Ikoyi Lagos,₦,"12,000,000,000",0,0,0,3 beds, baths, Toilets +5 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Banana Island Ikoyi Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive 4bedroom Terrace,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Plot J60 Banana Island Ikoyi Lagos,₦,"3,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lagidi Ayorinde Street Behind Mobil Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adetokunbo Ademola Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone D10 Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone D10 Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Off 5th Avenue Road Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +3bed Room Flat,"Olori Majishola Street Offf Banana Lsland Road, Ikoyi S.w Ikoyi Lagos",₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Flat + Bq,"Okotie Eboh , Ikoyi S.w Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of Terrace Houses,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of Terrace Houses,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Parkview Parkview Estate Ikoyi Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Abacha Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House, Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment, Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartments(shell Units),Banana Island Road Banana Island Ikoyi Lagos,₦,"94,500,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bed Detached House + Bq,Onikoyi Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex, Banana Island Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Off Glover Street Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached House,"Osborne Phase Ii, Osborne Foreshore Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,8 beds,8 baths,8 Toilets +C Of O Available,George Parkview Estate Ikoyi Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Apartment,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +43 Bedroom Hotel,Queens Drive Oyinkan Abayomi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedrooms Terrace Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat, Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Flat/ Apartment, Old Ikoyi Ikoyi Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat, Ikoyi S.w Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Zone J 61 Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"60,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"60,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone R Plot 9 Banana Island Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone E J44 Waterfront Banana Island Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel, Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Queens Drive Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Osborne Foreshore Estate Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment With A Room Bq, Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land ( Joint Venture ),Jamestown's George Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,8 baths,8 Toilets +5 Bedrooms Semi Detached Duplex,Club Road Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Flat,Bourdillon Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of Luxury 3 Bedroom Flats,Banana Island Banana Island Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Very Nice And Well Finished 5 Bedroom Terrace House With A Room Attached Boys Quarters,Parkview Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Superb 6 Bedroom Fully Detached Mansion, Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Zone C Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2 Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2 Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 1 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),James George Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Along Onikoyi Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment, Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,2 baths,3 Toilets +2 Bedroom Apartment,Off 1st Avenue Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,500 Square Metres Of Land",Alexander Road Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Flat,Adeyemi Lawson Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Sir Tony Eremoselle Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land ( Joint Venture ),Zone M24 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Blocks Of 26nos Of 3 Bedroom Luxury Flats Serviced,Old Ikoyi Road Old Ikoyi Ikoyi Lagos,₦,"9,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedrooms Luxury Flats Serviced With Boys Quarters,Queens Drive Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Duplex,Rustin Road Lagos State Old Ikoyi Ikoyi Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex, Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"84,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 3bedroom Terrace Duplex,"Milverton Street, Old Ikoyi Ikoyi Lagos",₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land 400sqm In South/west,South/west Ikoyi Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Filling Station,Road Falomo Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Bourdillon Bourdillon Ikoyi Lagos,₦,"310,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Banana Island Banana Island Ikoyi Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets +Commercial Property,Ikoyi Banana Island Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Dedtched House,Off Normal Williams Ikoyi S.w Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Block Of 2 Units 4 Bedroom And 4 Units 3 Bedroom With Bq,3rd Avenue Banana Island Ikoyi Lagos,₦,"1,350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Mini Flat Bq,Alhaji Bashorun Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New And Well Finished 3 Bedroom Flat With Bq,Maroko Close Old Ikoyi Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished Blocks Of Luxury 26 Nos Of 3 Bedroom Flats,"Gerrard Road, Ikoyi Ikoyi Lagos",₦,"8,000,000,000",0,0,0,3 beds,3 baths, Toilets +4 Bedroom Bungalow With 2 Rooms Bq, Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Road 107 Banana Island Ikoyi Lagos,₦,"90,000,000",0,0,0,2 beds,0 baths,0 Toilets +4bedroom Detached House With 1room Bq, Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Detached House With 1room Bq, Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Closed Road Banana Island Ikoyi Lagos,₦,"175,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Renovated Detached Building Along Raymond Njoku Ikoyi,Raymond Njoku Street Sw Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Plot 9, Close 1 & 2 Banana Island Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Plot Qa1 Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 1 Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,King George Road Onikan Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),0nikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"1,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Zone L3 Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Gerard Road Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),James George Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Bourdillon Ikoyi Lagos,$,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Good Functioning Filling Station For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Exquisitely Fully Furnished 4 Bedroom Terrace Duplex With 1 Bedroom Bq In Ikoyi,Ikoyi Ikoyi Lagos,₦,"295,000,000",0,0,0, beds, baths, Toilets +3units 4bedroom Terraces With Bq, Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Mansion, Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,7 beds,7 baths,7 Toilets +5 Bed Room Duplex Ikoyi,Park View Parkview Estate Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Abijo Ikoyi Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +700sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Ikoyi,Banana Island Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Land,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Onikoyi Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Onikoyi Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillion Rd Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillion Rd Bourdillon Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillion Rd Bourdillon Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Glover Rd Ikoyi Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Rumen Rd Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Road Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Rd Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Rd Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Agodogbo Street Parkview Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Norman Williams Street Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached House + Bq,"Ademola, Awolowo Road Ikoyi Lagos",₦,"200,000,000",0,0,0,4 beds,3 baths,4 Toilets +400sqm Of Land At Ikoyi,Glover Road Old Ikoyi Ikoyi Lagos,₦,"175,000,000",0,0,0, beds, baths, Toilets +500m2 Of Land At Ikoyi,Off Glover Road Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Super Luxury Appartment,"Off Kingsway Road, Falomo Ikoyi Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Unit Of 4 Bedroom Apartment + Bq,"Rumen, Falomo Ikoyi Lagos",₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets +Plot Of Land (500sqm) At Mojisola Onikoyi Off Banana Island Road,"Mojisola Onikoyi Off Banana Island Road, Ikoyi, Lagos Ikoyi Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +2000sqm Land On Temple Road,Temple Road Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +2000sqm Of Land At Oni Ikoyi,Oni Ikoyi Ikoyi Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets +Land,7 Iru Close Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,18 Alexander Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,9 Kingsway Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Queens Drive Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Mekwen Street Old Ikoyi Ikoyi Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shoreline Estate Banana Island Ikoyi Lagos,₦,"255,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone J Banana Island Ikoyi Lagos,₦,"360,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lugard Avenue Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Rumens Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,25 Ikoyi Crescent Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,14 Ikoyi Crescent Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Mojisola Onikoyi Off Banana Island Road, , Banana Island Ikoyi Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone K & L Waterfront Banana Island Ikoyi Lagos,₦,"6,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +850 Sqm Of Land At Ikoyi,Mojisola Onikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +800 Sqm Og Land At Shoreline Estate,"Shoreline Estate Onikoyi, Lag Ikoyi Lagos",₦,"210,000,000",0,0,0, beds, baths, Toilets +1100 Sqm Of Land At Temple Road,Temple Rd Ikoyi Ikoyi Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets +Land, Old Ikoyi Ikoyi Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,74 Alexander Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,72 Alexander Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Agodogba, Parkview Estate Ikoyi Lagos",₦,"450,000,000",0,0,0,4 beds,5 baths,5 Toilets +3bed Room Flat,Olori Majishola Street Offf Banana Lsland Road. Ikoyi S.w Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Room Bq, Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +Service 3 Bedroom Terrace House + Bq,"Mcpherson Street, Bourdillon Ikoyi Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Banana Island Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Raymond Njoku Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +C Of O,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Bayo Kuku Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets +House Duplex,Dipo Orepitan Crescent 2nd Avenue Extension Ikoyi Lagos,₦,"1,000,000,000",0,0,0,10 beds,0 baths,0 Toilets +Land,Olagunsoye Oyinlola Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Acacia Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Bourdillon / Rumens Street, Old Ikoyi Ikoyi Lagos",₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Queens Drive Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Banana Island Ikoyi Lagos,₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kuramo Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Kuramo, Old Ikoyi Ikoyi Lagos",₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse,Gerrard Road Gerard Road Ikoyi Lagos,$,"2,400,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartment,Bourdillon Bourdillon Ikoyi Lagos,$,"1,250,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With 2 Rooms Bq For Sale At Ikoyi,Park View Estate Ikoyi Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets +2100sqm Of Land For Sale At Ikoyi,Ilabere Drive Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +2600sqm Of Land For Sale At Ikoyi,"Kuramo Close, Off Ilabere Ikoyi Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +2700sqm Of Land For Sale At Kuramo Close,"Kuramo Close, Off Ilabere Ikoyi Lagos",₦,"980,000,000",0,0,0, beds, baths, Toilets +8 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,8 beds,0 baths,0 Toilets +2100sqm Of Land At Ilabere Drive,Ilabere Drive Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Furnished With Bq,Milverton Road Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,5 Toilets +Bedroom Fully Furnished Luxury Apartment With Bq,"Milverton, Ikoyi Ikoyi Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets +Land,L Zone Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone D Banana Island Ikoyi Lagos,₦,"148,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Okotie Ebo Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Okotie Ebo Awolowo Road Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With A Bq,"Olusegun Aina, Parkview Estate Parkview Estate Ikoyi Lagos",₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Banana Island Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Queens Drive Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Ikoyi Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),James George Street Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Bourdillon Ikoyi Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Aromire Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alexander Avenue Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,George Street Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Alexander Avenue Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Kingsway Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale, Bourdillon Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Glover Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Luxury Townhouse At Banana Island Road,Banana Island Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Town House,Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lugard Avenue Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 4 Bedroom Detached House With 2 Mini Flat,Alhaji Bashorun Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Lluxury Terrace House At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached House With A Room Bq, Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Luxury Terrace House,"Parkview Estate, Ikoyi Parkview Estate Ikoyi Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Federal C Of O,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +7000sqm Of Land For Sale At Ikoyi,Glover Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +400 Square Metres Of Land,Off Banana Island Banana Island Ikoyi Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House For Sale At Ikoyi,Parkview Ikoyi Ikoyi Lagos,₦,"255,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Banana Island Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex In Ikoyi,Ikoyi Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,7 baths,7 Toilets +Luxurious 5 Bedroom Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land For Sale,Banana Island Ikoyi J Zone Banana Island Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Plot 13, Blk X, Osborne Foreshore 1, Ikoyi Osborne Foreshore Estate Ikoyi Lagos",₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat,Chris Ali Cr Abacha Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,"Shoreline Estate, Banana Island Banana Island Ikoyi Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House With 2 Rooms Bq,Banana Island Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets +2800sqm Of Land For Sale At Ikoyi,Ruxton Road Oid Ikoyi Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +3100sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Block Of Flats,. Dolphin Estate Ikoyi Lagos,₦,"18,000,000",0,0,0,2 beds,2 baths,2 Toilets +Governor's Consent,Onikoyi Street Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +530 Sqm Of Land For Sale At Ikoyi,Macpherson Avenue Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +400 Sqm Of Land For Sale At Ikoyi,Barrow Road Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +3000 Sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +2800 Sqm Of Land For Sale At Ikoyi,Ruxton Road Ikoyi Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +2000 Sqm Of Land For Sale At Lugard Road,Lugard Road Ikoyi Lagos,₦,"930,000,000",0,0,0, beds, baths, Toilets +1200 Sqm Of Land For Sale At Ojora Road,Ojora Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets +1897 Sqm Of Land For Sale At Ikoyi,Cooper Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets +1000 Sqm Of Land For Sale At Ikoyi,Temple Road Ikoyi Lagos,₦,"520,000,000",0,0,0, beds, baths, Toilets +1500 Sqm Of Land For Sale At Ikoyi,Club Road Ikoyi Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +3800 Sqm Of Land For Sale At Ikoyi,James George Street Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4300 Sqm Of Land For Sale At Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"1,650,000,000",0,0,0, beds, baths, Toilets +4200 Sqm Of Land For Sale At Ikoyi,Gerrard Road Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +5500 Sqm Of Land For Sale At Ikoyi,Rumens Road Ikoyi Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +10600 Sqm Of Land For Sale At Ikoyi,Bourdillon Road Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +4000 Sqm Of Land For Sale At Old Ikoyi,Alexander Avenue Ikoyi Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Town House Off Alexander Road,Off Alexander Road Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Luxury Terrace,Off Bourdillon Road Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Hotel,Osborne Ikoyi Osborne Foreshore Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No. 44bcd Gerrard Road Ikoyi Lagos Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No 44e Gerrard Road Ikoyi Lagos. Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Bourdilon/rumens Ikoyi Bourdillon Ikoyi Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Terrace Apartment,Off Femi Pedro Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Makunwe Bourdillon Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Banana Island, Banana Island Ikoyi Banana Island Ikoyi Lagos",₦,"480,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Neatly Used And Well Built 5bedrooms Spacious Fully Detached Duplex At Parkview Estate, Ikoyi","Parkview Estate, Ikoyi Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Queens Drive Ikoyi. Bourdillon Ikoyi Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 6 Units Of 3 Bedroom Flats On 2 Floors + Swimming Pool And Gym,"Ondo Street, Banana Island Banana Island Ikoyi Lagos",₦,"1,400,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Wing Of Duplex + Bq In Ikoyi,At Parkview Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),Macdonald Street Ikoyi. Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Macdonald Street Ikoyi. Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Glover Road Ikoyi Bourdillon Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,621.345sqm Of Land For Sale At Ikoyi",Rumens Road Off Bourdillion Ikoyi Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Bourdillon Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 No's Of 4 Bedroom Terrace Apartment,Banana Island Banana Island Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Detached Duplex,Parkview Estate Ikoyi Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),44e Gerard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Banana Island Plot L3 Waterfront Land Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lagoon Rd Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Banana Island, A21 Zone Banana Island Ikoyi Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Copper Mirama,"1 Copper Road,ikoyi,lagos. Ikoyi Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),1. Agodogba Park View Ikoyi Parkview Estate Ikoyi Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Flat,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Duplex,Maroko Close Off Queens Drive Ikoyi Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Tastefully Furnished 2 Bedroom Service Flat,Banana Island Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths, Toilets +500sqm Of Land For Sale At Ikoyi,Queens Drive Ikoyi Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Terrace For Sale At Ikoyi,Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex At Banana Island Estate,Banana Island Estate Ikoyi Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 5 Units Of 4 Bedroom Terrace Houses,Kuramo Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Apartment,By Banana Island Entrance Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Luxury Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Terrace House,Banana Island Banana Island Ikoyi Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"27a & B,rumens Road Off Bourdillon Road, Ikoyi Bourdillon Ikoyi Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Mansion With 4 Room Bq,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Numbers Luxury 4 Bedrooms Terrace House With 1 Room Bq,Ikoyi Parkview Estate Ikoyi Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedrooms Semi Detached House In A Mini Estate With Pool, Gym, Lawn Tennis Court & A Private Club",Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Old 4 Bedrooms Semi Detached House On 125 Square Metres Of Land,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedrooms Detached House With 4 Rooms Bq & 2rooms Guest Chalet On 3,200 Square Metres Of Land",Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"7,100+ Sqm Plot Of Land For Sale At Ikoyi Lagos",Gerrard Road Ikoyi Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 4 Bedroom Town House,Tony Eromosele Parkview Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex For Sale At Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),44e Gerrard Road Ikoy Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Gerard Road Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),44e Gerrard Road Ikoyi Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),K4 Banana Island Ikoyi Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Carcass,Close 107 Banana Island Ikoyi Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Detached House On 544 Square Metres,Close 224 Off 222 Off 3rd Avenue Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached House,Gated Estate Off Banana Island Banana Island Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +"4 Bedroom Semi Detached At At Osborne Phase I, Ikoyi, Lagos",Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Banana Island Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lawrence Street Ikoyi. Old Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Macdonald Street Ikoyi. Macpherson Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),K Zone Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Luxury Terrace House At Osborne Foreshore Estate,Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Luxury Terrace House At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Units Of Luxury 5 Bedroom Terrace House + 1 Room Bq Each,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat + 1 Room Bq,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex With Bq,Onikoyi Palace Road Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace With Bq,Parkview Parkview Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely Built 5 Bedroom Terrace,Mosley Ikoyi S.w Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Off Awolowo Road Awolowo Road Ikoyi Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Adekunle Fajuyi Road Banana Island Ikoyi Lagos,₦,"1,830,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Queen's Drive Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Banana Island Gate Banana Island Ikoyi Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets +Exquisitely Finished 3 Bedroom Apartments At Glover Road,Glover Road Ikoyi Lagos,₦,"375,000,000",0,0,0,3 beds,3 baths, Toilets +Land For Sale,"Zone P,58, Banana Island Banana Island Ikoyi Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,J61 Banana Island . Banana Island Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Apartments At Tango Towers,Bourdillon Road Ikoyi Lagos,₦,"375,000,000",0,0,0,4 beds,4 baths, Toilets +6 Bedroom House For Sale At Ikoyi,Parkview Estate Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale At Tango Towers,Tango Towers Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths, Toilets +Land ( Joint Venture ),Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1248sqm Of Land For Sale At Ikoyi,Off Alexandra Road Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +1900sqm Of Land For Sale At Milverton Road,Milverton Road Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +900sqm Of Land For Sale At Temple Road,Temple Road Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land For Sale At Onikoyi Foreshore Estate,Onikoyi Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Bourdillon Road Old Ikoyi Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Shaw Road Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerald Road Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land For Sale At Lugard Road,Lugard Road Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +7000sqm Of Land For Sale At Thomson Street,Thomson Street Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat,Old Ikoyi Lagos Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +3116sqm Of Land For Sale At Ilabere,Ilabere Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +800sqm Of Land For Sale At Mojisola Onikoyi Foreshore Estate,Mojisola Onikoyi Foreshore Estate Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +5000sqm Of Land For Sale At Rumens,Rumens Ikoyi Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land For Sale At Banana Island,Banana Island Residential Estate Ikoyi Lagos,₦,"255,000,000",0,0,0, beds, baths, Toilets +1400sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +700sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +1208sqm Of Land For Sale At Parkview Estate,Off Tony Eremosele Street Ikoyi Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +500sqm Of Land For Sale At Parkview Estate,Parkview Estate Ikoyi Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land For Sale At Banana Island,Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +1300sqm Of Land For Sale At Mekwen,Mekwen Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"2 Units Of 3 Bedroom Luxury Flats With 1 Room Bq Each, Swimming Pool, Gym And Club House.",Old Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land ( Joint Venture ),Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,373.23sqm Of Land For Joint Venture At Lawrence Street",Lawrence Street Ikoyi Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Flat,Mosley Road Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths, Toilets +Brand New & Well Finished 5 Bedroom Detached House With Bq,Mojisola Onikoyi Street Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"19,000 Of Land Waterfront",Banana Island Zone K Banana Island Ikoyi Lagos,₦,"1,750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch 4 Bedroom Terrace,Falomo Close Bourdillon Ikoyi Lagos,$,"2,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Apartment In Banana Island,Banana Island Banana Island Ikoyi Lagos,₦,"134,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached House+ An Ensuite Bonus Room,Bananai Island Road Gerard Road Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets +2 Units Of 4 Bedroom House For Sale At Ikoyi,Queens Drive Ikoyi Lagos,₦,"781,250,000",0,0,0, beds, baths, Toilets +"Executive Well Finished 2 Units Of 6 Bedroom Detached Duplex, With 2 Bedroom Bq Each",Osborne Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets +Executive Well Finishde 5 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Executive Well Finishde 4 Bedroom Detached Duplex,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Gerald Road Gerard Road Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With A Room Servant Quarters,Off Banana Island Road Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,0 Toilets +A Block Of 10 3 Bedroom Flat,Ikoyi Water Front Awolowo Road Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Apartment,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"850,000,000",0,0,0,3 beds,3 baths,3 Toilets +7 Units Of 3 Bedroom Terrace Houses With A Room Bq,Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,3 Toilets +10 Bedroom Flat,Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"5,000,000",0,0,0,10 beds,3 baths,3 Toilets +"4 Bedroom Semi Detach Duplex With 1 Room Bq,",Onikoyi Lane Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets +Land For Sale,Alexander Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Mekunwen Road Old Ikoyi Ikoyi Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Milverton Road Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Glover Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lugard Road Old Ikoyi Ikoyi Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Turnbull Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Shaw Road Old Ikoyi Ikoyi Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Cooper Road Bourdillon Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Inside Banana Island Banana Island Ikoyi Lagos,₦,"340,000,000",0,0,0,5 beds,6 baths,6 Toilets +Architectural Masterpiece Hotel,No 70 Queens Drive Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No. 13 Turnbull Road. Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No 13 Gerrard Road Gerard Road Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"765,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Mcdonald, Ikoyi. Bourdillon Ikoyi Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Bourdilon Bourdillon Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Awolowo Road Awolowo Road Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lawrence Street Parkview Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Zone K4 Banana Island Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000 Square Metres Of Land",Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,008 Square Metres Of Land",Abacha Esate Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,700 Square Metres Of Land",Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4385 Square Metres Of Land,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,500 Square Metres Of Land",Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Soule Close Parkview Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Banana Island Banana Island Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Detached Duplex,Onikoyi Parkview Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Phase 2. Osborne Foreshore Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House,Mojisola Banana Island Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Residential Land,Banana Island Banana Island Ikoyi Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,"Ribadu Road Off Awolowo Road, Southwest. Awolowo Road Ikoyi Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Zone Q2 Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,J1 & P1 Banana Island Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island J44b Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Mojisola Onikoyi Estate Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale,Zone L2 Banana Island. Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Zone L1 Banana Island Banana Island Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat With A Bq In Ikoyi,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,James George Estate Old Ikoyi Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Zone6 Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No. 44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No 44e Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,Ribadu Road Awolowo Road Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Rumens Street Old Ikoyi Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Storey Building,Off Awolowo Road Ikoyi S.w Ikoyi Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Queens Drive Mosley Road Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,No. 36 Cameron Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"3,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oyinkan Abayomi Drive Ikoyi Old Ikoyi Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of Brand New Semi Detached Town Houses,Lugard Avenue Ikoyi Lagos,₦,"4,220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House With 2 Room Bq Sitting On 500 Sqm Land .,"Near Bode Olajumoke Crescent, Park View Estate Parkview Estate Ikoyi Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terrace,"Mosley Road, Old Ikoyi Ikoyi Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets +Brand New Fully Detached 5 Bedroom Duplex,Park View Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land For Sale,Oba Palace Road Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oba Palace Road Parkview Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Parkview Esate Parkview Estate Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"3,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oyinkan Abayomi Drive Bourdillon Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat With A Room Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Apartment,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom Flat With A Bq,Adeyemi Lawson Off Queens Drive Ikoyi. Macpherson Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale,"Alexander Avenue, Gerard Road Ikoyi Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Nos 3 Bedroom Flat With Attached Bq,Off Queens Drive Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +4553sqn Of Land Off Gerrard Road,Off Gerrard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Ilabere Street Old Ikoyi Ikoyi Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Milverton Road Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Shell Trustee Close Abacha Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Master Piece 4 Bedroom Penthouse In Bellavista,",Banana Island Banana Island Ikoyi Lagos,$,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Master Piece 4 Bedroom Penthouse In Bellavista,",Banana Island Banana Island Ikoyi Lagos,$,"13,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land For Sale,No 33 Copper Road Off Bourdillon Street Bourdillon Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Foreshore Estate Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Of Land On Mekwuen Road,"Mekwuen Road, Off Bouurdillon Road Ikoyi Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Osborne Foreshore Estate Phase1 Osborne Foreshore Estate Ikoyi Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Gerard Road Gerard Road Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"365,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 12 Blocks Of 3 Bedroom Flat With Attached Bq,Off Queens Drive Macpherson Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 6 Bedroom Duplex,Norman Williams Ikoyi S.w Ikoyi Lagos,₦,"230,000,000",0,0,0,5 beds,4 baths,5 Toilets +Beautiful And Well Finished 3 Bedroom Flat With Bq,Olusegun Aina Parkview Estate Ikoyi Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Furnished 3 Bedroom Flat Apartment For Sale,"Ikoyi , Lagos . Ikoyi Lagos",₦,"110,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"385,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Phase 2 Old Ikoyi Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Osborne Foreshore Estate Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Osborne Foreshore Estate Ikoyi Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +Land,Facing Atlantic Ocean Bourdillon Ikoyi Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +3098sqm Land With Old Structure,Ipeu/ Mekwen (corner Piece) Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Apartment In Ikoyi,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Zones K & L, Waterfronts Banana Island Ikoyi Lagos",₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land For Sale At Lugard Avenue,Lugard Avenue Ikoyi Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +"Newly Built 5 Bedrooms Detached Aesthetic House, Ikoyi",Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Duplex,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Upgraded 4 Bedroom Serviced Apartment,Bourdillon Bourdillon Ikoyi Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,4 Toilets +Furnished 3 Bedroom Serviced Apartment For Sale,"Ikoyi ,lagos Ikoyi Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Land,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Semi Detached House,Alhaji Masha Close Off Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"280,000,000",0,0,0,8 beds,6 baths,0 Toilets +5 Bedroom Duplex,Foreshore Line Estate Osborne Foreshore Estate Ikoyi Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Banana Island Banana Island Ikoyi Lagos,₦,"370,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Units Of Privately Gated Terrace Duplex With 4 Bedroom And A Bq. Location,Turnbull Banana Island Ikoyi Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 3098sqm Land With Old Structures,Meukwen Bourdillon Ikoyi Lagos,₦,"1,000,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Tastefully Finished 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Banana Island Banana Island Ikoyi Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Block Of Flats,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"5,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Furnished 3 Bedroom Apartment (serviced) With Bq,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,2 baths,3 Toilets +Land For Sale On Mulliner Road,"Mulliner Road, By Ikoyi Club Ikoyi Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets +Water Back Vacant Land,Queens Drive Old Ikoyi Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House For Sale,Park View Estate Ikoyi Lagos State Ikoyi Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +"3,774sqm Of Land At Ikoyi","Ikoyi , Lagos Ikoyi Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +Land,"Zone L, Plot 20, Banana Island, Ikoyi, Lagos Banana Island Ikoyi Lagos",₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land For Sale,"Ikoyi , Lagos Ikoyi Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +3000sqm Of Land At Alexandra,Alexandra Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +Fine Affordable 5 Bedroom Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached House,Beside Banana Island Estate Ikoyi Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Beside Banana Island Estate Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Super Luxurious 4 Bedroom Terrace Duplex,Ikoyi Ikoyi Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets +"12,00 Square Metres Of Land",Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex, Parkview Estate",Park View Estate Ikoyi Ikoyi Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +2 Units Of 4 Bedrooms Semi Detached Duplex Plus Bq,Ademola Street Ikoyi S.w Ikoyi Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikoyi Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached House,Eleanora Lagoon Court Osborne Foreshore Estate Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale At Reeve Road,Reeve Road Ikoyi Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +12 Nos. Of 3 Bedroom Serviced Flats,Adeyemi Lawson Old Ikoyi Ikoyi Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Modern 4 Bedroom Terrace House,Mekuwen Street Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished Luxury 5 Bedroom Duplex + Swimming Pool,Stratongate Avenue Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Royal Palm Drive Osborne Foreshore Estate Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Cheapest Plot Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Hameed Kasumu Parkview Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Glover Old Ikoyi Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Newly Built 3 Bedroom Terrace Duplex,Lateef Jakande Avenue Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"5,000sqms Of Land In Ikoyi",Glover Road Ikoyi Lagos,₦,"3,750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Flats For Sale,Off Alexandra Road Ikoyi Lagos,₦,"199,000,000",0,0,0,4 beds,5 baths, Toilets +Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerrard Road Parkview Estate Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxurious Service Flat Off Queen Drive,Off Queen Drive Ikoyi Lagos,₦,"87,000,000",0,0,0,3 beds,3 baths, Toilets +"1,608 Square Metres",Osborne 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000 Square Metres Of Land",M11 Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1092 Sqm Of Land,Parkview Estate Ikoyi Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5200 Sqm Land,Folarunsho Alakija Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,200 Square Metres Of Land",Olagunsoye Oyinola Street Dolphin Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,092 Square Metres Of Land",Parkview Esate Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,200 Square Metres Corner Piece Land",Folorunsho Alakija Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Serviced Apartment In Ikoyi,Okotie Eboh Close Ikoyi Lagos,₦,"109,500,000",0,0,0,4 beds,4 baths, Toilets +Land,Alakila Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,44egerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,100 Sqm Of Good Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"A Good Land Measuring 5,100 Sqm In Ikoyi",Queen's Drive Ikoyi S.w Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Udi Street Osborne Foreshore Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,050 Square Metres Of Land",Kingsway Road Falomo Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Square Metres Of Land,Cameron Road Falomo Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Square Metres Of Land,Ojora Road Gerard Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Square Metres Of Land,Queens Drive Bourdillon Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Square Metres Of Land,Aromire Road Falomo Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,200 Square Metres Of Land",Bourdillon Road Bourdillon Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,500 Square Metres Of Land",Webb Road Falomo Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,800 Square Metres Of Land",Aromire Road Falomo Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Metres Of Land,Temple Road Gerard Road Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,Alexander Avenue Gerard Road Ikoyi Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Newly Built 4 Bedroom Detached Duplex In Ikoyi,Olusegun Olusemo Drive Parkview Estate Ikoyi Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +1879 Square Metres Of Land,Milverton Street Falomo Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +6300 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Nice 4 Bedroom Semi Detached Terrace Duplex In Ikoyi,Onikoyi Road Parkview Estate Ikoyi Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths,4 Toilets +"5,200 Square Metres Of Land",Folorunsho Alakija Street Osborne Foreshore Estate Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Empty Fenced Land Measuring Approximately 7,100 Square Metres.",Gerard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Empty Fenced Land Measuring Approximately 4,534square Metres Of Land",Old Ikoyi Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ojoro Old Ikoyi Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With Bq & Swimming Pool,Ikoyi Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4000sqm Of Land On Gerrard Close,Gerrard Close Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Duplex On Reeve Road,Reeve Road Ikoyi Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Flat On Gerald Road,Gerald Road Ikoyi Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths, Toilets +2 Bedroom Flat (1st Floor) In Ikoyi,Banana Estate Banana Island Ikoyi Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Plot 12 Parkview Estate Parkview Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Terrace For Sale In Ikoyi,Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With A Bq And 5 Bedroom Semi Detaxched Duplex With A Bq,Parkview Esate Parkview Estate Ikoyi Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +674 Square Metres Of Land,Zone P Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +1800 Square Metres Of Land,Zone F Banana Island Ikoyi Lagos,₦,"630,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Sqimming Pool,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets +"5,897sqm Of Land Off Kingsway Road",Off Kingsway Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With A Swimming Pool And A Green Area,Cameron Road Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Milverton Street Osborne Foreshore Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached House,3rd Avenue Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,7 beds,7 baths,8 Toilets +7200 Square Metres,Glover Road Bourdillon Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,865,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,44bcd Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Awolowo Awolowo Road Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ahmed Kasimu Parkview Estate Ikoyi Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Turnbull Road Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerrard Road Parkview Estate Ikoyi Lagos,₦,"730,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted Hotel Complex At Queens Drive,Queens Drive Ikoyi Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 10,000sqm For Sale","Onikoyi Road, Ikoyi, Lagos Ikoyi Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 11,600sqm For Sale",Gerrard Road Ikoyi Lagos,₦,"4,900,000,000",0,0,0, beds, baths, Toilets +Land Measuring 3116sqm For Sale,Ilabere Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Land Measuring 3944.34sqm For Sale,James George Close Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Good 1000sqm Of Land Off Awolowo Way,Off Awolowo Way Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +3700 Sqm Plot Of Land On Ojora Road,Ojora Road Ikoyi Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land On Kingsway Road,Kingsway Road Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Plot Of Land On Alexandra Road,"9 A, Alexandra Road Ikoyi Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"Luxury Furnished 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +"Luxury Serviced 3 Bedroom Apartment, Ikoyi",Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths, Toilets +Well Finished 5 Bedroom Duplex At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Well Finished 5 Bedroom Detached Duplex, Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Well Finished 4 Bedroom Detached Duplex,Noman Williams Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxury & Exclusive Hotel Complex For Sale,Queens Drive Ikoyi Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Banana Lsland Banana Island Ikoyi Lagos,₦,"1,800,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Banana Island Road Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land At Macdonald Road,Macdonald Road Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Alexandra,Alexandra Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Land For Sale Glover Road,Glover Road Ikoyi Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Land,Bayo Kuku Road Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4400 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced Luxury 8 Units Of 2 Bedroom Flats With 4 Rooms Servant Quarters,Ondo Road Osborne Foreshore Estate Ikoyi Lagos,₦,"800,000,000",0,0,0,2 beds,2 baths,3 Toilets +7000 Square Metres Of Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Gerald Road Gerard Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +6500 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Metres Of Land,Glover Road Falomo Ikoyi Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5600 Square Metres Of Land,Aromire Road Falomo Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +3300 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5897 Square Metres Of Land,Aromire Street Falomo Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikoyi 1500m2 Land For Salen420m,Old Ikoyi Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +"Ikoyi 3600m2 For Sale N400,000 Per Sqm",Old Ikoyi Ikoyi Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"Ikoyi 6000sqm For Sale N1,800,000,000",Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With 2 Rooms Bq In Ikoyi,Reeves Road Old Ikoyi Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5084 Square Metres Of Land,Inner Crescent Dolphin Estate Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Filling Station With 6 Pumps On 3 Plots Of Land,By Fire Service Awolowo Road Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Onikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Onikoyi Foreshore Estate Banana Island Ikoyi Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Rumens Street Bourdillon Ikoyi Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Banana Island Ikoyi Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Lugard Avenue Falomo Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Banana Island Banana Island Ikoyi Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilabere Old Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3300 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3100 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +2200 Square Metres Of Land,Bourdillon Road Bourdillon Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2900 Square Metres Of Land,Temple Road Old Ikoyi Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4500 Square Metres Of Land,Kingsway Road Old Ikoyi Ikoyi Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5500 Square Metres Of Land,Webb Road Old Ikoyi Ikoyi Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5800 Square Metres Of Land,Aromire Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Square Metres Of Land,Aromire Old Ikoyi Ikoyi Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +1200 Square Metres Of Land,Olagunsoye Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Metres Of Land,Zone P Banana Island Ikoyi Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Square Metres Of Land,Zone J Banana Island Ikoyi Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,No.5a & B Temple Road Ikoyi Lagos. Ikoyi S.w Ikoyi Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +3100 Square Metres Of Land,Glover Road Old Ikoyi Ikoyi Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached House With 2 Room Service Quarters. Old Ikoyi,"Off Alexander, Old Ikoyi Ikoyi Lagos",₦,"660,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With 2 Bq,"Off Alexander, Old Ikoyi Old Ikoyi Ikoyi Lagos",₦,"660,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace With 1 Room Bq,Lekki Parkview Estate Ikoyi Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrace House,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0,3 beds,4 baths,3 Toilets +Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Units Of Luxurious 3 Bedroom Flats With Swimming Pools,Ikoyi Old Ikoyi Ikoyi Lagos,₦,"4,000,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,Alagbon Old Ikoyi Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3400238 Square Metres,J Zone (water Front) Banana Island Ikoyi Lagos,₦,"410,000",0,0,0,0 beds,0 baths,0 Toilets +8000sqm Of Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +864sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +950sqm Of Land In Ikoyi,Ikoyi Ikoyi Lagos,₦,"209,000,000",0,0,0, beds, baths, Toilets +1050sqm Of Land In Ikoyi,Ikoyi Ikoyi Lagos,₦,"231,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +1200sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"264,000,000",0,0,0, beds, baths, Toilets +1500sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +2000sqm Of Land At Ikoyi,Ikoyi Ikoyi Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House,Onikoyi Old Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With Swimming Pool,Banana Island Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Flat With A Bq,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +200 Square Metres Of Land,Before Banana Island Gate Banana Island Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats On Sumbo Jibowu Street,Sumbo Jibowu Street Ikoyi Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths, Toilets +5 Bedroom Detached House With Bq On 600 Square Metres And Swimming Pool,By Niter Street Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 3 Bedroom Flat In Ikoyi,"No. 38 Oshodi Street, Dolphin Estate Ikoyi Lagos",₦,"25,000,000",0,0,0,3 beds,2 baths,2 Toilets +Brand New 5bedroom Detached House With Swimming Pool On 700 Square Metres Of Land,Park View Estate Parkview Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +1600 Square Metres Of Land,Osborne Phase 1 Osborne Foreshore Estate Ikoyi Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400 Square Metres Of Land,Aromire Road Gerard Road Ikoyi Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500 Square Metres Of Land,Iru Close Bourdillon Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Of Land At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land,Olagusoye Oyinlola Street. Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Square Metres Of Land,Oyinola Street Abacha Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartment,Eko Parkview Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Block Of 26 Luxury Apartments With 3 Bedroom,"Gerald Road, Ikoyii Ikoyi Lagos",₦,"8,000,000,000",0,0,0,3 beds,4 baths, Toilets +Land,Olagusoye Oyinlola Steet. Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,000 Square Metres Of Land",Bourdillon Bourdillon Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat In Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"350,000,000",0,0,0,3 beds,4 baths, Toilets +1200 Square Metres Of Land,Abacha Estate Abacha Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,K Zone Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Ikoyi Ikoyi S.w Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Units Of 3 Bedroom Flat,Probyn Road Old Ikoyi Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached House O,Ibogun Old Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Awolowo Road Awolowo Road Ikoyi Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,208sqm Of Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"3,000sqm Of Waterfront Land At Ikoyi",Ikoyi Ikoyi Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Luxury Four Bedroom Apartment,Glover Road Old Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +750 Sqm Plot Of Land At Ikoyi,Queens Drive Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex,Ruxton Road Old Ikoyi Ikoyi Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Jubril Amimu Crescent Parkview Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Queens Drive, Ikoyi Lagos Old Ikoyi Ikoyi Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Oroke Drive Bourdillon Ikoyi Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Zone L Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Waterfront Banana Island Ikoyi Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Zone K Banana Island Ikoyi Lagos,₦,"336,000",0,0,0,0 beds,0 baths,0 Toilets +"Terrace House, Mekunwen Ikoyi","Mekunwen Street, Ikoyi Lagos Ikoyi Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +Landed Property Measuring 2000 Square Meters On Glover Road Ikoyi Lagos,Glover Road Ikoyi Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished Luxury 5 Bedroom Duplex,Niger Street Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Off Plan Luxury Four Bedroom Terrace At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +"3,337.1171sqm Of Land In Ikoyi",Ikoyi Ikoyi Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House,Parkview Estate Parkview Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace,Old Ikoyi Old Ikoyi Ikoyi Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bedroom Apartment At Ikoyi,Ikoyi Ikoyi Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths, Toilets +Newly Built 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Exclusive 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Well Finished 5 Bedroom Duplex With Bq At Ikoyi,Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Stratongate Avenue Old Ikoyi Ikoyi Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House + Bq,Ruxton Avenue Old Ikoyi Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Bedroom Fully Detached House +bq,Banana Island Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,050,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Gerrard Road Gerard Road Ikoyi Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Zone K Banana Island Ikoyi Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +A Luxury Hotel With Premium Finishing For Sale,By Odo Bus Stop Alagbole Near Ojodu Berger Bus Stop Ikoyi Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex,Foreshore Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +A 6 Bedroom Detached House With A Bq,Foreshore Estate Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Along Old Federal Secretariat Road Before Radio Dolphin Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Maroko Close Bourdillon Ikoyi Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Osborne Phase 2 Osborne Foreshore Estate Ikoyi Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets +A 5 Bedroom Detached House With A Room Bq,Banana Estate Banana Island Ikoyi Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale At Old Ikoyi,Old Ikoyi Ikoyi Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +A 23 Rooms Hotel Accommodation,Queen's Drive Ikoyi S.w Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedrooms Tastefully Finished Town House Off Alexander Road, Ikoyi.",Off Alexander Ikoyi Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities,Off Queens Road Ikoyi Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths, Toilets +A 6 Bedroom Detached Duplex,Off Alexander Road Ikoyi S.w Ikoyi Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Units Of A 6 Bedroom Detached Duplex With A Room Bq,"Osborne Estate, Phase 2 Osborne Foreshore Estate Ikoyi Lagos",₦,"750,000,000",0,0,0,6 beds,6 baths,7 Toilets +"A 2,000sqm Land",Zone J Banana Island Ikoyi Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,883sqm Land",Zone L Banana Island Ikoyi Lagos,₦,"310,000",0,0,0,0 beds,0 baths,0 Toilets +"A 10,300sqm Land",Zone A Banana Island Ikoyi Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,994sqm Land","Cbd, Eko Atlantic City Ikoyi S.w Ikoyi Lagos",$,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Serviced Apartment,Gerard Road Old Ikoyi Ikoyi Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +"A House On A 3,133sqm Land",Off Mcgregor Road Old Ikoyi Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Premium Serviced Apartment For Sale,21 Milverton Road Ikoyi Lagos,₦,"249,000,000",0,0,0,3 beds,3 baths, Toilets +3 Bedroom Terrace House Plus Bq,Ojora Road Off Alexander Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House With Bq,Ojora Road Off Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"639,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"672,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"686,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"685,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"807,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"804,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,000sqm Of Land",Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury Furnished 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +"Executive 3 Bedroom Apartment, Lugard",Lugard Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +700sqm Plot Of Land At Temple Road,Temple Road Ikoyi Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"A 3,000sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,000sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,000sqm Of Land","Temple Road, Kingsway Road Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,600sqm Water Dry Land","Osborne Estate, Phase 1 Mojisola Onikoyi Estate Ikoyi Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,000sqm Of Land",Queen's Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,500sqm Of Land",Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,400sqm Of Land",Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 980sqm Of Land,Parkview Mojisola Onikoyi Estate Ikoyi Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,200sqm Of Land",Mosley Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,750sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 19,000sqm Of Land",Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,700sqm Of Land",Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,450sqm Of Bare Land",Osborne Ii Mojisola Onikoyi Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,450sqm Of Land",Iru Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,150sqm Of Land",Maroko Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,400sqm Of Land",Queen's Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +An 800sqm Of Land,Oroke Drive Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,000sqm Of Land",Jabita Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,750sqm Of Land",Alexander Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterview 3753sqm Plot Of Land At Queens Drive,Queens Drive Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom Detached House + 1 Room Bq,Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Approximately 6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Approximately 3700 Sqm Plot Of Land On Ojora Road,Ojora Road Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Duplex Off Glover Road,Off Glover Road Ikoyi Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +Elegant Hotel Property,Delta Parkview Estate Ikoyi Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +6000 Sqm Plot Of Land At Thompson Avenue,Thompson Avenue Ikoyi Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"Well Finished 4 Bedroom Detached Duplex, Noman Williams",Noman Williams Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +2 Nos Of 3 Bedroom Luxury Flat With A Study/children Game Room,Bankole Cardozo Ikoyi Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths, Toilets +5 Bed Semi Detached House,"Banana Island Road, Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Dolphin Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Illuburin Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets +4 Bedroom Terrace House,Kuramo Close Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Bank Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Emmanuel's Court Parkview Estate Ikoyi Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 4 Bedroom Townhouse With A Bq,Parkview Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Office Space,"5, Ribadu Road Off Awolowo Road. Mojisola Onikoyi Estate Ikoyi Lagos",₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,Bode Olajumoke Mojisola Onikoyi Estate Ikoyi Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Semi Detached + Bq,Awolowo Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury Serviced 3 Bedroom Apartment, Ikoyi",Ikoyi Ikoyi Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths, Toilets +"Well Finished 5 Bedroom Detached Duplex, Ikoyi",Ikoyi Ikoyi Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"A 4,534.13sqm Of Land",44bcd Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,050,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 7,100sqm Of Land",44e Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 19,400sqm Of Land","Plots 13 And 14, Zone L Mojisola Onikoyi Estate Ikoyi Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abacha Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Detached House With A Boys Quater,Vgc Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Duplex At Banana Island,Banana Island Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Townhouse,"Onikoyi Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,2nd Avenue Mojisola Onikoyi Estate Ikoyi Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,4 Toilets +A 5 Bedroom Twin Duplex,"Royal Palm Drive, Osborne Foreshore Estate Mojisola Onikoyi Estate Ikoyi Lagos",₦,"700,000,000",0,0,0,5 beds,5 baths,6 Toilets +40 Units Of 3 Bedroom Flats,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +40 Units Of 4 Bedroom Flats,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +24 Unts Of 3 Bedroom Townhouses,Onikoyi Foreshore Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +24 Unts Of 4 Bedroom Townhouses,Onikoyi Foreshore Banana Island Mojisola Onikoyi Estate Ikoyi Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House,Parkview Estate Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace,Falomo Close Mojisola Onikoyi Estate Ikoyi Lagos,$,"3,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikoyi Mojisola Onikoyi Estate Ikoyi Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 2 Bedroom Flat Building,"Sumbo Jibowu Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000",0,0,0,2 beds,2 baths,2 Toilets +A 5 Bedroom Detached House With 2 Room Bq,Olusegun Aina Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Halo Court,Turmbull Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 30 Rooms 5 Star Hotel,Osborne Phase 1 Mojisola Onikoyi Estate Ikoyi Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Layi Ajayi Bembe Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4000sqm Of Land On Gerrard Road,Gerrard Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +3724sqm Water Front Land On Queen Drive,Queen Drive Ikoyi Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Land, House For Sale On Glover Road, Gerrard Road, Temple Road, Bourdillion Road, Lugard Avenue, Ruxton Road, Webb Road, Lagos Nigeria","Glover Road, Ikoyi Lagos Ikoyi Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets +Land Fenced,Osborne Phase 2 Mojisola Onikoyi Estate Ikoyi Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Highrise Building,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Terrace House,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A House On 1,404sqm Of Land",Adeyemi Lawson Mojisola Onikoyi Estate Ikoyi Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2 Bedroom Flats Building,Sumbo Jibowu Street Mojisola Onikoyi Estate Ikoyi Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,2 Toilets +"A 4,533sqm Of Land",Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 4,554sqm Of Land",Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 6371sqm Of Land,Glover Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,200sqm Of Land",Cameroun Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,500sqm Of Land",Cooper Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,000 Sqm Of Land",Bourdilion Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 7,000sqm Of Land",Gerrad Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 11,900sqm Of Land",Gerrad Road Mojisola Onikoyi Estate Ikoyi Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,700sqm Of Land",Alexander Mojisola Onikoyi Estate Ikoyi Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Detached 4 Bedrooms,Ikoyi Area Mojisola Onikoyi Estate Ikoyi Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Piece Of Land,N/a Mojisola Onikoyi Estate Ikoyi Lagos,₦,"865,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedrooms Semi Detached Duplex With A Bq,Park View Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Highrise Building Of 22 Units Of 3 Bedroom Terrace In Ikoyi,Ikoyi Ikoyi Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Luxury Development Project At 9 Ruxton Street,9 Ruxton Street Ikoyi Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +"9 Units Of 4 Bedroom Terrace Duplex At Ruxton Street, Off Alexander Road",Ruxton Street Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"Good 1000sqm Of Land, Old Ikoyi",Old Ikoyi Ikoyi Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached At Banana Island Road Ikoyi,Banana Island Road Ikoyi Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Renovated 4 Bedroom Semi Detached Duplex At Parkview Estate,Abodogba Parkview Estate Ikoyi Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex At Banana Island Road Ikoyi,Banana Island Road Ikoyi Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Plot Of Land At Maroko Close,Maroko Close Ikoyi Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"Plot Of Land At Parkview Estate, Ikoyi",Parkview Estate Ikoyi Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Plot Of Land At Banana Island Road, Ikoyi",Banana Island Road Ikoyi Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Plot Of Land At Banana Island Road,Banana Island Road Ikoyi Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +"Plot Of Land, Off Banana Island Road",Off Banana Island Road Ikoyi Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +"Property On Cooper Road, Gerrad Road, Kingsway Road, Bourdillion Road, Bayo Kuku Street, Alexandra Road, Glover Road, Temple Road, Webs Road, Ikoyi",Old Ikoyi Lagos Ikoyi Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +A 4 Bedrooms Semi Detached Duplex,Park View Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex,Osborne Estate Mojisola Onikoyi Estate Ikoyi Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +52 Units Of 3 Bedroom Luxury Flat,"Off Kings Way Road, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"3,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Regularized Dry And Fenced Plot Of Land,"Off Udi Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached Houses + A Room Bq,"Off Udi Street, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + A Room Bq,"Parkview Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex + 1 Bedroom Bq,"Parkview Estate, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Of 4 Bedroom Duplexes,"Osborn Road, Mojisola Onikoyi Estate Ikoyi Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets diff --git a/dirty/lekki.csv b/dirty/lekki.csv new file mode 100644 index 0000000..345ae5e --- /dev/null +++ b/dirty/lekki.csv @@ -0,0 +1,45998 @@ +Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets +Newly Built 4bedroom Apartment,Emcel Court Along Lafiaja Road Adjacent To Prime Mall Mega One Cinema Lekki Conservation Center Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette,Lekki Lagos,₦,"79,000,000",0,1,0,3 beds,4 baths,4 Toilets +Exquisitely Built 4 Terrace Duplex For With Private Compound,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Most Affordable 4 Bedroom Detached Duplex For Sale,Lekki Conservation Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House,Opposite Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Fully Detached Duplex With A Room Bq;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached With 2 Bedroom Bq,Osapa Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Complete Serviced 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets +Nicely Built 3 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Conservative Alternative Route By Chevron Toll Gate Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment,"Edgewaters Estate, Amaechi Onuoha Crescent Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,"Simon Chibukor, Mega Mound Estate, Lekki Lagos",₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 5 Bedroom Detached Duplex With Bq,Megamound Estate Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Contemporary Duplex,Chevron Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Masterpiece 5 Bedroom Detached House*,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,"2nd Toll Gate, Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Contemporary Duplex,"Chevron Toll Gate, Lekki Conservation Chevron Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Maisonette + Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Block Flats 1 Bedroom Apartment,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,2 baths,2 Toilets +2 And 1 Bedroom Apartment,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,3 baths,3 Toilets +Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,7 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2bedroom Luxury Apartments,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 2bedroom Luxury Apartment,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Unit Of 3 Bedroom Flat,Agungi Lekki Lagos,₦,"450,000,000",0,1,0,10 beds,0 baths,0 Toilets +Newly Built 2bedroom Service Apartment,Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets +Brand New 7 Bedroom Fully Detached Duplex,"Zone B, Nicon Town Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex,"Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Masionette With Bq,Lekki Phase 1 Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Masionette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Masionette With Bq,Lekki Phase 1 Lekki Lagos,₦,"69,000,000",1,1,0,2 beds,2 baths,3 Toilets +Uncompleted 6 Bedroom Detached House,"Off Road 3, Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"130,000,000",0,0,0,6 beds,8 baths,9 Toilets +Serviced 3 Bedroom Apartment,Off Conservative Route By Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets +3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom House With A Bq Located At Ikota.,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached House,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 5 Bedroom Duplex,Oral 2 Oral Estate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Serviced Contemporary 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Well Built 5 Bedroom Detached Duplex With Swimming Pool, Pent House & Boy’s Quarter",Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Contemporary Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets +"5 Bedroom Detached House With Swimming Pool, Cinema, Gym.",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Spacious And Well Finished, Luxury 4 Bedroom Semi Detached Duplex With A Bq",Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Terrace Duplex,Orchid Road/pantheon Smart Homes/chevron Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive Brand New 5bedroom Fully Detached House With A Bq In A Secured Estate,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 6 Bedroom Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,7 baths,7 Toilets +5 Bedroom Duplex With Indoor Swimming Pool & Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached With A Bq,Oniru Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Extraordinary 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Spacious 5bedroom Duplex With Swimming Pool, Lekki County",Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Premium 2 Bedroom Apartments,Meadow Hall Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds, baths, Toilets +Classic 5 Bedrooms Fully Detached Houses With An Ensuite Maid’s Quarter,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 5bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"148,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,"Abraham Adesanya, Ogombo Road Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With B.q|,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Fully Serviced Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Nicely Built 5 Bedroom Detached House With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Very Spacious & Luxurious Brand New 5bedrooms Listing,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Bq,Orchid Toll Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +2bedrooms Luxury Apartment Fully Serviced With A Servant Quarter In A Perfect Location,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Newly Built 5bedroom In A Gated Estate And Fully Secured Environment, Where Kids Can Play And Call Home",Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Spacious 3 Bedroom Flats,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale!!! With 247 Electricity And Water Also Has A Lake View,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bakare Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lake View Estate Ikota Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious Executive Newly Built Decent 4bedroom Detached With 1bedroom Bq At Lekki Atlantic Side,"Lekki Phase 1, Atlantic Side Lekki Phase 1 Lekki Lagos",₦,"300,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary Massive 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House Ample Parking Space,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Fitted Kitchen,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Dupex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Extra Spacious 4 Bedroom Apartment,In A Serene And Save Estate At Idado Idado Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Serviced 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +New Built And Luxury Finished 4bedroom Semi Detached Duplex In A Serene Estate,In A Serene Estate In. Chervon Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Penthouse Duplex,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets +Well Finished 5 Bedroom House,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Furnished 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Very Close To Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Contemporary Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 2bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"This Luxurious Fully Furnished 4 Bedroom Fully Detached Duplex With Swimming Pool, Gym And A Room Bq",Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Beautifully 5 Bedroom + Bq Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq In A Serene Secured Estate,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Newly Built 5bedroom Duplex With 1bq, Large Outdoor Space",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 4bedroom Terrace House,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Affordable 3 Bedroom Terrace House,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Built 6 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace House,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Maisonette Duplex In A Well Secure Estate,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached With A Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +New Spacious 4 Bedroom Fully Detached Duplex With Bq,Chevron. Gate Orchid Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5bedroom Fully Detached House With A Bq Swimming Pool In A 247 Electricity Estate!!!,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New 5bedroom Fully Detached House With A Bq And 247 Electricity !!!,Conservation Road Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +2bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Amazing 4 Bedroom Terrace Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Premium Secured Estate Environment,Chevron Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets +2bedroom Maisonette + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bed Fully Detached Duplex With 2 Bq In Lekki,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive Elegant 4 Bedroom Semi Detached Duplex,Adebayo Doherty Road (road 14) Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,3 baths,4 Toilets +Newly Built Contemporary Serviced 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Townhouse For Sale At Twin Lakes Waterfront,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +500sqm Land*,Bogije Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,3 baths,3 Toilets +A Modern 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex + 2rooms Bq For Sale!!!,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Automated 6 Bedroom Penthouse Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,7 Toilets +4bedroom Terrace Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Classy 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely Built 5 Bedrooms Fully Detached Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sparkling 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4bedroom Terrace Houses,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful & Contemporary 5 Bed Detached Masterpiece,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Well Finished Luxury Home In A Very Secured Serene Estate,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Terrace At Chevyview With Bush Bar And Gym,Idado Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Terrace Home,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House With Bq & Swimming Pool, Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +7 Bedrooms Luxurious House On 3 Floors Including 2bedrooms Penthouse +1bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,8 baths,8 Toilets +3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Detached House With A Bq,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq*,Idado Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached House,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Lekki Lagos Nigeria. Lekki Phase 1 Lekki Lagos,₦,"420,000,000",1,1,0,5 beds,6 baths,6 Toilets +Massive 4bedroom Terrace Duplex With Separat Gate,Idado Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets +Executive 5bedroom Semi Detached Duplex,Cowrie Creeks Estate Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Fully Detached House, With Swimming Pool, Cinema And Open Roof Terrace",Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +Four Bedroom Semi Detached With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +Smart 2 Bedroom Flat,Orchid Chevron Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +This Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +1bedroom & 2bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massive 4 Bedroom Fully Serviced Semi Detached Duplex,Jakande Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +Smart 1 Bedroom Flat,Orchid Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Furnished 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Built 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury Built And Beautiful Finished 4bedroom Semi Detached At Vgc,Victoria Garden Citu Vgc Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Beautiful 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Super Gorgeous 5 Bedroom Contemporary Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Very Spacious 4bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"77,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxuriously Built 5 Bedroom Duplex In A Serene Estate,Jora Estate Agungi Lekki Lagos,₦,"150,005,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Nicely Built 4 Bedroom Terrace Duplex Location: By Vgc, Ikota",Romax Homes Just By Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex House With A Bq,Bera Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury Finished 4bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 3bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Contemporary Terrace House And A Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"5,500,000",1,1,0,3 beds,4 baths,4 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Luxury 4 Bedroom Fully Detached Duplex With A Bq,",Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Townhouse Duplex With Bq In A Serene Secured Estate Environment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedrooms Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fenced Land Measuring 1310sqm,Rightside Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Fully Furnished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedrooms Flat,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets +3bedroom Flat,"Chevron Drive, Chevron Lekki Chevron Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex For Sale In A Fully Serviced Estate,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Extral Beautiful And Spacious 5bedroom Duplex 5 Car Park Space On 2floors,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"445,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House Consisting 2 Living Rooms 1 Bq,Lake View Estate Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets +New 4bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Pent House With Sea View Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House With Boy's Quarter,Idado Estate Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegant 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Plus Bq,"Orchid Road, Victoria Crest 2 Lekki Phase 2 Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Mind Blowing 5 Bedroom Fully Detached Duplex With Bq And Very Spacious Pent House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"515,000,000",1,1,0,5 beds,6 baths,6 Toilets +Magnificent 5 Bedroom Ensuite Detached Duplex,Jakande Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,"Harris Drive, Close To Heyden Filling Station Vgc Ikota Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,3 baths,3 Toilets +10 Units Of 2bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets +Beautifully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"118,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 2 Bedroom Apartment,Lekki Conservation Road Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinemas,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonettes,Off Plan Sales Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets +Spacious 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Newly Built 4 Bedroom Semi Detached Duplex .,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached House With Swimming Pool,Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex,"Lekki County, Megamound Estate Ikota Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Very Spacious 5 Bedroom Fully Detached With Bq* In A Gated Estate,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"195,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths,6 Toilets +"This Newly Built,spacious 4bedrooms Semi Detached Duplex With Bq & Is Currently In The Market",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4bedroom Fully Detached House With A Bq !!!,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Home,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Fully Automated 5 Bedroom Duplex With Pool, Gym & In House Cinema",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +Jaw Dropping 2 Floor Duplex 5 Bedroom Semi Detached Duplex,"Megamound Estate, Lekki County Ikota Lekki Lagos",₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary Fully Furnished Four Bedroom Fully Detached Duplex With Allot Of Facilities,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Most Beautiful 3 Bedroom Terrace With Swimming Pool,"Orchid, Victoria Bay Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Home For Sale,Orchid Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Spacious 4 Bedroom Duplex,Orchid Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Furnished 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Bera Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Stunning 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"445,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +Units 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets +2 & 3 Bedroom Masionette Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"58,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massive Waterview 5 Bedroom Fully Detached Duplex,Calton Gate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +Extral Luxury And Spacious 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets +Twinlakes Lakefront Plot Of Land,Chevron Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Brand New Spacious 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Executive And Most Spacious 5 Bedroom Duplex With Swimming Pool, Can Take Up To 10cars","Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedrooms Semi Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Furnished Luxury 5bedroom Fully Detatched With A Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Seriviced 4 Bedroom Semi Detached Duplex With Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 5bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Waterfront Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",1,0,0,0 beds,0 baths,0 Toilets +"3,150sqm Land",Lekki Epe Expressway Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ocean Pavilion Estate Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 2 And 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Massive 4bedroom Fully Detached Duplex,"Harris Drive, Heyden Filling Station, Adjacent Vgc Ikota Lekki Lagos",₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets +Nicely Finished 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +This Luxurious Finished 4 Bedroom Semi Detached Duplex And Mini Flat Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"4 Bedroom Fully Detached Duplex With Swimming Pool, Private Cinema, Gym And A Room Bq",Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Modern Jumbo 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Contemporary Terrace House And A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With A Bq,Right Inside Vgc Estate Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,7 baths,7 Toilets +Luxurious 5bedroom Duplex Fully Detached,Agungi Lekki Agungi Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedrooms Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Adjacent Vgc,Harris Drive Adjacent Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets +Most Spacious 5bedroom Fully Detached You Would Ever See,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq With Cinema And Gym,Megamound Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Office Complex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,5 beds, baths,6 Toilets +Purpose Built Shopping Plaza,Goshen Drive Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House With Large Compound Space,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 & 3 Bedroom Apartment With A Boys Quarter,Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +4bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"158,000,000",1,1,0,4 beds,5 baths,5 Toilets +Scintillating 4bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Furnished Apartment,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Brand New Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace House For Sale,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Spacious And Well Finished 5 Bedroom Fully Detached Duplex With A Fitted Kitchen., Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Home,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +500sqm Land*,Bogije Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Brand New 5bedroom Fully Detached House With A Bq, Swimming Pool And A Lake View!!",Lake View Estate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificent 5bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Serviced 3 Bedroom Apartment With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached Home For Sale,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached And Fully Furnished With All Furnitures,Megamound Estate Right Inside Lekki County Ikota Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"300,000,009",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex Penthouse,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Townhouse Duplex With Bq In A Serene Secured Estate Environment For Sale !!!,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Penthouse + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Semi Detached,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming For Sale ??,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Fully Detached House With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets +1307sqm Land,"Block 134 Plot 10, Off Oriwu Street (by Petrocam) Lekki Phase 1 Lekki Lagos",₦,"360,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached With Bq,S Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Very Close To Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisite 4 Bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds, baths, Toilets +Executively Finished 5bedroom Duplex In A Fully Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex And A Room Bq .,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 4 Bedroom Maisonette ,gym And A Room Bq Is Located In A Serene And Secured Estate",Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"7,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets +"For Sale!!! Serviced 4 Bedroom Terrace Duplex, With Swimming Pool, Gym, Children Play Ground",Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Contemporary Design Fully Detached With Bq,Lekki County Megamound Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +"5 Bedroom Duplex With All Furnitures In A Serviced Estate, Call To Enter Estate",Lekki County Ikota Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets +Very Spacious 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary Massive 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,6 Toilets +3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,1,3 beds,4 baths,4 Toilets +Contemporary Built 4bedroom Semi Detached Duplex With Solar In A Fully Secured Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Grand 4 Bedroom Semi Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,6 baths,0 Toilets +Massive 4 Bedroom Fully Serviced Semi Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +Serviced 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment (without Furniture),Lekki Conservation Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,"Chevron Drive, Bera Estate Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets +"The Most Spacious 4 Bedroom Semi Detached Duplex In The Whole Of Chevron Toll Gate, With 247 Electricity And Water, Just Few Units Left",Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Furnished 3 Bedroom Apartment,Spal Road Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built Beautifully *4 Bedroom + Bq Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4bedroom Semi Detached Duplex With A Bq !!!,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedroom Fully Detached Detached,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +5bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious & Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Ikota Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,0 Toilets +4bedroom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Maisonettes,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,Mega Mound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Swimming Pool,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +This Lovely 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Furnished 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,"Lekki Conservation, Chevron Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Freshly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Harris Drive Beside Vgc Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Pent House Duplex,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,2nd Toll Gate Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With A Boys Quarter,Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,7 baths,7 Toilets +Executive 5bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Self Compound,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Fully Furnished 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +1bedroom Flat,Right Inside Chevron Chevron Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,2 baths,3 Toilets +Contemporary 5 Bedroom White House With Swimming Pool / Mini Bar ...,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Nicely Built 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq , Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Serviced 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 5bedrooms Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex,Bera Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Deluxe 3 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets +6bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,6 Toilets +Two Units Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Four Bedroom Smart Home Terrace,Marwa Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,6 Toilets +1000sqm Land,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom House With Large Living Spaces And Excellent Finish,Vgc Estate Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Full Furnishers Nd Luxury Chairs And Fittings,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Home,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,"Orchid, 2nd Toll Gate Chevron Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +"5bedrooms Fully Detached Duplex. Within Al Gated Estate, Orchid Lekki L",Orchid Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +3bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Fully Detached Duplex With 2 Rooms Bq,"Lekki County, Megamound Ikota Lekki Lagos",₦,"130,000,000",0,1,0,6 beds,7 baths,7 Toilets +Brand New 4bedroom Fully Detached House With A Bq,Chervon Toll Gate Orchid Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Spacious 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Bq !!!,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With B.q On A Full Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Two Units Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Built 5 Bedrooms Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built And Fully Serviced 4bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury Units Of 4 Bedroom Terrace Duplex,Oniru Side Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +This Estates Boasts Of The Most Spacious Rooms And Also A 247 Electricity With Lovely Flowers,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Masionette With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment For Sale,Lake View Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq And Rooftop Lounge Is Available,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,"Chevron To Gate, Orchir Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Ensuite Terrace House,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached At 2nd Toll Gate,Just Beside Oral Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq And Acs,Chevron Drive Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Detached House With Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Carcass Property,Ikate Lekki Lagos,₦,"42,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedroom Apartment With A Room Bq,"Off Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment With A Room Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment With A Bq Under Construction,"Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment With A Room Bq,"Ebun Babalola Close Off Freedom Way, Ikate Lekki Lagos",₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment With A Bq Under Construction,"Close To Primewater On Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,"Monastery Road, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 2 Bedroom Apartment With A Room Bq,"Off Gbangbala Road, Ikate Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets +Service 3 Bedroom Furnished Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,0,0,3 beds,3 baths,4 Toilets +Water Front Land,Maiyegun Beach Estate Eko Atlantic City Jakande Lekki Lagos,₦,"132,000,000",1,0,0, beds, baths, Toilets +Luxury 4bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"85,000,000",1,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",1,0,0,5 beds,0 baths,0 Toilets +Land 4537.078 Sq Mtrs,"Proximity To Chevron, Alpha Beach,suitable For School, Hotel, Hospital, Event Center,less Than 1minutes Away From Lekki Epe Express Way. Idado Lekki Lagos",₦,"950,000,000",1,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette For Sale At Camberwell Advantage 3,"Camberwall Advantage 3, Located At Kusenla Road, Off Gbangbala Street, Ikate, Off Freedom Way, Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New Charming 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Block Of Flats,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Maisonette,"Camberwall Advantage 3 & 4 Ikate Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,1,0,3 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With Fully Fitted Kitchen,Ikate Ikate Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex On 800m² Land,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"330,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House \,Megamound Estate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built Superb 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Units Of Semi Detached 3 Bedroom Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,5 Toilets +Lovely Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Exquisitely Built Fully Furnished 5 Bedroom Duplex (fully Furnished With Luxury Funiture & Fittings; 11 Acs In All Livable Spaces, Gym And Many More)","Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Spacious Super Luxury 4 Bedroom Massionette House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,5 Toilets +"10 Hectares Of Dry, Waterfront Land",Ikate Lekki Lagos,₦,"14,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"480,000,000",1,1,0,6 beds,6 baths,7 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,Lekki County Homes (megamound Estate) Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Duplex For Sale,Off Kusenla Ikate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terraced Duplex With Ample Parking Space,Chevron Lekki Lagos,₦,"4,000,000/year",1,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Masionette With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Penthouse Apartment,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"145,000,000",1,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex;,Off Orchid Road By Lekki 2nd Toll Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 3 & 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely Prime Plot Of Land Measuring 692sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"111,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",1,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 2 & 1 Bedroom Penthouse Apartment,Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Fantastic 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,5 Toilets +Well Maintained 5 Bedroom Detached House,"Directly Facing Admiralty Road, Lekki Phase1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely Crafted Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Strategically Located 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Detached House + 1 Room Bq,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Upscale 4 Bedroom Terraced Duplex With Swimming Area,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Designed 5 Bedroom Detached House Brand With A Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Premium & Contemporary 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"188,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Eleganza Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 30 Units Of Terrace Duplex,"Ikota, Lekki, Lagos. Ikota Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Victory Park Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,7 Toilets +Exquisite 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New And Superb 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 4bedrooms Semi Detached Duplex + 1 Room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fenced Vacant Plot 3100 Square Meters Facing Mega Chicken Lekki,Lekki/epe Expressway Ikota Lekki Lagos,₦,"750,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedrooms Flat For Sale,Off Alpha Beach Road (new Road) Igbo Efon Lekki Lagos,₦,"16,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land Measuring 600m² & 800m² Respectively,"Lakeview Park 1 Estate Opposite Ikota Shopping Complex, Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms Detached House,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds, baths, Toilets +"Contemporary, Luxurious 5 Bedroom Detached House",Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,7 Toilets +A Fenced Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",1,1,1,1 beds,1 baths,2 Toilets +Spacious 5 Bedroom Detached Duplex With Ample Parking Space,Pinnock Beach Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment Off Plan,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 5bedrooms Detached House + 1 Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex Terrace And Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets +Furnished 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Flat With Swimming Area,Ikate Lekki Lagos,₦,"55,000,000/year",0,0,1,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"89,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Super Spacious Exquistely Duplex In A Prime Location. Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Alternative Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 4 Bedroom Terraced Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Penthouse Maisonette,Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom + Bq (penthouse) At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury And Spacious 5 Bedroom Detached,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Terrace Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom + Bq (penthouse) At The Camberwall Advantage 1,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Quality Interior,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Fully Detached Home In A Serene Neighbourhood,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +Premium 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Boys Quarter,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Staff Quarters;,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Charming 4 Bedroom Semi Detached Duplex With Bq At Osapa,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets +Cornerpiece Land Measuring 817m²,"Nicon Town Estate, Ilasan Lekki Lagos",₦,"340,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Contemporary 5 Bedroom Detached Duplex With Bq,Lekky County Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Built 4 Bedroom Terrace Duplex With Pool,Chevron Tollgate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious Four Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bbedroom Detached House With A Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Massionatte +bq At The Camberwall Advantage 2,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Alluring 5 Bedroom Virtual Detached Duplex,Megamound Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 3 Bedroom Apartment With Ample Parking Space,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Superb 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Fully 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,6 Toilets +Magnificent 2 Units Of 4 Bedroom Semi Detached Houses,Carlton Gate Estate Lekki Lagos,₦,"350,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Harris Drive Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Wing Of 4 Bedrooms Semi Detached House (newly Built),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,0 Toilets +Luxury 4 Bedroom Detached House,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Classic Super Luxury Fully Serviced 4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious Luxury 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Top Notch 2 Bedroom Apartment,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +Quality 5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment*,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,0 Toilets +Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Apartment*,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Cowrie Creek Estate, Off Spar Road Ikate Lekki Lagos",₦,"400,000,000",1,1,0,5 beds,6 baths,7 Toilets +2 Bedroom Ensuite Flat + 1 Room Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 2bedroom Serviced Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 3 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"42,000,000",1,1,0,3 beds,3 baths,4 Toilets +Semi Furnished 4 Bedroom Terraced Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex With A Room Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +"The Deal: Full Service, High Rental Duplex",Osapa Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Showcasing Incredible Spaciousness And Quality Finishes,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +956sqm Land,"Twin Lakes Estate, Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Semi Detached House With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious & Affordable 2bedroom Apartment Available,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Tastefully Furnished 2 Bedroom Fully Serviced Apartment Available,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,2 Toilets +"6 Bedrooms Mansion House With 2 Rooms Bq,",Zone B Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,6 beds,7 baths,7 Toilets +4 Units Of 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Flat,Pinnock Beach Estate Jakande Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Fully Detached House Of Twin Duplex (5 Bedroom & 4bedroom Duplex) With Bq.,"Off Orchid Road, Ikota Lekki Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Terrace House.,Ikotavilla Area Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 5 Bedroom Fully Detached House + Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced Plot Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxurious 5 Bedroom Smart House In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Fully Furnished Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Terrace Duplex For With Private Compound For Sale.,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom With Maids Room Town House,Imperial City Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Detached Duplex For Sale,Lekki Conservative 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Lovely 4 Bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex For Sale,Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Service 4 Bedroom Terrace Duplex With Bq And Pent Top At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets +This Lovely 4bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Lovely 4bedroom Terrace Duplex Is Located In A Serene And Secured Estate,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1 & 2bedroom Apartment For Sale, Suitabe For Shortlet",Ikate Lekki Lagos,₦,"52,000,000",0,1,0,2 beds,2 baths,3 Toilets +This Lovely 4bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +"1 & 2bedroom Apartment For Sale, Suitabe For Shortlet",Ikota Lekki Lagos,₦,"52,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Terrace Duplex For With Private Compound For Sale.,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale???? Fully Serviced 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale???? 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Lovely 4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +This Lovely 4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,"Lekki Foreshore, Lekki Phase 1 Lekki Lagos",₦,"330,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 600m²,"Lakeview Park 2, Off Orchid Hotel Road, Ikota Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 3 Bedroom Flat With 24hrs Power,"Western Foreshore Estate, Behind Circle Mall, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +7 Bedroom Detached Duplex Suitable For Commercial Use,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets +4 Bedroom Fully Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Right Side Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace,Orchid Area Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace,Orchid Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds, baths, Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds, baths, Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Open Terrace And Bq",Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary Luxury 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets +2bedrooms Apartment,Off Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom Edifice With Swimming Pool And Open Terrace,Megamound Ikota Lekki Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"93,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Executive 5 Bedroom Detached Duplex With Swimming Pool, Gym, Cinema And Bq",Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Massive 4 Bedroom Terrace Duplex With Swimming Pool, Gym",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Cinema,2nd Toll Gate Chevron Lekki Lagos,₦,"235,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Apartment With Swimming Pool,Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful Serviced 3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Flat,"Oniru, Lekki Lekki Lagos",₦,"360,000,000",0,0,0,4 beds,0 baths,0 Toilets +Massive 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Agungi/osapa London Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisite 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And 2 Rooms Bq",Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Contemporary Automated 5 Detached Duplex With Swimming Pool, Cinema, Gym And 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"368,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terraces Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Contemporary Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And 2 Rooms Bq",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq Cinema",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"425,000,000",1,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious Finished 5 Bedroom Detached Duplex With Bq,Lekki County Home Ikota Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Apartment With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Well Furnished 4 Bedroom Terrace Duplex.,Chevy View Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"143,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Serviced 4 Bedroom Semi Detached Duplex With Swimming Pool, Gym And Bq",Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym Area And Bq",2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terraced Duplex,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ologolo Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Pinnock Beach Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fenced And Sand Filled Land In A Safe Environment. Title. Governors Consent,Along Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"66,000,000",1,0,0, beds, baths, Toilets +Well Furnished And Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex,"2nd Toll Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"133,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym And 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"348,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +Well Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"55,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex With Gym And Bq,Idado Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Opposite Chevron Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exclusive 5 Bedroom Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Capacious 4 Bedroom Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Detached Duplex With Swimming Pool And Bq,Agungi Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Luxury 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema And Bq",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym And Bq",Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets +Excellently Built 6 Bedroomfully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With A Bq,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,0 baths,0 Toilets +Semi Detached 4 Bedroom Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets +Beautifully 5bedroom Detached Home,Berra Chevron Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat Apartment,Off Hakeem Dickson Road Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,"Elegushi Itedo, Off Freedomway Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,2,3 Bedroom Apartment",Second Tool Gate Ikota Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House,Lekki Lagos,₦,"235,000,000",1,1,1,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful Finished 5bedroom Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartments With Elevator,Chisco Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,0 beds,0 baths,0 Toilets +Brand New And Luxury 5 Bedrooms Duplex,"Osapa London, Lekki Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Home,Idado Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 6 Bedroom Home With 2 Bqs,Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets +Decently Built 4 Bedroom Detached,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built 2bedroom,3bedroom And 4bedroom Flat","4 Lekki Epe Express Way Intersection, Adjacent Enyo Fuel Station Behind New Sofia Bedmate Lekki Show Road, Ikate Lekki Lagos",₦,"90,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +Detached House In A Good Location,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Two Bedroom Terrace Apartment,Orchid Area Very Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +Lovely 2 Bedroom Apartment,Elegushi Ikate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +Cosy 5 Bed + 3 Sitting + Bq @ N235m,Chevron Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury Exquisite Newly Built 4 Bedroom Terraced Duplex Plus A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,"Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"87,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"60,000,000/year",0,0,0,4 beds,5 baths,5 Toilets +Luxury Newly Built All En Suite 4 Bedrooms With Boys Quarter,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,6 Toilets +Brand New 3bedrooms Flat Ensuite,"Oceanbay Estate, Off Orchid Road. Ikota Lekki Lagos",₦,"48,600,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Acadia Groove Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Ikota Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Ikota Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 3 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +650sqm Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Flat,Orchid Road Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 3bedroom Serviced Apartments Waterfront,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Terrace With Bq,Off Gbamgbala Ikate Lekki Lagos,₦,"105,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Bareland Measuring 650sqmt,Orange Island Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Room Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Townhouse With Large Garden And Integrated Boys Quarter,Kusenla Road Yetville Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House,Eletu Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,5 baths,4 Toilets +Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4bedroom Terrace Duplex,Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 4bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,7 Toilets +Newly Built 3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,"Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"98,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Build 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Terraced Duplex Worth Bq,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +500sqm Of Land,Ologolo Aro Town Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dapper 5 Bedrooms Detached Duplex With Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 9 Bedrooms Detached Duplex With Swimming Pool,Nicon Town Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,1,0,9 beds,9 baths,10 Toilets +"Executive 4 Bedroom Duplex, Lekki Penisula Phase 2",Lekki Penisula Estate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex Tastefully Finished With Modern Facilities,Experience The Beauty Of Life In Cluster 1 Residences Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached With Bq,Carlton Gate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 2 Bedroom Flat,Salem Ikate Ikate Lekki Lagos,₦,"57,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,"Royal Garden Estate, Ajah Lekki Phase 2 Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exceptionally Finished Luxury 4bedroom Terrace Duplex Newly Built In A Standard And Serviced Estate,Ikota Villa Estate Lekki Phase 2 Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace Duplex With Good Ambient And Mini Estate,Ajah Ilaje Lagos Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Completed 4 Bedroom Terrace Duplex,Paradise Estate 2 Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Massive Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Excellent Finishes,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Finished And Serviced Semi Detached Duplex Plus Bq,"Plot 32b Block 77 Victoria Street, Lekki Phase 1 Lekki Lagos",$,"300,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Fully Detached 5 Bedrooms Plus A Room Bq For Sale,Agungi Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool And A Room Bq,Elegushi Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Penthouse Apartment,"Behind Onike Ark Gallery, Ikate Lekki Lagos",₦,"85,000,000",0,1,0,2 beds,2 baths,2 Toilets +Beautiful Terraced 4 Bedroom House,Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Newly Built Luxury Finished 4 Bedroom Terrace Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Cool 4 Bedroom Semi Detached With Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Excellent 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +800.698sqms Of Dry Land,On Spar Road Ikate Lekki Lagos,₦,"270,000,000",1,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 1 Bedroom Apartments,Along Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,1 beds,1 baths,2 Toilets +Serviced Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Duplex,Megamound Ikota Lekki Lagos,₦,"280,000,000",1,1,1,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary Automated 6 Bedroom Detached Duplex With 2 Rooms Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"129,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Wings Of 5 Bedroom Semi Detached Duplex With Bq,"Ologolo, Lekki Lagos Ologolo Lekki Lagos",₦,"140,000,000",0,1,0,6 beds,6 baths,7 Toilets +Serviced 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +2bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury Furnished Detached 6bedrooms Furnished Detached Duplex With Swimming Pool + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury And Detached 4bedroom House + 1 Room Bq,Ikota Villa Estate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 2 Bedroom Shortlet Apartment For Sale,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Lekki Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,3 Toilets +Contemporary 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 5 Bedroom Detached,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Automated 5 Bedroom Contemporary Detached Duplex With Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Urnished 5 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious And Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Luxury Mansion,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terraced Duplexes,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Apartment With Pool & Gym,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +3bedroom Apartment With Bq,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets +Sharply Looking 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Fully 3bedroom Flat,Off Admiraty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,"Ocean Palms Estate Scheme 3, Gbangbala Street, Ikate Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Fully Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 10 Bedroom Plus 4 Parlour Duplex,In A Gated Estate By Marwa Busstop Second Roundabout Lekki Phase 1 Lekki Lagos,₦,"510,000,000",0,1,0,10 beds,10 baths,10 Toilets +Luxury 3 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,V.g.c Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedom Way Lekki Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Lekki Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Royal Garden Estate Lekki Lagos,₦,"110,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,0,1,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,African Lane Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Off Orchid Rd, Near Chevron Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +10 Plots Of Land,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 And 5 Semi And Fully Detached Duplex,Spar Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets +500 Square Meters Virgin Land,Pinnock Beach Estate Osapa Jakande Jakande Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ilasan Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,0 baths,0 Toilets +A Lovely 2 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 4bedroom Terraced Duplex,"Paradis 2 Estate, Chevron Alternatives Route Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land Measuring 1200sqm,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Land Measuring 850m²,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Flat,Ilasan Ikate Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,"Lekki County Home, Chevron, Vgc, Oral Estate, Megachicken Ikota Lekki Lagos",₦,"235,000,000",0,0,0,5 beds,5 baths,5 Toilets +Serviced Carcass 4bedroom Mansionatte,Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Finished 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Dry Fenced Land Measuring 120,000m² (12 Hectares )",Lekki Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace With One Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Victoria Garden City (vgc) Lekki* Commercial Zone,Vgc Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Brand New & Luxury 5 Bedroom Detached Duplex Located In A Secured Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Ologolo Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced Spacious 2bedroom Apartment,Megamound Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedrooms Smart Home,"Orchid Road, By Second Toll Gate Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Well Finished 3bedroom Terrace With High End Amenities And Fittings,Lekki Phase 1 Lekki Lagos,₦,"120,000,000/year",0,1,0,3 beds,3 baths,5 Toilets +"Newly Built, Furnished, Tastefully Finished, 4bedroom Detached House With Two Room Boy's Quarters",Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0, beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,"Freedom Way, Dome, Oba Eleguishi Palace Ikate Lekki Lagos",₦,"120,000,000",0,0,0, beds,4 baths,5 Toilets +Great 3bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built And Tastefully Finished Detached 5 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex Good For Hospital/school/hotel/shortlet,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,8 baths,8 Toilets +Spacious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fantastic 7 Bedroom Detached Duplex With 2 Bedroom Penthouse,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,7 beds,7 baths,9 Toilets +Luxury 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious Fully Detached 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Terrace 4 Bedroom With 2 Room Bq,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +800sqm Land In A Private Estate,Nicon Town Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex With A Room Guest Charlett And Swimming Pool And Carport,"Lekki County Homes, Ikota Villa Estate, Ikota Lagos Ikota Lekki Lagos",₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Contemporary Luxury 5 Bedroom Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Oniru Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury Brand New 1 Bedroom Flat,"Idado Estate,lekki Idado Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,1 baths,1 Toilets +Lucrative And Business Viable Shops,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets +A Well Maintained And Serviced 4 Bedroom Apartment With A Bq,"Safe Court Estate, Ikate, Lekki, By Salem / Spar Road Ikate Lekki Lagos",₦,"62,000,000",1,0,0,5 beds,5 baths,6 Toilets +Value Centric 5 Bed Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,1,0 beds,0 baths,0 Toilets +Smart And Luxuriously Finished 2 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxurious 3 Bedroom (furnished & Serviced) Apartment,Spar Road Ikate Lekki Lagos,₦,"68,000,000",1,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds, baths, Toilets +Tasefully Finished 5bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Yekini Elegushi Road Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,"By 2nd Toll Gate, Oral Estate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Fabulous Home In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Semi Detached Houses,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +Luxurious Five Bedroom Duplex And A Bq In Graceland Estate Ajiwe Ajah Jona,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets +Serviced 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex With A Room Bq,"Orchid Road, Eleganza, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace House,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +4units Of Three Bedroom Flat Fully Furnished,Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex In A Serene Neighborhood,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Paradise 2 Extension Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom House,"Property Off New Creation Avenue, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,7 beds,0 baths,0 Toilets +"Luxury, Furnished, Serviced 2 Bedroom Flat",Orchid Road Oral Estate Lekki Lagos,₦,"35,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace In A Serene And Secured Estate,Orchid Road Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 2 And 4bedroom Terrace Duplexes With Bq,"Emcel Estate, Orchid Close To Chevron Tollgate. Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets +Land Measuring 650m²,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Salem Ilasan Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached House With 1 Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex With A Room Bq,Elegushi Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Spg Road Ologolo Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +60 Hectares Choice & Futuristic Waterfront Development Land,"Twin Lakes Estate South Point, Chevron Junction Chevron Lekki Lagos",₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex In A Serene Gated Estate,Tulip Haven Chevron Lekki Lagos,₦,"110,000,000",0,0,1,4 beds, baths, Toilets +800sqm Land In A Private Estate,Carlton Gate Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Exquisite 4 Bedrooms Semi Detached,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,3d Close Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex In Decent Environment,Ilasan Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +1000sqms Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartments/flat,Osapa London Lekki Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +This Exotic 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,"Ikate, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built, Serviced 5bedroom Terraced Duplex With 2 Rooms Boy's Quarters",Off Gbangbala Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +6 New Units Of 5 Bedroom Duplex Houses,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Lovely 2 Bedroom Flat,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive All Rooms En Suite 2 Bedrooms With 24hours Light,Osapa Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets +"4 Bedroom Townhouse In Osapa, Lekk",Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Newly Built 5 Bedrooms Fully Detached Duplex,Street Behind Canada Embassy Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Furnished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Paradise 2 Extension Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 3 Bedrooms Bungalow With Bq,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,6 Toilets +Half Plot Of Land,Off Victoria Arobieke Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Gym Space, Open Terrace And Bq",Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq And Fitted Kitchen,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds, baths, Toilets +900sqm Land,"Victory Park Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex And 2 Bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets +7 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Newly Built, Spacious, Tastefully Finished 5bedroom Detached House",Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 2 Bedroom Terrace With A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,Second Tool Gate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxurious 4 Bedroom Terrace On Orchid Road,"Primrose Court Estate, Orchid Road Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom House,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +6bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built All En Suite 4 Bedrooms With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets +New And Luxury 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury Home In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Units Of 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached House With Boys Quaters,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedrooms Terraces,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Services Apartment,"Pinnock Bach Road, Agungi Agungi Lekki Lagos",₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached House,Nicon Town Estate Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 2 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,3 baths,3 Toilets +2bedroom Flat,Ikate Right Behind Enyo Petrol Station Ikate Lekki Lagos,₦,"45,000,000/year",1,0,0,2 beds,2 baths,3 Toilets +800sqm Land In A Highly Sought After Estate,Cowrie Creek Estate Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +This Lovely 4bedroom Semi Detached Duplex With A Room Bq Is Located In A Secured Mini Estate,Second Tool Gate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +New And Msssive 5bedroom With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +950sqms Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa Jakande Jakande Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land (block 95),Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +500sqm Fenced Land With C Of O,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Of Land,"Admiralty Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Newly Built Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Building With Block Of Flats,Jakande Jakande Lekki Lagos,₦,"800,000,000",1,1,1,10 beds,10 baths,10 Toilets +A Magnificient 2unit Ensuite Mansion,Nicon Town Lekki Lagos,₦,"1,500,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 2 Bedroom Flat,Robert Close Oral Estate Lekki Lagos,₦,"37,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets +Newly Built Spacious 2bedrooms Flat,"Osapa Estate, Opposite Victory Park Osapa London Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 6 Bedroom All Rooms En Suite,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,8 Toilets +"Executive 4bedroom Detached Duplex, At Osapa. London, Lekki",Osapa London Lekki Lagos,₦,"500,000,000/day",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"285,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +3bedroom Flat With 1room 2,Prime Water Garden Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedrooms Detached Duplex Plus 1room Bq,Ivy Homes Esate Off Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 2 Bedroom All Rooms En Suite Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex,Osapa London Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With A Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"Orchid, Lekki Vgc Lekki Lagos",₦,"190,000,000",0,1,0,5 beds, baths, Toilets +6 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Well Maintained 3 Bedroom Flat With 1 Room Bq,Ilasan Lekki Lagos,₦,"60,000,000/day",0,0,0,3 beds,3 baths,4 Toilets +Finished 4bedroom Maisonette,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Massionette,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ochid Lekki Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Duplex With Superb Facilities,"25, Ikota Road, Lekki Phase 2, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,4 baths,6 Toilets +851sqms Of Bareland,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 3 Bedroom Terraced Duplex House With A Self Compound,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Roxbury Estate Vgc Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +Exquisite 5bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,0 Toilets +3 Bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,0 Toilets +Exceptionally Finished Luxury 4bedroom Semi Detached Duplex Ready For Purchase,Ajah Ilaje Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Standard 5 Bedroom Detached Duplex,"40, Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"170,000,000/year",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex.,Lekki County Estate. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Fully Detached Duplex,Idado Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +605.2 Square Meters Land,Exxonmobil Estate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Massive 4bedroom Terrace With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Showy 5 Bedroom Detached Duplex With Swimming Pool,Northern Foreshore Estate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +1008sqms Of Bare Land,"Baderinwa, Alabi Street Lekki Phase 1 Lekki Lagos",₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 4bedroom Terrace Duplex,Oniru Close To U3 Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built (2 Units) 4 Bedroom House In Serene Environment In Ologolo Lekki.,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets +2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Estate Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Semi Detached Duplex With A Room Bq,Brickscourt Estate Close To Orchid Hotel Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Massionette,Lekki Ikate Lekki Lagos,₦,"83,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace House + 1 Room Bq,Platinum Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool Cinema And Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced And Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced Luxury 3 Bedroom Apartmen,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"84,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Smart Home With Bq,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +Fully Serviced 2 Bed Apartment,Second Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Lucky Luxury Gardens, Lekki County Homes, Ikota Lagos Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace House + 1 Room Bq,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedrooms Detached House,Nike Art Gallery Area Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built Serviced 3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Serviced 2 Bedroom Apartment With Swimming Pool, Gym",Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat,Off Kusenla Ikate Lekki Lagos,₦,"60,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"138,000,000",0,1,0, beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Houses,Megamound Estate Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With Adjoining Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite Brand New 4 Bbedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets +Superbly Finished 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,Orchid Ikota Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,5 baths,5 Toilets +"1,2,3,4 Bedroom Apartment",Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +I Bedroom Apartment,Off Freedom Way Lagos Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flat & Terrace,Regional Road Off Freedom Way Lekki Ikate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex,Vgc Regional Road Lekki Vgc Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets +Waterfront Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Behind Onike Ark Gallery Ikate Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets +Tasefully Finished 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 6 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,"Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets +Land,Lekki Pride Estate Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,0 baths,0 Toilets +1290sqm Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Second Tool Gate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Finished 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,1,6 beds,0 baths,0 Toilets +Affordable 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +12 Units Of Block Of Flat,"By Aruna Bus Stop, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,1 beds,1 baths,2 Toilets +Tasefully Finished 3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Chevyview Estate Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 1,002 Square Metres.",Osapa London Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Chuks Onyebuchi Drive Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Serviced Flats.,Off Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,0 baths,0 Toilets +Land,Ilasan Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom All Rooms En Suite Massionette Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Victoria Bay 3 Estate Nike Art Gallery Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Lagos Business School, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,"Chevron, Lekki Conservation, Lagos Business School, Chevron Lekki Lagos",₦,"69,000,000",0,1,0, beds, baths, Toilets +Shop Space,Igbo Efon Lekki Lagos,₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets +A Spacious 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedrooms Apartment With Bq,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached House,Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Parcel Of Land Measuring 1438.264sq.mts,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets +Spacious 2 Bedroom Apartment,"Ocean Palms Estate Scheme 1, Meadow Hall Way, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Four Bedroom Fully Detached Duplex With Bq,Orchid Road Lekki Chevron Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built Detached House In A Private Estate,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Fully Detached With Bq,"Ikota Gra, Ikota Villa, By Mega Chicken Ikota Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Tastefully Finished Fully Serviced 4bedroom Mansionatte,Jakande Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3bedrooms Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,"Osapa, Lekki Lagos Osapa London Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Expressway. Lekki Lagos,₦,"67,500,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Terraced Duplex,Citadel Views Estate Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Exp. Lagos Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With A Bq,Lekki Lagos,₦,"55,000,000",1,0,1,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super 5 Bedroom Terrace With Bq,Close To Circle Mall Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tasefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Beautiful 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary Luxury 5bedrooms Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Serviced Flat,"Eleganza, Orchid, Vgc, Chevron Chevron Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,3 baths,4 Toilets +3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedrooms Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished Luxury 3bedrooms,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovey Newly Built 4 Bedroom Semi Detached House At Coworkers Creek For Sale,Cowrie Creek Estate. Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds, baths,5 Toilets +2 Bedroom Apartment,"Ilasan, Monarch, Oba Eleguishi, Jakande Ilasan Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Numberss Of 2bedroom Flats + A 2numbers Of Mini Flats,Awoyaya Lekki Peninsula Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets +650 Square Meters Of Land,"Orange Island, Lekki Phase 1 Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom Flat With Bq,Nicon Town Ikate Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets +Decently Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tasefully Finished 4 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached,Close To Mega Chicken Ikota Lekki Lagos,₦,"60,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +5bedrooms Smart Duplex With Penthouse,Orchid Road Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Two Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +A 4 Bedroom Terrace,"Kusenla Road, Ikate, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom All Rooms En Suite Semi Detached Duplex Plus A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Spacious 3bedroom Flat With Bq,Chevron Alternative Drive Lekki Phase 2 Lekki Lagos,₦,"45,000/year",1,0,0,3 beds,3 baths,4 Toilets +4bedroom Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"60,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +100 Plots Of Land,Vgc Lekki Lagos,₦,"7,200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrce Duplex,Igbo Efon Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex + 1 Room Bq,Ikate Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +669sqm Land,Lekki County Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,3 Toilets +Brand New 5bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built, Tastefully Finished, 4bedroom Block Of Flats",Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Well Maintained, Spacious, 4bedroom Terraced Duplex, Serviced With 24hrs Power",Chevron Lekki Lagos,₦,"55,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Duplex, Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury Newly Built All Rooms En Suite 4 Bedrooms With Boys Quarter,Ikate Gra Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Built 4bedroom Fully Detached Luxury Duplex With Bq In A Serene Neighbourhood,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Luxury 2 Bedroom Apartment With Swimming Pool, Gym And Bq",Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets +Ultra Modern 4 Bedroom Fully Detached Duplex,Sangotedo Lekki Lagos,₦,"86,000,000",1,1,1,0 beds,0 baths,0 Toilets +Land,Beach Resort Estate Near Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +1150m2 Land (price Per Sqm),Saheed Adelekan Close Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,0 baths,0 Toilets +Brand New Luxurious 4bedroom With Bq And Swimming Pool.,Lakeview Estate Off Orchid Road Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,"Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fashionable 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex + 1 Room Bq,Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,But Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Value Centric 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built Luxury 3 Bedroom Flat With Bq,Ikate Elegunshi Ikate Lekki Lagos,₦,"78,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bed Semi Detached With 2 Room Bq,Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom (furnished And Serviced) Apartment,Kusenla Road Ikate Lekki Lagos,₦,"68,000,000/year",1,0,1,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Duplex With 2bedroom Bq,S Chevron Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets +Offplan Luxury 2bedroom Flat,Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,3 Toilets +Shops,Admiralty Road Off Admiralty Way Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semidetached Duplex + Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached Duplex With A Pool & Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Vacant Plot Of Land At Nicon Town, Lekki,",Nicon Town Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Land,"Atlantic View Estate, Alpha Beach Road Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Detached House In A Good Location,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,5 Toilets +A Waterfront Ocean View Detached 5 Bedroom Duplex With B/q,"Goshen Beach Estate,lekki Abuja. Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5bedroom Fully Detached Duplex House With A Bq Jnf,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,8 Toilets +24rooms Commercial Property In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Fully Detached,"Buenevista Estate, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Big Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,"Orchid, Lekki Phase 2, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +8 Bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,8 beds,8 baths,9 Toilets +Luxury 4bedroom Terrace Duplex Off Plan,"Patheon Smart Terrace, Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Contemporary 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets +Luxury 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Magnificent 4 Bedroom Detached Duplex: Lekki Phase 1, Lekki Lagos Jnf",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,7 Toilets +7777 Square Meters Of Land,Second Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +2bedrooms Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Inside Vgc Estate Vgc Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Astonishingly Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,"Lekki Phase 1, Lagos State Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,"Vgc, Ikota Shopping Complex, Lekki Conservation Centre, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,4 baths,4 Toilets +Modern 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1050m²,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of Semi Detached Duplexes,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Well Maintained, Tastefully Built, Spacious Studio Apartment",Chevron Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,1 Toilets +Well Maintained Fully Detached 4 Bedroom Duplex With A Room Bq,Igbo Efon Lekki Lagos,₦,"60,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Finished 4bedroom Semi Detached,Eletu Osapa London Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plot Of Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Serene Environment,"By Second Toll Gate, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"100,000,000/year",0,1,0,0 beds,5 baths,5 Toilets +Land,Facing Lekki Epe Expressway Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built One Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +2 Bedroom Flat,Ilasan Lekki Lagos,₦,"40,000,000",0,1,1,2 beds,2 baths,3 Toilets +Land Measuring 1388sqms,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets +Newly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Lekki Conservation Chevron Lekki Lagos,₦,"82,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary Luxury 6 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"480,000,000",1,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Terrace House + 1 Room Bq,Chevron Drive Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decent 4 Bedrooms Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"148,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +"1,2,3bedroom Apartment Penthouse",Chevron Mall Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"110,000,000",1,1,0, beds, baths, Toilets +Furnished 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Chevron Corporative Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached House + 1 Room Bq,Off Alternative Route Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +3 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom With Bq,Ikate Elegushi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Furnished 2 Bedrooms Apartment,Chevron Drive Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +Beautiful 4 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Fully Serviced Apartment,Freedom Way Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Luxury 5 Bedroom Detached Smart Home With Swimming Pool, Cinema And Bq",Ikate Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached House Plus 1 Room Bq,Off Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +School For Sale,65 Ajiran Road Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0,10 beds,1 baths,9 Toilets +Beautiful 4 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex In A Secured Estate,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Beautiful Brand New Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Palatial Home With A Pool And A Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land For Joint Venture,Lekki Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,1 Toilets +Elegant 3 Bedroom Terrace House,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,6 baths,6 Toilets +Classic 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached,Jazz 38 Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +650sqm Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wing Of 4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Pent House,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built 5bedroom Fully Detached Duplex,Rd 5 Beuna Vista Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace,Salem Ilasan Lekki Lagos,₦,"65,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Beautiful Paradise Newly Built All Rooms En Suite 5 Bedrooms With Boys Quarter And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets +Exquisite Newly Built 5bedroom Detached House With Servant Quarters,Northern Foreshore Estate Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With Bq,Dillon Agungi Lekki Lagos,₦,"42,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +2bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds, baths, Toilets +600 Square Meters Virgin Land,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cambridge Row Luxury Four Bedroom Maisonette,"Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,"Megamound, Lekky County Ikota Lekki Lagos",₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +5bedrooms Luxury Smart Home,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Luxury Furnish Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +1bedrooms Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets +5 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Mansion,Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Smart Home,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Wings Of Semi Detached 4 Bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tasefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Tastefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fresh 4 Bedroom Fully Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,"Ikota, Lekki Lagos. Ikota Lekki Lagos",₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Contemporary 3 Bedroom With Bq,Atlantis 2 Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary 4 Bedroom Duplex.,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,"Lekki Phase 1,lagos Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Abraham Adesanya Round About Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellently Built 4 Bedroom Townhouse With Bq,Off Mike Adegbite St. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +Fully Detatched 5 Bedroom Duplex,Off Bisola Durosimi Drive Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,5 beds, baths, Toilets +6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,0,1,6 beds,6 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment With Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Smartterrace,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +"4 Flats, 2 Units Of 3 Bedroom Flat",Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,0 baths,0 Toilets +4 Units Of 3bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,3 baths,0 Toilets +4bedroom Newly Built Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,3 baths,3 Toilets +Beautiful Terraced Duplex In A Good Location,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Apartment,Ologolo Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,0 baths,0 Toilets +Land,Off Ladipo Latinwo Street Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets +Spacious Well Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette+bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +Contemporary 6 Bedrooms Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 5bedroom Detached House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,4 Toilets +Lekki Pride Apartment,Beside Royal Garden Estate Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets +New Finished Apartments 1 3 Bedrooms Flat,Lekki Conservation Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets +Exquisitely Finished Brand New Spacious 5 Bedroom Detached Duplex With A Maids Room,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +"19,000sqm Land","Lekki Epe Expressway, Opposite Abraham Adesanya Roundabout Lekki Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 4bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Home,Idadao Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +640sqms Of Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,"Iris Street, Ikota Gra Ikota Villa Estate Ikota Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +Beautiful 5 Bedroom Detached Duplex,By Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bed Waterfront Smart House,Pinnock Beach Estate Jakande Lekki Lagos,₦,"550,000,009",0,1,0,5 beds,5 baths,6 Toilets +6 Plots Of Land (one Acre),By Stonehenge Est. Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terraced Duplex With Bq,Ajah Lekki Scheme 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedrooms Detached House + 1 Room Bq,Off Alternative Route Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +4945sqm Of Land Facing Lekki Express,Between Agungi And Ologolo Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Modern Design 4 Bedroom Town House With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Furnished And Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,"Ikate Elegushi, Lekki Ikate Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Mentamout Estate Ikota Lekki Lagos,₦,"233,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Lekki County Lekki Phase 2 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,0 baths,0 Toilets +6 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bed Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Vgc Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached House + 3rooms Bq,Richmond Estate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful Home In A Highly Sought After Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With A Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds, baths, Toilets +A Well Finished 4bedroom Semi Detached House,Chevron Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"68,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +Elegantly Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Stunning Smart House In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace In A Serene And Secured Estate,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedrooms Terrace House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace Duplex.,"Creek Avenue's Court, Beside Ikota School. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Contemporary Semi Detached House,Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,6 Toilets +3 Bedroom Apartment,"Prime Water Garden 2, Off Freedom Way Ikate Lekki Lagos",₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets +Serviced 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Valuable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,6 Toilets +Luxury 1&2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,4 baths,4 Toilets +Fully Serviced 3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5bedroom Fully Detached Luxury Duplex With Bq,Inside Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,5 Toilets +"Newly Built, 4bedroom Detached House Located In A Serene Environment",Bera Estate Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Fancy 4 Bedroom Semi Detached Duplex,"Orchid, Lekki Phase 2, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"70,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Maisonette,Off Hakeem Dickson Road Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury Paradise Newly Built All Rooms En Suite 4 Bedrooms With Boys Quarter,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,1 Minutes Drive To Epe Express Way Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex House,Idado Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds, baths, Toilets +Luxury 4 Terrace Maisonette.,Emcel Terrace Ikate. Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +Smart And Luxurious 2 Bedroom Apartment,Lekki Conservation Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex In A Secure Estate In Agungi.,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fantastic 5 Bedroom Terrace Duplex In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Robert Close Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Duplex With Bq In A Well Secured Estate,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex In Ikota. Lekk,Ikota Ikota Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Detach House With Bq At Victory Park Estate Lekki For 175m,Victory Park Estate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Km 22 Lekki Epe Expressway Ikota Lekki Lagos,₦,"880,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Apartment With Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,"Lekki Phase 2, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished Fully Furnished 2 Bed Apartment,Ikate Lekki Lagos,₦,"48,000,000",0,0,1,2 beds,2 baths,3 Toilets +1400sqms Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Nottingham Court 1, 2 & 3 Bedroom Maisonettes And Apartments","Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +Tasefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Plot Of Land Measures 600sqmts,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Spacious 4 Bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"930.7sqm Of Land With 6 Units Of 2 Bedroom Bungalow (old House, Demolishable )",Omonire Johnson Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Flat,Kusenla Ikate Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +The Alverton,Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,4 Toilets +Brand New 3 Bedroom Terrace,Road 5 Ikota Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +4 Units Of 3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Cornerpiece Plot Of Land ( 610 Sqm ) At Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Modern 6 Bedroom Detached Houses,Chevyview Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0,6 beds, baths, Toilets +"Special, Well Finished Five Bedroom Duplex With Study , 2 Room Bq And Swimming Pool With Land Size 576.66sqm",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,5 beds, baths, Toilets +Fenced And Gated 2.081 Hectares Of Dry Land,"Vgc Round About, Lekki Epe Epressway, Lekki Lagos Vgc Lekki Lagos",₦,"6,000,000,000",0,0,0, beds, baths, Toilets +Land For Sale On Ogombo Road,"Ogombo Road, By Abraham Adesanya, Ajah Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation Centre, Eleganza, Orchid Hotel Chevron Lekki Lagos",₦,"85,000,000",0,1,0, beds,4 baths,5 Toilets +882sqm Land In Block 68 With Approved Government Title,Block 68 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Home In A Good Location,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,3 baths,5 Toilets +4 Bedroom Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq. Jnf,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Block Of Flat,"Chois Estate After Sangotedo,abijo Gra Lagos. Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets +636sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Fully Serviced,Orchid Road Chevron Lekki Lagos,₦,"33,500,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,"Lekki County, Ikota, Lekki, Lagos Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Smart 5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000/year",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex Instalmental Payment Plan Available,Lafiaji Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 5 Bedrooms Detached Duplex With Swimming Pool,Ologolo Estate Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedrooms Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Grandeur 3 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +1000 Sqms Land,Chris Madueke Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +950sqms Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +970sqms Of Land With A Building,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +1022sqmsll Of Bareland,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"270,000,000",1,1,0,6 beds,6 baths,7 Toilets +Spacious 4 Bedrooms Terrace Duplex With Bq,Oniru Lekki Phase 1 Lekki Lagos,₦,"120,000,009",1,1,0,4 beds,4 baths,5 Toilets +Head Turning 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Juicy Commerical Land,Between Agungi To Igbo Efon Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Semi Detached Mansionate,"Buena Vista, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,500,000",0,0,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 50 Units Of 3bedroom Apartments With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"47,000,000",1,1,1,3 beds,3 baths,4 Toilets +A 2400sqm Beach Front Land,Alpha Beach Resort Idado Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"93,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat,Megamound Ikota Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,4 Toilets +Contemporary Serviced 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 6 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Furnished 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Oceanic View Land,"Behind Enyo Petrol Station Ikate, Ikate Lekki Lagos",₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful Serviced 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths, Toilets +3 Semi Detached Duplexes Smart Homes,Ikota Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached House Plus 1 Room Bq,Off Orchid Hotel Road 2nd Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Great Offer!!! Hotel,Close To The Lekki Epe Expressway Agungi Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +812.713 Sqms Of Middle Land,"On Spar Road, Lekki Ikate Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +712 Sqm Of Land,"Orchid Road, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets +3bedrooms Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Masterpiece With Pool And A Private Cinema,Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Shortlet Classic 3 Bedroom Apartment With Pool & Elevator,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxuriously Furnished 5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,5 baths,6 Toilets +Tasefully Finished 3bedroom Luxury Penthouse,Ikate Lekki Lagos,₦,"88,000,000",0,1,0,3 beds,3 baths,4 Toilets +Stunning New Home With Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Exquisite 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Newly Built 6 Units, 5 Bedroom Terrace Duplexes",Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Four Bedroom Terrace Duplex,Christerbel Garden Estate Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets +Pretty Home In A Serene Environment,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Deplex,Ikota Gra Lekki Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Lekki Palms City Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxurious 2 And 3 Bedroom Maisonettes,"Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets +Perfectly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With Bq,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Agungi Estate Agungi Lekki Lagos,₦,"70,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +Exquisitely 4bedroom Terraced Duplex With Bq,"Oladele Ojogbede, Behind Romney Estate Ikate Lekki Lagos",₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrce Duplex,New Road Before Chevron Drive Igbo Efon Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Serviced Apartment,Osapa London Off Circle Mall Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets +An Hotel Comprises Of 6 Blocks Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bareland Corner Piece Measuring 920sqm,Orange Island Estate Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets +650sqm Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,8 baths,8 Toilets +4bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built All En Suite 2 Bedrooms With 24hours Light,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Detached Duplex With 1room Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace With Bq,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Duplex With 2 Units Of 3 Bedroom Flat.,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,10 beds,0 baths,0 Toilets +"1,2,3,4 Bedroom Apartment",Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Tastefully Furnished 3bedroom Penthouse,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Massive 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikota Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached House,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds, baths, Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Beautifully Built, Tastefully Designed, Bakery.",Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Smart And Luxurious 3 Bedrooms Flat+ Bq (penthouse),Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Lagos Business School, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"Chevron, Lekki Conservation, Orchid, Eleganza Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds, baths,5 Toilets +5bedrooms Smart Home,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,"Megamound Estate, Lekki County Road, Ikota Lekki Lagos",₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +4units Of Three Bedroom Flat,Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land With A Bungalow,"Inside Vgc Estate, Vgc Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Modern Finishes,Ikota Villa Estate Ikota Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Jakande , Monarch, Chevron, Pinnock Beach, Arcadia Estate Osapa London Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,0 baths,5 Toilets +Service 4 Bedroom Terrace With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ayodele Odubiyi, Lekki Right Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Unit Of 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Greatly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautifully Built 3 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace,New Horizon 2 Estate Ikate Lekki Lagos,₦,"80,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Flat,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Spg Road Ologolo Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 5 Bedroom Home,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +150 Plots Of Land,"Oke Ogun, Ibeju Lekki Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Blocks Of 3 Bedroom Flat,Lekki Phrase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Road Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +Furnished 5 Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets +Newly Built Home In A Good Location,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Finished 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +800sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,3 Toilets +Tasefully Finished 3 Bedroom Apartment,Orchid Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Along Orchid Road Very Close To Victoria Crest Iv Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Finished 4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Mufasa Apartment Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Seagate Estate, Off Spar Road Ikate Elegushi Ikate Lekki Lagos",₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 5 Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,4 Toilets +Spacious 5 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets +Classy 2 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Fully Detached With Bq,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,0 baths,0 Toilets +Lovely 5bedroom Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,0 Toilets +Beautifully Designed 2 Bedroom Terrace,"Lafiaji , Orchid Road Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tasefully Finished 4 Bedroom Luxury Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terraces,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5bedroom Duplex With 1 Bq,"Megamond, Lekki County Estate Ikota Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Mansion,In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land,Beach Resort Estate Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 4 Bedroom Luxury Terraced Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached House,Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Alexander Luxury Two Bedroom Apartment,"Ocean Bay Estate, Orchid Road, Chevron, By Second Toll Gate, Lekki. Lekki Phase 1 Lekki Lagos",₦,"36,000,000",0,1,0,2 beds,3 baths,3 Toilets +A Brand New Detached House In A Private Estate,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +550sqm Land,Arcadia Groove Estate Beside Pinnock Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegant 4 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished Luxury 5 Bed Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace House,Ilasan Road Near Ilasan Police Station Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beach Front Land,Z Ilasan Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Units Of 2 Bedroom Flats,Ilasan Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Bq,"Lekki County, Cluster 1 Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex In Idado. Lekki,Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Prime Land,Pinnock Prime Estate Osapa London Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +": Tastefully Finished 4 Bedroom Detached Duplex In Ikota. Lekki, N100million",Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury And Massive 4bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"410,000,000",1,0,0,5 beds,4 baths,5 Toilets +4bedroom Plus Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +1000 Square Meters Virgin Land,Pinnock Beach Estate Jakande Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +870m2 Land (price Per Sqm),Block 52b On Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,"Creek Avenue's Court, Beside Ikota School. Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,2nd Till Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"78,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely 3 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment With A Bq In Idado.,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built, Serviced, 2bedroom Apartment",Ikate Lekki Lagos,₦,"65,000,000/day",1,1,0,2 beds,2 baths,3 Toilets +Luxury Newly Built 1bedroom Maisonette,Behind Novare Shoprite Sangotedo Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,1 beds,1 baths,2 Toilets +Newly Built 2bedroom Apartments,Ologolo Lekki Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,"Block 134 Plot 10, Off Oriwu Street, By Petrocam Service Station, Elf Bus Stop, Lekki Scheme 1 (right Hand), Lagos Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +": Brand New 4 Bedroom Terrace Duplex In Ikate. Lekki, Price Is N85million",Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice 4 Bedrooms Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Carlton Gate Estate Off Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Room And Parlour,Ikate Right Behind Enyo Petrol Station Ikate Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets +Land,"Orchid Hotel Road, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +300m² Of Land,Gra Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Goshen Estate Area, Lekki Phase 1 Lekki Lagos",₦,"350,000/year",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Penthouse,Lekki Lagos,₦,"395,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary Styled 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets +Exquisite Luxury Newly Built 4 Bedroom Semi Detached House Sitting In A Gated And Secured Estate,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Luxury Apartment With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,1, beds, baths, Toilets +5 Bedroom Duplex With 2 Rooms Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached With Pool,Orchid Road / Lake View Estate Oral Estate Lekki Lagos,₦,"165,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ochid Road Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,"Ologolo, Lekki Lagos Ologolo Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,"Chevron, Lekki Conservation Centre, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"78,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,"Chevron, Lekki Conservation, Second Toll Gate Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"80,000,000",0,1,0,0 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Ilasan Lekki Lagos,₦,"40,000,000",0,1,1,2 beds,2 baths,3 Toilets +22 Plots Of Land Facing Shoprite Road,Osapa London Lekki Osapa London Lekki Lagos,₦,"3,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 3 Bedroom Apartment,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House,"No 2 Saint Peters Anglican Church Street, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedrooms Duplex,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,8 baths,9 Toilets +3 Bedroom Flat,Route 14 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Osapa, Lekki, Lagos Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,4 baths,0 Toilets +Furnished Service 2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,3 baths,3 Toilets +Brand New 2 Bedroom With Swimming Pool And Bq,Jakande Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Masterful Edifice In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terraced Duplex In A Serene Environment,Lekki Lagos,₦,"30,000,000/year",0,0,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Duplexin A Secured Estate,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +Super Fully Detached 4 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 3,345m² (corner Piece)",Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,8 baths,10 Toilets +4bedrooms Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +2 Units Of Detached Houses,"Alpha Beach, Opposite Chevron Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,0 baths,0 Toilets +"Newly Built, Serviced 2bedroom Apartment",Ologolo Lekki Lagos,₦,"40,000,000/day",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Mansion,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Plus Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 4 Bedrooms Duplex With 2 Rooms Bq,"Vgc,lekki Vgc Lekki Lagos",₦,"350,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built, Tastefully Finished, Spacious, Beautiful Built 4bedriom Fully Detached House",Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +6bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +6bedrooms Duplex With Swimming,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex,Vgc Regional Road Lekki Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +680.065sqm Land.,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Fully Detached,Peanock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +"Full Furnished, Service 4 Bedroom Terrace",Bloom Court Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex,Northern Foreshore Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 & 5bedroom With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,"Orchid Hotel Road, By 2nd Toll Gate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite Newly Built 4 Bedroom Terrace Duplex,By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Well Maintained, 4 Bedroom Terrace Duplex",Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built (off Plan) 3 Bedroom Apartment,Lekki Pride Estate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,3 baths,4 Toilets +675sqm Land,Inside Vgc Estate Vgc Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex In An Estate In The Vgc Axis,Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,"Chevron, Lekki Conservation, Lagos Business School, Eleganza. Orchid Hotel Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 10 Hectares (waterfront),Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring Two Hectares (5 Acres),Lekki Phase 1 Lekki Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 12,000m²",Lekki Phase 1 Lekki Lagos,₦,"5,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Vgc , Chevron, Eleganza ,ikota Shopping Complex, Mega Chicken Ikota Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Chevy View Jakande Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace With Bq,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With Bq,S.o Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex Ready For Purchase In A Very Secured Environment,"Orchid Hotel Road, Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,3 baths,3 Toilets +2000sqm Of Land,Facing Chevron Express Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Lekki Phase 1 Lekki Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat On Second Floor,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace With A Room Bq,Igbo Efon Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Ensuite 5bedroom Detached Duplex With A Bq At Pinnoock Beach Estate Lekki,"Pinnoock Beach Estate, Osapa London, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Block B, Cowrie Creek Estate Ikate Lekki Lagos",₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,"Orchid Road, By Second Toll Gate Chevron Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Tastefully Finished Miniflat,By Spg Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,0 baths,0 Toilets +Well Maintained 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 3bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,4 baths,3 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Oral Estate Lekki Lagos,₦,"74,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,7 baths,7 Toilets +Newly Built 4bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Second Toll Gate Area, Which Is Chevron Conservation Road Side Ikota Lekki Lagos",₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Fully Furnished 4bedroom Fully Detached Duplex With A Bq,Road 13 House 16a Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,5 beds,6 baths,6 Toilets +A Fully Furnished 4bedroom Fully Detached Duplex With A Bq,Road 13 House 16a Ikota Villa Estate Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,5 beds,6 baths,6 Toilets +Land,Off Freedom Way Behind Cis Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island (block 17) Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Contemporary 5 Bedroom Detached Duplex With Swimming Pool Cinema And Bq,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +Special 5 Bed + 3 Sitting + Bq,Chevron Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ochid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Luxury 5 Bedroom Detached Duplex And 2 Rooms Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fantastic 5 Bedroom Water View Detached House With 2 Rooms Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets +Lovely 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Chevron Lekki Lagos,₦,"170,000,000",1,0,0,5 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Duplex + 2bedroom Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Plot Of Land,"Orchid Road , Lekki Lekki Lagos",₦,"45,000,000",0,0,0,10 beds,0 baths,1 Toilets +3 Bedroom Penthouse ,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service Newly Built 3 Bedroom Mansionette,Off Freedom Way Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Build 4bedroom Semi Detached Duplex,Megamound Ikota Lekki Lagos Ikota Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Beautiful 4 Bedroom Terrace Located In The Heart Of Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraces Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex,Platinum Way Opposite Jakande Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq Is Located In A Serviced And Secured Estate,Elegushi Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tasefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Astonishingly Beautiful 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets +Off Plan 4 Bedroom Terrace With Bq,"Ocean Palms Estate Scheme 3, Gbangbala Street, Ikate Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Reaidential Plots Of Land,"Ikota Villa Estate, By Mega Chicken Restaurant. Ikota Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Offplan Studio Apartment,"Meadow Hall Way, Ikate Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +Block Of Flats With Excellent Facilities,"In Sangotedo, Lekki Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Furnished Serviced Apartment,Lekki Lagos,₦,"80,000,000",1,0,1,2 beds,2 baths,3 Toilets +6 Bedroom Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,6 Toilets +Office Space In Lekki Phase 1 For Sale,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Pool And Gym,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets +Lovely 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +Filling Station,Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets +465sqm Land,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 2 Bedroom Bungalow,"Omorinre Johnson Street,near Dowen College. Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3bedroom Semi Detached Duplex,"Marvel Court Inside Buena Vista Estate, Orchid Road, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Lekki Lagos,₦,"49,000,000",1,1,1,4 beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Along Adewale Kolawole Crescent, Off T.f. Kuboye Street, Lekki Scheme 1, Lagos Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +Prime Land For Sale,Twin Lake Estate Chevron Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets +New 5bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,"Ocean Bay Estate, Orchid Road Ikota Lekki Lagos",₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +6 Units Of 3 Bedroom Flats,"Conoil Filling Station, Ikate Eleguishi Palace, Ikate Lekki Lagos",₦,"360,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Duplex,"Lekki County Homes, Lekki Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Finished Beautifully Built Tastefully Finished Fully Serviced 3 Bedroom Terrace Duplex With A Room Boy's Quarter,Heirs Court Ikate Lekki Lagos,₦,"120,000,000/year",1,1,0,3 beds,3 baths,4 Toilets +A Perfect Home In A Private Estate,Nicon Town Estate Nicon Town Lekki Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets +Beautiful Home In A Beautiful Location,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +937sqm Land In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +Well Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Serviced 4 Bedroom Terrace Duplex With Swimming Pool, Gym And Bq",Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Home With Bq,Ikate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land For Sale At Madison Gardens Estate, Chevron Drive, Lekki","Chevron Drive, Besides Northern Foreshore Estate. Chevron Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 5bedroom Luxury Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +1000sqm Land In A Private Estate,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat,Jakande Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +Beautiful 4 Bedroom Terrace Duplex,Opposite Chevron Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex With Boy’s Quarter For Sale,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths, Toilets +Land,"Around Pan Atlantic University, Facing The Major Lekki Epe Expressway Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Full Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Terrace Duplex,Chevron Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Prime Half Plot Of Land,Aro Ologolo Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Home,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Phase1 Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets +Contemporary Style 4 Bedroom Home,Ologolo Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Superbly Built Detached Home In A Great Location,Nicon Town Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Gra Abijo, Facing A Major Road Lekki Lagos",₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abijo Lekki Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan Fully Detached Duplex With Flexible Payment Plan,"Gbangbala Street, Ikate/elegushi Ikate Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Automated Fully Detached Duplex With A Swimming Pool,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex,"Emcel Estate, Orchid Close To Chevron Tollgate. Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets +2/3/4 Bedroom Apartment,Freedom Way Ikate Lekki One Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,"Orchid , Lekki, Lagos. Vgc Lekki Lagos",₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +"4,945 Square Meter Prime Commercial Land Directly On Lekki Express,",Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,0,0,0 beds,0 baths,0 Toilets +New Built 5 Bedroom Detached Duplex,"Dr S Ezekuse Close, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Luxury Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex With Bq,"Citadel Views Estate, Behind Lekki Gardens Phase 1 & Lbs Off Lekki Epe Exp. Lagos Lekki Lagos",₦,"51,500,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq,Close To Mega Chicken Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds, baths, Toilets +Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Detached Duplex All Ensuite,"Royal Garden Estate, After Vgc Before Lbs Lekki Lagos",₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets +Two Bedroom Maisonette,"Ocean Bay Estate, Orchid Road, Off Eleganza Bus Stop, Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets +Contemporary Luxury At It’s Finest,Pinnock Beach Estate Lekki Lagos,₦,"1,200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Superb 4 Bedroom Semi Detached Duplex In Ologolo. Lekki,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Terrace Duplex With A Room Bq,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekkiphhase1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +4bedrooms Semi Detached House With Bq,Off Mobil Estate Road Ilaje Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super 4 Bedroom Terraced Duplex,Atlantic Ville Estate By Vgc Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Executive 4bedroom Terraced Duplex, At Ikate, Lekki",Ikate Lekki Lagos,₦,"80,000,000/day",1,1,1,4 beds,5 baths,5 Toilets +Luxury 6 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,6 baths,7 Toilets +675sqm Of Land In A Fantastic Location In An Estate,Vgc Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Mini Flat,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment With Pool And Elevator,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,2 Toilets +Massive Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bed Fully Detached Luxury Duplex,Lekki Conservative Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Nos Of 5bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex With Bq,Chevron Vgc Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,9 baths,9 Toilets +2 Units Of Fully Detached 5 Bedroom Houses,Jora Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Brand New And Spacious 4bedroom Semi Detached Duplex,"Chevyview Estate, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Duplex With A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Aro Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Luxury Terrace + 1 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury 6 Bedroom Detached Duplex With Swimming Pool, Penthouse And Bq",Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Terrace Duplex And 1 Bq, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets +State Of The Art 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"20,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 1 Room Bq Is Located In A Secured Estate,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built & Luxury Furnished 4bedroom Semi Detached Duplex,Inside Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Fenced Land Measuring 770sqm,Ikota Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Vacant Plot Of Land,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +3 Bedroom All Ensuite Apartments With Bq,"Shoprite Circle Mall, Elevation Church, Jakande Estate, Lekki Epe Expressway Ologolo Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +5bedroom Duplex Allrooms Ensuite With A Room Bq At Megamount Estate Lekki County Home,Awobode Abiodun Street Megamount Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built Luxury Terrace Duplex Houses,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds, baths, Toilets +Newlybuilt And Tastefully Finished Top Notched Detached 5bedroom Duplex With Swimming Pool,"Vgc Lekki,lagos State. Vgc Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets +6bedrooms Detached House With Boys Quarter,"Off Durosimi Etti Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +"Contemporary 5 Bedroom Detached Duplex With Swimming Pool, Cinema Gym And Bq",Megamound Ikota Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 2bedroom Flat Newly Built With A Room Bq Ready For Immidate Occupation With A Dedicated Parking Slots.,"Lekki Penisula 2, Nice Proximity To Royal Garden Estate, Off Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive 4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bed Detached Duplex With Cinema & Pool,Orchid Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Salem Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Flat,By Pinnacle Filing Station Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths,6 Toilets +A Vacant Piece Of Land,Ilasan Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Semi Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Plot Of Land Measuring 700m2 @ Sapphire Gardens Awoyaya, Lekki Lagos. Serene Serviced Estate. Govt. Registered Tittle",Sapphire Gardens Awoyaya Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +"1,650sqm Land",Lekki Phase 1 Lekki Lagos,₦,"270,000,000/day",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Tollgate , Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Apartment,Artican Beach Road Lekki Phase 2 Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,"Chevron, Lekki Conservation Centre, Eleganza, Orchid Hotel Chevron Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Chevron, Lekki Conservation Centre, Orchid Hotel, Eleganza Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds, baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Megamound Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finish Newly Built 4 Bedroom Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +8 Bedroom Fully Detached Duplex + 2 Rooms Bq,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,8 beds,9 baths,9 Toilets +Service 1 Bedroom Apartment,"Orchid Road , Eleganza Bus Stop Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Right Side Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex +bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Well Finished 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +A Standard 4bedroom Semi Detached Duplex Fully Serviced,Ikota Lekki Phase 2 Lekki Lagos,₦,"68,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"185,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 & 3 Bedroom Apartments,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"48,600,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch Finished 5bedroom Fully Detach Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Semi Furnished 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,1,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Office Space,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,1 beds,1 baths,1 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Estate Land,Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached House,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,1,6 beds,6 baths,6 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq (order – 0039 Rsd),E Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Chevron Lekki Lagos",₦,"33,100,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached House With Bq On 350sqms Land (order 0054rsd),Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets +Semi Detached Duplex,Bosmak Haven Vgc Lekki Lagos,₦,"77,500,000",0,0,0,4 beds,4 baths,5 Toilets +10 Units Of 4 Bedroom Terrace With A Roof Top,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Agungi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished Contemporary 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mall,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Jakande Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Orchid Road Directly Facing Omega One Plaza Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Home,Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat Ensuite With One Room Boy’s Quarters,Off Osapa London Jakande Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Built 6 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 3bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets +A Newly Built 3bedroom Flat/2bedroom Flat With A Bq Payment Plan Available,Ikate Lekki Lagos,₦,"65,000,000/year",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +A Standard 5bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 4bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Estate Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Estate Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Orchid Lekki Estate Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3bedoom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Super Gorgeous Quality 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Fully Detached 6bedroom House,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Luxurious 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,0,0,2 beds, baths, Toilets +4 Bedroom Terraced Duplex With Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Chevron Lekki Lagos",₦,"53,100,000",1,0,0,4 beds,5 baths,5 Toilets +Nicely Located 3 Bedroom Maisonette,Dunvale V Residents Ochid Road Lekki Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets +Nicely Located 2 Bedroom Apartment,"Emcel Apartment, Adjacent To Enyo Filling Station Road Ikate Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets +Nicely Located 3 Bedroom Apartment With Bq,Emcel Apartment Adjacent To Enyo Filling Station Road With 24 Hours Electricity Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"290,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Semi Detached 4 Bedroom Duplex + Bq,Around Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom With Bq,Lekki Lagos,₦,"4,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Itedo Estate Ikate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Chevron Lekki Lagos",₦,"18,100,000",1,0,0,1 beds,1 baths,2 Toilets +Brand New 2bedroom Flat,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets +4bedroom Terrace Duplex Fully Serviced,Lekki Phase 2 Lekki Lagos,₦,"58,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Magnificent Luxury 5 Bed Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedroom Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Distress Sale Of Units Of 3 Bedroom, Mini Flats And Self Contains In Lekki Phase 1 On 2,700sqm!! (order 008rsd.)",Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms Semi Detached House,Vgc Vgc Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment + Swimming Pool,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Detached 5 Bedroom Duplex,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Estate Lekki Lagos,₦,"275,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Estate Lekki Lagos,₦,"195,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"210,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +2bedroom Flat,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,3 baths,3 Toilets +1bedroom Apartments,Chevron Chevron Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets +4bedroom Terrace Duplex,Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,0 Toilets +A Luxury 4bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +A New Built 4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets +A Standard 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built And Well Finished 5bedroom Fully Detached,Lekki County Ikota Lekki Lagos,₦,"170,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Estate Lagos Ikate Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 4 Bedroom Terraces,Lekki Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 2/3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0, beds, baths, Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds, baths, Toilets +A Plot Of Land Measuring 70sqm And 1400sqm With An Erected Detached 10 Bedroom House (order 0071),Lekki Phase 1 Lekki Lagos,₦,"300,000,000/year",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace For Sale,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Home,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Around Lekki Beach Road Jakande Estate Axis Jakande Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House With 2 Bq,Pinnock Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Beautifully Detached House With Swimming Pool Sitting On A Land Size Of Approximately 600sqm In Lekki Phase 1 (order – 0027rsd.),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +Beautifully Built 4 Bedroom Self Compound Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +4 Bedroom Terace Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautifully Finished Contemporary 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Wings Of 4 Bedroom Duplex With Bq On The New Vgc (order – 0038 Rsd),E Vgc Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Home,Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Newly Built 5bedroom Fully Detached With Bq,Lekki Lagos,₦,"220,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +3bedrooms Maisonette Phase 1,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +Spacious 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built And Well Finished 5 Bedroom Fully Detached,Lekki County Ikota Lekki Lagos,₦,"175,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Built 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Home,Orchid Lekki Estate Lagos State Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Exquisite Home,Osapa London Lekki Lagos,₦,"475,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +Property Of 2230.636m2,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Hectares Of Land,Chevron Lekki Lagos,₦,"169,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2bedroom Flat,Idado Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Decently Built 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +10 Units Of 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,3 baths,3 Toilets +3bedroom Maisonette Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,0 beds,0 baths,0 Toilets +4bedroom Penthouse,Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment With Bq,Gcc 4 Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,3 baths,3 Toilets +Land,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Victoria Bay 1 Orchid Hotel Road Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Milverton Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Prestigiously Finished 6 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Studio Apartment,"Plot 3, Prince Ola Olusesi Close Lekki Lagos",₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +600sqm Land,Ode Omi Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary Styled 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Contemporary 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Contemporary Styled 5 Bed Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Newly Built Fully Detached Duplex,Lekki Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,0 beds,0 baths,0 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +Nicely Finished 4 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Ocean Bay Estate Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Nos Of 2 Bedrooms Flat (65% Complete) (order – 0080a Rsd.),Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds, baths, Toilets +Fenced Land Of 880sqm,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Design 3 Bedroom Terraced Duplex,Dunvale V Residents Ochid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Ochid Road Area Of Lafiaji Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,"Near Whitesand School, Lekki Phase 1 Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"41,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 No 1 Bedroom Flats (penthouse) (75% Complete). (order – 0080b Rsd.),Lekki Phase 2 Lekki Lagos,₦,"28,000,000/year",0,0,0,1 beds, baths, Toilets +3 Units Of 4 Bedroom Terraced Duplex,"Beach View Estate Beside Banana Estate Apartment, Igbo Efon Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Standard 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"190,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +2bedroom Apartments,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,0 beds,0 baths,0 Toilets +3bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,0 beds,0 baths,0 Toilets +Newly Build 5 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 3 Bedroom Terraced Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New 3bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Finished 1/2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets +8 Units Of Fully Serviced Block Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Estate Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Estate Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Semi Detached Duplex,Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Estate Lekki Lagos,₦,"78,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,6 Toilets +2 Front Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With Bq,Estate Vgc Lekki Lagos,₦,"88,000,000",0,0,1,4 beds,4 baths,5 Toilets +2 Bedroom With Bq (off Plan),Lekki Lagos,₦,"18,900,000",0,0,0,2 beds,0 baths,0 Toilets +Available Land,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Zion Residence Ochid Road... Opp Chevron,Lekki Lagos,₦,"42,000,000",0,0,0,3 beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Well Finished 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex On Two Floors,Oniru Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +4bedroom Semi Detached Duplex,Bosmark Haven Estate By Harris Drive Vgc Vgc Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,5 Toilets +Eco Friendly 4 Bedroom Maisonette,Emcel Apartments Located At 4th Lekki Epe Express Way Behind New Sofia Bedmate By House On The Rock Cathedral Lekki Nicon Town Nicon Town Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment In The Heart Of Lekki Phase 1,"Off Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Apartment,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bed Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Launched 1 4 Bedroom Apartments,Chevron Nigeria Limited/vgc Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Nike Art Centre/ Elevation Church Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace House,"Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"35,500,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"20,500,000",1,1,0,2 beds,2 baths,3 Toilets +Fully Detached Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Paradise Court Estate, Orchid Road, Lafiaji Opposite Chevron, 2nd Toll Gate Chevron Lekki Lagos",₦,"98,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Flat,"Paradise Court Estate, Orchid Road, Lafiaji Opposite Chevron, 2nd Toll Gate Chevron Lekki Lagos",₦,"23,500,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,"Paradise Court Estate, Orchid Road, By Chevron, 2nd Toll Gate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Lekki Lagos,₦,"250,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"68,000,000",1,0,0,2 beds,2 baths,2 Toilets +6 Bedroom Fully Detached Duplex,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,6 Toilets +Furnished 5 Bedroom Duplex With Bq,Gated Area Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +6 Bedroom Waterfront Mansion With Cinema And Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,6 Toilets +"Ongoing 3 Bedroom Automated Apartment, View Pictures To See The Stage Of Work",Oral Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Palm View Estate, Orchid Road, Behind Oral Estate Oral Estate Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Orchid Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,0 baths,0 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,7 baths,7 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Automated 5 Bedroom With Pent House,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Shops Measuring,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Ensuite Detached Duplex,Idado Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex With Swimming Pool, Cinema (one Unit Left)",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Duplex,Off Admiralty Way Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq,"De Castle Max Orchid Lekki, Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Home,Ikota Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Penthouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Prestigious 3bedroom Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxurious 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Off Freedom Way Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,"De Castle Max, Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Terrcaced Duplex,Ochid Lekki Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terraced Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Pool,cinema,gym And 2 Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedrooms Fully Detached Duplex With A Bq And Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With High Quality Finishing,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom House,Ikota Villa Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,De Castle Max Orchid Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Relatively New & Tastefully Furnished Luxury 2bedroom Flat For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,1,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Smart Terrace House Of 4 Bedroom Ensuite With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,A Very Nice Environment Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Built 5bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +2400sqm Fenced Land,Off Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Well Finished 5 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,S Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +Fully Serviced Apartment 1 2 3 Bedroom,Idado Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Ajah Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +18 Plots Of Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedrooms Fully Detached Duplexes; Nestled Within A Secured And Tranquil Estate At Lekky County, Lekki, Lagos. ",Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Bedroom Ensuite Semi Detached Duplex With Fitted Kitchen, Bq And 5kva Inverter",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Lovely 4bedroom Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Beautiful Estate Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bosmak Haven,Harria Drive Shapata Vgc Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With Bq In Ikate,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Lekki County Megamound Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Spacious 4 Bedroom Semi Detached Duplex,",Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand Bedrooms Semi Detached Duplex With Bq And Swimming Pool,2nd Tollgate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Grandiose 4 Bedroom Detached House (ocean View) On Ample Grounds,Goshen Beach Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Mega Joint Venture,"Off Admiralty Road, Lekki Phase I Lekki Phase 1 Lekki Lagos",₦,"14,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,A Very Beautiful Estate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Ensuite Terrace House,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Ensuite Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Jakande Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment In Lekki Phase 1 Below Market Price(off Plan),Off Freefom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Smart Contemporary 5 Bedroom Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Nice 4 Bedrooms Semi Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 5bedrooms Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Serviced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Suppy For Sale,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Fully Detached Duplex,Osapa Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Detached Duplex With Swimming Pool And Two Rooms Bq,S Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex I,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,"Lekki, Lagos Ologolo Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Orchid Hotel Road, Opposite Cooplag Gardens, Lafiaji Chevron Lekki Lagos",₦,"63,100,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"392,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +1 Bedrom Flat Apartment,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"35,000,000",1,1,0,1 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished Fully Detached 5 Bedroom Stand Alone Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Commercial Property,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",1,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Brand New 2 Bedroom Apartment,",Lekki Conservation Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Megabond Estate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +Exquisitely 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With 4 Car Space,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Relatively New 4 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Finished 4 Bedroom Ensuite Semidetached Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Duplex Built On Two Floors,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Bespoke Luxury 5bedroom Detached House,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary, 5 Bedroom Fully Detached Duplex, With A Maids Room",Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive Brand New 5bedroom Fully Detached House With A Bq,S Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Terrace Duplex With A Bq,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"227,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat With Bq,Peanock Estate Osapa London Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds, baths, Toilets +Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely 4bedroom Terrace Duplex,By Second Toll Gate Lekki Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Bespoke 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq And Swimming Pool,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Lovely And Nice Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Affordable & Newly Built 4 Bedroom Terrace Duplex,Chevron By Second Toll Gate Chevron Lekki Lagos,₦,"47,500,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Ensuite Flats,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Contemporary Serviced 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Diamond Court Estate, Chevron","Chevron, Behind Northern Fourshore. Title: Govn. Consent Chevron Lekki Lagos",₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets +Lovely 3bedroom Apartment,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Quality 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Ensuite Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 5bedroom Semidetached Duplex,Orchid Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House With Bq; Video Tour Available In Request,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House With Swimming Pool, Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Castle Duplex + Bq,"De Castle, Orchid Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Terraces,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Osapa London Axis Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built & Tastefully Finished Luxury & Serviced 4bedroom Terrace Duplexes For Sale!!,Orchid Road Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious And Fully Serviced 2 Bedroom Apartment.,"Rayfield Estate, Lekki Conservation Road, Lekki Lagos",₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,2nd Tollgate Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Ensuite Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Detached Duplex With Swimming Pool (2 Units Left),Ajah Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Fully Detached Duplex With Bq,Vgc Vgc Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Sandfilled Land Measuring 2000sqm In Ikate Elegushi Lekki,Off Freedom Rood By Cis School Lekki Ikate Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Waterfront 5bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4bedroom Fully Detached,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex,Orchid Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bosmak Estate,Harria Drive Shapata Vgc Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Terrace,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Smart House Duplex With Bq,Chevron/agungi Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 5bedroom Duplex With Swimming Pool And 247 Electricity,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +1200sqm Water Front Land,Orange Island Phase 1 Lekki Lagos,₦,"325,000,000",0,0,0, beds, baths, Toilets +Brand New 2 Bedrooms Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +New 4 Bedroom Duplex Within A Serviced Residential Court,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,"De Castle Max, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Detached Detached Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 4 Bedroom Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Serviced 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets +6bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +1 & 2 Bedroom Flat Apartment,"Orchid Hotel Road, Opposite Cooplag Gardens Chevron Lekki Lagos",₦,"18,100,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 4 Bedroom Serviced Terraced House,Worldwide Court Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets +Most Affordable 4 Bedroom Terrace Duplexin Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Lekki Lagos,₦,"2,000,000",0,0,0,2 beds,2 baths,3 Toilets +Tastefully Finished Luxury 3bedroom Semi Detached Duplex+a Room Bq For Sale!!!,Briskcourt Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",1,0,1,3 beds,3 baths,3 Toilets +5 Bedroom Apartment,Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,5 Toilets +911sqm Virgin Land,Orange Island Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Breathtaking 4 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 7 Bedrooms Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,7 baths,8 Toilets +Smart 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Cinema,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"415,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Illasan Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Penthouse Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,A Serene Secured Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Automated 6 Bedroom Pent House Duplex,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"700,000,000",0,1,0,6 beds,6 baths,6 Toilets +5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2bedroom Massionatte,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Terrace Duplex(on 2 Floors+ A Room Bq) For Sale!!!,Rhs Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets +Exquisite 3 Bedrooms Maisonnette Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,0 baths,0 Toilets +Classy Built 2 Bedrooms Maisonnette Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,0 baths,0 Toilets +Spectacular 6 Bedroom Detached Duplex,Pinnock Beach Estate By Shoprite Circle Mall Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex + A Miniflat Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,4 beds,4 baths,4 Toilets +5bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Ensuite Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,A Very Secured Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Emcel Court 4 (orchid Road),With Bq Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,5 baths,5 Toilets +Fully Serviced 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex,Northern Forshore Estates Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Duplex,Chevron Orchid Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +6bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,6 Toilets +5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 3 Bedroom Apartments,Chevy Castle Apartments 3 Bedroom Apartment Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +This Lovely 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",1,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex,2nd Toll Lekki Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedroom Detached Duplex With Swimming Pool And Bq,Lakeview Park Vgc Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Bedroom Carcass Apartment,Ikate Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq( Open Plan Kitchen),"Orchid, Chevron Toll Gate Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex With 2rooms Bq,Northern Forshore Estate Lekki Phase 2 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bw And Car Park Space For 6 Cars,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Serviced Terraced Duplex,Victoria Bay Estate Orchid Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Self Serviced 4 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 2 Bedroom Ensuite Flat,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Exquisitely Finished Fully Detached Duplex,Lakeview Park Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Smart 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Prestige 5 Bedroom Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex Is Located In A Secured And Serviced Estate,Orchid Hotel Road Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terraced Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Fitted & Furnished 4 Bedroom Luxury Terrace With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terraced Duplex,Orchid Lekki Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom En Suite Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Lekki Conservative Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,Orchid Lekki Lagos,₦,"61,750,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Oniru Victoria Island Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Duplex With Swimming Pool,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex With A Room Boys Quarter With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Decent 3 Bedroom Bungalow,Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +Honey Dew Court Estate,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5bedroom Fully Detached Duplex With A Bq In A Beautiful And Serene Gated Estate With Top Notch Security And Clean Water.,Orchid Road Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000/month",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Serviced Apartment,Ikate Lekki Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With Two Bedroom,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semidetached Duplex With A Bq.,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekky County Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedrooms Terrace Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment + Bq,Emcel Apartments Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex With A Room Boy's Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New And Nice 4 Bedrooms Semi Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Home, Osapa London Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,6 Toilets +For Sale?? 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Two Unit Of 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartments With Swimming Pool,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 2 Bedrooms Apartment,Megamound Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,3 baths,4 Toilets +Bosmak Properties,With Bq Harris Drive Shapata Vgc Lekki Lagos,₦,"79,500,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Ensuite Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +2units Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Brand New 5bedroom Fully Detached House With A Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built Two Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished And Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Ensuite Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Alluring 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Service Terrace House In Ologolo Lekki,Ologolo Close To Osapa London Lekki Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq,Lekki County Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Service 4bedroom Terrace House Off Orchid Road Lekki,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County By Megamound Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace For Sale,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxurious Executive 4bedroom Terrance Duplex,Lekki Phase @ Area Lekki Phase 1 Lekki Lagos,₦,"167,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace,Marwa Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +2bedroom Serviced Apartment,Orchid Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Plot Of Land In An Estate Behind Coppalag Estate Off Orchid Road Lekki,Behind Coppalag Estate Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,"De Castle, Orchid Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Units Of Newly Built 4 And 5 Bedroom Terrace Duplex On Large Grounds,Off T.f. Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Terrace Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +Smart 5bed Ensuite Detached Duplex,Lekki County Homes Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom House,Orchid Lekki Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2bedroom Flat,Agungi Lekki Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +2bedroom Apartment,Lekki Conservative Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +New 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With A Swimming Pool And A Bq,Lekki County Home Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Very Close To Freedom Way Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Maisonette And 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Maisonnette,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached House With Detached Bq,Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Maisonette,By Freedom Way Lekki Phase 1 Lekki Lagos,₦,"69,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Camberwall Advantage 4 At Lekki Phase 1 Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets +Blocks Of Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace,Alternative Route Chevron Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets +4 Bedrooms Terrance,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedrooms Blocks Of Flat,Orchid Road Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Detached,A Very Nice Estate And Well Secured Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"108,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,A Very Nice Environment And Calm Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached House,2nd Toll Gate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached,A Very Beautiful Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 1 Bedroom Studio Appartment,Ikate Lekki Lagos,₦,"33,000,000",0,1,0,1 beds,1 baths,1 Toilets +1 Bedroom Luxury Appartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,2 baths,2 Toilets +Offplan Project Of A 2bedroom Apartment,"Camberwall Advantage 4, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets +6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"330,000,000",1,1,0,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Terraced Duplex,Harris Drive Vgc Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Land Available For Sale,"Carlton Gate Estate, Chevron Drive. Chevron Lekki Lagos",₦,"230,000,000",0,0,0, beds, baths, Toilets +Exquisite 5 Bedrooms Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,A Very Beautiful Environment Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"3,700,000",0,1,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Duplex With Swimming Pool,Chevron Tollgate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished & Tastefully Finished Luxury 2bedroom Flat For Sale!!!,Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets +5bedroom Detached House In An Estate Off Chevron Drive Lekki,Off Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +3/4 Bedroom Terrace Duplex,S Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Newly Built 2 Bedroom,Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool.,Ikate Lekki Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached House With A Room Bq By Chevron Tollgate Lekki,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Ensuite Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious Newly Built 5bedroom Detached Duplex At Lekki Phase 1 With 2 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterview 5 Bedroom Detached Mansion With Swimming Pool,Lekki Phase 2 Lekki Lagos,$,"1,200,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Fully Detached Duplex With Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Semi Detached Duplex With Bq,Chevron 2nd Tollgate Orchid Road Oral Estate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Ensuite Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex,Oniru Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets +Brand New 4bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached With A Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,5 Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Smart 3 Bedrooms Flat With Payment Plan,Oral Estate Oral Estate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Maisonnete,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Creek Avenue Court Phase 2,"Close To 2nd Toll Gate At Ikota, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Massionatte,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"145,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Ensuite Terrace House,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Automated Home With Fully Fitted Kitchen For Sale,Ikota Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Private Compound,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets +Waterfront Island Virgin Land Measuring 14 Hectares,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Contemporary 6 Units Of 5 Bedroom White House With Swimming Pool/mini Bar ...,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built And Well Finished 5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool,Chevron Tollgate Orchid Road Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ready To Build Land In Lekki On Orchid Hotel Road,Sharing Fence With The Popular Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq Chevron,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +300sqm,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"6,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Oral 2 Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,In A Fully Gated And Secured Estate Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Fully Serviced 3 Bedroom Apartment, With Pool Located In The Most Serene And Beautiful Estate",Megamound Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooom Semi Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex With Bq,Bayview Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Four Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex With Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Smart House With Penthouse And Swimming Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Fully Detached House With A Bq,Q Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,"Off Omorinre Johnson Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,0,0,4 beds,4 baths,0 Toilets +Serviced 4 Bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Gym,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built Five Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedrooms Fully Detached Duplex,Lakeview Park Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Ensuite Semidetached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex + A Room Bq..,G Ologolo Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,5 Toilets +5bedroom Fully Detached With A Bq,Oral Estate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landbanking Development Project, Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land Available For Sale,"Carlton Gate Estate, Chevron Drive. Chevron Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +Spacious 3 Bedroom Ensuite Flats,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedrooom Terrace Duplex With A Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex In A Serena Environment,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Brand New Super Luxury 4bd Semi Detached Duplex, Strategically Located On Harris Corporation Drive By Vgc, Lekki, Lagos.",Vgc Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,5 baths,5 Toilets +Furnished 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,2 Toilets +Lovely 2 Bedroom Flat,Agungi Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached With A Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached,Secured Estate Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bespoke 5 Bedroom Ensuite Detached Duplex,Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +6bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,6 Toilets +Fully Detached 4 Bed Rooms Home,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Service Terrace House,Off Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Executive 6 Units Of 3beds,Ikate Lekki Ikate Lekki Lagos,₦,"280,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Ilasan Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex And Can Take Over 6 Cars, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Amazing New Two Bedroom Terrace,Ikate Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex + Bq,"De Castle Max, Orchid Road Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Suppy,"Chevron Toll Gate, Orchid Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Lekki Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Nixon Town Ikate Lekki Lagos,₦,"530,000,000",0,1,0,6 beds,7 baths,7 Toilets +Brand New 5bedroom Fully Detached House With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Three Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Four Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious Elegant 9 Bedroom Fully Detached Duplex,"Addo Road, Lekki Palm City Estate Lekki Phase 2 Lekki Lagos",₦,"250,000,000",1,1,1,9 beds,9 baths,10 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace,Emcel Court 4 4 Bedrooms Terrace Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Ilasan Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Waterfront 5 Bedroom Fully Detached Duplex,A Very Secured Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,Pinnock Beach Estates Lekki Phase 2 Lekki Lagos,₦,"480,000,000",0,1,0,6 beds,6 baths,7 Toilets +5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Smart Homes,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Orchid/whales County Phase 2/2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terrace Duplex,Cooplag Garden Orchid Road Chevron Drive Lekki Off Plan Project Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Offplan Project Of A 3 Bedroom Apartment,"Camberwall Advantage 4, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,1,0,3 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex,Lovely And Calm Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,A Serene Environment Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex+ A Room Bq For Sale!,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets +This Elegantly Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Freshly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette With Bq For,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +"2,3 & 4 Bedroom Duplex With Penthouse + Bq",Ikate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +3bedroom Apartment,Megamound Ikota Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,"Lekki, By Second Toll Gate,orchid Hotel Road Chevron Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets +Clean And Spacious 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +New Private 5 Bedroom Detached Duplex With 2 Room Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3bedroom Terrace Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built And Fully Serviced 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Four Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Ensuite Semidetached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Lovely Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Smart 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Masionette With A Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached House,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"108,000,000",1,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Duplex With Swimming Pool,Orchid By Chevron 2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury Maisonnete With Swimming Pool & Gym,Jakande Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Two Bedroom Flat,Ikate Lekki Lagos,₦,"4,500,000",1,1,0,2 beds,3 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Lovely 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful Fully 6 Bedroon Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,1,6 beds,6 baths,7 Toilets +3 Bedroom Terrace Duplex With A 2bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,5 Toilets +Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart And Super Lucurious 2bedroom Apartment House,Lekki Conservative Center Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Duplex With A Bq,Marwa Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4bedrooms Semi Detached With A Room Bq,Agungi Lekki Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets +Fully Serviced 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment,Osapa London Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +3bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Duplex With Bq,Chevron / Agungi Agungi Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With B/q,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Five Bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Ensuite Semidetached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Beroom Terraced Duplex,Harris Drive Vgc Lekki Vgc Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Listing ??????massive 4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +A Lovely Built 4 Bedroom Semi Detached House With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Contemporary Fully Detached Duplex For Sale!!!,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely 2 Bedroom Apartment,Lekki Conservation Road Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets +Brand New 4 Bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely Finished 5bedroom Detached House With A Room Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Terrace Apartment,Harris Drive Close To Vgc Ikota Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets +Finished 4 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex With A Swimming Pool And Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Semi Detached Duplex At Orchid Lekki,By Orchid Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +Emcel Apartment, Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedrooms Terraces,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Fully Serviced 4 Bedrooms Terrace Duplex With Bq,Chevron Back Gate Chevron Lekki Lagos,₦,"65,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With A Bq,"Lekki County, West End Estate Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached,Very Nice Estate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 5 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1, 2 & 3bedrooms Apartments",Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,By Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets +Smart Contemporary 5 Bedroom Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Seriviced 4 Bedroom Terrace Duplex,"Victoria Bay Estate, Lekki Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Serviced Apartments,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront Plots Of Land,Osapa London Lekki Lagos,₦,"180,000,000/sqm",1,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Ensuite Terrace Houses,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex !!!,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex Built On Two Floors,2nd Toll Gate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Open Terrace,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Oral Estate Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedrooms Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detached Duplex,A Beautiful Environment Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Megamond Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms House Plus Bq Facing Lake,"Twin Lakes Estate, Lekki Chevron Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Ensuite Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built One Bedroom Serviced Apartment,Second Toll Gate Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets +Land,Muritala Eletu Street Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bespoke 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Ensuite Flats,Vgc Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool,2nd Tollgate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Modern 5 Bedroom Fully Detached Swimming Pool Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Bq In Chevron Toll Gate Lekki,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +"5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Vgc, Lagos.",Vgc Lekki Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedroom Ensuite Flats With Bq,Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4units Of Three Bedroom Flat, 4units Of Mini Flat And, 3units Of Self Contain Fully Furnished,",Jakande Lekki Lagos,₦,"800,000,000",0,0,1,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Contempory Fully Detached,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +Very Nice 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Furnished 2 Bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury And Superb 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Chevron Tollgate Lekki Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"173,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary And Smart 4bedroom Duplex,Lakeview Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Conservation Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Waterfront Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +Service 3bedroom Apartment,Ikake Elegushi Ilasan Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Two Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Contemporary 5bedroom Fully Detached House With A Bq !!!,Jakande Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,6 Toilets +Modern 4 Bedroom Duplex On Ample Grounds,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Duplext At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"6,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq For Sale,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Self Serviced 4 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,County Homes Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,A Very Nice Estate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,A Nice And Beautiful Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedrooms Ensuite Flats,"Ikate, Elegushi Ikate Lekki Lagos",₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Semi Detached,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Detached House,Ikota Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Imperial Oaks Estate 5 Bedrooms Fully Detached Off Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Castle Duplex With Bq,"De Castle Max, Chevron Lekki Lagos",₦,"7,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Fully Detached Duplex,A Peaceful Secured Estate In Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace House,Ologolo Just By Shoprite Jakande Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"420,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Well Secured Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Fully Luxurious 5 Bedroom Detached,A Very Beautiful Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Vopnu City Ocean View,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula, Lagos Nigeria. Lekki Lagos",₦,"11,500,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Terrace Duplex,Harris Drive Vgc Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,A Lovely And Well Secured Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Furnished 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Maisonnette With Bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Royal Finished 4 Bedroom Fully Detached Duplex With Bq,De Castle Estate Orchid Road Chevron Lekki Lagos Off Plan Project Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds, baths, Toilets +Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Plots Of Land Measuring 600sqm Per Plot,Chevron Lekki Lagos,₦,"105,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Executive New 5 Bedroom Fully Detached House With B.q,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Camberwall Advantage 2 Bedrooms Apartment Off Freedom Way Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds, baths, Toilets +4 Bedroom Semi Detached With A Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Orchid Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Victory Star Court 2, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraces Castle Duplex + Bq,"De Castle Max, Orchid Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +3bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,A Very Nice Environment Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 2bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace With Personal Fence,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached With A Bq,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Best Deal !!! 2 Bedroom Apartment For Sale In Ikate,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets +Very Spacious 4 Bedroom Terrace Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Terraces,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Private 5 Bedroom Detached Duplex With 2 Room Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedrooms Terrace Duplex,Chevron 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Ensuite Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Ensuite Flats With Bq Serviced Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached House With A Room Bqby Chevron Tollgate Lekki,Orchid Road By Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Finished 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat, Agungi Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 4bedroom Semi Detached Duplex At Chevron,Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,5 baths,6 Toilets +Contemporary Massive 5 Bedroom Detached Duplex,Lekki Phase2 Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terraced Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Units Contemporary 5 Bedroom Semi Detached Duplex For Sale!!!,Acadia Groove Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedrooms Fully Detached Duplex With Bq,Chevron Tollgate Orchid Road Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 5bedroom Apartment,"Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"12,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema/gym For Sale,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Designed 6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land In Lekki By Second Toll Gate Chevron Amistd Great Development,Sharing Fence With The Popular Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Pool,Ikota Villa Estate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Castle Detached Duplex With Bq,"De Castle Max, Orchid Road Chevron Lekki Lagos",₦,"82,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4bedroom Terrace Duplex !!!,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Mansion With A Capacious Compound And A Large Swimming Pool.,Lekki County Home Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Duplex With Pool,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Ensuite Fla,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,0 baths,4 Toilets +Beautifully Finished 4 Bedroom Terrace Duplex,Ilason Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lekki Luxury Terraces,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Emcel Court 4,Orchid Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 4bedroom Terrace Duplex With A Room Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"67,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5bedrooms Detached Duplex With Bq,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land Measuring 1000sqm Landsize For Sale!!!,"Orange Island, Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +Gated Estate Land In Lekki On The Popular Orchid Hotel Road Suitable For Residential And Commercial Use,Lekki Second Toll Gate After Orchid Hotel Road. 10 Mins From Lekki Phase 1 Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +Brand New 5 Bedrooms Fully Detached With Bq,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious 2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Exquisite 5 Bedrooms Detached Duplex With Bq,Osapa Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Duplex With Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Ensuite Terrace House,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4bedroom House At Ologolo Lekki,Ologolo Lekki Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive Brand New 5bedroom Fully Detached House With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"17,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisite 2bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious Newly Built 5 Bedroom Ensuite Terrace Houses,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +"2 Bedroom Apartment, Elevator, Swimming Pool",Ikate Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exclusive 5 Bedroom Ensuite Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Contemporary 5 Bedroom Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedrooms Terrance Plus Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Listing ??????well Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Ensuite Detached Duplex,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With A Bq,Chevy View Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +1200 Sqm Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +A Brand Newly Built & Tastefully Finished Luxury 2bedroom Flat For Sale!!!,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 6 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartments,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Relatively New & Tastefully Finished Luxury 5 Bedroom Fully Detached Duplex + 2 Units Of 3 Bedroom Flats For Sale!!!,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,"Osapa Axis, Ologolo Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Jakande Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Penthouse With Bq In A Serene Environment,Camberwall Advantage Phase 4 Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds, baths, Toilets +Land,Chevron Drive/madison Gardens Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Penthouse With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedrooms Flat,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House,Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Unit Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Unit Of 2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,2 beds,2 baths,3 Toilets +5bedroom Detached Duplex,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Unit Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex+ A Room Bq On 600sqm Landsize For Sale!!!,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury 2units Of 4bedroom Terrace Duplex+ A Room Bq Each For Sale!!!,"Off Admiralty Road, Lekki Phase Estate Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Stylishly Designed 5 Bedroom Duplex With Penthouse,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Orchid Road By Eleganza Bus Stop Chevron Lekki Lagos,₦,"78,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished Two Bedroom House,Olusola Harris Way Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Duplex,Chevron Estate Chevron Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Well Maintained 4 Bedroom Semi Detached Duplex With A Bq.,"Canal West Estate, Osapa London, Lekki Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Fully Serviced And We'll Secured Estate Shoprite Osapa London Lekki Lagos,₦,"420,000,000",1,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex,Located In A Safe And Secure Environment Ikota Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"265,000,000",1,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,0,0,5 beds,0 baths,0 Toilets +"Land Measuring 1,850m²","Pinnock Beach Estate, Waterfront, Osapa London Lekki Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Apartment With Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully 4bedroom Duplex,Located At Orchid Hotel Road By Chevron Round About. Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Apartment,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Chevron Toll Gate Orchid Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Elwgushi,off Kunsela Road, Sea Gate Estate Ikate Lekki Lagos",₦,"2,195,800",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Terrace,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Parcel Of Land Measuring 10000m2,Ilasan Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Inside Vgc Estate.. Vgc Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,"Megamound Estate, Lekki Counnty Homes. Ikota Lekki Lagos",₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Inside Vgc Estate. Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Joint Venture Land,"Chevyview Estate, Chevron Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Beautiful Semi Detached Duplex In A Prime Location Ologolo Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,0 baths,0 Toilets +Lovely Unit Of 2 Bedroom Apartments,Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex,Inside Vgc Estate Vgc Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,10 Toilets +A Massive Office Complex/space,Igbo Efon Lekki Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,6 Toilets +5bedroom Spacious Fully Detached,Lekki County Homes. Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Lekki County Homes. Ikota Lekki Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets +4bedroom Spacious Terrace Duplex,Salem Axis Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedroom Semi Detached Duplex,Lekki County Homes. Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Detached House,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached,Orchid Road Chevron Toll Gate Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached,Orchid Road Chevron Toll Gate Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Peanock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Flat,In A Secured Estate Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"144,000,000",0,0,0,5 beds,6 baths,0 Toilets +Finished 5 Bedroom Duplex,Gated Estate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom House With 1 Room Bq;,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets +Nicely Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Semi Detached Bedroom With Fully Fitted Kitchen,Lekki Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Super Luxury 2 & 3 Bedroom Block Of Flats With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"67,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 1 Bedroom Masionette,Ikate Lekki Lagos,₦,"43,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached,Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets +Premium 2 Bedroom House In A Gated Community,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,6 Toilets +"Commercial Storey Building On 900m² Land (suitable For Eatery, Hospital, Etc.)","Directly Facing Orchid Road, Lekki Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Masionette,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Rd Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Masionette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Affordable 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedrooms Terrace With Bq;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached With Swimming Pool & Bq,Ologolo Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,5 Toilets +Standard 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Shoprite Jakande Oriental Hotel Vi Osapa London Lekki Lagos,₦,"125,000,000",1,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Fully Detached Magnificent Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Behind Enyo Filling Station Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Italian Built 4 Bedroom Terrace Duplex With Open Garden On Top,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Behind Romay Garden Estate Ilasan Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Detached House With Swimming Pool;,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Creek Haven Estate Vgc Lekki Lagos,₦,"92,000,000",1,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Semi Detached Duplex,Osapa Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +6 Bedroom Detached Mansion With Cinema,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,6 baths,7 Toilets +Value Centric 4 Bed Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Excellent Brand New Super Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House,Lekki Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,3 baths,5 Toilets +Nicely Built 2 Bedroom Flat;,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Affordable 5 Bedroom Detached Duplex With Excellent Finishing,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Luxury Home,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq;,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 8 Units Of Serviced 4 Bedroom Terrace Duplex,"Elf Busstop, Lekki Right, Lekki Lagos",₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Megamond Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Excellent Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Massive Super 3 Bedroom Block Of Flats With Swimming Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedrooms Terrace + 1 Room Bq,Lekki Right By Elf Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Elegant Tastefully Massive Newly Built 4 Bedroom Semi Detached House With Bq For Sale,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Block Of Flats,Chevron Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace With Quality Interior,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Excellent Prime Plot Of Land Measuring 913sqms With Global Cofo,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Super Luxury Brand New Serviced 3 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Terrace,Lekki Right. Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets +Decently Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets +Furnished 4 Bedroom Detached Duplex With Ample Shaded Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With 2 Rooms Bq;,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Serviced 2 Bedroom Flat,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool;,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary & Serviced 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Detached Home,Orchid Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Semi Detached Duplex +2rooms Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached House (video Available On Request),Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With A Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Cinema & Swimming Pool;,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice Prime Plot Of Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Exotic, Brand New 4 Bedroom Semi Detached Duplex",Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedrooms Detached House With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,In A Serene Estate Neighborhood Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Very Spacious 4 Bedroom Fully Detached Duplex With Bq,Within An Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Built Beautiful Massionette,Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With A Cinema And Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets +Excellent Super Luxury Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Ospapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex,Megamond Ikota Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Pride Estate Phase Ii Lekki Lagos,₦,"40,000,000",1,0,0,0 beds,0 baths,0 Toilets +Magnificent Masterpiece,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds, baths, Toilets +Lovely And Spacious 4 Bedroom Semi Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,5 baths,6 Toilets +Massive 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment For Sale,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +A Classic Newly Built 2 Unit Of 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Finished And Spacious 5 Bedroom Detached House With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 4 Bedroom Terraced Duplex With Ample Parking Space,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With 1 Room Bq, Ikota Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Finishing,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex With Bq," Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Extraordinary Standard 5 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Finished 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished And Spacious 5 Bedroom Detached House With Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Exquisitely Finished 5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Bedroom Penthouse With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bed Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious Luxury 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Elevator + Swimming Pool,Cowrie Creek Estate Ikate Lekki Lagos,₦,"800,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets +Nicely Built 4 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Contemporary 5 Bedroom Detached Duplex With Bq,Royal Gardens Estate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New Classic 3 Bedroom Block Of Flat With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached With Bq,Second Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Acres Of Land,"Chevron Drive, Lekki Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",1,0,0,5 beds,0 baths,0 Toilets +Furnished 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New And Luxury 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maissionette,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Spar Road Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Home With Pool, Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built And Tastefully Finished 4units 5bedroom Plus Bq In A Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Premium 4 Bedroom Terraced Duplex With Ample Parking Space,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000/day",0,1,0,2 beds,2 baths,2 Toilets +Massive 6 Bedroom Detached Duplex With Swimming Pool In A Good Estate,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,6 beds,6 baths,7 Toilets +Tastefully Finished 5 Bedroom Detached House With Bq,Oral Estate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 6 Bedroom Detached House With A Private Cinema And A Pool,Ikate Ikate Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terraced Home,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraces Castle Duplex With Bq,De Castle Max Normal Finishing Along Orchid Road Lekki Express Way Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached House And Bq,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached House + 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 608m²,"Creek Haven Estate Beside Vgc, Lekki Lagos",₦,"91,000,000",0,0,0, beds, baths, Toilets +Elegant Super Luxury 4 Bedroom Terrace Duplex With Swimming Pool And Bq,"Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Spacious 5 Bedroom Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced House+1 Rm Bq.,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Duplex;,Orchid Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +540sqm Land With An Old Structure,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Detached House With Swimming Pool,Jakande Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 4 Bedroom Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built And Tastefully Finished Block Of 11nos Flat Consisting Of 7nos 3bedroom, 2nos 2bedroom & 2nos 1bedroom",Agungi Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Whitesand Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 4 Bedroom Semi Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,5 Toilets +Luxury 2 Bedroom Apartment With Swimming Pool & Gym,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets +Affordable 5 Bedroom Detached Duplex With Good Finishing,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With All Rooms Ensuite,House 24 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Terrace House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedrooms Detached House With Boy's Quarter,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 2 Bedroom Apartment,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom House With A Swimming Pool,Lekki Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary And Tastefully Finished 5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +Nicely Built 2 Bedroom Flat;,Ilasan Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful Automated 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Elegant Super Luxury 4 Bedroom Semi Detached Duplex,Conservation Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Second Tollgate Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New Super Luxury Spacious 4 Bedroom Terraced House With Bq,Chevron Right Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Superb, Brand New 4 Bedroom Semi Detached House With Boy's Quarter",By Chevron Tollgate Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Ikate Lekki Lagos,$,"1,800,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedroom Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +Affordable 4 Bedroom Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Lovely Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Detached House + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Good Finishing,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Serviced Estate Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"97,000,000",0,0,0,4 beds,5 baths,6 Toilets +Land Measuring 500m²,"Arcadia Groove Estate, Jakande Lekki Lagos",₦,"175,000,000",0,0,0, beds, baths, Toilets +Serviced 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +Beautiful 5 Bedroom Semi Detached Duplex With Bq,"Vgc Extension, Serene Estate Neighborhood Vgc Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq And Pool,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +Top Notch Newly Built Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +A 2704.351 Sqm Land Suitable For Commercial Purpose,"By Lakeview Estate Opposite Ikota Shopping Complex, Lekki Lagos",₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Built 5 Bedroom Detached House On 350m²,Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq On 2 Floors (ground Floor+ 2 Floors),Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex Plus A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat Apartment,Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,3 Toilets +Tastefully Finished And Spacious 5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,6 baths,7 Toilets +Elegant 5 Bedroom Detached Duplex With Bq;,Victoria Island Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq,Ilasan Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Lekki County Homes Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached House With 1 Room Bq,"Western Foreshore Estate, Behind Circle Mall, Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terraces Castle Duplex With Bq,De Castle Max Royal Finish Along Orchid Road Lekki Express Way Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,8 baths,8 Toilets +Newly Built 5 Bedroom Detached Duplex With Good Finishing,Bakare Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached House + 2 Rooms Servant Quarters,"Nicon Town Estate, Ilasan Lekki Lagos",₦,"380,000,000",0,0,0,7 beds,7 baths,8 Toilets +Elegant Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Flat,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 2 Bedroom Flat,Idado Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets +Serviced 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Detached House,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 6 Bedroom Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,"Pinnock Beach Estate, Osapa London, Lekki Lagos Osapa London Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Spacious Luxury 5 Bedroom Fully Detached Duplex With Bq,Cheveron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached House With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Lekki Conserve Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekky County Estate, In A Serene Neighborhood Ikota Lekki Lagos",₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Platinum Way Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Elegant Spacious 2 Bedroom Block Of Flats,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massively Built Super Spacious Elegant Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Orchid Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Terrace House,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,"Fairmont Garden, Lekki Scheme 2 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets +Galant 5 Bedroom Fully Detached Duplex In A Gated Estate, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds, baths, Toilets +Newly Built Luxury 4 Bedroom Masionette With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq,Orchid Rd Chevron Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Luxury 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +Affordable Luxury Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedrooms Terrace Duplex,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool;,Victory Park Estate Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets +Exquisite 2 Bedroom Massionnette.,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury Built 4 Bedroom Semi Detached Duplex With 2rooms Bq On 395m² Land,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 2,550m² (4 Plots @ 90m/plot)","Orchid Road Before The Roundabout, Directly Facing Omega One Plaza, Lekki Lagos",₦,"360,000,000",0,0,0, beds, baths, Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ultra Modern Spacious 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Close To Vgc Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq In A Serene Estate,Agungi Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New And Spacious 5 Bedroom Detached House With Boys Quarter,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built & Serviced 2bedrooms Flat,Enyo Area Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex,"Giwa Street, Oba Amusan Estate Agungi Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Super Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",1,0,0,5 beds,0 baths,0 Toilets +Nicely Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Igbo Efon Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"430,000,000",1,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +New Superb 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,1 beds,1 baths,2 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Excellent Finishing,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Super Lavishly Luxury 4 Bedroom Semi Detached House With Bq For Sale,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lavishly Brand New Massive 5 Bedroom Fully Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Luxury House;,Lekky County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached With Bq,Ikota Lekki Lagos,₦,"84,100,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built, Exquisite 4 Bedroom Semi Detached Duplex With Bq",Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Executive Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House,Ologolo Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Automated Options,Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"82,000,000",1,1,1,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 2 Bedroom Apartments;,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Well Finished 5 Bedroom Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets +Automated 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Spar Road Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury Brand New 5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bedrooms Detached House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terrace + 1 Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse With A Bq & Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Admiralty Pearl Terrace Duplex Available,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +Premium 5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 3 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Semi Detached House With Quality Interior,Lekki Chevron Lekki Lagos,₦,"75,000,000",1,0,1,3 beds,4 baths,5 Toilets +Well Designed 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace House,Lekki Right. Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +Affordable Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +Architectural Masterpiece. Beautifully Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema, Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,0 baths,0 Toilets +Very Beautiful And Spacious Terrace,Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 3 Bedrooms Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Terrace Duplex With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment With Excellent Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Block Of 6 Flats,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedrooms Detached Duplex + 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Detached Duplex + 1 Room Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Penthouse With A Swimming Pool,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedrooms House + 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporarily Designed 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4bedrooms Duplex + 1 Room Bq,Off Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Detached House With Swimming Pool,Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Ample Parking Space,Chevron Lekki Lagos,₦,"84,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace With A Bq,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 6 Bedroom Detached House With Great Frontage,Nicon Town Estate Ikate Lekki Lagos,₦,"11,000,000/year",0,0,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 4 Bedrooms Fully Detached Duplex + Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegantly Built Super Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Ajah Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Maisonette In A Strategic Location,Ikate Lekki Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool +gym + Cinema,Osapa London Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets +Brand New And Serviced 3 Bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,The Pearl Estate With Lagos State Approved Excision Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Spacious 5 Bedroom Fully Detached Duplex,"...,. Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully/ Masterfully Finished 7 Bedroom House,Nicon Town Estate Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Semi Detached Duplex In A Strategic Location,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land Measuring 851m²,"Cowrie Creek Estate, Zone E, Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 10 Units Of 3 Bedroom Terrace House,Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Megamound Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Affordable 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Exclusive 2 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,4 Toilets +Serviced 3bedrooms Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With A Fitted Kitchen,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exceptional Newly Built 5 Bedroom Detached Duplex With Boy's Quarter,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built And Furnished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,1, beds, baths, Toilets +Brand New Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice Prime Plot Of Land Measuring 500sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"83,000,000",0,0,0,0 beds,0 baths,0 Toilets +Upscale 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex At Osapa London Lekki,Shoprite Oriental Hotel Osapa London Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New Lovely Spacious 4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedrooms Detached House + 1 Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex;,Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Classic 4 Bedroom Terrace Duplex With Swimming,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Ample Parking Space,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex In A Serene Neighborhood,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Prime Serviced Plot Of Land Measuring 600sqm With C Of O,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"13,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"...,. Idado Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3bedrooms Flat + 1 Room Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land Measuring 650m²,"Orange Island, Block 18, Lekki Lagos",₦,"140,000,000",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Good Finishing,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Bedroom Apartment,Olu Akinbola Avenue Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool,Pinnock Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Luxury 4 Bedroom Detached House With Boys Quarter,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fantastic 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Well Built 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,"...,. Osapa London Lekki Lagos",₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +3bedrooms Flat + 1 Room Bq,Shoprite Road Osapa London Lekki Lagos,₦,"62,000,000",1,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Tastefully Finished 4bedroom Semi Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Detached Duplex Home With Ample Parking Space,Idado Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Detached Duplex With Bq (work In Progress),Lakeview Park Estate 1 Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,7 baths,8 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Area,Pinnock Beach Estate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Open Terrace;,2nd Tollgate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Exquisite, Newly Built 4 Bedroom Semi Detached Duplex With Boy's Quarter",Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex In A Serene Neighborhood,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Victory Park Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 2 Bedroom Flat;,Lekki Right. Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Upscale 4 Bedroom Terraced Duplex With Amazing Facilities,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury, Brand New 5 Bedroom Detached Duplex",Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New Fully Serviced 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully And Luxuriously Finished 5 Bedroom Detached House With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 4 Bedroom Detached Duplex With Amazing Features,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Serviced 3 Bedroom Flat With Bq,"Primewater Gardens, Ikate Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Massive New Elegant Luxury 5 Bedroom Fully Detached Duplex With Penthouse,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished And Luxury 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New And Luxury 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Corner Piece Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace House + 1 Room Bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced House+1 Rm Bq.,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With Pool And Bq,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000/month",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary Luxury 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,1 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Bear Victoria's Crest 5 & Casa Cubana, Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Finishing,Off Freedom Way Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Maisonette Apartment (with Payment Plan),"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxuriously Finished 6 Bedroom Detached House With Pent House,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"140,000,000",0,1,0,6 beds,7 baths,8 Toilets +2 & 3 Bedroom Flats,Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Lekki Lekki Phase 1 Lekki Lagos,₦,"235,000,000",1,0,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Good Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely Spacious 4 Bedroom Semidetached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury And Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,5 baths,6 Toilets +Nice Prime 2 Plots If Land Measuring 13000sqm With Gazette At Shapatti For Sale!!!,Chapatti Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Boys Quarter,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +Tastefully Finished 4 Bedroom Semi Detached House With Boys Quarter,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Semi Detached House,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Contemporary 5 Bedroom Detached Duplex,Chevron Tollgate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Premium 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",1,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Semi Detached Castle Duplex With Bq,Ikota Lekki Lagos,₦,"74,100,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"37,100,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Penthouse,Ikate Lekki Lagos,₦,"63,000,000",1,1,0,2 beds,2 baths,3 Toilets +Plots Of Land,Nicon Town Estate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Luxury Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Affordable 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment Penthouse,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Semi Detached,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 5bedrooms Semi Detached Duplex +bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 1 & 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Serviced Terrace With A Room Bq;,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,De Castle Max By Orchid Road Chevron 2 Toll Gate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,8 Toilets +3 Bedroom Semi Detached Duplex,Dunvale V Residence Chevron Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraces,"Dunvale V, Along The Orchid Road By Chevron Drive Chevron Lekki Lagos",₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Off Kunsela Road Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Executive Luxury 4 Bedroom Terrace House With Bq For Sale,Orchid Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached + 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Off Spar Road Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Varoius Prime Serviced Plots Of Land With C Of O For Sale At Genesis Court 1 Ajah,Badore Lekki Phase 2 Lekki Lagos,₦,"18,400,000",1,0,0, beds, baths, Toilets +Newly Built 3 Bedrooms Terrace Duplex;,Orchid Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +Nicely Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful 3 Bedroom Maisonette Apartment (with Payment Plan),"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Detached Duplex With Bq,Royal Gardens Estate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Full Detached Duplex With Swimming Pool, Gym And Bq;",Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With And Swimming Pool,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex Plus A Room Bq With Swimming And Roof Top Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Maisonette House;,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Prime Plot Of Land Measuring 658sqm With Governors' Consent For Sale,Pearls Garden Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,0,0, beds, baths, Toilets +Beautiful 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Strategically Located Plaza/ Open Plan Office Complex,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ajah Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Bq;,Lekky County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Luxury Apartments With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 5 Bedroom Semi Detached House With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets +Beautiful 5 Bed Detached Duplex With Pool,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Prime Plot Of Land Measuring 1140sqm With C Of O,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Luxury 4 Bedroom Semi Detached Duplex With Boys Quarter,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New And Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets +Premium 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 3 Bedroom Apartment;,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Besides Victoria Garden City Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distinguished 4 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Spacious 2 Bedroom Apartment,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Brand New Luxury 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,1 beds,1 baths,2 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Apartment With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bed Detached House, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Classic Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Bunch Of Greatness In 1 Building,Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached Home,Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Spacious 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool In A Gated Estate,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom House In A Gated Estate,Lekki Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,4 Toilets +"Brand New, Exotic 4 Bedroom Semi Detached Duplex",Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Boy's Quarter,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury Duplex In A Beautiful Gated Estate,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds, baths, Toilets +Exquisitely Finished 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Acres Of Land,"Osapa London, By Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Cowry Creek Estate Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths, Toilets +"Brand New, Luxury 4 Bedroom Semi Detached House With Boy's Quarter",Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Fully Serviced Apartment With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment With Furniture;,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"176,000,000",0,0,1,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex In A Developed Area,Pantheon Smart Terrace Ikota Lekki Lekki Lagos,₦,"41,000,000",0,0,1,2 beds,2 baths,2 Toilets +Affordable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of 6 Flats That Comprises Of 4 Nos. 3 Bedroom Flats And 2 Nos. 2 Bedroom Flats Together,A Serene Mixed Environment Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Duplex In A Secured Neighbourhood,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With Quality Interior,Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,5 Toilets +3 Bedroom Penthouse,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful Contemporary 4 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Victory Park Estate Osapa London Osapa London Lekki Lagos,₦,"200,000,000",1,0,0,0 beds,0 baths,0 Toilets +Luxury Contemporary 4 Bedroom Semi Detached Duplex,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Apartment With Excellent Facilities,Megamound Lekki Lagos,₦,"105,000,000",0,0,1,4 beds,4 baths,5 Toilets +Super Luxury Automated Home With Gym,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,7 Toilets +6units Of 4 Bedrooms Terraced Houses With 2 Rooms Bq (with Own Kitchen & Bathroom Toilet),Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment With Swimming Pool + Elevator,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4bedrooms Terrace House,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette Pent House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Executive Massive Super Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex + 1 Room Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built And Spacious 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Admiralty Pearl Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedrooms Apartment;,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartments;,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New Massive Elegant Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Detached Duplex In A Serene Neighbourhood,Chevron Lekki Lagos,₦,"2,600,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached House With Lovely Finishing,Lekki Agungi Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Prestigious 6 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Apartments,Chevron 2nd Toll Gate Vgc Ikota Lekki Lagos,₦,"47,000,000",1,1,1,2 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Townhouse Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Lekki Lagos,₦,"520,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Fenced & Gated Sandfilled Land Measuring 3,100m²","Coleman Nwafor Street Off Orchid Road, Lekki Lagos",₦,"325,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New And Lovely 4 Bedrooms Semi Detached House With Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq, Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Extraordinary Lovely 3 Bedroom Block Of Flats With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Serviced 4bedrooms Duplex + 1 Room Bq,Off Orchid Hotel Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Classic Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Vintage Park Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terraced House,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bare Land,Nicon Town Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +The Best Luxury House On The Lekki Corridor,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 3 Bedroom Semi Detached,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Furnished 1 Bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets +Fantastic Fully Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Penthouse With A Swimming Pool And A Cinema,Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Classic Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Pantheon Smart Homes Ikota Lekki Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets +Fully Furnished 5 Bedroom Detached House With In House Swimming Pool,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +"Want Space, Luxury, And Security ? This Is Your Best Shot",2nd Toll Gate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq And A Swimming Pool,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Delightful Contemporary Luxury 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +Serviced 4bedrooms Semi Detached Duplex + 1 Room Bq,2nd Toll Gate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Elegant Super Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached House With Boys Quarter,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets +Beautiful Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets +Nicely Built 4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,"2nd Tollgate, Lekki Lagos. Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious And Nicely Built 4 Bedroom Semi Detached House With Bq,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Road 2nd Toll Gate Ikota Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Premium 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With 3 Bedroom Guest Chalet Plus 3 Rooms Bq,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegantly Finished Automated 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nice Prime Plot Of Land,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale; 2 Units Of 4 Bedroom Detached With Bq On Approximately 975m² Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Corner Piece Uncompleted 5 Bedroom Detached House With Bq.on 450sqm Land,"U3 Estate, Lekki Phase 1 Right Side, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Semi Detached Bungalow;,Awoyaya Lekki Lagos,₦,"21,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New And Luxury 5 Bedroom Detached House With Boys Quarter,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets +5bedroom Fully Detached House With 2(no) Mini Flats As Servant Quarter,Carlton Gate Estate Chevron Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +"Gorgeous, 5 Bedroom Semi Detached Duplex;",Off Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Fully Fitted Kitchen,Lekki Agungi Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Second Tollgate Lekki Lagos,₦,"48,600,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished And Furnished 5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4bedrooms Detached Duplex + 1 Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Exquisite 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 3bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached,Penthione Smart Homes Ikota Lekki Lagos,₦,"105,000,000",0,0,1,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Semi Detached Duplex In A Secure Estate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Stunning 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Ample Parking Space,Vgc Lekki Lagos,₦,"5,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifullly Built 4 Bedroom Terrace,Pantheon Terrace Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +Brand New And Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,6 Toilets +Brand New And Luxury 4 Bedroom Semi Detached House With Boys Quarter,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 1 Bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets +Classic 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Fully Detached Duplex With Cinema And Swimming Pool .,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 6bedroom Detached Duplex,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Flat,Ikate Right Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex With Swimming Pool And Bq;,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Functional 80 Room Hotel On Almost 4000sqm,Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,1,0,10 beds, baths, Toilets +5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Fully Detached Bungalow;,Awoyaya Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,3 baths,4 Toilets +Lovely Brand New Elegant 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex;,Ajah Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury (smart House) 5 Bedroom Detached Duplex,Vintage Park Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Luxury 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Affordable 5 Bedroom Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Affordable Luxury 4 Bedroom Semi Detached Duplex In An Estate,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 30 Units Of Terrace Duplex,Ikota By Mega Chicken Lekki Lagos Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Masionette,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Masionette With Bq,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",1,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"128,000,000",0,1,0,5 beds,6 baths,7 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,6 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of 4 Bedrooms Terraces With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Massionette,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Well Spaced Nicely Finished Detached Duplex Chevron Lekki Lagos,₦,"120,000,000",1,0,0,5 beds,0 baths,0 Toilets +Brand New Spacious 4 Bedroom Fully Detached Duplex With Bq For Sale,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Semi Detached Duplex In A Serene Neighborhood,Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Massive Elegant 4 Bedroom Semi Detached House With Bq For Sale,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool And 1 Room Bq,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Terrace With Beautiful Exterior,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Terrace Duplex;,Ajah Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Prime Plot Of Land In A Secured Estate Measuring 188sqms With Global Cofo,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massively Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace With Ample Parking Space,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,3 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautifully Finished 4 Bedroom Fully Detached Home, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets +Nicely Built Spacious 5 Bedroom Detached Duplex;,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New And Luxury 4 Bedroom Semi Detached,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Premium 4 Bedroom Terrace With Quality Interior,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With Bq/pool/gym Room,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Excellent Facilities,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Furnished Detached 6bedrooms + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,5 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Excellent Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Home,2nd Toll Gate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,7 baths,7 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notched Finishing Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Conservative Road Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Super Luxury Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette Penthouse +bq,"Camberwall Advantage 3 & 4, Located At Kusenla Road, Off Gbangbala Street, Ikate, Off Freedom Way, Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,8 baths,8 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex + 1 Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Brand New Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Shoprite Oriental Hotel Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,7 Toilets +Affordable Luxury 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Lovely 2 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Fully Detached House With A Bq;,Ajah Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Good Finishing,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets +Nicely Finished 4 Bedroom Semi Detached House,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built & Reasonably Priced 5 Bedroom Semi Detached House + 2rooms Bq @n280m,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In A Serene Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace,Orchid After 2nd Toll Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +4bedrooms Luxury Terrace + 1 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 6 Bedroom Detached Duplex With Swimming Area,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",1,1,0,6 beds,6 baths,7 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex,Conservation Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",1,0,0,4 beds, baths, Toilets +2 Bedroom Apartment With Swimming Pool,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Furnished 3 Bedroom Home With Ample Parking Space,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Close To Vgc Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Luxuriously Finished 4 Bedroom Detached Duplex With Swimming Pool,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With Swimming Pool And Boys Quarter,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +1307sqm Land,Ayodele Odubiyi Street Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Chevron Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached House,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedrooms Detached House + 1 Room Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House With Boys Quarter,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Duplex + 1 Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Swimming Pool;,Osapa Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built & Serviced 3 Bedrooms Flat,Off Kusenla Ikate Lekki Lagos,₦,"71,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment With Excellent Finishing,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Alexa Automated 5 Bed Detached House With Swimming Pool And Cinema,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets +Well Built 4 Bedroom Detached House, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Serviced 2 Bedroom Apartment With Bq,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Luxury 2 Bedroom Terrace Duplex With Swimming Pool And Bq,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"44,900,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +Affordable Luxury Beautiful Duplex In A Secure Estate,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartments;,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekki County, Lekki Ikota Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Osapa Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 6 Bedroom Detached House With Swimming Pool And Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,7 baths,8 Toilets +400 Square Meter Of Land Available,Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom,Ikate Lekki Lagos,₦,"100,000/day",0,0,0,2 beds,0 baths,0 Toilets +Investor’s Delight 2 Bed Apartment. Suitable For Residents And Short Let Investors,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets +5 Acres(2 Hectares) Of Oceanview Land,Ilasan Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Well Built & Fully Furnished 4 Bedroom Detached House +2 Room Bq,Vgc Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment With Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",1,1,0,3 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment With Bq,Jakande Lekki Lagos,₦,"78,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex With Fully Fitted Kitchen,Chevron Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Contemporary Fully Detached Duplx With Bq, Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets +Nicely Built 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built & Serviced 4bedrooms Terrace Duplex,Apple Wood Estate Behind Vgc Vgc Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Tastefully And Luxuriously Finished 5 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets +Beautiful Luxury Home With A Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets +"6 Units Of 4 Bedroom Terrace Duplexes & 6 Units Of 2 Bedroom Apartments Sitting On Land Measuring 3,150sqm",Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex In A Serviced Estate,Nike Art Gallery Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Massive Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Detached Duplex + 1 Room Bq,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House + Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +Affordable Luxury Duplex In A Secure Estate,2nd Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Detached House (smart Home) With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex,Lakeview Phase 2 Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex;,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Upscale 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House With Swimming Pool And Bq,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Beautiful 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Flat,"Spg Road Between Ologolo & Igbo Efon, Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Furnished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Chevron Lekki Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,5 Toilets +Land,Chevron 2nd Toll Gate Vgc Chevron Lekki Lagos,₦,"135,000,000",1,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Gated Estate Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat With Swimming Pool And Gym,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets +Furnished 2 Bedroom Apartment With Quality Interiors,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,2 beds,2 baths,3 Toilets +Brand New Massive Super Luxury 5 Bedroom Terrace Duplex With Bq For Sale,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House In A Gated Community,Lekki Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq In A Mini Estate,By Vgc Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificent Edifice On 800sqm,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,8 baths,8 Toilets +Nicely Finished 5 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In A Strategic Location,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Detached Duplex,Estate Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace Duplex With Ample Parking Space,Agungi Agungi Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Detached Duplex + 1 Room Bq,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced House,Ilasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6bedrooms Detached House + 2rooms Bq,Megamound Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,5 baths,6 Toilets +A Classic Super Luxury Smart 5 Bedroom Fully Detached Mansion Duplex With Swimming Pool And 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Made,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Scandinavian Styled 2 Bedroom Apartment,"Scandic 2, Ilasan Lekki Lagos",$,"108,000,000",1,1,0,2 beds,2 baths,3 Toilets +6 Units Of 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Premium 5 Bedroom Detached Duplex With Swimming Area,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Lovely Spacious 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets +5bedrooms Detached House + 1 Room Bq,By Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Furnished 5 Bedroom Detached Duplex With Ample Parking Space,Osapa Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Quality Interior,Lekki Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached House+ 1 Room Bq,Northern Foreshore Estate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Serviced Terrace Duplex With Bq,Orchid Road Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +The White Beauty,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Terrace House + 1 Room Bq,Platinum Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 3 Bedroom Flat,Lekki Right. Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely And Spacious 5 Bedroom Detached Duplex With Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4bedroom Terrace For Sale,Enyo Area Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Estate. Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Detached House + 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Contemporary Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat With Ample Parking Space,Orchid Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5bedrooms Detached House + 1 Room Bq,Buena Vista Estate Off Orchid Road Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Spacious Brand New 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached House With A Room Staff Quarter,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Furnished Detached With Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Good Finishing,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 2 & 3 Bedroom Apartment In A Good Location,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Luxury 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment With Fully Fitted Bath,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Very Spacious Well Built 5 Bedroom Detached House,Orchid Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Good Finishing,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fitted 4 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Terraced Duplex With Bq,Ajah Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Contemporary House,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxuriously Finished 5 Bedroom Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedrooms Semi Detached,Orchid Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex;,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of 4 Bedroom Fully Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Good Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Premium 5 Bedroom With Quality Interior And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New, Fully Serviced 7 Bedroom Detached House With 24hrs Power","Ocean Bay Estate By Orchid Road, Lekki Lagos",₦,"230,000,000",1,1,0,7 beds,7 baths,8 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets +3 Bedroom Maisonette,"Dunvale V Residence, Along The Orchid Road By Chevron 2nd Toll Gate Chevron Lekki Lagos",₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Masionette,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment In Serene Estate,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Castle Duplex With Bq,Ikota Lekki Lagos,₦,"64,100,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached,Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",1,0,0,4 beds,0 baths,0 Toilets +Elegant Brand New Luxury 5 Bedroom Fully Detached Duplex For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Apartments In A Serene Estate,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Studio Apartment,Ikate Lekki Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built 2 Bedroom Masionette,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Magnificent,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Swimming Pool,Megamound Estate. Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets +Classic 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached House;,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massively Built Super Elegant 4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached With Bq,Second Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,6 beds,6 baths,7 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With A Bq;,Lekki Right. Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 2 & 1 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,3 Toilets +Fully Automated Well Built Home With Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets +Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex;,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Fully Detached Duplex;,Lakeview Estate By Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Executive 4 Bedroom Terrace Duplex With Swimming Pool For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooom Detached Duplex*,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Serviced 2 Bedroom Apartment*,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New And Luxury 5 Bedroom Detached Duplex,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Smart 4 Bedroom Semi Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex With Bq*,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Premium 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Whitesand School Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 5 Bedroom Detached Home,Lekki County Estate Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Along Awosedo Avenue/goshen Estate Road ,goshen Beach Estate, Ikate Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Terrace With Private Gate And Fence,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Prime Lovely 2 Plots Of Land Measuring 1,300sqm With Gazette For Sale At Shapatti",Shapatti Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Boys Quarter,De Castle Max Lekki Lagos,₦,"72,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Home With Swimming Pool, 2 Rooftop Terraces And Cinema",Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Swimming Pool,Beside Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Units Of 4 Bedroom Fully Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massively Built Super Spacious 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq On 675m²,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With Fully Fitted Kitchen,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Rd Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With 24 Hour Power Supply,Ikota Ikota Lekki Lagos,₦,"49,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Automated Splendor 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets +Brand New 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House With 2 Rooms Bq On 675m²,"Victoria Garden City, Road 3, Vgc Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Astonishingly 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex With Ample Parking Space,Ologolo Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Terrace Duplex,Osapa London Lekki Lagos,₦,"125,000,000",1,0,1,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 3 Bedroom Flat With Boys Quarter,Idado Lekki Lagos,₦,"57,000,000",1,1,0,3 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Cowrie Creek Estate Ikate Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Good Finishing,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With A Swimming Pool And A Bq;,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished Fully Automated Contemporary 5 Bed Fully Detached Luxury Duplex ??,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets +Plot Of Land Measuring 400sqm,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets +Brand New Massive Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached,Second Tollgate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Boys Quarter,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House,Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +500 Square Meter Of Land Available,Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Pinnock Beach Estate Lekki Lagos,₦,"430,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,6 Toilets +"Luxuriously Finished, Spacious And Fully Serviced 4 Bedroom Terrace House",Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Excellent Finishing,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Terraced Duplexes,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Detached 5 Bedroom House (carcass) With A Room Bq (shell Option),"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool;,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets +Beautifully Crafted 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced House,Ilasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Designed 5 Bedroom Detached House With A Bq,"Lekki County Estate, Ikota Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Finishing,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Super Beautiful Contemporary 5 Bed Detached Masterpiece,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedrooms Terrace + 1 Room Bq For Sale (off Plan),Orchid Road After 2nd Toll Gate Ikota Lekki Lagos,₦,"51,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Water Front House On About 2000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In A Gated Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated Unconventional 4 Bed Luxury Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terraced Duplex,Orchid Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds, baths, Toilets +Premium 5 Bedroom Detached Duplex With Ample Parking Space,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets +Spacious 4 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq,In A Serene Gated Estate Neighborhood Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex + 1 Room Bq,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Beautiful Home,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths, Toilets +"Land Measuring 1,315m²","Directly On Osapa Road, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 2,400sqm","Abayomi Shonuga (central Business District Street), Lekki Phase 1 Lekki Lagos",₦,"760,000,000",0,0,0, beds, baths, Toilets +Block Of Flats Comprising 4 Units Of 3 Bedrooms Flats,"Directly Off Durosinmi Etti Street, Lekki Phase 1 Lekki Lagos",₦,"385,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette,Dunvale V Chevron Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 1 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Detached With Bq;,Second Tollgate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Fully Detached Duplex With A Swimming Pool And A Bq;,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom High Toned Luxury Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Spacious Luxury 2 Bedroom Block Of Flats,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"34,500,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Behind Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat;,Lekki Right. Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished & Fully Serviced 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 1 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +Massive Spacious Brand New 4 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +Beautiful 4 Bedrooms Fully Detached Duplex,"...,. Lekki Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Superb Brand New 4 Bedroom Semi Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,5 baths,6 Toilets +Lovely Prime Plot Of Land Measuring 578sqms With Global Cofo,Chevron Lekki Phase 2 Lekki Lagos,₦,"93,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellently Built 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",1,1,0,3 beds,6 baths,6 Toilets +20 Plots Of Land,Lekki Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Building Consisting Of 4 Bedroom Duplex, 1 Unit Of 3bedroom & 1 Unit Of 2 Bedroom Flat","Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +Value Centric Affordable Luxury Terrace,Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets +Fully Finished Spacious 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Good Finishing,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Massionette,Lekki Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Detached 4bedroom House + 1 Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex In A Serene Neighbourhood,Chevron Chevron Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached House With Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Ocean View Luxury Home,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 4 Bedroom Detached House With Swimming Pool And Bq,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,6 Toilets +5bedrooms Detached House + 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 6 Bedroom Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 7 Bedroom Duplex,Lekki Ikota Lekki Lagos,₦,"170,000,000",0,1,0,7 beds,7 baths,8 Toilets +3 Bedroom Apartment With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New And Luxury 4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Detached House + 1 Room Bq,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,206m2 Fully Fenced Corner Piece Land","Atlantic Beach Estate, Off Alfa Beach Road, Opposite Chevron, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant 5 Bedroom Detached Duplex With A Bq;,Royal Gardens Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Distress Sales Alert: A Fully Furnished And Luxury 5bedroom Duplex On 450sqm (furniture & Generator Inclusive),"Victory Park Estate, Jakande Lekki Lagos",₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Exquisite 5 Bedroom Luxury Fully Detached House, With A Library, Cinema And A Swimming Pool.","Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex Olwith Nq,"Abiola Court, Ikate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New Executive Luxury Water Feont 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Ultra Modern 5 Bedroom Detached Duplex On 500m²,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Brand New 5 Bedroom Detached House With Boy's Quarter,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Serviced 2 Bedroom With Great Ambiance,Ikate Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached House With Bq,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +A Distinguished 4 Bedroom Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fitted 5 Bedrooms Detached Duplex With Ample Parking Space,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Terrace House + 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Luxury Terraced Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedrooms Detached House With Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House.,"Orchid, Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Top Notched Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 400m²,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Highly Improved And Fully Furnished 3 Bedroom Flat,Eko Atlantic City Lekki Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New And Luxury 4 Bedroom Terrace House With Swimming Pool,By Chevron Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Upscale 4 Bedroom Duplex Penthouse,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 2 Bedroom Fully Serviced Apartment With Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Terrace Duplex In Good Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In A Secured Estate,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Swimming Pool + Gym,Orchid Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Massive, Brand New And Superbly Finished 6 Bedroom Fully Detached Duplex With Boys Quarter",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,8 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxuriously Finished 5 Bedroom Detached House With Bq,Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New 4 Bedroom Terrace With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Ample Parking Space,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Finished Fully Serviced Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Brand New And Luxury 4 Bedroom Terrace House With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,7 Toilets +Spacious 5 Bedroom Detached,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary And Luxury 5 Bedroom Detached House With Bq,Chevron Toll Gate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Well Built Spacious 5 Bedroom Detached Duplex In An Estate, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spaciously Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +2 Wings Of 4 Bedroom Semi Detached Duplexes On 862m² Land ( Both Tenanted).,"Off Omorinre Johnson Street, Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat With Ample Parking Space,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 5 Bedroom Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Fully Fitted Kitchen,Vgc Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Premium 5 Bedroom Detached Duplex With Ample Parking Space,Pinnock Beach Estate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + Bq,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New Spacious Super Luxury 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Ocean View Home With A Cinema And Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,In A Serene Estate Neighborhood Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Detached Duplex With Fully Fitted Bath,Lekki Chevron Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built & Fully Serviced 4 Bedroom Semi Detached Duplex,"Victoria's Crest 4, Orchid Road By 2nd Toll Gate, Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury 6 Bedroom Detached House With Swimming Pool, Bq And Pent House",Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,6 beds,7 baths,8 Toilets +Newly Built 3 Bedroom Flat With Ample Parking Space,Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Ultra Modern 5 Bedroom Detached Duplex,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex In A Mini Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Bareland Measuring 950 Square Meters,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Finished 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace Duplex In Good Location,"Freedom Way, Serene Neighborhood Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,"Idado Estate, Lekki Lagos. Idado Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex In A Secure Estate,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex*,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Bq;,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Contemporary Home,"...,. Osapa London Lekki Lagos",₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Executive Luxury 4 Bedroom Terrace Duplex With Bq For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Done 4 Bedroom Townhouse, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Affordable Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Fully Seviced 5 Bedroom Detached Duplex On 600m²,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"290,000,000",1,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Water Front Edifice 5 Bedroom Fully Detached Mansion, Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Gorgeous 5 Bedroom Contemporary Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 5 Bed Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds, baths, Toilets +Magnificent Contemporary Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Gra Ikota Lekki Lagos,₦,"64,000,000",1,0,0,4 beds,4 baths,5 Toilets +Affordable 2bedroom Apartment,Orchid Road By Henrys Court Chevron Lekki Lagos,₦,"32,000,000/year",1,1,0,2 beds,0 baths,3 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Townhouse,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,"Off Providence Road, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex,Lekki Right Lekki Phase 2 Lekki Lagos,₦,"295,000,000",1,1,0,6 beds,6 baths,7 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House,"Off Pinnock Beach Road, Osapa London Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Primewater View Gardens Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Flat,Estate Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Mega Mound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Sales Alert. 4 Bedroom Terraced Duplex With Swimming , Gym , 24hours Power , Play Area Etc",Off Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Unique 4 Bedroom Semidetached Duplex,Orchid Hotel Road Eleganza Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets +Dpkay Smart Automated Homes Consist Of Terraces + Bq. Castlemore Apartments Lekki,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +913sqm Land With A Detached 3 Bedroom Bungalow,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex Plus A Bq,Chevron Lekki Lagos,₦,"55,000,000/day",0,0,0,3 beds,3 baths,4 Toilets +Contemporary Design 6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +State Of The Art And Exquisitely Built 4bedroom Duplex With Swimming Pool And Garden On The Roof Top @ Megamound Estate,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Block Of Flats,Chevron Chevron Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,0 Toilets +Elegant 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"67,500,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Flat,Salem Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Waterfront Apartment With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,3 beds,4 baths,4 Toilets +Fantastic Built 4 Bedroom Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +Office Space/shops,"Blenco,enyo Filling Station. Ikate Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets +Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Royal Standard 5 Bedrooms Fully Detached Duplex,Ikota Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beachfront Apartment,"Alpha Beach, Lekki. Lekki Phase 1 Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +Decently Finished 4 Bedrooms Semi Detached Duplex With B,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Finished 5 Bedrooms Detached,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedrooms Fully Detached Home,By Vgc Lekki Phase 2 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Luxury Detached House,Lekki Phase 1 Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,6 Toilets +5 Bedroom Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Block Of Flats,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedrooms Detached,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets +Affordable 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Full Detached + 1room Bq,Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully 2bedroom Flat,Located In A Mini Estate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Contemporary Detached Duplex,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"366,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment With A Massive Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Greatly Built 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Mansion With Cinema,Lekki Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nicely Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Nicon Town Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Serviced Apartment,Gated Area Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 2 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex And Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached,Osapa Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat With A Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,"Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"200,000,000/sqm",0,1,0,5 beds,5 baths,5 Toilets +Exclusive Serviced 3 Bedroom Apartment With A Maid Room.,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Salem Ikate Lekki Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Luxury 4bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,4 Toilets +3 Unit Of 4 Bedroom Terrance Duplex With Bq And Room And Parlor,Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Hallmark Apartment: 2 & 3 Bedroom Flat On Admiralty Way Lekki Phase 1,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets +Nicely Built 5 Bedroom Detached Duplex With Swimming Pool.,Serene Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"138,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 5bedroom Fully Furnished,Located At Inside An Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Five Bedroom Fully Furnished Duplex With Swimming Pool And 2bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Buy 5 Bedroom Fully Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex Bq,Agungi Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,3 baths,2 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Glamcourt Ii: 1, 2 & 3 Bedroom",. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Nice Environment Agungi Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Duplex In A Serene Neighbourhood,"Elf, Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"270,000,000/year",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Ikota Lekki Lagos,₦,"45,000,000/year",0,0,0,2 beds,3 baths,3 Toilets +"Newly Built, Luxury & Well Finished 5units Of 3 Bedroom And Room Bq",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,4 Toilets +Luxurious 5 Bedroom House,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,6 baths,4 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,Serene Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Bq,Elegushi Beach Road.. Ikate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,4 baths,4 Toilets +Land,"Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 2 Bedroom Flat,Spa Road Nicon Town Lekki Lagos,₦,"47,000,000",1,0,0,2 beds,2 baths,3 Toilets +Water Front 2 Bedroom Flat,Ladipo Latinwo Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex Plus A Room Inset Bq,Buena Vista Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Monessary Road Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Swimming Pool,Nice Environment Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4bedroom Duplex With Bq,Located Inside Idado Estate Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Flood Free Estate Well Finished 4bedroom Semi Detached Duplex With A Maid Room In A Very Secure Estate,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sophisticated 4 Bedroom Detached Duplex House With A Room Boy's Quarters., Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Admiralty Pearl: 4 Bedroom Waterfront Townhouses In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Mansion With 2 Room Bq,Lekki Phase 2 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,3 Toilets +4 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished Fully Detached 5 Bedroom With Bq,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"140,000,000",0,0,1,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedrooms Home,Lekki County Home Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedrooms Duplex,Buena Vista Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +New Luxury 5bedroom Semi Detached Duplex In A Gated Estate By Nicon Town,Gated Estate Spar Road By Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,1,1,5 beds, baths, Toilets +2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Tastefully Finished 3 Bedroom Pent House,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,3 Toilets +Exquisitely Finished & Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely And Tastefully Finished 5 Bdrm Detached Smart House With State Of The Art Finishings From Amazon,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bed Terrace Duplex,Ikota Neighbourhood Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 7 Bedroom Detached Duplex With 2 Kitchen,Lekki Lagos,₦,"120,000,000",0,1,0,7 beds,7 baths,8 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonettes,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3bedrroom Flat,Off Esther Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Executive 4bedroom Detached,Buena Vista Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Specious 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Townhouse,Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplexes,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Directly Facing Omorine Johnson Road Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Greatly Built 2 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,3 baths,3 Toilets +4 Bedroom (all Ensuite) Semi Detached Duplex With Self Compound Home,D Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Mini Flat,In A Good Neighborhood Osapa London Lekki Lagos,₦,"25,000,000/year",0,1,0,1 beds,1 baths,2 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Contemporary 5 Bedroom Detached Duplex House,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Landed Property For Sale In Nicon Town Estate, Lekki Lagos",Palmgrove Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Flat,. Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,5 baths,4 Toilets +Block Of 6 Flats,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,3 beds, baths, Toilets +1bedroom Apartment,Off Orchid Rd Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Unique 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Right Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exclusive 1 Bedroom Loft Duplex,"Orchid Hotel Road, Eleganza Ikota Lekki Lagos",₦,"42,000,000",1,0,0,1 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Built 5bedroom Duplex,Orvhid Road Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,4 Toilets +A Brand New 5 Bedroom Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New Luxury 2 Bedroom Apartment,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Brand New 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Fully Detached Duplex +bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Oceanbay Estate, Off Orchid Road Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Osapa London Lekki Lagos,₦,"150,000",1,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets +5 Bedrooms Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +*decently Finished 4 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan 3 Bedroom Flat,"Godmade Connect Court 4, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"64,800,000",0,0,0,3 beds,3 baths,4 Toilets +Super Spacious Decently Built 4 Bedroom Semi Detached Duplex With Bq, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex House With Bq,Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Affordable 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedrooms Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Gated Area By Chisco Busstop Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Duplex + 2 Room Bq,"Northern Foreshore Estate, Chevron Drive Chevron Lekki Lagos",₦,"300,000,000",1,1,1,5 beds,5 baths,7 Toilets +A Massive 5 Bedroom Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Furnished 3bedroom Flats,Ikate Lekki Lagos,₦,"70,000,000",0,1,1,3 beds,3 baths,4 Toilets +A Brand New Cozy 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Duplex + Bq,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +6bedrooms Detached Duplex With Swimming Pool And 2rooms Bq.,Inside Vgc Estate Vgc Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +Fantastic Built 4 Bedroom Duplex House With A Room Boys Quarters.,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern Facilities 6bedrooms Duplex All Ensuit + Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,7 baths,8 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Osapa Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +Well Built 5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Classy Spacious 4 Bedroom Terrace In A Gated Estate,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 2bedroom Flat With Classy Finishing And A Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +New Luxury Executive Miniflat,Ikate Lekki Ikate Lekki Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets +2 Bedroom Flat Apartment,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Shop,Idado Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,4 Toilets +Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,3 baths,2 Toilets +Land For Sale In Vgc Lekki Lagos,Lekki Vgc Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Decently Finished 5 Bedrooms Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Fully Service 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale At Lekki With 24/7 Power,Lekki Phase 2 Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Orchid Road Lekki Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Semidetached Duplex,"Off Nike Art Gallery, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,5 beds, baths, Toilets +Fully Automated 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets +Waterfront Land For Sale In Orange Island Estate Lekki Lagos,Orange Island Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000/sqm",0,0,0, beds, baths, Toilets +Luxurious 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Astonishingly Beautiful 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +"10,756sqm Waterfront Bareland","Maroko Foreshore Scheme, Lekki Phase 1 By Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Apartment With 3 Months Payment Plan,Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Massive Exclusive 5 Bedroom +bq Fully Detached Duplex.,Serene Environment Vgc Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Grandeur Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With 2service Quarters (bq),Road .... Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +"*??decently Finished 4 Bedrooms Semi Detached Duplex In Ikota, Lekki",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"*??luxuriously Finished 5 Bedrooms Fully Detached Duplex With Bq In Ikota, Lekki",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive 3bedroom Maisonette With Bq And Gym,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +Fully Serviced 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished Contemporary 5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Own A Piece Of The Millennial Bay Towers Smart Residence,Perez Drive Lekki Phase 1 Lekki Lagos,₦,"17,000,000",1,0,0,1 beds,2 baths,2 Toilets +Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Integrity Tower: 4 Bedroom Maisonette At Lekki Phase 1,. Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Finished & Spacious 4 Bedroom Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex With Bq,Lekki County Road... Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex With Bq,Road Inside Vgc Estate Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Automated 4 Bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Vacant 3 Bedrooms Flat + Bq,Agungi Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Luxury 4bedroom Terrace Duplex With Bq,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Mini Flat,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Fully Detached Duplex+bq,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished And Serviced 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Purpose Built 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Brand New 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Duplex With A Bq,Jasen Close Ologolo Lekki Lagos,₦,"83,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Spacious 2 Bedroom Ensuite Flat,"Chevron, Lekki, Lagos. Chevron Lekki Lagos",₦,"50,000,000",1,0,1,2 beds,2 baths,3 Toilets +Magnificent 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,4 Toilets +Land,Chevron Drive/lekki/ Chevron Office Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex,Near Victory Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Dunvale Court V: 4 Bedroom Maisonette,Orchid Hotel Road Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Sophisticated 5 Bedroom Detached Duplex House With A Room Boy's Quarters, Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Perfectly Built 5 Bedroom Detached Duplex House With A Room Boy's Quarters., Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Building Of 33 Retails Stores Various Floors,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive 3 Bedroom Apartment,Megamound Estate Ikota Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,5 baths,5 Toilets +Astonishingly Beautiful 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Luxury Terrace House,Lekki Phase 1 Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Studio Apartment,Lekki Phase 1 Lekki Lagos,₦,"33,900,000",1,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Luxury Flat,Agungi Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,3 baths,3 Toilets +Luxurious 5 Bedrooms Fully Detached Penthouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificently Built 4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Townhouse,Orchid Road By The 2nd Lekki Tollgate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom House,Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex +bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,6 beds,6 baths,7 Toilets +Self Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +1099.244sqm Bareland,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,0 beds,0 baths,0 Toilets +1 & 2 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxury And Spacious 4 Bedroom Detached,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq And Study Room,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Serviced Flat,Ikate Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxurious 4 Bedroom House With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"750,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex With A Room Bq,Abraham Adesanya Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 1 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,1 beds,2 baths,1 Toilets +800sqm Of Land,Cowrie Creek Ikate Lekki Lagos,₦,"250,000,000",1,0,0,0 beds,0 baths,0 Toilets +Exquisite Brand New 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Investment Land In Osapa By Hampton,Hampton Island Osapa London Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Terrace Duplex With Bq,Jakande Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Brand New Beautifully Designed 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 4bedroom Duplex,Buena Vista Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Super Spacious And Well Finished 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Contemporary Semi Detached Duplex,Nice Environment Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Bunglaow With 24hrs Power,"Serviced Estate, Orchid Hotel Road Ikota Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury Fully Detached 5 Bedroom Duplex With 1 Room Bq,Agungi Agungi Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Nos. 5 Bedroom Duplexes,Abiodun Tolani Street Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sophisticated 4 Bedroom Semi Detached Duplex House With A Room Boys Quarters.,Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +513sqm Land,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"175,000,000",0,0,0,1 beds,2 baths,2 Toilets +Fully Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +4bedroom Terraced Duplex With Bq,Gated And Secured Area Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 7 Bedroom Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets +5 Bedroom Detached Dupex With A Bq,Orchid Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Very Serene And Secure Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Semi Detached Duplex With Bq And Study Room At Lekki,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets +Lovely Furnished 3 Bedroom Flat & 1 Room Bq With 40kva Generator,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,1,3 beds,3 baths,4 Toilets +Beautifully Designed 5bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Duplex + 1 Office Room,Located At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With A Room Bq.,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bareland With Approval For 4 Floors,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Walk In 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,A Very Nice Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Paved Road, Salem Busstop Ilasan Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 (numbers) Of 5 Bedroom Detached Houses,Victory Park Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 2 Bedroom Flats With Excellent Finishing,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached House,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex, House",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Spacious 3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Up For Sale Is This 4 Bedroom Duplex At Lekki,Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced And Gated 2.081 Hectares Of Dry Land,"Vgc Round About, Between Vgc Gate And Ikota Shopping Complex, Vgc Lekki Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Terrace Duplex Carcass With A Bq,"Nike Art Gallery,wakanow.. Ikate Lekki Lagos",₦,"52,000,000",0,1,0,2 beds,3 baths,3 Toilets +Beautifully Built And Spacious 4 Bedroom Semi Detached Duplex House With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Specious Terrace Duplex House,D Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +One Acre Of Land,Jakande Jakande Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With A Beautiful Ambience,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 3 Bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Duplex,Pine Estate Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,0,1,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Gorgeously Built 5 Bedrooms Semi Detached Building,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"I Hectare [10,000 Sqm) Of Land On Kusela Road..ikate.",Kusela Road By Chisco Roundabout Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +"1, 2, 3 & 4 Bedroom At Jakande Lekki",Jakande Lekki Lagos,₦,"80,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Ensuite Duplex With A 2 Bedroom Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Smart 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Flat,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets +Commercial Plots Of Land Measuring 7774sqm,Elf Bus Stop Lekki Expressway Jakande Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"72,000,000",0,0,1,4 beds,5 baths,4 Toilets +3 Star Hotel,Chevron Drive Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Selling Now Is This Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"103,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent Built 5 Bedroom Detached Duplex With Bq And Study Room, Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Semi Detached Duplex With A Bq,By Chevron Tollgate Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq.,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4bedroom Terrace Duplex,By Vgc Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Water Front 4 Bedroom Terrace House With A Bq,Ladipo Latinwo Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedrooms Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Decently Finished Luxury 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New (almost Completed) 4 Bedroom Detached Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Crafted 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @ Ologolo, Lekki",Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Hotel With 33 Rooms On 1000m²,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Ologolo Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"250,000,000",1,0,1,4 beds,5 baths,4 Toilets +12000sqm Waterfront Land Off Admiralty Way Lekki With Lagos State C Of O,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,1,0, beds, baths, Toilets +Affordable 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semidetached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Contemporary Duplex With Swimming Pool.,Serene Environment Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Apartment,Jakande Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,4 baths,3 Toilets +Unfurnished 3bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets +5bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +New Built 4 Bedroom Semi Detached House With Bq For At Lekki,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Fully Semi Detached Duplex,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,0 beds,0 baths,0 Toilets +Existing Workshop,Lekki Epe Express Way Chevron Lekki Lagos,₦,"6,000,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Furnished Royal Standard Finished 5 Bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Mega 5 Bedroom Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,7 baths,7 Toilets +2bedroom Flat,"Ilasan,salem Axis Ilasan Lekki Lagos",₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +Two Unit Of 5 Bedroom Detached Duplex With Swimming Pool.,Nice Environment Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Penthouse,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Distress 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets +Lauren Ashley Court: 2 Bedroom Flat + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets +Fully Furnished 5 Bedroom Detached Mansion With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex With 2room Bq,Inside Vgc Estate. Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Pool And Cinema,Ikota Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool,A Very Beautiful Estate Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Detailed Spacious 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 1 Bedroom Flat,Ologolo Lekki Lagos,₦,"44,000,000",0,1,0,1 beds,1 baths,1 Toilets +Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,1,5 beds,6 baths,5 Toilets +Luxurious 3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",1,0,1, beds, baths, Toilets +A Luxurious 2bedroom Terrace Duplex+ Bq With Excellent Facility,Abraham Adesanya Round About Lekki Pride Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace House,Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,Nice Environment Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Newly Built Fully 5bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Oral 2 Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With Swimming Pool.,Nice Environment Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House Nestled In A Serene And Secure Estate.,Serene And Secure Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,5 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex,A Very Beautiful Estate Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Mini Flat Apartment,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +3 Bedroom Semi Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Banking Development Project,Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Victory Park Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrance Duplex Duplex With Bq And Pent House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Well Built 5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Commercial Land,Chevron Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Room Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Carltongate Estate Lekki Lagos,Carltongate Estate Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Home,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Flat,Close To Lekki Phase 1 By Ikate Right Hand Side Ilasan Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool.,Nice Environment Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Vgc Estate. Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,005",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Flat Carcass.,Nike Art Gallery/elegushi Beach Road. Ikate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +12000sqm Waterfront Land Off Admiralty Way Lekki With Lagos State C Of O,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,1,0, beds, baths, Toilets +Contemporary Design Smart 5 Bedrooms Detached Duplex With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Payment Plan,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Smart 4 Bedroom Terrace Duplex,Orchid Road 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,6 Toilets +Brand New 3 Bedroom Flat,Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4bedroom Semi Detached Duplex With A Room Bq .,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Luxury Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,0,0,2 beds,3 baths,2 Toilets +"Luxury 4 Bedroom Terrace Duplex With Bq, Lekki Pay And Pack In",Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Lovely 4bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Maiyegun Beach Estate: Buy 600sqm, 800, 1000sqm At Jakande Lekki",. Jakande Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000m2 Mixed Use Land","Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"1,070,000,000",0,0,0, beds, baths, Toilets +Newly Build 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +455sqms Land,Victory Park Estate Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exclusive 5 Bedrooms Detached Duplex,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Jakande Lekki Lagos,₦,"270,000,000",0,0,0,4 beds,5 baths,5 Toilets +Affordable 4bedrooms Terraces,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Finished 4 Bedrooms Townhouse With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Specious 5 Bedroom Duplex With Bq,Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Ensuites Modern 4bedroom Condominiums Terrace Duplex Self Compound With Bq,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq (corner Piece),"Orchid Hotel Road, Lekki Lagos Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fantastic Built 4 Bedroom Duplex House,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Alternative Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Unique 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 4bedroom Duplex,Located In A Very Beautiful Estate Off Shoprite Road Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,4 beds,4 baths,5 Toilets +Service 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,1,3 beds,3 baths,4 Toilets +A Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached House,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,By Enyo Filling Station Elegushi Beach Road Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Terrace Duplex With Bq,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex With An Open Plan Kitchen,A Very Beautiful Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Beautifully Built 5 Bedroom Terraced Duplex,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Lekki County Estate Vgc Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Invest In This Exquisitely Finished & Spacious 3 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Brand New Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Right Hand Side By Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets +3 Bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Fully Detached Duplex,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,"Off Admiralty Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace At Lekki Phase 1,. Lekki Phase 1 Lekki Lagos,$,"295,150",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Terrace Duplex,Ajah Lekki Lagos,₦,"47,000,000",0,0,1,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Near Enyo Filling Station Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +"7bedroom Fully Detached Duplex With 3rooms Service Quarters, Swimming Pool,and Water View.",Vgc Estate. Vgc Lekki Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets +4bedroom Semi Detached Duplex With Bq,Idado Estate Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedrooms Fully Detached,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 3 Bedroom Flats In A Serene Neighbourhood,"Ocean Breeze Estate, Ologolo, Ologolo Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely And Tastefully Finished 4 Bdrm Semi Detached Smart House,White Sand Beach Estate Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +3 Bedroom Apartment And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 2 Bedroom Apartment,Agungi Agungi Lekki Lagos,₦,"38,000,000",0,0,1,2 beds,3 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Ofifice Building,Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +25sqm Mall Space,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +Luxurious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets +New Luxury 3bedroom Maisonette,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,5 baths,5 Toilets +Luxurious 3bedroom Semi Detached Duplex With A Bq,Abraham Adesanya Round About Lekki Pride Estate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 4 Bedroom Duplex With Bq,"Gated Area, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,Serene Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2bedroom Duplex With Bq In A Serene Environment,Abraham Adesanya Round About Lekki Pride Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Nice Environment Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegantly Built 3bedroom Flat With Pool,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 2 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +Well Maintained 4 Bedroom Duplex With Bq,Mini Estate By Chisco Busstop Ikate Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Event Centre,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Serviced 2bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq And Gate House,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Serene Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Off Freedom Way Itedo Lekki Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex + 1 Room Bq,"Southern View Estate, Chevron, Lekki, Lagos. Chevron Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedrooms Penthouse,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex With A Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +State Of The Art 1bedroom Flat With Modern Finishing,Megamound Estate Ikota Lekki Lagos,₦,"28,000,000",1,1,0,1 beds,1 baths,1 Toilets +Luxurious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,0,0,2 beds,3 baths,2 Toilets +4 Bedroom Terrace Duplex In Lekki Phase 1,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mini Flat In A Secure & Beautiful Estate,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets +2 Hectares Of Vacant Land,"On Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"4,140,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Duplex With Boys Quaters,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Perfectly Built And Specious 5 Bedroom Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"158,000,000",0,1,0,5 beds,5 baths,6 Toilets +Service 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets +Gorgeous Luxury 5 Bedrooms Fully Detached Home,Lekki County Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +Magnificently Built 4 Bedroom Detached Duplex House With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly And Exquisitely Finished 8units Of 4bedroom Terrace Duplex In Lekki 1(rock Drive ),Rock Drive Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bedrooms Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisite 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Serviced 4 Bedroom Terraced Duplex With A Room Bq With Quality Finishing And Good Space,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nicely Built 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Furnished 4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 2bedroom Apartment,Orchid Road By Eleganza Bus Stop Chevron Lekki Lagos,₦,"31,000,000/year",1,0,0,2 beds,2 baths,3 Toilets +Contemporary 5 Fully Detached & 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets +675 Sqms Land,Vgc Estate Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +"20,000m2 Parcel Of Land","Freedom Way, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"7bedroom Fully Detached Duplex With Two Service Quarters, Water View, Swimming Pool.",Road**** Vgc Lekki Lagos,₦,"280,000,000",0,0,0,7 beds,7 baths,7 Toilets +12 Rooms Fully Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,"Chevron, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 2 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex In A Mini Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Massive Contemporary 5 Bedroom Fully Detached Duplex,Very Secure And Serene Environment Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets +1300sqms Of Land,Vgc Estate Vgc Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Alpha Beach Road Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Serene And Secure Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Ikate Lekki Lagos,₦,"370,000,000",0,1,1,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +500sqm Land,"Sapati, Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,Abijo Gra Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached House,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Maisonette,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Maisonette,"Orchid Road, Chevron Lekki Lagos",₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Built 4bedroom Terrace In A Serene Estate,"Orchid Road, Chevron Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,7 Toilets +Well Planned And Developed 2 Bedroom,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Serviced 4 Bedoom Terrace+bq,Spring Bay Estate Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Bakare Estate Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Meadow Hall Road/horizon 2 Estate Ikate Lekki Lagos,₦,"62,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Ilasan Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Fully Furnished Massionette,"Horizon Height By Spar Road, Ikate Lekki Lagos",₦,"90,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land; Oceanfront And Gated,Ilasan Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse+bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Vgc Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +10 Units Of 4 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Self Contain Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Serviced Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Amazing 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +"These Lovely Units Of 1, 2 And 3 Bedroom Apartment",Ikate Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets +This Luxurious Finished 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 2 Bedroom Apartment,Lekki Lagos,₦,"78,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Two (2) Units Of Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,0 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Spacious 1,2,3 Bedroom Apartments",Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront 3 Bedroom Apartment,Lekki Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets +Elegantly Finished 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Units Of Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semii Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Multiple Units Of Serviced 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Lovely 3bedroom Apartment,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +These Lovely 2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Luxurious Finished 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Three (3) Units Of 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +This Lovely Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached With 2 Rooms Bq,Lekki Lagos,₦,"900,000,000",0,1,0,6 beds,6 baths,5 Toilets +Spacious 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With A Bq In Ologolo,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +800 Sqm Plot Of Land,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House In Nicon,Nicon Town Lekki Lagos,₦,"550,000,000",0,0,0,5 beds, baths, Toilets +3 Bedroom Fully Detached Castle Bungalow,Oribanwa Bustop Awoyaya Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +1 Unit Of 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,6 baths,7 Toilets +Land,"Peaceville Estate, Badore Ajah. Lagos. Lekki Lagos",₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,0 Toilets +4bedroom Semi Detached Duplex*,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedrooms Duplex,Osapa Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex*,2nd Tollgate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex*,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex*,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex*,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex*,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex*,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex*,Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex*,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex*,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +Lavender Garden,Lekki Phase 2 Lekki Lagos,₦,"50,000,000/year",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 6bedroom Detached House,Off Road 3 Vgc Vgc Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,6 Toilets +2 Units Of 5 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Home,Orchrd Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached,Off Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Northern Foreshore/ Chinese Esate Chevron Lekki Lagos,₦,"240,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 2bedroom Terrace Duplex,"Alex Court Ilasan, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Exclusive 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,7 baths,8 Toilets +Fully Serviced 4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq,Tulip Haven Estate At Chevron Alternative Road Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Well Furnished 4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Triplex With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Home,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Semidtached Duplex With A Bq,I Dado Estate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Home With Bq,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Mini Flat,Ologolo Road Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Maisonnette,Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,6 baths,7 Toilets +Tastefully Finished 5 Bedrooms Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace In A Serene Environment,Vgc Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex,Off Chevron Tollgate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached With Bq,Kusenla Road/horizon 1 Ikate Lekki Lagos,₦,"85,000,000",1,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Road Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,7 Toilets +Brand New 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Northern Foreshore Chinese Estate Chevron Lekki Lagos,₦,"170,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Furnished 4 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,"Prime Water Gardens Off Freedom Way, Ikate Lekki Lagos",₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Fully Detached Suplex With 2 Bq,"Gbara, Jakande, Lekki, Lagos. Jakande Lekki Lagos",₦,"70,000,000",0,0,0,6 beds,7 baths,7 Toilets +Newly Out 80 Plots Of Land,"Ògombo Road, Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrece For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 5 Bedroom Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 2 Bedroom Luxury Apartment,"Inside A Gated Street, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +7 Bedroom Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,0 baths,0 Toilets +Bare Land,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Detached House,The Rock Drive Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +110000sq (11 Hectares),Ilasan Ilasan Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Beautiful And Affordable 4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Fully Fenced Commercial Land,Along Lekki Expressway Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Really Wonderful Sophisticated 5 Bedroom Fully Detached Duplex In A Serene Estate With 24 Hrs Light,Orchid Road Lekki Ikota Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +S Fort Estate Besides Lekki Palm City.. Executive And We'll Finished Brand New 4 Bedroom Fully Detached Duplex With Bq... Price:# 90m Net Title: Governor Concent.,S Fort Estate Besides Lekki Palm City Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq,"Freedom Way, Besides Orange Island Lekki Phase 1 Lekki Lagos",₦,"140,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +Whales County Estate,Lekki Lagos,₦,"52,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With 2 Bedroom Apartment,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,500,000",0,1,0,1 beds,1 baths,2 Toilets +Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex + Bq,"Silicon Estate, Alpha Beach Igbo Efon Lekki Lagos",₦,"58,000,000",0,0,0, beds, baths, Toilets +The Lavida 4 Bedroom Semi Detached Smart Home,Urban Prime Estate Lekki Phase 2 Lekki Lagos,₦,"79,500,000/sqm",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace House,Orchid Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Corner Piece Land, Ilasan Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Orchid Road, Lekki. Lagos Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ilasan Estate Ilasan Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex,"Orchid Hotel Road, Lekki Phase 2 Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,"Alma Beach, By Lekki 3rd Round About, Lekki. Ikate Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Land For Sale At Chevron Drive, Lekki Lagos","Chevron Drive Facing The Road, Neighbourhood Are, Atlantic Mall Estate, Noveral Mall, Lagos Conventional Centre, Etc Chevron Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets +Taste To Finish Newly Built 2 Unit Of 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartments,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +2300 Sqms Land,Ikate By By Elf Bus Stop Ikate Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cheron Drive Chevron Lekki Lagos,₦,"95,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Wing Of 4 Bedroom Duplex With 2 Room Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Joint Venture Land,Ilasan Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex With Bq,Salem Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Apartment,White Oak Estate 2 Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,3 baths,4 Toilets +Land,Beechwood Estate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Semi Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"270,000,009",1,1,1,5 beds,5 baths,6 Toilets +4 Bedrooms Duplex,Ikota Estates Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex Off Plan Sales,"Hanover Court, Orchid Road Chevron Lekki Lagos",₦,"58,500,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished Top Notch 4 Bedroom Duplex In Agungi Lekki,Agungi Lekki Lagos,₦,"99,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Duplex With Pool,Ikota Lekki Ikota Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +Commercial Building, Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Tastefully Built 4 Bedroom Duplex With The Latest State Of The Art Finishing.,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A 3 Acres Waterfront (12,000 Square Metres) Of Land Is Available",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Serviced Brand New 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ocean Growth Homes,Ikota Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Brand New 4 Bedroom Semi Detached Duplex , Located In A Secure Estate",Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Sophisticated 5 Bedroom Detached Duplex,Bera Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"89,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment Ground Floor,"Dupe Oguntade Street M, Behind Enyo Filling Station Chisco Ikate Lekki Lagos",₦,"44,000,000/year",1,1,0,3 beds,3 baths,4 Toilets +"88 Units Of 2bedroom Apartment (2 Toilets + Guest, Fitted Kitchen) And 4 Bedroom Terrace Duplexes (3 Toilets + Guest, Fitted Kitchen )",Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Inexplicable Smart & Switchless 5bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hours Light,Orchid Road Chevron Lekki Lagos,₦,"125,000,000",1,0,1,5 beds,6 baths,6 Toilets +Land,Wfy Ilasan Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Dtached Duplex With A Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets +Waterview Bare Land Measuring Approximately 3000 Square Meters,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished 5bedroom Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Alpha Beach Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,3 baths,3 Toilets +4bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Luxbury Leisure Home Vgc Vgc Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exceptional Luxury Mini Flats,Godmade Connect Court Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Detached Duplex And A Bq,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 2 Bedroom Flat,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,6 Toilets +Spacious 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxuriously Furnished 4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",1,0,1,4 beds,5 baths,5 Toilets +5bedrooms Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Duplex Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"70,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Brand New Spacious Serviced 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ilasan Estate Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Terrace House,Ikota Villa Lekki Lagos Ikota Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets +Shop Spaces And Rooftop Bar In Upcoming Mall (q Mall),Lekki Beach Road Jakande Lekki Lagos,₦,"3,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Maisonette,Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Ensuite Terrace,Orchid Road Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Tlat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 4bedroom Duplex,Gbola Salami Agungi Lekki Lagos,₦,"130,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5bdrm Mansion In Megamound Estate, Ikota For Sale","Megamound Estate, Lekki County Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedrooms Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Newly Built 4 Bedroom Semi Detached,Lekki County Road Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Spacious Serviced 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxuriously Built 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fully Serviced And Decently Finished 4bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +56 Units Of 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Corner Piece Terrace Duplex,Off Orchid Hotel Road Oral Estate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Rear 2bedroom Flat.,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Detached Duplex + 2 Rooms Bq Each,Lekki Right Hand Side Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Flats With Modern Facilities,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000/year",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,1,4 beds,4 baths,5 Toilets +1 Bedroom Flat (carcass),Chervon Chevron Lekki Lagos,₦,"22,000,000",1,1,0,1 beds,1 baths,1 Toilets +The Most Beautiful And Affordable Furnished House,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets +Newly Built 4 Bedroom Terraced Duplex,Elf Neighborhood Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Harris Drive Vgc Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Offplan 3bedroom Flats,Chief Collins Str Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Nice Fittings,"By 2nd Toll, Well Secured Estate Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 6 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxurious 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Salem Ilasan Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Two Plots Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With 3 Floors,Victoria Arobieke Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +40 Units Of 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0, beds, baths, Toilets +Newly Constructed Luxurious 4 Bedroom Semi Detached Duplexes,Harris Drive By Vgc Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Mansion For Sale In Lekki Phase I,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Kusenla Ikate Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Finished 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,0 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Bera Estate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,7 Toilets +"4 Bedroom Terrace With Bq, Swimming Pool And Gym",Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Semi Detached Duplex,Alpha Beach Road Beside Admiralty Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Apartment,Vgc Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Serviced Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace With Bq, Swimming Pool And Gym",Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Very Spacious 5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Fully Detached Bungalow + Bq,Lekki Lagos,₦,"30,100,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace House,"Oral Estate, After The 2nd Toll Gate, Lekki Epe Express Way, Oral Estate Lekki Lagos",₦,"70,000,000",1,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached House With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Off Kunsela Road Ikate Lekki Lagos,₦,"70,000,000",1,0,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious 3 Bedroomterrace Duplexes,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spaciously Built Luxury 5 Bedroom Semi Detached Duplex With Bq And Lush Private Cinema,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,6 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Off Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,6 baths,7 Toilets +Well Built 4 Bedroom Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached With A Room Bq,Lekki Lagos,₦,"75,000,000",0,0,1,4 beds, baths, Toilets +"88 Units Of 2bedroom Apartment (2 Toilets + Guest, Fitted Kitchen) And 4 Bedroom Terrace Duplexes (3 Toilets + Guest, Fitted Kitchen )",Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex,Sangotedo Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Very Beautiful 5 Bedroom Detached Duplex In A Lovely Estate With 24 Hours Light And Good Security,Orchid Road Chevron Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land With Foundation,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Unit Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,3 beds,0 baths,0 Toilets +Very Spacious 2 Bedroom Flat,Ikate Lekki Lagos,₦,"37,000,000/year",0,0,0,2 beds,3 baths,3 Toilets +A 20000sqm Of A Dredged Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive Lovely 5 Bedroom Fully Detached Duplex With 2 Room Bq,Logos Church Street Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Residential Plot Of Land Measuring 666sqm With Governor's Consent,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Apartment With Bq With 24 Hour Power,Prime Water View Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +Spacious 3bedroom Serviced Apartment With A Bq,Romay Garden Estate Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment,Agungi Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +Block Of 4 Flats Of 2 Nos Of 2 Bedrooms And 2 Nos Of Mini Flats,Ifako Lekki Phase 2 Lekki Lagos,₦,"55,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets +"Well Maintained 2 Bedroom Flat With Contemporary Finishings In A, Secured Estate",Chevron Lekki Lagos,₦,"37,000,000",1,0,1,2 beds,2 baths,3 Toilets +Whales County 2,Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +4 Units Of 3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Town House,Ike Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +The Wealth Place,Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,6 baths,7 Toilets +Luxury Serviced New 2 Bedroom Flat,Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Terrace House With A Spacious Bq,Kunselsa Road Ikate Lekki Lagos Ikate Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 3brdroom Flat,Lekki Right. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace With Pool,2nd Toll Gate Orichd Road Oral Estate Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,4 Toilets +New Off Plan Serviced 2 Bedroom Apartment,Royal Pine Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets +Superbly Furnished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Idado Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette+bq,Pelican Hotel Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Tastefully Finished Semi Detached Duplex,Ikota G.r.a Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 2000sqm Land 5 Bedroom Detached House Plus 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,4 baths,0 Toilets +Newly Built 2bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,1,0,2 beds, baths, Toilets +4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive Water Front Land, Ilasan Lekki Lagos,₦,"130,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace In A Serene Environment,Vgc Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets +Brand New Spacious 2 Bedroom Flats,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Detailed 5 Bedroom Fully Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,7 Toilets +Amazing 6 Bedroom Detached Mansionette,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,0,0,6 beds,7 baths,7 Toilets +Beautifully Designed 5bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,7 Toilets +Beautiful And Homely 5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevy'view Estate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedrooms Detached Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Home,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Chevy'view Estate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Izu Court,Chevron Lekki Lagos,₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets +Majestic 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Fully Serviced Terrace Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Inexplicable Fully Furnished 6 Bedroom Fully Detached Duplex,"Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"150,000,000",0,0,1,0 beds,6 baths,8 Toilets +Spacious Four Bedroom Semi Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets +Amazing 5bedroom Detached Mansionette Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Apartments,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Duplex,Chevy'view Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Detached Smart House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With A Study/home Office & Bq (off Plan),Off Durosimi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,Ikota Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex + Bq On 421.227 Sqm (gov. Consent),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Excellent Finishing 4 Bedroom Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Furnished Apartment With Fitted Kitchen & 24/7 Electricity,Horizon 2 Estate By Meadows Hall Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Brand New 6 Units 3 Bedroom Terrace Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Equisitely Finished 5 Bedroom Detached Duplex With A Bq,Alternative Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisite 5 Bedroom Semi Detached Duplex + Bq & Terrace,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"1,005sqm Vacant Land Plot With C Of O",Pinnock Estate Jakande Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +25 Plots Of Fenced Vacant Land With C Of O,Facing Expressway Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +"10,000sqm Fenced Vacant Land (governor's Consent)",Opp. House On The Rock Church Ilasan Lekki Lagos,₦,"260,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +New House 5 Bedroom Spacious Detached Duplex,Alternative Chevron Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With A Room Bq,Alternative Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +10 Units 2 Bedroom & 2 Units 4 Bedroom Apartment,Chevy View Estate By Chevron Hq Chevron Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom En Suite Detached Duplex,Chevron Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Maisonette,Lekki Lagos,₦,"79,000,000",0,1,0,3 beds,4 baths,4 Toilets +Serviced 2bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached With Bq,Harris Drive *(shapata)* By Vgc Off Lekki Epe Express Road. Vgc Lekki Lagos,₦,"77,500,000",1,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Well Finished 2 Bedroom Flat,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Well Finished 3 Bedroom Maisonette Apartment,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Pretty Well Built 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Penthouse,Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets +Eco Friendly 3 Bedroom Apartment,Emcel Apartments Is Located At Nicon Town Lekki Epe Express Way Intersection Adjacent Enyo Fuel Station Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment,Godmade Connect Court 4 Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +Smart Features 2 Bedroom Flat,Court 4 Estate Is Situated At Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +Land,Orange Island Lekki Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"64,000",0,0,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Oral Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Alfa Beach Road Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced House,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths,4 Toilets +Plot Of Land,Cowrie Greek Estate Ikate Lekki Lagos,₦,"235,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Plots Of Land,Chevy Estate Chevron Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +60 Hectares Of Land,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Arcadia Estate By Pinnock Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Bungalow,Orchid Road Chevron Lekki Lagos,₦,"26,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +50 Plots Of Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale In Lekki Phase I,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Pinnock Beach Estate Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +3&2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Plaza Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Penthouse + Bq,Evermark Chevy Castle By Atlantic Center Oral Estate Chevron Mall Uba Chevron Plc Ltd Chevron Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex With Bq,Victoria Garden City Vgc Lekki Lagos,₦,"75,000,000/day",0,0,1,4 beds,4 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex In A Serene Estate,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Mansionette In A Serene Estate,Lekki Lekki Phase 1 Lekki Lagos,₦,"370,000,000/month",0,1,1,5 beds,5 baths,6 Toilets +Spacious 4bedroom Duplex House,Thomas Lekki Lagos,₦,"50,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Cofo Land On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets +Spacious 4bedroom Terrace Duplex House With Cofo,Eleganzer Chevron Lekki Lagos,₦,"56,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 2 Bedroom Flat With C Of O,Eleganza Chevron Lekki Lagos,₦,"30,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +4bedroom Semi Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"7,000,000",0,1,1,4 beds,4 baths,5 Toilets +Affordable Housing,Oral Estate Ikota Lekki Lagos,₦,"77,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale 4 Bedroom Terrace Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Manssionette,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Apartment,2nd Toll Gate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Open Terrace,Lekki County Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex With Bq,Lake View Park Estates... Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Chevron Water Front All Time Luxury Duplex With First Floor Water Fall & Infinity Swimming Pool,Chevron Drive Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent Semi Fully Detached Duplex,Megamouns Estate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,6 baths,0 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +Location: Lekki Phase 1 Off Freedom Way Size: 8 Hectares Price: 13b Title: Cofo ??[redacted],Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",1,0,0, beds, baths, Toilets +1000 Sqm Water View Land @ Lekki Phase 1 With C Of O,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0, beds, baths, Toilets +Decently Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets +900sqm Of Land,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +900sqm Of Land,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Newly Built 2&3bedroom Apartments With Bq, Swimming Pool And Gym",Kohinoor Ikate Lekki Lagos,₦,"75,000,000/month",1,1,0,3 beds,3 baths,3 Toilets +An Office Building For Sale At Lekki Epe Expressway Lekki,Igbo Efon Lagos Igbo Efon Lekki Lagos,₦,"5,000,000,000,000",0,0,0, beds, baths, Toilets +1000sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +650sqm Of Land,Lekki Phase 2 Lekki Lagos,₦,"185,000/sqm",0,0,0, beds, baths, Toilets +1000sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached House With Bq And Cinema Room (all Rooms Ensuit),Ikate Lekki Lagos,₦,"190,000,000/day",1,1,0,5 beds,5 baths,6 Toilets +917.046sqm Of Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Super Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3bedroom Townhouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 3bed Townhouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 3bed Townhouse Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Brand New 5 Bedroom Detached House With Swimming Pool And Bq For Sale In Ikate,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolor Lekki Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Nicely Built 2bed Apartment Salling For 50m,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Fully Automated 4 Bedroom Maisonette For Sale In Ikate Elegushi,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Royal 4 Bedroom Maisonette,Evermark Chevy Castle Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex In A Secured Neighborhood,Ikate Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Ikate Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built And Executive 5 Bedroom Semi Detached Duplex For Rent At Lekki, Lagos.",Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets +For Sale 2 Units Of 5 Bedroom Duplex With At Pinnock Beach Estate Osapa London Lekki Lagos,Pinnock Estate Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Luxurious 5 Bedroom Fully Detached Duplex For Rent At Lekki Phase 1, Lagos",Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedrooms Maisonette*,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 2bedroom Terrace,Ikota Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,3 baths,3 Toilets +For Sale Newly Built 5 Bedroom Duplex At Norther Foreshore Estate Lekki Lagos,Norther Foreshore Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Cowrie Creek Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex *,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House*,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex *,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex*,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Structured 5 Bedroom Detached Duplex For Sale At Orchid Road. Lekki,Orchid Rd Lekki Lagos,₦,"175,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex *,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House*,Lekki County Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Home*,Lekki County Home Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semidetached Duplex In Vgc,Vgc Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Byuilt 5 Bedrooms Detached Duplex At Lekki,Northern Foreshore Estate Lekki Lekki Lagos,₦,"270,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Five Bedrooms Fully Detached Duplex For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Five Bedrooms Fully Detached Duplex For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale Newly Built Luxurious 5 Bedroom Fully Detached Duplex In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale Newly Built Luxurious 5 Bedroom Fully Detached Duplex In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex For Sale 4 Units,Orchid Lekki Second Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds, baths, Toilets +4bedroom Fully Detached For Sale In Osapa,Secured Estate In Osapa Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex For Sale 4units,Orchid Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds, baths, Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette*,Abijo Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets +4bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +600 Sqm Land*,Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Duplex,"Ikota, Lagos Ikota Lekki Lagos",₦,"55,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +Fenced And Sandfilled Land In Ikate Is Available,Seagate Estate Ikate Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +New House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +3 Units Of 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +1300 Sqm Land*,"Admiralty Road, Lekki Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets +1300 Sqm Land*,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds, baths, Toilets +Luxury 5 Bedrooms Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced House*,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Massive 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3,594sqm Bare Land For Sale In Vgc Prime Water Front",Vgc Lekki Lagos,₦,"560,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +5500sqm Land For Sale,Behind Nicon Town Ikate Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Pent House Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +6 Units Of 5 Bedroom Detached Houses With Bq,Felix Alarape Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +300sqms Land*,"Baale Street, Itedo Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment With Bq,Off Orji Murray Street Ilasan Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +930sqm Corner Piece*,Pinnoch Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 & 2 Bedrooms Apartments,Off Orji Murray Street Ilasan Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex*,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex*,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Furnished And Well Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Terrace *,"Victoria Crest 3, Orchid Road Lekki Lagos",₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,3 Toilets +Spacious 2bedroom Flats*,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Vgc Lekki Lagos,₦,"480,000,000",1,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,3 baths,3 Toilets +2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,"Orchid, Chevron, Eleganza, Lekki Conservation Centre Chevron Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,0 baths,3 Toilets +Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Inside Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4bedroom Semi Detached Duplex With A Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"6,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +9 Units Of 4 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Detached House,Second Tole Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Finished 5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 4bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +"1,2,3 Bedroom Flat",Drive Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,Drive Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Vgc, Mega Chicken, Ikota Shopping Complex, Lekki County Estate, Ikota Ikota Lekki Lagos",₦,"150,000,000",0,1,0,0 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,"House On The Rock, Freedom Way, Monarch, World Oil, Jakande Ilasan Lekki Lagos",₦,"150,000,000",0,1,0,0 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Westend Estate Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Units Of 4 Bedrooms Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +7&half Plots Of Land,Idado Estate Idado Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,"Gbara/ologolo, Lekki Ologolo Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +400sqm Hampton Bay Estate Beside Cowrie Creek Ikate N120million,Estate Beside Cowrie Creek Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built Executive 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Spacious Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,990.68 M2 Bare Plot Of Land",Lekki Phase 1 Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tasefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tasefully Finished 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",1,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Home,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Home,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq\,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,"Orchid Road, Lekki Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,0 baths,0 Toilets +Luxury 4 Bedroom Home,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Vgc Estate Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Smart Home,Ikota Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Fatai Arobieke Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Reburbished Luxury 4 Bedroom Fully Finished And Fully Servicedd Etached Duplex + Bq With Air Conditioning , Fully Fitted Kitchen And 2 Bedroom Guest Chalet House As Bq",Napier Garden Estate By Vgc Lekki. Vgc Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Extraordinary 4 Bedroom Terrace Duplex,Off Freedomway Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,1,5 beds, baths, Toilets +Brand New Luxury 2 Bedroom Serviced Terrace Duplex Plus Bq,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat/apartment,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New Spacious 5bedroom Detached Duplex,"Ikate Elegushi, Off Gbagbala Street Ikate Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,6 Toilets +Paradise Newly Built 3 Bedrooms Flat,Ikota Villa Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Blue Waters Lekki Right Oniru Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"4bedroom Terrace Townhouse With A Bq, Ample Parking Space",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Well Maintained 4 Bedroom Semi Detached Duplex With A 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +A Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Beautifully Built 4 Bedroom Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Livingstone Estate,orchid Road Chevron Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached,Bakare/bera Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +Serviced 2 Bedroom Flat,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Orchid Rod Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +A Plot Of Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Bq,"Megamond, Lekki County Homes Ikota Lekki Lagos",₦,"200,000,000",0,0,0,5 beds, baths, Toilets +"Exclusively Finished 5bedroom Fully Detached Duplex With Bq, At Chevron, Lekki",Chevron Lekki Lagos,₦,"120,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +Land,Twin Lakes Estate. Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Terrace Duplex,"Osapa London,lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,6 beds,0 baths,0 Toilets +Land,"Block 134 Plot 10, Off Oriwu Street, By Petrocam Service Station Lekki Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 4bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",1,1,1,4 beds,5 baths,5 Toilets +Executive 2 Bedroom Flat Apartments With A Bq,Nike Art Gallery Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,0 Toilets +An Executive Brand New 4 Bedroom Fully Detchead With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Luxury Duplex For Sale At Pinnock Estate Osapa London Lekki,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths, Toilets +5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plot Land,African Lane Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Semi Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets +A Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Waterfront Land Measuring 1800sqm,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Finished 4bedroom Semi Detached Duplex Plus A Room Bq,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Off Bosun Adekoya Street Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool Inside An Estate At Orchild Lekki Lagos.,Orchid Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Prime Residential Plot In Orange Island Land Size : 1000sqm Tittles : C Of O. *price: N220million*,Orange Highland Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +512sqm Of Land,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detatached Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace,Silver Spring Estate Agungi Lekki Lagos,₦,"80,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets +5bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets +4plots Together,Orchid Road Very Close To Second Toll Gate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Rover Estate, Ogombo Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 3bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,0 baths,0 Toilets +Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,"Facing Lekki Epe Expressway, By Elemoro Before Bogije Bus Stop Ibeju Lekki Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +695sqm Of Well Located Land,"Ivy Homes Estate, Lekky County Road Ikota Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 5 Bedroom Fully Detach With Pool And Gym,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,1,1,5 beds,6 baths,6 Toilets +Newly Built All Rooms En Suite 4 Bedroom Duplex With Boy's Quarters And Swimming Pool,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Built Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq, Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Units Of Spacious Serviced 3 Bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Terrace Duplex With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 & 3 Bedrooms Luxury Apartments,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two (2) Units Of 3 Bedroom Apartments + Attached Bq, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex,Monastery Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Event Centre,"Along Orchid Road, Lekki Phase 2 Lekki Lagos",₦,"1,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Affordable Luxury Lekki Apartments,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Designed 6bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,7 Toilets +"Cornerpiece Warehouse In A Secured, Gated And Highly Investment Worthy Location","Olokonla,lekki Lekki Phase 2 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex.,2nd Lekki Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom,Ikate Agungi Conservation Road Lekki Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,0 baths,0 Toilets +Glitter 5 Bedrooms Detached Duplex With Maiden Quarters,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Premium Serviced Plots Of Land For Sale,"Orchid Road, Off Lekki Epe Expressway, Just Passed The Second Toll Gate. Vgc Lekki Lagos",₦,"26,000,000/sqm",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +56 Units Of 4 Bedroom Terrace With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"7,840,000,000",0,0,0,4 beds, baths, Toilets +Brand New Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets +"1,2.3 Bedroom Flat",Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,2 baths,2 Toilets +Brand New Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",1,1,0,5 beds,6 baths,6 Toilets +Lovely 5 Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Adorable 4 Bedrooms Detached Duplex Newly Built With Bq,Southern View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,6 Toilets +Fully Detached 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,7 Toilets +Automated 6 Bedroom Fully Detached Duplex +2 Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"750,000,000",1,1,0,6 beds,7 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Along Orchid Hotel Road, By 2nd Toll Gate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service 3 Bedroom With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 5 Bed Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,4 beds,4 baths,6 Toilets +Prime Commercial Land,Ikate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Commercial Property,Oniru Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,Lekki County Estate Owned By Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Henry's Court Orchid Road, Lagos State. Jakande Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built Luxury 6 Bedroom Fully Furnished And Serviced Detached Duplex Plus Bq,Lekki Scheme 2 Lekki Lagos State Lekki Phase 2 Lekki Lagos,₦,"100,000,000",1,1,0,6 beds,7 baths,7 Toilets +Executive Luxury 3 Bedroom Apartment In Atlantis2 Estate Ologolo,Ologolo Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Furnished Massionette Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000/sqm",1,0,0,0 beds,0 baths,0 Toilets +Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +Classy 3 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uncommon 4 Bedrooms Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"205,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Units Of A 4 Bedroom Terrace Duplex With Room Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedrooms Detached Duplex With Bq,"Agungi, Lekki Agungi Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detachedf Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Chief Collins Off Fola Osibo Road, Godwin Emene Street Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Bridgegate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Refurbished Luxury 28 Serviced Rooms Boutique Hotel,"Remi Olowude Street, Pinnacle Filling Station, Maruwa Lekki Lagos State. Lekki Phase 1 Lekki Lagos",₦,"700,000,000",1,0,0,10 beds,10 baths,10 Toilets +1 Unit 4 Bedroom Terrace Duplex On 3 Floors,= Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets +Pantheon Smart Homes,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +"A Land Measuring 19,000sqm",Located Opposite Abraham Adesanya Round About Beside Hfp Shopping Complex. Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +Fantastic 5 Bedrooms Detached Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Lekki Scheme 2, Block 18, Plot 20, Road 27 (abraham Adesanya). Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,Osapa London Jakande Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +4bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4bedrooms Terraced Duplexes,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Second Tole Gate Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,2 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In A Secured Environment,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +Commercial Property,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Furnished Serviced Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,0,1,2 beds,2 baths,3 Toilets +1 Bedroom Serviced Maisonette,Ikate Lekki Lagos,₦,"30,000,000",1,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brand New Luxury 5 Bedroom Self Serviced Detached Duplex Plus A Room Bq With Air Conditioning , Fully Fitted Kitchen","Chevron Alternative Route, Lekki . Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Classic 4 Bedroom Semi Detached Duplex,Gated Estate Around Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Built 3 Bedroom Flat Apartments,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Masterpiece 5 Bed Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Victory Pack Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +2000 Sqms Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 80rooms Hotel,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Seaside Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +100sqms Of Residential Land,Vgc Estate Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gorgeous Luxury 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Plots Of Land,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Luxury House,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Dry Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +530sqm Plot Of Land,Pinnock Beach Estate Osapa Jakande Lekki Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Home,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Town House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,0 baths,0 Toilets +Bedrooms Terrace Duplex With Your Personal Gate,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Penthouse,"Second Toll Gate, Lekki. Lekki Lagos",₦,"200,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Semi Detached Home,Lekky County Ikota Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ologolo Lekki Ologolo Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Detached House,African Lane Lekki Scheme One Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Agungi Estate Off Lekki Epe Expressway, Lekki Lagos Agungi Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedrooms Duplex With Cinema And Swimming Pool,Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Duplex With Swimming Pool,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Detached Duplex,Ilasan Lekki Ilasan Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +20 Units Of 4 Bedroom Terrace Duplexes,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex Available,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Bq,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets +4bedrooms Semi Detached,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Maisionete,Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Massionate,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With A Bq,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4bedrooms Semi Detached Duplex For Sale,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +500sqm Land,"Idera Scheme, Directly Facing Lekki Expressway, Eleko, Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +4bedrooms Terrace Duplex,S Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds, baths, Toilets +6 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,0 baths,0 Toilets +5bedrooms Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +4bedrooms Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Strategically Located Commercial Property Measuring About 3,000 Sqmtrs",On A Major Road Lakeview Estate Ikota Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +756 Sqm Front Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Land,Ikate Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Spar Road Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Of Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +1050sqm Land,Freedom Way Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5bedrooms Duplex,Ikota Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Styled 2bedroom Terrace Duplex,Off Kushenla Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +"10,000sqm Land",Facing Freedom Way By Ikate Axis Ikate Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,0,0 beds,0 baths,0 Toilets +1075sqm Land,Seagate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +The Bridge Hotel & Apartments,Lekki Lagos,₦,"7,500,000/year",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Periwinkle Estate Freedom Way Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex With Swimming Pool,Lekki County Ikota Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Pantheon Smart Homes,2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths,5 Toilets +Finished Waterside 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Orchid Road Lands,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqm Of Land,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,James Pinnock Place Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With A Structure,Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bareland,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 6 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Land,Hampton Bay Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With A Room Bq,"Ikota Villa, Lekki Ikota Lekki Lagos",₦,"60,000,000",0,0,1,4 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 2 Units Of 5bedroom Duplex In Orchid,Lakewiuw Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Residential Land In Lekki Phase One,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"830,000,000",0,0,0, beds, baths, Toilets +"Excellently Finished, Luxury And Fully Automated 5 Bedrooms Smart Home In Lekki.1 With Swimming Pool(ola)",Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,8 Toilets +Exquisitely Finished 4bedroom Fully Detached Duplex,Z Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1bq Kn,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificent Contemporary Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool.jw, Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary 5bedroom Fully Detached Duplex In A Gated Estate, Well Secured And Classy",Lekki Property Property Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 6 Bedroom Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,8 Toilets +Newly Built 4 Bedroom Duplex,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached Duplex 5 Bedroom,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Furnished Duplex,Chevron Lekki Ado Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets +Commercial Land,Located Between Jakande Chevron Bustop Ologolo Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,7 Toilets +100 Hectares Of Water Front Land,Lekki Phase 1 Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +26 Suites Luxury Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,1,0 beds,0 baths,0 Toilets +Chevron Water Front All Time Luxury Duplex With First Floor Water Fall & Infinity Swimming Pool Bil,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,8 Toilets +Lovely Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fantastic 4bedroom Fully Detached Duplex Jnf,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,6 Toilets +12 Bedroom Fully Detached House Suitable For Hospital / School/lounge,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,10 beds, baths, Toilets +Fully Automated 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,6 baths,6 Toilets +5bedrooms Duplex,Ikate Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets +5 Bedroom Detached Duplex,Q Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets +5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Terrace Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedrooms Automated Detached Duplex With Swimming Pool, Gym, Cinema Room",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificent 4bedroom Fully Detached Duplex Dr.m,Oral Estate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets +Contemporary 5 Bed Fully Detached Duplex In A Gated Estate,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace In Oniru Lekki,Boctrust Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Pantheon Smart Homes, Chevron 2nd Toll Lekki Expressway. Chevron Lekki Lagos",₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets +House,Chevyview Estate Chevron Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Seagate Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets +Classy 3 Bedroom Semi Detached Duplex,Behind Romey Garden By Salem Busstop Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"500,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +4bedrooms Smart Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 2 Bedroom Terrace With Bq Located In A Well Serene Location With Modern Facilities,Vgc Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds, baths, Toilets +Fully Furnished 5 Bedroom Detached Duplex With Bq,Lakeview Park 2 Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex,Chevron Drive By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,3 Toilets +780sqm Land With A Structure,Stillwaters Estate Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +400sqm Of Land,Hampton Bay Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Pool & Bq,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand Newly Built 4bedrooms Fully & Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Iconic 4 Bedrooms Terrace Duplex Newly Built,"Orchid Road, Lekki Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +92 Plots Of Land At Second Round Orchid Road.,Orchid Road Chevron Lekki Lagos,₦,"2,300,000,000",0,0,0, beds, baths,5 Toilets +4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000/year",0,0,0,4 beds,5 baths,5 Toilets +Super Finished Five Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +5bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 3 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedrooms Duplex,"Tulip Haven Estate Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built Tastefully Finished Fully Detached 4 Bedroom Luxury House With 2 Rooms Boys Quarter At Megamound Estate Ikota Lekki Lagos,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000/year",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Fully Detached Duplex,Chevron. Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedrooms Duplex,Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Ikate Facing Freedom Way Express Ikate Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse With Bq,Lekki Axis Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Detached Duplex,R Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Semi Detached Duplex,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Off Freedom Way Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Ocean Bay Estate Ikota Lekki Lagos,₦,"36,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Lovely 4bedroom Duplex,Mobil Road After Vgc B4 Ajah Bridge Vgc Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Finished Three Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Design Smart 4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Terrace Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Duplex With 24hrs Cctv Surveillance And Manned Security,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring Approximately 3,150sqm",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Deluxe 5 Bedroom Detached Duplex With Bq Megamond Estate,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 5bedrooms Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Oral Estate,Cheveron Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths, Toilets +4 Bedroom + Bq Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths, Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment In A Secured And Serene Estate,Ocean Bay Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets +Land,Ologolo Ologolo Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Oral Estate Lekki Lagos,₦,"140,000,000",1,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With Bq Location: Ologolo Lekki Lagos. Price: 95 Million Naira,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets +3bedroom Terrace Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +1 Bedroom Mini Flat Apartments,Spg Road Ologolo Lekki Igbo Efon Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +"Luxurious 26 Rooms Hotel On 1,400sqm Land On 1,400sqm Land",Along Adetokunbo Ademola Street Victoria Island. Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Spacious Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Finished 3 Bedroom Terrace Duplex,Lekki Garden Phase 5 Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"365,000,000",0,0,0, beds, baths, Toilets +5bedrooms Duplex,Lekki Counting Ikota Lekki Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartments,"Emcel Apartments, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Elegushi Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat With A Bq,Nike Art Gallery Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built Two And Three Bedroom Apartment In Mufasa Lifestyle Ikate,Mufasa Lifestyle Apartment Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Luxury Apartment+bq,Chevron Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Ikate Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Dry Land,Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Greenland Estate Around Lbs Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Newly Built Terrace Duplex Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,5 baths,5 Toilets +New House,Sangotedo Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths, Toilets +4 Bedrooms Detached Duplex,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets +New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,4 beds, baths, Toilets +1340sqm Corner Piece,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Executive 2bedroom Flat,Orchid Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Serviced Upper Floor Apartment,Osapa London Lekki Axis Lagos. Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Available,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Available 10,000sqm Sand Filled Land (fenced) For Sale At Ikate Close To Blenco Supermarket. Price: N250k Per Square Metre. Title: Governor’s Consent.yes",Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0, beds, baths, Toilets +5bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terrace Duplex For Sale,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 3 Bedroom Terrace,5 Street Estate Agungi Lekki Lagos,₦,"55,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,1,0,2 beds, baths, Toilets +Fantastic 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 3 Bedroom Flat With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Apartment,"By Second Tollgate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +"801sqm Of Land For Sale In Cowrie Creek Estate Off Spar Road, Ikate, Lekki",Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,6 baths, Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Square Meters Of Land For Sale At Ocean Breez Estate Ologolo Lekki,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Awoyaya Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds, baths, Toilets +430sqm Of Land,Ogombo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Modern Clean 3 Bedroom Bungalow Self Compound,"South Point Estate, Ikate Lekki Lagos",₦,"38,000,000",1,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached House With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace House,Off Spar Road Beside Nicon Town Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom With Bq,Le Moriah Residence Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,"Conservation Road, Chevron Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex At Chevron Area Orchid Lekki,Orchid Lekki Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built Luxury 5 Bedroom Well Finished And Fully Serviced Sea View Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki County Homes Lekki Lagos State Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets +Contemporary Styled 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Fully Detached Duplex With Bq,2nd Lekki Tollgate. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,6 Toilets +1 Full Plot Of Land,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +I Bedroom Self Contain,Bridge Gate Estate Agungi Lekki Lagos,₦,"1,200,000",0,1,0,1 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds, baths, Toilets +Brand New 2 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"36,000,000/sqm",0,1,0,2 beds,3 baths,3 Toilets +Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +House,Idado Igbo Efon Idado Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Commercial Land,"...,. Lekki Phase 1 Lekki Lagos",₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +8 Flats Of 2 Bedroom,"3 Mary's Place, Ilusemiti Street Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex In A Mini Estate, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Comfortable 5 Bedrooms Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxiourious 5bedroom Detached House, At Toll Gate, Lekki",Toll Gate Lekki Lagos,₦,"180,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Ultimate Value 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +"1,000sqm Of Waterfront",Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New, Exquisite And Luxuriously Finished 4 Bedroom Semi Detached House With Boys Quarter At Alperton Residences, Lekki, Lagos.","Alperton Residences, Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury And Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Land Measuring 2000sqm,Twin Lake Estate Chevron Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Residential Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Numbers Of 4 Bedroom Terrace Houses With 2 Rooms Bq Each,"Michael Olawale Cole Crescent, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"1,500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Duplex For Sale At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,W Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Available 6 Plot Of Land,Opposite Agungi Lagos Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +5 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace With 1 Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +House,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths, Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Plots Of Land,Bogije Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Terraced Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"1,100,000,000/day",0,1,0,5 beds,5 baths,7 Toilets +Spacious Tastefully Finished 4 Bed Semi Detached Duplex With Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"88,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Silvercrest, Estate Orchid Road Chevron Lekki Lagos",₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Townhouse With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Well Built 4 Bedroom Semi Detached Duplex,Creek Avenue Court 1 Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Prime Land,Beach Resort Estate Jakande Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Duplex For Sale At Ikota Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"A Strategic Land Of 2,300sqm",Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Beautiful 4 Bedroom Townhouse Located In A Serene Environment Of Ikota Lekki,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Furnish Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Wings Of 4bed Room Semi Detach Duplex,*spacious 4 Bedroom Terrace Duplex With Bq With A Private Compound* Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom All Rooms En Suite Apartment,Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Megamound Estate Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +"3, 2,1 Bedroom Apartment",Second Tole Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +Luxury 5bedroom With Bq Built On 400sqm Each (built By A Friend),Lakeview Estate Orchid Chevron Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautifully Built 5 Bedroom Fully Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Premium Hotel,Lekki Phase 1 Lekki Lagos,₦,"2,800,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex,"Christabel's Court, Off Chevron Toll Gate. Chevron Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets +"Brand New, Contemporary And Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq",Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Riviera Court Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Nicely Built 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Serviced 3 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"95,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +Brand New 3 Bedroom Flat,Adeleye Street Idado Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +950sqm Of Land With Foundation For A Mall,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Land Measuring 1000 Sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,0 baths,0 Toilets +A Brand New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +A Brand New 4 Bedroom Fully Detached Duplex With A A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Brand New 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +"A Land Measuring 8,500 Sqm",Off Alpha Beach Road Jakande Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +A Newly Built 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets +A Newly Built 4 Bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +A Brand New 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Fullly Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,"Orchid Road, By Chevron Toll Gate Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +A Newly Built 5 Bedroom Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets +Well Maintained 5 Bedroom Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets +Well Located 6 Plots Of Land,"Behind Orchid Road, Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land,Seagate Estate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex,"Alpha Bay Estate,off Alpha Beach Road ,lekki Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds, baths, Toilets +Well Built 4 Bedroom Terraced Duplex,New Road Before Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,"Cowrie Creek Estate,ikate Lekki, Lagos Ikate Lekki Lagos",₦,"400,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Terraced Bungalow,"Orchid Hotel Road, Lekki,lagos Chevron Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury Home,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Fully Furnished Semi Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,310.746sqm Bareland","Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Sited 500sqm Bareland,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Decent 5 Bedroom Fully Detatached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serene 4 Bedrooms Fully Serviced Terraced Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Terraced Duplex,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Gbamgbala Road, Off Kushela Ikate Lekki Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Ensuites Three Bedrooms Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"34,000,000/sqm",0,0,0,2 beds,3 baths,3 Toilets +Executive 3 Bedroom Flat, Chevron Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,3 Toilets +4bed Room Spacious Semi Detach Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached,Orchid Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Orange Highland Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Executive Luxury Hotel Suite, At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000/day",1,0,1,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Furnished Fully Detached 5bedroom With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Mansionate,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Terrace Duplexes With A Bq,Orchid Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Semi Detached Duplexes,Inside An Estate Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House,Agungi Estate Agungi Lekki Lagos,₦,"80,000,000/year",1,1,1,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex For Sale At Oral Estate Lekki,Oral Estate Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land Measuring 980sqm With Demolishable Structures,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Situated Land Measuring 1200sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 800sqm,Lakeview Park 1 By Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 608sqm,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Located Land Measuring 670sqm,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Town House,Eletu Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale At Fola Osibo Leeki Phase One,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,5 Toilets +Luxury 3bedroom Waterfront Apartment,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +100 Plot Sale,Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Unit Of 5 Bedroom Fully Detached Duplex All Room En Suite :#220m Per Unit,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Water Front 12 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Omole Estate Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Duplex,Orchid Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Size: 650sqm,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 & 3 Bedroom Luxury Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Houses With Bqs,"Chris Madueke Street, Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,"Lekky County Homes, Megamound. Ikota Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Ocean View 5 Bedroom Semi Detached Home,Lekky County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Massive 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New 2 Bedroom Apartment With Bq,Conservation Road Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Factory Consisting Of 100 Kva Mikano Generator 7 Brand New Air Condition 4 Production Machines Water Treatment Plant 3 Tanks,Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,150 Square Meters",Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Apartment,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +State Of The Art 5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,"2nd Toll Gate, Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +"A Dry Land Measuring 1,400 Square Metres In Osapa, Lekki. The Land Is Directly Overlooking The Osapa London Road.",Osapa London Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +"A 8 Floor Building Consisting Terraces House, Flats .","Godmade Court 4 Off Freedom Way, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +Magnificent 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New & Serviced 3bedroom Flat Available,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Block Of 6 Units Of 3 Bedroom Flats,Spring Bay Estate Ikate Lekki Lagos,₦,"310,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5bedrooms Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom With 1bq Fully Detached Duplex.,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Units Of 5 Bedroom Luxury Duplex Houses,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terrace Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex Within An Estate On Chevron Alternative Route Dol,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Filling Station On Lekki Epe Express Way,Lekki Epe Express Way Lekki Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +800sqm Of Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +540sqm Of Land With Structure Ontop,Igbo Efon Igbo Efon Lekki Lagos,₦,"57,000,000",0,0,0,8 beds,6 baths,6 Toilets +9 Units Of 3 Bedroom Flat,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,10 baths,10 Toilets +Luxurious 6 Bedroom Duplex With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,8 Toilets +Extra Large 5 Bedroom Fully Detached With Three Boy's Quarter, Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovly 4bedroom Duplex With A Bq,Oba Amunsa Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Fully Detached 5 Bedroom Duplex With 2 Bedroom Bq In A Serviced Gated Estate,Ologolo Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Newly Built 4 Bedroom Terrace Duplex Jn,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Solid Built Carcass Hotel With Swimming Pool,(1 Minute Drive From Lekki Epe Express Road. Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Fully Detached 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Newly Built Mini Flat, 2 Bedroom, 3bedroom Flats",Agungi Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +811sqm Plot Of Land,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land In Vgc,Vgc Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Luxury 3bedroom Semi Detached Duplex.,Inside Amity Estate Sangotedo. 3mins Drive From Shoprite Lekki Phase 2 Lekki Lagos,₦,"51,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +2bed Room Serviced Apartment,Orchid Chevron Toll Gate Area Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Contemporary 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom And Bq Semi Detached.duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Furnished 4 Bedroom Semi Detached Duplex Fem,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"20,000,000",0,0,0,10 beds,0 baths,0 Toilets +Luxury 4bedroom Terrace Duplex,Bridge Estate Before Chevron Tollgate Chevron Lekki Lagos,₦,"62,000,000",1,0,0,4 beds,6 baths,6 Toilets +Luxury 4bedroom Semi Detached Duplex,Bridge Estate Before Chevron Tollgate. Chevron Lekki Lagos,₦,"72,000,000",1,0,0,4 beds,5 baths,5 Toilets +"Landed Property Of Approximately 945sqm With Structure Located Off Oladimeji Alo Street, Lekki Phase 1 Price N360m.",Lekki Phase 1 Lekki Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,1,10 beds,10 baths,10 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Spacious 2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built Serviced 3bedroom Flat With A Bq,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Well Appointed 7000sqm Land (price Per Sqm),House On The Rock Ikate Lekki Lagos,₦,"240,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex Dstn,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets +Brand Newly Built Fully Serviced 3 Bedrooms Apartment With Bq,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets +Ultra Modern 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,2 baths,2 Toilets +Ultra Modern 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +Modest 5 Bedrooms Detached Duplex With Rooftop Terrace House,Lekki Phase 1 Ikate Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,6 baths,7 Toilets +Fast Selling Newly Built 4bedroom Terrace Houses,"Orchid Road, Off Lekki Epe Expressway Lekki, Lagos Chevron Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,4 baths,4 Toilets +Unique 5 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cosy 4 Bedrooms Terrace Duplex On Two Floors With Swimming Pool,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Mercyville Estate Holds Strong 3 & 4 Bedroom Terraces And 3 Bedroom Maisonettes, All At Amazing Prices., 3 Bedroom Terraces Starts At 57m.","Epe Expressway, Chisco Behind Blenco Ilasan Lekki Lagos",₦,"57,000,000",1,1,0,3 beds,4 baths,4 Toilets +New House,Snd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,5 beds, baths, Toilets +New House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached,Eleganza Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached House With 2(no) Mini Flats As Servant Quarter At Carlton Gate Estate, Chevron Drive, Lekki","Carlton Gate Estate, Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,0 baths,0 Toilets +House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets +Shop Space,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +New House,Thomas Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds, baths, Toilets +700 Square Meters Land, Osapa London Lekki Lagos,₦,"90,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Nicon Town Jakande Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Newly Built And Well Finished 6 Bedroom Duplex,Nicon Town Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classy 5bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds, baths, Toilets +Four Bedroom Semi Detached Castle Duplex +bq,"Orchid Road, Directly Opposite Cooplag Garden Estate Lekki Lagos Chevron Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets +7 Bedroom Duplex With Two Rooms Boys Quarters,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 2bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets +4bedroom Duplex,Ikate Lekki Lagos,₦,"98,000,000",1,1,0,4 beds,4 baths,5 Toilets +Mansion,Vgc Lekki Lagos,₦,"550,000,000",0,1,1,0 beds,5 baths,0 Toilets +Camberwall Advantage 3 & 4,Off Freedom Way Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Luxury Flats Comprising Of 11 Unit Of Flats, Agungi Lekki Lagos,₦,"345,000,000",0,1,0,10 beds,10 baths,10 Toilets +New House,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths, Toilets +New House,Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths, Toilets +Mufasa Lifestyle Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +3bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,0 baths,0 Toilets +1 Bedroom Ultra Modern Luxury Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,1 beds,1 baths,2 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex Plus Bq,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House,Ologolo Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Jakande Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached House With Swimming Pool,Megamound Estate Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Aesthetically Built 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex,Pinnok Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +4bedroom Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious5bedrooms Duplex For Sale At Megamound Lekki,Megamound Lekki Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Elegushi Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +"5bedrooms With Swimming Pool, Gym House And Cinema Room","Megamound Estate Ikota, Lekki Ikota Lekki Lagos",₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Enyo Filling Station,Eleko At Ibeju Lekki Lekki Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 4bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,5 baths,5 Toilets +650sqm Of Land,"Chevy View Estate, Chevron Chevron Lekki Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +7bedrooms Duplex,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets +Standard 2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets +5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,"Ologolo Estate Off Lekki Epe Expressway, Lekki Lagos Ologolo Lekki Lagos",₦,"79,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex With Bq,"Bakari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex At Osapa Lekki Lagos,"Osapa Estate Off Lekki Epe Expressway, Lekki Lagos Osapa London Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classy And Well Finished 4 Bedroom Duplex,White Sand Beach Estate Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Built 5bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Detailed Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Seagate Estate 2000sqm Bare Land, Fully Sandfilled, Fenced & Gated",Seagate Estate Ikate Lekki Lagos,₦,"395,000,000",0,0,0, beds, baths, Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat Apartments,Prime Water Garden Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace,"Ikate, Close To Lekki Phase 1 Ikate Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tasefully 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5bedroom Semi Detach Duplex,"Momodu Lawal Close, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +700sqm Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Of Land,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +865 Sqms Land,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex For Sale At Chevron Drive Lekki,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 4 Bed Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Spg Road Igboefon Lekki Igbo Efon Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Neat 5 Bedrooms Detached Duplex With Swinming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 4bedroom Terrace Duplex In County Homes,ikota, Lekki","County Home,ikota Lekki Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent Luxury 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +"5bedrooms Duplex With Cinema, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive Standard 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Perfectly Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Smart 4 Bedroom Terrace,Tollgate Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Masterpiece 5 Bedroom Home,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Fully Serviced Apartments,Off Orchid Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Q Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary Styled 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Service 4 Bedroom Terrace With Bq,"Lekki Right, By Petrocam Filling Station, Elf Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 5bedroom With Pool Semi Detached Duplex, At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"75,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built 4 Bed Detached House With Bq,2rd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +2 Bedroom Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,0 baths,0 Toilets +"Distress Luxury 5 Bedroom Fully Finished Detached Duplex With Air Conditioning , Fully Fitted Kitchen Plus 1 Room Bq.",Off Freedoms Way Ikate Lekki Lagos. Ikate Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets +Serviced 2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"54,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 3 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"120,000,000",1,0,1,3 beds,3 baths,4 Toilets +Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Serviced Apartment,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex With A Pool,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,0 baths,0 Toilets +Contemporary 5bedroom With Swimming Pool,Spar Road Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bed,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,3 beds,4 baths, Toilets +4 Units Of Three Bedroom Flat Fully Furnished 4units Of Mini Flat Fully Furnished,Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Plot Of Land,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +House,Agungi Lekkk Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Orchid Hotel Road. Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex For Sale At Lekki Phase1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,6 Toilets +2 Bedroom Luxury Flats,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Full Detailed Duplex,Eleganza Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +New House,Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds, baths,6 Toilets +"Newly Remodelled Luxury 4 Bedroom Fully Finished And Serviced Maisonette With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Oral Estate , Jakande Lekki Lagos State Jakande Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4 Bedroom Fully Finished And Serviced Semi Detached Duplex Plus Bq,Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,0 Toilets +House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,0 Toilets +Godmade Connect Court 5 & Extension Lekki,"Off Freedom Way, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds, baths, Toilets +New House,Vgc Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,0 Toilets +4 Bedroom Luxury Duplex,Jakande Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,4 baths,4 Toilets +Tastefully Finished 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bed Fully Detached Mansion With Private Elevator, Cinema, Pool And 2 Terraces",Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5bedrooms Duplex,S Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,1 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets +Newly Built To Taste 5bedroom Duplex With 2 Bq,Arcadia Estate Shoprite Road Osapa London Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex,Pinnock Beach Estate Osapa London Lekki. Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets +New House,Chevron Lekki Lagos,₦,"350,000,000",1,1,1,5 beds, baths, Toilets +Lovely 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq If, Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Two (2) Units Of 3 Bedroom Serviced Apartments,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,3 baths,0 Toilets +Distress Land,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Tastefully Finished 5 Bedroom Mansion,Megamound Estate Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tasefully Finished 5 Bedroom Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Spg Road Ologolo Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Private Garage,Ajah Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Mansion,Ajah Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Home,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Three Bedroom Apartment,Ikate Very Close To Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fenced And Gated Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +880 Square Meters,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meters Of Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lakeview Estate Ikota Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartments,Behind Mega Chicken Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Blenco Supermarket Ikate Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +620 Sqmts Plot Of Land With A Structure,Inside An Estate At Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,1,5 beds, baths, Toilets +Luxury 4bedroom Semi Detached Duplex.,2nd Lekki Tollgate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,"Ocean Breeze Estate , Ologolo, Lekki. Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Orchid Hotel Road, Lekki, Lagos Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq Jn,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Refurbished Luxury 4 Bedroom Fully Finished And Fully Semi Detached Duplex With Bq Plus Air Conditioning , Fully Fitted Kitchen.",Ologolo Lekki Axis Lagos. Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Available Luxury Houses,Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached With A Room Bq,Spring Bay Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished Serviced 3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"57,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex+ Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets +Absolutely Stunning Furnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartment,"House On The Rock, Monarch, Ikate Oba Eleguishi Palace, Nicon Town ,freedom Way, Jakande Bus Stop Ikate Lekki Lagos",₦,"65,000,000",0,1,0,0 beds,2 baths,3 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spectacularly Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Crest 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +600sqm Land,Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets +3bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Commercial Plot,Ologolo Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With A Structure,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Of Land,Victory Park Estate Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 1400sqms With A Complex Structure,Directly On Bisola Durosinmi Etti Street Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land Measured 880sqms With A Fully Detached Duplex,"Right Opposite Ebano, Road 14, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +About 1600sqm Land,Gbangbala Road Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 650sqm,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm At Chevyview Estate,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedrooms Terrace Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets +500sqm Of Land,Pinnock Beach Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +930m Land,"Orange Island, Freedom Way Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Terrace Duplex *,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 3bedroom Bungalow.,X Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Front Plot Measuring 756 Sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Brand New And Fully Serviced 4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Brand New Luxury 4 Bedroom Serviced Fully Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautiful 3 Bedrooms Terrace,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Richmond Estate Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex In A Secured And Serene Estate,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 2units Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Camberwall Advantage 3 & 4,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +Fully Furnished And Fitted 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +899sqr Land,Lekki Scheme 2 Off Mobil Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built And Spacious 4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"160,000,000/year",0,0,0,3 beds,0 baths,0 Toilets +Luxury 3 Bedroom Serviced Fully Detached Duplex Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Nicely Finished 4 Bedroom Terraced Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Pinnock Estate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,6 Toilets +God Made Connect Court 4 Lekki,Off Freedom Way Off Regional Road Ekki Phase One Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedrooms Terrace House With Bq,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedrooms Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex Home With A Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"86,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,4 Toilets +Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq Second Toll Gate Lekki,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4plots Of Land Together On A Strategic Location,Orchid Road Directly Opposite Omega One Plaza Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex Plus 2 Rooms Bq,Off Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +840 Sqm Corner Piece Land Inside Cowrie Creek,Nlg Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +A Sponsor For Land Reclamation,Lekki Phase 1 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 780 Square Meter,Off Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Idado Lekki Idado Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Highly Spacious 5 Bedrooms Detached Duplex With Penthouse And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +1136sqm Prime Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,": Bera Estate (gated Estre) Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fantastic 5 Bedroom Detached Duplex With A Pool,Lekki Second Toll Gate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraces,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Serviced 4 Bedroom Detached Duplex,Luxury House In A Gated Classic Estate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +Furnished 4 Bedrooms Terrace Building,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Fully Serviced 4 Bedroom Terrace Duplex,Ikota Villa Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fantastic 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Road Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Classic 4 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Units Of 4bedroom With Bq,Vgc Garden Vgc Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Beach Court Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +776sqm Prime Land,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Duplex,Orchid Ikota Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Land Measuring 1200sqm For Sale.,"Ayo Adebanjo Street, Lekki Phrase 1 Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedrooms Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Numbers Of 5 Bedroom Detached House,Tulip Haven Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land Measuring 2.1 Hectares Of Land Beside ( Vgc),Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex For Sale At Lekki Second Toll Gate,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built Luxury 6 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With Bq,Ilasan Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Flawless 5 Bedrooms Detached Duplex With Swinming Pool, Gym Centre, Cinema Room",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Sand Filled Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Spg Raod Ologolo Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds, baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +Premium 4 Bedroom Terrace House,Spg Road Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Spg Road Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex For Sale In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautifully Built 5 Bedroom Terraced Duplex With A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Waterfront Land Measuring 2000 Sqm,Pinnock Beach Estate Ph 2 Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Gra Ikota Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale, 5bedroom Duplex Location Ikate Lekki",Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex For Sale At Ikate Lekki Phase1,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Prime 700sqm Land Behind Romey Garden,Behind Romey Garden Ilasan Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +"Sapphire Island, 4 Hectares Before Orange Island Off Freedom Way Lekki Phase 1 @n135,000 Per Sqm Title C Of O","Sapphire Island, 4 Hectares Before Orange Island Off Freedom Way Lekki Phase 1 @n1 Lekki Phase 1 Lekki Lagos",₦,"135,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex On 2 Floors With Bq,"2nd Toll Gate, Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Duplex With Swimming Pool For Sale At Ikota,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths, Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets +Block Of 6 Flats 3 Bedrooms Each,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 & 3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets +A Tastefully 5 Bedroom Terraced Duplex With Bq,Idado Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished Contemporary 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exqusite 4 Bedroom Detached Duplex In Lekki {idado},Idado Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedrooms Duplex,"Tulip Haven Estate Chevron Alternative Route, Lekki, Lagos. Chevron Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Fully Serviced 3 Bedroom Flat In A Lovely Location.,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"39,800,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Flamboyant 5 Bedrooms Detached Duplex With Pool, Cinema, Gym & Mini Bar",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedrooms Terrace Duplex,G Agungi Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths, Toilets +2 Plot Of Land Measures 1384sqm,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5bedroom Fully Detatched Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Maven Court,"Royal Pine Estate, Orchid Road, Lagos. Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets +4bedrooms Duplex,Orchid Road By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds, baths, Toilets +530sqms Cornerpiece Bareland,Off Bisola Durosinmi Etti Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm With Old Fully Detached Duplexes To Be Demolished,Off Freedom Way Lekki Phase 1. Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Block Of Flats,Primewaters Gardens 2 Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq,Vgc Estate Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets +Full Detached 5 Bedrooms Apartment,Lakeview Park Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Northern Forshore Chevron Lekki Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds, baths, Toilets +Plain 4 Bedrooms Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Four Bedroom Terrace House + 1room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Newly Built All Rooms En Suite 2 Bedroom,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,"New Road (alpha Beach Road) Opp. Chevy View Estate, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Sandfilled Land,Vgc Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Terrace Duplex,"Lekki Gardens 2 Estate, Abraham Adesanya., Lagos Lekki Phase 2 Lekki Lagos",₦,"26,000,000",0,0,0,3 beds,4 baths,3 Toilets +Luxury 1 Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"87,000,000",0,1,1,1 beds,1 baths,1 Toilets +Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"170,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +1 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets +"Luxury Detached 4 Bedroom Serviced Bungalow With Air Conditioning , Fully Fitted Kitchen",Northern Foreshore Estate Lekki. Chevron Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex For Sale Inside Pinnock Estate Osapa London,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths, Toilets +4 Bedroom Maisonette And A Premium Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedrooms Duplex For Sale At Megamound Estate Ikota,"Megamound Estate, Ikota Lekki Ikota Lekki Lagos",₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bed Detached Home,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Brand New And Exquisitely Finished 4bedroom Terrace A Room Bq And A Spacious Roof Top Seat Out,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Beautifully Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Providence Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Terraced Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Duplex,"Bkari Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +God Made Connect Court 4 Lekki,Off Freedom Way Off Regional Road Ekki Phase One Lekki Phase 1 Lekki Lagos,₦,"27,500,000",1,0,0,3 beds,3 baths,3 Toilets +A Well Built 4 Bedroom Semi Detached Duplex,Ladipo Latinwo Street Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +12 Units Of 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,0 baths,0 Toilets +Standard 3 Bedroom Terrace Duplex With Modern Fittings, Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +New House,Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached With 2 Room Bq 2 Living Rooms,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Terrace Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",1,1,0,5 beds,6 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets +3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets +Spacious 2 Bedrooms Pent Floor Apartment,Oceanbay Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land On Alpha Beach Road,Alpha Beach Estate Near Atlantic View Estate Igbo Efon Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +880sqms With A Complex Structure,Fola Osibo Close To Hakeem Dickson4 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Terrace Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +450sqm Land,Along Durosinmi Etti Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Duplex,Orchid Road By Chevron Toll Chevron Lekki Lagos,₦,"75,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets +2bedrooms Apartment,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets +23 Plots Of Land With Layout,Between Osapa And Ajiran Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +5bedrooms Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Ologolo Lekki Lagos State Ologolo Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Newly Built Beautiful 4 Bedroom Terraced Duplex With Bq,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +990sqm Of Land With 5 Bedrooms Fully Detached Duplex,Duronsinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds,0 baths,0 Toilets +Superb 5 Bedrooms Detached Duplex Newly Built With Swinming Pool,"Megamound Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Beautifully Built, Well Maintained, Tastefully Finished 4bedroom Terrace.",Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Superbly Finished Fully Automated 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex,Creek Avenue Court Phase Two Ikota Ikota Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool. Jnf,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,7 Toilets +Fantastic Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,6 Toilets +High Quality 4 Bed Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +An Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevyview Estate Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plots Of Land,Chevron Lekki Lagos,₦,"30,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Of Approximately 500sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 3 Bedroom Apartment In A Fully Serviced, Secured And Serene Estate, With 10yrs Mortgage Plan",Primewaterview Estate Ikate Lekki Lagos,₦,"42,000,000",1,0,1,3 beds,3 baths,4 Toilets +Newly Built 5bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxurious 5 Bedroom Fully Detached Mansion,Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Modern 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +9 Units Of 2 Bedroom Flats,Orchid Road Chevron Lekki Lagos,₦,"340,000,000",1,1,0,10 beds,10 baths,10 Toilets +Residential Land Of Over 400 Plots (price Per Sqm),"Osita Island, Beside Orange Island, Off Freedom Way, By Periwinkle Island* Lekki Phase 1 Lekki Lagos",₦,"140,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex,"Kassykoo Terraces, Along Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,0 baths,4 Toilets +Fully Detached 5 Bedroom Contemporary Building,Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built To Taste 5bedroom Duplex With Studio Bq,Arcadia Estate By Shoprite Road . Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Two (2) Units Of 3 Bedroom Apartments And Attached Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 1 Bedroom Flat,Ikota Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,1 baths,2 Toilets +Newly Built To Taste & Spacious 5bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Waterfront Land Measuring 1000sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mansionate Luxury 5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary And Well Finished 4bedroom Fully Detached Duplex Oral Estate1 Tay,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets +4bedroom Terrace Duplex,"By Second Toll Gate,lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached With 2 Rooms Bq,Opposite Chevy View Estate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds, baths, Toilets +509sqm Of Land,Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Directly On Bisola Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Plots Of Dry Land, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Luxury 4 Bedroom Fully Detached Duplex Jw,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Brand New Listing 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,6 Toilets +Fantastic Serviced 3 Bedroom Apartment,Osapa Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +Executive 5bedroom Fully Detached Duplex,Ikota Ikate Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Automated 6bedroom Fully Detached Duplex Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,5 baths,8 Toilets +"Luxurious, Brand New And Serviced 2 Bedroom Apartment",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +9 Numbers Of Luxery 3bedroom Flats,Admaralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced Four Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detach Duplex Plus A Room Bq On 225sqm,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +Land Measuring 1300sqm,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Victoria Crest Ii Estate, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Prime Water View Estate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained 4bedroom Semi Detached Duplex With A Room Boy's Quarter,Ikate Lekki Lagos,₦,"60,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Newly And Tastefully Built Three(3) Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets +Styled 5bedroom Fully Detached Duplex With A Room Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Deluxe 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets +461 Sqm Front Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +453 Sqm Back Plot,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +443 Sqm Front Plot For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +5bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bed Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4plots Of Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lekki Oxford Hotels,Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets +Land,Pinnock Estate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Elf Bus/stop Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Ikota Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Spring Bay Estate Off Freedom Way Beside Prime Water View Ikate Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Ikate Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Decent Contemporary 5 Bed Fully Detached House With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Townhouse With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Designed 6bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +6 Bedroom And Bq,Inside Chevron Estate Chevron Lekki Lagos,₦,"78,000,000/year",0,0,0,6 beds,4 baths,4 Toilets +Luxury 1 Bedroom Apartment,"Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,1,0,1 beds,0 baths,0 Toilets +Luxury Waterfront 3bedroom Serviced Apartment With Bq,"Pinnock Beach Estate, Lekki Lekki Lagos",₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 3 Bedroom Apartment,Off Alpha Beach Road Osapa London Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Of Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +Land,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +4bedroom Terraced Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Affordable 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Eye Catching 4 Bedrooms Apartments/flats,By Chevron International Office Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fantastic 5 Bedrooms Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Attractive 5 Bedrooms Detached Duplex With Bq,"Agungi, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,New Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Hotel,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",1,1,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Prestigious 9 Units Of 3 & 2 Units Of Apartments,By Osapa London Chevron Lekki Lagos,₦,"400,000,000",0,1,0,10 beds,10 baths,10 Toilets +Serviced 5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Corner Piece Land On A Commercial,"Vgc, Close To The Main Road Of Lekki/epe Expressway Vgc Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths, Toilets +Spacious And Tastefully Finished 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished Brand New 4 Bedroom Semi Detached Duplex,Second Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Bera Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets +Lekki Pride Estate,"Lekki Pride Estate: Is Situated At Ajiwe Bus Stop, By Abraham Adesanya Roundabout, Lekki Epe Expressway. Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets +5 Units Of 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,4 Toilets +House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths, Toilets +Godmade Connect Court 4 Lekki,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +Beautiful Built 4bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built Exquisite 4 Bedroom Duplex,Well Secured And Maintained Estate At Ologolo Lekki Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Detached Apartment,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Detailed 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,5 baths, Toilets +New House,Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds, baths, Toilets +Four Bedroom Semi Detached Duplex,Abijo Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,4 baths,4 Toilets +Creek Avenue Court,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +2.007 Hectares Of Land,"Behind Lekki 2nd Toll Gate, Lekki Conservation Toll Plaza, Beside Chevron Chevron Lekki Lagos",₦,"2,100,000,000",0,0,0, beds, baths, Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,0,5 beds,6 baths, Toilets +New House,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,5 beds, baths, Toilets +Beautiful 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,6 baths,0 Toilets +New House,Ikota Lekki Lagos,₦,"64,000,000",1,1,0, beds, baths, Toilets +Neatly Finished 5 Bedroom Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Palm City Estate Osapa London Lekki Lagos,₦,"210,000,000",1,1,0,5 beds, baths, Toilets +4bed Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,0 baths,0 Toilets +Spacious And Tastefully Finished 4 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Ikota Villa Estate Gra,lekki Lagos State. Ikota Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Well Maintained 5 Bedroom Fully Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Land Measuring 925 Sqm,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Well Serviced 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,4 beds, baths, Toilets +A Brand New 4 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +A Back Plot Measuring 453 Sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +A Newly Built 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,"Lekki 2nd Toll Gate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets +Furnished 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Water Front Land Measuring 650sqm,Northern Foreshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex For Sale At Osapa London Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms House,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,7 Toilets +A Newly Built 5bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Piece Of Land Measuring 1200sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built Six(6) Units Of 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,0 baths,0 Toilets +600sqm Of Land,"Lakeview Park 1, Opposite Ikota Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +Brand New 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"28,000,000/sqm",0,1,0,2 beds,3 baths,3 Toilets +Brand New 2 Bedroom Flat,By Domino's Pizza Ologolo Lekki Lagos,₦,"37,000,000/sqm",1,1,0,2 beds,3 baths,3 Toilets +Lovely 3 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"35,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +Beautifully 4bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Newly Built Apartment,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets +"Executive 5bedroom Detached Duplex With Swimming Pool And A Room Bq, At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"150,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +5bedroom Duplex For Sale In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex House,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Flat With Modern Interior Fittings,Second Toll Gate Off Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 2 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Executive Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Richmond Estate Jakande Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Built 2 Bed Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury Finished 3 Bedroom Flat,Salem Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds, baths, Toilets +Well Serviced 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached,Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Lekki Ekpe Expressway, Eif Bus Stop (beside Ecobank/zenith Bank) Lekki Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4bedroom Detached Duplex,Ikate Lekki Lagos,₦,"60,000,000/day",1,1,1,4 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5bedroom Fully Detached Duplex Available,Buena Vista Estate Orchid Road Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets +This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +3 Bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Full Service Terrace,"Orchid, Lekki Lagos Lekki Lagos",₦,"65,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +1200sqm Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,2 beds,0 baths,0 Toilets +1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +2 Bedroom Fully Serviced And Furnished Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Furnished 5bedrooms Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +4bedrooms Semi Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex With Swimming Pool For Sale At Ikota Lekki,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Duplex,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Duplex,Orchid Road Hotel Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex,R Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,6 baths,6 Toilets +5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Duplex,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedrooms Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5bedrooms Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Elegushi Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex At Lekki Lagos,"Ikota Roya Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedrooms Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Duplex With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex,"Orchid Road, By Lekki Second Toll Gate Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +1bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +5bedrooms Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious And We'll Built 4bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Detached House With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Serviced Apartment,Lekki Gardens Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets +Newly Built 5 Bedroom Terrace Duplex,Right Side Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Terrace Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Osapa London Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Maisonnette,Primewater Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 2 Bedroom Apartment,Spar Road Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +Land,Vgc Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious And Tasefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bed Fully Detached Duplex With Swimming Pool,Lekki County. Lekki Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,0 baths,0 Toilets +Luxury 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"6,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Design 5 Bedroom Mansion,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 4 Bedroom Home,2nd Toll Gate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +1380 Sqms Land,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +6plots For Residential Land,Dpk Estate Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,On Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land (2883sqm),On Orchid Road Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Fully Furnished Duplex,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Second Tollgate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Mansion,Ajah Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +900 Sqms Land,Lekki Epe Express Way Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +650 Sqms Of Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets +"3.5 Acres Of Land (14,000 Sqms)",Ikota Lekki Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Elegant 5 Bedroom Fully Detached,Pinnock Beach Estate Jakande Osapa Jakande Lekki Lagos,₦,"455,000,000",0,1,0,5 beds,5 baths,6 Toilets +890sqm Of Dry Sand Filled Land,Chevy View Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Alternative Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Inside An Estimate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +640sqm Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"195,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxiourious 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +2800sqm Land,Ikate Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0, beds,4 baths, Toilets +Contemporary 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Executive 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Built 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Built 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land,Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Shopping Complex,Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tastefully Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,"Victoria Crest 2, Off Orchid Road Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedrooms Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Land Measuring 1500sqm.,Admiralty Way Lekki Phrase 1. Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +5bedrooms Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Terrace Duplex With A Room Bq,Bayview Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +8 Hectares Of Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Well Furnished 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Conservation Road Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxurious 2 Bedroom Apartment,Off Conoil Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +5bedrooms Luxury Duplex For Sale At Orchid Road Lekki,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +90000 Square Meters,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +A Well Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Value Centric 4 Bed Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Flat,Whitesand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,0 baths,0 Toilets +Luxury Mini Flat,Ologolo Lekki Lagos,₦,"30,000,000",1,1,1,1 beds,1 baths,2 Toilets +3 Bedroom Duplex,Beautiful Gated Estate At Agungi Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Joint Ventures; 6plots Of Land Together (cornerpiece),Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +House,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds, baths, Toilets +4bedrooms Semi Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex,"Orchid, After 2nd Tollgate. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Semi Detached 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 3 And Half Plot Of Land,Baruwa Town Jakande Lekki Jakande Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +2plots Measuring 1265sqm,Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime 2100sqm Commercial Land Facing The Express,Facing Lekki Epe Expressway By Chevron Chevron Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex In A Secured Environment,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"195,000,000",0,0,0,5 beds, baths, Toilets +Classic 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets +50 Units Of 3 Bedroom Apartments With A Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +1000 Square Metre Land,Lekki Phase 1 Lekki Lagos,₦,"185,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex For Sale At Osapa London Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land,"Freedom Way, Lekki Phase 1, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"930sqm Corner Piece Land With Foundation, Aproved For Commercial Use",Anjouse|fola Osibo Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths, Toilets +"Brand New, Tastefully Finished And Modern 4 Bedroom Semi Detached Duplex On 3 Floors With Quality Finishing",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"86,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 3 Bedrooms Flat,Lekki Phase1 Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Brand New, Fitted And Spacious 1 Bedroom Apartment In A Secured And Serviced Estate",Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets +"Newly Built, Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq",Oral Estate Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Fully Detached Duplex With A Bq,By Vgc Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Furnished Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Lekki Phase 2, Lekki Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terracd Duplex,Lekki Phase 1 Lekki Lagos,₦,"8,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedrooms Terrace,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Osapa Agungi Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxurious First Class Fully Serviced 4 Bedroom Terraces,Beaufort Residences Ilasan Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets +Well Situated 765sqm Bareland,"Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Smart Home Dulex,Adeleye Street Idado Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely Finished New 5 Bedrooms Fully Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +New House,Oral Estate Ikota Lekki Lagos,₦,"125,000,000",0,1,0, beds,5 baths, Toilets +Pentheone Smart Home,Orchid Road Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With A Bq And A Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +5 Bedrooms Detached Duplex With Swimming Pool,Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +A Luxury Brand New And Automated 5 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +8 Plots Of Land,"Mayegun Jakande ,close To Ologolo, Inner Road Llnks To Ologolo, Lagos Ologolo Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment + Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bed Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +A 500sqm Land,Acadia Grove Estate By Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Femi Okunnu Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +12 Rooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Swimming And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious West Bridge 4/5 Bedrooms,Off Chevron Toll Gate Lekki. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +"A Prime Firm Dry Land Of Approximately 1,200sqm",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +De Castle Max Apartment,Chevron Lekki Lagos,₦,"61,750,000",0,0,0,4 beds, baths, Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,After Second Gate Ikota Lekki Lagos,₦,"85,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +New House,Chevron Lekki Lagos,₦,"320,000,000",1,1,0,5 beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Megamound Sales ........... Plots Of 600sqm And 700sqm With C Of O,Z Ikota Lekki Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,"Providence Road, Lekki Phase 1 Lekki Epe Expressway. Lekki Phase 1 Lekki Lagos",₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Terrace With 1room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedrooms Detached Duplex With Swinming Pool And Penthouse,Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lakeview 5 Bedrooms Fully Detached Duplex.,Chevron Chevron Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqms Land,Seagate Estate Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Ikate Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex Penthouse With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached House All Ensuite,Nicon Estate Ikate Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,0 baths,0 Toilets +950sqms Land With A Fully Detached Duplex,Directly On Adebayo Doherty (road 14) Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Newly Built 5 Bedroom With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Land Measuring 1,296 Sqm",Orchid Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,Vgc Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,7 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Executive Furnished 4 Bedroom Fully Detached Duplex With Bq, At Ikota Lekki", Ikota Lekki Lagos,₦,"200,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +Banana Island Waterfront Pure Residential Zone. 4611.03sqm.,Banana Island Waterfront Pure Residential Zone Vgc Lekki Lagos,$,"11,000,000",0,0,0, beds, baths, Toilets +Exclusive 4bedroom Terrace Duplex Ema,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +(678)sqm Land,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Landed Property In Whitesand Estate, Ologolo. Size: 760sqms Bareland. Tittle: Registered Survey And Deed. Location: Whitesand Estate, Ologolo. Jnf",Ologolo Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Front Plot Measuring 461 Sqm,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +Very Hot 77000sqm Of Land In Pinnock Beach Estate Osapa,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"11,550,000,000",0,0,0, beds, baths, Toilets +Spacious Fully Serviced 4 Bedroomsemi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Spa Road Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,"Vgc Regional Road, Lekki Vgc Lekki Lagos",₦,"80,000,000",0,0,0,4 beds, baths, Toilets +"A Land Measuring 2,000 Sqm",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Spacious And Tastefully Finished 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets +5bedrooms Duplex,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Fully Serviced Detached Duplex Plus Bq,Platinum Way Jakande Jakande Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land Measuring 650sqm,Ologolo Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached,Bakare/bera Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +Incomparable 10 Units Of 4 Bedrooms Terrace Duplex,"Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Waterfront Highrise 2 Bedroom Flat With A Bq,"Sapphire Tower Blue Water, 2nd Roundabout Right Side Lekki Phase 1 Lekki Lagos",₦,"150,000,000",1,1,0,2 beds,2 baths,3 Toilets +Mini Flat,Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Duplex With Swimming Pool, Cinema And A Bq",Spg Road Igbo Efon Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Land,"A Land For Sale In Off Freedom Way, Beside Orange Island. Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +4bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring Size 1,000 Sqm2",Ikate Lekki Lagos,₦,"220,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built To Taste 5bedroom Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Duplex,Eletu Osapa London Lekki Lagos,₦,"120,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +A Brand New 4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +House,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Executive 3 Bedroom Terrace,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedrooms Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Refurbished Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq,Northern Foreshore Estate Chevron Drive Lekki. Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +4bedrooms Terrace Duplex,D Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxiourious 5bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedrooms Duplex For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +House,Jakande Lekki Jakande Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road Axis Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 And Half Plots Of Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex In Ikota,"Ikota, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths, Toilets +Well Located 5 Plots Of Land,Harris Drive By Vgc Vgc Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Numbers Of 5 Bedroom Semi Detached House With Bqs,"Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets +"5bedroom Detached Duplex For Sale In Lekki,osapa London",Osapa London Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Terrace,"Victoria Crest, Orchid Road Ikota Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,5 baths,5 Toilets +1000sqm Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex With A Mini Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished Modern 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Detached Duplex With Swimming Pool For Sale At Lekki Orchid Road,Orchid Road Lekki Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Built Tastefully Finished Serviced Studio Apartment,Lekki Paradise Estate Chevron Lekki Lagos,₦,"18,000,000/year",1,0,0,1 beds,1 baths,1 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets +Tastefully Finished 4 Bedroom Terraced Duplexes,On Orchid Road Lekki Lagos Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,5 baths,5 Toilets +Beaitiful 4 Bedroom Duplex And A Room Bq In A Mini Estate, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New 4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built Luxury 3 Bedrooms Apartment,Osapa London Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths,5 Toilets +4 Bedroom Terrace With Bq By Water Front,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +Fantastic 2 Bedrooms Apartment Newly Built,Ikota Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +A Brand New 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex Newly Built,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedrooms Flats,Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets +Absolutely Stunning Unfurnished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +New House,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths, Toilets +Newly Built Four Bedroom Terrace Deplex,Emcel Court Ikate Lekki Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Off Spg Road Ologolo Lekki Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +6bedrooms Mansion With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +Five Bedroom Detached House With Swimming Pool In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Executive 4bedroom Semi Detached,Inside An Estate At Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Modernly Built 2 Bedroom Furnished Flat Apartments,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +5bedrooms Detached Duplex,Pinnok Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +9 Units Of Newly Build 3 Bedrooms Flat,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"700,000,000",1,1,1,9 beds,10 baths,10 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex Jenf,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,5 Toilets +4bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +950sqm Bare Land,Block 48 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Fantastic 48 Room Hotel For Sale In Lekki, Very Close To Lekki Epe Expressway",Close To The Lekki Epe Expressway Agungi Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Luxury Newly Built Units Of 4 Bedroom Terraces,2nd Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Vgc, Agungi, Lekki Conservation Centre, Chevron Igbo Efon Lekki Lagos",₦,"44,000,000",0,0,0,4 beds,4 baths,4 Toilets +Two Plots Of Land,Lekki Right Side Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 6 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,6 Toilets +"A Land Measuring 1,800sqm",Durosinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4bedroom Terrace Duplex Built Newly With Topnotch Materials Now Selling,Ikate Property Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely &newly Built To Taste 5bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Prime Land Suitable For Any Development,Freedom Way Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex House,Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Duplex With Bq And Security House,"Lekki Conservation Centre , Chevron , Lekki Chevron Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths, Toilets +"Newly Built, Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq",Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Distressed Sale: Fully Detached Gigantic Mansion Of 5 Bedroom Duplex With 3 Sitting Rooms, 2 Bedroom Guest Chalet And A Room Boys Quarter, Gate House Etc Corner Piece With Ample Parking Space. Land Size: 1,252sqm Location: Vgc",Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Finished 3bedroom Flat (1st Floor),Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex House Jw,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury 5 Bedroom Duplex With Servant Quaters At Pinnock Estate, Lekki Jw",Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex Within An Estate On Chevron Alternative Route Dol,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"261,000,000",0,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Flat/apartment For Sale + ( House Contents),Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq Jn,Y Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex +bq In A Fully Serviced Estate,"Oceanbay Estate,off Orchid Road Chevron Lekki Lagos",₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets +Spacious 5bedroom Duplex With Bq,Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Semi Detaches Duplex And Bq,Chevvy View Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +Contemporary 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Chief Collins Uchiuno Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex With Swimming Pool And Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets +Flourish Apartment And Terraces Offers A Range Of Amazing Property Types For Sale. Price Starts At 40m For 2 Bedroom Apartment,"Orchid Road, Off Lekki Epe Expressway, Just Passed The Second Toll Gate. Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +8 Hectares Of Land Off Freedom Way Beside Periwinkle Estate Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets +Glamour 5 Bedrooms Detached Duplex Newly Built With Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"86,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary Designed 4 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Emcel Court 4 Start's Sales Of 2 Bedroom Terrace Duplex At 38m Other Property Types Available Includes 4 Bedroom Terrace, Semi Detached And Fully Detached Duplexes","Igbo Efon, Lekki Epe Expressway. Igbo Efon Lekki Lagos",₦,"52,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built And Spacious 3 Bedroom Apartment, Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Self Serviced Apartment Plus Bq,"Cromwell Court, Chevron Drive Chevron Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,4 baths,4 Toilets +Gorgeous 4 Bedrooms Semi Detached Duplex Newly Built,Cowrie Creek Estate Ikate Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets +3 Bedrooms Penthouse,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4bedroom Fully Detached Duplex.,"Lekki County Estate, Ikota Lekki Lagos",₦,"105,000,000",0,0,0,4 beds,5 baths,5 Toilets +New Serviced 3bedroom Flat,Ilasan Behind Romay Garden Ilasan Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Fully Automated Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets +6 Bedroom Contemporary Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,0 baths,0 Toilets +Spacious Service 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets +Governor Consent,Orchid Road Chevron Lekki Lagos,₦,"72,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House Facing The Lake,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths, Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notch Detailed Luxury Alcadia Extension Homes,"Arcadia Extension, Off Pinnock Lekki Lagos",₦,"450,000,000",0,1,0,5 beds, baths, Toilets +"4 Bedroom Fully Detached Duplex, An Exquisite 2 Bedroom Apartment And Bq",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5bedroom Duplex,Maruwa Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Serviced 3 Bedroom Apartment + Bq,Agungi Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,4 baths,0 Toilets +Lovely Serviced 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets +New House,Sangotedo Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets +4 Bedroom Detached Duplex With Bq,Sangotedo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Water Front 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,4 beds,4 baths,5 Toilets +Presidential 6 Bedrooms Detached Duplex,Cowry Creek Estate Ikate Lekki Lagos,₦,"600,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom With Bq Fully Detached Property,Alternative Drive Chevron Lekki Lagos,₦,"71,000,000",0,1,1,5 beds,5 baths,6 Toilets +6 Units Of Standard 3 Bedroom Flats With Bq,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,3 beds,6 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds, baths, Toilets +Tartiana Court Ikota,Ikota Villa Estate Lekki. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Exquisite 5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +New House,Elegushi New Horizon 2 Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,6 baths, Toilets +"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Orchid Road Lekki Axis Lagos. Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +New House,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,0 Toilets +Luxury 6 Bedroom Detached Duplex,"Vgc, Lagos Vgc Lekki Lagos",₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +Luxury 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Osapa Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4bedroom Fully Detached Duplex With Swimming Pool,Orchid Road Lekki Lagos Oral Estate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,2 beds, baths, Toilets +"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Pinnock Beach Estate Ikate Lekki Lagos State. Ikate Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,0 baths,0 Toilets +2bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,0 baths,0 Toilets +Elegantly Finished Luxury 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Mufasa Apartments,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Near White Sand School On Lekki Right Hand Side Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Vgc Lekki Lagos,₦,"125,000,000",0,1,0,4 beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 6 Bedroom Mansion,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built Luxury 4 Bedroom Fully Serviced Maisonette,"Orchid Hotel Road, Lekki Lagos State Oral Estate Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land In Baruwa Ologolo 799sqm,Baruwa Ologolo Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Exclusive 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3bed Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,4 baths,0 Toilets +Luxury 3 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Newly Built And Well Finished 5 Bedrooms Detached House,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +700sqm Fenced & Gated Landed Property,Ilasan Lekki Lagos . Ilasan Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds, baths, Toilets +Classy 3 Bedroom Apartment,Cromwell Estate Chevron Alternative Road Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Four Bedroom Terrace Deplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets +Four Bedroom Terrace Deplex,Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"64,000,000",1,1,1,4 beds,4 baths,4 Toilets +Brand New Contemporary Home,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished Luxury 3 Bedroom Apartment Facing The Expressway At Ikate By Enyo Filling Station,Ikate Lekki Lagos,₦,"88,000,000",1,1,0,3 beds,3 baths,4 Toilets +2000sqm Waterfront Land In A Private Estate,Pinnock Beach Estate Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,Eleganza 2nd Toll Gate Chevron Lekki Lagos State. Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +New House,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary And Well Finished 5bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom House (carcass),Pinnock Beach Estate Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Smart Home With Pool In A Great Location,Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +8 Plots Of Land Strategically Facing Lekki Expressway,Spg Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasefully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Lekki County Homes Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4bedroom Terrace With A Room Bq Apartment,Elegushi Ikate Lekki Lagos,₦,"90,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +Exclusive 5 Bedroom Fully Detached House With Private Cinema And Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"330,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished Ensuite 5bedroom Detached Hse +swimming In Lekki Phase 1,Tunde Fisayo Lekki Phase 1 Lekki Lagos,₦,"350,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Ensuite 5bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Terrace,Chevron Conservation Chevron Lekki Lagos,₦,"45,000,000/sqm",1,0,1,4 beds,5 baths,5 Toilets +Well Built 4 Bedroom Self Compound Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 2 Bedroom Luxury Flat,"Horizon 2, Meadow Hall Road Ikate Lekki Lagos",₦,"60,000,000",0,0,1,2 beds,0 baths,0 Toilets +Land,Twin Lakes Estate. Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 4bedroom Semi Detached Duplex With Bq, At Orchid Lekki",Orchid Lekki Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Fully Detached Duplex,"Signature Estate 2, Ikate Elegushi Ikate Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds, baths, Toilets +A Brand New 4 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"135,000,000",0,0,0,4 beds, baths, Toilets +A Beautifully Built 4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Furnished 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land Measuring 1600sqm,"Ilasan, Off Lekki Ekpe Expressway Ikate Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Serviced Mini Flat,Chevron Alternative Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,2 baths,2 Toilets +A Brand New Fully Furnished 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +A Brand New 4 Bedroom Terrace Duplex,By Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 3 Bedroom Terrace,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000/sqm",0,0,0,3 beds,4 baths,4 Toilets +Brand New 4 Bedroom Terrace,Adeleye Street Idado Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Lekki County Homes Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Brand New 4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +Executive 4bedroom Duplex With 2units Of 2bedroom Apartment,"Mobil Estate,ilaje Lekki Lagos",₦,"75,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Renovated 4 Bedroom Terraced Duplex,"Cluster One Estate, Lekki County Homes Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Waterfront Land Measuring 1500 Sqm,By World Oil Filing Station Ilasan Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +A Brand New 3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets +Luxurious 5bedroom Detached Duplex,Omole Phase 1 Lekki Lagos,₦,"150,000,000/day",1,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Hampton Bay Estate, By Cowrie Creek Estate Ikate Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Situated Land Measuring 620sqm,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dominos Pizza Agungi Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +New Spacious Ensuites 4bedroom With B.q,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Duplex,Orchid Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex With A Bq,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand Newly Built Fully Serviced 3bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +30 Units Of Serviced 1&2 Bedroom Apartment,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex,Inside An Estate Idado Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Vintage Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Newly Built All Rooms En Suite 5 Bedrooms With Boys Quarter And Swimming Pool,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Half Plot Of Land Of Land At 304sqm (back) With A Foundation In A Gated Estate (where You Have To Get A Code To Enter).,Inside A Close Estate Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of Miniflat Bq,Bogije Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Contemporary Styled 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bed Fully Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets +New 5bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Numbers 4 Bedroom Detached House,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 3 Bedroom All Rooms En Suite Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +Exe4 Bedroom Fully Detached Duplex Plus A Bq,Chevron Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedroom Smart House,Lekki Phase1 Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Spacious 3 Bedroom Flat,Ikate Lekki Lagos,₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets +20 Units Of 4 Bedroom Terrace Duplexes,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful Waterfront 5 Bedroom Fully Detached Duplex With Bq Available,Megamound Estate Ikota Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built Executive 4bedroom Terrace Duplex For Sale. #55m Per Annum With Furnitures And #45m Without Furniture,Inside A Mini Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom All Rooms En Suite Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 6 Units Of Serviced 2 Bedroom Block Of Flats,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets +Spacious Contemporary 5 Bedroom Detached Duplex,"Orchid, Lekki Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex For Sale At Lekki Second Toll Gate,By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4bedrooms Duplex For Sale At Lekki Second Toll Gate,Lekki Second Toll Gate By Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,"Bera Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Ikate Lekki Lagos,₦,"118,000,000",1,0,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment With Bq,Jakande Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,1,0,4 beds, baths, Toilets +Luxurious 5bedrooms Duplex,"Osapa London , Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedrooms Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +4bedrooms Terrace Duplex With Self Compound,Agungi Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex With Swimming Pool,Lekki County Ikota Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"95,000,000",1,0,0,5 beds,5 baths,6 Toilets +3bedrooms Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Furnished 5 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Duplex,"Osapa London, Lekki Phase2 Osapa London Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedrooms Duplex For Sale At Lekki,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex,X Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets +5bedrooms Duplex For Sale At Lekki Count,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex With Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedrooms Luxury Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets +2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +Spacious 5bedrooms Duplex,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Detached Duplex,Lekki Conservative Road Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +175sqm &135sqm Office Spaces,Lekki Phase 1 Lekki Lagos,₦,"70,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Top Notch Luxury 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Contemporary Styled 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +Brand Newly Tastefully Built 4 Bedroom Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Tastefully Finished 3bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +Brand New 5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Serene Estate Ikate Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom With A Maid Room,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedroom Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"1,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built And Fully Serviced 2 & 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Alluring And Decently Spaced 4 Bed Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets +Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Land,Pinnock Estate Lekki Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Furnished 3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Fully Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Spaced Decently Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets +Spacious Tastefully Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Massive And Superb 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Bq On A 600sqm Orchid Lekki,Orchif Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets +15000sqm Of Land,Freedom Way Ikate Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,Very Close To Ever Care Hospital Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built Luxury 4 Bed Fully Detached Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0, beds, baths, Toilets +Closable Land Deal,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300sqm Land,Lekki Rhs In An Estate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serene Serviced 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fantastic 4 Bedroom Detached Duplex In Agungi,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +880 Sqms Land,Off Freedom Way Lekki Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Fully Detached,Happy Land Estate Lekki Phase 2 Lekki Lagos,₦,"70,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tasefully Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Sandfilled 300sqm Dry Land,Off Orchid Road Chevron Lekki Lagos,₦,"25,500,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite Contemporary Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ilasan Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bed Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Victoria Park Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Lovely 4 Bedroom Semi Detach Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Serviced Apartment With Cinema,Spar Road Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +"2,704.351sqm Commercial Land",Opposite Ikota Villa Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Orchid Road Lekki Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exclusive 4 Bedroom Fully Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Detailed Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Hectares Of Mixed Use Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +10 Hectares Of Mixed Use Land,Ilasan Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Built 4bedroom Fully Detached,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Very Close To Alpha Beach Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Second Tole Gate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +6 Bedroom Well Built Duplex,Bera Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detach Duplex,"*mega Mound Estate, Ikota* Ikota Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex Within A Mini Estate,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets +4 Hectares Of Land,"Behind Enyo Filling Station, Ikate, Lekki Ikate Lekki Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets +Executive 4 Bedroom Fully Detached Duplex Plus A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +48 Room And Suites Hotel,Chevron Lekki Lagos,₦,"750,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,320sqm Of Land",Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 & Half Plots Of Land,Idado Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Land,On Orchid Road Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki County Home Ikota Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Furnished 2 Bedroom Flat,Eletu Osapa London Lekki Lagos,₦,"40,000,000/sqm",0,0,1,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets +Most Beautiful Newly Built All Rooms En Suite 4 Bedrooms Maisonette,Ikate Elegushi Orizon Villa Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets +1000 Sqm Land,Blenco Area Ikate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa Bustop Facing The Expressway Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Scheme 2 Fenced And Sand Filled Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets +Brand New Luxury 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Acres Of Land,Orchid Road Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive And Luxurious 4 Bedrooms Semi Detached Duplex With Bq Jen Yemi,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedrooms Duplex,S Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Luxury 3 Bedroom Fully Finished,"Oral Estate, 2nd Toll Gate Lagos State. Oral Estate Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Bedroom Serviced Apartment,Ikate Right Ikate Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Penthouse,Ikate Right Ikate Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets +345sqm Of Land In A Serene Estate,"Atlantic View Estate, Along Alpha Beach Road Chevron Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +5bedrooms Duplex,A Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets +5bedrooms Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +"*available For Joint Venture . Prime Land On Lekki Express By Elf Bus Stop Lekki Phase 1* Size: 2,238.91sqm",D Lekki Phase 1 Lekki Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semi Detached & 4 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,5 Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"8,500 Square Meter In Lekki Phase One, Lagos","Off Adaramati Way, Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"2,700,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom With Bq,Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +1400sqm (corner Piece) Land,Lekki Rhs Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built, Tastefully Finished Four (4) Bedroom Contemporary Duplex With Boys Quarter",Oral Estate Extension Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exquisitely Finished 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"435,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Terrace Duplex House,Orchid Inside An Estate Lekki Lagos,₦,"3,500,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 671sqm,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets +4bedrooms Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraces,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Snd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds, baths, Toilets +4bedroom Fully Serviced Terrace For Sale At Lekki Phase1,Kuboye Lekki Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 4 Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Gorgeous 4 Bedrooms Fully Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq,Chevron. Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom,Osapa Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4/5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedrooms Detached House,Jakande Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +Fully Detached 4 Bedroom Duplex At Omole Phase 2 With C Of O.faithconcept,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built Contemporary Home In A Good Location,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,By Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Finished 5 Bed Fully Detached House With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Duplex,"Osapa London , Lekki Phase2 Osapa London Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Classy And Re Furbishable 5 Bedroom Bungalow,Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 3 Bedroom Flat Apartments,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets +Brand New 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +"5bedrooms Duplex With Cinema, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 4 Bedrooms Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Megamound Estate Ikota Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Cornerpiece 450sqms With A Semi Detached Duplex,Directly On Bisola Durosinmi Etti Street Lekki 1. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +Gorgeous Well Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Automated 6bedroom Pent House Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,0 baths,0 Toilets +New House,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths, Toilets +Luxury 5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Studio Apartment,Ologolo Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,1 Toilets +Newly Built 4 Bedroom Terrace With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 9 Flats Of 3 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,1,0,3 beds,4 baths,0 Toilets +Astonishingly Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedrooms Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Off Orchild Hotel Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets +New House,Lekki County Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,0 Toilets +Spacious And Well Built 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Plot Of Land In Transcendence Estate Behind Novare Mall,Behind Novare Mall Sangotedo Lekki Lagos,₦,"15,000,000",1,0,0, beds, baths, Toilets +Well Finished 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Duplex In A Serene Environment,Idado Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fantastic 4 Bedrooms Semi Detached Duplex, All Room En Suite With Modern Fittings",Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Office Space,Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 1 Bedroom Fully Finished Self Serviced Apartment,Elegushi Ikate Lekki Lagos,₦,"50,000,000",1,1,0,1 beds,2 baths,2 Toilets +Gorgeous 4 Bedrooms Fully Detached House With An Ensuite Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +Developer Delight 5 Plots Of Land In An Estate Off Orchid Road,"Off Orchid Road, Lekki Chevron Lekki Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets +644sqm Land With Governo's Consent In Ologolo,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +A Mansion With 6 Beds All Ensuite Fully Detached Duplex. Chika,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,8 Toilets +Fully Detached 5 Bedroom Duplex In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,4 Toilets +5bedrooms Mansion With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Detached Duplex With Swimming And 2 Rooms Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +4bedroom Duplex With 2 Units Of 2bedroom Flats,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq*,Oniru Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace,Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Twin Lake Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,4 baths,4 Toilets +7 Units Of Waterfront Luxury 3 Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets +4bedrooms Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4units Of Three Bedroom Flats Fully Furnished,Between Lekki Phase 1 & Agungi Estate Axis Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Contemporary 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,6 Toilets +Three Bedroom Maisonette And Bq,Off Freedom Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"80,000,000/month",0,1,0,3 beds,3 baths,3 Toilets +Spacious 4bedroom Terrace Duplex,Chevron Alternative Route Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex In A Serene Location Orchid Lekki,Orchid Opposite Chevron Drive Agungi Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Detached Duplex Jw,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex,2nd Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2.0007 Hectares Of Land,"Behind Lekki 2nd Toll Gate, Lekki Conservation Toll Plaza, Beside Chevon. Chevron Lekki Lagos",₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With A Back Garden And A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Finished 4bedroom Semi Detached Duplex With Bq,Romax Homes. Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets +New 4 Unit Of 4 Bedroom Terrace With Bq Location: Lekki Phase 1,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,0 Toilets +3 Bedroom Penthouse,Jay Jay Oladimeji Close Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive All Rooms En Suite 4 Bedrooms Carcass,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Land Measuring 2,402.46 Sqm",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House (all Ensuite) With 3 Rooms Bq (all Ensuite),Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Lovely 2 Bedroom Terrace Duplex In A Mini Estates In Osapa . This House Is Exquisitely Finished, Spacious And Very Well Built.",Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built And Finish 4 Bedroom Detached Duplex,Orchid Road By 2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex With Excellent Facilities,"Chevy View Estate,chevron Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off White Sand Avenue In Well Secured Close Estate. Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Studio Apartment,Bakare Estate Agungi Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,1 Toilets +Luxury 4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,5 baths,0 Toilets +Brand Newly Built Fully Serviced 2bedroom Flat,Megamond Estate Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +9 Plots Of Land,Orchid Road Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Primewater View Garden Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths, Toilets +Luxury 4bedrooms Semi Detached Duplex,Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex\,Ikota Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Van Daniels Estate Off Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +800sqm Of Land, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 3 Bedroom Apartment With Bq At Prime Water Grden In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Northern Foreshore Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex In Osapa London,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Fantastical 4 Bedrooms Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bed Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Duplex With Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,"Ikota Roya Estate Off Lekki Epe Expressway, Lekki Lagos Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Spar Road Ikate Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautifully Built 1 Bedroom Apartment,Lekki 2nd Toll Gate Lekki Lagos,₦,"25,000,000",0,0,0,1 beds, baths, Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds, baths, Toilets +Luxury 2 Bedroom Apartment With 24hours Power Supply,Elegushi Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets +The Wasky Edge Apartments,"Olusesi, Chevron Extension, Lekki Conservative Center.* Chevron Lekki Lagos",₦,"46,000,000",0,0,0,2 beds, baths, Toilets +3bedroom Terrace Duplex Offplan Project.,"Imperial Oaks Estate, Orchid Road. 2mins Drive From Lekki Epe Expressway. Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,6 baths,6 Toilets +New House,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets +2bedroom Flat,Ikota Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built And Well Furnished 3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,1,3 beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds, baths, Toilets +1 Bedroom Apartment,"Cluster One Estate, Road 1 Ikota Lekki Lagos",₦,"29,000,000",0,0,0, beds, baths, Toilets +A Beautifully Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Land Measuring 1,100sqm With Demolishabl Structure",Fola Osibo Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"30,000,000/sqm",1,1,0,2 beds,3 baths,3 Toilets +Godmade Connect Court 3 Ikate,"Behind Onike Art Gallery Ikate, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,0,0,2 beds, baths, Toilets +3 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Ilasan Lekki Lagos,₦,"1,100,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +House,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"45,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +Very Hot Land Opposite Dangote Refinery,Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +4bedrooms Smart Home,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Detached House,Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lounge And Bar Proposed Property, Lekki Phase 1 Lekki Lagos,₦,"15,000,000/day",0,0,0,2 beds,3 baths,4 Toilets +5 Bedroom Duplex Fully Detached Duplex With A Bq And Swimming Pool,Pinnock Beach Estate Jakande Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +This Lovely 4 Bedroom Semi Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Detached Duplex,"Alma Beach Estate, By Richmond Estate, Nike Art Gallery Road, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex House With A Bq Jw,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartments With A Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4bedroom Semi Detached House,Victoria Gardens Bay 111 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Residential Regular Sharp Plot Of Land Measuring 780 Square Meter,Off Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex For Sale In Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious And Tastefully Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Lekkk Scheme 2, Behind Emeralds Housing Scheme Estate Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Orchid Road By Lekkki Second Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace Duplex For Sale. Ben,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +Two Plots Of Dry Land,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +Mini Flat,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"1,700,000",0,0,0,0 beds,0 baths,0 Toilets +"Landed Property Of Approximately 997sqm With Structure Directly On Christ Avenue, Lekki Phase 1 Price N350m.",Lekki Phase 1 Lekki Lagos,₦,"350,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplex,Opposite Ikate Ilasan Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Snd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fully Detached 5bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets +4bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Lakeview Park 2 Estate Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +Brand New And Tastefully Finished 5 Bedroom Semi Detached Duplex With Bq,"Off Orchid Road, Beside Cooplag Estate, By Second Toll Gate Chevron Lekki Lagos",₦,"49,000,000",0,1,0, beds, baths, Toilets +Lovely Beautiful And Luxury 3 Bedrooms Block Of Flats, Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Most Affordable Dry Land With Quick Development,By Pinnock Estate Osapa London Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets +2.1 Hectares Of Land,Beside Vgc Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Designed & Well Finished 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4bedroom Duplex With Bq,Alternative Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +Automated 5 Bedrooms Detached Duplex With Rooftop Terrace And Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedrooms Detached Duplex Newly Built With Bq,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Blocks Of Flat,.. Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +4bedrooms Massionette,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette + Bq,Off Freedom Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +New House,Menga Mount Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths, Toilets +550sqm Land,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Bq,"Megamond Estate, Lekki County Homes Ikota Lekki Lagos",₦,"210,000,000",0,0,0,5 beds, baths, Toilets +800sqm Fenced Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5bedrooms Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 5bedrooms Duplex,Z Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 4bedrooms Terrace,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Duplex,Ikate Lekki Lagos,₦,"215,000,000",0,1,0,5 beds,5 baths,6 Toilets +Top Notch Detailed Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex With A Room Bq At Lekki Phase 1 Lekki Lagos,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Duplex,\ Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex For Sale At Agungi Lekki,Agungi Lekki Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +"5bedrooms Duplex With Cinema Room, Swimming Pool And Bq",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterside 5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Mansion,"Pinnock Beach Estate, Osapa London Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedrooms Terrance Duplex At Lekki County,Lekki County Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 4&5bedrooms Duplex For Sale,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,"Bera Estate Off Lekki Epe Expressway, Lekki Lagos Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedrooms Duplex For Sale At Megamound Lekki,Megamound Lekki Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedrooms Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex Smart House With Bq,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"320,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4bedrooms Fully Detached Duplex For Sale At Orchid Roads,Orchid Hotel Roads Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedrooms Semi Detached Duplex,Orchid Road By Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedrooms Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +Luxury 5bedrooms Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Mega Mound Lekki Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,S Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000/sqm",0,1,1,4 beds,5 baths,5 Toilets +3 Plots Of Corner Piece Land,"Twin Lake Estate, Chevron Lekki Lagos",₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"155,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds, baths, Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",1,0,0,5 beds, baths, Toilets +600sqm Of Land,Royal Pine Estate Opposite Van Daniel Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Built And Well Furnished 4 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,"Hampton Bay Estate, By Cowrie Creek Estate Ikate Lekki Lagos",₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Standard 4 Bedroom Fully Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Omorinre Johnson Street Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 5bedrroom Fully Detached Duplex, At Osapa, Lekki",Osapa Lekki Lagos,₦,"300,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +"Executive 4bedroom Terrace Duplex With Bq, At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached,Eletu Osapa London Lekki Lagos,₦,"85,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached,Peacock Beach Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxurious 5bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"165,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq Jw.,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex Jn,Agungi Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex House Jw,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex With Bq At Bera Estate,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished Detached 5bedroom Duplex,"Orchid Road, Lekki Lagos. Lekki Lagos",₦,"125,000,000",0,0,1,5 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Duplex,Gated Area Igbo Efon Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,5 Toilets +"Fenced And Gated Bareland Measuring 1,125 Square Metres",Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Of Land Available,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 1 Bedroom All Rooms En Suite Apartment With A Well Fitted Kitchen,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New Executive 4 Bedroom Fully Detached Duplex With Bq + Swimming Pool For Sale. Location: Ikota Villa Estate Lekki Price: ?120m Title: Governors Consent. Mark,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +4bedroom Duplex Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,0 baths,0 Toilets +Just Out Now Newly Built A Little Luxurious 4bedroom Semi Detach Duplx Wth A Bq At Vella Homes Off Chevron Lekki Lagos,Vella Homes Lekki Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Eleganza Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Exclusive 4 Bedroom Terrace With Communal Swimming Pool, Cctv Camera",Orchid Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 2 Bed Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land,Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sand Filled Land Measuring 700sqm Available,Ben Flow Estate Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Contemporary 2bedroom Terrace Duplex Available,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxury Fully Serviced 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +3bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +11 Units Of Blocks Of Flat,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Luxurious, Newly Built 4units Of 4bedroom Maisonette With Bq In A Secured Estate",Agungi Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +5bedroom Detached Duplex,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets +Luxury 4 Bedroom All Rooms En Suite Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Flat,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom + 2 Rooms Boys Quarter,Off Durosimi Eti Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious Contemporary Styled 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 666sqm,Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,400sqm Water Front Land",Inside Vgc Estate Vgc Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 2,402.46sqm",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Fully Furnished 2bedroom Flat,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced &newly Built 4bedroom Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex,Southern View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +2plots Of Land With Cofo,Orchid Road Just Beside Cooplag Cooperative Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex Jw,Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"Newly Built, Tastefully Finished 4 Bedroom Duplex",Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Fantastictcaly Finished 4 Bedroom Fully Detached Duplex Elegant Home With A Room Bq Secured And Gated Estate,exotic Custom Made Yemi",Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,6 Toilets +Executive And Luxurious 4 Bedroom Semi Detached Duplex With 3years Payment Plan,Jakande Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exclusive 5bedroom Detached Duplex With Bq & Swimming Pool,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront Land Measuring 1500sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Corner Piece Land,White Sand Avenue Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4bedroom Terrace Duplex With Flexible Payment Option For A Duration Of 18months,"Orchid Road, By Chevron, Lekki Tollgate Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,0,0, beds, baths, Toilets +900sqm Of Land,Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gorgeous 5 Bedroom Fully Detached Duplex??*jnf,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Prime Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Serviced 3 Bedroom Apartment,"Lekki Conservation Centre , Chevron Chevron Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious 2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets +Closable Land Deal,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb 4 Bedroom Maisonette With A Bq,Ikate Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Exotic 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orchid Hotel Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Semi Detached With A Room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Pinnock Estate,Pinnock Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"4,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Of Land,"Periwinke Estate, Ikate. Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Beach View Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +684sqm Of Land,Ikota Villa Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +930sqm Land,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Of Land,Pinecourt Estate Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +700sqm Of Land,Freedom Way Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Exquisitely Finished 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Commercial 550sqms With A Pharmacy Structure,"Directly On Admiralty Way, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +150 Plots Of Land,"Orchid Road,2nd Roundabout Chevron Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plot Of Land,First Roundabout Dpk Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 4bedroom Terrace Duplex.,"Romax Homes, Vgc Vgc Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,0 baths,0 Toilets +Full Plot Of Land,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"22,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Landed Property Of Approximately 1,388sqm With Structure Located Off Admiralty Road, Lekki Phase 1.",Lekki Phase 1 Lekki Lagos,₦,"480,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Luxury 4bedroom Semi Detached Duplex At H Homes. Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Luxurious 26 Rooms Hotel On 1,400sqm Land On 1,400sqm Land",Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Functional Filling Station,Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Maintained 4 Bedroom Terraced Duplex With A Bq,Abiola Courts Lekki Elegushi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +A Brand New 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Beautifully Built 4 Bedroom Semi Detached Duplex With A Bq,Lekki Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Well Sited Land Measuring 1540sqm,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"135,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartment,Ikota Lekki Lagos,₦,"55,000,000",1,0,1,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 4bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"200,000,000/day",1,1,1,4 beds,5 baths,5 Toilets +"Distress Sale, 5 Bedroom Fully Detached",Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 3 Bedroom Flat,Dillon Agungi Lekki Lagos,₦,"35,000,000/sqm",1,0,0,3 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detach,Spg Road Ologolo Lekki Lagos,₦,"48,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detach,Eletu Osapa London Lekki Lagos,₦,"65,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +A Beautifully Built 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +A Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Plot Of Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,0 baths,0 Toilets +Spacious 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Terraced Duplex,"U3 Estate, Lekki Right Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land Measuring 900sqm,"Off Freedom Way, Itedo Lekki Phase 1 Lekki Lagos",₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 3,150sqm",Ikota Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Terrace,5 Street Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land,Ilasun Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 4 Bedrooms Semi Detached Duplex Newly Built With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Decent 2 ,3 Bedroom Apartment","Off Freedom Way, Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Very Luxury 5 Bedrooms Fully Detached Duplex For Sale With A Room Bq,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4units Of 5 Bedrooms Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magistically 5 Bedrooms Detached Duplex With Bq,Chevron Alternative Route Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,1,4 beds, baths, Toilets +Corner Piece Developer Delight Land On Admiralty Way,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Terrace Duplex,Chisco Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Fully Detached Duplexes,Ikota Lekki Lagos,₦,"20,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Block Of 6 Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikoyi Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Bedroom Apartment,"Alpha Beach New Road By Chevron Roundabout, Lekki Lagos State. Igbo Efon Lekki Lagos",$,"100,000",1,1,0,3 beds,4 baths,4 Toilets +New House,Snd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds, baths, Toilets +"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Idado Estate, Lagos State. Idado Lekki Lagos",₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Horizon Premier Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,0 Toilets +2 Bedroom Apartment,Right Hand Side Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets +Tastefully Finished 2 Bedroom Terrace,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious And Well Furnished 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Detached House In A Private Estate,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +New House,Arcadia Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths, Toilets +Land,Vgc Lekki Lagos,₦,"550,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Self Serviced Apartment Plus Bq,Bourdillion Court Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,4 baths,4 Toilets +Head Turning 5 Bedrooms Detached Duplex With Swinming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +40 Units Of 4 Bedroom Semi Detached With Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"6,400,000,000",0,0,0,4 beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,0 Toilets +New House,Lekki County Home Chevron Lekki Lagos,₦,"202,000,000,000",0,1,0, beds, baths, Toilets +6 Bedroom Detached Duplex,Africa Lane Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedrooms Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,"Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Luxury Fully Serviced 3 Bedroom Apartment,Atlantis Ii & Iii Ologolo Lekki Lagos,₦,"79,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Serviced Apartment,Ikate Right Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +Elegant 4 Bedroom Semi Detached Duplex |,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets +1 Bedroom Fully Functional Flat,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +Two Units Of 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Unit Luxury Of 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Creek Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached With Bq,Harris Drive Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +16000sqm Land,Abijo Gra Government Scheme Lekki Lagos,₦,"30,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +1 Bedroom Serviced Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +New House,Right Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,"Directly Facing Lekki Epe By Chevron Adjacent To Chew View Estate Back Gate / Gtbank Lekki, Lagos Chevron Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex With A Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,0 baths,0 Toilets +Land,Facing 2nd Toll Gate Llc Chevron Lekki Lagos,₦,"270,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +672sqms Land,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Besides Vgc Garden Ikota Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Gra Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Sqms Land,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +700sqm Land,Orchid Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Wing Of Duplex,Akwuzu Street Lekki Epe Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq And Pool,By Vgc Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Mansion With Cinema,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,6 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace,Harris Drive Vgc Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Home,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Automated Contemporary Home,Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Finished 4bedroom Semi Detach Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5bedroom Semi Detached Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Executive 3 Bedroom Flat,Alternative Route Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Unique Executive Furnished 41 Rooms Hotel,Lekki Lagos,₦,"1,400,000,000",1,1,0,10 beds,10 baths,10 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +2.5 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000",0,0,0,0 beds,0 baths,0 Toilets +679sqm Of Land,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Exclusive 5 Bedroom Fully Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Semi Detached Duplex Plus Bq,Vgc Regional Road Lekki Lagos State Vgc Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,5 Toilets +1bedrooms Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +Tastefully Finished 4 Bedrooms Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex In A Serviced Estate.,Jakande Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq And 247 Electricity,"Ocean Bay Estate , Off Orchid Road Chevron Lekki Lagos",₦,"120,000,000",1,1,1, beds, baths, Toilets +Newly Built 5bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built Luxury 2 Bedroom Fully Finished And Serviced Detached Bungalow Plus Bq With Air Conditioning , Fully Fitted Kitchen","Southpointe Estate Lafiaji, Lekki Lagos State. Lekki Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets +Carcass Luxury Contemporary 4 Bedroom Bedroom All Rooms En Suite Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Well Finished 3 Bedroom Terrace Duplex Is Located In A Secured Estate.,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5bedroom Duplex With A Pool At Lekki County Megamond Estate Lekki Lagos,Lekki County Megamond Estate Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Homes Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +Beautifully Built 3bedroom Marionette,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets +Contemporary 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Orchid Road Chevron Lekki Lagos,₦,"150,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1 Unit 4 Bedroom Terrace Duplex On 3 Floors, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,0 baths,4 Toilets +New House,Ikate Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths, Toilets +3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds, baths, Toilets +Newly Reburbished Luxury 5 Bedroom Duplex With 2room Boys Quarters,"Charles Ifeanyi St, Lekki Phase I, Lekki, Nigeria Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +House,Chevron Lekki Lagos,₦,"110,000,000",0,1,0, beds,4 baths, Toilets +New House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets +House,Sangotedo Lekki Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths, Toilets +New House,Oral Estate Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 3bedroom Serviced Apartment,Eleganza Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Numbers 4 Bedroom Detached House With A Room Boys Quarters,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Lan,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Massionete,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex Home With A Bq Jen,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Executive 4bedroom Detached Duplex With A Room Bq. At 2nd Toll Gate, Lekki",2nd Toll Gate Lekki Lagos,₦,"80,000,000/year",1,1,1,5 beds,7 baths,7 Toilets +"Ostia Island,10 Hectares Beside Orange Island Off Freedom Way Lekki Phase 1 @n125,000 Per Sqm Titl","Ostia Island,10 Hectares Beside Orange Island Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"125,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Newly Built Many Unit Of 4bedroom Terraces,Vgc Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,"Orchid, Ologolo Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets +Exceptionally Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +House,Ajah Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths, Toilets +4 Bedroom Fully Detached Duplexes With A Room Bq,Ikota Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,6 Toilets +New House 4 Bedroom Semi Detached,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land Measuring 667sqm,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Bungalow,Off Orchild Hotel Road Chevron Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Orange Highland Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind House On The Rock Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Seagate Estate Ikate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Furnished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built Luxury 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Newly Built Luxury 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen",Lekki County Homes Lekki Lagos State Jakande Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Well Built 3 Bedroom Terraced Duplex With A Bq,Green Ville Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets +Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Terrace Duplex Located At Chevron Area Orchid Lekki,Orchid Chevron Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets +Newly Built And Tastefully Finished 4 Bedroom Terraced Duplex With Bq,Ilasan Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 6 Blocks Of 3 Bedrooms Flats,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detach,St Joseph Agungi Lekki Lagos,₦,"60,000,000/sqm",0,0,0,5 beds,6 baths,6 Toilets +Top Notch 4 Bedroom Detached Duplex With Bq And Study Room,At Seed School Road Beside Catholic Church Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,6 Toilets +Luxury 5 Bedroom Duplex In Hampton Villa,Hampton Villa Behind Arcadia Groove Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Semi Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built Luxury 4 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Modern Business Plaza,Opposite Igboefon Bus Stop Idado Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,1 Toilets +Unfurnished 3 Bedroom Terrace,New Horizon 2 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +1250sqm Virgin Land,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Built 3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Middle Land At Cowrie Creek, Ikate",Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Fully Detached Duplex With 2 Bq,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Duplex + 2 Rooms Penthouse And A Room Bq,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,7 beds,8 baths,8 Toilets +Luxury 2 Bedrooms Flat With 24 Hours Electricity/elevator /pool,"Lekki County , Megamond Ikota Lekki Lagos",₦,"37,000,000",1,1,1,2 beds,2 baths,3 Toilets +5bedrooms Duplex With Swimming Pool And Cinema,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Hot 2035sqm Of Commercial Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex,Ologolo Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New, Contemporary And Tastefully Finished 4 Bedroom Fully Duplex",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 2bedroom Flat,Off Kensular Road Behind Prime Water View Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedrooms,Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Spacious Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets +Lovely 4 Bedroom Terrace,Salem Ikate Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terrace,Lekki1 Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,0,0,3 beds,3 baths,4 Toilets +Jv Lekki Phase One Right Side For This Project Of 16 Luxuries Service 3bedroom Flats,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex With A Room Bq,Osapa London Lekki . Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bed Terrace Duplex With Self Compound And Bq,Ajah Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite Home In A Private Estate,Northern Foreshore Estate Chevron Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellently Built 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Beautiful Built 5bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Newly Built Fully Serviced Executive 3 Bedroom Service Flat Apartments With Uniform Security Men. Property Comes With Modern Interior Design, All Room En Suite With Modern Interior Fittings. Price:#45m Asking",Off Orchid Hotel Road Lekki Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom Detached Duplex With A Pool,Ikate Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +"5bedroom Duplex En Suite With Jacuzzi In Master And Madam’s Bedroom, 3 Living Rooms, Visitors Lounge And A Dinning Area With An Expansive Kitchen With A Pantry.", Vgc Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Orchid Road Inside Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +Brand New Serviced 4 Bedroom Terrace Duplex,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets +Land,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Contepomporally Design Fully Automated 4 Bedroom Semi Detached Smart Home, Chevron Lekki Lekki. Location: 2nd Toll Lekki Title. Governor's Consent Secured Estate Large Compound Space Etc Yem/jenf",Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,6 Toilets +1083sqm Land,Off Castle And Temple Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Self Compound Detached Duplex,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedrooms Duplex,"Orchid Road Hotel, By Chevron Second Toll Gate Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built 4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets +5 Bedrooms Fully Detached And 4 Bedrooms Semi Detached,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Residential Plot Of Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex With A Pool In Ikota.,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land Measuring 1121sqm,U3 Estate Lekki Right Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex In A Serene Gated Estate,Cluster 1 Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Boys Quarter,Chevron Alternative Route Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Duplex,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets +Luxurious 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +New House,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds, baths, Toilets +A Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Waterfront 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +2bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Furnished 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,0 baths,0 Toilets +Excellently Finished Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Off Kushenla Road Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedrooms Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Distress 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"50,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets +5bedrooms Semi Detached Duplex For Sale At Orchid Road,"Orchid Road, By Second Toll Gate Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 5 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq,Lekki Phase 1 Lagos State. Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets +Lands Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Terraced Duplex,"Lekki Conservative Road, Opposite Chevron Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Finished 5 Bedroom Fully Detached House With Swimming Pool,"Lekki County, Lekki Lekki Lagos",₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets +New House,Alfa Beach Road Very Close To Chevron Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets +"1,036sqm Of Bare Dry Table Land",Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex At Chevron Toll Gate,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,4 Toilets +House,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Executive 3 And 2 Bedroom Flat Apartment With A Swimming Pool At Ikota In A Secure Estate. Price:#40m And 39m Negotiable. Location Ikota Lekki Inside An Estate Features: Swimming Pool|detailed Finishing|brand N,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq And Family Lounge.,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +A Brand New Luxury 3 Bedroom Flat + Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Home,2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets +5bedrooms Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Furnished Terrace 3bedroom Duplex,"Orchid Road, Lekki Lagos State. Lekki Lagos",₦,"67,000,000",0,0,1,3 beds,0 baths,0 Toilets +"Well Maintained, Beautifully Designed 3bedroom Flat With A Portable Room Boy's Quarter.",Westgate Estate Ologolo Lekki Lagos,₦,"38,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +A Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds, baths, Toilets +Exquisitely Furnished 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets +5bedrooms Luxury Duplex With Bq,"Megamound Estate, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Bridge Estate,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds, baths, Toilets +Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Plots Of Land,Off Spg Road Ologolo Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Second Toll Gate Chevron Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,0 baths,0 Toilets +Decently Built Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace,Kunsela Ikate Lekki Lagos,₦,"100,000,000/sqm",1,1,0,4 beds,5 baths,5 Toilets +A Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +5bedrooms Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex For Sale At Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Christabel's Gardens,"Off Chevron Toll Gate, Lekki Lekki Lagos",₦,"59,000,000",0,0,0,4 beds, baths, Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Fenced And Sand Filled Land Measuring Approximately 30,000 Sqm",Lekki Phase 2 Lekki Lagos,₦,"65,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"30,000,000/day",1,1,1,3 beds,4 baths,4 Toilets +Gorgeous Water Front 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"69,000,000",1,1,0,5 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Ikota Villa Estate Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 5bedroom Terrace Duplex With Rooftop Terrace,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Incredible 4 Bedroom Semi Detached Residence,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,1,0,3 beds,3 baths,4 Toilets +Land Of 800sqmters,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Just Out Now Luxurious 4bedrm Terrace Duplex With Quality Finishing And Much More Comfortable,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets +New 4 Bedroom Detached Duplex,Osapa Lodon Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3bedroom Flat In A Block Of Flats In Agungi Lekki, Lagos",Agungi Lekki Agungi Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious And Tastefully Finished 2& 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 5bedrooms Duplex For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"180,000,000",0,0,0,5 beds, baths, Toilets +Tastefully Finished 6 Bedrooms Fully Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New, Modern 4 Bedroom Fully Detached Duplex",Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House, Nestled Within A Family Friendly And Secured Environment",Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built, Tastefully Finished, Spacious, 4bedroom Detached House",Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedrooms Detached Duplex By Second Toll Gate Lekki,By Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Duplex With 2rooms Bq,Lekki Right Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +This Lovely 4 Bedroom Terrace Duplex In A Secured And Mini Estate,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 6 Bedroom Detached Duplex In A Secured And Serene Estate,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land In Cowrie Creek Estate,Ikate Lekki Lagos,₦,"228,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Victory Park Estate Jakande Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,0 baths,0 Toilets +Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq,Orchid Road Lekki Axis Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxurious 5bedrooms Duplex For Sale At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Deluxe 4 Bed Fully Detached Duplex Jw,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished Fully Detached 5 Bedroom Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets +3 Bedroom Detached Duplex,Lekki Conservative Road Chevron Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,3 baths,0 Toilets +A Fully Detached 5 Bedroom+ 2 Rooms Servants Quarter.,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury Newly Built 4 Bedroom With Bq,Secure Estate In Agungi Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,By Mega Chicken Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +New House,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets +Executive Hotel 48rooms,Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",1,1,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Terrace Deplex,Silvercrest Estate Orchid Road Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Omorhire Johnson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Fully Detached With A Bq,Lekki County Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +New House,Osapa Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths, Toilets +5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Detached Duplex For Sale At Lekki County Lekiki,Lekki County Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Cute 5 Bedrooms Detached Duplex With Swinming Pool,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets +"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq",Off Admiralty Way Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New And Exquisitely Finished 4bedroom Terrace With A Room Bq And A Spacious Roof Top Seat Out,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartments With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,0 baths,0 Toilets +1 Bedrooms Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds, baths, Toilets +Newly Built Tastefully Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets +1 Plot Of Land In A Gated Estate,Westwood Estate Badore Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Bungalow,"2nd Toll Gate, Lekki Expressway Chevron Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land. 10% Christmas Awoof Don Land.,"Regnum Estate, Eputu London, 2mins Drive From Lekki Epe Expressway. Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets +Spacious 6 Bedroom Fully Detached Duplex With Extra Study Penthouse,Southern View Estate Ikota Lekki Lagos,₦,"62,000,000",0,0,0,6 beds,6 baths,7 Toilets +Four Bedroom All En Suite Contemporary Semi Detached Duplex,Ologolo By Jakande Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exclusive 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,300sqm Land","Close To U3 Estate, Lekki Phase 1, Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Units Of 2 And 3 Bedroom Apartments With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets +Beautifully Built And Not Furnished 4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +House,Ilasan Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built Executive 2 Bedroom Mansionnette,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxurious Newly Built 2units Of 5bedroom Fully Detached With Bq In A Secured Estate,Agungi Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +15 Units Of 4 Bedroom Luxury Terrace House,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +"3,2,1 Bedroom Apartment",Second Tole Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,0 baths,0 Toilets +Luxurious Units Of 5 Bedroom Fully Detached,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached,5 Street Estate Agungi Lekki Lagos,₦,"120,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Detached 4 Bedroom Duplex In Ikota,"Ikota, Lekki Ikota Lekki Lagos",₦,"85,000,000",0,0,1,4 beds,4 baths,4 Toilets +Land,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained Beautiful Tastefully Finished Studio Apartment,New Horizon 1 Estate Ikate Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,1 Toilets +Very Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Conservation Estate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex With A Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +500sqm Plot Of Land Forsale At Carlton Gate Estate Chevron Drive Lekki,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +1400sqm Of Land Forsale Off Admiralty Road Lekki With Very Large Detached House And Two Rooms Bq Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +1300sqm Of Land,Agungi Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vella Homes Off Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"84,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,H Homes Off Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Penthouse Apartapartment In Ikate Lekki Lagos For Sale,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Elenganza By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Decently Finished 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Service 3 Bedroom Flat With A Room Bq,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Fully Service Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +1200sqm Plot Of Land Forsale At Lekki Phase 1,Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +1000sqm Corner Piece Land With A Demolishable Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1315sqm Land With An Old Building On It,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex In Vgc Lekki Ajah Lagos For Sale,4 Bedroom Semi Detached Duplex Vgc Lekki Lagos,₦,"77,500,000/day",0,1,0,4 beds,4 baths,4 Toilets +Finished 3 Bedroom Terrace Duplex,Victoria Bay Annex 2 Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,3 Toilets +Lovely Built 4 Bedroom Terrace Duplex,Victoria Bay Annex 2 Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Victoria Next Iii Vgc Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex + Bq And Swimming Pool,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Nicely Built, 4 Bedrooms Semi Detached House",Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +New House Very Large Compound 4 Bedrooms Semi Detached Duplex + 2 Rooms Bq,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex + Bq,Osapa Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Build 4 Bedrooms Terraced Duplex With Self Compound,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Bungalow,Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000/year",1,1,0,2 beds,3 baths,3 Toilets +A Newly Built 4bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Estate Lagos Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Toll Gate Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New, Massive & Well Finished 5bedroom Fully Detached Duplex Plus One Room Bq",Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Units Of 5 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plot Of Land (675sqm) Forsale At Vgc,Vgc Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +7 Plots Of Land,"Lekki Beach Road, Jakande Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Maisonette,Camberwall Advantage 3 Ikate Close To Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Bakari Estate Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Discounted Lekki Very Spacious Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Terrace Duplex,Liberty Estate Ikate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,4 Toilets +Super Spacious Value Centric 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +Distress Sale Very Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Semi Detached Duplex,Ikota Axis Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Orchid Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,6 Toilets +9 Unit Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,3 beds,3 baths,3 Toilets +A Standard 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Complete Class 5 Bedroom Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +4bedroom [email protected] Phase 1,Lekki Phase 1 Lekki Lagos,₦,"108,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely 2 Bedroom Terrace Duplex,"Emcel Court 4, Orchid, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"37,000,000/day",0,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached House With Bq,Dan Ogbeide Close Off Oyinbo Adjahor Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Land,"Bogije, Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,Bogije Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +25 Plots Of Land, Chevron Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Fully Detached Duplex In Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Finished 5 Bed Fully Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +3bedroom Apartment,Ikate Lekki Axis Ikate Lekki Lagos,₦,"57,000,000/year",1,1,0,0 beds,3 baths,4 Toilets +600sqm Land,"Itoru Village, Ode Omi, Lekki Lagos",₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ochid Road Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +New House Massively Spacious 7 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,7 beds,6 baths,6 Toilets +Massive Luxury 5 Bedroom Fully Detached House,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +300sqm Land,Bogije Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built One Bedroom Apartment,Orchid Road Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Jakande Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Camberwell Estate In Ikate,Ikate Lekki Lagos,₦,"40,000,000",1,1,1, beds, baths, Toilets +5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +"1,116sqm Plots Of Land At Twin Lake Estate Opposite Chevron Office Chevron",Chevron Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Abijo G.r.a. Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Townhouse With Self Compound,Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Smart Home 5 Bedroom Detached House + Swimming Pool + 24 Hours Power,Chevron Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedrooms Fully Furnished Semi Detached Duplex,Lekki Gardens Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Alpha Beach Road Jakande Lekki Jakande Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Bridge Estate Off Chevron Toll Gate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Jakande Ologolo Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets +Plots Of Land,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2bedroom Apartment,Ologolo Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Pantheon Smart Terrace Along Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +800sqm Plot Of Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +20 Plots Of Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +1000sqm Land Forsale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex Forsale On Orchid Road Lekki,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +1000sqm Land With A Structure On It,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +12000sqm Water Front Mix Use Land At Lekki Phase 1,Lekki Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +1083sqm Land Water View,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Serviced Flat With A Room Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +1400sqm Commercial Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Mansion With A Room Bq,Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Pent Floor + Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Smart House 5 Bedroom Fully Detached Duplex + Swimming Pool,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex On 2 Floors + Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"107,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +"4 Bedroom Terrace Duplex,",Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With A Bq,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 2 Bedroom Apartment,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +Well Spaced Decently Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Ikota Lekki Estate Lagos Ikota Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets +Beautiful Units Of 4 Bedroom Semi Detached Duplex,4 Bedroom Semi Detached Duplex Chevron Lekki Lagos,₦,"65,000,000/day",1,1,0,4 beds,4 baths,4 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,4 Bedroom Terrace Chevron Lekki Lagos,₦,"59,000,000/day",1,1,0,4 beds,4 baths,4 Toilets +Land With Governor's Consent For Sale In Ocean Villa Estate Orchid Road Lekki Lagos State,Land For Sale In Ocean Villa Landed Property Lekki Phase 2 Lekki Lagos,₦,"35,000,000/day",0,0,0, beds, baths, Toilets +Grandeur Contemporary 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Osapa London Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Diamond Court Estate Chevron Lekki Ajah Lagos,650sqm Of Land For Sale In Chevron Chevron Lekki Lagos,₦,"92,000,000/day",0,0,0, beds, baths, Toilets +Spacious 5 Bedroom Fully Detached Duplex,Victoria Nest 11 Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Semi Detached Duplex,Victoria Crest Ii Chevron Drive Lekki Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/year",0,1,0,3 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +600sqm Land,Ode Omi Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +A New Built 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Standard 4bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Standard 4bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxurious Hotel For Sale In Victoria Garden City Ajah Lagos,Nicon Hotel By Victoria Garden City (vgc) Vgc Lekki Lagos,₦,"1,300,000,000/day",1,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3bedroom Apartment,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Detached Duplex With 2 [email protected] County Estate,Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,6 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Units Of 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,2 baths,3 Toilets +Fully Serviced 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex With [email protected] Lekki Toll Gate,Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets +600sqm Land,Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Sandfilled Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Contemporary Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex + Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Newly Built 4bedroom Semi Detached Duplex,Idado Axis Idado Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With Bq @ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +648 Sqm Land,"Ochid Road Lafiaji, At The Back Of Oceanbay Estate Chevron Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex On 600sqm Of Land,Northern Foreshore Estate Chevron Drive Chevron Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets +Bloom Heaven Residences,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Terraced Duplex,Ochid Road Lekki Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Apartment,Camberwall Advantage 4 Off Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built And Exquisitely Finished 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Decently Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,"Praise Gardens, Lekki Lagos",₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets +"500sqm Plot Of Land Forsale At Agungi, Lekki",Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,"Divine Estate Off Community Road Ago Palace Way, Ikota Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Of Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Designed Smart 5 Bedroom Detached Duplex With Bq,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Maisonette,1 Bedroom Maisonette In Bloom Haven Residence Ikate Lekki Lagos,₦,"43,000,000",1,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Duplex, Jakande Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Cheron Drive Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq&swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +A New Built 3bedroom Terrace Duplex,Orchid Axis Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,4 baths,4 Toilets +5bedroom Detached Duplex With [email protected] London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Detached Duplex With [email protected] County Estate,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Fully Detached Duplex,Victoria Crest 11 Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +14 Plots Of Land,Lekki Beach Road Jakande Jakande Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi – Detached Duplex + Bq,Creek Avenue Phase 3 Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat,Beside Vgc Vgc Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets +5bedroom Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Lekki County Estate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Luxury Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful Contemporary 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat Forsale At Agungi,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex + Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +800sqm Plot Of Land,Nicon Town Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat+1 Bq (off Plan),Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built And Very Spacious Executive 5bedroom Fully Detached Duplex,"Chevron Alternative Route, Tulip Haven Estate Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +650sqm Plot Of Bare Land Forsale At Orange Island Phase 1,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"680sqm Plot Of Land Forsale At Salem Opposite Nicon Town, Elegushi Lekki",Salem Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +A Beautiful 5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"52,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Terrace With A Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Contemporary And Well Finished 5 Bedrooms Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With 2 Floors Plus Bq,Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County By Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,"Off Emma Abimbola Cole, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built 2bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"30,000,000/year",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Automated Contemporary House,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos Ikota Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious 2 Bedroom Terrace Duplex,Pantheon Smart Terrace Along Orchid Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex + Bq + Swimming Pool,Ikate Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + 2 Rooms Bq,Ikate Lekki Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached With Bq + Swimming Pool,By Vgc Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Semi Detached Duplex Plus 2 Rooms Bq,"Momodu Lawal Close, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Standard 5bedroom Fully Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly 4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Standard 10units Of 2 Bedroom Flat,Ikate Lekki Lagos,₦,"6,500,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +1900 Sqm Of Land,Agungi Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Plot Of Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land Forsale At Chevron Lekki,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +A Newly Built 4bedroom Terrace Duplex,Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,0 Toilets +A 4bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +A Luxury 5bedroom Fully Detached With Swimming Pool,Osapa London Lekki Lagos,₦,"190,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +A Standard 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +Amazing 2 Bedroom Apartment With Bq,Mufasa Apartment Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,2 Toilets +Amazing 4 Bedroom Semi Detached Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Lagos For Sale,Lekki Phase 2 Lekki Lagos,₦,"72,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +1000sqm Land,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +775sqm Plot Of Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Plot Of Land,Chevron Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Estate Off Jakande Traffic Light Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq Seating On 400sqm Land,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House In A Mini Estate, Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +4038.616sqm Plot Of Land,Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land With A Demolishable Property On It Off Fola Osibo At Lekki Phase 1,Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +450sqm Corner Piece Land With Carcass In An Estate,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Plot Of Land With A Bungalow On It Forsale At Vgc,Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +24 Plots Of Land,Jakande Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette Penthouse With Bq,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Amazing 2 Bedroom Apartment In Ikate Lekki Lagos For Sale,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,2 Toilets +Finished Contemporary 5 Bedrroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedrooms Fully Detached Duplex With 2 Bq,Ikate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,5 Toilets +Superbly Built 5 Bed Fully Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Magnificently Built 4 Bedroom Massive Duplex With A Separate Bq,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Camry 2 Bedroom Maisonette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,2 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex With Bq,Ikota Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Creek Avenue Phase 3 Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Victoria Crest Iv Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Well Built 4 Bedroom Terrace Duplex,Victoria Crest V Harris Drive Vgc Vgc Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets +Contemporary Gorgeous 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious Contemporary Styled 4 Bed Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +5bedroom Detached Duplex With [email protected] County Estate,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 3 Bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedrooms Semi Detached House,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built Spacious 5 Bedroom Fully Detached Duplex Mansion With Private Elevator, Cinema And Pool",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Creek Avenue Estate Off Lekki Epe Express Way On The Same Side With Vgc Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +3bedrooms Apartments With Bq,Lekki Phase 2 Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ocean Breeze Estate Behind Emadeb Filling Station Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In Seren Area Of Ologolo,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Servant Quarters,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +"17,600sqm Plots Of Land",Osapa London Lekki Lagos,₦,"200,000/sqm",0,0,0, beds, baths, Toilets +Plot Of Land (675sqm),Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +600sqm Land,"Regent City, Odeomi, Lekki Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Smart 5 Bedroom Fully Detached Duplex With Bq,Pantheon Smart Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With [email protected] Chevron,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,4 Toilets +Well Furnished 4 Bedroom Terrace Duplex,Lekki Garden Phase2 Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +100 Plots Of Dry Land Forsale At Illamija Ibeju Lekki,Illamija Lekki Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Fully Detached Duplex + Bq,Inside Vgc Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000/year",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Units Of Brand New, Nicely Finished & Fully Serviced 4bedroom Terraces",Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +12 Rooms All Ensuit Fully Detached Duplex,"Olawale Cole Onitiri, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"630,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Terraced Duplex + Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"500,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Vella [email protected],Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +A Standard 2bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets +Value Centric Detached 5 Bedroom Automated Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Chevron Alternative Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +900sqm Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Sand Filled Land In Ocean Bay Estate,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Cricle Mall Shoprite Jakande Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 1 Room Bq,Megamond Estate Ikate Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Penthouse,2 Bedroom Penthouse In Bloom Haven Residence Ikate Lekki Lagos,₦,"63,000,000/day",1,1,1,2 beds,2 baths,2 Toilets +Exotic And Unique Newly Built 4 Bedroom Terrace Duplex In Lekki,Lekki Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,5 baths,5 Toilets +Great Apartment With Great Features And Serenity,Camberwall Advantage 4 Off Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached + Bq,Vgc Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq Forsale At Chevy View Chevron Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built Spacious 5 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex Forsale,Chevron Lekki Lagos,₦,"68,000,000/year",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Inside Pinnock Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built 1bedroom Apartment,Ikota Lekki Lagos,₦,"33,000,000",1,1,0,1 beds,1 baths,2 Toilets +A Newly 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"73,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +A Spacious 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex,Beside Vgc Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + Bq & Swimming Pool,Lekki County Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House,Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +1021sqm Land In Ocean Breeze Estate Forsale At Ologolo Lekki,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Plots Of Land Forsale At Chevron Drive Lekki,Chevron Lekki Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets +Newly Build 4 Bedroom Semi Detached Duplex With Bq In A Gated Estate,Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Plot Of Land (675sqm),Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Two Storey Building Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Servant Quarters,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Servant Quarter,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +680sqm Plot Of Land Forsale At Agungi,Agungi Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +1400sqm Of Land With A Demolishable Structure On It Forsale Off Admiralty Road Lekki Phase I,Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Waterview Duplex Forsale,Chevron Lekki Lagos,₦,"300,000,000/year",0,0,0,5 beds,6 baths,6 Toilets +"500sqm Plot Of Land Forsale At Agungi, Lekki",Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +A Luxury 4bedroom Semi Detached With Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Well Built 4bedroom Fully Detached,Ikota Lekki Lagos,₦,"115,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Apartment Fully Serviced,Ologolo Lekki Lagos,₦,"37,000,000/year",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Maisonette With Bq,Camberwall Advantage Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Semi Detached,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Automated 5 Bedrooms Furnished Mansion,Ikate Lekki Lagos,$,"1,000,000",0,1,0,5 beds,5 baths,5 Toilets +6units Of Spacious Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Serviced 4bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Built 5 Bedroom Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 3 Bedroom Terrace Duplex,Victoria Crest Estate Iv Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment,Victoria Bay Iii Annex Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,2 Toilets +Contemporary Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Fully Furnished Semi Detached Duplex,Lekki Gardens Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent Duplex With 17 Bedrooms,C Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Discounted Lekki Very Spacious Duplex: 4bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +650sqm Inside Ocean Bay Estate,Ochid Road Inside Ocean Bay Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex With Bq @ikate,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +650sqm Plot Of Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Servant Quarters,Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Sillicon Estate, Off Alpha Beach Road Chevron Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly And Lovely Built Spacious 5 Bedroom Duplex With Swimming Pool And Maximum Security,Lekki Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +801.92sqm Land,Salem Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Servant Quarters Forsale At Chevron Toll Gate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +20 Plots Of Dry Land,"Orchid Road, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,0 baths,0 Toilets +2bedroom Flat,H Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +Fully Service 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets +979.783sqm Plot Of Land,Chevron Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Big Compound 4 Bedroom Fully Detached Duplex+bq 0n 700sqm,Beside Vgc Vgc Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Lagos For Sale,4 Bedroom Terrace Duplex In Orchid Road Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"57,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Spacious 5 Bedroom Detached Duplex With Bq Pool Gym All Rooms En Suite,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"267,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Wonderful 4 Bedroom Semi Detached Duplex,De Castle Apartment Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Pantheon Smart Homes Ikota Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Elite Contemporary 4 Bedroom Detached Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex + Bq,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxurious 3 Bedroom Penthouse With Bq,Mufasa Apartment Rem Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets +A Standard 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Two Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace House With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exceptional 3 Bedroom Maisonette,Camberwall Advantage Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets +5bedroom Fully Detached Duplex With Swimming Pool For Sale,Osapa London Lekki Phase 1 Lekki Lagos,₦,"350,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,"Ochid Hotel Road, Eleganza Busstop Chevron Lekki Lagos",₦,"15,990,000",0,0,0,2 beds,0 baths,0 Toilets +650sqm Plot Of Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Townhouse With Self Compound,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Semi Detached Duplex,Liberty Estate Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Amazing Art Work Of 4 Bedroom Terrace Duplex In Ikate For Sale,4 Bedroom Terrace Duplex Ikate Lekki Lagos,₦,"83,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Itedo Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Terrace,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Functional Filling Station,Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex With Bq Carcass,"Location: James Pinnock Place (updc Estate), Osapa, Lekki. Osapa London Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +Spacious Contemporary 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Maisonette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached And Furnished Duplex #,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +2 Bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +300sqm Land,Lekki Lagos,₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Units Of 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +630sqm Plot Of Land,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom All En Suite Fully Detached House With Attached Bq,"Buena Vista Estate, Orchid Road, Eleganza Chevron Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex+bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 4 Bedroom Fully Detached Duplex,De Castle Apartment Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Built 6 Bedrooms Massive Duplex With A Swimming Pool,Ologolo Lekki Lagos,₦,"470,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 4 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex + Bq & Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,6 baths,6 Toilets +10000sqm (1 Hectare) At Beach Resort Estate,By Arcadia Groove Estate Osapa London Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Forsale,Ikota Lekki Lagos,₦,"80,000,000/year",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex + Bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq + Swimming Pool,Ikate Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Bq,Illasan Lekki Lagos,₦,"48,000,000",0,0,0,3 beds, baths, Toilets +600sqm Waterfront Land,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Contemporary Semi Detached Duplx With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Plot Of Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +800sqm Of Land At Cowrie Creek Estate Ikate,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Furnished Fully Detached Mansion With Two Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel (59 Rooms) On A 2000sqm Plots Of Land,Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ode Omi Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Victoria Crest V Harris Drive Vgc Vgc Lekki Lagos,₦,"62,000,000",0,1,0,3 beds,3 baths,3 Toilets +Well Located Demolishable 12 Rooms Duplex On 1400 At The Back Of Tantalizers,"Lekki Peninsula Scheme Phase1, Olawale Cole Onitiri, Off Admiralty Road,at The Back Of Tantalizers Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +Beautiful 3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Prime Water Gardens2 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Luxury Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained 3 Bedroom Flat,Off Freedom Way Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Carport + Bq,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury Of 16 Residential Apartments,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +1bedroom [email protected] Phase 1,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,0,0,1 beds,1 baths,1 Toilets +1300sqm Of Land At Elegushi Ikate Lekki,Elegushi Ikate Lekki Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +A Newly 4bedroom Semi Detached Duplex For Sale,Chevron Axis Chevron Lekki Lagos,₦,"47,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,4 Bedroom Maisonette With Bq In Bloom Haven Residence Ikate Lekki Lagos,₦,"83,000,000/day",1,0,1,4 beds,4 baths,4 Toilets +300sqm Land,"Ogombo Road Eti Osa Lga, Lekki Lagos",₦,"22,500,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,"Lekki Garden Phase 5, Abraham Adesanya Idado Lekki Lagos",₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +1005sqm Plot Of Land,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,8 beds,8 baths,8 Toilets +Land,"Marywood Villas Estate, Lekki Lagos",₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse With Bq,4 Bedroom Penthouse With Bq In Bloom Haven Residence Ikate Lekki Lagos,₦,"88,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +Exquisitively Designed 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex Sitting On 1850sqm,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +600 Sqm Land,Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Terraced Duplex With A Bq,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lavishly Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Penthouse With Bq,Bloom Haven Residence Ikate Lekki Lagos,₦,"83,000,000",1,1,1,3 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex + Bq,Inside Victory Park Estate Osapa London Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,6 baths,6 Toilets +Strategically Located 5 Bedroom Fully Detached Duplex With Swimming Pool,Oniru Lekki Phase 1 Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +A Standard 5bedroom Fully Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Plot Of Land,Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With [email protected],Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Plots Of Sandfilled Land Forsale At Dpkay Estate By Round About On Orchid Road By Chevron Toll Gate, Lekki",Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Maisonette With Bq,Camberwall Advantage 3 Gbangbala Ikate Close To Freedom Way Lekki Phase1 Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets +Fast Selling Terraces,"Beautiful Terrace Duplexes In A Very Good Location Creek Avenue Phase2 Close To 2nd Toll Gate At Ikota, Lekki Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Terraces Plus Bq,Godmade Connect Court 4 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Off Conservation Road Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +6bedroom Fully Detached House,Chevyview Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +5bedroom Fully Detached With Swimming Pool Roof Top,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Compound 5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"6,400,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Detached 5 Bedroom Duplex,Megamund Estate Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Detached Duplex,Victory Park Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Crafted 5 Bedroom Detached Home,Lekki Scheme 2. Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Automated 5 Bedroom Detached Duplex,Pinnock Estate Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 5 Bedroom Detached House,Norther Foreshore Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,4 baths,6 Toilets +4 Bedroom Apartment With Bq,"Emcel Court, Ikate Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,"Emcel Court, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment,"Emcel Court, Ikate Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land*,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Spring Vale Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,"Bosmak Haven Estate 1, Shapata By Vgc, Lekki, Lagos, Nigeria Lekki Lagos",₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land,Madison Gardens Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Bosmak Haven Estate 1, Shapata By Vgc, Lekki, Lagos, Nigeria Vgc Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Fully Services 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road, Lekki, Lagos Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets +Fully Services 4 Bedroom Semi Detached Duplex,"Maven Estate, Royal Pine Estate, Orchid Road, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"187,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classic 2 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"45,000,000/day",0,1,0,2 beds,2 baths,3 Toilets +"4bedrooms Semi Detached House With A Room Bq All Rooms Are Ensuite Fitted Kitchen, Bathtub, Wardrobes The Property Can Be Converted Into A Plaza, Office Or Residential",Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 2 Bedroom Flat At Osapa London Lekki Lagos All Rooms Are Ensuite, Fitted Kitchen, Swimming Pool Etc",Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Orchid Road Lekki Lagos Chevron Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,Ikate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,0 baths,0 Toilets +5bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex,County Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnoch Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,In An Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Mansion,Oral Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ikate Lekki Lagos,₦,"400,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Oceanbay Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,5 baths,0 Toilets +Standard 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Contemporary Detached House,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Off Mayegun Major Road Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Detached Duplex,Capstone Estate Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Megamond Estate Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,1,4 beds,4 baths,4 Toilets +Land,Lekki Pride Estate With A C Of O Located At Abraham Adesonya Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Madison Garden Estate Located At Chevron Drive Lekki Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedrooms Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Apartment Available For Sale.,By Lekki 2nd Tollgate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets +Built 5bedroom Detached Duplex With Swimming Pool,"Lekky Home,lekki Lekki Phase 2 Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached With A Bq,Orchid Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Semi Detached With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached House,Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Appartment,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,3 baths,3 Toilets +5bedroom Fully Detached Duplex,By Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool And Gym,Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Swimming Pool,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Waterfront 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"240,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"550,000,009",0,1,0,5 beds,6 baths,7 Toilets +"Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate Chevron, Lekki Lagos Nigeria",Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,D Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Two Bedroom Serviced Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +2/3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +New 4 Bedroom Semi Detached Duplex For Sale In Lekki Ikate,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built Terraced Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And A Bq, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Charming Five (5) Bedrooms At Megamound , Lekki, Lagos.",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool In Ikate,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Secured Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,"Chevron,orchid Hotel Road Chevron Lekki Lagos",₦,"53,100,000",1,1,0,4 beds,5 baths,5 Toilets +Exquisite 3 Bedroom Terrace Maisonnette,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,3 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace Duplex,"Emcel Court, Orchid Area By Chevron Chevron Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New 5bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Detached Duplex For Sale.,Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Terrace Duplex, Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Built 5 Bedroom Fully Detached House,By Chevron Tollgate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets +2bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built & Tastefully Finished Luxury 4bedroom Duplex For Sale!!!!,Chevron Lekki Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,4 Toilets +"A 7 Bedroom Fully Detached Duplex With A Penthouse Situated In Osapa London, Lekki,lagos.",Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,7 beds,7 baths,8 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary And Well Finished 5 Bedroom Semi Detached Duplex With Swimming Pool,Lekky County Home Lekki Phase 2 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedrooms Fully Detached Ch Duplex With Bq,",Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Tastefully Built And Massive 5 Bedroom Fully Detached Duplex With Swimming Pool,Victory Park Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,7 Toilets +Newly Built Four Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets +Water Front 2 Bedroom Apartment,Bloom Heaven Residences Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,3 baths,3 Toilets +A Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,4 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool,Acadia Groove Estates Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Contemporary Built 4 Bedrooms Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"96,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House.,Pinnnock Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"278,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex And 2 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +"1,2,3 & 4 Bedroom Massionette With Bq",Ikate Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Built 5 Bedroom Detached Duplex House,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Decently Finished 4 Bedrooms Semi Detached Duplex Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +Well Built 4bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Amazing New 5 Bedroom Stand Alone Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxurious 2units 5bedroom Contemporary Semi Detached Duplex With Swimming Pool,gym And Cinema Studio For Sale",Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Luxurious 5 Bedroom Semi Detached Duplex With Good Facilities,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Executive 4 Bedroom Duplex With Amazing Facilities,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Spacious And Well Finished, 5 Bedroom Fully Detached Duplex",By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With An Exquisite Finishing.,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets +Serviced 4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex And 1bq,Bera Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Secured Estate Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,S Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Exquisitely Built 4bedroom Semi Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 5 Bedroom Detached Duplex House #,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,A Very Secured And Lovely Environment Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +3bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Serviced 4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,5 Bedrooms Fully Detached Duplex With Bq Ologolo Lekki Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Orchid Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex With 2bqs,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,0 Toilets +4bedroom Fully Detached With A Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Maisonnette,Chevy Castle Apartments 4 Bedroom Maisonnette With Bq Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Tastefully Finished 5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +"4units Of 2bedroom Apartment Sited In A Well Secured Estate At Ikate, Lekki, Lagos Nigeria",Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached House With A 2bq And Open Terrace,Acadia Groove Estate Lekki Phase 2 Lekki Lagos,$,"1,200,000",0,1,0,5 beds,5 baths,7 Toilets +"Contemporary 5 Bedrooms Fully Detach Duplex With Bq,",Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Semi Detached House For Sale.,By Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5bedroom Semi Detached Duplex + A Room Bq For Sale!!!,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq In Vgc Selling On Promo,"Shapata, Vgc Vgc Lekki Lagos",₦,"69,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary 5 Bedrooms Fully Detached Ch Duplex With Bq,",Megamond Estates Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Cinema Studio,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Massive Open Rooftop Terrace,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Contemporary 4 Bedroom Terrace Duplex With Domestic Staff Quarters, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,E Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Land Measuring 600sqm, Chevron Lekki Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki 1 Godmade Ikate Lekki Lagos",₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 1 Bedroom Apartment & 3bedroom Apartments,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Victory Star Court 2,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Well Built Semi Detached Duplex In A Serene Environment.,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 2bedrom Apartment With Amazing Finishing,Secured Estate Lekki Phase 1 Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home With Swimming Pool And Cinema,Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Detached Duplex,Orchid Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos Nigeria,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Beautiful Estate Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plots Of Land In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Ruby,With An Exquisite 2 Bedroom Apartment And Bq Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,8 baths,8 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Gated Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Executive 4 Bedroom Semi Detached Duplex With B.q For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxury 5 Bedroom Detached House With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Styled 5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Home,Z Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Emcel Court 4,Orchid Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,3 baths,3 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Duplex For Sale Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Executive 5 Bedroom Detached Duplex In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +4/5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Road Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace Duplex,Ologolo By Jakande Jakande Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,S Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A 4 Bedroom Semi Detached Duplex In A Serene Environment Located At Osapa London, Lekki,lagos.",Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Spacious 5bedroom Fully Detached Duplex With Swimming Pool,",By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 /5bedroom Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Semi Detached House For Sale.,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Styled 5 Bedroom Fully Detached Duplex Available For Sale!!!,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex In Second Lekki Toll Gate,"Second Toll Gate, Lekki Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0, beds, baths, Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Mansion With Swimming Pool & Cinema House In Osapa,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive Newly 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home With Swimming Pool,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedrooms Semi Detached Duplex, Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3bedroom Apartment,Platinum Way Jakande Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 4 Bedroom Semi Detached With Swimming Pool In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4bedroom Semi Detached House With Bq,Beautiful Estate Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Build 4 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +A 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 2/3bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Executive New 5 Bedroom Stand Alone Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Executive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury & Furnished 4bedroom Semi Detached Duplex+ A Room Bq For Sale!!!!,Tulip Haven Estate Chevron Lekki Lagos,₦,"110,000,000",1,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 10 Units Of 2bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury Shops,Almiralty Mall Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex With Boys Quarters,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,4 Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,0 baths,0 Toilets +Massive 4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale @ Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Properly Built Four Bedroom Fully Detached Duplex Situated In A Secure Environment!,Lekki Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Stunning, 5 Bedroom Fully Detached House For Sale",Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Newly Built & Tastefully Finished 4bedroom Fully Detached Duplex+ A Room Bq,Z Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,10 Minutes From Lekki Phase1 Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,4 baths,5 Toilets +4 Bedrooms Detached Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,2 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Detached Duplex For Sale Situated On A Serene Environment,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Duplexes,Chevron By Orchid Road Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +Smart 4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New 4 Bedroom Duplex In Ikota,",After Second Toll Gate Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Luxury Lekki Power House With Pool,Jakande Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Z Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool In Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets +Massive Waterview 5 Bedroom Fully Detached Duplex With Bq,S Chevron Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Fully Detached Duplex + Bq,Lekki Pride Estate 11 Ogombo Road Abraham Adesanya Road Governor's Consent Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Contemporary Built 4 Bedrooms Semi Detached Duplex With A Bq For Sale,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Flat With Bq,Atlantis Ii Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached House,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",1,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing New 2 Bedroom With Swimming Pool,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Well Built 5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex,A Lovely And Calm Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Well Furnished 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplexes,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Penthouse With Bq,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Lovely 3bedroom Maisonette,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000/day",1,1,0,3 beds,4 baths,4 Toilets +Contemporary Styled 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,"Orchid Hotel Road, Opposite Cooplag Gardenszlafiaji Chevron Lekki Lagos",₦,"73,100,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Massionette With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Serviced 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Fully Detached Duplex,A Lovely Estate In Agungi Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House,"Fantastic Estate, Agungi Lekki Lagos",₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Appartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraces Duplex,De Caslte Max Orchid Road Chevron Off Plan Project Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds, baths, Toilets +4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 1 Bedroom Apartment,Chevy Castle Apartment 1 Bedroom Apartment Chevron Lekki Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 5bedroom Fully Detached Duplex Fully Fitted With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Contemporary Design Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment,Chisco Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,0 baths,0 Toilets +Whales Country Phase2,"Láfíàjí Off Orchid Road, Opposite Cooplag Estate. Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets +"Solid, Massive & Tastefully Finished Luxury 3bedroom Terrace Duplex + A Room Bq..",Chevron Lekki Lagos,₦,"50,000,000",1,0,1,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"147,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4bedroom Semi Detached Duplex With Bq For Sale,Lekki Conservative Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 1 Bedroom Appartment,Chevron Lekki Lagos,₦,"18,100,000",1,1,0,1 beds,1 baths,1 Toilets +100% Dry Land In Lekki On Orchid Hotel Road,Behind The Popular Cooplag Gardens Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautifully Built 4bedroom Semi Detached,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxuriously Built Duplex Situated In A Beautiful And Serene Environment!,Chevron Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets +Emcel Apartments, Ikate Lekki Lagos,₦,"51,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Houses,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Six Units Of 2 Bedroom Flat,Ogombo Behind Lekki Garden Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Houses,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Z Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Wonderfully Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Plots L15/16, 102 Close, Banana Island, Ikoyi, Lagos",Lekki Lagos,$,"1,500,000",0,1,0,6 beds,6 baths,7 Toilets +Beautifully Built 5 Bedroom Detached Duplex House,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Contemporary Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bed Fully Detached Duplex,Ologolo Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4units Of Newly Built & Tastefully Finished Luxury 3bedroom Flat + A Room Bq For Sale!!!,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ilasan Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Fully Detached,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplexes,Off Chevron Tollgate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Spacious 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex In A Gated Estate.,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Nice Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Amazing Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Detached Duplex House,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq In A 24/7 Power Supply Estate,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +Serviced And Spacious Five Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment,T Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Units Of Apartments For Sale,Idado Estate Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Apartment With Penthouse,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Contemporary Built 4 Bedroom Semi Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Contemporary House,Xd Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +??absolutely Stunning 3 Bed Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Newly Built Terrace Duplex At Ikota,"Chevron,conservation Centre Ikota Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets +Bridge Estate Duplexes,Toll Gate Chevron Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex In Chevron With 12 Months Payment Plan,On Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex In Chevron,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely And Spacious 5 Bedroom Fully Detached,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Fully Detached Duplex With Bq And Swimming Pool For Sale .,Lekky County Home Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Spacious 4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,"2nd Toll Gate, Orchid Road Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fantastic Built 4 Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"256,000,000",0,1,0,4 beds,0 baths,5 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Massionate Plus Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Massionatte Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House.,Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +Block Of Flats For Any Commercial Purpose,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With A Bq For Rent,Chevron Lekki Lagos,₦,"6,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 4bedroom Semi Detached Duplex With Bq,Very Beautiful Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 2/3/4bedroom Terrace Duplex And Semi Detached With 12months Payment Plan,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Properly Built Four Bedroom Fully Detached Duplex Situated In A Secure Environment!,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built & Tastefully Finished 5bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5bedroom Detached Duplex With Swimming Pool,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With B.q For Sale In Lekki Phase One,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Dry Land At Chevron, Orchid Hotel Road",Behind The Popular Cooplag Gardens Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"500,000,000",1,1,1,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Duplex In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Standing Alone Duplex,Osapa London Lekki Lagos,₦,"120,000/day",1,1,1,4 beds,4 baths,4 Toilets +10months Payment Plan 5 Bedroom Contemporary House And A Bq,Hampton Bay Estate Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Contemporary Built 5 Bedrooms Fully Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With A Room Bq,Lekky County Home Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +New Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 3bedroom Penthouse,N Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex In A Very Secured Estate,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,7 Toilets +Contemporary And Luxuriously Finished 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Units Luxurious Fully Detached Duplex.,Orchid Road Lekki Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Fully Detached Duplex With Spacious En Suite Bedrooms,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Houses,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq And Penthouse For Sale,A Very Beautiful Estate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq And Penthouse For Sale,A Very Beautiful Estate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Premium Secured Estate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 5bedroom Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Amazing 4 Bedroom Duplex For Sale,.. Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex With A Penthouse And 2 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Detached 5 Bedroom House (carcass) With A Room Bq,Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,5 baths,6 Toilets +Massive Brand New 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Stand Alone Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Waterfront 5 Bedr00m Fully Detached House With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Masionette With Bq,Off Fredom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Standard 4 Bedroom Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Ilasan Lekki Lagos,₦,"75,000,000",0,1,1,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Massionette Duplex,"Dunvale Court Estate Orchid Lekki Behind Coopland Garden Estate, Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Massionette,"Dunvale Court Estate Orchid, Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +7904 Sqm Prime Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Penthouse With Bq,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000/day",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets +Tastefully Built 2 Bedrooms Terrace,Emcel Court 2 Bedrooms Terrace Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,0 baths,0 Toilets +Exquisite 2 Bedroom Apartment,Chevy Castle Apartment 2 Bedroom Apartment Chevron Drive Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Maisonnette,Chevron Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq At Idado Estate Igbo Efon In An Estate With Influential Celebrities,Idado Estate Igbo Efon Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home With Swimming Pool And Cinema,Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse (terrace),Idado Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +"2bedroom Luxury Apartment Now Selling, Suitable",Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +1bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +3bedroom Apartment And 4bedroom Terrace Duplexes,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +16 Residential Apartment Chevy View Estate,Chevy View Estate Lekki Lagos,₦,"420,000,000",0,0,1, beds, baths, Toilets +Beautiful 5 Bedroom Semi Detached Duplex For Sale!!!,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious 2 & 3 Bedroom Apartments For Sale,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom With A Penthouse In Vgc,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"33,100,000",1,1,0,2 beds,2 baths,2 Toilets +A 4 Bedroom Semi Detached Duplex With Bq At Orchid Lekki 2nd Toll Gate,Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex With An Open Plan Kitchen,A Very Beautiful Estate Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Massionette Duplex,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Terrace Duplex In A Serene And Secure Environment,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Still Listing For N165,000,000 Beautifully Built 5bedroom Detached Duplex",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4bedroom Semi Detached With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Astonishing 5 Bedroom Fully Detached Duplex In Osapa,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Emcel Court 4 (orchid Road),With Bq Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Spacious 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven Estate Vgc Lekki Lagos,₦,"77,500,000",0,0,0,4 beds,0 baths,0 Toilets +Massive Waterfront 5bedrooms Detached Duplex With Bq For Sale Waterfront 5bedrooms Detached Duplex With Bq For Sale,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"470,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets +A Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Agungi Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Bosmak Properties,With Bq Harris Drive Shapata Vgc Lekki Lagos,₦,"69,500,000",0,0,0,4 beds,5 baths,5 Toilets +Smoothly Built 4 Bedroom Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 2 Bedroom Apartment,Cooplag Garden Orchid Road Chevron Lekki Off Plan Project Chevron Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,0 baths,0 Toilets +4 Bedrooms Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Terrace,A Very Serene Environment Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful And Well Secured Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Duplex With Bq In Ikota,After Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,0,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,7 Toilets +Smart 5 Bedrooms Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Ajah Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,0 baths,0 Toilets +Well Structured 4 Bedroom Detached Duplex With Boys Quarters,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Magnificient 5 Bedroom Detached Duplex In Lekki County,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex On 450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached,A Very Nice Environment Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"175,000",0,1,0,4 beds,4 baths,4 Toilets +Beautiful 5 Bedroom Detached Duplex With Swimming Pool,Idado Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5bedroom Fully Detatched With A Bq,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,Gated Community Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary, 4 Bedrooms Terrace Houses",Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Terrace Duplex Plus Bq,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious Waterfront 4bedroom Terrace Duplex,A Very Beautiful Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 2 Bedroom Stand Alone Bq For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive Exclusive 5 Bedroom + Bq Detached Home,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex And 4 Bedroom Semi Detached Duplex,D Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Semi Detached In A Serene Environment.,Richmond Gate Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool In Ikota,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Pool,Megamound Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq In Vgc On 5% Promo Sales,"Shapata, Vgc Vgc Lekki Lagos",₦,"79,500,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq (smart Home),By 2nd Tollgate Lekki Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Beautiful Well Furnished Luxury 4bedroom Semi Detached Duplex +( A Room Bq) For Sale!!!,Agungi Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets +A Beautifully Crafted 6 Bedroom Fully Detached Duplex For Sale???,Ikate Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Beach Front 11 Hectares Of Land For Sale 100k Per Sqm,Beach Front Ilasan Lekki Lagos,₦,"100,000/sqm",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex, Vgc Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex In Ikate With 12 Months Payment Plan,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached House Built On Two Floors With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Well Finished 5 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraces With 4 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse With A Pool,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,F Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom,Muiz Street Lekki Peninsula Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Three Bedroom Maisonette,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Amazingly Beautiful And Well Built 5 Bedroom Detached Duplex In Osapa London,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Three Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished And Lovely 6 Bedroom With Two Rooms Bq And A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,6 beds,6 baths,7 Toilets +Well Finished 4 Bedroom Terrace Duplex,Creek Court 2 Avenue Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Well Structured 4 Bedroom Terrace Duplex,Off Kunsela Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse In Ikate,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +1103sqm Plots Of Land For Sale In Twin Lake Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Commercial Centre With Office And Retail Spaces, Lekki Phase 1 Lekki Lagos,₦,"35,500,000",0,0,0,0 beds,0 baths,1 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex I,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,A Very Secured Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Smart Homes,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Contemporary Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,"Chevron Extension, Lekki Conservation Centre Chevron Lekki Lagos",₦,"46,000,000",1,1,1,2 beds,3 baths,3 Toilets +1 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Fullly Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,2 Toilets +Exquisitely Bulit 4 Bedroom Terrace Duplex With Bq For Sale At Christabels Garden Estate,Christabels Garden Estate Orchid Lekki Off Chevron Tollgate Lekki A Place Where Kings And Queens Live Come Join The Kings And Queens In A The Palace Pay And Parkin Secure With The Governor Consent As Title Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 3 Bedroom Terrace Duplex,Dunvale Court Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Cinema For Sale,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With Bqs For Sale,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Built Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Swimming Pool In Lekki Ikota,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +2bedrom Penthouse And 3bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Semi Detached Duplex With Bq For Sale .,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Office Shop/space Measuring 81sqm & 112sqm., Lekki Phase 1 Lekki Lagos,₦,"70,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4bedroom Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Architecturally Built 5 Bedroom Contemporary Design Detached Home,Acadia Groove Estates Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classic Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced Units Of 4 Bedroom Semi Detached Duplexes For Sale, Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment With A Boys' Quarter,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex With Bq For Sale .,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Contemporary Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly 4 Bedroom Terrace For Sale,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Terrace With Amazing Facilities .... For Sale,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Detached Duplex With Swimming Pool, Cinema Studio And Gymnastics",Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Contemporary Built 4 Bedrooms Semi Detached Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,10 Minutes From Lekki Phase1 Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Penthouse,Godmade Connect Court 3 Behind Onike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",1,1,1,2 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Contemporary Duplex With Swimming Pool And Gym,Beautiful Estate Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex Fully Fitted With Bq,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Z Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Z Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Masionette,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Five Bedroom Detached Duplex With Swimming Pool And Cinema Room,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Fully Detached Duplex With A Bq,",Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5bedroom Fully Detached With Bq,A Very Beautiful Estate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Royal Finished 4 Bedroom Fully Detached Duplex With Bq,De Castle Max Estate Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex In A Serene Environment,De Castle Max 4 Bedroom Semi Detached Duplex Orchid Lekki Lagos Off Plan Project Chevron Lekki Lagos,₦,"72,000,000",1,0,1,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 4bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bed Room Apartment With Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Massionette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Build 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Amazing New 4 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With A Bq !!!,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedrooms Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Ensuite Terrace House,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 6 Bedroom Detached House With 2 Bq And Pent House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets +Very Spacious 5 Bedroom Duplex,Idado Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedrooms Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Massionette,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Terrace Duplex Massionattes,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets +Fully Serviced 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex Located Within A Serviced Estate,A Very Beautiful Serviced Estate Ikate Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With A Servant Quaters,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Orchid Hotel Road Chevron Lekki Lagos,₦,"18,100,000",1,1,0,2 beds,3 baths,3 Toilets +Dry Land Measuring 450sqm,Oceanbay Estate Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Swoosh Super Spacious 4 Bedroom Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets +Top Notch Fully Serviced 4bedroom Duplex,E Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Terrace Duplex With Self Compound In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +4bedroom Fully Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,G Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 4bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Detached Duplex With Swimming Pool And Cinema,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Masionette,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,7 baths,7 Toilets +Whales Country Phase 1,"Láfíàjí, Opposite Cooplag Estate Chevron Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets +Properly Built Apartment In The Heart Of Lekki .,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Terrace Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Penthouse,"Chevron Drive, 8 Mins From Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Pool,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 & 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,F Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Secure A Modern 4 Bedroom Masionate With A Bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment With Bq,Mufasa Apartments Ikate Lekki Off Plan Project Ikate Lekki Lagos,₦,"58,000,000",1,0,1,2 beds, baths, Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex In Ajah,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive 4 & 5 Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Semi Detached,Cooplag Garden Orchid Road Chevron Drive Lekki Off Plan Project Chevron Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury & Beautiful 4 Bedroom Self Compound Terrace Duplex For Sale!!!,Osapa London Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets +Beautifully Built 2&3 Bedroom Apartment Sited Within A Tranquil Estate,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Built Detached Duplex Situated In A Very Serene Estate.,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Creek Avenue Court 3 Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000/month",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Apartment With A Pool,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Big Plot Of Land,Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Unit Nicely Built 4 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 5 Bedroom Detached Home,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +A Newly Built & Tastefully Finished Luxury 4bedroom Detached Duplex For Sale!!!,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Quality 5 Bedroom Fully Detached Duplex (full Video Tour Also Available), Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive Service 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached In Chevron Lekki,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Townhouse,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Highly Toned Luxury Terrace Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +4units Of 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq At Orchid 2nd Toll Gate,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette + Bq,Off Freedom Way Off Regional Road Lekki 1 Godmade Connect Court 5 & Extension With Governor's Con Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary, 4 Bedrooms Terrace Houses",Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Terrace Duplex In Ikate With 2 Weeks Introductory Price,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,2 baths,2 Toilets +"Beautifully Built 5 Bedroom Detached Duplex In Chevron, Lekki",Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex.,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Detached Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,10 Minutes From Lekki Phase 1 Ologolo Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,5 baths,5 Toilets +Bridge Estate Duplexes,"Before Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"72,000,000",0,0,0, beds, baths, Toilets +"Contemporary 4 Bedroom Fully Detached Duplex For Sale In Orchid, Lekki, Lagos.",Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Duplex For Sale,Chevron Drive Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 4bedroom Terrace Duplex,D Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex At Pinnock Estate Axis Osapa London,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths, Toilets +Executive Newly 4 Bedroom Terrace For Sale,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Massionatte,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets +Whales Country Phase2,"Láfíàjí Off Orchid Road, Opposite Cooplag Estate. Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets +Nicely Built 4 Bedroom Semi Detached Duplex Situated In A Location For Good Investment And Excellent Resell. At Chevron Lagos,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartments,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Very Affordable Fully Detached 4 Bedroom Duplex In Ikota,Situated In A Prime Area Of Ikota Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Built 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached,In Idado Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Flats Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,1,0 beds,0 baths,0 Toilets +2 Bedroom Apartment, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +10units Electrifying 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex In Ikota With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Duplex In A Serene Estate!!,Idado Estate Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Fully Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"84,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 5bedroom Detached House For Sale.,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxury Pristine 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,"...,. Osapa London Lekki Lagos",₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite Luxurious Built Units Of 5 Bedroom Fully Detached House For Sale.,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Fully Serviced 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Units Of 3 Bedroom Flats Within A Mini Estate,Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +Contemporary 5 Bedroom Penthouse Duplex With An Open Terrace & Swimming Pool,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 4bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Designs 5bedroom Fully Detached Duplex With Swimming Pool,"Lekky County Home , Lekki Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5bedroom Fully Detached Duplex For Sale,Lekky County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Executive Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Amazing New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,0,2 beds,2 baths,2 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5bedroom Fully Detached Duplex,A Very Beautiful Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +One Bedroom Apartment,Agungi Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets +4bedroom Semi Detached With A Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Creek Avenue Court 3 Ikota, Ikota Lekki Lagos",₦,"120,000,000/month",1,1,0,5 beds,4 baths,6 Toilets +Luxurious 4 Bedroom Terrace Duplex,A Lovely Environment In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With Swimming Pool,A Very Beautiful Estate Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,4 Bedroom Fully Detached Duplex Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Luxury Semi Detached Duplex With Bq,"Dunvale Court Estate Orchid Lekki, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3units 5 Bedroom Detached Home,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Terrace Duplex At Orchid Hotel Road Chevron,lekki","Orchid Hotel Road,lekki Chevron Lekki Lagos",₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace In Ikate,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,A Very Beautiful Estate Ikota Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Bedroom Bq, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Semi Detached Duplex,A Very Beautiful Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,In Idado A Very Calm And Nice Environment Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Maisonnette,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,0 baths,0 Toilets +Spacious And Very Well Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"10,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4bedroom Semi Detached Duplex + 2rooms Bq For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing Newly 4 Bedroom Semi Detached Duplex With Good Facilities In Lekki Phase One !! For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Idado Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Secured Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4bedroom Terrace Duplex With Bq,Z Agungi Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex (flexible Payment Plan),"Between North West Filling Station And Heyden, Shapati By Vgc Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 5bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Beautiful Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Masionette,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Terrace Duplex With Penthouse And An Amazing View In Lekki.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely 5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Three Bedroom Terrace With Good Facilities,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq, Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +New 5 Bedroom Fully Detached For Sale,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets +New Executive Luxury 5 Bedroom Fully Detached Duplex With Amazing Facilities,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxurious Newly 5 Bedroom Stand Alone Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Semi Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"6 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate At Osapa London, Lekki Lagos.",Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,Ikota Villa (off Plan) Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,5 Toilets +1unit 4bedroom Semi Detached Contemporary Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"106,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Terrace Duplexes,Ologolo Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +"Well Built Penthouse Duplex In The Heart Of Lekki, Lagos State.",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Apartment In A Serene Environment,Beautiful 3 Bedrooms Apartment Mufasa Apartment Ikate Lekki Off Plan Project Ikate Lekki Lagos,₦,"78,000,000",1,0,1,3 beds, baths, Toilets +5bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven Estate Harris Drive (shapata) By Vgc Off Lekki Epe Express Road Governors Consent Vgc Lekki Lagos,₦,"77,500,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,C Lekki Phase 2 Lekki Lagos,₦,"112,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Duplex; Sited In A Well Secured Estate,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Maisonette With Penthouse & Bq,4 Minutes Drive From Express Ikate Lekki Lagos,₦,"72,000,000",1,1,0,3 beds,4 baths,4 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Units Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,0 baths,0 Toilets +Massive & Tenanted 5bedroom Semi Detached Duplex+ 2room Bq On 525sqm Landsize For Sale!!!!,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Penthouse Apartment With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex In Chevron Drive With Bq,Chevron Drive Chevron Lekki Lagos,₦,"74,000,000",1,0,0,5 beds,5 baths,6 Toilets +An Exquisitely Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4bedroom Semi Detached With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale 5 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Serene Environment Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxury 2 Bedroom Appartment,Ikate Lekki Lagos,₦,"65,000,000/day",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 4bedroom Terrace Duplexes With Swimming Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 4bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment Off Plan,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Ruby,With Bq And Swim Pool Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Built Fully Detached Duplex.,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq Unit Now Listed,Agungi Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq For Sale,A Very Beautiful Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Terrace Duplex With Penthouse And An Amazing View In Lekki.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Amazing Newly 5 Bedroom Semi Detached Duplex For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Furnished 2 Bedroom With Good Facilities,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,2 beds,2 baths,3 Toilets +Amazingly Built Terrace Duplex Situated In A Secured Environment!,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex And A Bq At Idado Estate Igbo Efon,Idado Estate Igbo Efon Lekki Lagos,₦,"95,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq At Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 5bedroom Fully Detached Duplex With Bq For Sale.,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4bedroom Fully Detached Duplex With Bq For Sale,Very Nice Gated Estate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,0 baths,0 Toilets +Waterfront Luxurious Finished Contemporary 5 Bedroom Fully Detached Duplex,Northern Forshore Estates Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ruby,With Bq Ologolo Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A 3 Room Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard And Well Furnished Fully Detached 3 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Exquisitely Built 4 Bedroom Terrace Duplex For Sale Situated In A Serviced Estate, At Ologolo Lekki Lagos",Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Contemporary Serviced 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,Acadia Groove Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Massionatte,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,By The 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 2 Bedroom Apartment,4 Minutes Drive From Chisco Bus Stop Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Dreged Parcel Of Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex + A Room Bq For Sale!!!,Z Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Luxury Apartment,Chevy Castle Estate Lekki Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Detached Duplex With 2 Bq's,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury Finished 5 Bedroom Duplex With Up To 10 Cars Parking Space,Megamound Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +80% Completed Semi Detached Duplex For Sale At Idado Estate,Idado Estate Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets +Newly Built Contemporary 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Office Space Development Nestled In The Commercial Hub Of Lekki Phase One,",Lekki Phase 1 Lekki Lagos,₦,"42,000,000,000",0,0,0, beds, baths, Toilets +Oustanding 4 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +800sqm Land,Cowrie Creeks Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +"1bedroom, 2bedrooms & 3bedrooms Apartments",Idado Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Contemporary Duplex,Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex; Sited In A Well Secured Estate,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5bedroom Semi Detached Duplex + A Room Bq For Sale!!!,Lekki County Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Semi Detached Duplex,Cowrie Creeks Ikate Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooom Semi Detached With A Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedrooms Flat,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary And Well Finished 5 Bedroom Detached Duplex With Swimming Pool,Lekky County Home Ikota Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Contemporary Massive 5 Bedroom Duplex,Lekky County Home Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Beautifully Built 5 Bedroom Fully Detached Duplex Situated In An Estate In Chevron, Lekki Lagos Nigeria",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Italian Built 4 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Axis Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex + Bq With Payment Plan,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built Four Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Mini Flat In Ikota,Lekki County Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,4 baths,6 Toilets +Excellent Furnished Two Bedroom Flat,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,2 beds,2 baths,3 Toilets +3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"58,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Orchid Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,0 baths,0 Toilets +Beautifully Finished 6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Smart 5 Bedroom Fully Detached At Lekki Palm City,Palm City Estate Ajah Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 2 Bedroom Apartment,Chisco Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Unit Of 4 Bedroom Semi Detached Duplex,Ikate Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +4bedroom Semi Detached With A Bq,Orchid Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,In A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached With A Bq,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Conservative Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedrooms Fully Detached Duplex,Exquisite 5 Bedrooms Fully Detached Duplex With Swimming Pool And Cinema Chevron Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex House With Bq,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets +4883sqm Land,Lekki Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000/month",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,0 baths,0 Toilets +Furnished 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"175,000,000",0,0,1,5 beds,6 baths,6 Toilets +1000sqm Of Land,Fola Osibo Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Of Land,"Off Rock Drive Street, Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Of Bareland,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Madison Garden Estate Chevron Lekki Lagos,₦,"100,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Home,Vgc Lekki Vgc Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"269,000,000",0,0,0,5 beds,5 baths,5 Toilets +"1,2,3 Bedroom Apartment",Chevron Tollgate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,0 baths,0 Toilets +1 Bedroom Flat,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"26,000,000",0,0,0,1 beds,1 baths,2 Toilets +Fully Furnished 2 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,1,2 beds,2 baths,3 Toilets +Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Home,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Astonishing 5 Bedroom Fully Detached Home,Vgc Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,1 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Terrace,Bosmak Haven With A Governor’s Consent Is Located By Harris Drive Shapata By Vgc Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bosmak Haven With A Governor’s Consent Is Located By Harris Drive Shapata By Vgc Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,6 baths,6 Toilets +Land,Freedomway Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedomway Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Luxury Penthouse With Water View;,Orchid Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,3 baths,2 Toilets +Brand New 5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"89,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Terrace Duplex In A Strategic Location,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Affordable 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Super Luxury 4 Bedroom Fully Detached Duplex With 1 Room Bq For Sale,Ikate Lekki Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets +Beautiful 5 Bedroom Fully Detached Duplex In Prime Location,Chevron Toll Gate Chevron Lekki Lagos,₦,"68,000,000",1,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Classic 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Besides Victoria Garden City (vgc) Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distinguished 5 Bedroom Contemporary Duplex,"Lekki County Homes, Lekki Lagos",₦,"262,000,000",0,0,0,5 beds,5 baths,6 Toilets +Offplan Sales Water Front View 3 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious Luxury 5 Bedroom Fully Detached Duplex For Sale,12 Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Luxury 3 Bedroom Block Of Flats,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built Super Luxury Spacious 5 Bedroom Fully Detached Maissionette With Bq And Swimming Pool F,1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Maisonette For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"35,000,000/day",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,"Off Shoprite Road, Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets +Brand Newly Built Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious Luxury 4 Bedroom Terrace Duplex With 1 Room Maids Quater For Sale At Ikate,Ikate Elegushi Lekki Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,"Madam Julian Estate, Chevron Alternative, Chevron Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq & Pent House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House:,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Furnished 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House With A Room Staff’s Quarter;,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Apartment;,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Detached 5 Bedroom Duplex With Bq,Lekky County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Listing 4 Bedroom Semi Detached Duplex;,Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached With Bq,Megamond Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,5 Toilets +Water Front View 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached House With A Bq,Lekky County Homes Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Pinnock Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",1,1,1,0 beds,0 baths,0 Toilets +Magnificently Built 5 Bedroom Fully Detached Duplex,Lekky County Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"85,000,000/month",0,0,0, beds, baths, Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex;,Orchid Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Alternative Route Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable Commercial Building In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex;,Orchid Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex;,"Pinnock, Osapa, Lekki Lagos",₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semidetached House,"Agungi East Estate, Agungi Lekki Lagos",₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Terrace House With Bq;,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,H Homes Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000/day",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury Spacious 3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Apartment,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Detached House,"Adebisi Oguniyi Crescent, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached House;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex;,Idado Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With A Bq;,Second Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Terrace House;,Ilasan Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Detached House;,Lekki County Lekki Lagos,₦,"215,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Contemporary 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Stylish 5 Bedroom Fully Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached With Pent House And Swimming Pool;,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Duplex With Huge Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"262,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Fully 4 Bedroom Detached Duplex With A Spacious Compound;,"Royal Garden Estate, Ajah. Lekki Lagos",₦,"190,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 6 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 3 Bedroom Terrace Duplex;,Vgc Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Apartment In A Strategic Location,Ikota Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 2 Bedroom Apartment In Good Location,In A Serene Neighborhood Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Excellent Top Notch Luxury 4 Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Semi Detached House With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +3bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +Nicely Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful And Spacious 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Automated 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Nicely Built Luxury 4 Bedroom Terrace Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,"Lekky County Estate, Chevron Toll Gate Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Well Built 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Terrace Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Cornerpiece Land Measuring 1,000m²","Carlton Gate Estate, Chevron Lekki Lagos",₦,"220,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Primed 1000sqm Residential Plots In A Beautiful Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached House;,Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House With Bq;,Chevron Right Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super American Smart 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,3 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +56 Units Of Brand New 4 Bedrooms Terrace Houses;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached House;,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached House;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Terrace Duplex,"Ivy Luxuria Estate, Orchid Road Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Brand New 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq;,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Royale Terrace Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House With Bq;,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,In A Secured And Serene Neighborhood Osapa London Lekki Lagos,₦,"515,000,000",0,1,0,5 beds,5 baths,6 Toilets +Styled 4 Bedroom Semi Detached Duplex;,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Carcas Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex In Good Location,"Whales County Estate, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Fully Detached Duplex In Prime Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Orchid Road Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished And Furnished 2 Bedroom Apartment,In A Serene Neighborhood Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq!,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built Luxury 4 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Luxury Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lakeview Estate Phase 1 Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Premium 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Serviced 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Semi Detached Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Good Location,In A Serene Neighborhood Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"After Amazing Grace Event Center, Orchid Road, Lafiaji, Lekki Lagos",₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Semi Detached House;,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Terrace;,Chevron Tollgate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedroom Terrace Duplex In Good Location,"Christabel's Gardens, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached House;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ikota Villa Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Vella Homes Ikota Lekki Lagos,₦,"65,000,009",0,1,0,4 beds,4 baths,5 Toilets +Primed 1200sqm Waterfront Residential Plots In A Strategic Location,Ilasan Ikate Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached House With Bq;,Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Detached House With Penthouse;,"Lakeview Park Ii, Orchid Road Lekki Lagos",₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Waterfront 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace With Bq;,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat With Bq;,Idado Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Smart House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"H Homes, Off Chevron Toll Gate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Christabels Garden Exquisitely Built 4 Bedroom Terrace Duplex Off Chevron Toll Gate Chevron Lekki Lagos,₦,"59,000,000/day",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Semi Detached Duplex,2nd Toll.gate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Spacious 5 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Smart Finished 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"67,500,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 6 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets +85% Completed 5 Bedroom Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex In A Serviced Estate,Orchid Hotel Road Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land Measuring 650m²,"Updc Estate Beside Acadia & Pinnock Estate, Osapa London Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale,Ikogo Town Eko Akete Lekki Peninsula Abijo Lekki Lagos,₦,"8,500,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq;,2nd Toll Lekki Lekki Lagos,₦,"59,500,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Swimming Pool In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached House With Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex;,Ologolo Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Top Notch Super Luxury Spacious 5 Bedroom Mansion With Swimming Pool And Bq,"Lekky County, Lekki Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +7 Bedroom Fully Detached House With Bq On 2 Plots,Vgc Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,8 Toilets +Brand New Super Luxury Spacious 3 Bedroom Terraced House,Near Vgc Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Massionette;,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq;,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 4 Bedrooms Terrace Bungalow,"South Point Estate Beside Lakeview Park 2, Off Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Maintained 4 Bedroom Semi Detached Duplex,"Alpha Beach Road, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Detached Duplex With Swimming Pool + Cinema+ Gym,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive Brand New 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Designed 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House,Platinum Way Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool In A Beautiful Location,Platinum Way Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fascinating 5 Bedrooms Semi Detached House;,Off Chevron Tollgate. Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Excellent 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New, Exquisitely Finished 5 Bedroom Detached Duplex With Swimming Pool","Northern Foreshore Estate, Ikota Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Smart And Self Serviced 4 Bedroom Terrace With A 1 Room Bq;,Marwa Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Massive Luxury 5 Bedroom Fully Detached Duplex With L Room Bq And Swimming Pool,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"330,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 5 Bedroom Fully Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Super Elegant Elegant 4 Bedroom Terrace House With 1 Room Bq For Sale,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Carcass;,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classic 4 Bedroom Semi Detached Duplex In A Gated Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,0,0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Lekky County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Furnished 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Great Space & A Big Bq.,Tollgate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Nice And Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Fitted Kitchen,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,"Tatiana Court Ikota Villa Gra, Ikota, Lekki Lagos With Governors Consent Ikota Lekki Lagos",₦,"67,000,000/day",0,0,0, beds, baths, Toilets +Newly Built 2 Bedroom Service Flat;,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built Brand New 5 Bedroom Detached House;,Lakeview Park Estate Vgc Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,In A Nice And Serene Neighborhood Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With 2 Bedrooms Bq,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,"Victoria Bay 3 Estate, Nike Art Gallery. Ikate Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached House;,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land With Structures Measuring 970m²,"Ayinde Akinmade Street, Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Fully Serviced Luxury 2 Bedroom Apartment With Bq;,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Terrace House With Bq;,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distinguished 4 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Spacious Luxury 4 Bedroom Terrace Duplex With Bq,D Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ilasan Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +Brand New 3 Bedroom Terrace Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Ologolo Ologolo Lekki Lagos,₦,"80,000,009",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Off Plan With Flexible Payment Plan,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Gym+ Cinema In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex In A Strategic Location,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Good Location,Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Serviced 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spaciously Built Luxury 4 Bedroom Semi Detached Duplex For Sale,76 Oral Extension Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Automated Smart 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool On 2 Floor,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",1,0,0,4 beds, baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Fully Fitted Kitchen,Lekki Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House With A Bq;,Ikate Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,5 Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached House With A Bq;,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Modern 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Decently Finished 2 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Fully Detached Duplex With Bq,... Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Terrace Duplex In A Good Location,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Terrace Duplex In A Good Location,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex;,Toll Gate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 2 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Executive Newly Built 5 Bedroom Fully Detached Duplex With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate, Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With Bq In A Strategic Location,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terrace Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq;,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In A Gated Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Beautiful 4 Bedroom Terrace Duplex With Bq;,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Block Of Flats With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq;,Lafiaji Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,930m²","Ikota Gra, Ikota Lekki Lagos",₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq & Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built Luxury 5 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 2 Bedroom Apartment, Ologolo Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq;,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Secured And Serene Neighborhood Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House With Bq,Osapa Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Fully Sand Filled Bareland Measuring 100,000m² (minimum Of 15,000m²)","At The End Of Kusenla Road, Ikate Lekki Lagos",₦,"175,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury And Tastefully 4 Bedroom Semi Detached Duplex;,Orchid Road. Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Alternative Route Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dry Land Measuring 669.84sqm,Chevron Alternative Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium Plot Of Estate Land In Prime Location,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets +Newly Built & Very Spacious 5 Bedroom Fully Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House;,Osapa Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 800sqm,"Lakeview Park 2 Estate Off Orchid Road By 2nd Toll Gate, Lekki Lagos",₦,"110,000,000",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Fully Detached Duplex,"Orchid Road, Chevron Toll Gate Chevron Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House;,Idado Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached House;,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Lovely Luxury 6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"510,000,000",0,1,0,6 beds,6 baths,7 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Masionette With Bq;,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplexes For Sale,Penteom Smart Homes By Brg Prime Along The Orchid Road Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000/day",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex;,2nd Lekki Toll Gate Axis Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Well Built 12 Bedroom House On 1,388m²",Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,10 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious 3 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedrooom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Fully Detached House;,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached House With 2 Bq;,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Fully Detached Duplex With An Ensuite Bq;,Idado Lekki Lagos,₦,"185,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex + Bq,"Lekky County, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex;,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully 4 Bedroom Semi Detached Duplex;,Vgc Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedrooms Fully Detached House;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House With A Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Terrace Duplex In Good Location,Orchid Road Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Townhouse Duplex,In A Serene Location Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene And Secured Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cornerpiece Land Measuring 2 Plots,"Atlantic View Estate, Off New Road Busstop Near Chevron, Igbo Efon Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Ikota Villa Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq, Swimming Pool.",Lekky County Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex;,Orchid Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Fully Furnished 4 Bedroom House + 1 Rm Bq,"Bera Estate, Chevron Lekki Lagos",₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Several Plots Measuring 650m², 704m², 849m² & 1,459m² @ 140k/sqm","Alternative Route, Chevron Lekki Lagos",₦,"140,000/sqm",0,0,0, beds, baths, Toilets +Well Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex;,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,In A Serene Neighborhood Idado Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Fully Detached Duplex;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Vella Homes Off Chevron Toll Gate Lekki By Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Exquisitely Finished, Brand New 3 Bedroom Flat With Bq","2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,"2nd Toll Gate, Orchid Road, Chevron Ikota Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex In Prime Location.,Nicon Town Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq & Swimming Pool;,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Spacious 5 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Elegant 3 Bedroom Block Of Flats With Swimming Pool And Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale At Chevron,85 Cheveron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Terrace Duplex With A Bq;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale: 4 Bedroom Duplex,"Victoria Crest Ii, Off Orchid Road By Chevron Toll Gate, Lekki Lagos",₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Waterfront 2 Bedroom Apartment;,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached House;,Lekki Right. Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex With Bq,Lekky County Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House (carcass) + Room Bq,"James Pinnock Place (updc Estate), Osapa London Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fascinating 5 Bedroom Fully Detached Houses;,Ajah Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Townhouse In Prime Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,4 baths,4 Toilets +Lovely 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Detached Duplex;,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classic Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets +Nicely Built 2 Bedroom Apartment;,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Finished And Furnished 4 Bedroom Semi Detached Duplex With 20 Kva Generator,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,5 Toilets +Premium 5 Bedroom Detached Duplex With Swimming Pool + Cinema In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,"Creek Haven Estate Beside Vgc, Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Semi Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Gated Estate,Idado Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment With 24 Months Payment Plan,"Camberwall Advantage 4, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached House With A Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Classic Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace House With Bq,Platinum Way Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Jv: Land Measuring 1,200m²",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced One Bedroom Apartment In A Strategic Location,Ilasan Lekki Lagos,₦,"32,000,000",1,0,0,1 beds,2 baths,3 Toilets +3 Bedroom Maisonette With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"65,000,000/month",0,0,0, beds, baths, Toilets +Smart Finished 4 Bedroom Terrace Duplex,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex;,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Prime Plot Of Land Measuring 400sqms With Global Cofo,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Highly Executive 5 Bedroom Fully Detached Duplex With 2 Room Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Home,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Smart Features;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Automated 5 Bedroom Fully Detached Duplex,"Chevron Toll Gate, Orchid Road Ikota Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex In Prime Location,In A.serene Location Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Serviced 2 Bedroom Apartments With A Bq;,Ikate Elegushi. Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super 2 And 4 Bedroom Apartment With Maids' Quarter And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury Contemporary 4 Bedroom Semi Detached Duplex With Bq,Cheveron Drive Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +Serviced 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built And Serviced 4 Bedroom Terrace Duplex,"In An Estate On Orchid Road Before The Round About, Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 6 Bedroom Fully Detached Duplex;,Ikate Elegushi Lekki Lagos,₦,"410,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Orchid Road Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Mansion With Bq And Lounge Room,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious 3 Bedroom Terrace Duplex With Bq;,Chevron Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment In Good Location,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Terrace Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,$,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Fully Detached Duplex With A Bq;,2nd Toll Gate Axis Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Fully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached With Bq;,Chevron Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets +Super Finished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool And Gym;,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Apartment;,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Contemporary 5 Bedroom Fully Detached Duplex,In A Gated Serene Estate Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Pool And Private Cinema,Osapa Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 2 Bedroom Terrace House;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Vgc Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq Off Plan,Ikota Gra Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex;,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale!!! Self Serviced 4 Bedroom Mezzanine+ Study 2 Living Area With Bq,"Oladimeji Alo Street, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Uniquely Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Fully Detached With Private Cinema,gym And Swimming Pool;",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Detached House;,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 5 Bedroom Fully Detached House;, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Townhouse,In A Serene Neighborhood Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Fully Serviced 4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Smaller Plots Land Measuring 450sqm & 525sqm (210m & 230m Respectively),"Cbd Area, By Lily Gate Hotel, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"210,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Units Of 4 Bedrooms Semi Detached House Bq;,Idado. Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Detached Duplex With A Bq;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With 2 Room Bq,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land With Foundation For A Mall Measuring 950m²,"Directly Along Fola Osibo Road, Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Fully Detached House;,Ajah Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Finished & Furnished 5 Bedroom Detached Duplex + Bq,In A Serene & Nice Neighborhood Ologolo Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +Nicely Built 1 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,1 beds,1 baths,2 Toilets +Brand New 5 Bedroom Detached Duplex With Bq & Swimming Pool;,Bera/bakare Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Detached Duplex With Bq,"Pinnock Beach Estate, Osapa. Lekki Lagos",₦,"510,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"97,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Specious Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex (carcass),Abijo Gra Lekki Lagos,₦,"28,000,000",0,0,0,4 beds,4 baths,5 Toilets +Primed 1600sqm Commercial Plot,Lekki Epe Express Way Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Gorgeous 5 Bedroom Fully Detached House;,Ajah Lekki Lagos,₦,"77,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Standalone Terrace With A Room Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedrooms Semi Detached Houses;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex;,Megamound Estate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Gra Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Detached House, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront Plots Of Land In Prime Location,Waterfront Plots Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex;,Second Tollgate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex In Prime Location,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom.terrace Duplex In Premium Location,In A Serene And Secured Location Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +Nicely Built 3 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 2 Bedroom Flat;,Alpha Beach Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex;,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable 5 Bedroom Detached Duplex In A Strategic Location,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Gorgeous 5 Bedroom Fully Detached House;,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Superbly Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex House With A Bq;,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished Serviced 2 Bedroom Flat, Idado Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Service Flat;,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 15.330 Acres (70m/plot),"Directly Facing Lekki Epe Expressway, Beside Eleganza Building (okoya Thomas), Chevron Lekki Lagos",₦,"6,720,000,000",0,0,0, beds, baths, Toilets +Contemporary 5 Bedroom Detached Duplex With Waterfront View,Chevron Lekki Lagos,₦,0,0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Exquisitely Finished 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Luxury Penthouse With Water View;,Orchid Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex In Good Location,"Tartiana Court, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful And Spacious 5 Bedroom Fully Detached Duplex,In A Nice & Serene Neighborhood Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Serviced 4 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool.,Second Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq;,Lekky County (megamound Estate) Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Penthouse;,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully 4 Bedroom Semi Detached Duplex;,Ikate Estate. Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Pinnock Beach Estate Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,794m² & 1,573m² At Road 2 And Road 9 Respectively","Road 2 & Road 9, Vgc Lekki Lagos",₦,"205,000,000",0,0,0, beds, baths, Toilets +Newly Built Spacious 4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Oral Estate Axis Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Affordable Luxury 4 Bedroom Fully Detached Duplex;,Osapa Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat With A Bq;,"Oniru, Lekki Lagos",₦,"98,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached House With Bq,Harris Drive Vgc Lekki Lagos,₦,"88,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,7 Toilets +Tastefully Built 4 Bedroom Fully Detached Duplex With Bq;,Ikota Gra Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Agungi Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House With Bq,Opposite Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,"Ikate Elegushi, In A Serene Neighborhood Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Osapa Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached House;,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Penthouse For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"55,000,000/day",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Beautifully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex Sitting 600sqm,Vgc Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex With A Room Bq;,Osapa Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex;,Chevron Toll Gate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Joint Venture: Land Measuring 10,000m²","Mfm Way, Beside Fidelity Bank, Vgc Lekki Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment In A Good Location,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Well Built 3 Bedroom Apartment With Bq,Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets +800m² Commercial Plot With Additional 400ms Set Back Space (1200m²),"Facing 3 Streets: Providence Rd, Otunba Ogungbe Rd & Iron Bar Street, Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +New Listing 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Elegant Smart Home 4 Bedroom Terrace House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Fully Serviced 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Distinguished 5 Bedroom Detached Duplex;,Lekky County Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + Bq,"2nd Toll Gate By Orchid Hotel, Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished And Spacious 4 Bedroom Semi Detached Duplex With A Bq;,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Semi Detached Duplex In A Beautiful Location,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished & Serviced 4 Bedroom Terrace,"Conservation Road By Chevron Toll Gate, Lekki Lagos",₦,"50,000,000",1,0,1,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Apartment;,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Contemporary Home,"Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Two Rooms Bq,"Chevyview Estate, Chevron Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Semi Detached Houses;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,$,"1,800,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"150,000,009",0,1,0,5 beds,5 baths,6 Toilets +8 Bedrooms Fully Detached House + Bqs,"Directly Off Fola Osibo Street (3 Houses Away From Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"339,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Distress Sale: Land Measuring 1,000m²","Twin Lake Estate, Chevron Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Contemporary Units Of 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Boy's Quarter On 675sqm,"House No F71, Close 54 Vgc Lekki Lagos",₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Good Estate Location,"Royal Pine Estate, Orchid Road, By Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex;,Chevron Alternative Route Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious 4 Bedroom Terrace Duplex;,Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Fully Detached 7 Bedroom House On Land Measuring 1,000m²","Nicon Town Estate, Ilasan Lekki Lagos",₦,"600,000,000",0,1,0,7 beds,7 baths,8 Toilets +Brand New 5 Bedroom Detached House With Bq;,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terrace Duplex;,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Spacious Luxury 4 Bedroom Terrace And Block Of Flats Water Front View House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Units Of 2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Maisonette For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"45,000,000/day",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Luxurious Apartment,Orchid Road Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Swimming Pool,Behind Vgc Vgc Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 2 Bedroom Terrace Duplex With A Room Bq;,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Gra Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Apartment;,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Chevyview Estate Lekki Lagos,₦,"108,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Elegant Luxury 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Jv: 5,000m² Land ( 7 & 1/2 Plots )",Chevron Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +Newly Built Super Luxury 4 Bedroom Terraced Duplex For Sale,43 Oral Extension Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Detached House;,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,2 Ikate Lekki Lagos,₦,"112,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious And Serviced 4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +1 Bedroom Studio Apartment For Sale,Studio Apartment Bloom Heaven Residences Ikate Lekki Lagos,₦,"30,000,000/day",0,0,0, beds, baths, Toilets +Brand New Serviced 3 Bedroom Flat;,Osapa Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Furnished 3 Bedroom Flat;,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex;,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex House With A Swimming Pool;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Spacious Super Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With Bq,Orchid Road Ocean Bay Estate12 Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Maisonnette,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 2 Bedroom Fully Serviced Apartment;,Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Alternative Route Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached House;,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq:,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With Bq,Alpha Beach Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Fully Detached House With A Bq;,Osapa Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Affordable 4 Bedroom Terrace Duplex In A Strategic Location,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 1 Bedroom And 2 Bedroom Apartment;,Agungi Lekki Lagos,₦,"22,000,000",0,1,0,1 beds,1 baths,2 Toilets +Smartly Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4bedroom Terrace Duplex(24hrs Electricity), Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built Fully Loaded 5 Bedroom Detached House;,Osapa Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Dry Land In Prime Location,"Whales County Estate 2, Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"52,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Maisonette With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"75,000,000/month",0,0,0, beds, baths, Toilets +Off Plan: 1 Bedroom Loft;,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,2 Toilets +Spacious 4 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +L 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Maisonette Carcass In A Good Location,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Apartments With Bq:,Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Room Bq;,2nd Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex In Nice Location,"Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Fully Detached House With Bq;,Osapa Lekki Lagos,₦,"155,000,000",0,1,0,6 beds,6 baths,7 Toilets +Nicely Built 5 Bedroom Fully Detached Plus A Bq And A Swimming Pool;,2nd Tollgate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedrooms Apartment In A Strategic Location,Ilasan Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New Serviced 4 Bedroom Terrace House;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Bq, Cinema And Pool",Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Mini Flat,Agungi Lekki Lagos,₦,"22,000,000",0,1,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex;,Second Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Nice Location,Close The Chevron Toll Gate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace With Swimming Pool + Gym In A Strategic Location,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Waterfront House;,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment, Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Dry Land Measuring 1,089m²","Lekki Right Side, Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With A Bq,Second Tollgate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace House In A Mini Estate;,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Premium 5 Bedroom Detached Duplex With Swimming Area,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious 4 Bedroom Terrace House;,Osapa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Victory Park Estate Osapa London Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated,Oral Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With An Attached 2 Bedroom Flat,"Chris Otunlana Street, U3 Estate, Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Serviced 3 Bedroom Luxury Apartment,Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 6 Bedroom Semi Detached House;,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat;,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Osapa Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 10 Hectares,"Beside Periwinkle Estate, Lekki Phase 1 Lekki Lagos",₦,"13,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Fully Detached Duplex;,Ikate Lekki Lagos,$,"1,800,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Finished Newly Built Executive 5 Bedroom Fully Detached Duplex With 2 Room Bq For Sale,Orchid Road Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Sand Filled Land Measuring 1,300m²","Orchid Road, Overlooking Victoria Crest Iv, Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets +Nicely Built 4 Bedroom Terrace Duplex With Bq;,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Furnished 3 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached In A Gated Estate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq;,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House;,Orchid Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Serviced Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedrooms Terrace House;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool In A Beautiful Location,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool In A Beautiful Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 4 Bedroom Detached Duplex With Great Space, & A Big Bq;",Tollgate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Bera/bakare Estate. Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Brand New 5 Bedroom Fully Detached House With A Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,2nd Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3 Bedroom Terrace Duplex;,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With A Bq;,Osapa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Finished 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Affordable 4 Bedroom Terrace Duplex In A Good Location,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With A Bq;,Ajah Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House With A Bq;,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In Good Location,In A Nice And Serene Neighborhood Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 2 Bedroom Flat;,Osapa Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Right Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq;,Lekki County Estate. Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets +Brand New Spacious 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedrooms Fully Detached House,Off Chevron Drive Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Semi Detached House With Bq;,Primewaterview Gardens Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Terrace House;,Lekki County Homes Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Serviced Apartment,"Primewater Gardens, Ikate Lekki Lagos",₦,"52,000,000",1,0,0,3 beds,3 baths,4 Toilets +Massive Brand New 5 Bedroom Fully Detached House With A Bq;,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Serviced 3 Bedroom Terrace;,Chevron Tollgate. Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House;,Chevron Alternative Route Lekki Lagos,₦,"122,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq;,Ikate Elegushi. Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex;,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Carcass Building;,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +450sqm,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Fully Detached House With A Bq,Ajah Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 650m²,"Victoria's Crest 2, Off Orchid Road, Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built Contemporary 5 Bedroom Detached Duplex;,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Finished 4 Bedroom Terrace Duplex,In A Secured And Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Terrace With Bq;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Contempory Detached Duplex For Sale.,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New Spacious And Well Finished, 4 Bedroom Semi Detached Duplex;",2nd Toll Gate Axis Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 675m²,Vgc Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +Elegantly Finished 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House;,Opposite Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,"Napier Garden Opposite Vgc Estate, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Fully Detached Duplex Mansion,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 2,000m²","Close To Richmond Gate Estate, Ikate Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Detached Duplex;,Lakeview Park Estate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Terrace;,Toll Gate. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Massive 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Fully Detached House;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Cheveron Lekki Lekki Phase 2 Lekki Lagos,₦,"135,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq;,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq (with Payment Plan),"Bosmak Haven, Beside Victoria Garden City Vgc Lekki Ikota Lekki Lagos",₦,"79,500,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex In An Estate,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Decent 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"5,500,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Good Location,Ilasan Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In A Strategic Location,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex;,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,"Bera Estate, Off Chevron Lekki Lagos",₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex;,Osapa Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq And A Swimming Pool;,Megamound Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Estate Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Alternative Route Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,4 Toilets +"Land Measuring 1,216m²","Plot 2a&2b Bk.113, Along Hakeem Dickson Drive, Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedrooms Semi Detached House;,Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Built 5 Bedroom Fully Detached House;,Second Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex;,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built Spacious 5 Bedroom Fully Detached Duplex With Bq;,Osapa Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Finished 5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built Brand New 5 Bedroom Terrace House As Carcass;,Lekki Right. Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex;,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Duplex + Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Estate Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built Luxury 4 Bedroom Terrace Duplex House;,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land Measuring 975m² With 2 Wings Of Fully Detached Houses; Attached With Bq Each,"Chief Henry Ojorgho Street, Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Detached Duplex;,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex;,Lekky County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Bera/bakare Estate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious Luxury 5 Bedroom Fully Detached Duplex For Sale,12 Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Detached 5 Bedroom With Staff Quarters,Megamound Estate. Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Super Luxury 4 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,5 Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq,1 Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,1 Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,1 Ikota Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Off Plan Sales 3 Bedroom Block Of Flats,Lekki Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious Massive 4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built Super Luxury Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq 0n 2 Floors For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +Nicely Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Finished 5 Bedroom Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Terraced Duplex In Prime Location,In A Serene Location Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex In Prime Location,Chevron Toll Gate Chevron Lekki Lagos,₦,"53,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Penthouse With Bq For Sale,"Bloom Heaven Residences Proximity To Lekki Phase 1, Victoria Island And Ikoyi Ikate Lekki Lagos",₦,"75,000,000/day",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool + Gym + Cinema,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With A Staff Room,"Oba Adeyinka Oyekan Estate, Off Hakeem Dickson Street, Lekki Phase 1 Lekki Lagos",₦,"155,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 3 Bedroom Apartment;,Ilasan Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Elegant 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With A Bq;,Lekky County Homes Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex;,Tollgate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Townhouse Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached House With Bq;,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Listing 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 2 Bedroom Apartment;,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Gra Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,2 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Seaview View Fully Detached 5 Bedroom Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,"Megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Maisonette,Lekki Phase 1 Lekki Lagos,₦,"78,000,000/month",0,1,0,3 beds,3 baths,3 Toilets +Newly Built Super Lavishly Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale,6 Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex;,Lakeview Park Estate Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Good Estate,Orchid Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached House With Bq;,Alternative Route Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 2 Bedroom Flat;,Ologolo Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Vgc Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets +Designed 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex;,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Fully Serviced 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Serviced Terraced House;,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq;,Chevron Alternative Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedrooms Semi Detached House;,Off Chevron Drive Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Detached House;,"Lakeview Park Ii, Orchid Road Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Strategically Located 2 Plots Each Measuring 650m² Dry Bareland .,"Victoria Crest, Off Orchid Road By Chevron Toll Gate, Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Detached Duplex With Bq;,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Apartment,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex With A Bq;,"Pinnock Beach Estate, Osapa. Lekki Lagos",₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Alternative Route Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Tastefully Built 3 Bedroom Flat,Orchid Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 2 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Classic 5 Bedroom Detached Duplex With Swimming Pool In A Gated Estate,Ikota Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Strategic Location,Ikate Lekki Lagos,₦,"17,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex;,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Payment Plan,"Bosmak Haven Homes, Beside Vgc Ikota Lekki Lagos",₦,"54,500,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,"Orchid Road, In A Serene Neighborhood Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Emei Detached Duplex With Bq With Payment Plan,"Bosmak Haven Homes, Beside Victoria Garden City, Vgc Ikota Lekki Lagos",₦,"69,500,000",1,1,0,4 beds,4 baths,4 Toilets +2 Bedrooms Flat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,0 baths,0 Toilets +Nicely Built 3 Bedroom Terrace Duplex With A Room Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Alternative Route Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House;,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq;,Chevyview Estate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Top Notched Finishing Luxury 4 Bedroom Semi Detached Duplex With Bq,Near Vgc Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Super Luxury Finished 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Spacious 5 Bedroom Fully Detached Duplex With Bq;,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With A Room Bq;,Chevron Toll Gate. Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex In A Gated Estate,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +A 4 Bedroom All Rooms En Suite Semi Detached Duplex With 2 Sitting Rooms And A Guest Room., Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex;,Orchid 2nd Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Available Plots Measuring 474m², 520m², 616m²","Ocean Bay Estate Off Orchid Hotel Road, Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 4 Bedroom Fully Detached House;,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With A Bq,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Good Location,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex In A Good Estate,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 3 Bedroom Flat;,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex;,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Furnished 3 Bedroom Apartment;,Second Tollgate Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 2 Bedroom Flat In Good Location,In A Nice & Serene Neighborhood Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets +Brand New 4 Bedroom Semi Detached House;,Second Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Styled One Bedroom Apartment In Premium Estate,"Periwinkle Lifestyle Estate, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,1,1 beds,1 baths,1 Toilets +Newly Built Spacious Super Luxury 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Toll Gate Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Gorgeous 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Carcas Apartment In A Luxury Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Detached House With Ample Parking Space,Ikota Lekki Lagos,₦,"1,500,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury Serviced 4 Bedroom Semi Detached Duplex In A Gated Estate,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedrooms Fully Detached House;,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive Brand New 5 Bedroom Detached Duplex With Bq;,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 5 Bedroom Fully Detached Duplex,Lekky County Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Serviced 2 Bedroom Flat;,Agungi Lekki Lagos,₦,"36,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Fully Detached House With A Bq;,Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Tastefully Built 5 Bedroom Detached House With 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment With Elevator,Jakande Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Gated Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq;,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Fully Detached 5 Bedroom Duplex With A Bq;,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex;,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive 5 Bedroom Fully Detached Duplex;,Lekky County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex;,Second Tollgate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In A Gated Estate,Lekki Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq,"Izu Court, Chevron Alternative, Ikota, Lekki Chevron Lekki Lagos",₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Fully Detached,Palm City Estate Lekki Lagos,₦,"110,000,000",1,1,1,3 beds,3 baths,3 Toilets +New Built 3 Bedroom Flat;,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Contemporary 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Premium 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex In A Good Location,Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With Bq;,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool + Cinema + Gym,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Terrace Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached House;,Lekki Right. Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand Newly Built Spacious Super Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Houses;,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached Duplex,In A Gated Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq;,Second Tollgate Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With Bq;,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached House With A Bq;,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary, Smart 4 Bedrooms Semi Detached Houses;",Off 2nd Tollgate Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 5 Bedroom Semi Detached House,Osapa Lekki Lagos,₦,"60,000,000",1,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment With Excellent Facilities,Chevron Lekki Lagos,₦,"2,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Luxury Five Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Plot Of Estate Land In Prime Location,"Ross Avenue Estate, Off Orchid Road, Chevron Ikota Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Bq;,Ajah Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Townhouse Duplex With A Room Bq;,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq;,By Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq,Second Tollgate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex In Nice Estate,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Offplan Sales 4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 3 Bedroom Flat;,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Second Tollgate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,050m²","Periwinkle Estate, Lekki Lagos",₦,"280,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"54,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex;,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex;,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq;,Second Tollgate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Serviced Apartment,Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Fenced And Gated Parcel Of Land Measuring 1,310m²","Ayodele Odubiyi, Behind Pinnacle Filling Station, Lekki Phase1(right Side),, Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,0,0, beds, baths, Toilets +Fully Finished 4 Bedroom Apartment With Bq,In A Serene Neighborhood Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive Brand New 5 Bedroom Detached Duplex With Bq;,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex With Swimming Pool + Cinema,Osapa London Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,5 Toilets +24 Plots Of Land (minimum Of 6 To Be Sold At Once,"Beside Pinnock Beach Estate, Jakande Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,"Tartiana Court, Ikota Villa Estate Ikota Lekki Lagos",₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,"H Homes, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,8 baths,8 Toilets +Beautiful Contemporary 5 Bedroom Fully Detached Luxury Duplex;,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex;,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classic 4 Bedroom Semi Detached Duplex In A Gated Estate,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Apartment,In A Serene Neighborhood Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex In A Gated Estate,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex;,"Gated Estate, Osapa Axis. Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq;,Chevron Drive Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Izu Court, By Chevron Alternative, Lekki, Ikota Chevron Lekki Lagos",₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With 1 Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Smartly Finished 4 Bedroom Semi Detached Duplex,"Pantheon Homes, Buena Vista Estate, Orchid Road, Close To Chevron Toll Gate Ikota Lekki Lagos",₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished And Fully Serviced 3 Bedroom Flat With Sea View,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious Luxury 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex;,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fascinating 5 Bedrooms Semi Detached House;,Off Chevron Toll Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex;,Second Tollgate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex,Lekky County Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex;,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Apartment In A Strategic Location,Ikate Lekki Lagos,₦,"75,000,000",1,0,1,3 beds,3 baths,3 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,In A Serene And Secured Estate Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 755m²,"Melrose Garden Estate Beside Vgc, Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +Nicely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 2 Units Of 4 Bedroom Fully Detached With 1 Bq On 500m² (carcass),"Eleganza Garden Estate, Vgc Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,By Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,Osapa Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Luxury 3 Bedroom Apartment With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Built 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful Well Designed 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Lovely 5 Bed Fully Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Well Built 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex,In A Serene Estate Neighborhood Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraces, Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq And Swimming Pool In The Heart Of Lekki Phase 1,Z Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,"Alpha Bay Estate Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Built Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +Brand New Massively Built Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lavishly Executive 6 Unit Luxury 3 Bedroom Apartment With Bq And Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,In A Serene Neighborhood Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious Luxury 4 Bedroom Fully Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,... Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semidetached In A Gated Estate,"...,. Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Good Looking Spacious 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets +6 Plots Of Prime Land In A Strategic Location,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Terrace Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Spacious Super Luxury 4 Bedroom Massionette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex With Bq,In A Serene Estate Neighborhood Ikate Lekki Lagos,₦,"155,000,000",0,1,0, beds, baths, Toilets +Glorious Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Mind Blowing 5 Bedroom Fully Detached Castle, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bed Semi Detached Duplex With Bq,Ilasan Lekki Lagos,₦,"125,000,000",1,1,0,5 beds, baths, Toilets +Modern Day 4 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +Top Notched Super Luxury 9 Units Of 3 Bedroom Blocks Of Flats With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Home,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Contemporary 5 Bedroom Detached Duplex,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Built 4 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Well Built 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,1,5 beds,6 baths,6 Toilets +Investor’s Delight 2 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,2 beds,0 baths,0 Toilets +Super Affordable Spacious 4 Bed Semi Detached Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Brand New Super Luxury Excellent 5 Bedroom Fully Detached Duplex With Bq For Sale,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful And Spacious 5 Bedroom Fully Detached Duplex,"...,. Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached + Bq,Orchid Road Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Affordable 4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land Measuring 780m²,"Melrose Park Estate, Vgc Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds, baths, Toilets +"Prestigous Address, Magnificent Smart Home",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds, baths, Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Bq,In A Serene Neighborhood Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached + Bq,Orchid Road Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Fully Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Terrace Duplex In Good Location,In A Serene Neighborhood Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classy 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Penthouse With Bq, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroim Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +8000 Sqm Of Joint Venture,Lekki Phase 1 Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +1531 Sqm For A Joint Venture,Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House Plus Boys Quarters,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2000 Sqm,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm,Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +Designed 6 Bedroom Detached,Pinnock Beach Osapa London Lekki Lagos,₦,"750,000,000",1,1,1,6 beds,6 baths,7 Toilets +Land,Jakande Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Tastefully Finished 4bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Five (5) Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"185,000,000",1,1,1,5 beds,5 baths,6 Toilets +Land,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Outright Sale,Ikota Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished Fully Automated 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +3bedroom Mid Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +8600sqm Land,Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In Lekki,Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +3units Of Tenanted 3bwsroom Without Bq,Lekki Lagos,₦,"42,000,000",0,0,0,3 beds, baths, Toilets +Joint Venture 2000sqm,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +450sqm Of Land For A Joint Venture,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 5 Bedroom + Bq,Lekki Lagos,₦,"1,200,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"700,000,000",1,1,1,5 beds,5 baths,6 Toilets +Serviced Court 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 2bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Beautifully Finished Fully Automated 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +1050 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat With A Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm,Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture 4000sqm,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets +4plots Of Land,Oral Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Different Land Size,Ikate Lekki Lagos,₦,0,0,0,0, beds, baths, Toilets +A Standard 5bedroom Detached,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished And Spacious 5 Bedroom,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1050 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +600sqm,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3148 Sqm Of Land,Right On Lekki Epe Expressway Opposite Novare ( Shoprite) Mall Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,Ilasan Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +48 Units Of Luxury 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom House,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +669sqm,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +666 Sqm,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Decently Built Affordable 4bedroom,Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +100 Plots Of Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Six (6) Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"1,200,000,000",1,1,1,6 beds,6 baths,7 Toilets +Six (6) Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"350,000,000",1,1,1,6 beds,6 baths,7 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment With A Bq, Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful 5besroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds, baths, Toilets +"2,357.395sqm",Jakande Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 1 Bedroom,Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,1 beds,0 baths,0 Toilets +Prestigiously Finished 6bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets +1440884 Sqm For A Joint Venture,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Duplex Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"500,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"83,000,000",1,1,1,4 beds,4 baths,5 Toilets +Spacious Super 4bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Finished 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Built 3 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets +Fully Serviced Decently Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Bare Land 800sqm,Jakande Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Maisonet With A Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Plot Of Land,Lekki Lagos,₦,"68,000,000",0,1,0,0 beds,0 baths,0 Toilets +4000sqm Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4befroom Terrance With A Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds, baths, Toilets +Jv Land Measuring 1116sqm,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1124 Sqm For Joint Venture,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +666 Sqm,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Land,Located Ikota Villa Estate Behind Megachicken Ikota Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4besroom Penthouse With Bq And 3bedroom Maisonette With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Apartment With A Duplex,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Functional Filling Station,Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Luxurious 2 Bedroom Flat,Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Agungi Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Five (5)bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +5bedroim Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Maintained 4units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,3 beds, baths, Toilets +1816 Sqm Of Land For A Joint Venture,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +4plots,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +550sqm Of Land,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Hectares Of Land,Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3bedroom Apartment,Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"1,200,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Of Land For Joint Venture,Romi Gardens Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Luxury Detached Duplex With A Pool & Bar,Megamound Estate Ikota Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,In A Prime Estate Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"73,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex,A Very Nice Secured Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Fully Furnished Luxurious 4 Bedroom Terrace,A Very Nice Serene Environment Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Unit Of 4 Bedroom Semi Detached House,E Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Executive 4bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex At Chevron Toll Gate Lekki With Governors Consent,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Fully Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cornerpiece Plot Of Land Measuring 811sqm,Beta Estate Chevron Chevron Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Spacious 1bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,1 beds,1 baths,2 Toilets +5plots Of Land,Orchid Road Jakande Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land On 3,507sqms", Ikate Lekki Lagos,₦,"877,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With An Indoor Cinema,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,1,6 beds,8 baths,8 Toilets +Luxury 5 Bedroom And Bq Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Serviced Duplex With Lounge & Pool,2nd Toll Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable Well Finished 4 Bedroom Semi Detached Duplex,"Agungi , Off Lekki Epe Expressway Agungi Lekki Lagos",₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,"Lekki 2nd Tollgate, Lagos , Nigeria Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Expressway Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Fully Detached Duplex With A Bq.,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4bedroom Semi Detaced House,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,"2mins Drive From 2nd Toll Gate,lekki. Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +865sqms Of Land,Off Omirere Johnson Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Kitted 2bedroom Apartment,Lekki Phase 1 Ikate Lekki Lagos,₦,"62,000,000",0,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 11 Unit Of 4bedroom,Ikota Estate By Cluster One Road Off Megamond Road Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,100sqms For Sale In Sybril Iroche Street, Lekki",Sybril Iroche Street Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,0,1,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Flat,Lekki Phase 1 Ikate Lekki Lagos,₦,"63,000,000",0,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex Ikota Lekki,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Unit Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex At Romax Homes Vgc,Vgc Vgc Lekki Lagos,₦,"60,000,000/day",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Z Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +300sqm Of Land At Corner Piece,Ilasan Lekki Lagos,₦,"5,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Abiola Court Elegusi Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Nicely Built Contemporary 5 Bedroom Fully Detached Duplex, Fully Fitted With Bq.",Well Secured And Serene Estate Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Semi Detached Duplex In A Serene Neighbourhood,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 679sqm With C Of O In An Estate,Benflow Estate Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Bq In A Serene Enviroment,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Lekki County Home Estate Ikota Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +3100sqms Land, Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Duplex Houses With Bq And Swimming Pool For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,By Chevron Tollgate. Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,7 baths,7 Toilets +Tastefully Finish 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,4 Toilets +"For Sale!!! A Fantastic Luxury Ensuites Modern Fully Detached 5bd Duplex With Bq @ Ikota, Lekki, Lagos.","Ikota, Lekki Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +Super Spacious Decently Built 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 4 Bedroom Terrace Duplex In Orchid Lekki Lagos,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"47,500,000/day",0,1,0,4 beds,4 baths,4 Toilets +"2, 3 & 4 Bedroom Flat",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Residential Land On 100 Plot In A Secured Estate,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Detached 4bedrooms Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +15 Plots Of Land,Opposite Enyo Filling Station Orchid Road. Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And A Rooftop Terrace,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4bedrooms Semi Detached Duplex In Lekki County Ikota Villa,Lekki County Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +5hectares Of Land,Jv At Mobile Road Lekki Scheme 2 Lekki Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevron, Off Orchid",Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Standard 2 Units Of 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,3 Toilets +2 Units Of 4 Bedroom Fully Detached Duplexes With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Osapa London Lekki Lagos,₦,"700,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Top Notch Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House For Sale In Ologolo,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale 5 Bedroom Fully Detached Duplex With Bq,Jakande Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Numbers Of 3 Bedroom Flat + Bqs In A Gated Estate,"Vgc Estate, Lekki, Lagos. Vgc Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Blocks Of Flat Which Can Be Used As Short Let.,Nice Environment. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets +A 5bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki County Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 9 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Houses With Bqs,"Adebayo Doherty Road, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Payment Plan 4bedrooms Semi Detached Duplex In Ikota Lekki,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +525sqm Land At Seagate Estate With Consent,Seagate Estate Off Kusenla Road Ikate Lekki Lagos,₦,"75,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat,W Idado Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Contemporary 4 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex + Swimming Pool And Penthouse,Chevron Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets +Brand New 2 Bedrooms Apartments,Orchid Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets +Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable Luxury Detached Duplexes,Chevron Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Abraham Adesanya Is Ajah Lekki Lagos Lekki Lagos,₦,"23,000,000/day",0,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Executive 4bedroom Detached Duplex @ Osapa,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedrooms Semi Detached Duplex,Lekki Palm Estate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Super Quality Unconventional 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +Superbly Finished Fully Automated 5 Bedroom Fully Detached Duplex,Lekki Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Contemporary Duplex, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Executive 5bedroom Mansion With Bq Swimming Pool And Gym On 550sqm,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"390,000,000",1,0,1,5 beds,8 baths,7 Toilets +Brand New 5 Bedroom Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Luxury 4bedroom Townhouse With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,6 baths,6 Toilets +Beautifully Finished 5 Bedrooms Fully Detached House,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Flat With Luxury Facilities,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"10,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New Luxury 5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Luxury Apartments,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Own 2, 3,& 4 Bedroom Apartments At Orange Island Lekki",Orange Island Lekki Lagos,₦,"200,000,000/year",1,0,0,4 beds,4 baths,4 Toilets +For Sale 4 Bedroom Semi Detached Duplex With Bq At Signature Villas Ikota Lekki Lagos,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +A Luxury 5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets +3bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Beside Oral Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +New Luxury 4bedroom Terrace Duplex With Swimming Pool And Gym,Ikate Lekki Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,6 baths,6 Toilets +Shop Space,Z Vgc Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fantastic 2bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex In A Serene Neighbourhood,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5000sqm Of Dry Land At Ilasan Lekki With C Of O,Ilasan Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Executive 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,7 Toilets +Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +"8 No Of 3 Bedroom, 6 No Of 1 Bedroom And 2 No Of 4 Bedroom",Lekki Lagos,₦,"1,500,000,000",0,1,0,10 beds,10 baths,10 Toilets +Off Plan 5 Bedroom Detached Duplex,Off Durosimi Eti Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets +Well Finished 3 Bedroom Terrace Duplex,"Lekki Garden Phase, 5 Ajah Lekki Phase 1 Lekki Lagos",₦,"34,000,000",0,0,1,3 beds,3 baths,4 Toilets +9 Units Of 3 Bedroom Apartment,D Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Furnished 5 Bedrooms Detached Duplex In Victory Park Estate Osapa,Victory Park Eatate Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Premium Quality 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Semi Detached Duplex,Ikate Lekki Beside Nixon Town Estate Ikate Lekki Lagos,₦,"195,000,000",0,1,1,0 beds,0 baths,0 Toilets +593sqm Of Land Sand Filled,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +1000sqm Of Land,Z Chevron Lekki Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive Fully Furnished Service 2 Bedroom Apartment,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,3 baths,0 Toilets +9 Plots Of Land,Bogije Lekki Lagos Lekki Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace House,Lekki Right Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Fully Detached 5bedrooms Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Townhouse,Off Durusimi Etti Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Decently Finished 5 Fully Detached Duplex With Swimming Pool I,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Excellent Facilities,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrence Duplex With Laundry Room And Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury Brand New 5 Bedroom Detached House With A Maid's Room,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Executive 4 Bedroom Semi Detached Duplex,Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq For Sale In Lekki Phase 1,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets +Executive Luxury 5 Bedroom Semi Detached Duplex With 3 Siting Rooms And Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,1,5 beds,7 baths,7 Toilets +Brand New 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bed Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,2nd Toll Gate Lekki Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,7 baths,7 Toilets +"Studio, 2, 3 & 4 Bedroom Flat",Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"81,479,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Bulit 5bedroom Luxury Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Luxury 4bedroom Townhouse With Self Compound,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4bedroom Terrace Duplex With Payment Plan,Idado Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached House,Elegushi Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New 3bedrooms Aparment,Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Home With Aesthetics And Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +Brand New 3 Bedrooms Terraced And 4 Bedrooms Semi Detached Duplex,Vgc Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With A Room Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With Pool And Gym,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4units Of 5bedroom Duplexes,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,1,5 beds,6 baths,6 Toilets +Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached With One Room Bq For Sale In Ologolo,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Luxury 5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,7 baths,7 Toilets +2 Bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,3 baths,3 Toilets +700sqm Of Sand Filled Land,Orchid Road Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex With Bq,Nice Environment Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplexe For Mixed Use,Osapa London Lekki Lagos,₦,"6,000,000",1,1,0,4 beds,4 baths,1 Toilets +A Luxury 2 Bedroom Flat,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Of Land,Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Detached 5bedroom With Modern Architecture,Lekki Phase 1 Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedrooms Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Serviced 5 Bedroom Terraced Duplex With Bq,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat,Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +For Sale 6 Units Of Finished 5 Bedroom Fully Detached Duplex With Bq At Ikate Lekki,Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Built Contemporary 5 Bedroom Fully Detached Duplex.,Beautiful Environment Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,8 Toilets +Modern 4bedroom Fully Detached Duplex In 2nd Toll Gate Lekki,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Executive 2bedroom Terrace Duplex In A Gated Estate,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,2 beds,3 baths, Toilets +Brand New 4 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"80,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 4 Bedroom Fully Detached Duplex.,Serene Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Brand New Fully Furnished 5 Bedroom Detached Duplex With One Room Bq For Sale In Pinnock Estate, Osapa London.",Osapa London Lekki Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets +5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,5 Toilets +Newly Built Value Centric 4 Bedrooms Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive Luxury 4bedroom Fully Detached Duplex With Roomself Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Ikate.,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"12,000sqm Water Front Mixed Use Land",Lekki Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex With Pent House And Swimming Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Units Of 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Service 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Luxury 5bedroom Detached Duplex With Bq,V G C Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House,Megamond Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Swimming Pool For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached House,Megamound Estate Chevron Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Contemporary 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 4 Bedroom Fully Detached Duplex With Bq,Lekki Conservative Road 2 Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 5 Bedroom Semi Detached House With A Room Staff Quarter, Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land Measuring 730sqm At White Sand Estate,Ologolo Ologolo Lekki Lagos,₦,"80,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +Corner Piece Plot Measuring 4200sqms For Sale In Lekki Epe Expressway,Lekki Epe Expressway Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Smart House With Cinema House & Swimming Pool,"Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Helium Apartment: 1, 2, 3 Apartment At Gracefield Estate Chevron Drive Lekki",. Chevron Lekki Lagos,$,"140,000,000",0,0,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Fully Detached House With 2 Room Staff Quarters, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 6 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,7 Toilets +Fully Automated 5 Bedroom Detached Duplex,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Units Of Newly Renovated 4 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +Executive Luxury 2bedroom Flat Apartment,Agungi Lekki Agungi Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,3 Toilets +2 Plots Of Land In A Fast Developing Area,Ikota Gra Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +New Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets +"New 1 Bedroom, 2bedrooms And 3bedrooms","Alpha Beach, Chevron Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Standard 4bedroom Terrace + Maids Room,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Fully Detached Bungalow With A Pent House With Bq,Abijo Gra Lekki Lagos,₦,"35,000,000/day",0,1,0,3 beds,3 baths,3 Toilets +A Plot Measuring 700sqm,Off Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex House,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive Commercial Property,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Automated 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Built 5bedroom Semi Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq At Chevron Lekki,Chevron Drive Lekki Chevron Lekki Lagos,₦,"115,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced And Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Standard 2 Units Of 5 Bedroom Fully Duplex,Chevron Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,0 baths,0 Toilets +New Luxury 5bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,7 baths,7 Toilets +Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets +Executive Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets +New Luxury 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,7 baths,7 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex For Sale In Chevron,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"41,000,000",0,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex With One Room Bq For Sale In Chevron.,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4bedroom Duplex On A Large Land,Off Kusenla Road Inside An Estate Ikate Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House With 2 Room Staff Quarters For Sale In Victory Park Estate Osapa,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedrooms Fully Detached Duplex With Bq,Lekki Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedrooms Fully Detached Duplex With Bq Lekki 1,In An Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Designed 5 Bedroom Semi Detached Duplex With Swimming Pool .,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq In A Gated Estate,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex,S Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Plots Of Sand Filled Land,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6units Of 4bedroom Terrace And 6units Of 2bedroom On 3150sqm,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,1,0 beds,0 baths,0 Toilets +Serviced 5 Bedroom Semi Detached Duplex With Bq,K Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellent 5 Bedroom Detached With A Bq,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex With Bq,Abijo Gra Lekki Lagos,₦,"36,000,000/day",0,1,0,3 beds,3 baths,3 Toilets +Tastefully Furnished 4 Bedroom Duplex With 20kva Generator,S Chevron Lekki Lagos,₦,"143,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 4bedroom Semi Detached,Agungi Lekki Lagos,₦,"83,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House Within A Secured Estate Is Now For Sale In Megmound Estate Ikota Lekki,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With 2 Room Bq,D Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New Luxury 5 Bedroom Detached Duplex For Sale In Lafiaj,lekki Lagos.",Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2750sqm Of Land With C Of O,Agungi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Megamond Estate Ikota Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Spacious Decently Finished 5 Bed Fully Detached Duplex In Chevron, Lekki",Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 24hrs Electricity,By 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brand New 3 Finished Bedroom Apartment With Swimming Pool, Interlocked Floor , Jacuzzi , Gym Etc At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"47,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +7 Bedroom Detached Duplex With 2 Kitchen,Ikota Villa Estate Ikota Lekki Lagos,₦,"145,000,000",0,1,0,7 beds,7 baths,8 Toilets +Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +Contemporary Designed 4 Bedroom Detatched Duplex With Bq,Nice Environment Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Nice Environment Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Brand New 3 Bedroom Terrace With Bq,Osapa Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Serene Environment Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Executive 3bedroom Semi Detachedduplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Massive Petrol Filling Station,Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +530sqm Of Land,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 3bedroom Semi Detached,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fantastic 3bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 5 Bedroom Terrace Duplex,Lekki Orchid Road Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Built 4 Bedroom Semi Detached Duplex House With A Room Boys Quarters At Lekki,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Grandeur Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000/year",0,0,0,5 beds,0 baths,0 Toilets +A Master Class 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 4 Bedrooms Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +New Luxury Executive 5bedroom Detached Duplex With 2rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds, baths, Toilets +Fully Serviced 2 Bedroom Apartment,"Salem, Ikate Lekki. Ikate Lekki Lagos",₦,"47,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Completed 4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury And Spacious 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Spacious 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2bedroom Flat,Lekki Phase 1 Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Excellent 2bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Maisonette Detached Duplex,Lekki Phase 1 Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 5bedroom Fully Dateched Duplex,Osapa London Lekki Lagos,₦,"130,000,000,000",0,1,1,5 beds,5 baths,6 Toilets +Fully Serviced 2bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Home,Elegushi Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Executive 4bedroom Semi Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +4bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Detached House With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"97,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Block Of 14 Numbers Of Luxury Flats,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Of Land With C Of O,Ikate Lagos Ikate Lekki Lagos,₦,"89,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Mini Flat,Lekki Chevron Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Off Providence Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 4bedroom Massionnate,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Well Furnished 8 Units Of 4 Bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Built 3 Bedroom Terrace Duplex With Governors Consent,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bed Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shopping Complex In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex,"Ikate Elegushi , Lekki , Lagos Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Fully Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Executive Luxury 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,1, beds, baths, Toilets +800sqm Of Land,Ikate Lagos Ikate Lekki Lagos,₦,"168,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Contemporary And Luxuriously Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Providence Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Plots Of Land,Bogije Lekki Lagos Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Standard Detached Duplex,Bucknor Jakande Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Prime Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Magnificent Edifice,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +New Executive 5bedroom Fully Detached Duplex With Bq On 400sqm Land,Gate Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets +"5 Bedroom Fully Detached Duplex With Bq, On 2 Floors!",Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex For Sale In Idado,Idado Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex With Bq,Abijo Gra Lekki Lagos,₦,"32,500,000/day",0,1,0,0 beds,0 baths,0 Toilets +Massive 3 Bedroom Semi Detached Duplex,X Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 3bedroom Apartment At Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,3 Toilets +Executive 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Newly Built Block Of Studio, 1 Bedroom Apartment And 2 Bedroom Apartment With Swimming Pool , Fully Fitted Kitchen",Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,2 Toilets +Promo Offer!!! Rehoboth Park & Gardens,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Executive Luxury 5bedroom Fully Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets +Standard Executive 5bedroom Duplex On 400sqm Land,Eleganza After Chevron Toll Gate Chevron Lekki Lagos,₦,"160,000,000",0,0,1,0 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedroom Detached Duplex At Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +"For Sales 5 Bedrooms Fully Detached, With Cinema And Swimming Pool .",Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,6 baths,7 Toilets +Massive Fully Detached 5 Bedroom House With A Swimming Pool,Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex Service,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully 4bedroom Duplex + Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary Brand New 5 Bedroom Detached House With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Of Land On A Major Road,Lekki Peninsula Phase 2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Absolutely Value Centric 3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Top Notch 3bedroom Flat + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Chevron. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,4 baths,5 Toilets +Luxury 5units Of 3bedroom Apartment,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets +Lovely 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Units Of 4 Bedroom Townhouses,"Off Ozumba Mbadiwe, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"144,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Furnished 3 Bedroom Mansionette,2nd Toll Gate Idado Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary 5bedrooms Detached Duplex,Lekki Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 And 3 Bedroom Terrace Duplexes At Romax Home Vgc,Vgc Vgc Lekki Lagos,₦,"40,000,000/day",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Beside Oral Estate, Eleganza Oral Estate Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached With Bq At Ikate Lekki,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +20 Acres Of Bare Land For Joint Venture,Back Of Fidelity Bank (sugar Land Estate) Ikota Lekki Ikota Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets +4 Bedroom Town House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +New 5 Bedrooms Fully Detached Duplex Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"14,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedrooms Flat At Oral Estate Lekki,Oral Estate Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,"Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +New Luxury 4bedroom Semi Detached Duplex In A Good Location,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets +Executive 4bedroom Duplex + Bq,Located In A Very And Secure Neighborhood Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Serviced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Executive 5 Bedroom Fully Detached Mansion, Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Executive Luxury 3bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,1,3 beds,5 baths,5 Toilets +New Luxury Furnished 3 Bedroom Apartment With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,5 baths,5 Toilets +A Lovely 4bedroom Terrace Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000/year",0,0,0,4 beds, baths, Toilets +Luxury Executive 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,4 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House With Swimming Pool And Boy's Quarter,2 Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Executive 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +Tastefully 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1,133sqms Land For Sale In Lekki Right",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +Luxury En Suites 4bedroom Semi Detached Duplex + Room Bq,Off Lekki Express Way Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury New 5 Bedroom Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 3 Bedroom Flat,Orchid Road Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Nice Fully Detached 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Detached House,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Automated 5 Bedroom Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Standard 5 Bedroom Fully Detached Duplex House,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Resplendent 5bedroom Detached House + 2sitting Rooms & Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +Newly 4 Bedroom Terrace Duplex In A Serene Neighbourhood,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Fully Detached House With 2 Rooms Bq,Vgc Lekki Vgc Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,0 baths,0 Toilets +Mini Estate Of 9 Apartment 4bedroom Duplex With Bq Each On 4310sqm Land With Swimming Pool,Vgc Vgc Lekki Lagos,₦,"480,000,000",0,0,1,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 3 Bedroom Flat,Directly Off Bisola Durosinmi Etti Street Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets +Fully Furnished 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"9,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +New Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0, beds, baths, Toilets +2 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,500,000",1,1,0,2 beds,2 baths,2 Toilets +Luxurious 3 Units 5 Bedroom Detached Home.,Nice Estate Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"7,000,000",1,0,1,3 beds,3 baths,4 Toilets +Astonishing Luxury Contemporary 5 Bed Fully Detached Home With Pool,By Vgc Lekki Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale In Chevron.,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Flat,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Magnificent Built 5 Bedroom Fully Detached House With Swimming Pool, Study Room, Cinema Room And 2 Room Boys Quarters.",Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 26 Room Hotel,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,1,10 beds,10 baths,10 Toilets +A Standard 4 Bedroom Terrace Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Master Class 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built And Designed Two Bedroom Lovely Block Of Flats,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets +Serviced 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Serviced 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Service 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 3 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Perfectly Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Executive 5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,5 beds, baths, Toilets +2 And 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +Standard 5bedroom Terrace Duplex, Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedrooms Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +2bedrooms Flat With Bq,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,2 Toilets +3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,2 baths,4 Toilets +New 3bedrooms Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Supper Finished 4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Dryland Land Measuring 650sqm On Tarred Road Itedo Off Freedom Way Ikate,Itedo Off Freedom Way Lekki Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +20 Units Of 4 Bedroom Terrace Duplexes,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Plots Of Land Very Dry Fenced And Gated,Ologolo Lekki Lagos,₦,"220,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built And Fully Serviced 3 Bedroom Apartment With A Penthouse,Lekki Phase 1 Lekki Lagos,₦,"132,000,000",1,0,0,3 beds,3 baths,4 Toilets +Smart 4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House For Sale Off Orchid Road Lekki Lagos.,Off Orchid Road Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Contemporary 4 Bed Luxury Home With 2 Bqs,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat In Fully Serviced Estate With Swimming Pool And Gym, Ikota Lekki Lagos,₦,"33,000,000/day",1,1,1,3 beds,3 baths,3 Toilets +Top Notch Brand New 4bedroom Semi Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,4 baths,6 Toilets +Newly Built 2 Bedroom Flats In Lekki 1,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +New Serviced 2 Bedroom Apartment, Osapa London Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex Wit Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Super 5 Bedrooms Fully Detached Duplex With Pool In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +An Institutional Land Measuring 6000sqm,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat Apartment With Bq,Idado Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Stunning 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex (off Plan),Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq.,Ikota Lekki Ikota Lekki Lagos,₦,"140,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land Messing 1114sqm With 3bedrooms In Vgc,Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Super Luxury 5 Bed Fully Detached Duplex,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +New Standard 5bedroom Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets +4 Bedroom Terrace Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,3 beds,3 baths,4 Toilets +Beautiful Very Spacious 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets +Contemporary Designed 5 Bedroom Detached Duplex With Gym,Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Contemporary Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached House With A Room Bq,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex For Rent In Orchid Road,Off Orchid Road Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Semi Detached Duplex With 2 Rooms Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale 4 Bedroom Terrace Duplex At Victoria Crest Orchid Rd Lekki,Orchid Rd Lekki Lagos Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex Is Available For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Furnished 4bedroom Terrace Duplex,"Ikate,lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4bedrooms Terraced Duplex In Lekki Phase 1,Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Detached With A Room Bq For Sale In Chevy View Estate.,Chevy View Estate Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished Fully Automated 5 Bedrooms Detached Duplex With Cinema And Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Semi Detached House Plus Bq,Abijo Gra Lekki Lagos,₦,"38,000,000",0,0,1,3 beds,4 baths,5 Toilets +New Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Gated Estate Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +For Sale Brand New 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,0,2 beds,2 baths,2 Toilets +Brand New 2 Bedroom Flat For Sale In Idado,Idado Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Beautifully Crafted 5 Bedroom Detached House With A Maids Room,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,0 Toilets +Brand New 2 Bedroom Flat,Ikota Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Standard 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"750,000,000",0,1,0,6 beds,7 baths,6 Toilets +2 Bedroom Lovely Apartment With Bq,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,2 beds,2 baths,2 Toilets +A Standard 4 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Semi Detached Home,Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedrooms Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Mansion With Swimming Pool At Lekki,Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"990sqms Land For Sale In Baajiki Close, Lekki",Baajiki Close Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +6bedroom Contemporary Fully Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New Spacious 3 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,3 Toilets +Joint Venture Deal,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Fantastic 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury One Bedroom Apartment,Ikate Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Sweet 5bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful Spacious 5 Bedrooms Detached Duplex With Bq,Nice Environment Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 5bedroom Fully Detached,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Conservation Road Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"190,000,000",0,0,1,5 beds,5 baths,6 Toilets +Well Built 4bedroom Fully Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Serene Environment Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Modern Design 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Brand New 4 Bedroom Semi Detached Duplex,Off Elegushi Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Corner Piece 1130sqms Lhr, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Semi Detached House With Bq For At Lekki,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +Nicely Built 5 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 5bedroom Fully Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Home,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 & 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,2 baths,3 Toilets +Affordable 3 Bedroom Duplex With A Room Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,0 baths,0 Toilets +Automated 5 Bedroom Fully Detached Duplex With Cinema And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Detached Duplex With A Pool,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 3 Bedroom Apartment,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Jakande Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Teraced Duplex,Off Admiralty Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"960,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Standard 4bedroom + 2 Rooms Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq In A Serviced Estate Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"95,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Affordable Well Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bed Fully Detached Mansion With Private Elevator, Cinema",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellent Built 5bedroom Luxury Detached Duplex All Ensuit + Bq,Ikota Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,6 baths,6 Toilets +Spacious Decently Finished 5 Bedroom Fully Detached Duplex With Bq And Stamp Concrete Floor Etc At Chevron Lekki With Governors Consent,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Exceptionally Built 4 Bedrooms Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 10bedroom Detached House On 840sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,0 beds,0 baths,0 Toilets +3 Floors Shop Space,Chevron Lekki Lagos,₦,"15,400,000",1,0,0,1 beds,1 baths,1 Toilets +Brand New Commercial Shop Spaces For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"28,400,000",0,1,0, beds, baths, Toilets +An Executive 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Smart 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxuriously Finished And Spacious 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 5 Bedroom Detached,Orchid Road Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Renovated 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,3 beds,4 baths,4 Toilets +Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Vacant Plot Of 1,800sqms For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Right Lekki Phase 1,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000/year",1,1,0,2 beds,2 baths,3 Toilets +Super 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +20 Acres Of Land,Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"130,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Executive 5bedroom Detached House With 2room Service Quarter On 950sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,8 baths,8 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,0 Toilets +"For Sale 2 Units Of Luxury Detailed 5 Bedroom Fully Detached With Bq , Swimming Pool, Cinema , Soft Touch Switches Etc At Osapa London Lekki",Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,5 Toilets +Godmade Connect Court 5 Lekki: 4 Bedroom Maisonette,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,200,000/year",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq And Miniflat,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Detached Duplex With 3rooms.bq 2nd Toll Gate Lekki,Chevron Side Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,2 Toilets +Brand New 3 Bedroom Apartment With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Exclusive 4 Bedroom Terrace With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Home With Aesthetics And Bq,Chevron Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land On 1137sqms, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Measuring 812sqm Behind Children Int Sch Itedo,Itedo Lekki Ph1 Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxury Executive 5bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"395,000,000",0,1,0,5 beds,5 baths,5 Toilets +Finished 4bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Seagate Estate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Luxury 4bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets +Magnificent Built 4 Bedroom Detached Duplex House With Bq At Lekki For Sale.,Lekki Phase 2 Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Instalments Payment Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets +Mortgage Options Also Applicable!!! An Executive Luxury Ensuites 3bd Flat Tennanted Apartment,Off Lekki Express Way Ikate Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With 1 Room Bq,G Ikate Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 4 Bedroom Terrace Duplex,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale At Megamond Estate Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 And 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +An Executive 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Luxury Executive 2building Of 9flat 3bedroom With Bq Each On 1751sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,1,3 beds,5 baths,5 Toilets +New Fully Detached 4bedrooms Duplex In Lekki Right Phase 1,Lekki Right Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Semi Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached House + One Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished Detached 4bedrooms Duplex,Bera Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Astonishing 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 4bedrooms Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex For Sale Off Orchid Road,Off Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq Enough Parking Space Of 8cars,Gated Estate Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,7 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 6bedroom Detached Duplex With 3siting Room And Bq,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,1,6 beds,0 baths,0 Toilets +Massive Land,Abijo Gra Lekki Lagos,₦,"12,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Absolutely Stunning 3 Bed Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets +4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"3,000,000/year",0,0,0,4 beds,4 baths,4 Toilets +Excellent And Spacious Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"36,000,000",1,0,0,1 beds,2 baths,2 Toilets +Ultra Luxury 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +Lovely 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Brand New 4 Bedroom Semi Detached Duplex For Sale In Lafiaji, Orchid Road.",Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Fully Furnished 5 Detached Duplex With One Room Bq,R Ikota Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Luxury Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +662.286sqm Of Land,Ologolo Ologolo Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplexe,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplexe With Bq,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Apartments,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"60,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities In Orchid,Orchid Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Fully Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,5 Toilets +5plots Of Land,My Homes Ikota Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,0 baths,0 Toilets +9 Units Luxury Flat Of 3 Bedroom Flat With Bq Each On 1751 Sqm Of Land,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"710,000,000",0,0,0,3 beds,3 baths,3 Toilets +1100sqm Of Land,Fola Osibo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4bedrooms Semi Detached Duplex In Primewaters Garden 2 Ikate Lekki,Primewaters Garden 2 Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bed Semi Detached With Bq And Security House,Chevy Veiw Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,6 baths,6 Toilets +A Brand New 4/5bedroom Detached House All Ensuit + Guest Toilet,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,7 baths,7 Toilets +Ultimate Value 4 Bed Terrace Duplex Ikate,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Room Bq,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,4 baths,4 Toilets +For Sale 700sqm Of Land Mixed Development With C Of O At Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +State Of The Art 4 Bedrooms Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex At Ikate Leki,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedrooms Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Gated Estate Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 10 Unit 4bedroom Apartment+ Bq,"Admiralty Way, Nitel Bus/stop, Beside Studio 24 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury New 5 Bedrooms Fully Detached Duplex With Swimming Pool In Chevron,Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House,Ikota Off Orchid Hotel Road Lekki Lagos Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartments With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,3 baths,3 Toilets +Contemporary Designed 5 Bedroom Detached House With Swimming Pool,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Grandeur Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Furnished 2bedroom Flat,Located At Ikate By Lekki Phase 1 Second Gate By Second Round About Ikate Lekki Lagos,₦,"47,000,000",1,1,1,2 beds,2 baths,3 Toilets +A Standard 3 Bedroom Flat, Lekki Lagos,₦,"40,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +A Standard 2units Of 4bedroom,Oniru Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Super Spacious Ultra Modern 5 Bed Fully Detached Duplex With Pool By Vgc, Lekki",By Vgc Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Dulpex,Pinnock Estate Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Elegantly Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,5 Toilets +Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat With A Room Staff Quarters,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxuriously Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq With Governors Consent,Ologolo Ologolo Lekki Lagos,₦,"87,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +Newly Built Luxury 5/4bedroom Detached Duplex Each With 1room Bq,Chevyview Estate Chevron Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5bedroom Detached House With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex, Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Chevron Alternative Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5bedroom Fully Detached Duplex With Modern Architecture,cinema,pool,bq",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With One Room Bq For Sale In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Executive Luxury 6 Flat Of 3bedroom With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +12units Of 2bedroom And 2units Of 4bedroom Apartment,Lekki Phase 1 Chevron Lekki Lagos,₦,"650,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Apartment,Romax Homes Phase 2 Vgc Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +Finished 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Fully Service 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5bedrooms Detached Duplex In Chevron Lekki,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With A Maid’s Room/bq,Cowrie Creek Lng Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Designed 5 Bedroom Detached House With A Room Bq,Jakande Lekki Lagos,₦,"300,000,000",1,0,0,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +5.5 Hectares Of Land,Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Orchid Road Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Contemporary 5bedrooms Detached Duplex All Ensuit + Bq,Ikota Lekki Lagos,₦,"165,000,000",1,1,1,5 beds,5 baths,6 Toilets +Commercial 14 Room Detached House For Sale In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Brand New 5 Bedroom Detached House With A Beautiful Ambience For Sale In Lekki Phase , Lekki Right",Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Serviced House,Admiralty Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +Splendid Contemporary 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Solid 5bedroom Detached Duplex All En Suit + Bq,Carlton Gate Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New 4bedrooms Aparment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Masterpiece With Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets +An Executive Luxury Ensuites Modern & Newly Renovated 4bedroom Self Compound Terrace Duplex,Cluster 1 Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Land Measuring 1,100sqms For Sale In Lekki Phase 1",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex House With A Room Boy's Quarters,F Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Terrace Duplex At Lekki,Lagos Business School Ikate Lekki Lagos,₦,"52,500,000/day",0,0,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Decently Spaced 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Residence,Northern Foreshore Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace,Lekki Phase 1 Chevron Lekki Lagos,₦,"6,500,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished Contemporary 5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Z Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +New Luxury 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxury Wing 5bedroom Terrace Duplex In An Estate,Lvingspring Court 1 Orhif Hotel Rd Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,7 baths,7 Toilets +Tastefully Designed And Finished Contemporary 5 Bedroom Fully Detached Duplex.,A Well Secured And Serene Estate. Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"For Sale!!! An Excellent Luxury Immaculate Ensuites Modern 5bd Fully Detached Duplex + Rm Bq @ Ologolo, Lekki, Lagos.","Ologolo, Lekki. Lekki Lagos",₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,By Lekki Conservation Centre Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Bera Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Brand New 5 Bedroom Fully Detached House With A Room Bq For Sale In Pinnock Estate.,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Build 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terrance Duplex With A Room Staff Quarter, Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 3 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached House With A Room Staff Quarter,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Lovely 4bedroom Fully Detached Duplex,U3 Estate By Marwa Lekki Phase 1 Lekki Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds, baths, Toilets +Magnificent Decently Finished 5 Bedrooms Fully Detached Duplex With Penthouse And Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +15 Plots Of Land Each Plot 600sqm,Orchid Road. After Buena Vista Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Waterfront 3 Bedroom Apartment With Swimming Pool Gym And Tennis,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,4 baths,4 Toilets +Brand New Luxury 5 Bedroom Semi Detached House,S Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"47,000,000",1,1,0,2 beds,2 baths,3 Toilets +Affordable Luxury Apartments,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,2 baths,2 Toilets +Serviced 4 Bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive Land On 1000sqm,Chalton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds,1 baths,1 Toilets +Super Luxury 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq.,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"...,. Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Masterpiece 5bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Own A Home In Venice Estate, Lagos",Venice Estate Lekki Phase 1 Lekki Lagos,₦,"34,900,000",0,1,0,3 beds,4 baths,4 Toilets +For Sale Massive Land Measuring 4000sqm With Access Road Through Freedom Road Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000/day",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury Fully Furnished 6 Bedroom Detached House,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +A Standard 5bedroom Semi Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +A Fantastic 2bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedrooms Terrace Plus Bq,Jakande Beside Nicon Town Estate Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached House With A Bq,Off Eletu Road Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Plots Land,Ikota Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq At Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Luxury 4bedroom Perfect Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets +3 Bedroom Terrace With Bq,Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +45sqm Shop Outlet,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds,1 baths,1 Toilets +4 Bedroom Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"48 Room Hotel On Total Land Area Measuring 1,700sqm","By Chevron Roundabout, Lekki, Lagos. Chevron Lekki Lagos",₦,"650,000,000",1,0,1,0 beds,0 baths,0 Toilets +900sqms Land, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Off Plan 2bedroom Flat,Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Floors Shop Space,Lekki Phase 1 Chevron Lekki Lagos,₦,"16,100,000",0,0,0,1 beds,1 baths,1 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Spacious 5 Bedroom Semi Detached Duplex With Bq,In A Gated Estate By Orchid Hotel. Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Of Eletu Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Off Domino Pizza Agungi Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,"Off Orchid Road, Lekki 2nd Tollgate . Lekki Lagos",₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Home,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Well Maintained 4 Bedroom Semi Detached House With 2 Rooms Bq,Off Bisi Durusemietti Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,7 baths,7 Toilets +New Fully Serviced 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex Plus 1 Bedroom Mini Flat,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 1 Bedroom Mini Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +530sqm Of Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Lekki Scheme 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Magnificent Edifice With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +"Contemporary Designed 5 Bedroom Detached Duplex With Fitted Kitchen, Swimming Pool",White Oak Estate Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,7 baths,7 Toilets +A Large 5 Bedroom Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Beside Oral Estate Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Vacant Plot Of 860sqms For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +For Sale 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel Of 59 Rooms,Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,0 beds,0 baths,0 Toilets +Shop,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 4bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,6 Toilets +New 5 Bedroom Fully Detached Duplex With Pool In Osapa,Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"430,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Duplex With 2 Open Terraces With Swimming Pool And Other Features,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Executive New 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets +20000sqm Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedrooms Terraced House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With A Room Staff Quater,Lekki Phase 1 Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Shop,Ikota Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decently Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +Tastefully Finished 4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached House,... Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Standard 2 Bedroom Serviced Apartment,2nd Toll Gate Lekki Jakande Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House For Sale In Lekki Phase1 .,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Plots Of Land,"Orchid Road, By Mega 1 Plaza Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Block Of Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Standard 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 .018 Hectares Of Land For Joint Venture,Ikota Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Contemporary 5 Bedroom Detached Duplex.,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +500sqm Sand Filled Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Rent In Agungi,Agungi Lekki Lagos,₦,"80,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +500 Square Meter Of Fully Serviced Plot Of Land,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Ikate Lekki Lagos.,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +A Massive 4bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"83,000,000",0,0,0,4 beds, baths, Toilets +3 Terrace Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +12 Bedroom Mansion On 13388sqm Land,Lekki Admiralty Way Lekki Lekki Phase 1 Lekki Lagos,₦,"490,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Newly Built Ensuites Modern & Tastefully Finished 5bedrppm Fully Detached House + Room Bq,",Ikate Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished Contemporary 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace With A Room Bq For Sale In Orchid,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex.,Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With A Beautiful Ambience, Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,024sqms For Sale In Olukayode Jacob Street, Lekki",Olukayode Jacob Street Lekki Lagos,₦,"310,000,000",0,0,0, beds, baths, Toilets +"Newly Built Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema And A Room Bq",Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House Plus Boys Quarters,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Furnitures In Vgc Lekki,Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxury New 4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets +A Residential Virgin Land Measures 900sqm,Sangotedo Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Beautifully Finished 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets +Fully Furnished Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Osapa London Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Terrace Duplex Plus Bq,Lekky County Ikota Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Executive 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Luxury 4bedroom Terrace Duplex In A Good Location,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Luxury Executive 4bedroom Fully Detached Duplex With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"175,000,000",0,0,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Orchid,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Hectares Of Land,"Second Toll Gate, Lekki Phase 2 Lekki Phase 2 Lekki Lagos",₦,"120,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Detailed Apartment,Lekki Phase 1 Agungi Lekki Lagos,₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets +A Standard 3 Bedroom Flat, Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedrooms Semi Detached Duplex In Pinnock Beach Estate Osapa,Pinnock Estate Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +Uncompleted 12 Units Of 2 Bedroom Flats Plus 2 Units Of 4 Bedroom Penthouse,Chevyview Estate Chevron Drive Chevron Lekki Lagos,₦,"450,000,000",0,0,0,2 beds,0 baths,0 Toilets +Outstanding 5 Bed Fully Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exclusive 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Contemporary 5 Bedroom Fully Detached Duplex For Let In Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Superb 4 Bedroom Semi Detached Duplex With Bq,"Ologolo,lekki,lagos Ologolo Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Luxury 3bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"38,000,000",0,1,1,3 beds,4 baths,4 Toilets +Classic 5bedrooms Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex At Romax Homes,Vgc Vgc Lekki Lagos,₦,"75,000,000/day",1,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,6 baths,6 Toilets +Lovely 2 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached House + 2 Rooms Bq In An Estate,"Vgc Estate, Lekki, Lagos. Vgc Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With Swimming,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Fully Detached 5bedrooms Duplex In Osapa Lekki,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedrooms Detached Duplex With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,R Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Massive Land For Sale At Sangotedo Monastry Road Lekki,Monastry Road Sangotedo Agungi Lekki Lagos,₦,"13,000,000/day",0,0,0, beds, baths, Toilets +Newly Executive Luxury 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets +Standard 800sqm Land,Gated Estate Beside Nicon Town Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Designed 4 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"170,000,000",1,0,1,5 beds,6 baths,7 Toilets +"1,444sqm Of Land Corner Piece",Van Daniel Estate Off Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale 300sqm Of Land Fenced And Gated At Ilasan At World Oil With Global C Of O Ilasan Lekki Lagos. 100% Dry Land,Ilasan Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury 5bedroom Mansion With 2rooms Bq Swimming Pool And Gym On 650sqm Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,8 baths,8 Toilets +Brand New Fully Serviced 3 Bedroom Flat, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse With Bq And 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 And 3 Bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets +4900sqm Of Land In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"980,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Smart Homes Of 4bedrooms Semi Detached Duplex Lekki,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,"Lekki, Lagos Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +New 4bedrooms Terraced Duplex,R Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Okota Lekki Ikota Lekki Lagos,₦,"61,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +3 Plots Of Sand Filled Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 5 Bedroom Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Fully Serviced Apartment,Osapa London Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +New Luxury Executive 5 Bedroom Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex + Bq And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished 5bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,5 Toilets +5 Bedroom Duplex With Bq For Sale At Lekki In An Estate,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex At Ikota Lekki,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +900sqm Of Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Executive Well Furnished 5bedroom Full Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"130,000,000/year",0,0,0,5 beds, baths, Toilets +A Standard 3bedroom Flat,Chevron Lekki Phase 1 Lekki Lagos,₦,"35,000,000/year",0,0,0,3 beds,0 baths,0 Toilets +Massive 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Maisionete,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000/day",0,0,0,2 beds,2 baths,3 Toilets +Luxury Built 4 Bedroom Terrace Duplex,Z Lekki Phase 2 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +Super Spacious Ultra Modern 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Standard 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Value Centric 2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets +Joint Venture,Off Gmabgbala Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished Well Spaced 4 Bed Terrace Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached House With 1 Room Bq In Lekki County Homes.,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Luxury 4bedroom Semi Detached Terrace Duplex With Bq And 5kva Inverter,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,0 beds,0 baths,0 Toilets +"Contemporary Finished 5 Bedroom Detached Duplex, With A Room Boys Quarter And Swimming Pool",Megamound Estate Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached With A Room Staff Quarter For Rent In Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"90,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +Well Finished 3bedroom Flat (ist Floor) With Inbuilt Boys Quarter,House On The Rock Road Ikate Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,5 Toilets +New 5 Bedrooms Fully Detached Duplex Chevron Toll Gate,Chevron Lekki Lagos,₦,"120,000,000",0,1,0, beds, baths, Toilets +Outstanding 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets +Spectacular 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4bedroom Detached Duplex With Bq Swimming Pool,2nd Toll Gate Lekki Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Piece Of Land,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury Executive 3bedroom Semi Detached Terrace With Bq And Personal Compound,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +"Serviced 4bedroom Terrace Duplex With Swimming Pool ,gym And Football Court",S Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex + 2 Rooms Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,4 Toilets +Executive Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,6 baths,5 Toilets +Brand New 5bedroom Detached Duplex + Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Standard Miniflat,Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,1 beds, baths, Toilets +Very Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Hitech Estate Beside Lagos Business School Lekki Phase 1 Lekki Lagos,₦,"40,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House With A Beautiful Neighbourhood For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Apartment With Swimming Pool And Private Elevator,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets +Serviced 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +10000 Approximately Joint Venture Land,Animashaun Drive Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Tastefully Furnished 2 Bedroom Apartment With Luxury Facilities,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +1 Bedroom Apartment,Lekki Ikota Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets +New Luxury 5bedroom Detached Duplex With Bq Swimming Pool,Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,7 baths,7 Toilets +A Standard 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex With A Beautiful Ambience For Sale In Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Superb Elegantly Built 5 Bedrooms Duplex Home Lekki 1,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Standard 4 Bedroom Duplex, Ilasan Lekki Lagos,₦,"80,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +Specious 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +Beautiful Serviced 2 & 3 Bedrooms Fully Serviced Apartments,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets +New And Luxurious 4 Bedroom House,By Pinnacle Station Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0, beds, baths, Toilets +Luxury 4 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"106,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 2 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4bedroom Semi Detached With Bq,Orchid Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,7 Toilets +Luxury Serviced Fully Finished 2 Bedroom Apartment,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +New Luxury 5bedroom Fully Detached Duplex With Bq,Idado Lekki Idado Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets +Brand New 5 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex,Lekki 2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Standard 5bedroom Semi Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Detached Duplex With Bq @ Lekki,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,2,3 Bedroom Contemporary Apartment",Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,3 beds,4 baths,4 Toilets +Massive 2 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Flat,Pinnock Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex At Lekki Phase 1 With Governors Consent In An Estate,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +A 3 Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New High Toned 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikate Elegunshi Ikate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached House With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets +"New 3bedrooms , 2bedrooms And One Bedrooms Flats",Orchid Chevron Lekki Lagos,₦,"34,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 2 Bedrooms Apartment,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets +A Fully Detached 5bedroom Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Luxury 4bedroom Terrace Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat, Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +"1,000sqms Land",Twin Lakes Estate Chevron Lekki Lagos,₦,"166,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5bedroom Duplex + Bq,Off Kusenla Road Inside A Mini Estate Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Beautiful 4 Bedrooms Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Detached House,Off Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +1 Bedroom Mini Flat,Idado Lekki Idado Lekki Lagos,₦,"35,000,000",0,1,1,1 beds,3 baths,2 Toilets +Nice Semi Detached 4bedrooms Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +One Bedroom Studio Apartment,Mijl Residences Ikate Lekki Lagos,₦,"30,000,000/day",0,1,0,1 beds,1 baths,1 Toilets +Brand New 4 Bedroom Terrance Duplex With One Room Bq, Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Executive 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,6 baths,6 Toilets +100 Plots Of Land,Victoria Garden City Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +New Spacious 5 & 4 Bedroom Fully Detached Duplex Plus A Room Bq Each,Chevy Veiw Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Blocks Of Luxury Flat,Chevy View Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,134sqms Land For Sale In Ayo Adebanjo Close, Lekki",Ayo Adebanjo Close Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +"Top Notch Detailed Fully Serviced 4bedroom Terrace In Agungi, Lekki.",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Built 4 Bedroom Detached Duplex House With A Room Boys Quarters.,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"71,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Semi Detached,Alpha Estate Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fabulous 2bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Self Serviced 4 Bedroom Terrace Plus Bq,Nicon Town Estate . Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 And 3 Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Apartment,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,6 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Detached House With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Properties, Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 4bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +New Luxury Executive 5bedroom Fully Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,7 baths,7 Toilets +Brand New 3 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxurious 5 Bedroom Detached Duplex With A Cinema + Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Luxury House,Off Eletu Road Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Fantastic 5bedroom Duplex,Silver Spring Estate Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Swimming Pool,Ikota Gra Ikota Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Waterfront 5 Bedroom Fully Detached Duplex,Serene Environment Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 4bedroom Semi Detached Duplex,Nice Environment Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Modern 4 Bedroom Condominiums Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Standard 5bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,A Prime Estate In Osapa Osapa London Lekki Lagos,₦,"530,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New Commercial 100sqm Shop Space, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Land On 3,386sqms", Ikate Lekki Lagos,₦,"847,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land On 450sqms, Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Standard 3bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +1 & 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets +Brand New 4bedroom Terraced House,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +A 4 Bedroom Semi Detached House,A Very Nice Environment Ologolo Lekki Lagos,₦,"4,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,5 baths,6 Toilets +1350sqms Land, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Built 4 Bedroom Duplex House With A Room Boys Quarters At Lekki,Lekki Phase 2 Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq At Lekki,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Splendid Apartments,Idado Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +Well Built And Spacious 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Brand New 4 Units 5 Bedroom Semi Detached Duplex Plus A Room Bq,and An Ample Parking Space","Lekki Phase 1,right Side Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"55,000,000",0,1,1,2 beds,4 baths,4 Toilets +4plots Of Land,Orchid Road Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikate Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Duplex With A Bq,Off Eletu Road Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,7 baths,7 Toilets +"4 Bedroom Semi Detached With 1room Bq,",Richmond Gate Estate Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Z Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Ochid Hotel Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Furnished 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Furnished 5 Bedroom Detached House With A Private Pool And Gym,Ikate Lekki Lagos,₦,"600,000,000",0,0,1,5 beds,5 baths,6 Toilets +Clean Hotel Of 59 Rooms,Agungi Ajah Lagos Agungi Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat Within A Secured Estate,Megamound Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Abijo Gra Lekki Lagos,₦,"21,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 5bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,7 baths,7 Toilets +Brand New 4bedrooms Detached House With A Bq,Off Awkuzu Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dunvale Court V: 3 Bedroom Terrace,Orchid Hotel Road Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,4 baths,4 Toilets +New Luxury Executive 5bedroom Detached Mansion With Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,1,5 beds,7 baths,7 Toilets +Massive Ground Floor Of 30sqm Shop Space,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +Stunning Contemporary 5 Bed Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Spaciously Built Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Plots Of Land At Ocean Breeze Estate,Ologolo Ologolo Lekki Lagos,₦,"70,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedrooms Terraces, Semi & Fully Detached Duplexes With Bqs",2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +100 Plots Of Land,Vgc Lekki Lagos,₦,"6,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Fully 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Amazing Commercial Property,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Decently Built 4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale In Lekki Right.,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Top Notch Brand New 5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Duplex,Lekki Country Lekki Lagos,₦,"205,000,000",0,1,1,5 beds,7 baths,7 Toilets +New Automated Unconventional 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built Luxury 3 Bedroom Flats With Bq + 24hrs Powered,"Atlantis 2, Ologolo Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +For Sale 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets +Beautifully Built And Furnished 2 Bed Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Duplex With Bq, Oral Estate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached With Bq,Orchid Rd Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Contemporary Fully Detached Duplex + Bq,Lekki County Lekki Lagos Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Designed 4 Bedroom Fully Detached Duplex With Pool,Lekki County Homes Ikota Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,7 baths,6 Toilets +Decently Finished 2bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distressed 4bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +New 4bedeoom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Megamond Estate Ikota Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4bedrooms Semi Detached Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex And 2 Units Of 3 Bedroom Semi Detached Duplexes With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Pool,Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Semi Detached Duplex For Sale In Chevron, Off Orchid",Off Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedroom Terrace Duplex,Creek Avenue Court Jakande Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House For Sale In Orchid,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Half Plot Of Land Measuring 328sqm,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 3 Bedroom Apartments With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +New Luxury 5bedroom Detached With Swimming Pool And Cinema,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,1,5 beds,7 baths,7 Toilets +A Standard 4bedroom Duplex + 2bedroom(2),Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,0 Toilets +New. 2bedroom Flat,Orchid Rd Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,1,0,2 beds,2 baths,2 Toilets +3 Bedroom Terrace Duplex,Agungi Ajiran Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Dryland Measuring 1200sqm At Itedo Market Off Freedom Way Lekki Ph1,Itedo Market Off Freedom Way Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets +Spacious 3br,Off Gbamgbala Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Serviced Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Chevron Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Vacant Plot Of 3,500sqms For Sale In Lekki Epe Expressway",Lekki Expressway Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flats + Bq,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 2bedroom Flat. Good For Shortlet,Located Inside An Estate Off Kusenla Road Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Lovely 4bedroom Bungalow @ Lekki,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 5 Bedroom Detached House In A Gated Community,Awoyaya Area Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Well Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,"Lekki, Lagos Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Duplex,Idado Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Super Spacious 4 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets +New Luxury 2 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,1,2 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Silver Crest Estate Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Luxury 5 Bedroom Fully Detached Duplex For Sale In Osapa London , Lekki",Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Terrace Duplex For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Luxury And Spacious Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,4 Toilets +For Sale 1000sqm Of Land At Victory Park Estate Jakande Lekki Lagos,Jakande Lekki Lagos,₦,"175,000,000/sqm",0,0,0, beds, baths, Toilets +Tastefully Finished 4bedroom Semi Detached Duplex Plus Bq,Prime Water Garden Estate Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Idado Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex With Bq,Dozek Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Serviced Plot Of Land Measuring 805sqm With Governors Consent,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 5bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,7 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House For Sale At Lekki,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Waterfront Piece Of Land With 2000sqm Of Size,Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Brand New Spacious 2 Bedrooms Flat,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Furnished Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Contemporary House,Pinnock Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With One Room Bq For Sale In Pinnock Estate,Pinnock Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 6 Bedroom Fully Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,6 beds,6 baths,7 Toilets +2bedroom Luxury Penhouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Terrace Duplex For Rent In Lekki County Homes Ikota Lagos,Ikota Lekki Lagos,₦,"65,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Sleekly Built Contemporary 5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace,S Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Detached Duplex In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Northern Foreshore Chevron Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lavishly Finished Contemporary 5 Bedrooms Fully Detached Duplex With Pool In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 6 Bedroom Terrace Duplex,Off Eletu Bamidele Osapa London Lekki Lagos,₦,"76,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale 500sqm Of Land,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 2 Units Of Fully Detached Duplex With A Clean Estate,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 2 Bedroom Bq In A Close,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +Gorgeous Superb 5 Bedroom Detached Duplex,E Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,In A Prime Estate In Osapa London Osapa London Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 3 Bedrooms Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets +Executive 4bedroom Duplex With Bq,Lekki Phase 1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,6 baths,6 Toilets +32 Units Of Luxury Serviced 2 Bedroom Flats,Off Ochid Hotel Road Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +New Executive 4bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Z Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Town House,Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets +Beautifully Built 4 Bedroom Terrace Duplex For Sale In Victoria Island.,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Pent House,Z Ikate Lekki Lagos,₦,"85,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Semi Detached House,Megamound Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Units Of 2 And 3 Bedroom Apartments With Bq,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New 5 Detached Duplex,E Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +New Luxury 4bedroom Fully Detached Duplex With Bq,Vgc Vgc Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,6 baths,6 Toilets +Two Bedroom Apartment In Lekki,"Ogombo Road, Abraham Adesanya Lekki Lagos",₦,"38,500,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Design Built 5bedrooms Fully Detached Duplex In Ikota Estate,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,6 baths,6 Toilets +Contemporary 5 Bedrooms Fully Detached With Pool,Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets +Serviced 4 Bedroom Terraced Duplex House,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Prime Plot Of Land Measuring 1,147sqms For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +4000 Sqm Of Land,"Province Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex Mansion,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With Bq,Lekki Phase 1 Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,3 beds,5 baths,4 Toilets +Luxury 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets +Mini Flat,Vgc Vgc Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House With One Room Bq For Sale In Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"32,000,000",0,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex For Sale In Orchid Road Lekki 2nd Toll Gate,Orchid Road Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Modern Fully Detached 5 Bedroom Duplex With Bq,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Brand New 10 Units 4 Bedroom Semi Detached Duplex Plus A Room Bq,and An Ample Parking Space And The Title Of The Property Is Governors Consent","Ikota,lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Buy 2 Plots Of Land At Grandeur Peninsula Estate,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"9,500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Massive 2 Bedroom Flat,Ikate Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached House, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"For Sale!!! An Executive Brand Newly Built Ensuites Modern Luxury Serviced 4bd Terrace Duplex @ By Orchid Road, Lekki, Lagos.",Orchid Road Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront 12000sqm Land In The Heart Of Lekki Ph1,Lekki Ph1 Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4br Duplex,Cowrie Creek Lng Spa Road Nicon Town Lekki Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +"4 Bedroom Terrace Duplex With Swimming Pool, Gym, Football Cut",By 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4bedrooms Semi Detached Duplex With Bq In Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Super Spacious 5 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Beautiful Ambience, Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Superbly Built 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex For Sale At Chevron Alternative Route,Chevron Alternative Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3br,Off Gmabgala Street Ikate Lekki Lagos,₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With A Pool,Osapa London Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely Off Plan 5bedroom Detached &4bedoom,West Bridge Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0, beds, baths, Toilets +Luxury New 5bedroom Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"125,000,000,000",0,1,1,5 beds,7 baths,7 Toilets +Furnished 5 Bedroom Detached Duplex With A Bq And Swimming Pool,Lekki Phase 1 Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +Gorgeous 5bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +2550sqm Of Land (4 Plots) At Orchid Road Directly Facing Omega One Plaza Lekki With C Of O,Orchid Rd Lekki Lagos Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Detached House With Beautiful Furniture,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +Astonishing 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +"7 Bedroom Fully Detached Mansion On 1,000sqm In A Lovely Estate","Nicon Town Estate, Lekki, Lagos. Nicon Town Lekki Lagos",₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets +Brand New And Fully Serviced 4 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets +Well Finished 5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Land At Orchid Rd,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Semi Detached Duplex.,A Serene Environment. Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Stunning Super Luxury 5 Bed Fully Detached Duplex With Pool,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase1.,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 5bedrroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace,Abiola Court Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,White Oak Estate Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +Finished 5bedrooms Detached Duplex With S/:pool In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,0,5 beds,5 baths,5 Toilets +Executive 5bedroom Detached Duplex On 500sqm Land,Chevron Toll Gate Chevron Lekki Lagos,₦,"220,000,000",0,1,1, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets +New Executive Luxury 4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New Nicely Built 4bedrooms Detached Duplex Ikate,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Luxury 5 Bedroom Fully Detached Duplex With A Bq And Penthouse,Nice Environment Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House With A Room Staff Quarter,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex With 2 Rooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +Massive 5bedroom Duplex+ Bq,In A Very Secure Neighborhood Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 1 Bedroom Mini Flat,S Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +Affordable 2 Bedroom Apartment With Flexible Payment Plan,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,"Chevy View Estate, Chevron, Lekki Chevron Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex.,Nice Environment Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Fully Detached House With 2 Room Boys Quarters,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,6 baths,7 Toilets +4 Plots Of Land,Ilasan Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"70,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +Lovely 5bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex In A Serene Secured Estate Environment,Lekki Phase 1 Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Designed 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +Massive 5bedroom Duplex With Bq + Swimming Pool,Located Inside Ikota G R A Estate Behind Megachicken Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Automated Unconventional 5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 2 Bedrooms Massonniatte Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex Selling At Offplan With A Flexible Payment Plan,By 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Luxury 5bedroom Detached Duplex Off Admiralty Way,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,5 beds,7 baths,7 Toilets +For Sale 5 Bedroom Fully Detached Duplex With Swimming Pool,Megamond Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Contemporary Designed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 7 Bedrooms Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",1,1,0,7 beds,8 baths,8 Toilets +Massive 5bedroom Duplex Fully Furnished + Pool Etc..,Located At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached House + 2 Rooms Bq,"Nicon Town Estate, Lagos. Nicon Town Lekki Lagos",₦,"617,000,000",0,0,0,6 beds,6 baths,7 Toilets +Contemporary Designed 5 Bedroom Detached Duplex With Swimming Pool And Gym,Ologolo Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Home With Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +1000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Llagbo Oriyanrin Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Good Investment 2 Bedroom Apartment,Vgc Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Buena Vista Estate, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,"Orchid Road, Chevron Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace,"Orchid Road, Chevron Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Newly Built 4bedroom Terrace Duplex,"Lavender Garden Phase 1, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Furnished 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Lekki 1 By Eff Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached House,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Vgc Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,3 Toilets +1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets +Nicely Built 2 Bedroom Apartment,Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets +4bedroom Terrace,Tulips Heaven Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Instant Land Allocation,Opposite New Lagos Airport By Alaro City Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment Fully Finished,Chevron Toll Gate By Orchid Road Lekki Lagos Chevron Lekki Lagos,₦,"29,000,000/day",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Semi Detached Duplex,"Lekki 2nd Toll Gate, Lagos Nigeria. Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 5 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,"Gbamgbala Road, Estate Ikate Lekki Lagos",₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Fully Detached,Meridian Boulevard Estate Lekki Lagos,₦,"79,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"67,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom House,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"56,500,000",0,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex + Bq,Meridian Boulevard Estate Lekki Lagos,₦,"51,500,000",0,1,0,3 beds,3 baths,3 Toilets +Land,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Meridian Boulevard Estate Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,3 Toilets +Fully Finished 4 Bedroom Terrace Duplex,Lavender Gardens Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Furnished Flat,"Off Christ Avenue, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,0,1,2 beds,2 baths,3 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Chevron By Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000/day",0,1,0,2 beds,2 baths,3 Toilets +Plots Of Lands,Lekki Epe Express Way Chevron Lekki Lagos,₦,"115,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Flat,Orchid Road By Eleganza Lekki Lagos Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Pinnock Estate Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets +Newly 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,4 Toilets +Newly Built 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets +Elegant 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Completed 4 Bedroom Semi Detached & 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Lovely 2 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Apartment & Maisonette With 2 Rooms Bq,Lekki Lagos,$,"2,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Lovely 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +This Lovely Contemporary 5 Bedroom Fully Detached Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Terrace Duplexes,White Oak Estate By Jakande Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Lekki Lagos,₦,"320,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,4 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Apartment,Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"1,000,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"220,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached And 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Lovely 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Three (3) Units Of Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +This Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Jakande Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Spacious, Exquisitely Built 3 Bedroom Flat",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Carcass Apartment,Ikate Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Furnished 4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Best Priced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Vgc Lekki Lagos,₦,"203,000,000",1,1,0,3 beds,3 baths,4 Toilets +Four (4) Units Of Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Vgc Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Luxury Fully Serviced 3 Bedroom Apartment,Secound Tollgate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,1,2 beds,2 baths,3 Toilets +Luxurious 3 Bedroom With Penthouse,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,3 baths,4 Toilets +Luxurious 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,1,1 beds,1 baths,2 Toilets +4bedrooms Apartment With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Igbo Efon Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Estate Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Semi Detached 4 Bedroom Flat,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +"2,3,&4 Bedroom Maisonette + Bq","Lekki,off Freedom Way Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Megamound Estate Ikota Lekki Lagos,₦,"38,000,000/sqm",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex House,Ologolo Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +3545sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"210,000/sqm",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex,Eleganza Ikota Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4bedroom Duplex With A Bq In A Secured Estate,Orchid Hotel Road Lekki By 2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Furnished And Serviced 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,3 beds,4 baths,5 Toilets +Newly Built 1bedroom And Parlor Fully Furnished,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Home With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +C Of O,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace With Roof Top Space In Lekki Phase 1,Off Admirality Road Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex,Applewood Estate Vgc Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +C Of O,"Orchid Hotel Road, By Second Toll Gate Lekki Oral Estate Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Lekki Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex With Bq,Platinum Estate Nicon Town Lekki Lagos,₦,"150,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets +"Prime Land On 400 Square Meter At Off Orchid Road, Lekki",Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,0,1, beds, baths, Toilets +Beautifully Built 5 Bedroom House In A Serene And Gated Estate,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +"Peak Estate Phase 4, Bogije",Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With An Open Terrace,2nd Tollgate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New Luxury 3 Units Of 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Home With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Flat With Bq,Prime Water Garden Ikate Lekki Lagos,₦,"48,000,000/year",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Apartments,"Nicon Town Road Lekki, Nicon Town Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraces In Lekki Lagos,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Bedroom Mini Flat,Lekki Lagos Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Detached Duplex,Lekki County Estates Lekki Lagos,₦,"185,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 2 Bedroom Apartment In Lekki,Ikate Lekki Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets +2bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds, baths, Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Orange Island,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Apartment (off Plan),Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 5bedroom Flat,Ikota Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Service 4bedroom Semi Detached Duplex With Bq And Fitted Kitchen,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex In A Serene Neighborhood,Agungi Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Blocks Of Flat,Estate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Fully Detached Duplex 4bedrooms With Boys Quarter,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Furnished Serviced 3 Bedroom Bungalow,"Lekki 2nd Toll Gate, Orchid Road, Lekki Chevron Lekki Lagos",₦,"35,000,000",1,0,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Home,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Fully Furnished 4 Bedroom Semi Detached Duplex With A Room Bq, And 30kva Generator",Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Deluxe Semi Detached 4 Bedrooms Duplex With Boys Quarter,Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced Newly Built 2 Bedroom Apartment,Lekki Lagos Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New & Excellently Finished 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,"Creek Avenue Court Phase 2, Close To 2nd Tollgate. Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Platinum Way Jakande Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Pacific View Extension,"Isiki Ode Omi, Ibeju Lekki, Lagos Lekki Lagos",₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1030sqm,Seagate Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Off Jakande Lekki Jakande Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Built 5bedroom Fully Detached Duplex,Estate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plaza,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Bareland Measuring 4,945sqm",Ebeano Supermarket Ologolo Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartments,Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Pool,Ikota Lekki Lagos,₦,"209,000,000",1,0,0,5 beds,5 baths,5 Toilets +Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terraces Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Build 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Apartments At Hockley Millennialtown,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 And 3 Bedroom Luxury Maisonette,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Off Plan Of 2, 3, 4 Bedroom And Terraces",Opposite New Horizon Court Estate Ikate Lekki Lagos,₦,"47,000,000/sqm",1,1,1,2 beds,3 baths,3 Toilets +32 Units Of 2 Bedroom Fully Serviced Flat,Orchid Road Lekki Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +1800sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Luxury 1 2 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terraces Duplex With Bq,Orchid Road Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Service 4bedroom Terrace Duplex,"Water View, Lekki Phase 1 Lekki Lagos",₦,"165,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 6 Units Furnished & Serviced 5 Bedroom Fully Detached Houses,Beside Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"365,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Home,Ched Home For Sale?? Location ??off Orchid Road By Lekki 2nd Toll Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex,Abijo Gra Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"190,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Creek Avenue Court Phase 2, Ikoya, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,2 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"126,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Magnificent, 5 Bedroom Fully Detached Duplex",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +Elegant 4 Bedroom Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Bq In Lekki,Lekki Lagos Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Detached House,Ikota Gra Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment (mini Flat),Lekki Chevron Lekki Lagos,₦,"28,000,000",1,1,0,1 beds,1 baths,2 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartments,Lekki Lagos Chevron Lekki Lagos,₦,"43,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached & Terraced Duplex,"Dianke Terraces, Near Lekki Conservation Nature Park, Lagos, Chevron Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detachedduplex,Lekki County Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1,2,3,4bedroom Apartments",Chevron Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraces,Ikota Villa Estate Axis Ikota Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets +Available Land,Ilasan Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Penthouse With Furnitures,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +"A Bareland Measuring 2,400sqm",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,"Orchid, Lekki Lekki Lagos",₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,1 Toilets +"1 Bedroom, Fully Functional Flats","Off Freedom Way,lekki Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +Super Standard 3bedroom,Oral Estate Oral Estate Lekki Lagos,₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Dupkex,Lekki Lagos Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached House,Horizon Ikate Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Home With A Bq,Orchid Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +1246sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Flat,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Fully Serviced,Spar Road Ikate Lekki Lagos,₦,"45,000,000",1,0,1,2 beds,2 baths,2 Toilets +Lovely 4 Bedroom Duplex,Orchid Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Apartment With A Bq,Orchid Hotel Road Lekki By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Furnished 3bedroom Flat,Prime Water Garden 1 Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Atheistically 4 Bedroom Semi Detached Duplex,Estate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Off Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Estate Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Bareland Of 13000sqm,Aling Lekki Epe Expressway Lagos Lekki Phase 2 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel (2650sqm Covered Area),Ologolo Ologolo Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Catholic Church Axis Ologolo Lekki Lagos,₦,"172,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Massive 4 Bedroom Terrace Duplex With Swimming Pool,"Off Ologolo Road, Before Agungi, Lekki Lagos Ologolo Lekki Lagos",₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets +Two Units Of 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Lekki Lagos Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Home With A Bq For Sale?,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"50 Sqms Offices For Commercial Use Off Lekki Expresss Way, Ikate,",Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Terraced Duplex,Oral Estate Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets +Ongoing 2 Bedroom Terrace,Orchid Road Ikota Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 & 3 Bedroom Terrace,Lekki Epe Expressway Beside Fara Park Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Detached Duplex,Idado Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Automated 6 Bedroom Pent House Duplex,Osapa London Lekki Lagos,₦,"750,000,000",1,1,1,6 beds,6 baths,7 Toilets +Newly Built Water Front 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Comfort,classy & Luxury Semi Finished And Finished 3,4 & 5 Bedroom Duplex Terrace","Atican Beach View Estate, Okun Ajah Lekki Phase 2 Scheme Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +2 Bedroom Apartment For Sale?,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Available Land,Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace,Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Chris Akinro Close Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached House,Second Tollgate Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Shop,Jakande Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Available Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +500 Sqm Of Land,Pinnock Estate Jakande Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached With A Bq,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Built 4 Bedroom Full Detached Duplex With Governors Consent,Chevron Axis Chevron Lekki Lagos,₦,"77,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex,Awkuzu Street Lekki Phase 1 Lekki Lagos,₦,"480,000,000/sqm",0,0,1,5 beds,5 baths,6 Toilets +700sqm Of Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +"1, 2 & 3 Bedroom Apartment","2nd Toll Gate, Lekki, Lagos Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Available House,Orchid Hotel Road Lekki By 2nd Toll Gate In A Secured Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Dunvale Court V Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment,Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds, baths, Toilets +A Massive Fully Detached 5 Bedroom Duplex,"Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"250,000,000",1,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Edifice,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex In A Serviced Estate,2nd Tollgate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Nicely Finished 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Five Bedroom Fully Detached House,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"143,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex + Bq In A Well Secured Estate,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment + Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Exclusive For Your Comfort In Lekki This Is A 4 Bedroom Fully Detached Duplex With Bq,2bd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached With Bq,Ayogori Street Ikate Elegushi Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,"Lekki Phase 1, Elf Bustop, Besode City Lorge Hotel Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets +2bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets +Fully Furnished 4bedroom Duplex.,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,0 beds,4 baths,5 Toilets +Mixed Use Land For Sale In Lekki Phase 1,Off Omorine Johnson Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +Residential Land For Sale At Ikota Gra,Ikota Gra Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Land,Abijo Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,"Ikota Gra, Ikota Shopping Complex, Mega Chicken, Noveral Mall, Etc Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale Of An Old Residential Mini Estate In A Corner Piece,Victoria Garden City (vgc) Ajah Lekki Lagos. Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +10 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,$,"7,000,000",0,0,0,10 beds,10 baths,10 Toilets +1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +3 Bedroom Apartment,"Elf Bustop, Off City Lodge, Lekki Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Majestically Finished 5 Bedroom Detached House,Alternative Route Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,7 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Bedroom Terrace & 4 Bedroom Duplexes... Emcel Court... Orchid ... Lekki,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +Switchless Smart 4bedroom Detached,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +1 Bedroom Self Contain 2 Units.,"Osapa, Lekki Osapa London Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Pinnock Estate , Lekki Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice And Tastefully Finished Luxury 3 Bedroom Flat With A Spacious Bq,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Home,Second Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Shops,Ikota Shopping Complex Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plaza,Igbo Efon Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Buit Luxury And Tastefully Finish 5bedroom Duplex In Osapa London Lekki Lagos,Cozy And Secure Estate Shoprite Road Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,7 baths,7 Toilets +4bedroom Town House,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +840 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Off Agungi Ajiran Road, Behind Dominion Pizza Agungi Lekki Lagos",₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ologolo Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 2 Bedroom Apartment With 1 Maid Room,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Awesome 5 Bedroom Fully Automated Luxury Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale!,Ikate Lekki Lagos,₦,"108,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Ikate, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex At Orchid Lekki,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq,Orichad Road 2nd Toll Gate Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"183,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +The Northgate Estate,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq ( Off Plan),Vgc Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale!!!,Lekki County Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Land Buy And Build,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached For Sale!!!,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Plots Of Sand Filled Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Terrace Duplex,Kushenla Road Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +Two Bedroom Apartment,White House Road Osapa London Lekki Lagos,₦,"45,000,000",1,0,1,2 beds,2 baths,3 Toilets +5bedroom Terrace Duplex With Boys Quarter,Before Second Toll Gate Idado Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Terrace Duplex + 1 Room Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +Newly Built5 Bedroom Fully Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Elegantly Built 4bedroom Terrace Duplex With A Room Bq,Orchid Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,6 Toilets +40 Hectres Of Land,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Victory Star Court 2 Is Located On Ikota Gra, Lekki, Lagos Ikota Lekki Lagos",₦,"58,000,000",0,1,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 2 & 3 Bedroom Maisonette,Ambiance Heights Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cornerpiece Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2bedroom Flat,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Executive Flat & A Bq,Ikate Elegushi Street Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +"4, 5 Bedroom Fully Detached Duplex",Chevron Chevron Lekki Lagos,₦,"130,000,000/day",0,1,0,5 beds,6 baths,6 Toilets +650 Sqm Of Bareland In A Nice Location,Orange Island Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,1 beds, baths, Toilets +Lakeview 5 Bedrooms Fully Detached Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Tastefully Finished Standard 5bedroom Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached,"Ajah, Lagos Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Standard 3 Bedroom Apartment With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"348,000,000",0,1,0,7 beds,7 baths,8 Toilets +2 Bedroom Flats,"Ikate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Plot Of Land Measuring 1,300 And Fronting Unto 2 Roads","Along Alpha Beach Road, New Road, Igbo Efon Igbo Efon Lekki Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Luxury 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Bq,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fence And Gated Bareland Measuring 3455sqm,"Cbd Area, Off Imax Cinema/ Durosinmi Etti Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"830,000,000",0,0,0, beds, baths, Toilets +Camberwall Advantage 4.... 2 Bedroom Apartment....lekki 1...... Off Freedom Way.....,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Plot Of Land 648sqm In A Good Location,Orchid Road Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,1 beds,0 baths,0 Toilets +"Tastefully Furnished 4 Bedroom Semi Detached Duplex, All Rooms Ensuite In A Serene Environment",Angels Court Estate Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +Land At Chevron Alternative,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,4 beds, baths, Toilets +3 Bedroom Terrace Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Units Of 2 Bedroom Apartments,"Residential Gated Estate, Off Nike Art Gallery Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Executive Cosy And Affordable 4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Serviced 2bed Room Flat,Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +336sqm Of Land In A Good Location,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"10,000sqm Of Land &hampton Harbor Freedom Way, Lekki Phase1",Lekki Phase 1 Lekki Lagos,₦,"130,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Duplex + Bq,Chevy View Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Buit Luxury 2 Bedroom Flat,Cozy And Secure Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Bakare Estate Agungi Lekki Lagos Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +"De Castle Max Apartment, 4 Bedroom Fully Detached Castle Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex Virgin House,Ikota Ikota Lekki Lagos,₦,"58,000,000/day",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace,Off Orchid Road Opposite Chevron Lekki Lagos Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale At Ilasan,Ilasan Lekki Lagos,₦,"180,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale Going For 250m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Exquisite 4 Bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,"Ikate Elegushi Street, Lekki Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"25,000,000/day",0,1,0,1 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,The Heart Of Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Home,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Semi Detached Four Bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,5 Toilets +Quarter Plot Of Land,Lafiaji Opposite Chevron Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +Contemporary 2 Bedroom Flat With Fitted Open Space Kitchenette,Ikate Lekki Lagos,₦,"32,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Detached Duplex,"Ikate Salem, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4 Bedroom Semi Detached Duplex With Bq In Vella Homes, Ikota, Lekki","After Chevron Toll Gate, Ikota, Lekki Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,"Orchid Road, Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"189,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nice 5 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Spacious 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 3/4 Bedroom Terrace Duplexes,Vgc Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Terrace,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000/day",0,1,1,3 beds,3 baths,4 Toilets +Units Of 4 Bedroom Terrace Duplex,"Residential Gated Estate, Off Nike Art Gallery Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment & Bq,Orchid Road. Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful And Investment Prone Property Is Here. 8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000/day",1,0,0, beds, baths, Toilets +Fenced 860 Sqm Land,Nicon Town Axis Jakande Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Williams Onahh Chevy View Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Ikate Enyo Filling Station Side Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,7 baths,7 Toilets +Well Finished And New 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Modern & Contemporary Fully Furnished 5 Bedroom Fully Detached Duplex,"Pinnock Beach Estate, Lekki Lagos Lekki Lagos",₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +4bedroom Water View,Osapa London Lekki Lagos,₦,"61,000,000",0,1,0,4 beds, baths, Toilets +Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Executive 5br Duplex Behind Shoprite, Lekki",Cartogan Estate Jakande Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Sea View 5 Bedroom Duplex With Bq ,pool Etc",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,7 Toilets +Spacious 5 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Uncovering Perfection Of Prestige At Hampton, One Detail At A Time.","Palm Springs Road Behind Nicon Town, Ikate, Elegushi, Lagos. Ikate Lekki Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Flat,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"85,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Home,Vgc Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nice And Standard Newly Built Luxury 3bedroom Flat,"Serene, Secure And Cozy Estate Lekki Agungi Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +"De Castle Max Apartment, 4 Bedroom Terraced Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Contemporary 6bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built Luxury 4 Bedroom Semi Detached + Bq (signature Luxury Apartments),Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"De Castle Max Apartment, 4 Bedroom Semi Detached Castle Duplex + Bq",Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq.,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedroom Semi Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Finished 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets +Fantastically Finished 5bedrooms Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Furnished 4 Bed Rooms Semi Detached Duplex,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Furnished 2 Bed Rooms Apartment,Lekki County Homes Ikota Lekki Lagos,$,"105,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Terrace,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"53,000,000",1,1,0,3 beds,3 baths,4 Toilets +650sqm Of Land,Orange Island Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,1,0,8 beds,9 baths,8 Toilets +5bedroom Detached House,Chervy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex And A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Semi Detached Duplex With Bq,Located Between The Business Hub And Residential Serenity Of Abijo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Ultra Luxury Terrace Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Units Of 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,4 baths,5 Toilets +Newly Built 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Luxurious Terrace With Bq ( All En Suit,"Off Babatunde Anjous Drive (studio 24), Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built Two Bedroom Apartment,Agungi Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Duplex With Bq,Chisco Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets +Neat 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq In A Serene Mini Estate,Off Abraham Adesanya Estate Road Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Dry, Fenced And Gated Land",Beside Parktonian Hotel Ikate Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Home With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Chevron Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,6 baths,6 Toilets +Units Of 4 Bedroom Semi Detached Duplexes,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Maisonette,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,2 baths,2 Toilets +30 Units Of Terrace And 4 Units Of Semi Detached Duplex,Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"165,000,000",1,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +All Luxury Family Sized Duplex*,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +55 Rooms Functional Hotel,Off Lekki Epe Express Road Agungi Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Bq,John Okafor Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built, Spacious And Luxury 4 Bedroom Semi Detached Duplex",Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,"Osaki Osapa Street Roundabout, Lekki Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +New: Luxury 4 Bedroom Within A Private Neighborhood,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +"4 Bedroombedroom & 3 Bedroom Terrace Maisonette, Emcel Terraces, Ikate, Lekki",Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Fully Detached Five Bedroom Duplex With Bq 24hours Light And Security,Orchid Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds, baths, Toilets +Newly Buit Luxury Mini Flat With Guest Toilet,Cozy And Secure Estate Lekki Agungi Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,2 Toilets +Well Renovated Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"1,800,000",1,0,0,1 beds,1 baths,1 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000/day",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary Driveway 4bedroom Semi Detached House,Second Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5bedroom Duplex,Buena Vista Estate Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious Fully Detached Five Bedroom Duplex With Bq,Orchid Ikota Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury Finished 4 Bedrooms Fully Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Cornelius, Next Turn X Gate Chevy View Lekki Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace With Bq,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Land,By Femi Okunu Road Osapa London Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"20,000,000",1,1,0,1 beds,1 baths,2 Toilets +Four Bedroom Fully Detached Duplex For Sale,Chevey View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Block Containing 3 Units Of 3 Bedroom Terrace Duplexes With Clean Water, Prepaid Meter",Victoria Garden City Vgc Lekki Lagos,₦,"250,000,000",0,0,0,9 beds, baths, Toilets +"4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.","Creek Avenue Court Phase 2 Ikota, Lekki. Ikota Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets +"4 Bedroom Terrace Duplex For Sale At Lekki, Ikate","Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +Fenced 700 Sqm Land With Foundation,Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,0 beds,0 baths,0 Toilets +Spacious Fully Detached Five Bedroom Duplex With Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds, baths, Toilets +3 Bedroom Apartment,Z Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +20000 Sqm (2hectares) Of Land In A Private Estate Waterfront By Freedom Way Lekki Phase 1 Lagos Cofo / Half Can Be Sold,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury Built And Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex With Boysquarter,2nd Tollgate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Apartment,Romay Garden Estate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Standard 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,4 Toilets +3 Bedroom Duplex,"Osapa London, Exit Lane Lekki Osapa London Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Buy Landed Property With Guarantee And Comfort In Water Front Estate With C Of O,Lekki Palm City And Shares Boundary With Vgc Waterfront Lekki Phase 2 Lekki Lagos,₦,"35,000,000/day",1,0,0, beds, baths, Toilets +5 Bedroom Detached,Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartments,2 Mins Walk From Blenco Ikate Ikate Lekki Lagos,₦,"56,000,000",0,1,0,2 beds,2 baths,3 Toilets +Contemporary 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,2 Toilets +3 Bedroom Semi Detached Duplex +bq,Abijo Gra Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bed Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,0 baths,0 Toilets +2bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"39,000,000",0,1,0,0 beds,0 baths,0 Toilets +Serviced Brand New 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Swimming Pool,Bakare Estate Agungi Lekki Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets +Well Detailed 5bedroom S Fully Detached House With Pool,Osapa London Osapa London Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +608 Sqm Of Land,Ilasan’s Ikate Lekki Ilasan Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +Executive 4b/r Detached Duplex + Bq In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With 2 Bq,"Eletu Way, May Hill Osapa London. Lekki Osapa London Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedrooms Maisonette Duplex For Sale ( Camberwall Advantage),Close To Oba's Palace. Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Fully Serviced 3 Bedroom Luxury Apartment With Nice Fittings,Off.spg Road Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Beautiful And Elegantly Finished 4 Bedroom Fully Detached Mansion With Bq,"Victoria Gardens City, Off Lekki Epe Expressway, Lekki Ajah Lagos Vgc Lekki Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Besroom Filly Detached Duplex + Bq,Gra Ikota Lekki Lagos,₦,"92,000,000",1,1,0, beds, baths, Toilets +Lovely Contemporary Designed 4 Bedroom Detached, Ikate Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets +2bedrooms Penthouse Apartment,Behind Onike Art Gallery Ikate Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex With Bq,Off Jakande Jakande Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Luxury Apartments,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets +Tastefully Finished 4 Bed Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Home,"Ajah, Lagos Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated Lekki Luxury 5 Bedroom Full Detached Duplex With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,6 Toilets +Fully Serviced And Decently Spaced 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedroom Fully Detached House With Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Duplex,Ikate Elegushi Street Ikate Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Land,Olomowewe Community Lekki Lagos,₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace House,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"214,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Home,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New Luxurious Four Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex With Pool,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Phase2 Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,0 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Two Plots Of Land Available For Sale At The Back Of Vgc,Vgc Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Terrace,Off Orchid Road Opposite Chevron Lekki Lagos Lekki Lagos,₦,"58,000,000",0,1,0,3 beds,3 baths,4 Toilets +New Built 4bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home With A Pool,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Half Plot Of Land,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"25,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Terrace Duplex,Off Kushenla Road Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached House,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets +Newly Built 4bedrooms Terraced With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets +3bedroom Flat With Maid's Room,"Maiyegun, Ologolo Ologolo Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,"Nicon Town, Lekki, Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In Orchid Road Lekki Lagos State Nigeria,Livingspring Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms Fully Duplex With A Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land,Lakeview Estate Orchid Road Lekki Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Built Virgin Semi Detached 4 Befroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000/day",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Cornerpiece Land Measuring 930sqm,"Orange Island, Freedom Way, Lekki 1 Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Flat,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4bedroom Semi Detached,Osapa Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Semi Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Block Of 12 Units Mini Flats,Lekki Lagos,₦,"150,000,000",1,1,0,2 beds,2 baths,2 Toilets +A Plot Of Land,Ikate Lekki Lagos,₦,"196,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Four Bedroom Terraced House,Ikate Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Room Terraced Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,307sqm Residential Vacant Fenced Land",Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Inbuilt Bq,"Ikate,lekki, Lagos Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Link Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Well Finished 3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Furnished 5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,7 Toilets +Land,Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With Bq,2nd Tollgate Lekki Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxurious 5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +910 Sqms Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +1307.95sqm Parcel Of Land,"Near Petrocam Fuel Station, Elf Bus Stop Lekki Lagos",₦,"370,000,000",0,0,0, beds, baths, Toilets +Land,"Diamond Estate, Sangotedo Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Rooms Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dunvale Court V.......,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Well Furnished Semi Detached Shopping Mall,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,1,0 beds,0 baths,0 Toilets +Demolishable Commercial Building,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Home,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Urbane 4 Bedroom + 1 B.q Terrace Triplex,Awoyaya Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex (all Rooms Ensuite) With Bq,Gated And Secured Estate Off Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Duplex Available For Sale In Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Luxury Apartment,Off Petrocam Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,2 baths,3 Toilets +Nweky Built 4 Bedroom Fully Detached Duplex With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"80,000,000/day",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Standard 4 Bedroom Semi Detached Duplex With Bq,Secured Estate Ologolo Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land For Sale Along Orchid Road Lekki Lagos State Nigeria,70 Plots Of Land Along Orchid Road Lekki Chevron Lekki Lagos,₦,"17,000,000/sqm",0,0,0, beds, baths, Toilets +673.524sqm Of Land,Bakare Estate Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,0 baths,0 Toilets +A Dry Land Of 2700sqm,Chisco Ikate Lekki Lagos,₦,"750,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Bungalows,Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,5 baths,5 Toilets +A 5 Bedrooms Fully Detached Duplex With A Bq Cinema And Swimming Pool,Megamount Estate Lekki Ikota Lekki Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4bedroom Bedroom Terrace Duplex With Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Semi And Fully Detached. 4 Bedroom Duplex With A Room Bq, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,"Lekki Phase 2, Lekki, Lagos Osapa London Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Duplex Available In Lekki,Lekki Phase 2 Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace,"Salem, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brand New ,4 Bedroom Luxury Fully Detached Duplex With Bq",Chevron Chevron Lekki Lagos,₦,"105,000,000/year",0,1,0,4 beds,5 baths,4 Toilets +Newly Built Four Bedroom Duplex With A Boys Quaters,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace House,Orchid Road By Eleganzer Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 2bedroom Flat,Off Orchid Road Opposite Chevron Lekki Lagos Ikota Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets +Magnificent 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,0 baths,0 Toilets +900sqn Of Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Townhouse With Bq,Z Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Four Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Lekki Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace With Bq,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +700 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Acres Of Land For Sale At Ibeju Lekki By Free Trade Zone Going For 720m,Ibejju Lekku By Free Trade Zone Lekki Lagos,₦,"720,000,000",0,0,0, beds, baths, Toilets +Gracias Goshenite,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached+bq+swimming Pool,Ikota Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Z Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Home For Sale!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Going For 68m,"Lekki, Chevron Chevron Lekki Lagos",₦,"68,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq And Pool,Whitesands Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets +Spacious Semi Detached Four Bedroom Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,0 baths,0 Toilets +75m 4bedroom Semidetached Duplex +bq,Orchid Road Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex With A Pool, Pent House, And Fitted Air Conditioners For Sale!!!",Lekki County Homes Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +1 Plot Of Land At Orchid,Orchid Road Chevron Lekki Lagos,₦,"45,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"18,500,000",0,1,0,5 beds,5 baths,5 Toilets +700 Sqm Of Land,Igbokushu By Nicon Town. Lekki Nicon Town Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Opposite Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Bareland Measuring 1009sqm,"Nicon Town Estate,ikate Nicon Town Lekki Lagos",₦,"330,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Property,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Standard 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Ajayi Street Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"4,800,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Town House Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Home,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Swimming Pool For Sale,By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Suplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Dubai Creek Lekki Lagos,$,"480,000",1,0,0,2 beds,2 baths,3 Toilets +Exquisite 2 Bedroom & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Contemporary Detached Duplex,Ologolo Lekki Lagos,₦,"185,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,Dotun Street Chevy View Estate. Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Communal Pool,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +"4 Units Of 4 Bedrooms Terrace With Bq All Rooms Are Ensuite, Fitted Kitchen, Bathtub, Swimming Pool Etc",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Home,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Standard 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedrooms Terrace Available,Vgc Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Fairfield Apartments Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex For Distress Sale,Orchid Road By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Brand New And Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq And Modern Facilities,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Functioning Plaza,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2plots Of Land (1300sqm),Orchid Road Chevron Lekki Lagos,₦,"85,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +800sqm Of Land,Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Honey Dew Court Estate,Ikota Gra Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Terrace Duplex,De Castle Max Orchid Road By Chevron Lekki Lagos Chevron Lekki Lagos,₦,"55,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,"Sango Tedo, Ajah Lekki Lagos",₦,"29,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Second Toll Gate Lafiaji Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built Luxury Apartment,"Flourish Apartment And Terraces, Orchid Road Chevron Lekki Lagos",₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built Two Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Luxurious 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool And 1 Room Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex In Lekki 1 With Pool And Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,"Lekki Phase 2, Lekki, Lagos Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Prince Sam Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flats Ologolo Close To Dominos Pizza 35m,Dominos Pizza Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Fitted 5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5bedroom Detached House With A Room Bq All Rooms Are Ensuite, Fitted Kitchen, Bathtub, Swimming Pool, Wardrobes At Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevy View Roundabout Lekki Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Spacious 1 Bedroom Flat,Idado Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Home,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Available Land,Nicon Town Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Lekki, Chevron Drive Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex In A Well Secured Estate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Atlantic View Est 4 Bedroom Terrace With Optional 24hr Power Supply,Atalantic View Estate Alpha Beach Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Bq And Lovely Fittings,2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,"Ikate, Lekki, Salem Ikate Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Home,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 4 Bedroom Flat,Idado Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Neatly Designed And Tastefully Built 4 Bedroom Semi Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,2n Toll Gate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Waterfront 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Southern View Estate By 2nd Tollgate Behind Orchid Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Terrace Duplex,Marwa Elf Bus Stop Ikate Lekki Lagos,₦,"140,000,000",0,1,0, beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +3bedroom And 4bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +3 Bedroom Flat,"Lekki Scheme 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Contemporary House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +De Castle Max Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Furnished 2 Bedroom Flat,Lekky County Homes Ikota Lagos Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets +5 Bedroom + 2 Rooms Bq,Chevron Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Huge And Well Finished 9 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,9 beds,9 baths,10 Toilets +5bedroom Fully Detached Duplex With Staff Quarters And Swimming Pool,Palm City Estate Lekki Ajah Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,8 Toilets +Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Orchid Road 2nd Lekki Toll Gate Oral Estate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decently Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +Astonishingly Beautiful 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Terrence Duplex With One Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5bedroom Fully Detached,2nd Toll Gate Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +1bedroom Luxury Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,1 beds,1 baths,2 Toilets +Fully Serviced 2bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fantastically Built 5bedrooms Detached Duplex,Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,6 baths,7 Toilets +Beautifully Finished 4 Bedroom Terrace House,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Palatial 4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Four Bedroom Semi Detached House,Ikota Villa Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +Built Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Outstanding 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Finished 2 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,0 Toilets +2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"40,000,000",0,0,1,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Fully Serviced Room And Parlor Mini Flat,Lekki Gardens Chevron Lekki Lagos Chevron Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,1 baths,2 Toilets +2 Bedrooms Apartment,Ilasan Ilasan Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,"Lekki Phase 1, Elf Bustop, Besode City Lorge Hotel Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Executive Standard And Spacious 3 Bedroom Apartment With A Room Bq,Agungi Agungi Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,4 baths,5 Toilets +Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Event Center, Asking Price (1.2b)",Lekki Chevron Drive Lekki Lagos,₦,"1,200,000,000",0,0,1, beds, baths, Toilets +Brand New Finely Built Three Bedroom Apartment,Chisco Ikate Lekki Ikate Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ajayi Street Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,$,"315,000",1,1,0,4 beds,4 baths,5 Toilets +A Furnished 3bedroom Flat,Lekki Lagos,₦,"170,000,000",0,0,1,0 beds,0 baths,0 Toilets +Luxury 4bed Room Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Tollgate Lekki Lagos,₦,"170,000,000",1,0,0,5 beds,6 baths,7 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ologolo Town Ologolo Lekki Lagos,₦,"55,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +1 Unit 4 Bedroom Terrace Duplex,Victoria Crest Iv Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Alafin Street Igbo Efon Lekki Lagos,₦,"25,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedrooms Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Off Fola Osibo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,"Dynasty Residence 6, Orchid Road Oral Estate Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets +Fully Service 2bedroom,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Tastefully Finished 5 Bedroom Fully Detached Duplex With A Room Bq In A Secured Estate,Elegushi Ikate Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"82,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +Nicely Finished 3 Bedroom Flat, Ikate Lekki Lagos,₦,"47,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex.,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With 2 Bq,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built Standard 3bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Terrace,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom With 2 Living Rooms Plus One Room Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Units Of 5 Bedrooms With 2 Rooms Bq Executive Mansions,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Boys Quarter For Rent A Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000",0,0,0, beds, baths, Toilets +Newly Built Four Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 2 Bedroom Flat,Idado Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets +9000sqm Bare Dry Land,"Castle Rock Ave, Beside Circle Mall Osapa London Lekki Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Class Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000 Sqms Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Lekki 1 Right Side 5 Bedroom Detached Duplex With Indoor Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury Beach Front Serviced Plots,Maiyegun Road. Jakande Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,"Elf Bustop, Off City Lodge, Lekki Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +9600 Sqm Of Land,Victory Park Estata Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +1138sqm Of Land,Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Standard Half Plot Of Land In Ologolo Lekki Lagos,Nice Environment Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,"Ikate, Salem, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Duplex With Bq,Richmond Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Spacious Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Osapa London Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Studio Apartment,Ikate Lekki Lagos,₦,"32,800,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Elenu Way, Osapa Lekki Lagos Osapa London Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex,Pinockbeach Estate Lekki Lagos Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Demolishable Building Measuring 835sqm,"Fola Osibo, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Terrace In A Secured Location,By Nike Art Gallery Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished 5bedroom Fully Detached House,Agungi Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Lekki County, Ikota Lekki Phase 2 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,"Ikate, Lekki Ikate Lekki Lagos",₦,"155,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,0 baths,0 Toilets +"The Royal Terrace, Lekki",White Oak Estate Ologolo Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished And Furnished 4bedroom Terrace With Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,5 baths,6 Toilets +Newly Built And Contemporary 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Duplex,Yes Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully And Newly Built Contemporary 5 Bedroom (all Ensuite),Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Half Plot Of Residential Land Inside A Secured Estate At New Road,"Admiralty Homes Estate ,new Road Before Chevron Igbo Efon Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets +Brand New Serviced Luxury Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Nike Art Gallery Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Full Detached Duplex,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"57,000,000",0,1,0,2 beds,2 baths,3 Toilets +5000 Sqm Of Land,Spg Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Newly Built Two Bedroom Apartment,Ikate Lekki Lagos,₦,"64,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Smart Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom + 1 B.q Terrace Duplex,Awoyaya Lekki Lagos,₦,"42,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built 4bedroom Semidetached Duplex, In A Secured Estate","Maiyegun, Ologolo Ologolo Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semidetached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,8 baths,9 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,6 baths,7 Toilets +Lovely 5 Bedroom Duplex,Ilasan Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Numbers Of 3 Bedrooms Flats,Igbo Efon Gate Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets +4 Bedroom Massive Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Delightfully Structured And Finished 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"166,000,000",0,1,0,5 beds,5 baths,6 Toilets +6units Of Brand New 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,"Orji Victory Estate, Osapa London Lekki Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Fully Detached 5 Bedroom Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,0 baths,0 Toilets +Well Maintained 2 Bedroom Flat, Ikate Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace With Bq,"Lekki ,ikate Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Osapa London Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Nos Of 3 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +2300 Sqm Of Land,Elf Lekki Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Lovely 3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Massive Hotel On 7500sqm At Vjc Lekki,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4bedroom Terrace With Bq At Abiola Court Osapa All Rooms Are Ensuite, Fitted Kitchen, Wardrobes",Abiola Court Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Fully Furnished 3 Bedroom Flat With Swimming Pool,Megamound Estate Lekky County Homes Ikota Ikota Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Lekki County Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"56,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedroom Semi Detached Duplex With A Bq,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"82,500,000",1,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semidetached With Two Bq,Vgc Lekki Lagos,₦,"186,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Plot Of Land Measuring 708sqm,Lekki Phase 1 Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Fully Detached,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land Measuring 300sqm In A Fully Serviced Estate,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,500,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Orchid Road In An Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Ikate Right Ikate Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Detached Duplex,Idado Estate Lekki Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +815 Sqm Dry Land,Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Smart Dupex,Urban Prime Estate Lekki Phase 2 Lekki Lagos,₦,"69,800,000/sqm",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,4 beds,4 baths,6 Toilets +Massive 3.5 Acres Of Land,"Located Within Sugarland Estate, Before Victoria Garden City (vgc) By The Left Side Heading To Ajah, Lekki Lagos. Vgc Lekki Lagos",₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale In The Heart Of Lagos Island,"Abraham Adesanya Estate Road ,ogombo Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4bedroom Semi Detached Duplex With A Bq,Jakande Jakande Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,6 Toilets +Nice 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets +2 Bedroom Flats,"Ikate, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,5 baths,6 Toilets +Well Finished 3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,0 baths,0 Toilets +Tastefully Built Luxury Apartments Known As Flourish Appartment And Terraces,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Off Bisola Durosinmi Etti Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terraced With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 2bedroom Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"42,500,000",1,1,0,2 beds,3 baths,3 Toilets +Spacious Newly Built 3bbedroom Flat,Off Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached House With 2rooms Bq All Rooms Are Ensuite At Alpha Beach Road Opposite Chevy View Lekki,Alpha Beach Road Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Terrace House,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq, Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built Five Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets +3150 Sqm Of Land Fenced,Ikota Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Orichd Road Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With A Bq,"Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Beautifullybuilt 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex In A Serviced Estate,2nd Tollgate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,7 Toilets +5 Bed Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,$,"263,000",0,1,0,5 beds,5 baths,6 Toilets +Units Of 4 Bedroom Terrace Duplexes,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Automated Contemporary House,"Arcadia Grove Estate , Osapa, Lekki Osapa London Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Seagate Estate Off Spar Rd Elegushi Ikate Lekki Lagos,₦,"406,600,009",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2bedroom Apartment,Chevron Chevron Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Home,Orchid Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +700 Sqm Of Land,Ilasan Ikate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bed Rooms Detached Duplex With Bq,Idado Idado Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Land, Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Off Babatunde Anjous Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +12units Of 2 Bedroom And 2 Unit Of 4 Bedroom,Chevron Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraces Castle Duplex,"De Castle Max Is Located At Orchid Road, Lafiaji, Directly Opposite Cooplag Gardens Estate, Lekki Lagos Ikate Lekki Lagos",₦,"60,100,000",0,1,1,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment For Sale!!!,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"66,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Close To The Beach Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Sand Fields Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Mega Chicken Lekki Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"310,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Two Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"37,000,000",0,1,1,2 beds,2 baths,3 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Orchid Road Opposite Chevron Lekki Lagos,₦,"34,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,"Lekki, Ikate, Lagos Ikate Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bareland Measuring 800sqm 834sqm,"Cowrie Creek, Ikate, Lekki Ikate Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +A Prime Plot Of Land Measuring 650sqm,Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"78,000,000/day",1,1,0,4 beds,5 baths,5 Toilets +500 Sqm,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished And Lovely 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Victoria Crest Iv Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semidetached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment + Pool + Elevator,Lekki County Ikota Lekki Lagos,₦,"43,500,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Fully Detached Duplex With Boys Quaters,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Bedroom Flat For Sale Going For 65m At Lekki Scheme 1, Lekki","Lekki Scheme 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"6,500,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Secured Estate Chevron Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury Finished 4 Bedrooms Fully Detached Duplex With Bq.,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +9 Units Of 3 Bed Room Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished Well Maintained 5bedroom Terrace With Bq And Swimming Pool,Chevy View Chevron Lekki Lagos,₦,"40,000,000",1,0,1,5 beds,6 baths,7 Toilets +Luxury Four Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home For Sale!!!,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Fully Detached Five Bedroom Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +An Exquisitely Finished 1 Bedroom Apartment,Osapa London Lekki Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,1 Toilets +De Castle Max Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Home,"2nd Toll Gate, Lekki Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Lànd Facing Road.,"Pero Hotel, Ogombo Lekki Phase 2 Lekki Lagos",₦,"9,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex And A Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Carcass With A Bq,"Ajah, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisitely Finished 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,3 beds,0 baths,0 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex+ Bq,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With Bq,Morning Dew Court Ilasan Lekki Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +", 4 Bedroom Semi Detached Duplex",Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Exquisitely Finished 4 Bedroom Detached Duplex With Swimming Pool, Gym And Private Cinema And 1 Room Bq",Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ladipoe Latinwo Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +3bedroom Flat,Lekki Phas1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,2nd Tollgate Lekki Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Meadow Hall Road Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxury 4 Bedroom Detached House With Bq,Idado Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"42,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex In Ikate,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool & Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Oral Estate Oral Estate Lekki Lagos,₦,"123,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Duplex,Ayigor Street. Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Lekki Gardens Ajah Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets +5bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Located 50 Plots Of Bare Land,Chevron Drive Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Swimming Pool And Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Chevron Road Estate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Maintained 4bedroom Semi Detached With Bq,Lekki Garden Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxurious Four Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,1, beds, baths, Toilets +Atlantic Ville Estate, Vgc Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Duplex,Chevy View Extreme Lekki Roundabout Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Agungi Road Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace,Chevron Link Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,"Mega Chicken, Ikota Lekki Lagos Ikota Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,2 baths,2 Toilets +3 Bedroom Apartment,"Lekki, Elf Bustop Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious Decent 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +1 Bedroom Maisonette,"Osapa, Lekki Osapa London Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4bedroom Fully Detached Duplex,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,1,5 beds,0 baths,0 Toilets +2 Bedroom Flat,Kusenla Chisco Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,2 Toilets +Dry Land For Sale In Ologolo Lekki 375sqr For Cheap,Mini Estate In Ologolo Ologolo Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +"Luxury 5 Bedroom Fully Detached Duplex In Lekki 1 With Pool , Gym And Cinema",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,5 Toilets +A Neatly Finished 4bedrrom Semi Detached Duplex In An Estate Orchid,Orchid Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury Built 5 Bedroom Fully Detached Duplex For Sale,Orchid Road By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Land,Ologolo Lekki Lagos,₦,"50,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5bed Water Front Property Swimming Pool,automated Sky Roof Etc",Northernforshore Estate Chevron Lekki Lagos,₦,"300,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Lekki Lagos,₦,"61,000,000",0,1,0,4 beds,0 baths,0 Toilets +Four Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land Of 1,215sqm",Ologolo Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Three Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"31,000,000",1,1,0,3 beds,4 baths,4 Toilets +Elite Genesis Estate Shoprite Sangotedo Lagos Business School Sangotedo Lekki Phase 1 Lekki Lagos,Shoprite Sangotedo Lagos Business School Sangotedo Lekki Phase 1 Lekki Lagos,₦,"17,000,000",0,0,0, beds, baths, Toilets +Lovely Distress Sale 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"35,000,000",1,1,1,4 beds,5 baths,4 Toilets +Luxury 3 Bedroom Flat With Servant Quarters 40% Initial (off Plan),Nicon Town Lekki Lagos,₦,"59,500,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Tastefully Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dry Land Of 450sq.m Per Sqm With C Of O,Ikota Vlila Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Flat Apartment,Lekki County Ikota Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq Going 170m One Units Left,"Ikate, Lekki Ikate Lekki Lagos",₦,"170,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Duplex,Lekki Conservative Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1 Unit Of 4bedroom Terrace Off Admiralty Way, Lekki Phase 1. Asking Price: 140m (slightly Negotiable)",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +669 Sqms Of Land,Sea Breeze Estate Ologolo Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,"Oba Elegushi, Lekki Ikate Ilasan Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Phoenix Estate Abraham Adesanya,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Idado Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,6 Toilets +Exquisitely Finished 5bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets +Lovely 5 Bedroom Detached Duplex With 2bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Lekki Lagos,₦,"130,000,000/year",0,1,1,5 beds,5 baths, Toilets +Luxurious 4bedrooms Fully Furnished Terrace Duplex On 2floors,Abiola Court Chevron Alternative Route Lekki Lagos Chevron Lekki Lagos,₦,"115,000,000",1,0,1,4 beds,4 baths,5 Toilets +A Luxury Tastefully Finished 4 Bedroom Apartment..,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Class Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Duplex,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,2nd Tollgate Lekki Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets +2 Units Of 5 Bed Fully Detached With Two Bqs Each Fitted Kitchen Wardrobes In The Rooms All Rooms En Suite At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,0 baths,0 Toilets +6units Of Luxury 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nice And Standard Ready To Build Quarter Plot Of Land,"Serene, Secure And Cozy Estate Shoprite Road Osapa London Lekki Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Semi Detached,Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Terraced Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +1200sqm Of Land,Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Acre Of Land,Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Off Gbangbala Road Ikate Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom Duplex With Bq,Ikate Elegushi Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex And 1 Room Bq,Off Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Smart House,Ologolo Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With 2 Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 & 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,7 baths,7 Toilets +Magnificent 5 Bedroom Duplex,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,1,5 beds,5 baths,6 Toilets +Highly Improved Terrace Unit Of 4bedroom In A Prototype Fully Serviced Upscale Residential Estate.,Beach Resort Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +Water Front 2 Bedroom Maisonette,Elegushi Beach Ikate Lekki Lagos,₦,"48,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets +900sqm Plot Of Land,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +946sqm Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,400sqm Land",Lekki Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Water View,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +"10,000sqm Vacant Land Plot With Governor's Consent",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,S Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached + Bq House,Admiralty Way Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Beautiful 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 6 Bedroom Duplex In Serene Neighbourhood With Open Terrace,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,1,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ileja Ajah Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With 2 Room Bq,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets +1 And 2 Bedroom Apartment @de Castle Max,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,2 baths,2 Toilets +5 Bedroom Mansion,Northern Foreshore Chevron Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Boys Quarters,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets +3bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +A 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"18,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House Plus 2 Bedroom Bq,Fola Daniel Close Off Hakeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Block Of Flats For Sale,"Off Expressway, Osapa Lekki Phase 1 Lekki Lagos",₦,"345,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets +Spacious 4 Bedroom Terraced Duplex,By Osapa Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,By Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"3,500,000/year",1,1,1,4 beds,4 baths,5 Toilets +1300sqm Land Fenced And Gated,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Penthouse With Bq In Ikate,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +7 Centrale Residences,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Lekki Lagos,₦,"22,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +940sqm Plot Of Land,Off Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced In A Serene Neighbourhood,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +A 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"44,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Penthouse With Bq,Platinum Way Behind Pinnock Beach Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex,Off Agungi Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Offplan 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex With Bq,By World Oil.filling Station Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets +Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front 2 Bedroom Penthouse,Elegushi Beach Ikate Lekki Lagos,₦,"58,000,000/sqm",0,0,0,2 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets +"4 Bedroom Terrace, Semi Detached And Detached Duplexes @de Castle Max",Orchid Lekki Phase 2 Lekki Lagos,₦,"63,100,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Water Front 1 Bedroom Studio Apartment,Elegushi Beach Ikate Lekki Lagos,₦,"33,000,000",0,1,0,1 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Block Of 9units 3 Bedrooms + 2units 2 Bedroom Ensuite Flats,Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,By Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Maid Room,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House,Near Pinnock Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex For Sale,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Land In Lekki,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +2.018 Hectares Fenced & Gated Dry Vacant Land,Facing Expressway Vgc Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Duplex,By Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets +433sqm Land, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex + Bq,Vgc Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent 4 Bedroom Duplex With Excellent Facilities,Off Chevron Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonettes With A Room Boys Quarter,Richmond Gate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedrooms Apartment Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"53,105,000",0,0,0,2 beds,2 baths,3 Toilets +900sqm Plot Of Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2,3 And 4 Bedroom Maisonette And Pent House",Freedom Way Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets +970 Square Meters Land, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,By Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom All Ensuite Apartments,Ologolo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets +1880sqm Genuine Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex,At Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,2 baths,0 Toilets +Brand New 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,2 beds,2 baths,3 Toilets +30 Million Naira Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets +Luxury 5 Bedroom Duplex In A Serene Environment,"Cown Estate, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +9 Plots Of Land,Agungi Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Choice Residential Plot Measuring 500 Square Metres,"Beach Resort Estate, Behind Nicon Town, Osapa Osapa London Lekki Lagos",₦,"180,000,000",1,0,0, beds, baths, Toilets +"1,022sqm Land", Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +922 Square Meter Land, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex In A Serene Neighbourhood,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +648sqm Plot Of Land In A Prime Location,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Brand New Luxury 5bedroom Terraces + Bq,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4bedroom Terraces At Ikota Gra Lekki Lagos,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets +Lovely 5 Bedroom Bedroom Detached House With Bq,Megamond Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terraced Building,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Estate Land,Ikate Lekki Lagos,₦,"210,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nice 4 Bedroom Terraced House,Chevron Lekki Lagos,₦,"5,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terraced Duplex,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,1,1,3 beds,3 baths,4 Toilets +3 Bedroom With A Boys Quarter,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Affordable Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Serviced Flat,Eleganza Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex In A Serene Neighbourhood,Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Water Front 3 Bedroom Penthouse With Bq,Elegushi Beach Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With A Bq Located Within A Conducive And Serviced Estate In Ilasan Lekki.,Ilasan Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Water Front 4 Bedroom Penthouse With Bq,Elegushi Beach Ikate Lekki Lagos,₦,"88,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets +3bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,5 baths,5 Toilets +5bedroom Detached Duplex,Orchid Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Terraced Duplex,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +Comfortable Fully Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +36 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",1,1,0,2 beds,2 baths,3 Toilets +36 Maisonette Apartments,Ikate Lekki Lagos,₦,"62,000,000",1,0,0,2 beds,2 baths,3 Toilets +An Old 3 Units Of 3 Bedroon Terrace,Road 3 Vgc Lekki Lagos,₦,"350,000,000/sqm",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom And 1 Room Bq,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Semi Detached Duplex,By House On The Rock Ikate Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets +Beautifully Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekky County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,7 baths,7 Toilets +Studio Apartment, Lekki Lagos,₦,"43,000,000",0,0,0,1 beds,1 baths,2 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Maisonette +bq, Ikate Lekki Lagos,₦,"95,000,000/sqm",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Penthouse,Bloom Heaven Residences Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Flat,Off Agungi Road Agungi Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets +3 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Off Chevron Tollgate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +"1,022 Square Meter Of Land",Lekki Lagos,₦,"340,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Duplex,Ikota Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Duplex With Swimming Pool, Cinema And A Bq",Lekky County Homes Ikota Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +904sqm Plot Of Land,Off Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +5 Bedroom House,Igbo Efon Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Apartment,Harris Drive Vgc Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +2000sqm Serviced Land Plot,Twin Lakes Estate Chevron Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +1880sqm Plot Of Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Iconic 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,1,5 beds,5 baths,6 Toilets +"12 Bedroom Duplex On 1400sqm Suitable For Cooperate Office, Hospital, Airbnb, Guest House, School.",Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex In A Secured Environment,Lekki County Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Off Harris Drive Vgc Lekki Lagos,₦,"120,000,009",0,1,1,5 beds,5 baths,6 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Finished 3bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached House,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In A Secured Environment,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury Terraced 2 Bedroom Flat,Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,3 baths,3 Toilets +Prototype Semidetached Unit Of 4 Bedroom Ensuite With Quarter's,"Shell Coop East Village, Beach Resort Estate, Directly Behind Nicon Town, Osapa London, Lekki Osapa London Lekki Lagos",₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Studio Apartment (off Plan),Ikate Lekki Lagos,₦,"33,500,000",0,0,0,1 beds,1 baths,1 Toilets +"1,270sqm Land",Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Exquisite Detached House Of 5bedroom Ensuite, Home Theater Room, Infinity Pool And Contemporary Kitchen Finish On Three Floors In A Reserved Neighbourhood In Lekki Phase One",Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +6bedroom Contemporary Fully Detached Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,1,0,7 beds,8 baths,8 Toilets +Newly Built 4 Bedroom Semi Detached And Terraced Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Off Kusenla Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex With 2 Room Bq,Chevron Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Fully Detached Duplex,Off Agungi Road Agungi Lekki Lagos,₦,"220,000,000",0,1,1,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Duplex,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"8,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Off Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Land In Orchid Road Lekki,Ikota Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +Land,"By Far Park, Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex With Swimming Pool,"Off Mobile Road, Ilaje Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Plot Of Land,Northern Fourshore Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite Detached House Of 5 Bedroom Ensuite,"Beach Resort Estate, Behind Nicon Town, Jakande Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,400sqm Land",Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +New And Tastefully Finished 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"36,000,000",0,1,0,2 beds,2 baths,3 Toilets +Cove Towers Apartment,Lekki Phase 1 Lekki Lagos,₦,"22,050,000",1,1,1,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Apartments With 1 Room Bq .,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3/4 Bedroom Maisonette,House Of The Rock Cathedral Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Distress Sale Of A 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,5 Toilets +"1,100sqm Land With Demolishable/renovatable Commercial Building Suitable For Shortlet Apartments, Hotel, Office Complex",Lekki Phase 1 Lekki Lagos,$,"1,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Victoria Nest Estate Chevron Lekki Lagos,₦,"95,000,000",1,0,0,4 beds, baths, Toilets +"17,500 Prime Development Plot", Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +One Bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,2 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex With A Maids Room,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex,Ikota Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached With Excellent Facilities,By Lagos Business School (lbs) Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Apartment,Maruwa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached House,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,"Primewaters Gardens 2, Ikate, Lekki. Ikate Lekki Lagos",₦,"95,000,000",1,0,0,4 beds,4 baths,5 Toilets +One Bedroom Apartment,Ikate Lekki Lagos,₦,"33,500,000",0,0,0,1 beds,1 baths,2 Toilets +4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Palm City Vgc Lekki Lagos,₦,"120,000,009",0,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets +2 Bedroom Apartment No Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Penthouse Apartment @godmade Connect Court 3 Ikate,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +1147 Sqms Land, Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,$,"1,110,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Flat,Chevron Lekki Lagos,$,"360,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets +Decently Finished 4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +&well Spaced 4 Bedroom Fully Detached Duplex With Bq.,Osapa London Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Apartment,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lekki Lagos,₦,"97,000,000",0,0,0,3 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Pool,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,4 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Residential Plot Measuring 1388.49sqm,Olawale Cole Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +690sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Designed Spacious 4 Bedroom Terrace With A Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekky County Homes Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Maisonette,Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Terraced Duplex,2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Upscale 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Designed 5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bare Land,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Outstanding 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With 1 Room Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Lovely 4 Bedroom Semi Detached Duplex With A Bq.,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Maisonettes With Excellent Facilities,Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished & Serviced 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Enthralling 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,"Victory Star Court 2 Ikota Gra, Lekki Ikota Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Fully Detached Duplex With Swimming Pool.,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets +Very Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Elegant 4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osapa London Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With A Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished Grand 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegantly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Absolutely Magnificent And Spacious 5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +About 461sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Finished 4 Bedroom Duplex With A Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Stunning 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,419sqm Land",Gbangbala Street Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Detached Duplex With A Pool, Gym And Cinema",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +Classic 5 Bedroom Duplex With A Bq And A Swimming Pool.,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqms Bareland,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cute 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq.,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +915sqms Bareland,"Chris Maduweke, Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,Agungi Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +450 Sqms Bare Land,"Adedeji Street, Off Bisola Durosimi Etti Str Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Upscale 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Detached House,Lekki Rhs (petrocam Axis) Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Timeless 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Off Chevron Tollgate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Modern & Luxurious 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lustrous 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious And Well Finished 5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Pent House And A Bq,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brilliant 4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Immaculate, Beautiful 5 Bedroom Deluxe Duplex",Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With A Spacious Driveway And A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Lands,Melrose Park Estate Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +808 Sqms Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Delectable 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000/month",1,0,0,1 beds,1 baths,1 Toilets +1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +Fully Automated 5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Neat 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Upscale 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Offplan 4 Bedroom Terrace Duplex House For Sale At Vgc Lekki Lagos Nigeria,(shapata)* By Vgc Off Lekki Epe Express Road.drive Vgc Lekki Lagos,₦,"54,500,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki Conservation Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Constructed 5 Bedroom Terrace,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartments,Ilasan Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedrooms Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Pinnock Beach Estate Oral Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,2 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplexes,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Smart House Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Beddroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +550sqms With A Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classy 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Captivating 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,4 Toilets +Ultramodern 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Crisp 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Regal 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Semi Detached Home,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +950sqms Land,V Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikate Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Charming 4 Bedroom Terrace Duplex With A Bq,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Enticing 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terraced Duplex,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat Fully Serviced,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,2 Toilets +Beautiful 5 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +1bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Upscale 5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Stunning 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Stately 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dazzling 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dazzling 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With An Ensuite Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +Glittering 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Designed And Very Spacious 4 Bedroom Semi Detached Duplex With Fitted Kitchen., Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace,Elegushi Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Astonishing 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Lands,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Awe Inspiring 4 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Enchanting 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Soothing 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,4 beds,4 baths,5 Toilets +500sqm Plot Of Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Communal Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +"5 Bedroom Contemporary Detached Duplex,",2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"248,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 6 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Enthralling 5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sophisticated And Contemporary 5 Bedroom House,Off Bisola Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds, baths, Toilets +Lovely 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brilliant And Well Finished 4 Bedroom Terrace With Smart Home Audio Visual Control,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New And Tastefully Built 5 Bedroom Duplex, Fully Detached With 2 Rooms Bq.",Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chris Madueke Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,145sqm Land",Kusenla Road Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Spacious 5 Bedroom Fully Detached Duplex With A Superb Finishing,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable Luxury 4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ocean View Estate Land For Sale,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"9,500,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom + Bq (penthouse),Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +950sqms Land,Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious And Well Finished 4 Bedroom Terrace Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Spacious Rooms,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Swimming Pool And A Bq,Lekky County Homes Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex In Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"53,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +Spacious 4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Nos Of 4 Bedroom Terrace + 2 Nos Of 3 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,5 baths,6 Toilets +Striking 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brilliant 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spectacular 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Truly Magnificent 4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Townhouse,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment,Richmond Pearl Avenue Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +650 Sqms Land,Freedom Way Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Classic 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Unblemished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +Alluring 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Eye Popping 5 Bedroom Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +650 Sqms Land,Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +640sqms Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom & 3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +350sqm Cornerpiece And Dry Land,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq And A Very Spacious Compound,Jakande Axis Lekki Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Designed 4 Bedroom Furnished Detached Duplex,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite Luxury Finished 10years Mortgage Luxury 1bedroom Apartment,Lekki Lagos,₦,"15,400,000",0,0,0,1 beds,1 baths,2 Toilets +Spacious 5 Bedroom Semi Detached Duplex With A 2 Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedrooms Terraced Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,600sqm Land",Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +7 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"145,000,000",0,0,0,7 beds,7 baths,8 Toilets +Spacious And Well Finished 4 Bedroom Terrace,2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Maisonette With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Astonishing 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land For Sale Orchi, Chevron Lagos",Whales County Phase 2 Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,000sqm Land",Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brilliant 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,6 Toilets +Super Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +1300 Sqms Land,Off Freedom Way Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brilliant 5 Bedroom Terrace Duplex With A Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Detached Duplex With A Bq.,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Cowrie Creek (n.l.n.g.) Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Stunning 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Resplendent 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 3 Bedroom Terrace,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,3 beds, baths, Toilets +Available Land,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +1244sqms Cornerpiece,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,990.68 M2 Bare Plot",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spectacular 4 Bedroom Semi Detached Duplex A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Tunbridge Wells Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +1000sqms Bareland,"Olukayode Jacob, Off Olademeji Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqms With Demolishable Structure,Off Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ultramodern 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex,Off Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brilliant 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Home,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"205,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +Beautiful 4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Stunning And Impeccable 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Fitted Kitchen.,Second Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Resplendent 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Detached Duplex With A Bq,Lekki County Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Iconic 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"163,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,145sqm Land",Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex.,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom & 3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,William Onoh Street Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Apartment With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning 5 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +533sqms Cornerpiece Bareland,"Adedeji Street, Off Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Victory Park Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Large And Spacious Five Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Maisonette With Bq,Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Built 5 Bedroom Detached House With A Swimming Pool And Bq,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3456sqms Waterfront Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 3 Bedroom Apartment,Marwa Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Home,Orchid Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant 5 Bedroom Fully Detached Duplex With A Bq,Lekky County Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +799sqms Land,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious & Glittering 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 3 Bedroom Maisonette,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +2002sqm Corner Piece,Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Harmonious 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"118,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite And Well Finished 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedrooms Terrace Apartment,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brilliant 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached House With A Swimming Pool, Bq",Lekki County Home Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fabulous 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Enticing 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dope 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Bare Land Measuring 1,121sqm",U3 Estate Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +970sqms Of Land,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Eye Catching 5 Bedrooms Detached House,Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Chic 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spectacular 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spectacular 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Residential Plot Measuring 1388.49sqm,Olawale Cole Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ayo Jagun Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront & Executive 5 Bedroom Fully Detached Duplex With Swimming Pool.,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Lands,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Stunning 5 Bedroom Fully Detached Duplex With A Room Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegantly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Penthouse,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Tollgate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sparkling 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,5 Toilets +"Luxurious, Stylish 4 Bedroom Semi Detached Duplex With Bq",Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Swimming Pool,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Furnished Fully Detached 5 Bedroom With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom With Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Terrace With A Bq,Orchid Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Absolutely Stunning 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"67,500,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Spacious, Well Planned 7 Bedroom Duplex.",Ikota Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,7 baths,8 Toilets +Decently Spaced Affordable 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Available Lands,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace,2nd Toll Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Fully Serviced 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +650sqm Land,Bakare Estate Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"47,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Stunning 5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semidetached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace With Bq,Igbo Efon Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1100sqm Plot,Off Niyi Okunubi Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Upscale 5 Bedroom Detached Home, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Enthralling 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +One Plot Of 700sqm Land,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brilliant 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Lands,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Lands,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +1147sqms Bareland,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Resplendent 3 Bedroom Terrace With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Exquisite 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Apartment Block With 9 Units Of 2 Bedroom Apartments,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"33,000,000",0,0,0,1 beds,1 baths,1 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex,Off Admiralty Road Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedrooms Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Laundry Room And A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +World Class 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Off Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1180sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern 4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Enticing 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Captivating 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse With A Bq,Idado Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Bare Land,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +Enchanting 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Upscale 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Land For Sale At Ikate Elegushi, Lagos Nigeria","Ikate Elegushi, Lagos. Ikate Lekki Lagos",₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +1180sqm Land,Off Freedom Way Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex A Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Unique Townhouses,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Contemporary Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Luxury Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Charming 5 Bedroom Fully Detached Duplex A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Duplex With A Bq, Swimming Pool, Library Room, Cinema, Gym",Lekky County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent And Beautifully Structured 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +1973sqms Land,Osapa London Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 6 Bedroom Fully Detached Duplex With 2bq’s,Lekky County Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,2nd Toll Gate Lekki. Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of Terrace Of 4bedroom & Bq,Ilasan Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 800sqms,Seagate Estate Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent And Spectacular 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Enchanting 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Breathtaking 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spectacular 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 3 Bedroom Apartment,Marwa Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +950sqms Land,Omorinle Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Terrace With A Bq,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With A Room Boys Quarter,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Breathtaking 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brilliant, Spacious 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.",Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Lands,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Jumbo Duplex,Lekki County Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedrooms Fully Detached Duplex With Bq,Lekky County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With A Sizable Room Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Abijo Lekki Phase 2 Lekki Lagos,₦,"17,000,000/sqm",0,0,0, beds, baths, Toilets +Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq And A Spacious Compound,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Welcoming 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Automated Unconventional 4 Bedroom Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Terrace With A Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Structured 4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fenced, Dry Land",Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Prime Land,African Lane Street Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning 4 Bedroom Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exclusive 4 Bedroom Semi Detached Duplex With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Amazing Bewitching And Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"54,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Terrace Duplex,Beautifully Finished 4 Bedroom Terrace Duplex Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached Home,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,"Primrose Court Estate, Orchid Road Chevron Lekki Lagos",₦,"53,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Lands,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedrooms Detached House With A Big Swimming Pool, Massive Compound Space, Large Open Terrace","Pinnock Beach Estate, Osapa. Osapa London Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite Luxury Finished 10years Mortgage Luxury 3bedroom Apartment,Lekki Lagos,₦,"41,100,000",0,0,0,3 beds,3 baths,4 Toilets +Enchanting 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Unmatched 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovely 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 4bedroom +bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Terrace Duplex In Orchid Lekki Lagos Nigeria,Orchid Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat, Jakande Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Smart House With A Room Boys Quarter.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Unite Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Sandfilled Land,Ologolo Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Living Spring Estate Lafiaji Off Orchid Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Living Spring Estate Lafiaji Off Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Full Plot Of Land,Full Plot Of Land At Atlantic View Estate Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Massive Land,Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Automated Unconventional 5 Bedroom Detached House With Swimming Pool, Cinema, Gym And 2 Bqs", Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With 2 Rooms Bq And Large Terrace,Alpha Bay Estate Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront Bullet Proof Mansion With Jetty,Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,$,"7,000,000",0,0,0,10 beds, baths, Toilets +Newly Built Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +New 4bedroom Semi Detached House,Ikota Gra Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5bedroom Semi Detached,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Strategic Mixed Development Dry Bareland,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Spacious Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Jakande Lekki Jakande Lekki Lagos,₦,"27,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Landed Property,Orchid Road By Cooplang Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced House With Bq,Plot 35 Ladipo Omotesho Cole Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 5 Bedroom Luxury Duplex,Ologolo Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With Swimming Pool,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 6bedroom Duplex With Boys Quarter, The Boys Quarter Have Additional Bq",Pinnock Estate Phase 1 Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress 3 Bedroom Flat Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets +Tastefully Finished 2 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Tastefully Finished 3 Bedroom Flat Apartment With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Cowrie Creek Estates Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +9 Plots Of Land,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 3 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +12bedroom Duplex Sitting On 1400sqm,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +1 Bedroom Flat,Near Lekki Spar Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds, baths, Toilets +Very Clean 4bedroom Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached House With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +2plot Of Land Measure 1296 Sqm Going 195m Asking,Kunsola Road With Title Deed Of Assignment And Global C Of O Ikate Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Magnificent 5 Bedroom Fully Detached Mansion With Cenima,open Terrace And Swimming Pool",Ajah Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Flat Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Kayode Animashaun Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lagos Business School Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool,2nd Lekki Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 And 4bedroom Detached Houses,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Units Of 4 Bedroom Terrace,Off Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 6bedroom Detached House With Bq,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flats,Near Lekki Spar Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +6bedroom Terrace Duplex,Agungi Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex Is Located In A Fully Serviced And Secured Mini Estate,Second Toll Gate Lekki Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Plot Of Land,"Lakeview Estate,orchid Road Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Cooplag Road By Living Spring Garden Estate Off Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments,Cooplag Road Lafiaji Orchid Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Vgc Extension Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Living Spring Estate Lafiaji Off Orchid Rd Lekki Lagos,₦,"115,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Bq And Study Level,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"72,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 1 Bedroom Apartment,Chevron Lekki Lagos,₦,"29,000,000",0,0,0,1 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Flats,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Cornerpiece Land With Structure On It,Vgc Vgc Lekki Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Penthouse Apartment With A Bq,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"272,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Home With 2 Bqs And A Study,Lagoon District Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Vgc Extension Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Tastefully Finished Brand New 3bedroom Flat,Off Freedom Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +"7bedroom Fully Detched Duplex(commercial Property), With Two Service Quarters",Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,7 beds,7 baths,8 Toilets +Newly Built Semi Detached Duplex,"Jakande, Lekki Jakande Lekki Lagos",₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New Luxurious 6 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"89,000,000",0,1,0,6 beds,6 baths,7 Toilets +8 Plots Of Land In A Very Good Location,Orchid Road Chevron Toll Gate Lekki. Chevron Lekki Lagos,₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Victoria Garden City Ikota Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Duplex,Off Admiralty Way Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Beautifully Built And Very Standard 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"250,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Automated Standard 5 Bedroom Detached Duplex With 2bq,Ikate Lekki Lagos,$,"1,100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Home With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedrooms Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Plots Of Land,Winhomes Estate Off Orchid 2nd Roundabout Lekki Lagos,₦,"37,000,000",1,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq Is Located In A Secured Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Plots Of Landed Property,Lafiaji By Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Well Prepared Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedrooms Semi Detached Penthouse Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Wing Of 4bedroom Duplex With 2room Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Good Land In Good Location,Cbd Road Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Newly Built Detached Duplex,Asapa London Lekki Lagos Osapa London Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,3 Toilets +Fully Detached 3bedroom House,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"70,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Newley Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"74,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,2 baths,2 Toilets +8 Hectares Of Land,Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/day",0,0,0, beds, baths, Toilets +120 Plots Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,3 baths,3 Toilets +"20,000 Sqms Land",Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqms Sandfiled Land,Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,3 baths,3 Toilets +1000 Sqms Land,Lekki Phase 1 Lekki Lagos,₦,"210,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Secured Land,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"50,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Land,Water Front Land Vgc Lekki Lagos,₦,"45,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqms Land,Off Freedom Way Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"290,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +1079 Sqms Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Plots Of Land,Vgc Lekki Lagos Vgc Lekki Lagos,₦,"70,000,000,000/day",0,0,0, beds, baths, Toilets +2 Bedrooms Apartments,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,2 baths,2 Toilets +4 Bedroom Terraced Apartment,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,3 baths,3 Toilets +3 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,2 baths,2 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,2 baths,2 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Emcel Apartment Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets +2 Bedroom Apartment,Emcel Apartment Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Detached House,Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplexes,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Finished And Furnished Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000/sqm",1,1,1,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,2 baths,2 Toilets +5 Bedrooms Apartment,"Mega Mound Estate, Lekki County Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Plots Of Land,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Terraced Duplex,Emcel Court With Governor's Consent Along Lafiaji Road Close To Lekki Conservation Centre Ikota Lekki Lagos,₦,"40,000,000/month",0,1,0,2 beds,3 baths,3 Toilets +9600sqm Land,Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,"Chris Efuyemi, Off Omorele Johnson. Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"250,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,2nd Tollgate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Plots Of Land,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bed Apartment With Ample Parking Space,Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartment With Ample Parking Space,Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Upscale 4 Bedroom Terraced Duplex With Swimming Area,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Semi Detached Duplex With Fully Fitted Kitchen,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +Serviced 3 Bedroom Apartment With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,4 Toilets +Newly Build 4 Bedrooms Terrace Duplex,Orchid Road/hardwood/drea World Chevron Lekki Lagos,₦,"65,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +656 Plots Of Land,Vgc Lekki Ajah Lagos Vgc Lekki Lagos,₦,"43,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Detached Home,Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Spaced 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"750,000,000",0,0,0,5 beds,0 baths,0 Toilets +Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Mansion,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Home,Ikota Gra Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Home,Ikota Gra Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,5 Toilets +Luxury 5 Bedroom Detached Home,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"100,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Duplex House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5bedroom Duplex With Bq And Excellent Facilities,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000/sqm",0,1,1,5 beds,5 baths,6 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Detached Duplex With Bq,Agungi Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"10,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Terrace Duplex,Freedom Way Off Regional Road Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Flat,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,8 Toilets +5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +651sqm Land,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Mansion,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Plots Of Land,Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Hakeem Dickson Drive Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Semi Detached House,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Between Blenco And Enyo Filling Station Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,Peninsula 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4500sqm Land,Off Chibo Ofodile Road Lekki Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets +10 Plots Of Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +520sqms Land,Omorine Johnson Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,408sqm Land",Off T. F. Kuboye Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,402.46sqm Land",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +9600sqm Land,Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Palm City Estate Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom (5) Fully Detached Duplex Plus Penthouse With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Governor Consent,Victory Star Court Phase 2 Ongoing Duplex With Flexible Payment Plan At Ikota Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Eleganza Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With Penthouse And Indoor Swiwwing Pool In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,7 baths,7 Toilets +Luxury 3 Bedroom Penthouse,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"49,000,000",1,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,6 baths,6 Toilets +Land Periwinkle Estate,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +2000sqm2 Land With Set Back,Ikota Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,F Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,7 Toilets +2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,3 baths,3 Toilets +100 Plots Of Land,Vgc Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +Two (2) Bedroom Terrace Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets +Massive 5 Bedroom Fully Detached Duplex With Swimming Pool And Boys Quarter,Chevron Tollgate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Plots Of Beach Front Land,Beach Front By Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,6 baths,6 Toilets +Exotic Four (4) Bedroom Terrace Duplex,Emcel Court With Flexible Payment Plan At Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,5 baths,5 Toilets +Fully Smart 5 Bedroom Detached Duplex + Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,1,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +Land,Ilasan Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Right Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Penthouse,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Marwa / Lekki Right Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex And Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex In A Prime Location,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,4 baths,4 Toilets +Spacious And Luxury 4 Bedroom Fully Detached Duplex With Bq,Exquisite Furnished Duplex At Ikota Ville Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,4 Toilets +Exotic 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Greenland Estate Olokonla Sangotedo Ajah Lekki Lagos,₦,"75,000,000",1,1,1,8 beds,8 baths,8 Toilets +Fully Detached Four (4) Bedroom Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Orchid Road. By Second Toll Gate Chevron Lekki Lagos,₦,"138,000,000",1,1,1,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Massionate,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,"Creek Avenue Court Phase 3, Ikota Lekki Lagos",₦,"120,000,000",0,0,1,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Serviced Apartment,Chevron Tollgate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Luxurious Apartment,Ikate Lekki Lagos,₦,"47,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Alfa Beach Road Igbo Efon Lekki Lagos,₦,"57,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Tollgate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Terrace Duplex,Westend Estate Off Lekki County Road Ikota Lekki Lagos,₦,"49,000,000",1,1,1,2 beds,3 baths,3 Toilets +Exquisite Two (2) Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",1,1,1,2 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex + Bq,"Creek Avenue Court Phase 3, Ikota Lekki Lagos",₦,"80,000,000",1,1,1,4 beds,6 baths,6 Toilets +Plot Of Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Massionate,Dunvale Court 5 Ongoing Project With Flexible Payment Plan At Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex Agungi,Agungi Agungi Lekki Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury Fully Serviced 2&3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Penthouse Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"78,000,000",1,0,1,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Chevron Tollgate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +64 Hecters Of Land (960 Plots),Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Vgc Lekki Lagos,₦,"555,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,4 Toilets +"15,000 Square Metres",Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Christabel Gardens Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Ikota By Vgc Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,White Sand School Lekki Right Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +Three (3) Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths,4 Toilets +Furnished 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"42,000,000",0,0,1,2 beds,3 baths,3 Toilets +Luxury 2 Bedroom Apartments,"Lekki Conservation, Lekki Lagos",₦,"40,000,000",0,0,1,2 beds,3 baths,3 Toilets +Luxury 2 Bedroom Flat,Baruwa Estate Spg Road Ologolo Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex (corner Piece),Chevron Tollgate Orchid Hotel Road Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,3 baths,3 Toilets +Luxury 3 Bedroom Semi Detached Duplex,Amity Estate Pay And Pack In Duplex With Flexible Payment Plan At Sangotedo Ajah Lekki Lagos,₦,"51,000,000",1,1,1,3 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Pay And Pack In Duplex At Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 2 Maids Quarters,Pay And Pack In Duplex At Victoria Garden City Vgc Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,6 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Road Close To Chevron Toll Gate Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,"Creek Avenue Estate Phase 2, Ikota Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex With Governor Consent In A Prime Location,Buena Vista Estate Along Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,0 beds,0 baths,0 Toilets +Plots Of Land In Pinnock Phase 1,Pinnock Phase 1 Jakande Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,5 baths,6 Toilets +Finished 5 Bedroom Detached,Lekki County Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"68,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 3bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Ocean View Estate Vopnucity Is Behind Eko Akete Lekki Peninsula Lagos Lekki Lagos,₦,"11,500,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Gbangbala Street, Ikate Lekki Lagos",₦,"250,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Magnificent 3 Bedroom En Suite Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets +New 5 Bedroom Terrace Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +1000sqm Sand Filled Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 1 Bedroom Mini Flat,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,1 Toilets +New 1 Bedroom Mini Flat,Idado Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Mini Flat,Orchid Road Chevron Lekki Lagos,₦,"17,000,000",0,0,0,1 beds,1 baths,2 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached House,Off Orchid Hotel Road By Eleganza Chevron Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Abijo Gra Opp Corona School Lekki Lagos,₦,"16,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fenced And Gated Land In Estate,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Fully Furnished 4 Bedroom Fully Detached Duplex,Orchid Chevron Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex And Bq,Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex And A Room Bq,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +Beautifully Built 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,7 baths,7 Toilets +Luxury 3 Bedroom Apartment,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"55,000,000/sqm",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Empire For Royal Magnificent Homes,Lekki Lagos,₦,"23,100,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace With Bq,Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Square Metres Shop Space,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,10 beds,10 baths,10 Toilets +"Brand New 4 Bedroom Terrace With A Bq Located Within A Conducive And Serviced Estate In Lekki Phase 1, Lagos.",Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,"Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached With Swimming Pool,Lekki County Home Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Terrace,Orchid Rd Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex; Sited Within A High End Estate,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Semi Detached House,2nd Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Contemporary, 5 Bedroom Fully Detached Duplex, With A Maids Room In An Exclusive Estate",Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom New Terraces At Ikota Gra,Gra Ikota Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious And Newly Built 4 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fantastic 2 Bedroom Flat,Ikate Lekki Lagos,₦,"67,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Secure Land With C Of O,Alaro City Lekki Lagos,₦,"10,000,000/year",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached And Detached Houses,Pinnock Beach Estate Axis Agungi Lekki Lagos,₦,"82,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,7 Toilets +5bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets +Luxury 1 Bedroom Mini Flat,Orchid Rd Chevron Lekki Lagos,₦,"21,000,000",0,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Executive 5bedroom Detached Duplex In A Serene Environment With Clean Water,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace,Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Contemporary Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Executive 2bedroom Apartment In A Secured Estate With Clean Water,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,2 baths,3 Toilets +Nice 2bedroom Flat,Lekky County Ikota Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,2 Toilets +Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,1,1,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi East Estate Agungi Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Gorgeous, 5 Bedrooms Fully Detached Duplexes With An Ensuite Bq",Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets +Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,6 Toilets +Nice 4 Bedroom Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built & Exquisitly Finished 4 & 5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"95,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable Bungalow,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Astonishingly Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,009",0,0,0,0 beds,0 baths,0 Toilets +Soacious Well Finished To Detail 4bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,8 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Greatly Built 2 Bedroom Terrace Duolex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Maid Room,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Jora Estate Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Thomas Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Executive 7 Bedroom Fully Detached Duplex In An Exclusive Estate,Nicon Town Lekki Lagos,₦,"400,000,000",1,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Fully Detached Duplex,Megamond Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,1, beds, baths, Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex With A Pool, Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex By The 2nd Toll Gate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraces And Houses On Chevron Conservative,Conservative Opposite Chevron Office Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Flat,Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Conservation Centre Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Osapa Landon Osapa London Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +Luxuriously Built 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Lekky County,"Lekky County Homes, Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary, 5 Bedroom Fully Detached Duplex In An Exclusive Estate, Off Chevron Toll, Lagos.",Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,7 Toilets +3 Bedroom Flat,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Cinema + Pool,Lekki Phase 1 Lekki Lagos,₦,"335,000,000",0,0,0,5 beds, baths, Toilets +2 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached House/mansion,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Mansion In Vgc Ajah,Vgc Lekki Lagos,₦,"550,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Smart Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,7 Toilets +Luxury 5bedroom Duplex With Bq,Southen View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +120 Plots Of Land In Chevron Drive + Governor's Consent,Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Bedroom Fully Serviced Apartments,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets +A Plot Of Land,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +3bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Greatly Built 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Beechwood Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Hectares Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex By 2nd Toll Gate,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +300 Sqm (half Plot Of Land) Available,Behind Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 And 3 Bedroom Luxury Apartments,Right Side Closer To Enyo Filling Station Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds, baths, Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Executive 4bedroom Terrace Duplex In An Exclusive Estate With Clean Water,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Premium Luxury Executive 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Townhouses W/ Bq,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Bedroom Semi Detached With Maid Room,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Chevron Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Maisonette Duplex By 2nd Toll Gate,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Vgc,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Spacious, 4 Bedroom Fully Detached Duplex",Ikota Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Luxury Executive 4 Bedroom Apartment, In An Exclusive Estate",Idado Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace House,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace On 3 Levels, Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets +Plots Of Land,Elegushi Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Elegant 5 Bedroom Fully Detached Duplex Nestled Within A Secured And Tranquil Estate At Lekky County,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With A Pool, Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex + Bq,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Elevator, Swimming Pool.",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex In Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds, baths, Toilets +Newly Built 3 Bedroom Apartment,Spar Road Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplerl,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Open Roof Terrace,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ikota Villa Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,6 Toilets +Brand New 4bedroom Detached Duplex With Bq,Oluwatoyin Street Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Flats,Orchid Road By Cheron Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Terraced Duplex + Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Homes Ikota Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"105,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Penthouse And Swimming Pool,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Automated With Cinema,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex With 1 Maid Room,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 1 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,1 baths,2 Toilets +Land,Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Townhouses W/ Bq,Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Igbo Efon Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool+ Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,7 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Woodland,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Penthouse Apartment,Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"430,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached House,Idado Lekki Idado Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached House With Penthouse And 2 Kitchen,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,7 beds,7 baths,8 Toilets +Luxury Serviced 4 Bedroom Duplex,"Off Jasmine Road, Ikota Gra Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +1100 Square Metres Of Land,Osapa London Lekki Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +Skyz By Danube Homes,Lekki Lagos,$,"183,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 6 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets +Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,1,1,2 beds,2 baths,2 Toilets +Gorgeous 5 Bedrooms Fully Detached Duplexes With An Ensuite Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,By Orchid Hotel Road/lafiaji Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Deluxe , 4 Bedrooms Semi Detached Duplex",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale On Chevron Drive Lekki Lagos,Madison Garden Gstate Chevron Lekki Lagos,₦,"200,000/sqm",1,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Solar Batteries,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,7 Toilets +6 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built 4 Bedroom Detached Duplex In Vgc Axis, Ikota",Vgc Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplexes,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedrooms Terrace Available,Vgc Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex With Bq In A Serene Secured Estate Environment,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Terrace Duplex,Eleganza Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,7 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Home Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,7 Toilets +Contemporary 6 Bedroom Duplex In Lekki Phase One,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartment,Orchid Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +Brand New 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Apartment,Lekki Conservation Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Ultra Modern Luxury Flats,"Off Freedom Way, Off Regional Road Lekki 1 Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,3 baths,3 Toilets +Land,Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Adebisi Popoola Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached W/ Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 2 Bedroom Flat,Lekki Conservation Centre Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex In Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets +4bedroom Semi Detached Duplex Fully Furnished,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets +Luxury Executive 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,0 Toilets +5 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets +680sqm Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Location By 2nd Toll Gate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Finished Duplex,Oral Estate Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 2 Units Of 5 Bedrooms Fully Detached Duplexes,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Lekki Crest, Lekki Lekki Lagos",₦,"5,900,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Lekki Conservation Centre Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Furnished 3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat, Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Agingi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,4 baths,5 Toilets +Newly Built Four(4) Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 2 Bedroom Flat,"Ikota Estate, Lekki County Ikota Lekki Lagos",₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +Executive 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,0 baths,0 Toilets +Apartments,Lekki Lagos,₦,"48,500,000",0,0,0, beds, baths, Toilets +"4 Bedroom Fully Detached Duplex In Ikota Gra, Lekki",Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +660sqm Of Land,Royal Garden Estate Ajah Lagos Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex With Bq,"Lekki County Homes, Megamond Ikota Lekki Lagos",₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of 4bedroom Semi Detached With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,4 baths,5 Toilets +4 Plots Of Land,At The End Of Spg Road Ologolo Lekki Ologolo Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With Two Bq,Osapa London Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lakeview Orchid Road By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Towards The End Of Orchid Road By Second Toll Gate Eleganza Bus Stop Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel With 26 Rooms And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Great 3bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terrace In A Lovely Location,Off Orchid Hotel Road. Beside Colplag Estate. Ikota Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,3 Toilets +Impeccable 5 Bedroom Fully Detached Duplexes With Maid’s Quarter,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +774.965sqm Dry And Sand Filed Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedroom Fully Detach Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built Luxury 3 Bedroom Apartment,Western Foreshore Estate Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely Serviced 3 Bedroom Apartment And 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Pinnock Beach Estate Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached House,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Plots Of Land,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"272,000,000",0,0,0,0 beds,0 baths,0 Toilets +Charming Executive Newly Built 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built Luxury 1 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +Estate Land,Along Spar Road Ikate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,0 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detched Duplex With A Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Swimming Pooland Bq For Sale,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets +Exquisitely Built 4 Bed Detached Duplex Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraces With Communal Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,3 Toilets +New Built 5 Bedroom Detached Duplex With A Bq In A Lovely Estate,10 Bakare Street Megamound Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +9 Bedroom Duplex With Boys Quarters And Security House,Nicon Town Lekki Lagos,₦,"420,000,000",0,1,0,9 beds,9 baths,9 Toilets +Land,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land With 4 Units Town Houses,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Dry Land,Victoria Garden City Lekki Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Solidly Built Serviced 3 Bed Apartment With Elevator, Swimming Pool",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 4 Bedroom Terrace Inside A Lovely Estate Beside Vgc Lekki,Harris Drive Vgc Lekki Lagos Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Maid's Room/bq,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom New Terrace House, Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace,Harris Drive Vgc Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,3 Toilets +Lovely 9 Bedroom Duplex Sitting On A 1000sqm Land Facing Nicon Town,Along Nicon Town Lekki Lagos Lekki Lagos,₦,"420,000,000",0,0,0,9 beds,9 baths,10 Toilets +4bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets +Luxurious 4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Senetorial 5 Bedroom Detach Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Apartments In Banana Island,Lekki Lagos,₦,"450,000,000",1,1,0, beds,4 baths,4 Toilets +2 Plot Of Land For Sale At Orchid Road Beside Colplag Estate By Second Toll Lekki,Orchid Road By Second Toll Lekki Lagos Ikota Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +2 Units Of 3 Bedroom Apartment Sitting On A 697.847sqms For Sale In An Estate In Chervon,Chervon Chevron Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Kazeem Street Off Alhpa Beach Road Igbo Efon Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,0 beds,0 baths,0 Toilets +Spacious 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plots Of Land In An Estate,Diamond Court Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land In A Serene Environment,Ikota Before Vgc Lekki Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Spacious 4 Bedroom Semi Detached Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Primrose Opposite Victoria Crest Orchid Road Lekki Ikota Lekki Lagos,₦,"52,500,000",0,1,0,4 beds,4 baths,4 Toilets +Exceptionally Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury And Spacious 5 Bedroom Semi Detached Duplex,"Petrocam Entrance Lekki Right, Close To Updc Estate Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary, 5 Bedrooms Fully Detached Duplex; With A Servant Quarter",2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Joint Venture Land Size: 4 Plots (648sqm Per Plot),Chervon Drive Before Ebeano's Store Chevron Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",1,1,0,5 beds,5 baths,6 Toilets +Dry Land,Kazeem Abogun Off Alpha Beach Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Exquiste 5 Bedroom Furnished Fully Detached Duplex With A Bq,12 Ikota Villa Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +Lovely 3bedroom Apartment With A Communal Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Land,Chervon By Northern Foreshore Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Along Spg Road Ologolo Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Off Alpa Beach New Road Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Fully Detached With Bq Attached,Ikota Lagos Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellently Built 6 Bed Fully Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",1,1,0,6 beds,6 baths,7 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +2bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex+1bedbq,Western Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedrooms Terrace Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartments In Banana Island,Lekki Lagos,₦,"450,000,000",1,1,0, beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500sqm Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Lands,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +676sqm Of Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In A Lovely Estate,Along Spar Road Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Pent House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Fully Detached Carcass Sitting On 1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury And Modern 4 Bedroom Semi Detach Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Off Orchid Road By Coplaq Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex And A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Estate Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Newly Built Units Of 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Abraham Adesanya Axis Lekki Scheme 2 Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Swimming Pool,Chervon Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"195,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Adorable Spacious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Fully Detached With Bq Attached,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Newly Built Finished 5 Bedroom Semi Detached Duplex,"Lekki Gardens Experience (private Site) Kusenla Road, Elegushi Lekki. Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious 4 Bedroom Terrace Self Compound,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Contemporary 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detach Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment With A Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +774.965sqm Dry And Sand Filed Land In A Gated Estate,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths,6 Toilets +Newly Built Luxury 4 Bedroom Semi Detach Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Dry Land In A Good Location,Beside Northern Foreshore Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Lovely 6 Bedroom Detached Duplex With Swimming Pool,Pinnock Beach Estate Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets +2 Plots Of Land,Ikota Gra Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely And Spacious 7 Bedroom Fully Detached Duplex With A Swimming Pool,Nicon Town Lekki Lagos Nicon Town Lekki Lagos,₦,"620,000,000",0,1,0,7 beds,7 baths,8 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 6 Bedroom Fully Detached,"Western Foreshore Estate Beside Northern Foreshore Estate, Osapa London Lekki Lagos",₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace In A Mini Estate,Beacon Court In Igbo Efun Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,4 Toilets +Land,Behind Elevation Church Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built 4 Bed Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Bedroom Detached Duplex,Chervon Chevron Lekki Lagos,₦,"650,000,000",0,1,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment With Bq,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq, Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Boys Quarters,Pinnock Beach Estate Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Charming 4 Bedroom Semi Detach Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Maisonette,Osapa London Lekki Lagos,₦,"86,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flats With Luxury Fittings,Near Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedrooms Fully Detached Duplex With Bq,S Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,5 beds, baths, Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Service Quarter, Chevron Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Charming 5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Swimming And Bq,S Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,R Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Automated Smart 4 Bedroom Terrace,Olori Oyenike Oyelude Close Along Orchid Orchid Hotel After Chevron Toll Gate Lekki Lagos. Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Beautiful Architecture, 5 Bedrooms Fully Detached Duplex; With A Servant Quarter",Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Posh Estate,Megamound Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0, beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Town House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County By Megamond Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Decently Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment,Lamorh Estate Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",1,0,0,0 beds,0 baths,0 Toilets +Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Countu Ikota Lekki Lagos,₦,"78,000,000",0,1,0,0 beds,0 baths,0 Toilets +Units Of 2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,Wale Olateju Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki By Second Toll Gate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And 2 Rooms Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 5 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chervon Lekki Lagos Nigeria Chevron Lekki Lagos,₦,"110,000,000",0,1,0,0 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets +Luxurious Units Of 5 Bedroom Fully Semi Detached,Orchid Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished Royal Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,4 Toilets +Fully Serviced 2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Boy's Quarter,Chervon Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +8 Plots Of Land,Ogombo Road Abraham Adesanya Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Semi Detched Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +917sqm Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Towards The End Of Orchid Road Inside An Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogombo Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Park Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orange Island Phase 2 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Lovely Estate Inside Chervon Chevron Lekki Lagos,₦,"69,000,000",0,0,0,6 beds,6 baths,7 Toilets +650sqm Land,Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Studio Apartment In A Lovely Estate,Mgbamgbala Near Meldow Hall Ikate Lekki Ikate Lekki Lagos,₦,"32,500,000",0,1,0,2 beds,2 baths,2 Toilets +2100m2 Jv In Periwinkle Lekki Phase 1,Periwinkle Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detched Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,0 baths,6 Toilets +600sqm,Lakeview Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Remi Olowude Street Lekki Right Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Furnished 2 Bedroom Penthouse,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxury And Modern 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 4 Bedroom Fully Detach Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished Royal Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplexes; With A Servant Quarter,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4200sqm Coner Piece Land,"Ilaje Bus Stop, Mobile Road, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,6 Toilets +Luxury 4 Bedroom Duplex,Jakande Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached,Ilasan Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,R Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Terrace,Agungi Lagos Agungi Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Fully Detached With Bq Attached.,Ikota Gra Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Charming And Lovely 4 Bedroom Semidetached Duplex And 1 Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths,6 Toilets +Executive 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Semi Detached Duplex,Lovely Estate In Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex In Pinnock Beach Estate Osapa Lekki,Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedrooms Semi Detached Penthouse Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 9 Bedroom Fully Detached Duplex With Boys Quarters,Nicon Town Lekki Lagos,₦,"420,000,000",0,1,0,0 beds,9 baths,9 Toilets +Beautifully Built Luxury 4 Bed Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Behind Elevation Church Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Swimming Pool,Lovely Estate Inside Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Spacious Luxury 5bedrooms Fully Detached Duplex With Bq And Swimming Pool, Ikota Lekki Lagos,₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5bedroom ,4bedroom Pantheon Smart Homes, Cheveron Lekki", Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Chevon Drive Beside Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,6 Toilets +Landsize. 3300sqms,Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment,E Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,4 Toilets +Exotic & Luxury En Suite 4bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds,1 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ocean Palm Estate Near Meldow Hall Ikate Lekki Lagos,₦,"33,000,000",1,0,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In A Good Environment,"Off Orchid Hotel Road, Beside Colplag Estate. Ikota Lekki Lagos",₦,"62,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment In A Service Estate Ikate Lagos,Ocean Palm Estate Meldow Hall Ikate Lagos Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,2 Toilets +Lovely 2 Bedroom Apartment,Ikota Villa Lekki Ikota Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Size: 9,600sqm",Off Victory Park Osapa London Lekki Lagos,₦,"2,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built Luxury 4 Before Semi Detach Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Fully Detached Duplex With Modern Fittings, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom 2 Storey Building Fully Detached,Off Kusenla Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Hunponu Wuse Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Ikota By Conservation Centre Lekki Lagos Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +4bedrooms Terrace Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lavishly Finished Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +640.8350sqm With A Demolish Able Structure,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +1200sqms Waterfront Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000sqm Land ( 7 & 1/2 Plots )",Adjacent Chevy View Estate Chevron Lekki Lagos,₦,"775,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orange Island Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikate Elegunshi Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"87,000,000",1,0,0,4 beds,4 baths,5 Toilets +2bedrooms & 3bedrooms Apartments,Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Plots Of Land,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Units Of 4bedroom Terrace With Bq,Lekki Right Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +9600sqms Land,Victory Park Osapa London Osapa London Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +767sqms Of Land,Royal Garden Estate Ajah Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With 2rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Admiralty Estate By Alpha Beach New Road Lekki Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 4 Bedroom Terrace Self Compound,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land In A Lovely Location,Behind Colplag Estate Orchid Road Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Apartment,Salem Ikate Lekki Lagos Ikate Lekki Lagos,₦,"40,000,000",1,0,0,0 beds,2 baths,2 Toilets +Distress Decent 4 Bedroom Detach Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Absolutely Gorgeous Luxury 5 Bed Fully Detached Home,Lekki County Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Bq In A Posh Environment,19 Sherifat Adenike Chevy View Chervon Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Beach Resort Near Pinnock Estate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lakeview Estate Orchid Road Lekki Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Duplex Detached With Bq,Ikate Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Detached Duplex,Vgc Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3bedroom Flat,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Terrace Duplex,Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 4 Bedroom Fully Detached Penthouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Studio Apartment For Sale At Meldow Hall Ikate Lekki Lagos,Meadow Hall Ikate Lekki Lagos Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +Land For Joint Venture At Ilasan Ikate Lekki,Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Townhouse With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detach Duplex With Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Estate Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 3 Bedrooms Flat + Bq All Rooms En Suite,Jakand Jakande Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,0 baths,4 Toilets +Land,Orchid Road By Second Toll Gate Eleganza Bus Stop Lekki Ikota Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sales Of 5bedroom Detached Duplex,Sangotedo Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Deluxe , 4 Bedrooms Semi Detached Duple",Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +3bedroom Apartment,Ilasan Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,2 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq In A Beautiful Estate,"Close To Ikota Villa, Off Lekki Epe Expressway Oral Estate Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Mini Court Inside Mini Estate Ikate Igbo Efon Lekki Lagos,₦,"40,000,000",1,0,0, beds,4 baths,5 Toilets +Land,Behind Colplaq Estate Orchid Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Charming 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land,Diamond Court Close To Northern Foreshore Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly 4 Bedroom Semi Detached Duplex In A Lovely Estate,Oral Estate Lekki Lagos Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Newly Built 2 Units Of 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"235,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable Land,Chervon Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable Luxury 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets +1124 Square Metres Land,Osapa London Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Contemporary 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool And Open Terrace",Pinnock Beach Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets +Dry Land,Bera Gate Behind Uba Chervon Lekki Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Senetorial And Charming 5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment For Sale At Meldow Hall Ikate Lekki Lagos,Meldow Hall Ikate Lekki Lagos Ikate Lekki Lagos,₦,"57,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Swimming Pool,Megamound Lekki County Lekki Lagos Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,4 Toilets +Luxurious And Tastefully Furnished 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +5bedrooms Luxurious Newly Built Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +9 Bedroom Detached Duplex,Facing Nicon Nicon Town Lekki Lagos,₦,"410,000,000",0,0,0,9 beds,9 baths,10 Toilets +4 Bedroom Semi Detached Duplex,Ikota Gra Lekki Ikota Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Along Spg Road Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex Inclusive Of 2 Service Quarters,Nicon Town Lekki Lagos Nicon Town Lekki Lagos,₦,"605,000,000",0,1,0,7 beds,7 baths,8 Toilets +"2 Unit Of Luxury & Exquisite 6 Bedroom, Fully Detached With 2 Bedroom Bq",Chevron Lekki Lagos,₦,"330,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exquisite 4 Bedroom Terrace Duplexes,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semidetached Duplex With 1room Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Igbonefo Igbo Efon Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex,Chervon Lekki Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lakeview Orchid Road By Second Toll Gate Eleganza Bus Lekki Ikota Lekki Lagos,₦,"126,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chervon Drive By Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lovely Estate At The End Of Chervon Drive Lekki Lagos Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detach Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Bakare Agungi Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"*prime Land For Outright Sale Or Joint Venture 9,600sqm. Location Off Victory Park Estate .* *location* :??victory Park Estste Lekki *land Size:9,600sqm* *land Value : N2.5billion* *title:* C Of O *proposal: *open* *sharing Formula:* Tbd *term:* T",Off Victory Park Osapa London Lekki Lagos,₦,"2,500,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Five Bedrooms Terrace Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detach Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Demolishable Structure On A 640.8350sqm Land,Ologolo Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000sqm Land",Orange Island Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos Ologolo Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Estate Land,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplexes; With A Servant Quarter,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +1500sqm Land,Royal Garden Estate Ajah Lagos Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Townhouse With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 5 Bedroom Fully Detached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +15 Plots Of Land,Lafiaji Behind Colplaq Estate Orchid Road By Second Toll Lekki Lagos Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Semi Detached Duplex With A Bq In An Estate,Close To Orchid Hotel Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detach Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"105,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Decently Finished Contemporary 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Ocean Palm Estate Near Meldow Hall Ikate Lekki Lagos,₦,"32,000,000",1,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Apartment In A Serviced Estate In Ikate,Salem Road Ikate Lekki Ikate Lekki Lagos,₦,"62,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Swimming Pool For Sale At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Joint Venture Land,Spg Road Off Ologolo Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate By World Oil Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detched Duplex In A Lovely Estate,19 Sherifat Adenike Chevy View Estate Chervon Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bed Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built Luxury 1 Bedroom Maisonette,Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road By Second Toll Gate Eleganza Bus Stop Lekki Lagos Ikota Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Homes Lagos Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Chervon Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ongoing 4bedroom Terrace Duplex,"Golden Garden Terrace, Behind Chevron New Estate Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Roof Top Terrace And Swimming Poolfor Sale,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths, Toilets +Luxurious Finished 4 Bedroom Fully Detached Duplex With Swimming Pool And 2 Rooms Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +500sqm Land,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Total Dry Land And Its About 30 Plots,Off Orchid Road Ahfa Beach Road Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Luxury 5 Bedroom With Bq,"Lakeview Estate, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Joint Venture 1600sqm Land,Ilasan By World Oil Ikate Lekki Lagos Ilasan Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced Alluring And Decently Spaced 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Newly Renovated Semi Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets +"Land Size: 1,970sqm",Jakonde Jakande Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 3 Bedroom Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bed Fully Detached House With Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Prestigiously Finished 6 Bed Fully Detached House With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly 4 Bedroom Terrace Duplex,Beside Vgc Lekki Lagos Vgc Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,F Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,6 Toilets +Newly Built 93% Completed Luxurious 4units Of 5bedroom Semi Detached,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Fountain Spring Sangotedo Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious 4 Bedroom Terrace Self Compound,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Contemporary Detached Duplex With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +Relatively New 5 Bedroom Fully Detached Duplex With Bq,Ochid Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chervon Drive Behind Northern Foreshore Chevron Lekki Lagos,₦,"85,000,000",0,0,0,10 beds,0 baths,0 Toilets +Land,Remi Olowude Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bed Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful Serviced 2&3 Bed Fully Serviced Apartments,2nd Toll Gate Lekki Lagos,₦,"49,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 5 Bed Edifice With Swimming Pool And Open Terrace,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"195,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxuriously Finished 5 Bed Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace In A Beautiful Estate,Orchid Road Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Terrace,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets +Total Dry Land,Beside Colplag Estate Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Plots Of Lands,Lekki Court Orchid Road Lekki Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Newly Built Charming 5 Bedroom Detach Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment In A Lovely Location,Horizon 1 Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,2 Toilets +Brand New Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive And Luxury 3 Bedroom Flat With 1 Room Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4500sqms Land For Joint Venture Along Pinnacle Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,485,000",0,0,0, beds, baths, Toilets +Luxury Newly Built 4bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terrace With Bq With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury And Spacious 3 Bedroom Terrace Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace,Estate Beside Vgc Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"195,000,000",1,1,1,5 beds,0 baths,6 Toilets +Luxury 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shop Space,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +1050sqm Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Along Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Marwa Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Duplex With Bq,Abraham Adesanya Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Cowrie Creek Estate Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious And Tastefully Built 9 Units Of 3 Bedroom Apartments With Bq,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex With Bq,"Victoria Crest Ii Estate, Orchid Road Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Luxury 4bedrooms Duplex,Platinum Way Jakande Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Luxury Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq F,Megamound Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached House,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Finished Contemporary 4 Bed Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Units Of Fully Serviced 1 & 2bedroom Apartment,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq Water Front,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,800sqm Corner Piece Land",Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With 3room Bq,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Number Of 3 Bedrooms,Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Home,Lekki Count Ikota Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3bedrooms Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chevron Alternative Drive Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 14 Numbers Luxury Flats,Chevy View Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With Bq,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Pinnock Beach Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Agungi Lekki Lagos,₦,"3,790,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom House With A Room Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Jakande Off Platinum Way Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrence Duplex With Bq On Orchid Road Chevron Lekki,Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Mega Filling Station,Ilasan Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +617sqm Land,Palm City Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 24hrs Light 4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedrooms Flat With Bq,Off Chevron Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5/6 Bedroom Fully Detached House,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +6units Of 3 Bedroom Flat And 4units Of 1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained 4bedroom Terrace Duplex,"Shoprite Road, Jakande Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 3bedroom Apartment With 1 Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Units Of 4 Bedroom Terraces With A Rooftop Garden On Each Apartment + A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom And 3 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Admiralty Way Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5 Bedroom Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 12 Units Of 3 Bedroom Flats,Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +8 Units Of 4 Bedroom Flat,Vgc Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lands Measuring 979.19sqm,Twin Lake Estate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Waiting Room Like A Bq,Jakande Osapa London Lekki Lagos,₦,"57,000,000",1,1,0, beds, baths, Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedrooms Detached Duplex With Bq,Lakeview Park 2 Estate By Chevron Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"118,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Luxury Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace With B,Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan By Blenco Stores Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flats For Sale Lekki Chevron By Orchid Hotel,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand Newly Built 4bedrooms Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built Affordable 3 Bedrooms Apartment With Bq,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Detach 5 Bedroom Duplex & Bq With Swimming Pool Inside Benevista Estate Orchid Road By Chevron Lekki,Orchid Road Benevista Estate Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Estate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Kingly Finished 5 Bedroom Fully Furnished Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With 2room Bq,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Numbers Of Tastefully Finished 3bedroom Flats,Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Brand Newly Built 5bedrooms Waterview Fully Detached Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Plot Measuring 1,270sqms",Pinnock Beach Estate Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom Mansion,Nicon Estate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Shopping,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2/3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Orchid Road Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Self Serviced 4bedrooms Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"4,950,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring Approximately 3,150sqm",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Apartment,Prime Water View Garden Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekky County Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,"Victory Park Estate, Jakande Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +851sqms Of Bareland,Cowrie Creek Estate Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Victory Park Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Together Land,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Agungi Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Bungalow,Oceanbay Estate Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex & Bq On Orchid Road Chevron,Orchid Road Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished 2 Bedroom Flat,"Sapphire Tower, 2nd Roundabout Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex Semi Detached Fully Detached,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Newly Built House,Chevron Alternative Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +450 Sqm Bareland,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Pent House,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand Newly Built 3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Apartment,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Royal View Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Park Estate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 9 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,150sqm Land",Lekki Epe Expressway Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,150sqm Land",Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace,Ikota Villa Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom All Ensuite Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Luxury 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand Newly Built 5bedrooms Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Arcadia Grove Estate, By Pinnock Beach Estate Lekki Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Houses,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 & 4 Bedrooms Terrace Houses +bq,Lekki Phase 2 Scheme Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Expressway Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Units Fully Detached 5 Bedroom Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Duplex Mansionatte With Bq,Lekki Phase 1 By Ikate Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,4 Toilets +2 Bedroom Flat,Near Whitesand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With Bq,Ikota Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Furnished And Serviced 2 Bedroom Flat,"Kusenla Road, Elegushi Ikate Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 400sqm Plots Of Land,Lakeview Park 2 Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +820sqm Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxurious 6 Bedroom Fully Detached Duplex,Lekki Scheme 2 (gra) Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex And 3 Bq,Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevy View Estate Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Mobile Estate Inoyo Ilaje Lekki Lagos,₦,"22,500,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Duplex With Penthouse,Villa Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Opulent & Elegantly Design 2 Units Of 4 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Newly Built 5bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executively Built 5 Bedrooms + 1 Room Attached Bq,Lekki Phase 1 Lagos Lekki Lagos,₦,"450,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Waterview Apartment,Maruwa Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 5units Of 3bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Well Finished 4bedroom Semi Detached Duplex Plus Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached House,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Block Of 14 Units Luxury Residential Apartment,Chevy View Estate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached House,Ikota Lekki Lagos,₦,"89,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Agungi Agungi Lekki Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,520sqm Land",Ladipo Bateye Gra Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,Chevron Axis Lekki Orchid Hotel Chevron Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orange Island Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedrooms Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Pinock Beach Estate Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 3bedrooms Terrace Duplex With Bq,Bera Estate Chevron Drive Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartments,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand Newly Built Fully Serviced 2 Bedroom Flat,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Expressway By Hakeem Dickson Link Lekki Phase 1 Lekki Lagos,₦,"1,450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Terrace House + 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Maid’s Room/bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Olawale Idris Close To Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House With A Room Boy's Quarters, Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Ground Floor Apartment,Bayview Estate Ikate Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard 4 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With 2 Room Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Chevron Alternative Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex Plus Bq,Lekki Right Hand Side In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex + Bq,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury Newly Built 4 Bedroom Terrace Duplex Plus Bq, Swimming Pool, Gym",In A Serviced Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex Plus Bq,By World Oil Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets +A Plot Measuring 669sqm,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex Plus Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Off Chevron Tollgate, Chevron Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki County Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraces With 1 Room Bq,Canaanland Street Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedroom Detached,Lekki County Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,4 Toilets +Spacious 2 Bedroom Terrace Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraces Second Tollgate Lekki,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Megamound Ikota Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets +2 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,Second Toll Gate Oral Estate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Fully Detached 5 Bedroom Duplex,Second Toll Gate Oral Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House,Second Toll Gate Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,4 baths,5 Toilets +Super Decent 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Behind Oba Eleguishi Palace Ikate Lekki Lagos,₦,"660,000,000",0,0,0,0 beds,0 baths,0 Toilets +Masterpiece 5 Bedroom Fully Detached,Ikate Lekki Lagos,₦,"550,000,000",0,1,1,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"520,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Lekki Lagos",₦,"520,000,000",0,1,0,5 beds,5 baths,5 Toilets +4bedroom Terrace Duplex & A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex Plus A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex,Lakeview Estate Ikota Lekki Lagos,₦,"148,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Maisonette (pcl 013),Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraces,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq +swimming Pool,Lekki County Ikota Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace Duplex With(pcl 130),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Chevron Water Front Duplex House With Bq +swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Automated Fully Detached Duplex House With Bq +swimming Pool +gym,Osapa London Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached (pcl 075),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace (pcl 166),Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi 0detached Duplex (0023a),Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4bedrooms Maisonette Duplex House With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +1345.11sqm Corner Piece Of Land (pcl 039),Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq For Sale!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,By Lekki Circilar Shoprite Jakande Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex House With Bq +swimming Pool,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex (0012a),Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"118,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 6bedrooms Fully Detached Duplex House With Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +4bedrooms Terraced Duplex House,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex(pcl 007),Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds, baths, Toilets +5 Bedroom Semi Detached Duplex (pcl 191),Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +Land,Whales County Estate Phase 2 Orchid Road Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached ( Pcl 062),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"115,000,000",1,1,1,5 beds,5 baths,5 Toilets +2 Bedroom Flat (pcl 178), Ikate Lekki Lagos,₦,"40,000,000/year",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex (009a),Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 5bedrooms Fully Detached Duplex House With Bq +swimming Pool +cinema,Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq+ Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette (pcl 014),Ikate Lekki Lagos,₦,"75,000,000",1,0,0,4 beds, baths, Toilets +Flourish Apartments And Terraces,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex (0020a),Chevron Lekki Lagos,₦,"195,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Estate Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex House With Bq,2nd Tollgate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Fully Detached Duplex House With Bq,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 3bedrooms Semi Detached Maisonnete Duplex House With Bq +swimming Pool For Sale In Ikate Lekki Lagos,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +1 Unit 4 Bed Semi Detached Duplex(pcl 110),Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds, baths, Toilets +2 Units Of 4 Bed Terrace (pcl 090)(pcl 091),Lekki Phase 1 Lekki Lagos,₦,"90,000,000/year",0,0,0,4 beds, baths, Toilets +Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets +10 Units Of Three Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5bedrooms Fully Detached Duplex House,Agungi Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached (pcl 052),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4 Bed Detached Duplex(pcl 107),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Fully Detached Duplex (pcl 131),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds, baths, Toilets +4bedrooms Semi Detached Duplex House With Bq +swimming Pool,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace (pcl 035),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex (pcl 140),Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Terrace Duplex (pcljuly21 005),Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets +5bedroom Fully Detached Duplex,Ologolo Opposite Zenith Bank Osapa London Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex House With Bq,Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Maisonette House With Bq +pool,Jakande Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex House With Bq +swimming Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex,Pinnock Estate Road Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,6 baths,6 Toilets +1bedroom & 2bedrooms Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Terrace Duplex,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +Estate Land,Orchid Hotel Road Lafiaji Oral Estate Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex (001a),Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets +2 Bedrooms Apartments,Barocci Apartments Opposite Agungi Bus Stop Ologolo Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 5 And 4bedrooms House With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex (0011a),Osapa London Lekki Lagos,₦,"180,000,000",0,0,1,5 beds, baths, Toilets +4 Semi Detached Duplex (pcl 053),Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex (pcl 212),Ikota Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached(pcl 061),Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +5bedroom Fully Detached Duplex(pcl 119),Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Terraces (pcl 104),Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4bedrooms Terrace Duplex House With Building Approval,Megan Chicken Lekki Ikota Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,5 Toilets +6 Units Of 4 Bedrooms Terrace Duplex (pcl 129),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 3bedrooms Fully Detached Duplex House With Bq +swimming Pool,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,1 beds, baths, Toilets +4 Bedroom Semi Detached Duplex (pcl 077),Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex House With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets +Two Units 6 Bedroom Fully Detached Duplex(pcl 111),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds, baths, Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000/year",0,0,0,2 beds, baths, Toilets +5 Bedroom Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets +Exclusively Built 5 Bedrooms Fully Detached Duplex (pcl 136),Ikate Lekki Lagos,₦,"270,000,000/year",0,0,0,5 beds, baths, Toilets +4 Units Of 4 Bedroom Duplex (carcass Level) (pcl 041),Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace ( Pcl 021),Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Flat (0049a),Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds, baths, Toilets +Luxury 2bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex (pcl 167),Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Maisonette Duplex House With Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex + Bq,By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Maisonette Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,1,4 beds,5 baths,5 Toilets +5bedrooms Fully Detached Duplex House With Bq For Sale In Ikate Lekki Lagos,Ikate Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex House With Bq For Sale In Ikate Lekki Lagos,Ikate Lekki Ikate Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Maisonette Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bed Fully Detached Duplex (pcl 112),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",1,1,1,5 beds,0 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex,Lekki 2nd Tollgate Tollgate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House,Chevron Lekki Conservation Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex Second Tollgate( Close To Road),Orchid Road Oral Estate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious Fully Detached 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"78,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex (pcl 048),Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Luxury 4bedrooms Semi Detached Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex House With Bq,Orchid Road By 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex House With Bq +swimming Pool +cinema +gym For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +2 Bedroom Flat (007a),Vgc Lekki Lagos,₦,"30,000,000",1,0,0,2 beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Duplex With Bq,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq +swimming Pool For Sale In Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets +30 Units Of Terrace And 4 Units Of Semi Detached Duplex, Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex (pcl 213),Ilasan Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly 4bedrooms Terrace Duplex House With Bq,By 2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex (0021a),Lekki Lagos,₦,"70,000,000",1,0,0,4 beds, baths, Toilets +4 Bedrooms Terrace Duplex House,Honey Dew Court Estate Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"28,000,000/year",1,0,0,2 beds, baths, Toilets +Newly Built 4 Bedrooms Semi Detached Duplex House With Bq,By Nicon Town Nicon Town Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex (pcl 137),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +4bedrooms And 5bedrooms Fully Detached Duplex House With Bq +swimming Pool For Sale In Lekki Lagos,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette (0047a),Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached (pcl 116),Lekki Phase 1 Lekki Lagos,₦,"256,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4bedrooms Fully Detached And Semi Detached Duplex House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,4 Toilets +3 Bedrooms Terrace (pcl 051),Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Flat (0040a),Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds, baths, Toilets +3 Units Of 4bedroom Fully Detached Duplex(pcl 095),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Semi Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex (0022a),Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex (pcl 046),Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +5 Units Of 4 Bedroom (pcl 105),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Conservation Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedrooms Semi Detached Duplex House With Bq For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,4 beds,4 baths,5 Toilets +"7 Units Of 3 Bedroom Flat (pcl 027), (pcl 028), (pcl 029)",Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets +5bedrooms Fully Detached Duplex House With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,Osapa London Lekki Lagos,₦,"400,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 2bedrooms Apartment,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex (0046a),Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths, Toilets +Newly Built 5bedroom Detached Duplex House & 4bedrooms Semi Detached Duplex House With Bq,Pantheon Smart Homes 2nd Tollgate Lekki Lagos Chevron Lekki Lagos,₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 4&5bedrooms Fully Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex House With Bq For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,5 baths,6 Toilets +Land With Governor's Consent,Drive By North Fourshore Estate Chevron Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace (008a),Vgc Lekki Lagos,₦,"40,000,000",1,0,1,4 beds, baths, Toilets +Land Suitable For Both Commercial And Residential Purposes,The Pearl Estate Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex (pcljuly21 003),Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex House With Bq,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"200,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedrooms Terrace (pcl 059),Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Terrace (pcl 117),Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex (0019a),Ikota Lekki Lagos,₦,"68,000,000",1,0,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex (pcl 220),Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4bedrooms Terrace Duplex House With Bq,Igbo Efon Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex (pcl 200),Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds, baths, Toilets +2 Bedrooms Apartments And 4 Bedrooms Maisonettes With Bq,Camberwall Advantage Ikate Lekki Lagos,₦,"44,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Maisonnette (pcl 099),Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4bedrooms Fully Detached Duplex House With Bq +study Room,B Chevron Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,4 Toilets +3 Bedrooms Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex House With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terrace Duplex (pcl 221),Lekki Phase 1 Lekki Lagos,₦,"75,000,000/year",0,0,0,4 beds, baths, Toilets +"4/4/5 Terrace, Semi And Fully Detached Duplex (pcl 181)",Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5bedrooms Fully Detached Duplex House With Bq,Ikota Lekki Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,6 Toilets +4bedrooms Detached Duplex House With Bq,Excel Court Orchid Road Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 5bedrooms Fully Detached Duplex House With Bq +swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom & 2 Units Of 2 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5bedroom Fully Detached Duplex House With Bq,By Lekki 2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette+bq,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +"5 Bedroom Detached House With Bq,",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Units Of 4 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"475,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Megamound Estate Idado Lekki Lagos,₦,"195,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace House With Bq,Dabiri Street Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Town House Detached Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"230,000,000/month",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Duplex Plus Bq,Ikota Lekki Lagos,₦,"120,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Lekki County, Ikota Villa Ikota Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,6 baths,5 Toilets +Furnished 5 Bedroom Duplex,"Second Toll Gate Lekki, Lagos Chevron Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Serviced Apartment,Spar Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury House,Lekky County Homes Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Off Omoriren Johnson Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 And 5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 4 Bedroom Terrace,Orchid Road/royal Pine/eleganza Bus Station Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,2nd Lekki Toll Gate Idado Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +3bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"58,000,000",0,1,1,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,"Lekki County Home Ikota, Road 16 Ikota Lekki Lagos",₦,"60,000,000/day",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +High Definition 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,Ivy Homes Estate Ikota Lekki Lagos,₦,"95,000,000/month",1,1,1,4 beds,4 baths,5 Toilets +3100 Square Meters Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +665sqms Of Bare Land,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat Apartment,Jakande Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +Magnificent 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +400sqm Land,Lekki County Ikota Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terraced Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki County Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +400 Sqm Land,Lekki County Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Lekki Epe Expressway Ikota Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Event Center,Orchid Road Chevron Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +665sqms Of Bareland,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Affordable 3 Bedrooms Terrace Duplex With One Room Bq,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hot Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 & 3 Bedroom Apartments,2nd Toll Gate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 & 3 Bedroom Apartments,2nd Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Built 5 Bedrooms Fully Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +669 Square Meters Of Land,Ivy Homes Lekki County Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat Apartment,Jakande Lekki Jakande Lekki Lagos,₦,"52,000,000",1,1,1,3 beds,3 baths,4 Toilets +3 Bedrooms Terrace Duplex And Bq,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +400sqm Land,Lekki County Megamound Estate Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Self Compound Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonnette With Boys Quarters,4 Bedroom Maisonnette With Boys Quarters Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse With Boys Quarters,3 Bedroom Penthouse With Boys Quarters Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 3 Bedroom Apartment,Beautiful 3 Bedroom Apartment Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Luxury 2 Bedroom Apartment Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 1 Bedroom Apartment,Brand New 1 Bedroom Apartment Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4bedoom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"950,000,000",0,0,1,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Duplex With Bq,Ilasan Ilasan Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,4 baths,4 Toilets +Aesthetically Built 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Solid 4 Bedroom Detached Duplex With Bq,"Off Southern View Estate, Olugborogan, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Smart Home,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Detailed 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Quality Construction Of 2 Bedroom Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex On 3 Floors With Bq,Lekki County Homes Megamond Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Detailed 5 Bedroom Semi Detached Duplexwith Bq,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq On Massive Land Space,Chevron Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Megamond Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Agungi Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment (internal To Be Completed),Horizon Height Estate Off Spar Supermarket Road Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Hotel Comprising 26 Bedrooms, Swimming Pool, Equipped Kitchen, Restaurant, Bar, Laundry",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached With Bq In Serene Environment,Orchid Road By Chevron Round About Lekki Lagos,₦,"70,000,000/month",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace With 1 Maid’s Room,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,0 beds,0 baths,0 Toilets +Classic 4 Bedroom Semi Detached Duplex In Good Location,"Chevron Alternative By Orchid Road, Oral Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Flat +bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000/sqm",0,1,0,3 beds,3 baths,3 Toilets +Luxury 2 Bedroom Flat, Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,1 baths,2 Toilets +Fully Furnished 4bedroom Detached Duplex,Serene Neighborhood Agungi Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Verified 600000sqm Waterfront Land With C Of O,Sharing Border With Vgc Waterfront Lekki Palms Addo Ajah Vgc Lekki Lagos,₦,"30,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse+ Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,0, beds, baths, Toilets +Waterfront Duplex With Bq And Penthouse,"Tulip Road, Pinnock Beach Estate Jakande Lekki Lagos",₦,"455,000,000",1,1,0, beds, baths, Toilets +Brand New 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,3 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +"26 Rooms Hotels With Swimming Pool On 1,250sqm Land",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"84,000,000",1,1,0, beds, baths, Toilets +Most Affordable Gated Cof O Land In Serene Location,"Beside Coopland Gardens,lafiaji Orchid Road Oral Estate Lekki Lagos",₦,"45,000,000/month",0,0,0, beds, baths, Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4bedroom Fully Detached Duplex With Bq , Fitted Kitchen",Mini Estate In Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex With Bq,"Off Southern View Estate, Olugborogan Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,H Homes Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Offplan Terrace Duplex + Bq,Decastle Orchid Road Chevron Lekki Lagos,₦,"55,000,000/sqm",0,1,0,4 beds,4 baths,3 Toilets +10 Plots Of C Of 0 Land In Prime Location,Orchid Road By Cheron Alternative Lekki Epe Express Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Verified C Of O Waterfront Estate Inside A Built Up Lekki Palms City Estate,Lekki Palm City Estate By Vgc Waterfront Vgc Lekki Lagos,₦,"35,000,000/sqm",0,0,0, beds, baths, Toilets +Brand New Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets +Premium 3 Bedroom Apartment With Bq,Conoil/enyo Petrol Station Ikate Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,2 baths,2 Toilets +Brand New 4 Bedroom Detached Duplex,Orchid Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +9plots Of Land & Half,Orchid Road Lekki Lagos,₦,"800,000,000",1,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Apartment,Off Spar Supermarket Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq,Before Chevron Toll Gate Chevron Lekki Lagos,₦,"72,000,000",1,1,0, beds, baths, Toilets +Brand New Luxury Contemporary 5 Bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"120,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Orchid Hotel Chevron Lekki Lagos,₦,"69,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",1,1,0, beds, baths, Toilets +Waterfront Land In Built Up Location Inside Lekki Palm City Estate,Lekki Palm By Vgc Waterfront Vgc Lekki Lagos,₦,"35,000,000/sqm",0,0,0, beds, baths, Toilets +3bedroom Flat With A Bq,Off Nigeria Conservation Drive Olugborogan Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 2 Bedroom Flat,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,1 baths,2 Toilets +Brand New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classic 5 Bedroom Fully Detached Duplex In Serene Location,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"110,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +New 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedrooms Apartments With S. Pool & Modern Facilities At Prime Water Garden Estate Lekki Phase One Lagos.,Prime Water Garden Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedroom Terraced Houses,Off Ochid Road Lekki Lagos,₦,"66,000,000",1,0,0,4 beds,4 baths,5 Toilets +"500 Square Metres Land At Pinnock Beach Estate, Osapa London Lekki.",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"445,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House,Serene Neighborhood Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Distressed Newly Built 4 Bedroom Fully Detached Duplex In Built Up Location,"Lekki Conservative Centre, Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets +Waterfront Land Measuring 500sqm,"Tulip Road, Pinnock Estate Jakande Lekki Lagos",₦,"200,000,000",1,1,0, beds, baths, Toilets +Offplan Luxury 2 Bedroom Apartments In Serene Location,Rubby Apartments Ologolo Lekki Lagos,₦,"35,000,000/sqm",1,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +Verified Waterfront Land,Lekki Palm City Estate Addo/vgc Waterfront Ext Vgc Lekki Lagos,₦,"9,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Duplex,Chevron Lekki Lagos,₦,"5,000,000/year",1,0,0,4 beds,4 baths,4 Toilets +"Filling Station On 3,786 Square Metres Land (an Acre) At Ilasan By Lekki Expressway",By Lekki Expressway Ilasan Lekki Lagos,₦,"2,000,000,000",0,0,0,1 beds, baths, Toilets +9bedroom Mansion Fully Detached Luxury House For Sale Located At Nicon Estate Lekki Sitting On 1000sqm Land.,In The Estate Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,9 beds,9 baths,10 Toilets +3 Units Of Exquisite 5 Bedroom Detached Houses,"Lekki, Right Hand Side, Close To Oniru Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Serviced Apartment,Horizon Height Estate Off Spar Supermarket Road Ikate Lekki Lagos,₦,"54,000,000",1,0,0,3 beds,3 baths,4 Toilets +5bedroom Detached Duplex (executive),Lekki County Estate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Gated C Of O Land In A Secured Environment,"Victoria Crest By Orchid Road,lekki Epe Express Oral Estate Lekki Lagos",₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury Built 2 Bedroom Maisonette + Bq,Ambiance Estate Freedom Way Ikate Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,0 baths,0 Toilets +Land,On Freedom Way Off Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classic 5 Bedroom Fully Detached Duplex In Built Up Environment,Bueno Vista Estate Orchid Road Lekki Epe Express Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Verified Government Approved C Of O Land,Orchid Road By Eleganza Round About Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Smart 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"76,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex In Build Up Location,Victory Court Extste 2 Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,3 baths,3 Toilets +4bedrooms Fully Detached Duplex And A Bq,Serene Estate Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"395,000,000",0,0,0,0 beds,0 baths,0 Toilets +667 Square Metres Land Well Sandfilled And Gated At Osapa London Lekki With Governor's Consent.,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex In Serene Location,Ikate Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +Govt Approved 4 Bedroom Semi Detached With Bq,Maven Court Orchid Road Lekki Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Buy A House With Mortgage,Lekki Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets +Brand New 3 Bedroom Semidetached,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Smart Detached Duplex With Pent House Bq,Lekki County Ikota And Venue Vista Orchid Road Ikota Lekki Lagos,₦,"142,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Smart Duplex With Pent House,Benue Vista And Lekki County After 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,4 Toilets +5 Bedroom Detached Smart Duplex,Lekki County Ikota And Venue Vista Estate Orchid Road Ikota Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"110,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Flat,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,4 Toilets +3 Bedroom Fully Detached Bungalow,Awoyaya Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom Detached Duplex,S Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,1, beds, baths, Toilets +A Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Duplex Carcass,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Ikota Lekki,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Distress Sale 3 Bedroom Terrace Bungalow,Orchid Ikota Lekki Lagos,₦,"27,000,000",1,0,0,3 beds,3 baths,4 Toilets +A Piece Of Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +A Fully Serviced Two Bedroom Apartment,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets +"Luxury Maisonnete With Swimming Pool, Gym & Cctv",Jakande Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Flat,Agungi Lekki Lagos,₦,"30,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +A Newly Built 4 Bedroom Duplex With A Boys Quater,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Elf Bustop Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,1, beds, baths, Toilets +A 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bed Room,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Available Property,Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,"Opposite Ikate, Ilasan Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments,Ikate Back Of World Oil Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex We Bq,Elf Bustop Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In An Estate,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 2 Bedroom Flat,"Orchid Road, Opposite Chevron Lekki Lagos",₦,"23,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Newly Built Two Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +2bedroom And 3bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex With Bq In A Secured Area,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,0 beds,0 baths,0 Toilets +Luxurious 2 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Alternative Road Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With 2 Sitting Rooms.,Ilaje Bus Stop Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Bq,4 Lekki Intersection Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +"A 3 Bedroom Duplex, With Bq","Lekki Gardens, Ajah Area Lekki Phase 2 Lekki Lagos",₦,"27,000,000/year",0,0,0,3 beds,4 baths,5 Toilets +A Plot Of Land,Ologolo Spg Ext. Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex With Bq,"Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq And Jacuzzi,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Half Plot Of Land,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"A Newly Built, 3 Bedroom Flat",Agungi Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,3 Toilets +A 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"106,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Axis Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Townhouse,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Terrace Duplex With Governor's Consent,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +A 3 Bedroom Flat,Ologolo Lekki Lagos,₦,"37,000,000/year",1,1,0,2 beds,3 baths,3 Toilets +4 Units Of 4 Bedroom Terraces,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly 5 Bed Room With 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terrace,"Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury & Spacious 4 Bedroom Maisonette With Bq In A Secured Area,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets +Affordable Luxury 3 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,4 baths,5 Toilets +Luxury 3 Bedroom Maisonette With Bq With 24 Hours Electricity,Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +A Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built Mini Flat,"Salem,l Right Ikate Lekki Lagos",₦,"27,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,S Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Manssionette With 2 Room Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,6 beds,6 baths,7 Toilets +A Newly Built 5 Bedroom Duplex,Chevron Idado Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built 5 Bedroom Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",1,1,1,6 beds,6 baths,7 Toilets +A Piece Of Land,Ologolo Lekki Lagos,₦,"30,000,000/year",0,0,0, beds, baths, Toilets +A 2 Bedroom Flat With Bq,"Newroad, Opposite Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq On 2 Floors.,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"67,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Maisonette Duplex On Two Floors In A Secured Area,Off Freedom Way Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Mansion House,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Luxurious Bedroom,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Room Flat,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bed Room With 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Newly Built, 4 Bedroom Duplex",Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With 1 Bq,S Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Luxurious 3 Bedroom Maisonette Duplex On Two Floors In A Secured Area,"Off Freedom Way, Lekki Phase 1 Ikate Lekki Lagos",₦,"80,000,000",0,0,0,3 beds, baths, Toilets +3bedrooms Semi Detached Maisonette With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Semi Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"90,000,000",0,1,1,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom With 1 Bq,Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +9 Units Of 3 Bedroom Blocks Of Flat,Jakande Lekki Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Apartments With Elevator & Acs In A Great Environment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bed Room Yet To Be Completed,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Newly Built 2 Bedroom Flat,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 3 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxurious 2 Bedroom Maisonette With 24 Hours Electricity And Security,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets +Luxury 2 Bedroom Apartment With Cinema And Shopping Mall Nearby,"Orchid Road, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,2 beds, baths, Toilets +A 2 Bedroom Flat,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Contemporary Designed 5 Bedroom Detached Duplex,Lekki County Home Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment,"Off Freedom Way, Off Regional Road Lekki Chevron Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Newly Built, 3 Bedroom Flat",Salem Right Ikate Lekki Lagos,₦,"45,000,000",1,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Flat,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Very Luxurious 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Mini Flat/studio,Salem Ilasan Lekki Lagos,₦,"14,000,000",0,1,0,1 beds,1 baths,1 Toilets +4 Bedroom Detached House Fully Furnished,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Exquisite 3 Bedroom Apartment With Swimming Pool, Elevator And Gym",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Serviced Spacious Blocks Of Flats,Lekki Lagos,₦,"1,200,000,000",1,0,0,10 beds,10 baths,10 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq With Cctv,Second Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex With Self Compound,Idado Lekki Lagos,₦,"68,000,000",0,1,0, beds, baths, Toilets +"Affordable, Luxurious And Secured 1 Bedroom Apartment",Ologolo Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Available,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"31,000,000/year",1,1,0,2 beds,2 baths,3 Toilets +Plots Of Land,Ologolo Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets +Contemporary 5 Bedroom Fully Detached,Lekky County Homes Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Gra Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +A Plot Of Land,Ologolo Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Masterpiece 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,7 Toilets +Newly Built 3 Bedroom Penthouse + Bq,Chevy Castle Estate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Newly Built Maisonette + Bq,Chevy Castle Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Newly Built Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets +1 Bedroom Luxury Apartment,Chevy Castle Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +Land,"Lekki Pride Estate Ii, Abraham Adesanya, Eti Osa Lgc Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached,Dunvale V Estate On Orchid Road Off Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Terraces,Dunvale V Estate On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Maisonette,Dunvale V Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace,Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets +1 Room Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette Plus Bq,Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terraces With Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Maisonette,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Block 25 Extension Off Ladipo Latinwo Street Lekki Phase 1 Lekki Lagos,₦,"420,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedrooms Penthouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Serviced 4 Bedrooms Terraced Duplexes,Orchid Road Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Proximity To Mega Chicken Chevron Oil Company Megamound Estate Recreational Centers Ikota Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets +Classy 4 Bedroom Maisonnette Penthouse,Classy 4 Bedroom Maisonnette Penthouse With Boys Quarters Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Atlantic View Estate Along Alpha Beach Road Lekki Epe Express Way, Lagos Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classy 3 Bedroom Maisonnette With Boys Quarters,Classy 3 Bedroom Maisonnette With Boys Quarters Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Maisonnette With Boys Quarters,Luxury 2 Bedroom Maisonnette Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,D Ikate Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,F Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale With Swimming Pool,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedrooms Flat,Osapa London Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,2 baths,3 Toilets +Clean 3 Bedroom Flat,Primewater View Gardens Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,4 Toilets +4bedroom Semi Detached Duplex,D Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House For Sale With Swimming Pool,Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Furnished Fully Detached House Sale,Because Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Tulip Haven Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Flat Apartment,Lekki Lagos,₦,"35,000,000",1,0,0,1 beds,1 baths,2 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace,"Opp. Nicon Town, Ilasan Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated Exquisitely Finished 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Standard 1 Bedroom Flat,Standard 1 Bedroom Flat With Certificate Of Occupancy Title Lekki Lagos,₦,"35,000,000",1,0,0,0 beds,0 baths,0 Toilets +Masterpiece 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached & 4 Bedroom Semi Detached Duplex,Buena Vista Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Well Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"800,000,000",0,1,0,6 beds,0 baths,0 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +Newly 4 Bedroom Semi Detached Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detach Duplex,16 Bonnycastle St Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Buit 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex,Pinnock Lekki Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,1,1,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Buit 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Hectares Of Land Strategically Located,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategically Located Land In An Already Built Up Environ,"Badore, Itii Coperative Villa Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +4bedroom Contemporary Semi Detached,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment In A Gated Community,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Finished Fully Detached Duplex,Felicia Elegushi. After Kohinoor Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets +4 Units Of Luxury Detailed 5 Bedroom Fully Detached Duplex,Alcadia Extension Osapa London Lekki Lagos,₦,"460,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartments + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached House,"Tulip Estate, Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,4 Toilets +Spacious 4 Bedrooms Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Harris Drive Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,"Vgc Regional Road, Lekki Vgc Lekki Lagos",₦,"80,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets +Tastefully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,2 beds, baths, Toilets +A Well Maintained 3 Bedroom Semi Detached House With Boy's Quarter.,Blessing Kayode Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,3 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Unit Of 2 Bedroom Flat,"5, Harunaabiodun Street, Behind Stop Over Hotel Araromi, Ibeju Town, Lekki Phase 2 Lekki Lagos",₦,"15,000,000/year",0,0,0,2 beds,2 baths,2 Toilets +Stunning 5 Bedroom Mansion,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex+ Bq With Pool,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Premium Quality 3 Bed Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Maintained 4 Bedroom Semi Detached House With Boy's Quarter.,Blessing Kayode Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,10 beds,4 baths,4 Toilets +Smart Voice Control 4 Bedroom Terrace Duplex,"Victoria Crest Estate, Orchid Hotel Road, Lekki 2nd Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +Luxury 5 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Land In A Beautiful Estate,Northern Foreshore Chevron Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Eleganza Estate Immediately After Toll Gate Ikota Lekki Lagos,₦,"50,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds, baths, Toilets +Luxury 4bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Conservation Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets +Spacious 1 Bedroom Apartment,Lafia Aji (orchid Road) Vgc Lekki Lagos,₦,"19,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartments + Bq In A Good Location,Off Freedom Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land Suitable For Residential Purposes In A Good Estate,Alpha Beach Area Jakande Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Available Land,4th Roundabout Ikate Lekki Lagos,₦,"4,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets +4bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached,"Da Silva,off Chris Madueke Street, Lekki Phase 1 Lekki Lagos",₦,"135,000,000/year",0,1,0,5 beds,4 baths,3 Toilets +4 Bedroom Semi Detached House With Boy's Quarter,"Chevron Alternative Route, Lekki Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Unit Of 5 Bedroom Terrence Duplex,"13/15 Adegbenle Street, Chevy View Email, Chevron Lekki Lagos",₦,"90,000,000/year",0,1,0,5 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,0 baths,0 Toilets +7 Bedrooms House With 2 Bq,Vgc Vgc Lekki Lagos,₦,"380,000,000/year",0,0,0,7 beds,6 baths,6 Toilets +2 Bedroom Spacious Home,Salem Ikate Lekki Lagos,₦,"50,000,000",0,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Neat 4 Bedroom Semi Detached House With One Room In Built Boy's Quarter Within A Secured Estate.,"Divine Mercy Close, Kayode Blessing Estate, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"175,000,000",0,0,0,3 beds,3 baths,3 Toilets +Nice 4 Bedroom Terrace,Orchid Road 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +Three Bedroom Flat,Oral Estate Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets +Land Situated In A Beautiful Estate,Northern Foreshore Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + Bq In A Good Location,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets +1 Bedroom Apartment In A Good Location,Ologolo Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets +Luxurious 3 Bedroom Maisonette,Off Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Waterfall Duplex With A Pool,Northern Foreshore Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds, baths, Toilets +3 Bedroom Apartments+bq (off Plan),Ikate Lekki Lagos,₦,"88,000,000",1,0,0,3 beds,3 baths,4 Toilets +Magnificent 2 Bedroom,Off Freedom Way Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Leisure Land Park Jakande Lekki Lagos,₦,"3,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Off Monastery Road Sangotedo Ikate Lekki Lagos,₦,"6,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Off Monastery Road Sangotedo Ikate Lekki Lagos,₦,"6,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +Land,Vgc Lekki Lagos,₦,"35,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq And Pool,"Ikota,lekki Villa Estate Ikota Lekki Lagos",₦,"205,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Smart Apartments Of 1 & 2 Bedroom Flats.,"Off Orchid Road, Idado Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,0 baths,3 Toilets +20units Of 4 Bedroom Terrace House,"Off Orchid Road, Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,0 baths,5 Toilets +Well Serviced Built 2 Bedroom Terrace Duplex,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Well Serviced Built 3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +10 Bedroom Duplex,Off Jakande Jakande Lekki Lagos,₦,"140,000,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious Semi Detached Four Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Lovely 2 Bedroom Apartment With A Room And 3 Bedroom Apartment Without Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly 5 Bedroom Duplex +bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 3 Bedroom Apartment + Attached Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Detached,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,0 beds,0 baths,0 Toilets +A Magnificently Finished 10 Units Of 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Five Bedroom Duplex + Pent House,Osapa London Lekki Lagos,₦,"275,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land Measuring 904.783sqm,"Lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Duplex With Swimming Pool,"2nd Toll Gate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",1,1,1, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +997 Meters Of Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 2bedroom Terrace,"Orchid Road By Second Toll Gate, Chevron Chevron Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,1,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Bungalow,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"160,000,009",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq And A Gatehouse,"Chris Efuyemi Onanuga Street, Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos",₦,"265,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +5bedroom Super Duplex,Megamound Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,"Orchid Road, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 2 Bedrooms Apartments,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex & Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,6 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedrooms Apartment With Maidroom (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Super Luxury 5 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,"Alpha Bay Estate, Off Alpha Beach Road Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"Off Freedom Way, Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Scheme 2 Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Super Luxury Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Finished 5 Bedroom Detached Duplex With Bq,In A Highly Secured Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached King Size Duplex,Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5bedroom Super Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,6 baths,6 Toilets +Multiple Units Of 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +New 4 Bedroom Semi Detached Duplex,Conservation Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom With Bq Duplexes Maisonette,Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +Distress Sales Of 3 Bedroom Duplex,Lekki Gardens Estate Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Cowrie Creek Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Victoria Crest Ii Opposite Ocean Bay Estate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets +Newly Built Five Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,5 Toilets +A Fully Serviced 2 Bedroom Flat,Lekki Conservative Center Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,0,0,2 beds,2 baths,2 Toilets +Luxury Units Of Well Finished 2 Bedrooms Apartments,"Off Conservation Road, By Chevron Toll Gate, Chevron Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets +: A Unit Of Well Maintained 4 Bedrooms Terrace Bungalow,Orchid Road Lekki Lagos,₦,"3,750,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House Fully Serviced,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0, beds, baths, Toilets +"Dry & Fenced Land Measuring 1,438sqm",Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex With Maid's Room,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +1200 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"140,000,009",0,1,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Units Of Terrace Houses,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Solidly Built Block Of 6 Numbers Of 3 Bedrooms Flat With Bq,Temple And Castle Drive Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Semi Detached With Bq,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Without Bq,Victoria Crest Ii Estate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Angles Court Abijo Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex With Maidroom (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,1,0 beds,0 baths,0 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa Lekki Osapa London Lekki Lagos,₦,"430,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedrooms Penthouse With Maid's Room (fully Serviced),Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +Serviced 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +1 Bedroom Apartment (fully Serviced),Seagate By Spaar Ikota Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +An Excellent 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Off Admiralty Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Duplex,Off Jakande Jakande Lekki Lagos,₦,"140,000,000,000,000",0,0,0,10 beds,10 baths,8 Toilets +Brand New 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplexes,Ologolo Lekki Lagos,₦,"60,900,000",0,0,0,0 beds,0 baths,0 Toilets +15units Of 3bedroom Flats With 5 Units Of 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Orchid Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Orange Island Ikate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +650 Sqm Land, Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Luxurious Finished 4 Bedroom Fully Detached Duplex And 1 Bq,Lekki Lekky Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Osapa London Lekki Lagos,₦,"228,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Silver Spring Estate Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Maisonette & 2bedrooms Apartments,Ikate Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,S Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale: The Land Has A 2wing Of Semi Detached Terrace Duplex Plus A Foundation,... Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +This Exquisitely Finished 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate.,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lekky Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxuriously Built 5 Bedroom Fully Detached Duplex Situated In The Heart Of Chevron, Lekki",Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +"This 7bedroom Fully Detched Duplex(commercial Property), With Two Service Quarters",Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,7 beds,7 baths,8 Toilets +Contemporary 5 Bedroom Detached Duplex With Pool,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +For Sale In Cowrie Creek Estate,Cowrie Creek Estate Osapa London Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +This Exquisitely Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate.,Chevron Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +240 Per Sqm Water Front Land,Orange Island Lekki Lagos,₦,"240,000",0,0,0,0 beds,0 baths,0 Toilets +This Luxurious Finished 4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekki Phase 2 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land At 1000 Sqm Meters,Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplexes; With Maid’s Quarters,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Semi Detached Duplex House For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Ikate Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Beautifully 5 Bedroom Detached Duplex,S Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +"This Lovely 5 Bedroom Fully Detached Duplex With 1 Room Bq Features Spacious Compound, Stamped Concrete Floor, Spacious Living Room And Family Lounge, All Rooms En Suite, Fully Fitted Kitchen",Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets +"A Tastefully Finished 5 Bedroom House With Boys' Quarters, All Rooms En Suite", Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land With A Structure On It In An Estate,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In Cowrie Creek Estate Size *800sqm* Block *a*, Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq On A 600sqm Land,Orchid Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +"3 Spacious Bedrooms Apartments With Bq, Comes With 50kva Generator,",Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,"Off Bisola Durosinmi Etti, Plot 28 Caroline Atounah Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,6 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"58,000,000",1,0,0,2 beds,2 baths,3 Toilets +5bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,7 Toilets +2 Bedroom Luxurious Apartment With Bq,15c Eru Ifa Road Ikate Lekki Ikate Lekki Lagos,₦,"58,000,000",1,1,1,2 beds,2 baths,2 Toilets +Serviced 3 Bedroom Apartment,Serviced 3 Bedroom Apartment Ikate Lekki Lagos,₦,"78,000,000",1,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment With Boys Quarters,Serviced 2 Bedroom Apartment With Boys Quarters Ikate Lekki Lagos,₦,"58,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets +World Class Shopping Mall,Colonel Mall Ologolo Lekki Lagos,₦,"1,500,000/sqm",1,1,1,0 beds,10 baths,0 Toilets +2600sqm Land For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Wole Ariyo Street, Off Chris Madueke St, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,7 Toilets +2 Bedroom Penthouse With Beautiful View,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,1 beds,1 baths,2 Toilets +Land,Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Highbridge Park, Ashagun Village Lekki Free Trade Zone Lekki Lagos",₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Highbridge Park, Ashagun Village Lekki Free Trade Zone Lekki Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2bedroom Apartment,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,"Mosere Kogo Village, Lekki Pennisula Lagos Behind Eko Akete Lekki Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplexes With Bq,"Bosmak Haven Estate, Harris Drive Vgc Lekki Lagos",₦,"77,500,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Lekki Villa Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Spacious 3bedroom Flat(upstairs).,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lekki Peninsula Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +"Terrace &duplexes , Emcel Court","Orchid Area, Close To The Toll Gate, Emcel Court Chevron Lekki Lagos",₦,109,1,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,"Haris Drive, Vgc, Lekki/ Romax Home 10 Vgc Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace House,Ekwuemesi Street Idado Lekki Idado Lekki Lagos,₦,"350,000,000",0,1,0,4 beds,5 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Spacious 2 Bedroom Flat.,"Off Freedom Way,ikate. Ikate Lekki Lagos",₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex With A Bq.,Ikota Ikota Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Brand New 2 Bed Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Brand New 3bedroom Terrace With A Bq And A Store,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Semi Detached Duplex.,Ikate Ikate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Spacious 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +A 2 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +A Fully Serviced 2&3 Bedroom Flat,"Second Toll Gate, Orchid Road. Chevron Lekki Lagos",₦,"49,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four(4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 4bedroom Semi Detached,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Mall,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets +Newly Built Four(4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Idado Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Maisonette Penthouse With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Poland Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,6 baths,6 Toilets +Serviced 4bedroom Automobile Terraced Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Fully 4bedroom Fully Detached Duplex,Brigade Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Tope Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Luxurious And Serene 4bedroom Semi Detached Duplex,Yola Street Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +Aspacious 4bedroom Authomobile Terrace Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxurious Automobile 4bedroom Fully Detached Duplex,Yola Street Osapa London Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Super Exquisitely Built 1bedroom Mini Flat,2nd Till Gate Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,1 beds,2 baths,2 Toilets +"4bedroom Samidetached Duplex Available For Sale Location,lekki Phase 2 Ikota Villa",Bello Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Tastefully Built 3bedroom With Bq,Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +1021.94sqm Land,Ologolo Ologolo Lekki Lagos,₦,"85,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Serviced 4bedroom Automobile Terraced Duplex,Yola Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +5bedroom Semi Detached Duplex,Freeman Chevron Lekki Lagos,₦,"77,000,000",1,0,0,5 beds,6 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +New Listing Alert! 4bedroom Semi Detached Duplex With A Bq . .,"Mobil Estate Road,lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,1,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"51,000,000",1,1,0,0 beds,0 baths,0 Toilets +Land Fully Fenced And Gated,Shafi Sule Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New And Serviced 2 Bedrooms Apartment,Argungi Agungi Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary Luxury 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished Well Spaced 4 Bed Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built 3 Bedroom Apartment With Bq,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Tastefully Finished 5 Bed Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Contemporary Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land,Road 14(adebayo Doherty) Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq And Swimming Pool (pr.c),Lekki Right Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Cornerpiece Land,"Bisola Durosimi Etti Drive,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",1,1,0,0 beds,0 baths,0 Toilets +Six Bedroom Mansion,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Off Chevron Toll Gate, Lekki/h Homes Chevron Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Contemporary 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Masterpiece 5 Bed Fully Detached Edifice,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Admiralty Way,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Carcass,U3 Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Mansion, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4/5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bed Contemporary Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Duplex On Two Floors With Bq And Penthouse,"Off Admiralty Road, Lekki Phase One Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Mansion With A Penthouse,R Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +Elegantly Built 5 Bed Fully Detached House,2nd Tollgate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Suplex With Bq,2nd Tollgate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Gorgeous Luxury 5 Bed Fully Detached Home,Lekki County Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Unit Of 4 Bedroom Terrace House,"Road 17, Cluster Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land With A Structure On It,Off Oladimeji Allo Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Cornerpiece Land With A Mansion On It,"African Lane,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +Top Notch 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Detached Duplex With Bq And Private Compound,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2&3 Bed Fully Serviced Apartments,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean Spacious Brand New 4bed Terrace With A Room Bq,Ikate Elegushi. Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex,Oniru Axis Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Quality 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedrooms Detached Duplex On Two Floors With Study,Chevron Toll Gate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Decently Built 4 Bed Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built And Serviced 4 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Built 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land With A Structure,Olawole Onitiri Cole Street Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,0 baths,0 Toilets +Classy 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land With A Structure,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex At Bisola Durosimi Etti Lekki Phase 1,"Bisola Durosimi Etti Drive,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced Automated 4 Bed Terrace Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Alluring 4 Bed Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Bungalow,"Agelica Avenue, Good Home Estate, Lagos State. Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Gorgeous 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury One Bedroom Apartment,Bridgegate Estate Agungi Lekki Lagos,₦,"26,000,000",0,1,0,1 beds,2 baths,2 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate/christabel's Gardens Lekki Lagos,₦,"69,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex (pr.b),Lekki Right Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +Gorgeous Superbly Built Fully Automated 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress 4 Bedroom Terrace Duplex With Bbq,Lekki Conservation Center Road Chevron Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets +Commercial Land,Road 14(adebayo Doherty) Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Niche Quality Value Centric 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedrooms Detached Duplexes With Bq And Private Compound,Chevron Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land With A Building,Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Fully Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +2/3 Bedroom Serviced Apartment,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land With A Building On It,"Omorinre Johnson Street ,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Creek Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Elite Contemporary 4 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced Well Built Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Niche Quality Magnificent 5 Bed Luxury Duplex,Lekki County Lekki Lagos,₦,"205,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Built 2 Bedroom Apartment,Bridgegate Estate Agungi Lekki Lagos,₦,"31,500,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 4 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Standard Finished 5 Bed Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Stunning Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Lekki /vella Homes Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land With A Mansion,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,Adedeji Street Of Bisola Durosimi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bed Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,0 baths,0 Toilets +Brand New Partially Furnished 4 Bedrooms Terrace Duplex,Off Admiralty Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace,Beside Prime Water View Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,0 baths,0 Toilets +Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Behind Tantalizers Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terraces,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property Measuring 950sqm,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With Bq*,Ikate Lekki Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonnette,4 Bedroom Maisonnette In A Serene Estate Lekki Lagos,₦,"55,000,000",1,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Semi Detached Duplex,Serviced 3 Bedroom Semi Detached Duplex Lekki Lagos,₦,"50,000,000",1,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,3 Bedroom Terrace Duplex Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonnette,3 Bedroom Maisonnette In A Built Up Location Lekki Lagos,₦,"45,000,000",0,1,0,0 beds,0 baths,0 Toilets +A Newly Built 2 Bedroom Terrace Duplex,Orchid Road Van Daniels Estate Oral Estate Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Duplex,Lekki Conservation Court Estate Oral Estate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex,Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Absolutely Value Centric 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"270,000,000",0,0,1,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,"Okun Ajah, Lafiaji Jakande Lekki Lagos",₦,"90,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse,Ikate Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisite 4 Bedroom Terraced Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Smart Home,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Four (4) Bedroom Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Four(4) Bedroom Terraced Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Kunsela Road Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"35,500,000/year",1,1,0,2 beds,2 baths,3 Toilets +Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Jakande Axis Jakande Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Chevron Tollgate Lekki Chevron Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Orchid Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Fully Detached Duplex With Gym, Cinema & Swimming Pool For Sale",Osapa London Lekki Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +Affordable 4 Bedroom Terrace,Ikota Lekki Ikota Lekki Lagos,₦,"64,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Ikota Lekki Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq For Sale,Agungi Lekki Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Apartment,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Apartment,Chevron Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Apartment,Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Ikota Lekki Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Agungi Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace,"Orchid Road, Lekki Conservation Centre Chevron Lekki Lagos",₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +Luxury 2 Bedroom Terrace,"Victoria Crest Estate, Orchid Road Lekki Lagos Chevron Lekki Lagos",₦,"41,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex+bq,"H Homes, Off Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Sem Detarched Duplex,Orchid Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,3 beds,3 baths,4 Toilets +Sharply Looking 4 Bedroom Semi Detached Duplex*,Orchid Lekki Lagos Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +1300sqm Fenced And Gated Residential Bareland,Off Oriwu Street Petrocam Elf Bus Stop Lekki Scheme 1 (rhs) Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +7730sqm Bareland,Lekki Epe Expressway Elf Bus Stop Beside The Banks Lekki Scheme 1 Lago Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +1404sqm Land With Building,Off Tf Kuboye Str Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Terrace Duplex+ Bq,Abijo Gra Jakande Lekki Lagos,₦,"36,000,000/month",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Mansion,Ikate Lekki Lagos,$,"1,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,009,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ocean Bay Estate Chevron Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Maisonnette,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom + Bq Penthouse,"Camberwall Advantage, Lekki 1 Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,"Camberwall Advantage, Lekki 1 Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets +A 2 Bedroom Apartment With Bq,Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment With Bq,Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Maisonette,"Camberwall Advantage, Ikate Lekki Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace With Bq,"Off Freedom Way Off Regional Road, Lekki Lagos",₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Home,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets +1 Bedroom Apartment,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"20,000,000",1,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Fully Detached Castle + Bq,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,"De Castle Max, Orchid Road, Lafiaji Directly Opposite Cooplag Gardens Estate, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraces Castle Duplex + Bq,"De Castle Max, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Lekki Lagos,₦,"52,000,000",1,0,0,0 beds,0 baths,0 Toilets +Tasteful 3bedroom Flat Apartment.,Bera Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +"5 Bedroom Luxury Duplex + 2 Servant Room Inside Northern Foreshore Estate, Off Chevron Drive Lekki",Northern Foreshore Estate Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,7 baths,8 Toilets +5 Bedroom Fully Detached Duplex + 1 Room Bq,Lilly Street/tulip Haven Estate/abiola Court 10 Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Luxury Duplex + 2 Room Bq,Chevron Lekki Lagos,₦,"340,000,000",1,1,0,0 beds,0 baths,0 Toilets +Classic 4 Bedroom Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,7 Toilets +3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Luxury Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,1,5 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets +Royal Standard 5 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,8 Toilets +4 Bedroom Semi Detached Triplex Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Masterpiece 5 Bedroom Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Luxury Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 5 Bedroom Duplex,Idado Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Luxury Duplex With A Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,4 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,6 Toilets +Decently Finished 4 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,6 Toilets +Brand New Office Space,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Sem Detarched Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,6 Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gorgeous 5 Bedroom Duplex,Lekki County Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Luxury Duplex With A Bq,Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,3 baths,3 Toilets +Serviced 4 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Abijo Lekki Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,0 baths,7 Toilets +Fully Finished 4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Terraced Town House,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Toll Gate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lixury 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Luxury Duplex With A Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,009,009",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Sem Detarched Duplex With Bq,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom Home,Lekki County Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,8 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,8 Toilets +Spacious 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds, baths, Toilets +3 Bed Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +Luxury Built 4 Bedroom Duplex,Idado Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Triplex Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,1,4 beds,4 baths,4 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets +"5 Bedroom Fully Detached Luxury Duplex With Penthouse, Cinema And A Swimming Pool",Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 2 Bedrooms Terrace,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Gra Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Terrace,Tulip Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Six (6) Units Of Finished 5bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,7 baths,7 Toilets +Fully Serviced 2bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached House With A Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex With Bq,Mega Chicken Ikota Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +Land,"Whale County Estate Phase 1, Opposite Cooplag Estate Lekki Lekki Phase 2 Lekki Lagos",₦,"45,000,000/day",1,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Peninsula Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached With Bq In Orchid Road,Lekki Conservative Center Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Duplex With Bq, Swimming Pool And Gym","White Oak Estate, Ologolo Lekki 1. Ologolo Lekki Lagos",₦,"285,000,000",0,1,1,5 beds,5 baths,6 Toilets +600sqm Land,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Luxury Fully Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex,"Abijo Gra, Brookshill Estate,close To Shoprite Lekki Phase 2 Lekki Lagos",₦,"35,000,000/day",1,1,1,3 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchids Road Royal Pinned Estate Orchids Lekki Phase 2 Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +Luxury Semi Detached Duplex With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Idado Idado Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom With Bq,Oba Eleguchi Palace Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Affordable 3 Bedroom Maisonette,"Ambiance Heights, Freedom Way, Ikoyi Link Bridge, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,4 baths,4 Toilets +Brand New 4 Bedroom En Suite,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Akodo Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Castle Duplex + Bq,Orchid Hotel Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Tulip Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets +Affordable 3 Bedroom Apartment,Freedom Way Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Fully Serviced Brand New 1,2 & 3 Luxury Apartments With These Amazing Features In A Serene Enviroment.","Megamond Estate, Lekky County Homes Ikota Lekki Lagos",₦,"27,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detach Duplex + Bq,Mega Chicken Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 2 Bedroom Apartment With Bq,Godmade Connct Court 4 With Governor’s Consent Flexible Payment Plans Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,1,2 beds,2 baths,3 Toilets +3 Bedroom Apartment With Bq,Godmade Connect Court 4 With Governor’s Consent Flexibility Payment Plans Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Godmade Connect Court 4 With Governor’s Consent Flexible Payment Plans Richmondavenue Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Super Finished Four Bedrooms Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 1bedroom Apartment,Ruby Apartments With Governor’s Consent Flexible Payment Plans Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,1,1 beds,1 baths,2 Toilets +Classic 4 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Serviced 1,2,3 Bedroom Apartment With Swimming Pool And Gym",Chevron Lekki Toll Gate Chevron Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Terrace Duplex,Lekki 3rd Roundabout White Oak Estate Spa Lekki Jakande Lekki Lagos,₦,"95,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets +Well Built And Designed 5 Bedroom Fully Detached Duplex,"Megamount Estate, Lekki County Homes, Ikota Lekki Ikota Lekki Lagos",₦,"250,000,000/day",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"House 43, Williams Onoh Street, Bera Estate, Chevron Drive, Lekki Phase Ii Chevron Lekki Lagos",₦,"150,000,000/sqm",0,1,1,7 beds,7 baths,7 Toilets +3 Bedroom Apartment,"Paradise Court Estate, Orchid Road Chevron Lekki Lagos",₦,"25,500,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,"Paradise Court Estate, Orchid Road Chevron Lekki Lagos",₦,"40,990,000/year",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"98,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace + Bq,Abijo G.r.a Ikota Lekki Lagos,₦,"35,000,000/month",0,1,0,3 beds,3 baths,3 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex Plus Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Units Of 4bedroom Terrace Duplex With Up To 6month Payment Plan,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets +Luxuriously Built 4bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,0 baths,0 Toilets +Exquisitely Built 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Orchid Road Ginza Hills Ikate Lekki Lagos,₦,"140,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms 4 Rooms And 1 Bq,Beechwood Estate Lekki Lagos,₦,"70,000,000/month",1,0,0,5 beds,4 baths,4 Toilets +Luxury 4bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets +Newly Built 5 Bedroom Detached House With Gatehouse,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +Nice 3 Bedroom Duplex In A Spacious Compound,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached With 2 Rooms Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Luxury 4bedroom Terrace Duplex With Bq, Pool, Lounge And Gym",Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached House With Bq,Ologolo Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached House With 30kva Gen,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +Exquisitely Finished And Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartments With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely 4bedroom Semidetached With Bq,Off Nike Gallery Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment With Waiting Room,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detling Detached House With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets +Old Property Sitting On 475sqm,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Terrace Duplex With Bq Inside A Very Neat Estate,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 3 Bedroom Apartment With Bq,Chevron Lekki Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths, Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,4 Toilets +Brand New 2 Bedroom Terrace Duplex,Ikota Estate Lekki Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,4 Toilets +Luxury 5bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 2 Bedroom Apartment,Chevron Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached House With Swimming Pool,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets +Tastefully Built 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,6 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,5 baths,5 Toilets +Clean 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,1,0,3 beds,3 baths,3 Toilets +Lovely 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets +Fully Detached 4 Bedroom Duplex,Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Clean 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +Distress Sale 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Massionette,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,6 baths,6 Toilets +Massive 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Construction Of 4 Bedroom Terrace Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,6 Toilets +Beautiful And Well Maintained 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartments,Second Tollgate Lekki Lagos Chevron Lekki Lagos,₦,"39,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Marwa Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Smart 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +Old Property On A Land Measuring 648sqm,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets +Luxury 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths, Toilets +3 Bedroom Luxury Apartments With Bq And Swimming Pool,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached Home With Swimming Pool,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Semidetached Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths, Toilets +Luxury 3 Bedroom Apartment,Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,3 Toilets +Tastefully Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Duplex With Gatehouse,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 1 Bedroom Apartments With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq In A Massive Compound,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,5 Toilets +Clean 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built Luxury 4bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Massionette,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,3 Toilets +2units Of 3bed And 4bed Semidetached With Bq,Lekki Lagos,₦,"370,000,000",0,0,0,3 beds, baths, Toilets +Land Measuring 450sqm,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets +4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,5 beds,5 baths,5 Toilets +Massive 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive 9bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,9 beds,9 baths,10 Toilets +14 Units Of 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury Massive 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets +Distress Sale: Smart 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Detached House Serviced With Swimming Pool,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets +Luxury Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,5 Toilets +4units Of Spacious 3bedroom Apartment,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Massionette,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets +Luxury 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,4 Toilets +Amazing 5 Bedroom Detached Home With Bq,Ologolo Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +One Full Plot In An Estate,Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Massive 5bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Victory Park Estate Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,6 baths,7 Toilets +30 Units Of Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5bedroom Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached House,Agungi Agungi Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Units Of 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,0 baths,0 Toilets +Fully Detached 5bedroom Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"97,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Land Measuring 605sqm,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,0 Toilets +Clean 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Freedom Way Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Brand New Luxury 4 Bedroom Semi Detached With Bq,Before Vgc Close To Mega Chicken Ikota Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Hotel,Lekki Phase 1 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Penthouse With Governor's Consent,Godmade Connect Court 3 Ikate Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"125,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Northern Foreshore Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +Super Luxury 5 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 550sqm,Arcadia Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom + Bq,Orchid Road With Governor's Consent. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedrooms Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Ekate, Lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,"Spring Garden Estate, Orchid Hotel Road Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom+ Bq,"Luxurious House At Osapa London, Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Plots Of Dry Fenced Corner Piece Land,Lakowe Golf Lekki Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Bedroom Semi Detached Duplex With A Bq,2nd Tollgate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully 3bedroom Flat Apartment,Bera Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +Joint Venture,Gra Ikota Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +1 Bedroom,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"38,000,000",0,1,0,0 beds,0 baths,0 Toilets +New 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom With Governor's Consent At Godmade Connect Court,"Godmade Connect Court 5 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Commercial Property,Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Government Consent,Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex + Bq,"Ekate, Lekki Ikate Lekki Lagos",₦,"165,000,000",0,0,1,5 beds,5 baths,6 Toilets +Plot Of Land,Pinnock Beach Estate Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sweet Joint Venture,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Detached Home,Lekki County Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom,De Castle Max Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom + Bq With Governor's Consent At Mufasa Lifestyle Apartments,Mufasa Lifestyle Apartments With Governor's Consent Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Plaza With 144 Shop,Orchid Road Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom At Chevron,"By Lekki Toll Gate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Brand New Luxury 4bedroom Semi Detached With Bq,Before Vgc Close To Mega Chicken Ikota Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Super Luxury Well Finished 5bedroom Fully Detached Wit Bq At Chevron,Chevron Drive Lekki Chevron Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,6 baths,6 Toilets +Hot Joint Venture,Ikota Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +20% Completed 5 Bedroom Fully Detached + Bq,Off Durosimi Etti Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Super Luxury 5 Bedroom Duplex,Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Parcel 780sqms Land,Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ultramodern 4 Bedroom Fully Detached Duplex,"Pearl Gardens, Sangotedo Vgc Lekki Lagos",₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 450sqm,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Blocks Of 4 Units Of 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Affordable 4 Bed Terrace,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sweet Joint Venture,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +A 7bedrooms Detached Duplex With 3 Sitting Rooms,Nicon Town Nicon Town Lekki Lagos,₦,"650,000,000",0,0,0,7 beds,7 baths,8 Toilets +A Parcel Of 900sqm Land,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"48,000,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom + Bq At Emcel Apartments,"Emcel Apartments, Adjacent Enyo Fuel Station Ikate Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment With Governor's Consent For Sale At Ruby Apartments 3,"Ruby Apartments 3, Ologolo Agungi Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Joint Ventures,Ologolo Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartments,Ocean Palm Estate With Governor's Consent At Meadow Hall Way Ikate Lekki Lagos,₦,"53,300,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom With C Of O,"Victory Star Court, Ikota Gra Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +795sqm Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex And A Room Bq,Ikate Ikate Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex Home,Orchid Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Duplex,Bera Estate Chevron Drive Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Parcel Of 840sqm Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Four Bedroom Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O,Lekki Palm City Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +A School Building.,Osapa London Agungi Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 2 Bedroom & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,2 Toilets +180 Plots Facing Ogombo Express,Ajah Idado Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +2 Bedroom For Sale At Ambiance Heights,Ambiance Heights Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +A 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartments,"Camberwall Advantage 4, Off Freedom Way Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Maisonette,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terraces,Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex And A Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land Measuring 1000sqm,Zone B Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Home,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Land Measuring 961 Sqm,Spg Road Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely Built 5 Bedroom Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom + Bq,"Luxurious Duplex, Off Lekki Epe Expressway Osapa London Lekki Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,African Lane Before Admiralty House Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Maisonette Penthouse + Bq,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets +Commercial Building Sitting On 950sqm Land,Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Hotel,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Bloom Haven Residences With Governor's Consent Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom,"Emcel Court At Orchid Road, Opposite Prime Mall Chevron Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom For Sale At Camberwall Advantage,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets +Seven (7) Units Of Waterfront Luxury Apartments Comprising 3 Bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House,",Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ultimate Value 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture,Lekki Phase 1 Lekki Lagos,₦,"14,400,000,000",0,0,0, beds, baths, Toilets +Land,Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +3165sqm Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Alpha Beach Road Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 1118sqm Land,Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom At Emcel Apartments,"Emcel Apartments, Adjacent Enyo Fuel Station Ikate Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,3 baths,5 Toilets +6 Bedroom Detached Duplex+bq,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom + Bq At Mufasa Lifestyle Apartments,Mufasa Lifestyle Apartments With A Strong Title Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Super Luxury 5 Bedroom Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Duplex With Bq At Chevy View Estate,"Chevy View Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets +Own This Luxury 4 Bedroom Semi Detached Home,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +A Plot Of Land Measuring 800sqm Waterfront,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached House With Cctv Cameras, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Townhouse With Bq,Mike Adegbite Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Niche Quality Value Centric 5 Bed Fully Detached Duplex With 2 Bqs,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom With Governor's Consent,Godmade Connect Court 5 With Governor's Consent Ikate Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,5 beds,5 baths,6 Toilets +Joint Venture,Gra Ikota Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Lovely Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hot Joint Venture,Spg Road Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Own This 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Joint Venture 700sqm Plot Of Land,Romay Gardens Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats Comprising 4 Units Of 3 Bedrooms Flats,Directly Off Bisola Durosinmi Etti Road Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Functional Mega Filling Station,Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +A Conner Piece Plot Of Land,Ologolo Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Carlton Gate Chevron's Drive Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets +Ultimate Value 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Emcel Court At Orchid Road, Opposite Prime Mall Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Chevron, Lekki Lekki Lagos",₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Home,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom,"Ambiance Heights With Governor's Consent, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom At Emcel Apartments,Emcel Apartments Adjacent Enyo Fuel Station Ikate Lekki Lagos,₦,"51,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom,Bloom Haven Residences Ikate Lekki Lagos,₦,"78,000,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments,"Camberwall Advantage 4, Off Freedom Way Ikate Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets +Demolishable Property,Henry Ojorgho Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom With Governor's Consent At Godmade Connect Court,"Godmade Connect Court 5 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom,Bosmak Haven Vgc Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +7 Acres Of Land,Lekki Express Way Lekki Phase 2 Lekki Lagos,₦,"300,000/sqm",0,0,0, beds, baths, Toilets +7 Bedrooms Duplex With Swimming Pool,Cowrie Creek Estate Ikate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Semi Detached Duplex,Vgc Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom,Chevron Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 3bedroom Apartment With Bq,I Court Estate. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2300sqm,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom With Governor's Consent,"Godmade Connect Court 4 With Governor's Consent, Off Freedom Way Ikate Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Five Bedrooms Detached Duplex,Lekki County Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Vopnucity Ocean View Estate Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Estate Land,Vopnucuty Ocean View Estate Lekki Lagos,₦,"12,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"62,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Castle Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"72,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,De Castle Max Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,"Ikota, Lekki Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,5 baths,5 Toilets +4bedroom Terrace Duplex,Emcel Apartments Ikate Lekki Lagos,₦,"78,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Emcel Apartments With Governor’s Consent Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached House,Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built Luxury 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Maisonette,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets +1 Bedroom Apartment,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Newly Built 2 Bedroom Room Apartment With Bq,Ikate Lekki Lagos,₦,"52,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +A Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace In A Prime Location,Emcel Court 4 With Governor’s Consent Lafiaji Road Orchid Road Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,1,4 beds,4 baths,5 Toilets +2 Bedroom Terrace With Governor’s Consent,Emcel Court 4 With Flexibility Of Payment Plans Lafiaji Road Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Boys Quarters,Newly Built 4 Bedroom Fully Detached Duplex With Boys Quarters Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets +Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,1,0,0 beds,0 baths,0 Toilets +Well Structured 2 Bedroom Terrace Duplex In A Serene Estate,Well Structured 2 Bedroom Terrace Duplex In A Serene Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Fully Detached Castle Bungalow With Bq,"De Castle Max, Awoyaya, Oribanwa Bus Stop. Lekki Phase 1 Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Castle Bungalow,"De Castle Max, Awoyaya, Oribanwa Bus Stop. Lekki Phase 1 Lekki Lagos",₦,"25,000,000",1,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Terrace,Emcel Court On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,2 baths,2 Toilets +4 Semi Detached Bedroom With Bq,Emcel Court On Orchid Road Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Equipped Kitchen,Van Daniel Estate Orchid Road Chevron Lekki Lagos,₦,"6,000,000",0,1,0,4 beds,4 baths,5 Toilets +Two Bedroom Flat,White Sand School Lekki Phase 1 Lekki Lagos,₦,"41,000,000",1,0,0,2 beds,2 baths,2 Toilets +Geniue And Secured Estate Land,"Igbojiya Shapati, Lekki Lagos",₦,"2,000,000",1,0,0,0 beds,0 baths,0 Toilets +Secured Estate Land,Lekki Lagos,₦,"4,000,000",1,0,0,0 beds,0 baths,0 Toilets +Estate Land,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusively Finished 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +4bedroom Masionette,Chevron Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,0 Toilets +2 No Of Detach Duplex 5 Bedroom,Off Freedoms Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Maisonette,Lekki 1 Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Newly Built Terrace With Bq,Very Close To Lekki Peninsula School Osapa London Lekki Lagos,₦,"130,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Apartment,"Very Close To Elegushi Palace, Ikate, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +Club,Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Buit 5bedroom Fully Detached Duplex,Street Opposite Victory Park Estate Osapa London Lekki Lagos,₦,"185,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Terrence Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Pear Garden Estate Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Beside Prince Kazeem Eletu Street Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Apartment With Bq,Elegushi Palace Ikate Lekki Lagos,₦,"78,000,000/year",0,1,0,3 beds,3 baths,4 Toilets +Fully Furnished 4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Verified And Certified Land,"Mosere Kogo Villa, Behind Eko Akete Ikota Lekki Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Governor’s Consent,Bosmak Haven With Governor’s Consent By Harris Drive Vgc Lekki Epe Expressway Vgc Lekki Lagos,₦,"77,500,000/year",0,0,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Boys Quarters,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 3 Bedroom Terrace Duplex With Boys Quarters In A Serene Estate,Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Terrace Duplex With Boys Quarters,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4bedrooms Terraces, Semi & Fully Detached Duplexes With Bqs",2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land With Instant Allocation,Buy Land With Instant Allocation Lekki Lagos,₦,"5,750,000",0,0,0,0 beds,0 baths,0 Toilets +Verified And Secured Land,Lekki Lagos,₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Okun Ise, Ibeju Lekki Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Furnished 2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",1,0,0,2 beds,3 baths,3 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Nicon Town Nicon Town Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Finished 3 Bedroom Flat With Bq,Off Rahman Adeboyejo St Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,3 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 5 Bedroom Duplex,Jakande Axis Jakande Lekki Lagos,₦,"270,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3unit Of 4bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Nice And Decent 4 Bedroom Terrace Duplex,"4, Ayigoro Street Off Gbangbala St Ikate Lekki Lagos",₦,"65,000,000/sqm",1,0,1,4 beds,4 baths,5 Toilets +Newly Build Luxury Finish 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5bedroom Detached Duplex,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ongoing Offplan Flat,Ikota Lekki Lagos,₦,"39,000,000",1,1,0,3 beds,3 baths,4 Toilets +600sqm,Lakeview Park 1 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedrooms Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lekki Luxury Duplex With Building Plan Approval,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely And New Duplex With Bq,Victory Park Estate Jakande Lekki Lagos,₦,"155,000,000",1,0,0,5 beds,5 baths,6 Toilets +Well Maintained 3units Of 3bedroom Terraces,Off Tf Kuboye Lekki Right Hand Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex Home,2nd Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Finished 5bedroom Furnished Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +875sqm Land,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5bedroom Fully Detached Duplex,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Luxury Fully Serviced 3bedrooms Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Ongoing 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate.... Chevron Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Home,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished Brand New 5bedroom Fully Detached House,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex,Ikota Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautiful And Luxury 4bedrooms Semi Detached Duplex With Bq,Around 2nd Toll Gate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Tastefully Finished 4 Bedroom Terrace Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Renovated 3 Bedroom Apartment,Orchid Road Oral Estate Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets +300sqm And 500sqm Of Land,"Pleasure Gardens Idera, Eleko Lekki Lagos",₦,"35,500/sqm",0,0,0,0 beds,0 baths,0 Toilets +Four (4) Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Duplex,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +One Bedroom Mini Flat, Agungi Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,1 Toilets +Five (5) Bedroom Fully Detached Duplex,Sangotedo Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Uniquely Finished 4 Bedroom Semi Detached Duplex In A Fully Secured Environment.,Mega Chicken Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Very Good Semi Detached 2 Bedroom Bungalow,Trade More Estate Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,2 beds,0 baths,0 Toilets +Four (4) Bedroom Semi Detached House,Cowrie Creek I Ikate Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Uniquely Finished 5 Bedroom Fully Detached Duplex In A Secured Environment,Mega Chicken Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths,5 Toilets +Massive Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Units Of 4 Bedroom Tastefully Built Terraces,Chevron Alternative Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex In Orchid,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Three (3) Bedroom Penthouse,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0, beds, baths, Toilets +Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Terrace, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex (water Front) With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex,Kusenla Ikate Lekki Lagos,₦,"100,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets +Five (5) Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonatte With Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Duplex,Pinnock Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +New! 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary! 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxuriously Built 4 Bedroom Terraced Duplex With Bq,S Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +10 Units Of 4 Bedroom Terraces,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,D Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Three (3) Bedroom Apartment, Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,0 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Properties For Sale @ 2nd Toll Gate Lekki,Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Exquisitely Built Serviced 4 Bedroom Terrace Duplex,Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 1 Bedroom And 2 Bedroom Flat,D Chevron Lekki Lagos,₦,"20,000,000",0,1,0,2 beds,2 baths,3 Toilets +Best 4 Bedroom Semi Detached House,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Detached Duplex,Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Six (6) Bedroom Fully Detached Contemporary House,Ikate Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Classic 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Six (6) Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,4 Toilets +Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Two (2) Bedroom Apartment,Ologolo Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Seven (7) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,7 beds,7 baths,8 Toilets +Five (5) Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Three (3) Bedroom Apartment For Sale,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,4 baths,4 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful Four (4) Bedroom Terrace, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With Penthouse,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",1,1,0,4 beds,4 baths,4 Toilets +Properties For Sale @ Idado Lekki,Idado Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Smart House,Lekki Lagos,₦,"290,000,000",1,1,1,0 beds,0 baths,0 Toilets +Four (4) Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Duplex In A Secure Estate,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Mystique 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Serviced 4bedroom Semi Detached Duplex,Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terraced Duplex For Sale In Ikate Lekki,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Hotel Road Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Orchid Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Three (3) Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"95,000,000",0,1,0, beds, baths, Toilets +Tastefully Built 5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Swimming Pool,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Mansion,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex In A Prime Location,Chevron Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished Smart Five (5) Bedroom Duplex + 2 Bq,Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex Plus 1 Bq,Orchid Road Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,5 Toilets +Five (5) Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths, Toilets +Five (5) Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Terraced Duplex,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Distress 4 Bedroom Duplex In A Secured Estate,Crown Estate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,S Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Duplex,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Property In Lekki For Sale:,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +New! 4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"71,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Spacious 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Three (3) Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"41,000,000",0,1,0,3 beds,4 baths,4 Toilets +Four (4) Bedroom Terrace Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Mijl Residents And Villa's,"Behind Romey Gardens, Opposite Nicon Town, Lekki Lagos Nicon Town Lekki Lagos",₦,"27,000,000",0,1,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex With Bq,Ologolo Road Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Phase 1 Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Chevron Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Six (6) Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,7 baths,7 Toilets +Five (5) Bedroom Fully Detached Duplex,Jakande Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Two (2) Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +Four (4) Bedroom Semi Detached With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four (4) Bedroom Duplex,Chevron Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful Five (5) Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Duplex For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four (4) Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +Five (5) Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five (5) Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five (5) Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4) Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Well Built 4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"57,000,000",0,1,0,0 beds,0 baths,0 Toilets +Four (4) Bedroom Detached Duplex For Sale,Chevy View Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Penthouse,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +Five (5) Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets +Three (3) Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets +Four (4) Bedroom Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Contemporary Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House,Madam Julianna Close Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Contemporary 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Duplex With A Bq 95 % Completed,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedrooms Penthouse Apartment With Boys Quarters,Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedrooms Apartment,Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Penthouse + Bq,Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets +Newly Built 1 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +Zylus And Its Extension: Newly Built 3 Bedroom Terrace Detached+ Bq,Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Detached+ Bq,Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedrooms Maisonnette With Boys Quarters,Newly Built 3 Bedrooms Maisonnette With Boys Quarters At Camberwall Advantage 3 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,0 baths,0 Toilets +Brand New 2 Bedrooms Maisonnette,Brand New 2 Bedrooms Maisonnette At Camberwall Advantage 3 Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Boys Quarters,Newly Built 4 Bedroom Semi Detached Duplex With Boys Quarters And Royal Finishing In A Secure Estate Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,0 baths,0 Toilets +Brand New Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Brand New Finished 4 Bedroom Semi Detached Duplex With Boys Quarters Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With Royal Finishing,Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Mattew Osarumen Estate Ologolo Lekki Ologolo Lekki Lagos,₦,"155,000,000",1,1,1,4 beds,4 baths,6 Toilets +"Mixed Residential Development Of 4 Bedroom Terrace, 3 Bedroom Terrace And 2 Bedroom Flats","Elegushi, Ikate Ikate Lekki Lagos",₦,"145,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built One Bedroom Apartment,Alternative Drive Chevron Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,2 baths,2 Toilets +4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ongoing Project 2 Bedroom + Bq High Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,0,0,2 beds,2 baths,2 Toilets +Ongoing Project 4 Bedroom Luxury Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,4 Toilets +This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets +This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets +This 5 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"220,000,000/year",0,0,1,5 beds,7 baths,5 Toilets +4bedroom Terrace,Beautiful Terrace Duplex With Bq And Swimming Pool In A Great Environment Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached Duplex In A Seren Environment,Spacious 5 Bedrooms Detached Duplex Plus Bq With Governor's Consent As Title Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Orchid Rd Lekki Henry’s Court Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Orchid Rd Lekki Henry’s Court Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Chic Terrace Duplex In A Secure Location With Topnotch Security And 24hours Power Supply Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bed Fully Detached Duplex,Stunning 4bedroom Detached Duplex In A Secure Environment Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Castle Duplex,D Castle Max 4 Bedroom Terrace Castle Duplex With Boys Quarters And Normal Finishing In A Secure Estate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Along Abraham Adesanya Estate By Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"90,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets +4bedrooms Detached Duplex+bq,Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of 4bedroom Detached Duplexes,Magnificent 4 Bedroom Detached Castle Duplex With Governor's Consent At De Castle Max Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Units Of 4bedroom Semi Duplexes,Magnificent 4 Bedroom Semi Detached Castle Duplex With Governor's Consent De Castle Max Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +3bedroom Mansionate With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette In A Serene Environment,Silver Spring Estate Agungi Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Multiple Units Of 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Exquisite Finishing,Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +826 Sqm For Sale At Lekki 1,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Barroco House Design Duplex,Serviced Estate In Ikota. Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Detailed 4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,5 Toilets +Newly Built 4bedroom,"Chervon Company, Chevy View Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Serene Environment,"Orchid Hotel Road, Dpkay District Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Built 2 Bed Terrace,"Orchid Road, Adjacent Prime Mall (mega One Cinema) Chevron Lekki Lagos",₦,"38,000,000",0,0,1,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Duplex,Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Penthouse & Beach Front,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Walk In 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Newly Built Luxury 4 Bedroom Terraced Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 3 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartments,Nestled At Orchid Road Chevron Drive Lagos Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +C Of O Land,120 Plots Available For Outright Purchase In Lekki Phase 1 Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq And Penthouse,Megamord Estate Ikota Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,7 baths,7 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"77,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Oniru Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets +"The Castle Max , Lekki","Orchid Road Lafiaji, Directly Opposite Cooplag Garden Estate Lekki. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Neat Luxury Fully Detached 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedroom Terraced Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex Ikate,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Luxury Duplex With Bq,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached House For Sale In Chevron,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +2 Bedroom Serviced Maisonette,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,3 baths,4 Toilets +4bedroom Semi Detached Duplex Orchid Road,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Osapa,Lekki Lagos,₦,"310,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Lekki County,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex For Sale In Lekki,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,0,0,6 beds,8 baths,9 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Lekky County,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Z Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +800sqm For Sale,Cowrie Creek Estate Ikate Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,8 Toilets +5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terraced Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Terraced Duplex Igbo Efon,Igbo Efon Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Extension Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,6 baths,7 Toilets +Fully Serviced 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex, Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Smart House,Z Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +2bedroom Apartment By 2nd Toll Gate,Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached Duplex 2nd Toll,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,6 Toilets +5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",1,0,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets +4bedroom Detached Duplex Orchid,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Serviced Terraced House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,5 baths,6 Toilets +Fully Serviced 5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,0,5 beds,6 baths,7 Toilets +6 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,8 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terraced House For Sale In Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale In Lekki Phase,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,7 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Terraced House For Sale In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale In Osapa,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,7 baths,8 Toilets +2 Bedroom Apartments Consisting Of 32 Luxury Units.,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Detached,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex Orchid,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"650,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex Ikate,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex Lekki County,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Oral Extension,Oral Estate Extension Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Detached Smart House, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Lekky County,Lekky County Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Jakande Lekki Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets +6bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached House,D Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Semi Detached Duplex By 2nd Toll Gate Lekki,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,J Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Lekky County,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House , Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Spacious Rooms And Compound.,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Smart House For Sale In Lekki,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached House For Sale In An Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Detached House, Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Detacehd Smart House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,7 baths,8 Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,6 baths,7 Toilets +2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex In Orchid Road,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Terraced Duplex Chevron,Chevron Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment Idado,Idado Lekki Lagos,₦,"55,000,000",1,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex Agungi,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Lekki County,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex Ikate,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",1,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached House,D Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +5bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terraced Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Maisonette For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +4bedroom Detached Duplex Orchid Road,2nd Toll Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Chevron,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,5 Toilets +5 Bedroom Luxury Duplex For Sale,Chevron Toll Gate Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale In An Estate In Osapa,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,8 Toilets +Newly Built 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000/month",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House For Sale In An Estate In Ikota,Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +2 Bedroom Luxury Apartment,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Z Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Fully Detached House, Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,6 Toilets +Fully Serviced 2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds, baths, Toilets +5 Bedroom Fully Detached House For Sale In An Estate In Osapa,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Serviced Terraced House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,7 baths,8 Toilets +4bedroom Semi Detached Duplex Vgc,Vgc Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Off Plan 4 Bedroom Detached Duplex,Orchid Estate Chevron Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Full Detached House In An Estate For Sale In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Terraced House,X Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4bedroom Terraced,Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex Orchid,Orchid Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Lekky County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex Orchid,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex Orchid,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex Ikate,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Serviced Terraced House For Sale In Osapa,Osapa London Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets +2bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,A Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,8 Toilets +5 Bedroom Detached Smart House For Sale In Osapa,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,8 Toilets +5 Bedroom Luxury Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale On Orchid Road,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Luxury Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House For Sale In Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached House,D Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House For Sale In An Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace House, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House For Sale In Ikate,Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached House,Z Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Smart House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,7 baths,8 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +1 Bedroom Flat,Ikota Lekki Lagos,₦,"5,000,000",0,0,0,1 beds, baths, Toilets +Governor Consent,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,6 baths,6 Toilets +3 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +Government Concent,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Modern Contemporary Home With Swimming,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,6 baths,8 Toilets +Luxury 5bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Government Consent,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semidetached Duplex With A Room Bq,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious New Construction,Megamound Ikota Lekki Lagos,₦,"350,000,000",1,1,0,5 beds,5 baths,5 Toilets +Block Of Flats,Sangotedo Before Shoprite Novare Mall Off Lekki Epe Express Road Idado Lekki Lagos,₦,"125,000,000",1,0,0,9 beds,9 baths,9 Toilets +Duplex,Megamound Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Fully Serviced & Fully Furnished Apartment,Off Spar Road Ikate Lekki Lagos,₦,"46,000,000",1,0,1,2 beds,2 baths,2 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,De Castle Max Estate Orchid Chevron Lekki Lagos,₦,"72,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bed Fully Detached Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex + Bq,Chisco Ikate Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq At Bridge Estate,Bridge Estate Before Chevron 2nd Toll Gate Lekki World Class Architectural Design Chevron Lekki Lagos,₦,"72,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 3bedrooms Penthouse Apartment,Godmade Connect Court 4 Lekki Off Freedom Way Off Regional Road Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,3 beds,3 baths,3 Toilets +Newly Built Luxury 4 Semi Detach Duplex With Bq,Creek Court 3 Avenue Ikota Lekki Pay And Park In Home Of Luxury And Comfort For Kings And Queens Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Maisonette Duplex +bq,Ikate Lekki Lagos Nigeria Ikate Lekki Lagos,₦,"95,000,000/day",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bed Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bed Terrace Duplex +bq,Idado Estate Igbo Efon Lekki Lagos,₦,"68,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Penthouse,Pantheon Smart Homes World Class Architectural Design Pay And Pack In Chevron Lekki Lagos,₦,"170,000,000/day",0,0,0,5 beds,6 baths,6 Toilets +3 Bedrooms Penthouse +bq,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"75,000,000",1,1,1,3 beds,4 baths,4 Toilets +3 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000/month",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terraces At Godmade Connect Court 5,Godmade Connect Court 5 Lekki Phase 1off Freedom Way When You Thing Of Quality And Class Lekki Phase 1 Lekki Lagos,₦,"110,000,000/month",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Terrace + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,1,0,3 beds,3 baths,5 Toilets +Newly Built 5 Bed Fully Detached Duplex,"Chevron Drive, Alternative Road, Lekki Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedrooms Maisonette +bq,Camberwall Advantage A Place Bulit For Royalty Off Plan Project Ikate Lekki Lagos,₦,"85,000,000/month",1,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +Newly Built Luxury 2 Bedrooms Apartment,Camberwall Advantage A Place Designed For Kings And Queens To Live Come An Experience Paradise On Earth Lekki Phase 1 Lekki Lagos,₦,"55,000,000/month",0,1,0,2 beds,2 baths,2 Toilets +Newly Built 3 Bed Terrace + Bq,"Kennedy Okonkwo Way, Creeklane Estate, By Pinnock Beach Estate Ajiran Lekki Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built Luxury 4 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxury 4 Semi Detach Duplex With Bq,H Homes Orchid Lekki Off Chevron Toll Gate Pay And Park In Guarantee Peace Of Mind Is Highly Built High Quality Materials Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Units Of Luxury 5 Bedroom Fully Detached Duplex With Bq,Luxurious Detached Duplex Located In Heart Of Megamond Estate Ikota Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bed Semi Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Fully Detach Duplex With Bq,Creek Court 3 Avenue Ikota Lekki Pay And Park In Smart Homes Beyond Satisfication And Value Is What You Get In Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bed Fully Detached Duplex +bq,Vintage Estate Ikate Lekki Lagos,₦,"600,000,000",0,1,1,5 beds,7 baths,8 Toilets +4 Bed Semi Detached Duplex + Bq,Chisco Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bed Fully Detached Duplex,Megamound Estate Lekky County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bed Semi Detached Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 2 Bedrooms Maisonette Duplex,Camberwall Advantage Lekki Phase 1 Lekki Lagos,₦,"65,000,000/month",0,1,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bed Fully Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built Luxury 2 Bedroom Apartment,Luxury Comfortable Living Experiencing World Class Amenities With The State Of Art Lekki Phase 1 Lekki Lagos,₦,"85,000,000/day",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 3 Bed Apartment + Bq,Chisco Ikate Lekki Lagos,₦,"78,000,000",0,1,0,3 beds,4 baths,5 Toilets +Newly Built 4bed Terrace +bq,Osapa London Estate Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,6 Toilets +2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"45,000,000/day",1,1,1,2 beds,3 baths,3 Toilets +Newly Built 4 Bed Fully Detached Duplex + Bq,Southern View Estate By Lekki Conservation Centre Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Duplex +bq,Chisco Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bed Terrace Duplex,Prince Oluseje Abayomi Street Kushenla Road Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2bedroom Luxury Apartment,Ruby 3 Is An Estate Designed To Enable You And Loved Ones To Enjoy The Perfect Lifestyle In A Serene And Luxurious Affordable Homes Ologolo Lekki Lagos,₦,"35,000,000/day",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bed Semi Detached Duplex,Silicon Vale Estate Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious 3 Bedroom Penthouse +bq,Camberwall Advantage Lekki Phase 1 Lekki Lagos,₦,"75,000,000/day",0,1,0,3 beds,3 baths,3 Toilets +Lovely One Bedroom Apartment,"Dunvale Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets +Luxury 4 Bedroom Terrace Duplex For At Creek Court. Anvenue,Creek Court 2 Avenue Ikota Pay And Move In Ikota Lekki Lagos,₦,"55,000,000/month",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4 Semi Detach Duplex With Bq,Villa Home Estate Orchid Lekki Off Chevron Pay And Move In For Kings And Queens Chevron Lekki Lagos,₦,"70,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bed Apartment & Bq,Prince Oluseje Abayomi Street Kushenla Road Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets +Lovely 2 Bedroom Apartment,"Dunvale Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"38,000,000",1,0,0,2 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Silver Crest Estate Orchid Off Chevron Pay And Move In A Place Where You Guarantee Quality Lifestyle And Enjoy Comfort In Grand Style Chevron Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bed Fully Detached Duplex,Beside Pinnock Beach Estate Nicon Town Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bed Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bed Contemporary/pent House/bq In Suit,Megamound Estate Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bed Terrace,Tnt Home Estate Orchid Lekki Lagos Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bed Terrace Duplex + Bq,Enyo Roundabout Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 2 Bed Apartment + Bq,"Kennedy Okonkwo Way, Creeklane Estate, By Pinnock Beach Estate Ajiran Agungi Lekki Lagos",₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000/day",1,1,1,2 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Apartment With Bq,Osapa Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxurious 2 Bedroom Apartment,Ruby 3 Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Penthouse With A Bq For Sale At Godmade Connect Court 5 Lekki,Off Freedom Way Lekki Off Plan Project In A Developed Area This Home Comes With A Pool Gym And Other Facilities Lekki Phase 1 Lekki Lagos,₦,"200,000,000/month",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bed Semi Detached Duplex & Bq,Piccadilly Road Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Luxury 4 Bedroom Penthouse +bq,Camberwall Advantage Ikate Lekki Phase 1 Lekki Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets +Luxury Smart 4 Bedroom Terrace,Bridge Estate Before Chevron Toll Gate A Place For Royalty Chevron Lekki Lagos,₦,"62,000,000/day",0,0,0,4 beds,4 baths,4 Toilets +Luxury 2bedroom Penthouse,Behind Online Onike Art Gallery God Madeconnect Court 2 Ikate Ikate Lekki Lagos,₦,"75,000,000/month",0,1,0,2 beds,2 baths,2 Toilets +Luxurious 2 Bedroom Maisonette Duple,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000/day",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Gigantic Luxury 5 Bed Semi Detached Duplex,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Jinadu Street Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Chevron Alternative Route Lagos Nigeria Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,0 baths,6 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Semi Detached House With Bq At Carlton Gate Chevron Drive Lekki Lagos,Carlton Gate Estate Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 And 3 Bedroom Luxury Apartments,Elegushi Opp Nicon Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached House With Bq,Ilasan Ilasan Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +1000 Square Metre Land,Orange Island Off Freedom Way Lekki Scheme 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Share House With 2rooms Servant Quarter,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"320,000,000",1,1,0,5 beds,7 baths,7 Toilets +2 Units Of 3 Bedroom Flats + 1 Room Bq Each With Exquisite Finishings,"Directly Off Kusenla Road, Ikate Lekki Lagos",₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +975+ Sqms (with Structures),"Chief Henry Ojorgho Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedrooms Semi Detached House + Bq,"Chris Madueke Street, Off Adebayo Doherty, Lekki Phase I, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,444 Sqm Corner Piece Plot","Van Daniels Estate, Off Orchid Road, After Chevron 2nd Gate, Lekki Epe Expressway, Lagos Chevron Lekki Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Detached Duplex Sale: Northern Foreshore Estate, Chevron Drive Lekki, Lagos","Northern Foreshore Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex +bq,"Bera Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +For Sale: Vgc Lekki Furnished 5 Bedroom Detached Duplex + 2 Bedroom Chalet,Off Road 2 Vgc Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"1,121 Sqm Plot In U3 Estate","U3 Estate, Lekki Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +7bedroom Detached House + 2 Rooms Servant Quarters,"Zone C, Nicon Town, Lekki, Lagos Nicon Town Lekki Lagos",₦,"450,000,000",0,0,0,7 beds,8 baths,8 Toilets +"Brand New 4 Bedroom Terrace Duplex On Orchid Road, Chevron, Lekki, Lagos, Nigeria","Orchid Road Chevron, Lekki, Lagos, Nigeria Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Superb Block Of 4 Flats Of 3 Bedrooms On 1,000sqm Land","Directly Off Bisola Durosinmi Etti Street, Lekki Phase 1 Lekki Lagos",₦,"385,000,000",0,0,0,3 beds,3 baths,4 Toilets +8 Bedrooms Fully Detached House + Bqs,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"340,000,000",0,0,0,8 beds, baths, Toilets +"40,000sqm Bareland, Fully Sandfilled, Facing Lagos Lagoon","Facing Lagos Lagoon, By Perinwinkle Estate, Freedom Way, Lekki Phase 1, Lagos Ikate Lekki Lagos",₦,"6,000,000,000",0,0,0, beds, baths, Toilets +Top Notch (2 Years Old) 5 Bedroom Detached House + 1 Room Bq (ensuite) In An Estate,"Inside An Edtate, Osapa London, Lekki Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Orchid Road By The First Roundabout Enyo Filling Station Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale: Lekki Phase 1 Plot 929.8sqm (with Structures),"Abimbola Okulaja Close, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +"Massive 33 Units Of 2 Bedroom Apartments In Orchid Road, After Chevron, Lekki, Lagos, Nigeria","Orchid Road, After Chevron, Lekki, Lagos, Nigeria Chevron Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Prime 200,000 Sqm Bareland Along Regional Road, Ikate, Lekki, Lagos, Nigeria","Facing The Lagoon, Along Regional Road, Ikate, Lagos, Nigeria, Ikate Lekki Lagos",₦,"34,000,000,000",0,0,0, beds, baths, Toilets +975+ Sqms (with Structure),"Chief Henry Ojorgho Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,200sqm Land (with Demolishable Structure)","A Series, Off Admiralty Way, Lekki Phase I, Lagos Lekki Phase 1 Lekki Lagos",₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedrooms Fully Detached House + Bqs + 2 Living Rooms On 500sqm,Directly Off Fola Osibo Street (3 Houses From Fola Osibo Street) Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,8 beds,8 baths,9 Toilets +"For Sale: 10 Plots Together On Orchid Road, Chevron, Lekki","Orchid Road, Lekki Chevron Lekki Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +30 Plots Of Sand Filled Land On Orchid Road Lekki,"Opposite Cooplag Estate, Off Orchid Road, Chevron Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House,"Vgc, Lekki Epe Expressway, Lagos Vgc Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +"8 Bedrooms Fully Detached House + Bqs + 2 Living Rooms On 500sqm In Lekki Phase 1, Lagos, Nigeria","Directly Off Fola Osibo Street (3 Houses From Fola Osibo Street), Lekki Phase 1, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"340,000,000",0,0,0,8 beds,8 baths,9 Toilets +"1,300sqm (with Structure) Directly On Oniru New Market Road, Oniru, Lagos, Nigeria","Oniru New Market Road, Oniru, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +Northern Foreshore Estate,"Northern Foreshore Estate, Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Quick Sale: 1,040sqm (with Structure) In A Series, Lekki Phase I, Lagos, Nigeria","A Series, Lekki Phase I, Lagos, Nigeria Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +"Exquisite 4 Bedroom Detached House Plus Bq In Vgc, Lagos, Nigeria","Vgc, Lekki Epe Expressway, Lagos Nigeria Vgc Lekki Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale: Ikate Lekki 5 Bedroom Fully Detached Duplex + Bq,Off Kusenla Road Ikate Ikate Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,6 baths,6 Toilets +30 Unit Of 4bedroom Terrace House With Bq At Ilasan By World Oil Lekki Phase One Lagos,Ilasan Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Inside A Gated Estates In Side Thamos Estate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,1,0,6 beds,0 baths,7 Toilets +Newly Built 5bedroom Fully Detached Smart Home With 2rooms Bq,Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,7 Toilets +6 Unit Of 4 Bedroom Terrace At Lekki Phase1 Lagos With Notch Finishing,Fatai Arobike Lekki Phase One Lagos Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,1,0,6 beds,6 baths,6 Toilets +Newly Built With Super Finishing Of 6bedroom Detached House With Bq At Lekki Phase1 Lagos,Off Admiralty Way Lekki Phase One Lagos Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached House With 2 Room Bq,Road 2 Vgc Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Terraced House Off Freedom Way,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced House Off Freedom Way Lekki Scheme 1 Lagos,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets +6 Units Of 4 Bedroom Terraces With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced House Off Freedom Way Lekki Scheme 1 Lagos,Off Freedom Way Lekki Scheme 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,0,4 beds,5 baths,5 Toilets +9 Units Of 3 Bedroom Flat At Lekki Scheme 1 Lagos,Off Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"750,000,000",1,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached House With Bq At Ikota Villa In A Gated Est,Ikota Villa Off Megamound Road Inside A Gated Est Chevron Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Smart Home Of 5bedroom Fully Detached House At Lekki Phase1 Lagos.with Cinema, S/pool ,gym","With Swimming Pool, Gym And Cinema Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,1,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached House With Bq,Carlton Gate Estate Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Off Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +"9 Units Of 2 Bedroom Flats For Sale @ Orchid, Lekki",Ilasan Lekki Lagos,₦,"43,000,000",1,0,0,2 beds,2 baths,2 Toilets +9 Units Of 2 Bedroom Flats,Ilasan Lekki Lagos,₦,"43,000,000",1,0,0,2 beds,2 baths,2 Toilets +New Built Units Of 4 Bedroom Detached Duplexes,Orchid Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,1,4 beds,4 baths,4 Toilets +Luxury 2 & 3 Apartment,Emcel Estate Ikate Lekki Lagos,₦,"51,000,000",0,1,0,3 beds,3 baths,3 Toilets +Dry Land,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Buena Vista Estate, Orchid Road Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Modern One Bedroom Block Of Flats,Bakare Agungi Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,1 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Vgc Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Off Lekki Right Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flats,"By Ocean Bay Estate, Off Orchid Hotel Road Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Neighbourhood,Orchid Road Lekki Lagos,₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detach Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious 2 Bedroom Terrace Duplex Inside Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,1,0,2 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Super Luxury 3 Bedroom Apartment,Iconia Heights Lekki Lagos,₦,"54,490,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan Development 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +Off Plan 4 Bedroom Terrace,Off Admiraly Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedrooms Terrace Duplex With Bq Insde An Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets +Off Plan: 4 Bedroom Terrace,Ologolo Lekki Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +Off Plan Development Condo,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,3 baths,2 Toilets +Exquisitely Built 5 Bedroom Stand Alone Duplex,Megamond Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets +2 Bedroom Fully Furnished And Fully Serviced Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Apartments,Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +50 Units Of 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedrooms Terrace Duplex With A Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Townhouse With Service Quarters,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Newly Built 5 Bedrooms Duplex,"Ikota Bridge, Ikota Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious And Newly Built 4 Bedroom Semi Detached Duplex,Second Tollgate Chevron Lekki Lagos Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,7 baths,6 Toilets +Four Bedroom Terrace With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Barocci Gerden Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets +3 Bedroom Terrace Duplex Inside An Estate,"Before Abraham Adesanya Ajah, Sharing Fence With Royal Garden, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,5 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Terraces,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Orchid Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished Brand New 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +300sqm Land,"New Lagos Airport, Alaro City Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedrooms Fully Detached Duplex,"Off Marwa, By 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Plots Of Land On A Corner Piece Measuring 1300 Sqm,"Opposite Coplage Garden, Orchid Road Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Semi Detached,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House With A Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan Properties,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5bedrooms +2 Room Bq Each With 2 Kitchens,Victory Park Estate Osapa London Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Phase1 Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,6 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"160,000,000",1,0,0,5 beds,5 baths,5 Toilets +Decently Finished 4 Bed Semi Detached Duplex With Bq,Vgc Extension Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Crest Villa End Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3bedroom Terrace House With 1room Bq At Ademola Eletu Way Opposite Victory Estate, Osapa London, Lekki, Lagos State.",5th Avenue/ademola Eletu Road Osapa London Lekki Lagos,₦,"55,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq Victoria Bay 1 Orchid Hotel Road,Ochid Road Chevron Lekki Lagos,₦,"65,000,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq By Victoria Bay 1 Orchid Hotel Road,Ochid Road Chevron Lekki Lagos,₦,"65,000,000,000",0,1,0,4 beds,4 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,0,0 beds,0 baths,9 Toilets +4 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,0,0 beds,0 baths,9 Toilets +Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Shafi Sule Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse With A Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Vgc Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lavishly Finished Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment And 1 Room Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +9 Plots Of Land,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 5 Bedroom Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm And 1190.630sqm Lands,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House With A Sea View,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex And 1 Room Bq,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Orchid Road Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Mansion,Vgc Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments With 1 Bq,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Oral Estate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 5 Bedroom Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Bedroom Detached Duplex With 2rooms Bq,Nicon Town Lekki Lagos,$,"1,500,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +Available Land,Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ayo Jagun Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Lagos,₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Bare Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Mansion With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"385,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Maisonette,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +Four Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 5 Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Home,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Four Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Otunba Ogungbe Rd Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Right Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +1400sqm Bare Land,Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 3 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Flat With Fitted Kitchen,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,2 Toilets +Available Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex+ 1 Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Vgc Lekki Lagos,₦,"21,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ajiran Mews Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Semi Detached Duplex With A Room Boy’s Quarter,Agungi Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +Available Land,Osapa London Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedrooms Semi Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3,000sqm With A Building",Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Orchid Road Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Vgc Lekki Lagos,₦,"65,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Pinnock Beach Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets +Available Land,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ologolo Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Igbokusu Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Dele Amuda Street Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built King Size 4 Bedroom Semi Detached Duplex With Bq,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Available Land,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Furnished Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +781sqm Land,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex With 2 Bedroom Penthouse,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Flats With A Study Room And Bq,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +900sqm Land,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Home,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Vgc Lekki Lagos,₦,"21,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Estate Lekki Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Vgc Lekki Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +High Quality 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqm Land,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 780 Square Meter,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +12000sqm Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace With Communal Swimming Pool And A Room Bq,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"375,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Designed 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Plots Of Land,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Lekki Right Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ilasan Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom White House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikota Lekki Lagos,₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ilasan Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Oral Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Osapa London Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Home,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5.5 Hectares Land,Ilasan Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Ilasan Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Brand New 2 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Bisola Durosimi Etti Stree Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Serviced 4 Bedroom Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Sand Filled Fenced Corner Piece Land,Ilasan Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Maintained 4 Bedroom Semi Detached House,Off Bisi Durusemietti Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached + Bq,"Ajiran Mews Estate, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekky County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Semi Detached Duplex,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"10,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom White House,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +Available Land,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Residential Land,Lekki Lagos,₦,"178,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Sea View 5 Bedroom Detached Duplex House,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +1200sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land Measuring At 620sqm,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 12000sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300sqm Land,Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +8500sqm Land,Off Alpha Beach Road Lekki Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,"Orange Island Estate Phase 1, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Hectare Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +450sqm Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000sqm Commercial Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Fenced With Gate Land,Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +623sqm & 627sqm Land,Behind Lekki Conservation Center Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Waterside Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Dredged 20000sqm Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 3600sqm And 800sqm Setback Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Waterfront 1500sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 533sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Sand Filled/recovered Land,"Orange Estate Phase 1, Down Freedom Way Lekki Phase 1 Lekki Lagos",₦,"95,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fenced 5400sqm Beachfront Land,Chevy View Estate Lekki Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Demolish Able Structure On 1246sqm Land,"Off Admiralty Road, Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Waterfront 1587sqm Land,",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +997sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +1357sqm Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,"Periwinkle Estate, By Freedom Way Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +1250.44sqm Land,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Land,"Orange Island Estate Phase 2, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 10900sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1050sqm Land,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 12000sqm Mixed Use Land,Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 3400sqm Land With Massive Structure,"Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Plots Of Sand Filled Land,Orchid/lafiaji Road Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 4500sqm Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +2406sqm Mixed Use Land,Off Bisola Durosinmi Etti Drive Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1880sqm Commercial Land,Admiralty Way Jakande Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +2406sqm Mixed Use Land,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece 1340sqm Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4222sqm Commercial Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +435sqm Land,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Modern Contemporary Home With Swimming Pool,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,6 beds, baths, Toilets +Luxury 4bedroom With A Swimming Pool And A Room Bq,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex Plus 1 Bq,Orchid Road Ikota Lekki Lagos,₦,"48,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace With Bq,Henod Luxury Home Irate Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Duplex With 2rooms Bq,Secured Gated Estate Lekki Lagos,₦,"400,000,000/month",0,0,1,5 beds,5 baths,5 Toilets +Superbly Finished Fully Automated 5bedroom Detached Duplex With Open Terrace & Pool,Ikate Lekki Lagos,₦,"250,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom All Ensuit Semi Detached Building,Chevy View Chevron Lekki Lagos,₦,"72,200,000/month",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Mansion House With An Elevator,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Smart & Switchless 5 Bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hrs Power,"Orchid Road, Lekki Lekki Lagos",₦,"120,000,000",1,0,1,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,0 Toilets +4 Bedroom Detached Duplex,"Chevron Toll By Conservation, Lekki, Lagos Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,0 Toilets +Standard 4 Bedroom Semi Detached Duplex With A Room Bq @lekki Phase One,Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths, Toilets +Beautifully Finished Luxury 4 Bedroom Semi Detached Duplex With One Room Bq.,Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,0 Toilets +Exclusive Spacious 2 Bedroom Fully Serviced Apartment Perfect For A Shortlet,Agungi Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,2 baths, Toilets +Beautiful And Exquisite 2bedroom Terrace Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached House With Cinema,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets +Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,0 Toilets +1 Plot Of Land,Ologolo Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,1,5 beds,5 baths,0 Toilets +2bedroom Flat,Chevron Lekki Lagos,₦,"32,000,000",1,0,1,2 beds,0 baths,0 Toilets +Standard 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,0 Toilets +4 Bedroom Terrace Duplex.,Vgc Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,0 baths,0 Toilets +A Plot Of Land Measuring 984sqms,Pinnock Beach Estate Osapa. Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,0 Toilets +Luxurious And Fully Serviced 2 Bedroom Apartment.,Chevron Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,0 Toilets +20 Plots Of Land,Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,1,0 beds,0 baths,0 Toilets +2 Bedrooms Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Boulevard Alcager,Idera House Scheme Eleko Lekki Phase 1 Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets +The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Opposite Corona School Abijo Lakki Lagos Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached With Bq,"Sunday Ejiofor, Green Park Scheme, The Signature Apartment Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Delight Estate,Idera Scheme Eleko Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Two Bedroom Maisonette,"The Signature Laurels, Athletic Layout Estate Abraham Adesanya Lekki Phase 1 Lekki Lagos",₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets +The Signature Apartment House Terrence,Ejiofor Green Park Scheme Opposite Corona School Abijo Lakki Lagos Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Terrace + Bq,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +3 Bedroom Apartment Pent House With Bq,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +The Signature Apartment House Terrence,Sunday Ejiofor Green Park Scheme Lekki Lagos,₦,"27,000,000",0,1,1,2 beds,2 baths,3 Toilets +The Signature Apartment House Terrence,Sunday Ejiofor Green Park Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +Delight Estate Idera Scheme Eleko Lagos,Idera Scheme Eleko Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets +Excel Garden Umuahia Phase 2,36b Freedom Way Lekki Lagos,₦,"750,000",0,0,0, beds, baths, Toilets +The Signature Apartment House Terrence,Sunday Ejiofor Street Green Park Scheme Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets +Hotel,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"488 Sqm Of Land With 2 Units Of ,3 And 4 Bedroom Detached House",Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale Land Measuring Up To 975sqm With A Structure Of 2 Units Of 3 Bedroom Semi Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +1446 Sqm Of Land,Orchid Road Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +400 Sqm With A Structure,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"474sqm In Ocean Bay Estate, Orchid, Chevron, Lagos",Chevron Lekki Lagos,₦,"57,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex 1bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Plus One Room Bq,Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +800 Sqm,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Bungalow (needs Renovation) Located In A Well Secured Estate With 24hrs Electricity Supply,Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +980 Sqm With 4 Units Of 3 And 4bedroomsemi Detached With Bq Each,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached And A Room Bq,Chevy View Estates Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Duplex All Ensuite At Ikate,Ikate Lekki Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +1288 Sqm Of Land,Melrose Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Service Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 5bedroom Duplex,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Two Bedroom Flat,Ikate Road Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,2 baths,3 Toilets +5bedroom Fully Detached Duplex,Inside Vgc Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +Three Bedroom Flat,Ikate Road Ikate Lekki Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets +1300 Sqm Of Land,"Lekki Right, By Nike Art Gallery Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neat Office/shop Space,Ikota Shopping Complex Ikota Lekki Lagos,₦,"13,000,000",0,0,0,1 beds, baths, Toilets +Sale Of Uncompleted Building Project,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached With Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets +1386 Sqm With 12 Rooms Of Fully Detached Mansion,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Numbers Of 4 Bedroom Detached Duplex,Forte Estate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semidetached With Bq,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"After Lcc, Chevron Road, Lekki Chevron Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,"Location : Oluge Pl, Off Sule Olusesi Road Lekki Conservation Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached,Applewood Estate Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +1265 Sqm Of Bare Land,Ologolo Ologolo Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious And Fully Serviced 2 Bedroom Apartment,"Rayfield Estate, Lekki Conservation, Cheveon Chevron Lekki Lagos",₦,"39,000,000",1,1,0,2 beds,2 baths,2 Toilets +"1000 Sqm, With Mixed Units Of 1 And 2 Bedroom Flat",Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House,Behind Whitesand School Lekki Phase 1 Lekki Lagos,₦,"270,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths, Toilets +Spacious 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Detached Duplex + Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Developing 4 Bedroom Smart Home With Alexa Fully Automated,Orchid Hotel Road Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ayo Ajagun Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms + Bq Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Idado Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,= Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With A Bq,Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000/year",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"100,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Penthouse And A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex (partly Furnished),Ologolo Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,Idado Lekki Lagos,₦,"38,000,000",1,0,0,1 beds,1 baths,2 Toilets +6 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Idado Lekki Lagos,₦,"59,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq, Ikota Lekki Lagos,₦,"120,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment With A Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Classy 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,4 beds,0 baths,0 Toilets +Ruby 1/2 Bedroom Apartments,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 4 Bedroom Semi/detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Affordable 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced Corner Piece 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built Beautiful 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Automated 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"510,000,000",0,0,0,6 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built And Affordable 4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +State Of The Art 4 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Residential Land,Orchid Road Opposite Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced Alluring And Decently Spaced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Duplex,Osapa Osapa London Lekki Lagos,₦,"71,000,000",1,1,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment + Bq,Lekki Pride Estate Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,0 Toilets +State Of The Art 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Contemporary Luxury 5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Finished Contemporary 4 Bedrom Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished Contemporary 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Standard 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Smoothly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Super Spacious Ultra Modern 5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Decent Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +Glamorously Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplx With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Solidly Built Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Royal Standard 5 Bed Fully Detached Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Contemporary Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Luxury 5 Bed Contemporary Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Masterpiece,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Lagos,$,"65,000",0,1,0,2 beds,3 baths,3 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Spaced Affordable 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Ajah Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Valuable 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Fully Automated And Furnished 2 Bedroom,Orchid Hotel Road Chevron Lekki Lagos,₦,"41,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Salem Bus Stop Ikate Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bed Terrace Duplex,Chevron Lekki Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +Gorgeous 4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets +4bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Luxury Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Gorgeous 4 Bedroom Terrace,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex With Bq At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached With A Bq,"Buena Vista Estate, Orchid Rd Lekki Lagos",₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,"Orchid Rd, Lekki Lagos",₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Jakande Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Units Of 4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Orchid Rd Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Affordable Luxury 3bedrooms Maisonette,Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built Luxury Terrace Duplexes,Vgc Lekki Lagos Nigeria. Vgc Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Rd Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury Apartments In Good Location Selling Cheap (lilly Rose Apartment),Megamound Estate Ikota Lekki Ikota Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets +Modern 5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Selling In A Well Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,4 baths,4 Toilets +5bedroom Contemporary Detached,Lake View Estate Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets +Rare Offer Of 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detached,Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Orchid Rd Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,"Orchid, Lekki Lagos",₦,"88,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedrooms Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +Exra Beautiful Modern 5 Bedroom Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets +3bedroom Terrace Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex + 2 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,5 Toilets +Live The Dream! The True Luxury Homes..,"Off Freedom Way, Off Regional Road Lekki 1. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,1,3 beds,3 baths,3 Toilets +5bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Lekki Home County Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Gorgeous 4 Bedroom Detached Duplex In Secure Estate,Ikota Lekki Ikota Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Duplex With Sea View,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bed Room Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Good Located 4bedroom Semi Detached,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,"Orchid Rd, Lekki Lagos",₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +Beautifully Finished 5bed Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Chevron Axis, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House + Bq + Study + Waiting Room Etc,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built Luxury And Exquisite 4 Bedroom Terrace Duplex With With Bq,"Freedom Way, Off Admiralty Road, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + Swimmingpool + Openroofterrace Etc,Ikota Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +"1,000sqm2 Land",Ikate Elegushi Ikate Lekki Lagos,₦,"210,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Renovated 5 Bedroom Semi Detached House For Sale,"Agungi Lekki, Lagos Agungi Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq + Swimmingpool + Cctv Etc,Ikota Lekki Lagos,₦,"220,000,000",1,1,1,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Terrace Duplex In A Serene Estate,"Salem, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex [redacted],2nd Tollgate Chevron Chevron Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,5 baths,5 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Built Two Bedroom Flat,"Abioro Street, Ikate Elegushi, Ikate Lekki Lagos",₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets +5bedrooms Fully Detached + Bq + Swimming,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex + Bq,Lekki Ajah Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex + Bq,Lekki Ajah Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Buena Vista Estate, By Orchid Road, Lekki. Lekki Lagos",₦,"3,000,000/year",0,0,1,4 beds,4 baths,5 Toilets +"Massive 5 Bedroom Fully Detached Duplex With Swimming Pool, Cinema And A Room Bq",Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,1,5 beds,5 baths,6 Toilets +Executive Luxury Built 5 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace House,Omotesho Cole Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached House + Bq,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House + Bq + Study + Waiting Room Etc,Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq + Swimming Pool + Lounge,Lekki Ajah Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,"Megamond Estate, Ikota Ikota Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House + Bq + Lounge Etc,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets +3bedroom Terrace Duplex + Bq [redacted],Lekki Gardens Phase 4 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroom Fully Detached + Bq + Swimmingpool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Swimmingpool + Cinema Etc,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Off Plan An Exquisite Development Comprising Of 4 Units 4 Bedroom Terrace Duplex + Bq, 3 Units 2 Bedroom Flat & 3 Units 1 Bedroom Flat","Akinloye Street, Oral Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +4bedroom All Ensuit With 2living Room And A Bq,Orange Island Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +453sqm Land,Victory Pack Estate Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,587m² With Approval To Reclaim 2,000m² More",Along Admiralty Way Lekko Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1263sqm Corner Piece Of Developed Area,Lekki Scheme 2 Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex + Swimmingpool Etc.,Ikota Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +5.5 Hectares Of Land Located In Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Megabound Estate Environ Lekki Lagos,₦,"32,000,000",0,1,1,2 beds,2 baths,3 Toilets +4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,0,1,4 beds,5 baths,5 Toilets +3 Bedroom Serviced Apartment With Bq,Osapa London Lekki Lagos,₦,"58,000,000",1,1,1,3 beds,3 baths,4 Toilets +Available Land,Ilagbo Lekki Lagos,₦,"2,500,000/month",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Fully Serviced Three Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets +800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +3386sqm Land,Lekki Expressway Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With Swimming Pool And A Gym,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +1127sqm Land,Christ Chapel Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +7092sqm Corner Piece Land,Orchid Road Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +4500sqm Land,Lekki Phase 1 Lekki Lagos,₦,"1,485,000,000",0,0,0, beds, baths, Toilets +16000sqm Land,Epe Expressway Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +1027sqm Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"410,800,000",0,0,0, beds, baths, Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +2611.980sqm Land, Igbo Efon Lekki Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos 5 Bedroom Detached Houses With Bqs,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Blocks Of Flats,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +800sqm Land,Ikate Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +3600sqm Land,Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +2 Bed Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace House,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land Measuring Approximately 1800m2 Fenced Gated,Durosimieti Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Automated Five (5) Bedroom Home,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +670sqm Land,Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets +6 Units 4 Bedrooms Terrace House Each For N200m,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Ikate Lekki Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Fully Fitted 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Finished And Spacious 5 Bedroom Detached House With 3 Room Executive Bq,Close To Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +4300sqm Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +8000m2 Land,Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +10 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Available Land,Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +1400sqm Mixed Development Waterfront Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +22 Rooms Hotel On Land Size 1200sqm Description Cornerpiece Plot.,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,10 beds, baths, Toilets +"26 Room Hotel With Conference Room, Gym And Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +1200sqm Residential Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"264,000,000",0,0,0, beds, baths, Toilets +2units Of4 Bedroom Semi Detached House With 2 Rooms Bq And A Gate House,Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront 12 Bedroom Duplex With A Jetty,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Maisonette,"Platinum Way, Igbokushu Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Serviced Terrace Apartment,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Apartment,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +12 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedrooms Terraced Houses (6 Units),Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Bareland Ready For Developments,Orange Island Lekki Phase 1 Lekki Lagos,₦,"155,000/sqm",0,0,0, beds, baths, Toilets +26 Rooms Hotel,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds, baths, Toilets +Office Complex With 2 Bay Warehouse,Agungi Lekki Lagos,₦,"4,700,000,000",0,0,0, beds, baths, Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront 12 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,9 beds,10 baths,10 Toilets +2400sqm Waterfront Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Duplex With A Bq,Off Orchid Road Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House With 2 Room Bq,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,4 baths,5 Toilets +1080sqm Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +2561sqm Joint Venture Land,Ikate Lekki Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +Massive Massion, Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Serviced Flat,Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +"4 Bedroom Duplex With 2 Living Rooms , Fully Fitted Kitchen, All Rooms Ensuite & 1 Room Bq", Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +48rooms Executive Hotel,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +800sqm Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +900sqm Land,Lekki Expressway Ikate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Apartments With 1 Bq Each...., Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex With 2 Room Bq,Nicon Town Ikate Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +4000sqm Waterfront Land,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Detached Duplex All Rooms Ensuite Bq,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New Fully Fitted 4 Bedroom Semidetached Houses With 1 Bq Each, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2 Nos, Of 5 Bedroom Detached House With Bqs On 2 Streets",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Bed Duplex With A Living Rooms , Fully Fitted Open Plan Kitchen, All Rooms Ensuite & Room Bq",Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Wings 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +3507sqm Land,Lekki Expressway Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Waterfront 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Smart House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +2016sqm Waterfront Land,Orange Island Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +900sqm Residential Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0, beds, baths, Toilets +1000sqm Land,Twin Lakes Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +4800sqm Land,Elegushi Ikate Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +800sqm Land,Cowrie Creek Estate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms + Bq Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex + Bq,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Terrace Duplex,Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex + Bq,Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedrooms Apartments,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Luxury 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detatched Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Very Affordable Luxurious, Exquisitively Designed, Furnished Newly Built 4bedroom Semi Detached Duplex With Bq In A Superb Neighborhood",Agungi Agungi Lekki Lagos,₦,"65,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Superb Newly Built 4bedroom Duplex With Bq In A Decent And Serene Neighborhood,Osapa London Osapa London Lekki Lagos,₦,"75,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Bq,Silicon Valley 2 Extension Estate Off New Road/alpha Beach Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedrooms Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms + Bq Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Distress Sales Of 8 Plots Of Dry And Viable Land,Ilasan Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale Of Fully Furnished And Inexplicable Smart & Switch Less 5 Bedroom Fully Detached Duplex In A Fully Serviced Estate With 24hours Light,Orchid Road. Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,6 baths,6 Toilets +2bedroom Maisonette + Bq,"Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,2 baths,2 Toilets +3 Bedrooms Fully Detached Duplex,Lbs Lekki Phase 1 Lekki Lagos,₦,"45,000,000/year",0,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan Sales Of 3 Bedroom Maisonette Duplex With Bq,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,3 baths,4 Toilets +5bedroom Fully Detached Duplex With A Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"125,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,2nd Toll Gate Opposite Eleganza Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully 5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exclusive 4 Bedroom Semi Detached Duplex Wih Massive Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Mega 5 Bedroom Detached House,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully 6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets +Spacious Serviced 3bedroom Flats,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Massive 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,6 baths,7 Toilets +3 Bedroom Semi Detached Duplex + Pent House,Lagos Business School Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Beautifully 5 Bedroom + Bq Semi Detached Duplex,Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 2 & 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4bedroom Detached Duplex,2nd Toll Gate Opposite Eleganza Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached + Bq Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Beautifully 4 Bedroom Terrace 16 Units,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Beautiful 4 Bedroom Semi Detached Duplex + Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Massive Semi Detached In An Estate In Ikota Gra,Ikota Gra Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,7 Toilets +Luxury 4 Bedroom Fully Detached Property,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Automated 5 Bedroom Fully Detached Luxury Duplex,Osapa London Lekki Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Beautifully 4 Bedroom + Bq Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Beautifully 5 Bedroom Fully Detached Detached Duplex With Exquisite Finishes,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5 Bedroom Fully Detached Duplex With Bq, Cinema And Pool",Megamound Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,0 Toilets +Newly Built 3bedroom Apartment With A Lovely Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 2bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 5bedroom Detached Duplex With A Bq,Pinnock Beach Estate Lekki Ikota Lekki Lagos,₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace Duplex In Lekki 1,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Houses,Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Megamond Estate Lekky County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached House With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 & 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,3 beds,3 baths,3 Toilets +Brand New Luxurious 6 Bedroom Fully Detached Duplex,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,6 beds,7 baths,7 Toilets +Massive 5 Bedroom Fully Detached House With A Room Bq And Massive Space, Idado Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,7 baths,6 Toilets +Newly Built 4bedroom Fully Detached Duplex With A Lovely Bq,Oral Estate Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Beautiful 5 Bedroom Fully Detached Duplex With Swimming Pooli In Lekki,Ikota Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Service 4bedroom Terrace Duplex With Fitted Kitchen At Orchid Road,Chevron Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex With Swimming Pool & Bq,Chevron Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,5 Toilets +Beautifully 4 Bedroom Semi Detached + Bq Duplex,Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Luxury Duplex In Ologolo With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Beautifully 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex + Bq,Harris Drive Vgc Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With Enclosed Swimming Pool,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In An Estate With Luxury Fittings,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,5 Toilets +Newly Built Beautifully 4 Bedroom Semi Detached Duplex With Bq ..,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lcc Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5bedroom Detached Duplex With Swimming Pool & Open Pent House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Beautifully 3 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Modern 5 Bedroom Detached Duplex With Swimming Pool And Penthouse,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths, Toilets +2 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built Beautiful 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Tastefully Built Contemporary 5 Bedroom House All Room Ensuite With 2room Bq, 3 Visitor Toilets, Gym, Separate Walk In Closet For Master And Madam,",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +Contemporary And Uniquely Designed 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Flat With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully 4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached House In A Serene Estate,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary Massive 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets +Newly Built 4bedroom Penthouse,Salem Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully 4 Bedroom Semi Detached + Bq Fully Detached,Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex With 2 Bedroom Penthous,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Luxury Fully Detached Duplex With,Victory Park Estate Osapa London Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Hrc Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Hrc Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With A Room Bq,New Road (alpha Beach Road) Opp. Chevy View Estate. Lekki Lagos,₦,"50,000,000",0,0,0,5 beds, baths, Toilets +Newly Fully Detached Luxury 4 Bedroom Duplex With Cinema,Chevron Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Melrose Park Estate Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets +Newly Built 4 Bedroom Luxury Semi Detached Duplex With Bq,"Hrc Estate, Sapata, Beside Vgc Ikota Ikota Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Semi Detached House,Osapa London Garden Osapa London Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +Water Front 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths, Toilets +Newly Built 2 Bedroom Terrace Duplex With Bq,"Horizon Estate, Ikate Ikate Lekki Lagos",₦,"62,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Flat,19 Oba Amusa Street Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000/year",0,1,1,4 beds,3 baths,3 Toilets +6 Bedroom Fully Detached Duplex,Chervyview Estate Chevron Lekki Lagos,₦,"220,000,000",1,0,0,6 beds,6 baths,7 Toilets +Mixed Use Land,Abraham Adesanya Estate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Contemporary 4 Bedrooms Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Boys Quarter,"Off Admiralty Way Lekki Phase 1,lagos Nigeria Lekki Lagos",₦,"260,000,000",0,0,0,5 beds, baths, Toilets +5 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,4 baths,4 Toilets +5 Bedrooms Semi Detached Duplex,Orchid Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished 4 Bedroom Semi Detached Duplex,Buena Vista Estate Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Fully Detached Luxury 5 Bedroom Duplex With Cinema,Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Massionete With Bq,"Courtland Luxury Villa Estate, Platinum Road, Lekki. At The Back Of Femi Okunnu Estate, After Shoprite Jakande, Lekki Expressway Lagos Jakande Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterview 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Offplan 4 Bedroom Maisonette Penthouse With Bq,Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built Five Bedroom Spacious Duplex,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Functioning Filling Station,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Abraham Adesanya, Ogombo Road Lekki Lagos",₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three (3) Bedroom Flat On A 6 Storey Building,Imax Cinema Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,1,3 beds,3 baths,3 Toilets +Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Solar Powered 2 Bedroom Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Lbs Ajah Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,6 Toilets +Decently Spaced 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2 Storey Building Containing Six (6) Bedrooms,Oke Ire Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,0,0,6 beds,4 baths,4 Toilets +Decently Finished 5 Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment With Bq,"Olusesi, Chevron Extension Lekki Lagos",₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Maisonette In A Prime Location,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,2 Toilets +Furnished 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +45 Plots Of Land At Chevron Drive,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategically Located 3 Bedroom Apartment Plus Penthouse,Off Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,2 Toilets +Finished 4 Bed Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious 4 Bed Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bed Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built 5 Bedroom Magnificent Edifice,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Massionette With Bq Offplan,Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached House On 1300m2,Victoria Gargen City Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Block Of Flats,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,1,0,3 beds,3 baths,4 Toilets +Ambiance Heights Lekki,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Mufasa Luxury Apartments, Ikate Lekki",Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +3 Bedroom Massionette With Bq Offplan,Ikate Lekki Lagos,₦,"73,000,000",1,1,0,3 beds,4 baths,4 Toilets +One Bedroom Apartment ( Offplan),Ikate Lekki Lagos,₦,"38,000,000",1,1,0,1 beds,2 baths,2 Toilets +Plot Ofland,Victory Park Estate Jakande Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +De Castle Max Apartments,"Orchid, Road Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Igbo Efon Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Flat (offplan Sales),Ologolo Lekki Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached House With Bq,Awodele Abiodun Megamond Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"The Pearl Residences, Abijo Lekki",Abijo Lekki Lagos,₦,"18,000,000",0,0,0,1 beds,1 baths,2 Toilets +Newly Built 4 Bedroom Terrace,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"67,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Penthouse,Ilasan Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House Plus Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +One Bedroom Luxury Apartment,Ilasan Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets +Ruby 3 Lekki,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Massionette Offplan,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,3 baths,3 Toilets +3 Bedroom Penthouse With Bq ( Offplan),Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Flat (offplan Sales),Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,3 baths,3 Toilets +Land,Lacampagne Tropicana Beach Resort Lekki Phase 2 Lekki Lagos,₦,"500,000",0,0,1,0 beds,1 baths,1 Toilets +3 Bedroom Block Of Flats,"Lekki Conservation Road, Chevron Lekki Lagos",₦,"50,000,000",1,1,1,3 beds,4 baths,4 Toilets +2 Bedroom Block Of Flats,"Lekki Conservation Road, Chevron Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets +1 Bedroom Block Of Flats,Lekki Conservation Road Chevron Lekki Lagos,₦,"25,000,000",1,1,1,1 beds,2 baths,2 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,"Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"Chevron Alternative Route, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 2 Units Of 4 Bedroom Terrace Duplex,"Chevron Conservation Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4/5 Bedroom Detached House,"Chevron Conservation Drive, Lekki Chevron Lekki Lagos",₦,"130,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"Off Freedom Way, Ikate Lekki Phase 1 Ikate Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,"Pinnock Beach Private Estate, Osapa London Lekki Phase 1 Osapa London Lekki Lagos",₦,"420,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 2 Units Of 5 Bedroom Semi Detached Duplex,"The Palms Estate, Lekki Lagos Osapa London Lekki Lagos",₦,"210,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Ologolo Lekki Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"Bakare Estate, Agungi Lekki Lagos Agungi Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Relatively New 4 Bedroom Furnished Semi Detached,"Lekki County, Lekki Lagos Ikota Lekki Lagos",₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pool In Ikota,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Luxury Bedroom Detached Duplex,Osapa London Estate Jakande Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land With C Of O,"Pratch Garden, Ikota Gra Ikota Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Terrace,Opposite Chevron Orchid Road Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets +Ambiance Height Estate Freedom Way Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"70,000,090",1,0,0,2 beds,2 baths,2 Toilets +2 Bedroom Apartments,Ologolo Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,2 Toilets +2 Bedroom Maisonette + Bq,Off Freedom Way Ikate Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,2 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,2 Toilets +2 Bedroom Apartments,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,1 baths,2 Toilets +2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5plots Of Land,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 4 Bedroom Duplex With Bq Sitting On Approximately 320 M,Illasan Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,6 Toilets +Brand New Luxury 2 Units 5 Bedrom Fully Detached Duplex With 1 Room Bq Each,Within A Beautiful Estate In Agungi Lekki Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Residential 1, 211sqms","Orange Island, Lekki Lekki Lagos",₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land With C Of O,Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Peridot Heights, Chevron Lekki Lagos,₦,"32,900,000",0,0,0,0 beds,0 baths,0 Toilets +3062 Square Meters Land,Jakande Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Units Available At Ikate, Lekki",Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan 2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +800sqm Land,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Penthouse And Indoor Swimming Pool,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Bareland With C Of O,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Corner Piece Bareland,Twinlakes Estate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Nicon Town Estate Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Two Floors,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"600sqm Land At Ikate Elegushi Off Freedom Way By Mtn Project Fame,",Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bdrm Duplex With Bq And Governors Consent,Pinnock Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Plots Of Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Over 60plots Land With Excision,Atlantic Mall Area(chevy View) Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +3250sqm With C Of O Fenced With Gate,Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O,Cowrie Creek Oral Estate Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Land,Ikota Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Pinnock Estate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bdrm Terrace Duplex With Allocation,By Elegushi Junction Jakande Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +1000sqm Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Chevron Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Pinnock Estate Lekki Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Pinnock Estate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land With C Of O,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Smart House,2nd Tollgate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With C Of O In Oniru,Oniru Estate Ikate Lekki Lagos,₦,"27,000",0,0,0, beds, baths, Toilets +Strategically Located Land With C Of O,Facing The Road Chevron Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +New 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced And Furnished 3bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Plot Of Land,Megamound Estate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Penthouse,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Spg Road Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Off Gbangbala Street Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1255sqm Land With C Of O,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential 928.45sqms,"Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Residential 1,226.69sqms","Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 600sqm Plots Of Land,"Winhomes Estate, Orchid Road Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victory Park Estate Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cargo Vessel For Sale,Lekki Lagos,$,"2,100,000",0,0,0, beds, baths, Toilets +Newly Built 4bdrm Semi Detached Duplex With Bq,Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,5 baths,5 Toilets +5000sqm Land,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots(1 Acres) With C Of O Facing Orchid Hotel Road,Orchid Hotel Road Chevron Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +700sqm Of Dry Land,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lands, Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Spacious Cozy 4 Bedroom Semi Detached Duplex With Maid's Room At Angles Court Abijo, Lekki",Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Super Luxury Duplex.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"10,000sqm Sand Filled Land",Ilasan By Blenco Stores Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,4 Toilets +Distress Sale Of 4 Bedroom Duplex,... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Terrace Duplex With Bq,Ffjjkncf Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +A 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +New 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +100 Hectares Of Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5bedroom Detached Duplex,Onikoyi Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bare Land Measuring 1022sqm,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Pinnock Estate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bareland With Demolishable Structure,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +Land With C Of O,Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Finished 3 Bed Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of 400sqm Plots,Lakeview Park 2 Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Over 10 Hectares Of Dry & Marshy Plots,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +1821sqm Corner Piece Land,Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 8bdrm Mansion With Consent,Ikota Lekki Lagos,₦,"150,000,000",0,0,1,8 beds,7 baths,8 Toilets +Available Land,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1154 Square Metres.,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential 911.90sqms,"Orange Island, Lekki Lekki Lagos",₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Twin Lake Estate Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +2units Of 4bedroom Semi Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Mixed Development Waterfront 1,400sqms At N300,000 Per Sqm","Orange Island, Lekki Lekki Lagos",₦,"300,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Contemporary Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury & Lovely 3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,5 Toilets +Tastefully Finished 4 Units (four) Of 4 Bedroom Terraces With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,6 Toilets +Brand New Luxury Built And Tastefully Finished 3 & 4 Bedrom Duplex With 1 Room Bq,"Ikota Villa Estate, Ikota Lekki Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedrom Flat Wit A Bq With Swimming Pool,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Units Of Five (5) Bedroom Smart Luxury Detached House,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds, baths,7 Toilets +2000sqm Waterfront Land At Pinnock Beach Estate Phase 1 With Gov Consent,Pinnock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Luxury & Exquisitely Finished 2 Bedroom Terrace Duplex With A Room Bq,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Home For Sale,12 Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"160,000,000/year",0,1,0,5 beds,5 baths,5 Toilets +Land For Jv,Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000/month",0,1,0,4 beds,0 baths,0 Toilets +Solid And Well Finished 4 Bedroom Semi Detached Duplex With A Bq,"Victoria Crest Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Modern Architectural Terrace Duplex,Beach View Estate Ologolo Lekki Lagos,₦,"107,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Waterfront Semi Detached Villa.,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Homes With Service Quarters,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartments,Key Gardens Luxury Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +"50 Standard Room Hotel In Lekki, With Swimming Pool",Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Contemporary Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Corner Piece Duplex Sitting On More Than 700sqm.,Lekki County Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With 1 Bedroom Bq All En Suite.,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Contemporary House With 1 Room Service Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedrooms Apartment (penthouse),Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Luxury 5 Bedroom Fully Detached House With A Bq, Cinema And A Pool",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury House With 3 Sit Out Terrace,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"550,000,000",1,1,0,5 beds,5 baths,6 Toilets +Premium Finished Scandinavian Style 3 Bedroom Apartment With A Bq.,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets +Well Finished Contemporary 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"105,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Terrace With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Aesthetic 5 Bedroom Detached House With Large Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Large Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq And Swimming Pool,Lekki County Homes ?? Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious Waterfront 5 Bedroom Fully Detached Contemporary House With Boys' Quarters,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms With Bq,Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Contemporary 4 Bedroomfully Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terraces,Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bed Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Aesthetic 5 Bedroom Detached House,Ologolo Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Agungi Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse With Bq (on Going Construction 70% Complete),Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plots Of Land,"Beside Cooplag Estate Orchid Road, Ikota Lekki Lagos",₦,"50,000,000/year",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ocean Bay Estate Orchid Road 2nd Toll Gate Ikota Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,5 Toilets +"3 Bedrooms Plus Bq Smart Maisonette At Camberwall Advantage 3, Ikate Lekki",Camberwall Advantage Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedrooms Luxury Penthouse Apartments,"Camberwall Advantage 4, Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Harris Drive (shapata) By Vgc Off Lekki Epe Express Road. Vgc Lekki Lagos,₦,"77,500,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Magnificent 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom And 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Terrace Duplex,Gated Estate Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq In A Secured Estate,Gated Estate Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Open Roof Terrace,Gated Estate Ikate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Open Terrace & Swimming Pool,Gated Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"102,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex Facing Waterfront,"Off Chevron Drive, Gated Estate Chevron Lekki Lagos",₦,"124,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema Sitting On 500sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Gated Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool, Cinema Room And Gym House",Gated Estate Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With Bq In A Serene Mini Estate,Mini Estate Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 2 Bedroom Flat In A Quiet Neighbourhood,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Magnificently Finished 4 Bedroom Terrace Duplex With Bq With 24hrs Light,Mini Estate Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,0 baths,0 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Mini Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced & Exquisitely Built 3 Bedroom Flat,Mini Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Luxury Terrace With En Suite Bq,Opposite Niccon Town Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Built 4 Bedroom Semi Detached Duplex With Bq In A Quiet Mini Estate,Gated Estate Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With 1 Bedroom Flat Bq,Mini Estate Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 2 Bedroom Flat,Lekki 2nd Toll Gate Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Gated Estate Osapa London Lekki Lagos,₦,"400,000,000",1,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"30,000sqm (45plots) Of Bare Land",Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Serviced & Exquisitely Built 3 Bedroom Flat In A Mini Estate,Gated Estate Ilasan Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,0 baths,0 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 4 Bedroom Terrace Detached Duplex With Bq,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool In A Serene Estate,Mini Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced & Exquisitely Built 4 Bedroom Semi Detached Duplex In A Serene Estate,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Security Tight Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Luxury 3 Bedrooms Apartment,Gated Estate At Maurwa Lekki Lekki Phase 1 Lekki Lagos,₦,"56,000,000",1,0,0,3 beds,4 baths,4 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Built 4 Bedroom Semi Detached Duplex,Gated Estate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Security Tight Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq With Excellent Facilities,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Built 4 Bedroom Detached Duplex With Bq In A Serene Environment,Off Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,0 baths,0 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With An Ensuite Bq With Kitchen,Gated Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Gated Estate Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced & Exquisitely 3 Bedroom Flat With Bq,Gated Estate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 3 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Built 4 Bedroom Detached Duplex With Bq In A Quiet Neighbor Hood,Lekki 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Ikate Lekki Lagos,₦,"102,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 5 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex With Bq In A High Brow Estate,Mini Estate Ikota Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex In A Quiet Neighbourhood,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced & Exquisitely Built 4 Bedroom Terrace Duplex,Gated Estate Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Swimming Pool & Open Terrace,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Terrace Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Cinema Room,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bare Land,Alpha Beach Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 2 Bedroom Flat,Gated Estate Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +Magnificently Finished 5 Bedroom Semi Detached Duplex With Bq,Mini Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Off Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced & Tastefully Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced & Exquisitely Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq & Swimming Pool,Mini Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq( Smart House) With 24/7 Power Supply,Mini Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,6 beds,0 baths,0 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 1 Bedroom Flat In An Upscale Environment,Gated Estate Agungi Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Gated Estate,Gated Estate Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool & Penthouse Overlooking A Lake,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex On A Large Expanse Of Land,Gated Estate Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 2 Bedroom Flat With Bq Fully Serviced,Gated Estate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With 24hrs Power Supply,Gated Estate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,"Gated Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Oral Estate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema, Gym Room Sitting On 540sqm",Admiralty Axis Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Cinema, Gym Room Sitting On 540sqm",Admiralty Axis Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Terrace Duplex With Guaranteed Power Supply,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Swimming Pool & Bq,Gated Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Detached Duplex With Bq In A Quiet Estate,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In A Gated Estate,Lekki 2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Flawlessly Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Ikota Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Furnished 2 Bedroom Flat With 24 Hours Light,Mini Estate Osapa London Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Quiet Mini Estate,Lekky County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Swimming Pool & Gym,Lekki 2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Uniquely Finished 4 Bedroom Semi Detached Duplex Facing Waterfront,Gated Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 2 Bedroom In A Serviced Environment,Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +Magnificently Finished 5 Bedroom Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace,Ikota Lekki Ikota Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq In A Serviced Estate,Mini Estate Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Built 4 Bedroom Detached Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Mini Estate Ologolo Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Terrace Duplex With Bq,Mini Estate Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With Bq,Gated Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Magnificently Finished 5 Bedroom Detached Duplex With Pool, Cinema & Gym",Gated Estate Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced & Fully Furnished 5bedroom Detached Duplex With 24hrs Light,Chevron Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq,Mini Estate Agungi Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"2nd Toll Gate At Ikota, Lekki. Ikota Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lagos Vgc Lekki Lagos,₦,"79,500,000",1,1,0,5 beds,4 baths,5 Toilets +Water Front 2bedroom Apartment,Lekki Phase 1 Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Luxurious Smart Duplex With Swimming,Orchid Road Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Luxury Semi Detached Duplex + Bq,Off Chevron Lekki Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,3 baths,3 Toilets +"3 Bedrooms Apartments At Mufasa Lifestyle Luxury Ikate, Lekki",Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,1,3 beds,3 baths,3 Toilets +A 2 Bedroom Smart Luxury Penthouse,"Godmade Connect Court; Behind Onike Art Gallery Ikate, Lekki Ikate Lekki Lagos",₦,"80,000,000",0,1,0,2 beds,2 baths,2 Toilets +Tastefully Finished Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury 5 Bedroom Fully Detatched With A Bq,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Penthouse,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Smart 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Fully Serviced 3 Bedroom Flat,"Ikate, Lekki Ikate Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,4 baths,4 Toilets +Affordable Well Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Value Centric 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +State Of The Art 4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished Contemporary 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Terraced House With Bq,Plot 35 Ladipo Omotosho Cole. Lekki Face 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Luxury 4 Bedroom Terrace Duplex,"Osapa London, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex + 1,Lekki Phase 2 Estate By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Orchid Hotel Road Ikota Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace (gated),Orchid Hotel Road (before The Roundabout) Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,4 Toilets +Newly 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Osapa Lekki,lagos Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,6 Toilets +4 Bedroom Semidetached Duplex,"2nd Toll Gate Lekki,lagos State Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds, baths, Toilets +Mufasa Lifestyle Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Luxury Fully Detached Duplex With Bq,Lekki County Home Lekki Lagos,₦,"160,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semidetached Duplex With Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semidetached Duplex Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,3 baths,4 Toilets +2 Bedroom Apartment,Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +Exquisitely Decently Finished Spacious 4 Bedroom Fully Detached Duplex Jen,Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths, Toilets +Newly 2 Bedroom Apartment,Nicon Town Lekki Lagos,₦,"40,000,000",1,1,0,2 beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +An Exquisitely Finished And Newly Built 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets +Exquisitely Decently Finished Spacious 4 Bedroom Fully Detached Duplex Jen,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths, Toilets +4 Bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds, baths, Toilets +2 Bedroom Massionette,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds, baths, Toilets +Newly Built 4 Bedroom Semidetached Bedroom With Bq,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Camberwall Advantage 3&4,"Freedom Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semidetached Duplex With Bq,2nd Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,0,4 beds, baths, Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Alluring Fully Automated 5 Bedroom Fully Detached Luxurious House, Nestled Within A Family Friendly And Secured Environment",Lekki Left Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spectacular 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex In A Serene Family Friendly Estate,"Van Daniel's Estate, Off Orchid Hotel Road Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Luxury 4 Bedroom Terrace In A Highly Secured Area,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex House,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Masionette Duplex,"Ambiance Heights, Freedom Way Lekki Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Twin 4 Bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex Available,"Orchid Road, Lekki Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex Available,"Orchid Road, Lekki Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury & Affordable Lekki Terraces,"Orchid Road, Lekki Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Unconventional, Spacious 4 Bedrooms Full Detached Duplex With Bq",Ikota Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Contemporary, Spacious, Luxury 5 Bedroom Detached Duplex",Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units 5 Bedroom Luxury Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +State Of Art 5 Bed Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"368,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets +2 Bedroom Maisonette + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Camberwall Advantage; 4bedrooms Maisonette Penthouse + Bq,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,0 baths,0 Toilets +1 Bedroom Apartment + Bq,Lekki Lagos,₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets +Decently Built 2 Bed Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,0 baths,0 Toilets +600sqm Land,Bogije Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mufasa Apartments : Home For The Elites,Ikate Elegunshi Lekki Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,0 baths,0 Toilets +Brand New Beautiful 3 Bedroom Flat,Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Decently Finished 2 Bed Apartment With Swimming Pool,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Mufasa Lifestyle Apartments,"Location* Ikate Elegunshi, Lekki. Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,0 baths,0 Toilets +"3 Bedroom Flat In A Block Of Flat, All Rooms Ensuite",Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki County Homes Eti Osa Lekki Lagos State Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex.,Lekki County Homes Eti Osa Lekki Phase 2 Lekki Lagos,₦,"173,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 3 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds, baths,4 Toilets +4 Bedroom Terrace Duplex With 1bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +"One Bedroom Studio Apartment,",Ikate Lekki Lagos,₦,"30,000,000",0,1,0,0 beds,0 baths,2 Toilets +1 Bedroom Apartments,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,1 beds,1 baths,1 Toilets +Newly Built 5 Bedroom Duplex With B/q,Orchid Road Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built Exclusive 5 Bedroom Duplex With B/q,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki Lekki Phase 2 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built Exclusive 5 Bedroom Duplex With B/q,Lekki 2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,7 baths,7 Toilets +3 Bedrooms Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,4 baths,4 Toilets +"Block Of 4 Flat, Two Unit Of 3 Bedroom And Two Unit Of 2 Bedroom Flat",Abijo Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four (4) Bedroom Duplex With Staff Quarters,Idado Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Standard Shop With Extra Space,Baale Street Igbo Efon Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,1 Toilets +Five (5) Bedroom Fully Detached Duplex With Swimming Pool And A Staff Quarters,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +(distress) Five (5)bedroom Fully Detached Duplex With A Staff Quarters,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced Four (4) Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex Available,Vgc Lekki Lagos,₦,"98,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex Available For Sale,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex Available For Sale,Vgc Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +N53m Luxury & Affordable Lekki Terraces,Igbo Efon Lekki Lagos,₦,"53,000,000",0,1,0,4 beds, baths, Toilets +Well Finished 4 Bedroom Semi Detached Duplex Available,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +Executive 5 Bedroom Fully Detached Duplex For Sale,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds, baths, Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,0 Toilets +Fully Serviced 2bedroom Apartment,Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Located In A Very Conducive Estate.,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets +Contemporary 4 Bedroom Semi Detached For Sale,Chevron Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +Sophisticated 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"330,000,000",0,1,0,5 beds, baths, Toilets +4 Semi Detached Duplex With Bq Available For Sale,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex Available For Sale,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +4bedroom Fully Detached Duplex For Sale,Orchid Road Lekki Lagos,₦,"95,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex For Sale,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Penthouse Available For Sale,Agungi Lekki Lagos,₦,"170,000,000",0,1,0,5 beds, baths, Toilets +5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Fully Detached Duplex Available For Sale,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex Available,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Orchid Road Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds, baths, Toilets +Astonishing 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Fully Service Apartment Available For Sale,Chevron Lekki Lagos,₦,"39,000,000",0,1,0,2 beds, baths, Toilets +4 Semi Detached Duplex With Bq Available,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Available For Sale,Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +2 Bedroom Apartment Available,"Orchid Road, Lekki Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,1,0,2 beds,0 baths,0 Toilets +Off Plan Offer At Ikate You Can Own With N15m Initial Deposit And Spread Balance Over 12months.,Ikate Lekki Lagos,₦,"15,000,000",0,1,0,3 beds, baths, Toilets +"Luxurious 1 & 2 Bedrooms Apartments, 3 Bedrooms Pent Houses",Off Road Freedom Way / Amore Street Lekki Phase 1 Lekki Lagos,₦,"48,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built En Suite 4 Bedroom Semi Detached Duplex Plus Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bed Detached Duplex,"Empire Estate,chevron Alternative Route. Chevron Lekki Lagos",₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Contemporary Duplex With Bq,Osapa London Lekki Lagos,₦,"440,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Maisonnette In A Serene Location In Lekki,Freedom Way Lekki.. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex House With A Bq,Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Penthouse Apartment,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"98,000,000",1,0,0,4 beds,5 baths,5 Toilets +C Of O Dry Land,Cowrie Creek Estate Off Spar Road Ikate Lekki Lagos,₦,"228,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Water Front C Of O Land,"Just By World Oil Filling Station, Ilasan Ikate Lekki Lagos",₦,"162,500,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Newly Built 1 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,1 beds,2 baths,2 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Bq,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 3 Bedroom Smart Maisonette With Bq In A Serene Environment,Ambiance Heights Off The Regional Road Which Is Off The Freedom Way In Lekki. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Smart Apartment With Bq In A Serene Neighborhood,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxury 6 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished Fully Automated 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"57,500,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bed Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex Masterpiece With Swimming Pool In A Serena Neighbourhood,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Maisonette,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +3 Bedroom Terrace Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"62,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Smart Maisonette With Bq In A Serene Environment,Ambiance Heights Off The Regional Road Which Is Off The Freedom Way In Lekki. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets +C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Luxury Maisonette With Bq In A Serene Neighborhood,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets +C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Smart Apartment In A Serene Neighborhood,Camberwall Advantage 4 Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Smart Apartment In A Serene Environment,Ruby 3 Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,3 baths,3 Toilets +Water Front C Of O Land,"Just By World Oil Filling Station, Ilasan Ikate Lekki Lagos",₦,"162,500,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Penthouse In A Serena Neighborhood,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Elegantly Finished 5 Bedroom Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0, beds, baths, Toilets +C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Penthouse In A Serene Neighborhood,"Godmade Connect Court 4 Lekki Off Freedom Way, Off Regional Road Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Maisonette In A Serene Environment,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,3 baths,3 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Detached Duplex With Bq,Lekki Phase 1 Vgc Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached With Swimming Pool,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets +Decently Finished Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"385,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Smart Apartment With Bq In A Serene Neighborhood,"Mufasa Lifestyle Ikate Elegunshi, Lekki Ikate Lekki Lagos",₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets +C Of O Dry Land,Cowrie Creek Estate Off Spar Road Ikate Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Smart Fully Detached Duplex With Bq In A Serene Environment,Pantheon Smart Homes Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Smart Residential Apartment With Bq In A Serena Neighborhood,"Mufasa Lifestyle Ikate Elegunshi, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +C Of O Dry Land,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +C Of O Dry Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 1 Bedroom Studio Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,1 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Luxury Maisonette With Bq In A Serena Neighborhood,Camberwall Advantage 3 Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +C Of O Dry Land,Beside The Local Government Secretariat Igbo Efon Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Plots Of Lands In Ibeju Lekki,Ikota Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Secured Land With Governor's Consent At Ikota Gra,Ikota Gra Honey Dew Court Estate Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Mansionette With A One Room Boy’s Quarter,"Experience (horizon) Estate, Ikate, Lekki Ikate Lekki Lagos",₦,"65,000,000",0,1,0,2 beds,2 baths,3 Toilets +Ongoing Development,Carrie's Court Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Harris Drive Before North West Filling Station Vgc Lekki Lagos,₦,"90,000,000/year",1,1,0,4 beds,5 baths,6 Toilets +3 Bedroom Flat / Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Governor Consent,Ikate Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets +Fully Serviced Alluring 4 Bed Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Agungi Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets +A One Bedroom Maisonette,Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +Well Finished 4 Bedroom Detached House With Large Compound,Oniru Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Four Units Of Three Bedroom Flats, Mini Flats, Three Units Of Selfcon",Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bed Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Contemporary Furnished 5 Bedroom Fully Detached Mansion,Chevron Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Governor Consent,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets +"Distress Sale 4 Bedroom Detached House In Chevron, Semi Detached, Fully Furnished With Two Cars",Chevron Lekki Lagos,₦,"100,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedrooms Terraced House With One Room Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decently Finished 4 Bed Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Three Bedroom Terrace House With Bq.,Lekki Lagos,₦,"69,800,000",0,0,0,3 beds,3 baths,4 Toilets +Governor Consent,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Governor Consent,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Massionette,Oniru Lekki Phase 1 Lekki Lagos,₦,"280,000,000",1,1,0,4 beds,5 baths,5 Toilets +Off Plan Sales For 2 Bedroom With Bq,Oceanbay Estate Chevron Lekki Lagos,₦,"37,500,000",0,0,0,3 beds,3 baths,4 Toilets +Governor Consent,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +Super Beautiful 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Four Bedroom Terrace Duplex With Bq,Ologolo Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Decently Finished 5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Six Units Of 3 Bedroom Flat,Before Vgc Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds, baths, Toilets +Governor Consent,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,2 beds,3 baths,3 Toilets +Governor Consent,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,7 baths,7 Toilets +3 Bedroom Apartment Pent House,Freedom Way Camberwall Advantage Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Apartment In A Serene Environment At Lekki Phase 1,Freedom Way Camberwall Advantage Phase 4 Lekki Lekki Lagos,₦,"6,000,000/day",0,0,0,2 beds,2 baths,2 Toilets +7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets +Fully Serviced 4 Bedroom Duplex House With Swimming Pool,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Massionate,Orchid Road Dunvalecourtv Estate Chevron Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,4 baths,4 Toilets +3 Bedroom Terraces At Orchid Road,Dunvalecourtv Estate Chevron Lekki Lagos,₦,"45,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Massionate At Orchid Road,Orchid Road Dunvalecourtv Estate Chevron Lekki Lagos,₦,"45,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Apartment At Orchid Road,De Castlemax Estate Lafiaji Chevron Lekki Lagos,₦,"35,000,000/day",0,0,1,2 beds,2 baths,2 Toilets +1 Bedroom Apartment,Orchid Road De Castlemax Apartment Lafiaji Chevron Lekki Lagos,₦,"20,000,000/day",0,0,1,1 beds,1 baths,1 Toilets +Newly Built 4 Bedroom Massionate With Bq,Bloom Haven Estate Ikate Lekki Lagos,₦,"83,000,000/day",0,0,1,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Pent House With Bq,Bloom Haven Estate Ikate Lekki Lagos,₦,"83,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +2 Bedroom Pent House,Bloom Haven Estate Ikate Lekki Lagos,₦,"63,000,000/day",0,0,1,2 beds,2 baths,2 Toilets +Newly Built 1 Bedroom Maisonette,Bloom Haven Estate Ikate Ikate Lekki Lagos,₦,"43,000,000",0,0,1,1 beds,1 baths,1 Toilets +Newly Built 1 Bedroom Studio Apartment At Ikate,Bloom Haven Estate Ikate Ikate Lekki Lagos,₦,"38,000,000/day",0,0,1,1 beds,1 baths,1 Toilets +Detached Five Bedroom House,Off Providence Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,1,5 beds,6 baths,6 Toilets +Luxury 2bedroom Apartment,"Olusesi, Chevron Extension Lekki Lagos",₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex Nicon Town Lekki,Nicon Town Zone C Nicon Town Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Superb 2bedroom Flat,Chevron Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,0 beds,6 baths,5 Toilets +Newly Built 5bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Half Completed 4 Bedroom Duplex,Amazing Amen Estate Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Bq,Good Best Street Location In Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Duplex,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex In Lekki,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Superb 5bedroom Duplex,Chevron Estate Street Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Bq And Swimming Pool Lekki,Inside A Gated Residential Estate Osapa Lekki Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Detached 5 Bedroom Duplex In Ikota Lekki,In Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Superb Newly Built Duplex In Lekki Phase One,Inside A Gated Residential Estate In Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Bq,In A Gated Residential Estate In Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Superb 4 Bedroom Terrace Duplex,Ologolo Ikate Lekki Ologolo Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Superb 4bedroom Duplex,Residential Gated Ikota Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Luxury Apartment,Residential Estate Beside Mercedes Benz Lekki Right Ikate Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Three (3) Bedroom Flat With A Bq,Primewatergarden Ii Estate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,2 baths,3 Toilets +Detached Duplex Of 5bedroom House In Ikota Lekki Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex With Bq,Off Chevron Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Luxury Apartment,Superb Residential Estate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,Inside Pinnock Estate Ikate Lekki Lagos,₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,In A Gated Mini Estate Inside Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Spacious Compound 5bedroom Duplex With Bq,Chevrin Estate Street Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With Bq,Superb Location Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex House With Certificate Of Occupancy,University Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached House,Off Almiralty Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Cowrie Creek Estate Lekki Ikate Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Joint Venture 900sqm Corner Piece Bare Land Ilasan Lekki,Interlocked Paved Residential Street Ilasan Lekki Lagos,₦,"130,000,000/year",0,0,0, beds, baths, Toilets +Superb 8 Bedroom House In Vgc Lekki,Best Street In Victoria Garden City Lekki Vgc Lekki Lagos,₦,"700,000,000",0,0,0,8 beds,8 baths,9 Toilets +Newly Built 4bedroom Semi Detached Duplex Osapa Estate Lekki,Off Circle Mall Way Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Two (2) Bedrooms Flat In Novabase Apartment, Lekki Phase 1",Novabase Apartment Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Duplex,Off Circle Mall Road Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Distressed Sale Of 4bedroom Duplex,Inside A Residential Gated Estate On Orchid Road Lekki Ikota Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Distressed Sale Superb 4, Bedrooms Duplex With Bq",A Superb Estate Compound Inside A Gated Estate In Agungi Lekki Agungi Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,"Bogije, Ibeju Lekki Richland Estate Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,1 beds, baths, Toilets +4 Bedroom Terrace + Bq,"Godmade Connect Court 4, Off Freedom Way Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,"Abijo,behind Oando Fuel Station Off Lekki Epe Expressway Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedrooms Maisonette,Freedom Way Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury Built 5 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Massive 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Terrace Duplex With Self Compound And A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex With Government Consent In A Beautiful Location,"Abijo, Abijo Gra Lekki Lagos",₦,"45,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Brand 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Contemporary 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Lekky County Homes Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Fully Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex With C Of O In A Serene Environment,Abijo Gra Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With Bq,"Megamond Estate Lekky County Homes, Lekki Lagos. Just About 1 Minute Drive From Chevron Ikota Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Smart House With Private Cinema And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Luxurious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Luxury 5bedroom Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Lovely 3 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment With Governor's Consent In A Good Location,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds, baths, Toilets +2 Bedroom Terrace Duplex With C Of O In A Beautiful Location,"Abijo,gra By Chois Garden Estate Lekki Lagos",₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +"An Automated Unconventional 5 Bed Detached House With Swimming Pool, Cinema, Gym And 2 Bqs",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Exquisitely Finished 5 Bedroom Fully Detached Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Ovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex In A Beautiful Location,Opposite Ocean Bay Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +Luxury 2 Bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,2 beds, baths, Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,"Ologolo, Jakande Axis Ologolo Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3bedroom Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,1,3 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxury 5bedroom Duplex With Swimming Gym And Two Room Bq,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"Bonavista Estate, Orchids Road Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,5 Toilets +An Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely 3 Bedroom Apartments,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,2 baths,3 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +6 Units Of 4 Bedroom Terraced Houses With 12 Room Bq Bungalow,By Waterside Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,1,1,4 beds,5 baths,5 Toilets +600 Sqm Of Land With C Of O In A Good Location,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +450 Sqm Land With C Of O In A Beautiful Location,"Abijo, Abijo Gra Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With A Room Bq,"Mege Chicken, Ikota Villa Ikota Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Idado Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached Duplex With C Of O In A Good Location,"Abijo, Gra Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets +A 5 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,"Off Freedom Way, Godmade Connect Court 4 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5bedroom Luxury Duplex,In A Gated Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1, beds,5 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Luxury Three Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +"The Amusa 7 Estate Is Water Front Estate Which Comprises Of 24 Units Of 4 Bedroom Terraces, 4 Units Of 3bedroom Flats And 8 Units Of 2bedroom Flats",Ladipo Latiwo Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached With Bq,"Abijo,sunday Ejiofor Street, Green Park Scheme Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Top Notch Finished 5 Bedrooms Fully Duplex With Bq,Mega Mound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Duplex House With Swimming Pool,Chevron Lekki Lagos,$,"100,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex House With A Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,5 Toilets +2700sqm Cbd Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"460,000,000",0,0,0, beds, baths, Toilets +650sqm Prime Land,Alpha Beach Rd Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Luxurious 2bedroom Apartment,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +3bedroom Luxury Apartment,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets +600sqm Premium Land,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Outstanding 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +2bedroom Luxury Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets +420sqm Prime Land,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets +5bed Spacious Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +New 3bedroom Terrace Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Detached Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Semi Detached With Governor's Consent,Orchid Road Dunvalecourtv Estate Chevron Drive Chevron Lekki Lagos,₦,"50,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +5 Bedroom Detached House On Two Levels,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With B,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Luxury Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 2bedroom Apartment,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,2 beds,3 baths,3 Toilets +Brand New Fully Furnished 5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +930sqm Cornerpiece Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5bedroom Duplex In Chevron,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,5 baths,5 Toilets +New 3 Bedroom Apartment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +1424sqm Prime Land,Alpha Beach Rd Opposite Chevron Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +3bedroom Terrace Duplex,Ajiran Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Smart House,Off Kunsela Road Ikate Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +1bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets +4bedroom Smart Detached Duplex,Pinnock Beach Rd Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedroom Detached Duplex,Kunsela Rd Ikate Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +2bedroom Penthouse Apartment,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"280,000,000",1,1,0,5 beds,7 baths,7 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki,Osapa London Lekki Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds, baths, Toilets +3bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury Built 4 Bedroom Semi Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,6 Toilets +1150sqm Cbd Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Duplex With Bq,Lekki Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,7 baths, Toilets +Newly Built 4bedroom Semi Detached Duplex,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 1 Bedroom Apartment,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"30,000,000",0,1,0,1 beds,0 baths,0 Toilets +Brand New 2bedroom Flat,Off Enyo Filling Station Ikate Lekki Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Built 5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Maisonette With Bq,Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 5bedroom Edifice With Swimming Pool And Open Terrace,Ikota Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New Semi Detached 4bedroom Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +"Kingly Finished 5bedroom, Fully Furnished Duplex With 2 Rooms Bq",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,0 baths,0 Toilets +Distressed Semi Detach 4bedroom Duplex With All Furniture,Lekki County Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,0 Toilets +Modern And Well Functional 4 Bedroom Semi Detached Duplex + Bq,"Ikota Gra, Ikota Villa Estate Lekki Phase 1 Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,By Second Tallget Ikota Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +Affordable Spacious 4bedrooms Fully Detached Duplex With A Bq,Conservation Senter Ikota Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,5 baths,5 Toilets +Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Second Tallget Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Standard Newly Built 4bedrooms Terrace Duplex,Second Tallget Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Spacious Affordable Luxury 3 Bedroom Terrace Duplex,Lekki Gardens Phase 2 Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,1,3 beds,4 baths,4 Toilets +Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"165,000,000",1,0,1,5 beds,6 baths,6 Toilets +Newly Built Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Beautiful Standard 4bedrooms Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets +Newly Built Spacious 4bedrooms Terrace Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Spacious 5 Bedrooms Fully Detached Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Spacious 3bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"37,000,000/month",1,1,1,3 beds,4 baths,4 Toilets +Newly Built 5bedrooms Luxury Fully Detached Duplex,Ajah Lekki Phase 2 Lekki Lagos,₦,"78,000,000/sqm",1,1,1, beds, baths, Toilets +Newly Built Beautiful Standard 5bedrooms Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,6 Toilets +Fully Detached 5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built Spacious 4bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +5bedrooms Luxury Standard Fully Detached Duplex,Conservation Chevron Lekki Lagos,₦,"68,000,000/year",1,1,1,5 beds,6 baths,6 Toilets +Beautiful Standard 4 Bedrooms Terrace Duplex With A Bq,By Second Tallget Ikota Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Spacious 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Spacious 5bedrooms Fully Detached Duplex With Swimming Pool,Second Tallget Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built Beautiful Standard 5 Bedrooms Fully Detached Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built Spacious 4 Bedrooms Fully Detached Duplex With A Bq,Chevron Ikota Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Spacious 4bedrooms Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Beautiful And Unique 4bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"58,000,000/year",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Standard 5bedrooms Luxury Duplex,Chevron Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Spacious 4bedrooms Semi Detached Duplex With A Bq,Lekki Phase 1 Ikate Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Affordable Luxury Apartments,Phase 1 Ikate Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With A Room Bq,Ajah Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautiful Spacious 5bedrooms Fully Detached Duplex With Penthouse,Lekki Phase 1 Ikate Lekki Lagos,₦,"280,000,000",1,1,1, beds, baths, Toilets +Luxury Affordable 5bedroom Detached Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built Spacious 5bedrooms Fully Detached Duplex With Swimming Pool,Ajah Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Luxury Standard 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built Spacious 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Standard 4bedrooms Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Orchid Hotel Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Standard 3 Bedroom Apartments With Bq,2nd Toll Gate Lekki Lagos,₦,"44,000,000",1,1,1,3 beds,4 baths,4 Toilets +Newly Built Beautiful Standard 5 Bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built Spacious 5bedrooms Fully Detached Duplex With A Room Bq,Second Tallget Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +Standard 5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built Beautiful Standard 5bedrooms Fully Detached Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Beautiful 4bedroom Terrace Duplex With Affordable Price,Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds, baths, Toilets +Distress Sales 4bedrooms Luxury Terrace Duplex,Second Tallget Ikota Lekki Lagos,₦,"52,000,000/month",1,1,1,4 beds,5 baths,5 Toilets +"Dry Land In A Serviced, Serene And Secured Estate",Victory Park Estate Osapa London Lekki Lagos,₦,"244,444/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Lekki Top Luxury Duplex With Pool, Cinema And Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +N185m Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"185,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 2 Bedroom Flat,Ikota Gra Estate Ikota Lekki Lagos,₦,"28,000,000",1,1,1,2 beds, baths,3 Toilets +Newly Built 4 Bedroom Semidetached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"89,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex, Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 4 Bedroom Semidetached Duplex,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale 5 Bedroom Fully Detach House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Serviced 3 Bedroom Apartment,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",1,1,1, beds,3 baths,4 Toilets +Glamcourt Ii,Ibeji Close Agungi Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Terrace Duplex,Romax Homes Ikota Lekki Lagos,₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 And 3 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"42,500,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Upscale Urban 4 B/r Maisonette,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semidetached Duplex,Marwa Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Block Of Apartments,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom House With 2 Rooms Bq,Nicon Town Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Osapa London ,lekki Osapa London Lekki Lagos",₦,"70,000,000",1,1,0,4 beds, baths,5 Toilets +Newly Built 5 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +1000sqm Facing Express,Osapa London Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Prime Land Measuring 1300sq/m In A Serene Neighborhood,Lekki Rhs By Petrocam Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Palatial 6 Bedroom Detached Duplex With Bq,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semidetached,Alternative Route Chevron Lekki Lagos,₦,"70,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Super Luxury Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached Duplex,Orchid Road Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Studio Apartment,Lekki Horizon 2 Ikate Lekki Lagos,₦,"18,000,000",1,0,1,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Lekki Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Beach View Estate Igbo Efon Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semidetached Duplex,Chevron Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built & Tastefully Finished 3 Bedroom Serviced Apartment,Oral Estate Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With 2 Bqs,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths,6 Toilets +4 Bedroom Smart Terrace,"Ikota Road 16, Lekki County, Lekki Lagos Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +"5bedrooms Fully Detached Duplex With Pool, Cinema & Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached With One Bq,"Buena Vista Estate, Oricid Road Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Alluring 2 Bedroom Flat With Fitted Kitchen,Off Kusenla Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace’s Duplex For Sale (atlantic View City),Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Units Of 5 Bedroom Semidetached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Terrace House,Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,"Orchid Road, Close To Victoria Crest 4 Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Orchid Road, Close To Victoria Crest 4 Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"6,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex House,2nd Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"128,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached,"Lekki Phase1, Lekki Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,1,1,5 beds,6 baths,6 Toilets +3 Bedroom Apartment With Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,"Lekky County, Lekki Ikota Lekki Lagos",₦,"350,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Ikota, Lekki Ikota Lekki Lagos",₦,"180,000,000",0,1,1,5 beds,6 baths,6 Toilets +4bedroom Terrace House,"Orchid Road, Lagos Ikate Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Terrace Property,2nd Toll Gate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Terraces Duplex With A Room Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,6 baths,6 Toilets +Available Land,Idado Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With 1room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq.,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Victory Park Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 3 Bedroom Apartment With Bq,2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Boys Quarter & Pool.,Megamound Estate. Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +Apartments,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Penthouse Apartment + Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +Super Luxury 5 Bedroom Contemporary Fully Detached Duplex With Swimming Pool, Ologolo Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Magnificent Decently Finished 5 Bed Fully Detached Duplex With Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,4 beds,5 baths,5 Toilets +Decently Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Terrace & 4 Bedroom Duplexes,Orchid Road Jakande Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,3 baths,3 Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Mufasa Luxury Apartments,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +"Beautifully Finished Fully Automated 5 Bed Detached Duplex With Cinema And Swimming Pool,",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +"*exquisite 2 Bedroom & 3 Bedroom Apartments Ikate, Lekki.*",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Apartment With Swimming Pool,Ikate Lekki Lagos,₦,"50,000,000",1,1,1,2 beds,3 baths,3 Toilets +Exquisitely Spacious 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lavishly Finished Contemporary 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,6 baths,6 Toilets +Decently Spaced 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Townhouse,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massively Spacious Tastefully Finished 4 Bed Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,5 baths,5 Toilets +Verified Land With Instant Allocation In Whales County Estate Orchid,Whales County Beside Victoria Crest 4 Lekki Phase 2 Lekki Lagos,₦,"45,000,000/day",0,0,0, beds, baths, Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraces Castle Plus Bq,"De Castle Max, Orchid Road Lafiaji, Directly Opposite Cooplag Gardens Lekki Phase 2 Lekki Lagos",₦,"62,000,000",0,1,1,4 beds,5 baths,5 Toilets +Value Centric Fully Serviced 2 Bed Apartment,Agungi Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Fully Detached Duplex In A Gated Estate, Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,1,1,4 beds,5 baths,6 Toilets +Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious Decently Finished 5 Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Castle Duplex + Bq,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Bq,"Second Toll Gate, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,4 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,4 Toilets +Lovely Spacious 4bedroom Terrace With Governor Consent,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"70,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +"1,2 And 3 Bedroom Fully Serviced Apartment",Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Right In A Secured Area Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"70,000,000",0,1,0,0 beds,0 baths,0 Toilets +Absolutely Value Centric 3 Bedroom Flat,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +Fully Automated Lekki Luxury Detatched Duplex,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Fully Detatched Duplex With Pool & Bq For Sale,Lekki County Homes Ikota Lekki Lagos,₦,"200,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Smart Home Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Stunning 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House + Bq,Ikate Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Flat,Spg Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex + A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +*n48m Spacious Lekki Terraces With Bq For Sale,No 3 Orchid Road Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraces Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette And 2 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Spacious 4bedroom Terrace With Governor Consent,Ilason Commissioner Road Ilasan Lekki Lagos,₦,"70,000,000/sqm",1,1,1,4 beds,4 baths,4 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Spacious Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached House,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Lekki Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Ologolo Lekki Express Road Ologolo Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Semi Detached Duplex In Oral Estate, Lekki",Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths, Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex And A Room Bq,2nd Tollgate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Land,No2 Balle Street Ologolo Lekki Lagos,₦,"60,000,000/day",0,0,0,1 beds,0 baths,0 Toilets +4bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Block Of Flats,Lekki Gardens Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets +2bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Apartment,Orchid Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Luxury Fully Detatched Duplex With Class,Lekki County Homes Ikota Lekki Lagos,₦,"160,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Luxury Terrace For Sale! .,No 36 Osapa London Estate Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Smart Terrace Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,World Oil Ilasan Lekki Lagos,₦,"100,000,000/day",0,0,0, beds, baths, Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Axis Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Spacious 5 Bedroom Contemporary Fully Detached Duplex With Bq For Sale,Ikate Ikate Lekki Lagos,₦,"165,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment And 1 Room Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chervon Chevron Lekki Lagos,₦,"45,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Close Proximity To Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,2nd Tollgate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Luxury Terrace,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex And 1 Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex And 3bedrooms Flat,Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Detached Duplex With Bq,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq Smart House,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +"5 Bedroom Detached Duplex, 3bedroom Flat Maisonette And 1bq",Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette Duplex,Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 1 Bq,Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Lekki Lagos",₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ologolo Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"295,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq Smart House,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"2nd Toll Gate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex And A Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex And 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And A Bq,Oral Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex And A Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Detached Duplex,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Furnished 5 Bedroom Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Lekki County Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1bq,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Short Fence Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex And 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 2 Bedroom Flat Serviced Quarter,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex And 1 Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Maisonette Duplex,Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,0 baths,0 Toilets +Verified And Well Secured Land In A Reserved Location,Elegushi Ilasan Ikate Lekki Lagos,₦,"162,000,000/day",0,0,0, beds, baths, Toilets +Estate Land,Confund Initiative Vgc Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Masionnette Duplex,Freedom Way Lekki Lagos Lekki Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bed Magnificent Edifice With Swimming Pool And 2 Open Terraces,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,7 Toilets +Brand New Well Furnished 4 Bedrooms Duplex With Bq,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex House,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of Finished 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Off Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Sqm Land,"Alatishe, Lekki, Lagos Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"89,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Completed And Tastefully Finished Duplexes,Lekki Phase 2 Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Super Luxury Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lavishly Finished 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicon Hotel,Nicon Town Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Maisonette + Bq,Off The Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +Variants Of Duplexes Available,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Super Luxury Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Penthouse,Behind Onike Art Gallery Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Block Of 6 Flats With Bq For Each Flat,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Maisonette,"Atlantic Layout Estate, Abraham Adesanya Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,"Jed's Court, By Lagos Business School Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq,Vella Homes Off Chevron Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Duplex,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Contemporary House With Rooms Boys' Quarters,Lakeview Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Finished 5 Bedroom Detached House With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraces In A Sophisticated Location,Orchid Road De Castlemax Chevron Coperative Estate Lekki Lagos,₦,"55,000,000/day",0,0,1, beds, baths, Toilets +Beautiful 2 Bedroom Maisonette Duplex,Chisco Bus Stop Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exotically Finished 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished Modern 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Maisonette,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedrooms Apartment + Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Maisonette + Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Decent 4 Bed Fully Detached Duplex,Agungi Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 4 Bed Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom White House With A Swimming Pool,Oral Estate Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Home,Orchid Road Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Water Front Estate With Certificate Of Occupancy (paradise Foreshore Estate),Vgc Water Front Vgc Lekki Lagos,₦,"40,000,000/day",0,0,0, beds, baths, Toilets +2 Bedroom Maisonette + Bq,Off Freedom Way Lekki Lagos,₦,"75,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment + Bq,Elegunsi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,3 baths,3 Toilets +Newly Built 5bedroom,Behind Elevation Church Ilasan Lekki Lagos,₦,"110,000,000/year",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 5bedroom Semi Detached Duplex,Ilasan/jakande/elevation Church Ilasan Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Spaced 4 Bedroom Terrace Duplex,Along Orchid Road Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Twin Lakes Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Luxury Semi Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds, baths,5 Toilets +Tastefully Built 5 Bedroom Detached House For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"260,000,000/day",1,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terrace Home With Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Pool,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,0 baths,6 Toilets +Newly Built 4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets +Newly Built Luxurious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +On Going Project 60% Completed 4 Bedroom Luxury Terrace Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths,6 Toilets +Spacious And Luxurious 4 Bedroom Semi Detached Duplex With Bq,This Spacious And Luxurious House Is In Ikate Lekki And The The Title Is Governors Consent. Ikate Lekki Lagos,₦,"155,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,0 baths,6 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,6 Toilets +Very Luxurious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,0 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Orchid Lekki Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets +"Fully Automated Luxurious 5 Bedroom Detached Duplex With Pool , Gym & Cinema",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds, baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,0 baths,5 Toilets +4 Bedroom Detached Duplex With Greenery,Vgc Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,5 Toilets +Very Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds, baths,5 Toilets +Luxurious 5bedroom Detached Home,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,0 baths,6 Toilets +Luxurious And Tastefully Finished 5 Bedroom Detached House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"260,000,000/day",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Spacious 4 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths,5 Toilets +4 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets +On Going Project Luxury 5 Units Of 4 Bedroom Duplex With Bq,Dele Adedeji Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5bedroom Detached Duplex With Pool & Compound Space,Ikota Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Ba,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,0 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex With Pool,Vgc Lekki Lagos,₦,"280,000,000",0,1,0,5 beds, baths,6 Toilets +Newly Built 3 Bedroom Semidetached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,3 beds, baths,4 Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,0 baths,5 Toilets +4 Bedroom Townhouse Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex In A Very Calm Secured Estate,Ikota Lekki Lagos,₦,"175,000,000",0,1,0,5 beds, baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Well Finished Detached Duplex,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths,5 Toilets +World Class Luxurious 5 Bedroom Home,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,1,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Chevron Toll Gate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,0 baths,5 Toilets +On Going Project Luxury 5 Units Of 4 Bedroom Duplex With Bq,Dele Adedeji Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds, baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds, baths,6 Toilets +Luxury 5 Bedroom Duplex Duplex With Bq,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Pool,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,0 baths,6 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds, baths,5 Toilets +Land,Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Unit Of 2021 Tastefully Finished 4 Bedroom Semi Detached Duplex,The House Is In Vgc And With Governors Consent Vgc Lekki Lagos,₦,"180,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Very Classy 4 Bedroom Semi Detached Duplex,Orchid Conservation Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets +Luxury Well Detailed 4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds, baths,5 Toilets +Newly Built 4 Bedroom Luxury Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths,5 Toilets +Newly Built 4 Bedroom Duplex With Automated Gate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Furnished 5 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury Spacious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,0 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +"20 Plots Of Land For Sale At Blue Springs Estate, Abijo","Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"170,000,000",0,1,0, beds, baths, Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex,"Idado,lekki Idado Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of Flats,Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 5 Bedroom Magnificently Built Fully Detached House With A Room Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Executive 5bedroom Fully Detached Duple,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"10,000 Sqm Land Hydraulic Sand Filled And Fenced","Opposite Garamond Autos By The Address Homes, Ilasan Lekki Phase 1 Lekki Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Luxurious Houses,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,7 Toilets +Brand New 5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Beautiful Brand New 5 Bedroom Fully Detached Duplex With Bq Room And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With A Room Bq, Swimming Pool",Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"197,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Detached House With Swimming Pool And Boy's Quarter, Agungi Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"98,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,6 Toilets +Super Detailed Luxury 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Magnificent Brand New 5bedroom With Bq And Pool Is Up For Sale,Megamound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious And Contemporary 5 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex At Whales County Estate2,"Orchid, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Apartments,"Lekki 2nd Tollgate, By Conservation Ceter Lekki Lagos",₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom & 5 Bedrooms Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"36,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +16 Brand New 3 & 4 Bedroom Luxury Apartments,Chevron Chevron Lekki Lagos,₦,"420,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stunning Classic 5 Bedroom Fully Detached Duplex With 2 Rooms Bq In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Crest Villa End Ologolo Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,2 Toilets +Well Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Automated Contemporary House,Lekky County Homes Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex In Whales County 1 Estate,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Masterpiece 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished Luxury 4 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Second Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Very Nice 2bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,2 baths,2 Toilets +601sqm Land Available,Ajah Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Detached Duplex,"Lekki County, Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Normal Room Size Bq And A Study,"Road 15, Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +Absolutely Stunning 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Masterpiece 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Very Nice 4bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,3 Toilets +New Built 34 Units Of 4 Bedroom Terrace Duplexes In A Mini Estate Inside A Secure Environment,"Leon Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Massive 4bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lekki Pride,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0, beds, baths, Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary House,Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificently Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartments,"Off Orchid Road, Lafiaji, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"29,000,000",1,0,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary House, Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Corner Piece Land Fully Sandfilled,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent Brand New Very Beautiful Semi Detached Duplex At Oral Estate Is Up For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Built Brand New 5 Bedroom Detached House,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex With A Room Bq,Idado Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Magnificently Built Fully Detached House With A Room Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +"10,000 Sqm Sand Filled","By Orange Island, Lekki Scheme 1 Lekki Phase 2 Lekki Lagos",₦,"270,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Lekki Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets +Terraced Duplex,Orchid Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massively Built 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment + Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets +Excellently Built 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury And Elegant 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq For Sale,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets +Strip Mall Spaces For Sale At Opposite Vgc,Vgc Lekki Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Luxury Flats Off Plan,Orchid Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +Massive 4 Bedroom Semi Detached House,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 2 Bedroom Apartment With Bq,Lekki Lagos,₦,"65,000,000",0,0,1,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"63,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Apartment,Ikoyi Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"100 Plots For Sale In Blue Springs Estate, Abijo","Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"850,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land Available For Sale. Title; C Of O. Plots Are Not Far From The Express.,"Beside Royal Gardens Estate, Opposite God Is Good Motors. Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Royal Standard 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,2 Toilets +"Newly Built, Luxury 4 Bedroom Fully Detached Duplex",2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Affordable Lands In Blue Bliss Estate At Abijo,"Abijo, Lekki Lagos Lekki Lagos",₦,"10,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable Tastefully Built Apartment In A Promising Environment,"Mijl Residences And Villas, Ikate, Lekki Ikate Lekki Lagos",₦,"30,000,000/month",0,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Home,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished And Spacious 5 Bedroom Detached Duplex With Boys Quarter,Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Terrace,Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,3 baths,4 Toilets +Brand New And Luxury 5 Bedroom Fully Detached Duplex With Boys Quarter,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New Contemporary 5 Bedroom Fully Detached House With A Bq,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"59,000,000",0,0,1,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built, Luxury 4 Bedroom Semi Detached Duplex",2nd Toll Gate Chevron Lekki Lagos,₦,"88,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Fully Detached Smart Home Duplex, Partially Furnished With Lovely Amenities",Buena Vista Estate Off Orchid Road Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex,Lekki Conservation Axis Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"52,000,000",1,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex,Pinnock Beach Estate Lekki Lagos,₦,"450,000,000",1,0,0,5 beds,5 baths,6 Toilets +Available Serviced Plots At Whales County 2 Estate,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"52,000,000",1,0,0,0 beds,0 baths,0 Toilets +Fenced 1500sqm Land,Ikota Gra Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent Brand New 2bedroom Flat Is Up For Sale At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +"500sqm Of Land In A Newly Built Estate Promo Price, Grab This Opportunity Now!",Opposite Eko Akete In Abijo Gra Lekki Lagos,₦,"10,500,000/sqm",0,1,0,0 beds,0 baths,0 Toilets +Contemporary Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Terrace Duplex,Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Luxurious House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,1,5 beds,5 baths,6 Toilets +Giant 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary Luxury 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Automated Contemporary House,Megamound Estate Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Signum Estate,Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Home Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built Luxury, Finished 4 Bedroom Terrace Duplex","Ikate, Lekki Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +"650sqm Offplan Waterfront Land At Crest Island Estate, Osapa",Behind Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +Just Completed 2 Bedroom Apartment,"Lekki County, Ikota Lekki Lagos",₦,"35,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built Beautifully 4 Bedroom + Bq Semi Detached Duplex 95% Finished,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Architectural Masterpiece With Swimming Pool And Cinema, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Luxurious House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Duplex With Bq And Gate House,"Orchid Road, By 2nd Tollgate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Sandfilled 8 Plots Of Land On A Tarred Road.,"Orchid Road, Lekki 2nd Tollgate, Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Plots Of Land At Blue Springs Estate Abijo,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"85,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Terrace Detached Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"7,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Built 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Superbly Built 3 Bedroom Terrace Duplex,"Orchid Road, Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Magnificently Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Bungalow,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Detached Houses With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Open Terrace,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fascinating Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road2nd Tollgate. Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built Luxury, Finished 4 Bedroom Fully Detached Duplex","Ikota, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"220,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +This Magnificent Beautiful 4bedroom Semi Detached Duplex Is Up For Sale At Oral Estate Ikota,Oral Estate Oral Estate Lekki Lagos,₦,"48,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +This Magnificent 3bedroom Duplex With Bq Room,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New Furnished & Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"27,000,000",1,1,0,2 beds,2 baths,3 Toilets +50 Plots,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"425,000,000",0,1,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Units Of 3 Bedroom Terrace And Two Units Of3 Bedroom Flat Penthouse,Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Plots Of Lands,Ikota Gra Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House.,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +Deluxe 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +Spacious 5 Bedroom Fully Detached And 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +This Magnificent 4bedroom Terrace Duplex With 24hours Light,Orchid Road Chevron Lekki Lagos,₦,"41,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex Along Orchid Road,Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Bedroom Apartment In An Exquisite And Serene Environment,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished And Luxuriously Built 5 Bedroom Fully Detached Duplex.,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Semi Detached House,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Brand New Lovely Semi Detached Duplex Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,5 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Contemporary House With Rooms Boys' Quarters,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Luxurious Houses,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,2 beds,2 baths,3 Toilets +Brand New Furnished & Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,"Agungi, Lekki Agungi Lekki Lagos",₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terraced Duplex,V Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fastest Selling 2 Bedroom Flats,"By Ocean Bay Estate, Off Orchid Hotel Road Lekki Lagos",₦,"32,000,000",0,0,0,2 beds, baths,3 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary Design Smart 4 Bedroom Terrace Duplex Without Bq,Lekki Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Ologolo Opposite Agungi Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary Built 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Phase 1 Osapa London Lekki Lagos,₦,"500,000,000",0,1,1,6 beds,6 baths,7 Toilets +4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plots Of Mixed Use Land,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Contemporary Luxury 5 Bedroom Fully Detached Duple,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With 2rooms Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Serviced Maisonette,Banana Island Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment,"Agungi, Lekki Agungi Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Brand New 3 Bedroom Terrace Duplex With Bq And Pool,Ikate Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Available Serviced Plots At Whales County Estate 1,"Orchid Road, Lekki Chevron Lekki Lagos",₦,"52,000,000",1,1,0, beds, baths, Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,3 baths,3 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive Contemporary 4 Bedroom Semi Detached Duplex Plus A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Detached Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fenced And Gated Bare Land,Orchid Road Lekki 2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Off Lekki Right Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached With 2 Bqs,Second Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terraced Duplex With Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,3 Toilets +A Fully Detached 5 Bedroom Duplex,Orchid Road Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Addo Road Lekki Phase 2 Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,2 baths,2 Toilets +Magnificently Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Serviced Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built, Exquisite And Contemporary 5 Bedroom Detached Duplex",Ikota Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Built Luxury And Affordable 4 Bedroom Terraced Duplex,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious And Elegantly Finished 5 Bedroom Fully Detached Duplex,"Megamond Estate, Ikota, Lekki. Ikota Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Just Completed 1 Bedroom Apartment At Lekki County, Ikota","Lekki County, Ikota Lekki Ikota Lekki Lagos",₦,"26,000,000/sqm",0,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Duplex In Lekki County, Ikota","Lekki County, Ikota Ikota Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious 3 Bedroom Apartment,Ikota Lekki Lagos,₦,"44,000,000",1,0,1,3 beds,3 baths,4 Toilets +2 Plots (gazettes),Abijo Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +Brand New 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Lovely Built 5 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +500sqm Plots,"Abijo, Less Than 3 Minutes Drive From Lekki Epe Expressway Lekki Lagos",₦,"8,500,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Duplex,Harris Drive By Vgc Vgc Lekki Lagos,₦,"57,500,000",1,1,0,3 beds,3 baths,4 Toilets +Governor Consent,"Lekki Phase 1,vi, Dominos Jakunda Ikate Lekki Lagos",₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets +Luxury 5bedroom Fully Detached Ocean View Duplex,Lekki City Estate Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Contemporary And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,",Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +500sqm Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool, Gym.",Ologolo Lekki Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex W/bq,Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Offplan 3 Bedroom Terrace Duplex,"Lafiaji Behind Cooplag, Lekki Scheme 2 Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With A Bq,"Lekki County Homes, Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex In A Serene Environment,"Regional Road Sapata Town, Behind Vgc Lekki Vgc Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Houses,Ambience Heights Off Freedom Way Lekki Phase 1 Ikate Lekki Lagos,₦,"85,000,000/day",1,0,0,3 beds,3 baths,3 Toilets +4bedroom Terrace Duplex,Victory Start Court 2 Ikota G.r.a Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +The Ambiance Heights 2 Bedroom Maisonette & 3 Bedroom Maisonette + Bq,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4bedroom Semi Detached Duplex With 2 Living Rooms And Self Contain Bq,Estate Idado Lekki Lagos,₦,"90,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex,Sangotedo Crown Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat, Idado Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Nicely Built 2 Bedrooms Flat Serviced Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 30 Units Of Terrace And 4 Units Of Semi Detached,Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New And Luxuriously Finished 5 Bedrooms Semi Detached House,Ikate Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplexes With B/ Q,Ikota Villa Estate Ikota Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated 6 Bedroom Ultra Luxury Modern Villa,Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +600 Square Meters Land,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex With B/q And Swimming Pool,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tenanted 5 Bedrooms Terrace Duplex House + B/q,Horizon 2 Estate Ikate Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,5 baths,6 Toilets +Executive 3 Bedroom Flat With B/ Q,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Terrace Duplex With B/ Q,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Boys Quarters,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Furnished Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex With B/q,Agungi Axis Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplexes With B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat Service Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Flat Carcass,Near Nicon Town Ilasan Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +1070 Square Meters Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With B/q Service Estate,Osapa London Lekki Lagos,₦,"77,000,000",1,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Fully Detached Duplex With B/q,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Servant Quarters,Chevron Alternative Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Serviced Apartment,Prime Water Gardens Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets +Nicely Built 3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Smart Home With Maids Quarters,Orchid Road 2nd Tollgate Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 3 Bedrooms Terraced Duplex,New Horizon 2 Estate Ikate Lekki Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Serviced Terrace Duplex +b/q,Horizon Court Estate Ikate Lekki Lagos,₦,"80,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedrooms Flat Serviced Apartment,Ikate Lekki Lagos,₦,"53,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Flat Carcass Apartment,Horizon 2 Extension Estate Ikate Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxurious 4 Bedrooms Semi Detached Duplex With B/q (carcass),Horizon Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Penthouse Apartment,Crown Well Estate Chevron Lekki Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets +Presidential 5 Bedroom Detached Duplex With Maid Quaters,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With B/ Q,Megamound Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedrooms Detached Duplex With B/q (carcass),Horizon Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Flat Serviced Apartment,Horizon Estate Ikate Lekki Lagos,₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets +Land Measuring 640 Square Meters,Spring Bay Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Land Measuring 15 Plot Of Land,Victoria Crest Estate.. Orchard Road Lekki Lagos,₦,"47,000,000",1,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With B/q,Horizon Estate Ikate Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +800 Sqm Land,Cowries Creek Estate Ikate Lekki Lagos,₦,"230,000,000",1,1,0,0 beds,0 baths,0 Toilets +Uniquely Built 2 Bedrooms Flat Serviced Apartment,Paradise Estate Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,2 baths,3 Toilets +Beautifully Built 3 Bedroom Flat,Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets +Classically Finished 5 Bedrooms Detached Smart Home With Swimming Pool,Lake View Park 1 Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built Shop/ Office Space,Ikota Shopping Complex Vgc Lekki Lagos,₦,"11,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Domestic Staff Quarters,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms 4 Semi Detached Duplex With B/q,Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With B/q,Romax Vgc Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached With A Room Boys Quarter,Richmond Estate Ikate Lekki Lagos,₦,"170,000,000",1,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terraced Duplex With B/q,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terraced Duplex,Romax Vgc Vgc Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat Serviced Apartment With B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedrooms Flat Serviced Apartment,Horizon 2 Extension Estate Ikate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With B/ Q,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With A Room B/q,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached House With B/ Q,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Terrace Duplex With B/q,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Approximately 700sqm Land, Nicon Town Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Simple Cool 4 Units Of 2 Bedroom Flat Apartment,Atlantic View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With B/q,Osapa London Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Wonderfully Built 4 Bedroom Semi Detached Duplexes With B/q,Romax Vgc Vgc Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets +Newly Built 2 Bedroom Flat Service Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 2 Bedrooms Service Apartment With B/q,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With B/ Q,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedrooms Flat With 1 Room Bq,Ikate Lekki Lagos,₦,"43,000,000",1,1,0,2 beds,2 baths,3 Toilets +100 Acres Of Land Facing The Road In Chevron Lekki,Opposite Ebano Supermarket Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Semi Detached Duplex With B/q,Ikate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Approximately 633 Square Meter Land,Ilasan Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Elite Newly Built 4 Bedrooms Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Maisonette Home With B/ Q,Richmond Estate Ikate Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Vgc Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House With Bq,Idado Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Láfíàjí, Opposite Cooplag Estate, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Masterpiece,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exclusive 4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious House For Sale At Chevron,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"300,000,000/day",0,0,1,5 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 And 4 Bedroom Terraces,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Image Lekki Lagos. Ikate Lekki Lagos,₦,"3,000,000,000/day",1,0,0,0 beds,0 baths,0 Toilets +Well Maintained Serviced 3 Bedroom Apartment With Bq, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex,"Mace Homes, Royal Pine Estate Orchid Road Chevron Lekki Lagos",₦,"65,000,000/day",1,0,0,0 beds,0 baths,0 Toilets +Astonishingly Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Detached Duplex With Bq,Lekki Second Tollgate Lekki Lagos Oral Estate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Built Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,7 Toilets +Fully Serviced 3bedroom Terrace Duplex,"A Secured Estate Off Orchid Road, Lekki Chevron Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq,"Maven Court, Royal Pine Estate, Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",1,0,0,5 beds,5 baths,5 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,6 baths,7 Toilets +"2,3,4 Bedroom Maisonette Duplexes","Ambience Height Lekki, Off Freedom Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"80,000,000/day",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Flat Apartment,Ilasan Lekki Lagos Ilasan Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,3 baths,3 Toilets +Relatively New 3 Bedroom Apartment,= Ikota Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Lekki,"Lekki Phase 1, Lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"800,000,000/day",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Flat And Bq For Sale,"Maven Homes, Royal Pine Estate, Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Duplex For Sale.,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +Land For Sale At Lekki Phase 1,"Lekki Phase 1, Lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"120,000,000/day",1,0,0, beds, baths, Toilets +Solid And Elegant Well Maintained Tenanted 5bedroom Semi Detached Duplex With 2room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Massive 5bedroom Full Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,7 baths,8 Toilets +Relatively New 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"46,000,000",1,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ilasan Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Full Detached Duplex In Chevron Lekki,Chevron Alternative Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Contemporary Design 4 Bedroom,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,6 baths,7 Toilets +Super Spacious 5 Bedroom Full Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,8 Toilets +Land For Sale At Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000/day",1,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Chevron Alternative Route.,"Hampton Lake Estate, Chevron Alternative Route, Chevron, Lagos Nigeria Chevron Lekki Lagos",₦,"123,400,000/day",1,0,0, beds, baths, Toilets +Well Maintained Spacious 2bedroom Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"37,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Full Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,"Lekki Alternative Road, Lekki. Chevron Lekki Lagos",₦,"85,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4bed Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Furnished Water Front Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,4 beds,6 baths,7 Toilets +Automated 5bedroom Full Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,7 baths,9 Toilets +4 Bedroom Fully Detached Duplex With 1 Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq,"Maven Court, Royal Pine Estate Orchid Road Chevron Lekki Lagos",₦,"75,000,000/day",1,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,0,3 beds,3 baths,4 Toilets +Serviced Spacious 3bedroom Terrace Bungalow,Chevron Lekki Lagos,₦,"23,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Spacious 4bedroom Fully Detached Duplex With Bq On 2floors,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Townhouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,7 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Super Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Cinema,Lekki Second Tollgate In A Reputable Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,7 baths,8 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Serviced 4bedroom Terrace Duplex On 2floors And A Penthouse With Bq,Plantinum Way Axis Jakande Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Chevron Lekki Lagos,₦,"70,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikota Victory Star Court 2 Ikota Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,3 baths,3 Toilets +Land,Lekki Lagos,₦,"245,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Pinnock Beach Estate, Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plot Of Land Measuring 1342sqm,Chevron Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Orchid Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Terrace,Alaska Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"40,000,000/month",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"78,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 6 Bedroom Fully Detached Duplex With One Room Bq At Western Foreshore Estate,Western Foreshore Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Spacious 5 Bedroom Terrace Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Bloom Haven Terraces,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,0 Toilets +5 Bedroom Duplex With Servant Quarter,Pinnock Beach Estate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detched Duplex,Close To 2nd Toll Gate Lekki Lagos,₦,"170,000,000",1,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"135,000,000",0,1,1,5 beds, baths, Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"320,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex In Lovely Environment,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Elegant 4 Bedroom Semi Detached,2nd Tollgate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"51,000,000",1,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Modern Smart 5 Bedroom Duplex,Nicon Town Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,"Off Platinum Way, Behind Nicon Town Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious Finished 4 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semidetached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets +2 Bedrooms Apartment,Camberwall Advantage Ikate Lekki Lagos,₦,"55,000,000",1,1,1,2 beds,3 baths,3 Toilets +5 Bedroom Luxury Duplex Mansion On 1000sqm,Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Luxury Duplex,Megamound Estate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Distress Sale Of 3 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Chevron Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House In A Serene Environment,Chucks Onyebuchi Drive Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,3 beds,4 baths,4 Toilets +Abule By Onyx,Badore Lekki Phase 2 Lekki Lagos,₦,"3,200,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Caritas Luxury,Behind Monastery Road Ikate Lekki Lagos,₦,"16,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,6 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 And 4 Bedroom Duplex,Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached Automated House,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,"Ridgewell Terrace, General Ogomudia Road Lekki Phase 1 Lekki Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Few Mins From Novare Shopping Mall Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace House,Kola Adeyinka Close Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex At Lekki County Estate,Private Estate At Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Private Estate In Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Massive 4 Bedrroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",1,1,1,4 beds,4 baths,5 Toilets +Cornerpiece Plot 525sqms,Cbd Area Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex House With A Sea View,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In An Estate,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached In A Built Up Estate,Orchid Road De Castle Max Estate Chevron Chevron Lekki Lagos,₦,"65,000,000/day",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Fully Detached Duplex With Boy's Quarter,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand Newly Built 5 Bedroom Fully Detached Duplex With Boy's Quarter,Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Well Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Exquisitely Well Finished 5 Bedroom Fully Detached Duplex With Private Cinema, Swimming Pool, Gym And 2 Rooms Bq Located In A Secured Estate.",Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Brand New 5 Bedroom Fully Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegantly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,4 beds, baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex With A Boys Quarter,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedrooms Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Treasure Garden Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,1 Toilets +Exquisite Well Finished 5 Bedroom Fully Detached Duplex With Mini Flat Bq,Ikate Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + Miniflat Bq,Ikota Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land With Governor's Consent In A Serene And Built Up Environment,Ilasan Ikate Elegushi Ikate Lekki Lagos,₦,"162,500,000,000/day",0,0,0, beds, baths, Toilets +Newly Built Apartment In A Serene And Beautiful Area With Governor's Consent,Meadow Hall Way Ocean Palm Estate Scheme One Ikate Ikate Lekki Lagos,₦,"53,300,000/day",0,0,1,2 beds,2 baths,2 Toilets +Tastefully 6 Units Of Luxury 4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terraces In A Built Up Location,Ikota Victoria Star Court 2 Ikota Lekki Lagos,₦,"55,000,000/day",0,0,1,4 beds,3 baths,3 Toilets +45 Bed Fully Equipped Medical Facility,Rock Drive Lekki Phase 1 Lekki Lagos,₦,"681,818/sqm",0,1,1,10 beds,10 baths,10 Toilets +Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of Newly Built Luxury 4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,5 baths,6 Toilets +Land,Vgc Vgc Lekki Lagos,₦,"6,500,000,000/day",0,0,0, beds, baths, Toilets +Newly Built Apartment,"Megamound Estate, Lekky County Homes, Ikota. Ikota Lekki Lagos",₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Apartment,"Megamound Estate, Lekky County Homes, Ikota. Ikota Lekki Lagos",₦,"47,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built Luxury 4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,6 Toilets +Block Of 6 Flats Of 3 Bedrooms,Bakare Estate Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Idado Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Pantheon Smart Homes And Terraces, Chevron, Lekki, Lagos.","Buena Vista/pantheon Smart Terraces/orchid Road, Chevron Chevron Lekki Lagos",₦,"36,000,000",0,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex In A Very Secured Estate,Chevron Lekki Lagos,₦,"53,000,000",1,0,0,3 beds,3 baths,3 Toilets +6units Of Tastefully Finished 5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000/month",0,1,0, beds, baths, Toilets +4 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary Designed Luxury 2 Bedroom Terraces + Maid’s Room,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxury 2 And 3 Bedroom Terraces Duplex,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,1,0, beds, baths, Toilets +Premium Solar Powered Lifestyle 2 Bedrooms Apartment,Ruby Apartment Ologolo Lekki Lagos,₦,"30,000,000/month",0,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,5 baths,5 Toilets +Off Plan 2 Bedrooms Maisonette,"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,2 beds,3 baths,3 Toilets +Finished 5bedroom Fully Detached Duplex With A Bq,Lekki Ikate Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Magnificent High Rise Modern Day Luxury 3 Bedroom Maisonette,"Camberwall Advantage 3, Just After The Elegushi Palace Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,4 baths,5 Toilets +Contemporary Design Smart 4 Bedrooms,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Decently Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bed Rooms Semi Detached Duplex,Orchid Road Ocean Bay Estate Ikota Lekki Lagos,₦,"75,000,000/month",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex Semi Detached,Ocean Bay Estate Oral Estate Lekki Lagos,₦,"75,000,000/year",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,6 baths,7 Toilets +Newly Built Luxury 4 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Lakowe Golf Course And Lakes Road Lekki Phase 2 Lekki Lagos,₦,"25,000,000/sqm",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Megamound Estate Through Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex Plus 2 Units Of 1bedroom Flat,Gbara Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex Plus 2 Units Of 1bedroom Flat,Gbara Ologolo Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Plus Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Massionettes Off Plan,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,1,2 beds,3 baths,3 Toilets +Massionette,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,1,3 beds,4 baths,4 Toilets +2 Bedroom Massionettes Off Plan,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Eru Ifa Ikate Lekki Lagos,₦,"55,000,000",1,0,1,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex Home With A Bq,Orchid Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex + 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + 1 Room Bq,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"180,000,000",1,0,1,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"140,000,000/month",0,1,0,4 beds,1 baths,5 Toilets +27 Rooms Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +27rooms Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Penthouse,Off Freedom Way Ikate Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Off Freedom Way Ikate Lekki Ikate Lekki Lagos,₦,"120,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Bq,"Off Freedom Way, Ikate Lekki Ikate Lekki Lagos",₦,"65,000,000/day",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached,Osapa London Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,2 baths,3 Toilets +5 Bedroom Fully Detached,"Orchid Alternative, Lekki, Lagos Chevron Lekki Lagos",₦,"145,000,000",0,0,0,5 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Home,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bed Townhouse,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,6 beds,7 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq And Pent Area,Kusenla Ikate Lekki Lagos,₦,"135,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplexes,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Masionettes,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighbourhood,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds, baths, Toilets +Fully Serviced Luxury 2 Bedroom Flats With Beautiful Atlantic View,"Sapphire Tower (blue Water), Second Roundabout Lekki Phase 1 Lekki Lagos",₦,"88,000,000",1,0,0,2 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Design 4 Bedroom Fully Detached Duplex With A Penthouse And Bq,Lekki New Market Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette Duplex +bq,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"26,990,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached In A Serene Neighbourhood,Ikota Ikota Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex Made With Your Taste In Mind,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Land Measuring 607sqm,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly And Superbly Built 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished And Serviced Estate Of 8 Units Of 4 Bedroom Terraces,Rock Drives Lekki Chevron Lekki Lagos,₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets +Ocean View Newly Built Fantastic 6 Bedroom Fully Detached Duplex With Private Elevator,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,6 beds,7 baths,7 Toilets +Beautiful 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached In A Serene Neighbourhood,Agungi Agungi Lekki Lagos,₦,"87,000,000",0,1,1,4 beds,4 baths,4 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With Standard Facilities,Osapa London Lekki Lagos,₦,"145,000,000",0,1,1,5 beds,5 baths,5 Toilets +4bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Finished Just For You At 2nd Toll Gate,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",1,1,1,4 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Fully Detached In A Serene Estate,Orchid Oral Estate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex Made With Your Taste In Mind,Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"87,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,"Idado, Lekki Idado Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Located In A Serene Estate,Lekki County Oral Estate Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +Very Beautiful 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +2 Bedroom Flat,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"16,990,000",0,0,0,2 beds,2 baths,3 Toilets +Well Built 4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +Opulent 5 Bedroom Fully Detached House Located In A Serene Esate,Osapa London Osapa London Lekki Lagos,₦,"390,000,000",0,0,1,5 beds,5 baths,5 Toilets +Luxury 2 Bedroom Apartment With Bq,Elegushi Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,4 Toilets +5bedroom Duplex,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Good Looking Spacious 5 Bed Fully Detached Duplex,Chevron Tollgate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +4bedroom Fully Detached Duplex With 2 Bq,Vgc Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,6 Toilets +3 Bedroom Flat With Excellent Facilities,"Orchid Road, Off Chevron Drive Chevron Lekki Lagos",₦,"19,990,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat, Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly And Superbly Built 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +801.92sqm Land,Nicon Town Lekki Lagos,₦,"450,000,000",1,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,6 Toilets +Oceanview 5 Bedroom Detached Duplex With Bq In A Serene Estate,Ikate Ikate Lekki Lagos,₦,"275,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 9 Units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,0,10 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,Toll Gate Chevron Lekki Lagos,₦,"150,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace With 1 Room Boys Quarters,Muritala Eletu Street Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,2 baths,2 Toilets +5 Bedroom Fully Detached House In A Serene Neighborhood,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,2 baths,2 Toilets +4 Bedroom Fully Detached House In A Serene Neighborhood,Ikate Ikate Lekki Lagos,₦,"98,000,000",0,1,1,4 beds,2 baths,2 Toilets +5 Bedroom Fully Detached House In A Serene Neighborhood,Ikate Ikate Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,2 baths,2 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"88,000,000",0,1,1,3 beds,2 baths,2 Toilets +Newly Built 3 Bedroom Flat,Pinnock Beach Estate Jakande Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Lekki Pearl Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Rapata Camber Wall Lekki Phase 1 Lekki Lagos,₦,"130,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"57,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Pent House With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Flats,Orchid Estate Ikota Lekki Lagos,₦,"35,000,000",1,1,1,2 beds,2 baths,3 Toilets +2bedroom Terrace Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +2bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Terrace Duplex,"Off Orchid Road, Close Mega Mall Chevron Lekki Lagos",₦,"37,000,000/month",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +2 Bedroom Terrace Duplex,Off Orchid Road Close To Mega Mall Chevron Lekki Lagos,₦,"37,000,000/day",0,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,6 baths,7 Toilets +Choice Location Of A 3 Bedroom Apartment,Primewater Estate 2 Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Nigeria Limited Chevron Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Vgc Lekki Lagos,₦,"95,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land,Jcil Estate Off Lakowe Golf Course Lekki Lagos,₦,"25,000,000",1,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bed Flat Apartment,Orchid Road Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Duplex,Chevron Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Luxury 5 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +A Plot Of Land,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Spectacular Fully Furnished 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With 2 Bgs,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Flats With Bq,Lekki Conservation Center Way Lekki Phase 2 Lekki Lagos,₦,"39,999,998",1,1,1,4 beds,4 baths,5 Toilets +Brand New 4bedroom Terrace Duplex,Lekki Conservation Center Way Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,"Mega Chicken, Ikota Villa Ikota Lekki Lagos",₦,"63,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With 2 Bqs,Megamond Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +6.7 Acres Of C Of O Land,Before Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"2,600,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Conservation Chevron Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Commercial 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 5 Bedroom Semi Detached Duplex Plus 2 Rooms Bq,Momodu Lawal Close Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"200,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant And Exquisite 5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Designed And Constructed 4 Bedroom Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious And Exquisitely Finished 5 Bedroom Duplex In A Serene Estate,Lakeview Ikota Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 5 Bedroom Detached Duplex In A Prime Location,Lakeview Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex In A Serene Estate,Conservation Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace/semi Detached/fully Detached Duplexes,Orchid Hotel Road By Eleganza Bus Stop Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Amen Estate Phase 2, The Gemstone Beachfront Idado Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Newly Built All En Suite 3 Bedroom Apartment With Bq,"Blissville Apartments, On Prince Kemi Olusesi Street, B Chevron Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +90% Complete 4 Bedroom Semi Detached And 4 Bedroom Fully Detached Duplex With Bq,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"55,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +Decently Built 2 Bedrooms Apartment,Ikate Lekki Lagos,₦,"60,000,000/day",0,1,0,2 beds,2 baths,3 Toilets +Strategically Located 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedroom Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Detached,Ikate Lekki Lagos,₦,"150,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"160,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom,Estate Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Megamound Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,0 Toilets +Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Orchid Estate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Hectares Of Land,Lekki Lagos,₦,"13,000,000,000",0,0,0, beds, baths, Toilets +Hotel,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lakeview Estate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"73,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex,Eleganza Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets +Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 2 Bedroom Apartment,"Pinnock Beach Road ,ajiran Osapa London Lekki Lagos",₦,"38,000,000",0,0,1,2 beds, baths,3 Toilets +Luxurious 4 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,0 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of Luxury Detailed 5bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"460,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Townhouses,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With 2 Room Bq,"Nicon Town, Lekki Lagos",₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Sand Filled Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths, Toilets +Newly Built 3 Bed Apartment With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bed Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +2 Bed Apartment,Salem Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +New And Tastefully Built 2 Bedroom Apartments,Ikota Lekki Lagos,₦,"35,000,000",1,0,0,2 beds,2 baths,3 Toilets +Stunning Super Luxury 5bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000/day",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Self Compound Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Plaza Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex Sitting On A 400sqms Plot,Osapa London Lekki Lagos,₦,"500,000,000",1,0,1,4 beds,4 baths,4 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,7 baths,7 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ochid Agungi Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,7 baths,7 Toilets +Gorgeous Contemporary 5 Bedrooms Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,0 baths,0 Toilets +Elegant 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds, baths, Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds, baths, Toilets +Elagant 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds, baths, Toilets +A Magnificent 4 Bedroom Fully Detached Duplex With Swimming Pool In A Secure Estate,Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds, baths, Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq In A Secure Estate In Ikoyi,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets +Tastefully Built Automated 4 Bed Luxury Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds, baths, Toilets +Super Beautiful Contemporary 5 Bed Detached Masterpiece,Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets +Magnificent 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds, baths, Toilets +Elagant 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds, baths, Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds, baths, Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths, Toilets +4bedroom Masionette,Camberwall Advantage 3 & 4 Ikate Lekki Lagos,₦,"130,000,000/month",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,Ikota Villa Estate Behind Mega Chicken Ikota Lekki Lagos,₦,"105,000,000/year",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached Duplex,De Castle Max Orchid Opposite Cooplag Estate Lekki Phase 1 Lekki Lagos,₦,"82,000,000/day",0,0,0,4 beds,5 baths,5 Toilets +3bedroom Masoinette,Ambiance Height Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"80,000,000/day",0,1,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplexes,"Off Chief Kola Ologolo Street, Lekki, Lagos. Ologolo Lekki Lagos",₦,"78,000,000",0,1,0,4 beds, baths, Toilets +Nicon Hotel Formerly Meridan Hotels & Apartment Victoria Garden City,Addyholly Nicon Hotel Vgc Nicon Town Lekki Lagos,₦,"1,300,000,000/sqm",1,0,1, beds, baths, Toilets +Newly Built Fully Detached 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,1, beds, baths, Toilets +Commercial Land Forsale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Elegushi Land For Sale Beach Front Plot Of Land,Elegushi Ikate Lekki Lagos,₦,"65,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace With Swimming Pool Beside Grand Cinema,Addyholly Orchid Vgc Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Ruby Apartment For Sale At Lekki Lagos Nigeria,Addyholly Lekki Near Circle Mall Lekki Ologolo Lekki Lagos,₦,"30,000,000",1,1,0, beds, baths, Toilets +Residential Land Available Forsale At Orchid Lekki,Orchid Lekki Ikota Lekki Lagos,₦,"25,000,000/sqm",1,0,0, beds, baths, Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq At Lekki Chevron,Chevron Lekki Lagos,₦,"79,000,000",1,1,1, beds, baths, Toilets +Affordable Lands In Lagos Ibejulekki Daisyland,Addyholly Daisyland Ibejulekki Nicon Town Lekki Lagos,₦,"850,000",0,0,0, beds, baths, Toilets +Four Bedroom Semidetached Duplex With Bq,Bridge Gate Estate Chevron Lekki Lagos,₦,"72,000,000",1,1,1, beds, baths, Toilets +Newly Built Four Bedroom Terrace Duplex +bq Wit Governors Consent Lekki Lagos,Addyholly Pleasant Ville Homes New Road Lekki Lagos Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Villa + Bq And Pool,Addyholly Gcc5 Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex +bq,Addyholly Orchid Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,4 baths,5 Toilets +Exquisitely Furnished 3 Bedroom Maisonette Wit Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Fully Detached With Bq Fully Furnished Smart Home With Bonus 1hpac And 32"" Tv",Orchid Chevron Lekki Lagos,₦,"85,500,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semidetached Duplex With Bq,Chevron Tollgate Chevron Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,6 baths,6 Toilets +Contemporary Duplex 4 Bedroom Fully Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Contemporary 4 Bedroom Terrace Duplex With Swimming Pool In An Estate,Chevron Toll Gate Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +Cheapest 4 Bedroom Terrace Duplex Smart Home,Addyholly Smart Near Ocean Bay Estate Orchid Rd 2nd Tollgate Lekki Chevron Lekki Lagos,₦,"50,000,000",1,1,1, beds, baths, Toilets +"Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq @ Chevron Tollgate, Orchid Hotel Road, Lekki",Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Apartment At Ikate Lekki,Addyholly Ikate Lekki Lagos Ikate Lekki Lagos,₦,"51,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Maid's Room,Oral Estate Orchid Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +8 Hectares Of Land With C Of O At Freedom Way Lekki,Addyholly Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built One Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +Newly Built 2 Bed Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Bedroom,Off Freedomway Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Chevron Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bed Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bed Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bed Apartment With Excellent Facilities,Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +9 Units Of 3 Bedroom Flat,Ologolo Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Affordable 4 Bedroom Terrace Duplex In A Serene Estate,Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Very Spacious 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Terrace Duplex In A Mini Estate,Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built And Affordable 5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"50,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 4 Bedroom Terrace Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Most Affordable 3 Bedroom Terrace Duplex In An Estate,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedrooms + 1room Bq ( 2 Floor ),Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Aesthetically Designed And Perfectly Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Castle Duplex + Bq,"De Castle Max .orchid Road, Lafiaji Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Home,Chevron Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Opic Estate, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Aesthetically Designed And Exquisitely Finished 5 Bedroom Detached Duplex In A Lovely Estate,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely Brand New 3 Bedroom Terrace Duplex,Ikota Villa Vgc Lekki Lagos,₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Megamound Estate, Eti Osa Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Units Of 5 Bedroom All Ensuite Semi Detached Duplex With 2 Room Bq,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,1,5 beds,7 baths,7 Toilets +Newly Built And Well Finished 4 Bedroom Semi Detached Duplex In A Prime Location,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Fully Furnished 2 Bedroom Apartment,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex Home,"Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex, Jakande Lekki Lagos,₦,"47,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached,Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +Serviced 4 Bedroom Terrace Duplex,"...,. Chevron Lekki Lagos",₦,"47,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 2 Bedroom Flat Apartment,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets +1 Block Of 5 Flats,"Plot 13, Block A, Monsurat Olayinka Street. Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +This Lovely 4 And 3 Bedroom,Vgc Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 4 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available 800sqm Land,Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With A Bq,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 Bedroom Flat,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"122,000,000",0,1,1, beds, baths, Toilets +5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With Bq,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale!!!,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale!!!,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Payment Plan,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Home,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Spacious 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terraced Duplex For Sale,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex For Sale,Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Lekki Phase1 Lagos Nigeria.,"Lekki Phase1, Off Freedom Way Lekki. Lekki Phase 1 Lekki Lagos",₦,"100,000,000,000/day",0,0,0, beds, baths, Toilets +Serviced 4 Bedroom Semi Detached Duplex With Swimming Pool,D Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Duplex With Swimming Pool,Lekki County Ikota Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale!!!,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex For Sale!!!,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Waterfront Five Bedroom Fully Detached Duplex With A Room Boys Quarter,Osapa London Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxurious Five Bedroom Fully Detached Duplex With Swimming Poo & A Room Boys Quarter For Sale,Ikota Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With 24 Hours Power Supply,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex For Sale With Swimming Pool,Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"80,000,000/day",0,0,0,4 beds,4 baths,4 Toilets +Very Spacious 5 Bedrooms Fully Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Home Ikota Villa Ikota Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Boys Quarter.,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With 24 Hours Power Supply, Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Pantheon Smart Homes Chevron Lekki. Chevron Lekki Lagos,₦,"125,000,000/day",0,0,0,5 beds,5 baths,5 Toilets +Luxurious Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys Quarter,Lekki County Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex With An Attached Mini Flat,Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq, Vgc Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex In A Serviced Estate For Sale,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply.,2nd Toll Gate Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Comfort Homes Osapa London Lekki Lagos,₦,"130,000,000/day",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment (off Plan),Emcel Apartments Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Gated Estate With 24 Hours Supply,2nd Toll Gate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,5 baths,5 Toilets +Very Spacious 4 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Serviced 2 Bedroom Apartment In Secured Estate,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Smart Home With Swimming Pool For Sale!!!!,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq 24 Hours Power Supply,Chevron Toll Gate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq At 2nd Toll Gate Lekki,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply & Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,2 beds,3 baths,3 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront Land For Sale In Ikate Lekki Lagos State Nigeria,Ikate Elegushi By Word Oil Filling Station Ikate Lekki Lagos,₦,"65,000,000/day",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With 24 Hours Power Supply,2nd Toll Gate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Home With Bq, Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedrooms Terraced Duplex With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys Quarter,Lekki County Homes Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq For Sale!!!,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Orchid Road Lekki Lagos.,De Castle Max Chevron Lekki Lagos,₦,"75,000,000/day",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedrooms Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq Payment Plan Available,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached Duplexe For Sale In Ikate Lekki Lagos Nigeria.,"Camberwall Advantage 2,3,4,5 Ikate Lekki Lagos",₦,"95,000,000/day",1,1,1,5 beds,5 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex With A Room Boys Quarter For Sale.,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartment With Swimming Pool For Sale,Ikota Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury Furnished 5 Bedroom Detached Duplex With Bq And Inverter, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Apartments With 24 Hours Supply,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale!!!,Ikota Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Hotel For Sale In Victoria Garden City,Nicon Hotel By Victoria Garden City Lekki Lagos. Vgc Lekki Lagos,₦,"1,300,000,000,000/day",0,0,1,10 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq (payment Plan Available),Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land For Sale Along Beech Road Jakonde,Jakonde Beech Road Jakande Lekki Lagos,₦,"35,000,000/day",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Peaceful Homes Agungi Lekki Lagos,₦,"150,000,000/day",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Lekki County Home Ikota Villa Ikota Lekki Lagos,₦,"165,000,000/day",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With 24 Hours Power Supply & Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,S Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Detached Duplex With Bq & Swimming Pool,Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Edroom Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Waterfront Five Bedroom Fully Detached Duplex With Swimming Pool & A Room Boys,Osapa London Lekki Lagos,₦,"470,000,000",1,1,0,5 beds,5 baths, Toilets +Luxury 5 Bedroom Detached Home With Bq,Agungi Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale In Orchid Road By De Castle Max.,De Castle Max. Chevron Lekki Lagos,₦,"65,000,000/day",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With 24 Hours Power Supply,Oral Estate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Home,Orchid Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex House With A Swimming Pool,Lekki County Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bed Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Excellent Facilities,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxurious 2 Bedroom Apartment In A Serene Environment,Ologolo By Jakande Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 2 Bedroom,Chief Kolawole Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment,"Chief Kola, Ologolo Street, Lekki. Ologolo Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +2bedroom Block Of Apartments,Ologolo Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom,Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex And Semi Detached House,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terraced Duplex,Spg Ologolo Ologolo Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex And 1 Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,2 beds,2 baths,3 Toilets +Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +Governor's Consent,Ikota Lekki Lagos,₦,"150,000,000/day",1,1,1,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Smart Terrace,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom In A Conducive Area,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +New Built 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury Homes With Governors Consent,Pantheon Smart Homes Is Located Opposite Ocean Bay Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Lifestyle Apartments With Governor’s Consent,Mufasa Apartments Is Located In Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Spacious 5 Bedroom Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +Spacious 2 Bedroom Apartment With Bq,Osapa London Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Fully Detached Duplex In An Estate,Ikota Lekki Lagos,₦,"90,000,000/sqm",1,1,0,5 beds,5 baths,6 Toilets +2 Bed Room Flat,Nee Horizon 11 Ikate Lekki Lagos,₦,"45,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"160,000,000",0,0,1,4 beds,5 baths,6 Toilets +2 Bedroom Apartments,Agungi Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,5 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,1,5 beds,6 baths,5 Toilets +Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly 4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,1,1,5 beds,6 baths,6 Toilets +A 4 Bedroom Semi Detached Duplex In An Estate With A Bq,Lekki Lagos,₦,"80,000,000/sqm",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Completed 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,6 Toilets +Land,Victory Park Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"78,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Contemporary And Luxurious 5 Bedroom Fully Detached Duplex With A Penthouse,Ikota Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly 4bedroom Semi Detached Duplex,Prime Water Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Plot Of Land Measuring 450sqms In Cbd,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0, beds, baths, Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,1,5 beds,6 baths,7 Toilets +Luxury Serviced 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,0,1,5 beds,6 baths,7 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex In Lekki County Homes,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Tarrace Duplex With On Two Story Floor On A Fully Serviced Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Tarrace Duplex With On Two Story Floor On A Fully Serviced Estate,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex With Bq,Location Inside Vgc Estate C Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand 4 Bedroom Semi Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,4 baths,0 Toilets +Tastefully Built 4 Bedroom Terrace Duplex In A Serene And Secured Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Secure And Serviced Estate,Lekki Conservation Centre Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Lovely Neighborhood,Osapa London Jakande Lekki Lagos,₦,"200,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Orchid Road Chevron Lekki Lagos,₦,"68,000,000/day",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/year",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex For Sale In A Secured Estate,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"140,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Block Of 3 Bedroom Flats,Ikate Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,3 baths,4 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"67,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"130,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"39,000,000/month",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"112,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Contemporary Duplex In A Serene Neighborhood For Sale,Osapa London Jakande Lekki Lagos,₦,"180,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"115,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Contemporary Duplex In A Serene Neighborhood,Osapa London Jakande Lekki Lagos,₦,"180,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"88,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000/day",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"39,000,000/month",1,1,1,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Beautifully Designed And Well Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"88,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"88,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"92,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"75,000,000/year",1,1,1,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Lovely Neighborhood,Osapa London Jakande Lekki Lagos,₦,"200,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"175,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000/year",1,1,1,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"78,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Bq Commercial Property,Ikota Ikota Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex In A Secured And Serene Neighborhood,Osapa London Jakande Lekki Lagos,₦,"140,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"270,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"55,000,000/year",1,1,1,3 beds,3 baths,4 Toilets +Beautiful And Spacious 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"56,000,000",1,0,1,4 beds,4 baths,5 Toilets +Beautifully Built And Spacious 5 Bedroom Fully Detached Duplex With A Bq In A Serene And Secured Neighborhood,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets +"Automated Elegantly Built 5 Bed Fully Detached House With Cinema,and Swimming Pool","2nd Toll Gate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Apartment,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"40,000,000",0,1,1,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Fully Detached Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000/day",1,1,1,4 beds,4 baths,5 Toilets +5bedroom Contemporary Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Exclusive 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 (six) Bedrooms Duplex With Two Rooms Bq,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water View Land,Lekki.phase One Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"87,000,099",0,0,0,4 beds,0 baths,0 Toilets +5 Bed Fully Detached Magnificent Edifice,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +"4 Bedroom Duplexes , Emcel Court, Orchid",Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +Uniquely Built 4 Bed Townhouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached House,Orchid Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Contemporary Fully Detached,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +Fully Serviced Well Built Spacious 4 Bedroom Apartment With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Furnished & Unfurnished Newly Built 5 Bedroom Duplex,Ologolo Lekki Lagos,₦,"120,000,000/sqm",0,1,1,5 beds,5 baths,5 Toilets +648sqm Land,Flourish Gate Garden* ??abijo Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Units Of Fully Furnished 3 Bedroom Flats, 4 Units Of Fully Furnished Mini Flats",Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +4 Units Of Four Bedrooms Flat,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevron Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"7,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Serviced 3bedroom Flat,"Cowrie Creek Estate Road Off Palm Springs Road, Ilasan Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Mini Estate, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Room Bq At Osapa With Gov's Consent,Inside A Gated Estate Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Freshly Built 4 Bedroom Semi Detached Duplex,Orchird Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Bedroom Terraced Duplex,"Off Chisco, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ikota Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Hotel,Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Fully Detached,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Direct Mandate Land1300sqm Fully Sand Filled And Gated Bareland,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 5bedroom Detached Duplex,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedrooms Semi Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Beach Land Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Superbly Finished Water Front 4 Bed Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Ilasan Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four (4) Units Of 3 Bedrooms Flat With Two Rooms Bq,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Fully Detached,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Acres Of Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Twin Lake Estate, Opposite Chevron Hq Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +812.713 Sqms Of Middle Land,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Eleganza Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategically Located 5 Bedroom Fully Detached Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Pinnock Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex,Orchid Area Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Bungalow (with A Detached 2 Mini Flats Demarcated By A Short Fence With Separate Gates, Lekki Lagos,₦,"20,000,000",0,0,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace House On 3 Floors +1 Room Bq,Adegbenle Street. Close To New Hall College Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Exquisite 4 Bedroom Fully Detached Duplex,Chelvron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +1300sqm Fully Sand Filled And Gated,Overlooking Victoria Crest Iv Estate Off Orchid Road Lekki 2nd Tollgate Lekki Lagos,₦,"120,000,999",0,0,0, beds, baths, Toilets +Land,"Melrose Park Estate By Harris Drive, Behind Hayden Fuel Station Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Well Service Estate 24 Hour Light Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Semi Detached House In Its Own Compound With 1 Bedroom Bq, All Rooms Ensuit (master Bedroom Has Shower And Jacuzzi And Walk In Closet) On Appropriately 250 Sqm Of Land In A Gated Closed Street In Agungi.",Agungi Lekki Lagos,₦,"80,000,000/sqm",0,0,1,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Exotically Finished 5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lagos Business School Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Bedroom Terrace & 4 Bedroom Duplexes , Emcel Court",Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Nicon Town Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Built Fully Automated 5 Bed Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built And Furnished 2 Bedroom Apartment,Ikate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex On 3 Floors., Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Bq,Off Freedom Way Lekki Lagos,₦,"156,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Alpha Beach Road Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace,Victory Star Court 2 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 2 Bedroom & 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Decently Built 2 Bed Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Sparkling 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 6 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Built And Spaced 5 Bed Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautifully Finished 3 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Cowrie Creek Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki. Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq With,In Nice Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds, baths, Toilets +Land,Chevy View Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchird Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +1786sqm Corner Piece Plot Of Land,Ologolo Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Kusela Road. By Chisco Roundabout, After Lekki Gardens, Behind Cowrie Creek Estate Ikate Lekki Lagos",₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,"Orchid, Off Chevron Tollgate Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Nicon Town Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedrooms Flat,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Chevy View Estate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Automated Smart 4 Bedroom Terrace,Orchid Hotel After Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"217,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,1 beds,1 baths,2 Toilets +Land,"Ejikata Crescent, Off Alpha Beach Road Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +140plots Of Land,"Ibejulocation: Solu Orunmija, Ibeju Lekki Lekki Lagos",₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +150 Plots Of Land,Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex With Bq,Lakeview Park 2 Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of Four Bedrooms Flat With Two Rooms Bq,Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +658 Sqm Land,Ologolo Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Sangotedo Lekki Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Automated 4 Bedroom Luxury Terrace Duplex,Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New S Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Serviced Four (4)bedroom Terrace Detached Duplex Plus Bq In A Fully Serviced Estate With 24hrs Light,Chelvron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +One Plot Of Land,Chelvron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedrooms Fully Detached Duplex,Vgc Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +14 Rooms Ensuite Property,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached In A Gated Estate,Buena Vista Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Maintained 5 Bedroom Fully Detached Duplex In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bed Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment + Bq,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +3bedrooms Maisonette + Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Harris Drive (shapata) Lekki Lagos,₦,"54,500,000",0,0,0,0 beds,0 baths,0 Toilets +3bed Terrace With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,6 baths,7 Toilets +3 Bedroom Apartment,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury Partly Furnished 3 Bedroom With Bq,Primewater View Gardens 2 Estate Lekki Phase 1 Lekki Lagos,₦,"46,000,000",1,0,0,3 beds,2 baths,3 Toilets +Apartments,Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartments,"Orchid Road, Lafiaji Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Castle Duplex + Bq,Orchid Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable Lekki Terraces,Second Toll Gate Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +C Of O Land For Sale In Vgc Water Front Ajah Lagos State,"Lekki Palm City In Ajah, By Vgc Water Front Vgc Lekki Lagos",₦,"35,000,000/day",0,0,0, beds, baths, Toilets +2 Bedrooms Flat,Off Freedom Way. Camberwall Advantage 3 & 4 Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Fully Detached Duplexes+bq,Harris Drive (shapata) By Vgc Vgc Lekki Lagos,₦,"79,500,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 1 Bedroom Apartments,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,2 Toilets +"Land For Sale In Mosere Kogo Village, Lekki Peninsula Behind Eko Akete Lagos State","Vopnucity Ocean View In Mosere Kogo Village, Lekki Peninsula Behind Eko Akete Lekki Lagos",₦,"9,500,000/day",0,0,0, beds, baths, Toilets +Land For In Chevron Behind Northern Fourshore Lekki Lagos State,Diamond Court Estate In Chevron Behind Northern Fourshore Chevron Lekki Lagos,₦,"92,000,000/day",0,0,0, beds, baths, Toilets +2 Bedroom Luxury Apartment (off Plan),Goldmark Luxury Apartments Ilasan Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Finest Lekki Contemporary 5bedrooms Fully Detached Duplex With Pool And Bq. (lekki Phase 1),Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Maisonette In Freedom Way Lekki Phase 1 Lagos State,"Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bed Semi Detached+bq In Orchid Road Lekki Lagos State,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"72,000,000/day",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraces Castle Duplex + Bq,Orchid Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplexes+bq For Sale In Vgc Off Lekki Epe Expressway Lagos State,Harris Drive (shapata) By Vgc Vgc Lekki Lagos,₦,"69,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Detailed & Exclusive Lekki 4bedrooms Semi Detached Duplex With Bq,Second Toll Gate Ikota Lekki Lagos. Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplexes+bq For Sale In Vgc Off Lekki Epe Expressway Lagos State,Bosmak Heaven In Harris Drive (shapata) Vgc Lekki Lagos,₦,"60,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale In Ikate Elegushi Lekki Lagos State,Water Front Distress Sales In Elegushi Ikate Lekki Lagos,₦,"65,000,000/year",0,0,0, beds, baths, Toilets +4 Bedrooms Marionette Cyberville Estate Ikate,Cyberville Estate Ikate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With Bq,By Lagos Business School Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Marionette Cyberville Estate Ikate,Cyberville Estate Ikate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,3 Toilets +"A Very Clean Massive Relatively New 4 Bedroom Semi Detached Duplex Ensuite, Fitted Kitchen With Cooker, Fitted Executive Wardrobes, P.o.p Ceilings",Westend Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Lekki Lagos",₦,"4,750,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With Bq In A Conducive Area,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +3bedrooms Terrace With Bq,Ikota Gra Ikota Lekki Lagos,₦,"38,000,000/day",0,0,0,3 beds,3 baths,4 Toilets +Duplex,Lekki Conversation Center Ikate Lekki Lagos,₦,"72,000,000/month",1,1,1,4 beds,3 baths,4 Toilets +Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,1,0,5 beds,6 baths,7 Toilets +Duplex,Spark Avenue Ikate Lekki Lagos,₦,"38,000,000/sqm",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Duplex With Bq,Behind Nike Art Gallery Ikate Lekki Lagos,₦,"270,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Victoria Crest 2 Estate, Orchid Road Lekki, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 4bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Maintained 3bedroom Flat,Marwa Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Flat With Elevator,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Well Built 5bedroom Duplex,Richmond Estate Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 5bedroom Duplex+1rm Bq,Arcadia & Pinnock Beach Estate Lekki Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +Governor's Consent. Distress Sales 100% Dry Land, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With 2 Bq, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Maintained 3bedroom Flat With Elevator,Safe Court Ikate Lekki Lagos,₦,"55,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Flat With Elevator,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +1100 Sqm2 Bare Land,Fola Osibo Off Alibaba Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Very Spacious Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +6 Units Of 5bedroom Duplex+1room Bq,Arcadia & Pinnock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Exquisitely Built 5 Bedroom Detached Duplex With A Bq,Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bed Fully Detached Duplex,Lekki Country Homes Lekki Phase 2 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,7 baths,7 Toilets +1 Bedroom Flat,Megamound Estate Ikota Lekki Lagos,₦,"24,500",1,0,0,1 beds,1 baths,2 Toilets +Furnished 5bedroom Duplex,Rachel Nwangwu Close Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,1,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Meadow Hall Ikate Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,1 Toilets +4 Bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Studio Apartment,New Lagos City Lekki Phase 2 Lekki Lagos,₦,"13,000,000/sqm",1,1,0,1 beds,2 baths,2 Toilets +Luxurious 2 Bedroom Apartment,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Twin Duplexes,Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Buiit 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Oral Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Shevron Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +4bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Lovely Spacious Duplex,Southern View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Alluring 2floor 5bedroom Luxury With Swimming Pool,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 4bedroom Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Magnificent 5bedroom Luxury With Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Cheapest 4bedroom Semi Detached House In Ikota,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Amazing 4bedroom Spacious Detached Duplex,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Distress Sale Of A Spacious 4bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exclusive 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Mega Mansion With Cinema And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Spacious 4bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Lovely 4bedroom Semi Detached,Southern View Chevron Lekki Lagos,₦,"70,000",0,1,0,4 beds,5 baths,5 Toilets +Plot Of Land Measuring 460.025sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Unit Of 3 Bed Room Flat + 4 Unit Of Mini Flat + 3 Unit Of A Room Self Contain,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,10 beds, baths, Toilets +4 Units Of 3 Bedroom Flat,Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex And A Room Bq,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Megamound Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built Automated 5 Bedroom Terrace With Bq,"Ikate Elegushi, Lekki. Lagos. Ikate Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat With Bq,"Ikate Elegushi, Lekki. Lagos. Ikate Lekki Lagos",₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Super Spacious Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplexes,Kayla's Court Estate Beside Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000/month",0,1,1,4 beds,5 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"70,000,000/day",0,0,1,4 beds,0 baths,0 Toilets +2 Bedroom Terrace,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Duplex In A Well Secured Estate,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets +Luxury 10 Stories Residential Property At Lekki Phase 1,"Block 3 Plot 6, Rock Drive, Off C&i Leasing Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Distress 4bedroom Terrace Duplex With Bq,Olive Garden Estate Osapa London Lekki Lagos,₦,"56,000,000",0,0,1,3 beds,3 baths,4 Toilets +A Strategically Located Shopping Plaza On 470sqm (600 Sqm With Set Back) On A Full Plot Of Land With A Well Planned For Good Parking In A Nice Area,Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,1 beds,1 baths,1 Toilets +5bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/month",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Affordable Luxury 3 Bedroom Apartment + A Bq In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets +Affordable Luxury 2 Bedroom Apartment In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Tastefully Finished Luxury 3 Bedroom Apartment In Lekki,"Ocean Bay Estate, Off Orchid Road Lekki Phase 2 Lekki Lagos",₦,"44,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,"Kuzi Orizu Street In Lekki Phase 2, Ajah Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Buena Vista Estate Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 3 Bedrooms With Bq Terrace Duplex,"New Road, Close To Chevron Drive Igbo Efon Lekki Lagos",₦,"50,000,000",0,0,1,3 beds,4 baths,4 Toilets +Newly Built & Exotic 4 Bedroom Semi Detached Duplex,"Chevyview Estate, Chevron Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,6 baths,6 Toilets +Fully Furnished 5 Bedroom Duplex,Orchid Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace House,Lekki Ikate Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +3bedroom Flat With Bq For Sale,In A Mini Estate Igbo Efon Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 2bedroom Flat,Elf Bus Stop ?? By White Sand Schools Lekki Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 5bedroom Fully Detached Duplex,Chevy View Estate Lekki Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 4bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +Hotel,Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terrace Duplex,2nd Toll Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land,Orchid Road Lekki Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semidetached Duplex Is Located In A Serene And Secured Estate,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Renaissance Reloaded Phase 1,Lekki Lagos,₦,"2,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette Duplex,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"29,000,000",1,0,0,4 beds,4 baths,5 Toilets +7plots Facing Express,Oko Addo Ajah Lekki Lagos Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex & Penthouse With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",1,0,0,6 beds,6 baths,7 Toilets +3bedroom Flat,General Paint Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0,3 beds,3 baths,4 Toilets +24 Plots Of Land,Idi Orogbo Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"18,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached With A Bq,Agungi Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikota Villa Estate Vgc Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom Fully Detached,Orchid Road Ikota Lekki Lagos,₦,"44,000,000",1,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Room Bq, Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0, beds, baths, Toilets +3bedroom Terrace Duplex,General Paint Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 3bedroom Flat,General Paint Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0,3 beds,3 baths,4 Toilets +4plots Of Land Close To The Road,Abijo Lekki Lagos Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully 4 Bedrooms And 2 Living Rooms Semi Detached Duplex On 450sqm, All Rooms Ensuite,",Vgc Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Four Unit Of 3 Bedroom Flat At Terrace Annex Estate,Terra Annex Estate . Sangotedo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built Terraced Duplex For Sale At Ikota Gra , Ikota Lekki Lagos",Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets +2bedroom Flat,Ohombo Road Lekki Phase 2 Lekki Lagos,₦,"16,000,000",1,0,0,2 beds,2 baths,3 Toilets +Affordable Lekki 4bedroom Semi Detached Duplex,Orchid Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Available Land,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +3bedroom Terrace Duplex,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"32,000,000",1,0,0,4 beds,4 baths,5 Toilets +2 Bedrooms Apartments,Ologolo Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +5plots Of Land Facing Express Opposite Ikota Shopping Complex Vgc Ajah Lagos,Opposite Ikota Shopping Complex Ajah Lekki Lagos State Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5bedroom Semi Detached,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",1,0,0, beds, baths, Toilets +"Affordable 4bedroom Terrace Duplex For Sale, Orchid Lekki","Orchid, Lekki Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Terraced Duplex For Sale In A Secured And Developed Estate At Orchid,Orchid Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached 95m In A Secured Estate,Ologolo Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex,Bera Estate Lekki Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets +Full Plot Of Land At Greenville Estate Badore.,Greenville Estate Badore Lekki Lagos Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 4bedroom Terraced Duplex For Sale At Ikota Gra , Ikota Villa Estate Lekki Lagos",Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Semi Detached,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",1,0,0, beds, baths, Toilets +3bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"29,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Maisonette Duplex,General Paint Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"38,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly 4 Bedroom Terraced Duplex At Paradise Chevron Drive,"Paradise Estate , Chevron Drive Lekki , Lagos Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With A Bq,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Four Bedroom Detached Duplex With Bq.,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2bedroom Flat,Orchid Road Ikota Lekki Lagos,₦,"15,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Contemporary 5 Bedroom Duplex,Lekki County Homes Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Nicely Finished, Serviced And Fully Furnished 2bedroom Flat All Rooms Ensuite","Lekki Horizon 2 Estate, Ikate, Lagos Ikate Lekki Lagos",₦,"40,000,000",1,0,1,2 beds,2 baths,3 Toilets +Luxury Hotel,Ologolo Jakande Lekki Lagos,₦,"750,000,000",0,1,1,10 beds,10 baths,10 Toilets +2 Bedroom Luxury Apartment,"Behind World Oil, Blenco Ikate Lekki Ikate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,2 baths,2 Toilets +5 Bedroom Duplex With A Room Bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lekki,ologolo Ologolo Lekki Lagos",₦,"270,000,000/day",1,1,1,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Pool And Bq, Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detailed Terrace With Building Plan Approval,Ikota Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Pool, Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Sea View Duplex, Osapa London Lekki Lagos,₦,"390,000,000",1,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lekki Exclusive 4 Bedroom Semidetached Duplex By Nicon Town,Nicon Nicon Town Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,4 Toilets +"5 Bedroom Fully Detached Duplex With Pool, Cinema And Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Detached Duplex Iota, Ikota Lekki Lagos,₦,"85,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Pool,Lekki County Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex + Bq,"Angles Court, Abijo, Lekki Chevron Lekki Lagos",₦,"49,000,000",0,1,0,4 beds,4 baths,3 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Near Shoprite. Agungi Lekki Lagos,₦,"8,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +A Brand New Tastefully Finished 4 Bedroom Fully Detached,Off Orchid Hotel Road By Lekki 2nd Toll Gate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fluorish Gate Garden,Sunday Ejiofor Street Abijo Igbo Efon Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Smart Home With 1bq,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Trending Lekki Palm Beach Sale,Beach Front Ilasan Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,1,5 beds,6 baths,6 Toilets +Massive Contemporary 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Bungalow,Mayfair Garden Awoyaya Vgc Lekki Lagos,₦,"23,000,000/month",0,1,0,3 beds,3 baths,4 Toilets +3 Bedrooms Terrace Duplex,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +617sqm Land,"Lekki Right Bosun Adekoya Street, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land Per Sqm,Ilasan Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Per Plot,Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Per Plot,"Orchid Road, Lekki Lagos",₦,"30,000,000",0,0,0, beds,0 baths,0 Toilets +Land Per Plot,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +11 Plots Of Land,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"...,. Ikota Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Fully Detached Duplex+ Bq,Z Lekki Phase 2 Lekki Lagos,₦,"65,000,000/month",0,1,0,5 beds,4 baths,5 Toilets +5 Bedroom Duplex Available,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached For Sale,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex + 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,8 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,8 Toilets +Duplex In Lekki Phase 1 Lekki,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex Available,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,6 Toilets +5 Bedroom Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Duplex For Sale In Osapa London,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With 2bqs,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,7 baths,0 Toilets +Land For Sale At Lekki Peninsula,Vgc Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Duplex In Lekki Phase 1 Lekki,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,5 Toilets +Duplex In Lekki Phase 1 Lekki,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets +Demolishable Structure,Duro Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,0,0,6 beds,0 baths,0 Toilets +Duplex For Sale In Agungi Lekki,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Duplex,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Shop Space,"Lake Plaza. 20,baale Street Igbo Efon Lekki Lagos",₦,"10,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4nos 3bedroom Flat All En Suite,Chevyview Estate Chevron Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Affordable Land In A Serene Neighborhood,Orofun Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"10,000,000/month",0,0,0, beds, baths, Toilets +8 Flat And 3bedroom,"Isheri Oshun, Jakande Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +5bedroom Stand Alone Duplex With A Bq,Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,7 Toilets +(2 Units) 5 Bedrooms Semi Detached House With A Big Boys Quarters,Eleganza Garden Opp Vgc Ikota Lekki Lagos Epe Express Way. Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Shopping Complex Of 32 Shopping Mall Spaces,Ajiran Agungi Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +Commercial Shopping/ Office Plaza On 3 Floors,E Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3. Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,3 Toilets +", 5 Plots On An Interlocked Road.",Igbara Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lekki Phase 1, Developer's Delight. Joint Venture Land",Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"Ologolo Town Agungi, 3 Bedroom Semi Detarched Duplex Plus Bq",Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Chevron Toll Gate Duplex, Vella Homes",Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Affordable 3 Bedroom Apartment Off Plan,Ikate Lekki Lagos,₦,"26,990,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached With Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ikate/ Ilasan 4 Bedroom Terrace Duplex,Lekki Epe Expressway Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Chevron Lekki , 5 Bedroom Fully Detarched Duplex With Swimming Pool",Lekki Chevron Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,5 baths,6 Toilets +"Lekki Phase 1,land Measuring 1246sqm",Fatai Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Plots Of Land At Ikate Freedom Way, 650 Square Meters",Ikate Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Bakare Estate Agungi, 645sqm And 687.65sqm , 2 Plots",Agungi Agungi Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Pinnock Estate Land Phase1, Land Size,1363sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"440,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1182.402sqm,Freedomway Ikate Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Hampton Lake Estate Chevron,Chevron Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Sand Filled Land,Ikota Gra Lekki County Ikota Lekki Lagos,₦,"67,000,000",0,0,0, beds, baths, Toilets +Land,Beachwood Estate Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Off Orchid Road ,before Enyo Gas Station 8 Plots Of Sand Filled Land.",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Primrose Court,Chevron Lekki Lagos,₦,"47,500,000/month",1,1,0,5 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Joint Venture 400 Plots At Orchid Road By Cooplag And Ooni Of Ice Estate,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Whales County 2 Lekki,Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +"Ikate, Ilasan 4 Bedroom Terrace Duplex",Oba Yekini Elegushi Royal Estate Ilasan Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +Ocean Palm Estate Scheme 2 Ikate Lekki,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Ikate, 4 Bedroom Terrace Duplex Plus Bq And 4 Ac Units, Pay And Move In",Ikate Lekki Lagos,₦,"47,000,000",1,1,0, beds, baths, Toilets +"Ikate Lekki. Vintage Court, Land Size 1200sqm",Vintage Court Ikate Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Land 1100 Sqm,"Lekki Phase1, First Gate Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Beach Resort Estate By Pinnock, 6 Hectares",Beach Resort Estate By Pinnock Igbo Efon Lekki Lagos,₦,"170,000",0,0,0, beds, baths, Toilets +"Plots Of Land, Belevista Estate, Chevron 2nd Toll Gate Orchid Road",Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace With A Bq,Ademola Idado Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,6 Toilets +2 Bedroom Flat,Agungi Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +"Updc Housing Estate Beside Pinnock,osapa Land",Osapa London Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Fully Detached 5 Bedroom Duplex With Bq,Off Wole Olatunji Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets +5 Bedroom Stand Alone Duplex,F Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,E Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom En Suite Fully Detached House,Lekki County Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,4 baths,4 Toilets +Two Units Of Semi Detached Duplex Apartment,Adebisi Popoola Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ora Estate, Chevron Plot Measuring 1342sqm","Eleganza, Chevron Chevron Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets +Dry Table Land At Ross Avenue Estate Orchid Road,"Off Orchid Hotel Road, Behind Coop Lag Estate Chevron Lekki Lagos",₦,"40,000,000",0,0,0, beds, baths, Toilets +Hot Land Facing Express,"Ikate, Lekki Epe Express Way Lekki Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lavender Gardens 4 Bedroom Terrace Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,3 Toilets +Orchid Road Hot Jv 4 Plots 2400sqm Land,"Orchid Road, Oceanbay Estate Chevron Lekki Lagos",₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ologolo, Ikate 3 Bedroom Apartment",Ilasan Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Pinnock Estate Land, Various Sizes, 860sqm, 725sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikate, Ilasan 3 Bedroom Terrace Duplex Plus Bq Very Serene Compound Fully Seeviced",Ilasan Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detarched Duplex In An Estate On Orchid Road,"Orchid Road, Lafiaji Town Chevron Lekki Lagos",₦,"110,000,000",1,1,1,6 beds,6 baths,7 Toilets +Brand New 4 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Ologolo, Osapa London 4 Bedroom Terrace Duplex Plus Bq",Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,4 baths,5 Toilets +"Joint Venture Land, 800sqm At Ikate Lekki.",Ikate Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,"By Femi Okunnu Estate, Lekki Lagos Osapa London Lekki Lagos",₦,"160,000,000",1,1,1,5 beds,6 baths,6 Toilets +"Ilasan, 600sqm Of Land For Sale. Salem",Elevation Church Road Ilasan Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +10 Plots Of Land Orchid Road Lafiaji,Chevron Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +2bedroom Flat With Bq,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Mega Mound Estate Land Of Various Land Sizes, 400 To 450sqm",Megamound Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Freedom Way, Periwinkle Estate., 500 And 1050sqm",Freedom Way Ikate Lekki Lagos,₦,"240,000",0,0,0, beds, baths, Toilets +"Elegushi,ikate, Lekki Land 1680 Sqm",Elegushi Road Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Whales County Phase 2 Orchid Road,Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +"Lekki Phase 1, Land Size ,2608sqm End Of Freedom Way",Lekki Phase 1 Lekki Lagos,₦,"190,000",0,0,0, beds, baths, Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"67,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +600sqm Of Land,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Christabel's Gardens Off,4 Bedroom Terrace Duplex, Chevron Toll Gate, Lekki",Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,4 Toilets +"Signature Terrace, 4 Bedroom Duplex",Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Bera Estate Chevron, Land Size, 1700sqm. Hot And Fresh",Bera Estate Chevron Chevron Lekki Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets +Waterfront Distressed Sale,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"Lekki Phase 1. Joint Venture Land, Size 1200sqm",Z Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Bera Estate, Chevron Land (a Plot)",Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms Semi Detached House With Boys Quarter And Gate House In It's Own Compound,Via Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Affordable Luxury Flat,Lekki Epe Expressway Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Plots Of Ologolo Land,Z Ologolo Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Jakande Gate Land,on Osapa Road, By Victory Park Estate. 9800 Square Meters",Osapa Road Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +"45 Million Naira Lekki Prime Land, Chevron Orchid Road",Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +Waterfront Land At Ilasan,Z Ilasan Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikate, 4 Bedroom Maisonette",Ikate Lekki Lagos,₦,"38,990,000",1,1,0,4 beds,4 baths,5 Toilets +"Lekki Phase 1, Joint Venture Land. Size 1400sqm. No Premium. Open Proposal",Bisola Durosimi Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +24 Units Of 2 Bedroom Apartment,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely 5 Bedroom Duplex With 3 Rooms Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Land, Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable 2 Bedroom Apartment,Osapa London Ologolo Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Ilasan /ikate Joint Venture , Salem Bus Stop, 1030 Sqm",Salem Bus Stop Ilasan Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"Ikate, 4 Bedroom Terrace",Ikate Lekki Lagos,₦,"48,990,000",1,1,0,4 beds,4 baths,5 Toilets +"Lekki Phase 1, Land Size 3050sqm",Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"Oral Estate, Chevron,.lekki Land",Z Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ilasan Land Facing Expressway,World Oil Ilasan Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +Ilasan Road/ Ikate Hectares Of Land,Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets +Jv Land Of 2561 Sq.m,Ikate Elegushi Ikate Lekki Lagos,₦,"2,561",0,0,0,0 beds,0 baths,0 Toilets +"Alpha Beach Road, Atlantic View Estate Plots Of Land O",Alpha Beach Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Chevron Bera Estate 5 Bedroom Fully Detarched Duplex,Lekki Epe Expressway Chevron Lekki Lagos,₦,"130,000,000",1,1,0,6 beds,5 baths,7 Toilets +Land,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Plus Bq Penthouse (off Plan Development),Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets +9 Plots Of Land Chevron Alternative,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"69,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Ikate Land, , 800sqm And 400sm At 220k Per Square Meter",Ikate Ikate Lekki Lagos,₦,"176,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Apartment,Lekki Expressway Ikate Lekki Lagos,₦,"25,000,000",1,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex With Servant Quarter,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Hotel,Ologolo Ologolo Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lekki Phase 1, Corner Piece Land 1110sqm",Oladimeji Alao Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land At Ikate By Nike Art Gallery, 1100sqm",By Nike Art Gallery Ikate Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land For Sale At Jakande Opp Shoprite,Jakande Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +"Land On Expressway,lekki Ikota . 1300sqm Opposite ,mega Chicken",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Chevron Lekki 5 Bedroom Fully Detarched Duplex Plus Personal Swimming Pool,Chevron Chevron Lekki Lagos,₦,"165,000,000",1,1,0,6 beds,5 baths,6 Toilets +"Land For Sale By 2nd Toll Gate, Beside The Petrol Station Size, 2154 Sqm",Off Orchid Hotel Road Chevron Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,"Ikate, Convenant Way Ikate Lekki Lagos",₦,"60,000,000",1,1,0,0 beds,0 baths,0 Toilets +"Land With, Various Sizes, 1129sqm To 3500sqm",Vgc Ajah Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Hotel In Vgc, Nicon Hotels, Formerly Median Hotels And Apartment",Vgc Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikate, 5 Bedroom Semi Detached Duplex", Ikate Lekki Lagos,₦,"62,990,000",1,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Dry Land,Chevy View Estate Chevron Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terraced Duplexe In A Secured Gated Estate,"Paradise 2 Estate Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Ikate Elegushi Land, 10 Hectares, Beachfront",Ikate Elegushi Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets +Plot Of Land At Sugarland Estate Ikota Lekki,Lekki Epexpress Way Ikota Lekki Lagos,₦,"74,000,000",0,0,0, beds, baths, Toilets +(2 Units) Semi Detached Houses (uncompleted Building),Lekki Phase 1 Rhs* (oceanside) Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex At Nicon Town,Nicon Town Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Ilasan Land, 1,333 Square Meters",Ilasan/ Ikate Ilasan Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Plots Of Land At Ikate, Orange Island. 1000 Square Meters",Orange Island Ikate Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Ikate 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Joint Venture,4600sqm, Lekki Right Through Pinnacle Filling Station",Oniru Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"Primorose Court, Orchid Road, Lekki",Chevron Lekki Lagos,₦,"47,500,000",1,1,0,4 beds,5 baths,5 Toilets +Land At Chevron Drive( Bera Estate),Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Jakande/ Ilasan Plots Of Land.opposite Shoprite Jakande Lekki,Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +"Joint Venture Land,2348sqm, Sand Filled Fenced And Gated",Orchid Road Chevron Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +"Affordable Orchid Road Land Lekki, Whales County Phase 2",Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +"Chevron, Chevy View Estate Land",Z Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Plots Of Land,Chevron Alternative Chevron Lekki Lagos,₦,"81,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lekki Phase1 , Land Size, 2500sqm, Admiralty Way",Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +A Full Detached 4 Bedrooms House +1 Office Room With 3rooms Boysquarter,Nicon Twon Estate Opposite Salim Lekki Lagos,$,"1,900,000",0,0,0,0 beds,0 baths,0 Toilets +Ilasan Plots Of Land,Z Ilasan Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Victory Park Estate Land, Various Sizes, 450sqm, 900sqm, 1900sqm",Victory Park Jakande Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Affordable 3 Bedroom Maisonette,Ikate Lekki Lagos,₦,"35,990,000",1,1,0,3 beds,3 baths,4 Toilets +"Ikate, Ilasan 4 Bedroom Terrace Duplex",Oba Yekini Elegushi Royal Estate Ilasan Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Land On Expressway,lekki Ikota . 1300sqm Opposite ,mega Chicken",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +"Shoprite Road, Lekki Jakande, Victory Park Estate,land Size 1000",Jakande Lekki Lagos,₦,"175,000",0,0,0, beds, baths, Toilets +"Lekki Phase 1, 4,635 Square Meters. Residential Zone",Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"Pínnock Estate Waterfront Land, 1000sqm",Pinnock Estate Igbo Efon Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Ilasan Land Facing Expressway,World Oil Ilasan Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Chevron Alternative Land, 600sqm, 80 Million, Legal Fees, Surveyer, Documentation 10 Million",Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Ikate Ilasan 2 Bedroom Luxury Flat,Oba Elegushi Royal Estate Ilasan Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets +1300 Sqm Of Land At Ilasan Lekki,Ilasan Lekki Ilasan Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Penthouse With A Bq,D Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"67,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Lekki County Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Osapa London Lekki,plots Size 630sqm In Gated Estate",Osapa London Osapa London Lekki Lagos,₦,"94,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land For Sale At Ilasan Lekki, 630 Sqm",Ilasan Ikate Ilasan Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Spacious Well Built And Affordable 3 Bedrooms Apartment,2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex With Bq,Izu Court Chevron Drive Chevron Lekki Lagos,₦,"99,000,000",1,1,0,5 beds,5 baths,5 Toilets +Ilasan Road/ Ikate Hectares Of Land,Ikate Lekki Lagos,₦,"120,000",0,0,0, beds, baths, Toilets +"Orchid Road, 3 Plots Of Land , Commercial Plots On Orchid Road ,1800 Sqm",Orchid Road Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Terraces And Semi Detarched Houses,Vgc Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets +"Lekki Phase 1, Commercial Plots 1500sqm Business District",Business District Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace With Bq,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths,5 Toilets +"Plots Of Land At Osapa London, Ologolo, 1416sqm( 3 Plots)",Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Osapa London Land, 500sqm And 800sqm At 180k Per Square Meters",Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets +"Plots Of Land On Chevron , Orchid Road, Ocean Bay Estate Before Lafiaji",Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +"Jakande Gate, 5 And Half Pots Of Land.opp Femi Okunnu.",Femi Okunnu Jakande Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Stand Alone Duplex With A Bq,L Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Elegushi Royal Estate Ikate Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Plots Of Land At Ikate Lekki, 1182 Square Meters",Water View Estate Ikate Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +"Melrose Park Estate, Beside Vgc Lekki Ajah, 781 Sqm",Ikota Vgc Lekki Lagos,₦,"78,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex At Lekki,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +950 Sqm Of Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Whales County Estate Phase 1 Orchid Road,Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"69,990,000",1,1,0,5 beds,5 baths,6 Toilets +"Ilasan Lekki, 800sqm Of Land On Tarred Road.good Location",Ilasan Ilasan Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Stand Alone Penthouse With A Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikate/ Ilasan Corner Piece Land(2 Plots),Ilasan Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Prime Property,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Prime Land Facing The Road,"Along Orchid Road, Fence Of A Gated Estate Community Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fantastic Joint Venture, 2400sqm, Ikate Elegushi Lekki",Elegushi Ikate Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"Bera Estate Chevron, 2 Plots Corner Piece",Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +5bedroom Stand Alone With A Bq,22 Elutu Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,7 Toilets +Land,Z Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ikate, Convenant Way 2 Bedroom Apartment Flat",Ikate Lekki Lagos,₦,"48,000,000",1,1,0, beds, baths, Toilets +"Nicon Town Estate Land. Various Land Sizes, 735, 1000, 1090 ( Sqm)",Nicon Town Estate Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment With A Room Bq In A Fully Serviced Estate.,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"72,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Orange Island Corner Piece Land Lekki, 930 Sqm",Orange Island Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"Bera Estate, Chevron Land (a Plot)",Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Maiyegun / Jakande Plots Of Land,Maiyegun Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat/apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Osapa London Jv, Arcadia Groove Estate ,1245sqm",Arcadia Groove Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Land In Chevron Drive,Chevron Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Lekki Phase1 Land Size 3500sqm,",Lekki Phase 1 Lekki Lagos,₦,"840,000,000",0,0,0, beds, baths, Toilets +"Ologolo, Ikate 1 Bedroom Apartment",Ilasan Lekki Lagos,₦,"27,000,000",1,1,0, beds, baths, Toilets +Top Notch Luxury Finished Fully Serviced 4 Bedroom Terrace Duplex For Sale In Agungi Lekki,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Ologolo, Agungi.4 Bedroom Semi Detarched Duplex Plus Bq",Agungi Ologolo Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +Maven Court Orchid Road ( 4 Bedroom Semi Detarched Duplex With Bq,"Royal Pine Estate, Orchid Road, Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets +"Ikota Plots Of Land Facing Expressway, Beside Roxbury Homes","Ikota, Lekki Epe Expressway Ikota Lekki Lagos",₦,"310,000,000",0,0,0, beds, baths, Toilets +2488.5sqm Waterfront Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ikate 3 Bedroom Finished Apartment,Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Affordable Luxury 3 Bedroom Apartment,Lekki Epe Expressway Ilasan Lekki Lagos,₦,"37,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Lekki Phase1, 4800sqm Land",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Apartment,Jakande Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets +"Plots Of Land In An Estate By Burned Vista, Orchid Hotel Road. Lafiaji",Orchid Road Chevron Lekki Lagos,₦,"95,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment (12 Months Payment Plan),Ilasan Lekki Lagos,₦,"32,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Oral Estate, Along Victoria Crest Road. 6 Plots",Along Victoria Crest Road Oral Estate Lekki Lagos,₦,"71,000,000",0,0,0, beds, baths, Toilets +"Beach Resort, Beside Pinnock Estate Land",Osapa London Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Osapa London Land,Osapa London Agungi Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Orchid Road Land For Sale, Oceanbay Estate. 550sqm",Orchid Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +3 Hectares Of Land,Elegushi Boundary Ikate Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +Huge Return On Landbanking Investment Project Within A Short Period Of Time,Admiralty Way Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"100,000/sqm",0,0,0, beds, baths, Toilets +Osapa London Land,Victory Park Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Ikota Expressway , Opposite Mega Chicken Ikota Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Lekki Phase1, 3100 Sqm Land",D Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Chevron Alternative Route, Plot Of Land",Chevron Axis Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +"Ora Estate, Chevron Plot Measuring 1342sqm","Eleganza, Chevron Chevron Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets +1010 Sqm Of Land For Sale At Ilasan Lekki,Ilasan Lekki Ilasan Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Luxury Apartment,Ologolo Before Agungi Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets +"Lekki Phase 1, Land Fenced And Gated",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0, beds, baths, Toilets +"Lekki Phase1, New Market Side Of Marwa, 2264sqm",Lekki Phase 1 Lekki Lagos,₦,"220,000",0,0,0, beds, baths, Toilets +Land,Behind Chevron By Second Tollgate Facing Lekki Epe Express Way Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Lekki Epe Expressway Ikota ,1300sqm Land For Sale.",Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +"Ikate, Convenant Way 4 Bedroom Terrace",Ikate Lekki Lagos,₦,"72,000,000",1,1,0, beds, baths, Toilets +"Ikate Elegushi,land Reclamation Of 50 Hectares At Ikate Elegushi, Title C Of O",Elegushi Ikate Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Chevron Lekki 2nd Toll Gate Affordable Luxury 4 Bedroom Semi Detarched Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Agungi Osapa London Lekki Lagos,₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Chevron Alternative Plots Of Land In Gated Estate, Size 730sqm. Cromwell Court",Chevron Alternative Lekki Chevron Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Affordable Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"23,990,000",1,1,0,2 beds,2 baths,3 Toilets +Decently Finished Luxury 5 Bed Fully Detached Duplex,Lekki County Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newily Built 5 Bedrooms With A Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Lekki County Estate, Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex Penthouse,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex For Sale.,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Terrace 5 Bedroom Newly Built Plus Bq,Olufemi Olatunji Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,4 baths,4 Toilets +A 5 Bedroom Duplex,"Megamound Estate, Lekki. Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Dry Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/year",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"370,000,000/day",1,1,0,5 beds,6 baths,6 Toilets +4bedroom Maisonette,Lekki Phase One Ikate Lekki Lagos,₦,"60,000,000",0,1,0, beds,4 baths,5 Toilets +Landed Property,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedroom Maisonette,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplexes,2nd Lekki Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartments With Bq,Agungi Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Units (only 10 Units Left) Of 4 Bedroom Terraces,Jakande Axis Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Decently Finished 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplexes Available,"2nd Toll Gate, Lekki Chevron Lekki Lagos",₦,"60,000,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terraced Duplex,"Madam Joy Ezetah Lane, Megamound Estate, Lekky County Estate Ikota Ikota Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Blocks Of 5 (no) Premium Apartments,Within Ocean Bay Estate Via Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +Newly Beautifully Built 4 Bedroom + Bq Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Available Land,Orchid Road Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Ensuite Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Lands,Behind Abijo Gra Lekki Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Oral Estate, Eleganza Lekki Lagos",₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Units Of 3 Bedrooms Flat,Chevvy View Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Governor's Consent,Chevvy View Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3/4b Bedroom Terrace,Ikate Lekki Lagos,₦,"74,000,000",0,1,0,3 beds,4 baths,0 Toilets +Used 4 Bedroom Semi Detatched Duplex With A Bq In A Serene Environment,Close To Muritala Eletu Way Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Units Of 2 And 4 Bedroom Terraces,Victoria Crest Ii Opposite Ocean Bay Estate Along Orchid Hotel Ro Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 3 Bedroom Flats With Bq, Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets +Units Of 2 And 3 Bedroom Apartments,"3rd Roundabout, Ikate Along Lekki Epe Express Way, Adjacent Enyo Fuel Station, Behind New Sofia Bedmate Lekki Show Room. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets +Lovely 2 Bedroom Apartment,Ologolo Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,2 Toilets +Affordable Luxury 4 And 5 Bedroom Fully Detached Duplex,Chevron Toll Gate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Swimming Pool And Gym,2nd Toll Gate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Splendid 2 Bedrooms Apartment,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool And Bq,Ruby 2 & 3 Ologolo Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette +bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"470,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Adorable Spacious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +1 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets +5bedroom Fully Detached Duplex With Bq & Gate House,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"130,000,000",0,1,1, beds, baths, Toilets +Brand New 3 Bedroom Apartment,Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,0 Toilets +Spacious Brand New 5 Bedroom Semi Detached Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets +"A Brand New Detached 4 Bedroom Duplex, Ikota Lekki",Ikota Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Gorgeous Modern 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Penthouse On 2 Floors,"Blue Water, The Sapphire Tower Lekki Phase 1 Lekki Lagos",₦,"370,000,000",1,0,0,5 beds,4 baths,5 Toilets +Dry Land At 30% Discount Till January 28,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand 3 Bedroom Flat With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets +4bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tasteful Finished 4bedroom Semi Detached Duplex With Bq,Tartiana Court Estate Ikota Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Terrace Bungalow,Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semidetached Duplex And 1 Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +130m,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan Sales Of Newly Built 4 Bedroom Terrace At Osapa Lekki,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lekki Pride Estate Apartments,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Plots Of Land,"Orchid, Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"70,000,000/sqm",0,0,0, beds, baths, Toilets +One Acre Of Dry Commercial Land,Ikota Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Off Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"65,000,000/sqm",1,0,0,4 beds,4 baths,4 Toilets +4 Units Of 3bedroom Flats + 1bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,R Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,1,0,5 beds,0 baths,0 Toilets +Classy 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Without Bq,Along Orchid Orchid Hotel After Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxurious 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Lekki Garden Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Serviced 3 Bedroom Apartments, Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Maisonette + Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Luxury 4 Bedroom Fully Detached Duplex,F Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"4,250,000",0,0,0,0 beds,0 baths,0 Toilets +A Modern Contemporary Newly Built 5bedroom Fully Detached Duplex With Bq & Cctv,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Semi Detached Duplex With Bq For Sale!,"2nd Toll Gate By Chevron, Orchid, Lekki Phase 2 Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury 4bedroom Terrace Duplex With Dstv, Swimming Pool And Play Area",Orchid Road Lekki Lagos,₦,"58,000,000",1,1,0, beds, baths, Toilets +4 Bedrooms Semi Detached Duplex With Bq (payment Plan And Mortgage Are Available),"2nd Toll Gate By Chevron, Lekki Phase 2 Chevron Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,"Orchid Road, Immediately After Chevron Second Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Style 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Cozy 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Newly Built 4 Bedroom Penthouse & Bq, Ikate Lekki, Lagos",Bloom Haven Residence Ikate Lekki Lagos,₦,"88,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely Built 3 Bedroom Terrace Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex At Pinnoch Estate Lekki.,Lekki Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Spacious Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +1bedroom Maisonette,Ikate Lekki Lagos,₦,"38,000,000",0,0,0,1 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +6 Bedroom Detached Mansion,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"85,000,000",0,0,1,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Affordable Spacious 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,Cherry Vile Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Astonishing 5 Bedroom Fully Detached Duplex,F Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,0 baths,0 Toilets +4bedroom Terrace Duplex Without Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,"Bangbala Road, Camberwall Advantage Ikate Lekki Lagos",₦,"44,000,000",0,1,0,2 beds,2 baths,3 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex In A Serene Estate,Oral Estate Immediately After The Second Toll Gate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 3 Bedrooms Terrace + Bq,Bloom Heaven Residences Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets +Complete Class 5 Bed Fully Detached Duplex With Swimming Pool And Private Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex And A Room Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land In Chevron Lekki At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +5bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedroom Terraced Duplex Home,"Romax Homes, Harris Drive Vgc Lekki Lagos",₦,"44,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Smoothly Built 4 Bedroom Fully Detached Duplex,F Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace With B/q,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Eleganza Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O Land Now Selling In Gracias Goshenite Okun Ajah,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +"Newly Built 1, 2 And 3 Apartments", Idado Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets +Gorgeous Modern 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Lekki County Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced House In A Beautiful Fully Serviced Estate,"Earls Court, Ikate (3rd Roundabout) By Nike Art Gallery Vgc Lekki Lagos",₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classic And Very Lovely 5 Bedroom Fully Detached Duplex In A Very Serene Estate,Immediately After The Second Toll Gate Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +300 Square Meter,Beside Eleganza Palace Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets +"930sqm Dry Land For Sale With Governor's Consent At Lekki Scheme 2, Ajah",Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4bedroom Semi Detached Duplex And A Bq,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Terrace,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex In A Serene Estate,"Ikota Villa Estate, Gra Ikota Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +64 Units Of 2 Bedroom Terrace Bungalows,Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Detached Duplex,Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Penthouse,Z Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Units Of Newly Build 3 Bedrooms Flat,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Exquisite ,smart Brand New 4bedroom Semi Detached Duplex +bq With Tv , Refrigerator Etc",Pantheon Smart Homes Chevron Lekki Lagos,₦,"78,000,000",0,1,1,4 beds,5 baths, Toilets +5 Bedroom Fully Detached Duplex With A Service Quarter,Chevron Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex Plus 2rooms Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5bedroom Detached Duplex With Swimming Pool, Cinema, Cctv, 2bedroom Bq",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex With 1bq,Lakeview Park Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex Plus 1 Bedroom Mini Flat,F Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Cinema,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex For Sale,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,"Ocean Palms Estate, Scheme 1, By Meadow Hall Way Ikate Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 5 Bedroom Fully Detached Duplex With Bq,S Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Estate Land For Sale,"Off Orchid Hotel Road, Lekki Lagos. Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,D Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached In A Serene Neighborhood,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000/sqm",0,1,1,5 beds,6 baths,6 Toilets +8 Plots Of Land,"Orchid, Chevron 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"80,000,000/sqm",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached For Sale,"Ologolo, Jakande Axis Lekki Lagos Ologolo Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +3 Bedrooms Terraces,2nd Lekki Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached With Bq,Sunday Ejiofor Street Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Building With Bq,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths,4 Toilets +3bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets +Magnificent 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Luxury Apartment,Ikate. Lekki Ikate Lekki Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Finished Exquisite 4 Bedroom Semi Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite Brand New Very Spacious4bedroom Semi Detached Duplex With Bq And 2living Room,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace Duplex With Swimming Pool And Play Area With Dstv,Orchid Hotel Road Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Buy & Build 3329.669sqm Plots Of Luxury Dry Land In A Mini Estate At Orchid Hotel Road,Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Jakande Area Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +Well Built 4 Bedroom Semi Detached Duplex,R Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,0 baths,0 Toilets +4bedrooms Terraces,Orchid By 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",1,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Jakande Area Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Fully Serviced Terrace Duplex,Ikota Lekki Lagos,₦,"57,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"330,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land At 15% Discount Till March 30th.,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Classic And Spacious 4 Bedroom Semi Detached Duplex In A Serene Estate,Ikota Lekki Lagos,₦,"82,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex +bq,Bogije Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Classic 4 Bedroom Semi Detached Duplex In A Serene Estate,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq And 5 Bedroom Fully Detached Duplex With Bq,"2nd Tollgate, Orchid Road Chevron Lekki Lagos",₦,"76,000,000",1,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Jakande Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",1,1,0, beds, baths, Toilets +4bedrooms Fully Detached Duplex With Bq,"2nd Toll Gate By Chevron, Lekki Phase 2 Chevron Lekki Lagos",₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets +12 Units Of *smart* 4 Bedroom Semi Detached Duplex With Bq,"Orchid, Royal Pine Estate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With Bq,Megamound Estate Ikota Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Luxury Apartments,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,2 Toilets +3bedroom Penthouse +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets +Most Affordable 4 Bedroom Terrace,"2nd Tollgate, Lekki. Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Spacious Newly Built 5bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Royal Standard 5 Bedroom Fully Detached Duplex With Swimming Pool,D Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +Top Notch 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +Functional Modern Bakery,Orchid Chevron Lekki Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Smart Terrace,Ben Flo Street Orchid Road Ikota Lekki Lagos,₦,"50,000,000",1,1,1,5 beds,5 baths,5 Toilets +Plot Of Dry Land With Beautiful Amenities At Westbury Homes Comes With C Of O In Bogije,"Westbury Homes, Bogije Lekki Lagos",₦,"18,000,000",1,0,0,0 beds,0 baths,0 Toilets +Exquisite 2 Bedroom & 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"51,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 4bedroom Semi Detached Duplex In A Gated Estate,Orchid Hotel Road Lekki Lagos,₦,"64,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"63,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury Serviced 3 Bedroom Apartments, Agungi Lekki Lagos,₦,"60,000,000",1,0,0,0 beds,0 baths,0 Toilets +Unique Style 5 Bedroom Terrace Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Serviced Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,1, beds, baths, Toilets +Luxury 2 Bedroom Apartment With A Bq,Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,Estate Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +T 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Lekki Gardens Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Maisonette ,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Studio Apartment,Ikate Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb 4 Bedroom Semi Detached Duplex In A Serene Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Finished 4 Bedroom Semi Detached Duplex With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +2bedroom Maisonette,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable Exceptional 3 Bedroom Terraced Duplex,"Romax Homes, Harris Drive Vgc Lekki Lagos",₦,"37,000,000/sqm",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,6 Toilets +Classic And Spacious 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,5 Toilets +Hotel,"Vgc, Lekki Lagos Vgc Lekki Lagos",₦,"13,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,6 baths,6 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dry Land In Chevron Lekki At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +Classically Finished 4 Bedroom Terraced Duplex With A Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Lagos,₦,"190,000,000",0,1,0,0 beds,0 baths,0 Toilets +4bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Built 4 Bedroom Duplex With Swimming Pool And Gym, Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 5 Bedroom Fully Detached Duplex For Sale,"Ikate, Lekki Lagos. Ikate Lekki Lagos",₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex To With Bq,Chevro Chevron Lekki Lagos,₦,"92,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Terrace,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With Bq,"Chevron, Lekki Lagos State Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Glorious Spacious 5 Bedroom Fully Detached Duplex With Swimming Pool,F Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exceptionally Designed 5 Bedroom Fully Detached Duplex With A Swimming Pool In A Very Serene Estate,"Lekki County Homes, Megamound Estate Ikota Lekki Lagos",₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Gorgeous 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,6 Toilets +Beautifully Finished 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Exquisitely Built 5 Bedroom Stand Alone Duplex,Megamond Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Terrace Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Super Luxury Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex Fully Furnished In A Very Good And Secured Neighborhood In Lekki Right,Lekki Lagos,₦,"150,000,000",0,0,1,5 beds, baths, Toilets +Hectares Of Land,"Lekki Phase1, Freedom Way Lekki Phase 1 Lekki Lagos",₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Apartment,Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion With A Penthouse,F Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,0 baths,0 Toilets +"A Modern Contemporary Automated 5bedroom Detached Duplex With Swimming Pool, Bq, Cinema Etc",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Opposite Fara Park Estate By Majek Bus Stop Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,"Bloom Heaven Residences, Off Enyo Filling Station Ikate Lekki Lagos",₦,"45,000,000/year",0,1,0,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Penthouse,Ikate Lekki Lagos,₦,"58,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxurious Finished 5 Bedroom Duplex For Sale,"Ikate, Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land At 15% Discount Till March 30th,3 Minutes Drive From Orchid Chevron Lekki Lagos,₦,"45,000,000",1,0,0,0 beds,0 baths,0 Toilets +Hectares Of Land Available In A Serene Environment,Orchid Road Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Ologolo Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb 4 Bedroom Semi Detached Duplex In A Serene Estate,Immediately After Second Toll Gate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Peanock Estate Osapa London Lekki Lagos,₦,"600,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +3 Bedroom Apartment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +1 Bedroom Apartment,Agungi Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Deluxe 3 Bedroom Maisonette With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Apartment,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedroom Luxury Detached Duplex With A Room Bq And Fitted Kitchen,Ikate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,$,"160,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House With A Bq,Agungi Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House,Lekki County Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Smart Fully Detached Duplex House,Ologolo Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Idado Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex House With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex House,Lekki County Homes Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex House With A Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Smart Fully Detached Duplex House With A Swimming Pool,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary And Well Finished 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex House,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious Beautiful 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Terraced Duplex House,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex House With A Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Maisonette,Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +3bedroom Serviced Apartment In A Secured And Serene Environment,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,1,3 beds,3 baths,4 Toilets +A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Bakery,Orchid Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxuriously Finished 4 Edroom Semi Detached Duplex With Bq And Other Luxury Facilities,Chevron Estate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Super Spacious 4 Bedroom Semi Detached Duplex With Swimming Pool In Lekki Phase 1,Y Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,osapa London",Osapa London Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Swoosh Super Spacious 4 Bedroom Fully Detached Duplex,Y Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex In A Gated Estate At Ikate,7 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smoothly Built 4 Bedroom Fully Detached Duplex,Y Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Astonishing 5 Bedroom Fully Detached Duplex,Y Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,T Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq,6 Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex In Ikate, Lekki",H Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Asterleeds, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Irving Park Estate, Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Imperial Court, Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ekki Pearl Garden, Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Quality 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built Fully Automated 5 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Luxury 4 Bedroom Semi Detached Suplex With Bq, Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Gorgeous 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Super Spacious 4 Bed Semi Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Mansion, Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,4 beds,0 baths,0 Toilets +Stunning Super Luxury 5 Bedroom Fully Detached Duplex With Swimming Pool, Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Built And Spaced 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Budget Friendly Beautifully Finished 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Executive 5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"200,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +Land,Idado Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedrroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached & Semi Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,0 baths,0 Toilets +26 Rooms Hotel At Adebayo Doherty Off Admiralty Way Lekki.,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Commercial Property Directly Along Admiralty Way Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"Hotel For Sale Location: Before Chevron Round About, Lekki, Close To The Expressway, Lagos.",Chevron Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Office Complex On 5 Floors With 2 Bay Warehouse On 14000sqm Land At Agungi Along Lekki Epe Expressway,Agungi Lekki Lagos,₦,"4,600,000,000",0,0,0, beds, baths, Toilets +"4310sqm Land In An Old Residential Mini Estate Comprising Of 2 Blocks Of 4 Units Of 4 Bedroom Duplex Plus Servant Quarters, A Block Of 5 Units Of 4 Bedroom Terrace Duplex Plus Servant Quarters",E Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom House With Rooftop Patio, Garden, Swimming Pool",Pinnock Beach Estate Jakande Lekki Lagos,$,"1,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached, Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,0 baths,0 Toilets +5 Units Of 3 Bedroom Flat,Prime Water View Estate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Modern & Luxurious 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"445,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced Corner Piece Decently Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"84,000,000",0,0,0,4 beds,0 baths,0 Toilets +*9 Units Of Newly Build 3 Bedrooms Flat* Location: *lekki Phase One*,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +4500sqm Of Land For Commercial Use,Monastery Road Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Semi Detached House With Swimming Pool, Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +"*land Measuring 7,221 Square Metres Along The Lekki Expressway Beside Russell School, Ikota, Lekki.*",Ikota Lekki Lagos,₦,"890,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace,Ikota Lekki Lagos,₦,"37,000,000",0,0,0,3 beds, baths, Toilets +"4000 Sqm Dry Land Location: Mayfair Gardens, Awoyaya Title: H.f.p Deed Of Assignment",Mayfair Gardens Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Fully Detached 5bedroom Location: Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds, baths, Toilets +800sqm Land,Seagate Estate Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqms Water Front Land At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +11.6 Hectares Of Land,Lekki Free Trade Zone Lekki Lagos,$,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +10 Units Of 5 Bedrooms Detached Duplex Plus A Room Bq, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Detached Home,E Osapa London Lekki Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets +11 Units 2 Bedroom Deluxe Apartment,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Large Bedroom Duplex,Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With Bq And Fitted Kitchen And Swimming Pool And Elevator And Penthouse,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +Brand New 12 Units Of Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +26 Rooms Hotel At Adebayo Doherty Off Admiralty Way Lekki.,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +2 Hectres Of Fenced Bare Land 30 Plots Directly Facing Freedom Way Lekki,Lekki Phase 1 Lekki Lagos,₦,"220,000/sqm",0,0,0, beds, baths, Toilets +Commercial Detached House With A Bq On 600sqm, Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Unit Of 4 Bedroom Semi Detached Duplex + A Room Bq,Victory Park Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +"32 Room Hotel Built On 2,700 Square Metre Land", Ologolo Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,0 baths,0 Toilets +5 Bedroom Contemporary Fully Detached Smart Duplex With Bq Hampton Bay Estate,Spar Road By Nicon Town Estate Lekki Ikate Lekki Lagos,₦,"340,000,000",0,0,0,5 beds, baths, Toilets +"5 Bedroom Detached Duplex For Sale In Pinnock Estate, Lekki, Lagos",Pinnock Estate Jakande Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 975.65m2,S Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Bedroom Duplex On 1350sqm Land, Lekki Phase 1 Lekki Lagos,₦,"630,000,000",0,0,0,10 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With Bq And Fitted Kitchen And Swimming Pool And Elevator And Penthouse,Pinnock Estate Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +"For Sales Land Measuring 1700sqm Corner Piece Location:silver Spring Estate, Obamusa Agungi",Agungi Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Commercial Property Along Admiralty Lekki Phase 1 On 800sqm,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Fully Automated Smart 5 Bedroom Fully Detached Regular + Penthouse @ Corner Pieace* ,Chevron Lekki Lagos,₦,"138,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land 900m2,Ikota Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,100sqm Corner Piece Land. Good For Residential And Commercial Use",E Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonnette Plus Bq,Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,3 beds, baths, Toilets +Fully Automated 5 Bedroom Fully Detached Duplex With Swiminmg Pool,Oral Estate Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Strategically Located 2 Wings Of 5 Bedroom Semi – Detached Houses Directly Opposite Vgc Entrance With A Set – Back Of Over 1,500sqm",Vgc Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +10 Hectares Of Water Front Land At Ilasan Ikate Lekki Title: Governors Consent,Ilasan Ikate Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +2000sqm Bare Waterfront Land, Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Jakande Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With 2 Rooms Bq 950sqm Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Duplexland Size Sitting On About 550sqm, 600sqm And 700sqm Respectively",In A Fully Serviced Estate Near Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House,Vgc Lekki Lagos,₦,"139,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Semi Detached House With Bq,Ikate Lekki Lagos,₦,"98,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached House Plus Boys Quarters,Ikota Lekki Lagos,₦,"132,000,000",0,0,0,5 beds, baths, Toilets +Five Bedroom Fully Detached Duplex Location: Bera Estate Chevron Drive Title: C Of O,Chevron Lekki Lagos,₦,"158,000,000",0,0,0,5 beds, baths, Toilets +Fully Furnished 4 Bedroom Detached Home,E Osapa London Lekki Lagos,₦,"498,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,E Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets +100 Plots @ Vgc (commercial) C Of O,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0, beds, baths, Toilets +"20,000sqm At Chevron, Facing The Expressway At Lekki.",Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,500,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Northern Foreshore Estate Chevron Lekki Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,150sqm Property In Vgc Developed With 9 Nos 4 Bedroom Terrace Duplex Buildings In 3 Blocks Each",D Vgc Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 12 Units Of Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Five(5)bedroom Fully Detached Duplex,Lekki County Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Hotel,Admiralty Way Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Beautiful Serviced Estate With Swimming Pool And Gym, Fully Finished Apartment With Fitted Kitchen At Meadow Hall Ikate.",Meadow Hall Ikate Ikate Lekki Lagos,₦,"57,500,000",0,0,0, beds, baths, Toilets +"5,600m2 Bare Land At Ikate Lekki",Ikate Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Modern Facility Of 2 Wing Of Open Plan Retail Space On 5floors,Ologolo Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five (5) Star Hotel 13th Floors Constructed With High Quality Building Materials,Lekki Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,700sqm Setback Of 2,300sqm Facing Lekki Epe Expressway",Ikate Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Shop Spaces Available For Sale In The New Admiralty Mall Along Admiralty Road Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets +Newly Built 14 Units 3 Bedroom Estate Near,Lekki Lagos,₦,"400,000,000",0,0,0,3 beds,0 baths,0 Toilets +"A Massive And Well Maintained 8bedroom Detached House With 3massive Living Room, 2units Mini Flat Bq",Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +Brand New 4bedroom Fully Detached Duplex With 1bq,Lakeview Park Lekki Lekki Lagos,₦,"149,500,000",0,0,0,4 beds,0 baths,0 Toilets +3units Of 4bedrooms Semi Detached House + Bq @ Agung,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths, Toilets +10 Bedroom Fully Detached House On 840sqm Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,0 baths,0 Toilets +97.200sqm Dry Land,Lekki Lagos,₦,"525,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Unit Of 4 Bedroom Semi Detached Duplex + A Room Bq,Victory Park Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Room Bq.,Royal Garden Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +8 Hectares (120 Plots),Lekki Phase 1 Lekki Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +A Newly Built 4 Bedroom Semi Detached Duplex (carcass) With A Room Boys Quarter.,By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"11,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Mansion,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex (carcass) With A Room Boys Quarter.,By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Penthouse With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,3 beds, baths, Toilets +Fully Detached 5bedroom Location: Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq On 750sqm With 2room Bq,A Osapa London Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment ,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets +"14,000 Square Meters (3.5 Acres) Bareland Within A Gated And Fenced Expanse Located Within Sugarland Estate, Before Victoria Garden City (vgc)",Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0, beds, baths, Toilets +7 Bedrooms Fully Detached Smart Duplex,Nicon Town Estate Lekki Lagos,₦,"580,000,000",0,0,0,7 beds,0 baths,0 Toilets +30 Plots Of Land,S Chevron Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury And Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq, All Rooms En Suite, Fitted Kitchen, Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"198,500,000",0,0,0,4 beds, baths, Toilets +2 Blocks Of 4 Units Of 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"128,000,000",0,0,0,5 beds, baths, Toilets +2 Units 4 Bedroom Fully Detached Duplex With Bq,Vgc Lekki Lagos,₦,"169,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Detached House With 2 Rooms Bq Each, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +"10 Bedroom In The Main Building , 3nos Of Mini Flats , 4 Bedroom Guest Chartlet On The Gym , All External Doors Are Bullet Proofs Base 8 , Foundation And Piling Done By Julius Berger",Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,10 beds, baths, Toilets +"14,000 Square Meters (3.5 Acres)",Sugarland Estate Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +600square Meter Land, Jakande Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Two Units Of 3 Bedroom Apartments + Attached Bq.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +"For Sales Land Measuring 1700sqm Corner Piece Location:silver Spring Estate, Obamusa Agungi",Agungi Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,Orchid Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Luxury Fully Detached Duplex With Swimming Pool And Bq,Ikota Lekki Lagos,₦,"164,000,000",0,0,0,5 beds, baths, Toilets +10 Units Of 5 Bedroom Detached Duplex Plus A Room Bq, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +3600 Sqm With 800sqm Setback From The High Way Between 2nd Roundabout And 1st Roundabout On Providence,Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Hotel,Admiralty Way Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,500+ Square Metres, Sandfilled And Fenced Land Registered Deed Of Assignment",Ikate Lekki Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +"A Fully Serviced 4 Bedroom Townhouses Located At Ikate, Lekki",Ikate Lekki Lagos,₦,"89,000,000",0,0,0,4 beds, baths, Toilets +"Prime Developable Plot Next To Shoprite Jakande Mall* Plot Measuring 17,500sqms With Lasg Cofo",Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Brand New Fully 4 Bedroom Detached With Bq,S Ikota Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,0 baths,0 Toilets +50 Units Of 4 Bedroom Semi Detached Houses, Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Carlton Gate Estate Lekki Lagos,₦,"345,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,600m2 Bare Land At Ikate Lekki",Ikate Lekki Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +7 Units Of Waterfront Luxury Apartments Comprising 3 Bedrooms Each, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +11 Hectares Of Land, Nicon Town Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +An Office Complex On 5 Floors And With 2 Bay Warehouse On 14000sqm Landsize,Z Agungi Lekki Lagos,₦,"4,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Cowrie Creek Estate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,4 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Duplex With Penthouse With Gym, Swimming Pool 5 Carpark",Pinnock Beach Estate Osapa Chevron Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets +"Lagoons View Fenced And Gated Property Sitting On 1,145sqmt Land With Governors Consent Directly Along The Ever Busy Admiralty Road, Lekki. (very Close To Daytona).",Lekki Phase 1 Lekki Lagos,₦,"350,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"73,000,000",0,0,0,5 beds, baths, Toilets +Water View 3000sqm Bare Land, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property Directly Along Admiralty Way Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq And Fitted Kitchen And Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds, baths, Toilets +55 Room Hotel On 1300sqm Before Chevron Roundabout Lekki,Chevron Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Periwinkle Estate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets +96 Units Of Luxury Homes Divided Into 46 Units Of 4 Bedroom Terrace +bq And 40 Units Of 4 Bedroom Semi Detached + Bq,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets +3000sqm With Pile Foundation At Adebayo Doherty With Approval,Lekki Lagos,$,"3,300,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Apartment With A Bq In A Mini Estate,H Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Penthouse Hotel Apartments,Ikate Lekki Lagos,₦,"73,000,000",0,0,0,3 beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Private Cinema At Lekki 1 Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Brand New Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +"Stand Alone Houses (2 In Number) 5 Bedroom Duplex (bq Inclusive) Fully Fitted Kitchen, Cinema, Home Automation, Surround System, Cctv, Automated Gate, Pool",Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,5 beds, baths, Toilets +4bedroom Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Mansion With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"495,500,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets +Various Sizes Of Serviced Plots Of Land,Ikate Jakande Lekki Lagos,₦,"99,500,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land Measuring 772.66sqm,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment ,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds, baths, Toilets +Fully Furnished 3 Bedrooms Terrace Duplex,Conservation Road Chevron Lekki Lagos,₦,"50,000,000",1,0,1,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Primewater Gardens Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"124,000,000",0,1,0,5 beds, baths, Toilets +2 Bedroom Maisonnette At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets +Prime Water Front Measuring 3500sqm In Block 2 Vgc,Vgc Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Luxury Fully Detached Duplex With Swimming Pool And A Bq,Megamound Estate Ikota Lekki Lagos,₦,"169,500,000",0,0,0,5 beds,0 baths,0 Toilets +"14,000 Sqm (3.5 Acres) Located Within Sugarland Estate",Z Vgc Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Maisonettes,"Ambiance Heights, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,0,2 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Láfíàjí, Opposite Cooplag Estate Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Fully Furnished 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,1,4 beds,0 baths,0 Toilets +5 Bedroom Detached Home For Sale!!!,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Gazette,Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +Exquisitely Built Service 4bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Maisonette In A Beautifully Layout, Gated Estate","Jakande , Lekki Lagos. Jakande Lekki Lagos",₦,"100,000,000",0,1,0,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House In A Serene Neighborhood,"Ikate, Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Partially Furnished 5 Bedrooms Semi Detached Duplex With Bq,"Orchid Road, Geral Estate, Opposite Ordchid Hotel, Ajah, Lagos Oral Estate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets +A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Orchid Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Lekki Phase 2 Lekki Lagos,₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets +Already In Completion 4 Bedroom Fully Detached Duplex + Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Already In Completion 4 Bedroom Fully Detached Duplex + Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Block Of Flats On 3 Floors With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",1,1,1,3 beds,4 baths,5 Toilets +3 Bedrooms Terraces,Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terraces,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedrooms Apartment,2nd Lekki Toll Gate Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Swimming Pool Plus A Room Bq,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious Fully Finished 4 Bedroom Fully Detached Duplex Plus One Bq With Swimming Pool, Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Bedroom Fully Detched Duplex,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With 1 Room Bq,Lekki County Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bed Fully Detached Mansion,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Swimming Pool,Lekki County Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished Luxury 4 Bed Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2 Bedroom Flat In An Estate,"Ologolo Road, In A Gated Street Well Secured Ologolo Lekki Lagos",₦,"36,500,000",0,0,0,2 beds,2 baths,3 Toilets +2 Plots Of Land For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely Units Of 1 And 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,1 beds,2 baths,2 Toilets +Amazingly Beautiful And Well Built 5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraces At Igho Efon,Igbo Efon Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Beautiful ??4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lagos Business School Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Terrace House,Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"66,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With A Bq,Ikota Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chisco Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms With Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"79,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedrooms Terrace With One Bq,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Lovely Units Of Apartments (1,2 And 3 Bedroom)",Ilasan Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,Jakande Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Massive Five Bedrooms Fully Detached Duplex With Swimming Pool And Bq,Lekki County Homes Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedrooms Duplex Semi Detached,"Lakeview Estate, Orchid Road Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegantly Finished 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"56,000,099",1,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Contemporary Fully Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Mini Flat Bq,Lekki County Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive Waterview 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Lovely 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Fully Detatched 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Royal Standard 5 Bed Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,4 Toilets +Fully Serviced Corner Piece Decently Built 4 Bed Terrace Duplex In Ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Z Ikate Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedrooms Terrace Duplex,2nd Second Toll Gate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq. Only 4units Left.,Tartiana Court. 4units Left Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Pay 30% Deposit And Get Instant Allocation And Start Building,"Few Minutes From The Shoprite, Well Secured And Fully Interlocked Road Lekki Phase 2 Lekki Lagos",₦,"35,000/sqm",0,0,0, beds, baths, Toilets +Stunning Super Luxury 5 Bed Fully Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Romay Gardens Estate, By Salem Busstop Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex,Investor’s Delight Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxury 4 Bedroom Terrace Duplex + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedrooms & 3bedrooms Apartments,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Styles 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury One Bedroom Terrace,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,2 Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Terrace Duplex With 1 Bedroom Studio Apartment,"By Abraham Adesanya, Lekki Ajah. Before Lagos Business School Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,5 Toilets +Newly Built 3bedroom Terrace Duplex,Around Abraham Adesanya Lekki Lagos,₦,"41,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +One Bedroom Flat,Yellow Residences Lekki Phase 1 Lekki Lagos,₦,"53,000,000",1,1,0,1 beds,1 baths,2 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex,By Harris Drive.... Fully Interlocked Road From Lekki Expressway Vgc Lekki Lagos,₦,"34,000,000",0,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Terraced Duplex,Orchid Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Contemporary Styled 4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Beautiful Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Affordable Spacious 4 Bed Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment,Agungi Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"126,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Duplex With Bq,Lekki County Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex All Rooms En Suite.,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Terrace + Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Two Units Of 3 Bedroom Duplex (off Plan),Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Automated Duplex With Smart Home Device.,Lekki County Homes Ikota Lekki Lagos,₦,"76,000,000",0,1,0, beds, baths, Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Gorgeous 5 Bed Contemporary Duplex,Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful And Well Built 5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"108,000,000",0,0,0,4 beds,4 baths,5 Toilets +Leon Terrace & Semi0detached Homes,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Studio Apartment,Behind Romey Gardens Opposite Nicon Town Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 5 Bed Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex.,Lekki County Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Unit Of Tastefully Finished Brand New Four (4) Bedroom Semi Detached,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekky County Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Luxury Maisonette Homes + Bq Still Selling At Camberwall Advantage, Ikate","Camberwall Advantage Phase 2, Ikate Lekki Lagos",₦,"95,000,000",1,0,0,4 beds,5 baths,5 Toilets +Luxury 2 Bedroom Terrace,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"197,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached And 4bedrooms Fully Detached Duplexes,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Z Chevron Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 1 Bedroom Apartment,Ologolo Lekki Lagos,₦,"24,000,000",0,1,0,1 beds,1 baths,1 Toilets +Luxury 4 Bedroom Switchless Smart Home + Bq,Lafiaji Off 2nd Toll Lekki Chevron Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex Off Plan,Jakande Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms With Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Luxury 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lagos Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq.,"Homes, Off Orchid, Ikota. Ikota Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detatched 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedrooms Studio Apartment,Lekki Lagos,₦,"27,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Spacious Semi Detached Duplex With Bq,Jakande Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Luxury Flat,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat In A Fully Serviced Estate With 24 Hours Power Supply,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Mini Flat, Room & Parlor",Salem Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"81,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Mansion,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 3 Bedroom Bungalow With Bq,Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With 1 Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq In An Estate,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 And 4 Bed Terrace Duplex,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful 5 Bed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With A Bq,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex In An Estate Distress Offer,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terraced Duplex,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedrooms & 3bedrooms Apartments,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 5 Bed Fully Detached Duplex With Rooftop Terrace,Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex With A Bq,Chevron Lekki Lagos,₦,"47,500,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Lekki Lagos,₦,"150,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Mini Flat Room & Parlor,Jakande Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"81,000,000",0,1,0,4 beds,4 baths,5 Toilets +?? *beautiful Luxury 4 Bedroom Fully Detached Duplex *??. *price:* N120m *location:* 2nd Toll Gate Lagos. *title:* Governor's Consent,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,4 Toilets +Magnificent Super Spacious 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Most Affordable 4 Bedroom Fully Detached Duplex With Bq,"Abraham Adesanya. Before Lagos Business School . By Atican Beach Miami, Beach And Baracuda Beach Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Sangotedo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +New 3 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,"Lekki Scheme 2 Estate,ogombo Before Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious Fully Furnished 5 Bedroom Duplex With 2 Rooms Bq For Sale In Lekki Phase 1,"Kayode Otitoju Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,1,5 beds,6 baths,6 Toilets +Well Built Contemporary 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Premium Furnished 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex Ensuite,Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets +Affordable Luxury 4 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With A Bq,"Off Kusenla Road,in An Estate, Ikate Lekki Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Joint Venture,Ikate Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Fully Automated 4 Bedroom Terrace Duplex With Smart Home Device,"Pantheon Smart Home, Lekki County Home, Ikota Lekki Lagos",₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Fully Detached Duplex With Bq,2nd Tollgate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 2 Bedrooms Penthouse,Ocean Bay Estate Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Automated Unconventional 5 Bed Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Glorious Spacious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"20,100,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Bq Highly Secured,"Off Shoprite Road, Osapa Lekki Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 6 Bedroom Detached House, Ikate Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,5 baths,6 Toilets +New 5 Bedroom Terrace Duplex,Lagos Business School Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedrooms Fully Detached Duplex With Bq,2nd Lekki Toll Gate Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Magnificent Super Spacious 5 Bedroom Fully Detached Contemporary Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,4 baths,4 Toilets +Affordable Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Mansion With A Penthouse,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bed Semi Detached Duplex With A Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Bq, Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In An Estate,Chevron Lekki Lagos,₦,"121,000,000",1,1,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Semi Detached Duplex With Bq,Lagos Business School Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Caroline Atounah Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat En Suite,Jakande Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury Smart 4 Bedroom Terrace Duplex With 1 Room Bq,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Terrace Duplex With Bq And Swimming Pool In The Heart Of Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,4 baths,4 Toilets +7 Bedrom Fully Detached Mansion,Nicon Town Lekki Lagos,₦,"600,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +Clean 5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Bungalow,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom,Ologolo Lekki Lagos,₦,"30,000,000",0,1,1,2 beds,2 baths,2 Toilets +5 Bedrooms Detached Duplex With Bq,Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Family Home Fully Detached Plus Bq/ Swimming Pool,Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment,Lekki Lagos,₦,"13,647,500",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Design Smart 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekky County Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Switchless Smart Home + Bq,Lafiaji Off 2nd Toll Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,6 Toilets +Distress Sale!! 5 Bedroom Semi Detached Lekki Right,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex And 1 Bq,Lekky County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex With 2 Room Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Salem Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Decently Finished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Units Of 1 And 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fully Detatched 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex,"Chevron Toll Gate, Lekki Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"325,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex With 1 Room Bq Each,Bayview Estate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets +4 Bedroom Terraced Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Duplex,Megamound Estate Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"81,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex +bq,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Affordable 2 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,2 Toilets +Land,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Bq,Off Romey Garden Estate Ilasan Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious State Of The Art 4 Bed Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Tastefully Built, Spacious And Pop Finished 4 Bedroom Duplex",Oribanwa Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A 2 Bedroom Bq,Vgc Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Top Quality Finished 4 Bedroom Luxury Terrace + B.q,Bisola Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex Off Plan,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fastest Developing Estate Along Lekki Expressway With C Of O,Directly Opposite The Expressway. Surrounded By Great Developments Lekki Phase 2 Lekki Lagos,₦,"7,700,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Exquisitely Finished 5 Bedroom Fully Detached Duplex Swimming Pool* Price:* N135m *location:* 2nd Toll Gate, Lekki, Lagos. *title:* Governor's Consent",Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With/ Without Swimming Pool And A Room Bq,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,4 baths,4 Toilets +Beautiful Luxury 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite Lovely Architecture At Pantheon Smart Homes,Pantheon Smart Homes Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Houses,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegantly Finished 5 Bedroom Fully Detached Duplex With Swimming Pool,"Lekky County, Lekki Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"76,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment,"Amore Street, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000/month",0,1,1,2 beds,2 baths,3 Toilets +Newly Built Studio Apartment,Amore Street Off Freedom Way By Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,1 beds, baths, Toilets +4 Bedroom Semi Detached Carcass With A Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Duplex And Apartment,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Mansionatte With Boys Quarter For Sale At Ikate,Bloom Haven Residences With Governor's Consent At Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Penthouse For Sale At Ikate,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000/month",0,0,0, beds, baths, Toilets +3 Bedroom Penthouse With Boys Quarterfor Sale At Ikate,Bloom Haven Estate Ikate Lekki Lagos,₦,"75,000,000/month",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Victory Star Court 2 Ikota Gra Screen Environment Ikota Lekki Lagos,₦,"50,000,000/month",0,1,0,4 beds,4 baths,4 Toilets +"1 Bedroom Mansionatte For Sale At Ikate,lekki","Bloom Garden Residences With Governor's Consent Ikate,lekki Ikate Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Mansionatte,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Studio Apartment For Sale At Ikate Lekki,"Bloom Haven Residences With Governor's Consent Ikate,lekki Ikate Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Mansionatte With Boys Quarter For Sale At Ikate Lekji,Bloom Haven Residences With Governor's Consent Ikate Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Bosmak Haven Estate Harries Drive By(shapata) Vgc Off Vgc Lekki Lagos,₦,"54,000,000/month",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Vella Home Off Chevron Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000/month",1,1,1,0 beds,0 baths,0 Toilets +2 Bedroom Penthouse For Sale At Ikate,"Bloom Haven Residence With Governor's Consent Ikate, Lekki Ikate Lekki Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets +Brand New 4bed Semi Detached Duplex,Off Freedom Way Lekki Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,0 Toilets +Premium Solar Powered Lifestyle 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +800sqm Bare Land,Cowrie Creek Estate Ikate Lekki Ikate Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevyview Estate In Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex In A Serene And Gated Estate,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +900sqm Of Bareland,Rock Drive Street Off Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Smart Terraces,Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",1,1,0,2 beds,0 baths,0 Toilets +Two Bedrooms Maisonette Off Plan,Ikate Lekki Lagos,₦,"44,000,000",1,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"Ologolo, Lekki Ologolo Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5bed Fully Detached Duplex,Osapa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex,Off Nicon Town Road Lekki Jakande Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +1000sqm Cornerpiece In Nicon Town,Zone B Nicon Town Estate Lekki Nicon Town Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +1180sqm Of Water Front Land,Vgc Estate Vgc Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Attached 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,010,000",0,0,1,9 beds,10 baths,10 Toilets +5 Bedroom Semi Detached Duplex,Off Babatunde Anjose Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In An Exquisite Solar Powered Estate, Ologolo Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,0 baths,0 Toilets +1200sqm Cornerpiece Land,Zone A In Nicon Town Estate Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +480sqm Land With A 5 Bedroom Fully Detached Duplex On It,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Awesome 1 Bedroom Flat,Lekki County Megamound Estate Ikota Lekki Lagos,₦,"16,000,000",0,1,0,0 beds,0 baths,0 Toilets +750sqm Of Land,Periwinkle Lifestyle Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flats With Modern Facilities,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4bedroom Duplex With A Bq On Orchid Road,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +1022sqm Bare Land,A Series In Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"345,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Off Kunsela Road Ikate Lekki Ikate Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bed Contemporary Fully Detatched Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Orchid Road Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets +Mini Flat,Orchid Road Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,1 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Furnished 5 Bedroom Duplex With 2 Rooms Bq (price Is Negotiable),Nicon Town Lekki Lagos,₦,"385,000,000",1,0,1,5 beds,5 baths,8 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Sabini Villa, Ajah. Lekki Phase 1 Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets +A Beautifully Built 4 Units Of 6bedroom Terrace Duplex Three Left With 2 Lounge Plus A Room Bq.,"Lekki, Adjacent To Updc Estate Lekki Lagos",₦,"295,000,000",0,1,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lekki Land,Fola Osibo Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Land,Twin Lake Lekki Lagos,₦,"168,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Omorinre Johnson Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fatai Arobieke Road Lekki Phase 1 Lekki Lagos,₦,"330,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Vacant Corner Piece Of Two Wings 4 & 5 Bedroom Semi Detached House,"Sybil Iroche Street Off Durosimi Etti Road, Lekk Phase 1. Lekki Lagos",₦,"450,000,000",0,1,0,5 beds,0 baths,0 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Phase 2 Chevron Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Bedrooms Apartment,Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Home,Lagos Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,0 Toilets +3 Bedroom Apartment And 1 Room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Fully Detached Duplex With A Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex With A Bq,Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets +30 Plots Of Land Facing The Expres,Vgc Round About Ikota Ikota Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Plot Of Land,Nicon Town Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautiful 5 Bedroom Water Front Property,Northern Foreshore Estate Chevron Chevron Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 4 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Vgc Lekki Vgc Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 5 Bedroom Semidetached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 5 Bedroom Semidetached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Secured And 100% Land Verified Corner Piece Require No Sand Filling,Ajah Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Van Daniel Estate Orchid Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Units Of 5bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lurury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,"2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Off Chevron Tollgate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ruby Apartments,Ologolo Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Luxurious And Contemporary 4 Bedroom Detached Duplex In A Serene And Secured Estate,Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Four Bedroom Terrace,Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terraced + Bq,Bloom Haven Residences By Christ Embassy Chisco Ikate Ikate Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,6 baths,5 Toilets +5 Bedrooms Detached Duplex With Bq,"Alfa Beach Road, Silicon Estate Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Duplex,Swisstrade Drive Vgc Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,4 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,"Eliganza Road, Spring View Garden Lekki Lagos",₦,"70,000,000",0,0,0, beds,4 baths,5 Toilets +Tastefully Finished 3bedroom Apartment,Orchid Road By Lekki Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,4 baths,4 Toilets +3 Bedrooms Flat,"Lekki County, Megamond Estate Ikota Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,"Eliganza Road, Spring View Garden Ikota Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Prime Water Gardens Ikate Lekki Lagos,₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lagoon Front Estate Lands,Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex In A Favorable Environment,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex With Bq And Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +A Detailed Newly Built Four Bedroom Terrace At Orchid Road Lekki,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Three Bedroom Terrace At Orchid Road,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Terrace Duplex With Pool & Gym For Sale,Ikota Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"72,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bed Luxury Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Terrace Duplex,Idado Idado Lekki Lagos,₦,"68,000,000/sqm",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Grand Luxury 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +"2 Bedroom Apartment In The Pearl Residences, Abijo Lekki",Abijo Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets +3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedroom Semi Detached Duplex + Bq At Chevron Lekki,Off Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Finished 3 Bedroom Penthouse With Bq And Cinema,"Lekki Pearl Garden Abijo, Behind Oando Fuel Station Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +Plots Of Land In Irving Park Estate Awoyaya,"Oribanwa B/stop, Awoyaya. 2mins From Mayfair Garden Lekki Lagos",₦,"13,000,000",0,0,0, beds, baths, Toilets +Ruby Apartments 2 Bedroom Duplex,Ologolo Ologolo Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex Ensuite With A Bq Close To Vgc,Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Genuine Dry Lands In Palmsprings Estate Bogije,"Bolorunpelu, Bogije Lekki Lagos",₦,"8,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautiful Beach Front Land Elegushi Ikate Lekki,Eleguishi Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Alternative Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Detailed Luxury 4 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Ensuite Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Lekki Palm City Addo Road Ikate Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable 4bedroom Semi Detached Duplex,Z Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Nice 4 Bed Ensuite Serviced Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Terrace At Orchid Road, Lekki",Orchid Road Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets +4bed Room Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land Measuring 2000sqm,Close To Freedomway Ikate Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq In A Secured Gated Close,Noble Close Off White Sand By Elf Bus Stop Lekki Rhs Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq.,Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"500sqm Land In Lekki Pearl Garden, Abijo Lekki","Lekki Pearl Garden, Abijo Lekki Lagos",₦,"18,000,000",0,0,0, beds, baths, Toilets +The Alverton Estates,Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Buy A Studio Apartment At Ocean Palms Estate , Ikate, Lekki",Ocean Palms Estate Ikate Lekki Lagos,₦,"31,800,000",0,0,0, beds, baths, Toilets +3 Bedroom With Bq Penthouse,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Fantastic Ilasan Joint Venture Land, Behind Elevation Church, Ikate, Lekki","Behind Elevation Church, Ikate, Lekki Ikate Lekki Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets +New Built 3 Bedroom Plus Bq Penthouse Apartments,"Camberwall Advantage 1, Ikate Lekki Lagos",₦,"75,000,000",1,1,1,3 beds,4 baths,3 Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,3 Toilets +Camberwell Advantage 2 Homes,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +9720sqm Land,Vgc Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Homes With Spacious Parking Lot In Chevron,2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Studio Apartment At Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki",Ikate Lekki Lagos,₦,"31,800,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Z Ikota Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Ikota Villa Estate, Mega Chicken Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Buy 4 Bedroom Terrace With Bq At Ocean Palms Estate , Ikate, Lekki",Ocean Palms Estate Ikate Lekki Lagos,₦,"84,800,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq.,Chevron Lekki Lagos,₦,"92,000,000",1,1,0,4 beds,4 baths,5 Toilets +Full Premium Plot At Eastland Golf Estate,Abijo Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Available Land,19 Remi Olowude Street Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartments With Bq At The Pearl Residences,"Abijo, Behind Oando Fuel Station Off Lekki Epe Expressway Lekki Lagos",₦,"15,000,000",0,1,1,2 beds,2 baths,3 Toilets +4bedroom Terrace Duplex,Lekki County Home Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Exclusive Fully 4 Bedroom Detached Duplex +bq For Sale,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Fully Detached Duplex, An Exquisite 2 Bedroom Apartment, And Bq",Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bed En Suite Detached Duplex,X Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Terrace Duplex,Bloom Heaven Residences Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Maid's Room/bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Camberwall Court Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Luxury Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +"4 Bedroom Semi Detached Duplex Pantheon Smart Homes, Chevron Lekki",Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +50 Rooms Hotel,Ibeju Lekki Street Agungi Lekki Lagos,₦,"1,000,000,000",0,0,1,10 beds,10 baths,10 Toilets +5bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"120,000,009",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Finished Semi Detached Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",1,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Chevron Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +Available Land,Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land At Highbridge Lagoonview Extension Inside Mayfair Garden Lekki Epe Express,"Eputu Lagasa Road, Lagasa Town Lekki Lagos",₦,"6,800,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Apartment,Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land For Commercial Property For Sale At Lekki Phase 1,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +500sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Sangotedo Lekki Lagos,₦,"17,500,000",0,0,0, beds, baths, Toilets +Available Land,Ikate Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +Genuine Ocean View Lands At Vopnu City,"Mosere Ikoga, Lekki Lagos",₦,"4,250,000",0,0,0, beds, baths, Toilets +Land,Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Built 3 Bedroom Terrace Duplex With 1 Room Bq,Orchid Road Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ilasan Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex At Ikota,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq At Ikota Villa,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached Duplex With Bq At Royal Pine Estate, Orchid Road, Lekki Lagos","Royal Pine Estate, Orchid Road Lekki Lagos",₦,"67,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Vacant 3 Bedrooms Flat + Room Bq,Estate Agungi Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace House At Orchid Road Lekki Lagos,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex With 2 Bq,Lekki County Estate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Genuine 450sqm Commercial Lands In The Wealthy Place Lekki,Lekki Free Trade Zone Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Terrace With Bq,"Fairmont Garden, Lekki Scheme 2 Axis Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedrooms Semi Detached House With Boys Quarter And Gate House In It's Own Compound,Via Admiralty Way Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment, Lekki Lagos,₦,"13,000,000",0,0,0,1 beds,0 baths,0 Toilets +Plots Of Land In Gracias Goshenite Ogombo,"Fairmont Garden, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Orchid Drive Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +Affordable Lands In Medorf Luxury Estate Epe,"Epe T Junction, Lekki Epe Exp.way Lekki Lagos",₦,"1,600,000",0,0,0, beds, baths, Toilets +Top Notch Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Detailed 4 Bedroom Maisonette With Bq,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,1 baths,1 Toilets +5 Bed Contemporary Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Plus Bq Maisonette In Camberwall Advantage 2, Ikate",Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,5 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Oral Estate Extension Oral Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Luxury And Tastefully Finished 5 Bedroom Fully Detached Duplex(front House) With A Room Bq,massive Sitting Room, Fitted Kitchen, Large Parking Space",Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Idado Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Super 4 Bedroom Ensuite Semi Detached Duplex In An Estate At Ikota,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Camberwall Advantage Ikate Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Nicely Built 4 Bedroom Ensuite Detached Duplex In An Estate At Ikota Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq With 12 Payment Plan In Imperial Court Abijo,Abijo Gra Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedrooms Flat,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"39,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Terrace With Bq,"Opposite Corona School, Abijo Lekki Lekki Lagos",₦,"27,000,000",0,0,0, beds, baths, Toilets +Spacious 4bedroom Semi Detached Duplex With A Room Bq,Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Camberwall Advantage,Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment And Bq,"Oba Elegushi Housing Estate, Lekki Scheme 2 Vgc Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4bedroom Fully Detached, 2 Living Rooms With A Bq",Abraham Adesanya Vgc Lekki Lagos,₦,"60,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +Off Plan 2 Bedroom Apartment,Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +811sqm Land,Agungi Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Available Land,Chevy View Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plots Of Land On Orchid Road,Orchid Road Ikota Lekki Lagos,₦,"52,000,000",1,0,0, beds, baths, Toilets +600sqm Land At Ikota Gra Extension,Ikota Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex At Ikota Lekki,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets +New 5bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached With A Bq,Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Terrace With Bq,Ajiwe B/stop By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse With Swimming Pool,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Serviced Terrace Duplex In An Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace At Lavender Gardens Phase,Sangotedo Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Just Newly Out Verified & Closable Joint Venture [email protected] Chevy Estate, Chevron Drive, Lekki",Chevy Estate Chevron Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Contemporary 5 Bed Ensuite Detached Duplex In An Estate At Lekki,Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimmingpool,D Jakande Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +3bedrooms Terrace Duplex With Pool & Gym For Sale .,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Idado Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxurious 2 Bedrooms Terrace Duplex,Alexandria Court By Pinnock Estate Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +Brand New And Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex With 2 Bq,Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Tastefully Finished Serviced 4 Bedroom Semi Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ruby Estate,Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,3 baths,3 Toilets +4 Bedroom Detached Home,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Off Plan 2 Bedroom Apartment,Camberwall Advantage Estate Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets +Plots Of Dry Land In Palmsprings Estate,Bogije Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Superb 5 Bedroom Ensuite Detached Duplex At Megamound,Megamound Ikota Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bed Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Full Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex With Swimming Pool And Cinema Plus Bq,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Buy And Build Land At Flourish Gardens Estate Abijo Lekki,Abijo Lekki Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,0 baths,0 Toilets +400sqm Corner Piece Plot Of Land In An Estate,Lake View Estate Vgc Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets +3 Bedroom Penthouse (off Plan),Bloom Heaven Ikate Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 1 Bedroom Apartment With Bq,"Ajiwe B/stop By Abraham Adesanya, Lekki Epe Lekki Lagos",₦,"22,000,000",0,1,0,1 beds,1 baths,1 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Maisonette + Bq At Camberwall Advantage Phase 1 & 2 Estate Ikate Lekki, Lagos",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Gra Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terraces With Pool,Nicon Town Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +"5 Bedrooms Fully Detached Duplex With Pool, Cinema & Gym", Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq At Orchid Road.,Chevron Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4bedroom Terrace Duplex Ensuite With A Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Bungalow, All Ensuite On 600sqm Land",Lakowe Golf Course Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New And Tastefully Finished Serviced 4 Bedroom Fully Detached Duplex With Bq,"2nd Toll Gate,lafiaji Chevron Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury And Automated 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +500 Sqm Plot Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Finished Apartment,Fairfield Apartments Abijo Lekki Lekki Lagos,₦,"11,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Bedrooms Terrace,Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Pantheon Smart Homes (4 Bedroom),2nd Tollgate Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New And Tastefully Finished 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment In The Pearl Residences,Abijo Lekki Lagos,₦,"13,000,000",0,0,0,1 beds,1 baths,2 Toilets +Available Land,Vgc Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 6 Bedroom Detached Duplex With Ocean View At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +(28 Units) Newly Built 4 Bedrooms Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Fully Detached With A Bq,Vgc Estate Vgc Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +400sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Amity Estate Sangotedo Lekki Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex With Bq,Abijo Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Jv Land,Ikate Lekki Lagos,₦,"200,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Superb 5 Bedroom Detached Duplex At Megamound,Megamound Lekki County Homes Ikota Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ocean Palms Ii Estate Meadow Hall Way Ikate Lekki Lagos,₦,"47,700,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment,"The Signature Apartment , Abijo Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedroom Apartment,Orchid Lekki Chevron Lekki Lagos,₦,"36,000,000",1,1,0, beds, baths, Toilets +Newly Built 2 And 3 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000/month",0,0,1,2 beds,2 baths,2 Toilets +Newly Built Topnotch 4 Bedroom Serviced Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex At Maven Homes Orchid Road Lekki,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"300sqm Land In Lekki Pearl Garden, Abijo Lekki",Abijo Lekki Lekki Lagos,₦,"11,200,000",0,0,0, beds, baths, Toilets +Serviced 3bedroom With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Luxuriously Finished 4 Bedroom Fully Detached Duplex With Bq, Swimming Pool Etc",Ikota Villa Estate Ikota Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Detailed 2 Bedroom Apartment (off Plan),Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Corner Piece Land,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Beautiful Four Bedroom Semi Detached Duplex With Bq At Chevron Lekki,Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5bedroom Detached Duplex In A Good Serena And Secure Estate,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Z Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Fully Furnished 3 Bedroom Apartment All En Suite Now Available For Purchase.,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Beautiful 3 Bedroom Terrace House,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex,"Lekki Pride Estate, Abraham Adesanya Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +600 Sqm Land,"Opposite Fara Park Estate By Majek Bus Stop, Off Lekki Epe Express Road Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq.,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex + Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Half Plot At Amity Estate, Well Developed Estate, Sangotedo, Lekki",Amity Estate Sangotedo Lekki Lekki Lagos,₦,"10,500,000",0,0,0, beds, baths, Toilets +Super Luxury Four Bedroom Terrace Duplex In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,Z Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,5 baths,5 Toilets +Top Notch 4 Bedroom Detached Duplex In Tartiana Court Ikota,Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex Ensuite With A Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Smart Home,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasteful 4 Bedroom Fully Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished/ Serviced 10 Bedroom Detached House,Lekki Lagos,₦,"40,000,000",0,0,0,10 beds,0 baths,0 Toilets +4 Bedroom Detached Home,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,2 beds,0 baths,0 Toilets +Well Built 5 Bedroom Ensuite Detached Duplex In A Lovely Estate At Ikota Lekki,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Terrace House At Lekki,Orchid Road Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Stunning 3 Bedroom All Rooms En Suite Semi Detached Duplexes With Bq,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With A Room Bq At Orchid Road.,Chevron Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Homes,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,1, beds, baths, Toilets +Beautiful 4 Bedroom Terrace Duplex Ensuite With Big Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Carcass (uncompleted) 3 Bedrooms Terraced Duplexe For Sale,"Paradise Estate Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Terrace Duplex At Osapa London,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Bq And Penthouse,Ikate Lekki Lagos,₦,"72,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Tartiana Court, Ikota Villa, Lekki Ikota Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartments With Bq,"Lekki Pride Ajiwe B/stop, By Abraham Adesanya Lekki Epe Exp.way Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Joint Venture 11.500 Sqm"" (facing The Express Directly) ""at Lekki Lagos",Lekki Chisco Round About Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4beds Semi Detached Duplex With A Bq,"Chevron Toll Gate, Orchid Road Chevron Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Lagos,₦,"55,000,000",1,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Lekki County Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom With Bq (penthouse),Camberwall Advantage Phase 1 Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Detached Duplex,Ajah Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisite Brand New 6 Bedroom Detached House Plus 2room Boys Quarters,Phase One Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +(2units) 4 Bedroom Semi Detached House With 2 Rooms Bq And A Gate House In Its Own Compound,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Victoria Bay 3 Estate, Nike Art Gallery Ikate Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +Available Land,Chisco Roundabout Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedrooms Apartment, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Well Maintained 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1, 2 And 3 Bedroom Apartments With Bq","Ajiwe Bus Stop, By Abraham Adesanya Roundabout Chevron Lekki Lagos",₦,"22,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Newly Built 4bedroom Terrace Duplex In A Serena And Secure Estate,",2tollgate Oral Estate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Detailed 3 Bedroom Apartments With Bq,Ajiwe B/stop Abraham Adesanya Round About Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Pantheon Smart Homes, Chevron Lekki",Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace With Bq At Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki",Ikate Lekki Lagos,₦,"84,800,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With A Bq,Oral Estate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette,Orchid Road Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,"Silicon Valley 2 Extension Estate Off New Road/alpha Beach Road,abolalake Lateef Arikawe Drive Lekki, Just B4 Chevron Traffic Light Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ajah Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,3 Toilets +Plots Of Land At Lekki Phase 1,Periwinkle Estate Garden Lekki Phase 1 Lekki Lagos,₦,"270,000/sqm",0,0,0, beds, baths, Toilets +Land In Premium Eastland Golf Estate Abijo,Abijo Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Detached Duplex,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex Ensuite Close To Vgc,Vgc Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace, Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace With Bq In Lekki Lagos.,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Circle Mall Jakande Lekki Lagos,₦,"73,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxuriously Finished 5 Bedroom Fully Detached Duplex With Bq, Swimming Pool Etc",Ikota Villa Estate Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedrooms & 3 Bedrooms Apartments,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +600sqm Plot For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"26,400,000",0,0,0, beds, baths, Toilets +500sqm Land For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets +500sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Sangotedo Lekki Lagos,₦,"17,500,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq At Angles Court,"Abijo, Off Lekki Epe Expressway Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Duplex At Abijo,Abijo Lekki Lagos,₦,"44,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Abijo Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets +Camberwall Advantage 2 Houses,Ikate Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Ensuite Detached Duplex In A Prestigious Estate,Royal Garden Estate Lekki Lagos,₦,"150,000,000",1,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Apartment Within A Secure Mini Estate At Chevron,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq At Angles Court,"Abijo, Off Lekki Epe Expressway Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace + Bq,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +(2 Units) Uncompleted Building Of Semi Detached Houses With Spacious Parking Space,Lekki Phase 1 Right Hnad Side Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Z Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedrooms Flat,Off Adewunmi Adebimpe Drive Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,2nd Lekki Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Nice 4 Bedroom En Suite Terrace Duplex With 24hrs Power Supply, Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,2 Ikota Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Available Land,Behind Elevation Church Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex (with Payment Plan),"Imperial Court, Abijo Gra Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Maisonette And Apartments,Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Serviced Lands In Meridian Boulevard Estate,"Fairmont Garden, Lekki Scheme 2 Axis Lekki Phase 2 Lekki Lagos",₦,"25,000,000",1,0,0, beds, baths, Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Grand 4 Bedroom Semi Detached Duplex With Bq,"Abijo Gra, Off Lekki Epe Exp.way Lekki Lagos",₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Camberwall Advantage 1 & 2 Apartments,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Finished Apartments,Abijo Lekki Lagos,₦,"21,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bed Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bed Detached Duplex,Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Newly Built 4bedroom Terrace Duplexes At Agungi, Lekki",Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flats All En Suite,Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +2bedroom Terrace Bungalow,Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,3 baths,3 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom With Bq Penthouse At Camberwall Advantage 1,Ikate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Terrace Primrose Court, Orchid Road, Lekki",Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +250sqm Land In Eastland Golf Estate Abijo,Abijo Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +Waterfront Land,Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment At Camberwall Advantage 1,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,H Ikota Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +"5bedroom Fully Detached Duplex With Bq And Pool, Gym",Osapa London Lekki Lagos,₦,"370,000,000",1,1,0,5 beds,5 baths,6 Toilets +Plots Of Dry Land In Palmsprings Estate,Bogije Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +600sqm Plot At Amity Estate In Well Developed Estate Sangotedo Lekki,Amity Estate Sangotedo Lekki Lekki Lagos,₦,"21,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex,Oral Estate Extension Oral Estate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,1, beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Grand 4 Bedroom Terrace Duplex,Z Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Plots Of Land For Sale At Genesis Court Estate, Lekki Lagos,₦,"29,250,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment With A Room Bq In A Fully Serviced Estate.,Enyo Oil Ikate Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +300sqm Plot For Sale In Orchid Road Lekki Inside Winhomes Estate,Orchid Road Lekki Lagos,₦,"13,200,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +Stunning 3 Bedroom Semi Detached Duplexes With Bq,Bogije Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bed Ensuite Detached Duplex At Chevron Lekki,In An Estate At Chevron Drive Chevron Lekki Lagos,₦,"173,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex,Chevron Tollgate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace With Bq,"The Ambiance By Tribitat, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bed Ensuite Detached Duplex In An Estate,Behind Mega Chicken Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bed Ensuite Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Serviced Terraces,Z Chevron Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,0 baths,0 Toilets +400sqm Lands In Gracias Goshenite Ogombo,"Fairmont Garden, Lekki Scheme 2, Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built One Bedroom Terrace At Gloom Haven,Ikate Ikate Lekki Lagos,₦,"35,000,000",0,1,0,1 beds,1 baths,1 Toilets +1 Bedroom Flat,Idado Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +"924.7sqm Land Within Lekki 2, C Of O",Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With Bq,"Bloom Heaven Residences, Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Available Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +"New Built 2 Bedroom Flat Apartment In Camberwall Advantage 1, Ikate",Ikate Lekki Lagos,₦,"42,000,000",1,1,1,2 beds,3 baths,3 Toilets +Pantheon Smart Homes Chevron Lekki,2nd Toll Gate Chevron Lekki Lagos,₦,"76,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Waterfront Bare Land(fenced&gated),"Admiralty Way,lekki Ph 1 Lekki Phase 1 Lekki Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets +(2 Units) 5 Bedrooms Semi Detached House With Bq Parking 40 Cars,Eleganza Garden Opp Vgc Ikota Lekki Lagos Epe Express Way. Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Modernly Built Four Bedroom Terrace Duplex In Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq,Agungi Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedrooms Fully Detached Duplex,Beside Victoria Garden City Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets +Astonishingly Beautiful And Well Built 5 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Budget Friendly Beautifully Finished 3 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Built 4 Bed Fully Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch 4 Bed Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxurious And Contemporary 5 Bedroom Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Luxury 3 Bedroom Flat Lavishly Finished,Chief Bamidele Eletu Osapa London Lekki Lagos,₦,"140,000,000/month",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxurious And Contemporary 5 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxurious 5 Bedroom Semi Detached Duplex In A Serene And Secured Estate,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Luxury And Contemporary 5 Bedroom Detached Duplex In A Serene Environment With A High Security,Lekki Phase 2 Ologolo Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bed Room. /3 Bed Room Ensuite,Colplag Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,5 beds,6 baths, Toilets +A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,"Olaitan Sebanjo Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 4 Bedroom House,Lekki Conservative Center. Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets +Kafsa Apartments,For Sale – Osapa/agungi/idado/ikota/vgc Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +Tastafully Finished 4 Bedroom Semi Detached Duplex,Okota Gra Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Whales County,"Lafiaji ,lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Off Plan 2 Bedroom Luxury Flat,"Gbangbala Street, Off Kusenla Road, Lekki Phase 1 Lekki Lagos",₦,"40,000,000",1,1,1,2 beds,2 baths,3 Toilets +A Super Executive Newly Built Six (6) Units Of Four (4) Bedroom Semi Detached Duplexes,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Off Plan 3 Bedroom Flat,Second Toll Gate. Chevron Vgc Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths, Toilets +Newly Built Fully Serviced 3 & 4 Bedroom Luxury Maisonette Duplex,"Nike Art Gallery Road, Opposite Freedom Way(vfs) Lekki Phase 1 Ikate Lekki Lagos",₦,"38,990,000",1,1,0,4 beds,5 baths,5 Toilets +"A Very Clean, Massive And Well Refurbished/renovated 5 Bedrooms Fully Detached Duplex","Bera Estate, Chevron Drive Chevron Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Six (6) Units Of Four (4) Bedroom Semi Detached Duplexes,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 & 3 Bedroom Luxury Apartments,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate, Lekki Ikate Lekki Lagos",₦,"23,990,000",1,1,0,2 beds,3 baths,3 Toilets +Fantastically Built Relatively New 3 Bedroom Luxurious Flat With One Room Bq On 2nd Floor,Ichie Mike Ijezie Street Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +An Exotic And Unique 4 Bedroom Semi Detached Duplex .,Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Built Pent Floor 3 Bedroom + Bq Luxury Apartment,"Gbangbala Street, Off Kusenla Road, Ikate, By Lekki Phase 1 Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Fully Serviced 5 Bedroom Luxury Detached Duplex,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate, Lekki Ikate Lekki Lagos",₦,"69,990,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Luxury Apartment,"Dupe Oguntade Street Off Enyo Filling Station Road, Chisco Bus Stop, Ikate Lekki Lagos",₦,"23,990,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Spacious Semi Detached Duplex,"Adewale Oshi Street, Off Chief Collins Street, Lekki Phase Estate Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace For Sale In Ikate,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Smart House,Near House On The Rock Ikate Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,Olaitan Sebanjo Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +Whales County,"Lafiaji, Opposite Cooplag Estate Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Maintained And Massive 7 Bedroom Detached Duplex With Two Rooms Bq,"Olaitan Sebanjo Street, Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land,Samuel Oguntuase Close Jakande Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Near Pinnock Beach Estate Jakande Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex In A Serene Environment,Off Conoil Ikate Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 2 & 3 Bedroom Luxury Flats,"Dupe Oguntade Street Off Enyo Filling Station Road, Ikate Lekki Lagos",₦,"33,500,000",1,1,0,2 beds,2 baths,3 Toilets +Semi Detached 4bedroom Duplex With 2bq's Available For Sale,"Pinnock Beach Estate, Lekki Phase1. Osapa London Lekki Lagos",₦,"200,000,000",1,0,0,4 beds,4 baths,5 Toilets +An Architectural Designed Newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Architectural Designed Newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Well Maintained And Massive 7 Bedroom Detached Duplex,"Olaitan Sebanjo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +A Well Maintained And Spacious 2 Units Of 3 Bedroom Apartments,"Itumo Ogbonna Street, Lekki Peninsula Scheme Lekki Phase 1 Lekki Lagos",₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Z Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Well Maintained And Spacious 2 Units Of 3 Bedroom Apartments En Suite,Itumo Ogbonna Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +\newly Built 4 Bedroom Semi Detached Duplex,Oba Musa Estate Agungi Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Listing.,Osapa London Ologolo Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Terrace For Sale,Orchid Road Off Chevron Drive. Eleganza Lagos Chevron Lekki Lagos,₦,"26,990,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,5 baths,6 Toilets +1 Bedroom Apartment,Ruby Apartments Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,1 beds,1 baths,1 Toilets +Newly Built 5 Bedroom Duplex With Cinema And Pool,Pinnock Beach Osapa London Lekki Lagos,₦,"450,000,000/month",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,5 Toilets +American Style 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Simply Beautiful 4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Contemporary Fully Detached Duplex, Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Terrace 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Eden Garden Estate Beside Abraham Adensuya Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Eden Garden Estate Beside Abraham Adensuya Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex House,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary And Well Finished 5 Bedrooms Fully Detached Duplex,Ologolo Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Inoyo Haven Estate Vgc Lekki Lagos,₦,"50,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +Twin Duplex,Eleganza Gardens Vgc Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedroom Detached Terrace,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Jakande Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +1200 Sqm Land,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached,Before 2nd Tollgate By Chevron Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Four Bedrooms Terrace Duplex,"Orchid Road,lekki Phase 2,lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terraced Bungalow In A Serene Estate With 24 Hours Electricity,"Southpointe Estate, Lekki. Lekki Phase 2 Lekki Lagos",₦,"29,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Fenced, Gated And Sand Filled 2000sqm Land", Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished Built 5bedroom Duplex,"Oral Estate, By Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"90,000,000/day",0,0,1,5 beds,5 baths,7 Toilets +Buy A Plot Of Land,"Lekki, Lagos State Lekki Lagos",₦,"3,375,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrence Duplex,"Off Admiralty Way , Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Contemporary Fully Detached Duplex In A Serene And Secure Environment,Orchid Road Chevron Lekki Lagos,₦,"200,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"42,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedrooms Detached Duplex,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +400sqm Plot Of Land,Lakeview Estate Lafiaji Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace With A Room Bq Inside A Mini Estate,Off Femi Okunu Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +650sqm Plot Of Land,Bakare Estate Agungi Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +1000sqm Plot Of Land,Orange Island Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Massive 5 Bedroom Detached House + Bq,Serviced Estate Osapa London Lekki Lagos,₦,"400,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom,Chevron Lekki Lagos,₦,"169,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 8 Units Of 4 Bedroom Terrace Apartments,D Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +1050sqm Corner Piece Plot Of Land,Gated Environment Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Home,A Osapa London Lekki Lagos,₦,"189,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached House With A Room Bq Within A Mini Estate,Behind Zenith Bank Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Plots Of Land,Developing Area Ologolo Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Luxuriously Finished 5 Bedroom Detached House With Bq,Serviced Estate Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,E Chevron Lekki Lagos,₦,"189,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached House With A Room Bq,Ikate Lekki Lagos,₦,145,0,1,0,5 beds,6 baths,6 Toilets +2 Units Of Three Bedrooms Apartment,Igbo Efon Road Off Lekki Epe Expressway Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,4 Toilets +Vacant Plot Measuring 900sqms,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets +On Going 4bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,0,1,4 beds,5 baths,0 Toilets +"5 Bedrooms, 2 Living Areas & Double Volume Living Room","U3 Estate, By Goshen Estate Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New 3 Bedroom With Bq,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Corner Piece 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets +Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"78,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex,Lekki Country Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,7 Toilets +Amazing 3 Bedroom Terrace Duplex With Bq,"Spg Road, Amandansun Street Ologolo Lekki Lagos",₦,"60,900,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"82,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Megamound Estate Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Standard 4 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Penthouse And Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex Within Lekki,"West Bridge 2, Orchid Road By Chevron Toll Gate. Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land With Government Excision,Magbon Alade In Ibeju Lekki Lga Lagos Lekki Phase 1 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished Of 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +"Super Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema, And Swimming Pool",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Newly Built 4bedroom Detarched Duplex Ensuite With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Bq,Chevron Lekki Chevron Lekki Lagos,₦,"100,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex House , With Bq And Swimming Pool","Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"300,000,000",0,1,1,5 beds,6 baths,6 Toilets +4bedroom Terrace Duplexes With One Room Bq Inside A Mini Estate.,Ajiran Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,"Lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Smart Home With Bq,2nd Tollgate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex House With A Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex House With A Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"380,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex House With A Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Units Block Of 2 Bedroom Apartment,Agungi By Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",1,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,"By Agungi , Ologolo Lekki . Ologolo Lekki Lagos",₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Fully Detached Duplex For Sale,Ologolo Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex House For Sale,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Apartment, Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4bed Room Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bed Rooms Detached Duplex With Bq,"County Estate , Lekki Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bed Rooms Terrence In An Estate,Orchid Road Ikate Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Build 4bed Rooms Duplex With Bq,Orchid Road Ikate Lekki Lagos,₦,"72,000,000",0,1,1, beds, baths, Toilets +2 Plots Of Land,Orchid Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,By Agungi Ologolo Lekki Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land With Government Approved Excision,Eleko Beach Vgc Lekki Lagos,₦,"9,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Hotel Apartments,Vgc Vgc Lekki Lagos,₦,"1,300,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Residential Plot Of Land,Eleko Vgc Lekki Lagos,₦,"15,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Government Approved Excision,Bolorounpelu Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Block Of 6 Nos Of 3 Bedroom Flats,Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"550,000,000/year",0,0,0,0 beds,4 baths,4 Toilets +"Exclusive 4bedroom Terrace ,gym,foothball Pitch.",Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,4 Toilets +Exclusive 4bedroom Terrace With Gym And Football Pitch.,S Ikate Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets +Elegant 5 Bedroom Semi Detached Duplex With Bq,D Osapa London Lekki Lagos,₦,"85,500,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,X Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,X Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets +Magnificent 5 Bedroom Detached Duplex,D Ikate Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex Semi Detached With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,4 beds,5 baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"65,000,000/year",0,0,0,4 beds, baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,4 beds, baths,5 Toilets +4 Bedroom Semi Detached Duplex,Z Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,5 Toilets +Beautiful 2 Bedroom Apartment For Sale,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,2 beds, baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"160,000,000",0,0,0,5 beds, baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With A Bq For Sale,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths,6 Toilets +Deluxe 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Elegant 4 Bedroom Semi Detached Duplex For Sale In Jakande, Lekki Lagos",Jakande Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful And Spacious 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Z Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,5 Toilets +Deluxe 5 Bedroom Fully Detached Duplex With Bq For Sale Second Toll Gate Lekki Lagos,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,6 baths, Toilets +Luxury 4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 4 Bedroom Detached Duplex For Sale At Chevron Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Elegant Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Fully Furnished Detached Duplex,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths,5 Toilets +Elegantly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,6 Toilets +Luxury 2 Bedrooom Apartment,"Ilasan, Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"125,000,000",0,0,0,4 beds, baths,5 Toilets +4 Bedroom Terrace For Sale At Orchid Road Lagos,Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Deluxe 5 Bedroom Semi Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"87,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace For Sale At Vgc Lekki Lagos,Vgc Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,5 baths,5 Toilets +Deluxe 4 Bedroom Semi Detached Terrace,... Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Fully Detached Duplex,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"330,000,000",0,0,1,5 beds, baths,6 Toilets +Deluxe 4 Bedroom Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki Lagos,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Terrace Apartment,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds, baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths,5 Toilets +Beautiful 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 4bedroom Detached Duplex, Idado Lekki Lagos,₦,"55,500,000",0,0,1,4 beds,4 baths,0 Toilets +Beautiful And Spacious 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds, baths,5 Toilets +Deluxe 5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,5 beds, baths,6 Toilets +Deluxe 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Deluxe 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths,5 Toilets +"Affordable 4 Bedroom Semi Detached Duplex For Sale In Lekki, Lagos",Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex For Sale At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Deluxe 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex For Sale At Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex For Sale At Chevron Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4bedroom Terrace Duplex With A Bq For Sale At Ilasan Lekki Lagos,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Deluxe 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths,6 Toilets +4 Bedroom Detached Duplex With Bq For Sale At Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace With A Bq,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikate Lekki Lagos,₦,"270,000,000",0,0,0,5 beds, baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Deluxe 5bedroom Terrace Duplex With A Bq For Sale At Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths, Toilets +Luxurious 5 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Lagos.,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths, Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Z Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq For Sale At Ologolo Lekki Lagos,Ologolo Lekki Lagos,₦,"28,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Fully Detached Mansion With A Penthouse,Lekki Phase 1 Osapa London Lekki Lagos,₦,"450,000,000/month",0,1,0,5 beds,6 baths,6 Toilets +Land Banking Development Projects (ldp 10.0),Land Banking Project Lekki Phase 1 Lekki Lagos,₦,"100,000",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,0 baths,0 Toilets +Massive 5bedroom Fully Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"160,000,000,000",0,1,1,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +This Luxurious Finished 4 Bedroom Fully Detached Duplex And 1 Bq Is Located In A Secured Environment.,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exclusive 4bedroom Terrace,S Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With A Bq,"Dreamville2 Estate, Off Lekki Ajah Expressway, Lbs Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Massive 4 Bedroom Terrace Duplex,Lekki 2toll Gate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,0 baths,0 Toilets +Massive 4 Bedroom Semi Detached Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,0 baths,0 Toilets +Newly Built 5bedroom Detached Duplex With Swimming Pool,D Ikota Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Plots Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"65,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Contemporary Apartment,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,2 beds,2 baths,0 Toilets +5 Bedroom Detached With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"320,000,000,000",0,1,1,5 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,2nd Toll Ikate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,0 Toilets +3 Bedrooms Newly Built Residential Apartment At Luxurious Environments,"Zylus Court Estate,bogije Ajah Lekki Phase 1 Lekki Lagos",₦,"33,000,000/month",0,1,1,3 beds,3 baths,4 Toilets +Tastefully Finished &luxury 4 Bedroom Semi Detached Duplex With Bq,Tartiana Court Estate Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House,Ologolo Lekki Lagos,₦,"68,000,000",0,1,1,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,3 baths,3 Toilets +"Magnificent 4bedroom Detached Duplex, With Bq",Osapa London Lekki Lagos,₦,"117,000,000",1,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Maissonette Apartment (almost Sold Out),"Dreamville Estate, Sangotedo, Ajah, Lagos Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,1,0,3 beds,3 baths,3 Toilets +Automated 3 Bedroom Terrace Luxury Beach Home With Standard Bq,Bloom Heaven Residences Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive 3 Bedroom Terrace Duplex And Bq,By 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Contemporarily Designed 4 Semi Detached Duplex,": By 2nd Tollgate , Orchid Lekki Oral Estate Lekki Lagos",₦,"60,000,000",0,0,1,4 beds,2 baths,3 Toilets +Magnificent 5 Bedroom Detached Duplex,F Ilasan Lekki Lagos,₦,"98,500,000",0,1,0,5 beds,5 baths,5 Toilets +Massive 5bedroom Detached With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"110,000,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Fully Detached Penthouse With Bq,Abraham Adesanya By Atlantic Layout Estate Lekki Phase 1 Lekki Lagos,₦,"72,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Maissonette Apartment (almost Sold Out),"Dreamville 2 Estate, Sangotedo, Ajah, Lagos Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,1,0,2 beds,2 baths,2 Toilets +This Lovely 4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq Is Located In A Secured Estate And Features Spacious Compound,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,4 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,X Lekki Phase 1 Lekki Lagos,₦,"290,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 5bedroom Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"125,000,000,000",0,1,1,5 beds, baths, Toilets +Newly Built Luxury 5 Bedroom Detached Duplex,Herbert Orji Osapa London Lekki Lagos,₦,"175,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"108,000,000",1,1,0,4 beds,4 baths,5 Toilets +One Bedroom Flat,Yellowgate Residences Lekki Phase 1 Lekki Lagos,₦,"53,000,000",1,1,0,1 beds,1 baths,2 Toilets +Newly Built Fully Detached 5 Bedroom Duplex With 2 Bqs In A Serene Estate,Chike Mba Osapa London Lekki Lagos,₦,"160,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroon Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ruby 2&3 Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Chevron Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Chevron Drive Lekki / Chevron Oli And Gas Company/ Chevron Lekki Lagos,₦,"190,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Duplex,Chevron Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,5 Toilets +Plot Of Land,Durosimi Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Miniflat,"Supplier Street, Onosa, Ilasan Lekki Lagos",₦,"13,000,000/sqm",0,1,0,2 beds,2 baths,2 Toilets +4 Units Of 4 Bedroom Terrace Duplex With Bq,Ologolo Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Off Plan Hotel Style Suites,Periwinkles Lekki Phase 1 Lekki Lagos,₦,"122,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Jakande Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House,"2nd Toll , Orchid Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +2units Of Uncompleted 5 Bedroom Fully Detached Duplex,Mega Mound Lekki County Estate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached Duplex In A Lovely Estate.(left),"Ocean Bay Estate, Orchid Road. Chevron Lekki Lagos",₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex In A Lovely Estate.,Ocean Bay Estate Chevron Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,"Olera Estate, Osapa, London Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Duplex,Ologolo Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Osapa Eletus Estate Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Distress 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Maids Room,Arcadia Grove Extension Beside Pinnock Beach Estate Osapa Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Uniquely Designed 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Uniquely Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +A State Of The Art 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,7 baths,7 Toilets +Fully Serviced 2 Bedroom Apartments,Jakande Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets +Very Spacious 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Contemporary 5 Bedroom Fully Detached Duplex With A Roof Top Terrace,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Contemporary 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Elegantly Designed 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With A Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Stunning 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely Designed 4 Bedroom Fully Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely Designed 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Stunning 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Stunning 5 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Stunning 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths,6 Toilets +Enthralling 2 Bedroom Terrace Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Magnificent 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",1,1,0,4 beds,5 baths,5 Toilets +An Enchanting 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Contemporary 5 Bedroom Fully Detached Duplex With A Swimming Pool,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Magnificent 5 Bedroom Fully Detached Duplex With An Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Exquisite 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely Designed 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Contemporary 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"68,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq,"...,. Chevron Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Stunning 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki County Villa Ikota Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Stunning 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Dazzling 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Stunning 5 Bedroom Fully Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Stunning 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Fully Serviced 4 Bedroom Town House,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Beautifully Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex With A Swimming Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Spacious 4 Bedroom Terrace,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace House With Excellent Facilities,Platinum Way Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Camberwall Advantage 1&2,Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths, Toilets +Newly Built Six Units Of Spacious Four Bedroom Semi Detached Duplex With Maid's Room At Lekki For Sale,"...,. Lekki Lagos",₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedrooms Apartment,Alpha Beach Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,3 Toilets +"4 Bedrooms Mezzanine+ Study,2 Living Area+ Bq",Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Terrace House+ Bq,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Estate Jakande Lekki Lagos,₦,"300,000,000/day",1,1,1,5 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,E Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Luxurious 3 Bedroom Apartment,",Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Neatly And Smartly Built 4 Bedroom Terrace Duplexes (off Plan),"West Bridge 3, Conservative Road By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"11,600,000",0,1,0,4 beds,4 baths,5 Toilets +Smartly Built 4 Bedroom Semi Detached Duplex,"Conservative Road By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"68,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Terrace Apartment,Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Harris Crescent Road, By Vgc Estate Vgc Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex In Secured Environment,Cluster One Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"1,100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,6 baths,6 Toilets +50 Room Hotel On 2200sqm,Agungi Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +9800sqm Of Land In Shoprite,Victory Park Road Osapa London Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace House,Oral Estate Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 2bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +"440sqm Land For Sale On Da Silva Street, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A New Serviced 4 Bedroom Terrace House With Bq In A Mini Estate Behind Enyo, Ikate",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Terrace In A Mini Estate At Harris Drive Near Vgc,Vgc Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 6bedroom Fully Detached Duplex With 2rooms Bq On 675sqm Land In Vgc,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Maisonette In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A New 5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +A New 5 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 3 Star Hotel On Chevron Drive,Chevy View Estate Chevron Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +1100sqm Land Available In Victoria Garden City (vgc),Vgc Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +A New Serviced 4 Bedroom Terrace House With Bq In A Mini Estate,Behind Enyo Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets +"New 4 Bedroom Terrace House With A Room Bq In A Mini Estate In Ikate, Lekki Lagos",Ikate Lekki Lagos,₦,"74,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached House With Bq At Osapa London,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House With Bq In Lekki Phase 1 Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tenanted 6 Units Of 3 Bedroom Apartment,Atlantic Beach Estate New Road Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +"10 Hectares (150 Plots/150,000) Of Sand Filled Land, Overviewing The Lagoon (behind Nicon Town) With C Of O",Osapa London Lekki Lagos,₦,"120,000/sqm",0,0,0, beds, baths, Toilets +New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +"650sqm Residential Land In Orange Island Phase 2, Lekki Phase 1",Orange Island Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,0,0, beds, baths, Toilets +Distress Sale 4 Bedroom Detached House In A Mini Estate,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Unit Of Tenanted 4 Bedroom Terrace House Off Admiralty,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1100sqm Land In Twin Lakes Estate, Chevron Lekki",Chevron Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +New 3 Bedroom Apartment In A Mini Estate,Spar Road Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Detached House With Bq With Compound,Carlton Gate Estate Chevron Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Terrace In A Mini Estate,Harris Drive Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Apartment With Bq,Primewaterview Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Duplex + Bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex + Bq,Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,County Home Lekki Lagos,₦,"150,000,000/sqm",0,1,0,5 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached House. Governors Consent,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0, beds,4 baths,5 Toilets +Bakery Newly Built,W Lekki Lagos,₦,"130,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,E Ologolo Lekki Lagos,₦,"35,000,000/sqm",0,1,0,2 beds,1 baths,1 Toilets +Government Official Gazette,Lekki Phase 1 Lekki Lagos,₦,"4,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House. Governors Consent,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0, beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House In A Serene Estate,"Oral Estate,lekki,lagos State Lekki Lagos",₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex For Sale At Orchid Lekki,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,009",0,0,0,4 beds,4 baths,5 Toilets +Well Presented Newly Built 4 Bedroom Semi Detached Duplex In A Serene Area,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand 3 Bedroom Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautifully Furnished Two Bedroom Apartment,Elevation Church Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,0,1,2 beds,3 baths,3 Toilets +Luxury 5bedroom Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"100,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +Several Plots Available,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached House In A Serene Estate,"Oral Estate,lekki Oral Estate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And 1 Bq,Second Toll Gate Chevron Lekki Lagos,₦,"196,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette +bq,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"295,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Home,R Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +400sqm Residential Land,Orchid Road Ikota Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Land,Off Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"140,000/month",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex,Z Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"297,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,By 2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached With A Bq,Osapa London Lekki Lagos,₦,"295,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached With A Bq,Ikota Lekki Lagos,₦,"100,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terraced Duplex With A Bq At Lekki Conservative Centre, Chevron, Lekki","Conservative Centre, Chevron, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5bedroom Luxury Duplex Lekki,Ikota Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached With Bq,Chevron Lekki Lagos,₦,"155,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Conservation Center Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +New Built 4 Bedroom Terrace,Y Agungi Lekki Lagos,₦,"67,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Home,R Agungi Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With A Bq At Ikota Graa Estate,Ikota Gra Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"380,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +4bedroomsemi Detached Duplex With Bq In Lekki,S Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Duplex,Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Newly Built Terrence Duplex,Orchid Ikota Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +Contemporary 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Bq,Ikota Lekki Lagos,₦,"57,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached Duplex With A Bq At Conservative Centre, Chevron","Conservative Centre, Chevron, Lekki Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Brand New 6bedrooms Detached Duplex With 2 Rooms Bq For Sale At Lekki Ph1 Estate.(c Of O And Concept).,Lekki Ph1 Estate. Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,7 Toilets +Executive Brand New And Tastefully Built 4bedrooms Semi Detached Duplex With A Bq At Ikota Villa Estate Lekki.,Ikota Villa Estate Lekki. Ikota Lekki Lagos,₦,"55,000,000/year",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedrooms Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki (governor Consent).,2nd Toll Gate Lekki. Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4bedrooms Semi Detached Duplex With A Bq For Sale At Chevron Lekki Lagos.,Chevron Lekki Lagos. Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Brand New 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,4 baths,6 Toilets +Executive 4bedrooms Semi Detached Duplex With A Bq For Sale At 2nd Toll Gate Lekki (governor's Consent).,2nd Toll Gate Lekki. Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex All En Suite In A Serene Environment,Ss Court Estate Chevron Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,5 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,10 beds,10 baths,8 Toilets +Brand New 4 Bedrooms Terrace Duplex With A Room Bq,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 2 Bedrooms Flat,Orchid Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex With Bq,Ilasan Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Private Cinema And 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Jakande Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +Furnished 5 Bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Ajah Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 And 4 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 And 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Brand New 5 Bedroom Detached Smart House,private Cinema, Swimming Pool",Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex With Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,7 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Fully Detached With An Oceanview Open Terrace,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Terrace Duplex,Ajah Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And 1 Room Bq,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex And A Room Bq,Agungi Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary 5 Bedroom Fully Detached Duplex,swimming Pool,open Terrace",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"175,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex + Room Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000/year",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekky County Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment,Idado Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxurious 5 Bedroom Fully Detached Duplex,swimming Pool,private Cinema",Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ajah Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,"Orchid Hotel Road, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"43,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex And 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq I,Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex Was,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Fully Detached Duplex,swimming Pool, Private Cinema",Osapa London Lekki Lagos,₦,"550,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Jakande Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Brand New 5 Bedroom Detached Duplex, Private Cinema",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets +Exquisitely Finished Block Of Apartments,Agungi Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Fully Serviced 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Ajah Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq I,"Lekki County, Ikota Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex And Mini Flat Bq,Lekki County Homes Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Waterfront Land Measuring 1000sqm,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Smart House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Elegantly Finished 4 And 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartments,Agungi Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room,Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Brand New 5 Bedroom Fully Detached Duplex, Swimming Pool",2nd Toll Gate Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Plot Of Land Measuring 781sqm Each,"Melrose Park Estate By Harris Drive, Behind Hayden Fuel Station, Vgc, Lekki. Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Apartment,Ikota Lekki Phase 2 Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,0 Toilets +Land Measuring 650sqm,"Heritage Garden, Orchid Road, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ajah Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Self Compound And A Room Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Lekki County, Ikota Ikota Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex And A Room Bq,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Lovely Units Of 1, 2 And 3 Bedroom Apartments",Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment With Elevator And 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq,Lekki County Homes Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Swimming Pool And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment With A Room Bq,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxurious 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 2 Bedroom Apartment,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ajah Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex And 1 Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Lekki County Homes Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 800sqm,Lake View Park 1 Opposite Vgc / Opposite Ikota Shopping Complex Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Fully Detached Duplex With Bq,D Osapa London Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Well Maintained 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Distress Sale, Luxury 4bedroom Terrace Duplex",Ilasan Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"420,000,000/sqm",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Bungalows,"Bogije, Lekki Lagos",₦,"17,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Conservation Road Chevron Lekki Lagos,₦,"68,000,000",1,0,0,4 beds,0 baths,0 Toilets +Available Land,Igbo Efon Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Dry Land Together,Alpha Beach Road By Admarity Homes Estate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,$,"560,587",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Idado Idado Lekki Lagos,₦,"5,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Excellent Features,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedrooms Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Idado Idado Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semidetached Duplexes Plus Bq In A Fully Serviced Estate,Freedom Way / Ikate Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq In Ologolo Lekki,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex,Lekki Second Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedroom Duplex With 2 Rooms Bq,"...,. Lekki Phase 1 Lekki Lagos",₦,"290,000,000",0,1,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +"1, 2 And 3 Bedroom Terraces And Penthouses", Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Flat On The 2nd Floor,"Chisco By Enyo Filling Station, Lekki Gardens Ikate Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Two Bq For Sale In Lekki County Homes,Lekki County Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semindetached Duplex With Detached 1 Bedroom Bungalow + It Own Kitchen,F Ikota Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Gorgeous 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"64,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex With Servant Quarter,Osapa London Jakande Lekki Lagos,₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plot Measuring 1180.45sqm Gated And Fenced,Freedom Estate Off Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Smart Semi Detached Duplex,Orchid Road/royal Pine Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Service Boys Quarters,X Lekki Lagos,₦,"78,000,000",1,1,0,0 beds,0 baths,0 Toilets +1008.894sqm Plot In Twin Lakes Park,Chevron Roundabout Chevron Lekki Lagos,₦,"175,000,000",1,0,0, beds, baths, Toilets +Well Finished 5bedroom Fully Detached Duplex Plus A Room Bq At Chevron Drive Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,"...,. Ikate Lekki Lagos",₦,"140,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,X Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,S Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale: Clean 4bedroom Duplex With Bq,F Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Dor Sale By Second Tollgate Lekki. 90% Completed,By Second Tollgate Lekki Lekki Lagos,₦,"55,000,000",1,0,0, beds, baths, Toilets +Luxurious Newly Built Finished 5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat (carcass),"Lekki Gardens Paradise 3, Chevron Drive Igbo Efon Lekki Lagos",₦,"32,000,000",1,0,0,3 beds,3 baths,4 Toilets +Serviced 5bedroom Semidetached Duplex Plys Bq,Chisco / Ilasan New Road Ikate Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Four Bedroom Duplex At Orchid Chevron With Bq,Chevron Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,4 Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Ikate Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,0 Toilets +3 Bedroom Maisonette Advanced Shell,Dupe Oguntade Street. Ikate Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets +One Bedroom Flat,Ikate Lekki Lagos,₦,"26,000,000",0,0,0,1 beds,1 baths,1 Toilets +Block Of 4units Of 3 Bedroom With 4 Bqs,Chevy View Estate Chevron Lekki Lagos,₦,"350,000,000",0,1,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,X Ologolo Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Semidetached (offplan Basis),Chevron Lekki Lagos,₦,"63,000,000",1,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Maisonette (advanced Shell),Dupe Oguntade Street. Lekki Phase 1 Lekki Lagos,₦,"44,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Maisonette (offplan Basis),Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,4 baths,4 Toilets +Newly Built 9 Units Of 3 Bedroom Flat At Lekki Phase One,Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +5bedroom Fully Detached Duplex For Sale In Ikate Lekki,Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace ( Offplan Basis),Chevron Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,5 baths,5 Toilets +"Selling: 4 Bedrooms Semi Detached With One Bq At Orchid Hotel Road, Lafiaji Lekki. Lagos","Orchid Hotel Road, Lafiaji Lekki. Lagos Lekki Lagos",₦,"60,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,X Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2, 3 And 4 Bedroom Apartments", Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Castle Bungalow + Bq,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Town House With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely Luxury 4 Bedroom Terrace Duplex *,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Brand New 4 Bedroom Flat, Chevron Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace Duplex For Sale By 2nd Toll Gate, Lekki",Lekki Lagos,₦,"52,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Fully Serviced 2 Bedroom Flat,"Behind Mega Chicken, Ikota Gra Ikota Lekki Lagos",₦,"30,000,000",1,1,0,2 beds,3 baths,3 Toilets +New Four Bedroom Duplex At Chevron With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 4 Bedroom Semi Detached Duplex With Bq For Sale,Agungi Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets +4 Bedroom House,... Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex Plus A Boy's Quarter,S Ikota Lekki Lagos,₦,"110,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Terraced With A Bq,Ikate By Nike Art Gallery Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 2 Rm Bq,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4bedroom Fully Detached Duplex With A Room Bq,D Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Semidetached (offplan Basis),Ikate Lekki Lagos,₦,"63,000,000",1,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +3bedroom Terrace Duplexes Plus Bq,Baale Street / Olukolu Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets +Luxurious Finished 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached With A Bq,Idado Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Service Flat With Swimming Pool And Gym,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +Contemporary Design Smart 4 Bedrooms Semi Detached Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula, Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,By Second Tollgate Lekki Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex For Sale In Ikota,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,S Chevron Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built And Well Finished 2bedroom Flat With A Room Bq,Ikate Lekki Lagos,₦,"47,000,000",0,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,0 baths,0 Toilets +An All Ensuite 4bedroom Semidetached Duplex Plus Bq,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,4 beds,4 baths,5 Toilets +Two Storey Four Bed Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Busola Omirinre Lekkiph1 Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,1,1,2 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex Available For Sale,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +600 Sqm Land,"Majek, Opposite Fara Park Estate Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3bedroom Flat Upstairs,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Well Maintained 4 Bedrooms Terrace Bungalow With Ample Car Park&recreational Facilities Off Orchid Road, Lekki, Lagos","Off Orchid Road, Lekki, Lagos Lekki Lagos",₦,"38,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +All Ensuite 4bedroom Terrace Duplex Plus Bq,Kusenla Road/ Gbangbala Street Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Sales: 3 Bedrooms Terrace With One Bq At Orchid Hotel Road, Lafiaji Lekki. Lagos",Orchid Road Lekki Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets +Exquisite 5 Bedroom Duplex For Sale,Osapa London Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Flat At Lekki Gardens Horizon 1,"Lekki Gardens Horizon 1, Kusenla Street Ikate Lekki Lagos",₦,"45,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex At Second Tollgate Lekki.,By Second Tollgate Lekki Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Z Lekki Lagos,₦,"70,000,000",0,1,0,0 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached House, With 4 Bedroom Ensuite With Swimming Pool And 2 Rooms Bq At Lekki Ph1*",Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0, beds, baths, Toilets +Newly Built 2storey 5bedroom Duplex At Ikate,Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built And Well Finished 4bedroom Duplex With Bq,Ikota Gra Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,S Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex With Servant Quarter,Pinnock Beach Jakande Lekki Lagos,₦,"290,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Terrace Duplex For Sale By 2nd Toll Gate, Lekki",Lekki Lagos,₦,"52,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached + Penthouse With Indoor Pool,Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette As Advanced Shell,Dupe Oguntade Street. Ikate Lekki Lagos,₦,"44,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Luxury Brand New, Already Built 4 Bedroom Terraced Duplex",Lekki Scheme Two Through Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Romay Garden Near Jakande Estate Lekki Lagos.. Jakande Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4bedroom Fully Detached Duplex,W Ikota Lekki Lagos,₦,"85,000,000",0,1,0, beds, baths, Toilets +Spacious 5 Bedroom Fully Detached Duplex With Bq Available For Sale,Chevyview Estate Chevron Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Spacious 4 Bedroom Terrace Duplexes For Sale Located At Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex & A Room Boy's Quarter,S Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Semi Detached Duplex With A Service Boys Quaters,C Chevron Lekki Lagos,₦,"75,000,000",0,1,0,0 beds,0 baths,0 Toilets +Serviced 2bedroom Apartment Plus Bq,Sangotedo / Fara Park / Abijo Lekki Phase 2 Lekki Lagos,₦,"27,000,000",1,1,1,2 beds,2 baths,3 Toilets +A Well Maintained 3bedroom Terrace Duplex With All Rooms Ensuite With Spacious Compound,S Ikota Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Smart 5 Bedroom Detached Duplex For Sale In Chevron Lekki,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Lekki Lagos,₦,"8,100,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Detached Duplex With Bq,By Second Tollgate Lekki Lekki Lagos,₦,"120,000,000",0,1,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq (90% Completed),By Second Tollgate Kekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificently Built 2 Bedroom Apartment,"Lekki Gardens Paradise 2, Chevron Alternative Igbo Efon Lekki Lagos",₦,"31,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Duplex With Servant Quarter,Pinnock Beach Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex Plus A Boys Quarters,S Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom, Semi Detached House","Garden Estate,off Freedom Way,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"100,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Lovely 4 Bedroom Terrace Duplex With A Bq At Agungi, Lekki",Agungi Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets +Exquisite 3 Bedroom Flat,At Ocean Breeze Estate Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Serviced 4 And 3 Bedrooms Terrace Duplex Off Orchid Road,Second Tollgate Lekki Lekki Lagos,₦,"57,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxurious Newly Built Finished 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex Plus A Boys Quarter,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex In A Well Secured Estate,Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +Well Built Luxury 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Pinnacle Quality Well Built 3 Bedroom Apartment With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,3 beds,0 baths,0 Toilets +10 Units Of Tastefully Finished Terraces Of 4 Bedrooms With A Room Bq & Rooftop Massive Sit Out,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette (offplan Basis),Dupe Oguntade Street Ikate Lekki Lagos,₦,"42,000,000",1,0,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached Water Front Duplex With Bq,Tulip Haven Estate Chevron Lekki Lagos,₦,"133,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +600sqm Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 2 Bedroom Apartment,"Lekki Gardens, Paradise 3 Chevron Drive, Igbo Efon Lekki Lagos",₦,"32,000,000",1,0,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedroom Terraces Pent Roof Garwith 1 Bq At Lekki Phase One,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bed Room Detached Duplex,Lekki Country Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets +5bedroom Fully Detached Duplex For Sale In Ikate Lekki,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Finished 3 Bedroom Flat With Swimming Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Lagos,₦,"51,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Newly Built 4 Bedrooms Terrace Duplex At Orchid Hotel Road, Lafiaji Lekki. Lagos.","Orchid Hotel Road, Lafiaji Lekki. Lagos. Lekki Lagos",₦,"50,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette Duplex ( Off Plan Basis),Horizon Estate Ikate Lekki Lagos,₦,"41,290,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Terrace Maisonette With A Bq,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Duplexes With Approved Building Plan,Ologolo Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"53,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,By Second Tollgate Lekki Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +Super Spacious Well Built Affordable 3 Bedroom Apartment,2nd Tollgate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds, baths, Toilets +Off Plan Sales; Contemporary Massive 4 Bedrooms Fully Detached Duplex With Bq At Ikota Gra. Ikota Villa Estate.,Ikota Gra. Ikota Villa Estate. Ikota Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Fully Detached + Penthouse,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully 4 Units Building Comprising Of 3 Units Of Bedroom Flats Tastefully 4units Building Comprising Of 3units Of Bedroom Flats And One Unit Of Three Bedroom Flats,"Ologolo, Jakande. Ologolo Lekki Lagos",₦,"110,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,0 Toilets +Dry Residential Land,Lekki Phase 2 Lekki Lagos,₦,"21,000,000",1,0,1, beds, baths, Toilets +4 Bedroom Terrace Duplex,D Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +*newly Built Beautiful 4 Bedroom Terrace Duplex For Sale*... 95% Finished Located At Ikate Lekki.,Ikate Lekki Lagos,₦,"82,000,000",0,1,0, beds, baths, Toilets +Newly Finished Serviced 4 Bedroom Terrace All Rooms Ensuit On Two Floors With A Room Bq,X Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex With Bq,By Second Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Flat,"Lekki Gardens Horizon 2, Opposite Kusenla Street Ikate Lekki Lagos",₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Luxury 5 Bedroom Is All Room Ensuite, With A Bq At A Secured Estate.",Chevron Drive Chevron Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,4 baths,5 Toilets +4 Bedroom Terrace ( Offplan Basis),Chevron Lekki Lagos,₦,"49,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Luxury Tastefully Finished 5 Bedroom Duplex For Sale By Second Tollgate, Lekki Lagos",Second Tollgate. Lekki Lekki Lagos,₦,"155,000,000",0,1,0, beds, baths, Toilets +Brand New Spacious 4 Bedroom Fully Detached Duplex With Bq,Off Orchid Road Lekki Lekki Lagos,₦,"92,000,000",0,1,0,0 beds,0 baths,0 Toilets +Super Spacious Fully Serviced 4 Bedroom Semi Detached Duplex In A Mini Court With Swimming Pool In Ikate Lekki,Ikate Lekki Lagos,₦,"150,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Massive 5bedroom Fully Detached Duplex,M Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House With A Bq, Ikota Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat,"Kusenla Street, Lekki Gardens Horizon 1 Ikate Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,4 Toilets +16 Residential Apartments On 4 Floors,Chevron Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built Four Bedrooms Fully Detached Duplex,"U3 Estate By Marwa, Lekki Phase 1 Lekki Lagos",₦,"145,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets +Luxury Finished 4bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Beautiful 5 Bedroom Fully Detached Duplex With Bq + Pool.,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached Duplex +penthouse,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached +bq,Orchid Road Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 5 Bedroom Duplex, 2bq And A Pool In A Serene Environment",Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 7bedrom Fully Detached Duplex With 2bedrom Bq At Ikota Villa Estate Lekki,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"150,000,000/sqm",1,0,1,7 beds,8 baths,7 Toilets +Land,Orchid Road Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Service Apartment,Alpha Beach Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +13 Plots Of Land Strategically Located In Lekki,"Beach Gate Road, Jakande Jakande Lekki Lagos",₦,"48,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Neighborhood Prince Ebanno Supermarket Lekki New Market Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With Bq,Agungi Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace In A Fantastic Location,"Mike Adegbite Avenue, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"127,500,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, Lafiaji, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,3 baths,3 Toilets +300sqm Land,"Alaro City, Lekki Lagos",₦,"1,900,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex +bq,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Tastefully Finished Brand New 4nos 4 Bedroom Terrace Houses And A 4 Bedroom Detached House.,Diamond Street Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nealty Built 4 Bedroom Sime Deteached Duplex At Ologolo Lekki Lagos,Hon Bankola Street /ologolo Ologolo Lekki Lagos,₦,"87,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki County Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Lekki County Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"102,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Excellent Facilities,E Chevron Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex In Lekki Ikate,Ikate Lekki Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"280,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached With Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Fully Serviced Decently Built 4 Bedroom Terrace Duplexes In Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Luxury Fully Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +New Built 5 Bedroom Apartment Detached Duplex Apaertment At Ologolo Lekki Lagos At Hon Banlole Street With Good Road Netwok,Hon Bankola Street Ologolo Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Kingship Five Bedroom Duplex With A Room Bq,Tourism Road Off Alpha Beach Road Before Chevron Round About Lekki Phase 2 Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,7 Toilets +2 Bedroom Flat,Osapa London Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Flat With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,2 beds,2 baths,3 Toilets +Ney Built 4 Bedroom Terrace Duplex, Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,4 Toilets +4 Bedroom All Ensuite,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 2/3 Bedrooms Apartment,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets +5bedroom Detached [redacted],Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built Four Bedroom Duplex,Carwash Bus Stop Ikate Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +Furnished 7bedroom Duplex With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land, Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With 2 Rooms Bq,Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lekki/vgc Sales,Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Nicon Town Ikate,Ikate Nicon Town Lekki Lagos,₦,"360,000,000/sqm",0,0,0, beds, baths, Toilets +2 Numbers Semi Detached 4 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,5 Toilets +5bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,0,1, beds, baths, Toilets +Exclusively Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced Plots Of Land,"Lafiaji Town Orchid, Whales County Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Grand 4 Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced House With Bq,Ologolo Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House With Swimming Pool,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Amazing 5 Bedroom Fully Detached With Bq,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Luxury 3 Bedroom Apartment,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 & 5 Bedroom Duplexes Both With 1 Room Bq Attached,"Da Vina Estate, Off Orchid Hotel Road, Eleganza, Lekki. Osapa London Lekki Lagos",₦,"75,000,000/month",0,1,0,5 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Home,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Pantheon Smart Homes,",Chevron Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevyview Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Hectares Of Land Facing The Lagoon At Ikate Elegushi With Personal C.of.o,Ikate Lekki Lagos,₦,"130,000/sqm",0,0,0, beds, baths, Toilets +New Structure Biulding,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusively Built 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached House With A Swimming Pool And Cinema,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Fully Detached Duplex With Swimming Pool In A Secure Estate,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplexes Sale,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Water Front View 5 Bedroom Detached House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Semi Detached Duplex Castle + Bq,Ajah Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom,Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached + 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,"Behind Enyo/tastee, 4th roundabout, Lekki Epe Expressway Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette,Parkview Estate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +New Built 5 Bedroom Detached House With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Sale,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Uncompleted 5bedroom Twin Duplex With A Penthouse,Lekki County Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment,Ikate Lekki Lagos,₦,"54,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex With A Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedrooms Apartment,Edewede Court 8 Ikate Lekki Lagos,₦,"44,000,000",0,0,0,2 beds,2 baths,3 Toilets +11 Unit Of Blocks Of Flat,Agungi Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4bedroom Terraces,"Orchid Road, Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Chisco Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Houses With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Automated Unconventional 5 Bed Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semidetached Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex Sale,Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplex,Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets +Fully Furnished 4 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +1 Number Detached 4 Bedrooms,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bexroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"88,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced House With Bq,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat (4th Floor),Prime Water View 1 Ikate Lekki Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonette,Parkview Estate Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette With Bq,Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lekki Scheme Ii Land Sales,Lekki Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With 2 Bq,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Mansionate Terrace Duplex,Agungi Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Awoyaya Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Automated 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terraced House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +7 Units Of 5 Bedroom Terrace,"Olufemi,olatunji Street Osapa London Lekki Lagos",₦,"55,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Grand 4 Bedroom Terrace Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With 2 Rooms Bq,Victoria Garden City Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Duplex,Carwash Bus Stop Ikate Lekki Lagos,₦,"90,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,"Victoria Crest Ii, Orchid Road Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Meadow Hallway Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11 Units Of 3 Bedroom, 2 Bedroom, And 1 Bedroom",Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Terrace With Bq,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +Off Plan 1 Bedroom Loft,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,1 beds, baths, Toilets +Four Bedroom House,Z Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bed Room Apartment,Ikate Lekki Lagos,₦,"29,000,000",0,1,0,1 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Terrace Houses With Bq @ Igbo Efon, Lekki",Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Brand 1, 2, 3 Bedroom Flats Sales In Ikate",Ikate Ilasan Lekki Lagos,₦,"45,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Pinnock Beach Estate/ Chevron Jakande Lekki Lagos,₦,"280,000,000/day",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Contemporary Detached Duplex,Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Contemporary Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment,"Orchid Road, Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Chevron Ikate Lekki Lagos,₦,"170,000,000/day",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Detached Duplex,Carlton Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplexes + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Roseberry Estate, Ibeju Lekki (igbeyin Adun Excision) Lands","Roseberry Estate Lekki Is Located Just After Pan Atlantic University, Campus Opposite Eleganza Industries/odunnbaku A Few Minutes’ Drive Before The New Int’l Airport Ibeju Lekki Directly Off Lekkiepe Expressway Lekki Lagos",₦,"5,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached In Megamound,Megamound Estate Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Smart Home 4 Bedrooms Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos Chevron Lekki Lagos",₦,"67,500,000",0,1,0,4 beds,5 baths,6 Toilets +2 Bedrooms Luxury Smart Apartments,"Ocean Palms, Meadow Hall School Way Ikate Lekki Lagos",₦,"47,700,000",0,1,0,2 beds,2 baths,3 Toilets +Land In Chaplin Court Estate. Built By Exxonmobil Cooperative And Its 665 Sqm Corner Piece,Abrahan Adesanya Estate Road Opposite Leeki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"34,000,000/sqm",0,0,0, beds, baths, Toilets +Lovely Duplex With Lagoon View Experience,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ideal Investment Opportunity Giving Immediate Roi,"Lekki Scheme Ii, After Vgc Lekki Phase 2 Lekki Lagos",₦,"500,000,000",1,1,0,10 beds,10 baths,10 Toilets +Very Affordable Serviced Land In Good Location,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Strategically Located Plot Of Land In Lovely Estate,Opposite Lbs Off Lekki Expressway Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +Very Affordable 3 Bedroom Terrace Duplex In A Serviced Estate,Off Lekki Expressway By Lbs Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex (8 Years Flexible Payment Plan),Off Lekki Expressway By Abraham Adesanya Road Lekki Phase 2 Lekki Lagos,₦,"40,640,000",0,0,0,4 beds,4 baths,5 Toilets +Very Affordable New 4 Bedroom Duplex In Serene Location,"Lekki Scheme Ii, After Vgc Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Great Offer Pay 50 Percent And Balance In 5 Years,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Waterfront Detached House,Off Chevron Drive Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets +Best Price In Market For Luxury 4 Bedroom Duplex,By Nicon Town Ikate Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +Pay 70% And Move In Offer,Off Lekki Expressway Lagos Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,Dele Adedeji Lekki Phase 1 Lekki Lagos,₦,"170,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Spacious Luxury 3 Bedrooms Duplex,"2nd Toll Gate, Lekki Epe Expressway Ikota Lekki Lagos",₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 4 Bedroom Terrace (all Ensuite) With 1 Room Bq Self Contained.,"Bonavista Estate Orchid Road After Chevron, Before Vgc, After Second Toll Gate Vgc Lekki Lagos",₦,"50,000,000/sqm",0,0,0, beds, baths, Toilets +Pay 10% Only And Spread Balance Over 5 Years,Off Lekki Expressway Lagos Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedrooms Terrace Duplex In Orchid With Flexible Payment,Lekki Epe Expressway Chevron Lekki Lagos,₦,"47,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished And Luxury 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",1,0,0,4 beds,4 baths,5 Toilets +Fully Automated 5 Bedrooms Smart Home,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fast Selling Plots Of Land At The Irving Park Awoyaya Lekki,Awoyaya Lekki Ikate Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +"Luxury 3 Bedroom Apartment With Rooms En Suite, Maid's Room And Bq",Amaechi Onuoha Crescent Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace House With Excellent Facilities,Salem Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace House With Excellent Facilities,Salem Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Salem Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ologolo Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedrooms Apartment,Orchid Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Terrace Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With A Room Bq In A Very Clean Estate. Certificate Of Occupancy,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 New Units Of 5 Bedroom Duplex Houses,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,Orchid Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Uxurious Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,2nd Toll Gate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Fully Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets +Newly Built 5 Detached Duplex With Swimming Pool + Bq,2nd Toll Gate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedrooms Detached Duplex,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex And A Room Bq,"2nd Toll Gate, Lekki Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Exquisitely Finished Elegant 5 Bedroom Detached Duplex With Cinema, Swimming Pool & Gym",Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,7 Toilets +Beautiful Newly Built 4 Semi Detached Duplex With Bq,2md Toll Gate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets +Finished 4 Bedroom Terrace Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bw,2nd Toll Gate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Two Bedrooms Contemporary Apartments,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Fully Detached Duplex And 1 Room Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 5 Bedroom Fully Detached Duplex And A Room Bq,Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Bedrooms Terrace Duplex With Bq,2nd Toll Gate Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautifully Finished 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notch Luxury Fully Finished Serviced 4 Bedroom Terrace Duplex,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch Luxury Fully Finished Serviced 4 Bedroom Terrace Duplex,Lekki Expressway Agungi Agungi Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Terrace By The Water Front,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000/sqm",0,0,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Off Tf Kuboye Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000/sqm",1,0,0,4 beds,5 baths,5 Toilets +Estate Land,"D'castonia Estate, Bogije, Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,"Oribanwa, Lekki Lagos",₦,"23,800,000",0,0,0,2 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built And Fully Serviced 3 Bedroom Flat,Ikate Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom With 3 Parlour And A 3 Bedroom Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex,Vgc Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Well Finished 4 Bedroom Semi Detached Wing Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",1,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Townhouse With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished Brand New 5 Bedroom Fully Detached Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedrooms Flat,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Build 4bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000/sqm",0,1,0,6 beds,5 baths,6 Toilets +5 Bed Room Fully Detached,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Unit Of Tastefully Finished Brand New Four (4) Bedroom Semi Detached,Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury And Automated 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Build 5bedroom Detached Duplex,Idado Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedroom Detached Duplex,Vgc Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Terrace With A Bq,Ikate Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"At Atlantic View Estate, Lekki, Eti Osa, Lga Lekki Lagos",₦,"35,000,000/day",0,0,0,1 beds, baths, Toilets +Serviced 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Spacious 3bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"2,3 And 4 Bedroom Duplex For Sale In Lekki",Abraham Adesanya Lekki Ajah Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,1, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota G.r.a Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Aborji Village, Igbogun Road, Lftz Ibeju Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom + Bq (penthouse),Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Serviced Luxury 5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Block Of 4 Units Of 3 Bedrooms Flats.,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Wing Of Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Buy And Build Land Available Few Mins From Eleko Junction,Bogije Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Built 4 Bedrooms Duplex,"Orchid, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Serviced Apartment Available In A Secured Location,Idado Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,4 baths,4 Toilets +Available Land,Peninsula Garden Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Chisco Ikate Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Duplex,"Chisco, Ikate Lekki Ikate Lekki Lagos",₦,"130,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House With 2 Room Bq,Nicon Town Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Terrace Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"80,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Estate Land,Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +12 Units Of Smart 4 Bedroom Semi Detached Duplex,"Royal Pine Estate, Orchid Road Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Camberwall Court Phase 2,Abijo Gra Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartments For Sale,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5bedroom Detached Duplex,Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Bungalow,"Thomas Estate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Duplex,"Chisco, Ikate, Lekki Lagos Ikate Lekki Lagos",₦,"100,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Masionettes,Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 3 Bedrooms Flat,Osapa London Osapa London Lekki Lagos,₦,"52,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex Available Besides Victoria Garden City,Besides Vgc Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,0 baths,0 Toilets +Estate,Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Luxurious 5 Bedroom Duplex With Bq,Ikate Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Abijo Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace With 24hrs Light,Orchid Road Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Orchid Road Chevron Lekki Lagos,₦,"54,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Semi Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Megamond Estate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Duplex With 2rooms Bq,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Smart Home Luxury 5bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom + Library Fully Detached Duplex,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Open 2bedrooms Flat,Off Lekki Express Wah Lekki Phase 1 Lekki Lagos,₦,"45,000,000/sqm",0,0,1,2 beds,2 baths,2 Toilets +4bedrooms Semi Detached Duplex With Bq,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Executive , 4 Bedrooms Fully Detached Houses For Sale At Osapa London",Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 4 Bedroom Terrace Duplex Available Besides Vgc,Vgc Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,5 Toilets +4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With 2 Rooms Detached Bq, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Terrace,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Duplex,"Chevron Estate, Lekki Lagos Chevron Lekki Lagos",₦,"110,000,000/sqm",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 5 Bedrooms,Chevron Lekki Lagos,₦,"125,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Building,Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Built 4 Bedroom Detached Duplex See Tour,Ikota Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 2 Bedrooms Flat,Agungi Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex With Pool & Bq, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Secure This 3 Bedroom Terrace Duplex Available Beside Vgc With 30% Deposit And Spread Payment Up To A Year,Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Bedroom Luxury Apartment,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex With Bq,Ikate Lekki Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +Land,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Aborji Village, Igbogun Road, Lftz Ibeju Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Furnished 4 Bedrooms Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Terraced Duplex,Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets +New Built 4 Bedroom Terrace Duplex See Video Tour,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedrooms Flat With Bq,Chisco Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +Nice 4 Bedrooms Duplex,Chevron Lekki Lagos,₦,"85,000,000/sqm",0,0,1,4 beds,4 baths,5 Toilets +Exquisitely Designed And Well Finished 5 Bedrooms Detached Duplex With Bq And Swimming Pool,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Duplex,Chevron Estate Chevron Lekki Lagos,₦,"115,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets +Estate Land,Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Duplex,"Estate, Chevron, Lekki Lagos Chevron Lekki Lagos",₦,"120,000,000/sqm",0,0,1,5 beds,6 baths,6 Toilets +3 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Duplex,Chevron Lekki Lagos,₦,"120,000,000/sqm",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Duplex,"Chevron Area, Lekki Lagos Chevron Lekki Lagos",₦,"120,000,000/sqm",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Detached House Within Ikate, Lekki",Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Plots Of Land With 7000sq Ft Warehouse,Ilasan Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Gardens Horizone 2 Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Wonderful 3 Bedroom Flat For Sale,Prime Water Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +5bedroom Terrace Duplex Lekki,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Maisonette Terrace House (negotiable),"Off Meadow Hall Way, Ikate Lekki Lagos",₦,"115,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Terrace House (negotiable), Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,1 Toilets +2 X 4 Bedroom Semi Detached Maisonette,Off Meadow Hallway Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Fully Serviced 4 Bedroom Terrace Duplex With B.q |ikota, Lekki |600sqm Land Size | This Property Is Well Furnished With Fitted Kitchen",Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached House,Off Nike Art Gallery Road Ikate Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +4 Units Of 4 Bedroom Semi Detached Terrace Houses,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Semi Detached Terrace Houses,Off Orchid Road Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 3 Bedroom And 2 Bedroom Apartment With Bq,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,0 Toilets +Two Units Of 4 Bedroom Semi Detached Maisonette,"Alma By Micmar Estates, Off Meadow Hallway Ikate Lekki Lagos",₦,"100,000,000",0,0,0,2 beds,0 baths,0 Toilets +Partially Furnished 4 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +9 Bedroom Fully Detached Duplex,Close To Nicon Nicon Town Lekki Lagos,₦,"300,000,000",0,1,0,9 beds,9 baths,10 Toilets +6 Plots Of Land,Ologolo Jakande Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom Fully Detached Duplex,Close To Nicon Nicon Town Lekki Lagos,₦,"300,000,000",0,1,0,9 beds,9 baths,10 Toilets +Newly Built 4bedroom Semi Detached Duplex,Orchard Road. Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Mansion In Lekki Phase 1 Admiralty Way,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1,7 beds,5 baths, Toilets +Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets +Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets +Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets +Newly Built 7 Bedroom Mansion In Lekki Admiralty Way Lekki Phase 1,16 Olaitan Senbanjo Lekki Phase 1 Lekki Lagos,₦,"400,000,000/sqm",0,0,1,7 beds,7 baths,5 Toilets +Newly Built 4 Bed Apartment,Vgc Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Demi Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In High Toned Neighborhood,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +Duplex,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Serviced Flat,"Plot 14, Hon. Saheed Bankole Street Off Ologolo Village Road, Ologolo Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +8 Bedroom Apartment,Ajah Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,8 beds,6 baths,6 Toilets +750 Sqm Land,Ajah Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +600 Sqm Land,Ajah Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +1140 Sqm Land,Chevron Drive Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached House,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Massive 3 Bedroom Apartment,S Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Duplex Ikota Lekki Ikota,Ikota Mega Chicken Ikota Lekki Lagos,₦,"67,000,000/sqm",0,0,1,4 beds, baths, Toilets +5 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex Apartment,Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Luxury 5bedroom Fully Detached,Izu Court Estate Chevron Chevron Lekki Lagos,₦,"99,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex @ Marwa Lekki Phase 1,Marwa Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Z Vgc Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Smart 4bedroom Terrace With & Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cheap 8 Hectares Of Commercial Land,"Along Freedom Way, Behind Periwinkle Estate, Lekki Phase 1, Lagos Nigeria. Lekki Phase 1 Lekki Lagos",₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale.....????...n75million.... Chevron Lagos,Chevron Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +2/3bedroom Flat,Ikota Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4bedroom Terrance,Chevron Drive Chevron Lekki Lagos,₦,"63,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Luxury 5 Bedroom Detached Duplex,"Roxbury Estate, Opp Vgc Vgc Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom [email protected] Osappa,Osapa Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Opposite Mega Chicken Ikota Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Terrace Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 6 Bedroom Duplex With 2 Room Bq,Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,6 beds, baths, Toilets +Luxury 9nos Of 3bedroom Each,Off Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"700,000,000/year",0,0,0, beds, baths, Toilets +Luxury 5bedroom Fully Detached Duplex,Right Side Lekki Phase 1 Lekki Lagos,₦,"250,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom [email protected] Osappa,Osapa Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land At Orange Island,Z Vgc Lekki Lagos,₦,"220,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Magnificent Fully Serviced 4bedroom Semi Detached,2nd Toll Gate By Chevron Lekki Phase 1 Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +For Sale.....????...n83million.... Chevron Lagos,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 5bedroom Fully Detached,"Izu Court, Chevron Drive Chevron Lekki Lagos",₦,"99,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +*land,Z Lekki Phase 1 Lekki Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Without Bq,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Boys Quarter And Swimming Pool, Ikota Lekki Lagos,₦,"180,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Land,Z Vgc Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +Exotic Brand New Fully Detached 5bedroom Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Stunning 3 Bedroom Terraced Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets +Waterfront Residential Land For Sale At Ikate Elegushi Lagos Nigeria,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +For Sale...????...80m..... Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Super Luxury Duplex,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ologolo Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Smart 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000/year",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 9 Units Of 3 Bedroom Apartment,Idado Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Hotel For Sale At Vgc Lekki Lagos Nigeria,Nicon Hotel At Vgc Lekki Lagos Vgc Lekki Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths,10 Toilets +Tastefully Finished 5 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"111,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Z Oral Estate Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Four Bedroom Detached With Open Top Bq In A Serene Environment At Lekki Scheme2 Close To Abraham Adesanya,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3,4and 5 Bedroom Duplex Fully Detached Semi Detached And Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +"3,4and 5 Bedroom Duplex Fully Detached Semi Detached And Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +"3,4&5 Bedroom Duplex, Fully Detached, Semi Dear, Terrace",Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Terraced Duplex,Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,2nd Tollgate Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Six Bedroom Furniture Detached With Swimming Pool & Gym Three Room Bq,A Gate Nicon Town Lekki Lagos,₦,"850,000,000/day",0,0,1,6 beds,6 baths,6 Toilets +Newly Spacious 4 Bedroom Fully Detached Duplex,Orchid Road Vgc Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Units Of Luxury 4bedrooms & 1 Bq Town House .,Ikate In A Secured Estate Ikate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Excellent Features,Megamound Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Completed Bedroom Semi Detached Duplex,Elegushi Road Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,1 Toilets +Land,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Fully Serviced 3 Bedroom Apartments,Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,4 baths,5 Toilets +3 Bedrooms Luxury Apartment,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,0 baths,0 Toilets +Fully Serviced 3bedroom Apartments For Sale,Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Automated & Uniquely Built 5bedroom Fully Detached House With Swimming Pool, Cinema, Camera & Fingerprint Access Door, Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Contemporary Semi Detached Duplex With Bq,2nd Toll Gate Orchid Chevron Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Exquisite Four Semi Detached House,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Spacious 5 Bedroom Detached House,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Exquisite Five Bedroom Detached House,Osapa London Lekki Lagos,₦,"390,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Exquisite Four Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plot Of Land Available For Sale Besides Cowrie Creek,Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Distress Sale Five Bedroom Fully Detached Property,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment,Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Smart Luxury Five Bedroom Home,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With,Osapa London Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Fully Detached House, Agungi Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,4 baths,6 Toilets +Newly Built Exquisite Five Bedroom Detached House,Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Smart Luxury Five Bedroom Detached House,Osapa London Lekki Lagos,₦,"450,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With 2 Bedroom Bungalow,Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,5 Toilets +Four Bedroom Semi Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Fully Detached House With Bq (self Compound),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,0,0,3 beds,3 baths,4 Toilets +Good Rent Value (airbnb) 8 Units Of 3 Bedroom Flats & 8 Units Of 1 Bedroom Flats With Elevator,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,3 beds,3 baths,4 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq (2 Units Available),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"118,000,000",1,0,0,5 beds,5 baths,6 Toilets +Fairly Used 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"102,000,000",1,0,0,5 beds,5 baths,6 Toilets +"Beautifully Furnished 5bedroom Fully Detached Duplex With Swimming Pool, Bq Spacious Kitchen In A Serene Estate",Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +"Exquisitely Finished 5bedrooms + Penthouse Fully Detached Duplex + S.pool,cinema, Bq",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Smart Contemporary Units Of 4bedroom Terraces With Fully Fitted Kitchen,Ikota Ikota Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Renovated 5bedroom Fully Detached Duplex With Bq In A Serene Estate In Chevron,Chevron Chevron Lekki Lagos,₦,"83,000,000",1,0,0,5 beds,5 baths,6 Toilets +Beautiful 4bedroom Fully Detached With Bq .in A Serene Estate,Agungi Agungi Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Investor's Delight 4 Bedroom Fully Serviced Terrace Duple In A Serene Environment,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Fairly Used 5bedroom Fully Detached Duplex With Bq In A Serene Estate,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,5 baths,6 Toilets +"Investment Delight, Serviced Estate Units Of 4bedroom Semi Detached Duplex With Bq",Ikota Gra Ikota Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Units Of 4bedroom Semi Detached Duplex With Bq,By Chevron 2nd Toll Gate Orchid Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built Contemporary 5bedroom Fully Detached House With Very Spacious Kitchen, Bq (space To Build Swimming Pool And Outdoor Bar) Land Size: 600sqm",Orchid Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Lovely Finished Units Of 4bedroom Semi Detached Duplex With Bq In A Serene Estate In Chevron,Chevron Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Investment Delight In A Serviced Estate Units Of 4bedroom Semi Detached House,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000/month",1,1,1,4 beds,4 baths,5 Toilets +"Uniquely Built Units Of 5bedroom Fully Detached House With Swimming Pool, Home Theatre/cinema, Bq In A Serene Environment",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built Contemporary 6bedrooms In Total 5bedrooms Plus A Penthouse Fully Detached Duplex With 2rooms Bq In A Serene Estate With Tree Beautification,Lekki County Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Exquisitely Finished Contemporary 5bedrooms + Penthouse Fully Detached Duplex With Swimming Pool, Study Room, Fitted Kitchen, Bq In A Serene Environment And Well Layered Out Estate",Osapa London Osapa London Lekki Lagos,₦,"450,000,000",1,1,1,6 beds,6 baths,7 Toilets +Newly Built Contemporary 4bedroom Semi Detached Duplex With Fittings And Bq In A Serene Estate,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"76,000,000/month",0,1,1,4 beds,4 baths,5 Toilets +Newly Built Units Of 4bedroom Semi Detached Duplex With Bq Serene Environment Orchid,Orchid Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Lovely Contemporary 5bedroom Fully Detached Duplex With Swimming Pool, Inverter, Fitted Kitchen & Bq",Osapa London Osapa London Lekki Lagos,₦,"190,000,000",1,1,1,5 beds,5 baths,6 Toilets +Beautiful 5bedroom Fully Detached House With Bq Spacious Premises For More Than 6 Cars .(swimming Pool Can Be Fitted) In A Serene Environment,Ikate Ikate Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets +Smart Contemporary Units Of 4bedroom Terraces With Fully Fitted Kitchen,Ikota Ikota Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Luxuriously Finished 5bedroom Contemporary Detached Duplex With Swimming Pool, Gym, Bq In An Estate",Osapa London Lekki Osapa London Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +Lovely Built 5 Bedroom Fully Detached Duplex With Bq In A Serene Estate,Osapa London Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Smart Contemporary Home 4bedrooms & 5bedrooms Semi & Fully Detached Duplexes,By Chevron 2nd Toll Gate Chevron Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +Units Of 2 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"48,000,000",1,1,1,2 beds,2 baths,3 Toilets +Corner Pic 3bedroom Terrace House With Bq And Water Treatment Within A Serene Estate .,New Road Igbo Efon Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +Distress Sale 85% Completed 2 Units Of 3 Bedrooms Flat Within A Secured Non Flooded Gated Close.,Alpha Beach Axis Igbo Efon Before Chevron Drive Igbo Efon Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Plots Of Land,Aro Town Ologolo Lekki Lagos,₦,"120,000,000/year",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With Bq And Swimming Pool On Governors Consent,"Vgc, Chevron, Eleganza, Etc. Ikota Lekki Lagos",₦,"160,000,000",0,1,1,5 beds,5 baths,5 Toilets +Raregem Business Consultancy Limited,Ikota Lekki Lagos,₦,"130,000,000/year",1,1,0,6 beds,6 baths,6 Toilets +2 Bedroom Apartment,Olayemi Court Oniru Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 4bedrooms Fully Detached Duplex Fully Furnished .,Estate Ikate Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths,5 Toilets +Newly Built 5 Bedroom House,Van Daniels Estate Lekki Phase 2 Lekki Lagos,₦,"14,000,000/year",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Apartment,Van Daniels Estate Orchid Lekki Phase 2 Lekki Lagos,₦,"14,000,000/year",1,1,1,5 beds,5 baths,6 Toilets +4bedroom Terrace,Jankade First Gate Jakande Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +Nice 4 Bedroom Duplex With A Bq,In A Gated Street Next To Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nice 4 Bedroom Duplex With A Bq,In A Gated Street Next To Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Fitted And Well Finished 3 Bedroom Apartment With A Room Bq On 7th Floor,"Safecourt Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,0,1,3 beds,3 baths,4 Toilets +Newly Built 11 Units Of Brandnew 4 Bedroom Duplex,"County Estate,ikota Gra Ikota Lekki Lagos",₦,"65,000,000",0,1,1, beds, baths, Toilets +Contemprary And End To End Finished 4bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex At Vgc,Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"38,000,000",1,0,0,2 beds,0 baths,0 Toilets +"Twins 5 Bedroom Semi Detached House With Boysquarter At Agungi, Lekki",Agungi Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Lovely 9 Bedroom Duplex,Z Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,9 beds,0 baths,0 Toilets +"Luxurious Units Of Flats, Miniflats And Self Contain", Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Z Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished 3 Bedroom With Inbuilt Boy's Quarters, Ikate Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely And Spacious 4 Bedroom Terraced House,Z Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terraced Duplex,Z Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nice 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Splendid 5 Bedroom Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Boysquarter Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds, baths, Toilets +Newly Serviced 4 Bedroom Terraced House With Boys Quarter,Z Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds,0 baths,0 Toilets +Hot 8 Units Of 3 Bedroom Flats Available,Lekki Lagos,₦,"210,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely 4 Bedroom Duplex And 4 Penthouse Shortlet Apartment, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Units Of 3 Bedroom Flats With Boys Quarters,Bridge Gate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Brand New Luxury Of 16 Residential Apartments,"@ Mash Street Off Cornelius Odinjour Crescent Off Hammed Kasumu Street, Opposit, Chevy View Estate, Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terraced Duplexes,Z Ikota Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,0 baths,0 Toilets +Newly Built 2 Units Of 4 Bedroom Semi Detached Duplex With Boys Quarter Available,Z Ikate Lekki Lagos,₦,"108,000,000",0,0,1,4 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Spacious 5 Bedroom Duplex Available For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +"4bedroom Terrace Duplex, New Building.",Illasan New Road Ilasan Lekki Lagos,₦,"72,000,000/month",0,1,0,4 beds, baths,5 Toilets +Shop,Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautifully 5 Bedroom Fully Detached Duplex With Bq .,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detetach With Swimming Pool,Nicon Town Lekki Lagos,$,"2,000,000/sqm",0,0,0,5 beds,5 baths,5 Toilets +Massive 5bedroom Duplex For Sale In Vgc.,Lekki Epe Express Way. Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +2000sqm Land At A Strategic Location For Both Commercial And Resident For Sale At Lekki .ikate.,Lekki Epe Express Way. Ikate Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Semi Detached Duplex,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4bedroom Luxury Duplex,2nd Toll.gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Comptemporary Duplex With Bq,Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4bedroom Detached Duplex With Bq,Vgc Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Luxery Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,7 baths,7 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,0 baths,0 Toilets +Lovely Finished Semi Detached Duplexes At Chevron Area,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,5 Toilets +"Luxury 4 Bedroom Semi Detached Duplex ,bq , Guest Toilet ,multimedia, Cctv, Jacuzzi For Sale Vgc",Vgc Lekki Lagos,₦,"190,000,000",0,1,0, beds,4 baths,5 Toilets +4bedroom Terrace Duplex On 3 Floors,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Deatched Duplex,Close To Palace Ikate Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With Penthouse, Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Bedrooms Apartment,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 3bedroom Semi Detached Duplex With Bq,Awoyaya Chevron Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets +Available Terrace Houses,"Lekki 2nd Toll, Orchid Road Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flats With Boys Quarter, Ikate Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,3 Toilets +Newly Built 4bedroom Luxury Duplex,2nd Toll.gate Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Constructed Modern House With 5 Bedroom Fully Detached, Stand Alone Duplex Available With One Room Bq",Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Orchid Lekki Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 5bedroom Duplex With Swimming,Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets +Almost Ready 5 Bedroom Fully Detached Duplex With Two Room Bq, Vgc Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex Within A Serviced Estate,Chevron Drive Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +"5 Bedroom Luxury Fully Detached Duplex With Pool ,cinema And Bq",Pinnock Estate Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,7 baths,7 Toilets +3 & 4 Bedroom Terraces,Off Orchid Road Lekki Ikota Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths, Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedrooms & 3 Bedrooms Apartments,Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +"Of Six, Four Bedroom, Family Dwellings That Offers Buyers A Great Opportunity","Alma Beach Estates, Elegushi, Lekki Ikate Lekki Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,4 Toilets +Lovely Finished Terraced Duplexes At Chevron Area,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex Within A Serviced Estate,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached Duplex With Bq And Swimming Pool,Ikota Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths, Toilets +Newly Built 2 And 3 Bedroom Apartment For Sale,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraces, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrooms Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Detached Duplex With Bq,"...,. Ikota Lekki Lagos",₦,"78,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool And Pent House.,Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Spaciou 5bedroom Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 5bedroom Luxury Fully Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedrooms Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Spacious Luxury Chevron Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Government Consent,"Ologolo Town Lekki, Close To The Road Ologolo Lekki Lagos",₦,"55,000,000/sqm",1,1,0,5 beds,5 baths,6 Toilets +*??classy 5 Bedroom Fully Detached Duplex??*,Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Hotel,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,"Chevron Drive, Lekki. Chevron Lekki Lagos",₦,"99,000,000",0,1,1,5 beds,6 baths,6 Toilets +Merit Park,Iberekodo Jakande Lekki Lagos,₦,"10,000,000",1,0,0, beds, baths, Toilets +Maiyegn Beach Estate,"Beach Gate, Jakande Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Fully Detached House,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000/sqm",0,1,0,5 beds,7 baths,7 Toilets +Brand New 3 Bedroom Ensuite Terrace House,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Mixed Use Waterfront Land Measuring 600sqm,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lake View Park Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built Beautiful 4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds, baths, Toilets +New And Well Finish 5 Bedroom Detached House In At Chevron,Off Chevron Alternative Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 5bedroom Detached House With Swimming Pool, Cinema In Lekki1",Off Whitesand School Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House At Ologolo,Off Ologolo Road Ologolo Lekki Lagos,₦,"65,000,000",1,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lake View Park Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With One Room Bq,Victoria Crest Apartments Osapa London Lekki Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,3 Toilets +Brand New 4bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Tastefully Finished And Serviced 4 Bedroom Terrace House With A Room Bq, Swimming Pool And Play Ground.",Z Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,4 Toilets +A Tastefully Finished 5 Bedroom Detached Duplex,Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +) Four Bedroom Semi Detached Duplex,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"125,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Z Ikate Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Z Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium Land In Whales County Estate Phase 2,Chevron Lekki Lagos,₦,"52,000,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Duplex With Bq In A Serene Environment,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,3 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"83,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Bedroom House With 2 Room And Parlor Guest Chalet, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets +"Fully Automated Luxury Home With Pool, Gym And Cinema",Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,6 baths, Toilets +Amazing And Spacious Semi Detached House,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,6 beds, baths, Toilets +A Beautiful 5 Bedroom Detached Duplex You You,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds, baths, Toilets +A Beautiful Well Designed 4 Bedroom Terrace In A Nice Environment,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds, baths, Toilets +Commodious 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"94,000,000",0,1,0,5 beds,5 baths,5 Toilets +Off Plan 2 Bedroom Flat With Excellent Facilities,Opposite Nicon Town Nicon Town Lekki Lagos,₦,"46,500,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"800,000,000",0,1,0,6 beds,7 baths,9 Toilets +6900sqm Commercial Land,Landmark : House On The Rock Ikate Lekki Lagos,₦,"240,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"90,000,000",1,0,0,4 beds,5 baths,5 Toilets +1000sqm Land,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 1 Bedroom Maisonette With Excellent Facilities (offplan),Bloom Heaven Residences Ikate Lekki Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +Available Land,Lekki Lagos,₦,"199,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Lands (various Prices),Lekki Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"185,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ikate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Joint Venture,Ologolo Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex In A Very Lovely Location,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I, Lagos State. Ikate Lekki Lagos",₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Maisonette Duplex With Fantastic Finishes,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I Ikate Lekki Lagos",₦,"95,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Duplex In Awesome Design & Finishes,"Plot 13, Block 139, Dele Ogunbowale Street, Lekki Peninsula Scheme I Ikate Lekki Lagos",₦,"105,000,000",1,1,1,3 beds,3 baths,4 Toilets +"5 Bedroom Contemporary House With Cinema, Swimming Pool And Bq",Ikate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex Fully Detached With A Bq,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Vgc Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Vgc Vgc Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Vgc Vgc Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terraced Duplex House,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex House With A Bq,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +"A 600sqm Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Distress Sale Of 5 Bedroom Duplex In Chevyview Estate, Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A 800sqm Waterfront Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Mixed Use Dry Land For Sale,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +New 4bedroom Duplex In Ologolo Lekki Phase 1,Ologolo Ologolo Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Fully Detached Duplex In Osapa London For Sale,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Cinema In Gated Estate Osapa London,Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A 1500sqm Waterfront Land For Sale Off Admiralty Way, Lekki Phase 1",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Classic Luxury Spacious 3 Bedroom Block Of Flats With Bq,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Bungalow Penthouse With Bq,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Maruwa Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Awesomely Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Gardens Phase2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Lands (various Prices),Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land And Building,"Aaron Irabor Street, Osapa Osapa London Lekki Lagos",₦,"90,000,000/sqm",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Detached Duplexes With Bq,Oniru Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex,Back Of Romey Garden Ilasan Lekki Lagos,₦,"71,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brand New 4 Bedroom Terrace With Bq At Osapa, Lekki",Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,5 Toilets +Brand New 4 Bedroom Terrace With Bq,Z Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Newly Built 4bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of Brand New & Exquisitely Finished 5 Bedroom Detached Houses,Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex & Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Detached Duplex With A Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets +Lovely 4 Bedroom Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +Land,At Bakare Estate Agungi Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 6 Bedroom Detached Duplex With A Bq,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000/sqm",0,0,1,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrooms Fully Detached With Bq Available For Sale,Osapa London Osapa London Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Luxurious 4 Bedrooms With Bq,Orchid Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment,Chevron Lagos Ng Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With A Room Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooom 3 Reception With 2 Room Bq,Victoria Garden City (vgc) Lagos Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom With Bq,Osapa Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Luxurious 5 Bedroom Fully Detached,Osapa Lagos Ng Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets +"4 Bedroom Semi Detached, 2 Rooms Maid Quarters",Victoria Garden City (vgc) Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Orchid Lagos Ng Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Flat With Bq,Ikate Elegushi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished & Spacious 4 Bedroom Luxury Semi Detached Duplex With Bq.,Orchid Lagos Ng Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Dry Land 10 Plots On Orchid Hotel Road Before The Roundabout,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,7 baths,6 Toilets +Three Bedroom Terraced Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,1,3 beds,4 baths,5 Toilets +Land,Twinlake Estate By Opposite Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq And Swimming Pool,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4 Plot Of Land Sand Filled, Facing Express",Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex With Bq,Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex With Bq,Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached With Bq,Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Semi Detached Bungalow With Bq,Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex With A 2 Room Bq,Nicon Town Lekki Lagos,₦,"500,000,000",0,0,1,6 beds, baths, Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With A 1 Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,1,4 beds, baths, Toilets +2 Bed Apartment With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Ologolo Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi /fully Detached,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths, Toilets +Government Excision,"Off La Campaign Tropicana Beach Resort,ibeju,lekki. Lekki Phase 2 Lekki Lagos",₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built Bbeautifully 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Elegant Brand New 2 Units Of 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Massive 4 Bedroom Fully Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Super Executive 2&3 Bedroom Block Of Flats,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets +"2 Bedroom Luxury Apartment By Chevron, Lekki",Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Luxury Apartment,Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Luxury Apartment,Orchid Road By Chevron Chevron Lekki Lagos,₦,"35,000,000/year",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Terrace Duplex,Idado Idado Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Excellent Facilities,Orchid Road Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Idado Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Terraced Duplexes,Ocean Bay Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Maisonettes,Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plot Of Land,Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +"Newly Built 2 Bedroom Flats, 1 Room Bq + A Mini Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flats","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +"Newly Built 2 Bedroom Flats 1 Room B/q, And 1 Bedroom Flat","Debo's Court, Olusola Harris Way, And Accessible From Mobil Estate Road, Ajah, Lekki Scheme 2. Lekki Phase 2 Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 6 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,0 baths,0 Toilets +"Viable ""corner Piece"" Detached Duplex",Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Castle Bungalow + Bq,"De Castle Luxury Empire Homes, Oribanwa Bustop Awoyaya , 2min From Mayfair Gardens Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,0 baths,0 Toilets +Available And Closable Lands,"Mini Estate, On Orchid Road Immediately After Buene Vista Estate Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Available Land,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Jakande Lekki Lagos,₦,"100,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq.,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds, baths, Toilets +Exquisitely Built 4 Bedroom Terrace Duplex,Off Chevron Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Swimming,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +Two Bedroom Flat,The Signature Terrace Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,0 baths,0 Toilets +Kirving Park Estate Awoyaya Lekki,"Oribawa Bustop Awoyaya , 2min From Mayfair Gardens. Lekki Lagos",₦,"12,350,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land In A Fenced And Gated Area,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached Building,Lekki Lagos,₦,"80,000,000",0,0,0,7 beds,0 baths,0 Toilets +Tartiana Court,Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Bare Land,Ikate Lekki Lagos,₦,"180,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +"Camberwall Advantage 1 & 2 (2,3,4 Bedrooms)",Ikate Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment + Bq,"Ajiwe Bus Stop, By Abraham Adesanya Roundabout, Lekki Lagos",₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets +Brand New Spacious 5 Bedroom Semi Detached Duplex With Bq,Vgc Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +Irving Park Estate Awoyaya (300/450/600 Sqm),"Oribawa Bustop Awoyaya, Lekki Lagos",₦,"6,650,000",0,0,0,0 beds,0 baths,0 Toilets +Heyday Park Estate Phase 1,Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedrooms Semi Detached Duplex, Pantheon Smart Homes",Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +Ay Homes Golden Castle Buyback Plan,Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +Landvest 2.0 Investment,Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available 30 Plots Of Land,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Bare Land,Beside Periwinkle Estate.ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Bare Land,Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment + Bq,"Lekki Pride Estate, Lekki Lagos",₦,"22,000,000",0,0,0,1 beds,0 baths,0 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Zylus Group International Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +3bedroom Flat,Prime Water Garden Estate Lekki Phase 1 Lekki Lagos,₦,"37,000,000",1,1,1,3 beds,4 baths,4 Toilets +Off Plan 2 Bedroom Apartment,Camberwall Advantage 1 & 2 Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets +Available Bare Land,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedrooms Terrace Duplex,Mega Mound Estate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex All Rooms Ensuite.,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land Banking Development Project 9.0 Top Up,Lekki Lagos,₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Maisonette +bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Pinnacle Prestige Homes,"Oju Agbe, After Eleko Juncture, Ibeju Lekki Community, Lagos. Vgc Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Available Bare Land,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Bare Land Sand Filled Ready For Immediate Development.,Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Lands,Ikota Lekki Lagos,₦,"135,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New Four Bedroom Terrace Inside A Serviced Estate,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Jakande Lekki Lagos,₦,"65,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 4, And 5 Bedroom Detached Duplex In Chevron",Chevron Lekki Lagos,₦,"76,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Terraced Duplex House,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom + Bq (penthouse),Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Luxury 4 Bedroom Fully Detached Duplex With Bq At Osopa London, Lekki Lagos",Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4bedroom Smart Luxury Duplex In A Serene Environment,Orchid Hotel Road Lekki 2nd Toll Gate By Chevron Chevron Lekki Lagos,₦,"76,000,000/sqm",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Luxury Smart Duplex In A Serene Environment In Chevron Lekki Ajah,Orchid Rd By Lekki 2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"76,000,000/sqm",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex Plus Bq At Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With Bq At Osapa London Beside Pinnock Beach Estate,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Conservation Road Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lands At Max Bay Estate Phase 1,Eleko Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets +Lands At Max Gardens Estate,"Odoemi, Ebute Okum Abakeeta Community Lekki Lagos",₦,"500,000",0,0,0, beds, baths, Toilets +A Tastefully Finishded 4 Bedroom Semi Detached Duplex With A Swimming Pool,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Tastefully Finished Fully Detached Duplex On A Driveway Location: Chevron Estate,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Semi Detached Duplex,Ikota Gra Lekki Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths, Toilets +"A Tastefully Finished 4 Bedroom Semi Detached Duplex, With 1 Room Bq",Chevron Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Sharp 5bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex With 2 Room Bq (including Everything Inside),Nicon Estate Nicon Town Lekki Lagos,₦,"460,000,000",0,0,1,6 beds,6 baths,7 Toilets +A Tastefully Newly Built 4 Bedroom Fully Detached Duplex In Ikota Estate,Ikota Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Tastefully Finished 4 Bedroom Semi Detached Duplex On A Driveway In Ikota Estate,Ikota Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex With A Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Detached Duplex,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,5 Toilets +Governor's Consent,Lekki Phase 2 Lekki Lagos,₦,"60,000,000/sqm",0,1,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Conservation Road Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bed Terrace Duplex With Excellent Facilities,Lekki Conservation Road Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bed Apartment With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +2bedroom Flat , Chevron Lekki Lagos,₦,"30,000,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Ikota Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex With 1 Boysquater.,Chevy View Estate. Chevron Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex And A Room Bq,Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds, baths, Toilets +5bedroom Detached Duplex, Ikate Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious House Available, Jakande Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Detached House With 2 Boys Quarter Available, Lekki Phase 1 Lekki Lagos,₦,"280,000,000/sqm",0,0,0,5 beds,0 baths,0 Toilets +Decently Built Luxury 4 Bed Contemporary Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Super Land For Jv At The Beginning Of Orchid Road,Orchid Road Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Magnificent 5bedroom Duplex With Room Boys Quaters,Megamond Estate Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +Decent 4 Bedrooms Fully Detached Terraced Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +"Primrose Court, Orchid Road 4 Bedroom Terrace Duplexes",Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,4 Toilets +All En Suite Fully Detached 4 Bedroom Duplex With A Bq,Alhaji Maruf Ali Owe Street. Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +55.6hectares Of Land Available At Chevron Drive,Chevron Alternative Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely Spacious 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Fully Detached 5bed All Rooms En Suite Duplex On 3floors,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Magnificent 5 Bedroom Fully Detached Contemporary Duplex,Lekki County Ikota Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +Decently Built Luxury 4 Bedroom Contemporary Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Gorgeous 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Sweet Land In Twin Lake Estate 110sqm,Chevron Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +A Tastefully 4 Bedroom Terrace Duplex With Standard One Room Boy Quarter,Osborne 2 Ologolo Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Beautiful 4 Bedroom Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"88,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Beautiful Luxury 5 Bedroom Fully Automated Detached Duplex With Private Cinema, And Swimming Pool",Lekki Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,6 baths,6 Toilets +Magnificent 4bedroom Duplex With Room Boys Quaters,Cluster One Estate By Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Massive Land For Jv,Ikate Lekki Lagos,₦,"250,000,000/sqm",0,0,0, beds, baths, Toilets +Magnificent 4bedroom Duplex With Room Boys Quaters,Zone C Nicon Town Estate Nicon Town Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Homes,Westend Estate Ikota Villa Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets +Exotic 5 Bedrooms Fully Detached Terraced Duplex,:osapa London Lekki. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds, baths, Toilets +Fully Detached Duplex Featuring; 4 Bedrooms (all Ensuite) With Bq/service Room,"Lakeview Park Ii Estate, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Fully Detached Terraced Duplex,Agugi Lekki Agungi Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Penthouse + Bq,Camberwell Advantage 2 Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,"Ikate Lekki, Behind Mercedes. Lekki Phase 1 Lekki Lagos",₦,"135,000,000",0,1,0,5 beds, baths, Toilets +Beautiful 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +"A Newly Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sizeable Parcel Of Land For A Jv @ Second Tollgate Lekki/epe Express,Chevron Alternative Route Chevron Lekki Lagos,₦,"4,300,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Detached Duplex,"Ikate Lekki, Behind Mercedes. Ikate Lekki Lagos",₦,"135,000,000",0,1,0,5 beds, baths, Toilets +"Nicely Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent 4bedroom Duplex With Room Boys Quaters,Idado Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Luxury 4bedroom Duplex With Bq,Opposite Nicon Town Estate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex With Swimming Pool,Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,2nd Tollgate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets +Huge Land In Lekki Phase 1 Is Waiting For Its Next Owner,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Lovely Finished 4 Bedroom Semi Detached Duplex With Bq And Security House,Chevron Drive Lekki. Idado Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +"Nicely Finished 4 Bedroom Semi Detached Duplex With Bq,",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 6 Bedroom Duplex With 2 Room Boys Quarters,Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,0 baths,0 Toilets +Brand New Standard Service 2bedroom Flat All Rooms Ensuite,Lekki Right Side By Petrocam Lekki Phase 1 Lekki Lagos,₦,"42,000,000",1,1,0,2 beds,2 baths,3 Toilets +Fantastic Land In A Most Wanted Area/ Top Celebrities Residential Area,Nicon Town Lekki Lagos,₦,"250,000,000/sqm",0,0,0, beds, baths, Toilets +1200sqm Of Dry Land For Sale,"Mike Adegbite Street, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom Terraced Duplex With Class,Osapa London Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Two Wings Duplex Of 5 Bedrooms, Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,10 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,By Lekki Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq (fully Serviced),"June Four Gardens, 5th Avenue, Osapa London Osapa London Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished Luxury 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Terraced Duplex In A Serene Environment,Ologolo Lekki Lagos,₦,"59,000,000/day",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With 2 Rooms Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Finished Brand New Serviced 3bedroom,Seagate Estate On Spar Road Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5, Bedroom Duplex With Bq And Swimming Pool","Vgc, Lekki, Lagos Vgc Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,V.g.c Vgc Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Semi Detached Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex At Osapa London,Off Femi Okunu Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 3 Bedroom Flat With Inbuilt Boys Quarter,Ikate Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Fully Serviced 2 Bedrooms Apartment,Ilasan Lekki Lagos,₦,"40,000,000/year",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"53,000,000/month",1,1,0,4 beds,4 baths,5 Toilets +4 Unit 4 Bedroom Terrace And Bq In A Serene Neighbourhood,"Elasen Estate, Orchid Road Opposite Eleganza, Lekki Second Toll Gate Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex (three Step) With A Room Bq,Ocean Bay Estate At Orchid Road Second Toll Gate Ikota Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Terrace House With A Bq In A Gated And Serviced House,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Terrace, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,7 Toilets +3 Units Of 5 Bedroom Detached House On 550sqm Each,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,5 baths,6 Toilets +5bed Room Fully Detached Duplex With Pool And 2 Self Contained (with Mini Kitchen) Bq In Mayfair Gardens Estate Awoyaya.lekki.price N95m,"Mayfair Garden Estate,awoyaya,lekki Lekki Lagos",₦,"95,000,000",0,0,0,5 beds, baths, Toilets +Upscale Semi Detached 5 Bedroom 5.5 Bathroom Home – Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,6 baths,7 Toilets +12 Unit 4 Bedroom Terrace And 5 Bedroom Detached,"West Bridge Estate 11 Orchid Road, Opposite Eliganza, Lekki Chevron Lekki Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,6 Toilets +"800sqm To 12,000sqm Of Land",Twin Lake Estate Chevron Lekki Lagos,₦,"170,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Brand New Tastefully Finished 6 Bedrooms Fully Detached House For Sale At Chevy View, Lekki.",Chevy View Chevron Lekki Lagos,₦,"68,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached House,"Off Freedom Way, Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 4 Bedroom Terrace,Igbo Efon Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5bedroom Detached Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,1,0,5 beds,5 baths, Toilets +5bedroom Duplex With Bq In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths, Toilets +Brand New 2 Bedroom Flat, Ikate Lekki Lagos,₦,"6,300,000",0,0,0,2 beds,2 baths,0 Toilets +6 Bedroom Detached Duplex House,Pinnock Beach Estate Osapa London Lekki Lagos Lekki Lagos,₦,"450,000,000/year",0,1,0,6 beds,6 baths,10 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq...... Lekki 2nd Tollgate Lagos,Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Automated Smart 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Detached Duplex With A Room Bq At Chevron Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 4 Bedroom Semi Detached Duplex With A Room Bq.....99%,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affortable+fully Serviced!!! Top Location Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,3 baths,5 Toilets +Newly Built Six Units Of 4 Bedroom Semi Detached Duplex In A Serviced Estate,Orchid Road Off Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New Affordable Spacious 4 Bedroom Semi Detached Duplex With A Room Bq..... 95% Finished,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq.., Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Beautiful 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Semi Detached Duplex With Bq, Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Hot Deal Newly Built 5 Bedroom, Detached Duplex With One Room Bq",Osapa London Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With A Room Bq And Swimming Pool...... Lekki County Lagos,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Boys Quarters Lekki,Lekki County Homes Megamound Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Megamound Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Lovely 5 Bedroom Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxuriously Structured 4 Bedroom Semi Detached Duplex Plus Bq For Sale At Osapa London. Lekki,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths, Toilets +Luxuriously Built 5 Bedroom Detached Duplex For Sale At Ikota Lekki,Around Megamound Lekki County Home Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Fantastic 3 Bedroom Flat, Lekki Lagos,₦,"29,000,000/sqm",0,0,0,3 beds,0 baths,0 Toilets +Standard 3 Bedroom Apartment Plus Bq,"Queens Court, Bera Estate Chevron Lekki Lagos",₦,"29,000,000",0,0,0,3 beds,0 baths,0 Toilets +Executively Built 5 Bedroom Detached Duplex Plus Bq For Sale At Chevron Alternative Route. Lekki,Chevron Alternative Route Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds, baths, Toilets +Fresh New 4 Bedroom Semi Detached Duplex, Vgc Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,0 baths,0 Toilets +Beautifully Structured 5 Bedroom Detached Duplex For Sale At Ikota Lekki,Around Megamound Lekki County Home Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +Standard 4 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"54,500,000",0,0,0,4 beds,0 baths,0 Toilets +Standard And Beautifully 4 Bedroom Duplex, Lekki Lagos,₦,"120,000,000/year",0,0,0,4 beds,0 baths,0 Toilets +Executively Built 4 Bedroom Duplex Plus Large Bq,"Buenavista Estate, Off Orchid Road Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Structured 30 Units Of 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Duplex,Megamomd Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Structured 5 Bedroom Detached Duplex For Sale At Thomas Estate. Lekki,Thomas Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets +Executively Structured 5 Bedroom Detached Duplex Plus 2 Rooms Bq For Sale At Chevron Drive. Lekki,Chevron Drive Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +Very Lovely 4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Massively Structured 5 Bedroom Detached Duplex Plus Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +"New, Spacious And Tastefully Structured 5 Bedroom Detached Duplex For Sale At Chevy View. Lekki",Chevy View Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +Brand New Tastefully Finished 4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000/sqm",0,0,0,4 beds,6 baths,6 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,"Buenavista Estate, Off Orchid Road Chevron Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex Plus Bq,Off Fatai Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Structured 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Standard 4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Full Detached Duplex,Lekki County Home Ikota In Western States Lekki Lagos,₦,"82,000,000/month",0,0,1,4 beds,4 baths,5 Toilets +Is This The Perfect Family Home?,"Harris Drive, Beside Vgc Estate Vgc Lekki Lagos",₦,"47,000,000",1,1,0, beds, baths, Toilets +Newly Built 5 Bedrooms Detached Duplex,Tulip Heaven Estate Gate 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,5 Toilets +Pantheon Smart Homes,Orchid Road Chevron Lekki Lagos,₦,"125,000,000/month",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Ikate Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2bedroom Block Of Flats(only 2 Units Left),Freedom Way. Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"84,000,000/month",0,0,0,2 beds,3 baths,4 Toilets +A Luxury Newly 4bedroom Duplex,Inside Vgc Estate Lekki Vgc Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Orchid Road, Lekki 2nd Toll Gate, 2 Mins From The Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury 5 Bedroom Duplex, Bq Inclusive.","Izu Court, Chevron Drive Chevron Lekki Lagos",₦,"99,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Luxury Newly 5bedroom Duplex For Sale Opp Nicon Town Estate Lekki,Jakande Lekki Lagos Area Opp Nicon Town Estate Lekki Jakande Lekki Lagos,₦,"153,000,000",0,0,0,5 beds,5 baths, Toilets +Brand New 2 Units Of 6 Bedrom Fully Detached Duplex With A 1 Room Bq Each,Chevy View Estate Chevron Drive Chevron Lekki Lagos,₦,"135,000,000",0,1,1,6 beds,6 baths,7 Toilets +Own An Affordable Yet Classy Home Close To Strategic Locations,"Romax Homes, Harris Drive. Beside Vgc Estate Vgc Lekki Lagos",₦,"47,000,000",1,1,1, beds, baths, Toilets +Beautiful Residence In A Prime Location Below Market Price,"Harris Drive, Beside Vgc Estate Vgc Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Owning Luxury At An Affordable Price Is A Major Deal,"Orchid Road, Chevron 2ndtoll Gate, 2 Mins Away From The Lekki Epe Expressway Oral Estate Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets +5bed Room Duplex For Sale In Beautiful Estate Richmond Gate Estate Lekki,Richmond Gate Estate Lekki Ikate Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths, Toilets +Tastfully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq In Ikota Villa Estate Lekki.,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"67,000,000",0,0,1,4 beds, baths, Toilets +Newly Completed 4 Bedroom Semi Detached Duplex,By Vgc Round About By Nouth West Oil Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Completed Semi Detached 4 Bedroom Duplex,Vgc Round About By North West Oil Ikota Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Luxury New 3 Bedroom Flat In Beautiful Estate,Southern View/ochard Ikota Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Completed 4bedroom Terrace Duplex In Richmond Gate Estate Lekki,Richmond Gate Estate Lekki Ikate Lekki Lagos,₦,"126,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Completed 4bedroom Duplex,Chevron Attentive Route Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,0 Toilets +Off Plan 3 Bedrooms Terraces,"Orchid Road, After Chevron 2nd Toll Gate, Opposite His Grace Event Centre, Eleganza Oral Estate Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets +"Newly Built 6 Bedroom Detach Duplex With Bq, Swimming Pool Built On 700 Sq. Meter With C Of O",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful And Spacious 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex With A Penthouse, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,8 Toilets +20 Plots Of Land Measuring 600 Sqm Per Plot For Sale @ Orchid Road Lekki Lagos,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Detached + Bq With Ecstatically Designed Masters Walk In Closet Through Bathroom,"Orchid Road Lekki, Just Before The Roundabout With A Proposed 2nd Access Road Linking Conservation, Off Chevron Toll Gate Lekki Chevron Lekki Lagos",₦,"72,000,000",0,0,1,5 beds,5 baths,5 Toilets +Exclusive 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Lekki Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super 5 Bedroom Detached Masterpiece Duplex,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,3 Toilets +Decent 4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With 2 Bq And Pool,Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat,Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely 5 Bedroom Detached Duplex With Pool,By Second Toll Gate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Semi Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex,Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex,After 2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex,Ajah Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Automated 5 Bedroom Detached House,Lekki Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellent 4 Bedroom Duplex With Bq And Pool,Off Orchid Road Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"135,000,000",1,1,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely 5 Bedroom Automated Detached Duplex With Pool,Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Excellent 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,By Second Toll Gate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Off Orchid Road Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Flat,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +Dry Lands,Off Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Done 4 Bedroom Townhouse,Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Gorgeous 4 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment With An Elevator,Lekki Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Excellent 4 Bedroom Town House,Lekki Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Lekki Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex With Pool,Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,After 2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive 5 Bedroom Detached Duplex With Bq,Ajah Lekki Lagos,₦,"96,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,By Second Toll Gate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Lands,Off Orchid Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Apartment,Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Lovely 2 Bedroom Apartment With An Elevator,Lekki Lekki Lagos,₦,"60,000,000",0,1,0,2 beds,2 baths,3 Toilets +Service And Spacious 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Apartment With Bq,Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +"1016 Sqm Land In Alma Beach Estate, Elegushi","Alma Beach Estate, Elegushi Lekki Lagos",₦,"135,000,000/sqm",0,0,0, beds, baths, Toilets +Land Measuring 1000 Square Meters,Johnson Omorinre Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Land For Sale. One Plot Located At Igbo Efon.,Igbo Efon Off The Express Way Igbo Efon Lekki Lagos,₦,"68,000,000",0,0,0, beds, baths, Toilets +Luxurious 4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex In A Fully Serviced Estate,Ikate Lekki Lagos,₦,"38,990,000",1,0,0,4 beds,4 baths,5 Toilets +A Classy 4 Bedroom Semi Detached Duplex,"Harris Drive, Adj. Vgc Estate, Vgc Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,3 beds, baths, Toilets +Kayla's Court 4 Bedroom Semi Detached Duplex + Bq,"By Dr. Kenedy Okonkwo Street, Beside Pinnock Beach Estate, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"80,000,000",1,1,0,4 beds, baths, Toilets +Kayla's Court 4 Bedroom Terrace + Bq,"By Dr. Kenedy Okonkwo Street, Beside Pinnock Beach Estate, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"68,000,000",1,1,0,4 beds, baths, Toilets +Newly Built Mall For Office Space And Commercial Activities,"Oriwu Street, By Petrocam, Lekki Right, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"654,000/sqm",1,0,0, beds, baths,1 Toilets +A Land,At Elegaza/pan Atlantic University Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +A Block Of 4 Flats Of 3 Bedrooms,"Baruwa Street , Ologolo Jakande Lekki Lagos Jakande Lekki Lagos",₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxuriously 4 Bedroom Semi Detached Duplex With 2bq House, Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxuriously Finished 6 Bedroom Detached Duplex , Ikate Lekki Lagos,₦,"410,000,000",0,0,0,6 beds,6 baths,6 Toilets +6 Bedroom Fully Detached House,Off Admiralty Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,6 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Exquisitely Furnished Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,1, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Exquisitely Furnished Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,1, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beach View Land @ Beach Road Lekki Jakande For Sale,Beach Road Jakande Jakande Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +814 Sqm Land By Nicon Town Estate,Jakande Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +9 Bedroom Duplex By Nicon Town Estate,Jakande Lekki Lagos,₦,"350,000,000",0,0,0,9 beds,9 baths,10 Toilets +4 Bedroom Luxury Maisonette (advanced Shell),Dupe Oguntade Ikate Lekki Lagos,₦,"41,290,000",1,1,0,4 beds,4 baths,5 Toilets +A 4bedroom Luxury Terrece (advanced Shell),Dupe Oguntade Ikate Lekki Lagos,₦,"48,990,000/month",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace (advance Shell),Dupe Oguntade Street Ikate Lekki Lagos,₦,"48,990,000",0,1,0,3 beds,4 baths,4 Toilets +Land For Sale At Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Big 4 Bedroom Duplex With Bq,Ademola Street Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool And Bq,Osapa London Lekki Lagos,₦,"350,000,000",0,1,1,5 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds, baths, Toilets +Luxury 5 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds, baths, Toilets +Four Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex.,Agungi Lekki Lagos,₦,"81,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,1,4 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semidetached Duplex +bq,"Sangotedo Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exotic 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets +Newly Built Apartments In Ikate And Abijo,Lekki Lagos,₦,"45,000,000/sqm",0,1,0, beds, baths, Toilets +Four Bedroom Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets +Exotic 5 Bedroom Detached Duplex With Swimming Pool And Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets +Four Bedroom Duplex,Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex +bq,Osapa London Osapa London Lekki Lagos,₦,"130,000,000/sqm",0,1,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex +bq,Lekki Phase 2 Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets +Newly Built Luxury 4 Bedroom Fully Detached Duplex +bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"115,000,000/sqm",0,0,1,4 beds, baths, Toilets +Four Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Five Bedroom Duplex,Ikate Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semidetached Duplex +bq,Sangotedo Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets +Five Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Five Bedroom Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom And 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths,4 Toilets +Newly Built Luxury 4 Bedroom Semidetached Duplex +bq,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000/sqm",0,0,0,4 beds, baths, Toilets +Four Bedroom Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"150,000,000",0,1,1,5 beds, baths, Toilets +Newly Built 5 Bedroom Duplex,Megamound Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Contemporary Design Smart 4 Bedrooms Semi Detached Duplex With Bq,",2nd Toll Lekki Chevron Lekki Lagos,₦,"76,000,000",0,1,0,4 beds, baths, Toilets +"Pantheon Estate, Chevron Lekki",Chevron Lekki Phase 2 Lekki Lagos,₦,"67,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex . All Rooms En+suite., Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +100 Luxury Apartments For Off Plan Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"12,000,000",1,1,1,4 beds,4 baths,4 Toilets +Water Front Estate,Ikate Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury 100 Units Of Apartments, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace +bq @ Ocean Palms Ii Estate Meadow Hall Way, Ikate, Lekki*",Meadow Hall Ikate Lekki Ikate Lekki Lagos,₦,"84,800,000/month",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Lavender Gardens Phase I Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,"Primrose Court, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"47,500,000/month",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex In Ikate Lekki,Gbangbala Street Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,6 baths,7 Toilets +"4 Bedroom Semi Detached Duplex @orchid Rd, Royal Pine Estae",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,6 baths,7 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5bedroom Fully Detached Duplex With Bq,Agungi Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Duplex,"Ikota School, Off Lekki Epe Expressway Ikota Lekki Lagos",₦,"45,000,000/month",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 6 Rooms Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"85,000,000/day",0,1,0,6 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Terraced Duplex,Harris Drive Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,4 baths,4 Toilets +Strategic Commercial Land,Express Way Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Whales County, Orchid Road,lekki",Chevron Lekki Lagos,₦,"48,000,000/sqm",0,0,0, beds, baths, Toilets +3bedroom Luxury Apartments,Ikate Lekki Lagos,₦,"58,000,000",1,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex In A Secured Estate,Ikota Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment With Bq,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,3 baths,3 Toilets +910m2 Bare Land,Behind Emerald/mobil Estate Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Detached Bungalow,Bogije Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,4 Toilets +New And Vacant 4 Bedrooms Duplex With Bq,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Amazing Beachfront Land,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Massive Terrace On Two Floors,"Behind Updc Estate, (right Side Of Lekki Phase 1) Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,0,0,4 beds,5 baths,6 Toilets +2bedroom Luxury Apartment,Kizz Daniel Street Ikate Lekki Lagos,₦,"48,000,000",1,0,0,2 beds,2 baths,3 Toilets +Single Mini Flat,"Baba Lola, Ikate Lekki Lagos",₦,"50,000,000",0,1,0,1 beds,2 baths,2 Toilets +Well Built 5bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +"Half Plot Of Land At Southern Green Estate, At Orchid Road",Orchid Lekki Phase 2 Lekki Lagos,₦,"15,000,000/sqm",1,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,5 beds, baths, Toilets +Deluxe 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flats,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths, Toilets +Brand New 5 Bedroom Fully Detached House,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Half Plot Of Land At Southern Green Estate Orchid Road,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"16,000,000/sqm",0,0,0, beds, baths, Toilets +Huge 3 Bedroom House,Victoria Park Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,3 baths,1 Toilets +Newly Built 5 Bedroom Private Villa,"End Of Freedomway, Lekki Phase 1 Ikate Lekki Lagos",₦,"260,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +"8,500m2 Dry, Square, Level Land",... Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11 Hectares Of Dry, Lagoon View Land", Ikate Lekki Lagos,₦,"13,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,206m2 Fully Fenced Corner Piece Land","...,. Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With 1room Bq,Ikate Lekki Lagos,₦,"120,000,000,000",0,0,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached And Fully Detached With 1room Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedroom Detached Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 2bedroom Flat.,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +4bedroom Semi Detached And Fully Detached With 1room Bq,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths, Toilets +5bedroom Detached Duplex With 1room Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,7 Toilets +Luxury 2bedroom And 1bedroom Flat With 1room Bq,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Detached Duplex With 1room Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Semi Detached Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly 4bedroom Terrace With 1room Bq.,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets +Newly On Going 4 Bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,0 Toilets +4bedroom Semi Detached And Fully Detached With 1room Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedrooms Fully Detached Duplex,(lake View Estate) By Orchid Road Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +688 Plots Residential Land,Chevron Drive Near Ebeano Supermarket Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedrooms Terrace Duplex,Harris Dr Vgc Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedrooms Terrace Duplex,Vgc Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Terrace Duplex (with Payment Plan),"Lavender Gardens Phase I, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Amadasun Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House With B/g And Laundry At Chevron In A Gated Estate With 24/7 Security,Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Detach Building.,"Taiye Olowu Street, Off Victoria Arobieke, Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Swimming Pool And 2 Room Boys Quarter,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +600 Sqm Piece Of Land,"Ajah, Lekki Lekki Lagos",₦,"42,000,000",0,0,0, beds, baths, Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bed Terrace Duplex With Excellent Facilities,Lekki Palm City Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +1000sqm Piece Of Land,Ilaje Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +750sqm Piece Of Land,Ilaje Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Chevron Drive Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000/year",1,0,0,5 beds,3 baths,4 Toilets +4 Bedroom House And 1 Large Bq,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,6 Toilets +Newly Built 3 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"30,000,000/month",0,1,0,3 beds,3 baths,4 Toilets +Land,Orchid Road Close To Northeast Filling Station Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious And Smart 4 Bedroom Fully Detached Duplex With A Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Fully Detached Duplex, All Rooms Ensuite With 1 Bq.","5, Streets Estate, Osapa London. Osapa London Lekki Lagos",₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets +Urgent Distress 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land In Nicon Town,Nicon Town Lekki Lagos,₦,"320,000,000/sqm",0,0,0, beds, baths, Toilets +"Newly Built Massive 5 Bedroom Detached Duplex In Lekky County Homes, Ikota","Lekky County Homes Estate, Ikota Ikota Lekki Lagos",₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex? With Swimming Pool And Cinema,Osapa Osapa London Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plot Of Land With Duplex Carcass,Off Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Specious Terrace 4 Bedroom Duplex Furnished.,"Widens Court, Shevron Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"63,000,000/month",0,0,1,4 beds,5 baths,5 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Waterfront Bullet Proof Mansion With Jetty,"Off Admiralty Way, Lekki Phase One Lekki Phase 1 Lekki Lagos",$,"7,000,000",0,0,0,10 beds, baths, Toilets +Spacious 4 Bedroom Terrace Duplex With Bq,Eden's Court Chevron Drive Lekki Chevron Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +5bedroom Detached Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"88,000,000",0,0,0,5 beds, baths, Toilets +Brand New 5bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Drive Lekki Chevron Lekki Lagos,₦,"99,000,000",0,1,1,5 beds,5 baths,6 Toilets +Parcel Of Land,"Off Fola Osibo Street, Lekki Phase 1 Lekki Lagos",₦,"200,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +Lands In Vintage Estate,"Ikate Lekki, Lagos Ikate Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +3bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,5 beds, baths, Toilets +5bedroom Detached Duplex,"Lekki 2nd Toll Gate, Lagos Lekki Phase 2 Lekki Lagos",₦,"78,000,000",0,0,0,5 beds, baths, Toilets +Brand New Luxury Residential Apartment On 4 Floors,Chevy View Estate Chevron Lekki Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Drive Chevron Lekki Lagos,₦,"79,000,000",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,"Off Orchid Road By Chevron Toll Gate Lekki, Lagos Chevron Lekki Lagos",₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Fully Detached 5 Bedroom Duplex,"Northern Foreshore Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"170,000,000",0,0,0,5 beds, baths, Toilets +Newly Built Fully Detached 4 Bedroom Duplex,"Chris Otulana Crescent, U 3 Estate, Lekki Oceanside Lekki Phase 1 Lekki Lagos",₦,"140,000,000/sqm",0,0,0,4 beds,5 baths,5 Toilets +Waterfront In Victoria Island,Tollgate Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Four (4) Bedroom Semi Detached Bungalow.,"Awoyaya, Ibeju Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"21,000,000/month",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Room Boy's Quarters,"U3, Estate Lekki Phase 1 Lekki Lagos",₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Apartment,2nd Round About Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,3 Toilets +Four Bedroom Duplex,Lekki Conservative Centre Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Tastefully Modern Furnished Newly Built 4bedroom Terrace House With A Room Bq In Chevron For Sale,"10, Chevron Drive Lekki Lagos Chevron Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,7 baths,6 Toilets +Newly 4 Bedroom Detached Bulding For Sale At Ikate Lekki Lagos At,Ikate Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"200,000,000",0,0,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Special Terraced Four (4) Bedroom Duplex In Eden Court, Lekki.",Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"63,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +"Special Terraced Four (4) Bedroom Duplex In Eden Court, Lekki.",Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"63,000,000/month",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"200,000,000",0,0,1,4 beds,4 baths,5 Toilets +Full Plot Of Land With C Of O,Abraham Adesanya Road Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached Duplex With Bq Location: Lekki County. Megamound , Lekki, Lagos.",Ikota Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,2 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bed Terrace Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,"Ajah, Lekki Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets +Land With Foundation,"Harmony Estate, Oke Ira, Off Badore Road Lekki Lagos",₦,"25,000,000",0,1,0, beds, baths, Toilets +"Distress Sale: Vacant, Not New But Very Strong And Well Maintained 2wings Of 4bedroom Fully Detached Duplex",. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Distress Sale: Newly Built And Well Finished 4bedroom Fully Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Megamound Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Apartment,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Second Toll Gate Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Switchless Smart 4 Bedroom Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"40,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonettes With Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000/sqm",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex (with Flexible Payment Plans),Creek Avenue Court 2 Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Bungalow With Large Penthouse & Bq,Shapati Lekki Lagos Ilasan Lekki Lagos,₦,"28,000,000/sqm",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"42,000,000/sqm",1,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Penthouse With Bq,Camberwall Advantage 1 Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse With Bq,Ikate Lekki Lagos Ikate Lekki Lagos,₦,"68,000,000",0,1,0,3 beds,3 baths,4 Toilets +Warehouse Investment,Lekki Phase 1 Lekki Lagos,₦,"136,000/sqm",0,1,0, beds, baths, Toilets +Newly Built Semi Detached Duplex (ensuite),Cowries Estate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Semi Detached Duplex (ensuite),Cowries Estate Ilasan Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Wole Ariyo Street Lekki Lagos,₦,"160,000,000",1,0,1,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedrooms Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly And Tastefully Built 4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Ultra Modern 5 Bedroom Detached Duplex With Governor Consent, Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq With Governor Consent,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,3 baths,3 Toilets +Brand New 4 Bedroom Terrace Duplex,"Inside Ikota Villa, Beside Mega Chicken Ikota Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Maisonatte With A Bq.,Ikate Lekki Lagos,₦,"90,000,000/month",1,1,1,4 beds,4 baths,5 Toilets +Newly And Beautifully Finished 4 Bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly And Tastefully Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex Plus Bq In Upscale Location,"Beside Victoria Garden City, Adjacent To North West Fuel Station Vgc Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5bedrooms Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Furnished 4 Bedroom Fully Detached Duplex With Bq,Lekki Ajah Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedrooms Duplex,Orchid Road Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex In Choice Location,"Ikota School Bus Stop, By 2nd Toll Gate, Opp. Mega Chicken Ikota Ajah. Ikota Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartments With Penthouse,Camberwall Advantage 2 Ikate Lekki Lagos,₦,"68,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly And Tastefully Built 4 Bedrooms Fully Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedrooms Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly And Beautifully Finished 5 Bedrooms Fully Detached Duplex With Bq,Chevrom Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly And Beautifully Finished 4 Bedrooms Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Distress Sale: Not New But Very Solid And Spacious 2 Wings Of Semi Detach Duplex Plus One Room Bq,... Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Distress Sale: A Vacant, Not New But Solid Well Maintained 4bedroom Semi Detach Duplex Plus One Room Bq",... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,"Lafiaji Street Via Orchid Road, Paradise Court Estate Chevron Lekki Lagos",₦,"15,990,000/month",1,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Semi Detached Available Shell Unit,"Lafiaji Street Via Orchid Road, Chevron Drive Chevron Lekki Lagos",₦,"36,990,000/month",1,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Town House On Two Floors,Lekki Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex . Pay And Pack In, Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distressed Water Front Land, Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.","After The 2nd Toll Gate At Chevron, Ikota, Lekki Ikota Lekki Lagos",₦,"47,000,000/month",0,1,1,4 beds,5 baths,5 Toilets +Plots Of Land,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex . Pay And Pack In, Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Real Estate Land For Sale In Lagos State, Nigeria",Renaissance Water Front At Bogije Lakowe Lekki Lekki Phase 1 Lekki Lagos,₦,"10,000,000/month",0,0,0, beds, baths, Toilets +"Real Estate Land For Sale In Lagos State, Nigeria","The Estate Is Located At Ikate Elegushi, Lagos State Ikate Lekki Lagos",₦,"65,000,000/month",0,0,0, beds, baths, Toilets +"Real Estate Land For Sale In Lagos State, Nigeria",The Estate Is Located At Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000/month",0,0,0, beds, baths, Toilets +"Real Estate Land For Sale In Lagos State, Nigeria",The Estate Is Located At Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000/month",0,0,0, beds, baths, Toilets +"Real Estate Land For Sale In Lagos State, Nigeria","The Estate Is Located At Off Monastery Road, Behind Novare Mall Shoprite Sangotede Lekki Phase 1 Lekki Lagos",₦,"12,000,000/month",0,0,0, beds, baths, Toilets +"Real Estate Land For Sale In Lagos State, Nigeria","Caritas Luxury Homes, Grace Factor Phase 4 Sangotede Lekki Phase 1 Lekki Lagos",₦,"7,500,000/month",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom House,Abayomi Shonuga St Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"315,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace House With Excellent Facilities,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom House With A Room Bq In A Serene Environment, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedrooms Duplex With 2 Bedroom Bq,Lekki Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,8 baths,8 Toilets +Plots Of Lands Available With Buildings,The Fringe Of Ikota Command Alagbado Road Ikota Lekki Lagos,₦,"6,000,000/sqm",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With 98% Finished,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex With 98% Finished,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds, baths, Toilets +4 Bed Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Bedroom Fully Detached House, Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With Excellent Facilities,Ologolo Lekki Lagos,₦,"76,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace House With Excellent Facilities,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Governor’s Consent,Orchid Road Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable And Luxurious 5 Bedroom Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"80,000,000",0,1,1,5 beds, baths, Toilets +4 Units Of 3 Bedroom Terrace With Bq,Charles Ifeanyi Street Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,0,0,3 beds,4 baths,4 Toilets +Beautifully Finished 4 Bedroom Massionette Duplex With C Of O,New Market Road Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets +Land,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000/sqm",0,0,0, beds, baths, Toilets +Real Estate Land,Renaissance Reloaded Phase 2. Located At Itiri Via Co Operative Villa Badore Eti Osa Lekki Lagos,₦,"14,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Real Estate Land,Caritas Luxury Home Phase 1. This Is Located At Novare Mall Shoprite Off Monastery Road. Lekki Phase 1 Lekki Lagos,₦,"16,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Real Estate Land,This Estate Is Right In Eden View Estate Folu Ise Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"1,500,000/month",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ologolo Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedrooms Fully Detached Duplex With Bq, Excellent Facilities",Ologolo Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built Four Bedroom Duplex Is Available For Sale On Orchid Road,Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built Four Bedroom Duplex Is Available For Sale On Orchid Road,Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Units Of 4 Bedroom Terrace Duplexes With A Room Bq Each,"Orchid Road, Ikota Lekki Lagos Ikota Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,6 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex With Swimming Pool In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Duplex With Excellent Features,Spg Road Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex With Excellent Features,Chevron Alternative Route Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex In A Serene Environment,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex In A Serene Environment,Road 1 Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex With Air Conditioners,Ilasan Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex In A Serene Environment,"Off Freedom Way, Ikate Elequishi Ikate Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Swimming Pool,Mega Mound Estate Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Duplex With 1room Bq In A Serene Environment,"Spring Bay Estate ,ikate Elequishi Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terraced Duplex In A Serene Environment,"Off Kusenla Road, Ikate Ikate Lekki Lagos",₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex In A Serene Environment,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex With 1bq In A Serene Environment,Ikate Elequishi Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Mega Mound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Detached Duplex With Swimming Pool,"Abiola Court 12,,ikate Elequishi Ikate Lekki Lagos",₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Excellent Features,Oral Estate Phase 2 Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Road 1 Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terraced Duplex In A Serene Environment,Gbangbala Street Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Swimming Pool In A Serene Estate,"Orchid Hotel Road, Beuna Vista Estate Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 6 Block Of Flats 2 Bedroom Flat (off Plan),Cluster One Lekky County Homes Ikota Lekki Lagos,₦,"33,000,000/sqm",0,1,0,2 beds,2 baths,3 Toilets +Off Plan Massive 6 Blocks Of Flats Of 2 Bedroom Flat,Lekky County Council Cluster One Estate Ikota Lekki Lagos,₦,"33,000,000/sqm",0,0,0,2 beds,2 baths,3 Toilets +Real Estate Land,The Estate Is Located In Elite Genesis Garden Phase 1 Sangotedo Lekki Lagos,₦,"17,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4bedroom Terrace,2nd Toll Gate Chevron Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built And Very Spacious 4 Bedroom Terraced Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Toll Gate ... Orchid Road Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"72,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With An Automated Gate,Chevron Chevron Lekki Lagos,₦,"66,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built , Smart Fully Automated 4 Bedroom Terrace Duplex",Ikota Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Units Of Newly Built 2 Bedroom Apartments In A Vivacious Environment,"Alma Beach Estate, Meadow Hall Way, Lekki Penninsula Ii, Lekki Ikate Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built And Architectural Designed 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +One Bedroom Flat With Lovely Features,New Road Lekki Lagos,₦,"25,000,000",1,0,0,1 beds,1 baths,2 Toilets +3 Bedroom Apartment,New Road Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex At Ologolo,Ologolo Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,5 baths,5 Toilets +Land, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Excellent Features,New Road Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,5 Toilets +4 Bedroom Duplex,Magodo Shangisha Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxuriously Furnished And Functional Suite. Used For Short Stay At The Moment,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,1,0 beds,0 baths,0 Toilets +Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets +Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets +4 Bedroom Terrace Duplex House With Mortgage Facility,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Super Affordable 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Off Plan 4 Bedroom Duplex In A Serene Environment,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Off Plan 4 Bedroom Terrace Duplex House,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Super Affordable Luxury 1 Bedroom Studio Apartments For Investments,"Behind Romey Gardens Opposite Nicon Town, Lekki, Ilasan, Salem Bustop, Lagos. Lekki Phase 1 Lekki Lagos",₦,"27,500,000",1,1,1,1 beds,1 baths,1 Toilets +Luxury 3 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex House At Off Plan Price,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Off Plan 4 Bedroom Terrace Duplex House,"Orchid Road, After Chevron, After Orchid Hotel Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex House At Off Plan Price,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Terrace Duplex House,"Orchid Road, Opposite V Dos Estate, Just After Orchid Hotel (2mins Away From Lekki Epe Expressway) Lekki Phase 2 Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +32 Hectares Of Land,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Road Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Buene Vista Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flats Apartment With Excellent Facilities,Orchid Road Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets +1000 Sqm Of Dry Land In A Residential Area With C Of O,Victory Park Osapa London Lekki Lagos,₦,"210,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Luxury 5 Bed Room Fully Automated Detached Duplex With Private Cinema And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom High Toned Luxury Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"330,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Fully Automated Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,"Lekki County Homes, Megamound Estate Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +100% Sandfilled And Fenced Land,Orchid Ikate Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,"Lekki County Homes ,megamound Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex House, Vgc Lekki Lagos,₦,"270,000,000",0,0,1,5 beds,0 baths,0 Toilets +4 Bed Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Fully Detached Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Apartment With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bed Terrace Duplex With Excellent Facilities,Ikota G.r.a Lekki Lagos,₦,"49,500,000",0,1,0,4 beds,4 baths,5 Toilets +6unit Of Luxury 5bedroom Fully Detached Duplex With Bq,"Ikate, Elegushi Ikate Lekki Lagos",₦,"120,000,000",1,0,0, beds, baths, Toilets +4bedroom Detached Duplex With Bq And Study Room,Ikate Estate Ikate Lekki Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With A Room Bq,Ikate Estate Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Fully Detached Duplex With A Room Bq,Ikota Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Salem Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Duplex With Private Compound,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"47,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Bungalow,Camberwall Estate Abijo Gra Lekki Lagos,₦,"32,000,000/sqm",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex ( Semi Finished),Abijo Gra Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,3 baths,4 Toilets +Invest In Terrace Duplex At Lekki*,"Creek Avenue Court Phase 2 Ikota, Lekki.* Ikota Lekki Lagos",₦,"47,000,000",0,0,0,4 beds, baths, Toilets +Beautifully Structured 5 Bedroom Detached Duplex Plus 3 Bedroom Bq,Mobil Rd After Vgc Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached House With 2rooms Bq And Gate House,Off Omorinre Johnson Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"258,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Apartment, Ikate Lekki Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Megamound Street Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Orchid Road Ikota Lekki Lagos,₦,"37,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000/month",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached Duplex, Ikota Lekki Lagos,₦,"95,000,000/day",0,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedrooms Fully Detached Duplex With Excellent Facilities,Buene Vista Estate Lekki Lagos,₦,"116,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Buene Vista Estate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets +5bedroom Duplex, Osapa London Lekki Lagos,₦,"105,000,000/year",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrence Duplex In A Serene Area,No 34 Ikota Lekki Lagos,₦,"47,000,000/month",0,1,0,4 beds,4 baths,5 Toilets +Real Estate Investment, Lekki Lagos,₦,"1,000,000/month",1,0,0,0 beds,0 baths,0 Toilets +Land,"Akodo General Hospital,lekki Trade Zone Lagos Lekki Phase 1 Lekki Lagos",₦,"7,000,000/sqm",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Chevron.,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +500sqm Land By Waterfront,Pinnock Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +688sqm Residential Land,Salem Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With Excellent Features,Salem Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached In Serene Place,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Terrace Carcass Duplex With Amazing Features,New Road Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,3 beds, baths, Toilets +Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/day",0,0,0,4 beds,4 baths,5 Toilets +Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +Governor’s Consent,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +Governor’s Consent,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/month",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Chevron Drive Lekki Lagos Chevron Lekki Lagos,₦,"99,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Building With Two Sitting Rooms,Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets +Advance Modern 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"192,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +Luxuriously And Newly Built 4bedroom Terrace Duplex @ Ikate For [email protected] 75million,Ikate Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets +Newly Built 3bedroom Flat @ Ikate For Sale @ 70million,Ikate Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View.,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Advance 4 Bedroom Semi Detached Duplex With Massive Penthouse Sit Out View.,Off Admiralty Way Lekki Phase 1 Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"192,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex,Megamound Ikota Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Available,Orchid Road Chevron Lekki Lagos,₦,"34,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Land Available,Orchid Road Chevron Lekki Lagos,₦,"34,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +17000sqm Land Available With C Of O,"Kusenla Road, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"140,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With Amazing Features,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevron Drive Alternative Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Contemporary Home,Pinnock Beach Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Jakande Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Flat,"Orchid Road, By Chevron Lekki 2nd Toll Gate, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Excellent Features,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Excellent Features,Lekki Phase 1 Lekki Lagos,₦,"89,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly 3 Bedrooms Apartment With Excellent Facilities,Agungi Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5 Bedrooms Semi Detached Duplex,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Excellent Facilities,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 4 Bedrooms Terrace Duplex Serene Neighborhood,"Lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Excellent Facilities,Osapa London Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Offplan Duplex For Sales At The Ambiance Abraham Adesanya,"Lekki Gardens Phase 4 Road, Atlantic Layout Estate, Ajiwe Abraham Adesanya Lekki Phase 2 Lekki Lagos",₦,"40,000,000/day",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Victoria Crest 2, Orchid Road Chevron Lekki Lagos",₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,"At Victoria Crest 2, Orchid Road Chevron Lekki Lagos",₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Royal Gardens Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex With Excellent Facilities,Royal Gardens Lekki Lagos,₦,"230,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Excellent Facilities,Royal Gardens Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 2rooms Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Very Beautiful 4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +3bedroom Terrace Duplex With Bq, Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Well Finished 5 Bedroom Fully Detached Duplex With A Bq, Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Fully Detached Duplex With 1 Room Bq.,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Semi Detached Duplex With A Boy's Quaters,.. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Ready To Build 780sqm Corner Pieced Land,"Ilasan, Lekki Phase 1 Ilasan Lekki Lagos",₦,"70,000,000",0,0,0, beds, baths, Toilets +Solidly Built Three Bedroom Flats ( Carcass),"Paradise 3 Estate, Lekki Gardens, Chevron Road Chevron Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +Nice 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Serviced 4 Units Of 4 Bedroom Maisonette Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Nos Of 4 Bedroom Terraced House With 1 Room Bq Each,Along Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Off Lekki Express Way Ikate Lekki Lagos,₦,"7,500,000,000",0,0,0, beds, baths, Toilets +20 Acres Of Land,Near Dangote Refinery Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Creek Haven Estate (by Vgc) Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 No Of 4 Bedroom Terraced House With 1 Room Bq,Along Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Off Lekki Express Way Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Land,Block 143 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,"Along Ogombo Road, Near Abraham Adesanya Estate Lekki Lagos",₦,"72,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Lafiaji Chevron Tollgate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom / Terrace Duplex / 1 Maid Room,Lekki Phase1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex At Chevron Estate With Bq,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +1006sqms Land,"Nicon Town Estate,zone C,plot 173,lekki Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Detached Duplex With Bq And Swimming Pool,Lekki Ph1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +53rooms Hotel And Restaurant,Agungi Lekki Lagos Agungi Lekki Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Parcel Of Land Measuring 4,411sqm",Ikate Elegushi Close To Toyota Lekki Lagos Ikate Lekki Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +2plots Of Land Near Shoprite,Off Lekki Way By Jakande Near Shoprite Lekki Lagos Jakande Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +A Plot Measuring 3000sqm,Ilasan Rd Ikate Lekki Lagos Ilasan Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +4411sqm Plot Of Land With Governor Consent,Elegushi Close To Toyota Lekki Lagos Ikate Lekki Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"A Commercial Plot Of Land Measuring 20,800sqm",Ikota Shopping Complex Vgc Lekki Lagos Vgc Lekki Lagos,₦,"4,000,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Fully Detached In A Mixed Use Environ,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Decent 5bedroom Duplex Sitting On 500sqm Plot,Lekki Ph 1 Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5bedroom Detached Duplex With Bq And Space For 8cars,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +912sqms Land,"Victory Park Estate,lekki Osapa London Lekki Lagos",₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mini Estate Consisting Of Blocks Of Flats,Ologolo Lekki Ologolo Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Tastefully Finishes Exquisitely 4bedroom Semi Detached Duplex,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets +An Office Complex On 800sqm On 3rd Floor,Ikota Second Junction Lekki Epe Exp Rr Ikota Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Luxury Semi Detached 4bedroom Duplex Plus 2rooms Bq With Parking Space For 8cars,Grace Anjous Street Lekki Ph1 Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Terrace Duplex With A Room Bq,Perimeter Court Madiba Estate Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"90,000,000",0,1,0, beds, baths, Toilets +Parcel Of Land Measuring 800sqm In An Estate,Cowrie Creek Estate By Ng Lng Lekki Lagos Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +20 Acres Of Land, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,7 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Apartment For Sale,Lekki County Home Ikota Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex For Sale,Beautiful Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,6 Toilets +Brand New 6 Bedroom Luxury Detached Duplex + Bq In A Serene Secured Estate Environment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4bedroom Fully Detached Duplex With Room Bq,Bera Estate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced Units Of 4 Bedroom Terrace Duplex For Sale,Orchild Lekki Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Mini Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Investment Opportunity Now Selling 2 Bedrooms Luxury Apartments,Ikota Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Well Built 12units 2bedroom Flat And 2units 4bedroom Penthouse Suitable For Residential Use, Hotel, International Schools",Chevy View Estate Chevron Lekki Lagos,₦,"410,000,000",0,1,0, beds, baths, Toilets +15 Hectares Of Land,Off Lekki Epe Express Way Ikate Lekki Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4bedroom Fully Detached House,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex In A Mini Estate In Lekki Phase1 For Sale.,Mini Estate 2nd Roundabouts Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +40 Units Of 4 Bedrooms Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +85% Completed 5 Bedroom Fully Detached House With Bq,Secured Estate In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4bedroom Semi Duplex With Swimming Pool, Gym",2nd Tollgate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse Duplex With Bq,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Tollgate Orchild Road Lakeview Estate Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Penthouse, 3 Bedroom And 2 Bedroom Flat Available For Sale",Ikate Ikate Lekki Lagos,₦,"75,000,000",1,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +A4 Bedroom Semi Detached Duplex For Sale!!!,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With 1 Room Bq,"Off Durosinmi, Etti Street Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Fully Detached House With Bq,Gate Community Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Orchild Road 2nd Tollgate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"222,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Semi Detached Houses For Sale,Gated Community Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Spacious 4 Bedroom Semi Detached House,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Epic 6 Bedroom Detached Duplex Is Available For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq Sitting On 900 Sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Waterfront 1/2/3bedroom Block Of Flats Price Starts With 45m,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,1 beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale!!!,Gated Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets +Land,"Eleko, Off Lekki Free Trade Zone Road Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Co Operative Villas Badore Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +18 Units Of 4 Bedroom Terrace With A Bq Available For Sale!,Bera Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fenced Land Measuring 1000sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,2nd Tollgate Orchild Road Lakeview Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Hectares Of Beach Front Land,Maiyegun Off Lekki Express Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom/semi And 5bedroom Detached Luxury Duplexes,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq Still Available For Sale.,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +33 Retail Stores With An Average Size Of 30sqm Per Store Set Across 3 Floors.,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terraced Duplex With Bq And Great Outdoor Facilities,Https://youtu.be/vrarrriyrsw Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale.,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale.,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale!,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Spacious 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +4units 4bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lakeview Estate Orchild Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale!,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +40 Acres Of Land,Off Lekki Epe Express Way Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,2nd Tollgate Chevron Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale!!!,Lekki County Home Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +1bedroom Apartment And 2/3/4bedroom Terrace Duplexes,Opposite Nicon Town Ikate Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +"4 Bedroom Detached Duplex With 1 Bq And Swimming Pool, Cinema",Acadia Groove Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,5 baths,6 Toilets +Land,Along Lekki Beach Road Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Detached Duplex / Open Terrace / 1 Maid Room,Lekki County Home Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Ikate Ikate Lekki Lagos,₦,"83,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex With Room Bq,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +800sqm Land For Sale At Cowrie Creek Estate,Cowerie Estate Ikate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Detached Duplex For Sale,Victory Park Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Facing The Lekki Epe Express Way(before The 3rd Round About) Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four (4)bedroom Detached Duplex With Bq,Https://m.youtube.com/channel/ucrwrzspakoejh26egmr2diq Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fenced Land Measuring 1000sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +85% Completed 4 Bedroom Terrace Duplex With Bq,Secured Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Ilasan Ikate Lekki Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex For Sale,Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +20 Acres Of Land,Origanrigan And Lekki Towns Lekki Lagos,₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale.,Ikota Villa Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Tastefully Built Brand New 5 Bedroom Semi Detached Detached House,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Townhouse On 4 Floors Within A Fully Serviced Estate,Ikate Richmond Estate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchild Road 2nd Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"New Development Comprises 18 Aesthetically Designed 4 Bedroom Terrace Duplexes, Each With A Maids' Quarters Attached",Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Fully Detached Duplex + Bq For Sale,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House Available For Sale,Acadia Groove Estate Osapa London Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Triplex With A Bq.,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Duplex For Sale In A Beautiful Environment,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +4.2 Hectares Of Land, Jakande Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Lekki Epe Express Way Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Serviced Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +4units Of 5bedroom Terrace Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,"Opposite Chevron Drive, Orchid Road After Lafaji Community Chevron Lekki Lagos",₦,"41,500,000",0,0,0,5 beds,5 baths,6 Toilets +2units Of 5 Bedroom Detached Duplex,"Audu Ekpekah Street,off Admiralty Wa Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 2 Bedrooms Apartment,"Seagate Estate, By Spar Ikate Lekki Lagos",₦,"42,000,000",1,0,0,2 beds,2 baths,3 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Plot Of Land,Ikota G.r.a Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House,Chevyview Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Carcass 4 Bedroom Terrace Duplex In An Estate,Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,4 Toilets +New Three (3) Bedroom Apartments,Ikate Next To Lekki Phase One Ikate Lekki Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Four (4) Bedroom Terrace Residence,Babatunde Anjous Neighborhood Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets +Newly Built Luxurious 4 Bedroom Duplex Semi Detached,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plots Of Land In A Developed Location,Agiran Road After The Domino Pizza. Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Luxurious 5 Bedroom Duplex Fully Detached,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand Newly Built 5bedroom Fully Detached Duplex For Sale,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Now Selling!!! Exquisitely Built 5 Bedroom Fully Detached Triplex,Pinnock Beach Estates Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Plots Of Land Already Sand Filled Land 125m,Cluster One Estate Beside Mega Mound Ikota Lekki Ikota Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +Brand New 2 Units Of Lovely Beautiful Finished 4bedroom Fully Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Apartment With A Room Bq,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"4,500,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex With A Swimming Pool For Sale In Lekki County,Lekki County Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached,Ocean Breeze Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious Newly Built 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex With Bq,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Block Of 6 Flats On Land Totaling 890 Sqm,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,1, beds, baths, Toilets +5 Bedroom Fully Detached Edifice With Bq 150m,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Built 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplexes 75m,Ikota Gra By Mega Chicken Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Off The Major Agungi Road Agungi Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxurious Newly Built 4bedroom Semi Detached Duplex,"Lekki County, Megamond Estate Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bare Land Of 6 Plot,Ikota Gra Behind Megachicken Ikota Lekki Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets +New Two (2) Bedroom Apartments,Ikate Next To Lekki Phase One Ikate Lekki Lagos,₦,"48,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Highly Improved Prototype Terrace Unit Of 4 Bedroom With Quarter's ,green Area And Ample Exclusive Ground In A Private Residential Estate In Lekki Phase One","Regal Seaview Estate, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq.,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,4 Toilets +Newly Built 5 Bedroom Terrace House All Rooms Ensuite With A 2 Bedroom Bq,Ikate Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex With A Room Bq,Lekki County Estate Megamon Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,4 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Room Bq,"Megamond Estate, Lekki County. Ikota Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +"5 Bedroom Terrace Duplex, Ample Parking Space With A Garage.",Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached,Eletu Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Ikate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets +"A Strategically Located , Fenced And Gated Land","Directly On Lekki Epe Express Way, Adjacent Mega Chicken Lekki Lagos",₦,"780,000,000",0,0,0, beds, baths, Toilets +New Listing: 5 Bedroom Detached Duplex With A Room Bq,"Peninsula Estate Ajah, Lekki Epe Expressway Lekki Lagos",₦,"55,000,000",0,1,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached House,Carlton Gate Estate Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex With Bq Features All Rooms En Suite,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Room Bq 120sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat With Gov Consent,Agungi Lekki Lagos,₦,"23,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Hot Property! 4 Bedroom Terrace, Sits On 3 Floors",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Semi Detached Duplex With Bq In A Serene Estate,Chevron Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Toll Gate Axis Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds, baths, Toilets +Luxury Waterfront 5bedroom Duplex* For Sale 120m,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +3 Bedroom Flat,Chevron Alternative Road Lekki Lagos,₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Terraced Duplex Features Spacious Living Room, All Rooms En Suite",Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat All Room En Suite 60m,Lekki Phase 1 Rhs Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Fully Detached 5 Bedroom Duplex With Top Notch Interiors Including 2 Rooms Bq & Laundry Room Available For Sale At Off Admiralty Way, Lekki Peninsula Scheme 1, Lekki Lagos.",Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Oral Estate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Office Complex Of 5 Floors With Approximately 1400 Square Meters,"Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +For Sale 5 Bedroom Detached Duplex With Bq Location Lekki County. Ikota. Lagos Price 120 Million Naira,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Luxury 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex In A Serene Estate,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +A Plot Of Dry And Fenced Land, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With A Room Bq In A Serene Neighborhood,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Bq Detached Duplex,Pinnock Lekki Lagos,₦,"230,000,000",0,0,1,6 beds,6 baths,7 Toilets +Brand New Luxuriously Built 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Eletu Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Plot Of Land Facing Lekki Epe Express Way,"Lekki Epe Express, Abijon Lekki Lagos",₦,"200,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Duplex + 3 Bedroom Flat+ 2 Room Boys Quarters Sitting On Land Measuring 875sqmts At Ikate Elegushi,",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",1,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,"2nd Tollgate, Lekki, Lagos. Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detach One Bq,"Arcadia Estate, Lekki. Lekki Lagos",₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq.,Oral Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +687 Square Meter Of Land,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"For Sale 4 Bedroom Terrace Duplex Location Orchid, Lekki Lagos Price 40 Million Naira",Orchids Hotel Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land, Lekki Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Off Elevation Church Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Apartment With Boys Quarter,Admiralty Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Detached Duplex,Pinnock Estate Lekki Lagos,₦,"290,000,000",0,1,1,4 beds,6 baths,6 Toilets +5bedroom Luxury Detached Duplex.,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Luxury Detached Duplex With Bq.,Ikota Villa Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +5bedroom Luxury Fully Furnished Detached Duplex With Cinema,Osapa London Lekki Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,5 beds, baths, Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lagos,₦,"43,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",1,1,0,5 beds,5 baths,6 Toilets +Executive 4bedrooms Semi Detached Duplex For Sale At Osapa London Lekki.,Osapa London Lekki. Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Standard 4bedrooms Terrace Duplex With Bq For Sale At Chevron Lekki.,Chevron Lagos Lekki. Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Commercial Space,Lekki Ph1 Off Freedom Way Lagos. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,10 beds,10 baths,10 Toilets +Lovely 4bedrooms Semi Detached Duplex For Sale At Lekki Ikota Lagos.,Lekki Ikota Lagos. Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +3bedroom Terrace Duplex With A Bq And Service Estate With 21 Hours Light Every Day,2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"33,000,000,000",0,0,0,3 beds,3 baths,5 Toilets +Dry Land For Sale 600qrm With C Of O At Jakande Lekki Lagos.,Beach Road Jakande Lekki Lagos,₦,"57,000,000",0,0,0, beds, baths, Toilets +Land,Lekki Lagos,₦,"6,000,000",0,1,0, beds, baths, Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Off Chevron Alternative Chevron Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Detached Duplex,Megamound Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously 4bedroom Duplex,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Captivating 5 Bedrooms Detached Epistle Key Features: • High Class Master Bedroom • 1 Room Bq • Patio Dinning Area • Facinating Led Lighting • Skyline View • Intercom/chandeliers • Walk In Closet • Fitted Chef Grade Kitchen • Ample Parking • Marble,Osapa London Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Service 4 Bedrooms Terrace Duplex,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Build Detach 4bedroom,By Baale Logologo Office Lekki Lagos State Ologolo Lekki Lagos,₦,70,1,1,0,4 beds, baths,5 Toilets +Stunning 3 Bedroom Terraces Duplexes At Orchid Road Lekki,Orchid Road Lekki Lagos,₦,"35,000,000",1,1,1, beds, baths, Toilets +Brand New Service 4 Bedrooms Terrace Duplex,In An Estate Off Chevron Alternative Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes With The Features; 1 Room Office/study, 1 Room Laundry 1 Bq All Rooms Ensuite Jacuzzi Bath Fully Fitted Kitchen With Microwave, Oven, Gas Burner, Extr",Ikota Villa Estate Behind Mega Chicken Lekki Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Behind Zenith Bank Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedrooms Detached Duplex,"Megamound, Lekki County Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedrooms Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedrooms Duplex With A Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedrooms Semi Detached Duplex With A Room Bq,Orchid Hotel Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedrooms Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedrooms Flat,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedrooms Semi Detached Duplex With A Bq,Orchid Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fabulous And Luxurious 4 Bedrooms Terraced Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex With A Bq And A Town House,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive And Luxurious 5 Bedrooms Detached Duplex With A Bq,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedrooms Terraced Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bw,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets +Sweetly Built 4 Bedrooms Semi Detached Duplex With A Penthouse And A Bq,Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedrooms Terraced Duplex With A Bq,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Flat,.. Chevron Lekki Lagos,₦,"28,000,000",1,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedrooms Fully Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedrooms Fully Detached Duplex,Megamound Estate Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 3 Bedrooms Town House With A Bq,Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Dry Land In A Good Environment,Lekki Scheme 2 Lekki Lagos,₦,"19,000,000",0,1,0, beds, baths, Toilets +Brand New 4 Bedrooms Fully Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious And Executive 4 Bedrooms Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"175,000,000",1,1,1,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Terrace In A Serenely Enviroment,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Orchid Road, 2nd Till Gate, Lekki Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxurious 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built & Tastefully Finished 5 Bedrooms Duplex On Two Floors,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Spacious 4 Bedroom Home In A Private Enclave,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly Completed 4 Bedrooms Duplex With Boy Quarters,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Renovated 2 Bedrooms Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built Switchless Smart 5 Bedroom Fully Detached With A Bq,Lekki Phase 2 Lekki Lagos,₦,"59,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Detached Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,3 baths,3 Toilets +A Commercial Shop Very Close To The Road At Ikota Shopping Complex,"Ikota Shopping Complex, Vgc Vgc Lekki Lagos",₦,"7,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex For Sale,Chevron Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,3 baths,4 Toilets +Serviced 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",1,0,0,4 beds,4 baths,4 Toilets +One Unit Of 3 Bedroom Penthouse +bq With Bq,Ikate Lekki Lagos,₦,"62,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,Ikota Lekki Lagos,₦,"78,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built Tastefully Finished 3 Bedroom Terrace Duplex.,"Off Conservation Drive, Chevron Toll Gate, Lekki Lagos Chevron Lekki Lagos",₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Beautiful Contemporary Home At Ajah , Lagos",Osapa London Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New Units Of 3 Bedroom Apartment With A Bq Available For Sale & Rent!,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 2 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"25,500,000",0,1,1,2 beds,2 baths,3 Toilets +Nicely Finished 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Second Toll Gate, Lekki Oral Estate Lekki Lagos",₦,"43,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built And Architectural Designed 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Move Into A New 4 Bedroom Semi Detached Duplex With Just N23m And Spread Balance For 2 20 Years,"Ikate Elegushi, Meadow Hall Way Lekki Phase 1 Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets +Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Little Deposit,"Between Chevron And Vgc, Opposite Lekki County Homes, Ikota, Creek Avenue Court Ikota Lekki Lagos",₦,"39,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxurious 5 Bedrooms Duplex With A Room Bq With C Of O (negotiable),"Osapa London, Lekki Osapa London Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,7 baths,7 Toilets +Brand Newly Built Affordable Luxury Home With Little Initial Deposit To Key In,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets +Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Down Payment Of N7m,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets +Executive 4 Bedroom Terrace Duplex With An Initial Deposit Of N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Move Into A New 4 Bedroom Semi Detached Duplex With Just N23m And Spread Balance For 2 20 Years,"Ikate Elegushi, Meadow Hall Way Lekki Phase 1 Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets +Brand Newly Built Affordable Luxury Home With Little Initial Deposit To Key In,"Between Chevron And Vgc, Ikota, Creek Avenue Court Lekki Phase 2 Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Terrace Duplex With Just N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets +Affordable Luxury Apartment With 1 15 Payment Plan,"Lekki Phase 1, Meadow Hall Way, Beside New Horizon 2, Opposite Richmond Estate, Bella Courts Ikate Lekki Lagos",₦,"37,500,000",1,1,1,4 beds,5 baths,5 Toilets +Affordable Luxury 2 Bedroom Apartments With A Let To Own Scheme,"Ikate Elegushi, Meadow Hall Way, Bella Courts Ikate Lekki Lagos",₦,"28,000,000",1,1,1,2 beds,3 baths,3 Toilets +Executive 4 Bedroom Terrace Duplex,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Affordable Luxury Apartment With (1 15) Years Opportunity To Pay,"Lekki Phase 1, Meadow Hall Way, Beside New Horizon 2, Opposite Richmond Estate, Bella Courts Ikate Lekki Lagos",₦,"37,500,000",1,1,0,4 beds,5 baths,5 Toilets +Get Your Keys With A Little Deposit To An Exquisitely Finished House With A Little Deposit,"Between Chevron And Vgc, Opposite Lekki County Homes, Ikota, Creek Avenue Court Ikota Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,6 baths,6 Toilets +Move Into A New 5 Bedroom Triplex With Just N25m And Spread Balance For 2 20 Years,"Meadow Hall Way, Ikate Elegushi, Opposite Richmond Estate Ikate Lekki Lagos",₦,"57,000,000",1,1,1,5 beds,6 baths,6 Toilets +New 5 Bedroom Triplex,"Meadow Hall Way, Opposite Richmond Estate Ikate Lekki Lagos",₦,"57,000,000",1,1,1,5 beds,6 baths,6 Toilets +Move Into A New 2 Bedroom Apartment With Just N15m And Spread Balance For 2 20 Years,"Meadow Hall Way, Ikate Elegushi Ikate Lekki Lagos",₦,"32,000,000",1,1,1,2 beds,3 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Just N7m,"After The 2nd Toll Gate, Between Chevron And Vgc, Ikota, Lekki Phase 2, Creek Avenue Court Ikota Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Before Chevron Idado Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets +400sqmt Prime Plots Of Land For Sale At Magamound Estate Ikota Villa Estate,Magamound Estate Inside Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat On 6 Floors,Near Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With 8 Seater Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 4 Bedroom Terrace Duplex Located In Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex Located In Lekki Phase 1.,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bdr Terrace Duplex With One Maid Room,Off Ro Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached House For Sale,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached Duplex With 1 Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Four Bedroom Semi Detached In Chevy View Estate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Semi Detached Duplex With1 Room Bq,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached House,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Detached House For Sale,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land In Cowrie Creek Estate. 805sqm Land In Cowrie Creek Estate (nlng Estate) Block O N121m,... Lekki Lagos,₦,"121,000,000",0,0,0,0 beds,0 baths,0 Toilets +*lands For Sale In Cowrie Creek Estate* 805sqm Land In Cowrie Creek Estate (nlng Estate) Block K *n117m,Lekki Lagos,₦,"117,000,000",0,0,0, beds, baths, Toilets +Newly Built Beautiful 5 Bedroom Fully Detached Duplex With A Massive Penthouse, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Beautiful 5 Bedroom Fully Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Crafted 4 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"3,500,000/year",0,0,0,4 beds,0 baths,0 Toilets +Four Numbers Of 5 Bedrooms Detached House,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Apartment,"Altantic Layout Estate, Lekki Garden Phase Lekki Lagos",₦,"52,500,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Stylish Newly Built 5 Bedrooms Fully Detached Duplex With Bq At Osapa London Lekki,Osapa London Lekki Lagos State Nigeria Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built 5 Bedrooms Fully Detached Duplex With Bq At Osapa London Lekki, Lagos",Osapa London Lekki Lagos State Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Nice 3 Bedroom Bungalow At Lekki 2 Ajah Lagos,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,3 beds,3 baths,2 Toilets +5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exotic 4 Bedroom Terrace Duplex,Lavender Gardens Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool Bq, Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Service Quarters, Ilasan Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent 5 Bedroom Fully Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 4 Bedroom Semi Detached Duplex,2nd Toll Gate Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Furnished + Penthouse Detached Duplex, Osapa London Lekki Lagos,₦,"162,000,000",0,0,0,5 beds,0 baths,0 Toilets +Off Plan 4 Bedroom Terrace With 2 Bq,Dupe Oguntade Street By Enyo Filling Station Lekki Ikate Lekki Lagos,₦,"85,000,000/sqm",1,0,0,4 beds,4 baths,4 Toilets +Brand New Luxury 5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex,After 2nd Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex In Serene And Secured Estate,Ikota Lekki Lagos,₦,"95,000,000/day",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex House + Bq, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Neatly Built 5bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Fully Detached Duplex,Lekki Right Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,0 baths,0 Toilets +Brand New 4 Semi Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Mansion, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Very Clean 3 Bedroom Apartment, Chevron Lekki Lagos,₦,"17,700,000",0,0,0,3 beds,0 baths,0 Toilets +A Standard Beautiful Spacious 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,0 baths,0 Toilets +Magnificent 4 Bedroom Duplex,Lekki Scheme 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House With Maid Quarters, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Automated 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"275,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq, Nicon Town Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Standard 5 Bedroom Duplex With Bq, Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Ochid Road Chevron Axis, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exotic 5 Bedroom Detached Duplex With Penthouse, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Unit Terrace Duplex With Bq,Charles Ifeanyi Street No 11 Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex, Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Flat,"Altantic Layout Estate, Lekki Garden Phase Lekki Lagos",₦,"52,500,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Built 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Townhouse With A Room Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Akodo General Hospital,lekki Trade Zone Lagos Lekki Phase 1 Lekki Lagos",₦,"7,000,000/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely And New 3bedroom Flat,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nicely Designed 5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex With Luxury Fitting, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fenced Corner Piece Land, Chevron Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built And Spacious 4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Serviced And Newly Built 2 Bedroom Ensuite Flats,By Pinnock Beach Estate Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury Built Smart 4 Bedroom Terrace Duplex In Ikate.,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Mobile Estate Road, Lekki Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Bungalow, Lekki Lagos,₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets +Exotic 4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Creek Court Avenue Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq And Pool, Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq, Ikate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Full Detached Duplex, Agungi Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,"Mobil Estate Road, Lekki Scheme 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedrooms Detached Duplex With Swimming Pool, Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Affordable 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Superb Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Luxury Duplex With A Bq, Ikota Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Super Luxury Fully Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flats With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq, Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace With A Bq, Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq,Lekki County Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Super Luxury Fully Detached Duplex With Swimming Pool & 2 Bqs, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Orchid Road Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Spacious Fully Detached Duplex With 2rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 1 Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,"Harris Drive, By Vgc, Victoria Nest Iii Estate Vgc Lekki Lagos",₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Serviced 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq & Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +New 5 Bedroom Fully Detached Duplex With Bq Swimming Pool, Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Nos 4 Bedroom Semi Detached Bungalow With Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Furnished 5 Bedroom Detached Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +Promo Price Newly Built 5 Bedroom Detached Duplex,Izu Court Chevron Drive Chevron Lekki Lagos,₦,"99,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury And Exquisite 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Chevron Drive Alternative Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex With Cofo,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Semi Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury And Spacious 3bedroom Flat Fully Serviced Apartment, Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Beautiful 4 Bedroom Detached Duplex,Gated Reserved Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Beautiful 5 Bedroom Duplex With A Room Bq, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq,Izu Court Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Functional 26 Rooms Hotel, Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lara Ademola Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Units Of A 4 Bedroom Terrace, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Standard And Spacious 3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Promo Cheap Luxury 4 Bedroom Semi Detached Duplex,Creek Court Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex And A Bq With Swimming Pool,2nd Toll Gate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex And 1 Bq, Idado Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious & Automated 5 Bedroom Detached Duplex + Swimming Pool And 2 Rooms Bq, Osapa London Lekki Lagos,₦,"445,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Units Of 300sqm Plots And 1 Unit Of Carcass In An Estate, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Finished 6 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exotically Finished 4 Bedroom Terrace Duplex,"Creek Avenue Court, Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq Plus Swimming Pool, Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Ensuite 4 Bedroom Detached Duplex,Ologolo By Shoprite Circlemall Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Ensuite Detached Duplex,Chevy View Estate Opposite Chevron Head Office Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex With A Swimming Pool,2nd Toll Gate Ikota Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 3 Bedroom Flat With A Room Bq,"Kusenla Road, Pinnock Beach Lifestyle Estate Phase 3 Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,0 Toilets +Luxury 4 Bedroom Semidetached Smart Home With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Smart Home With Bq,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,0 Toilets +3 Bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Bedroom Luxury Furnished Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"335,000,000",0,0,0,6 beds,5 baths,0 Toilets +5 Bedroom Semi Detached House With Bq,"14b Uba Road, Bera Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +A 1200 Sqm Land For Sale At Chevron 100m Asking,2 Minutes Drive From Chevron By Lekki Conservation Chevron Lekki Lagos,₦,"100,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,.... Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Immaculately Built With Plush Interiors, Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House, Ikota Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat For Sale,"Ikate Elegushi, Ikate Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex Plus A Bq, Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Idado Estate. Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Chevron Drive, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 And 3 Bedroom Flat,"Megamound, Lekki County Home Ikota Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets +Magnificently Built 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Lekki Lagos,₦,"39,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Sea View 5 Bedroom Contemporary Detached Duplex, Osapa London Lekki Lagos,₦,"255,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.. Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Creek Court Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,"Chevron Toll Orchid Road, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxuriously And Aesthetically Built 4 Bedroom Semidetached Duplex, Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,"Beside Nicon Town, Ikate Lekki Lagos",₦,"2,500,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terraced Duplex,"Ocean Bay Estate, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,"Megamound Estate, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Paradise 2 Alternative Road By Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of Flats,"Eleganza Gardens, Opposite Vgc, Vgc Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,0 Toilets +1 Bedroom Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Plots Of Land,Cowrie Creek Estate Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,"After Second Toll Gate, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/houses/terraced Duplexes/lagos/lekki/lekki Phase 2/599988 4bedroom Terrace Duplex With Top Notch Finishing Fitted Kitchen Etc Lekki Phase 2 Lekki Lagos",₦,"39,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Ensuite 5 Bedroom Duplex,Bogije Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Terraced Duplex,"Charis Court 1 Estate, Off Orchid Road By Eleganza Bust/stop, Nicon Town Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,... Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Terraced Duplex,"Chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex, Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,"By Enyo Filling Station, Ikate Elegushi. Ikate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex, Chevron Lekki Lagos,₦,"127,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,6 beds,6 baths,7 Toilets +Residential Land,"Pinnock Beach Estate, Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.. Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Pinnock Beach Estate, Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Orchid Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Igbokushu, Jakande Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,5 Toilets +7 Bedroom Detached Duplex,"Off Admiralty, Lekki Phase 1 Lekki Lagos",₦,"455,000,000",0,0,0,7 beds,7 baths,8 Toilets +Flat For Sale,"Off Oriwu Street Lekki Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive, Alternative Route, Lafiaji, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road Vgc Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Sophisticated 5 Bedroom Fully Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,0 Toilets +Plots Of Dry Land,"Grandeur Estate, Abijo G.r.a Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cheap Awesome And Lovely 3 Bedroom Terrace Duplex +bq, Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,0 Toilets +4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Adedeji Adekola Street Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built And Spacious 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built Self Serviced 5 Bedroom House,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +Self Serviced 4 Bedroom Fully Detached Duplex With Bq,Jakande Roundabout Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Ovely 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Idado Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fantastic 5 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished & Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury And Grand 4 Bedroom Duplex Home, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"63,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Self Contain Bq, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 2 Bedroom Apartment + Bq, Ikate Lekki Lagos,₦,"42,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"2nd Toll Gate By Chevron, Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New And Tastefully Finished 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets +680 Sqm Residential Land, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Finished New 5 Bedroom Fully Detached Duplex,By Conoil Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lafiaji Lekki Lagos,₦,"43,500,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,By Dr Kenneth Okonkwo Way Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Office Complex,"On Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,"Lekki Horizon Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terraced Duplex,"Oral Estate, Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat, Ikate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Presidential Size 5 Bedroom Fully Detached Duplex,"Chevy View Estate, By Chevron Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Distress 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment With Excellent Amenities,Lekki Expressway Lekki Lagos,₦,"11,900,000",0,0,0,2 beds,0 baths,0 Toilets +8 Bedroom Detached Duplex,"Freedom Way, Lekki Lagos",₦,"120,000,000",0,0,0,8 beds,8 baths,9 Toilets +4 Units Of 5 Bedroom Terraced Duplex,.... Vgc Lekki Lagos,₦,"567,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Lekki Phase 2 Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,In A Well Secured Estate Vgc Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Orchid By Lekki Conservative Center Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Bq At Victoria Nest 2,"Opposite Atlantic Center, Chevron Lekki Lagos",₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Detached 4 Bedrooms Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq,Osapa Gardens Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Luxury Terrace Apartments Of 4 And 5 Bedrooms,... Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached With A Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nicely Built Fully Detached 5 Bedrooms Duplex,Mega Mound Estate Ikota Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ocean Bay Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Westend Estate, Lekki County Home Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Mixed Use Land,"Cbd, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/land/lagos/lekki/lekki Phase 1/592935 2019sqm Cornerpiece Fenced And Gated Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Resurrection Drive, Ilasan, Ikate Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,.... Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedrooms Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,.. Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of Flats,Hamilton Flats Bourdillon Court Chevron Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Serviced Duplex With Bq, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,7 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Lekki Expressway, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Bungalow,"Napier Gardens Estate, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,4 Toilets +3 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Dobys Haven, Ikota Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Detached Bungalow,"Richland Estate, Bogije Along Lekki Epe Expressway., Lekki Phase 2, Lekki Lagos",₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Eli Court, Chevron Alternative Drive, Osapa London Lekki Lagos",₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets +Tastefully Built 3 Bedroom Flat,Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Metro Terrace 3 Unit Of Mini And Self Contain, Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Bedrooms Duplex,Arcadia Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Blk 119, L Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Orchid Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale,"Oral Estate, Ikota Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Expressway Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Built 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartment,2nd Toll Gate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedroom Detached Duplex,"Off Orchid Hotel Road, By Chevron Toll Gate Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex,Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Furnished Duplex,New Road Bustop Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,.. Chevron Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Plot 106, Peace Garden Estate (chevron Cooperatives Estate), Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Pinnock Beach Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,By White Sand School Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Luxury Duplex, Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +"2,800sqm Land ( Corner Piece )","Ikate Elegushi, Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Friends Colony Estate, Osapa London Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,"Lekki County, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Ocean Palm Estate, Close To Lagos Business School, Content From Nigeria Property Centre Read More At: Https://nigeriapropertycentre.com/for Sale/houses/detached Duplexes/lagos/lekki/612705 A Newly Built Luxury 5bedroom Detached Duplex Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Distress 4bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Femi Okunnu Estate Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Fully Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Penthouse Apartment,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex In An Estate, Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Luxury Semi Detached Duplex,Nike Art Gallery Rd Ikate Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Residential Land For Sale,"Bridgegate Estate, Agungi Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Off Orchid Rd, Lafiaji Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Periwinkle Lifestyle Estate. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Peninsula Road, Behind Blenco Supermarket Lekki Phase 2 Lekki Lagos",₦,"46,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mixed Used Land For Sale,"Behind Mayfair Garden, Awoyaya Lekki Phase 2 Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"59,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Mansion,Road 3 Vgc Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Off Mobil Road ,ikota, Ikota Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,.. Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Mini Flat,.. Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Megamond Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,"Behind Cooplag Gardens, Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,"Just After 2nd Toll Gate, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +650sqm Residential Land,"Road 12, Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex,"Mega Mound Estates,lekki County Homes, Ikota Lekki Lagos",₦,"95,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,5 Toilets +Newly Built Serviced 2 Bedroom Flat,Ikota Villa Estate Before Vgc Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +Nice 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +Gorgeous 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Off Babatunde Anjous Avenue, Lekki Phase 1 Lekki Lagos",₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Jakande Lekki Lagos,₦,"245,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Bera Estates Chevron Drive Road, Lekki Expressway Chevron Lekki Lagos",₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,"Southern Point Estate Orchid Road, Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Distress 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Terraced Duplex,Bourdillon Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Agungi Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached 4 Bedroom Duplex With A Room Bq,Southern View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lekki Expressway, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Finished + Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached With A Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxuriously Finished And Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Residential Land For Sale,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,2nd Round About Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Residential Land For Sale,Close To The Gate Vgc Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Plus Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Luxury Apartment, Ikate Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached 4 Bedroom Duplex With A Room Bq,Southern View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,.... Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With Swimming Pool,Lekki County Homes Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exotic 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Terrace Bungalow,.... Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Duplex,Victory Park Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +8 Bedroom Detached Duplex For Commercial Use,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,0 baths,0 Toilets +Luxuriously Well Finished 5 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,.... Lekki Lagos,₦,"5,200,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +7 Floor Office Building,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean 2 Bedroom Flat,Ikota Villa Phase 2 Lekki Phase 2 Lekki Lagos,₦,"1,600,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +100 Units Of 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom House For Sale,"Olubunmi Rotimi Street, Lekki Phase 1, Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Villa Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Gra Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,Whitesand Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"2,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,"Megamond Estate, Ikota Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Lekki Paradise 3, Chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Bera Estate, Chevron Drive Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,.. Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Lafiaji ,orchid Road, Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Of 3 Bedroom Flat, Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Flat,"Oral Estate Off Chevron Toll, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"By Chevron Toll, Lafiaji, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Dry Land,Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terraced Duplex,"Off Elegushi Beach Road, Ikate Lekki Lagos",₦,"9,800,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Luxury Executive 2 Bedroom Apartment, Idado Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Semi Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Orchid Road Opposite Chevron Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow,Nappier Garden Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxuriously Finished And Fully Serviced 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"79,500,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land,Plot 7b Road 7 . Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"83,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Block Of Flats,Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale.,"Road 48, Victoria Garden City Estate. Ikota Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,2 baths,3 Toilets +7 Bedroom Waterfront House, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"82,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lekki Garden Phase 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets +Well Finished 3 Bedroom Flat,Milverton Estate Shoprite Road Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"61,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,"2nd Tollgate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +1 Bedroom House,Spar Road /beside Nicon Town Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,.. Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,"Ikate Elegushi, Ikate Lekki Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Residential Land For Sale,Vgc Close Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Lekki County Homes, Ikota Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex Plus A Spacious Room Bq,"Westend Estate, Ikola Villa Estate, Off Lekki Epe Expressway Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Agungi Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Bogije Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,0 Toilets +Newly Built 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"117,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Blk 134, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Chevy View Estate, Chevron, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex.,Orchid Road By 2nd Toll Gate. Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Room Bq,"Carlton Gate Estate, Chevron Drive., Lekki Expressway Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Off Kusenla Road Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land,Ikate Elegushi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Flat With A Bq.,"Off Baale Street, Ologolo Lekki Lagos",₦,"17,000,000",0,0,0,1 beds,1 baths,1 Toilets +Furnished 4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lekky County Homes, Ikota Lekki Lagos",₦,"195,000,000",0,0,0,6 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Exquisite 4 Bedroom Duplex,Royal Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Off Prince Ibrahim Eletu Avenue Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamound Estate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,.. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Chevron, Toll Gate Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow,Northern Foreshore Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Nice 4 Bedroom Duplex,Second Toll Gate Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat, Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,.. Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex, Chevron Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,New Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Pinnock Beach Estate, Lekki Lagos",₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxuriously Built 4 Bedroom Semi Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Eli Court, Chevron Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,.. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,.. Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Rd 40 Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Lekky County Homes, Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Penthouse, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Duplex,Lekki County Estate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of 3 Bedrooms Flat, Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,7 Toilets +6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Abiola Court 10, Chevron Drive ( Alternative Route) Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Flat,.. Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex + 1 Room Bq For Sale, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Directly On Abayomi Shonuga Off Dele Adedeji, Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,.... Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,.. Idado Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow,"Ocean Bay Estate, Lafiaji Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Daniel's Garden Lekki. Few Minutes Before Chevron Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,6 baths,6 Toilets +7 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,7 beds,7 baths,5 Toilets +Exotic & Valued 2 Bedroom Terrace Duplex,Opp. Nicon Town Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Terrace Bungalow,Southpoint Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Chevron Alternative Drive Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +New And Tastefully Built 4 Bedroom Terrace Duplex,"Off Spar Road, Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Earl's Court Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Boutique Hotel,Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,10 beds, baths,0 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Flat,Orchid Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Units Of 3 Bedroom Terrace Triplexes,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +Block Of Flats,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,.. Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive,orchid Road, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 6 Bedroom Fully Detached Duplex With Swimming Pool, Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Groove Ville Estate New Road (alpha Beach )before Chevron, Igbo Efon Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Gra Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Office Building, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,.... Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shop,Jakande Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex,.... Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxurious 5 Bedroom Fully Detached Duplex,Kusenla Rd Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Duplex,Megamond Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Warehouse,Lekki Phase 1 Lekki Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Ikate Elegushi, Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Bungalow,Close To Alpha Beach Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Creek Avenue Court Phase 2, Ikota Lekki Lagos",₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets +7 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets +6 Bedroom Detached Duplex,6 Bedroom Detached Duplex Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With 1 Room Bq,Chevyview Estate Off Chevron Drive Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Terrace Duplex,.... Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom House,"Carlton Gate Estate, Chevron Drive., Lekki Expressway Lekki Lagos",₦,"220,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedroom Commercial Property,"No 11 Furu Ezimora Lekki Phase 1 Lagos, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,"After Second Toll Gate, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment With Boys Quarter, Ikota Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 12 Units Of 3 Bedroom Apartments, Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Idado Lekki Lagos,₦,"54,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,.. Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"After 2nd Toll Gate, Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Phase 2 Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Tulip Haven Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mixed Use Land,"Blk 127, Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Private Cinema, Osapa London Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +Land For Sale,"Blk 134, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamound Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq, Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex (offplan),"Abijo Gra, Off Lekki Epe Expressway Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +Serviced 3 Bedroom Flat, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Block Of Flats,"In The Heart Of Lekki, Chevron, Ikate Lekki Lagos",₦,"37,500,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Spacious Detached Duplex,"71a, Agungi Agungi Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets +Aesthetically Finished And Superlative 4 Bedroom Terrace Duplex + Bq, Vgc Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Units Of Contemporary Furnished Flats, Chevron Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"3,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Ilasan/jakande Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +Spacious Brand New Four Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Opposite Chevron Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Lafiaji Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Detached Bungalow,"Iland, Inside Beechwood Estate, Shapati Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious And Well Finished 4 Bedroom Semi Detached Duplex With A Bq, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"69,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Detached Bungalow.,Vgc Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat, Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,.... Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Bungalow,.... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,000 Sqm Land", Ikate Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Terrace Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Jakande Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets +6 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets +Immaculate & Luxurious 4 Bedrooms Semi Detached Duplex,"Close To Oral Estate, Chevron 2nd Tollgate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With 1room Bq,"Chevy View Estate, By Chevron Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex (offplan),Whitesands Beach Estate Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex + 2 Bedroom Bq,Amen Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Orchid Road By 2nd Toll Gate. Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,.. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ldado Area Off Chevron Estate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 2 Units Of 5 Bedrooms Semi Detached House With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Behind Pinnock Beach Estate Jakande Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"6,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,"Ikota Villa, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Orchid Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Fenced Dry 650sqm Land,Itedo Estate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex House With 2 Rooms Bq For Sale @ Lekki Phase 1. Title: C Of O Price 170m,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Newly Build 5bedroom Fully Detached Duplex,.. Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds, baths, Toilets +"Lekki Phase One Right Side. Newly Built Service Mini Flat , 2bedroom Flats Allensuite, Bq, 3bedroom Flats Allensuite, Bq, 3bedr0om Massonate, Allensuite, Bq, # 28mil, # 55mil , # 70mil. And # 75mil,",Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Just Out Lekki Phase One Left Side. Cbd Block 6. Plot. 18 1707m2 = 400mil,Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +"Direct Instruction Lekki Orange Island ( End Of Freedom Way), After Periwinkle Estate, Land Measuring 2400m2 In Block 8 Plot. 2. = Price. 150k Per Square Metre Ikoyi. Banana Island. Zone. D. Plot. 13 1500m2 Fenced Gated+ Lagos State Rati",Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +A Landed Property Measuring 400sqm,Ikate Lekki Lagos,₦,"68,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",1,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,"Victoria Crest, Osapa London Lekki Lagos",₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths, Toilets +Brand New 4bedroom Semi Detached Duplex With Bq,.. Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Property Description : 2 Floors On 450sqm Of Land.stunning View,gallery, Perfect Finishing Relaxation Section,imported Furnitures And Unique Setting.location : Fola Osibo (cbd) Title : Cofoprice:#350m Net Contacts",Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +4 Bungalow Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +5bedroom Semi* *detached Duplex With* *separate Entry*,Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Terraced Duplex With A Boys Quarter,Ikate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +4 Plots Of Dry Land At Lekki Town Off The Coastal Road*,"Coastal Road, Lekki Lagos",₦,"10,000,000",0,0,0, beds, baths, Toilets +"Tantalizer Fantastic Good Design 5bedroom Detached House, 2living Rm, 2rm Bq, Garden, Spool, Gen House,, On 600m2. Price 200mil",Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds, baths, Toilets +"Amazing Pictures Available For A Serious Client! Brand New 4 Bed Room Semi Detached Duplex With Bq Fitted Kitchen Ikota Villa Estate .ikota Lekki. It's In A Serene Gated Estate With Private Uniform Wearing Security Men. 36m,d Yearly Rental Value Of This",Ikota Lekki Lagos,₦,"3,600,000",0,0,0, beds, baths, Toilets +"4 Bedroom Duplex + 3 Bedroom Flat+ 2 Room Boys Quarters Sitting On Land Measuring 875sqmts At Ikate Elegushi,,lekki Phase 1,lekki,lagos. Price:n400m Title:c Of O",Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land Fenced Measured 1032sqm Of 2332sqm,Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex + Bq,"Omole Phase Ii Opposite Gtbank, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +Fantastic Flats On Sale From N40 Million And Above In Lagos Mainland And Lekki*,Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema","Arcdia Groove Estate, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,5 beds, baths, Toilets +Plots Of Land,.. Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq,"Omole Phase Ii Opposite Gtbank, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq @ Chevron Lekki,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex,.. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Fitted Kitchen And Bq,.. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq At Lekki,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,"2nd Tollgate, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex,"Lekki 2nd Toll Gate, Lekki Lagos",₦,"45,000,000",0,1,0,4 beds, baths, Toilets +"Designed For Office, School, Hotel Or Factory",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Excellent And Tasteful 2units Of 4 Bedroom Semi Detached Duplex Plus A Room Bq At Chevy Drive Alternative For Sale,Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxurious Exclusively Finished 4 Bedroom Semi Detached Duplex At Chevy Drive For Sale,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets +Two Plots Sandfilled Land Size:1316sqm At Lekki County Ikota,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +A Tasteful Finished4 Bedroom Semi Detached Duplex Plus A Room Bq At Orchid Road For Sale,Orchid Road Ikota Lekki Lagos,₦,"43,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Zone K4, 800sqm Land At Zone K4, Nlng Cowrie Creek Estate,ikate",Nlng Cowerie Creek Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Classic And Lovely 2 Units Of 4bedroom Semi Detached Duplex Plus A Room Bq At Chevron Alternative For Sale,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Lovely, New Tastefully Finished 2 Units Of 4 Bedroom Semi Detached Duplex Plus A Room Bq At Chevy Drive For Sale",Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +"5 Plots Of Land On The Express Road Directly Opposite Ikota Shopping Complex, Vgc Lagos","Directly Opposite Ikota Shopping Complex,vgc Lagos Ikota Lekki Lagos",₦,"450,000,000",0,1,0, beds, baths, Toilets +10units Of 4bedroom Terrace Duplex At Chevron Alternative For Sale,Chevron Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +Newly Built 4bedroom Fully Detached Duplex Plus Bq In Bera Estate On Chevron Drive For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Exquisitely Classic Designed 5bedroom Fully Detached Duplex Plus A Room Bq At Chevy Drive For Sale,Chevy Alternative Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Top Notch 2 Units Of 4bedroom For Sale At Chevy Drive,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built To Taste 4bedroom Detached Duplex For Sale At Chevy Drive Alternative,Chevy Drive Alternative Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exclusively Finished 2units Of 4bedroom Semi Detached Duplex Plus A Room Bq At Chevron Alternative For Sale,Chevron Alternative Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Superb Newly Built Spacious 4bedroom Semi Detached Duplex + Bq For Sale @ Idado Before Chevron,lekki Axis",Lekki Lagos,₦,"51,000,000",0,1,0, beds, baths, Toilets +Luxury 5 Bedrooms Detached Duplex With Excellent Facilities,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Penthouse And Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Duplex With Swimming Pool,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lekki Plot Measuring 650sqms For N75m,Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace House In Lekki,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq.,"No 45, Chevron Alternative Route Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Super Luxury Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,2nd Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +New Self Serviced 4 Bedroom Terrace Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Terraces With Payment Plan,Opposite Lekki County Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 2 Bedroom All Rooms Ensuite Apartments,2nd Lekki Toll Gate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +New 3 Units Of 5 Bedroom Detached Duplex,"By Italian School, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +New & Spacious 4 Bedroom Terrace Duplex, Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq (top Notch), Chevron Lekki Lagos,₦,"94,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,Vella Homes Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraces Plus Bq,4th Round About Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious Terrace 4 Bedroom Duplex,Vella Homes Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Inside Ikota Villa. Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Creek Avenue Ikota Lekki Lagos,₦,"41,500,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Super Luxury Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Spacious Cozy 4 Bedroom Semi Detached Plus Maids Room,Angles Court Abijo Lekki Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,0 Toilets +New & Spacious 5 Bedroom Fully Detached Duplex With Bq, Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets +Spacious 4 Bedroom Detached Duplex At Vgc, Vgc Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +New 5 Bedroom Mansion, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +New 5 Bedroom Mansion, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +New & Spacious 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +Pinnock Beach Estate Land For Outright Purchase,Pinnock Beach Estate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Four Bedroom Duplex With Excellent Finishing, Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,0 Toilets +Plots Of Land Available,Eleganza Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificently Built Four Bedroom Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,0 Toilets +Four Bedroom Semi Detached Duplex Available, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +New Luxury Two Bedroom Apartment, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury Five Bedroom Fully Detached Duplex Available, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Topnotch Four Bedroom Terrace Duplex,Lekki Expressway Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,0 Toilets +Exquisitely Finished Three Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,4 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"Near Oral Estate, Chevron, 2nd Toll Gate, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Off Alao Aladimeji Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 7bedroom Duplex With Excellent Fittings,Nicon Town Lekki Lagos,₦,"325,000,000",1,0,0,7 beds,8 baths,8 Toilets +Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Completed 2 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Completed 3 Units Of 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Terrace Duplex In A Fully Serviced Estate,Behind Enyo Ikate Lekki Lagos,₦,"9,800,000",0,0,0,2 beds,2 baths,3 Toilets +An Exquisitely Built And Furnished 5 Bedroom Duplex With A Bq,Chevron Lekki Lagos,₦,"160,000,000",0,0,1,5 beds,5 baths,5 Toilets +Newly Built 3bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand 5 Bedrooms Duplex,"Chevron Alternative, Off Chevron Drive Chevron Lekki Lagos",₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached House,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Available For Sale,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Office Building On Plot Measuring More Than 1,000sqms",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"510,000,000",0,0,0, beds, baths, Toilets +"Various Plots Being 623sqms, 708 Sqms, And 692sqms In Vintage Park Estate, Ikate",Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Beautiful 3 Bedroom Apartment With Bq Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,3 Toilets +Plot Measuring 10 Hectares,"By 5th Roundabout, Lekki Epe Expressway Jakande Lekki Lagos",₦,"95,000/sqm",0,0,0, beds, baths, Toilets +"26,000sqms Land",... Ikate Lekki Lagos,₦,"120,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Plot,"Close To Imax Cinemas, Cbd Area Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,0,0, beds, baths, Toilets +Magnificent 6 Bedroom Fully Detached Duplex With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,6 baths,6 Toilets +"Plot Measuring Almost 80,000 Square Meters",Next To World Oil On Lekki Epe Expressway Lekki Lagos,₦,"150,000,000/sqm",0,0,0, beds, baths, Toilets +"Plot Measuring 8,500sqms",Lekki Phase 1 Lekki Lagos,₦,"250,000/sqm",0,0,0, beds, baths, Toilets +"Office Space Building Of 4 Floors Along Lekki Experessway With Large Space Of 3,070.741 Square Meters With C Of O Title Document",Along Lekki Experessway Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Plot Measuring 1,100sqms In Twin Lakes Estate",Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"Plot Measuring 21,000sqms",By Vgc/ Ikota Lekki Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Beautiful Finished 5 Bedroom Fully En Suite Detached Duplex With A Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Twenty Units Of Luxurious 4 Bedroom Terraces With Bq In A Serviced Compound With Swimming Pool, Gym, Etc",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +"Plot Measuring Almost 4,900sqms",Just Off Chevron Drive Igbo Efon Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Fantastic Furnished 5 Bedroom Fully Detached Self Compound With All Modern Amenities Lovely Finishing At Chevy View Estate Lekki 75m,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 100 Units Of 4 Bedrooms Terraces With 1 Room Bq,Behind This Present House Church Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +"Twenty Units Of Luxurious 4 Bedroom Terraces With Bq In A Serviced Compound With Swimming Pool, Gym, Etc",Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +"5 Bedroom Fully Detached Duplex For Sale At Osapa London, Lekki",Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Serviced Terrace Duplex,2nd Toll Lekki Lagos,₦,"33,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Serviced Terrace Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"38,000,000",1,1,0,4 beds,5 baths,5 Toilets +Commercial Property,.. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom And 2 Bedrooms Available In Lekki,Ikate Ikate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets +Brand New 4bedroom Semi Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets +"4 Bedroom Terrace Duplex For Sale In Ikota Villa, Ikota",Ikota Villa Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Maisonette,Phase1 Est Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Four Bedroom Duplex,Chevron Drive Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroomfully Detached.,"Megamound Avenue, Lekki County Homes. Ikota Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +An Equisite 10 Units Of 2 Bedroom Flats,Ikota Villa By Mega Chicken. Ikota Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached House With A Swimming Pool,"Megamound Avenue, Lekki County Homes. Ikota Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Full Detached 7 Bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,8 beds,8 baths,9 Toilets +Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets +Newly Built Luxury Smart Home,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"79,500,000",1,1,1,5 beds,7 baths,7 Toilets +Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets +Newly Built 4bedroom Fully Detached Duplex Ensuite With Bq.,West End Estate By Ikota Estate Villa. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Plots On A Corner Piece Of Land,Osapa Osapa London Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Newly Built & Well Finished 4bedroom Terrace Ensuite + Bq & Spacious Fitted Kitched In A Mini Estate I,Ilasan Lekki Lagos,₦,"69,000,000",0,1,1,5 beds,6 baths,7 Toilets +Newly Built & Well Finished Blocks Of Room N Parlor Mini Apartments,Ikate Lekki Lagos,₦,"33,000,000",1,1,1,1 beds,2 baths,2 Toilets +Newly Built Luxury Smart Home,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,1,4 beds,5 baths,6 Toilets +Newly Built & Well Finished Blocks Of 2bedrm Flats Ensuite ,Ikate Lekki Lagos,₦,"48,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached,Off Orchid Hotel Road. Opposite Chevron. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden.,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +Beechwood Estate.,"Bogije, Lekki. Lekki Lagos",₦,"13,300,000",0,0,0, beds, baths, Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq.,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"63,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eden's Court, Lekki","Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Newly Built Well Spacious 5 Bedroom Fully Detached Duplex With Bq In Eden's Court, Lekki.","Chevron Drive Lekki, Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,1,1,5 beds,7 baths,7 Toilets +Eminence Court.,Bogije Lekki/epe Expressway. Lekki Lagos,₦,"5,200,000",0,1,0, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,"Creek Avenue Court, Lekki. Ikota Lekki Lagos",₦,"40,000,000",0,1,1,4 beds,6 baths,6 Toilets +Winhomes.,"Winhomes Is Located Off Orchid Hotel Road, By Chevron (2nd Toll Gate) Lafiaji Lekki. Chevron Lekki Lagos",₦,"18,000,000",0,1,0, beds, baths, Toilets +Plots Of Land,New Chevron Beside Beune Vista Estate Chevron Lekki Lagos,₦,"38,000,000/day",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Fabulous 4 Bedroom Duplex For Sale At Lekki,Lafiaji Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxuriously Finished 4 Bedroom Duplex With A Bq For Sale,Orchid Road Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Budget Friendly 4 Bedroom Standalone Duplex For Sale In Lekki,Lafiaji Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Serviced 4 Bedroom Semi Detached Duplex With A Bq For Sale,Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Aesthetic 5 Bedroom Detached Duplex,.. Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq For Sale At Chevron,... Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Avant Garde 5 Bedroom Standalone House In Lekki For Sale,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Superb 4 Bedroom Semi Detached Duplex,.. Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury & Contemporary 4 Bedroom Detached Duplex,Off Orchid Hotel Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Big 4 Bedroom Semi Detached House,Coleman Nwafor St Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom House With Bq For Sale,Ikota Villa Estate Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Aesthetic 4 Bedroom Detached Duplex,.. Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Massive 5 Bedroom Duplex,Alpha Beach Road Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Detached Duplex And 2 Bq,Alpha Beach Road Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land With Governor's Consent For Sale In An Estate @ Ologolo Lekki,Ocean Pavilion Estate Ologolo Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets +New 4 Bedroom House,Conservation Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom House, Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Large Sized 3 Bedroom Semi Duplex With Bq,... Ologolo Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 7 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,7 beds,7 baths,8 Toilets +5 Bed Room Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Home With A Bq For Sale,Lafiaji Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Lovely Brand New 4 Bedroom Duplex,In A Gated Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Modern Finishes,... Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terraced Duplex,... Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Aesthetic 4 Bedroom Duplex For Sale In Lekki,Alternative Route Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +500 Sqm Land For Sale In A Serviced Estate,Pinnock Beach Gate Estate Osapa London Lekki Lagos,₦,"90,000,000",1,0,0, beds, baths, Toilets +Fully Serviced 4 Bedroom Terraced Duplex With A Bq,In A Serviced Estate Ilasan Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +2022 Sqm Land For Sale At Vgc Lekki, Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq Is Located In A Secured Estate,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 8sep8,Lekki Phase 2 Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 8sep7,Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Governors Consent,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,5 baths,5 Toilets +Governors Consent,Ikota Lekki Lagos,₦,"50,000,000/year",0,1,0,4 beds,4 baths,4 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Beautiful 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Terraced Duplex,2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached House With A Bq,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 4bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Fully Detached Duplex With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Fully Detached Duplex With A Bq For Sale,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached House With A Bq,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached House With A Bq,Ikota Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Tastefully Built Brand New 5 Bedroom Fully Detached House For Sale,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat For Sale,Ikate Ikate Lekki Lagos,₦,"48,000,000",1,1,0,2 beds,2 baths,3 Toilets +3bedroom Flat Carcass,Chevron Drive Chevron Lekki Lagos,₦,"28,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exotic Brand New 5 Bedroom Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notch Massive 5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom House,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Bareland,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Bisola Duronsimi Drive Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Triplex With Bq,Western Foreshore Estates Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Contemporary 5 Bedroom Detached Duplex With B.q,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Maintained 4 Bedroom Detached House,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Top Notch Newly Built Massive 5 Bedroom Detached Duplex With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Bungalow,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Brand New, Luxury, Serviced 1 Bedroom Apartment","Off Kushenla Rd, Ikate Elegushi Lekki Lagos",₦,"28,000,000",0,0,0,1 beds,0 baths,0 Toilets +Residential Land,Ogombo Road Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedroom Detached Duplex With 2 Room Boys Quarter,"Carlton Gate Estate, Chevron Drive, Lekki Expressway Lekki Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Pinnock Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Luxurious 5 Bedroom Detached Duplex With Bq,"Chevy View Estate, Chevron Hq, Lekki Expressway Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,Between 5th And 6th Traffic Light Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Luxury Semi Detached House,Beside Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,By Chevron Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Residential Land,"Arcadia Groove Estate, On Circle Mall Drive (shoprite) Jakande Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,280sqm Plot Of Land",Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 4 Bedroom Duplex At Ikota Lekki For Sale,Ikota Ikota Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,5 Toilets +Commercial Property,"Eleganza, Lekki Expressway Lekki Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Road 46 Vgc Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 5 Bedroom Fully Detached Duplex With A Room Bq,"Bera Estate, Off Chevron Drive Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Magnificent Water Front Fully Detached House,Road 2 Victoria Garden City Vgc Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedrooms Semi Detached House,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House,Ikota Villa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Twin Duplexes With A Maids Room,"Carlton Gate Estate, Chevron Drive Lekki Lagos",₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex +pool,Pinnock Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Alperton Residence Estate Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Maintained 4 Bedroom Semi Detached House,"Richmond Gate Estate, Lekki Peninsula, Lekki Expressway Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Massive 5 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Brand New 4bed Duplex With Bq For Sale In Lekki Phase 1.,"Off Omorinre Johnson, Off Admiralty Way, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Nicely Built 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat For Sale In Osapa,Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,1,0,6 beds,6 baths,6 Toilets +Beautifully Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Semi Detached House With Bq,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Gated Community Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Detached House,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq And Swimming Pool,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Newly Built 4bedroom Terrace Duplex With Room Bq In A Gated Estates,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5bedroom Duplex With Room Bq,Gated Community Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Contemporary & Spacious 5 Bedroom Semi Detached Duplex With A Room Boys Quarter,",Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"168,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4bedroom Detached Duplex With Room Bqs For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Built 4bedroom Fully Detached Duplex With A Bq,U3 Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale Well Built 4bedroom Fully Detached Duplex With A Bq,U3 Estate Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Detached Duplex / Open Terrace / 1 Maid Room,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex Terrence,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"36,000,000/sqm",0,1,0,4 beds, baths, Toilets +3 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Idado Axis Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Unite Of Newly Built 4 Bedroom Semi Detached Duplex,Bera Estate Along Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,.. Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Detached Bungalow, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Newly Built And Contemporary Designed En Suite Five Bedrooms Fully Detached House, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Off Durusimi Etti Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Five Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200sqm Land, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,"Ikota Villa Estate, Behind Mega Chicken Ikota Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +2unite Of Newly Built 5 Bedrooms Detached Duplex,"Bera Estate, Chevron Drive Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,7 baths,7 Toilets +Nice 4 Bedrooms Bungalow With 2 Rooms Bq,Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Flat Apartment, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious And Well Finished 3 Bedroom Flat,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Detached House,.. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Mini Flat,Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,0 baths,0 Toilets +Land,"Victory Park Estate, Shoprite Road Jakande Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,Orchid Hotel Road By Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex Along Chevron Drive,Chevy View Estate Along Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Daniel Garden Agungi Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,"Oribanwa,lekki Peninsula Lagos Lekki Lagos",₦,"17,675,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekky County Home Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plaza / Complex / Mall,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Orchid Road By Chevron Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Gated And Fenced Land In A Well Developed Area,Lafiaji Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House With A Room Bq,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mini Flat, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Flat, Ikate Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets +Tastefully Finished 4 Units Of 5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Self Contained (single Rooms),Ilasan Esate Ilasan Lekki Lagos,₦,"31,000,000",0,0,0,2 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With A Room Bq,Gated Estate Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Fully Detached House With Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With 8 Seater Cinema,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Exquisitely Finished 4 Bedroom Duplex,"Eli Court Lekki, Chevron Alternative Drive, Lekki Phase 2 Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built Three(3) Bedroom Flat Apartment Or Three(3) Bedroom Terraced Duplex With A B. Q. At Atlantic Mews, Lekki","Igbo Efon, Just Before Chevron Hq And Along Alpha Beach Road Igbo Efon Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,4 baths,4 Toilets +Beautiful Luxury 4 Bedroom Semi Detached Duplex,Chevron Alternative Route. Lekki Phase 2 Lekki Lagos,₦,"54,000,000",0,1,0,4 beds, baths, Toilets +Exquisite Three(3) Bedroom Terraced Duplex With B. Q. And Spacious Parking Lots,"Ikate Elegushi, Lagos Ikate Lekki Lagos",₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury Two Bedroom Fully Serviced Apartment In A Mini Estate,Beside Enyo Filling Station By Oral Estate. Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Bare Undeveloped Land Of 500 Sqmts At Lekki Phase 2 For Urgent Sale,"Lekki Phase 2, Ajah Lekki Phase 2 Lekki Lagos",₦,"17,000,000",0,1,0, beds, baths, Toilets +Lovely 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 4 Bedroom Terrace With Bq For Sale.,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom All Rooms En Suite Detached Duplex With A Swimming Pool,Pinnock Estate Jakande Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Exquisitely Finished 4 Bedroom Fully Detached Duplex.,Chevron Alternative Drive. Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built Four(4) Bedroom Semi Detached Duplex With B.q At Ikate Elegushi,Exquisite Four(4) Bedroom Semi Detached Duplex With Spacious B.q And Frontage For Sale Ikate Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch 3 Bedroom Terrace Duplex,"By 2nd Toll Gate, Chevron Lekki Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,1,0,3 beds, baths, Toilets +Hectares Of Land For Sale,Ilasan Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Contemporary Semi Detached Duplex With A Bq,Lekki Epe Expressway Lekki Lagos,₦,"48,000,000",0,1,0,4 beds, baths, Toilets +5 Bed Room Detach Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +Two Bedroom Luxury Flat,"Honetville Estate, Agungi, Lekki Penisula Lekki Phase 2 Lekki Lagos",₦,"32,000,000",0,1,0,2 beds,1 baths,1 Toilets +3 Bedroom Penthouse Flat,"Agungi Lekki Penisula, Lagos Lekki Phase 2 Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Serviced Plots For Sale In Abijio 28aug2,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment For Sale In Lekki 28aug1,Chevron Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +A Dry Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"42,000,000/sqm",0,0,0, beds, baths, Toilets +Well Built 4bedroom Fully Detached Duplex With A Bq For Sale .,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached House With Spacious En Suite Bedrooms,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedroom Terrace Duplex With Room Bqs For Sale,Lekki Phase1 Maruwa Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale Well Built 4bedroom Semi Detached Duplex With A Bq,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale Well Built 4bedroom Semi Detached Duplex With A Bq,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flats Apartments For Sale,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedrooms Fully Detached House For Sale ,Gated Estate In Lekki Phase1 Rightside Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale On 3 Floors With A Swimming Pool,Beautiful Estate In Osapa London Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 890sqm,Pinnock Beach Estate Osapa London Lekki Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets +Brand New 4 Bedrooms Detached House,Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxurious 4bedroom Terrace Duplex With Swimming Pool And Gym,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat With Excellent Facilities,Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets +Eight Bedroom Duplex,Villa Estate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"250,000,000/month",0,0,0,8 beds,9 baths,9 Toilets +Affordable Ikota Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,0,0, beds, baths, Toilets +Affordable Ikota Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool And Bq,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"44,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,"Bella Court 3, Ikate Lekki Ikate Lekki Lagos",₦,"53,500,000",1,1,1,4 beds,5 baths,5 Toilets +Four Bedroom Detached Duplex,No1 Tourism Road Off Alpha Beach Lekki Lagos Igbo Efon Lekki Lagos,₦,"35,000,000/day",1,0,0,4 beds,6 baths,6 Toilets +Brand New 5 Bedrooms Semi Detached Houses For Sale!!! ,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Semi Detached Duplex With Room Bq,Bridgegate Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Well Finished 5bedroom Stand Alone House With Swimming Pool,gym And Study Room",Lekki Lagos Ikota Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached House With A Very Massive Compound,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Detached House With A Very Massive Compound,Chevron Drive Alternative Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex House With 1room Bq,Spring Bay Estate Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex House With 1room Bq For Sale!!!,Osapa London Garden Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Fully Detached Duplex For Sale With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets +4bedroom Semi Duplex With Bq For Sale,Ologolo Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex With Bq For Sale!,Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Work On This Please 100% Closeable Owner Joint Venture In Lekki Phase1 A Corner Piece Land Size 2019sqm Proposal Owner Prefers 18 Units Of Luxury Flats Title Lcofo & Gconsent Value N550million No Premium Location Off Admiralty Way,Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Maisonnette And 2 Bedroom Flats,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +4bedroom Fully Detached Duplex For Sale With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Constructed 5 Bedroom Fully Detached Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex + Bq For Sale @ Lekki Ologolo,.. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq For Sale @ Lekki Ologolo Title: Governor's Consent Price: *ngn 55 M*,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Ologolo,Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Brand New 5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Esther Adeleke Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Blocks Of Flat,Horizon Estates Lekki Phase 1 Lekki Lagos,₦,"27,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached,Eden's Court Chevron Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,5 baths,6 Toilets +Shop,Ikota Shopping Complex Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Flat,... Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Townhouse, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,... Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Vintage Park Estate Jakande Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Axis Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Brick House + 1 Bedroom Bq,"Idado, By Chevron Traffic Light Chevron Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraces,Eden's Court Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +2 Bedroom Block Of Flats (under Construction),Ikate Elegushi Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached Duplex.,Off Onikepo Akande Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Detached House,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Olive Park Estate Close To Lagos Business School Lekki Ajah, Lekki Expressway Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex For Sale,"Second Toll Gate, Lekki, Lagos State Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Detached Duplex Off African Lane, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Fully Detached Duplex,... Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Newly Built 5 Bedroom Detached Duplex At Lekki County Home, Ikota",Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Ikota Villa Estate Behind Mega Chicken, Lekki Expressway Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Flats,Orchid Hotel Road By Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,Eden's Court Chevron Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Orchid Road Lekki Second Toll Gate, Lafiaji Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale @ Lekki Agungi Title: Governor's Consent Price: *ngn 75 M*,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bed Room Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Semidetached 4bedrooms Brickhouse With 1 Bed Bq. With Ample Packing Space, Extra Storage Area By Generator Hse. Fully Equipped Kitchen With Gas Burner And In Built Microwave. Masters Bedroom With Nicely Finished Closet And Spacious Bathroom. Secured And G",Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +"??????for Sale?????? *newly Built 4 Bedroom Semi Detached Duplex Finished Contemporary Style And Bq* Price: *55m* Features?????? All Rooms Ensuite, Fitted Kitchen, Water Treatment Plant, Cars Port, Inter Lock Compound F",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Newly Built 4bedroom Semi Detached Duplex In Ikota Gra 45m Net,Lantana Street Ikota Lekki Lagos,₦,"4,000,000/sqm",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq For Sale,2nd Toll Gate Lekki Lagos,₦,"55,000,000/sqm",0,0,1,4 beds,4 baths,4 Toilets +Massive 4 Bedroom Detached Duplex / Open Terrace /,Ikota Lekki Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"3 Year Payment Plan In Osapa London, Lekki! 4 Bedroom Semidetached Triplex",Secured Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 1 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +"Block Of 1 Bedroom & 2 Bedroom Apartments Is Well Finished With Modern Fittings And Functional Spaces. Fully Serviced With A Rooftop Gym, 24hr Electricity",Ikate Ikate Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached’s Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +2units 5bedroom Contemporary Semi Detached Duplex For Sale,Cowrie Creek Estate By Nicon Town Ikate Ikate Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex With Room Bq,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex In A Secure Gated Estate,Gated Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxuriously Finished New 5 Bedroom Detached Duplex With Swimming Pool,"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"140,000,000",0,1,1,5 beds,7 baths,7 Toilets +Luxuriously Finished New 5 Bedroom Detached Duplex (negotiable On Purchase),"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,7 baths,7 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. (negotiable On Purchase),"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,"Chevron Alternative Drive,lekki Chevron Lekki Lagos",₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxuriously Finished New 5 Bedroom Detached Duplex With Swimming Pool,"Lekki County Homes, Lagos Ikota Lekki Lagos",₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 1 Creek Avenue Court Lekki (pay And Pack In).negotiable,"After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,"Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Lekki Phase 1 Lekki Lagos",₦,"70,000,000",1,1,1, beds, baths, Toilets +Newly Built Fully Furnished 5 Bedroom Detached Duplex,"Megamound Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"100,000,000",1,1,1,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniel's Garden Lekki. Pay And Pack In.,"Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 1 Creek Avenue Court Lekki (pay And Pack In).negotiable,"After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. (negotiable On Purchase),"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,6 baths,6 Toilets +Luxuriously Finished 5 Bedroom Detached House,"Lekki County, Lagos Lekki Phase 2 Lekki Lagos",₦,"140,000,000",1,1,1,5 beds,7 baths,7 Toilets +2 Bedroom Terrace Duplex,"Lekki Scheme 2, Off Abraham Adesanya Roundabout. Lekki Phase 2 Lekki Lagos",₦,"28,000,000/sqm",1,0,1,2 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Orchid, Lekki Lagos",₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets +An Exquisitely And Top Notch Finished 5 Bedroom Duplex For Sale*,Ikate Lekki Lagos,₦,"145,000,000",1,1,1, beds,5 baths,5 Toilets +A 3 Bedroom Flat.,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,1,3 beds,3 baths,3 Toilets +Newly Built 3 Units Of 4 Bedroom Duplex,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets +Clean And Spacious 4 Bedroom +bq Detached House,Carlton Gate Chevron Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Garden Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Chevron Drive Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Contemporary Duplex For Sale,Secured Estate With 24 Hour Power Supply Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terraced Duplex For Available At Orchid Hotel Road.,Orchild Road Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace And Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4units Of 5 Bedrooms Fully Detached Houses For Sale,Lekki Phase1 Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,6 beds,6 baths,7 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +"960sqm Water Front Land With Approval For 2 Detached Houses,",Pinnock Beach Estate Jakande Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedrooms Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Waterfront Terrace With Boats Jetty,Admiralty Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex .,Ikota Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Osapa London Lekki Lagos,₦,"92,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bed Room Terrace Duplex,Oniru Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Lovely 4bedrooms Detached Duplex For Sale At Lekki Off Mobile Road Alamgutan Ilaje Lagos.,"Lekki Off Mobile Road Alangutan, Ilaje. Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms In An Estate,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Affordable And Luxury 5 Bedrooms Fully Detached Duplexes,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mind Blowing 4 Bedrooms Semi Detached Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex,"Beside Pinnock Beach Estate, Castlerock Ave, Jakande Lekki Lagos",₦,"100,000,000",1,1,0,6 beds,6 baths,7 Toilets +5bed Room Detach Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Executive And Magnificent 4 Bedrooms Terraced Duplex,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Duplex,"Cromwell Court Estate Ii, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedrooms Flat,Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4,500 Sqm Water Front Land", Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4bedroom Duplex In A Serene Environment,Lekki Estate Off Mobile Ilaje Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious And Executive 4 Bedrooms Semi Detached Duplex,Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Sweetly Built And Magnificent 9 Unit Of 3 Bedrooms Flat With Bq,Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious Apartments... 10 Units Of 2 And 3 Bedroom Flats For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Tastefully Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Bera Estate, Lekki",Bera Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Very Tasteful 4 Bedroom Semi Detached Duplex For Sale At Osapa London, Lekki",Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets +"Luxurious 4 Bedroom Terraced Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +2 Plots Of Sandified Land For Sale In Lekki Estate,County Homes Estate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +"Tastefully Structured 5 Bedroom Detached Duplex Plus Bq For Sale At Chevron Alternative Route, Lekki",Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New And Tastefully Finished 4 Bedroom Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +"Hot Sales... 4 Bedroom Terraced Duplex For Sale At Springbay Estate, Ikate",Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 2 Bedroom Apartment For Rent At Osapa London,Osapa London Lekki Lagos,₦,"2,000,000",0,0,0,2 beds, baths, Toilets +Luxury Semi Detached Duplex In Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedrooms Terraces With A Room Servant Quarters,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,6 Toilets +"Hot Hot Hot... 4 Bedroom Terraced Duplex For Sale At Chevron Alternative Route, Lekki",Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Tastefully Built 5 Bedroom Detached Duplex Plus Bq For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Massionette With Swag... Luxuriously Built 5 Bedroom Mansion For Sale At Carlton Gate Estate, Lekki",Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Tastefully Structured 5 Bedroom Detached Duplex For Sale At Agungi, Lekki",Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds, baths, Toilets +"Very Tasteful 4 Bedroom Terraced Duplex For Sale At Chevron, Lekki",Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths, Toilets +"Finely Designed 5 Bedroom Detached Duplex For Sale At County Mega Mound, Lekki",Lekki Lagos,₦,"79,000,000",0,1,0,5 beds, baths, Toilets +It's Brand New.. Switchless Smart 5 Bedroom Fully Detached Duplex For Sale Around Orchid Hotel By 2nd Lekki Toll Gate,Lekki Lagos,₦,"79,500,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Apartment Plus Bq For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely Finished 5 Bedroom Duplex With Bq,Sangotedo Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,7 Toilets +Luxury Brand New 5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Tastefully Structured 4 Bedroom Semi Detached Duplex For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +"Very Lovely 3 Bedroom Flat For Sale At Marwa Bustop, Lekki Phase 1",Marwa Bustop Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Luxuriously Finished Duplex For Sale At Chevron Drive, Lekki",Chevron Drive Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Beautifully Built 5 Bedroom Detached Duplex For Sale At Crown Estate, Lekki.",Crown Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets +Beautifully Structured 4 Bedroom Terraced Duplex For Sale At Chevron Alternative Route,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Very Tasteful 4 Bedroom Semi Detached Duplex For Sale At Ikota, Lekki",Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Tastefully Structured 5 Bedroom Plus Bq For Sale At County Estate, Ikota",County Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +"Tastefully Built 4 Bedroom Semi Detached Duplex With Bq For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths, Toilets +Newly Built 4 Bedroom Flat All Rooms Ensuite In Lekki,Value County Estate Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Tastefully Built 5 Bedroom Detached Duplex For Plus Bq For Sale At Ikate, Lekki",Ikate Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Luxury At Its Peak... 4 Bedroom Fully Detached Duplex For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Fresh Out... Clean Building On A 600sqm For Sale Off Freedom Way, Lekki Phase1",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Luxuriously Finished 4 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Ikate Elegushi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,"Orchid Hotel Area Before 2nd Toll Gate, Lafiaji Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 5bedroom Detached Duplex In Ikota Villa Estate Lekki With Swimming Pool And Bq For Sale Price:120m Asking,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex For Sale At Lekki County Lagos,Lekki County Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Neatly Renovated 4 Bedrooms Detached Cornerpiece Duplex, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Registered Deed Of Assignment And Survey Plan. 2plots Of Dry Land For Sale In Ikota Villa Estate Lekki Price:55m Per Plot,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +4 Bedroom House,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Off Circle Mall Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Lafiaji Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +6 Bedrooms Duplex For,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Top Notch First Class Hotel,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached On Two Floors With 2 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Block Of Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Registered Deed Of Assignment And Survey Plan. 4plots Of Dry Land For Sale At Orchid Road Lekki Price: 45m Per Plot,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +C.of.o Deed & Survey Plan. 600squere Meter Of Land For Sale In Megamound Estate Phase 1 / Lekki County Home Estate Price:57m,"Megamound Estate, Lekki County Lekki Lagos",₦,"57,000,000",0,0,0, beds, baths, Toilets +Luxurious 5 Bedroom Fully Detached Duplex,"Tunde Fisayo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"390,000,000",0,0,0,5 beds,5 baths,6 Toilets +C.of.o Deed & Survey Plan. 800squere Meter Of Land For Sale In Ikota Lekki Megamound Estate Phase 2 Price:64m,Megamound Estate Ikota Lekki Ikota Lekki Lagos,₦,"64,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Semi Detached Duplex With A Room.bq For Sale.lekki County,Lekki County Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,6 beds,7 baths,7 Toilets +30 Bedroom Hotel,... Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Ikate Elegushi Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Lafiaji Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Flat,"Orchid Hotel Road, Lafiaji Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Units Of 2 Bedroom Flat,Off Circle Mall Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +C.of.o Deed & Survey Plan 800square Meter Of Land In Megamound Estate Phase 1 In Ikota Lekki County Home Estate Price: 76m,Megamound Estate / Lekki County Home Estate Ikota Lekki Lagos,₦,"76,000,000",0,0,0, beds, baths, Toilets +Registered Deed & Survey Plan. 4plots Of Land For Sale At Chevron Alternative Route Chevron For Sale Price:65m Per Plot,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With Two Room Bq,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Ikate Elegwushi, Osapa London Ikate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Duplex In A Beautiful Environment,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +Luxury 5 Bedroom Duplex,.... Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex On A Good Discounted Price,"Osapa London, Lagos Nigeria Osapa London Lekki Lagos",₦,"47,000,000",0,0,1,4 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Detached Duplex,Lekki Ikota Lekki Lagos,₦,"50,000,000/sqm",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Contemporary 5bedroom Duplex For Sale,Very Secured Estates Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4bedroom Detached /terrace Duplex With Room Bqs,Just Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex For Sale Chevron Lekki Lagos,Secured Estate Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale 5 Bedroom Detached Duplex With Bq 85m,Osapa Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets +4bed Room Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +4bed Room Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Waterfront 4br Serviced Duplex With Bq Off Admiralty, Lekki Phase 1",Admiralty Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,4 beds,5 baths,5 Toilets +"800m2 Of Land At Cow Rie Creek Estate, Ikate",Cowrie Creek Estate Ikate Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,4 Toilets +A Well Built 4 Bedroom Semi Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,4 Toilets +A Well Built 4 Bedroom Semi Detached Duplex,2 Toll Gate Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets +A Lovely And Nice Newly Built 3 Bedroom Flat With A Room Bq,Elegushi Off Kusenla Road. Ikate Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +Well Built 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets +New 5 Bedroom Fully Detach,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Well Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,1,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached House .,Ikota Villia Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With B.q, Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,0 baths,0 Toilets +Executive Brand New 4bedrooms Semi Detached Duplex For Sale At Ikota Lekki Lagos.,Ikota Lekki Lagos . Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Strategically Located Newly Built Double Shop On Agungi Road,On Agungi Road Agungi Lekki Lagos,₦,"16,000,000",0,1,0, beds, baths, Toilets +4 Units Of 3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"310,000,000",0,0,0,3 beds, baths, Toilets +Brand New Fully Detached 4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"112,000,000",0,1,1,4 beds,6 baths,6 Toilets +Luxurious 4bedroom Detached Duplex With Room Bqs For Sale,Chevy’s Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Affordable 3 Bedroom Luxury Terrace Duplex + Bq,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds, baths, Toilets +Luxury Finished 4 Bedroom Duplex With Bq,Chevron Alternative Drive Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets +Luxury Semi Detached Duplex + Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Luxury Detached Duplex With Swimming Pool + Bq,Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Luxury Detached Duplex With A Large Compound And Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Luxury Detached Duplex + Swimming Pool With A Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +Exquisitely Built 4 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Duplex With Bq In A Serene Gated Estate,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Luxury 3 Bedroom Terrace Duplex With Bq,Chevron Toll Gate Axis Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +4 Bedroom Luxury Duplex + Bq In A Very Good Location,2nd Toll Gate By Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Beautiful 4 Bedroom Duplex In A Serene Neighbourhood,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Very Well Built 5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"299,999,999",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Oceanview And Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex With Oceanview And Swimming Pool,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Affordable 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Luxury Semi Duplex + Bq,Ologolo Lekki Lagos,₦,"47,500,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Luxury Detached Duplex With A Bq,Osapa Lekki Lagos,₦,"99,500,000",0,0,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex In A Quiet Neighborhood,2nd Toll Gate Lekki Chevron Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"79,500,000",1,1,0,5 beds,5 baths,6 Toilets +Rcently Built 4 Bedroom Semi Detached Duplex In An Ambient Environment,2nd Toll Gate Alternate Chevron Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,0,4 beds,5 baths,4 Toilets +Beautifully Finished Paris Courts,"Phase 1 Orchid Road Area, Close To Chevron Toll Gate Axis, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrence Duplex In A Cozy Environment,Close To Alternate Chevron Road Lekki Ikate Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Finished 4 Bedroom Semi Detached Duplex,Orchid Road Opposite Chevron Road Lekki Phase Two Lagos Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Fullly Built House In Edens Courts,Chevron Drive Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,7 Toilets +This Lovely 5 Bedroom Fully Detached Duplex With A Room Bq,Lekki Lagos,₦,"65,000,000",0,1,1, beds, baths, Toilets +??for Sale?? ••••••••••••••••••••• This Lovely 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Fully Detached Duplex For Sale,Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +7bedrooms Detached House With 2rooms Boys Quarters In Nicon Town,Nicon Avenue Nicon Town Lekki Lagos,₦,"600,000,000",0,0,1,7 beds,8 baths,8 Toilets +Tastefully Finished 4bedroom Terrace Duplex In A Serviced Mini Estate,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With One Room Boys Quarter And Security Gate House.,Signature Estate Off Chevron Alternative Routes Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +20 Sqm Shop In A Shopping Mall,Ologolo Lekki Lagos,₦,"18,000,000",1,1,0, beds,4 baths,4 Toilets +Water Front Luxury Housing,Ladipo Latinwo Crescent Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,4 Toilets +2units Of Luxury 4bedroom Semi Detached Duplexes,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki County Home Lagos Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Newly Built And Tastefully Finished 5bedroom Terrace Duplex Plus Bq With All Italians Finishings Materials Such As Fitted Kitchens And Appliances, Wardrobes, Lightings,tiles,sanitary Wares And Decors",Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Specious 4bedroom Duplex With Room Bqs,Lekki County Home Lekki Ikota Lekki Lagos,₦,"88,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 5bedroom Duplex For Sale,Bera’s Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Fully Detached Houses For Sale ,Lekki Phase1 Just Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,7 Toilets +Brand New 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Northern Forshore Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"76,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Chevron Lekki 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos State Nigeria Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +"Newly Built 2 Bedroom Flat On Orchid Road By Chevron Tollgate, Lekki",Orchid Road Chevron Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,3 baths,3 Toilets +A Luxurious 6bedroom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,6 Toilets +3 Bedroom Terrace Duplex. Pay 50% And Spread Rest In 6 Months,Beside Vgc Gate 2 Minutes From The Expressway Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In A Secure Estate,3 Minutes From Chevron Lekki Phase 2 And 1 Minute From The Expressway Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Brand New Contemporary 5 Bedroom Duplex With A Bq For Sale,Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Spotless 2 Bedroom Flat @ Badore Ajah,Ajah Badore Lekki Phase 2 Lekki Lagos,₦,"800,000",1,0,0,2 beds,2 baths,3 Toilets +Switchless Smart 4 & 5 Bedroom Duplexes With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,5 beds,5 baths,6 Toilets +Well Architecturally Finished 3bed Terraced Dup With 2 Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,3 beds,3 baths,4 Toilets +Super Clean And Spacious 4bed Semi Duplex,2nd Toll Gate Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bed Semi Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4bed Detached Duplex,Chevron Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bed Semi Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Finished Luxurious 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +5bed Fully Detached + Swimming Pool Cinema + Bq,Jakande Jakande Lekki Lagos,₦,"198,000,000",0,1,1,5 beds,5 baths,6 Toilets +Superb Spacious 5bed Duplex With Swimming Pool,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terraced Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +Super Clean And Spacious 4bed Semi Duplex,2nd Toll Gate Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bed Semi Duplex,By 2nd Toll Gare Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Neely Built 5bedroom Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"79,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bed Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets +Highly Detailed And Superbly Finished,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built American Styled 5bed Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bed Semi Dettached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Duplex,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedrooms Flat With 1 Room Servant Quarters Ensuite,"Plot 7 Queens Court Bera Estate, Chevy View, Lekki Chevron Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Virgin Land,Beach Road Beside Jakande Housing Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths, Toilets +Governor Consent,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds, baths, Toilets +Governor Consent,"Inside Madiba Enclave, Ikate (3rd Roundabout) Lekki Phase 1. Ikate Lekki Lagos",₦,"75,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,By Enyo Filling Station Ikate Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,3 baths,2 Toilets +"Luxury 5bedroom Fully Detached Duplex&bq.tittle: Governor Crescent, Location: Chevron Drive,lekki,all Rooms Ensuited Cctv, Kitchen,floor Lights Etc,","Governor Crescent, Chevron Drive,lekki Chevron Lekki Lagos",₦,"137,000,000",0,1,0,5 beds, baths,5 Toilets +Beautifully Built 4bedroom Fully Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2brdroom All Rooms Ensuite Apartment,Chevron Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Fully Detached With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"98,000,000",1,1,0,5 beds,6 baths,7 Toilets +Mporary 4bedroom Luxury Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds, baths, Toilets +4 Bed Room Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bed Room Detach Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,4 Toilets +Tastefully Built 2bedroom Apartment.,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Fully Furnish 4bedroom Terrence In Ikota,lekki","Ikota,close To Vgc Ikota Lekki Lagos",₦,"38,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace In A Serene Neighborhood,Orchid Road Ologolo Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Deplux With Bq,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds, baths, Toilets +Luxury 5 Bedroom Semi Detached Deplux,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Semi Finished Terraced Building With A Bq,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 280719,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex, Jakande Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment, Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +Tastefully Built 4 Bedroom Fully Detached Duplex,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"43,500,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex At Lekki Phase 2,Atican Beachview Estate Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki County Homes 280712,Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Osapa 280711,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Oral Estate 280710,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Exquisite Luxury 5 Bedroom Detached Duplex With Swimming Pool,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +2 Bedroom Terrace Duplex,... Lekki Lagos,₦,"29,000,000",0,1,0,2 beds,2 baths,2 Toilets +3 Bedroom Terrace Duplex For Sale,... Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Unit Of Luxury And Tastefully Finished 3 Bedroom Flat With Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevron Tollgate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Serviced Terraced Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Super Affordable Housing With Flexible 20 Years Payment,"By The Prestigious Richmond Estate Road, Beside Meadow Hall School Ikate Lekki Lagos",₦,"53,500,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Executive Finished Of 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Luxury Semi Detached Duplex.,Oral Estate Ikota Lekki. Ikota Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,6 Toilets +Newly Built 4bedroom Luxury Terrace.,Orchid Hotel Road Ikota Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Brand New Luxury 4 Bedroom Terrace Duplex With A Bq For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Built 4bedroom Luxury Duplex With The Modern Features,Pioneer Street Osapa London Lekki Lagos,₦,"65,000,000,000",0,1,1,4 beds,5 baths,6 Toilets +3 Bedroom Luxury Apartments In An Exclusive Estate,Lekki Rhs Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"36,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Houses,Lekki Lagos,₦,"5,300,000",0,0,0, beds, baths, Toilets +Land,Beside Northwest Petrol Station Vgc Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +For Sale 4 Bedroom Semi Detached Duplex With Bq Loca,"Chevron Lekki, Lagos Chevron Lekki Lagos",₦,"52,000,000",0,1,0,4 beds, baths, Toilets +"5 Bedroom Detached Duplex With Bq And Swimming Pool, Gym Room, Cinema",Pinnock Beach Estates Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets +Exotically Finished 4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built Apartments And Terraces In Ikate, Lekki",Ikate Lekki Lagos,₦,"28,000,000",1,1,0, beds, baths, Toilets +Four Bedroom Terrace Buildings For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +4bed Semi Detached House Exotically Finished For Sale Finished Forcsale,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Apartments For Sale In Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"23,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Luxury Apartments,Ikate Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached House In A Serene Environment,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bed Detached Duplex For Sale,Ikota Lekki Lagos,₦,"63,000,000",0,1,0, beds, baths, Toilets +Pristine Three Bedroom Apartment With Bq In A Secured Estate I Lekki Phase 2.,"Off Lekki Expressway, Lekki Lekki Phase 2 Lekki Lagos",₦,"32,000,000",1,1,0, beds, baths, Toilets +"2 Plots Of Land At Jakande,lekki, Lagos",Jakande Lekki Lagos,₦,"80,000,000",0,0,0,1 beds, baths, Toilets +Beautifully And Spaciously Built Detached Bungalow,Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,3 baths,4 Toilets +Topnotch Luxury 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Be Home! Prestigious Cofo, Oxygen Apartments & Homes In Lekki Phz1 For Sale",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0, beds, baths, Toilets +Beautifully Built Terrace Apartments With Rustic Ambience For Sale,Ikota Lekki Lagos,₦,"38,000",1,1,0,4 beds,4 baths,5 Toilets +All Ensuit 6bedroom Detached House For Sale In Lekki Phase1,Off Uchendu Street Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,6 beds,6 baths,6 Toilets +Newly Built 4bedroom Duplex In Serene Neighborhood Close To The Express,"Road 1, Ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex In A Serene Neighborhood Close To The Express.,"Road 1, Ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex With Bq In A Serene Neighborhood Close To The Express.,"Road 1,ikota School, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +715sqm Land In Victoria Garden City With Bq,Vgc Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,2 baths,2 Toilets +Land For Sale In Orchid 240711,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +A Lovely 4 Bedroom Terraced Duplex,"Westend Estate, Before Vgc Ikota Lekki Lagos",₦,"35,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki County Homes 240702,Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraced Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +2units Of Fully Detached 5bedroom Duplex With Bq,Lekki Lagos Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,10 Toilets +"4 Bedroom Terrace At Orchid Road, Lekki Phase 2. Title Certificate Of Occupancy.",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds, baths, Toilets +Exotic 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Cooplag Garden Estate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Creek Avenue Court 2,Creek Court Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 220703,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 220702,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +Idado Lekki A1,Idado Lekki Lagos Idado Lekki Lagos,₦,"121,000,000",0,1,1,5 beds,4 baths,3 Toilets +3bedroom Luxury Semi Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos Chevron Lekki Lagos,₦,"40,500,000",0,1,0,3 beds,2 baths,2 Toilets +4 Bedroom Duplex A1,Mobile Road Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"56,500,000",0,1,0,4 beds,3 baths,2 Toilets +Six Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"88,000,000",1,0,1,6 beds,4 baths,4 Toilets +Creek Avenue Court 2 B1,Creek Avenue Court 2 B1 Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,3 baths,3 Toilets +"Eden's Court, Chevron B1","Eden's Court, Chevron Chevron Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Detached Duplex With Boys Quarters,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex For Sale At Lekki Phase 1 Lagos State,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1, beds, baths, Toilets +Newly Built 4 Bedroom Duplex,Chevron Alternative Root Chevron Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land At Palmspring Estate,"Bolorunpelu, By Beechwood Estate, Bogije, Lekki Lekki Phase 2 Lekki Lagos",₦,"7,000,000",1,1,0, beds, baths, Toilets +"3 Bedroom Terrace Houses Near Vgc, Lagos",Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Well Maintained 4bedroom Terrace House In A Serviced Estate,Chief Bamidele Eletu Street Osapa Lekki Osapa London Lekki Lagos,₦,"39,000,000",1,0,0,4 beds,3 baths,4 Toilets +Newly Built 5bedroom Detached Duplex With Bq In A Serene Environment,Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,1,1, beds, baths, Toilets +Semi Detached 4 Bedroom In A Beautiful Environment.,Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"Victoria Bay Ii, Behind Pinnock Beach Estate Osapa London Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House,Victoria Bay Ii Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Switchless Smart 4 Bedroom Semi Detached Withbq,2nd Toll Gate By Orchid Hotel Lekki Ikota Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,3 baths,3 Toilets +Eden's Court Lekki,Chevron Drive Lekki Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds, baths,6 Toilets +Newly Built Switchless Smart 5 Bedroom Fully Detached With A Bq At Lekki Toll Gate By Orchid Hotel Lekki,"2nd Toll Gate By Orchid Hotel Road, Lekki Ikota Lekki Lagos",₦,"79,500,000",0,1,1,5 beds,4 baths,4 Toilets +Very Specious Newly Built 5 Bedrooms Duplex Fully Detached,Osapa London Lekki Osapa London Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,5 baths,7 Toilets +Newly Built 4bedroom Semi Detached Duplex With 1 Bq,"Ikota Villa Estate, Beside Mega Chicken Ikota Lekki Lagos",₦,"49,000,000",1,1,0,4 beds,4 baths,5 Toilets +Modern 5 Bedroom Fully Detached House In Lekki Phase 1,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Brand New 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom 1 Bq House With A Penthouse,"Mega Mound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"96,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,pay And Pack In,big Sitting Room And Bedrooms,with All Rooms Ensuite+ A Family Lounge","Eli Court,chevron Alternative Road Chevron Lekki Lagos",₦,"59,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex In A Serviced Estate,House 7 Road 12 Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Plot At Melrose Garden Lng Estate,Beside Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Perimeter Court 1 Estate.,Perimeter Court 1 Off Gabgbala Road Ikate Elegushi Lekki Lagos State Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,6 Toilets +Dry Plot Of Land Available And Negotiable,Agapeview Beach Estate Ilasan Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +Vacant Dry 200sqm Land For Sale,Agapeview Beach Estate Ikate Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex In A Serviced Estate,House 7 Road 12 Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +C Of O Land For Sale In Osapa London,Back Of Arcadia Estate Lekki Osapa London Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets +Luxury 2units Newly Built 5 Bedroom Duplex With A Bq And Swimming Pool Available For Sale.,Victory Park Estates By Osapa London Lekki Jakande Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex On Distress,Agungi Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex With Boys Qtr For Sale,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex For Sale In Vgc 160706,Vgc Lekki Lagos,₦,"30,000,000",0,1,1,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikate 160705,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Chevron 160704,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 160703,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +Title : Global C Of O,Gra Ikota Lekki Lagos,₦,"31,000,000",0,0,0, beds, baths, Toilets +Landforsale In Oribanwa,Abraham Adesanya Lekki Lagos,₦,"12,500,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex In A Serene Estate,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Plot Of Land,Alpha Beach Road Chevron Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale In Lekki 150715,Lekki Lagos,₦,"125,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ologolo 150712,Ologolo Lekki Lagos,₦,"47,500,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 150711,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 150710,Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekky County 150705,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House On 1000sqm Land,Nicon Town Lekki Lagos,₦,"400,000,000",0,0,0,5 beds, baths, Toilets +Land For Sale In Orchid Road,Green View Estate By Orchid Road Chevron Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets +Land For Sale In Orchid Road,Green View Estate Orchid Road Chevron Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets +"Location. Lagos, Nigeria, Lekki Phase 2. Property Description. A Bare Land On Block 51,plot 16. Size :861sqm. Title:c Of O. Price:#30m.","Lekki Phase 2,block 51,plot 16. Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets +Forsale:a Serviced Property On A Full Plot In Lekki Phase 1(off Freedom Way),Freedom Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,3 Toilets +C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets +C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets +C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite Sangotedo) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets +C Of O,"Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite) Lekki Lagos",₦,"11,000,000",0,1,0, beds, baths, Toilets +"*camberwall Court, Abijo Gra* Camberwall Court Comprises Of Blocks Of 1, 2 & 3 Bedroom Apartments, Terraces And Bungalows, Well Designed To Give You Comfort And Functionality. Location: Inside Abijo Gra. 4 Minutes’ Drive From Novare Mall (shoprite San","Inside Abijo Gra , 4 Minute Drive From Novare Mall ( Shoprite) Lekki Lagos",₦,"11,000,000",0,1,0,3 beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 140708,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 140707,Chevron Lekki Lagos,₦,"67,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikate 140706,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Ikota 140704,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Terrace House For Sale In Lekki 140703,Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,3 Toilets +Top Notch Well Furnished 4 Bedroom Fully Detached Duplex,After Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds, baths, Toilets +Luxury 4 Bedroom Duplex,Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terrace,Vgc Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,4 baths,4 Toilets +Tasteful Finished 2units 5 Bedroom Semi Detached Duplex On Second Floor,Admiralty Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Duplex For Sale In Chevron,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Duplex For Sale In Chevron,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Duplex At Lekki Epe Expressway In Lagos State,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1, beds, baths, Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Offchevron Chevron Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex With Bq,..... Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Direct Brief 864sqm Land In Phase 1 Pinnock Beach Estate N135m,Pinnock Beach Estate Jakande Lekki Lagos,₦,"135,000,000",0,1,0, beds, baths, Toilets +2400 Square Meters Land In An Estate,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +A Four Bedroom Detached House With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +Brand New 3 Bedroom Flat For Let In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Finished Brand New 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Self Serviced 4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Detached House For Sale In Chevy View Estate Lagos.,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Semi Detached 4bedroom Duplex For Sale Inside West End Estate Ikota Lekki,West End Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Furnished Newly Built 4 Bedroom Apartment For Sale In Lekki With Governors Consent,Chevron Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets +Tastefully Furnished Newly Built 4 Bedroom Apartment For Sale With Governors Consent In Lekki,Chevron Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets +Governor's Consent,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Governor's Consent,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Detached Duplex In A Secured And Serviced Estate In Ikota Lekkilagos,Ikuton Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +"*exquisite Finished 5 Bedroom Fully Detached Duplex And Bq At Pearl Garden, Monastery Road, Shoprite Sangotedo Lekki*",Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex And Bq, In An Already Developed Estate With Good Drainage Facility,,electricity And Interlocked Rood,15min Drive From Novare Mall Lekki Shoprite","Amity Eatate,sangotedo ,lekki Lekki Phase 2 Lekki Lagos",₦,"38,000,000",1,1,0,4 beds, baths, Toilets +New 3 Bedroom Semi Detached Duplex With 6 Months Flexible Payment,"Amity Estate,sangotedo,lekki Lekki Phase 2 Lekki Lagos",₦,"30,000,000",1,1,0,3 beds, baths, Toilets +Newly Built 4bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex For Sale,Chevron Lekki Lagos,₦,"45,000,000",0,1,1, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"112,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"122,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House For Sale In Ikota 10jul10,Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Idado 10jul08,Idado Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets +Global C Of O,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 10jul07,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Chevron 10jul06,Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 10jul05,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 10jul03,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 10jul02,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 10jul01,Chevron Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets +Affordable Dry Land At Orchid Road By Chevron Lekki With Governor's Consent Call [redacted],Chevron Orchid Road Lekki Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Newly Build Bedroom In Serene Neighbourhood,Bosun Adekoya Street Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 3 Bedroom Terrace In A Serene Environment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Lovely 5 Bedroom Fully Detached For Sale In Lekki,Ikate Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 09jul02,Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,5 Toilets +2 Bedroom Apartments & 3 Bedroom Bungalows At Camberwall Court Abijo*,"Road 3, Ikota Shopping Complex Vgc, Aja, Lagos Lekki Phase 2 Lekki Lagos",₦,"11,000,000",0,1,1,1 beds,1 baths,5 Toilets +3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 09jul01,Chevron Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths, Toilets +Newly Built 5 Bedrooms Fully Detached Duplex In A Serene Estate,Arcadia Groove Estate Osapa London Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +"Well Finished Detached House In A Perfect , Security Tight Estate",Ikota Villa Estate. Ikota Ikota Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,8 Toilets +5 Bedroom Detached Building With C Of O In Lekki For Sale,Elegushi Ikate Lekki Lagos,₦,"120,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 08jul14,Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House For Sale In Lekki 08jul13,Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached Duplex For Sale In Chevron 08jul11,Chevron Lekki Lagos,₦,"39,500,000",0,1,1,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikate 08jul10,Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,... Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Serviced Terrace S And Flat. Off Plan Project,Ladipo Latinwo Cresent Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,0,4 beds, baths, Toilets +4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Living 6 Bedroom Fully Detached Duplex,"Lekki Phase 1, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Deed Of Assignment,"Off Lekki Epe Express, Before, After Second Toll Gate Lekki Phase 2 Lekki Lagos",₦,"140,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2units Of Fully Detached 5bedroom Duplex With Bq,By Side Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terraces,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Very Lovely Newly Built 5 Bedroom Fully Detached Duplex With C Of O In Lekki,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Governor's Consent In Lekki,"Orchid Hotel Road, 2nd Lekki Toll Gate, Chevron Chevron Lekki Lagos",₦,"59,500,000",1,1,1,4 beds, baths, Toilets +Very Lovely 5bedroom Fully Detached,Elegunshi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +Brighter View Of Our Stylish Beautiful 4 Bedroom Terrace Duplex,"Ikate, Lekki, Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Beautiful Well Finished 5 Bedroom Fully Detached,"2nd Toll Gate, Lekki, Lagos. Osapa London Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of 4bedroom Semi Detached Smart Home,Lekki Lagos,₦,"59,000,000",0,1,0,3 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +*very Lovely 5 Bedroom Fully Detached For Sale In Lekki*,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets +C Of O 5 Bedroom Oxygen Duplex With Bq For Sale In Lekki,Magamound Estate Lekki County Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets +4bedroom Bq For Sale/ Governor’s Consent/ Osapa London Lekki,12 Brand Street Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Semi Detached Duplex With Governor's Consent For Sale In Lekki,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"59,500,000",1,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Building On Lekki,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"187,000,000",0,1,0,5 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Land In Lekki,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +Two Bedroom Bungalow With C Of O In Lekki For Sale,Beechwood Park Bogije Lekki Lagos,₦,"15,862,500",1,1,0, beds, baths, Toilets +Plot Of Land,... Ikate Lekki Lagos,₦,"66,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Apartment In A Luxury Environment,Bera Estate Chevron Lekki Lagos,₦,"25,000,000",1,1,1,2 beds,2 baths,2 Toilets +Governor's Consent,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,... Nicon Town Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +Governor's Consent,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +C Of O Bedroom Bungalow In Bogije Lekki,Shapati Lekki Lagos,₦,"10,892,250",1,1,0, beds, baths, Toilets +Governor's Consent,Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Governor's Consent,Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets +C Of O Land For Sale In Osapa London,Back Of Arcadia Estate Osapa London Lekki Lagos,₦,"80,000,000",1,1,0, beds, baths, Toilets +"Newly Built 4bedroom Duplex ,fully Furnished",Idado Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +"Newly 4bedroom Duplex Fully Furnished, With Cctv",Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4bedrom Duplex Fully Furnished With Cctv,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +5bedroom Newly Built Duplex Fully Funished,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly 5 Bedroom Duplex Fully Finished,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki. Pay And Pack In,Ikota Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,6 baths,6 Toilets +Pantheon Smart Homes* 12 Units Of 4 Bedroom Semi Detached Duplexes And 6 Units Of 5 Bedroom Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom,Chevron Drive Chevron Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets +Executive Finished 5 Bedroom + Bq,"Megamound Estate, Lekky County Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Flat In Chevron Drive,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"24,000,000",0,1,0,2 beds,2 baths,2 Toilets +"5 Bedroom Detached Duplex For Sale With Bq!!! Location: Osapa London, Lekki Lagos Price: N105m Features: All Rooms Ensuite 1 Boy’s Quarter Self Serviced Cctv Cameras Fully Fitted Kitchen Refrigerator Jacuzzi Bulletproof Doors Inbuilt Surround Speaker Dra",Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land For Sale With Lagos State Gazette In Lekki,"Itiri/ Co Operative Villa, Badore Road, Lekki Epe Express Road Lagos Lekki Lagos",₦,"10,000,000",1,1,0, beds, baths, Toilets +Land With C Of O For Sale In Lekki,"Behind Arcadia Estate, Osapa, Off Lekki Epe Express Road Lekki Lagos",₦,"80,000,000",1,1,0, beds, baths, Toilets +Brand New Luxury Finished 4 Bedroom Fully Detached Duplex With Bq. Governor's Consent As Good As C Of O,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly Built Affordable 3 Bedroom,"Off Orchid Hotel Road, 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex + Bq,Megamound Estate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Affordable Land Within An Estate,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Luxury Terrace Duplex,Lekki Lagos,₦,"37,000,000",0,0,0,5 beds, baths, Toilets +5bedroom Detached Duplex With Bq,Lekki Phrase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"Newly Built 3 Bedroom Terrace Duplex For Sale >> Orchid Road, Lekki, Lagos","Orchid Road, Eleganza Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 03jul17,Lekki Lagos,₦,"37,000,000",0,0,1,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 03jul16,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Osapa 03jul15,Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Idado 03jul14,Idado Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 03jul13,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 03jul10,Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex For Sale In Lekki 03jul08,Lekki Lagos,₦,"33,000,000",0,0,1,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 03jul05,Lekki Lagos,₦,"52,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 03jul04,Ikota Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +C Of O,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets +2 Bedroom Flat, Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,... Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"72,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ilasan Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,... Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 4 Bedroom Semi Detached Duplexes And 6 Units Of 5 Bedroom Fully Detached Duplexes,Lekki Phase 2 Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets +Pantheon Smart Homes,Buen Lekki Phase 1 Lekki Lagos,₦,"59,500,000",1,1,1,4 beds,4 baths,5 Toilets +C Of O,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In Ikota Lekki,Chevron Toll Gate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Ensuite Flat With A Room Bq, Fitted Kitchen Cabinets. Etc",Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,... Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Smart 4 Bedroom Semi Detached Duplex With Bq And Quality Electronics Facilities Device That Can Be Controlled With A Mobile Phone In And Outside The Home,Located Along Orchid Hotel Chevron Lekki Lagos,₦,"59,900,000",1,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,... Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bed Room Fully Detach Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +"Maplewoods2, Siriwon Town, Ibeju Lekki","Maple Woods Estate, Siriwon Town, Ibeju Lekki Lekki Phase 1 Lekki Lagos",₦,"3,500,000",0,0,0, beds, baths, Toilets +4 Bed Room Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Church For Sale More Than 1000 Capacity,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Bella Homes1 Close To Chevron Tollgate Axis Lekki Phase 1 Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,5 baths,5 Toilets +5 Bed Room Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds, baths, Toilets +"Main Beechwood Estates, Gates Directly Facing Lekki Expressway",Beechwood Estate Beguji Lekki Lekki Phase 1 Lekki Lagos,₦,"13,300,000",0,0,0, beds, baths, Toilets +Condominiums For Sale In Lagos 4 Flats Of 3 Bedroom,Lekki Gardens Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets +Magnificent Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.*,"Chevron Alternative Drive,lekki ,lagos State Chevron Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,6 baths,6 Toilets +"Brand New 3 Bedroom Flat For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Super Clean & Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale!!,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite Brand New 5 Bedroom Detached Duplex For Sale At Chevron Alternative,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",1,1,1,4 beds,4 baths,5 Toilets +1200m² Of Dry Land With C Of O In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4bedroom And 2units Of 5bedroom Duplexes,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Bq,... Chevron Lekki Lagos,₦,"58,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex House,... Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +4bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,5 Toilets +1000m² Corner Piece Land With Governor's Consent In Nicon Town Lekki,Nicon Town Lekki Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +A Plot(650m²) Of Land For Sale,Orchid Road Jakande Lekki Lagos,₦,"45,000,000",1,0,0, beds, baths, Toilets +Tastefully Finished 5bedroom With A Room Bq,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bedroom And 2 Units Of 4bedroom Terraced Duplexes,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With Bq,.. Chevron Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,.. Chevron Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Contemporary 4bedroom Semidetached Duplexes With Bq,box Room, 2 Living Rooms, Elegantly Furnished Kitchen Walk In A Closet",Orchid Road By Lekki Second Toll Gate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,4 Toilets +5bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"289,000,000",0,1,1,5 beds,5 baths,6 Toilets +The Milton,Awoyaya Lekki Lagos,₦,"21,000,000",1,1,1, beds, baths, Toilets +Edge Castle Estate,Lekki Lagos,₦,"4,500,000",1,1,1, beds, baths, Toilets +Mixed Use Land For Sale,Mobolaji Johnson Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,.... Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Is A Lovely And Newly Built 4bedroom With Bq Semi Detached Duplex For Sale In Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale,Agungi Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Smart Home, Full Switchless Smart Home In The House",Orchid Road By Tollgate Lekki Phase 2 Lekki Lagos,₦,"59,500,000",0,1,1,4 beds,4 baths,4 Toilets +"A Completely Dry Land In A Gated, Safe And Secured Environment With Proposed Quality Facilities In Place",Located At Alatise Along Bogije Lekki Lagos Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Via Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,2nd Lekki Toll Gate By Orchid Hotel Lekki Lagos,₦,"59,900,000",0,1,1,4 beds,4 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Mini Flat,... Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Studio Apartment,Lekki Lagos,₦,"8,000,000",1,1,1,1 beds,1 baths,1 Toilets +4 Bedroom Duplex,Lekki Lagos,₦,"32,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built Executive 5 Bedroom Detached Duplex At Ikota Lekki N120m,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Wings Of 5 Bedroom Duplex With Good Finishing With C Of O .#140million Per Wing.,"Ladi Alakija, Lekki Scheme 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets +"School For Sale In Chevy View Estate, Lekki",Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1, beds, baths, Toilets +Newly Finished 4bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths, Toilets +Newly Built And Perfectly Finished Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +A Newly Luxury Built 3 Bedroom Apartment,Hopunu Wosu Street Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +Global C Of O,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 29jun08,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 29jun05,Chevron Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"79,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +16 Bedroom Block Of Flats,... Idado Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex In A Serene Neighborhood,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Terrace Duplex All Rooms Ensuite With A Bq,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +C Of O,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +"Townhouse Of 4bed,flat Of 3bed",Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Plot Of Land,Orchid Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Filling Station,3rd Round About Chevron Lekki Lagos,₦,"350,000,000",0,0,1, beds, baths,4 Toilets +Semidetached Duplex With Pent Floor,Azu Odita Street Chevron Lekki Lagos,₦,"8,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,7 Toilets +Brand New 5 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Townhouse + Bq,Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Finished Brand New 4 Bedroom Terrace Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets +"14,000 Sqm Of Land For Jv @ Lekki Ikate Proposal: Open Value: Ngn 125,000.00 / Sqm Premium: 10% Of Value (negotiable) Facilitators Fee: 10%.",Ikate Lekki Lagos,₦,"125,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Detached,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Elegantly Built And Perfectly Finished Terrace Duplex, Semi Detached Duplex And Full Detached Duplexes For Sales In A Mini Serviced Estate Located On Chevron Drive, Lekki Lagos","Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"50,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex All Rooms Ensuite With A Room Bq,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex With Bq, Swimming Pool And Cinema",Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,7 Toilets +Executive Standard Massive 5bedrooms,Ikota Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex For Sale In Osapa 26jun05,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,5 Toilets +Fully Detached 4 Bedroom Duplex With [email protected] Hotel Road,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With [email protected] Lekki,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5 Bedroom Detached Duplex With Bq @ Lekki County Hpmes,ikota,lekki",Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,... Idado Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +26 Unit Of Newly Built 4 Bedroom Semi Detached [email protected] Ikota Villa Estate By Mega Chicken,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built Fully5 Bedroom Detached Duplex,chevron Alternative Route Lekki",Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 26jun04,Chevron Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 26jun03,Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale In Ikate 26jun02,Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex With 1 Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq And A Mini Cinema On 300sqm Title: Governors’ Consent,"Hakeem Dickson, Lekki Phase I Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,6 baths,7 Toilets +Buy A Stylish Luxury Contemporary 5bedroom Duplex With 2 Room Bq,Bear Estate Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +"For Sale 2units Of Luxury Newly Built 5 Bedroom Fully Detached Duplex With Cinema, Swimming Pool,",Victory Park Estate Jakande Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxurious Brand New 5 Bedrooms Fully Detached House With Swimming Pool,gym, Cinema For Sale",Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikate 25jun07,Ikate Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 25jun03,Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron Was 25jun01,Chevron Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex With 1 Bq,Ikota Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Terrace Duplex,"Ikate,lekki Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace,"Ikate,lekki Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built 5bedroom Fully Detached Duplex For Sale At Lekki,lagos",Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Maisonette For Sale In Igbo Efon 24jun28,Igbo Efon Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Vgc 24jun26,Vgc Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets +"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)",Brand New 4 Bedroom Semi Detached Duplex With Bq Located In A Gated Estate In Osapa. Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale,Chevron Lekki Lagos Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Orchid Road, Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Is A Lovely And Fully Detached 5bedroom Duplex With Bq For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Semi Detached Duplex In Lekki, Lagos. Osapa London.",Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Brand New 4 Bedroom Semi Detached Duplex With Bq Located In A Gated Estate In Agungi. Agungi Lekki Lagos,₦,"48,000,000",0,1,1,4 beds, baths, Toilets +"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)","Osapa, Lekki Lagos Osapa London Lekki Lagos",₦,"48,000,000",0,1,1,4 beds, baths, Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds, baths, Toilets +4bedroom Terrace Duplex + Bq,Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price)","4 Bedroom Semi Detached Duplex With Bq For Sale In Osapa, Lekki Lagos For Just N48m(distress Price) Osapa London Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets +Brand New 2 Bedroom Ensuite Flats In A Serene Location Of Ikota Villa Estate Before Vgc For Sale At N28m.,Brand New 2 Bedroom Ensuite Flats In A Serene Location Of Ikota Villa Estate Before Vgc For Sale At N28m. Ikota Lekki Lagos,₦,"28,000,000",1,1,1,2 beds,2 baths,2 Toilets +3 Bedroom Flat,... Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Orchid Road, Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"87,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,... Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos.","Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos. Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets +We Know You Want Dry Land To Build Your Own House In The *main* Beechwood Estate That The Estate Gate Is Directly Facing The Lekki Expressway. This Is The Opportunity For You To Do That. Don't Miss This Again. Beechwood Estate Has Existing Infrastructur,Bogije Lakowe Lekki Lekki Lagos,₦,"13,300,000",0,0,0, beds, baths, Toilets +Newly Built Aesthetically Finished 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +"*brand New 4 Bedroom Fully Detached Duplex With Bq In Eden's Court,lekki Lagos","Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +978 Sqms Of Fenced And Gated Land In A Built Up Area With Governors Consent On An Interlocked Road In Lekki Scheme 2 Ajah,"Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets +"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki* Bella Homes Phase 1 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.","Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"33,000,000",0,1,0, beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +*very Lovely 5 Bedroom Fully Detached For Sale In Lekki*,Vantage Court Osapa London Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +Four Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Agungi Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,... Ilasan Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets +??finished 4 Bedroom Semi Detached Duplex With A Room In Bq In Orchid Road??*,"Finished 4 Bedroom Semi Detached Duplex With A Room Bq In Orchid Road, Second Lekki Tollgate Chevron Lagos. Chevron Lekki Lagos",₦,"40,000,000",0,1,1,4 beds, baths, Toilets +"Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq In Chevron, Lagos.",Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths, Toilets +5 Bedroom Fully Detached Duplex With 1 Bq By Second Tollgate Lekki Lagos For Sale,Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,"Buena Vista Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"79,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Promo!! Lexington Gardens, 100% Dry Land With C Of O, Actual Price 23million( 500sqms) Promo Price: 19million !! Buy And Build Instant Physical Allocation, Topclass Environment!","Lexington Gardens, Sangotedo Lekki Lekki Lagos",₦,"19,000,000",0,0,0, beds, baths, Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets +"A Newly And Tastefully Built 4 Bedroom Terrace Duplex On A 600sqms Of Land, With All Room En Suit, Cctv Camera, Fitted Furnished Kitchen Etc",Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Great Offer! Beautiful 4bedroom Fully Detached House At Ikota Lekki,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4bedroom Terrace Duplex! With 24 Hours Power Supply,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Coming Up Swiftly & Currently On The 1st Floor Is A Mini Family Estate / Villa / Country Home All In One.,Lekki Phase 1 Lekki Lagos,₦,"18,000,000",0,1,0,1 beds,2 baths,2 Toilets +Great Offer! Lekki Phase1 Fully Detached House,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Detached Duplex With 1 Bq,... Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale In 24/7 Power Supply Pinnock Beach Phase3 Lekki Fully Automated 5 Bedroom Detached Duplex,Pinnock Beach Estate Phase3 24/7 Power Supply Osapa London Lekki Lagos,₦,"230,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Detached Duplex For Sale,Lakes Views Estate Orchild Road Chevron Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Estate With 24/7power Supply/ Security Distinctively Finished 5bedroom Detached Duplex With 2maid's Quarters For Sale..,Northern Forshore Estate Chevron Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex With Bq For Sale @ Lekki Lekki County.  Title: Cofo.  Asking Prize: Ngn 75m.,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq For Sale In A Secured Estate @ Lekki Ikota Title: Governor’s Consent Price: *ngn 55 Million*,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached House For Let In Lekki Phase 1 Lekki Right Lagos.,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Townhouse With Bq For Sale In A Secured Estate @ Lekki Ikota Title: Governor’s Consent Price: *ngn 40 Million*,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +600m² Of Sandfilled Dry Land For Sale @ Lekki Chevron Title: C Of O Price: *ngn 70 M*,Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +5 Bedroom House With B Q Available In Berra Estate Off Chevron Drive,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds, baths, Toilets +500 Square Meters Of Dry Land On A Tarred Road In A Developed Area In Ajah Lekki Scheme 2..,"Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With 1 Bq By Second Tollgate Lekki Lagos For Sale,Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets +A 3 Bedroom Semi Detached Duplex With A Bq In A Serene Neighbourhood,Lekki Gardens 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Launched Pineville Estate Located In The Heart Of Lekki, Comprising Of Serviced Plots Of Land","Ikate, Elegushi Lekki Ikate Lekki Lagos",₦,"66,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"76,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,... Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette,... Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,... Ikota Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,... Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 5bedroom Duplex + Bq,The Property Is At Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A Lovely 5bed Fully Detached Duplex With Bq For Sale In Osapa London Lekki.,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House For Sale In Pinnock Estate Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House For Sale In Pinnock Estate Osapa Lekki Lagos,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0, beds, baths, Toilets +"5bedroom Fully Detached Newly Built For Sale At Lekki,lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5bedroom Fully Detached Newly Built For Sale At Lekki, Lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,6 baths,6 Toilets +"5bedroom Fully Detached Newly Built For Sale At Lekki, Lagos",Osapa London Lekki Lagos,₦,"299,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 18jun09,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +3 Bedroom Duplex For Sale In Chevron 18jun08,Chevron Lekki Lagos,₦,"38,000,000",0,0,1,3 beds,3 baths,3 Toilets +Land For Sale In Lekki 18jun07,Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage.,Creek Avenue Court 2 Newly 4 Bedroom Terrace Duplexes At Ikota Lekki Almost At Finished Stage. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Lagos,₦,"933,333",1,1,0,4 beds, baths, Toilets +Luxury Furnished Unisex Salon,Located At Lekki County Estate Ikota First Gate Ikota Lekki Lagos,₦,"9,000,000",0,1,1, beds, baths,1 Toilets +"Location: Lekki Phase 2, Ogombo Near Divisional Police Station, Off Lekki Express Way, By Abraham Estate Junction, Lagos. Title: C Of O Price:n17m/ 600 Sam","Location: Lekki Phase 2, Ogombo Near Divisional Police Station, Off Lekki Express Way, By Abraham Estate Junction, Lagos. Title: C Of O Price:n17m/ 600 Sam Lekki Phase 2 Lekki Lagos",₦,"17,000,000",0,0,0, beds, baths, Toilets +A 3 Bedrooms Terrace For Sale With A Library Upstairs And A Bq Ground Floor,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,... Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Detached House + Bq On Approximately 1,500 Square Metre Of Land @ Akwuzu Street, Lekki Phase 1",Akwuzu Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached House + 1room Boys Quarter,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Eleganza Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lux 4 Bedroom Terrance,Spring Bay Estate Ikate Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Lekki Phase 2 Lekki Lagos,₦,"49,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 18jun01,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplx For Sale,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 17jun19,Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 17jun14,Osapa London Lekki Lagos,₦,"299,999,999",0,1,1,5 beds,5 baths,5 Toilets +A Spacious 5bedroom Fully Built Duplex With Bq,"Megamount Estate, Lekki County Estate Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Global C Of O,"Lakowe Golf Course Lekki, Lagos State Lekki Lagos",₦,"5,000,000",1,1,1,8 beds,6 baths,8 Toilets +4 Bedroom Terrace House For Sale In Lekki 17jun06,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 17jun05,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 17jun04,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished Fully Detached 5 Bedroom Duplex With A Penthouse All Room En Suite,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,10 baths,10 Toilets +"*4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki.",Chevron Ikota Lekki Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached Apartment For Sale At Pinnock Beach Estate,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,1,5 beds,5 baths,6 Toilets +"1000 Square Meters Of Bare Land On An Interlocked Road In Lekki Scheme 2, Ajah","Lekki Peninsula Scheme 2, Off Abraham Adesanya Estate Road , Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"18,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,... Ikota Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,... Chevron Lekki Lagos,₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 2 Bqs For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedrooms Fully Detached House For Sale!!! ,Lekki County Home Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Newly Built 6 Bedroom Fully Detached Duplex With 2room Bq,"Western Foreshore Estate, Beside Pinnock Beach Estate, Jakande, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,. Chevron Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 16jun15,Ikota Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 16jun07,Ikota Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Lekki 16jun06,Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 16jun03,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +Massive 5bedroom Fully Detached Duplex In Admiralty Lekki,Admiralty Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom House With 2 Rooms Bq For Sale At Pinnock Beach Estate,Pinnock Beach Estate Agungi Lekki Lagos,₦,"350,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Detached House With Two Rooms Boys Quarter,Vgc Vgc Lekki Lagos,₦,"290,000,000",0,0,0,4 beds, baths, Toilets +Duplex For Sale,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 15jun31,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 15jun27,Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 15jun19,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Flat In A Serene Niegbhourhood,A Serene Estate In Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,3 Toilets +Duluxe 5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 15jun13,Chevron Lekki Lagos,₦,"78,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 15jun03,Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15jun02,Lekki Lagos,₦,"42,000,000",0,0,1,4 beds,4 baths,4 Toilets +A 4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxurious 4 Bedroom Duplex,... Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In A Serene Neighborhood With A Bq,.... Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Detached 5 Bedroom Duplex With 2 Rooms Bq,..... Osapa London Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,.... Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Terrace Duplex,... Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 5 Bedroom Fully Detached Duplex With Bq,.... Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fresh Sales ???? Newly Built 5 Bedroom Contemporary Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Cheapest 4bedroom Semi Detached Duplex In Ikota Lekki,Ikota Lekki Ikota Lekki Lagos,₦,"34,800,000",0,1,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +A 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +A 4 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +A 4 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +"Pay Rent For 2 15 Years And Own Your Home Bella Courts, Ikate, Lekki",Bella Courts Ikate Lekki Ikate Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +For Sale: Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood .,"11, Bashoru Okunsanya Street. Lekki Phase1. Lagos Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 13jun27,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 13jun21,Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 13jun17,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 13jun17,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Ikota 13jun12,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Promo!!!! *this Is The Moment Your Money Has To Work For You. Invest N988,000 On A C Of O Land And Watch As The Price Appreciate Greatly While You Are Still Paying The Original Price On Installment For 48 Months. Be Like Other Smart Investors.* The Amari",Okun Oje Bogije Lekki Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun09,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets +A 4 Bedroom Fully Detached Duplex.,Orchid Road Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +A 4 Bedroom Semi Detached Duplex.,Chevy View Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Osapa 13jun05,Lekki Lagos,₦,"200,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun04,Lekki Lagos,₦,"79,500,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 13jun03,Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +A 4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 13jun01,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex.,Ikota Villa Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Super Luxury Detached Duplex,Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex,Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +Excellent Finished 4 Bedroom Terrace.,Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,4 Toilets +Fenced Buy And Build Dry Land At Abijo With Genuine Gazette Document,Very Close To The Owode Labora Palace Lekki Phase 2 Lekki Lagos,₦,"6,700,000",1,1,0, beds, baths, Toilets +4bedroom With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,6 baths,4 Toilets +Semi Detached 4 Bedroom Duplex With Bq,Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +500 Square Meeters Of Land,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +5bed Luxury Apartment,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace House For Sale In Chevron 11jun29,Chevron Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 11jun24,Lekki Lagos,₦,"44,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 11jun23,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Chevron 11jun22,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Chevron 11jun21,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedroom Duplex With Bq,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrance Duplex With Bq,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +New Tasteful 2bedroom Terrace House With Great Electricity Located At Lavadia Estate(abraham Adesanya),Abraham Adesanya Chevron Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Cornerpiece Townhouse With Bq In A Premium Estate,Rt Lawal Street Ikate Lekki Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Terraced 4 Bedroom Duplex,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 11jun20,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 11jun18,Ikota Lekki Lagos,₦,"48,000,000",0,0,1,4 beds,4 baths,4 Toilets +Luxury Detached Duplex For Sale,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Terraced Duplex For Sale,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Victory Park Osapa London Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facillities,Ikota Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facillities,Ologolo Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terraced Duplex With 1 Room Bq And Excellent Facilities,Ilasan Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxurious Contemporary 5bedroom Fully Detached Mansion With Swimming Pool, Cinema For Sale",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Functional 4 Bedroom Terraces Intelligently Built With You In Mind And Strategically Located At The Centre Of Lekki.,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Detached House.,Ikota Villa Estates Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facillities With A Room Bq,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5bedroom Detached Duplex For Sale,Oral Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Terraced Duplex With Excellent Facillities With Bq,Ilasan Lekki Lagos,₦,"52,000,000",0,1,0,3 beds,3 baths,4 Toilets +Magnificent 4 Bedroom Fully Detached Home In Lekki Phase 1 (off Admiralty Road) + Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Ologolo Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Detached House With Bq For Sale,Gated Closed Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 1 Bedroom Falt With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,1,0,1 beds,1 baths,2 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facillities,Ilasan Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Detached Duplex With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,7 Toilets +4bedroom Terrace Duplex For Sale! Ikota Lekki 45m,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Garden House Plus 2 Bedrm Bq,Fara Park Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +*brand New 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fantastic Piece Of Dry Land In A Highbrow Environment.,Isaac Aloko Street Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Duplex With Bq,Idado Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +Executive Brand New 4bedrooms Terrace Duplex For Sale At Lekki Chevron Lagos.,Lekki Chevron Lagos. Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Brand New 4bedrooms Duplex With A Room Bq For Sale At Lekki Ph1.,Executive 4bedrooms Duplex For Sale With A Room Bq At Lekki Ph1 Estate. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Dnewly Built Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive Brand New 4bedrooms Detached Duplex With A Bq At Lake View Park Estate Opposite Chevron.,Lake View Park Estate 2 Opposite Chevron. Chevron Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Governor Consent, Survey Plan & Deed. 390squere Meter Of A Brand New 5bedroom Duplex With A Bq In Ikota Westend Estate Lekki County Home 55m Asking",Westend Estate Lekki County Home Ikota Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,6 Toilets +"A Beautiful And Sweetable 4 Bedroom Detach Duplex With Bq, All Rooms Ensuit",Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex.,Ikota Lekki Lagos,₦,"79,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Chevron 10jun26,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Ikate 10jun24,Ikate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Chevron 10jun23,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Very Dry Affordable Table Land With Cofo In Jakande Lekki,Beach Road Jakande Lekki Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedroom Detarched Duplex.,Olaitan Sibanjo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 10jun19,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 10jun19,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 10jun17,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 10jun17,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki 10jun04,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 09jun34,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 09jun33,Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 09jun32,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Built 3 Bedroom Terrace Duplex,2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Osapa 09jun26,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 09jun19,Lekki Phase 2 Lekki Lagos,₦,"42,500,000",0,0,0, beds, baths, Toilets +"Newly Built 4bedroom Duplex, Fully Furnished At Ikota, Lagos.",Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 09jun15,Ikota Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Chevron 09jun14,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex,...... Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious And Modern 4 Bedroom Semi Detached Duplex With Bq,.... Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxuriously Finished 4bedroom Semi Detached House With Massive Space And B/q,Chevy View Estate Chevron Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Mini Duplex,Orchids Road Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +2bedroom Flat For Sale At Orchid,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Fantastically Finished 4bedroom Duplex,Ikate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +For Sale/rent 5 Bedroom Terrace Duplex At Osapa Sale Price,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +Distress Sales Of 4bedroom Terrace Duplex With A Room Boys Quarter,Bridge Gate Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5bedroom Detached House With A Room Boys Quarter,Kushenla Road Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets +A 2bedroom Flat For Sale,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +4bedroom Styled Terrace Duplex,"Word Oil Road,ikate Elegushi Ilasan Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Two Jv In Alasia Town Close To The Lagos Business School,Alasia Town Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Ojomu Deed, & Registered Survey. 648squere Meters Of Land( Fenced & Gated ) Price: 30m","Soji Olagunju Street, Off Alpha Beach New Road Jakande Lekki Lagos",₦,"30,000,000",0,0,0, beds, baths, Toilets +"Registers Deed, & Survey. 2plots(648square/plot) Together Along Silicon Valley Estate Per Plot Price:20m","By Banana Apartment, Off Alpha Beach New Road Lekki Jakande Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +"900squere Of Dry Land. Deed, Governor Consent & Survey. Bridge Gate Estate Iberekodo Street Agungi Price: 65m","Bridge Gate Estate, Iberekodo, Street Agungi Road Lekki, Lagos Agungi Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat For Sale In Osapa 07jun27,Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Apartment For Sale In Ikate 07jun26,Ikate Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House For Sale In Chevron 07jun25,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +4bedroom Luxury Detached Duplex With Bq,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 2 Bedroom,Seagate Estate Near Spar Ikate Lekki Lagos,₦,"42,000,000",0,1,1,2 beds, baths, Toilets +4 Bedroom Duplex For Sale In Ikota 07jun15,Ikota Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,4 baths,4 Toilets +Newly Built Luxurious 3 Bedroom Flat,Ayo Babatunde Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,3 beds, baths, Toilets +"Massive 5bedroom Detached With A Pool....playing Area, 2rooms Bq...ln 600sqm",Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,1,5 beds, baths, Toilets +Affordable Dry Table Land In Lekki Jakande,Jakande Beach Access Bank And Lagos State Government Proposed Estate Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Newly Built Smart 5 Bedroom Fully Detached With A Bq,By Orchid Chevron Lekki Lagos,₦,"77,000,000",0,1,0,5 beds, baths, Toilets +4bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Creek Avenue Court 2 Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,4 Toilets +Land And Property,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached House For Sale In Lekki 06jun09,Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun08,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Chevron 06jun07,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun06,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Osapa 06jun05,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 06jun04,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 06jun03,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built And Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached House In A Nice Estate,Adamu Street Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +"10,000sqmts Of Dry Land, Available For Sale, Facing Lekki Epe Expressway, Ikate Lekki Lagos","Elegushi Beach Road, Ikate Ikate Lekki Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Duplexes,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Solid 80 % Completed , Fully Detached 4 Bed Rooms Duplex , With A 2 Rooms Pent House And An Attached 2 Rooms Bq In Vgc , Can Also Pack 4 Cars Conveniently , Seated On A 600sqm Off A Close Corner Piece Land , Off Road 3 With A Verified Government Consent","Road 3, Vgc Lagos Vgc Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached House In A Nice Estate,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 05jun33,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 05jun32,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 05jun31,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ologolo 05jun30,Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 05jun23,Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Ikate 05jun16,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Fully Detached Duplex In Serene Estate,Chevron Drive Lekki Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Vgc 05jun14,Vgc Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq At A Waterfront,Lekki Phase 1 Lekki Lagos,₦,"24,000,000",1,1,1,4 beds,5 baths,5 Toilets +A Gated Estate Having 4 Blocks Of 16 Units Of 3bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,1,0,9 beds,9 baths,9 Toilets +4 Bedroom Terrace Duplex For Sale,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With 1room Bq For Sale,2nd Tollgate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Luxuriously Finished 5bedroom Detached House With Massive Space And B/q,Bera Estate Chevron Lekki Lagos,₦,"83,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 04jun18,Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 04jun13,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Osapa 04jun11,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Addo Road 04jun10,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Terrace,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace,Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex With A Bq,Lekki County Homes Ikota Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly Built 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"205,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Ikota 04jun02,Ikota Lekki Lagos,₦,"79,500,000",0,0,1,5 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached House With A Room Bq,"Lekki County Homes, Ikota Ikota Lekki Lagos",₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex For Sale!,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,7 Toilets +4 Bedroomd Detached Duplex With Boys Quarter,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex.,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrance Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Chevron 03jun61,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Rent In Chevron 03jun60,Chevron Lekki Lagos,₦,"3,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Rent In Lekki 03jun55,Lekki Lagos,₦,"5,500,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Rent In Osapa 03jun54,Osapa London Lekki Lagos,₦,"4,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ologolo 03jun50,Ologolo Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ologolo 03jun46,Ologolo Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron 03jun44,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +"2 Plots Of Land Already Sand Filled Land Beside Mega Mound Estate, Ikota, Lekki, Lagos",Ikota Lekki Lagos,₦,"125,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Luxury Detached Duplex.,Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,6 baths,6 Toilets +"New Listing! For Sale/rent 4 Bedroom Semi Detached House Quality Finishing And Fittings Quiet And Secure Neighborhood Location Chevron, Lekki, Lagos","Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 02jun15,Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached For Sale In Ikota 02jun11,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 02jun10,Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 02jun04,Lekki Lagos,₦,"70,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Osapa 02jun03,Osapa London Lekki Lagos,₦,"290,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 02jun02,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikota 02jun01,Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedroom Semi Detach With A Room Bq 75m,Pinnock Beach Estate By Dr Kennedy Okonkwo Way. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex,Askamaya Estate Opp Mega Chicken Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 22apr65,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may59,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 2apr4,Lekki Lagos,₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr13,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 7may39,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom House For Sale In Lekki 25apr13,Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Duplex With 1room Bq,Bera Estate Beside Uba Bank Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 7may41,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 25apr21,Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 31mar25,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 31mar21,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 4may5,Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 5bedroom Duplex And A Bq,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may60,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr15,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 15apr24,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikate 01jun30,Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr44,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +32 Rooms Hotel For Sale In Lekki 9apr24,Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex Sale In Lekki 21apr28,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 25mar7,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Units Of 5 Bedroom Detached House,.. Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,4 Toilets +2 Bedroom Flat For Sale In Lekki 16apr18,Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Duplex For Sale In Lekki 9may8,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +45 Rooms Hotel For Sale In Lekki 30apr41,Lekki Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached House For Sale In Osapa 30may42,Osapa London Lekki Lagos,₦,"300,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Mansion For Sale In Lekki 9may25,Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may53,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 29apr49,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Osapa 30may44,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15apr20,Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 5bedroom Duplex Fully Detached With 2rooms Servant Quarters On 430 Square Metres, It Features Include A Swimming Pool, Gym, Cinema Room, Purpose Built Study, Solar Power Inverter",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may49,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 13may55,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With A Swimming Pool & A Room Bq For Sell In Lekki County Ikota.,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 31mar29,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +45 Rooms Hotel For Sale In Chevron 01apr32,Chevron Lekki Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may46,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Maisonette, Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may29,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr53,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +8 Bedroom Detached House For Sale In Lekki 26maar1,Lekki Lagos,₦,"150,000,000",0,0,0,8 beds,8 baths,8 Toilets +2 Bedroom Apartment For Sale In Lekki 4apr37,Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,2 Toilets +Office Building, Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land For Sale In Lekki 4apr34,Lekki Lagos,₦,"38,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex For Sale In Lekki 11may54,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 18apr4,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 4may16,Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 8apr26,Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Lekki 7may58,Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale In Lekki 6may54,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr38,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 2apr7,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 17apr1,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Terrace For Sale In Lekki 15apr29,Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat For Sale In Lekki 27apr10,Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 2apr3,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 8may24,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 23apr52,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 25apr24,Lekki Lagos,₦,"4,800,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex For Sale In Lekki 13may9,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment For Sale In Lekki 15may25,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 7may50,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat For Sale In Lekki 13may58,Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 14may23,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 28apr33,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached House For Sale In Lekki 26mar42,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 15apr45,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 28mar3,Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 30may18,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 14may20,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 13may1,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr12,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House For Sale In Lekki 25apr1,Lekki Lagos,₦,"168,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr29,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr19,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8may13,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr25,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 31mar48,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Bungalow For Sale In Lekki 5may45,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 5may36,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8may30,Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 14may25,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr5,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 15apr21,Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Lekki 6apr10,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 4apr52,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 4apr43,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached House For Sale In Lekki 21apr2,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 25apr11,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki 29apr26,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 22apr38,Lekki Lagos,₦,"6,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Penthouse For Sale In Lekki 4may23,Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 12may54,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 23apr49,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 24apr56,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 21apr1,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 28may09,Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 13may34,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale In Lekki 3apr10,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 13may50,Lekki Lagos,₦,"72,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr23,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +692sqm Land For Sale In Lekki 30apr39,Lekki Lagos,₦,"90,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 26mar7,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 28apr43,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 27apr48,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may15,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 27apr45,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached For Sale In Lekki 29apr1,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom House For Sale In Lekki 5may39,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semidetached Duplex For Sale In Lekki 24apr1,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 6apr5,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr24,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 12may26,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace For Sale In Lekki 27apr26,Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr14,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr40,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may5,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 8apr8,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 7apr18,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 14apr2,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may58,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 7apr11,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Agungi 22apr3,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 28mar47,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr42,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 13may56,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Chevron 30may80,Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex For Sale In Lekki 6apr36,Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 14apr6,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 5may32,Lekki Lagos,₦,"83,000,000",0,0,0,4 beds,4 baths,4 Toilets +Commercial Building For Sale In Lekki 7apr48,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Lekki 25apr17,Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex Sale In Lekki 16apr30,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 31mar17,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment For Sale In Lekki 14apr49,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Mini Flat Sale In Lekki 27apr30,Lekki Lagos,₦,"9,000,000",0,0,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached House For Sale In Osapa 30may40,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 30apr38,Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar15,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr41,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Apartment For Sale In Lekki 24apr3,Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land For Sale In Lekki 8may14,Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale In Lekki 27apr6,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 14apr1,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 27may97,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may27,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 27mar1,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14may36,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8apr49,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 14may15,Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Lekki 7may4,Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 30mar17,Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 30apr2,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 6apr35,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached House For Sale In Lekki 30mar21,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House For Sale In Lekki 7may57,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr21,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace For Sale In Lekki 9apr42,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 21mar8,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar26,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 27mar2,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 11may47,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki 8apr32,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 29apr14,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 9apr40,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House For Sale In Lekki 4may49,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 27apr14,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat For Sale In Lekki 9may9,Lekki Lagos,₦,"28,500,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may55,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 22apr52,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +1320 Sqm Land For Sale In Lekki 7may13,Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 9may4,Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat For Sale In Lekki 14may13,Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 14apr18,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 24apr55,Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 17apr45,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Chevron 01jun39,Chevron Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 4may57,Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 12may49,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 21apr32,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Chevron 2apr22,Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 24apr60,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 21mar7,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may51,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Lekki 31mar10,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Bungalow For Sale In Lekki 11may11,Lekki Lagos,₦,"19,299,375",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14may38,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 22apr12,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 28apr52,Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex For Sale In Lekki 22may11,Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 4apr2,Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 13may45,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 31mar28,Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 8apr46,Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 7may38,Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 4apr47,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 8may45,Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr13,Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15may6,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 21mar4,Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8may12,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 13may4,Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 8may50,Lekki Lagos,₦,"11,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr16,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikate 01jun79,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 31mar26,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 30may77,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +10.6 Hectares Of Commercial Plot For Sale In Lekki 18apr8,Lekki Lagos,₦,"6,000,000,000",1,0,0, beds, baths, Toilets +5 Bedroom Duplex For Sale In Lekki 3apr36,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom House For Sale In Lekki 12may38,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr27,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 9apr28,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar30,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 29apr28,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 9may49,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached House For Sale In Lekki 4apr18,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 17apr54,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 12may1,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 17apr52,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 25apr14,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr9,Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Lekki 31mar49,Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 28apr53,Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 17apr24,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 31mar51,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 27apr7,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace For Sale In Lekki 6may11,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 26mar29,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 28apr46,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House For Sale In Lekki 27apr17,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace For Sale In Lekki 14apr17,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 7apr41,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 12may41,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may21,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 6apr34,Lekki Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detach Duplex For Sale In Lekki 22apr43,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 23apr22,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Chevy View 30may41,Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 01jun49,Osapa London Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Ikate 30may74,Ikate Lekki Lagos,₦,"88,000,000",0,0,1,5 beds,5 baths,5 Toilets +3 Bedroom Terrace For Sale In Lekki 5may23,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached House For Sale In Lekki 12may55,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 4may42,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 8may36,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Chevron 30may45,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached House For Sale In Lekki 15may23,Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House, Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Commercial Building For Sale In Lekki 2apr44,Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale In Lekki 31mar31,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 23apr18,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale In Lekki 22apr56,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +7 Storey Building For Sale In Lekki 01jun50,Lekki Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With A Room Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 9may54,Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr53,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 22apr63,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 27apr22,Lekki Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15apr5,Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 25apr10,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 28apr37,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 30mar47,Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment For Sale In Lekki 11may59,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 7apr47,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace For Sale In Lekki 24apr57,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House,.. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Lekki 31mar3,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +32units Of Room Self Contain For Sale In Lekki 23apr19,Lekki Lagos,₦,"80,000,000",0,0,0,1 beds,1 baths,1 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 7may47,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr43,Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 28mar46,Lekki Lagos,₦,"17,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace For Sale In Lekki 8may27,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 15may30,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 15apr28,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota 27may96,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar25,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 6may21,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 9apr49,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,.. Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,3 Toilets +5 Bedroom Duplex For Sale In Lekki 24apr25,Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 3apr17,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Fully Furnished For Sale In Lekki 30may85,Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Units Of 5 Bedroom Detached House For Sale In Lekki 26mar2,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 15may27,Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Lekki 8may6,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 11may50,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 24apr61,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr2,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 31mar37,Lekki Lagos,₦,"800,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 27apr47,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 7may39,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 13may18,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8apr41,Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may56,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 01apr21,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Chevron 30may45,Chevron Lekki Lagos,₦,"77,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 28mar28,Lekki Lagos,₦,"205,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 28mar27,Lekki Lagos,₦,"285,000,000",0,0,0,5 beds,5 baths,5 Toilets +Uncompleted 4 Bedroom Terrace For Sale In Lekki 12may37,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki 8apr9,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached For Sale In Lekki 6apr38,Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 5may43,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Lekki 24apr2,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex For Sale In Lekki 26mar12,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 24apr53,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 25mar8,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 6may52,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar21,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets +4000sqm Land For Sale In Lekki 14may16,Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale In Lekki 14apr50,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15may21,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 31mar4,Lekki Lagos,₦,"3,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House For Sale In Lekki 9may23,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 12may9,Lekki Lagos,₦,"26,437,500",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale In Lekki 27apr33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +8 Plots Of Land For Sale In Lekki 2apr14,Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 01apr24,Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 19may19,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Units Of 3 Bedroom Flat,.. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,1,3 beds,3 baths,3 Toilets +Mini Flat For Sale In Lekki 30apr54,Lekki Lagos,₦,"9,000,000",0,0,0,1 beds,1 baths,1 Toilets +7 Bedroom Fully Detached Duplex For Sale In Lekki 21mar18,Lekki Lagos,₦,"280,000,000",0,0,0,7 beds,6 baths,6 Toilets +Land For Sale In Lekki 14apr36,Lekki Lagos,₦,"3,300,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 4may46,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7apr8,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Maisonette, Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 16apr24,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 01apr26,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr45,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex For Sale In Lekki 30mar33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 14apr16,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 7may48,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may15,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 23apr54,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr26,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 12may49,Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 26mar31,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 27apr4,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Chalet For Sale In Lekki 8may25,Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 28apr45,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 21apr4,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 29apr29,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 8apr18,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 12may42,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 6apr4,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 30may82,Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 18apr50,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 24apr58,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 6apr8,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace For Sale In Lekki 27apr54,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 26mar23,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr43,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 01jun48,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa 30may81,Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 13may2,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Osapa 30may93,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Duplex For Sale In Lekki 31mar27,Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terrace Triplex For Sale In Lekki 9apr29,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 6may4,Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +New Tastefully Detached 4bedroom Duplex With A Bq,Chevron Round About Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +7 Bedroom Mansion For Sale In Lekki 4apr25,Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 23mar36,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Chevron 27may76,Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace Duplex For Sale In Lekki 6apr31,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace For Sale In Lekki 5may23,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,.. Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 28mar13,Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"1, 2 Bedroom Apartments For Sale In Lekki 14apr30",Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 7may52,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 27mar31,Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets +Uncompleted 4 Bedroom Terrace Duplex For Sale In Lekki 16apr29,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +A School For Sale In Chevy View 01jun78,Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikate 27apr00,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 29apr38,Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 18apr23,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace For Sale In Lekki 13may59,Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr4,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Lekki 28mar34,Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Penthouse For Sale In Lekki 27mar18,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 21apr19,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 21apr33,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 17apr16,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Nos 3 Bedroom Flats For Sale In Agungi 17apr32,Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Apartment For Sale In Lekki 30mar43,Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Units 4 Bedrooms Duplex For Sale In Lekki 16apr31,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 29apr37,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 25apr12,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment For Sale In Lekki 7may60,Lekki Lagos,₦,"48,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota 27apr0,Ikota Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 30apr43,Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 23apr60,Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Bungalow For Sale In Lekki 12may10,Lekki Lagos,₦,"19,299,375",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may56,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment For Sale In Lekki 15apr44,Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 5may47,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may26,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may47,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Luxury Duplex For Sale In Lekki 22apr8,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale In Lekki 28mar38,Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 31mar43,Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detach Duplex For Sale In Lekki 9apr31,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 16apr58,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron 9apr44,Chevron Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom House For Sale In Lekki 4may10,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 28apr49,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 31mar54,Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House For Sale In Lekki 12may57,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +1 Bedroom Bungalow For Sale In Lekki 8may58,Lekki Lagos,₦,"10,892,250",0,0,0,1 beds,1 baths,1 Toilets +6 Bedroom Duplex For Sale In Lekki 31mar53,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,6 Toilets +32 Units Of Self Contain For Sale In Lekki 5may58,Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar29,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 7may37,Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may33,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 14may35,Lekki Lagos,₦,"6,750,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 01apr25,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully detached Duplex For Sale In Lekki 23apr17,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 8may31,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 29apr13,Lekki Lagos,₦,"7,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment For Sale In Lekki 26mar33,Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +1000sqm Land For Sale In Lekki 30apr36,Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 29apr54,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex Terrace Or Sale In Lekki 23apr24,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Apartment For Sale In Lekki 14apr10,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr39,Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex For Sale In Lekki 3apr37,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 13may57,Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 6may49,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 01apr22,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 28mar43,Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Lekki 11may59,Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex For Sale In Lekki 9may51,Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 3apr45,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Lekki 4may48,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 30mar18,Lekki Lagos,₦,"205,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 29apr42,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 15apr18,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 29apr8,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 14apr23,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 12may16,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may58,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House For Sale In Lekki 18apr17,Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 15may18,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 18may51,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 29apr27,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 31mar50,Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 2apr27,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 13may3,Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Lekki 28apr42,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex For Sale In Lekki 22may3,Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,3 Toilets +20 Units Of 3 Bedroom Flat For Sale In Sangotedo 16apr32,Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Houses For Sale In Lekki 23apr45,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 28mar14,Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale In Lekki 8may46,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex For Sale In Lekki Gardens 30may30,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace For Sale In Lekki 13may39,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Apartment For Sale In Lekki 16apr20,Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 27apr11,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 5bedroom Detached Duplex Sitting On 350square Meters In An Estate Very Secured,2nd Toll Gate Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace For Sale In Lekki 18may17,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex For Sale In Agungi 01jun28,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Well Built 4bedroom Detached Duplex With A Bq Within A Secured Estate By Chevron Round About,Chevron Round About Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Chevron 30may36,Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 7may3,Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Chevron 27may30,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +9 Flats Of 3 Bedrooms For Sale In Lekki Phase1 30may23,Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets +1 Bedroom Bungalow For Sale In Lekki 12may11,Lekki Lagos,₦,"10,892,250",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Duplex For Sale In Lekki 28apr40,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Lekki 23apr35,Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 24apr59,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 14may26,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Ibeju Lekki 2apr8,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +"Governor Consent. Brand New 4bedroom Terrace Duplex With Bq, Swimming Pool, Massive Parking Lot In Lekki Ikota Villa Estate By Mega Chicken Asking Price: 45m",Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom House For Sale In Lekki 28apr55,Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Ibeju Lekki 17apr7,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Vgc 4apr10,Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale In Lekki 4may9,Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +Uncompleted 4 Bedroom Duplex For Sale In Lekki 13may51,Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 9may1,Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 17apr6,Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 7may28,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 6apr37,Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Apartment For Sale In Lekki 4may44,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 5may33,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 8may15,Lekki Lagos,₦,"50,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 2apr33,Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Lekki 21apr3,Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may32,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 26mar43,Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki 2apr18,Lekki Lagos,₦,"8,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 6apr17,Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 31mar44,Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 13may33,Lekki Lagos,₦,"5,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale In Lekki 11may45,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale In Lekki 30apr59,Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 2apr29,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 11may57,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale In Lekki 30mar19,Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Apartment For Sale In Lekki 29apr52,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 14may42,Lekki Lagos,₦,"850,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 6may49,Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,.. Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Plots Of Land For Sale In Ikota 4may60,Ikota Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale In Lekki 4apr50,Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Osapa 27may66,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flats For Sale In Lekki 12may60,Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex For Sale In Lekki 15apr9,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex For Sale In Lekki 9may52,Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 9may59,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 30apr19,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki 30apr3,Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 31mar24,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex For Sale In Lekki 8may11,Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment For Sale In Lekki 28apr2,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki 9apr25,Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki 6apr3,Lekki Lagos,₦,"8,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House For Sale In Lekki 9may7,Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 9apr30,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki 20may27,Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House In Lekki 01jun19,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale In Lekki 8apr47,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,.. Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale In Lekki 27apr51,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 15apr36,Lekki Lagos,₦,"93,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached House For Sale In Lekki 13may32,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale In Lekki 27mar6,Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale In Lekki 7may31,Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex For Sale In Lekki 23apr55,Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedrooms Terrace And Bq,Bishopgate Residence Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Tarrance Duplex,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniels Garden Lekki,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets +Land For Sale At Lekki,"Abijo, Lekki Lagos State Lekki Lagos",₦,"10,500,000",0,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"79,000,000",0,1,1,5 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex For Sale In A Serene Environment,Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,7 baths, Toilets +Newly Built 4 Bedroom Detached Duplex For Sale In A Serene Environment,Lekki Right Hand Side By Oniru Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Portable 2 Bedroom Terrace For Sale In Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,1 baths,1 Toilets +5 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,.. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Switchless Smart Duplex,Buena Vista Estate By By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Lekki Phase 2,"Block 50, Plot 2 Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful Spacious 1 Bedroom Flat For Sale With Ensuite Bq,Off Baale Street Ologolo Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets +"Land For Sale In Seagate Estate, Ikate Lekki","Seagate Estate, Ikate Lekki Lagos Ikate Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Lekki County Homes By Megamound Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom For Sale,Thomos Estate Lekki Lagos,₦,"14,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Modern Fully Automated Luxurious 4bedroom Semi Detached Duplex For Sale,this Exquisite Home",After Chevron Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Land,"Atlantic View Estate, Igbo Efon, Lekki Lagos Igbo Efon Lekki Lagos",₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Penthouse And 2 Room Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,7 baths,7 Toilets +"Newly Built Luxurious 4bedroom Semi Detached Duplex For Sale,this Exotic Home Is Located At Chevron",Chevron Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built With State Of The Art Facilities 5 Bedroom Fully Detached Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale At Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale In Lekki Lagos,"Off Prince Olanrewaju Elegushi Street, Ilasan Ilasan Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Switch Less Smart 4 Bedroom Semi Detached Duplex With A Bq,"Buena Vista Estate By Chevron Toll Gate, By Orchid Hotel Road. Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom All Ensuit Semi Detached,Osapa London Jakande Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Furnished Contemporary Duplex With Swimming Pool,boys Quarters In A Seren Estate. Sold With Furnitures In Side",Idado Lekki Lagos,₦,"150,000,000",0,0,0,5 beds, baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex @ Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exotically Built Semi Detached,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,3 beds, baths, Toilets +An Estate Plots With C Of O,"Ibeju Lekki, Shapati Lekki Lekki Phase 1 Lekki Lagos",₦,"6,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex/townhouses For Sale In Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful Luxurious 4bedroom Fully Detached Duplex With 1room Bq,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Brand New Luxuriously Finished 5bedroom Detached House With Massive Space And B/q,Bera Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Terrace Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0, beds, baths, Toilets +3bedroom Flat,Ikate Lekki Lagos,₦,"45,000,009",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,.... Chevron Lekki Lagos,₦,"79,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Semi Detached Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,4 Toilets +4bedroom Tarrance Semi Duplex With Bq,Ologolo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Tarrance Duplex With Bq,Ologolo Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Terrance Duplex With Bq,Ologolo Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four Bedroom Semi Detached Duplex Up For Sale By Second Toll Gate,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Four Bedroom Semi Detached With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Land For Sale At Vintage Gardens And Oasis Gardens, Phase 2",Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Luxury Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 4bedroom Terrace, 4bedroom Semi Detached, 5bedroom Detached Duplex.",Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +A 5br Semi Detached Duplex In A Mini Estate,Igbo Efon Lekki Lagos,₦,"50,000,000",1,0,0,5 beds,5 baths,6 Toilets +A 2 Wings 5bedroom Duplex With Good Finishing,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets +"Amazing 4 Bedroom Terrace Duplex In Creek Avenue Court Phase 2 Ikota, Lekki, Lagos Revealed!!. (click To See The Intriguing Features)","After The 2nd Toll Gate At Chevron, Ikota, Lekki Ikota Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,":behind Lekki Conversation Centre Before 2nd Roll Gate,by Chevron,lekki Lagos ,nigeria Chevron Lekki Lagos",₦,"43,000,000",0,1,0,4 beds, baths, Toilets +4bedroom Semi Detached Duplex With Bq,Ocean Bliss Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Elegantly Built And Perfectly Finished Terrace, Semi Detached And Detached Duplexes For Sales",Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,3 baths,3 Toilets +4bedroom Terrace For Sale,Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +"3 Bedroom Terrace Duplex With Bq,bella Home Court","Bella Home Court, Close To Chevron Toll Gate Axis. Lekki Phase 1 Lekki Lagos",₦,"33,000,000",0,1,1, beds, baths, Toilets +Newly Built 4bed Room Terrace Duplex,Oniru Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Detached House On About 420sqm Land With Governor Consent,"Oral Estate, Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"2 Units Of Newly Built 4bedrooms Terrace Duplex, With Governor Consent","Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Block Of 11 Nos. Flats Available For Sale,"Oba Amusa Street, Off Ajiran Road, Agungi. Lekki, Lagos. Agungi Lekki Lagos",₦,"20,000,000",1,1,0,1 beds,1 baths,1 Toilets +"4 Units Of Newly Built 4 Bedrooms Semi Detached Houses, Each On About 210sqm Land With Governor Consent (70% Completed)","Off Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Of Newly Built 4 Bedrooms Semi Detached Houses Each On About 220sqm With Deed Of Assignment (80% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Units Of Newly Built 3 Bedrooms Flat With Governor Consent,"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +1unit Of Newly Built 4 Bedrooms Semi Detached House On About 220sqm Land With Deed Of Assignment (70% Completed),"Off Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Detached House With Governor Consent On About 550sqm (80% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Block Of Residential Flats For Sale,"Dada Fayemi Close Off Bamidele Eledu Avenue, Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"29,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Units Of Newly Built 4 Bedrooms Semi Detached Houses + A Room Bq Each On About 210sqm With Deed Of Assignment (70% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Units Of Newly Built 4 Bedrooms Detached Houses Each On About 350sqm With Deed Of Assignment (80% Completed),"Alternative Route Behind Chevron Office By 2nd Toll Gate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Wing Of Duplex With Bq,"Deji Fadoju Stree, Lekki County Homes Estate, Ikota, Lekki, Lagos. Ikota Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +8 Units Of Newly Built 4 Bedrooms Semi Detached Houses Each On About 280sqm Land With Governor Consent (80% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +2units Of 6bedroom Maisonette On 3floors (4bedroom Duplex + 2bedroom Flat) Having Ample Parking Space With C Of O (70% Completed),"Immediately After Lekki 2nd (chevron) Toll Gate, Lekki, Lagos Oral Estate Lekki Lagos",₦,"55,000,000",0,1,0,6 beds,6 baths,7 Toilets +"600sqm Space On 2floors Suitable For School, Hotel, Factory",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0, beds, baths, Toilets +Newly Built Luxurious And Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 5 Bedrooms Duplex With Bq In A Serene Neighborhood,"32 J J Oladimaji Close Off Freedom Estate, Ikate Lekki Ikate Lekki Lagos",₦,"250,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Build 2 Bedroom Flat With A Room Bq And Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Magnificently Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Contemporary House With 1 Rooms Service Quarter And Swimming Pool, Cinema, Gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 3 Bedrooms Duplex With Paint House And Bq In A Serene Neighborhood,"J J Oladimaji Close, Off Freedom Estate, Ikate, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced Newly Built Luxurious 4bedroom Duplex Terrence,Ikota Villa Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxurious And Beautiful 5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Massive Land Measuring 26,800sqm Of Land For Sale",Ikota Villa Ikota Lekki Lagos,₦,"1,340,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Idado Idado Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Magnificently Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,"Cheyview Estate, Chevron, Lekki, Lagos Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Renovated 5bedroom Detached House With 2bq,... Chevron Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Smart Duplex With Bq,Lakeview Park 2 Estate Lekki Phase 2 Lekki Lagos,₦,"96,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Fenced *984.577* Sqm Plot Of Dry Land With Gatehouse Near Abraham Adesanya,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 2 Bedroom Flat, Ikate Lekki Lagos,₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +Bare Land At Lekki Phase 2,Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 1 Bedroom Mini Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"29,000,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New Furnished 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Ikate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Terrace Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Duplex, 3 Units Of 3 Bedroom, 1 Unit Of 2 Bedroom And 1 Unit Of 1 Bedroom.","Abiji, Gra, Lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +Bulk Land For Sale,Shapati Close To Beechwood Estate Lekki Lagos,₦,"82,000,000,000",0,0,0, beds, baths, Toilets +Executive Brand New 5bedroom Detached Duplex At Lekki.,"Lekki, Heritage Estate Monastery Road Behind Novare Mall. Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New 3 Units Of 5bedrooms Duplex At Lekki Osapa London, 120m, 85m, 65m.",Lekki Osapa London. Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Magnificent Brand New 4bedroom Bedroom Terrace Duplex Is Up For Sale At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +This Magnificent Brand New 5bedroom Semi Detached Duplex At Okota Ville Estate Is Up For Sale,Ikota Ville Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Magnificent Brand New 4bedroom Terrace Duplex Is Up For Sale At Okota Ville Estate,Ikota Ville Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exotically Built 5 Bedroom Duplex Available Inside Lake View Estate.,Lake View Estate Orchid Road. Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Tastefully Build 3 Bedroom Duples,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,1,3 beds,4 baths,4 Toilets +1096sqm Underdeveloped Plot Of Land,Twin Estate Opposite Chevron Headquarters Chevron Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +A Spacious 5bedroom Fully Built Duplex With Bq,"Megamount Estate, Lekki County Estate Ikota Lekki Lagos",₦,"95,000,000",0,1,1,5 beds,6 baths,6 Toilets +Lovely Brand New 2 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Ikate Elegushu Lekki Lagos.,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semidetached,Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4bed Room Terrace With A Bq,Ochi Lekki Lagos,₦,"38,000,000",0,1,1, beds, baths, Toilets +5bd Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Premium Aesthetic 4 Bedroom Terraces Grey Gardens,"Chevron Drive, Beside Bera Estate Lekki Phase 2 Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,2 Toilets +2bd Semi Detached Duplex,Igbo Efon Lekki Lagos,₦,"28,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace House,"Idado, Agungi Idado Lekki Lagos",₦,"58,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 5bed Detached Duplex,Chevron Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets +A Newly Built 4 Bedroom Duplex Terrace,........ Ikota Lekki Lagos,₦,"41,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Detached Four Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,..... Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,...... Oral Estate Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Contemporary 5bedroom Fully Detached Mansion For Sale,Phase1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Lekky County Homes Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Luxuriously Finished 4bedroom Semi Detached House With Massive Space And B/q,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartments For Sale,Lekki Phase 2 Lekki Lagos,₦,"38,500,000",1,1,0,3 beds,3 baths,4 Toilets +Standard 4 Bedroom Detached In A Structured Estate,Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely 5 Bedroom Detached House (with Bq With Swimming Pool,Lekki County Home Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Newly Built 4 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds, baths, Toilets +"Fully Automated 5 Bedroom Detached Duplex With Swimming Pool And Gym,cinema",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex 45m @ Cooplag Gardens Lekki,Cooplag Gardens Lekki Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Detached Duplex By The Water,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Crafted 5 Bedroom Detached In A Serene Neighbourhood,"Lekky County Homes, Ikota Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Elegant 5 Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Beautiful Detached Duplex Inside Lekky County Homes,Lekky County Homes Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Hottest 5 Bedroom Inside Lekky County Homes,"Lekky County Homes, Ikota Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,7 baths,8 Toilets +Jv Jakande Junction,Jakande Lekki Lagos,₦,"8,175,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,8 baths,8 Toilets +*brand New House* *4bedroom Semi Detached Duplex With Bq*,Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +4 Units Of Luxurious Terrace,Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds, baths, Toilets +Brand New House* *4bedroom Fully Detached Duplex With Bq* *,Lekki Phase 2 Lekki Lagos,₦,"68,000,000",1,1,1,4 beds, baths, Toilets +4bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 3 Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detach Duplex With Bq Lekki,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedroom Semi Detach Duplex With Bq,Ikota Villa Estate Rd 32 Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Semi Detach Duplex With Bq,Ikota Villa Estate Rd 32 Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Dry Bareland On 10,756 Square Metres With Approval To Reclaim Extra 2000 Square Meters",Maroko Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Off Plan Sales Of Smart Homes 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq,"Buena Vista Estate, By Orchid Toll Gate Lekki Chevron Lekki Lagos",₦,"77,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Semi Detached 4 Bedroom Digital Smart Home,"Benue Vista Estate Orchid Road, Second Toll Gate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom,Lekki Lagos,₦,"15,000,000",0,1,0,3 beds, baths, Toilets +Governor Consent,4bedroom Luxury Duplex @phase1 Creek Avenue Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +"*description* 5bedroom Luxury Detached , Location:* Lekki County",Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +"Peach Garden City, Origanrigan, Ibeju Lekki",Lekki Lagos,₦,"3,600,000",0,0,0, beds, baths, Toilets +The Amari Gardens,"Okon Oje, Bogije, Lekki About 100 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,1,0, beds, baths, Toilets +The Amari Gardens,"Okon Oje, Bogije Lekki About 100 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,0,0, beds, baths, Toilets +The Amari Gardens,"Okon Oje, Bogije, Lekki, About 10 Metres Off Lekki Express Way Lekki Phase 1 Lekki Lagos",₦,"5,500,000",0,0,0, beds, baths, Toilets +100percent Dry Land On The Road,Abijo Gra Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex / 5 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Lovely 5 Bedroom With Bq Fully Detached Duplex For Sale In Chevron Lekki Lagos.,Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A Lovely 4bedroom With Bq And A Garage Semi Detached Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex With Bq For Sale In Chevron Lekki Lagos.,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A 670sqm Of Land For Sale In Oral Estate Ikota Lekki Lagos.,Oral Estate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +This Is An 800sqm Land For Sale Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +6300 Sqm Of Land Approved For A School In Osapa London Lekki,Residential Esate Osapa London Lekki Lagos,₦,"630,000,000",0,0,0, beds, baths, Toilets +"Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate, Ikate Lekki Phase",Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Terrace Duplex For Sale At Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Spacious 4 Bedroom Terrace Duplex In Ikota Lekki,Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bed Semi Detached Duplex With Bq,Divine Homes Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +C Of O Land In Ajah,Gonimas Wealthy Kingdom Ogombo Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets +Newly Built Well Furnished 4 Bedroom Semi Detached Duplex With Bq Pay And Park In 2020,Daniel's Garden Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets +Well Built Brand New 4 Bedroom Fully Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxuriously Well Finished 5 Bedroom Detached House With Bq In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously Well Finished 5 Bedroom Detached House With Bq In Osapa London,Osapa London Agungi Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built And Well Finished 4 Bedroom Terrace Duplex With Bq, Chevvy View Estate, Chevron",Chevvy View Estate Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 7 Bedroom Duplex Well Finished House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,1,0,7 beds,6 baths,8 Toilets +Newly Built Luxury 5bedroom,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +5bedroom Luxury Detached Duplex With Bq.,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,1,1,5 beds, baths, Toilets +*new Listing Alert!!!* *description:* 5bedroom Luxury Fully Furnished Detached Duplex With Cinema.,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds, baths, Toilets +Magnificently Built 4bedroom Detached Duplex,Ikota Lekki Lekki Lagos,₦,"77,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Fantastic Investment Opportunity Along Orchid Road, Beside Chevron, Lekki","Orchid Road, Beside Chevron Chevron Lekki Lagos",₦,"14,700,000",0,1,0, beds, baths, Toilets +Global C Of O,Iland Avenue Lekki Lagos,₦,"5,000,000",1,1,1, beds, baths, Toilets +For Sale: N45m Last Very Big And Spacious Luxury 3bedroom Apartment With A Bq Located At Ikate Lekki Close To Lekki Phase1 In A Private Estate Fully Serviced Buy Now,"36,ikate Road Ikate Lekki Lagos",₦,"45,000,000",0,0,0,10 beds,6 baths,6 Toilets +100percent Dry Land Along The Main Road At Lekki Phase2,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets +"For Sale Fantastic Fully Furnished Home In Chevy View Estate, Chevron, Lekki 5bedroom Fully Detached Self Compound. With A Swimming Pool Location: Chevy View Estate Lekki Title: Governor Consent. Selling With All The Properties Inside Land Size...",Lekki Phase 2 Lekki Lagos,₦,"75,000,000",1,1,1,5 beds, baths, Toilets +Luxury Newly Built 4bedroom Detached Duplex For Sale.,Alternative Route Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5bedroom Detached House,Nicon Nicon Town Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bed Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Flat,Ikate Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 5bedroom Fully Detached Duplex,Idado Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Detached,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4bedroom Terrace,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached For Sale,Lekki County Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Jumbo Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Townhouse,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,5 baths,5 Toilets +Land For Sale,Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Carcass 5 Bedroom Semi Detached Duplex,"Spar Road, Ikate Lekki Ikate Lekki Lagos",₦,"57,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built Luxury Flats,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built Luxury 1bedroom Flat,Chevron Lekki Lagos,₦,"30,000,000",1,1,0,1 beds,2 baths,2 Toilets +Newly Built Luxury 4bedroom Townhouses,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 5bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Terrance With Bq Lekki.,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq,Eli Court Lekki Phase 1 Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,4 baths,4 Toilets +For Sale 5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Neatly Renovated 7 Bedroom Detached Duplex With Bq,..... Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,7 beds,5 baths,5 Toilets +This Is A 2000sqm Land For 3years Lease Near Mega Chicken Ikota Lekki Lagos.,Ikota Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +This Is A 949sqm Of Land For Sale In Oral Estate Ikota Lekki Lagos.,Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +5bedroom Duplex With 2rm Bq For Sale On 700sqms Inside Pinnock Beach Estate Osapa Lekki 380m Net,Osapa London Lekki Lagos,₦,"380,000,000",0,0,0,5 beds, baths, Toilets +Newly Built Smart 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate, Lekki, Lagos Lekki Lagos",₦,"77,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Duplex,Ikate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built Exquisitively Brand New 4bedroom Semi Detached Duplex With A Maid Room For Sale At Chevron Lekki By Toll Gate In A Serene Environment.,Chevron Lekki By Toll Gate. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House For Sale At Chevron Ik500,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House For Sale At Lekki Phase1 Lk484,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Deatched Duplex For Sale At Ikota Lk622,Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ologolo Lekki Lk853,Ologolo Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale At Ikate Lekki Lk613,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House For Sale At Osapa London Lk823,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Duplex At Lekki,Lekki County Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale At Lekki County Ikota Lk488,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale At Ikota Lk826,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale,... Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex For Sale At Jakande Lekki Lk512,Jakande Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Duplex For Sale At Lekki Lk360,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Lekki Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale At Lekki Lk851,Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale At Osapa London Lk330,Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lk441,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale At Chevron Lk691,Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale At Osapa London Lk450,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace House For Sale At Chevy View Lekki Lk336,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevron Lk354,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale At Chevron Lekki Lk643,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At 2nd Toll Gate Ik743,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex For Sale At Chevy View Lekki Lk451,Chevy View Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale At Ikota Villa Lekki Lk425,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lk224,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex For Sale At Chevron Lk596,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lk385,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom & 3 Units Of 2 Bedroom House For Sale At Osapa London Lk438,Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment For Sale At Ikate Elegushi Lk374,Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex For Sale At Lekki Phase1 Lk487,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lk490,... Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale At Ikota Lekki Lk784,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent Very Nice Terrace Duplex Is Up For Sale,Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House For Sale At Lekki Lk433,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Beroom Duplex With Swimming Pool & Cinema At Osapa Lk825,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5bedroom Duplex At Lekki Drive Chevron For Sale.,Chevron Lekki Lagos. Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale At Ikate Lk817,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale At Orchid Road Lekki Lk535,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale At Lekki Phase1 Lk649,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex For Sale At Lekki Lk438,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale At Orchid Hotel Road Lk669,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex For Sale At Lekki Lk362,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Duplex For Sale At Chevron Lk393,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Decently Built 5 Bedroom Fully Detached Duplex With Bq Location: Chevron, Lekki For Sale.",Chevron Lekki. Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale At Ikate Elegushi Lk511,Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ensuite 5 Bedroom Detached Duplex For Sale At Lekki Lk235,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Semi Detached 5bedroom Duplex At Idado Estate,Idado Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached House For Sale At Lekki Phase1 Lk428,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lekki Lk439,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale At Chevron Lk489,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace House For Sale At Osapa London Lk437,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale At Chevron Lk187,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House For Sale At Orchid Road Lekki Lk429,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale At Chevron Lk383,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached House For Sale At Chevron Lekki Lk411,Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota Lekki Lk 439,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex For Sale At Chevron Lekki Lk667,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex For Sale At Osapa London Lk834,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale At Ikota Lekki Lk277,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale At Chevron Lekki Lk219,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale At Vgc Lk581,Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ensuite 3 Bedroom Flat For Sale At Lekki Lk494,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale At Chevron Lekki Lk528,Chevron Lekki Lagos,₦,"79,500,000",0,0,0,5 beds,5 baths,6 Toilets +Ensuite 3 Bedroom Apartment For Sale At Lekki Lk550,Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive Brand New 3bedroom Terrace Duplex At For Sale. Idado At Lekki,Idado Lekki Lagos. Idado Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom House For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale At Chevron Lk644,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Neatly Built 5 Bedroom Duplex House For Sale At Ikate Elegushi Lk293,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikate Elegushi Lk833,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Duplex Available At Ikota Lagos For Sale.,Ikota Lekki Lagos. Ikota Lekki Lagos,₦,"40,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale At Ikota Lekki Lk595,Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 5 Bedroom Duplex House For Sale In Ikate Lk179,Ikate Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,... Vgc Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Semi Detached Duplex For Sale At Lekki Lk194,Lekki Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace Duplex For Sale At Pinnock Beach Estate Lekki Lk357,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex For Sale At Chevron Lk742,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex(water View)with Bq, Swimming Pool And Cinema Room",Magemound Estate Inside Lekki County Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths, Toilets +600sm Land For Sale Beside Pinnock Estate,Beside Pinnock Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Governor Consent,Westend Estate By Lekki County Homes Ikota Lekki Lagos,₦,"39,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 6 Units Of 4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,$,"115,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Ikota, Lekki, Lagos Ikota Lekki Lagos",$,"139,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",$,"257,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Semi Detached Duplex With Bq For Sale In Orchid Rd, Lekki, Lagos","Orchid Road, Lekki Lekki Lagos",₦,"57,000,000",0,0,0, beds, baths, Toilets +Global C Of O,Inside Beechwood Estate Bogije Along Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +3 Units Of 5 Bedroom Detached Houses With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Fully Detached House With Pent House, Gym And Service Quarters.",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,1,1, beds, baths, Toilets +Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets +Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets +Global C Of O,Iland Properties Lekki Phase 1 Lekki Lagos,₦,"6,000,750",1,1,1, beds, baths, Toilets +Newly Built 5 Bedroom Duplex In An Eyebrow Environment,... Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Lovely 5 Bedroom With Bq Terrace For Sale In Agungi Lekki, Lagos.",Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex In A Very Good Enviroment,.... Osapa London Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In A Serene Enviroment,.... Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Exquisitely Newly 5 Bedroom Fully Detached Duplex With Cinema, Swimming Pool",Victory Park Estate Vgc Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Duplex With 2room Bq And Swimming Pool.,Lekki County Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Duplex With 2room Bq And Swimming Pool.,Lekki County’ Home Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 5 Bedroom Detached Duplex For Sale. Lekki County Home,Lekki County Home Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four (4)bedroom Room Contemporary Fully Detached Duplex With Service And Laundry Room For Sale.,Lakeview Park2 Estate 2nd Tollgate Orchild Road Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bed Duplex With Bq,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Finished 3 Bedroom Semi Detached Duplex,Thomas Estate Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +Solidly Built 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +300 Sqm (facing The Express),Jakande Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Luxurious 5bed Room Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +An Ultra Modern 5 Bedroom Detached House For Sale At Pinnock Estate Lekki Lagos.,Osapa London Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Self Service 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Ultra Modern 5 Bedroom Detached House For Sale At Pinnock Estate Lekki Lagos.,Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,4 Toilets +4bedroom Duplex,Silver Spring Estate Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached,Oral Estate Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,5 Toilets +7 Units Of 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"45,000,000",1,1,1, beds, baths, Toilets +Four Bedroom Duplex With Self Contain Boys Quarter,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Global C Of O,Inside Beechwood Estate Shapati Lekki Lekki Phase 1 Lekki Lagos,₦,"6,000,000",1,1,1, beds, baths, Toilets +Global C Of O,Iland Avenue Lekki Phase 1 Lekki Lagos,₦,"5,000,000",1,1,1, beds, baths, Toilets +"4 Bedroom Terrace + 1 Room Servant’s Quarter For Sale At Second Toll Gate, Lekki #21",Conservation Centre Road Chevron Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Four(4) Bedroom Semi Detached With Bq And Private Compound.,Osapa London Lekki Lagos,₦,"49,900,000",0,1,0,4 beds, baths, Toilets +Spacious 5 Bedroom Detached House With A Room Boys Quarter,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +"600 Square Metres Land For Sale In Lake View Park, Lekki Peninsula Ii, Lekki",Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +"12.5 Acres Of Land For Along Lekki Epe Expressway, Lekki, Lagos",Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +"A Full Detached House For Sale In Agungi, Lekki",Agungi Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +1 Unit Of 3 Bedroom Terrace Apartment In Ikate Elegushi,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +"700 Square Metres Land Measuring For Sale At Vgc, Lekki",Vgc Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +"600 Square Meters Fenced Land For Sale At Buena Vista Estate, Lekki, Lagos",Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +"Residential Land Property Of 648 Sqm In An Estate At Chevron, Lekki, Lagos",Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex With 1room Bq For Sale,Chevron Driver Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +"21,000 Square Metres Fenced Land For Sale In Vgc, Lekki",Vgc Lekki Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"A Fantastic 500 Square Metres Land For Sale At Lekki Phase 1, Lekki",Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"600 Square Meters Fenced Land For Sale At Lekki Phase 1, Lekki, Lagos",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Amazing Offer: 4 Bedroom Terrace + 1 Room Bq In Ikate Elegushi,Ikate Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Semi Detached House With Two Room Bq For Sale In Lekki Phase1, Lekki, Lagos",Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Tastefully Finished Terrace Apartments For Sale In Lekki Conservation Centre, Lekki, Lagos",Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +5bedroom Luxury Fully Furnished Detached Duplex For Sale!,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths, Toilets +Newly Built Five Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely 4 Bedroom Terrace Duplex For Sale In Agungi Lekki Lagos,Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Lovely And Neatly Finished 4 Bedroom With Bq Semi Detached Duplex For Sale In Osapa London Lekki Lagos,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Lovely And Neatly Finished 5 Bedroom With Bq Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette, Ikate Lekki Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 4, Bedroom Semi Detached Duplex",Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +"Newly Built 4, Bedroom Semi Detached Duplex",Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +Amazing 5bedroom Luxury Fully Furnished Detached Duplex With Cinema For Sale At Osapa London,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex For Sale At Chevron,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Built 4 Bedroom Terrace Duplex In Fully Serviced Gated Estate,"Ikota Gra, Lekki, Lagos Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built Five(5) Bedrooms Duplex With Bq With The Serene Orchid Estate, Lekki","Orchid Estate, Hotel Road Lekki Lagos",₦,"95,000,000",0,1,1,5 beds, baths, Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale At Chevron Lk149,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built Smart 5 Bedroom Fully Detached With A Bq And 4bedroom Semi Detached With A Bq Title: Governor's Consent Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos, 87m, 65m.","Chevron Toll Gate By Orchid Hotel, Chevron Road Lekki Lagos. Chevron Lekki Lagos",₦,"87,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,"Madiba Estate, Ikate Lekki Phase 1 Lagos. Ikate Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Exquisite 4 Bedroom Semi Detached Duplex With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +American Standard 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Duplex For Sale At Chevron Lk116,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Osapa Lekki Lagos Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Ikota Lekki Lagos,₦,"79,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette With An In Built 1 Bedroom Bq Apartment,"Hon. Ajayi Alaba Street, Ilasan Lekki Ilasan Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Super Terrace Duplex With Bq,Ikota Lekki Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Jakande Lekki Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Power Top Notch Duplex With Bq,Ikota Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Fiinished 4 Bedroom Terrace Duplex,Lekki 2nd Toll Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Detached Duplex For Sale In Lekki Lk142,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Smart 5 Bedroom Fully Detached Duplex With A Bq,Burne Vista Lekki Lagos,₦,"77,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Agungi Lk156,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +600 Sqm In Eminence Court,Sapati By Bogije Lekki Epe Expressway Lekki Lagos,₦,"5,200,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Urban Prime One Estate,Abraham Adesanya Road Lekki Phase 1 Lekki Lagos,₦,"14,500,000",0,0,0,1 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Oral Estate Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",1,1,1,4 beds,6 baths,6 Toilets +Finished 4 Bedroom Fully Detached Duplex With Additional Bq,"Chevron Alternative Drive, Chevron Lekki Lagos",₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq (highly Negotiable),Chevron Alternative Drive Chevron Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq (negotiable),"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"47,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale @ Lekki Chevron,Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sharp 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Distress Sales 5bedroom All Ensuite,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +4bedroom Luxury Fully Detached Duplex With Bq For Sale!,Ikota Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Detached Duplex At Daniels Garden,"Osapa London,before Agungi,before Igbo Econ,lekki Osapa London Lekki Lagos",₦,"70,000,000",0,1,1, beds, baths, Toilets +5bedroom Luxury Fully Furnished Detached Duplex With Cinema,Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Lekki Penisula Lekki Lagos,₦,"13,950,000",1,1,0,3 beds, baths, Toilets +4bedroom Terraces + Detached Bqs For Sale!,Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets +"Newly Built Luxury 5 Bedroom Detached Duplex For Sale With Bq And Swimming Pool,garden,gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegantly Finished 3 Bedroom Flat In A Serviced Estate,Oba Akinoye Way Lekki Lagos,₦,"48,300,000",1,0,1,3 beds,0 baths,0 Toilets +"Vantage Court, Bogije* Owning An Apartment Has Never Been This Easy! *introducing Vantage Court,* Bogije Along Lekki/epe Expressway, Lagos.",Lekki Lagos,₦,"15,000,000",1,1,0,3 beds,3 baths,3 Toilets +Beautifully Built 4 Bedroom Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",1,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished Ensuite 5bedroom Duplex With 2 Rooms Inbuilt Bq At Lekki Phase 1. Price :220million,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +"Beautiful 4 Bedroom Terraced Duplex With Bq For Sale At Madiba Estate. Ikate, Lekki",Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Brdroom Semidetached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,4 Toilets +A 75% Completed Ultra Modern Boutique Hotel That Can Be Converted To 120 Rooms Hotel Apartment. Selling As Uncompleted,Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +"A Parcel Of Land Measuring Approximately 1101 Square Metres Located At Block 10 Along Admiralty Road, Lekki Phase 1.",Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"96,000,000",0,1,0,6 beds,6 baths,6 Toilets +Tastefully Finished Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"50,000,000",0,1,0, beds, baths, Toilets +??4bedroom Terrace Duplex For Sale!,Ikota Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,4 Toilets +??3bedroom Luxury & Executive Apartments For Sale!,Chevron Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,3 Toilets +Hot Sale Well Built 12units 2bedroom Flat And 2units 4bedroom Penthouse All Rooms Ensuite With Guest Toilet,Chevron Lekki Lagos,₦,"500,000,000",0,1,1,10 beds,10 baths,10 Toilets +5bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +640sqmt @ Block 20 With C Of O,"Right Hand Side, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Very Close To Spg Complex Igbo Efon,Baruwa Town Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +???? 5bed Power Fully Detached Duplex + Bq × Swimming Pool,Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +Dry Land In Frontier Estate Bogije From Landway With A Title Cofo,"Bogije,lekki,inside Beechwood Estate Lekki Lagos",₦,"13,000,000",0,1,0, beds, baths, Toilets +Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exotic House @ Lekki. Fully Finished 3 Bedroom Terrace Duplex With Bq In A Serene Estate With Maximum Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Fully Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2 (negotiable),"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Luxuriously House With Fully Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxuriously House With Fully Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex In A Serene Estate,Orchid Road Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +1unit Of A Newly Built 4 Bedroom Terrace Duplex With Bq In A Serene Estate.,Lekki 1 By Petrocan Filling Station Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Fully Detached Apartment,Bogije Along Lekki/epe Express Way Lekki Lagos,₦,"21,000,000",0,1,1,3 beds, baths, Toilets +Newly Built Modern 4bedroom Terrace Duplex With Bq,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex For Sale In Ikota Lk054,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq For Sale In Chevron Lk70,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale In Chevron Yb036,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Penthouse Apartment For Sale In Lekki Lk031,Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Distressed Sale Newly Built Four Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,5 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex For Sale In Ikota Lk038,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Contemporary Fully Detached Five Bedroom Duplex At Ikate Lekki,Off Mercedes Benz Factory At Chisco Bustop At Third Round About Ikate Lekki Ut Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Super Newly Built Contemporary And Luxurious 4bedroom Terraced Duplex In A Super Secured And Gated Estate In Ikota Lekki,Gates Estate In Ikota Lekki Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Swimming Pool For Sale In Ikate Lk094,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House For Sale In Lekki Lk076,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron Lk058,Chevron Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land Measuring 340 Square Meters,Eletu Way Osapa London Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built 6 Bedroom Detached House For Sale In Lekki Phase1 Lk067,Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,6 beds,6 baths,7 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex At Ikota Gra, Lekki",Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,3 baths,3 Toilets +Serviced And Newly Built 4 Bedroom Terrace House With Bq,Conservation Road By Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached House With Bq,Muritala Eletu Way Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ensuite 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk032,Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ensuite 4 Bedroom Duplex For Sale In Osapa London Lk095,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Off Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ensuite 2 Bedroom Flat For Sale In Lekki Lk049,Lekki Lagos,₦,"25,500,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built Contemporary And Luxurious Five Bedroom Detached Duplex With Bq Sited On 360sqm Land In Osapa London Lekki,Inside A Great Mini Estate At Osapa London Lekki Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Full Detach For Sales,Agungi Agungi Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,5 Toilets +Amazing 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk050,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Built 4 Bedroom Semi Detached Duplex For Sale In Chevron Lk051,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale In Ikota Lk052,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Chevron Lk066,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale In Lekki Lk053,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House For Sale In Lekki Lk077,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale At Agungi Lk068,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Full Detach For Sales,Chevron Alternative Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Bq With Governor's Consent In Lekki,"Beuna Vista Estate By Chevron Toll Gate Lekki, By Orchid Hotel Road Lekki Ikota Lekki Lagos",₦,"77,000,000",1,1,1,5 beds, baths, Toilets +Fully Detached 5 Bedroom Duplex For Sale In Lekki Lk097,Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 5 Bedroom Fully Detached Duplex For Sale In Chevron Lk090,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ensuite 4 Bedroom Duplex For Sale In Lekki Lk088,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 6 Bedroom Duplex For Sale In Lekki Lk089,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +Elegant 5 Bedroom Fully Detached Duplex For Sale In Ikota Lk093,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex For Sale In Osapa London Lk065,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Finished 4 Bedroom Apartment For Sale In Lekki (wealthland Garden Lekki),"Oribanwa,lekki Peninsula Lagos Lekki Phase 1 Lekki Lagos",₦,"19,975,000",0,1,0,2 beds,3 baths,4 Toilets +Newly Built Contemporary Five Bedroom Semi Detached Duplex House,Off Freedom.way Ikate Lekki Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace House With One Room Service Quarter,"Off Orile Ilasa Iroko Awe Road, Elegushi Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Smart 5 Bedroom Fully Detached With A Bq And Swimming Pool,Off Kazeem Eletu Way Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bedroom Semi Detach Duplex With Bq For Sale In Lekki,Chevron Toll Gate Lekki Ikate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds, baths, Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Lekki.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built And Tastefully Finished 5 Bedroom Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Maintained Seven Bedroom Commercial Building With Two Rooms Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,5 baths,5 Toilets +This Is A Lovely 5bedroom With Bq Fully Detached Duplex For Sale In Osapa London Lekki Lag.,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Finished 3 Bedroom Terrace Duplex With Bq At Lekki Phase 2,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxuriously House With Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished House With 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With A Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Finished 2 Units Of 4 Bedroom Terrace Houses With A Room Boys Quarters At Osapa,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedroom Super Ultra Modern House,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Apartment On 450sqm For Sale,Lekki 1 Left Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished And Fitted 3 Bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +4000sqm Land For Sale On Lekki Epe Expressway,Lekki Express Way Jakande Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Fully Detached Duplex With One Rooms Boys Sited On About 400 Square Meters Of Land At Lekki,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Neatly Finished 4 Bedrooms Semi Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 3bed Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,1,3 beds,3 baths,4 Toilets +Beautifully Finished 4bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Corner Piece 1050sqm Land For Sale In Lekki Phase 1,Off Bisola Durosinmi Ettti Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bed Semi Detached Duplexe,2nd Toll Gate Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Neatly Finished 5bed Fully Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4bed Semi Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exotic Brand New 5 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached Duplex For Sale In Pinnock Estate Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace Property,"Bishopsgate Residences, Kusenla Road Ikate Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +"*distress Sale.... 3 Bedroom Terrace With A Room Bq , Lekki Phase 1.",Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex With A Boy's Quarters,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +2528sqm Land For Sale At Lekki Epe Express,Lekki Epe Express Way Jakande Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +1150sqmt Land @ Block 41,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Designed 4 Bedroom Apartment Available For Sale In A Premium Estate,Bella's Court Ikate Lekki Lagos,₦,"37,500,000",0,1,0,4 beds,4 baths,4 Toilets +Exotic 4 Bedroom Terraced Duplex (smart Home),Beside Ikota High School Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedrooms Fully Detached Duplex (smart Home),Daniel's Garden Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets +648 Square Meter Of Land,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Duplex With Additional 2 Bedrooms Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,6 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Additional 2 Bedrooms Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,0,6 beds,6 baths,6 Toilets +1280sqmt Of Land @ Elegushi Lekki,Elegushi Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Additional 2 Bedrooms Bq,Located Between Chevron And Vgc Ikota Lekki Lagos,₦,"45,000,000",0,1,0,6 beds,6 baths,6 Toilets +Impeccably Finished 4 Bedroom Semi Detached Duplex In A Serene Environment,"Abraham Adesanya, Before Lagos Business School Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,6 baths,6 Toilets +583sqmt With C Of O @ Block 42,Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"77,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms Terraced Triplex Available,Bella's Court Ikate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q,Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lone Block Of Well Finished 4 Units 3 Bedroom Luxury Apartments, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Luxury 4bedroom Terrace Duplex’s With 1room Bq,Estate Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +2110 Square Meter Of Land @ Elegushi,Elegushi Lekki Phase 1 Lekki Lagos,₦,"435,000,000",0,0,0, beds, baths, Toilets +Top Notch 4 Bedroom Semi Detached Duplex With Bq,Few Mins Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,6 beds,6 baths,6 Toilets +A Newly Built 5bedroom Duplex,Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,6 beds,6 baths,6 Toilets +4 Bedrooms Terrance Duplex With A Room Bq For Sale,Ikate Elegunshi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Excision In Process (file Number L Sd/exc/91/ibeju),Lekki Phase 1 Lekki Lagos,₦,"850,000",1,1,0, beds, baths, Toilets +Governor's Consent,"Lekki County ,lagos Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +Global C Of O,Lekki Phase 1 Admiralty Road Behind Devido Lekki Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,1,0,6 beds,7 baths,7 Toilets +3 Bedroom Terrace Duplex With Bq At Bella Homes 1,Toll Gate Axis Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex,Idado Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Governor’s Consent,Lapai Street Chevron Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Triplex, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale; Brand New 5 Bedroom Detached House With A Boy's Quarters In Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; Contemporary 3 Bedroom Townhouse In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,3 beds,3 baths,4 Toilets +Lekki House; Exotically Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets +Luxuriously Finished 4 Bedroom Fully Detached Duplex With Additional Bq A,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +12 Units 1 Bedroom Solar Powered Mini Flat (off Plan),Ologolo Lekki Lagos,₦,"16,000,000",1,1,0,1 beds,1 baths,1 Toilets +4 Bedroom Detached Duplex,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex,Creek Avenue Court Phase 2  Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built Two Wing Apartments In Commercial Side Of Abijo Gra, Lekki","Abijo Gra, Lekki Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Four Bedroom Duplex In A Serene And Luxurious Area,Chevron Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Brand New 5 Bedroom Detached Duplex With Bq In A Serene Estate Environment ! —— Location : Ikota, Lekki , Lagos State.",Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Triplex In A Beautiful And Serene Estate,"Ikota Villa, Behind Mega Chicken, Lekki Ikota Lekki Lagos",₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +Offplan 5bedroom Contemporary House With A Service Bq,Lekki Phase 2 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets +4bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +"For Sale; 4 Bedroom Fully Detached House In Pinnock Beach Estate, Osapa London",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Lovely 4bedroom Semi Detached Duplex For Sale In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Contemporary 5 Bedroom Detached House In Agungi,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Built 5 Bedroom Duplex,...... Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Finished 4 Bedroom Exquisitely Fully Detached Duplex With Additional Bq And Amazing Functional Facilities In A Beautiful Environment,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"20,000 Sqm Of Land Facing Lekki Epe Expressway (200,000 Per Sqm)",Lekki Ajah Expressway Ilasan Lekki Lagos,₦,"20,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace House,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Very Spacious 3 Bedroom Apartment With Bq In Ikate,Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Apartments,Ikate Lekki Lagos,₦,"88,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq In Ikota Lekki,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 1 & 2 Bedroom Apartments Sangotedo, Ajah",", Lekki Phase 2 Lekki Lagos",₦,"13,000,000",0,1,0,1 beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"59,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedroom Terrace With A Bq,Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex With A Bq,Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets +Beautiful 5bedroom Detached Duplex With 2rooms Bq For Sale,Kenneth Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 2 Bedroom Flat,Lekki Epe Expressway Before Shoprite Sangotedo Lagos Lekki Lagos,₦,"21,000,000",1,1,1,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex For Sale. Price: 65m,Beautiful Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Duplex With A Bq For Sale. .,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Vacant Plot Measuring 960sqms With A Readymade Architectural Drawing/plan For A Shopping Mall,"Road 14/adebayo Doherty, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"245,000,000",0,0,0, beds, baths, Toilets +"Fully Fitted With Turkish Kitchen Fiiting 4 Bedroom Terrace @ Bourdillon Court, Chevron",Bourdillon Court Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds, baths, Toilets +Luxury 5bedroom Detached Mansion With Swimming Pool And Cinema For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Ultra Luxury House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,6 Toilets +2 Bedroom Luxury Terrace Apartment,"Off Alpha Beach Road, Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +Luxury Newly Built 4 Bedroom Fully Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex Sitting On 507sq.m Of Land,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Fully Furnished And Fitted 5 Bedroom Detached House @ Carlton Gate Estate,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"46,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Builtifully Finished 5bed Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Bedroom Flat,"Chevron, Lekki Chevron Lekki Lagos",₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New 4 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace In Lekki 1, Freedom Way. Each Room Ensuite, 3 On 2nd Floor, Master On Top Floor. One Bq Ensuite Embedded At The Back. With Deed Of Sublease",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plots Of Land (20) For Sale.,Lekki Epe Expressway Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Lovely Brand New 4 Bedroom Terrace Duplex For Sale At Lekki Right,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With A Swimming Pool,Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Apartments,"Ikate, Lekki Ikate Lekki Lagos",₦,"42,000,000",0,1,0,2 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Apartments For Sale,"Ikate, Lekki Ikate Lekki Lagos",₦,"42,000,000",0,1,0,3 beds,4 baths,4 Toilets +Brand New Luxury 3 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House With Bq For Sale In Lekki Phase1 Yb044,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 2 Units Of 5 Bedroom Duplex For Sale In Lekki Yb018,Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevy View Yb011,Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached House For Sale In Osapa London Yb008,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex For Sale In Lekki Lk022,Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale In Lekki Lk025,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Spacious House For Sale In Lekki Yb019,Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Ensuite Flat With Swimming Pool For Sale In Lekki Yb008,Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lk005,Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Luxury Apartments At Oral Estate Ikota Lekki Lagos.,"Oral Estate Ikota, Lekki Ikota Lekki Lagos",₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets +2 Units Of 5 Bedroom Detached Duplex For Sale In Lekki Phase1 Yb053,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Brand New 4bedroom Duplex With A Bq At Orchid Road Lekki.,"Beuna Vista, Orchid Road, Lekki Lagos. Lekki Phase 1 Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat (carcass) At Lekki Paradise Iii Along Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"22,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly And Well Built 2 And 3 Bedroom Flats In An Apartment Building Located In A Serene Environment In Lekki.,Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Stylishly Built 4 Bedroom Duplex With Swimming Pool In Ikota Yb043,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale In Osapa London Lk027,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ensuite 5 Bedroom Fully Detached House For Sale In Lekki Phase 1 Yb050,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale In Osapa London Yb003,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale In Ikota Yb054,Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Full Smart Home Enabled Semi Detached And Fully Detached Duplexes With Boys' Quarters,Orchid Road By Chevron Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached House For Sale In Ilasan Lekki Yb033,Ilasan Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Extravagant 6 Bedroom Fully Detached House With 2 Bq For Sale In Lekki Yb043,Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate Lk026,Chevron Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex For Sale In Ikate Lekki Yb027,Ikate Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Elegantly Built 5 Bedroom Detached Duplex For Sale In Lekki Yb005,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Units Of 5 Bedroom Fully Detached Duplex For Sale In Chevron Lk008,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ensuite 4 Bedroom Terrace Duplex For Sale In Ikota Yb048,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ensuite 4 Bedroom Fully Detached Duplex For Sale In Lekki Lk023,Lekki Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Yb049,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Stylish Built 4 Bedroom Duplex For Sale In Lekki Yb036,Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale In Lekki Lk001,Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Orchid Road Lekki Yb029,Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq For Sale In Lekki Yb025,Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex With 2 Bq,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,6 beds,6 baths,7 Toilets +Elegant 6 Bedroom Fully Detached Duplex For Sale In Lekki Yb035,Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Apartment,Victory Park Estate Lekki Phase 1 Lekki Lagos,₦,"198,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki Yb017,Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Yb002,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex For Sale In Lekki Lk021,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With Cinema Room For Sale In Lekki Yb020,Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegantly Built 5 Bedroom Detached Duplex For Sale In Lekki Yb005,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale In Lekki Lk013,Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ensuite 5 Bedroom Fully Detached House For Sale In Ikota Lk020,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikate Yb027,Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 5 Bedroom Detached Duplex With Bq For Sale Yb008,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex (carcass) Located In A Serene Estate Behind Novare Mall (shoprite) Sangotedo,"Ablag Avenue, Off Cardinal Anthony Olubunmi Okogie Road, Behind Novare Mall, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex With Swimming Pool For Sale Yb021,Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevron Yb024,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Detached Duplex For Sale In Lekki Yb010,Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With Bq For Sale In Lekki Phase1 Lk014,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,4 Toilets +Ensuite 4 Bedroom Fully Detached Duplex For Sale In Lekki Lk009,Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale In Ikate Lekki Yb026,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Amazing 5 Bedroom Fully Detached Duplex With Bq For Sale In Vgc Lekki Yb033,Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Extravagant 5 Bedroom Luxury Massionette Duplex For Sale In Lekki Yb001,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Terrace Duplex With A Bq,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duple + Bq,Oba Amusa Estate Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +C Of O Land For Sale In Lekki Lagos,Ajah Lekki Lagos Chevron Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,After Chevron Toll Gate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Toll Gate,ikota Lekki,lagos Ikota Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +Land For Sale In Lekki Lagos,Off Orchid Hotel Road By Chevron 2nd Toll Gate Lafiaji Lekki Chevron Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Terrace Duplex For Sale In Lekki Chevron Lagos,After The 2 Toll Gate At Chevron Ikota Lekki Lagos Ikota Lekki Lagos,₦,"37,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex With Bq,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq For Sale In Lekki Lagos,Chevron Alternative Drive Lekki Lagos Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,5 baths,6 Toilets +Plots Of Land,Ikate Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,"Creek Avenue Court Phase 2 ,ikota Lekki Lagos Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Dli Court Lekki,"Eli Court,chevron Alternative Drive,lekki,lagos State Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrance Duplex With Bq,"Bella Homes 1,close To Chevron Toll Gate Axis,lekki Chevron Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +Luxury Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale In Lekki Lagos,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq In Lekki Phase 1,Elf Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex For Sale At Agungi Lekki Lagos.,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 5 Bedroom Fully Detached House For Sale In Lekki Vi004,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Family Friendly Ikate Lekki Terrace House 4bedroom Terraces + Detached Bqs For Sale,"Ikate Lagos, Lekki, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +Family Friendly Ikate Lekki Terrace House 4bedroom Terraces + Detached Bqs For Sale,"Ikate Lagos, Lekki, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Beautiful 4 Bedroom Semi Detached Duplex With A Room Boys Quarter,Chevron Lekki Chevron Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets +Governor Consent,"Within Richland Estate,bogije Along Lekki Epe Expressway. Lekki Phase 1 Lekki Lagos",₦,"21,000,000",0,1,1,3 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets +A Tastefully Finished 5 Bedroom Terrace Houses With One Room Bq In A Good Location,"1 Babs Animashaun Street Lekki Phase 1, Lekki Chevron Lekki Lagos",₦,"200,000,000",0,1,1,5 beds,5 baths,5 Toilets +Brand New 2 Bedroom Terrace Duplex In A Self Compound,Igbo Efun Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,3 baths, Toilets +Newly Built 4 Bedroom Semi Detached + Bq,Eletu Mudashiru Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +A Beautiful 5 Bedroom Fully Detached Duplex With A Rooms Boys Quarter,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bq .,Ikota Villa Ikota Lekki Lagos,$,"90,000",1,1,1,4 beds,4 baths,5 Toilets +5badroom Luxury Fully Detached + Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedroom Luxury Fully Detached Duplex With Swimming W,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex For Sale / Fully Ensuited Ensuited,Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,7 baths,7 Toilets +"Serviced, Newly Built 4 Bedroom Terrace Duplex",Off Road 2 Ikota Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale / Fully Ensuited,"2nd Toll Gate, Eleganza Vgc Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Terrace Duplex (exquisitely Furnished),Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 4bedroom Semi Detached Duplex, All Ensuited",Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built 4bedroom Semi Detached Duplex , All Ensuited",Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex, All Ensuited",Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex, All Ensuited",Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 5 Bedroom Detached Duplex All Ensuited,Ikota Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land For All,Lekki Phase 2 Lekki Lagos,₦,"650,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Lekki Phase 1 Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,7 baths,7 Toilets +"5bedroom Fully Furnished Executive Luxury Duplex With Swimming Pool, Bq For Sale",Chevron Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets +"5bedroom Fully Furnished Executive Luxury Duplex With Swimming Pool, Bq For Sale",Chevron Lekki Chevron Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Luxury Finished 4bedroom Semi Detached Duplex With Bq In Eli Court, Lekki","Chevron Alternative Drive, Lekki Chevron Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +4bedroom Fully Detached Duplex With Bq In Creek Avenue Court Phase2,After Chevron Tollgate Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached House,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +7 Bedroom Duplex For Sale,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,8 baths,8 Toilets +4 Bedrooms Terrace,"Otunba, Steve Ajose Close. Ilasan Lekki Lagos",₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +For Sale; 4 Bedroom Semi Detached Duplex With A Bq In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Lovely 4bedroom Terrace Duplex With Bq For Rent In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Lovely 5 Bedroom Duplex In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; 4 Bedroom Semi Detached Duplex With Ologolo,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Newly Built 5 Bedroom Fully Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; Newly Built & Fully Serviced 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Lovely 4bedroom Terrace Duplex With Bq For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Partly Furnished 4bedroom Terrace Duplex For Rent In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"72,000,000",1,1,1,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"27,000,000",0,1,0,2 beds,2 baths,2 Toilets +For Sale; Newly Built 5 Bedroom Fully Detached Duplex With A Bq In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A 4bedroom Semi Detached Duplex For Sale In Igbo Efon Lekki Lag.,Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq.,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +Beautifully Finished 3 Bedroom Terrace Duplex With Bq,"Located At Orchid Road Axis, 2nd Toll Gate Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 3 Bedroom Terrace Duplex With Bq And 100% Functioning Facilities,"Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Pinnock Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Mixed Used Land,Lekki Ologolo Lekki Lagos,₦,"100,000,000",0,0,0, beds,3 baths, Toilets +Newly Built 5bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +"New 4 Room Detarched Duplex All Rooms Ensuit,fully Furnished With Fitted Kitchen. Brand New 20kva Mikano Generator, 3 Units Of 65 Inches Samsung Tvs, 6 Units Of Two Horse Power Air Conditionalr,1 Fridge With A Freezer, Dstv, Cctv, Electric Automated Gates",. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,6 beds,6 baths,6 Toilets +"Newly Built Office Complex On 600qms In An Office Environment, Consist Of Two Floors And Each Floor Size Is 250qms.",. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0, beds,6 baths,6 Toilets +Newly Built,Osapa London Lekki Lagos,₦,"300,000,000",0,1,1,5 beds,6 baths, Toilets +Newly Built 5 Bedrooms Detached Duplex With Bq,By Second Toll Gate Lekki Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful 3 Bedroom Apartment Available For Sale And Rent,Primewater Gardens Ikate Ikate Lekki Lagos,₦,"42,000,000",1,0,0,3 beds,3 baths,3 Toilets +* Four Bedroom Detached. Duplex In A Serene Apartment With A Fitted Kitchen,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Executive 5bedroom Duplex With 2 Sitting Room At Lekki Ph2 In A Very Good Environment For Sale.,Lekki Ph2 By 2nd Toll Gate Lagos. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lone Block Of Well Finished 4 Units 3 Bedroom Luxury Apartments With Generous Internal And External Spaces,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Brand New Office Complex With Approximately 1400 Sqm Lettable Space On 5 Floors,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Duplex,Osaka London Osapa London Lekki Lagos,₦,"195,000,000",0,1,0,5 beds,5 baths,5 Toilets +"A Bareland On Measuring 10,756 Square Metres With Approval To Reclaim 2000 Sqm At A Unique Selling Point",Maroko Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With A Room Boys Quarter,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Parcel Of Developable Land, Rectangular In Shape, Level And Well Drained. Measuring 3,428.00 Sq.",Victoria Garden City Vgc Lekki Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Abraham Adesanya Lekki Lagos,₦,"15,000,000",0,0,0,3 beds,3 baths,4 Toilets +For Sale; Lovely 4 Bedroom Semi Detached Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Beautiful 5 Bedroom House With A Room Bq In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,6 Toilets +"For Sale; Land Measeuring 1000sqm On Admiralty Road, Lekki Phase 1",Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +For Sale; Lovely 3 Bedroom Detached Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale; 4 Bedroom Terrace Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +"For Sale Br Anda New 5 Bedrooms With 1bq Fully Detached Duplex Located At Lekki, Lagos",Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Well Finished 4 Bedroom Semi Detached Duplex With Maids Room For Sale At Lekki Right.,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets +Newly Built Ultra Modern 5 Bedroom Detached Duplex For Sale At Pinnock Estate Osapa Lekki Lagos.,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Beautiful, Luxurious And Neatly Finished 4bed Dup With Bq",Lekki County Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets +A Well Finished 4 Bedroom Semi Detached Duplex With Maids Room For Sale At Lekki Right.,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths, Toilets +New 5 Bedrooms With 1 Room Bq Fully Detached Duplex,Lekki Lagos,₦,"12,000,000",0,1,0,5 beds,5 baths,5 Toilets +Neatly Finished And Luxury 4bed Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace Duplex With Swimming Pool,gym And 18hrs Power Supply For Sale.",Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +1 Acre Of Land, Jakande Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets +4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths, Toilets +Luxurious & Spacious Bedroom Detached Duplex With Excellent Finishing,Lakeview Park 2 Estate Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedrooms Terrace House,"Nicon Town Area, Sharing Fence With Updc Romay Garden Ikate Lekki Lagos",₦,"95,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4units Of 5bedroom Fully Detached Duplex With 1bq Each,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Swimming Pool And Cinema For Sale,Pinnock Beach Estates Lekki Phase 2 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Highly Contemporary 5 Bedroom Duplex Apartment At Estate, Chevron Drive, Lekki, Lagos.",Estates Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Enclave Ikate(3rd Round About) Lekki Phase 1 Lagos Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths, Toilets +A Land In An Arcade Surroundings And Exceptional Estate Living With The Title: Governor’s Consent. Initial Deposit Of N5m Can Be Made And Pay Balance Installmentaly.,Abraham Adesanya Ologolo Lekki Lagos,₦,"33,000,000",0,1,0, beds, baths, Toilets +"Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Interlock Estate Compound . You Can Pay N10m And Park In , Then You Pay The Balance In Installment On The Special Promotion.","After The Second Toll Gate,chevron Alternative,ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex,....... Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki. Pay And Pack In.,"Location: Osapa London, Lekki, Lagos. Before Agungi, Before Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"56,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Destiny Gardens,lagos Nigeria",Lekki Phase 1 Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Lekki,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets +Exotically En Suite 4 Bedroom Terrace Duplex With Industrial Borehole And Interlocked Road From Expressway. Payment Can Be Made In Installment With Initial Deposit Of N7m,"After Second Toll Gate,ikota Lekki Lagos",₦,"37,000,000",0,1,1,4 beds,5 baths,5 Toilets +Spacious 8 Rooms Duplex For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,9 baths,8 Toilets +6 Bedroom Duplex With 2units Of 3 Bedroom Flats Attached For Sale At Ajah,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,6 beds,7 baths,7 Toilets +"Exquisite Finished 4 Bedroom Fully Detached Duplex With Modern Facilities,fully Interlock Compound And Family Centered In Daniel Garden Estate.pay And Park In","Before Agungi,before Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Top Notch Luxury 4 Bedroom Terrace Duplex With Tarred And Interlocked Road From Expressway, Pay N7m As Intial Deposit To Subscribe For It And Pay The Balance Installmentally At Your Convenient Time.",Creek Avenue Court Phase 2 Ikota Lekki Lagos,₦,"37,500,000",0,1,1,4 beds,6 baths,6 Toilets +A Newly Built Luxurious Finished 4 Bedroom Fully Detached Duplex With Bq In Eli's Court Lekki,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets +A Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"Phase 2 Creek Avenue Court,after Chevron Toll Gate, Ikota Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +"Exquisite Furnished 4 Bedroom Fully Detached Duplex With Additional 2 Bqs, En Suite With Interlock Compound,pay N10m Initial Deposit And Movein While You Spread The Payment For The Balance.","Amity Estate, Sangotedo Lekki Lagos",₦,"51,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Luxury Finished 5 Bedroom Fully Detached Duplex With Bq, Big Sitting Room And Spacious Rooms/master Room, You Can Spread The Payment In Convenient Time","Eli Court, After Second Toll Gate, Chevron Alternative Chevron Lekki Lagos",₦,"83,000,000",0,1,1,5 beds,7 baths,7 Toilets +En Suite Furnished 4 Bedroom Fully Detached Duplex With Bq In A Serene Environment,"Eli Court,after Second Toll Gate,chevron Alternative Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets +En Suite Furnished 4 Bedroom Fully Detached Duplex With Bq In Eli Court With No Hidden Charges,"Newly 4 Bedroom Fully Detached Duplex With Bq At Eli Court,chevron Alternative Chevron Lekki Lagos",₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex,Estate Behind Shoprite Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,Creek Avenue Court Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq At Bella Home,Bella Homes Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex In Creek Avenue,Creek Avenue Court Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached With Bq In Creek Avenue Court,Creek Avenue Court Ikota Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Luxury Condo Apartment,Chevy View Chevron Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Condo Apartment,Chevy View Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Duplex Abraham Adesanya Lekki Garden,Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,1,3 beds,3 baths,3 Toilets +This Is A Lovely 4bedroom Detached Duplex For Sale In Lekki Lag,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Lovely 5bedroom With Bq Fully Detached Duplex For Sale In Ikate Elegushi Lekki Lag.,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A Lovely 4bedroom With Bq Terrace For Sale In Ikate Elegushi Lekki Lag.,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +This Is A Lovely 4bedroom Fully Detached Duplex With Bq And Reading Room For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Detached Duplex With Swimming Pool Location: Megamound Housing Estates Lekki County Home,lekki",Megamound Housing Estates Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Exquisite 4 Bedroom Semi Detached Duplexe/with Bq,Between Vgc And Chevron Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly 4 Bedroom Semi Detached Duplex,After Chevron Toll Gate Ikota Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,6 baths,6 Toilets +Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Finished 2 Units Of 5bedroom Detached House,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Triplexes,... Ikate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Blocks Of 3 Bedroom Flat With 1 Nos Boys Quarter,... Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Daniel Garden Lekki Pay And Park In,"Before Agungi, Before Igbo Efun Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",1,1,1,4 beds,6 baths,6 Toilets +Lovely 4bedroom Terrace Duplex,.. Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Distressed Sale 1000sqm In Pinnock Beach Estate For 155m Net,Pinnock Beach Osapa London Lekki Lagos,₦,"155,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House With 1 Nos Boys Quarters (bq),... Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Blocks Of 3 Bedroom Flat,... Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedrrom Fully Detached Duplex With Bq In Lekki Pay And Park In,Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +Block Of 3 Bedroom Flat With 1 Nos Boys Quarter (bq),... Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +Neatly Finished 5bedrooms Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,1 Toilets +Newly Built 4bed Semi Detached Duplexe,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Modern Architecturally Design 4bed Duplex With Bq,Chevron Link Agungi Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Brand New Executive 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Renovated 4 Bedroom Fully Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Semi Detached Duplex For Sale In Ikate Elegushi Lekki Lagos.,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Coner Piece Land Within A Gated Estate For Sale,Ologolo Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Newly Buit 3bedroom Terrace Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,1,3 beds,3 baths,4 Toilets +Brand New Exotic 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive Brand New 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex For Rent In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massively Built 4bed Detached Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New Luxury Four(4) Bedroom Semi Detached Duplex,"A Well Secured Estate, Off Orchid Hotel Road. Lekki. Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +Brand New Serviced 3 Bedroom Flat,Osapa London Lekki Lagos,₦,"43,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury Brand New 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New, Exquisite And Superbly Finished 5 Bedroom Fully Detached House For Sale In Lekki Phase 1 Lagos.",Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Well Design, Finished And Bold 5bed Duplex",Agungi Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 3bed Terrace Duplexe,2nd Toll Gate Chevron Lekki Lagos,₦,"36,500,000",0,1,0,3 beds,3 baths,4 Toilets +Newly 4bed Terrace Duplex,County Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Neatly Finished 4 Bed Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Solidly Built, Executive 8 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.",Lekki Phase 1 Lekki Lagos,₦,"480,000,000",0,0,0,8 beds,8 baths,9 Toilets +Spacious 4bed Semi Detached Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths, Toilets +Neatly Finished 4 Bedrooms Semi Detached Duplex,Idado Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale In Canal West Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Neatly Finished Luxurious Massionette 4bed Duplex,Agungi Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fairly New 5 Bedroom Fully Detached Duplex For Sale In Nicon Town,Nicon Town Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Mini Flat For Sale In Osapa,Osapa London Lekki Lagos,₦,"21,000,000",0,1,0,1 beds,1 baths,2 Toilets +Brand New Exotic Four(4) Bedroom Detached Duplex With Bq,"Off Orchid Hotel Road, Eleganza Bus Stop, Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +A Parcel Of Land Measuring 1000sqm,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms Semi Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Units Of 4 Bedroom Terrace Duplex Located In Ikota Estate,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxury Finished 4 Bedroom Fully Detached Duplex In Lekki, Pay And Park In",Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets +Powerful And Tastefully Finished 4 Bedroom Detached Duplex With Bq In Oral Estate,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex With Bq, Pay And Park In","Before Agungi,igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Newly Built 4 Bedroom Detached Duplex In Lekki, Pay And Park In",Jakande Bustop Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplexes,Between Chevron And Vgc Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplexes,Between Chevron And Vgc Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,6 baths,6 Toilets +3 Bedroom Fully Detached,Richland Estate Lekki Expressway Lekki Phase 2 Lekki Lagos,₦,"21,000,000",1,1,1,3 beds,3 baths,3 Toilets +"Bareland Of 10,756m² With Approval To Reclaim 2000m²",Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +This Is A 648 Square Metre Of Land For Sale In Ilasan Lekki Lag,Ilasan Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +A Newly Built 4bedroom Duplex In A Very Good And Clean Neighborhood At Oral Estate,..... Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Fully Detached 5bedrooms Fitted Kitchen, Modern Carport Washing Area",...... Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Is A 607.10square Metre Land For Sale In Ilasan Lekki Lag.,Ilasan Lekki Lagos,₦,"51,000,000",0,0,0, beds, baths, Toilets +Three Bedroom Flat,By Nike Art Gallery Ikate Lekki Ikate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury Furnished 4 Bedroom Semi Detached Duplex With Bq,"Chevron Alternative Drive,lekki,lagos Chevron Lekki Lagos",₦,"58,000,000",0,0,1,4 beds,6 baths,6 Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semidetached Duplex,Creek Avenue Court Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built Five Bedroom Detached With Bq,Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,6 baths,6 Toilets +Neatly Finished 5bedroom Fully Detached Duplex With Swimming Pool For Sale!,........ Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House For Sale,Ikota Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Detached House For Sale,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex House For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +5 Bedroom Detached House For Sale At Lekki Phase1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Detached Duplex Home For Sale,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Bedroom Detached Duplex House For Sale In Lagos,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex House For Sale,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"53,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex House For Sale,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"10 Available Units Left Of Exquisite Well Finished 4 Bedroom Semi Detached Duplexes With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Neatly Finished & Spacious 5 Bedroom Fully Detached Duplex With Bq For Sale At Chevy View Estate, Chevron Lekki, Lagos",Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Just 6 Units Left Of Newly Built Smart Home 4 Bedroom Semi Detached Duplexes With A Bq Each At The Fully Serviced Buena Vista Estate By Chevron Toll Gate, Chevron – Lekki, Lagos",Chevron Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +"12 Available Units Left Of Exquisite Well Finished 5 Bedroom Fully Detached Duplexes With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +"An Elegantly Built 5 Bedroom Detached Duplex For Sale In Osapa London, Lekki – Lagos",Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds, baths, Toilets +"Just 4 Units Left Of Newly Built Smart Home 5 Bedroom Fully Detached Duplexes With A Bq Each At The Fully Serviced Buena Vista Estate By Chevron Toll Gate, Chevron – Lekki, Lagos",Chevron Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +"4 Available Units Left Of Exquisite Well Finished 5 Bedroom Jumbo Mansions With Bq For Sale In Osapa London – Lekki, Lagos",Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Massive Brand New And Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool And A Room Bq Available For Sale At Lekki County Homes, Ikota – Lekki, Lagos",Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Available Units Left Of Luxury 4 Bedroom Terrace Duplexes With A Room Bq Each,"Perimeter Court 1 Close To Madiba Enclave, Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Block Of 6flats,Lekki County Homes Ikota Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Newly Built Luxury 5bedroom Detached Duplex With 2bqs For Sale With Swimming Pool, Gym, Cinema",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Newly 5bedroom Fully Detached Duplex With 1bq,Orchid Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Star Luxury Functional Waterfront Hotel With Asian Furnishing And Over 170 Rooms Situated Between Lekki And Victoria Island Area Of Lagos,Lekki Lagos,$,"250,000,000",0,0,0, beds, baths, Toilets +Brand New 5bedroom Fully Detached Duplex With A Bqat Megamound Estate Ikota,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex With A Bq At Megamound Estate Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +This Magnificent Brand New 2bedroom Flat Serviced Apartments At Lekki Country Homes Is Up For Sale,Lekki Country Homes Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +"4 Bedroom Townhouse Apartment Available For Sale In Lekki, Lagos",Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Structure On A 1200sqm Of Land,Ikate Lekki Lagos,₦,"280,000,000",1,0,0,10 beds,10 baths,10 Toilets +A Corner Piece Block Of Flats Consisting Of 6 Units Of 3 Bedroom Apartments,Ikate Lekki Lagos,₦,"280,000,000",1,0,0,10 beds,10 baths,10 Toilets +This Well Finished 5bedroom Fully Detached Duplex Is Up For Sale At Megamonud Ikota Estate,"Lekki Country Homes, Megamonud Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex For Sale In Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +4 Bedroom Semi Detached [email protected],Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets +Stylishly Built 4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxurious [email protected],Agungi Lekki Lagos,₦,"38,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semidetached Duplex @ikota Villa Estate,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 4 Bedroom Duplex In A Serene Environment In Lekki,Oral Estate Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached [email protected],Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +C Of O In View,Abijo Agungi Lekki Lagos,₦,"10,500,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex,David's Ikota Lekki Lagos,₦,"46,000,000",1,1,1,4 beds,4 baths,6 Toilets +Newly Built 5 Bedroom Duplex In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex @ikota Villa Estate,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2bedroom Duplex And 3bedroom Flat,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Hous,.. Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Built Houses For Sale,"Bogige, Along Lekki Express Way Lekki Lagos",₦,"20,000,000",0,1,0,3 beds,3 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Fully Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury Fully Detached Duplex With Bq,Lekki Second Toll Gate Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautiful And Tastefully Finished 4 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale!!!,Ikate Lekki Ikate Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,5 baths,6 Toilets +Newly Built 3bedroom Luxury Apartments + Bqs,"34, Ikate Lekki Ikate Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,4 baths,5 Toilets +3 Bedroom Flat,"Oribanwa Lekki Peninsule ,lagos Lekki Phase 1 Lekki Lagos",₦,"11,950,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terraces For Sale,Petrocam Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +"A Splendid 5 Bedroom, Water View, Fully Detached Duplex With B.q",Ikota Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Fully Detached Bungalow,Bogije Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,2 baths,2 Toilets +Newly Built 12 Unit Of 2 Bedroom Apartment,"Adjacent Meadow Hall School,ikate Elegushi.lagos Ikate Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets +Newly Built 12 Unit Of 2 Bedroom Apartment With Bq,"Adjacent Meadow Hall School,ikate. Elegushi Ikate Lekki Lagos",₦,"38,000,000",0,1,1,2 beds,3 baths,3 Toilets +Newly Built 12 Unit Of 2 Bedroom Apartment With Bq,"Beside Richmond Estate,off Nike Art Galley,ikate.lagos Ikate Lekki Lagos",₦,"38,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Plots Of Land For Sale,Ilasan Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,New Road Adjacent Osapa London Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Nice Looking A 4 Bedroom Duplex With Bq At Ikate Price : 80m,Ikate Lagos Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex.,Behind Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,"Van Daniel Str.,off Orchid Hotel Road,2 Tollgate Lekki Phase 1 Lekki Lagos",₦,"70,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Jumbos Duplex,Chevy Views Estates Chevron Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 6 Bedroom Palatial Mansion & 2 Rooms Bq.,"Ayinde Akinmade Str.,off Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",1,1,1,6 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Story Buildings Designed For Office.,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,9 beds,8 baths,8 Toilets +Lovely Built 2 Bedroom Flats,Vgc J2. Vgc Lekki Lagos,₦,"32,000,000",1,1,1,2 beds,3 baths,3 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Jumbo Duplex With Bq,Chevy Views Estates Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,5 baths,5 Toilets +Executive 4 Bedroom Terrace Duplex,"Chevron, Lekki.lagos. Chevron Lekki Lagos",₦,"36,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,"Elegushi, Lekki Phase 1 Lekki Lagos",₦,"46,000,000",1,1,1,4 beds,5 baths,5 Toilets +Plots Of Land,Lekki Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,.. Ikota Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Buy A Land In Urban Prime One Estate, Lekki",Abraham Adesanya Lekki Lagos,₦,"30,000,000",0,1,0, beds, baths, Toilets +"Hot Selling: Fully Furnished 4 Bedroom Bungalow For Sale Owner Is Relocating To Canada With The Family On Permanent Visa. Title: Gazette And Survey Plan Facilities: Tv's, 7 Split Ac, 15/6.5 Kva Mikano Generator, Executive Italian Leather Furniture, Dinn",Lekki Lagos,₦,"40,000,000",1,0,1, beds, baths, Toilets +This Magnificent 7bedroom Fully Detached Duplex With A Pool At Lekki One Is Up For Sale,Lekki One Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,7 beds,7 baths,8 Toilets +"Office Complex For Sale! Selling A Brand New Office Complex With Approximately 1400 Square Meters Lettable Space On 5 Floors, The Ground Floor Has A Covered Parking For 20 Cars, 8 Meters Set Back That Can Be Used For Parking, Over 11 Meters In Front, Pen",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",1,1,1, beds, baths, Toilets +Modern State Of Art 5 Bedroom Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In Eli Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +This Magnificent Fully Detached Duplex With A Bq At Chevy View Estate Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent 2bedroom Flat Is Up For Sale At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Duplex In Eli Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +This Magnificent 5bedroom Fully Detached Duplex With A Bq And A Pool At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fairly New 5 Bedroom Fully Detached Duplex For Sale In Osapa London,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Camberwall Courts, Abijo",Abijo Lekki Lagos,₦,"6,500,000",1,1,0, beds, baths, Toilets +"Lekki Pearl Garden Abijo, Lekki",Behind Amity Estate And 1 Minute Drive From Lekki Epe Expressway Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +This Magnificent 4bed Terrace Duplex Is Up For Sale At Chevy View Estate,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"For Sales : Newly Built And Tastefully Finished 4 Nos 3 Bedroom Flat With 1 Room Bq Each. *location* : At Ologolo, Igbo Efon, Lekki. *title* : Governor's Consent *price* : N28m Rent Value Is 1.5m To 1.6 M For One Yr",Ologolo Igbo Efon Lekki Lagos,₦,"28,000,000",0,0,1, beds, baths, Toilets +A Well Finished Detached Duplex,Ologolo Lekki Lagos,₦,"45,000,000",0,1,0, beds, baths, Toilets +This Magnificent Mini Flat At Chevy View Estate Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,2 Toilets +"3 Bedroom Terrace For Sale At Lkota, Lagos Island",Ikota Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 4bedroom Terrace With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace In A Serene Environment,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Through Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,2nd Toll Gate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Well Designed And Finished 5 Bedroom Detached House (triplex: I.e., Ground Floor, 1st Floor, And 2nd Floor) Within A Well Maintained And Fully Serviced Exclusive Residential Court",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex With Fantastic Finishing,In A Well Secured Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built 4bedroom Terrace Duplex On 3floors With Spacious Rooms, Compound Etc",In A Well Secured Estate Ikota Lekki Lagos,₦,"39,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Tastefully Finished 4bedroom Terrace Duplex With A Well Equipped Kitchen, Video Door Bell",After Second Toll Gate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built 4bedroom Semi Detached With Bq, Fantastic Finishing",In A Well Secured Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale Fully Detached Duplex Beautifully Built 4/5bedroom Detached Duplex With B.q Is Available,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 5bedroom Fully Detached Duplex With Bq, Spacious Rooms, Fitted Kitchen",In A Well Secured Estate Ikota Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 5bedroom Fully Detached Detached With Along Drive Way, Bq Etc",Orchid Road Lekki Phase 2 Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 5bedroom Fully Detached Duplex With Bq, Large Compound, Jacuzzi, Double Sitting",Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Affordable Lands For Sale Before Eleko Beach Lekki,Before Eleko Beach In Lekki Lekki Lagos,₦,"2,000,000",1,1,0, beds, baths, Toilets +Luxury 4bedroom Detached Duplex With Swimming Pool And Studio Cinema For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex In A Well Secured Estate,In A Well Secured Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Newly Built 4bedroom Semi Detached Duplex With Bq , Cctv, Jacuzzi, In Well Secured Estate",Osapa London Estate Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive 5bedroom Fully Detached Duplex,Lekky County Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Uxury 4bedroom Detached Duplex With 1bq. For Sale Location: In A Gated Close,Gated Close Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4bedroom Semi Detached Duplex With Bq, Spacious Rooms",In Well Secured Estate Ikota Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Boys Quarter And A Family Lounge,In A Well Secured Estate Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Executive 5bedroom Fully Detached Duplex With Bq, In House Speaker, Jacuzzi Etc",In A Well Secured Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Ikota Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets +"5bedroom Fully Detached Duplex With Bq, S/pool,spacious Rooms,jacuzzi,",Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Luxurious 5bedroom Fully Detached Duplex In A Mini Court With Bq, Cctv, Jacuzzi Etc",In Well Secured Estate By Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Lekky County Estate Lekki Phase 2 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached House With A Maid Room,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Remarkable Detached 5 Bedroom Flat,Oral Estate Opposite Chevron Nigeria Hq Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,0 Toilets +Newly Built 5 Bedroom Duplex,.. Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Duplex At Osapa London,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Modern 4 Bedroom Plus A Rm Bq In A Mini Court,... Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached House,Comfort Mba Street Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Fully Detached Bungalow,... Lekki Lagos,₦,"15,000,000",0,1,0,3 beds,3 baths,3 Toilets +A Multipurpose Building,... Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,1 Toilets +A 4 Bedroom Fully Detached House With 2rooms Boys Quarters,Vgc Ikota Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,4 baths,4 Toilets +"A Storey Building Designed For Office, School, Hotel Or Factory Space 600sqm Two Floors Located Off Freedom Way, Lekki Phase1 Six Car Park Space Deed Of Assignment Good Neighbourhood Within A Gated Estate Price 120mil",Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built Four Bedroom Duplex In Daniel's Garden Lekki.,Along Igbo Efon Before Chevron Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets +Newly Built Four Bedroom Semi Detached Duplex In Daniel's Garden Lekki.,"Before Agungi, Igbo Efon Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"56,000,000",0,1,1, beds, baths, Toilets +Newly Built 4 Bedroom Apartment In Ikate Lekki.,Ikate Lekki Lagos,₦,"37,500,000",0,1,1,4 beds, baths, Toilets +3 Bedroom Terrace Duplex With Bq,"Orchid Road Axis, 2nd Toll Gate, Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +Luxury Finished Four Bedroom Semi Detached Duplex With Bq.,"Alternative Drive, Chevron Lekki Lagos",₦,"59,000,000",0,1,0,4 beds,6 baths,6 Toilets +Four Bedroom Terrace House With A Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq,"Alternative Drive, Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq,After Chevron Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,"Before Agungi, Before Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Two Bedroom Flat,.. Chevron Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Fully Detached Duplex + Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Land,"2plots Side By Side At Bera Estate Chevron Drive 60m Each Governors Consent,semi Detached Duplex At Vgc 100m C/o Gc Chevron Lekki Lagos",₦,"60,000,000",0,1,0,0 beds,0 baths,0 Toilets +675 Sqm Bare Land,Road 12 Vgc Lekki Lagos,₦,"85,000,000",0,1,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex,Creek Court Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached House With 1 Bedroom Boys’quarter,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets +Luxuriously Designed Newly Built 4 Bedroom Terraces,... Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"49,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex With Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Southern View Estate By Second Toll Gate Chevron Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With A Bq,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Luxury 5bedroom Detached Duplex With 2bq For Sale,Lovely Environment Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Invest Land For Sale In Bogije Lekki,Bogije Lekki Agungi Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets +"Waterfront Newly Built Luxury 5bedroom Detached Duplex With2bq For Sale With Swimming Pool,gym,cinema Studio",Secure Environment Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 4 Bedroom Fully Detached Duplex At Daniel Garden, Lekki",Daniel Garden Osapa London Lekki Lagos Agungi Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,6 baths,6 Toilets +Plots Of Land's At Lexington Estate Sangotedo Lekki,Lexington Estate Sangotedo Lekki Lekki Lagos,₦,"19,000,000",0,1,0, beds, baths, Toilets +Luxury Newly Built 4 Bedroom Semi Detached Duplex With One Bq,Bridgegate Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5bedroom Detached Duplex With Swimming Pool For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With 1bq For Sale.,Bridgegate Estates Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 4bedroom Detached Duplex With Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"4,000,000",0,1,0,4 beds,4 baths,5 Toilets +Hot Sale: Brand New 3 Bedroom Duplex With Bq For N40m,Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,6 Toilets +This Magnificent 4bedroom Semi Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern State Of Art 5 Bedroom Detached House For Rent In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplexes,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Renovated 3 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +This Magnificent 5bedroom Fully Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Magnificent 4bedroom Fully Detached Duplex With A Bq At Chevy View Is Up For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 4bedroom Terrace Duplex For Sale At Lekki Phase 1,Lekki Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +Jv Next To Nicon Town Estate Location: Spar Rd Opposite Nicon Town Estate Lekki Value: N500m Size: 3399 Sqm Title: C Of O Proposal:open Brokers Fee:n50m,Spar Road Nicon Town Lekki Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House For Sale In Chevy View Estate,Hauwa Abikan Street Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale,Abiola Agboyin Oral Estate Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Apartment For Sale With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Duplex For Sale In A Serviced Estate At Lekki,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bed Ensuite Semidetached Duplex,Ikota Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale At Lekki County,Lekki County Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Two Detached Duplexes At 55% Completion,Ibeju Lekki Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Detached Duplex With A Bq In A Very Serene Environment.,Lekki Ikate. Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex With Bq,Ocean Bay Estate Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,8 baths,8 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Fully Detached + Bq,Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,"Conservation Center, Chevron Chevron Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With B/q,After 2nd Toll Gate Ikota Lekki Lagos,₦,"57,000,000",0,1,1,4 beds, baths,5 Toilets +4 Bed Room Duplex,At Lekki Ajah Addo Road Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +734sqm Of Fenced Land,Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Serviced Apartment For Sale,Ilasan Lekki Lagos,₦,"32,000,000",1,1,1,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Duplex + External Bq,Lekky County Homes Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,6 beds,6 baths,7 Toilets +Property Convertible To Office Or Hotel Or Factory,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +For Sale 3 Bedroom Terrace Location : Orchid. Lagos,Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,... Osapa London Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 3 Bedrooms Flat For Sale,... Osapa London Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 4bdrm Semi Detached At Chevy View N65m. Fully Detached N85m,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House In A Serene Environment,Conservation Court Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With One Room Service Quarter In A Serene Neighbourhood,Ikota Gra Ikota Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terraces At Atlantic View Estate Lekki Lagos Prices Ranges N35m And 49m,Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +4bedrooms Terraces At Atlantic View Estate Lekki Lagos Prices Ranges N35m And 49m,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace In A Serene And Secured Neighbourhood,Ikota Gra Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With One Room Service Quarter In A Serene Neighbourhood,Conservation Court Estate Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki(claridge Estate Phase 1),Bogije Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets +Residential Land For Sale,Abraham Adesanya Vgc Lekki Lagos,₦,"47,000,000",1,1,0,0 beds,0 baths,0 Toilets +Residential Land For Sale In Lekki Lagos (gracias Atlantic View),Off Monastery Road Sangotedo Lagos Vgc Lekki Lagos,₦,"8,000,000",1,1,0, beds, baths, Toilets +Residential Land For Sale,Bogije Vgc Lekki Lagos,₦,"15,000,000",1,1,0,0 beds,0 baths,0 Toilets +Affordable Land For Sale In Lekki (eminence Court),Sapati By Bogije Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"6,000,000",1,1,0, beds, baths, Toilets +Land For Sale In Lekki (claridge Estate),Behind Shoprite Off Monastery Road Sangotedo Lagos Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets +Half Plot Of Land On 800sqm,Carlton Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Lekki (the Claridge Estate ),Behind Shoprite Off Monastery Road Sangotedo Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets +Land For Sale In Lekki (gracias Court),Behind The Biggest Mall (shoprite) Off Monastery Road Sangotedo Lagos Lekki Lagos,₦,"10,000,000",1,1,0, beds, baths, Toilets +4 Bed Room Semi Detached Duplex For Sale In Osapa London Lekki,Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets +Beach Resort,Nicon Town Lekki Lagos,₦,"66,000",0,1,0, beds, baths, Toilets +Land For Sale In Ibeju Lekki (divine Grace Luxury Home),Okon Ojeh Village By Atlanta Ibeju Lekki Lekki Lagos,₦,"6,750,000",1,0,0, beds, baths, Toilets +Land For Sale In Lekki Lagos (vantage Court),Bogije Along Lekki Epe Express Way Lekki Lagos,₦,"14,500,000",1,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex In A Seren Evinroment For Sell,"Inside Madiba Estate, Ikate Phase1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"59,000,000",0,1,1,5 beds,5 baths,5 Toilets +Land For Sale In Lekki (eminece Court),Sapati By Bogije Lekki Lagos,₦,"5,200,000",1,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,1,5 beds,5 baths,5 Toilets +Land For Sale In Lekki (frontier Estate),Bogije Lekki Phase 2 Lekki Lagos,₦,"13,000,000",1,1,0, beds, baths, Toilets +Land For Sale In Abijo Lekki Lagos,Abijo Lekki Lekki Lagos,₦,"11,500,000",1,1,0, beds, baths, Toilets +Affordable Land For Sale Abidjo Lagos (gracias Emerald Estate Abidjo),Abidjo Lekki Phase 2 Lekki Lagos,₦,"2,500,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedrooms Duplex And 4 Bedrooms Semi Detached Duplex For Sale In A Mini Gated Estate At Idado N65 Million And N50 Million Respectively.,Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Detached Duplex For Sale In Carlton Gate Estate Chevron Road Lekki Lagos,Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets +5bedroom Fully Detached With A Room Bq For Sale At Lekki,2nd Toll Gate Lekki Lekki Phase 1 Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,5 baths,5 Toilets +2plot 1321sqm For Sale At Osapa London With Ojomu Deed 180m,Osapa London Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached House With 2room Bq On 899sqm Land At Goshen Estate Lekki Phase 1 #100m,Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bedrooma Detached Duplex With 2rooms Bq Do Sale,Carlton Gate Estate By Chevron Road Lekki Lagos Chevron Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Bare Land With Consent In A Built Up Area Of Ikota Gra,Lantana Avenueikota Gra Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +"Roxbury Leisure Homes Phase Ii, Ikota, Lekki",Along Lekki Epe Express Way Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Sapata Road Vgc Lekki Lagos,₦,"38,900,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Luxurious 5 Bedrooms Fully Detached Duplex,"Megamond Estate, Lekki County Home, Ikota Villa Lekki Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,.. Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House For Sale In Lekki,Lekki Lagos,₦,"90,000,000",0,1,0,6 beds,6 baths,6 Toilets +Very Cheap Vacant Land For Sale,Monastery Road Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +Brand New 2 Bedroom Apartment In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,1 Toilets +Brand New 4 Bedroom Semi Detached House In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"62,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Construction Of 3 Bedroom Terrace House In Ologolo,Bankole Lukman Street Ologolo Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment With A Bq And Parking Space Of 4 Cars,"Banana Island Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Plus Bq In Lekki County,Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 6 Bedroom Fully Detached Duplex Plus Bq In A Serene Environment,Osapa London Lekki Lagos,₦,"96,000,000",1,1,0, beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace In A Mini Estate,Osapa London Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached In An Estate In Ikota,Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Off Kusenla Road, Ikate Lekki Lagos",₦,"85,000,000",0,0,0,10 beds,10 baths,10 Toilets +Brand New 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Waterfront With Jetty Newly Built Luxury 4bedroom Terrace Duplex With 1bq,swimming Pool",Lekki Phase1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths, Toilets +Well Built & Tastefully Finished 5 Bedroom Detached Duplex Located In A Mini Estate,Along The Alternative Route By Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets +Luxury Newly Built Serviced 4 Bedroom Semi Detached Duplex With A Maid’s Quarter Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4 Bedroom Detached Duplex With 1bq For Sale,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 4 Bedroom Semi Detached All Rooms Ensuite Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex (cornerpiece),Lekki Gardens Off Chevron Drive Chevron Lekki Lagos,₦,"41,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Spacious 3 Bedroom Flat For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths, Toilets +Luxurious And Beautifully Built Units Of 3bedroom,Off Oniru Road Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exotically Finished Semi Detached House,Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +3 Bedroom Flat,"Milverton, Friends Colony Agungi Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Vast Acres Of Land Located In Developed And Serene Environment. Very Close To Mega Event Centre,Orchid Hotel Road Chevron Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Exquisite 3 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Finished Newly Built 5bedroom Fully Detached Duplex On 360sqm With A Bq With Super Finishing At Osapa Lekki.,Osapa Close To Jakande Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached With A Room Bq For Sale At Osapa London,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Duplex For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Fully Detached 4bedroom Duplex For Sale At Lekki Chevron,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached Luxury Mansion For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,6 Toilets +Detached 4bedroom Duplex For Sale At Oral Estate Lekki,Oral Estate Oral Estate Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Magnificent 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex For Sale At Chevy View Estate,Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Detached 4bedroom Duplex For Sale At Lekki County Ikota,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Full Detached 5bedroom Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +100% Dry Land With Good Title,"Abraham Adesanya,ogombo Road Lekki Lagos",₦,"23,500,000",1,1,0, beds, baths, Toilets +For Sale A 5 Bedroom Detached House With 2rms Bq @ Vgc. 100m,Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +For Sale 4 Bedroom Semi Detached House @ Idado Lekki Price 45m,Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +For Sale A Wing Of 4 Bedroom Duplex With Bq @ Vgc Price 80m,Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex Is Now Available For Sale At Victory Park Estate With,Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +1plot Of Land In Seaside Estate,Seaside Estate Ilasan Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Beddroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,3 Toilets +Luxury 5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,4 Toilets +Luxury 3&4 Bedroom Duplexes,"Oribanwa,lekki Ajah Lekki Lagos",₦,"3,500,000",1,1,1, beds, baths, Toilets +"Newly Built Luxury 3units Of 4bedroom Terrace Duplex With 1bq,for Sale",Ikate Elegushi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds, baths, Toilets +Tastefully Finished Ensuite 5bedroom Duplex With Bq At Lekki Phase 1,"Kenneth Agbakuru Street,lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,"Bera Estates Chevron Drive Road, Lekki Expressway Chevron Lekki Lagos",₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land In Ikota,Ikota Gra Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Plot,Chevron Drive Bera Estate Chevron Lekki Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets +Executive Plot 600sqm,Inside Beechwood Estate Lekki Lagos,₦,"13,000,000",0,1,0, beds, baths, Toilets +"4 Bedroom Penthouse All En Suite , Fully Serviced Oniru Ocean View By Victoria Island Extension",Victoria Island Extension Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Vantage Court, Bogije",Richlaand Estate Bodije Along Lekki Epe Expressway Ikota Lekki Lagos,₦,"15,000,000",1,1,1,3 beds,3 baths,3 Toilets +"Newly Built 5bedroom Fully Detached Apartment,with A Treated Borehole Water,well Furnished Kitchen,cctv, Spacious Compound And Rooms","36,ibrahim Eletu Way Osapa London Lekki Lagos",₦,"85,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex With 1 Bq And Swimming Pool,Lekki Phase1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds, baths,5 Toilets +"Alpha Beach Road, Lekki Stand Alone 5 Bedroom House On 2floors With A 1room Ensuite Dsq, Built On A Parcel Of Land Of About 600sqm, Located Within A Highly Secured Estate, Off Alpha Beach Road, Lekki.",Alpha Beach Road Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Bed Room Duplex @ Lekki Gardens Phase2 With Modern Fittings & Jaw Dropping Ambience That Can Only Be Matched By The Architectural Excellence Of Aso Rock! The Property Comes With A Six Month Old 20kva Perkins Generator, All The Newly Impprted Furniture,",Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"198,000,000",0,1,1,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Available At Lekki Epe Expressway,Bogije Agungi Lekki Lagos,₦,"6,750,000",1,1,0, beds, baths, Toilets +For Sale; 4 Bedroom Semi Detached Duplex With A Bq At Orchid Hotel Road,Orchid Hotel Road Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Luxuriously Finished 4bedroom Semi Detached And 5bedroom Detached House With Bq.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths, Toilets +"Exquisitely 4 Bedroom Duplexes In A Mini Estate At Ologolo, Lekki, Lagos","Grace Court, Ologolo, Lekki, Lagos Ologolo Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Block Of 17 Units Of Flats,"2 Abiola Apooyin Street, Oral Estate, Chevron Chevron Lekki Lagos",₦,"30,000,000",1,1,0,3 beds,3 baths,3 Toilets +5 Bedrooms Detached Duplex House With 2 Rooms Bq For Sale @ Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +8 Bedroom Fully Detached Office Block,Freedom Way Lekki Lagos,₦,"120,000,000",0,0,0,8 beds,8 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In Serene Environment Sharing Fence With Napia Gardens And Very Close To The Lekki Epe Expressway.,Lekki Epe Expressway Ikota Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Plus Bq (jumbo Size),Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Plus Bq In A Mini Estate In Ikate Elegushi,Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Sapati By Bogije,lekki Epe Express Way Lekki Phase 1 Lekki Lagos",₦,"5,200,000",0,1,0, beds, baths, Toilets +3 Bedroom Fully Detached Apartment,"Bogije,along Lekki Epe Express Way Lekki Phase 1 Lekki Lagos",₦,"14,500,000",0,1,0,3 beds, baths, Toilets +Land,Behind Amity Estate Lekki Phase 1 Lekki Lagos,₦,"11,500,000",0,1,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,3 Toilets +Well Furnished 5 Bedroom Detached House With Bq,Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds, baths, Toilets +For Sale; 5 Bedroom Detached House With 1 Room Bq In Ikate,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Solomon Porch Estate Is An Affordable Land Investment Scheme With Good Title In Abijo, Lekki.",Chevron Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2,"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"59,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Beautifully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Eli Court, Chevron Alternative Drive.",Chevron Lekki Lagos,₦,"69,000,000",0,0,0,4 beds, baths, Toilets +Blocks Of 3 Bedrooms Flat For Sale Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",1,0,1,3 beds,3 baths,4 Toilets +"Exotic 5 Bedrooms Fully Detached Duplex With Swimming Pool, Ikota Lekki Lagos",Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +800 Sqm Land In Osapa London For Sale,Canal West Estate Opp Victory Park Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built Luxury 4 Bedroom Fully Detached Duplex With A Bq,swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built Luxury 5bedroom Detached Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 3 Bedrooms Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Massive Waterfront Land Measuring 2300sqm Ideal For Hotel Or Office Towers Or Beach Resorts,Remi Olowude Road Water Corporation Road Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0, beds, baths, Toilets +Urgent Sale: Tastefully Finished 5 Bedrooms Duplex In A Lovely Location,Lbs Area Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,6 Toilets +Top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki,After Chevron Toll Gate Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +"Well Finished 5 Bedrooms Terraced Duplex, Lekki Right",Lekki Right Off Pinnacle Road Lekki Lagos,₦,"125,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 And 3 Bedrooms Soon To Be Completed Off Plan Project For Sale With Flexible Payment Plan,Off Fayemi Strt Canal West Estate Osapa London Lekki Lagos,₦,"34,000,000",1,1,1,2 beds,3 baths,3 Toilets +"Newly Built Luxury 4 Bedroom Semi Detached Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex With A Swimming Pool,Megamound Estate Ikota Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedrooms Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"400sqm Land In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Ikota Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +"Amazing 4 Bedrooms Semi Detached Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Contemporary, Spacious And Functional 5 Bedroom Detached Duplex With 1 Room Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Executive 5 Bedrooms Fully Detached Duplex, Ikota Lekki",Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedrooms Detached Duplex,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Well Finished 4 Bedrooms Terraced Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terraced Duplex,"Lekki Conservation Road, By Second Toll Gate Lekki Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Well Finished 4 Bedrooms Terraced Duplex, Orchid Road",Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Executive 6 Bedroom Duplex At Abraham Adesanya Estate, Lekki.",Abraham Adesanya Estate Lekki Lagos,₦,"45,000,000",0,0,0,6 beds,5 baths,7 Toilets +Exquisite 5 Bedrooms Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Newly Built Luxury 4 Bedroom Terrace Duplex With A Bq Swimming Pool,gym In A Service Estates At Lekki Epe Expressway Vgc",Lekki Epe Expressway Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex Oral Estate Lekki,Oral Estate Lekki Oral Estate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Exquisite 2 Bedrooms Apartment, Ikate Lekki",Ikate Lekki Ikate Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Executive 5 Bedrooms Fully Detached Duplex, Lekki Phase 1",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 5 Bedrooms Detached Duplex,Eletu Way Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedrooms Semi Detached Duplex, Lcc Road Lekki","By Lekki Conservation Road, Lagos Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale: Luxury 4 Bedroom Terrace Duplex In Lekki With 24/7 Electricity,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,3 baths,5 Toilets +Well Finished Compact 2 Bedrooms For Sale,Off Kunsela Road Ikate Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Esquisite 1 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"28,000,000",1,1,1,1 beds,2 baths,2 Toilets +Luxurious Newly Built 4 Bedroom Semi Detached Duplex With Bq Pay & Pack In (daniel's Garden),Osapa London Lekki Lagos Before Agungi Igbo Efon & Few Minutes Before Chevron Osapa London Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,6 baths,6 Toilets +Luxury Newly Built 6bedroom Fully Detached Duplex With One Bq,By Petrocam Filling Station Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedrooms Fully Detached Duplex Orchid Road Lekki,Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedrooms Terraced Duplex,Orchid Hotel Road By Lekki Second Toll Gate Lekki Lagos,₦,"31,000,000",0,1,0,3 beds,3 baths,4 Toilets +Ecotical Finished 4bedrooms Semi Detached Duplex With Bq At Creek Avenue Court Ikota Lekki,Close To Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Ikota Villa Estate,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Detached Duplex With Bq,Ajah Lekki Phase 2 Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,4 baths,6 Toilets +A 6 Bedroom Duplex (5 Bedroom Ensuite),"Along Lekki/epe Expressway, Lekki, Lagos State Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,1,0,6 beds,5 baths,5 Toilets +Serviced 3bedroom Flat With Bq,Chevy View Estate Lekki Lagos Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Lekki County Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +^plot Of Land For Sale At Lekki Phase 1,Itedo Off Freedoom Road Via Periewinkle Estate Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Luxurious And Serviced 5 Bedroom House,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Renovated 5 Bedroom Detached Duplex At Pinnock Estate Osapa London.,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built Four Bedroom Duplex Available For Sale,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale In Pinnock Estate Osapa Lagos.,Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Distress Plot Of Dry Land Of 700sqm Along Orchid Hotel Road With Governor's Consent,"Orchid Hotel Road, By Chevron Toll Gate, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"27,000,000",0,0,0, beds, baths, Toilets +"Luxurious 5 Bedroom Duplex W Bq, Swimming Pool, Cinema, And Gym",Lekki Phase 2 Lekki Lagos,₦,"380,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Duplex With Maids Room Available For Sale,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex For Sale In Pinnock Estate Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Chevron Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Three (3) Bedroom Apartment + Bq At , Lekki Ikate For Sale","Meadow Hall Way, Ikate – Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Continental Hotel Banquet, Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring Approximately 3740sqm At Lekki Phase 1 Lagos 400m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,9 beds,9 baths,9 Toilets +Affordable 4 Units Of 3 Bedrooms Apartments At Bridge Gate Estate,Bridgegate Estate Agungi Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 2 Units Of Semi Detached Duplexes In A Serene Neighborhood.,"The Alpha Beach Road, Lekki Epe Express Way Chevron Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +Chois Gardens,Abijo Gra Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,3 Toilets +Dane Ville Detached,Agungi Ajiran Road Agungi Lekki Lagos,₦,"51,500,000",0,1,0,4 beds,4 baths,4 Toilets +Courtland Terrace,"Igbokusu Jakande Left, Beside Femi Okunnu Estate Jakande Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +Adess Court,Igbokusu Jakande Left Jakande Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,4 Toilets +Matmoses Cbl Court,Matmoses Cbl Court Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Fully Serviced Block Of Contemporary Styled 3 Bedroom Apartments With Bqs,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Fully Serviced Block Of Contemporary Styled 3 Bedroom Apartments With Bqs,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Camberwall Courts,Abijo Lekki Lagos,₦,"11,000,000",0,0,0, beds, baths, Toilets +A Landed Property,Vgc Lekki Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets +Government Approved Excision(c Of O In Progress),Spati By Bogije Lekki Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"5,200,000",0,1,0, beds, baths, Toilets +"Fully Serviced 4 Bedroom Terrace House With One Room Boys Quarters In Ikate Elegushi, Lekki.",... Ikate Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Distress 5 Bedroom Detached House For Sale,Alternative Route. Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lekki Pearl Garden,"Abijo, Behind Amity Estate Which Is 1 Minute Drive From Lekki Epe Expressway Lekki Lagos",₦,"11,500,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Bq + Gate House,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House At Lekki Scheme 2 Close To Abraham Adesanya.,Off Abraham Adesanya Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,4 baths,4 Toilets +"Luxury 5 Bedroom Fully Detached Duplex With Bq, Gate House, Inverter, Solar Panel",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +C Of O,Lekki Phase 2 Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Units Of Semi Detached Duplex In A Serene Neighborhood,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Newly Built 4bedroom Terrace Duplex Available For Sale Now,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished Brand New 4 Bedroom Fully Detached Duplex + Bq, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"48,000,000",0,0,1,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex,Ilaje Mobil Road Vgc Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Self Compound 3 Bedroom Terrace,West End Etate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Duplex With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Off Aa Rescue Road Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached House In A Serene Environment,Ikota Gra Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4bed Room Duplex For Sale,Lekkiviwe Estate Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +C. Of. O 648squere Meter Dry Land No Sand Filling Required,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5bedroom Fully Detached Duplex At Chevron Drive Lekki.,Chevron Drive Lekki. Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Jv 6 Acres Of Land,"Eleko Beach Rd Joint Venture Size; 6 Acres Of Land Location; Eleko Beach Road Eleko Junction Ibeju Lekki Lagos, Close To Juah Chinese Company Amen Estate And The New Shoprite Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +Lovely Built 21 Rooms Hotel,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"200,000,000",1,1,1,9 beds,9 baths,9 Toilets +New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely Built 4 Bedroom Duplex,Bere Estate. Chevron Road. Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Furnished 4 Bedroom Detached House With Bq.,"Benna Vista By Orchid Road,lekki. Lekki Phase 1 Lekki Lagos",₦,"57,000,000",1,0,1,4 beds,5 baths,5 Toilets +"Just Out?? Tastefully Exquisitely Built Large 4 Bedroom Duplex And Furnished Kitchenette With A Boys Quarter. Location: Osapa London, Lei",M S Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets +Lovely Built 2 Bedroom Bungalow.,South Pointe Estate. Lekki Phase 1 Lekki Lagos,₦,"22,000,000",0,1,1,2 beds,3 baths,3 Toilets +Lovely Built 5 Bedroom Detached Bungalow With Bq,Mayfair Garden Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,1,5 beds,4 baths,4 Toilets +"C. F. O, 1.270squre Meter Dry Land No Sand Filling Required",Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Terace Apartment,Lekki Ikate Ikate Lekki Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,5 Toilets +New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +"C.of.o, Deed Of Assignment And Survey Plan 941squere Meter Cornerpiece",Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"62,000,000",0,0,0, beds, baths, Toilets +Land,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex With Domestic Quarter,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Distress Sale In Lekki 1, 3bed Room Duplex With Bq",Hy Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Duplex For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +5bedroom Duplex With A Room Bq For Sale At Osapa London Lekki,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4bed Room Duplex @ Lekk,Gy Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Domino Axis Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bed Room Duplex @ Lekk,Gy Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Registered Deed Of Assignment 1,341squere Meter Of Land In Chevron",Chevron Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +First Class Hotel In The Neighbourhood Of Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets +For Sale 5bed Room Duplex,Fhy Ikate Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +C. Of. O. Half Plot 324squere Meter Dry Land,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"22,000,000",0,0,0, beds, baths, Toilets +"Residential Land For Sale, Lekki Scheme Ii, Okun Ajah, Off Ahmed Balogun Road By Abraham Adesanya Roundabout, Eti Osa, Lga Ajah, Lagos",Abraham Adesanya Vgc Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets +Newly Built 32 Rooms Hotel,Lekki. Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",1,1,1,0 beds,0 baths,0 Toilets +3bedroom Semi Detached Duplex For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Terrace Duplex,Cluster A South Pointe Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +"18plot Of Land Governor Consent, Facing Express By Second Toll Gate Sharing Fanced With Chevron",Sharing Fanced With Chevron By Second Toll Gate Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +New 3 Bedroom Terrace,Chevron Alternative Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets +New 4 Bedroom Semi Detached,Spg Road Opposite Agungi Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3bedroom Duplex With A Bq For Sale At Osapa London Lekki,. Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +New Serviced 4 Bedroom Terrace,Eletu Street Osapa London Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq.,Osapa Close To Shoprite. Osapa London Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex For Sale At Lekki,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Detach 5bedroom Duplex For Sale At Chevron,Chevyview Estate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,5 Toilets +C. Of. O. 648squre Meter Cornerpiece Plot With Foundation,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +All Ensuit 5bedroom Duplex For Sale At Ikota Lekki County,Lekki County Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Hectares,Skyview Estate Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex For Sale At Ikota Villa Estate Lekki,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Governor Consent Office Space And Shop For Sale In Ikota Lekki Per Shop 10m,Platinum Mall Ikota Ikota Lekki Lagos,₦,"10,000,000",0,1,0, beds, baths, Toilets +Two Unit Of 3bedroom Flat On A Full Plot,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Iweanya Ugbogoh Street. Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale At Ikate Lekki,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached House With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bed Semi Detached House,The Northpointe Chevron Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Alan Balogun Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Westend Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached,Bera Estate Chevron Lekki Lagos,₦,"47,000,000",0,1,0,5 beds,6 baths,6 Toilets +2015 Sqm Land,Next To Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex For Sale At Lekki County With A Room Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Opposite Abiola Court 10. Chevron Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"69,000,000",0,1,0,5 beds,5 baths,6 Toilets +12units Of 3 Bedrooms Flats Service Apartment,Second Round About Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lovely Four Bedroom Terrace In A Mini Estate In Chevron With 24 Hours Power,Chevron Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds, baths, Toilets +Four Bedroom Semidetached Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Lovely 5 Bedroom Fully Detached House In Ikate,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +"4 Bedroom Fully Detached House With A Bq For Sale At Pinnock Beach Estate, Osapa London",Pinnock Beach Estate Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 2 Bedroom Maisonette Within An Estate With 24hrs Security,Off Meadow Hall Road Ikate Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built For Bedroom Semi Detached House With Bq For In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets +Beautiful Luxury 5 Bedroom Detached House With Bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds, baths, Toilets +Lovely 5 Bedroom Fully Furnished Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,1,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat With One Room Bq For Sale In Ikate,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 2 Units Of 5 Bedroom Detached Duplex With Smart Home Features Located In Lekki Phase 1,Ladipo Omotesho Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Lovely 5 Bedroom Fully Detached House With Pool For Sale In Megamound Estate, Ikota",Ikota Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +Fully Furnished 5 Bedroom Duplex In A Prime Location With Mortgage Option,. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House For Sale,Lekki Ikate Lekki Lagos,₦,"150,000,000",0,0,0, beds,5 baths,5 Toilets +Exquisite 3 Bedroom Flat For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +For Sale; Beautiful 5 Bedroom Semi Detached Duplex For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Semi Detached House With Bq For Sale At Chevron,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Five Bedroom Detached House With Bq And Swimming Pool For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely Four Bedroom Semi Detached Duplex At Lekki, Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Flat + Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Semi Detached House With Bq For Sale At Chevron Alternative Route,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 3 Bedroom Self Serviced Flat At Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"34,000,000",0,1,0,3 beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Smart Home Features (spread Payment Over 12 Months),Ladipo Omotesho Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 2 Bedroom Flat At Lekki, Osapa London Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Off Plan Sales; Luxury 10 Units Of 3 Bedroom Apartments At Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +Stunning Four Bedroom Semidetached Duplex At Lekki, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; Magnificent 6 Bedroom Fully Detached House With One Room Bq At Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,0,6 beds,6 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House,", Ikota Lekki Lagos",₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxury Four Bedroom Detached Duplex With Bq For Sale In Megamound Estate, Ikota",Megamound Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely Four Bedroom Semi Detached Duplex At Lekki, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat At Lekki, Agungi Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Lovely Four Bedroom Semi Detached Duplex + Bq At Lekki, Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached Duplex + Bq At Lekki, Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached House With Mortgage Options,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached House With Bq For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets +Lovely 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Semi Detached House With Bq For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely Four Bedroom Semidetached Duplex At Lekki, Idado Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; Land Measuring 2100sqm Between Abraham Adesanya And Lbs Directly On Lekki Expressway,Lekki Epe Expressway Lekki Lagos,₦,"200,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Fully Detached House For Sale At Chevron Alternative Route,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; Lovely 4 Bedroom Semi Detached House At Vgc,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Lovely Five Bedroom Fully Detached House With One Room Bq For Sale In Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +For Sale; Brand New 5 Bedroom Detached Duplex On 2 Floors In Kate,Ikate Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale: Luxury 5 Bedroom Detached House With Two Rooms Bq At Carlton Gate Estate,Carlton Gate Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale; 4 Bedroom Semi Detached House With A One Room Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; Newly Built 4 Bedroom Semi Detached House With A Bq For Sale,Ikota Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Fully Serviced 3 Bedroom Flat With 24hrs Power(pay 50% And Pack In),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Five Bedroom Detached House With Bq For Sale At Ikota,Ikota Ikota Lekki Lagos,₦,"83,000,000",0,0,0,5 beds, baths, Toilets +Off Plan Sales: Lovely Brand New 2 Bedroom Flat At Ikate,Ikate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,2 beds, baths, Toilets +For Sale; Massive Newly Built 4 Bedroom Fully Detached Duplex At Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely Four Bedroom Semi Detached Duplex With Bq For Sale In Chevon,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale;beautiful 4 Bedroom Semi Detached House In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +"For Sale; Beautiful 3 Bedroom Flat At Lekki Gardens Estate, Ikaqte",Lekki Gardens Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds, baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Lovely Five Bedroom Fully Detached House With One Room Bq For Sale In Lafiaji,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +"For Sale, Beautiful 4 Bedroom Semi Detached At Chevron Alternative Route",Chevron Alternative Route Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisite 3 Bedroom Flate For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,1,0, beds,3 baths,4 Toilets +For Sale; Beautiful 4 Bedroom Fully Detached Duplex In Ikota,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; Newly Built 4 Bedroom Semi Detached Duplex With Bq At Oral Estate,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Serviced Newly Built 2 Bedroom Flat For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +"For Sale; 4 Bedroom Semi Detached House With A Room Bq At Egerton Estate, Jakande",Jakande Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Five Bedroom Detached House For Sale In Megamound Estate Ikota,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds, baths, Toilets +Stunning Three Bedroom Maisonette At Lekki, Agungi Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached House,. Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; 5 Bedroom Detached House With A Bq At Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale; Lovely 5 Bedroom Fully Detached With A Bq For Sale In Oral Estate,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Stunning Four Bedroom Semidetached Duplex + Bq At Lekki, Idado Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five Bedroom Detached House With Bq And Swimming Pool For Sale In Ikota,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq For Sale,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale; A Contemporary 5 Bedroom Fuly Detached House With A Bq At Ikota,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely Four Bedroom House For Sale,Lafiaji Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Contemporary Detached House With Bq For Sale,Lekki Osapa London Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely 2 Bedroom Serviced Flat For Sale In Ikate,Ikate Ikate Lekki Lagos,₦,"35,000,000",1,1,0, beds,3 baths,3 Toilets +Brand New Serviced 4 Bedroom Terrace House, Ikate Lekki Lagos,₦,"78,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached House With Bq,. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale; Luxury 5 Bedroom Detached House In Megamound Estate Ikota,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale; Beautiful 4 Bedroom Fully Detached Duplex In Ikota,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; 5 Bedroom Fully Detached House With A Bq At Ikota,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 2 Bedroom Tastefully Finished And Luxury Flat At Lekki Right,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,1,0,2 beds, baths, Toilets +For Sale; Newly Built 2 And 3 Bedroom Apartment At Ikate,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,3 Toilets +Six Units Of Five Bedroom Terrace + 1 Room Bq At Lekki, Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Self Serviced Flat At Lafiaji,Lafiaji Lekki Lagos,₦,"32,000,000",0,1,0,3 beds, baths, Toilets +"For Sale, Luxury Serviced 3 Bedroom Terrace With Room Bq At Ikate",Ikate Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets +Lovely 5 Bedroom Fully Detached House For Sale In Vgc,Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +"For Sale; Brand New 3 Bedroom Flats At Megamound Estate, Ikota",Megamound Estate Ikota Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Newly Built 4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets +Exotically Finished 4 Bedroom Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",0,0,1,4 beds,6 baths,6 Toilets +"Tastefully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 2, Own Now Before 100% Beautiful (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisite 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 1 (pay And Pack In),"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,3 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Orchid Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +Fully Detached 4 Bedroom Duplex With Bq In Phase 2 Creek Avenue Court Lekki. 12 Months Flexible Plan.with Additional Sitting Room,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,3 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Awesome Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra,lekki Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +"Fast Developing Beautiful Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +Land,"Grand Lux Estate Is Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0,0 beds,0 baths,0 Toilets +Finished Fully Detached/semi Detached 4 Bedroom Duplex With Bq,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +Exquisite 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 1 (pay And Pack In),"Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,0,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"15,000,000",0,0,1,4 beds,6 baths,6 Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets +"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.","Bogije, Sangotedo,lekki Ajah Axis,epe Expressway,lagos,nigeria. Lekki Lagos",₦,"7,500,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,1, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"20,000,000",1,1,1,4 beds,6 baths,6 Toilets +Grand Lux Estate:land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Nice 600sqm Residential Land For Sale(oppourtunity To Invest),"Otoolu/igbo Olomi, 10 Mins Drive From Lekki Free Trade Zone Lekki Lagos",₦,"2,800,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex With A Bq, Agungi Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex (all Rooms Ensuite+guest Toilet And An Additional Attached Bq)in Lekki,lagos,nigeria..","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,1,3 beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex (all Rooms Ensuite+guest Toilet And An Additional Attached Bq)in Lekkk,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,0,3 beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,environment Fully Developed.","Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Affordable Land For Maximum Purchase And Investment,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Awesome New Affordable Finished Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Agungi Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Circle Mall Jakande Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Tastefully Finished 3 Bedroom Terrace Duplex With Bq At Bella Homes Phase 2(95%), Own Now Before 100% Complete By June.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Land For Sale @ Lekki (100% Return On Investment),"Bogije,lekki. Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fast,rapid Developing Beautiful Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fascinating New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Few Minutes Before Chevron, Before Agungi Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Residential Land For Sale, Bogije, Lekki, Lagos.",Bogije. Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq., Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"20,000,000",0,0,1,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Flat(all Rooms Ensuite + Guest Toilet),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",0,1,1,3 beds,0 baths,0 Toilets +Land For Sale @ Bogije,Bogije Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets +"Land @ Bogije With C Of O(300,450,600sqm)",Bogije Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Perfectly Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1,3 beds,5 baths,5 Toilets +Golden Land For Sale @lekki Dry Land Buy And Build Instantly,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"5,000,000",0,1,0, beds, baths, Toilets +Grand Lux Estate:land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +3 Bedroom Flat(all Rooms Ensuite + Guest Toilet),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",1,1,0,3 beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Newly Built 2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets +2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq),"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets +"Cheap Land At Lekki, Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,0,0, beds, baths, Toilets +"3 Bedroom Flat(all Rooms Ensuite + Guest Toilet)lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"11,950,000",0,1,0,3 beds, baths, Toilets +"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"Fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,0, beds, baths, Toilets +"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",0,1,1, beds, baths, Toilets +"Residential Land For Sale, Bogije, Lekki, Lagos.",Bogije. Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"38,000,000",1,1,1,3 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex With Bq,Chevron Lekki Chevron Lekki Lagos,₦,"150,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1, beds, baths, Toilets +Affordable Land,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0,0 beds,0 baths,0 Toilets +"Perfectly Located Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets +"Land For Sale @ Bogije(300,450,600sqm)(get Yours Now....area Developing Very Fast) Or Contact Us Now To Secure Your Portion With N3m )price About To Increase",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,0, beds, baths, Toilets +Irresistible New Affordable Finished Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Igbo Efon Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Perfectrly Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,0,1, beds, baths, Toilets +"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Beach Homes(or Semi Finished Carcass/skeletal ) For Sale,"Okun Ajah, Off Abraham Adesanya Road Lekki Scheme 2 Lekki Lagos",₦,"49,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Land For Sale ,claim Ownership At Easy Price And Control At Great Price In A Giffy",Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",1,1,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Land For Sale With Approved Government Allocation & Registered Survey Plan At Affordable Price,"Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,1, beds, baths, Toilets +"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets +"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,1,1, beds, baths, Toilets +"2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,1,1, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,1,1, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets +"4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets +"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace Duplex(all Rooms Ensuite + Guest Toilet And An Additional Attached Bq)in Lekki, Lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.nigeria(before Awoyaya) Lekki Lagos",₦,"19,975,000",0,1,0,4 beds, baths, Toilets +"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.(n3,750,000 For Half Plot And N7,500,000 For Full Plot)your Best Shot.","Bogije,lekki Epe Expressway,after Beachwood Estate,lagos. Lekki Lagos",₦,"7,500,000",1,1,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Lekki County Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Frontier Estate :fantastic Land For Sale @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Golden Land For Sale @lekki Dry Land Buy And Build Instantly,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets +Land For Sale @lekki Dry Land Buy And Build Instantly(developed Environment)limited Offer Available At N17m.........get It Now.flexible Payment Plan Available,"Sangotedo,lekki,lagos. Lekki Lagos",₦,"17,000,000",0,1,0, beds, baths, Toilets +Affordable Land For Sale(buy And Build) Maximum Return On Investment After Purchase,Lapekun 8 Minutes After Lekki Free Trade Zone. Lekki Lagos,₦,"2,600,000",0,1,0, beds, baths, Toilets +"Newly Built 2 Bedroom Terrace Duplex (all Rooms Ensuite+ Guest Toilet And An Additional Bq)in Lekki,lagos,nigeria.","Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"14,800,000",0,1,0, beds, baths, Toilets +"Developed Land For Sale At Omole Phase 2 Accessible To Business District Of Lagos State(fenced,power Supply, Interlocked Road Network And So On) With C Of O.",Omole Phase Ii Extension Sharing Boundary With Magodo Phase Ii Lekki Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets +5 Bedroom Detached Duplex For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Wonderfully Positioned Land With C Of O At Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets +Newly Built 3 Bedroom Terrace Duplex,"Oribanwa,lekki Peninsula,lagos.(before Awoyaya) Lekki Lagos",₦,"17,675,000",0,1,1,3 beds,0 baths,0 Toilets +Wonderfully Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Chevron Lekki Lagos",₦,"45,000,000",1,0,1, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"58,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Frontier Estate :fantastic Land For Own @ Bogije With C Of O (300,450,600sqm) In A Prestigious Estate With Maximum Security,good Road Network ,electricity And Others.",Bogije Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Few Minutes Before Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq/ 4 Bedroom Semi Detached Duplex With Bq For Sale @ Lekki,"Chevron Alternative Drive, Lekki, Lagos State Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Affordable Land At Lekki, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just Few Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 2, Close To Chevron Toll Gate Axis, Lekki.","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +"Beautifully Finished Fully Furnished,serviced 3 Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In)","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Exquisitely Finished Fully Furnished,serviced 3 Bedroom Terrace Duplex With Additional Bq At Bella Homes Phase , (pay And Pack In) With Bulletproof Door And Other Great Amenities","Located At Orchid Road Axis, 2nd Toll Gate At Chevron, Lekki.close To Chevron Toll Gate Axis, Lekki. Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Oral Oral Estate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Grand Lux Estate, Bule Pan Sapati, Lekki, Instant Allocation, Buy And Build With Approved Government Allocation.","Located At Bule Pan Sapati, Lekki. It Is Just 2 Minutes Off Lekki Expressway. Lekki Lagos",₦,"4,500,000",0,1,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale,Orchid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi/fully Detached Duplex With Bq. Perfect Environment For Comfort And Security,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Great Affordable Land For Sale (600sqms) (buy Now And Get Discount+incentives),Igando Orudu Lekki Epe Expressway Lekki Lagos,₦,"4,500,000",0,1,0, beds, baths, Toilets +"Great Land At A Developed Environment With C Of O At An Affordable Price(best For Commercial And Residential Investment)paved And Interlocked Road,modern Electrification With Street Lights Professional Security Guards. @ Abijo Gra,lagos,nigeria","Abijo Gra, Lekki Ajah,  Lagos. Lekki Lagos",₦,"9,500,000",0,0,0, beds, baths, Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq For Sale (pay And Pack In),"After Chevron Toll Gate, Ikota Lekki,lagos. Ikota Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Fully Detached Or Semi Detached 4 Bedroom Duplex With Bq In Phase 2,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Lekki Lagos",₦,"20,000,000",0,1,1,4 beds,0 baths,0 Toilets +Land For Sale @ Lekki Beside Royal Gardens,"Lekki, Beside Royal Gardens Off Lekki Epe Exp. Way Ajah Lekki Lagos",₦,"35,000,000",0,1,0, beds, baths, Toilets +Luxuriously Finished 4 Bedroom Semi Detached Duplex With Bq @ Lekki (pay And Pack In),"Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"10,000,000",0,1,1,4 beds,6 baths,6 Toilets +Land For Sale @lekki (fascinating Environment)(100% Return On Investment),"Bogije,lekki. Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets +"Wonderfully Finished 4 Bedroom Fully Detached Duplex With Bq @ Lekki,environment Fully Developed.","Osapa London,lekki Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Lekki Lagos",₦,"20,000,000",0,1,1,4 beds,6 baths,6 Toilets +Finished Fully Detached/semi Detached 4 Bedroom Duplex With Bq,"Creek Avenue Court Phase 2 Is Located After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached House For Sale,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Elegant 4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Renovated 5 Bedroom Semi Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Detached House,Chevyview Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Maintained 5bedroom Fully Detached House With 2rooms Bq For Sale In Ikate,Still Waters Gardens Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Brand New 2 Bedroom Flat For Sale,Ikate Lekki Lagos,₦,"41,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Classically Designed 5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate Features:,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom All Rooms Ensuite Penthouse Apartment + Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached House All Rooms Ensuite With A Room Bq,Ologolo Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Apartment For Sale At Jakande,Jakande Jakande Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets +Brand New 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious And Well Finished 1 Bedroom Apartment In Oceanbay Estate,"Oceanbay Estate, Lafiaji Chevron Lekki Lagos",₦,"16,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 6 Unit Of 3bedroom Terrace Duplex With All Possible Features For Sale,Dare Olude Street Agungi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex For Sales At Osapa London,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautiful Units Of 3 Bedroom Apartment For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Behind Prime Water Garden Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat +bq,Near Domino Pizza Agungi Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New Luxurious 4 Bedroom Semi Detached Duplex With A Bq,"Orchid Hotel Road, By Eleganza Bus Stop, Chevron Toll Gate, Lekki 2. Lekki Phase 2 Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Massive 6 Bedroom Detached House For Sale,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Brand New 4 Bedroom Terrace Duplex For Sale In Lekki Phase 1, Lekki Right Lagos.",Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Gorgeous 5 Bedroom Duplex For Sale,Lekki County Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Terrace Duplex With Bq In Ikate,Right Handside Ikate Lekki Lagos,₦,"115,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Detached House,Chevy Alternative Road Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced Luxurious 4 Bedroom Terrace House With A Swimming Pool,Chevy Alternative Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Boy Quarters At Chevron,Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached Duplex For Sale,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tasteful 5 Bedroom Fully Detached,Providence Road Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Fully Detached Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +A 3 Bedroom Terraced Duplex With A Room Staffs Quarter For Sale,Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 4bedroom Fully Detached Duplex For Sale At Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets +Spacious And Exquisitely Finished 4 Bedroom Serviced Semi Detached Duplex With 24hrs Power,Bourdillon Court Off Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Detached Duplex For Sale At Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached House All Rooms Ensuite,Oral Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Friends Colony Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +2(no) 3 Open Plan Detached Office Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,3 baths,6 Toilets +Newly Built 2 Bedroom Flat For Sale In Ikate,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Clean 4 Bedroom Duplex With Bq In Serviced Estate With 24hrs Power,Northern Foreshore Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House,Lafiaji Chevron Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,7 Toilets +Tasfully Finished 5bed Duplex With 2rooms Bq,Nicon Nicon Town Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Duplex For Sale At Chevron Alternative Way.,Chevron Alternative Way Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Duplex For Sale,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Well Finished 4 Bedroom Terrace Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxurious 4 Bedroom Duplex With Spacious Living Room, Ample Parking Space, Nice Environment For Sale",Whit Sand Street Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached,Chevyview Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisite 5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Landed Property,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +3 Unit Of 4 Bedroom Semi Detached Duplex For Sale At Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +Nicely Built 3 Bedroom Bungalow For Sale At Thomas Estate.,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached House All Rooms Ensuite Plus A Swimming Pool,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Built 6 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevron Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale In Ikota Villa Estate Lekki Lagos.,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 1000sqm,"Nicon Town Estate, Zone A Jakande Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,"Chevy View, Chevron Lekki. Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Decent 4bedroom Duplex,Lake View Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +An Ultra Modern 4 Bedroom Terrace Duplex For Sale In Agungi Lekki Lagos.,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable Serviced Flats,"Hunponu Wusu Road, Off Hakeem Dickson /omorinre Johnson Street Lekki Phase 1 Lekki Lagos",₦,"65,000,000",1,1,0,3 beds,4 baths, Toilets +"A Lovely Four Bedroom Townhouse For Sale At Ikate Elegushi, Lekki.",Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Luxurious 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,"Chevvy View Estate , Chevron Lekki Lagos. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex With Bq For Sale At Orchid Road,Orchid Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Distress Sale: Luxury 4 Bedroom Detached House + Plus Room Bq,Victory Park Estate Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Townhouse With Ample Parking Space For Sale,Alternative Route Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House Plus 2 Bedroom Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely Architecturally Design 5 Bedroom Detached House For Sale In Lekki County Homes Lekki Lagos.,Ikota Lekki Lagos,₦,"120,000,000",0,0,0, beds,5 baths,6 Toilets +4bedroom Semi Detached Duplex,Creeck Avenue Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House All Rooms Ensuite,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Contemporary 4 Bedroom Semi Detached Duplex With Bq,"Off Orchid Hotel Road, By Eleganza Bus Stop By Chevron Toll Gate. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Luxury Unit Of 7bedroom Detached Duplex With All Possible Features For Sale,Elfe Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,7 beds,7 baths,7 Toilets +Luxury 4 Bedroom All Rooms Ensuite + Room Bq,Bera Vista Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished Luxury 3 Bedroom Flat With Maid's Room,"Victoria Crest Estate, Close To Shoprite Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached With A Bq And Swimming Pool,Megamound Estate Lekky County Homes Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,1,6 beds,6 baths,7 Toilets +Luxurious 5 Bedroom Duplex With 2 Rooms Bq For Sale,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"470,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land Measuring 7.337 Acres (#170k / Sqm),Beside World Oil Filling Station; Ilasan Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Flat At Milverton Court,"Milverton Estate, Osapa London Lekki Lagos",₦,"49,000,000",1,0,0,3 beds,3 baths, Toilets +Well Built 4 Bedroom Semi Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Luxury 6 Units Of 3 Bedroom Flat For Sale,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Off Plan Luxury 2 Bedroom Apartment,Off Kusenla Road Ikate Lekki Lagos,₦,"36,500,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex For Sale At Thomas Estate,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tasteful 5 Bedroom Fully Detached All Rooms Ensuite With Swimming Pool,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Terrace House With A Room Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brand New 5 Bedroom Detached House For Sale In Lekki Phase 1, Lekki Right Lagos.", Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex For With Bq For Sale At Osapa,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 5 Bedroom Duplex With A Mini Cinemas And A Pool For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Serviced Luxurious 4 Bedroom Terrace House,Chevy Alternative Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxurious 4 Bedroom Terrace Duplex With All Possible Features For Sale,Elfe Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Brand New 3 Bedroom Flat For Sale,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 3 Bedroom Semi Detached Duplex With A Room Servant Quarter For Sale At Ikate,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets +Executive 5bed Detached Duplex,Lekki Homes Ikota Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached House In Chevron,Oral Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxurious 4 Unit, 3 Bedroom Flat With 1 Room Bq Each","Babatope Bajide Off Fola Oshibo, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tasteful 5 Bedroom Fully Detached,Admiralty Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Unit Of 3 Bedroom Flat With 1 Room Bq Each For Sale,"Babatope Bajide Off Fola Oshibo, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,3 beds,4 baths,4 Toilets +Fenced Land With Structure Measuring 3200sqm,"Facing Lekki Expressway, Accessible From Providence Street Lekki Phase 1 Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom All Rooms Ensuite Duplex + Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Chevron Alternative,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Flat For Sale In Lekki Phase 1 Lagos.,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom Detached House Plus Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Flat For Sale In Lekki Right Hand Side,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,3 Toilets +Clean 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Units Of 4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Joint Venture,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0, beds, baths, Toilets +1 Plot Of Land For Sale At Lekki Phase 2 Thesarus Garden In Carebbian Lake City,Opposite Crown Estate By Shoprite Sangotedo Lekki Epe Expressway Lagos Lekki Phase 2 Lekki Lagos,₦,"9,000,000",0,0,0, beds, baths, Toilets +Off Plan 4 Bedroom Terrace With One Room Bq,"Bayview Estate Behind Oando Filling Station, 4th Roundabout Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Off Elegushi Palace Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land Available,"Chevron Roundabout, Chevron Lekki Lagos",₦,"138,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House With 2 (no) Bq With Swimming Pool,. Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Hebron Garden,Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex At Creek Avenue Court,Chevron Alternative Drive Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +Luxury Newly Built 5 Bedroom Duplex With 1 Bq,Prince Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq On 550sqm,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Fully Detached Duplex, Newly Built 4bedrom With 1bqs ",Chevron Drive Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Beautiful Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Flat Detached Duplex,Lekki Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex Lekki 1,Behind Prime Water Gardens Freedom Way Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +New Listing 5 Bedroom Detached Duplex For Sale 1bqs Watch Full Video At Instagram Igtv @superite.africa,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With Cinema, Pool",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,7 Toilets +"Ocean View Newly Built 4bedroom Duplex With 1bq, Very Spacious And Compound",Pinnock Beach Osapa London Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace With Excellent Facilities,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"32rooms Hotel With Swimming With Land Size Measuring 1400sqm,",Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Land Measuring 500sqm,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"87,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 2001sqm For Sale,price110,000 Per Sqm",Nike Gallery Road Ikate Lekki Lagos,₦,"110,000",0,0,0, beds, baths, Toilets +Luxury Serivced 4bedroom Terraced Duplex,Lekki Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets +"Massive 4units Of Townhouse Ideal For Shopping Complex,office Building On Land Size 1400sqm Directly On Admiralty",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"720,000,000",1,0,0,4 beds,6 baths,6 Toilets +"Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With, Cinemas Gymnasium, Swimming Pool,for Sale",Wonderful Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,7 Toilets +Selling Now On Promo Price @ Heaven Tulip Estate Chevron Drive Lekki Lagos Nigeria 18 Units 4 Bedrooms Terraces In Service Estate.,Heaven Tulip Estate Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury New Mansion, This Property Finished Fully 5 Bedroom Detached Duplex With Swimming Pool,cinema Room And 1 Rooms Boys Quarters",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Newly Built 5bedroom Fully Detached Duplex For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Measuring 3500sqms With A 2600sqm Set Back And A Fictional Event Center Available For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Hot Pinnock Beach Sale 1066sqm Corner Piece Land Location: Pinnock Beach Estate Price: 185m Net Title: C/o Call Us Now For More,Osapa Osapa London Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxious Semi Detached 4bedroom Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Plot Measuring 25,000sqms Selling For Between N100k To N150k Per Sqms",Lekki Epe Expressway Vgc Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets +Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q In A Developed Serene Close,Off Chevron Drive Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom En Suite Detached Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex With 1bq For Sale,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Massively Built 5 Bedroom Detached Duplex With B.q Is Still Available For Sale.,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisitely Built 4 Bedroom Terraced Duplex,"Roxbury Homes, Orchid Road Lekki Lagos Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Flat Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Gracia's Garden Scheme Iii Estate,Lekki Lagos,₦,"950,000",0,1,0, beds, baths, Toilets +Luxury Newly 5 Bedroom Detached Duplex For Sale Location: Chevron Lekki Lagos,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Igbo Efon Lekki Lagos,₦,"1,200,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Measuring 8500 Available For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000",0,0,0, beds, baths, Toilets +"Jv. Land Measuring : 2,700 Sqm",Lekki Agungi Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +Land Size Measuring 1300 Sqm At Chevron Alternative Route,Lekki Chevron Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Plots Measuring Up To 80000sqms On Lekki Epe Expressway Available For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +Newly Build Luxury Service 3 Bedroom Flats With Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Luxury Exquisitely Built Elegant 4 Bedroom Semi Duplex With 1bq For Sale Chevy View State Chevron, Lekki Lagos",Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Unit Of Beautifully Built, Elegant And Sophisticated 5 Bedroom Detached Duplex With Bq With Massive Swimming Pool",Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Newly Built 3 Unit Of 5bedroom Luxury Fully Detached Duplex With Swimming Pool,gym,cinema Video On Instagram Igtv @superite.africa",Gated Community In Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,7 Toilets +This 4 Bedrooms Waterfront Terrace House With 1 Room Bq Is Available For Sale!!!.,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Luxuriously Finished 5 Bedroom Detached House With Massive Space And B/q In A Developed Serene,Off Chevron Drive Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fenced Land Measuring 1,100 Sqm",Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Elegant And Luxury 4 Bedroom Semi Detached Duplex In A Service Estate At Orchid Road,"Lafiaji,orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Brand New 4 Bedroom Fully Detached Duplex And 1 Bq With 30kva Generator And Acs,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautifully Built 500sqm 5bedroom With Spacious Balcony And Car Park Close To Jakande Mall,Jakande Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool,cinema,bullet Proof Doors And 1bq",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built 4bedroom Terrace Duplex It Is Beautifully Built,elegant, Exotic And Sophisticated All Room En Suite",Chevron Drive Chevron Lekki Lagos,₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4bedroom Duplex With1bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom En Suite Detached Duplex For Sale,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Finished Brand New Luxury 5 Bedroom Detached Family House With Bq,Ikota Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Flat Detached Duplex,Lekki Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Executive 5 Bedrooms Fully Detached Duplex, Lekki Phase 1",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"165,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 16units Of 3bedroom Flats Withboy's Quarter At Lekki Phase/oniru Lekki Lagos,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0, beds,3 baths,4 Toilets +4 Bedroom Detached Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fully Detached Duplex, Newly Built 5 Bedroom With 2 Bqs","Northern Foreshore Estate, Chevron Drive Lekki Phase 2 Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Newly Built 4bedroom Semi Detached Duplex With 2bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 6 Bedroom Fully Detached Duplex With 2 Bqs Available For Sale,Victory Park Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,6 beds,7 baths,7 Toilets +Urgent Pinnock Beach Estate Sale 598sqm Land For Sale Location: Pinnock Beach Estate Price: 95m Net Title: C/o,Pinnock Beach Osapa London Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +Plot Measuring Up To 30000sqms Available For Sale,Freedom Road Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +Recently Completed Fully Detached 5 Bed All Rooms En Suite Duplex On 3 Floors Sitting On 460sqm Available For Sale At Lekki Phase1,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,7 Toilets +"Brand New 4bedroom Terrace + Bq + Swimming Pool + Gym + Ample Parking Space. @ Ikate , Lekki Lagos. N80million Asking",Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,5 baths,5 Toilets +"Exclusively Finished 6 Bedroom Canadian Style Luxury House With Swimming Pool, 2 Bedroom Bq.",Victoria Garden City Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 5 Bed Room Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Jv. Land Size: 2,700 Sqm.",Lekki Agungi Lekki Lagos,₦,"330,000,000",0,0,0, beds, baths, Toilets +"Brand New 4 Bedroom Detached Duplex With Bq All Rooms En Suit, Car Port And More",Lekki Lekki Phase 1 Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,4 baths,5 Toilets +"For Sale 10,000sqm Land Directly On Freedom Road, Lekki Phase 1, Lagos. Fantastic Bare Dry Land 10,000sqm Fenced And Gated",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"140,000",0,0,0, beds, baths, Toilets +5 Bedroom Flat Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 4bedroom Semi Detached Duplex For Sale,Orchid Road Lekki Lekki Phase 1 Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury Beautiful Newly Built Bedroom Duplex With 1 Bqs,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Tastefully Finished Built 500sqm 5bedroom With Spacious Balcony, Very Close To The Jakande Mall",Jakande Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Massive Service Luxury Newly Built 3 Bedroom Terrace Duplex,Prince Eletu Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Luxury Newly Built 4bedroom Semi Detached Duplex With Swimming Pool,gym ,playground And Bq",Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 5bedroom Detached Duplex With Swimming Pool And 2 Rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"175,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 5bedroom Duplex With 1bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex And 2 Rooms Boy's Quarter,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Elegant And Well Structured 5bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Fully Detached 5bedroom Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"64,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Flat Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,4 baths,4 Toilets +Exquisitely Built Elegant 5 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built Luxious 6bedroom Duplex With 2room Bq,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,7 baths,7 Toilets +650sqm Land,"Spar Road,lekki Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land Measuring 3000 Sqms For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +"Luxury Exquisitely Built Elegant 6bedroom Duplex With Swimming Pool,gymnasium For Sale In Vgc ( Victoria Graden City) Lekki Lagos",Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury Finished 2units 4bedroom Semi Detached Duplex With 1bq For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached Duplex,Lekki Phase1 Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 500sqm 5bedroom With Spacious Balcony And 1bq Close To Jakande Mall,Jakande Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Classy 5 Bedroom Fully Detached Duplex With 1 Room Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Luxury 4bedroom Semi Detached Duplex For Sale With 1bq,Heaven Tulip Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Luxury Fully Detached Duplex With Room Bq For Sale With Bqs At Chevron Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Perfectly Well Laid 5 Bedroom Fully Detached Duplex With 1bq,Lekki Phase1 Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 4bedroom Detached Duplex With And Swimming Pool And 2bqs For Sale,Lekki Phase1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +*distress Sales* *a Newly Built 4 Bedroom Duplex With A Block Of 2 Mini Flats With A Swimming Pool After Bogije On Lekki Expressway,Lekki Expressway Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Flat Detached Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Build 5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Exquisitely Built 4 Bedroom Terrace Duplex Is Available For Sale..,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxious And Elegant 5bedroom Fully Detached Duplex With Study For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Finished Fully 6 Bedroom Detached Mansion With Swimming Pool,cinema Room, Gym Room, And 2 Rooms Bqs On Land Size 1000sqm",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,0,0,6 beds,8 baths,9 Toilets +"New Land Alert Location: Pinnock Beach Estate Lekki Phase 1, Lagos Nigeria Title: C Of O Price: 115m Asking Size: 798sqm",Osapa Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +"Excessively Large 5bedroom Duplex With Swimming Pool,gym And 2bq For Sale",Pinnock Beach Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury Newly Built 4bedroom Semi Detached Duplex On 2 Floors With Swimming Pool,gym For Sale",Circle Mall Road Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,5 baths,6 Toilets +"Plot Measuring 1,003sqms",Pinnock Beach Estate Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +Newly Built Luxury 5 Bedroom Duplex With Swimming Pool And 2 Bqs,Pinnock Beach Estate Lekki Phase 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Built 5 Bedroom Duplex With 1bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +One Unit Of 4bedroom Terrace Available For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,5 baths,5 Toilets +"400sqm Land In Megamound Estate, Lekki County Homes",Megamound Estate Ikota Ikota Lekki Lagos,₦,"32,000,000",0,1,0, beds, baths, Toilets +Luxury Newly Built Service 4 Bedroom Terrace Duplex With 1 Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +This Beautifully Built 450sqm 5bedroom Semi Detached Duplex With Sapcious Balcony And A Bq,Lekki Phase1 Ikate Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Excessively Large 6bedroom Duplex With 2bqs And Swimming Pool,gym",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,6 beds,5 baths,6 Toilets +A Beautiful Fully Detached 5bedroom Duplex In A Serene Area,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex In Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat For Sale,Lekki Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +For Sale: Brand New And Superbly Finished 5 Bedroom Fully Detached House With 1bq,Circle Mall Road Osapa London Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fenced Land Measuring 1,100 Sqm For Sale At Africalane",Africanlane Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedrooms Fully Detached,Bera Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +4000sqm Plots Of Land In Carlton Gate Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Lake View Estate Adjacent Ikota Shopping Complex Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +A Full Plot,Road 2 Ologolo Lekki Lagos,₦,"1,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached With 2bq,Vgc Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Dry Land,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Newly Built 8 Units 4 Bedroom Terraced Duplex In A Serene Estate,Pacific Court Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,5 baths,5 Toilets +Clean 4 Bedroom Semi Detached Duplex Plus Bq,"West End Estate, Lekki County Ikota Lekki Lagos",₦,"42,000,000",0,0,1,4 beds,4 baths,5 Toilets +12 Unit Of Luxurious 3 Bedroom Apartments And 2 Unit Of 4 Bedroom Penthouse With Unmatched Opulence.,"At Dele Ogunbowale Crescent, Qmb Builder's Mart Road. Lekki Phase 1 Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House In Pinnock Beach Estate,Pinnock Beach Estate Jakande Lekki Lagos,₦,"260,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached House,At Pinnock Beach Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 2 Units Of 4 Bedroom Terrace Houses,"At Herbert Orji Street, Osapa London, Lekki, Lagos, Nigeria Osapa London Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built Palatial 3 Bedroom Terrace Duplex At Atlantic Mews Estate, Alpha Beach Road, Lekki, Lagos.","At Atlantic Mews Estate, Alpha Beach Road Lekki Phase 1 Lekki Lagos",₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House,Northern Foreshore Chevron Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Block Of Flats Comprising 6 Units Of 3 Bedroom Apartments And 2 Units Of 2 Bedroom Apartments With Maid Rooms,"At Abioro Street, Ikate, Lekki Lekki Phase 2 Lekki Lagos",₦,"320,000,000",1,1,1,3 beds,3 baths,4 Toilets +Three Bedroom Flats At Alpha Beach For Sale,"At Olatunji Street, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +Lush Apartments Exquisitely Finished Four Bedroom Semi Detached Houses,"Lush Apartments, Kusenla Street, Elegushi Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +C Of O,Abijo Lekki Lagos,₦,"20,000,000",0,0,0,3 beds, baths, Toilets +Luxury And Furnished Restaurants,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1, beds, baths, Toilets +Furnished 4bedroom Duplex With Spacious Room Bq,Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq In Alperton Residence Estate,Osapa London Lekki Lagos,₦,"76,000,000",1,1,0,5 beds,5 baths,6 Toilets +Tastefully Built Luxury 5 Bedroom House For Sale In Lekki Lagos,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Detached 4 Bedroom Duplex With Bq For Sale,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex With Bq For Sale,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex And A Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious Furnished 3bedroom Apartment At Nicon Town Lekki.,"Nicon Town, Lekki Beside Total Filling Station. Nicon Town Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Governor's Consent,Idado Estate Chevron Idado Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +"3,399sqm Jv At Spar Road,lekki","Spar Road,opp Nixon Town Estate Lekki Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +Well Finished 4units Of 3bedroom Luxury Apartment,"Off Admiralty Way,lekki Phase1 1 Lekki Phase 1 Lekki Lagos",₦,"450,000,000",0,1,0, beds, baths, Toilets +"Lucrative Land Size Of 1,300sqm (2plots)for Sale Facing Directly Lekki Epe Expressway Before World Oil Ilasan","Directly Facing Lekki Epe Expressway Before World Oil Ilasan,lekki, Lagos Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +Governors Consent,By Britainia Hospital Lekki Phase 1 Lekki Lagos,₦,"205,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Apartment And A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Apartment With 2 Rooms (bq),Admiralty Homes/alpha Bay Estate Off Lekki Express Way. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Global C Of O Land For Sale In Lekki, Lagos (cherry Wood Courts)",Along Lekki Free Trade Zone Lekki Lagos,₦,"6,000,000",1,1,0, beds, baths, Toilets +Lavishly Furnished 5 Bedroom Duplex And Maids Room,"By Petrocam Filling Station,elf Bus Stop Ilasan Lekki Lagos",₦,"155,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Best Affordable Land (600sqms) @ Tiverton Estate,Igando Orudu Lekki Epe Expressway Lekki Lagos,₦,"4,500,000",0,1,0, beds, baths, Toilets +"Residential Land For Sale, Bogije, Lekki, Lagos.","Bogije, Lekki Lagos",₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Oribanwa, Lekki Peninsula, Lagos. Lekki Lekki Lagos",₦,"10,950,000",0,1,0,3 beds,3 baths,0 Toilets +Land,"Bogije, Lekki Lagos",₦,"10,500,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Detached Bungalow For Sale,"Ogunfayor Royal Estate Beside Mayfair Gardens , Awoyaya Lekki Phase 2 Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +4.2 Hectares Of Land At Maiyegun Tourism Scheme With C Of O,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"4,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Beautifully Designed 5bedroom Detached House With A Room Boys Quarter,Chisco Ikate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Duplex,Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,5 Toilets +"Luxurious 4 Bedroom Duplex With Spacious Living Room, Ample Parking Space, Nice Environment For Sale",Orchid Road Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Duplex,Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 21 Rooms Hotel,Lekki Phase 2 Lekki Lagos,₦,"200,000,000,000",0,1,0,10 beds,10 baths,10 Toilets +Land At Peach Palm,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisitely Finished And Spacious 3 Bedroom Flat With A Bq,Close To Domino Pizza Agungi Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Branf New Luxurious 5bedroom Fully Detached House With A Room Bots Quarter,Idado Estate Idado Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Beautifully Finished 5 Bedroom Duplex With Boys Quater, Ample Parking Space, Nice Environment For Sale",Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +12.75 Hectares Of Land Fenced C Of O,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Beside Safe Court Apartments Ikate Lekki Lagos,₦,"749,870,000",0,0,0, beds, baths, Toilets +"Land For Sale In Lekki, Lagos(david's Grace City)",Ibeju Lekki Lekki Lagos,₦,"1,500,000",1,1,0, beds, baths,6 Toilets +3 Bedroom Flat For Sale In Lekki Ajah Lagos (wealthland Green Estate),"Oribanwa, Lekki Ajah Lagos Lekki Lagos",₦,"11,950,000",1,1,1,3 beds,3 baths,4 Toilets +Serviced Land With C Of O For Sale In Abraham Adesanya Lekki Lagos,Abraham Adesanya Lekki Lagos,₦,"30,000,000",1,1,0, beds, baths, Toilets +Land For Sale In Lekki Lagos (win Homes),"Okun Ajah, Orchid Road Lekki Lagos",₦,"15,000,000",1,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Land For Sale In Ibeju Lekki, Lagos (grace Ville)","Ikegun,ibeju Lekki Lekki Lagos",₦,"850,000",1,1,0, beds, baths, Toilets +Just Built 5 Bedroom Fully Detached Smart Home Duplex,Chevron Lekki Lagos,₦,"77,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex Mansion,B4 Vgc Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +New And Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale At Ikota Villa Estate.,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land For Sale In Abijo,"Abijo, Lekki Lekki Lagos",₦,"10,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikota Gra Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale In Lekki Ajah Lagos (wealthland Green Estate),"Oribanwa, Lekki Ajah Lagos Lekki Lagos",₦,"11,950,000",0,1,1,3 beds,3 baths,4 Toilets +Super Luxury 4bedroom Detached House + Bq,U3 Estate Lekli Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +"Land For Sale In Ibeju Lekki, Lagos (richview Estate)",Akodo Community Lekki Lagos,₦,"6,500,000",1,1,0, beds, baths, Toilets +"Land For Sale In Ibeju Lekki, Lagos (marple Woods Estate)","Siriwon Town,ibeju Lekki Lekki Lagos",₦,"3,000,000",1,1,0, beds, baths, Toilets +One And Half Plot Of Land (distress Sales),"Lekki Penusula Scheme1, Plot18, Blk113, Eti Osa, Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,7 Toilets +Two Number 5 Bedroom Fully Detached House At The Entrance Of Lekki County Home,Entrance Of Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets +Newly Built & Well Finished 5 Bedroom Fully Detached Duplex With Swimming Pool & 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets +1 Bedroom Flat,"Lekki Garden Paradise 3,chevron Rd, Lekki Chevron Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +A Plot Approx 713sqm For Sale @ Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Inbuilt Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale At Lafiaji Lekki (win Homes).,"Orchid Hotel Road By Chevron(2nd Toll Gate),lafiaji Lekki. Chevron Lekki Lagos",₦,"15,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached With Bq And 5bedroom Fully Detached With A Bq,"Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bdr Semi Detatched Duplex With Be @ Creek Avenue Court Lekki,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets +Luxury 4br Semi Detached Duplex For Sale,Ikota Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +5bedroom Detached Duplex Location : Alpha Beach,Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Deluxe 6 Bedroom Fully Detached Duplex With Cinema Room, Swimming Pool & So Much More",Lekki Phase 1 Lekki Lagos,₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets +Two Number 5 Bedroom Fully Detached House,Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Orchid Road By Chevron Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,1,0, beds, baths, Toilets +Luxury And Furnished 3bedroom Flat + Bq,By Second Round About Ikate Lekki Lagos,₦,"40,000,000",1,1,1,3 beds,3 baths,4 Toilets +4bedrooms Duplex With A Bq,Back Of Mega Chicken Inside G. R. A Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Dry Land,Located Beside Vgc Estate Vgc Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"74,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With 1 Room Bq,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With 1 Room Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Nicely Built 4 Bedroom Semi Detached With Bq And Excellent Facilities,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"23,000,000",0,1,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Super Maisonette Duplex With A Bq Available For Sale At The The Horizon Heights Estate,"Behind Naicon Town, On Spar Supermarket Road. Ikate Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex With Bq At Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq At Primewater View Estate,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,4 Toilets +Furnished 4 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Idado Lekki Lagos,₦,"128,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Osapa Road Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury3 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Appointment,Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"23,000,000",1,1,0,2 beds,2 baths,3 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With 2 Room Bq And Excellent Facilities,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Room Bq And Excellent Facilities,Orchid Way Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq ( Off Plan ),By Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"47,799,000",1,1,0,4 beds,5 baths,6 Toilets +"4 Bed Semi Detached Duplex With A Bq ,( Off Plan)","By Kusenla Drive , House On The Rock Road. Ikate Lekki Lagos",₦,"57,990,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Finished 4 Bedroom Semi Detached Duplexwith Bq And Excellent Facilities,Thomas Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Pinnock Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment With Visitors Toilet ( Off Plan ),By Nike Art Gallery After Wakanow Ikate Lekki Lagos,₦,"24,000,000",1,1,0,2 beds,2 baths,3 Toilets +Promo Promo 3 Bedroom Flat Selling On Off Plan,Nike Art Gallery Road Opposite Wakanow Ikate Lekki Lagos,₦,"24,990,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedroom Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplex At Orchid Hotel Road,"Orchid Hotel Road, 2nd Lekki Tollgate Lekki Lagos",₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Bq ( Built ),Meadow Hall Way Ikate Lekki Lagos,₦,"70,000,000",1,1,0,6 beds,6 baths,7 Toilets +Well Finished 4 Bedroom Semi Detached Duplex At Pinnock Beach Estate,"Pinnock Beach Estate, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex With A Bq Attached To The Back Of The House,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",1,1,0,6 beds,6 baths,7 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With 2 Room Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Luxury 4 Bedroom Terrace Duplex With 1 Room Bq And Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Bq And Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached House With A Bq (off Plan ),Orchis Road After Lafiaji Chevron Lekki Lagos,₦,"39,990,000",1,1,0,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom Terraced Duplex At Orchid Hotel Road,"Orchid Hotel Road Just After 2nd Lekki Tollgate, Lekki Lekki Lagos",₦,"92,000,000",0,0,0,3 beds,3 baths,4 Toilets +Residential Land For Sale At Ikota Villa Estate,Ikota Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +"Newly Built 4 Bedroom Detached Duplex At Ikota Villa Estate, Lekki",Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex With Bq And Excellent,Lafaiji Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq And Excellenct Facilities,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Semi Detached Duplex With Bq And Pent House,Orchid Way Ikota Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Oral Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Detached Duplex With 1 Room Bq And Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"370,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Bq And Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq And Excellent Facilities,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Incomplete 4 Units 3 Bedroom Terrace Duplex In Good Location,2nd Toll Gate Lafiaji Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Maintained 5 Bedroom Detached Duplex At West End Estate Ikota,West End Estate Ikota Ikota Lekki Lagos,₦,"39,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace On 3 Floors,Off Nike Art Gallery Road Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,3 beds,2 baths,3 Toilets +New Built Smart Home,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Newly Built 4bedroom Semi Detached Duplex. Features: 24hours Electricity, 24hours Security, Swimming Pool, Gym, Secured Mini Estate",Off Lekki Epe Express Way Ikota Vgc Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +Land For Sale,Ikota Lekki Lagos,₦,"45,000",0,0,0,1 beds,1 baths, Toilets +3 Bedroom Terrace House + 1 Room Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Detached House + 2 Room Bq,Off Road 13 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With Bq,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Stunning 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Stunning 4 Bedroom & 5 Bedroom Fully Detached Duplex With A Room Bq For Sale!!,... Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Stunningly Beautiful 5 Bedroom Fully Detached A Room Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Stunning 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Stunning 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Spacious 5 Bedroom Luxury Fully Detached Duplex With A Room Bq For Sale, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,0 Toilets +Exotically Fully Furished 5 Bedroom Massively Sized Fully Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful Newly Built And Tastefully Finished 5 Bedroom Fully Detached Duplex,Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex With Bq For Sale!!,Megamound Lekki County Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Stunningly Beautiful 5 Bedroom Fully Detached Duplex For Sale!!.,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Super Clean & Spacious Semi Detached Duplex With A Room Bq For Sale!., Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Duplex At Ocean Breeze Estate Lekki,Ologolo Ocean Breeze Estate Agungi Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex At Osapa London Lekki,Bamidele Eletu Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Terrace For Sale,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets +"One Storey Building For Sale At Igbo Efon, Lekki, Lagos",Olukolu Street Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,8 baths,8 Toilets +Newly Built 5 Bedroom Duplex With Pool At Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 6 Unit 5 Bedroom Detached Duplex,Off Freedom Way Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Super Classic And Most Solidly Constructed New 4bedroom Duplex,Idado Road Idado Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Orchid Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds, baths, Toilets +Exotically Finished 4 Bedroom Fully Detached Duplex With Bq (pay And Pack In).,Ikota Lekki Ikota Lekki Lagos,₦,"53,000,000",1,1,0,4 beds, baths, Toilets +New And Exquisitely Built 4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds, baths, Toilets +Brand New And Exquisitely Finished 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +4bedroom Semi Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets +5bedroom Fully Detached Duplex,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"77,000,000",0,1,1,5 beds, baths, Toilets +"Luxury State Of Art 2bedroom Flat With Spacious Rooms, Fully Equipped Kitchen, Luxury Sanitary Wares And Good Lightings.",Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets +New Built 2 Bedroom Flat.finished And Partly Furnished,Paradise Estate 2 Chevron Drive Chevron Chevron Lekki Lagos,₦,"33,000,000",1,1,0,2 beds,2 baths,3 Toilets +New,Paradise Estate 2 Chevron Drive Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bed Terraced Duplex With Bq,Elegushi Lekki Lagos,₦,"60,000,000",0,1,0,3 beds, baths, Toilets +Newly Built 5 Bedroomed Fully Detached Duplex,Osapa London Lekki Lagos,₦,"107,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terraced Duplex For Available At Orchid Hotel Road,Orchid Road Oral Estate Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Beautiful Finished With Touch Of Smart Network Block Of Flats, Located In The Heart Of Lekki.",Ikate Lekki Lagos,₦,"28,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 5 Bedroom Detached House With Bq,. Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Five Bedroom Fully Detached House With Bq,. Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New Four Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 2 Bedroom Maisonette, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,1,1,2 beds,2 baths,3 Toilets +Brand New 3 Bedroom Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury Five Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Terrace House(mortgage Option Available), Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat At Lekki, Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Exquisitely Built Luxury 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Contemporary Fully Detached Duplex With Service Room & Laundry Room,"Orchid Hotel Road, Chevron Lekki. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,4 beds, baths, Toilets +Fully Detached 5 Bedroom Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Stand Alone With A Bq For Sale At Ikate,Close To Phase 1 Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached House In A Serene Environment,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron Osapa London Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Duplex,Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Standalone Duplex With A Bq For Sale At Ologolo,Close To Domino's Pizza Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached House With A Room Bq In A Serene Environment,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxuriously Finished 4 Bedroom Duplex With A Bq For Sale, Chevron Axis",Chevron Axis Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite Finished 4 Bedroom Semi Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki,"After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +"Luxury 4bedroom Terraced Apartments, @ Parkhust",Alma Beach Estate By Mercedes Ikate Lekki Lagos Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex With A Massive Bq For Sale At Spg Ologolo In Lekki,Spg Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Flat With Swimming Pool For Sale At Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Stand Alone Duplex, Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +"4 Bedroom Home With 24 Hour Power Supply And Gym For Sale Near Shoprite, Osapa London",In An Estate Near Shoprite Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,"Off Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Duplex With A Bq & A Garden For Sale At Ikate,Ikate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +(luxury 4bedroom Terraced House) @ Perimeter Court 1,"Inside Madiba Estate, Ikate Lekki Phase 1 Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Bq For Sale At Ikate,Close To House On The Rock Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Flat With Swimming Pool For Sale At Osapa/agungi Lekki,Osapa Agungi Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Stand Alone Duplex With 24 Hour Electricity For Sale Chevron Axis Lekki,Chevron Axis Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Terraced Duplex,By Lekki Conservation Centre Road Before Second Toll Gate Lekki Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex Osapa London,"Modasiru Eletu, Osapa London Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Pre Owned 3 Bedrooms Flat At Milverton Estate Osapa,"Milverton Estate, Osapa London Osapa London Lekki Lagos",₦,"42,000,000",1,0,1,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"5 Bedroom Standalone Duplex With A Bq For Sale At Ikota, Close To Vgc","Ikota, Close To Vgc Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom With Washing Machine & Fridge,Before Canal Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached House With A Room Bq In A Serene Environment,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Elegant 5 Bedroom Fully Detached House,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With 24 Hr Electricity Supply,Conservation Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Stand Alone Duplex With 2 Bq & Laundry Room For Sale In An Estate Near Freedom Way Phase 1 At Ikate,In An Estate Near Freedom Way Phase 1 Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With State Of The Art Finishings, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached House In A Serene Environment,"Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced With A Bq For Sale At Ikate,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached House In A Serene Environment,"Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New 4 Bedroom Duplex With Bq For Sale, Chevron Axis Lekki",Chevron Axis Lekki Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex With A Room Bq In A Serene Environment,"Orchid Road, Lekki, Lagos. Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court, Lekki","After Chevron Toll Gate, Ikota Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,6 baths,6 Toilets +"Newly Built Luxury 5 Bedroom Detached House For Sale In An Estate, Off Chevron Drive, Lekki, Lagos.","Off Chevron Drive, Lekki, Lagos. Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Detached House In A Serene Environment,"Lekky County Homes, Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"60,000",0,1,0,5 beds,5 baths,6 Toilets +Aesthetic 4 Bedroom Duplex,Near Ebeano Supermarket Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Duplex,Two Streets Off Main Gate Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 2 Bedroom Apartment For Sale @ 25,5m","Ikota, Vgc Lekki Lagos Ikota Lekki Lagos",₦,"25,500,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New Luxury 5 Bedroom Units In Lekki,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Renovated 3 Bedroom Flat(all Ensuite),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Luxury Built 4 Bedroom Terraced Duplex With Bq In A Serene Environment,Ikate Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment + Bq,Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,1,0,3 beds,4 baths,4 Toilets +Brand New Excellently Finished 3 Bedroom Apartment Flat,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Terrace Duplex With Swimming Pool And Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Fenced And Gated Parcel Of Land Measuring 10,756sqm","Maroko Foreshore Scheme By Lekki Phase 1, Accessible Through Oriental Hotel, Opposite Shoprite, Backing Queens Drive Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Four Bedroom Semi Detached Duplex At Alpha Beach,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built Terrace Duplex For Sale In Igbo Efon,Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurous And Very Spacious 5 Bedroom Duplex With Bq,Orchid Hotel Road Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Apartment In Lekki Phase 1,By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +400sqm Land For Sale At Ocean Bay Estate,Lekki Phase 2 Lekki Lagos,₦,"24,000,000",0,0,0, beds, baths, Toilets +New 4bedroom Luxury Home With Attached Bq Built On 3floors With Your Own Private Gate,Ikate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,"Location Ikota Gra Inside Ikota Villa By Mega Chicken, Lekki Ikota Lekki Lagos",₦,"80,000,000",0,1,0,5 beds, baths, Toilets +4 Bedrooms Apartment At Lekki Phase 2 Forsale,Ilesan Ilasan Lekki Lagos,₦,"62,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxurious Brand New 4bedroom Semi Detached Duplex For Sale At Orchid Road Lekki.,"Orchid Road, Lekki Axis By Chevron. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Twin Duplex For Sale On Christ Ave, Lekki Phase 1.",Christ Avenue Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury Land For Sale,Nicon Nicon Town Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +3600 Sqm With 800sqm Setback Land For Sale Lekki Phase 1,Providence Street Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Beautiful Newly Built Four Bed Semi Detached House,Agungi Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,2 baths,2 Toilets +5 Bedrooms Fully Detached With 2 Bq Lundry And Store,Northern Forshore Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,Ikota Gra Inside Ikota Villa By Mega Chicken Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,2 baths,2 Toilets +Large Plots Of Land,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Plots Or Land,Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Newly Built 6bedroom Duplex,Igbo Efon Lekki Lagos,₦,"65,000,000",0,1,0,6 beds, baths, Toilets +4 Bedroom Duplex,"Adjacent Chevron Buena Vista Estate,lafiaji, Off Orchid Road Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets +Two Bedroom Apartment, Oral Estate Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Four Bedroom Semi Detached House With A Room Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Five Bedroom Detached House With Bq, Oral Estate Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached House With A Room Bq(mortgage Option Available),Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With A Room Bq,. Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets +"5 Bedroom Duplex Features Swimming Pool,rooftop Terrace,gymnasium,cinema.fully Automated Smart Home.",Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +"Contemporary Designed 6 Bedroom Detached House With Spacious Compound,well Finished House",Gated Estate Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,6 beds, baths, Toilets +Executive 4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached House,... Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,... Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Chevron Estate In Lekki Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace With Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +New Exquisitely Built 4 Bedroomed Semi Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"198,000,000",0,1,0,5 beds,5 baths,5 Toilets +"4 Bedroom Duplex With 2 Self Contained Bqs Located On Chesachi Hani Okoroafor Close , Lekki Phase 1, Lagos.",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,6 baths,7 Toilets +5 Bedroom Duplex + Bq, Chevron Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Northern Foreshore Estate Of Chevron Drive Lekki Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"New Exquisitely Built 5 Bedroomed Duplex In Osapa London, Lekki",Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment At Chois Gardens,"Lekki Abijo, Gra Lekki Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached With Inverter,Near Shoprite Jakande Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Home With Inverter And Refrigerator For Sale In Osapa London,Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,Eletu Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom With Kitchen Stools And Table,Close To Shoprite Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Massive 5 Bedroom Stand Alone Duplex With Bulletproof Doors For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Ultra Modern 4 Bedroom Townhouse With A Bq At Ilasan, Ikate",Ilasan Ikate Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Safe Court Estate Nicon Town Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land Measuring 3 Plots Together,Chevy View Estate Chevron Lekki Lagos,₦,"225,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Units Of 5 Bedroom Detached Houses + Bq, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +"*distress Sales At V.g.c* *landsize* : *2,650 Sqm* *price Now* *n230m & Slightly Negotiable* Fenced & Gated Bareland Located At Road 22a ,v.g.c, Ajah, Available For Sale. *title*: Deed Of Sub Lease.",Vgc Ajah Vgc Lekki Lagos,₦,"230,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Duplex,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex House In A Serene Environment,"Ologolo Village, Eti Osa Agungi Lekki Lagos Agungi Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cofo,Pinncok Estate Ikate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built, Tastefully Finished & Luxury 5brm Detached House + Bq @ Vgc, Lekki. #190m",Vgc Garden Vgc Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land For Sale In Lekki (gracias Beach Front),Off Monastery Road Lekki Lagos,₦,"12,000,000",1,1,0, beds, baths, Toilets +Land For Sale In Lekki (gracias Atlantic View),Off Monastery Road Sangotedo Lekki Lagos,₦,"8,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Duplex,Chevron Streer Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets +Beautiful Value Centric Starter Homes/investment Properties. Top Notch And Well Finished With Modern Appurtenances In A Great Neighbourhood.,"Location: Ikate, Lekki Ikate Lekki Lagos",₦,"28,000,000",0,1,1,2 beds,2 baths,2 Toilets +900sqm Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distressed 5 Bedroom Semi Detached House,... Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Direct 1800 Land At Victory Park Estate,",... Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +450sqm Dry Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Sqm Land With C Of O,Victory Park Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meters Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Lekki Lagos,₦,"45,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detarch Duplex,Johnson Omorine Strt Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex.cdv Eastete Lekki,Cdv Eastate Akinmade Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Conuty Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Semi Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxury Built 5 Bed Duplex With 2 Family Lounge And A Private Kitchen,Olanrewaju Ninolowo Strt Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"260,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bed Home With A Swimming Pool And Gym,Near Circle Mall Shoprite Lekki Phase 2 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex At Lekki Axis Lagos,Chevron Lekki Lagos,₦,"30,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terraced With A Bq,Close To Shoprite Circle Mall Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex And Semi Detached Duplex At Lekki Axis Lagos,Chevron Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,5 baths, Toilets +Newly Built 3 Bedroom Terrace Duplex At Lekki Axis Lagos,Close To Chevron Toll Gate Axis Lekki Lagos Chevron Lekki Lagos,₦,"38,000,000",1,1,1,3 beds,4 baths, Toilets +5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq @daniels Garden Lekki,By Chevron Agungi Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,6 baths,6 Toilets +Meridian Boulevard,Lekki Scheme 2 Okun Ajah Lekki Phase 2 Lekki Lagos,₦,"14,500,000",0,0,0, beds, baths, Toilets +Perimeter Court 1,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +*3 Bedroom Terrace Duplex With Bq @bella Home Phase 1,By Chevron Chevron Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Luxury Home, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Semi Detached Duplex With Bq @eli Court Lekki,Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With One Room Bq,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +7 Hectares Of Land For Sale,Oral Estate Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +Well Finished 5 Bedroom Terraced Triplex,"Horizon 2 Main, Meadow Hall Drive Ikate Lekki Lagos",₦,"70,000,000",1,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom With Bq In A Serene Environment (nicon Town Estate),Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex.,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex.,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,2nd Toil Gate. Lekki Phase 2 Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplexes,"Beta Estate, Chevron Drive Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +7 Bedroom Duplex,Chevron Lekki Lagos,₦,"85,000,000",0,1,1,7 beds,7 baths,7 Toilets +5 Bedrooms Detached House With A Room Boys Quarter,"Bera Estate, Chevron Drive, Lekki Peninsula, Lagos. Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedrooms Terrace For Sale,Lekki Phase 2 Lekki Lagos,₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Flat Of Three Bedroom Ensuite On Six Floor With Elevator At Ikate,Ikate Elegusi Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Well Developed Estate For Sale,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Newly Built Hotel,Jakande First Gate Jakande Lekki Lagos,₦,"1,900,000,000",1,1,1,10 beds,10 baths,10 Toilets +2 Bedroom Luxury Flats With Ultramodern Facilities,Pascal Offiah Close Jakande Lekki Lagos,₦,"33,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxury 3 Bedroom Flats With Ultramodern Facilities (off Plan),Pascal Offiah Close Jakande Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex And 1 Bq,... Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Completed 5 Bedroom Detached Duplex,Chevron Round About Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +"John Great Court, Lekki, Two Beautiful 5 Bedroom Townhouses",Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedrooms Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Barolla Estate, 12 Terraced Houses Available",Adedeji Adekola Street Lekki Phase One Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Chevy View Estate, Lekki, 10 Modern Housing Units Of 4 5 Bedrooms.",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Bayview Estates, 100 Units For Sale",Ikate Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +"4 Bedroom Twin Duplex For Sale (lekki, Idado)",Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Bridgegate Estate, Lekki, 4 Housing Units Of 5 Bedrooms",Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Maiyegun Beach Estates, 200 Luxury Plots",Jakande Lekki Lagos,₦,"191,000,000",1,0,0, beds, baths, Toilets +"Orchid, Lekki. 6 Modern Housing Units Of 4 – 5 Bedrooms.",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +Off Plan 3 Bedroom Apartments,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,3 Toilets +Beautifully Finished Spacious 4 Bedroom Terraced Duplex.,Orchid Hotel Rd. Chevron Toll Gate. Lekki Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds, baths, Toilets +Newly Built Block Of Flats In A Serene Estate And Environment,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Four (4)bedrooms Semi Detached House With Bq At Vgc, Lekki,lagos",Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Block Of Flats In A Serene Estate And Environment,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,4 Toilets +Land With C Of O For Sale In Lekki ( Frontier Estate),Bogije Lekki Lagos,₦,"13,000,000",1,1,0, beds, baths, Toilets +7 Bedroom Fully Detached Duplex With 4 Rooms Guest Chalet,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"440,000,000",0,0,0,7 beds, baths, Toilets +Luxury 5 Bedroom Duplex In A Serene Environment,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exotically 4 Bedroom Semi Detached Duplex In Creek Avenue Court Lekki. Pay And Pack In.,Back Of Okota School Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Chevron Toll Gate , Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds, baths, Toilets +Genuine Lekki Scheme One Plots,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000",0,0,0, beds, baths, Toilets +Nlng Cowrie Creek Estate,Nlng Ikate Lekki Lagos,₦,"115,000,000",0,1,0, beds, baths, Toilets +Luxury Houses Pinnock Beach,Updc Pinnock Beach Osapa London Lekki Lagos,₦,"180,000,000",1,1,1,6 beds,8 baths,8 Toilets +Smart Win Homes Estate Plots,Orchid Hotel Road Lafiaji Ikota Lekki Lagos,₦,"15,000,000",1,1,0, beds, baths, Toilets +Distress Sale Detached House,Oriwu Street By U3 Estates Lekki Phase 1 Lekki Lagos,₦,"93,000,000",0,1,0,5 beds,7 baths,7 Toilets +Distress Sale 1100sqm Plot,Chevron Twinlakes Chevron Lekki Lagos,₦,"130,000,000",0,1,0, beds, baths, Toilets +Megamound Lekki County Estate,Lekki County Ikota Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets +Land Measuring 950m2,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +4 Nos 3 Bedroom Terraced House With 1 Room Boys' Quarter,Bera Estate By Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets +Prime Land For Sale,Orchid Road By Orchid Hotel Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex With Bq At Chevron,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Bq At Chevron,Chevron Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Newly Built 2 Floors Building For Office, School, Hotel Or Factory /warehouse",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,1 beds, baths, Toilets +Newly Built Duplex,Canal View Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built & Partly Furnished 4 Bedroom Detached House At Lekki Phase 1 N120m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets +Distress Vendor Property,Acadia Grove Osapa London Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Pinnock Beach Plots,Pinnock Beach Osapa London Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +758 Sqm Land,By Oral Extension Area Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 950m2,Twin Lake Estate Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom House With 1 Room Bq,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +A 5 Bedroom Detached House With 1 Room Bq And Swimming Pool,Nicon Town Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +We’ve Got A Brand New 4 Bedroom Terrace Duplex With A Room Bq At Orchid Road.,Orchid Road Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With A Bq,"Conservation Road, Orchid Side Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 8 Units Of 3 Bedroom Terrace,"Pacific Court, Orchid Chevron Lekki Lagos",₦,"38,000,000",0,1,0,3 beds,3 baths,3 Toilets +Very Sweet Brand New 4bedroom Semi Detached Duplex At Orchid Road,Orchid Road Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With 4 Units Of 2 Bedroom Flat On 900sqm Land At Ologolo Opposite Agungi,Ologolo Ologolo Lekki Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tasted Beautiful Five Bedroom Fully Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Urgent Land For Sale 2plot Dry Land,V I Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,0 beds,0 baths,0 Toilets +This Magnificent Five Bedroom Fully Detached Duplex At Ikate Lekki Phase One Very Very Beautiful,Lekki Phase 1 Ikate Lekki Lagos,₦,"100,990,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lafaiji Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Well Finished 2bedroom With Bq At Jakande First Gate Ilasan,Ilasan Jakande Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Semi Detached Duplex,Eligansa Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +N170million Each: Detached House In Lekki Phase One,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds, baths, Toilets +"Dry,flat Plot Of Land In A Fully Developed Neighbourhood At Oluwa,abijo Gra Lekki #6m",Abijo Gra Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Detached Bungalow With Bq On A 650sqm,Mayfair Garden Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With A Bq,"Ikate, Near Chisco Ikate Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Exquisite 4 Bedrooms Detached Duplex, Lekki","By Lekki Conservation Road, Lekki Lekki Lagos",₦,"53,000,000",1,1,0,4 beds,4 baths,5 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds, baths, Toilets +4 Bedroom + 1 Rm Bq Setback In Front,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,4 baths,5 Toilets +Massive 4 Bedroom Stand Alone Duplex With Bq,Near Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"For Sale: 4 Bed Townhouse With A Bq , Study And 2 Living Rooms, 4 Toilets And 3 Baths",Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,3 baths,4 Toilets +7bed Room Detached House With 2rooms Bq N 2bedroom Flat Chalet All Room Ensuit With 3 Sitting Room,Atlantic View Estate Lekki Lagos,₦,"85,000,000",0,0,0,7 beds, baths, Toilets +Plot Of Land Measuring 650m2 At G. Kappa Estate Before Shoprite Sangotedo Lekki Ajah Lagos,Sangotedo Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Well Maintained 3 Bedrooms Terrace Duplex With Bq Off Fola Oshibo,lekki Peninsula Phase 1.#50m Net",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds, baths, Toilets +Lagoon Front 4 Bedroom House (under Construction),Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Tastefully Finished 3 Bedroom Duplex At Lekki Gardens Estate,phase2 Along Lekki Epe Express,lagos","A Lekki Gardens Estate,phase2 Along Lekki Epe Express,lagos Lekki Lagos",₦,"30,000,000",0,0,0,3 beds, baths, Toilets +"2units Of 5bedroom Detached House @ikota Megamond, Lekki 120m Per Unit",Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds, baths, Toilets +"2units Of 4bedroom Semi Detached House In A Serene And Mini Estate At Ikota Villa By 2nd Toll Gate, Lekki Lagos",Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom En Suite Terraced Duplex,Lekki Garden 3 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,0 baths,0 Toilets +Serviced Brand New 4 Bedroom House With 24 Hour Power Supply And A Bq For Sale In Lekki,Orchid Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Home With A Bq,Spg Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Aesthetic 5 Bed House With A Bq,Near Total Agungi Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached With Bq,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Dele Ogunbowale Crescent Ikate Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Duplex With Boys Quater,Bera Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Luxurious 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land Measuring 175 Plots (minimum Plots To Be Sold Is 6 Plots @ 50m/plot),Chevron Drive Opposite Carlton Gate & Bourdillon Court Estate. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Measuring 2775.80 Sqm,"Beside Parktonia Hotel, Directly Along Lekki Epe Expressway Ikate Lekki Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Luxury 3bedroom Duplex For Sale At Lekki Gardens,Lekki Gardens Phase 4 Lekki Lagos,₦,"29,000,000",0,1,0,3 beds,3 baths,3 Toilets +Executive Brand New 5 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With Bq At Bera Estate By Chevron Drive,Bera Estate Chevron Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,5 baths,5 Toilets +Newly Built Extremely Well Finished One Bedroom Terrace (on Two Floors)house,Orchid Road Ikota Lekki Lagos,₦,"23,000,000",1,1,0,1 beds,2 baths,2 Toilets +Covequest 5 Bedroom Terraced Duplexes,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Finished 5 Bedroom Detached House With A Pool,Olowo Eko Street Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +"A Terrace 4 Bedroom Duplex Serviced Apartment,with Well Equipped Children Playing Ground And Treated Borehole Watwr","12,elegushi Streer Ikate Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Boys Quarters,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroms Fully Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Chevy View,Chevy View Chevron Lekki Lagos,₦,"57,000,000",0,1,0,5 beds,5 baths,5 Toilets +Location : Ojulari Road Beside Safe Court Apartment | Behind House On The Rock Size : 4411 Sqm Title: Government Consent Price: 1 Billion,Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"Plots Of Land, Atlantic Courtyard Estate, Okun Ajah",Okun Ajah Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex With Bq Bakare,Bakare Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Chevy View,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Sangotedo Lekki. (amity Estate),"Amity Estate Is Located At Sangotedo, Lekki Lekki Lagos",₦,"16,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With 2 Bq,Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,1,0,7 beds,7 baths,7 Toilets +Land For Sale At Cheap Rate With Promo Price,Lekki Phase 2 Lekki Lagos,₦,"12,350,000",0,1,0, beds, baths, Toilets +Good Location C Of O Land For Sale In Lekki (pertinence Ltd),"Inside Beechwood Estate, Shapati, Lekki. Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets +Serviced 2 Bedroom Penthouse Lekki Phase 1 50m,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Lekki Phase 2 Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom With Bq And Pool Lekki County,Lekki County Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With 2 Bq And Pool Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,7 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex Osapa London,Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Lekki (bank Estate),It Is 14 Minutes From The Lekki International Airport. Lekki Lagos,₦,"4,500,000",1,1,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached With Bq In Orchid,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 5 Bedroom With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths, Toilets +Affordable Land For Sale,Lekki Phase 2 Lekki Lagos,₦,"4,800,000",0,0,0, beds, baths, Toilets +4bedrooom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq Lekki Phase 1,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq Osapa,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +C Of O Land For Sale (vip Gardens Pertinence Ltd),Lakowe Golf Course Lekki Lagos,₦,"7,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq Lekki County,Lekki County Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,6 Toilets +3 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With 2 Bq And Pool,Pinnock Beach Estate Lekki Lagos,₦,"440,000,000",0,1,0,7 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex Chevron 60m,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq And Pool Pinnock,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Pinnok Beach Estate Osapa London Lekki Lagos,₦,"450,000,000",0,1,0,6 beds,6 baths,6 Toilets +C Of O Land For Sale (dpk Estate Sangotedo),"Adjacent Emperor Estate And Shoprite, Sangotedo. Lekki Lagos",₦,"19,000,000",1,1,0, beds, baths, Toilets +C Of O Land For Sale In Sangotedo (lexington Gardens),Lexington Gardens Is Close To The Expressway And In Close Proximity To Shoprite. Lekki Lagos,₦,"19,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq And Pool Pinnock,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq Price: 80m Location: Lekki,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex With Bq Lekki,Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Lekki With C Of O At (creek Avenue Court),"After Chevron Toll Gate, Ikota Lekki Lagos Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets +Land In A Modern Area For Sale At Promo Price,Lekki Phase 2 Lekki Lagos,₦,"11,850,000",0,1,0, beds, baths, Toilets +3 Bedroom Terrace Duplex With Bq,Lekki Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq And Pool,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,6 Toilets +3 Bedroom With Bq Chevron 35m,Chevron Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"95,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex With Bq Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Ikate 5 Bedroom Detached Duplex With Bq,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq Ikota,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land For Sale In Sapati Lekki (grand Lux Estate),"Bule Pan, Sapati Lekki Before Eleko Lekki Lagos",₦,"4,500,000",1,1,0, beds, baths, Toilets +"Luxury 5 Bedroom Detached Duplex, Pinnock Beach Estate, Lekki",Pinnock Beach Estate Jakande Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex On Lekki Phase 1,Owolabi Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semidetached Duplex,Bridgegate Estate Agungi Lekki Lagos,₦,"65,000,000",1,0,1,5 beds,5 baths,5 Toilets +3 Blocks Of 3 Bedroom Flat With A Bq In Osapa London Lekki,2 Minites Away From Circle Mall Osapa London Lekki Peninsular Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly And Uniquely Built 5 Bedroom Detach Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"198,000,000",0,1,1,6 beds,6 baths,7 Toilets +Flash Sale: Pay N38m And Spread Balance For This 4bedroom Semidetached,Oral Estate Lekki Lagos,₦,"49,000,000",1,0,1,5 beds,4 baths,6 Toilets +4bedroom Semi Detached Duplex With Boys Quarter,Chevron Lekki Lagos,₦,"53,000,000",0,1,1,5 beds,5 baths,6 Toilets +4bedroom Duplex Strategically Positioned Close To Chevron. Just About 5minutes Drive From Lekki Toll Gate.,"Chevron Area, Lekki Chevron Lekki Lagos",₦,"51,000,000",0,1,0,4 beds,5 baths,5 Toilets +It Is A Lovely 4 Bedroom Terrace Duplex With All Rooms Ensuit,Lekki Garden 3 By Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Gorgeous And Most Affordable 1bedroom Apartments Available For Sale In Oral Estate, Lekki.",Oral Estate Lekki Lagos,₦,"18,000,000",1,1,1,1 beds,1 baths,1 Toilets +"5 Bedroom Semi Detached Duplex On 540 Sq. M At Carlton Gate Estate, Chevron Drive, Lekki",Chevron Lekki Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,5 Toilets +Oceanview 4bedroom Mesionate With Lounge And Lobby For A Lovely Dinner Outing And Bar,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +It Is A Lovely 4 Bedroom Terrace Duplex With All Rooms Ensuit,Lekki Garden 3 By Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,1, beds, baths, Toilets +Pack Into Your 4bedroom Serviced Semidetach Along The Express With Swimming Pool With 24hours Electricity,By Opposite Vgc Vgc Lekki Lagos,₦,"49,999,999",1,1,1,4 beds,4 baths,5 Toilets +C Of O. A Lovely 4 Bedroom Detached Duplex,Stillwater Garden Estate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets +4bedroom Semidetached Duplex In Ikota Villa Estate,Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semidetached Duplex With Bq N65m,Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,5 beds,5 baths,5 Toilets +Flash Sale : Own A Newly Built 3bedroom Terrace With Just N1m Initial Deposit,Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built Apartment,Chevron Lekki Lagos,₦,"34,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex With C Of O,Stillwater Garden Estate Ikate Elegushi Area. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Service Apartment For Sale,Lekki Phase 1 Lekki Lagos,₦,"35,000,000",1,0,1,3 beds,3 baths,3 Toilets +Beautifully Painted 4bedroom Semi Detached,Ikota Lekki Lagos,₦,"34,000,000",1,1,1,4 beds,4 baths,4 Toilets +Distressed Sale For Half Plot Of Land Close To Shell Cooperative For Sale,Chevron Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +"For Sale:fully Furnished Service 2bedroom Flat @ Ikate, Lekki",Ikate Lekki Lagos,₦,"60,000,000",1,1,1,2 beds,2 baths,2 Toilets +Lovely Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 2 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +Lovely Five Bedroom Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Beautifully Built 4 Bedroom Duplex With A Room Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedroom Duplex, Agungi Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Townhouse With A Penthouse,"Springbay Estate 3 Bakare Street, Off Ayigoro Street Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,3 baths,4 Toilets +A 4 Bedroom Town House With A Penthouse In A Superbly Managed Estate,"Springbay Estate 3 Bakare Street, Off Ayigoro Street Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",1,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Terraces,Chevron Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds, baths, Toilets +Governors Consent,Chevy View Chevron Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds, baths, Toilets +Brand New 4 Bedroom Fully Detached Duplex.,"Ikota Villa Estate, Ikota Lekki Ikota Lekki Lagos",₦,"85,000,000",0,1,1,4 beds, baths, Toilets +Governor’s Consent,"Bera Estate, Chevron Drive, Lekki Lagos State Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds, baths, Toilets +30 Room Hotel Situated In The Heart Of Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets +20 Room Hotel,Chief Collins Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 5bedroom Fully Terraced Duplex + Bq,"Megamound Estate, Lekki , Lagos Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,5 Toilets +Units Of 2/3bedroom Flats Available For Up Plan Purchase,Chisco Bus Stop Ikate Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Duplex,Beechwood Estate Lekki Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Beechwood Estate Lekki Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex For Sale,Beechwood Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 And 5 Bedroom Duplexes For Sale,"Buena Vista Park, Chevron Lekki Chevron Lekki Lagos",₦,"57,000,000",0,1,0,5 beds,4 baths,4 Toilets +Petrol Station,Lekki Express Way Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 8 Units Of 4 Bedroom Terrace Duplex,Atlantic View Estate Alpha Beach Chevron Lekki Lagos,₦,"30,000,000",0,1,0,4 beds,2 baths,2 Toilets +Land,"Pinnock Beach Estate, Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Nos Five Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +700sqm Land For Sale @ Vgc,... Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Nicon Estate, Nicon Town Lekki Lagos",₦,"920,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Northern Foreshore Estate,chevron Drive, Lekki Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +300 Plots Of Land Measuring 500sqm,... Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Terrace With Maid's Room ( Off Plan),"Lekki Right, Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +5bedroom Duplex With 2rooms Bq,... Lekki Phase 2 Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +800sqm Corner Piece Land,Cowrie Creek Estate Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"C Zone, Nicon Town Lekki Lagos",₦,"255,000,000",0,0,0,0 beds,0 baths,0 Toilets +House ( Off Plan), Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,"A Zone, Nicon Town Lekki Lagos",₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Parkview Estate, Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced And Gated Bare Land,Lekki Scheme 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Pinnock Beach Estate, Lekki Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Fenced And Gated Bareland Measuring 1,137sqm","Lekki Scheme 1, Off General Emdim Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,6 baths,6 Toilets +950sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Massive 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +Waterfront Land,"Pinnock Beach Estate, Lekki Lagos",₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Pinnock Beach Estate, Lekki Peninsula Lekki Lagos",₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,"Pinnock Beach Estate, Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1146sqm ,Off African Lane Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedrooms Semi Detached House With Two Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,0 baths,0 Toilets +Land,"Block 108, Plot 16. Ola Adelekan Close. Off Gen Edmin St, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 800sqm Plot Of Land,Cowrie Creek Estate Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Fully Detached House With Pent House,... Nicon Town Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Melrose Park, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +980sqm Land,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedrooms Flat With Good Facilities, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +"93 Land For Clearing & Road Work ,investor Get 192 Plot""at Lekki Eleko Sheard Fenced With Amen Estate Phase2 Land ,, Emen Estat Is Sailing Per Plot #15million [redacted]","93 Acres Clearing & Road Work ,investor Get 192 Plots, At Lekki Eleko, The Land Is Facing Express , Sheared Boundry With Emen Estate Land 08063022968 08080842955 Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0, beds, baths,7 Toilets +Land For Sale 2 Plot Facing The Express At Ajuwe Ajah,"At Lekki Ajah Ajuwe, The Land Is Facing The Express Directly, 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom,Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +90% Complete 7 Bedroom Duplex,Omo Oba Olukolu Vgc Igbo Efon Lekki Lagos,₦,"85,000,000",0,1,0,7 beds,7 baths,7 Toilets +"For Sale Toyota Seana, Good Working Condition,at Lekki Ajah",For Sale Toyota Sienna Lekki Phase 1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0, beds, baths, Toilets +Excellent 4 Bedroom Terrace / Duplex,"Off Busola Durosinmi Etti Drive, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"190,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Luxury Duplex At Osapa London,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets +"2 Plots Of Land, A Corner Piece, In Jakande , Off Lekki Beach Road.","Gbara Street, Off Lekki Beach Road Jakande Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Daniels Gardens Lekki,Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,6 Toilets +5 Bedroom 2 Story Duplex And A Bq, Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious Apartment In Green City Lekki Phase 1,"Goshen Road, Elf Bustop, Second Round About, Petrocam Filling Station And City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Green City Estates ( 3 Bed Room Flat),"Green City Estates: Elf Bustop, 2nd Round About By Petrolcam Filling Station And City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,3 Toilets +"5bedroom Duplex,one Room Bq With Swimming Pool On 550sqm",Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 4 Bedroom Detached Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,1 Toilets +"Luxury 4bedroom Fully Detached Duplex Plus Bq 2 Living Room And Cctv Etc, At Jakande Lekki",Jakande Lekki Jakande Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusive House Offers At Lekki Phase 1,"Goshen Road, Elf Bustop, Petrolcam Fueling Station, Very Close To City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exclusive House Offers At Lekki Phase 1,Elf Bus Stop Close To The Petrocam Fueling Station Near City Lodge. 2nd Roundabout Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,1 Toilets +Three Bedroom Apartment At Lekki Phase 1,"Green City Lekki: Is Located At Elf Bustop , 2nd Roundabout By Petrolcam Filling Station And City Lodge Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 4bedroom Fully Detached Duplex Plus Bq At Ashapa London Lekki,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With Bq At Bella Homes 1,Lafiaji Community Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,4 baths,5 Toilets +"4 Bedroom Fully Detached Duplex With Bq At Royal Palm Estate Along Orchid Road,behind Oral Estate Ikota Lekki,title Governor Consent",Lekki Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,5 baths,5 Toilets +"3 Unit Of A Newly Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,and A Wine Bar At Lekki Phase 1",Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Landinvest Lekki, Ibeju Lekki Lagos",Lekki Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +Luxury 4bedroom Semi Detached Duplex For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq Newly Built At Asapa London Lekki With Governor Consent Furnished,Lekki Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished Newly Build 5bedroom Fully Detached Duplex On 360 Sqm With A Bq Close To Shoprite Call Me And Asking For More Picture,Lekki Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Smart 4 Bedroom & 5 Bedroom Detached Duplex For Sale At Lekki Lagos,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +"3 Bedroom Apartment, Lekki Phase 1,","Goshen Road, Elf Bustop, Petrolcam Filling Station Very Close To City Lodge Hotel Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Land For Sale 560 Sqm, Inside Lekki Phase 1","Land Fir Sale 560 Sqm ,#120m Inside Lekki Phase1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0, beds, baths, Toilets +"Land For Sale ,1000sqm Facing Admiralty Road Lekki Phase 1","Land Ffor Sake 1000 Sqm, Price #320m Inside Lekki Phase1 08063022968 08080842955 Lekki Phase 1 Lekki Lagos",₦,"320,000,000",0,0,0, beds, baths, Toilets +Land For Sale One Plot Inside Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +"Exotic 2020 Real Estate Investment Offer With Very Juicy Returns And A Trip To Dubai.invest In Lekki Pearl Garden, Abijo","Beside Amity Estate,lekki Epe Expressway Ikate Lekki Lagos",₦,"10,000,000",0,1,0, beds, baths, Toilets +Neatly Renovated 4 Bedrooms Detached Cornerpiece Duplex,Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds, baths, Toilets +Brand New Beautiful 4bed Duplex,Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Cofo,"7,abijo Street, Lekki Lekki Phase 2 Lekki Lagos",₦,"110,011,000",0,1,0,3 beds,2 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Chevron Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Cornerpiece Land Measuring 900sqm,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 400sqm,"Lake View Park 2 Estate, Along Orchid Road By Chevron Toll Gate Chevron Lekki Lagos",₦,"29,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Cornerpiece Land Measuring 800sqm,Bera Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,Ikota Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +Joint Venture (jv): Cornerpiece Land Measuring 4 Plots,Off Nevada Hotel Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Two Contiguous Waterview Plots, Measuring Approximately 2500sqm And Duly Fenced","Plots A 93 & A 94, Road 2, Vgc Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Pool And Gym,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +1900sqm Land Allocated For Petrol Filling Station(pfs), Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exceptional 4 Bedroom Off Plan Development In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"104,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Newly Built,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +700sqm Of Land After Victoria Crest 3 Orchid Road,Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat Newly Built For Sale,Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,1,0,2 beds,2 baths,3 Toilets +Brand New And Serviced 3 Bedroom Flat With A Bq + 24hrs Electricity,"Bourdillon Court, Chevron Drive Chevron Lekki Lagos",₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Distress Sale 3 Bed Rooms Boungalow,at Lekki Sangotedo Shop Rite Area",Sangotedo Lekki Phase 1 Lekki Lagos,₦,"15,000,000",1,1,1,3 beds,3 baths,3 Toilets +"Newly Built 3 Bedrooms Triplex In Oribanwa, Lekki Peninsula","Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"23,670,000",1,1,1,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached,Chevron Drive Chevron Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace N Serene Environment,Chevron Alternative Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxury Finished 4 Bedroom Fully Detached Duplex With Bq (creek Avenue Court Phase 2),After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq (bella Homes Phase 2),Toll Gate Axis Lekki Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,4 Toilets +Governors Consent,"Adedayo Ogunsanya Street Ivy Home Ikota,lekki County Homes Ikota Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 3 Bedroom Terrace Duplex With Bq Morgage Available,Lafiaji Orchid Road Oral Estate Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedrooms Semi Detached Duplex,Oando Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat,Oando Road Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedrooms Fully Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom And 4 Bedroom Smart Home Technology Duplexes For Sale,"Orchid Hotel Road, 2nd Toll Gate Lekki Lagos Lekki Lagos",₦,"62,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built 4bed Duplex,Toll Gate Chevron Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +For Sale: 6 Bedroom Mansion,Vgc Lekki Lagos,₦,"330,000,000",0,0,0,6 beds,8 baths,8 Toilets +"5 Bedroom House All Rooms En Suite For Sale At Nicon Town, Lekki Lagos.","Road 10, C Zone, Nicon Town Nicon Town Lekki Lagos",₦,"222,000,000",0,0,0,5 beds,5 baths,6 Toilets +"6 Flats At Agungi, Lekki Lagos For Sale.",Agungi Lekki Lagos Agungi Lekki Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Fully Detached [email protected],Ikota Lekki Lagos,₦,"100,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex In Serene Area,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 5bedroom Duplex At Cheveron Lekki Lagos,Orchid Road Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land At Lekki Pearl Garden Abijo,Lekki Lagos,₦,"10,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace At Lekki,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Semi Detached Duplex With Two Room Bq At Lekki,Church/ Paul And Peter Street Off Admiral Macaulay Close Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 4 Bedroom Terrace Duplex With 1 Room Bq At Lekki,Oba Yekini Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Lekki,Orange Island ( Residential Phase) Lekki Phase 1 Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +Mansion At Lekki,Plot 9/11 Road 24 Off Road 27 Ikota Lekki Lagos,₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets +Exquisite Newly Built 5 Bedroom Semi Detached Duplex At Lekki,Ojo Oyewo Road Idado Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets +Semi Detached 5 Bedroom Duplex At Lekki,Ayinke George Street Off Palm Springs Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"2 Units Of 3,4 And 5 Bedroom Duplex At Lekki",Sillicon Valley Estate Augustina Orji Street Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex + Bq At Lekki,Off Palm Springs Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Three Bedroom Terrace Duplex With Room Bq At Lekki,Prince Ademola Street Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,"19, Dele Adeyemi Street Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Units Of 4 Bedroom Terrace Duplex At Lekki,"Palm Springs Road, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +30 Units Of 3 Bedroom Flat At Lekki,Adenike Ajibode Street Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedroom Terrace At Lekki, Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Lekki Garden's Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished 5bedroom Detached Duplex,"Whitesand School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,0 baths,5 Toilets +5 Bedroom Detached House In V.g.c,Vgc Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,4 baths,5 Toilets +Land For Sale,Elegushi Street Off Ajifoluke Commissioner Road Oba Yekini Adeniyi Elegushi Unity Estate Iroko Awe Lekki Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With 1 Room Bq,Off Durosimi Etti Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex + 2bedroom Bq,"16a, Oladimeji Alao Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced And Perfectly Finished 4 Bedroom Semi Detached Duplex With A Room Self Contain Bq,"Cooplag Estate, Immediately After Second Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,"Otunba Wale Olufeko Drive, Off Emmanuel Emenike Street Chevron Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment,Ocean Bay Estate Chevron Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex With A Bq,Off Akeem Dickson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +A Solid And Sound 5 Bedroom Semi Detached Duplex Plus A Room Bq,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedrooms Semi Detached House With 2 Rooms Bq, Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,"Elegushi, Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Units Of Of 5 Bedroom Semi Detached Houses,... Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,"Agungi, Lekki Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Idado Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Terraced Houses With Bq, Shared Pool & Gym",Ikate Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fenced And Gated Plots Of Land,Behind Dillion Office Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely Well Built 4 Bedroom Detached House With Bq,Ikate Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraces,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Richmondgate Estate Ikate Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached House With Bq,Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Kazeem House Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Osapa Road Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Ikate, Lekki Ikate Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +30 Rooms Exotic Hotel,"Eleko, Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished Luxury 5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 5 Bedroom Detached Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached,Idado Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,"Ikate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Duplexes With Excellent Facilities,"Ilasan, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,"Agungi, Lekki Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace With Bq.,Close To Lekki 1 Ikate Lekki Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +12 Units Of 5 Bedroom Detached House For 80milion,... Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,"Northpointe Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,"Agungi, Lekki Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Adekola Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Excellent 4 Bedroom Detached Duplex With Good Facilities, Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedrooms Flat With Excellent Facilities,Lekki Free Zone Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terraced Duplex,Off Kusela Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Luxury 5 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Bare Land Measuring 1147 Sqm,Off Africa Lane Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,"Richmondgate Estate, Ikate Ikate Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Furnished 41 Rooms Hotel,... Chevron Lekki Lagos,₦,"1,500,000,000",0,1,1,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Mobil Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Agungi, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Terrace With Two Ensuite Bqs,Jakande Lekki Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached House @ Pinnock Beach Estate, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets +Executive 5 Bedroom Duplex With 2rooms Bq,"Pinnock Beach Estate, Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Flat With Excellent Facilities,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury And Superbly Finished 4 Bedrooms Detached Duplex With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Duplex With Excellent Facilities,West Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House @ Pinnock Beach Estate,... Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Osapa Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 3 Bedroom Flat,Richmondgate Estate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq In Serviced Estate,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusively Finished 5 Bedroom Luxury Family Home Fully Detached Plus Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land, Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Ologolo Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Good Facilities,Osapa Road Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex With Excellent Facilities,"Orchid Way, Lagos Ikota Lekki Lagos",₦,"33,500,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished Luxury 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Flat With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Orchid Way Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached Duplex With Excellent Facilities,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,"Northern Foreshore, Chevron Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Ganiyu Street Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Idado Estate; Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached House @ Pinnock Beach Estate, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets +17 Nos Apartment Building,"Babafemi Osoba Street, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"650,000,000",0,0,0,3 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex + 1 Room Bq, Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace Duplex,"Ikota Villa, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Bedroom Bq,"By Hakeem Dickson Street, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 2 Units Of Massive 5 Bedroom Fully Detached Duplex Plus Bq,In A Secure Estate On Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House @ Pinnock Beach Estate,... Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 5 Bedroom Duplex Mansion,... Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Orchid Way Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built Elegant And Sophisticated 5 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Villa Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex,"Ikota Villa, Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Marwa Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Alperton Residences Osapa London Lekki Lagos,₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Carcass 4 Bedrooms Terraced Duplex With Excellent Facilities,"Ilasan, Lekki Lagos",₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Duplex In Lekki,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Terraced Duplex With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Maisonette,Richmondgate Estate Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Circle Mall Road Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Milverton Estate Osapa London Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +New 4 Bedroom Townhouse,Richmondgate Estate Ikate Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedrooms Semi Detached Duplex With A Bq,By Second Toll Gate Lekki Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,5 baths,4 Toilets +4 Bed Semi Detached Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Chevron Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,. Ologolo Lekki Lagos,₦,"53,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedrooms Terraced Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,6 Toilets +690sqm Of Land,Off Alpha Beach Admiralty Estate Igbo Efon Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,1,5 beds,4 baths,5 Toilets +Luxury 4bedroom Duplex + Bq,Opposite House On The Rock Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Spacious 4 Bedrooms Semi Detached Duplex With Bq,By Femi Okunu Road Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,"Whitesands School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 4 Bedrooms Terrace Duplex,Behind Elegushi Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Plots Of Land At Southern Greens Estate,"After Stonehedge Estate, Orchid Road Lafiaji 2nd Roundabout Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 650sqm,Atlantic Beach View Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom Duplex + Bq,Behind Megachicken Ikota Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Terrace Duplex,Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets +Lekki Jv,They Are In Lekki Axis Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Massive Hotel Fully Furnished,It On Chevron Road Chevron Lekki Lagos,₦,"1,200,000,000",1,1,1,10 beds,10 baths,10 Toilets +Plots Of Dry Land By Orchid Hotel Road,Lafiaji Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,1,0,10 beds,10 baths,10 Toilets +4 Bedroom Duplex At Osapa London.,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,7 baths,7 Toilets +Exquisite 4 Bedrooms Semi Detached Duplex,"About 2 Mins Drive From Circle Mall, Osapa London Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Units Of Townhouse (offplan),Shoprite Area Lekki Phase 1 Lekki Lagos,₦,"104,000,000",1,1,1,4 beds,5 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Executive 5 Bedroom Duplex With State Of The Art Facilities,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Well Finished Luxurious And Spacious 5bedroom Semi Detached Duplex, Off Admiralty Way Lekki Phase1, Lagos. *features*: * Jacuzzi * Oven * Microwave * Swimming Pool * Extractor * Acs * 2fridges And 1 Freezer * Gas Cooker *#200m Asking*",A Very Good Area In Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +3600sqm With Approval For Filing Station,Along Lekki Epe Expressway Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land In Lekki Phase 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Orchid Road By Chevron Toll Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale At Lekky County Homes,Lekky County Homes Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Terrace, Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Okunmopo Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land Measuring 850sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Newly Built Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Plots Together In Agungi,Land Is Before The Bridge Agungi Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Serviced 4 Bedroom Terrace Duplex,Eletu Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex In Vgc,V.g.c Vgc Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,6 beds,6 baths,7 Toilets +For Sell 5bedroom Fully Detached Luxury Duplex In Ikate 135m,In A Very Good Area Of Ikate Ikate Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 4 Bedroom Detached Duplex With One Room Boys Quarter,Agungi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +947sqm In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets + fully Serviced 4 Bedroom Terrace Duplex In Lafiaji,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Penthouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached House, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Lovely 4 Bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detach Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dry Land,Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Orchid Hotel Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Exquisite 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +680sqm Land,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plots Of Land,Orange Island Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Good Land Now Selling At Sagotedo Call Ajayi Apanta Estate Beside Crown Estate And Fara Park Estate,Sangotedo Lekki Exp Way Lekki Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Plots Of Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Terrace Duplex, Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Unique 5 Bedroom Detached Duplex With Domestic Quarter, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 3bedroom Flat At Ologolo For Sale,Ologolo Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 3 Bedroom Terrace Duplex With A Room Boys Quarter At Osapa London Lekki,Prince Ademola Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Plots Of Bareland Facing The Express,"Along Lekki Epe Expressway, Close To Oakwood Hotel Chevron Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land In Ocean Bay Estate,Ocean Bay Estate Along Orchid Hotel Rd Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished Fully Detached 4 Bedroom Massive House With A Room Boys Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +Unique Home Very Special World Class Wow! 4 Bedroom Semi Duplex For [email protected],Chevron Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex At Lekki County,Chevi Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land Measuring 10,000sqm","Directly Along Freedom Way, Close To Orange Land Lekki Phase 1 Lekki Lagos",₦,"120,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 940sqm,Pinnock Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House (self Serviced), Lekki Phase 1 Lekki Lagos,₦,"143,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Osapa London Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Waterfront Land Measuring 3428sqm,"Plot M2, Road 22a, Beside Vgc Sport Club Vgc Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Duplex,Ajiran Agungi Lekki Lagos,₦,"6,500,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Semi Detached House In Ikate,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Terrace, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Semidetached Duplex, Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa Lodon Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +6 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat (off Plan),Spa Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Off Femi Okunnu Road Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Modern 5 Bedrooms Duplex With Swimming Pool For 185m In Lekki Phase 1,In A Good Area Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached House,Elegushi Beach Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land Measuring 1000m2,"Directly Along Admiralty Way, Beside Fidelity Bank Lekki Phase 1 Lekki Lagos",₦,"420,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Semi Detached House,Eletu Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat, Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5300sqm (8 Plots) Land Facing The Express,Along Lekki Epe Expressway Chevron Lekki Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service Plots Of Land,Lekky County Homes Megamound Estate Ikota Lekki Lagos,₦,"95,000",1,1,0, beds, baths, Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +842sqm Sand Filled And Fenced In Agungi,In An Estate Agungi Lekki Lagos,₦,"71,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +House With Bq,Atlantic View Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Rooms Duplex With All Facilities Including S/pool At Lekki Phase 1. Title: *cofo* Asking *:#270million*,A Good Area Of Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,4 beds,4 baths,5 Toilets +*just Out* New 4 Units Of 4bedroom Terrace Duplex With Maid Room,"Atlanic Veiw Estate,alpha Beach Road Ologolo Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 5 Bedroom Detached Duplex,Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +580sqm Land Near Ice Cream Factory,Near The Ice Cream Factory Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Plots Of Land At Ikota, Facing The Lekki Expressway, Adjacent To Vgc", Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Leegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex For Sale In Agungi.,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Town House,"Orchid Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +962sqm Fully Fenced Land,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 4 Bedroom Semi Detached Duplex At Lekki Right, Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Ibrahim Eletu Estate Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,"Agungi, Agungi Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Sand Filled Land,Off Kunsela Road Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex, Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Townhouse,Osapa London Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex, Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +Executive 5 Bedroom Fully Detached House With A Room Boys Quarter,Pinnock Estate Osapa London Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,5 Toilets +A Brand New 4 Bedroom Terrace, Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Beautifully Designed 5 Bedroom Terraced Duplex (serviced),By Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Whiteoak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 950sqm On Freedom Way,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,000sqm At Ikate, Facing Lekki Expressway, Near Oando",Near Oando Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Land Measuring 1,199sqm",Directly Along Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 6 Units Of 5 Bedroom Flat + Bq,Ikate Lekki Lagos,₦,"115,000,000",1,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment + Bq,"Off Femi Okunnu Road, Beside Pinnock Beach Estate Osapa London Lekki Lagos",₦,"52,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex With Bq And Swimming Pool,"Megamond Estate Off Chevro , Lekki, Lagos Chevron Lekki Lagos",₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Right Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +960sqm Land In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace, Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat, Chevron Lekki Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Agungi Agungi Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Fenced Land,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace, Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"949.451sqm Corner Piece Land For Sale Off Mobil Road, Lekki Peninsula Scheme 2",Off Mobil Road Lekki Phase 2 Lekki Lagos,₦,"23,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Exquisitely Finished 4 Units Of 4 Bedroom Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 4 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lekki Right Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 5 Bedroom With Bq,Ajiran Agungi Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment Within A Mini Estate,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Town House,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Flat,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace In Ikate,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +2.5 Hectares Of Land,Facing The Ocean Beside Elegushi Beach Ikate Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Finished 2 Bedroom Apartment,Off Amadasun Street Agungi Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +Executive 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Terrace Duplex,By Conoil Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 1 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"27,000,000",0,0,0,1 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 3 Bedroom Terrace With A Room Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With A Room Boys Quarter At Ikate,Spar Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Massive 7 Bedroom Duplex For Sale In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,8 baths,8 Toilets +3 Bedroom Flat, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex, Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +3000sqm Facing Lekki Epe Expressway With Setback And Car Park,"Along Lekki Epe Expressway, By Vgc Vgc Lekki Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets +Luxury Contemporary Home In Pinnock Beach Estate,Pinnock Beach Estate; Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Mini Flat,Ikate Lekki Ikate Lekki Lagos,₦,"30,000,000",0,0,0,1 beds,1 baths,2 Toilets +Tastefully Finished 3 Bedroom Flat And 4 Bedroom Terrace Duplex,Lekki Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,3 Toilets +Brand New Beautifully Designed 5 Bedroom Terraces With A Room Boys Quarter,Off Babatunde Anjows Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +17.9 Hectares Of Land,Osapa London Osapa London Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Bedroom Flat For Sale In Westend Esate Ikota, Lekki",Westend Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets +1755sqm Land, Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 13 Acres,Maiyegun Lekki Peninsula Beside Access Bank Estate; Jakande Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Units Of Four Bedroom Semi Detached Duplexes For Sale,Osapa Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +1500sqm Land,Hakeem Dickson Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Cornerpiece Land Measuring 3227sqm, Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex For Sale,Orchid Road Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Plots Of Land Directly Facing Orchid Road,"Directly Facing Orchid Hotel Road, Before The Roundabout Chevron Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,"Orchid Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 3500sqm Sand Filled With Federal C Of O,Off Kunsela Road Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +9 Plots Of Dryland At Lafiaji,Lafiaji Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace, Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Megamod Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,6 baths,6 Toilets +A Luxury And Exquisite Newly Built Fully Detached 5 Bedroom Duplex For Sale In Agungi,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"11,500,000",0,0,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Semi Detached Duplex,"Lekki Phase 1, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Flat, Osapa London Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +Tastefully Finished 5 Bedroom Fully Detached House With A Room Boys Quarter,Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets +6 Plots Of Land On Orchid Hotel Road,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 And A Half Plot Of Sand Filled Land,Sand Filled Cornerpiece Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Duplex For Sale In Chevron, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 3 Bedroom Terrace Duplex With A Room Boys Quarter,Eletu Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Lekki County Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Mini Estate Of 3 Bedroom Detached Duplex,Opp Ocean Bay Estate Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New Luxury 5 Bedroom Detached Duplex, Lekki Lagos,₦,"550,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Plot Of Land Near Orchid Roundabout,Near Roundabout On Orchid Hotel Road Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Close To Orchid Hotel,Directly Facing Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Tastefully Finished 4bedroom Fully Detached House With A Room Boys Quarter,Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment Chevi,Chevi View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Town House With 1 Rm Bq In A Mini Estate,Off Resurrection Drive Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Plots Of Land In The Prestiguous Royal Garden Estate,Royal Garden Estate Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +A Lovely 4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +Prime Plots Of Land (govt. Scheme),"Lekki, Abijo Gra, Oworonshoki Foreshore, Isheri North Res, Scheme,rever View Estate Opic Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exquisitely Finished 5 Bedroom Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bed Room Duplex,. Idado Lekki Lagos,₦,"63,000,000",0,1,1,4 beds,4 baths,5 Toilets +946 Sqm In Lekki Scheme 2,Close To Abraham Adesanya Roundabout After Ajah Lekki Phase 2 Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Foe Sale In Chevy View Estate, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +1000sqm Land,Nicon Town Estate Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Mixed Use Land Facing The Express,"Along Lekki Epe Expressway, Close To Oando Filling Station Ikate Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Plots Of Land Facing The Lekki Expressway At Ikota, Near Mega Chicken, Before Vgc",Near Mega Chicken Ikota Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Beautifully Finished 5 Bedroom Duplex With Bq,Around Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +Governors Consent,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Ikate Area Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets +Governor Consent,Buene Vista Estate Orchid Hotel Roaf Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Around Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxurious 4bedroom Fully Detached Duplex And Semi Detached Duplex For Sale At Ikota Lekki.,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury And Beautifully Finished 4 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Very Spacious 5 Bedroom Detached Duplex,Aound Ikate Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Townhouse,Osapa London Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,1 Toilets +Land For Sale,Chevron Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Acre Of Land,Lafiaji Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,"Awoyaya, Behind Green Springs School. Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Plot Of Land 708 Sqm,Bakare Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4bedroom Duplex At Chevron Drive Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex,Off Fola Osibo St Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,2 Toilets +650sqm Land,Bakare Estate Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +450square Metres Land,Great Street At Victory Park Estate Lekki Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +New 4 Bedroom Terrace,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,1 Toilets +Brand New 4 Bedroom Semi Detach Duplex,Ikota Villa Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,4 Toilets +24 Rooms Hotel,Ogunfaya Estate Beside Mayfair Garden Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"C Of O, Governor Consent And Deed Of Assignment, And Other Relevant Documentation",Richard Nwagu Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Lekki Scheme 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Spacious 6 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"130,000,000",0,1,1,6 beds,6 baths,7 Toilets +Newly Built Contemporary Fully Fitted Five Bedroom Fully Detached Duplex House With A Bq,Block G Street At Megamound Estate Ikota Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Land,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detach,Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets +Captivating And Beautifully Built 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Around Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths,5 Toilets +Tastefully Finished 5 Bedroom Duplex,Off Lekki Expressway . Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Beautifully Finished 4 Bedroom Semi Detached Duplex,Around Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Delightfully Finished 4 Bedroom Detached Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +Mini Estate Properties,Ikate Elegushi Lekki Phase1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +"New Tastefully Built 5 Bedroom Duplex With Bq, Gym House, Swimming Pool And Cctv Camera",Around Osapa London Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Berroom Duplex With Bq,Along Lekki Conservative Road Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,4 baths,5 Toilets +Tastefully Crafted 3 Bedroom Flat,Around Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,3 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Alternate Route, Off Chevron Drive, Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Palms Ville Courts Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Five Bedroom Semi Detached Duplex With Penthouse,Bolaji Ademola Street Agungi Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,7 Toilets +Automated Furnished 5bedroom Detached House At Carton Gate Estate For Sale,Carton Gate Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Flat In A Sarene Neighborhood,Around Ologolo Area Lekki Lagos,₦,"42,000,000",0,1,1,3 beds,4 baths,4 Toilets +6 Plots Of Land,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Contemporary Fully Detached Duplex House In Chevron. This Is Arguably The Best Contemporary House In The Whole Chevron Lekki .,The Street Is Off Chevron Road Axis Chevron Lekki Lagos,₦,"140,000,000",0,1,1,5 beds,5 baths,6 Toilets +New Tastefully Built 4 Semi Bedroom Duplex,After Second Toll Gate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,5 Toilets +Lovely 5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built Semi Detached 4 Bedroom Duplex Fully With Bq,Buene Vista Estate Chevron Orchid Hotel Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Furnished 4 Bedroom Terrace Duplex,Around Ikate Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Orchid Aroad Ikate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,5 baths,5 Toilets +Excellent Luxury 4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex With 2 Room Bq,Northern Foreshore Chevron Lekki Lagos,₦,"320,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,1 Toilets +Exquisite Fully Detached 5bedroom Duplex For Sale At Lekki Phase 1,Admiralty Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious And Luxury 4 Bedroom Terrace Duplex,Ikate Area Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Terrace Duplex,Orchid Road By Chevron Alternative Route Chevron Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached,Atlantic View Estate Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,1 Toilets +Terrace Duplex,"Lekki Garden,chevron Drive Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 3 Units Of Luxury Finished 4 Bedroom Terrace Duplex,Opposite Nico Town Lekki Nicon Town Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Fully Detached Duplex With Certificate Of Occupancy,Chevron Alternative Road Side; Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Kemi John Street Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,"Off Lekki Epe Express Way,after Pan African University Lekki Phase 1 Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury And Beautifully Finished 4 Bedroom Semi Detached Duplex,Aroad Chevron Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Luxury 4 Bedroom Semi Detached Duplex,Mobil Road Ikota Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nice 6 Units Of 2 Bedroom Flat,Behind Admiralty Estate. Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Exclusive 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +30 Plots Of Dry Land,Around Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0, beds, baths, Toilets +Land For The Mulberry Bespoke Terrace And Pent House,Beside Nicon Town Nicon Town Lekki Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4and 5 Bedroom Duplex At Chevyview Lekki,Chevyview Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Durosimi Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Modern Facilities, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Newly Built Five Bedroom Semi Detached Duplex. Superb Best Quality Materials And Best Contemporary With Fully Fitted Kitchen Etc Finishing And,Chevron Alternative Road Axis Chevron Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex,Westend Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +30 Acres Of Land,Before Free Trade Zone Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House, Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +700sqm Land,Orchid Hotel Road Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Very Spacious 4 Bedroom Semi Detached Duplex,Aroud Ologolo Aroad Ologolo Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,5 baths,5 Toilets +Certificate Of Occupancy,Adekunle Street Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Built 5 Bedroom Detached Duplex With Bq,London Estate. Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +Certificate Of Occupancy,Adebuyi Street Gated Mini Estate; Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Captivating 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Tastefully Built 3 Bedroom Terrace With Bq,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,4 baths,4 Toilets +Beautifully Built And Luxury 5 Bedroom Detached Duplex,Ikota Area Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +C Of O,Bvista Gate Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3,2000 Square Metres Of Land",Ikota Ikota Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex (captivating),"Road Side,osapa, London Osapa London Lekki Lagos",₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Land At Southern Green Estate,Orchid Hotel Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,By Elf Bus/stop Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Units Of A Perfectly Finished 4 Bedroom Detached Duplex With Bq,Around Chisco Ikate Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +"1,400 Square Metres Of Land",Igbo Efon Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Vgc Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land,Lekki County Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,"Block 1,plot 10, Along The Rock Drive Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse + 1 Bedroom Miniflat, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,2 Toilets +4 Bedroom Terrace Duplex With Bq,Along Lekki Conservative Road Agungi Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 6 Bedroom Detached Duplex With Mini Pool,Around Second Tollgate Lekki Lagos,₦,"80,000,000",0,1,1,6 beds,7 baths,7 Toilets +6 Plots Of Land,Ilamija Chevron Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 4bedroom Semi Detached Duplex,Around Chevron Chevron Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,5 baths,5 Toilets +Land,Lafiaji Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Bank Sale :bare Solid Fenced Land For Sale Size 10,756 Square Metres .at Lekki Phase One Gate Entrance With Water Front Overlooking Queens Drive Ikoyi On The Other Side .stone Throw From Oriental Hotel Victoria Island.",Strategically Located At Lekki Phase One Entrance Lekki Lagos,₦,"2,000,000,000",0,1,0, beds, baths, Toilets +Anewly Built And Furnished Block Of 9 Unite Of 3 Bedroom Flats,Around Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,1,1, beds, baths, Toilets +720 Sqm Land With Governors Consent,New Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Tastefully Built 4 Bedroom Terraced Duplex With Bq,Around Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +Captivating And Finished 4 Bedroom Terrace Duplex With Bq And Swimming Pool,Around Ikate Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury Built 4bedroom Duplex For Sale At Osapa,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Around Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Luxury 4bedroom Simi Detached Duplex With Bq,Around Ikota Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Tastefully And Finished 4 Bedroom Terrace Duplex With Bq,Around Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Duplex,Off Lekki Expressway . Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +A Plot Of Land,New Road Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,Great Street Location Vgc Lekki Lagos,₦,"450,000,000",0,1,0,5 beds,5 baths,6 Toilets +Corner Piece Land,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Fully Detached House At Lekki Phase One.,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplexes At Ikota For Sale,Pracht Garden Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +1000square Metres Land,Great Street At Lekki Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Oral Estate Lekki Expressway Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Tastefully Built 5 Bedroom Duplex,Around Igbo Efon Igbo Efon Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With A Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury And Tastefully Built 4 Bedroom Terrace With A Bq,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ben Orji Street Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex,Ikate Area Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Around Igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Pay 1m Initial Deposit And Own A House With C Of O In Oribanwa(wealthland Green Estate),"Oribanwa, Lekki Ajah Lekki Lagos",₦,"11,950,000",0,1,0, beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,Around Agungi/igbo Efon Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +"4 Bedroom Terrace Duplex With 1 Rm Bq For Sale At Ikate, Lekki Phase 1(perimeter Court 1)","Inside Madiba Estate, Lekki Phase 1 Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds, baths, Toilets +Land Clearing Survey Excision Landed Filling Dredging And Jvs Jobs Wanted,Lekki Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex With Bq,Around Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land,Pclose Ikate Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Captivating 4 Bedroom Semi Detached Duplex,Around Chisco Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Land,Victory Park Estate Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land For Sale,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Mega Chicken Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Captivating 5 Bedroom Semi Detached Duplex,Around Chisco Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Bvista Gate Estate Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +1 Acre Of Land,Lekki Phase 1 Ikate Lekki Lagos,₦,"70,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Very Spacious Finished 5bedroom Semi Detached Duplex,After Second Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,Oral Estate Lekki Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +900square Metres Land,Great Street At Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +10 Units Of 2 Bedroom Luxury Apartments,Lekki Chevron Lekki Lagos,₦,"560,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury And Beautifully Finished 4 Bedroom Detached Duplex,Elegushi Area Ikate Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom House,The Street Is Not Far From Lekki Phase One Mosque Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Acres Of Land,Victory Garden City Vgc Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +One Plot Of Land,Bera Estate Chevron Drive Area Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Terrace Duplex With Certificate Of Occupancy,Chevron Alternative Road Side; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Captivating And Furnished 3 Bedroom Terrace Duplex,Ikate Area Lekki Lagos,₦,"95,000,000",0,1,1,3 beds,4 baths,4 Toilets +A Plot Of Land,Lakowe Lekki Agungi Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Park Estate Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Around Bera Estate Igbo Efon Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +For Sale : Five Units Of Four Bedroom Detached Terrace Duplexes And Four Units Of Five Bedroom Semi Detached .making Nine Units Of Duplex For Sale,Off Vgc Road Vgc Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,7 Toilets +A Nice Clean Dry Land,Ochild Hotel Roaf Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex For Sale,Femi Okunnu Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Plots Of Land,Beside Admiralty Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +11 Plots Of Dry Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 2bedroom Flat,Behind Admiralty Estate. Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Plots Of Land,Nike Art Gallery Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Around Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds, baths,5 Toilets +4 Bedroom Duplex With Bq,Along Lekki Conservative Road Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,5 Toilets +Captivating 4 Bedroom Terrace Duplex With Bq,Around Marwa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Fully Detached 5 Bedroom Duplex,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exclusive 5bedoom At Agungi Lekki,Oba Amusa Agungi Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets +Corner Piece Of Land,Royal Gardens Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,West End Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +New Tastefully Built 4 Bedroom Terraced Duplex,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +Land For Sale,Bera Estate Chevron Drive Area Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Crafted 5 Bedroom Terraced Duplex,Around Chisco Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New 5bedroom Duplex,"Oral Estate, Road 1. Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,5 Toilets +Land Measuring 3200 Sqm Land, Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Ilasan Area Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Contemporary Fully Detached Duplex With Swimming Pool And Cinema. Location : Osapa London Lekki,Osapa London Lekki Lagos,₦,"198,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Town House With A Fitted Kitchen And Boy’s Quarters For Sale,Osapa London Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Fully Detached 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built Semi Detached 5 Bedroom House,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Luxury Detached House With Bq,Friends Colony Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,5 Toilets +3 Units Of 4 Bedroom Semi Detached Duplex,Ocean Bay Estate By Buene Vista Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detach House With A Bq,"Off Durosinmi Etti, Lekki Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace + Bq,Off Kusenla Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace,Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Osapa Enroute Shoprite/ Aa Rescue Road. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished Luxury 5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + Bq,"Agungi, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Terrace Duplex,Ikota Villa Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exceptional Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bed Detached Duplex,Off Prince Eletu Way Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Luxury 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,"Orchid Way, Lekki Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terraced Duplex With A Room Bq For Sale,Chevron Right Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Terraced Duplex With Excellent Facilities,Oando Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,2 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Mobil Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Premium 4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Excellent Facilities,"Orchid Way, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellence Facilities,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Semi Detached House With Bq In Osapa London,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace With Excellent Facilities,Chevyview Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached,Lekki Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Off Shoprite Road Jakande Lekki Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached House,Ikota Villa Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Luxury 3 Bedroom Flat,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Orchid Way Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Luxury Duplex,Chevy View Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedrooms Terraced Duplex With Excellent Facilities,Oral Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Flat,Lekki Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Spacious 4 Bedroom Terrace Duplex With Bq And Excellent Facilities,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +680sqm Land,Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,Off Shoprite Road Jakande Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +Tastefully Finished 4 Bedroom Semi Detached With Excellent Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Lafaiji Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,2 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Lafaiji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace House,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Excellent 4 Bedroom Semi Detached Duplex With Good Facilities,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex With Excellent Facilities,Orchid Way Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Osapa London Lekki Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex + 2 Rooms Bq,Richmond Gate Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Semi Detached 4 Bedroom Duplex With Excellent Facilities,Oral Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Ikate, Lekki Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,Ikota Villa Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex With Excellence Facilities,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat With Excellence Facilities,Ikota Villa Ikota Lekki Lagos,$,"1,600,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedrooms Terrace Duplex With Good Facilities, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury And Excellent 3 Bedroom Semi Detached Duplex With Good Facilities,Chevron Alternative Route Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat,Orchid Way Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat, Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Chevyview Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Northern Foreshore Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Terraced Duplex With Excellent Facilities,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Lafaiji; Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fantastic 4 Bedroom Semi Detached Duplex,"Westend Estate, Ikota Villa Ikota Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,Off Ajiran Road Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent Brand New 4 Bedroom Semi Detached Duplex With A Bq Very Spacious And Very Sweet,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex,Orchid Way Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Orchid Way Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Excellent Facilities,Ikota Estate Ville Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Excellent Facilities,. Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With Excellent Facilities,Northern Foreshore Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Orchid Way Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Way Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Excellent Facilities,Idado Estate Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedrooms Flat With Good Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +2 Bedroom Flat,"Alpha Beach, New Road Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex With Bq,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets +Brand New 4 Bedroom Detached Duplex With Excellent Facilities,Elegushi/ Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,600sqm Cornerpiece Land",Lekki Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Excellent Facilities,Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished Luxury 5 Bedroom Detached Duplex,Chevyview Estate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fantastic 5 Bedrooms Detached Duplex,Off Shoprite Road Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Our Victory Park Project Is Complete & Open For Inspection... 5 Bedroom Duplex. Study Room. Box Room. Boys Quarters. Patio. Swimming Pool. Cinema. Massive Parking Space. (6 7 Cars). Fitted Italian Kitchen (ariston Italy). Butter Proof 3metres High Biomet,Victoria Park Estate Osapa London Lekki Lagos,₦,"195,000",1,1,1,5 beds,4 baths,4 Toilets +"796sqm Of Land Available For Sale At Mobil Road,lekki ,ajay, The Land Comes With Governors Consent","Mobil Road,lekki Ajah Osapa London Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +It’s A 4 Bed Duplex.. 3 Bed One Bq. It About 23 Individual Buildings In The Estate. 3 Car Parks Per Apartment. It’s Serviced. Estate Has Swimming Pool And Gym.. Located At Osapa,Pioneer Road Osapa London Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,5 baths,5 Toilets +Semi Detached Four Bedroom Duplex With A Room Bq At Lekki,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Six Units Of Three Bedroom Apartments At Lekki,Ojo Oyewo Road Off Tunde Adeleye Str Idado Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite Fully Detached Four Bedroom Duplex At Lekki Phase 2,Gbangbala Str Off Church/ Pauland Peter Street Off Oba Yekini Elegushi Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With 1 Room Bq At Lekki,Ayinke George Street Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Two Bedroom Flat For Sale In Lekki,"Tunde Joda Street, Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +"5 Bedroom Exquisite Detached Duplex In Magamond Estate, Ikota",Ikota Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikate Lekki Elegushi Area Ikate Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Terrace At Osapa London, Lekki",Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached With Bq And 5 Bedroom Fully Detached With A Bq,Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets +A Very Attractive And Serene 8 Bedroom House Sitting On 2000sqm Water Front Land In Lekki Phase 1.,Lekki Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,8 beds,8 baths,9 Toilets +Land Measuring 962sqm For Sale At Lekki Scheme 2,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Duplex,Stillwater Garden Estate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex + Maids Quarters,Adedayo Adekola Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Land Measuring 750sqm In A Private Estate, Fully Infrastructured Estate Periwinkle Estate",Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land For Sale @ Abijo G.r.a, Lekki",Abijo Gra Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000",0,1,0,3 beds,3 baths,4 Toilets +2 Plots Of Land For Sale At Alpha Beach Road Off Lekki Epe Expressway,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +"Nicely Built 4 Bedroom Serviced Terrace Duplex Within An Estate At Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1000sqm For Sale In A Private, Fully Infrastructured Estate Periwinkle Estate",Periwinkle Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached With Bq And 5 Bedroom Fully Detached With A Bq,Buene Vista Estate By Chevron Lekki Toll Gate Orchid Hotel Road Chevron Lekki Lagos,₦,"59,500,000",0,0,0,4 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Detached House In Victory Park Estate,Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"Stillwater Garden Estate, Eleguishi Ikate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Duplex,Lekki Phase 1 Very Close To British International School. Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,6 Toilets +"Land Measuring 650sqm For Sale At Orange Island, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 1000sqm For Sale At Orange Island, Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +"Well Finished 6 Units Of 1,2 And 3 Bedroom",Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Land Measuring 614sqm For Sale, Off Monastery Road, Lekki",Off Monastery Road Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Brand New And Well Finished 5 Bedroom Detached Housee,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Well Finished 4 Bedroom Luxury Terraces Off Freedom Way, Lekki Phase 1",Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +Governor Consent,Ikate Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets +Luxury 4bedroom Semi Detached House,Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,3 Toilets +Nearly 4bedroom Semi Datached Duplex For Sale,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,6 baths,3 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,5 baths,5 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.*,Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,4 Toilets +*top Notch Finished 4 Bedroom Fully Detached Duplex With Bq In Phase 2 Creek Avenue Court Lekki*,Lekki Phase 2 Lekki Lagos,₦,"61,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"No 30, Agungi Ologolo Agungi Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Detached Duplex With Terrace Finishing,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land With C Of O,Erangbede Idado Lekki Lagos,₦,"500,000",0,1,0,0 beds,0 baths,0 Toilets +Dry Land,Ibeju Chevron Lekki Lagos,₦,"2,500,000",0,1,0,0 beds,0 baths,0 Toilets +"Exquisite And Beautifully Built Four Bedroom Detached Duplex For Sale In 2nd Toll Gate, Lekki, Lagos","2nd Toll Gate, Lekki Phase 2 Lekki Lagos",₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment In A Very Good Location In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land For Sale At Orchid Road At Promo Price,Ikota Ikota Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets +Massive 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Well Finished Royal 5 Bedroom Fully Detached Duplex In Osapa,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +3/4 Bedroom Terrace Duplex For Sale Plus Flexible Payment Plan,Orchid Road Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex At Chevron,Chevron Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,5 Toilets +Promo! Promo! Promo!!! Land For Sale At Orchid Road At Promo Price,"Orchid Road, Behind Cooplag Gardens Ikota Lekki Lagos",₦,"18,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Furnished Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,4 Toilets +Very Spacious 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3/4 Bed Terrace Duplex For Sale Plus Installment Plan Victoria Crest Iv,Off Orchid Hotel Road By Second Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,3 Toilets +Beautiful 5bedroom Detached Duplex With A Swimming Pool,Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Well Finished 4bedroom Stand Alone Duplex,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex At Ikota,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Terrace/ 4bedroom Semi Detached Duplex At Osapa Instalment Payment Available,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex Opp Vgc,Opposite Vgc Vgc Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Furnished Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Beautifully Built And Well Finished Semi Detached Duplex,... Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,5 Toilets +Massive 4bedroom Semi Detached Smart Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Detached Duplex At Chevron,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"32,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land For Sale At Promo Price,Bogije Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets +Exquisite 6 Bedroom Duplex,Atlantic View Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,7 baths,8 Toilets +A 2 Units Of Luxurious/beautiful 3bedroom Flats On A Terrace Duplex For Sale!,Freedom Way Ikate Lekki Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New Well Finished Cheap 4bedroom Semi Detached Duplex,Ikota Estate Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Beautiful/luxurious 4 Bedroom Terrace Duplex Available For Sale In A Drive Road Access!!,Ologolo Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale Of 766.1 Sqm Plot Of Dry Land On Orchid Road,Spg Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,10 beds,10 baths,10 Toilets +Dry Fenced Land,Vgc Vgc Lekki Lagos,₦,"73,000,000",0,0,0, beds, baths, Toilets +A House Containing 4 Units Of 2 Bedroom Flats Available For Sale,Whitesands Ologolo Lekki Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Buy Your Xmas Promo Plots Of Lands At Lekki Pearl Garden Abijo,Abijo Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0, beds, baths, Toilets +A 2 Units Of Luxurious/ Tastefully Pent House 3bedroom Flats On A Terrace Duplex Available For Sale!,Freedom Way Ikate Lekki Lagos,₦,"95,000,000",1,1,1,3 beds,3 baths,4 Toilets +Plots Of Land For Sale At Eminence Court Bogije Lekki,Sapati Bogije Lekki Lekki Phase 2 Lekki Lagos,₦,"4,680,000",0,0,0, beds, baths, Toilets +Newly Developed Block Of Apartments,Osapa London Osapa London Lekki Lagos,₦,"650,000,000",1,1,0,10 beds,10 baths,10 Toilets +A Beautiful/luxurious 5 Bedroom Detach Duplex House +bq All Rooms Ensuit With Fitted Kitchen For Sale At Ikate Lekki.,Freedom Way Ikate Lekki Lagos,₦,"270,000,000",1,1,1,5 beds,5 baths,6 Toilets +An Irresistible Brand New Fully Detached 5 Bedrooms Duplex In A Serene Environment,Osapa Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Buy Plots Of Land At Claridge 1 Estate Sangotedo Lekki And Win A Trip To Dubai Automatic,Sangotedo Lekki Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached,Conservation Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Conservation Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +"Direct Urgent Distress Sale @ Chevron, Brandnew 4 Bedroom Semi Detached Duplex.",Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,6 Toilets +"*3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki* Bella Homes Phase 1 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.",Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,3 baths,3 Toilets +Amazing 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Amazing 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Amazing 4 Bedrooms Duplex With A Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Half Plot Of Land In Agungi,Madam Cellular Agungi Lekki Lagos,₦,"38,500,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Lakeview Detached Duplex For Sale,"Megamound Estate, Lekky County Ikota Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Terrace Houses,Alternative Route Chevron Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Bera Estate, Chevron Drive, Lekki !! A 5bedroom Duplex.",Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exclusively Finished 5 Bedroom Fully Detached Duplex With Bq,An Estate Close To Chevron Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2 Units Of Massive 5 Bedroom Fully Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Facing Lekki Express Road Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki 2nd Toll Gate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Affordable Land With Good Title For Sale At Ibeju Lakki, Lagos State",Ibeju Lakki Lagos Lekki Phase 2 Lekki Lagos,₦,"650,000",0,1,0, beds, baths, Toilets +5 Bedrooms Detached Duplex With A Two Rooms Bq,Farah Park Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms Bq, Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +Affordable C Of O Land For Sale In Lekki (pertinence Property),"Inside Beechwood Estate, Shapati, Lekki. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets +4 Bedroom Semi Detached,Bogije Lekki Lagos,₦,"1,000,000",0,1,0,4 beds, baths, Toilets +"2 Bedroom Terrace Duplex With C Of O Available For Sale At Abraham Adesanya, Lekki.",Abraham Adesanya Lekki Lagos,₦,"25,000,000",0,1,0,2 beds, baths, Toilets +4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built Fully Detached And 4 Bedroom Semi Detached Apartment With Maids Quarters With Fitted Kitchen And Dedicated Transformer To The Apartment.,Jakande Bus Stop Before Agungi Lekki. Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds, baths, Toilets +"House For Sale In Chevron Lekki(4 Bedroom Semi Detached Duplex With Bq , No Extra Charges)",Chevron Alternative Drive Lekki Chevron Lekki Lagos,₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +"House For Sale At Chevronlekki (4 Bedroom Fully Detached With Bq @ Elli Court, No Extra Payments)",Chevron Alternative Drive Chevron Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Terraces Duplex Available At Bella Homes,"Lafiaji Community, Orchid Road, Lekki, Lagos State Chevron Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached,Alternative Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built Smart 5 Bedroom Fully Detached With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road,lekki Lagos Chevron Lekki Lagos",₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom,"Bera Estate Chevron Drive, Chevron. Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +"House For Sale In Lekki (bella Home)exquisite Finished 3 Bedroom Terrace Duplex With Bq , Pay And Pack In . On Promo Price Of 33m","Bella Homes Phase 2, Close To Chavron Toll Gate. Lakki Chevron Lekki Lagos",₦,"33,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built Luxury 6 Units Of 3 Bedroom Apartment In Lekki Phase 1.,Off Admiralty Way Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,3 Toilets +18 Units Of 4 Bedrooms Terraces All Rooms Ensuite With Bq In Chevron,"Chevron Alternative, Chevron Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Terraced,Bogije Lekki Lagos,₦,"1,000,000",0,1,0,2 beds, baths, Toilets +"House For Sale In Lekki Phase 1 (exquisitly Finished 4 Bedroom Semi Detached Duplex With Bq At Daniels Garden Osapa London Lakki, Lagos)","Osapa London, Lakki, Before Agungi, Before Igbo Efon And Few Minute Before Chevron Agungi Lekki Lagos",₦,"56,000,000",0,1,1,4 beds,6 baths,6 Toilets +House For Sale In Lekki Phase 1 (creek Avenue Court Lekki),"After Chevron Toll Gate Ikota, Lakki Lagos Ikota Lekki Lagos",₦,"53,000,000",0,1,1,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached,Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +"House For Sale In Lekki(4 Bedroom Fully Detached Duplex With Bq ) (title Cofo) (creek Avenue, By Medorf Solution)",Before Chevron Toll Gate Ikota Lekki Lagos Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,6 baths,6 Toilets +"Frontier Luxe, The Best Mortgage Offer",Bogije Lekki Lagos,₦,"1,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Frontier Estate,Bogije Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets +2 Bedroom Apartment,Orchid Road Chevron Lekki Lagos,₦,"20,000,000",0,1,1,2 beds, baths, Toilets +"4 Bedroom, Pay And Pack In Semi Detached Duplex With C Of O For Sale At Abraham Adesanya, Lekki",Abraham Adesanya Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,5 baths,5 Toilets +Off Plan Sale 3 Bedrooms Apartment With Bq,Ikate By Elegushi Palace Ikate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Lekki Pearl Garden, Abijo",Abijo Lekki Lagos,₦,"10,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Smart House,Chevron Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Affordable C Of O Land For Sale In Lakki(vip Garden),"Inside Beechwood Estate Shapati, Along Lekki Epe Express Road Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets +Affordable C Of O Land For Sale In Oribanwa Lekki Lagos (rems),"Oribanwa 1, Ajah, Lekki Lekki Phase 2 Lekki Lagos",₦,"7,000,000",1,1,0, beds, baths, Toilets +Affordable Land With C Of O For Sale In Lekki (landway),Bogije Lekki Legos Lekki Lagos,₦,"11,850,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Room Bq,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Two Plots Of Land For Sale At Chevy View Estate,Olaoye Close Chevron Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +An Affordable 4 Bedroom Townhouse At Lekki Phase 1,1 Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"115,000,000",1,1,1,4 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 1 Chevron Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New Luxury 4 Bedrooom Duplex With A Bq In The Heart Of Lekki Phase 1,Off Victoria Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex At Osapa London.,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,6 Toilets +"2,000sqm Of Land At Vgc",Vgc Lekki Lagos,₦,"250,000,000",0,0,0,8 beds, baths, Toilets +Luxury 5 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Units Of 4 Bedroom Semi Detached Duplexes With A Staff Quarters Each.,Ikota Ikota Lekki Lagos,₦,"3,800,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat Explore Gardens,2nd Round About Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,V.g.c Lekki Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedrooms Detached House,"Close To Lekki 1 Gate, Directly Off Admiralty Way, Lekki Ph.1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +600sqm Residential Plot Of Land,"Lakeview Park I, Lekki Expressway, Lekki, Lagos Vgc Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Full Plot Of Land For Sale In Chevy View Estate Lekki.,"Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Duplex With 1 Room Boys Quarter,Ologolo Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Mansion Fully Detached House,Vgc Lekki Vgc Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +*distress Sales 3 Bedroom Terrace With A Room Bq At Babatope Bejide Street Lekki Phase 1,Mbabatope Bejide Street Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +1 Bedroom Apartment,"Ocean Bay Estate, Lafiaji, Lekki, Lagos Chevron Lekki Lagos",₦,"16,000,000",0,0,0,1 beds,1 baths,3 Toilets +Luxury 4bedroom Ensuite Flat With Bq Pool Gym,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semidetached Duplex + Bq,"3rd Roundabout, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built And Tastefully Finished 4 Bedroom Detached House,Ologolo Estate Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House + Bq,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fenced Land,Admiralty Estate Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom Duplex With Boys Quarter Which Has Swimming Pool,Bera Estate Phase Ii Agungi Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House,"Sola Oguntade Close Off Bisola Durosimi Lekki Phase 1, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +800 Sqm Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House + Bq, Lekki Phase 1 Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,5 Toilets +800sqm Land In Cowries Creek Estate Ikate Lekki,Cowrie Creek Nlgn Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +500sqm Land For Sale In Pinnock Beach Estate,Pinnock Beach Estate Ikate Ikate Lekki Lagos,₦,"83,000,000",0,0,0, beds, baths, Toilets +840sqm Land For Sale In Pinnock Beach Estate Ikate,Pinnock Beach Estate Ikate Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Flat Apartment + Bq,Ologolo Estate Igbo Efon Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,"Plot 12 Block 12 , Admiralty Way, Lekki Phase 1,lagos Lekki Phase 1 Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Prime Water Garden, Ikate Ikate Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Friend Colony Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With 2 Rooms Bq,Creek Haven Beside Vgc Lekki Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Land For Sale In Pinnock Beach Estate Ikate Elegushi,Pinnock Beach Estate Ikate Elegushi Lekki Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 5 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Distress Sales* *land Measuring 600sqm Is For Sale* *location* *orchid Road, Lekki Phase1* *title* *governor Consent* *price* *#25m*",Orchid Road Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +960sqm Land For Sale In Pinnock Beach Estate Ikate Elegushi,Pinnock Beach Estate Ikate Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +Land For Sale In Lekki,Buena Vista Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Brand New 3 Bedroom Flat Apartments,Ologolo Estate Agungi Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex +bq,"Chevy View Estate Chevron Drive, Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 3 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Finished 5 Bedroom Detached Duplex With A Swimming Pool & A Room Bq Available For Sell In Lekki County Ikota Lekki Lagos,Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +2 Units Of Luxurious 5 Bedroom Waterfront Duplexes Built To International Standards.,Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Excellent Design And Modern Facilities,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,1,4 beds,4 baths,5 Toilets + Newly Built 5 Bedroom Fully Detached Duplex House,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +22 Units Or Exquisites Well Finished Duplexes With Bq Available For Sell In Osapa London Lekki Lagos.,Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,5 Toilets +Flourish Apartments And Terraces In A Serene Neighborhood With,By Orchid Road Chevron Lekki Lagos,₦,"4,500,000",0,1,0,3 beds,4 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached In A Serene Estate For Sale,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex For Sale At Chevy View Estate,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Serviced Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Lekki Phase 1,Off Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Magnificent 6 Bedroom Detached House,Mabogunje Oniru Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets +Fully Serviced 3 Bedroom Flat In A Gated Estate,Off Freedom Way Ikate Lekki Lagos,₦,"38,000,000",1,0,0,3 beds, baths, Toilets +Newly Built 5 Bedroom Detached & 4 Bedroom Semi Detached Duplexes,Lekki Phase 2 Ologolo Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +"Corner Piece Land Measuring 1,002 Sqm",Vgc Vgc Lekki Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets +Elegantly Built 5 Bedroom Fully Detached Mansion,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Units Each Of 1 & 2 Bedroom Flats,Chevy View Estate Chevron Lekki Lagos,₦,"20,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached House With 2 Rooms Domestic Staff Quarters,Omorine Johnson Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 6 Units Of 4 Bedroom Terrace House,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,1 Toilets +Luxury 5 Bedroom Detached Duplex With Domestic Staff Quarters,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Plots Of Land In Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"140,000",1,1,0, beds, baths, Toilets +3 Bedroom Luxury Flats,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Domestic Staff Quarters For Sale,"Ocean Bay Estate,off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos",₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets +Sweet Massive 4bedroom Semi Detached Duplex With Bq,By Chevron Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Well Finished 4bedroom Semi Detach Duplex With Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Sweet 4bedroom Semi Detached Duplex @,By Mega Kitchen Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Lovely Build 5bedroom Detach Duplex With Bq,Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +New Built 3 Bedroom Fully Detached + 2 Living Rooms + Study,Muiz Banire Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +New Built 5 Bedroom Fully Detached + 2 Living Rooms + Study,"Hakeem Dickson,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxe Is An Arcade Of Magnificent Surroundings And Exceptional Estate. It Has C Of O As The Property Title.,Lekki Phase 2 Lekki Lagos,₦,"8,500,000",0,1,1,3 beds,3 baths,3 Toilets +Newly Built 5 Bedroom House On Two Level With A Pool,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,7 Toilets +The Land Has Certificate Of Occupancy As Its Title,Lekki Phase 2 Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Silicon Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +7 Bedroom Duplex With 4 Rooms Bq,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets +5 Bedroom Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,0 Toilets +2 Units 5 Bedroom Mansion,Victory Park Estate; Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +950 Square Meters Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,Greenwide Tech Estate. Back Of Corn Oil Petroleum Station Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Duplex,Madam Celluar Close Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +Hotel Building, Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex In Lekki Phase 2,Lekki Gardens Estate; Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom En Suite Terraced Duplex With Ample Parking Space.,"At Lekki Gardens 3 Estate, By Lagos Business School Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Flat (serviced),Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +For Sale 4 Bedroom Semi Detached Duplex At Ikota Lekki Lagos N35 Million Naira Net,Ikota Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Half A Plot Of Land For Sale In Pearl Garden Estate, Sangotedo",Pearl Garden Estate Lekki Phase 2 Lekki Lagos,₦,"17,000,000",1,0,0, beds, baths, Toilets +"The Land Has A C Of O,",Lekki Phase 2 Lekki Lagos,₦,"6,700,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq For Sale,... Ikate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace For Sale,... Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With 1 Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Terrace For Sale, Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace For Sale, Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace For Sale, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace For Sale, Ikota Lekki Lagos,₦,"39,500,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace For Sale, Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Dupelex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Governor's Consent,"Oral Estate By 2nd Toll Gate, Ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex,Ilasan Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,5 baths,5 Toilets +"3 Bedroom Terrace Duplex With Bq At Bella Homes 1, Close To Chevron Toll Gate Axis, Lekki*",Cheveron Alternate Drive Road Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,Cheveron Alternate Drive Road Chevron Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets +Brand New 3 Bedroom Terrace,Ilasan Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds, baths, Toilets +600sqm Of Land For Sale At Bogije Lekki Lagos,Bogije Lekki ( Inside Beechwood Estate) Lekki Lagos,₦,"6,700,000",1,0,0, beds, baths, Toilets +300sqm Of Dry Land Is Available For Sale At Abijo Gra Lekki Lagos,Abijo Gra Lekki Lagos Lekki Lagos,₦,"6,000,000",1,0,0, beds, baths, Toilets +600sqm Of Dry Land For Sale At Abijo Gra Lekki Lagos.,Abijo Gra Lekki Lagos. Lekki Lagos,₦,"12,000,000",1,0,0, beds, baths, Toilets +"Four (4) Master Bedroom All En Suit With Building Incorporated With En Suit Maid's Room Coupled With Magnificent Sitting Room, Luxury Living Area And A Contemporary Spacious Kitchen Area.",Adebisi Popoola Lekki Phase One Lagos State Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets +5star Hotel And Suites For Sale At Lekki Expressway,Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Lake View Estate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds, baths, Toilets +"Own A 2, 3 Or 4 Bedroom Duplex In Lekki. Spread Payment In 10 Years",Lekki Lagos,₦,"1,000,000",1,1,1,4 beds, baths, Toilets +Affordable Luxury In The Heart Of Lekki Lagos 5 Bedroom Fully Detached Duplexes,Mega Mound Estate Lekki Lagos Ikota Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Units Of 4 Bedrooms Luxury Luxury Duplexes With 1 Unit Of 5 Bedroom,Highbrow Estate Ikota By Megachiken Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 5bedroom Duplex For Sale Cheveron Drive, Lekki",Cheveron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Semi Detached House For Sale,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex @ Chevron By 2nd Toll Lekki,Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds, baths, Toilets +Luxury Finished 4 Bedroom Detached Duplex In A Tranquil Environment,Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +Solidly Built Fully Detached 4 Bedroom House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,5 baths,6 Toilets +"Exotically Finished 4 Bedroom Detached Duplex, Ikota, Lekki.",Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Camberwall Estate Abijo Gra,Lekki Lagos,₦,"11,500,000",0,0,0, beds, baths, Toilets +C Of O Land In Abijo,Inside Beachwood Estates Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +4 Bedroom Detached Duplex Located In Lekki County Homes Available For Sale,Lekki County Homes Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Van Daniel Street Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Terrace Duplexes,Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Fully Fitted Kitchen (mortgage Option Available),Osapa Axis Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 5 Bedroom Fully Detached Duplex With Bq (fully Fitted Kitchen),Ikota Villa Axis Ikota Lekki Lagos,₦,"63,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Terraced Apartments (mortgage Option Available),"Lakeview2, Lafiaji Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,1,0,3 beds,3 baths,3 Toilets +Tastefully Furnished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex (mortgage Option Available),Off Mobil Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ademola Eletu Street Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Fully Detached Duplex (mortgage Option Available),Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Dele Adeyemi Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths, Toilets +Neatly Finished 4 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 3 Bedroom Apartment With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths, Toilets +Tastefully Designed 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Villa Axis Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Agungi Axis Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Terraces (mortgage Option Available),Ocean Bay Estate Lafiaji Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Osapa Axis Osapa London Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Axis Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 3 Bedroom Terraces (mortgage Option Available),"Ocean Bay Estate, Lafiaji, Orchid Road. Lekki Phase 2 Lekki Lagos",₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Fully Detached Duplex,Ologolo Axis Ologolo Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Chevron Axis Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,Ologolo Axis Ologolo Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Dele Adeyemi Agungi Lekki Lagos,₦,"49,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxurious 5 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Idado Axis Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished Fully Detached 4 Bedroom Duplex,Ikate Axis Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Oral Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious Fully And Semi Detached 4 Bedroom Duplexes (mortgage Option Available),Silver Spring Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Dele Adeyemi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq (mortgage Option Available),Ikota Axis Ikota Lekki Lagos,₦,"59,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury Fully Detached 4 Bedroom Duplex (mortgage Option Available),Mobil Road Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex (mortgage Option Available),Ikota Villa Axis Ikota Lekki Lagos,₦,"39,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Off Oba Amusa Street Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 2 Bedroom Flats With Bq (mortgage Option Available),Rasaq Eletu Street Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,2 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex (distress Sale With Mortgage Option),Ikota Axis Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Garuba Lawal Street Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Lekki County Estate Chevron Lekki Lagos,₦,"128,000,000",0,1,0,5 beds,5 baths,6 Toilets +Superb 3 Bedroom Flats, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land, Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Igbokushi By Dillon Office. Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat ( Off Plan),Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,2 beds,2 baths,2 Toilets +Governors Consent,Oceanbay Estate By Orchid Road Chevron Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets +Fully Furnished 2 Bedroom Apartment,. Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Ocean Bay Estate Ikota Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,. Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +1500sqms Land, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"No 20 Kendry Drive, Roxbury Leisure Homes(phase 2) Beside Napier Gardens And Manor Gardens, Vgc Lekki Lagos",₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Duplex,Off Freedom Way Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Lekki County Estate. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Plot Of Land,Russel School Ikota Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Governors Consent,Bera Estate Chevron. Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Elegushi, Off Conoil Road. Ikate Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"128,000,000",0,0,0,5 beds,5 baths,5 Toilets +Top Notch 2 Bedroom Flat (carcass),"Paradise Estate, Chevron Alternative Route Chevron Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 And 5 Bedroom Terrace,Chevron Alternative Route Chevron Lekki Eti Osa Chevron Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With 1 Bq For Sale.,Pinnock Beach Estate Lekki Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 4 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Apartment With Exclusive Bq,Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex For Sale At Western Estate Ikota Villa Lekki,"Western Estate Ikota Villa, Lekki, Lagos. Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds, baths, Toilets +Beautiful Office/school Space For Sale,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,6 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Terrace Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds, baths, Toilets +"Nearing Completion, % Bedroom Detached House With 2 Rooms Boys Quarters In Lake View Estate On Orchid Hotel Road, By Elegaza Busstop, Lekki",Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached House With A Boys Quarter For Sale In Lakeview Estate,Lekki Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached House With 1 Room Boys Quarter For Sale In Lake View Estate,Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds, baths, Toilets +Brand New 2bedroom Flat,... Agungi Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Luxury Mansion(a Must See!!!),Pinnock Beach Estate Osapa London Lekki Lagos,₦,"340,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Kunsela Road Ikate Lekki Lagos,₦,"35,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,Lakeview Estate Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"190,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Detached Duplex,Lakeview Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex (best Price Guaranteed!!),Pinnock Beach Estate Osapa London Lekki Lagos,₦,"195,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex Available For Sale,Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Duplex With A Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq For Sale,Lekky County Homes Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths, Toilets +Luxurious 5 Bedroom Detached Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"198,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Bq,Lekky County Homes Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4bedroom Fully Detached Duplex With Bq For Sale At Ikota,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Selling For N49,000,000 As The Net Price For This Lovely 4 Bedroom Semi Detached Unit For Sale At Chevron",Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets +Such A Beautiful Abode. For Sale By The 2nd Toll Gate Lekki,Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,6 baths,5 Toilets +Massive 5 Bedroom Duplex Glass House With A Bq For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets +Massive And Spacious 5 Bedroom Duplex With 1 Room Bq For Sale At Lekki,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Super Finished 5 Bedroom Duplex With 1 Room Bq For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Adorable And Affordable!!! • Modern Built And Styled Semi Detached Duplexes Available For Sale At Jakande Shoprite,Jakande Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"198,000,000",0,0,0,5 beds, baths, Toilets +Newly Built 5bedroom Fully Detached Duplexes,Ikota Gra Ikota Villa Mega Chicken Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,4 Toilets +This Excellently Finish 4 Bedroom Semi Detached Duplex Is Up For Sale At Ikota,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Decently Built 5 Bedroom Fully Detached Duplex With A Room Bq For Sale At Chevron, Lekki.",Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Sized 5 Bedroom Fully Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bq For Sale At Agungi Lekki,Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Duplex + 1 Maid Quarter For Sale At Lekki County,Ikota Lekki Lagos,₦,"70,000,000",0,0,1,5 beds,6 baths,6 Toilets +Contemporary Spacious And Functional 5 Bedroom Detached Duplex With A Room Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Finished 4 Bedroom Terrace Duplex With Bq Available For Sale At Atlanta View Estate,Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Mansion + Swiming Pool For Sale At Lekki County Estate Ikota,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +This Neatly Built New 5 Bedroom Detached Duplex With Bq Is Available For Sale,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisite And Premium Finished 5 Bedroom Terrace Duplex With Bq For Sale,Ikate Lekki Lagos,₦,"75,000,000",1,0,0,5 beds,6 baths,6 Toilets +Exclusive 4 Bedroom Fully Detached Duplex With Bq For Sale At Lekki County,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Home For Sale In One Of The Best Gated Estates In Lekki.,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedrooms Fully Detached Houses For Sale At Chevron,Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Well Finished 4 Bedroom Fully Detached Duplex With A Room Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"70,000,000",0,0,1,4 beds,5 baths,5 Toilets +"Fully Serviced 4 Bedroom Semi Detached Duplex For Sale Within A Gated Estate By The 2nd Toll Gate, Lekki",Chevron Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With 2 Boy's Quarter For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Stunning 4 Bedroom Fully Detached Duplex With A Bq Available For Purchase At Chevron,Chevron Lekki Lagos,₦,"80,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq Available For Sale At The 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely Fully Detached 5 Bedroom House For Sale At Ikota Ikota,Ikota Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,6 baths,6 Toilets +Lovely Piece Of 5 Bedroom Fully Detached Duplex With A Bq For Sale At Megamound Estate Osapa London,Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Duplex + Bq For Sale At Lekki County Ikota,Ikota Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Bq For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautifully Built 4 Bedroom Detached Duplex With A Bq For Sale At Ologolo Lekki,Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale At Ikota,Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,6 baths,6 Toilets +"This Brand New 4 Bedroom Semi Detached Duplex With Bq Is Available For Sale At Agungi, Lekki",Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex For Sale At Osapa London.,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautiful 5 Bedroom Fully Detached Duplex For Sale At Lekki County,Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Well Finished 3 Bedroom Apartment For Sale @ Ikate Elegushi,Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +"4 Bedroom Semi Detached Duplex With Bq For Sale At Chevron, Lekki",Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex Available For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Most Affordable Lekki Phase1 Brand New 4 Bedroom Detached House With Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +Serviced 4 Bedroom Semidetached Duplex With A Maid’s Quarter Available For Sale At Chevron,Chevron Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex Available For Sale At Chevron,Chevron Lekki Lagos,₦,"105,000,000",0,0,1,5 beds,6 baths,6 Toilets +Exquisite And Well Finished Brand New 5 Bedroom Fully Detached Duplex With For Sale At Oral Estate Ikota Lekki Lagos,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Hot Deal?? Nicely Finished 4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"56,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Bq In  Bedroom For Sale At Megamond Estate Ikota,Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +"4 Bedroom Terraced Duplex For Sale At Chevron, Lekki.",Chevron Lekki Lagos,₦,"45,000,000",1,0,0,4 beds,5 baths,5 Toilets +This Exquisitely Finished 5 Bedroom Fully Detached Duplex With A Bq Available For Sale At Chevron .,Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New Tastefully Finished 5bedroom Detached House Is For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,6 baths,6 Toilets +Exquisitely 5 Bedroom Fully Detached Duplex With A Bq Available For Sale At Orchid Road,Vgc Lekki Lagos,₦,"65,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Room Bq Inside A Mini Estate At Chevron Lekki,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets +Enormous 5 Bedroom Fully Detached Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Contempory 4bedroom Detached Duplex For Sale In A Serene And Secured Estate In Lekki.,Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"80,000,000",0,0,1,5 beds,6 baths,6 Toilets +Affordable Fully Detached 4bedroom Duplex For Sale At Chevron,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With  Staff Quarters For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex (driveway Unit) Available For Sale In A Serviced Estate By The 2nd Toll Gate Lekki,Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exclusive 4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets +"4 Bedroom Fully Detached Duplex With A Bq And Swimming Pool Available For Sale At Lekki County Homes, Ikota.",Ikota Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,5 baths,5 Toilets +Impeccable 5 Bedroom Detached Duplex For Sale @ Osapa London,Osapa London Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets +"Luxury 4 Bedroom Semi Detached Duplex For Sale In A Secure Estate By The 2nd Toll Gate, Lekki.",Chevron Lekki Lagos,₦,"43,000,000",0,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale At Chevron Drive,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Luxury 5 Bedroom Fully Detached Duplex With A Gym, Pool And A Bq For Sale At Pinnock Beach Estate Osapa London",Osapa London Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,6 baths,6 Toilets +Exquisite Finished 4 Bedroom Terrace Duplex Is Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,5 baths,5 Toilets +One Of The Most Beautiful And Most Functional Properties On The Market. This 5 Bedroom Fully Detached Triplex Available For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets +Spacious And Exclusive 6 Bedroom Fully Detached Duplex With 2 Room Bq For Sale At Pinnock Beach Estate,Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,7 baths,7 Toilets +Massive Newly Built 5 Bedroom Detached Duplex With 2 Living Rooms And 1 Maids Quarter For Sale,Ikate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Fully Serviced 5bedroom Detached Duplex With A Room Bq At Chevron Lekki. .,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,5 beds,6 baths,6 Toilets +Spacious 4 Bedroom Fully Detached Duplex With A Bq For Sale At Chevron,Chevron Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets +"This Lovely 5 Bedroom Fully Detached Duplex,with Bq And Swimming Pool For Sale At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,0,0,5 beds,6 baths,6 Toilets +"Brand New 3 Bedroom Apartments For Sale, In A Serviced Mini Estate In Ikate",Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale At Osapa London,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +This Nicely Built 4 Bedroom Detached Duplex With Bq Is Available For Sale At Pinnock Beach Estate Osapa London,Osapa London Lekki Lagos,₦,"150,000,000",0,0,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq For Sale At The 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5bedroom Detached Duplex With A Room Bq Available For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex And A Bq for Sale At Chevron Drive.,Chevron Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With Bq For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Detached Duplex With Penthouse And Bq For Sale At Lekki County,Ikota Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets +Amazing 5 Bedroom Duplex For Sale At Osapa London Lekki,Osapa London Lekki Lagos,₦,"250,000,000",0,0,1,5 beds,6 baths,6 Toilets +"5 Bed Detached Duplex For Sale By Lekki 2nd Toll Gate, Lekki",Chevron Lekki Lagos,₦,"90,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Semi Detached Duplex For Sale At Ikate Lekki,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exquisitely 4 Bedroom Terrace Duplex With A Bq For Sale At Chevron 2nd Toll Gate .,Chevron Lekki Lagos,₦,"38,000,000",0,0,1,4 beds,5 baths,5 Toilets +Fully Serviced 4 Bedroom Terraced Duplexes Available For Sale Within A Gated Estate In Ikota,Ikota Lekki Lagos,₦,"40,000,000",1,0,0,4 beds,5 baths,5 Toilets +Fine 5 Bedroom Fully Detached Duplex With Bq Available For Purchase At Osapa London,Osapa London Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets +Brand New 6 Bedroom Fully Detached Duplex For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"105,000,000",0,1,1,6 beds,7 baths,7 Toilets +Fully Serviced 4 Bedroom Terraced Duplexes In A Secure Estate For Sale At Chevron,Chevron Lekki Lagos,₦,"47,000,000",1,0,0,4 beds,5 baths,5 Toilets +Fully Serviced 4 Bedroom Semidetached Duplexes Available For Sale At Ikota Chevron,Chevron Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets +Brand New Nicely Finished 3 Bedroom Terrace Duplex With Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"49,000,000",0,1,0,3 beds,4 baths,4 Toilets +Spacious And Well Finished 3 Bedroom Terrace Duplex With A Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"70,000,000",0,0,1,3 beds,4 baths,4 Toilets +Stunning 5 Bedroom Fully Detached Duplex With Bq For Sale At Ikate,Ikate Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With A Room Bq Available For Sale At Chevy View Estate,Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With A Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex For Sale At Ikota Villa,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Very Spacious 4 Bedroom Detached House With A Bq For Sale At 2nd Toll Gate Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,5 baths,5 Toilets +Beautiful 5 Bedroom (waterfront) Duplex With 1 Room Bq For Sale At Lekki County Homes,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London.,Osapa London Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,5 baths,5 Toilets +Amazing 5 Bedroom Fully Detached Duplex Is Available For Sale At Megamound Estate Ikota,Ikota Lekki Lagos,₦,"95,000,000",1,0,0,5 beds,6 baths,6 Toilets +5bedroom Detached Duplex With A Room Bq For Sale At Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +"4 Bedroom Semi Detached Duplex With A Bq For Sale At Osapa London, Lekki.",Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +This Beautiful 5 Bedroom Fully Detached Duplex Is Available For Sale At Lekki County,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Contemporary 5 Bedroom Mansion On 2 Floors! This Well Finished Home Is Sitting On A 1000 Sqm At Jakande By Circle Mall, Lekki Lagos",Jakande Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Magnificent 4 Bedroom Semi Detached Duplex With A Bq For Sale At Ikota,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5bed Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,6 Toilets +Serviced Luxury 4 Bedroom Terrace With Boys Quarter,Park And Shop Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex Al Rooms Ensuite,Chevy View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 6 Bedroom All Rooms Ensuite Fully Detached Duplex,Pinnock Beach Estate Jakande Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom All Rooms Ensuite Semi Detached House Plus Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House + Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House With A Rooms Ensuite + Room Bq,Megamound Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached All Rooms Ensuite,Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Detached House,After Bay Side Estate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House House All Rooms Ensuite,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Luxury Family Detached Duplex With Swimming Pool Plus Bq Chevron Lekki,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished Spacious 5 Bedroom Duplex Plus Bq,Lekki County Homes Ikota Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury And Well Finished 5 Bedroom Fully Detached House Plus Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,"Atlantic View Estate, Alpha Beach Road Lekki Lagos",₦,"35,000,000",1,0,1,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex Plus Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With 2rooms Boys Quarter With Fitted Kitchen In A Serene Environ Of Lekki Phase 1 Sitting On 500sqm,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,5 beds,6 baths,7 Toilets +5 Bedroom Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex Plus Bq,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Semidetached Duplex Ikate Lekki,Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With Swimming Pool Brand New For Sale At Pincock Beach Estate Lekki La,Pincock Beach Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"245,000,000",0,1,0,5 beds,5 baths,4 Toilets +Tastefully Finished And Spacious 5 Bedroom Fully Detached Duplex With Excellent Facillities,Off Rahman Adeboyejo Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex For With Bq For Sale In Lekki County Homes,Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +80% Complete 20 Rooms Hotel On 2 Plots Of Land For Sale At Sangotedo Opposite Crown Estate Lekki Lagos,Sangetedo Lekki Lagos Lekki Lagos,₦,"65,000,000",0,0,0,10 beds,10 baths,10 Toilets +5bedroom Fully Detached Duplex With A Bq With Super Finishing At Osapa Lekki.,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Duplex With Swimming Pool Pinnock Estate Osapa London Lekki,Osapa London Lekki Lagos,₦,"360,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 9 Units Of 4 Bedroom Terrace Duplex,Ikota Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Detached Family House Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Super Finish 5bedroom Fully Detached Duplex Plus Bq In An Estate Ikate Lekki,Ikate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detached Duplex Plus Bq Chevron Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Detached Duplex With A Room Bq At Agungi,Agungi Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury And Tastefully Finished 5 Bedroom Duplex With Excellent Facilities And 2 Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely And Luxury Built 3 Units Of 4 Bedroom Terrace Duplex With A Room Bq Each & 1 Unit Of 3 Terrace Duplex With A Room Bq. Ikota Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,4 Toilets +5 Bedroom Detached Houses With 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Fully Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +20 Acres Of Land Facing Lekki Express Way Origanrigan Town Ibeju Lekki Lagos,Origanrigan Town Ibeju Lekki Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +Brand New Tastefully Finished Luxury 4 Bedroom Fully Detached Ajah Lekki,Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusively Finished 5bedroom Luxury Family Home Fully Detached Plus Bq Ikate Lekki,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Contemporary 5 Bedroom Duplex With A Swimming Pool, Cinema And A Wine Bar For Sale In Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4,600 Of Land For Sale At Elegunshi Lekki Lagos",Elegunshi Lekki Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Urban Prime One Abraham Adesanya Ajah Lekki,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq For Sale,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Luxury Home Vgc Lekki,Vgc Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,6 Toilets +Exotic 7 B/rm Duplex + Bq,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"76,000,000",0,1,0,8 beds,8 baths,9 Toilets +5 Bedrooms Fully Detached Duplex,... Chevron Lekki Lagos,₦,"75,000,000",1,1,1,6 beds,6 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With 1 Bq For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Spacious 4 Bedroom Semi Detached Duplex With 1 Bq For Sale.,Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Built 5 Bedroom Detached Duplex With 2 Bq,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Terraced Duplex For Sale At Ilasan Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Luxurious 4 Bedroom Semi Detached Duplex,Vgc Axis Vgc Lekki Lagos,₦,"45,000,000",1,1,1,4 beds, baths, Toilets +"5 Bedroom Duplex With A Sizable Study, 3 Living Rooms(2 Downstairs & 1 Family Lounge Upstairs) 1 Dinning Area With A Balcony Upstairs. An Empty Land Behind Meant For The Bq Or What Pleases You. Total Land Size Is 700sqm. Title; Deed Of Assignment.",Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +Shop For Business,"Odofin Steet, Ajiran Agungi Lekki Lagos",₦,"5,000,000",0,1,0, beds, baths,1 Toilets +Spacious 4 Bedroom Semi Detached Duplex With 1 Bq,Lekki County Homes Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,Inside Madiba Estate Ikate Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,6 baths,6 Toilets +6 Bedroom Fully Detached Duplex,"Western Foreshore Estate, Beside Pinnock Beach Estate, Jakande Lekki Lagos",₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex With One Room Bq Inside,Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds, baths, Toilets +Exquisite 5 Bedroom Detached Duplex With 1 Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxuriously Finished 5 Bedroom Duplex With Fitted Kitchen Cabinet With Swimming Pool And Bq In Lekki, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Ultra Modern 2 Units Of 3 Bedroom,Ikate Lekki Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Storey Building Of 6 Bedrooms,Ikate Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets +Neatly Finished & Spacious 4 Bedroom Semi Detached Duplex With A Servant Quarter,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale: Excellently Finished 2 Bedroom Flat In Lekki,Lekki Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +A Newly Built Smart 3 Bedroom Flat With Bq For Sale,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Servant Quarter,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +800sqm Of Land Available,"Northern Foreshore Estate, Lekki Chevron Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Ultra Modern 4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Duplex In Lekki For Sale,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Brand New 4 Bedroom Semi Detached Duplex With A Room Bq For Sale At Chevron Drive Lekki, Lagos",Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built & Tasteful 4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Beautiful 5 Bedroom Fully Detached Duplex With Servant Quarter,Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Off Gabriel Okoi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Constructed & Finished 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With 2 Room Servant Quarters,Jakande Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 6 Bedroom Detached Duplex With 2 Room Bq,Jakande Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +Ultra Modern 1 Unit Of 2 Bedroom,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 14 Unit Of 2 & 4 Bedroom Flat,"Inside Chevy View Estate, Lekki 1 Chevron Lekki Lagos",₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +600 Square Meters Of Land,Vintage Park Estate Lekki Phase 2 Lekki Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale In Lekki,Lekki Lagos,₦,"58,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex Apartment,Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Smart 4 Bedroom Semi Detached With A Bq In Chevron Lekki Lagos,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Modern & Luxury 5 Bedroom Town House With A Servant Quarter,Osapa London Lekki Lagos,₦,"69,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq And Cctv,Off Odiyan Rd Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Neatly Finished, Affordable & Spacious 3 Bedroom Terrace Duplex",Chevron Lekki Lagos,₦,"36,500,000",0,0,0,3 beds,3 baths,4 Toilets +2 Flats Of 3 Bedroom Each,Osapa London Lekki Lagos,₦,"50,000,000",0,0,1,3 beds,4 baths,3 Toilets +4 Bedroom Town Houses,Vintage Park Ii Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Neatly Finished 3 Bedroom Terrace Duplex With Bq,Chevron Lekki Lagos,₦,"36,500,000",0,0,0,3 beds,3 baths,4 Toilets +For Sale: Neatly Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ultra Modern 2 Units Of 4 Bedroom,Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale: 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq In Lekki,Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautiful And Neatly Finished 4 Bedroom Semi Detached Duplex With A Servant Quarter,Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Constructed & Finished 4 Bedroom Semi Detached Duplex,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 6 Bedroom Detached House With 2 Room Servant Quarters,Jakande Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths, Toilets +5 Bedroom Detached Duplex In Mega Mond Estate Ikota Villa,Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Fully Detached Duplex,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Tastefully Finished 3 Bedroom Terrace Duplex With A Servant Quarters,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale: 5 Bedrooms Semi Detached House With A Staff Room,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ultra Modern 5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex With Bq,Off Ojulari Road Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Luxury Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Plots Of Sand Filled Land For Sale At Chevron Lekki 6 Plots Of Sand Filled Land For Sale At Chevron Lekki,Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Block Of 3 Bedroom Flat With Bq,Ikota Lekki Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive & Well Finished 5 Bedroom Detached Duplex With A Bq,Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of 4 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tasteful 4 Bedroom Terrace Duplex At Chevron,Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exclusive 4 Bedroom Semi Detached Duplex With Servant Quarter,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex (3units) With Bq,Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,1,4 beds,4 baths,4 Toilets +3428 Square Meters Of Land,Road 22 Vgc Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex Up For Sale With 1 Bq,Lekki County Homes Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached House With 1 Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With 1 Bq,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex Demarcated Into Flats,Chief Augustine Anozie Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4bedrooms Semidetached Duplex With Bq In A Serene Environment,Chevy View Chevron Lekki Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Exclusively Furnished 5 Bedroom Detached Duplex With A Bq,"Second Toll Gate; Lafiaji, Chevron Lekki Lagos",₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Bq,"Ocean Bay Estate, Orchid Road, Lekki Lagos Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex For Sale,"Canal West Residence, Osapa London Lekki, Lagos Osapa London Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +"Hampton Lake Estate, Lekki",Off Chevron Alternative Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +Newly Built Smart 5 Bedroom Fully Detached,"Buena Vista Estate,orchid Road Lafiaji Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1, Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets +Tastefully Finished 5bedrooms Detached Duplex With Bq Ina Secured Estate,Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 4bedrooms Semidetached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex (furnished),"Off Fola Osibo Road, Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detarched Duplex In Daniels Garden,Few Minutes Before Chevron Estate Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,6 baths,7 Toilets +900 Sqm Of Land, Osapa London Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,Off Chevron Toll Gate Along Orchid Hotel Road Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached House With Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,After Chevron Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Bogije, Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land, Vgc Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Fully Detached Duplex + 1room Bq, Ikota Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Lekki County, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +Neatly Finished And Spacious 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +1020sqm Of Land At At Vgc,Vgc Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Brand New Lovely 3 Bedroom With Bq,Oral Estate By 2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Luxury Semi Detached Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached With Bq For Sale!, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds, baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Lekki County, Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Sunrise Garden, Lekki Lagos",₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"260,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Lovely 5 Bedroom Fully Detached,Pinock Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached,Couplag Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat,2nd Toll Gate By Chevron Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq,"Lekki County, Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Lekki County, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Clean And Well Built 4 Bedroom Spacious Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Lekki County, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Southern Green Estate By Orchid Hotel Road Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Sqm Land,"Cowrie Creek Estate, Ikate Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Tastefully Finished 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Luxury Super Spacious Fully Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Luxury Mansion, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq, Agungi Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Lekki Scheme 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,bedroom Semi Detached With Bq, Cctv, Automated Gate, And Tastefully Finished",Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of 3 Bedroom Terrace Apartments In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of Luxury Brand New 4 Bedroom Townhouses,Elf Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +680sqm Land,Salem Area Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive And Very Large 6 Bedroom Detached House On 800sqm,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,7 baths,8 Toilets +5 Bedrooms Terraces + Bq,"Oral Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Flat In A Serene And Secured Serviced Court,"Banana Island Court, Lekki Igbo Efon Lekki Lagos",₦,"27,000,000",1,0,0,3 beds,3 baths,4 Toilets +6 Bedrooms Fully Detcahed Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land, Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With 2 Bq,Peanock Estate Lekki Phase 2 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Corner Peice 3 Units Of 3 Bedroom Terrace Apartments In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Very Spacious 4 Bedroom Terrace House With Maid Room,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,3 baths,3 Toilets +4 Bedroom Terrace In Bakare Estate Agungi Lekki,Bakare Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Estate Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxury 6 Bedroom Big And Spacious Mansion,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq,Lekki County Home Ikota Lekki Lagos,₦,"75,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex With 1bq,Lekky County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Frontier Estate, A Residential Estate With Great Highlights","Bogije, Lekki. Lekki Lagos",₦,"6,700,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex In Lekki Ph 1,Along Nike Art Gallery Way Ikate Lekki Lagos,₦,"90,000,000",1,1,1,4 beds,5 baths,5 Toilets +2 Bedroom Spacious Apartment,Nike Art Gallery Way Ikate Lekki Lagos,₦,"39,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Spacious Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex In A Prestigious Location In Chevron. (fully Serviced),Along Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Certificate Of Occupancy,"Bogije, Lekki Lekki Phase 1 Lekki Lagos",₦,"6,700,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraces,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Of Fully Detached 5 Bedroom Duplex With C Of O,Pioneer Road Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Terraced Duplexes Available For Sale,Ikota Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +Amazing 2bedroom Luxury Maisonette,"Richmond Gate, Ikate Elegushi. Lekki Ikate Lekki Lagos",₦,"42,000,000",1,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex (with Bq),Ikota Villa Ikota Lekki Lagos,₦,"39,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Bq.,Thomas Estate Devine Homes Lekki Lagos,₦,"43,000,000",1,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With 1 Bq,Ikita Villa Estate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +Premium Listing 4 Bedroom Detached Duplex,Lekky County Home Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With 1 Bq,2nd Toll Gate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Four Bedroom Fully Detached Duplex In A Serene Environment Osapafor Sale,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +"For Sale: Exquisitely Finished 4 Bedroom Detached Duplex With A Room Bq, Up For Sale. Features: •massive Master's Bedroom •all Rooms Ensuite Walk In Closet •family Lounge •fully Fitted Kitchen •cctv, Etc.",Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 7 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"100,000,000",0,1,0,7 beds,7 baths,6 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With Contemporary Design,Agungi Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With A Contemporary Design,Ikota Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Avenue,Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Detached Duplex With Bg, Ample Parking For 4cars Fitted Kitchen Very Spacious Bera Estate Beside Carlton's Gate Chevron Drive. Price 90m Call For Inspection And More Info [redacted]","Bera Estate, Behind Conlton Gate Chevron Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached House,"Alternative Road Off Chevron Drive, Chevron Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Distress Sales Of Plots Of Land,"Orchid Hotel Road, Ikota Ikota Lekki Lagos",₦,"17,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq (jumbo Size)@ #120m,"Pioneer Road, Osapa London, Lekki Lagos. Osapa London Lekki Lagos",₦,"120,000,000",1,1,1,5 beds,7 baths,6 Toilets +4bedroom Semi Detached With A Bq With Governor Consents,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"55,000,009",1,1,1,5 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex With A Bq At Orchid With Governor's Consent,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Oral Estate Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +A 4 Bedroom Bungalow With Bq,V. G. C Estate. Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Smart 5 Bedroom Fully Detached With A Bq With Governors' Consent,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex + Bq,Ikota Villa Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +House For Sale,Shorprite Road Jakande Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,4 Toilets +5bedrooom Fully Detached Duplex For Sale,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,5 beds,5 baths,6 Toilets +"For Sale 5 Bedroom Detached Duplex With Bq Location : Osapa London, Lekki . Lagos ",Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom With Bq Duplex,"Lakeview Park Ii Estate, By Orchid Hotel Road, Off Laffiaji Village Chevron Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,1 Toilets +Newly Built 4 Bedroom Duplex For Sale At Conservative Chevron,Conservative Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Tastefully Finished 4 Bedroom Terraced House Plus 1 B/r Bq For Sale In Royal Gardens Estate, Lekki Expressway","Deji Avenue , Royal Gardens Estate Lekki Phase 2 Lekki Lagos",₦,"49,999,999",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chvron Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets +600sqm Of Land Lekki, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Fitted 6 Bedroom Mansion Detached With Swimming Pool In Lekki 1,Off Ayinde Akinmade Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets +Newly Built And Fitted 6 Bedroom Mansion Detached With Swimming Pool In Lekki 1,Off Ayinde Akinmade Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,0,6 beds,6 baths,7 Toilets +Now Selling *@n65m Per Unit (semi Detached)* *@n95m Per Unit (semi Detached)* Newly Built 4units Of Massive 4bed Semi Detached Duplex Plus Bq With Some Super Finishing*,By Shoprite Osapa Osapa London Lekki Lagos,₦,"65,000,000,000",0,1,1,4 beds,4 baths,5 Toilets +Jumbo Mansions,Muritala Eletu Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,0 baths,0 Toilets +Newly Built 4 And 5 Bedroom Fully Detached Duplex With A Bq,"Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road ,lekki Chevron Lekki Lagos",₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Flat + Bq,Ojulari Road Off Lekki Expressway Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Massive, Well Designed And Finished 5 Bedroom Detached House Within A Fenced Exclusive Premises Located Off Admiralty Road, Lekki Scheme 1","Admiralty Road, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,1,0,5 beds, baths, Toilets +A Well Designed And Finished 5 Bedroom Detached Triplex,"Off Admiralty Way, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"155,000,000",1,0,0,5 beds,0 baths,0 Toilets +"3050sqm Fenced Virgin Land (with About 100 Piles) With Approval For 10 Floor Residential Development Of Thirty (33) Apartments Located Off Admiralty Way, Lekki Scheme 1, Lagos.","Off Admiralty Way, Lekki Scheme 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +New 3 Bedroom Erraced House,Lekki Gardens Iii Chevron Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Fenced Commercial Land Measuring 7737 Square Meters,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Home With Cofo In Lekki,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"10,950,000",1,1,0,4 beds,4 baths,4 Toilets +Automated Smart Homes For Sale At Give Away Price,Orchid Hotel Road Lekki Lekki Phase 2 Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built Four Bedroom Semi Detached Duplex With A Fitted Kitchen And A Boy’s Quarters,Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,2 Toilets +Half Plot Of Land,Off Prince Olanrewaju Street; Elegushi/ Ilasan Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Chevron Lekki,"Chevron Cooperative, Lafiaji Community, Orchid Road, Lagos Chevron Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Osapa London Lekki,Osapa London Lekki Lagos,₦,"83,000,000",1,0,0, beds, baths, Toilets +Brand New And Nicely Finished 4 Bedroom Semidetached Duplex With Boys Quarters And A Gate House,Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land In Lekki Lagos,Elegushi Lekki Lagos Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Corner Piece Land For Sale At Ikate Elegushi,"Ikate Elegushi, Lekki Lagos Ikate Lekki Lagos",₦,"65,000,000",0,0,0, beds, baths, Toilets +Land In Seagate Estate Ikate Lekki Lagos,"Seagate Estate, Ikate Lekki Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +Lovely 3 Bedroom Terrace In Lekki Phase 1,Babatope Bejide Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Land For Sale In Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Lekki,Piccadilly Hotel And Suites Road Agungi Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +A Shop For Sale At Ikota Shopping Complex,Ikota Shopping Complex Vgc Lekki Lagos,₦,"9,000,000",1,0,0,1 beds,1 baths, Toilets +"Luxury Finished 4 Bedroom Fully Detached Duplex House With Bq In Lekki, Ikota Lagos","Chevron Alternative Drive, Lekki, Ikota Lagos State. Chevron Lekki Lagos",₦,"69,000,000",1,1,1,4 beds,6 baths,6 Toilets +6 Bedroom Massive Fully Equipped Fully Detached Duplex With Swimming Pool And 2 Bq With Fitted And Gym.,Cycle Mall Way Jakande Lekki Lagos,₦,"100,000",0,0,0,6 beds,6 baths,7 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With A Bq Available For Sale,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached Duplex Plus 1room Bq On 450sqm,Vgc Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,6 Toilets +New Built Six Bedroom Duplex For Sale At Vgc,Vgc Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Distress Sale Of A Strategically Located Two Plots Of Land In A Built Up Area Of Bera Estate,chevron Drive With Governor's Consent",Bera By Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",1,1,0, beds, baths, Toilets +2 Bedroom Flat + Room Bq,Silicon Valley Estate Igbo Efon Lekki Lagos,₦,"21,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Land Size: 1,360 Sq.m. I Chevyview Estate", Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Villa With 2 Bedroom Guest Chalete For Sale In Lekki Kw 2244,Fara Park Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths, Toilets +"Land Size: 2,660sqm (4plots) Corner Piece.",... Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Dry Bare Land Jv Land 2019 Sqm Corner Piece,... Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace For Sale In Ikate Elegushi Kw 2243,Ikate Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets +An Exquisitely Finished 3 Bedroom (all Ensuite) 4 Units,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4bedroom Terrace Duplex In An Estate In Lekki Pjase1,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace In Agungi For Sale,Akinkunmi Ayinla Close Agungi Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached (villa) Homes,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Magnificent Event Center Facing The Express,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +Terrace Homes,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +Maisonette Apartment,"Periwinkle Site Office, End Of Freedom Way, After This Present House Church, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,1,0,3 beds,3 baths,3 Toilets +8(nos) 3 Bedroom Town Houses With Bq, Agungi Lekki Lagos,₦,"45,000,000",0,0,1,3 beds,0 baths,0 Toilets +Newly Built 5 Bedroom In Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,5 Toilets +Newly Built 5bedrooms With Bq,Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +Massive 5 Bedroom Fully Detached Duplex + Bq For Sale At Osapa London,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex With A Bq In A Serene Environment,Buena Vista Estate By Chevron Toll Gate By Orchid Hotel Road Lekki Chevron Lekki Lagos,₦,"77,000,000",1,1,1,5 beds,5 baths,6 Toilets +912 Sqm Of Land At Lekki Phase 1 With C Of O,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Terrace Duplex In A Serene Neighbourhood With Swimming Pool.,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +5995 Sqm Land In Lekki Phase 1 (water Front).,Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Old Fully Detached 5 Bedroom Duplex,Olajide Olabanji Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Exquisite Furnished 2 Bedroom Terrace At Pinnock Estate, Lekki, 3 Units In All.",Jakande Lekki Lagos,₦,"130,000,000",0,1,1,2 beds,2 baths,3 Toilets +Newly Built 10 Units Of 5 Bedroom Fully Detached Duplex Available For Sale.,"Orchid Road, Lekki Before Lekki County Homes. Lekki Phase 2 Lekki Lagos",₦,"86,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite Two Bedrooms And One Bedroom Apartments For Sale,P.14 B.62 Dr. Ahmid Balogun Street Lekki Phase 2 Lekki Lagos,₦,"26,000,000",1,0,0,2 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex +bq For Sale At Ikate,Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex And 1 Bq For Sale.,... Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bed Room Flat With Bq @ Prime Water Veiw Estate,Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +6 Units Of 1 Bed Room Apartment,Ikate Ikate Lekki Lagos,₦,"24,000,000",1,1,0,1 beds,1 baths,1 Toilets +5 Bedroom Ultra Modern Luxury Duplex,Femi Okunnu Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"13 Units Of 1, 2 And 3 Bedroom Hotel Suites.",Around Lekki Second Roundabout Ikate Lekki Lagos,₦,"850,000,000",1,1,1,3 beds,3 baths,3 Toilets +12 Units Of 2 Bedroom Apartments,Ikate Elegushi Ikate Lekki Lagos,₦,"34,000,000",1,1,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ajayi Alaba Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Fully Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built And Very Spacious 3 Bedroom Terrace,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxurious Units Of 4 Bedroom Terraces,Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached Duplex For Sale,Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Contemporary 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Full Plot Of Land Measuring 875 Sqm,Elegushi Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Premium Serviced Plot Of 1089sq.m For Sale At Twin Lake Estate,Twin Lake Estate Chevron Lekki Lagos,₦,"200,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Duplex For Sale,Oral Estate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Studio Apartment, Ikate Lekki Lagos,₦,"14,000,000",0,0,0,1 beds,1 baths,1 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Idado Lekki Lekki Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Units Of 2 & 3 Bedrooms For Sale.,Oral Estate Lekki Lagos,₦,"25,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Apartment In A Serene Environment,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace,Ikate Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Contemporary, Elegant And Spacious 5 Bedroom Fully Detached Duplex.",Ikate Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Jumbo Size 5 Bedroom Duplex For Sale,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex Located In A Serene Neighborhood And Offers Constant Electricity Supply.,Chevron Lekki Lagos,₦,"83,000,000",1,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Maisonette For Sale,Ikate Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Neighborhood,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Terrace For Sale,Ikota Area Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq For Sale In Lekki Kw 1310,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths, Toilets +6 Units Of 3 Bedroom Terrace For Sale In Lekki,Ikate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths, Toilets +5bedroom Duplex For Sale In Chevron Lekki,Chevron Lekki Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,5 Toilets +"3 Bedroom Flat For Sale At Victory Park Estate, Lekki Kw 1540",Victory Park Estate Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House For Sale At Lekki Kw 1478,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths, Toilets +4 Bedroom Terrace For Sale At Chevron Kw 418,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Semi Detached Duplex With 1 Room B/q For Sale At Ikate Kw 1456,Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths, Toilets +Brand New 4bedroom Fully Detached House For Sale (kw 1197),Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Terraced Duplex With B/q For Sale In Lekki Kw 1386,Bella Homes 1 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths, Toilets +2 (nos.) 4 Bedroom Semi Detached House For Sale At Lekki Phase 2,Garba Muhammed Lawal Avenue Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex + Bq For Sale In Lekki Kw 1612,"Megamound Estate, Lekki County Homes Ikota Lekki Lagos",₦,"90,000,000",1,0,0,5 beds,5 baths, Toilets +Luxury 4 Bedroom Detached Duplex For Sale At Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,1,4 beds,4 baths, Toilets +Brand New 5 Bedroom Detached Duplex Sitting On 500sqm,Off Akeem Dickson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Stylish Residential 5 Bedroom Duplex On 2 Floors For Sale In Lekki Kw 1408,Lekki Gardens Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex (kw1204),Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Third Floor 3 Bedroom Flat For Sale In Lekki Kw 1533,Lekki Gardens Horizon 1 Ikate Lekki Lagos,₦,"35,000,000",1,0,0,3 beds,4 baths,4 Toilets +2 Bedroom Terrace Duplex (all Rooms Ensuite + Guest Toilet And Attached Bq),"Oribanwa, Lekki Peninsula, Lagos. Lekki Phase 1 Lekki Lagos",₦,"14,000,000",0,1,0,2 beds,2 baths,2 Toilets +Exquisite 9 Bedroom Fully Detached Duplex For Sale,"Lekki County Homes, Megamound Estate Lekki Lagos",₦,"370,000,000",0,0,0,9 beds,9 baths,9 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With B/q For Sale In Lekki Kw 1384,Creek Avenue Court Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Duplex For Sale In Lekki Phase 1 Kw 1943,Emma Abimbola Cole Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets +Newly Built 4 Bedroom Semi Detached House With Maid's Room For Sale In Lekki Kw 1309,Ikota Lekki Lagos,₦,"36,000,000",0,1,1,4 beds,5 baths, Toilets +5 Bedroom Detached House For Sale In Lekki Phase 1 Kw 1405,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths, Toilets +For Sale: 4 Bedroom Terraced Duplex,Near Orchid Hotel Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +"*for Sale* Luxury, Spacious And Newly Built 6units Of 5bed Room Fully Detached Duplex Plus A Room Bq",Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Newly Built 4 Bedroom Terraced Duplex For Sale At Chevron, Lekki Kw 1561",Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths, Toilets +Very Affordable Dry Land With Cofo For Sale Inside Beechwood Estate Bogiji Lekki Ajah Express Way Kw 1778,Beechwood Estate Bogiji Lekki Lagos,₦,"6,750,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Flat For Sale In Lekki Kw 1454,Opp. Victoria Park Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths, Toilets +Brand New 5 Bedroom Detached Town House In Lekki Phase1,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,7 baths,7 Toilets +Buy Land In Beechwood Estate,"Beechwood, Shapati Lekki Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached House For Sale At Ikota Kw 1559,By Ikota Road Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths, Toilets +5 Bedroom Semi Detached Duplex With Bq For Sale At Chevy View Estate Kw 577,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths, Toilets +Brand New 3bedroom Terrace With A Room Bq For Sale, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Bespoke And Luxury Newly Built 4 Bedroom Terrace Duplex For Sale In Lekki Kw 1306,Ikota Lekki Lagos,₦,"40,000,000",0,0,1,4 beds,4 baths, Toilets +A 5 Bedroom Fully Detached Duplex For Sale In Lekki 2,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex For Sale At Osapa Lekki Kw 2073,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths, Toilets +2 Bedroom Flat For Sale In Lekki Kw 1989,By Alternative Route Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths, Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex On 2 Floors With Bq For Sale In Lekki Kw 1815,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"400,000,000",0,1,1,5 beds,5 baths, Toilets +Newly Built 3 Bedroom Terrace Apartment For Sale In Lekki Kw 1870,Ikate Lekki Lagos,₦,"45,000,000",0,1,0,3 beds,4 baths, Toilets +Brand New 4 Bedroom Duplex,Meadow Hall School Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Brand New 2 Bedroom Flat With Bq For Sale At Lekki Kw 1308,Ikate Lekki Lagos,₦,"50,000,000",0,1,0,2 beds, baths, Toilets +Massive 5 Bedroom Duplex For Sale In Lekki,Orchid Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Block Of Flats For Sale At Lekki Phase 1 Kw 1947,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths, Toilets +Brand New Distressed 2 Bedroom Flat,Jerry Iriabe Area Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Terrace In Lekki,Osapa London Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,5 baths,5 Toilets +F O R S A L E: Beautifully Built 5 Bedroom Fully Detached Duplex And Bq (kw1214),Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds, baths, Toilets +Block Of 4(nos.) 2 Bedroom Flat For Sale In Lekki Kw 1545,Aro Village Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,3 baths,3 Toilets +3 Bedroom Detached Duplex House For Sale At Jakande Lekki Lagos,"New County Estate, Off Ajifoluke Avenue Jakande Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +C Of O Most Affordable Property In Lekki. Call [redacted] Today,Ikate Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,5 Toilets +12 Units Newly Built 4 Bedroom Terraces.,Orchid Road Before South Point Estate Oral Estate Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land Behind Tantalizer,Behind Tantalizer Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex For Sale In Lekki, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Chevron Lekki/ikota . Pay And Pack In.,"Immediately After Chevron Toll Gate, Ikota Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached/ 1bq,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets +Brand New All Round Marble Luxury Full Detached 6bedroom Duplex Mansion,"Off Ayinde Akinmade Street, Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"380,000,000",0,1,1,6 beds,7 baths, Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",1,1,1,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes ( Megamound) Close To Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +300sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +530 Sqm Land,Acadia Groove Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekky County Homes (megamound) Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Finished 4 Bedroom Semi Detached Dulex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Alpha Beach Road Close Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished Spacious 5 Bedroom Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +"21,000 Sqm Land",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"3,150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Excellently Finished 3 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"83,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +675sqm Land, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Buena Vista Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Chevy View Estate; Chevron Lekki Lagos,₦,"109,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"73,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +402 Sqm Land,"Ikota Villa Estate , Ikota Lekki Lagos",₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With 1 Bedroom Flat Bq,Ocean Bay Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Sand Filled 600sqm Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Finished 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,. Idado Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Idado Idado Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Atlantic View Estate Chevron Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced Plot Of Land (600 Sqm) In Lake View Park Estate,"Lake View Park Estate, Opposite Vgc Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached House In Lekki,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex, Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Town House At Lekky County Homes,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex Sitting,Chevron Area Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +800 Sqm Plot Of Land,"Road 5, Suite I 61 Vgc Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Buena Vista Estate Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +1 Bedroom Bungalow,South Point Estate Chevron Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Idado Idado Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +950 Sqm Land (plot 72a Block 33),Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment For Sale,Ilasan Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"51,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq For Sale In Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,"Buena Vista Estate, Orchid Hotel Road, Eleganza Bus Stop, 2nd Toll Gate Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Diamond Estate, Lekki Phase 1 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Lake View Park 2, Lekki Peninsula Ii Lekki Phase 1 Lekki Lagos",₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +624 Sqm Plot Of Land For Sale In Ikate,Vintage Park Estate Ikate Lekki Lagos,₦,"88,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 5 Bedroom Detached Duplex With Penthouse And Bq For Sale In Acadia Groove Estate, Lekki",Acadia Groove Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Lekky County Homes,Lekky County Homes Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Excellence Finishing,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,5 Street Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,White Oaks Ologolo Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +740 Plots For Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +400 Sqm Land,Lake View Park 1 Opposite Vgc Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,104 Sqm Land",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Spacious 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Studio Or Cinema Room,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,. Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +500sqm Land For Sale,Chevron Twin Lakes Estate Chevron Lekki Lagos,₦,"62,500,000",0,0,0, beds, baths, Toilets +Residential Land,"Lakeview Park 2 Orchid Hotel Rd; Chevy View Estate, Lekki Lagos",₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +648 Sqm Land,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellently Finished Spacious 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,6 Toilets +650sqm Land,Oral Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Diamond Estate Phase 1, Along Monastery Rd, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,"Admiralty Estate, Alpha Beach Road Estate Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +578sqm Land,Mobil Estate Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +400sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"34,000,000",0,0,0, beds, baths, Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Napier Gardens Estate; Vgc Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex,. Oral Estate Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex Sitting,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Alperton Court Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, chevy View Estate; Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Bedroom Semi Detached Duplex In Ocean Bay Estate, Lekki",Ocean Bay Estate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Well Built 5 Bedroom Detached Duplex For Sale In Osapa, Lekki",Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +340sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"28,900,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"84,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +648sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets +Spacious 6 Bedroom Detached Duplex For Sale In Pinnock Beach Estate Lekki,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets +670sqm Land, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Agungi Lekki Lagos,₦,"69,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Bera Estate (chevy View Estate),Bera Estate (chevy View) Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 5 Bedroom Detached Duplex For Sale In Osapa, Lekki",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedroom Detached Duplex With Good Finishing For Sale In Ikate,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Finished 5 Bedroom Detached Duplex For Sale,Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Terrace Duplex With Swimming Pool,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1001.88 Sqm Land For Sale (block 1, Plot 20)",Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"69,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Finished 5 Bedroom Detached Duplex For Sale In Ologolo,Ologolo Ologolo Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"115,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ocean Bay Estate Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Serviced Apartment,Bourdillion Court Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Terrace Duplex,Mini Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +10200sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +500sqm Land,Buena Vista Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,5 Street Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +500sqm Land For Sale,Acadia Groove Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Oral Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex,", 2nd Roundabout, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached Duplex For Sale In Orchid Hotel Road, Lafiaji, Lekki Lagos","Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Area Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Maruwa Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +750 Sqm Land,Ikate Ikate Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +962sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +400 Sqm Land,Lakeview View Park 2 Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"23,500,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land,Victory Park Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6 Bedroom Fully Detached Duplex With 4 Living Rooms, 3 Bq And Swimming Pool",Vgc Vgc Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Exquisite 3 Bedroom Flat With Penthouse,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,"Close To Atlantic View Estate, Along Alpha Beach Road, Opposite, Chevy View Estate Lekki Lagos",₦,"19,000,000",0,0,0,2 beds,2 baths,3 Toilets +Mini Flat,South Pointe Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Well Finished 4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Finished 2 Bedroom Apartment, Oral Estate Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +21000sqm Land, Lekki Phase 1 Lekki Lagos,₦,"97,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 3 Bedroom Serviced Flat,Oral Estate Close To Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +670sqm Land,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Along Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flats (off Plan),Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"24,900,000",0,0,0,3 beds,3 baths,0 Toilets +600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"46,500,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +960sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Well Finished 3 Bedroom Terrace Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,"Bourdillon Court Estate; Chevron Drive, Close To Chevy View Estate, Chevron Lekki Lagos",₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale,Maruwa Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Primwater View Estate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex Sitting On 1100sqm,Mobil Estate Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +1104sqm Land,Pinnock Beach Estate Road Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex With 1 Room Bq,Vista Estate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Terraced Bungalow,"South Point Estate, Orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex, . Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale, Ilasan Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Gardens Horizon 2 Estate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +1341 Sqm Land,. Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Finished 5 Bedroom Semi Detached Duplex,Lekky County Homes (megamound); Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +900sqm Land For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, cardogan Estate; Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +650 Sqm Plot Of Land For Sale (with Governors Consent),Atlantic View Estate Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached For Sale,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"940 Sqm Land For Sale (block 66c, Plot 10)",Lekki Scheme 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Agungi,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex For Sale In Oral Estate,Oral Estate Close To Chevron Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ologolo Opposite Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +450sqm Land For Sale In Lekky County Homes (megamound Estate),Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"38,250,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Full Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +540sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"88,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lakeview Park 1 Opposite Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Dupelx,Chevron Area Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +600 Sqm Land,Lakeview Park 2 Orchid Hotel Road; Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale,Lekki Conservation Area Chevron Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Area, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,"Chevy View Estate, Along Chevron Drive Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,"Chevron Area, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Very Well Finished, Furnished 5 Bedroom Detached Duplex For Sale In Ikate, Lekki", Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekky County Homes (megamound) Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Lake View Park 2 Along Orchid Hotel Rd Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Finished 6 Bedroom Detached Duplex With Detailed Finishing And 10.5 Kva Inverter,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Chevron Area Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellently Finished 5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Flat,"Lekki Horizon 1, Ikate Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,"Agungi, Lekki, Lagos Agungi Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached,. Oral Estate Lekki Lagos,₦,"36,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fenced 690sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Furnished 4 Bedroom Semi Detached For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"28,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"54,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex At Atlantic View Estate,Atlantic View Estate Chevron Lekki Lagos,₦,"32,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Lekky County Homes (megamound); Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,"White Oak Estate, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Dobys Haven Close To Vgc Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Serviced Apartment,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale In Agungi,Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellently Finished Very Spacious 5 Bedroom Detached Duplex With Bq And Laundry Room,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Ologolo, Lekki, Lagos Agungi Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +937 Sqm Land,"Lekki Scheme 2, Beside Fire Station Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale In Ikota Villa Estate (carcass),Ikota Villa Estate Ikota Lekki Lagos,₦,"22,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplexes In South Lake Homes Estate,"South Lake Homes Estate, Ologolo, Opposite Osapa London Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +605 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"42,350,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Mobil Estate Close To Vgc Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex, Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +648 Sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,0,0, beds, baths, Toilets +4 Bedrooms Terrace Duplex,June 4 Gardens Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +648 Sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +576 Sqm Land,Mobil Estate Vgc Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +640sqm Land,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,. Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex, Ikate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,"Lakeview Park 2 Estate, Orchid Hotel Road Close To Chevron Lekki Lagos",₦,"43,000,000",0,0,0,0 beds,0 baths,0 Toilets +508sqm Land,Lekki County Homes Ikota Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Sqm Land,"Lakeview Park 2 Estate; Orchid Hotel Road, Chevron Lekki Lagos",₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +3428sqm Land,Vgc Vgc Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Finished 5 Bedroom Fully Detached Duplex For Sale Bera Estate (chevy View Estate),Bera Estate (chevy View Estate) Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Fully Detached Duplex,. Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Conservation Road Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets +500 Sqm Dry Land For Sale In Ocean Bay Estate 35 Million,"Ocean Bay Estate, Lafiaji, Off Orchid Hotel Rd Lekki Lagos",₦,"35,000,000",1,0,0, beds, baths, Toilets +Distress Sale 6 Bedroom Semi Detached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,6 baths,7 Toilets +Spacious Well Built 5 Bedroom Terrace Duplex,Oral Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Fully Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +921sqm Land,Lekki County Homes (megamound) Ikate Lekki Lagos,₦,"74,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Mobil Estate, Mobil Estate Rd After Vgc, Before Ajah Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious And Well Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +324sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +"7 Contiguous Plots, Measuring 4,550 Sqm",Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +815sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Finished 4 Bedroom Semi Detached Duplex For Sale In Ololgolo,Ologolo Ologolo Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +504 Sqm Plot Of Land For Sale,Pinnock Beach Estate Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +1200sqm Land For Sale,Ocean Bay Estate Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +600sqm Land,Mobil Estate Close To Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,White Oaks Estate Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 5 Bedroom Fully Detached Duplex,Zone A Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Cardogan Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Land, Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Finished 5 Bedroom Fully Detached Duplex For Sale,Oral Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +895sqm Land For Sale,Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Terrace Duplex For Sale,Ocean Bay Estate Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,350 Sqm Land For Sale In Mayfair Gardens Estate",Lekki Lagos,₦,"29,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ocean Bay Estate Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +450sqm Land,Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land, ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +648sqm Land,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Lake View Park 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3500sqm Land, Vgc Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Well Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +650sqm Land, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Full Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Very Well Built Spacious 5 Bedroom Detached Duplex With Bq For Sale In Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Flat,Lekki Gardens Ikate Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detcahed Duplex,Oral Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Idado Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Bungalow In The Beautiful & Serviced South Point Estate,Southern Point Estate Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +450sqm Land For Sale,"Ocean Bay Estate, Off Orchid Hotel Rd, Immediately After 2nd Toll Gate Ologolo Lekki Lagos",₦,"35,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +700sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment For Sale,Atlantic View Estate Opposite Chevy View Estate Chevron Lekki Lagos,₦,"16,000,000",0,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +800sqm Land,"Lakeview Park 2 Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"39,000,000",0,1,1,3 beds,3 baths,4 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex For Sale In Agungi,Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ocean Bay Estate Chevron Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Crest Villa Estate Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Carcass Flat For Sale,Elegenaza Gardens Estate Vgc Lekki Lagos,₦,"24,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Napier Gardens Estate; Vgc Lekki Lagos,₦,"69,500,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Along Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +"600 Sqm Land For Sale In Mobil Estate, Lekki",Mobil Estate Close To Vgc Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +912 Sqm Plot Of Land At Pinnock Beach Estate,Pinnock Beach Estate Jakande Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +"1001.43 Sqm Land ( Block 66, Plot 7)",Lekki Scheme 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Well Finished 4 Bedroom Semi Detached Duplex For Sale In Chevron, Lekki",Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Megamound Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Road 1 Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,104 Sqm Land",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +600sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"39,000,000",0,0,0, beds, baths, Toilets +Newly Furnished 5 Bedroom Fully Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +800sqm Land,Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Fully Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 2 Bedroom Flat For Sale In Ilasan 30 Million,Ilasan Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Flat, Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With Bq, Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Lafiaji Lekki Lagos,Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +1200sqm Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex For,Oral Estate Oral Estate Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,3 baths,4 Toilets +600 Sqm Plot Of Sand Filled Land For Sale,Northern Foreshore Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Bera Estate (chevy View) Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fenced And Hayed 430sqm Land For Sale In Lekki Phase 1,Off Fola Oshibo Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +"Well Finished 4 Bedroom Semi Detached Duplex For Sale Off Orchidhotel Road, Lafiaji, Lekki","Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Full Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"30,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,. Vgc Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Sqm Land,Buana Vista Estate Along Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Idado Idado Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern Luxury 2 Bedroom Apartment In Ocean Bay Estate 31 Million,"Ocean Bay Estate, Lafiaji, Off Orchid Hotel Rd Lekki Lagos",₦,"31,000,000",1,0,1,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ocean Bay Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale,Mobil Estate Road Vgc Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,700 Sqm Land (block C4 Plot4)",Lekki Scheme 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment Carcass Apartment For Sale,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"19,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Finished 4 Bedroom Detached Duplex For Sale In Ikota Villa Estate,Ikota Villa Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0, beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +760 Sqm Land,Melrose Park Estate Vgc Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Close To Pinnock Beach Estate Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,3 beds,3 baths,4 Toilets +Land,Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Pearl Gardens Estate, Sangotedo, Along Monastery Rd Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Very Well Finished 4 Bedroom Semi Detached Duplex,Chevron Area Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fenced 690sqm Land,Atlantic View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached For Sale,Idado Idado Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale By Chevron Toll Gate,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Detached Duplex For Sale, Orchid Hotel Road, Lafiaji","Orchid Hotel Road, Lafiaji, Lekki Chevron Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +600sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"36,000,000",0,0,0, beds, baths, Toilets +Residential Land, pinnock Beach Estate; Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Ikota Villa Extension Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,5 baths,6 Toilets +Well Finished 5 Bedroom Full Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +648sqm Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nice 4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Close To Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex (carcass) For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Chevy View Estate, Opposite Chevron Hq Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +600 Sqm Land,Lakeview Park 2 Along Orchid Hotel Road Close To Chevron Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Sand Filled 2705sqm Land For Sale,Orchid Hotel Road Chevron Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Peninsula Ii Lekki Lagos",₦,"49,000,000",1,1,1,4 beds,4 baths,5 Toilets +Spacious 5 Bedroom Fully Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Close To Romay Garden Ikate Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Sitting On 500sqm Land,Mobil Estate Close To Vgc Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex For Sale In Idado, Lekki",Idado Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious Well Finished 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +568sqm Land For Sale,Ocean Bay Estate Chevron Lekki Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Newly Furnished 5 Bedroom Fully Detached For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"73,000,000",0,1,1,5 beds,5 baths,6 Toilets +324sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Off Adewunmi Adebimpe Drive, Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 3 Bedroom Flat For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"475,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Bungalow,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Mobil Estate Close To Vgc Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Well Finished 6 Bedroom Fully Detached Duplex With Spacious Rooms For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex With A Room Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale In Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Pearl Gardens Estate, Sangotedo, Along Monastery Rd Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat With Bq For Sale In Lekki,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment For Sale,Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Horizon 2 By Still Water Gardens Estate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,5 baths,6 Toilets +600sqm Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Bera Estate,Bera Estate By Uba Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ocean Bay Estate, Along Orchid Hotel Rd, Lekki Peninsula Ii Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +400 Sqm Land In Carlton Gate Estate,Carlton Gate Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Bedroom Apartment,Boudillion Court Estate Chevron Lekki Lagos,₦,"52,000,000",0,0,0,2 beds,2 baths,3 Toilets +400 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"36,800,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Land,Ikota Villa Estate Ilasan Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex For Sale In Osapa,Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Lekki County Homes(megamound) Close To Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +600 Sqm Land,Buena Vista Estate Close To Chevron Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Maruwa Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Daniels Court, Orchid Hotel Road Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Carcass Duplex With Swimming Pool And 2 Rooms Bq,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"70,000,000",0,0,0,7 beds,7 baths,8 Toilets +800 Sqm Land,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Well Built 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 3 Bedroom Terrace Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +962sqm Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Eleganza Gardens Estate Opposite Vgc Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Spacious 4 Bedroom Terrace Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Bungalow,Napier Gardens Estate Vgc Lekki Lagos,₦,"57,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +535sqm Land,Vgc Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Bedroom Terrace Bungalow,"South Point Estate, Orchid Hotel Road Close To Chevron Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Lake View Park 1, Ikota Vgc Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, white Oaks Estate; Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +700 Sqm Serviced Corner Piece Plot For Sale 90 Million,Vintage Park Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex (carcass),Ocean Bay Estate Close To Chevron Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki County Homes (megamound) Ikota Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound) Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Units Of 2 Bedroom Flats And 2 Units Of 4 Bedroom Flats,Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate; Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Orchid Hotel Road Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +693 Sqm Land,Lekky County Homes Ikota Lekki Lagos,₦,"55,440,000",0,0,0,0 beds,0 baths,0 Toilets +900sqm Land For Sale,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"87,000,000",0,1,1,4 beds,4 baths,5 Toilets +100sqm Land,Nicon Town Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Sqm Land,Victory Park Estate Osapa London Lekki Lagos,₦,"93,000,000",0,0,0,0 beds,0 baths,0 Toilets +700sqm Land With Two 4 Bedroom Detached Duplex,Atlantic View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,8 beds,8 baths,10 Toilets +900sqm Land,Cowrie Creek Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Land,Orange Island; Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms Bq,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury Four (4) Bedroom Terrace,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,6 baths,4 Toilets +Ultra Luxuriuos Three Bedroom Semi Detached Duplex With A Bq In A Serviced Mini Estate,"Off Orchid Hotel Road, By 2nd Toll Gate,lekki 2. Lekki Phase 2 Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,3 Toilets +2 Units Of Brand New 4 Bedroom Semi Detached Duplex,"Van Daniels Street, Off Orchid Hotel Road.lekki 2 Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,4 Toilets +Exquisitely Finished 5 Bedroom Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Bricks Court Estate, Off Orchid Hotels, Eleganza,lekki 2 Lekki Phase 2 Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,"Road 22, Ikota Villa Estate, Behind Mega Chicken. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 3 Bedroom Flat With Luxurious Finishing,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,3 Toilets +Land,Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With 1 Bq,Eleganza Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Stand Alone Duplex,"By Conoil, Chisco Ikate Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets +Contemporary Five (5) Bedroom Fully Detached Duplex With A Room Bq,Chevy View Annex Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets +Massive 4 Bedroom Semi Detached Duplex," Ikate Around Conoil, Chisco Ikate Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +Superbly Finished 4 Bedroom Fully Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets +Juicy 5 Bedroom Ultra Luxury Detached Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,7 baths,5 Toilets +4 Bedroom Terrace Duplex,Off Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,6 baths,4 Toilets +5 Bed Duplex + Bq,Off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +Ultra Luxurious 5 Bedroom Fully Detached Duplex,"Chevy View, Chevron. Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets +5bedroom Terrace With A Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds, baths, Toilets +Land, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ultra Classic Serviced Four (4) Bedroom Semi Detached Duplex With A Bq,"Brand New Mini Estate Close To Pinnoch Beach, By Femi Okunu Street, Jakande. Jakande Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,5 baths,4 Toilets +7 Units Of Brand New 3 Bedroom Terrace Duplex With Bq,"Van Daniel Street, Off Orchid Hotel Road Ikota Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,4 baths,3 Toilets +Very Classy Fully Detached Duplex,"Van Daniel's Street, Off Orchid Hotel Road. Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Ultra Classic 4 Bedroom Semi Detached Duplex,"Empire Homes, Chevron Alternative Road Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex With 1 Bedroom Miniflat,"Off Kunsenla Road, Ikate Elegushi,lekki Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxurious 4 Bedroom Fully Detached Duplex,"Road 22, Ikota Villa Estate. Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,"Back Of Spar Mall, Chisco Ikate. Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex,"Empire Homes, Chevron Alternative Drive Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +Fully Detached Duplex,Lekki Lagos,₦,"170,000,000",0,0,0,4 beds, baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Victoria Crest, Orchid Hotel Road, Eleganza Bus Stop, After 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,4 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3no 4bedroom Terrace With Bq,Off Durosimi Etti Street Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Duplex +cctv,Behind Megachicken By Vgc Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Dry Land,Vgc Lekki Lagos,₦,"5,300,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terraced Duplex For Sale At Chevron Alt Route,Chevron Alternative Route Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Alternative Route Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terraced Duplex For Sale Off Orchid Road Lekki,Off Orchid Road By The 2nd Tollgate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Ikota Gra Lekki Lagos Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4bedroom Standard Modern Duplex For [email protected] Idado Estate Lekki,Idado Estate Idado Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 4bedroom Terrace House With Bq; Job Vacancy!!! A Qualified Estate Surveyor With 5 Years Experience And Has Passed Niesv Exams Should Send Applications And Cv To [redacted],Midland Court Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds, baths, Toilets +Spacious And Functional 5bedroom Detached Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Whitehead School Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Beedroom Detached Duplex,Ologolo Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,5 Toilets +Neatly Finished 4bed Duplex,Ologolo 2nd Roundabout Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",1,1,0,5 beds,6 baths,6 Toilets +Contemporary 3 Bedroom Terraced Duplex For Sale,Off Ilasan Road Ilasan Lekki Lagos,₦,"55,000,000",1,1,0,3 beds,3 baths,4 Toilets +Shopping Plaza For Sale Directly Facing The Main Road,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +Luxurious 5 Bedrooms Duplex + Bq,Rasaq Eletu Estate. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths, Toilets +"100,2sqm",Pinnock Beach Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Eleganza Ikota Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly & Beautifully Finished 4 Bed Semi Detached Duplex Situated In New Providence Garden Estate,Behind Northwest Fueling Station Vgc Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bed Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Rasaq Eletu Estate; Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +1 Bed Room Mini Flat,Ocean Bay Estate By Eleganza Chevron Lekki Lagos,₦,"5,000,000",1,1,0,1 beds,1 baths,2 Toilets +Luxurious 4 Bedroom Duplex + Bq,Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bed Semidetached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Dry 1,300sqm (serviced Plots)",Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Luxury & Massive 5 Bedroom Duplex + Bq,By Mega Chicken Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Plot Of Dry Land On A Developed Part Of Ologolo,By Spg Ologolo Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Serviced Plots Of Land,"Orchid Road; Eleganza Bus Stop, Chevron Lekki Lagos",₦,"24,000,000",1,0,0,0 beds,0 baths,0 Toilets +Affordable And Tastefully Furnished 4 Bedroom + Bq Semi Detached House,Arcadia Mews Estate Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets +Affordable Cfo Land For Sale In Lekki Lagos.,Lekki Lagos,₦,"7,500,000",0,1,0, beds, baths, Toilets +Massive 5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Cfo Land For Sale In Lagos. Lekki.,Lekki Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets +Newly Built And Tastefully Finished 2 Units Of 4 Bedrooms Fully Detached Houses (separate Compound), Ologolo Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Built 5 Bedroom Duplex With A Pool,Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets +Fully Furnished And Distress Sales 4bedroom Duplex,The Property Is Behind Elevation Church Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,1,1,4 beds,4 baths,5 Toilets +Tastefully 4bedroom Duplex,Off Chevron Road Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplexe With A Room Bq,"Madiba Estate ,ikate , Lekki Phase 1, Lagos Ikate Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bed Room Corner Piece Terrace Duplex In Beuna Vistate Estate,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,4 Toilets +Nnpc Filling Station For Sale,"Eleko Junction, Ayeleju Lekki Epe Expressway, Lagos Lekki Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +Masterclass 4bedroom Duplex Furnished,Inside An Estate Off Chevron Road Chevron Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,4 baths,5 Toilets +Cambawall Estate Aboji Gra,Abijo Gra Lekki Lagos,₦,"6,500,000",0,1,1, beds, baths, Toilets +Newly Built 4 And 5bedroom Semi Detached House,Ocean Palm Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate, Ikate Lekki Phase 1 Lagos.",Madiba Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds, baths, Toilets +2 Unit Of 4 Bedroom Semi Detached Duplex For Sale,Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Urban Prime One Levadia,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"10,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury And Fully Furnished 4bedroom Duplex,The Property Is At Orchid Hotel Road In A Very Beautiful Estate Chevron Lekki Lagos,₦,"57,000,000",1,1,1,4 beds,4 baths,5 Toilets +Plots Of Land At Chaplin Court Estate,Ogombo Road Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"24,500,000",1,1,0, beds, baths, Toilets +Plots Of Land At Chaplin Court Estate,Ogombo Road Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"24,500,000",0,1,0,0 beds,0 baths,0 Toilets +Distress Sale Of A 3 Units Of 5 Bedroom Terrace Duplex,Balogun Street Off Lekki Epe Express Way Marjeck Bustop Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Distress And Furnished 4bedroom Duplex,Its Inside Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Bq,"Osapa London, Lekki, Lagos. Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,6 baths,6 Toilets +"6 Bedroom On Two Floors, With 2 Room Annex( Bq) On 1,000sqm",Nicon Town Jakande Lekki Lagos,₦,"480,000,000",0,1,0,6 beds,6 baths,4 Toilets +Newly Built 4brm Semi Detached House At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Luxury Furnished 3bedroom Terrace At Horizon 2 Estate Ikate,"Horizon 2 Estate, Meadow Hall School Road Ikate Lekki Lagos",₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets +New And Luxury Finished 6bedroom Detached House At Pinnock Estate,"Pinnock Beach Estate, Lekki Jakande Lekki Lagos",₦,"460,000,000",0,1,0,6 beds,6 baths,7 Toilets +Nice And Spacious 3bedroom Flat At Horizon 2 Estate Meadow Hall Ikate,Horizon 2 Estate By Meadow Hall School Ikate Ikate Lekki Lagos,₦,"33,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built And Luxury Finished 5 Bedroom Detached House With Bq At Osapa London,Osapa Garden Estate Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 4bedroom Semi Detached With Bq At Ologolo,Whiteoak Estate Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House With Bq At Chevron,Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nice And Spacious 3bedroom Flat With At Bq Behind Romay Garden Ilasan,Behind Romay Garden Estate Ilasan Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 2 & 3 Bedroom Flat With Bq In Lekki1,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki.,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"59,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Hurray!! * 4bedroom Semi Detached Duplex With Bq, (creek Avenue Court) Ikota","Just After Chevron, Second Tollgate, Ikota Lekki Lagos. Ikota Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +"One Of Its Kind, Bella Homes Phase1 (3 Bedroom Terrace Duplex With Bq)","Lafiaji Community, Off Orchid Hotel, Lekki Lagos. Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace With A Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",1,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"5,600,000",0,0,0,4 beds,6 baths,6 Toilets +For Sale /joint Venture Two Plots Of Land With 6bedrooms Mansionate And 4 Rooms Bq With Governor's Consent,Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built 3bedroom Terrace Duplex,Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +Conducive 5 Bedrooms Fully Detached Duplex For Sale. Location: Chevron Axis Price: N75million,Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely And Affordable 5 Bedroom Duplex For Rent At Ologolo,Ologolo Ologolo Lekki Lagos,₦,"39,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Duplex For Sale,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex For Sale At Chevron Alternative Way,Chevron Alternative Way Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq For Sale,Idado Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful And Comfortable 5 Bedroom Fully Detached Duplex For Sale At Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Tastefully Built 4 Bedroom Fully Detached Duplex,Villa Axis Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Beautiful 5 Bedroom Fully Detached Duplex With A Bq For Sale. It Comes With An Attractive Fully Fitted Kitchen, With Lightnings, Jacuzzi, Cool Wardrobes In All The Rooms And The Bedrooms Are En Suite With Great Sanitary Wares.",Ologolo Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful 5 Bedroom Duplex With Two Boy's Quarters For Sale At Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Lovely 4bedroom Fully Detached Duplex For Sale At Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets +Clean 5 Bedroom Flat For Sale/rent At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Maids Room For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 2bbedroom Apartment For Sale,Jakande Jakande Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxury 5 Bedroom Duplex For Sale,Conservation Center Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Build And Lovely 5bedroom For Sale 85m Location: Chervy View,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Bq In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale At Ikota,Iko Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex For Rent At Ologolo,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevy View,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +Elegant 5 Bedroom Duplex For Sale At Osapa,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Nice 2 Units 4 Bedroom Semi Detached Duplex,Lkota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5bedroom For Sale 85m Location: Chevy View,Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With Bq For Sale At Orchid Road,Orchid Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautiful Units Of 3 Bedroom Apartment For Sale,Oral Estate Oral Estate Lekki Lagos,₦,"25,000,000",0,1,0,3 beds,4 baths,4 Toilets +Lovely 4 Bedroom Fully Detached Duplex For Sale,Crown Estate By Shoprite Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built Smart 5 Bedroom Fully Detached Duplex With A Bq,Buena Vista Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"57,000,000",0,1,1,5 beds, baths, Toilets +A 3bedrom Exorbitantly Furnished Flat. All Room Ensuit At Paradise Estate By Ebeano At Drive. Just Call [redacted]. Hevron,Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +"Newly Built 4bedroom Duplex, In A Serene Environment, Well Planned And Secured Estate At Chevron.","Chevron, Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets +"On Monastery Road Sangotedo, Ajah, Lekki, You Have A Promo Of The Barest Offer. 5.5 Million For 600 Square Metres. Just 24 Plots Available.",Monastery Road Lekki Phase 2 Lekki Lagos,₦,"5,500,000",0,1,0, beds, baths, Toilets +Plots Of Land,Abijo.. Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,1,0, beds, baths, Toilets +"Newly Built 6bedroom House All Ensuite With Bq, Swimming Pool, Gym House And Cinema",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,6 beds,7 baths,7 Toilets +Landed Property,Lekki Pearl Garden Abijo Igbo Efon Lekki Lagos,₦,"5,300,000",0,1,0, beds, baths, Toilets +Luxury Apartments And Duplexes Now Selling Fast In Berry Court Omole.,Berry Court Omole Phase2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 6bedroom Terraced Shell Duplex In A Serene And Homely Neighbourhood,Chevron Lekki Lagos,₦,"57,000,000",0,1,1,6 beds,6 baths,7 Toilets +4bedroom Semi Detach At Ikate Lekki Serene Neighborhood,Ikate Lekki Lagos,₦,"46,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built And Furnished 2 Bedroom Flat In A Serene Environment,Ikate Lekki Lagos,₦,"24,000,000",0,1,1,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex For Sale At Bera Estate,Bera Estate Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duex Located At Chevron Alternative Route Inside An Estate,Empire Estate Cheveron Alternative Route Chevron Lekki Lagos,₦,"70,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Build 5bedroom Duplex With A Bq In A Serene Environment,Jade Street Osapa London Osapa London Lekki Lagos,₦,"90,000",0,1,0,5 beds,5 baths,6 Toilets +Newly 4bedroon Duplex With A Bq In A Serene Neighborhood,34 Ikota By Vgc Ikota Lekki Lagos,₦,"60,000",0,1,0,4 beds,4 baths,4 Toilets +Land For Sale,Eko Akete Abijo Lekki Phase 2 Lekki Lagos,₦,"11,000,000",0,1,0, beds, baths, Toilets +Land For Sale In Lekki Abijo,Abijo Lekki Lekki Phase 1 Lekki Lagos,₦,"13,500,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Nike Art Gallery Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land With C Of O,Elerangbe Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"9,500,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex For Sale,Chevron Lekki Lagos,₦,"95,000,000",1,1,0,4 beds, baths, Toilets +Newly Built 4 Bedroom Detached Duplex For Sale In Lagos.,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0, beds, baths, Toilets +Land With Survey,Besides Sky Mart Lekki Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex For Sale,Ikota Lekki Lagos,₦,"65,000,000",0,1,0, beds, baths, Toilets +5 Detached Duplex With A Bq,Lekki County Ikota Lekki Lagos,₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets +"961.971m² Plot , C Of O Under Processing",Lekki Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +New Built 5 Bedroom Detached Duplex,Lekki Lagos,₦,"95,000,000",1,1,0,5 beds, baths, Toilets +4 Bedroom Luxury Finished Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +C Of O Land For Sale In Lekki Lagos,Inside Beechwood Estate Shepatie Lekki Osapa London Lekki Lagos,₦,"12,500,000",1,1,0, beds, baths, Toilets +4 Bedroom Terrace Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distressed 4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,1,0,4 beds,4 baths,5 Toilets +Nice And Spacious 4bedroom Duplex,Lekki Vgc Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Cheap Detached Duplex,Chevron Chevron Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale In Lagos.,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,1, beds, baths, Toilets +4 Bdr Semi Detached With Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex With Own Compound 90% Complete,Westend Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land With Deed And Registered Survey,6mins Drive From Lekki Free Zone Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat For Sale In A Serviced Property,Mobolaji Johnson Lekki Phase 1 Lekki Lagos,₦,"34,000,000",1,0,0,2 beds,2 baths,3 Toilets +4bed Terraced Duplex For Sale,Lekki Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1,292.99m²",Lekki Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House,. Vgc Lekki Lagos,₦,"130,000,000",0,0,0,7 beds,7 baths,10 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Madiba Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +958m² Plot For Sale At Lekki With C Of O,Lekki Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevron Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplex,"Orchid Road, Lafiaji Chevron Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds, baths, Toilets +Land At Amity Estate, Lekki Lagos,₦,"9,600,000",0,1,0,0 beds,0 baths,0 Toilets +Land With Survey,Abijo Lekki Lagos. Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,1,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Bungalow With Swimming Pool & Gym,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"24,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land With C Of O,"Behind The Biggest Mall ( Shoprite) Off Monastery Road, Sangotedo Lagos Ikota Lekki Lagos",₦,"11,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House With Bq On 2 Floors,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Terrace Duplex Available,Alternative Route Chevron Lekki Lagos,₦,"32,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land At Majo Creek View, Lekki Lagos,₦,"4,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With Own Compound,Westend Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Detached Six (6) Beddroom Duplex With Swimmpool , At Pinnock Beach Lekki","Pinnock Beach Estate, ,lekki Osapa London Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,7 baths,7 Toilets +Nice And Spacious 3bedroom Terrace At Chevron Tollgate,2nd Tollgate By Chevron Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale At Chevron,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land With Excision In View For At Lekki Epe Express Way Lagos(fountain Brooks Garden).,"Behind Globe Motor,pan University, Lekki Phase 2 Lekki Lagos",₦,"2,000,000",1,0,0, beds, baths, Toilets +For Sale. Tastefully Finished Semi Detached Four Bedroom Duplex Exclusively Finished With An Upgraded Stylish [email protected] Alpha Beach Lekki,Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedrooms For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds, baths, Toilets +3 Bedroom Flat With Bq With Swimming Pool & Gym,Jakande Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +Survey,Lekki Pearl Garden Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,1,0, beds, baths, Toilets +6 Bedroom Duplex With C Of O,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,6 beds,7 baths,7 Toilets +2 Bedroom Flat For Sale @ Ilasan Next To Lekki Phase 1,Ilasan Lekki Ilasan Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +"846.822m² , C Of O Under Processing",Lekki Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Bungalow With Swimming Pool & Gym,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"27,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 2bedroom Flat,Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,2 baths,3 Toilets +4 B/r Semi Detached House With Bq,Road 3 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +5 B/r Semi Detached House With Bq,Road 38 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds, baths, Toilets +5 B/r Detached House With Bq,Close 56 Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds, baths, Toilets +Fully Equipped Affordable 3 Bedroom Duplex At Lekki,Beside Oba Elegushi Palace Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,4 baths, Toilets +Newly Built 4bedroom Semi Detached Duplex,After Chevron Toll Gate Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,6 baths,6 Toilets +Luxury 4bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths, Toilets +Luxury 4bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds, baths, Toilets +Product Of The Day* *praise Gardens Eleranigbe,"Eleranigbe Is Located Off Lekki Epe Expressway, To The Left, Immediately After Pan Atlantic Lekki Phase 2 Lekki Lagos",₦,"1,500,000",0,1,0, beds, baths, Toilets +Newly Built And Lovely 4 Bedrooms Semidetached Duplex,Victoria Nest Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +Affordable Plots Of Land,Trillion Estate Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +Newly Built4/ 5bedroom Semi Detached Duplex Osapa London In A Beautiful Environment,Jade Street Osapa London Lagos State Osapa London Lekki Lagos,₦,"80,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Building In A Serene Neighbourhood,North West Filling Station By Vgc Vgc Lekki Lagos,₦,"50,000",0,1,0,4 beds,4 baths,4 Toilets +2 Nos 4 Bedroom Semi Detached Houses With Study Room And Self Contained Room And Parlour Boys Quarter Each,"Block 1 Plot 23, Road 7, By Alaguntan Community, Via Olusola Harris Way, Off Monsurat Olayinka Street, Off Garba Muhammad Lawal Avenue Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Registerged Deed Of Assignment,Twin Lake Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq,Buena Vista Estate Chevron Lekki Lagos,₦,"57,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exotically Finished 4 Bedroom With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 10 Units Fully Serviced 4 Bedroom Terrace.,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Room Bq,Kazeem Eletu Osapa London Lekki Lagos,₦,"98,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex At Agungi,Fatso Kaffo Street Agungi Lekki Lagos,₦,"59,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive 5 Bedroom Fully Detached Duplex With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment At Agungi,Close To Domino's Plaza Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +10 Hectare Of Bare Land,Lakowe Area Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom ( All En Suite) Luxury Apartment Is Available For Sale,"Off Oba Yekini Elegushi Road, Primewaterview Garden Ii Ikate Lekki Lagos",₦,"42,000,000",1,0,1,3 beds,3 baths,3 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Contemporary 5 Bedroom Fully Detached Duplex,Hakkem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Piece Of Land Measuring 1002sqm Is Available For Sale At Vgc.,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0, beds, baths, Toilets +Newly Built Excecutive 5 Bedroom Fully Detached Duplex With A Room Bq And Fitted Kitchen Is Available For Sale,Kazeem Eletu Osapa London Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Servants' Quarter.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Palatially Built 6 Bedroom Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 5 Bedroom Fully Detachd Duplex With A Room Bq,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With A Room Bq.,Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex At Sangotedoselling For 45 Million Asking.,Sangotedo Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +For Sale 4 Bedroom Detached Duplex With Bq,Agungi Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,4 Toilets +"5 Bedroom Duplex At Mega Mound Selling For 90,000000",Megamound County Home. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +For Sale 5 Bedroom Detached Duplex With Bq Location,Oral Estate Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Duplex For Sell.,Bera Estate. Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale 5 Bedroom Detached Duplex With Bq And Swimming Pool,Ikate Lekki Lagos,₦,"145,000,000",1,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq Location,Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex At Chevron For Sale.,Bera Street Chevron Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +900 Sqm Going For 85000000,"Admiralty Way,lekki Phase 1 Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex At Ikota Villa Estate Selling For 40 Million.,Ikota Villa Estate. Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semidetached Duplex For Sale.,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semidetached Duplex.,Ikota Villa Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom House In Lekki Phase 1 With 2bq... Equipped With Full House Sound Surrround Systems. 220m Asking,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +"Newly Built 4 Bedroom Duplex @ Lekki County Home,selling @ 45 Million.",County Home Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex Located At Ikate Lekki For Sale.,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +For Sale 4 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Peanoch Beach Estate Lekki Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,4 Toilets +30 Plots Of Dry Land At Orchid Road Lekki,Orchid Road Ikota Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +Superb 5 Bedroom Luxurious Custom Built Edifice, Osapa London Lekki Lagos,₦,"400,000,000",0,1,0,5 beds,5 baths,6 Toilets +Super Specious N40 Million Lekki Offer,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Super Specious 5bedroom Luxury Massionette Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious 5bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built Modern 4 Bedroom Semi Detached Duplex With A Room Bq Located At Chevron Toll Gate By Orchid Hotel Road, Lekki Lagos.",Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached,Adebisi Popoola Lekki Phase 1 Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Bungalow Flat With A Pent House,"May Fair Garden Estate, Awoyaya Lekki Ajah Lagos Ilasan Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +New 4 Bedroom Town House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built And Well Finished 3 Units Of 5 Bedroom Fully Detached Duplex With A Swimming Pool, Wine Bar, Well Land Filled And Flood Free At Lekki Phase 1",Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Residential Land With Governors Consent Inside Atlantic View Estate,New Road By Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +A Bedroom Flat With A Pent House Located In An Estate,"Mayfair Garden Estate, Awoyaya Area Lekki Ajah Lagos Ikota Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Tastefully Built 4 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"52,000,000",1,1,1,6 beds,6 baths,6 Toilets +"Executive 4 And 5 Bedrooms House At Chevron, Lekki",Chevron Lekki Lagos,₦,"4,009,000,000",0,0,0,5 beds,4 baths,5 Toilets +"5 Bedroom Detached Duplex,a Room Bq For Sale At *lekki* *phase* 1......it's On 516sqm..... *110m...",Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +A Tastefully Built 4 Bedroom Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"52,000,000",1,1,1,4 beds,4 baths,6 Toilets +A Tastefully Built 5 Bedroom Duplex With Bq,Lekki County Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,7 baths,6 Toilets +"For Sale: New Built 5 Bedroom Luxury Duplex At Chevron Drive, Lekki, Lagos",Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced 3 Bedroom Terrace With A Bq & 4bedroom Terrace Without Bq,"Ajiran Agungi Road, Lekki Lagos",₦,"47,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 2 & 3 Bedroom Serviced Apartment,Shoprite Jakande Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +10 Units Of Serviced 4 Bedroom Town House, Jakande Lekki Lagos,₦,"65,000,000",0,0,0,10 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex At Lekki Phase 1 N170m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale At Lekki Phase 1 N170m,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Affordable Plots Of Land, Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Plots Of Land, Lekki Lagos,₦,"9,600,000",0,0,0,0 beds,0 baths,0 Toilets +Southern Green Estate Lafiaji Lekki,Lafiaji Lekki Chevron Lekki Lagos,₦,"20,000,000",1,1,0, beds, baths, Toilets +Covequest 5 Bedroom Terraced Duplexes,"Oral Estate By 2nd Toll Gate, Ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built Five Bedroom Fully Detached Duplex For Sale,Osapa London Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,5 baths,6 Toilets +"Land In Lekki, Bogije","Bogije, Lekki, Epe Express Way Lekki Phase 2 Lekki Lagos",₦,"6,750,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,"Lekki County, Ikota Villa Estate Ikota Lekki Lagos",₦,"80,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached Duplex + Bq Cctv,Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex +bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Fully Detached Duplex + Bq, Solar, Inverter",Osapa Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 5 Bedroom Fully Detached Duplex + Bq Invert Er, Solar Panel",Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Luxury Duplex Vgc Lekki Lagos,"Road 54, Vgc, Lekki, Vgc Lekki Lagos",₦,"130,000,000",0,0,0,6 beds,6 baths,6 Toilets +"Luxury 5 Bedroom Fully Detached Duplex + Bq, Solar Panel And Invert Er",Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Eli Court Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Cheron Alternative Drive Osapa London Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Welcome Home Welcome To Eli Court,Chevron Lekki Lagos,₦,"69,000,000",0,1,1,4 beds,6 baths,6 Toilets +Lovely Five Bedroom Detached House For Sale, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached House With A Bq,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached House With A Bq,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq, Osapa London Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Detached House,Megamound Estate; Ikota Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House With Bq,. Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Maisonette,. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,. Ikota Lekki Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Terrace With A Room,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Detached House,Lafiaji; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Five Bedroom Fully Detached House,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 5 Bedroom Detached Duplex With Bq,Foreshore Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace + Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Idado Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 3 Bedroom Flat,. Agungi Lekki Lagos,₦,"35,000,000",0,0,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Chevyview Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Detached House,Chevyview Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Agungi Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + Bq,"Carlton Gate Estate, Chevron Drive Chevron Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House,. Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House + Bq,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely And Tastefully Finished 4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House,Acadia Mews Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached House For Sale At Osapa London,Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"1,050,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex,Rahobot Close Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex + Bq,Lekky County Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Terrace,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Four Bedroom Terrace Duplex,Lekki Phase 1 Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced House With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + Bq,"Northern Foreshore Estate, Chevron Drive Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With A Room Bq,Ikate Elegushi Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 5 Bedroom Fully Detached Duplex,. Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached House,Lafiaji; Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Terrace House With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Terrace,Lafiaji; Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Flat With Excellent Finishing,Osapa London Lekki Lagos,₦,"37,000,000",0,1,0,2 beds,2 baths,3 Toilets +Lovely New 3 Bedroom Terrace House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached House + Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached House With A Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Flat,Jeremiah Ugo Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached House With Swimming,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace With A Room Bq,Ikate Elegushi Lekki Phase 1 Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Fully Detached House,Lafiaji; Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached House,Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq, Idado Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Detached House,Megamound Estate; Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Bq, Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House (lekki Right Hand),Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom.duplex,Lekki County Homes Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land With Foundation,Opposite Nicon Town Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,At Megamound Estate By Lekki County Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Superb 5 Bedroom Semi Detached Duplex,Inside Lekki County Home Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury And Distress Sales Of 4bedroom Duplex,The Property Is At Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +6bedroom Duplex With 2nos Of 3bedroom Flat,Garba Lawal St Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets +Brand New 8 Units Semi Detached 4 Bedroom Duplex,"Victoria Crest Estate, Off Chevron Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets +Distress Sales Of 4bedroom Terrace Duplex,Is At Orchid Hotel Road Inside An Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Fully Detached House,Off Chevron Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Duplex,Inside An Estate Off Chevron Road Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,"Lafiaji Road, (orchid Hotel Road) Lekki Phase 2 Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Detached Duplex,Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Chevron Alternative Route Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Off Lekki/epe Expressway Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached House,Behind Tantalizer Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex,"Off Ivory Lane, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq Sitting At The Back With A Very Good Parking Space @ Chevy View Estate,"Off Lekki Expressway, Chevy View,estates. Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +Oriental Hotel,Before Lekki First Toll Gate Lekki Phase 1 Lekki Lagos,$,"250,000,000",1,1,1,10 beds,10 baths,10 Toilets +"Executive Newly Built 5bedroom Fully Detached Duplex With Spacious Rooms, 2 Sitting Rooms, Cctv,jacuzzi,fitted Kitchen Plus A Bq In A Mini Court","At Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 7 Bedroom Fully Detach Duplex With A Room Bq,"Chevy View Estate, Chevron Alternative Route Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,1,0,7 beds,8 baths,8 Toilets +Distress Sales Of Massive Hotel + Pool,By Pinnacle Filling Station 2sd Round About Lekki Phase 1 Lekki Lagos,₦,"650,000,000",1,0,1,10 beds,10 baths,10 Toilets +Luxury Units Of 5bedrooms Detached Duplex,At Vintage Estate Ologolo By Agungi Lekki Lagos Ologolo Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Ikate By Second Round About Behind Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Room Bq At Lekki.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Brand New 5bedroom Fully Detached Duplex With Modern Finishing, Fitted Kitchen, Etc, At Bera Estate,lekki","At Bera Estate, Lagos Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Four (4) Bedroom Semi Detached House With Bq,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exclusively Finished 4 Bedroom Luxury Family Home Fully Detached Plus Bq,By Jakande Round About Ologolo Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex,Majek After Shop Rite Ajah Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Duplex,The Property Is At Megamound Estate By Lekki County Estate Ikota Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4bedroom Duplex,Inside Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built And Very Spacious 2units Of 4bedroom Semi Detach Duplex With A Bq With Modern Finishing At Ikota Gra,"Ikota Estate, Lekki Lekki Phase 1 Lekki Lagos",₦,"39,000,000",0,1,0,4 beds,5 baths,5 Toilets +"6 Units Of Brand New Luxury 5 Bedroom Fully Detached Duplex In A Mini Court With Modern Interior Design , Jacuzzi, Cctv,","At Orchid Road, Lekki Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Hotel,Inside Vgc Estate Vgc Lekki Lagos,₦,"1,200,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tastefully 5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully 3bedroom Flat,At Prime Water View Estate Second Round About Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,2 baths,4 Toilets +Luxury 4bedroom Duplex + Bq,Behind Mega Chicken Ikota Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly 5bedroom Duplex Tastefully Finished With Ultra Modern Up To Date Facilities On 420sqm In Mega Mound Estate County Villa Lekki Lagos C Of O,At Mega Mound Estate. Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +4bedroom Semi Detached Duplex (1unit Left),"Ikota Estate, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +10plots Of Land,Lafiaji By Ocean Bay Chevron Axis Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3bedroom Flat,Emmanuel Eminike Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Dry Lands,Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,Megamound Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,8 Toilets +6 Bedroom Detached House With Penthouse, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Duplex,Off Chevron Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive 4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2units Of 3bedroom Semi Detached,Off Chevron Road Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Duplex With Excellent Facilities (with Payment Plan),Orchid Road Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built And Very Spacious 4 Bedroom Semi Detached Duplex With A Bq,"At Orchid Road, Lekki Phase 1 Lekki Lagos",₦,"54,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury And Furnished 4bedroom Duplex,Off World Oil Road In A Mini Estate Ilasan Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,In An Estate At Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury 2 Bedroom Flat,Off Lekki/epe Expressway; Idado Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land Measuring 812sqm On Corner Piece, Agungi Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Bungalow,Ibeju Lekki Lagos,₦,"15,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Ajiran Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Room Bq,"Off Amadasu Street, Spg, Agungi Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 2 Units Of 6 Bedroom Fully Detached House With Bq,"Victory Park Estate, Osapa London Lekki Lagos",₦,"170,000,000",0,1,0,6 beds,7 baths,7 Toilets +6 Bedroom Detached House With Two Rooms Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Round About Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Large Land,Chevy View Estate Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Detached House,Orchid Road Chevron Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Off Lekki/epe Expressway Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dry Land,Beside Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished And Massive Hotel,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,1, beds, baths, Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Estate By Lekki County Road Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Bq,tastefully Finished With Bq,all Rooms Ensuite,modern Carport System,fitted Kitchen(gas,microwave,oven,extractor,gas,fridge)very Large Parking Space For 8 Cars,located At Megamound Mound Estate",At Mega Mound Estate. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat With Bq,"Off Duro Simi Eti Street, Very Close To Lekki Phase 1first Gate Lekki Lagos",₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Super 4 Bedroom Duplex,Westend Estate By Lekki County Homes Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fantastic Fully Furnished 4bedroom Semi Detached Duplex + Boys Quarters,"Off Fola Oshibo Street, Lekki Phase 1 Lekki Lagos",₦,"148,000,000",0,1,0,4 beds,5 baths,5 Toilets +Massive 5bedroom Fully Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4bedroom Detached Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached Duplex,By Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 3bedroom Flat,Chevy View Estate Off Chevron Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Terrace Duplex,Behind Shop Rite Shopping Mall Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4bedroom Duplex,Opposite Agungi Ologolo Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Newly Built Modern 5bedroom Fully Detached Duplex With Bq. Located In An Estate Lekki.,"Very Close To Vgc, Napia Garden, Lekki. Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +New 4 Units Of 4bedroom Terrace Duplex At Lekki.,"@ Atlantic View Estate, Alpha Beach Road, Ologolo. Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex,Megamound Estate By Lekki County Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +16 Units Of Newly & Tastefully Built 4 Bedroom Semi Detached Duplex With Penthouse And Bq At Oral Estate,"Oral Estate, Lekki Oral Estate Lekki Lagos",₦,"70,000,000",0,1,0, beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Ikate Elegushi Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Massive 32rooms Furnished,Off Admiralty Way Close To Tantalizer Building Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",1,1,1,10 beds,10 baths,10 Toilets +Brand New 5bedroom Fully Detached Duplex With Bq,"@ Chevron Alternative Route, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +"2 Units Of Newly, Beautifully, & Spaciously Built 5bedroom Duplex At Megamond, Lekki With : 2 Sitting Room, Fully Fitted Kitchen (imported Kitchen Cabinet), Upscale Sanitary Fittings,water And Sewage Treatment,","At Mega Mound Estate.,lekky County Home Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +A 4 Bedroom Duplex,Chevron Road Lekki Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevy View Estate Off Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Three (3) Bedroom Apartment With Flexible Payment Plan In An Estate,Oral Estate Lekki Lagos,₦,"32,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Behind Tantalizer Building Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New 5bedroom Fully Detached Duplex With,s/pool, Jacuzzi, Modern Finishing, Fitted Kitchen, Etc, At Lekki","At Mega Mound Estate.,lekky County Home Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five 5 Bedroom Fully Detached House With Swimming Pool,Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,Megamound Estate By Lekki County Homes Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury Finished 3 Bedroom Duplex With Payment Plan,Orchid Road Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful 4bedroom Duplex,Around Orchid Hotel Road By Second Toll Gate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Beautifully Newly Built Modern Four Bedroom Semi Detached Duplex With Bq. Located At Osapa London, Lekki.",Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Dry Land,Is At Victory Park Estate Off Osapa Road Osapa London Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Newly Built 4bedroom Terrace Duplex Plus Bq In A Serviced Estate By Chevron,In A Serviced Estate By Chevron Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 3bedroom Flat + Bq,Chevy View Estate Off Chevron Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Duplex Promo,Off Chevron Round Road Chevron Lekki Lagos,₦,"47,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Detached Duplex,Off Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4bedroom Detached House,Off Lekki/expressway Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4units Of 3 Bedroom Flat + Pool,Off Babatunde Ajus Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With Modern Finishing And Bq 8,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"33,000,000",1,1,1,4 beds,5 baths,5 Toilets +Well Maintained Luxurious 6bedroom Duplex All Ensuite With Lobby Etc On A Plot Of Land,Vgc Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,6 beds,7 baths,7 Toilets +Luxury 5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mansion 5bedroom Fully Detached Duplex,Inside Megamound Estate Homes By Lekki County Homes Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Off Ajiran Road Agungi Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached And 4bedroom Terrace With Modern Finishing At Ikota With Modern Finishing,"Ikota Estate, Lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedrooms Terrace Duplex,Off Chevron Road; Chevron Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Newly Built Modern Four Bedroom Semi Detached Duplex With Bq. Located In An Estate Lekki.,"At Orchid Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +4nos Of 4 Bedroom Terraces, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully 4bedroom Duplex,Off Lekki/epe Expressway Osapa London Lekki Lagos,₦,"38,500,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Ikota Westend Estate Lekki Lagos. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached  Duplex, Vgc Lekki Lagos,₦,"500,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Cedarwood Boulevard For Sale,"Okun Ajah, Lekki Scheme 2, Lagos Lekki Phase 2 Lekki Lagos",₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets +150 Plots Of Land At Eleganza Not Far From Lekki Miami Beach Resort,"Eleganza Bus Stop, Orchid Hotel Ikate Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +Land At Nicon Town Estate,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cheap Plots Of Land,Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets +Semi Furnished 4 Bedroom Terrace Duplex For Sale At Osapa London Lekki,Off Pennok Estate Road Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +"9 Plots Of Land Facing Lekki Epe Express Way,by Second Toll Gate!",By Second Toll Gate Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +A Dry Land In A Serene Environment,Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex W/ Swimming Pool,Ikota Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Off Plan 2bedroom Apartments In The Finest Part Of Lekki,Meadow Hall Way Ikate Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,2 baths,3 Toilets +Luxury 2bed+bq Flat,"Admiralty Homes Estate, Off Alpha Beach Road, New Road Bstop, B4 Chevron Bstop Lekki Lagos",₦,"26,000,000",1,0,1,2 beds,2 baths,2 Toilets +Water Front 6 Units 4bedroom Terrace Duplex With Bq,Admiralty Road Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"5,000,000/year",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace For Sale In Oral Estate By Second Toll Gate Lekki,Oral Estate Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,4 Toilets +Semi Detached Duplex For Sale In Vgc Lekki,Vgc Lekki Lagos,₦,"60,000,000",1,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex At Lekki Lagos State,Chevron Alternative Within Lekki Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds, baths, Toilets +Fully Detached Duplex,Jide Agbalaya Street Chevron Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 4 Bedroom Terraced Duplex House,"Ologolo Village, Eti Osa Agungi Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built And Spacious 5 Bedroom Detached Duplex + Bq,Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Flat + Bq,. Osapa London Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedrooms Terraced Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex + Bq,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets +2153.772sqm /4 Plots Of Land,Facing Lekki Epe Expressway By Second Toll Gate Chevron Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Spacious 4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex With A Bq,"Lekki County Estate (megamound), Ikota Lekki Lagos",₦,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedrooms Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +6 Bedroom Duplex + 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + 1 Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +11 Offices Shopping Mall In Lekki Phase 1,Fola Osibo Street. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",1,0,0, beds, baths, Toilets +11 Shopping Mall Offices With Cofo,"Fola Osibo Street, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",1,0,0, beds, baths, Toilets +Brand New 4 Bedroom Duplex Detached For Sale Withi Bq With Cofo,"Ikate ,lekki Ikate Lekki Lagos",₦,"72,000,000",0,1,0,4 beds,4 baths,4 Toilets +8 No's Of 2 Flat With Cofo,Ikota By Mega Chicken Roaf Ikota Lekki Lagos,₦,"300,000,000",0,0,1,2 beds,2 baths,3 Toilets +"1,300sqm Land At Chevron",Chevron Alt Drive Chevron Lekki Lagos,₦,"113,000,000",0,0,0, beds, baths, Toilets +300sqm Land For Sale At Ikota,Ikota Ville Estate Ikota Lekki Lagos,₦,"23,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Ologolo Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,6 Toilets +Tastefully Finished Ensuite 5bedroom Duplex With 2 Rooms Inbuilt Bq,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +8 Units Of Uniquely Designed Semi Detached Duplexes,"Alpha Beach Road, Opposite Admiralty Estate. Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Dry Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets +C Of O And Governor's Consent.the Estate By Pennek,"Along Abraham Adesanya Road, Less Than 2min From The Abraham Adesanya Roundabout Ajah. Lekki Phase 2 Lekki Lagos",₦,"18,000,000",1,1,0, beds, baths, Toilets +C Of O Land For Sale In Sangotedo Lekki.,"Behind Novare Mall Shoprite, Sangotedo. Lekki Phase 2 Lekki Lagos",₦,"14,500,000",1,1,0, beds, baths, Toilets +House For Sale In Lekki.,Close To Chevron Toll Gate Axis Phase 2.furnished And Exquisite 3 Bedroom Terraced Duplex With Bq In Lekki. Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,1,0,3 beds,5 baths,5 Toilets +Iland Properties Estate With Global C Of O.,"Inside Beechwood Estate Shapati, Along Lekki Epe Expressway. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",1,1,0, beds, baths, Toilets +House For Sale,Osapa London Lekki Lagos. Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,4 baths,4 Toilets +C Of O House For Sale.,"Abijo Gra Lekki, Lagos. Lekki Lagos",₦,"18,700,000",1,1,0,3 beds,4 baths,4 Toilets +House For Sale In Lekki.,"Osapa London, Lekki, Lagos. Osapa London Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +House For Sale In Lekki,"After Chevron Toll Gate, Ikota Lekki, Lagos. Ikota Lekki Lagos",₦,"65,000,000",1,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets +Beautifully Finished 5 Bedroom Detached House In Lekki Phase 1.,Off Road 13 Beside Ascon Filling Station Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +1 Unit Of 4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fantastic Detached House Beautifully Located On Admiralty Way.,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bed Room Semi Detached,4 Bed Room Semi Detached At Ikota Not Far From Orchid Area In A Mini Estate For 45 Million Naira Pictures Available On Request. Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,6 Toilets +Land In Lekki,"Bogije, Lekki, Epe Express Way Lekki Phase 2 Lekki Lagos",₦,"6,750,000",0,0,0, beds, baths, Toilets +881 Square Meter Plots For Sale At Alpha Beach Road Beside Admiralty Homes Estate,Alpha Beach Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,0,0, beds, baths, Toilets +Newly Built 4 Bedrooms Terrace Duplex,"Adedeji Adekola Close, Off Freedom Way, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"130,000,000",1,1,1,5 beds,5 baths,5 Toilets +2 Newly Built 4 Bedroom Terrace With Maids Room.,Akinyemi Avenue Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Newly Built 4 Bedroom Semi Detarched Duplex In Chevron Estate, Lekki, Lagos","After Chevron Toll Gate, Ikota Lekki Chevron Lekki Lagos",₦,"46,000,000",0,1,1,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detarched Duplex,Daniel's Garden Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds, baths, Toilets +Serviced 24units Of 4 Bedroom Semi Detached Duplex With Bq And 4 Units 5 Bedroom Fully Detached Duplex With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,5 baths,5 Toilets +Payment Plan Ongoing 3 Bedroom Terace Duplex Off Orchid Hotel Road.chevron 2nd Toll Gate .lafiaji.lekki @n35 And 4 Bedroom Terrace Penthouse @ N45 Million,Orchid Hotel Road Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +Plots Of Land,Off Spa Road Ikate Ikate Lekki Lagos,₦,"90,000,000",1,0,0,0 beds,0 baths,0 Toilets +Serviced Open Plan Office Space On 3 Floors With Over 160 Sqm Pent House,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",1,0,0, beds, baths, Toilets +Serviced 3 Bedroom Town House Duplex With Bq And 4 Bedroom Semi Detached Duplex With Bq,Marwa(right Side) Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq In Lekki Phase1,Off Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,1,0,5 beds,6 baths,6 Toilets +24hrs Light Serviced 4 Bedroom Semi Detached Duplex @n55 Million And 5 Bedroom Fully Detached With Bq @n65 Million At Osapa.lekki,Osapa Osapa London Lekki Lagos,₦,"55,000,000",1,0,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Fully Detached Duplex With One Room Bq.,"Off Orchid Hotel Road. 2nd Toll Gate Lekki Epe Expressway Lagos, Lekki Expressway, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,5 beds, baths, Toilets +Four (4) Bedroom Detached Duplex (smart House),Bera Estate; Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Four (4) Bedroom Duplex With A Room Bq And Waiting Room,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Three(3) And Four (4) Bedroom Semi Detached Duplex,Nike Art Gallery Ikate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Five (5) Bedroom Detached Duplex With A Room Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Four (4) Bedroom Semi Detached Duplex,Oando Road Ikate Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Uncompleted 4 Bedroom Semi Detached House,Da Silva Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Two(2) Bedroom Flat In A Serene Environment,Mercedes Benz Ikate Lekki Lagos,₦,"38,000,000",1,1,0,2 beds,2 baths,3 Toilets +Newly Built Four (4) Bedroom All En Suite Semi Detached Duplex,Orchid Hotel Road; Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex,"Bricks Court; Orchid Hotel Road, Chevron Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Duplex With One Room Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Furnished 4 Bedroom Fully Detached Duplex With Boysquarters.,"After Chevron Toll Gate,ikota Lekki,lagos Ikota Lekki Lagos",₦,"53,000,000",0,1,1,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Dupledx+ Bq,Oral Estate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Land For Sale At Frontier Estate, Lekki Ajah",Lekki Lagos,₦,"7,500,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace(all En Suite) With A Bq,Jakande Lekki Lagos,₦,"40,000,000",1,0,0,3 beds,4 baths,4 Toilets +Commercial Property With C Of O,Oriwu Street By Elf Estate Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,1,0,2 beds,2 baths,3 Toilets +A Newly Built 3 Bedroom,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets +7 Rooms Detached,Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,7 Toilets +7 Plots And 4301sqm Land,Lekki Scheme 2 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sqm Land,Lekki Conuty Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Plot Of Land About 680sqm,Victory Estate Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +60 Plots Of Land In Alternative Road,Kajola Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of Terraces,Madiba Estate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Chevron Lekki/ikota . Pay And Pack In.,Chevron Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,6 baths,6 Toilets +"Houses For Sale In Lagos Lekki , 3 Bedroom Newly Finished Terrace Duplex With Bq Close To Chevron Toll Gate Axis, Lekki","Immediately After Second Toll Gate Chevron Ikota, Lafaji Community Chevron Lekki Lagos",₦,"33,000,000",0,1,1,3 beds,3 baths,5 Toilets +5 Acres Of Land Fenced At Kajola,Kajola Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +64 Sqm Office/ Shop Space,Orchid Road Ikota Lekki Lagos,₦,"2,200,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Chaplin Court Estate Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two And A Half Plots Of Land Facing The Express Corner Piece,Kajola Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedrooms Detached Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Inoyo Haven Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Furnished 4bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex On A Land Size Of 500m2, Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With A Boys Quarter,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 2 Bedroom Luxurious Apartment,Block 113 Plot 43 Lekki Peninsula Ikate Lekki Lagos,₦,"50,000,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land With C Of O In Lekki Phase 2, Lekki Phase 2 Lekki Lagos,₦,"11,850,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom En Suite Fully Detached Duplex With Bq,"Block K Plot 37, Sir Simon Chibukor Street Ikota Lekki Lagos",₦,"95,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious And Exclusive 6 Bedroom Fully Detached Duplex With 2 Room Bq,Pinncock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",1,1,1,6 beds,7 baths,6 Toilets +Landed Property Inside Beechwood Shapati Lekki, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached With A Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Newly Built, Classy And Superbly Finished 2 Storey Duplex (5 Bedrooms) With Modern Awesome Facilities",Ikate Lekki Lagos,₦,"150,000,000",1,1,1,5 beds,5 baths,6 Toilets +Prime Land For Sale In Lekki Phase 1 Facing Lekki Epe Express.,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Iland Lands Inside Beechwood Shapati Lekki,Lekki Phase 2 Lekki Lagos,₦,"6,500,000",0,0,0, beds, baths, Toilets +"5bedroom With 2 Bed Attached Bq On Road 55, Vgc 4 Sale 160m",Vgc Vgc Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached House With 2 Rooms Bq And Cinema House,Carlton Gate Estate Off Chevron Lekki Lagos,₦,"450,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lagos,₦,"38,500,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In A Nice Serene Area @lekki,Osapa London Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,2 baths,2 Toilets +Large Parcel Of Land For Sale At Lekki Free Trade Zone,Lekki Free Trade Zone Ologolo Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +A Newly Built And Tastefully Finished 5bedroom Fully Detached Duplex At @ Lekki Phase 1 @150m,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury Blocks Of 3bedroom Flat With A [email protected] @ 65m,Ikate Lekki Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets +A Newly Built An Tastefully Finished 5bedroom Detarched Duplex At Megamound Lekki County Ikota Villa @ 100m,Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +"A Newly Built And Tastefully Finished Bedroom Fully Detarched [email protected] In An Exclusive, Serviced And Well Secured Estate @85m",Ikota Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Newly And Tastefully Finished 2bedroom Maisonette Ensuite At Ikate @45m,Ikate Lekki Lagos,₦,"45,000,000",1,1,1,2 beds,2 baths,3 Toilets +"A Luxury 4bedroom Terraced Duplex Ensuite With Parking For 2 3 Cars At In An Exclusive, Serviced And Well Secured Estate Close To Vgc @55 M",Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Newly Built And Tastefully Finished 5bedroom Fully Detached Duplex At Chevron Alternative [email protected],Chevron Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets +An Elegantly Built 4 Bed Fully Detarched Duplex Ensuite With A [email protected] On Around 450sqmtrs With A Parking Space Of About 7 8cars @ Oral Estate @79m,Oral Estate Lekki Lagos,₦,"79,000,000",0,1,1,4 beds,4 baths,5 Toilets +An Elegantly Built 5bedroom Fully Detarched Duplex On 2 Floors With A [email protected] Ikate @98m,Ikate Lekki Lagos,₦,"98,000,000",0,1,1,5 beds,5 baths,6 Toilets +An Exquisitely Built And Well Finished 5bedroom Fully Detached Duplex With A Bq Inside A Serviced Estate Within An Estate @ Osapa London @ 85m,Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Newly Built And Tastefully Finished 4bedroom Terraced Duplex Ensuite With Parking For 2 3 @ Lekki Phase 1 @ 105m,Lekki Phase 1 Lekki Lagos,₦,"105,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Newly Built And Tastefully Finished 4bedroom Semi Detarched Duplex Ensuite @ Megamound Lekki County Ikota Villa @85m,Ikota Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +An Exquisitely Built And Well Finished 4bedroom Terraced Duplex Ensuite With Parking For 2 3 And A Bq @ Illasan @68m,Ilasan Lekki Lagos,₦,"68,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Newly Built 5bed Duplex With A Pent House @ Ikate In A Serene Environment @ 98m,Ikate Lekki Lagos,₦,"98,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built And Tastefully Finished 4bedroom Detarched [email protected] Ikate @ 75m,Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +An Elegantly Built 4bed Terraced Duplex Ensuite With Parking For 2 3 Cars @ Chevron Alternative [email protected] M,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Newly Built And Tastefully Finished 5bedroom Detarched [email protected] Lekki County @ With A Swimming [email protected],Ikota Lekki Lagos,$,"100,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Newly Built And Tastefully Finished 5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built And Exquisitely Designed 4bedroom Semi Detarched Duplex @megamound Lekki County Ikota Villa @85m,Ikota Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +"A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Megamound Lekki County Ikota [email protected] With A Bq , Aspacious Compound With A Swimming [email protected]",Ikota Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Units Newly Built And Tastefully Finished 4bedroom Fully Detarched [email protected] With Bq @ Lekki Phase 1 Around Freedom Way @ 125m,Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Beautifully Designed And Tastefully Finished 5bedroom Fully Detached Duplex At Lekki County @ 68m,Ikota Lekki Lagos,₦,"68,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Detached Duplex With A Room Bq,Oral Estate By Chevron Tollgate Lekki Oral Estate Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment At Prime Waterview Garden 2 Along Freedom Lekki Phase 1,Prime Waters Estate Lekki Phase 1 Lekki Lagos,₦,"43,000,000",1,0,0,3 beds,3 baths,4 Toilets +C Of O,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +C Of O,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,0,0, beds, baths, Toilets +C Of O,Chevron Alternative Route Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Government Allocation,Chevron Toll Gate Chevron Lekki Lagos,₦,"33,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Just By The 2nd Toll Gate, Lekki. Ikota Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex And 1 Room Boys Quarters,Orchid Road Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +For Sale Executive 5 Bedroom Duplex In A Serene Environment In Chevy View 85m,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,5 Toilets +Fully Serviced 3 Bedroom Apartment,Ikate Lekki Lagos,₦,"45,000,000",1,0,1,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Fully Detached Duplex With 1 Room Bq & Fitted Kitchen,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq And A Security House,Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace Duplex With A Room Bq,Lekki Ikate Lagos Ikate Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets +Only 1 Unit Of 2 Bedroom Flat Left In This Well Located And Accessible Block Of Apartments,Ikate Lekki Lagos,₦,"30,000,000",1,1,1,2 beds,2 baths,3 Toilets +Fantastically Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Drive Lekki Chevron Lekki Lagos,₦,"73,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex (driveway Unit) Available For Sale,By The 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"60,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,4 baths,5 Toilets +Govt. Approved Excision,"Bogije, Lekki/epe Expressway Lekki Lagos",₦,"4,900,000",0,1,0, beds, baths, Toilets +C Of O,Lekki Lagos,₦,"20,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With A Room And Parlour Bq And A Security House,Jakande Lekki Lagos,₦,"72,000,000",1,1,1,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Buena Vista Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Well Built And Spacious 5 Bedroom Detached House With A Room Bq,Chevron Tollgate Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Built 5 Bedroom Detached Duplex With A Room Bq,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bed Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,1,4 beds,4 baths,4 Toilets +A Tastefully Finished 4 Bedroom Semi Detached Duplex With A Boys Quarter,Chevron Tollgate Oral Estate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Super Luxury 5 Bedroom Detached House With 2 Rooms Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"350,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom 2 Story Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,7 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex With Two Rooms Bq.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Lagos. Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Semidetached Duplex With A Maid’s Quarter,Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House Chevy View Estate Chevron,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Lovely Built 4 Bedroom Semi Detached House With A Room Bq,Pilots Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Tastefully 5 Bedroom Fully Detached House With A Room Bq,Lekki Agungi Agungi Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +Hot Sales!!!!,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Semi Detached In Chevron,Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Distress Sale ! Terraced Duplex For Sale In Lekki, Jakande.",County Estate Behind Elevation Church. Jakande Lekki Lagos,₦,"35,000,000",1,0,0,4 beds, baths, Toilets +Newly 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Hotel Road By Chevron Tollgate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedroom Duplex At Thomas Estate Lekki,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bed Fully Detached Duplex In Osapa London Lekki,Papa London Lekki Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,4 baths,4 Toilets +Newly 4/5 Bedrooms Terrace With Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With A Room Bq,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex And 1 Room Boys Quarters,Lekki Ologolo Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House With 2 Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Awoyaya Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Buy, Pay And Pack In, In Chevron Ikota",Chevron Lekki Lagos,₦,"45,000,000",1,1,1, beds, baths, Toilets +Still Selling *5bedroom Luxury Family Detached Duplex With Swimming Pool Plus Bq* @n110m. Exclusively Finished 5bedroom Luxury House With Swimming Pool Plus Bq. *features* Sizeable Master Bedroom Exquisite Staircase All Bedrooms En Suite Cctv C,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House And A Room Bq,Chevron Alternative Route Off Chevron Drive. Chevron Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +A Lovely Well Built 4 Bedroom Detached House,Ikate Elegushin Ikate Lekki Lagos,₦,"86,000,000",0,1,1,4 beds,4 baths,5 Toilets +Meet This Massive Edifice Built With Style And Precision For The Discerning Few! 4 Bedroom Fully Detached Duplex,"Lekki County Homes, Ikota Ikota Lekki Lagos",₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Investors Delight Over 8.11 Hectares Of Dry Land,Jakande Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +For Sale Executive 5 Bedroom Detached House In Lekki Phase I 250m,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Lekki Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Fitted Kitchen,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,1,1,4 beds,4 baths,5 Toilets +C Of O,Abijo Lekki Lagos,₦,"6,500,000",0,1,0, beds, baths, Toilets +Newly 4/5 Bedrooms Terrace With Bq In Very Serene Environment,Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Lekki Conservation Gra Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Duplex With 2 Rooms Ensuit Maid Room,Pinnock Beach Estate Osapa London Lagos Osapa London Lekki Lagos,₦,"240,000,000",1,1,1,5 beds,5 baths,6 Toilets +Lovely Built And Spacious 4 Bedroom Semi Detached House,Chevron Tollgate Oral Estate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex With A Room Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +New 4 Bed Semi Detached Duplex For Sale C Of O In Oniru Lekki Phase 1,Oniru Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,1,4 beds,4 baths,3 Toilets +A 3 Bedroom Tastefully Finished Flat Upstairs (in A Block Of 4 Flats),"Tom Ogboi Ave, Springview Estate Itedo, Off Freedom Way Idado Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale Pinnock Estate Water Front Lekki,Pinnock Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0, beds, baths, Toilets +Lovely Built 4 Bedroom Detached House With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +755sqm Land, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Hotel Road By Chevron Tollgate Lekki Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom House,Osapa London Jakande Lekki Lagos,₦,"105,000,000",0,1,0,4 beds,4 baths,4 Toilets +Nicely Built 5 Bedroom Detached Duplex With A Room Bq,Chevron Alternative Route Off Chevron Drive. Chevron Lekki Lagos,₦,"73,000,000",0,1,1,5 beds,5 baths,6 Toilets +Off Plan 1 & 2 Beds At Ikate With Prices From 18m. Secure A Spot With 1m,Ikate Lekki Lagos,₦,"27,000,000",1,1,0,2 beds,2 baths,3 Toilets +*newly Built 4bedroom Fully Detached Plus Bq At Chevron Area Lekki For N60m*,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Nicely Built 4 Bedrooms Detached House,Ikate Elegushi Lekki Phase 2 Lekki Lagos,₦,"76,000,000",0,1,1,4 beds,4 baths,5 Toilets +Lovely Built 4 Bedroom Detached House With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Luxury Detached Duplex And A Room Bq,Chevy View Estate Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Idado Opposite Igboefon Idado Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land ( Per Sqm),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +950sqm Land With C Of O, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq,Oral Estate Oral Estate Lekki Lagos,₦,"56,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Ikota Lagos State Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Fully And Semi Detached Duplex,Chevron. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With A Room Bq,Chevron Conservation Gra Opposite Chevron Head Office Lekki Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Fully Detached Duplex,Pinnock Estate Lekki Phase 2 Lekki Lagos,₦,"240,000,000",0,1,0,5 beds,5 baths,6 Toilets +300 Sqm Of Land On A Fast Developing Estate,Lekki Lagos,₦,"500,000",0,1,0, beds, baths, Toilets +4 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In A Serene Neighborhood,Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Build 5 Bedroom Flat With Bq In A Serene Environment,Westend Estate Ikota Villa. Ikota Lekki Lagos,₦,"65,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Pinnock Beach Estate, Osapa London Osapa London Lekki Lagos",₦,"230,000,000",1,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq.,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +Already Sand Filled Dry Corner Piece Land In Lekki Scheme 2 With Survey And C Of O Title.,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Bedroom Flat For Sale, Chisco Road, Ikate Lekki N28m",Lekki Garden Jakande Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +"5 Bedroom Detached House With A Room Boy's Quarter At Victory Park Estate, Lekki N110m",Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Shell Of 3 Bedroom Terrace With A Room Boy's Quarter,Lekki Gardens Premier 1 Estate By Enyo Filling Station Ikate Lekki Lagos,₦,"38,000,000",1,1,0,3 beds,3 baths,5 Toilets +4 Units Of 4 Bedroom Semi Detached With Bq,Chevy View Estate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +Serviced 3 Bedroom Flat At Cromwell Estate Checron,"Cromwell Estate Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"51,000,000",1,0,0,3 beds,3 baths,4 Toilets +"1,500sqm Land For Sale At Royal Garden Estate Ajah N130m",Royal Garden Estate Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Exquisitely Finished 5 Bedroom Semi Detached With A Room Boy's Quarter At Osapa London,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +880 Sqm Land,Nicon Town Jakande Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +700sqm Land,Vgc Lekki Vgc Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +"Brand New Well Finished 4 Bedroom Terrace House For Sale With A Room Boy's Quarter At Fairwell Estate, Orchid Lekki","Fairwell Estate, Orchid Ikota Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom Detached House With A Room Boy's Quarter At Victory Park Estate, Lekki N80m",Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Exquisitely Finished Brand New 5 Bedroom Fully Detached House With A Room Boy's Quarter At Skc Court Estate, Orchid, Lekki","Skc Court Estate, Orchid Ikota Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Serviced 5 Bedroom Semi Detached House With A Room Boy's Quarter At Serene Court Estate, Osapa London",Serene Court Estate Osapa London Lekki Lagos,₦,"58,000,000",1,0,0,5 beds,5 baths,6 Toilets +"Newly Built Well Finished 5 Bedroom Detached House For Sale With A Room Boy's Quarter At Signature Estate, Chevron Alternative Off Chevron Drive, Lekki","Chevron Alternative Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +12 Unit 3 Bedroom & 19 Unit Of 4 Bedroom Terraces,"Dunvale Court Estate, Orchid Hotel Rd Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +"For Sale 5 Bedroom Fully Detached House At Pinnock Beach Estate, Lekki N125m",Pinnock Beach Estate Jakande Lekki Lagos,₦,"125,000,000",0,0,0,5 beds, baths, Toilets +1 Plot 0f Land,"Elesan Orchid Road, By 2 Second Toll Gate Ikota Lekki Lagos",₦,"16,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House South Lake House,Ologolo Behind S.p.g Ologolo Lekki Lagos,₦,"50,000,000",1,0,0,4 beds, baths, Toilets +"4 Bedroom Terrace Duplex With A Room Boys Quarter At Lekki Gardens Estate By Abraham Adesanya, Ajah",Lekki Gardens Estate By Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 5 Bedroom Detached House With 1 Room Bq And Laundry,"Northern Foreshore Estate,chevron Drive Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths, Toilets +"Brand New Well Finished Fully Detached Duplex Of 5 Bedroom House For Sale With A Room Boy's Quarter At Ginza Hills Estate, Orchid Lekki","Ginza Hills Estate, Orchid Ikota Lekki Lagos",₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Chaplin Estate, Along Abraham Adesunya Road. Lekki Phase 2 Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units 3 Bedroom Apartments (off Plan),Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House With A Room Boy's Quarter At Ruxbury 2 Leisure Estate Beside Napier Gardens By Vgc,"Ruxbury 2 Leisure Home Beside Napier Gardens Estate, By Vgc Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +1550 Sqm Mixed Use Land,Along Alpha Beach Lekki Lagos Igbo Efon Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"Sale Of 4 Bedroom Semi Detached House With Boy's Quarter At Courtland Estate, Along Platinum Way/victory Park Jakande Firstgate, Lekki N65m & N75m","Along Platinum Way/victory Park Jakande Firstgate, Lekki Jakande Lekki Lagos",₦,"75,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Terrrace In Spring Bay Estate Ikate,Spring Bay Estate Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,5 beds, baths, Toilets +3 Hectares Of Bare Land For Sale Along Orchid Road Lekki,Orchid Road By Conservation Center Lekki Ikota Lekki Lagos,₦,"19,200,000",0,0,0, beds, baths, Toilets +12 Units 3 Bedroom & 4 Bedroom Maisonettes By Richmond Estates,Elegushi Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With 2 Sitting Room Plus 2 Room Bq,"Road 2,m Series V.g.c Lekki Vgc Lekki Lagos",₦,"130,000,000",0,0,0, beds, baths, Toilets +"Newly Built Well Finished 4 Bedroom Semi Detached House For Sale With A Room Boy's Quarter At Ginza Hills Estate, Orchid, Lekki","Ginza Hills Estate, Orchid Ikota Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distressed Sale Of Well Finished 4 Bedroom Semi Detached At Admiralty Home Off Alpha Beach Road Lekki N40m,"Admiralty Home Estate, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 4 Bedroom Semi Detached House With Boys Quarter,"Bourdillon Court, Chevron Drive Chevron Lekki Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached Building,parks 4 Cars.lagoon View, Alternative Route, Chevron Lekki N56m","Lagoon View, Alternative Route, Chevron Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds, baths, Toilets +"For Sale 4 Bedroom Semi Detached House At Pinnock Beach Estate, Lekki N95m",Pinnock Beach Estate Jakande Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +"Tastefully Finished 5 Bedroom Detached House With A Room Boy's Quarter Chevron Alternative, Chevron Drive, Lekki","Off Chevron Alternative, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Plots Of Land (6500sqm),"Off Alpha Beach Road, Lekki Igbo Efon Lekki Lagos",₦,"370,000,000",0,0,0, beds, baths, Toilets +Serviced Plot Of Land,"Lekki County Estate, Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"36,000,000",1,0,0, beds, baths, Toilets +1013sqm Land For Sale At Twin Lake Estate N180m,"Twin Lake Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"180,000,000",0,0,0, beds, baths, Toilets +"Well Finished 4 Bedroom Semi Detached House With A Room Boy's Quarter At Ikota Villa Estate, Lekki",Ikota Villa Estate Ikota Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat At Prime Water Gardens Estate Lekki Phase 1,Prime Water Gardens Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Detached House With 1bq,Ikota Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,World Oil Ilasan Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat Plus 1bq,Dream Work Centre Chevron Lekki Lagos,₦,"35,000,000",0,1,1,3 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Detached House With 1bq In A Mini Estate,Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House,Cardigan Estate Jakande Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fairly New 4 Bedroom Terrace House In A Mini Estatr,Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House,Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace House In A Mini Estate,Ilasan Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With A Bq,Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Fully Serviced Blocks Of Petite 2 Bedroom Maisonette At Ikate,Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,2 baths,3 Toilets +16 Units Of Luxury Flats,Chief Saula Ndakolo Street Ikota Lekki Lagos,₦,"1,200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 4bedroom Duplex Finish With Exquisite Facilities 4sales @agent Steve,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +Apartments At Angles Court Development Estste,Adjacent Friends Colony Agungi Lekki Lagos,₦,"47,500,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Detached House Plus Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +4bedroom Luxury Duplex Finish With Exquisite Facilities @agt Davd,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Flat And A Bq,I19c Beuna Vista Estate By 2nd Toll Gate On Lekki Ajah Expresspressway Its The Orchid Hotel Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,6 Toilets +4bedroom Duplex At Lekki,Lekki Lekki Phase 2 Lekki Lagos,₦,"220,000,000",0,1,1,4 beds,4 baths,5 Toilets +1 Unit Of 3 Bedroom Terrace With A Room Bq,Ikate (enyo) Ikate Lekki Lagos,₦,"47,000,000",1,1,0,3 beds,3 baths,4 Toilets +Ellicott 670 Dragon Dredge. Chucks,Lekki Lekki Phase 2 Lekki Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets +Land For Sale At Eleko,Elegushi Igbo Efon Lekki Lagos,₦,"2,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Plus Bq,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxury 3units Of 5bedroom Family Duplexes With Modern Amenities,Lekki County Homes Estate Ikota Villa Estate Opposite Ikota School Ikota Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,6 baths,6 Toilets +Exquisitely Built 5 Bedroom Detached Family Duplex With World Class Facilities,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Megamood Estate Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +An On Going Property Development Of Luxury Four (4) Bedroom Masionette Within A Highly Secure Estate (ocean Bay Estate),"Ocean Bay Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive Miniflats ( 1bedroom Flat)16 Units,Amadsun Street Igbo Efon Lekki Lagos,₦,"500,000,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New Fully Furnished Serviced 2 Bedroom Flat In Lekki County Hones,Lekki County Homes Ikate Lekki Lagos,₦,"25,500,000",0,1,1,2 beds,3 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex + Bq,"Lekki County Homes, Megamound Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Eli Court,Chevron Lekki Lagos,₦,"58,000,000",0,1,0, beds, baths, Toilets +Newly Built Luxury And Well Finished 5bedrooms Detached House,Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached Duplex For Sale In Ikate,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Duplex At Ikota Lekki N60m,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex* Exquisitely Finished Interiors.,Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fully Finished Luxurious 3bedroom Detached Duplex All Rooms Ensuite Located Before Chevron, Creek Avenue Court",Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,4 Toilets +A 5 Bedroom Semi Detached Duplex With Beautiful And Quality Finishing,Behind Circle Mall Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki Pay And Pack In L,Chevron Alternative Drive Lekki Lagos Chevron Lekki Lagos,₦,"69,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale At Buena Vista Estate By Chevron Toll Gate @ N55million,Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Around Orchid Hotel Chevron Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Massive 5bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Newly Built 5 Bedroom Detached Duplex,elegant And Sophisticated",Osapa London Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Lakeside Residential Plots For Sale In A Well Layout Estate At Chervron, Lekki Expressway @ N138,000/sqm","Opposite Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"138,000,000",1,0,0, beds, baths, Toilets +"Affordable Land For Sale In Lekki, Inside Beachwood Estate","Beachwood Estate, Shapati, Lekki. Lekki Phase 1 Lekki Lagos",₦,"6,750,000",1,1,0, beds, baths, Toilets +"Masterfully Built 5 Bedroom Fully Detached Duplex At Ikota Villa At The Back Of Mega Chicken, Fully Equipped House, Fully Equipped Kitchen, Bq, Bar, Refrigerator And Freezer, Study Room, Etc. Marketed By Oluwafunsho",Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +A 3bedroom Flat Ground Floor New House With Bq,Bera Estate Otumba Wale Olufunke Str Chevron Lekki Lagos,₦,"27,000,000",0,1,0,3 beds,3 baths,4 Toilets +Governor's Consent,"Chevy View, Chevron Lekki Chevron Lekki Lagos",₦,"520,000,000",0,0,0, beds, baths, Toilets +Detached 5 Bedroom Duplex With 2 Bedroom And 1 Bedroom Flats Respectively At The Back.,Agungi Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully And Semi Detached Duplex,Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land For Sale In Lekki,Agbowa Ikorodu Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"825,000",1,1,0,0 beds,0 baths,0 Toilets +Iland Lands Inside Beechwood Shapati Lekki, Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terraced House With Bq,Ilasan Lekki Lagos,₦,"70,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Finished 4 Bedroom Fully Detached Duplex With Bq In Creek Avenue Court Lekki Phase 1.,Lekki Phase 1 Lekki Lagos,₦,"53,000,000",0,1,1,4 beds,6 baths,6 Toilets +A Luxury Fully Detached 4bedroom Duplex At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex,11a Pinnock Beach Estate Lekki Lagos Jakande Lekki Lagos,₦,"200,000,000",0,1,0,6 beds,7 baths,8 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Including 2 Bq,Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brad New Semi Detached Duplex,Oral Estate Lekki Second Toll Gate Lekki Oral Estate Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +2040sqm Of Land With Ample Set Back Under The High Tension Along Lekki Epe Expressway,"Lekki Epe Expressway, Ikota Ikota Lekki Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +2100sqm Prime Land In Lekki 1 For Sale,Collin Ochidiono Street Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached House In Nicon Town,"Close C10, Nicon Town Estate Lekki Phase 1 Lekki Lagos",₦,"270,000,000",0,0,0,5 beds,5 baths,7 Toilets +Luxurious 3 Bedroom Apartment For Sale In Igbo Efon,"Sora Estate Soji Olagunju Street, Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos",₦,"32,000,000",1,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Sora Estate Soji Olagunju Street Igbo Efon Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Serviced Flat For Sale In Igbo Efon,Soji Olagunju Street Igbo Efon Lekki Lagos,₦,"23,000,000",0,0,0,2 beds,2 baths,2 Toilets +"3 Bedroom Flats With Bq For Sale In A Serviced Estate Off Freedom Way, Lekki Phase 1, Lagos. Services: 24/7 Power Supply Elevator Inclusive Water Treatment Plant Swimming Pool Basketball Court Gym 24hrs Security. Mortgage Option: Pay 7.5 Million, Tak",Freedom Way. Lekki Phase 1 Lekki Lagos,₦,"750,075,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex At 4th Avenue Osapa Village Lekki Few Minutes To Jakande Shoprite 36m Net,Osapa London Lekki Lagos,₦,"350,035,000",0,0,0,3 beds,3 baths,4 Toilets +@chevron For 35m 3bed With A Room Bq Title: Consent,Chevron Lekki Lagos,₦,"350,035,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Build 5 Bedroom Detached Duplex,Austin Anozie Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 9 Bedroom Fully Detached Duplex + 2bq,Lekki County Homes Lekki Lagos,₦,"370,000,000",0,1,1,9 beds,9 baths,10 Toilets +Luxury 2bedroom And A Miniflat For Sale,Uba Road Chevron Chevron Lekki Lagos,₦,"27,000,000",1,1,1,2 beds,3 baths,3 Toilets +Massive 5 Bedroom Fully Detached Duplex + Bq For Sale At Lekki County,Lekki County Homes Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Own Your Brand New Dream House In A Finger Snap, Within A New Mini Estate",Orchid Road Lekki Lagos,₦,"43,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Enough Parking Space,Iberekodo Brigde Gate Estate Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,5 Toilets +*now Selling!!!* (direct Briefs) *4 Bedroom Fully Detached* *house & 4 Bedroom Semi Detached* *house At Ikota Gra Behind Mega* *chicken*,Ikota Lekki Lagos,₦,"55,555,555",0,1,1,4 beds,4 baths,5 Toilets +"Direct Property For Sale Location: Lekkie Phase 2 , Ajah, Lagos. Spacious Brand New 5 Bedroom Terrace With 2 Sitting Rooms 1 Bq (5units) Beautifully And Luxuriously Finished. Serviced Apartment. Generator House. Quiet And Serene Environment. Fully Sec",Lekki Phase 2 Lekki Lagos,₦,"600,060,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Flat Penthouse With Bq,Prime Water View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat Penthouse With Bq,Prime Water View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Own A Part Of Lekki With Ease. Pay 4.5m, Move In & Spread The Rest For 7 Years. 24 Hours Light, Yearly Dstv Covered, Sparkling Water",Ikate Ikate Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,2 baths,3 Toilets +2 Units Of 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex In Lekki,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex In Osapa,Lekki Phase 2 Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Bedrooms Semi Detached Duplex In Ikate, Lekki Phase 1","Ikate, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Open Shop Space In Lekki,Lekki Phase 2 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,1 Toilets +Tastefully Built 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"420,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Semi Detached Duplex In Osapa,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"An Exquisite 7 Bedroom Terrace Duplex In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"300,000,000",0,0,0,7 beds,7 baths,8 Toilets +5 Bedroom Detached Duplex In Igbo Efon, Igbo Efon Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplexes For Sale In Chevron,Chevron Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Units Of 3 Bedroom Flat In Ikota, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of Detached Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,8 beds,8 baths,9 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +A New 6 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Units Of 5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Units Of 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex,Lekki Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 4 Bedroom Terrace Duplex In Ikoyi, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Eleganza Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Exquisite 5 Bedrooms Duplex,Chevron Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3 Units Of 4 Bedroom Semi Detached Duplex In Osapa, Lekki",Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of Newly Built 4 Bedroom Semi Detached Terrace Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Duplexes In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex For Sale In Lekki, Lekki Phase 2 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Tastefully Built 4 Bedroom Duplex,Syril Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Furnished 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Detached Deplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedrooms Detached Duplex,Lekki Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Detached Terrace Duplex For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedroom Semi Detached Duplex For Sale In Ikota, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex In Agungi, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 And 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of Beautiful 3 Bedroom Flat In Lekki,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Tastefully Built 2 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +11 Units Of 3 Bedrooms Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Block Of Duplex In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisite New 5 Bedroom Detached Duplex,Lekki Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Units Of 3 Bedroom Flat In Agungi, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +8 Units Of Luxurious 3 Bedrooms Flat,Lekki Chevron Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2 Units Of 2 Bedroom Flat In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex,Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Block Of 4 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Open Planned Office Space Building,Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,6 Toilets +Open Planned Office Space Building,Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Tastefully Built 4 Bedroom Terrace Duplex,Lekki Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Magnificent 4 Bedroom Semi Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Decent 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 4 Bedroom Semi Detached Duplex,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Jakande Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Decent 4 Bedroom Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 2 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of New 4 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In Lekki, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex For Sale,Orchid Hotel Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Units Of 3 Bedroom Flat In Lekki,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 5 Bedrooms Semi Detached Duplex In Lekki, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Units Of 4 Bedroom Detached Duplex In Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace Duplex In Ikota,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex,Lekki Agungi Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Renovated 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex With 1 Room Boys Quarter,Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Tastefully Completed 2 Bedroom Flat,Lekki Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"765, 561 Square Meters Land F", Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 5 Bedrooms Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex ( Off Plan),Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Units Of 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,2 Toilets +8 Units Of Luxurious 3 Bedrooms Flat,Lekki Chevron Lekki Lagos,₦,"450,000,000",0,0,0,3 beds,3 baths,4 Toilets +14 Units Of 3 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Exquisite 5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikate Lekki,Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 5 Bedroom Terrace Duplex In Chevron, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,0 Toilets +A Tastefully Completed 1 Bedroom Flat,Lekki Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Block Of 5 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Bedrooms Semi Detached Duplex,Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxury 5 Bedroom Terrace Duplex In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +16 Units Of 4 Bedroom Terrace Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 4 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Osapa London Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Duplex In Osapa London, Jakande",Osapa London Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of 7 Bedrooms Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"170,000,000",0,0,0,7 beds,7 baths,8 Toilets +An Exquisite 4 Bedroom Duplex,Lekki Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury 4 Bedroom Semi Detached Duplex In Osapa, Lekki",Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2 Units Of 4 Bedroom Semi Detached Duplex In Ikate, Lekki",Lekki Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +20 Units Of 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex In Lekki,Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Terrace Duplexin Eleganza, Lekki",Eleganza Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In Lekki,Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedrooms Semi Detached Duplexes,Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Executive 4 Bedroom Semi Detached Duplex,Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedrooms Detached Duplex,Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Eleganza Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplexe,Eleganza Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Nice 3 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 5 Bedrooms Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedrooms Detached Duplex,"Ikate, Lekki Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Beautiful 2 Bedroom Flat In Lekki, Lekki Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Units Of 3 Bedroom Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Luxurious 5 Bedrooms Duplex,Lekki Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Duplex In Agungi, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of 5 Bedroom Semi Detached Duplex In Ikota, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Detached Duplex In Lekki,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex In Osapa,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Semidetached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A New 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplexes In Osapa,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedrooms Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex In Lekki,Ikate Elegushi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,3 baths,5 Toilets +4 Bedrooms Fully Detached Duplex,Lekki Agungi Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +14 Units Of 4 Bedroom Semi Detached Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 5 Bedrooms Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplexes In Ikota,Ikota Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of Newly Built 4 Bedroom Terrace Duplex In Lekki,Jakande Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplexes In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Nicely Finished 4 Bedroom Semi Detached Duplex,Lekki Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedrooms Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Executive 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautifully Furnished 5 Bedroom Detached Duplex,Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxurious 5 Bedroom Detached Duplex In Osapa, Lekki","Osapa, Lekki Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex In Chevron,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Lovely 5 Bedroom Detached Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex,Lekki Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 5 Semi Detached Duplex In Lekki, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Exquisite 5 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 4 Units Of 4 Bedrooms Terrace Duplex,Lekki Osapa London Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Detached Duplex For Sale.,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Fully Detached Duplex In Lekki,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisite 6 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +Lovely 5 Bedroom Fully Detachd Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Lekki,Jakande Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Terrace Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedrooms Flat,Lekki Osapa London Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,1 baths,2 Toilets +8 Units Of Newly Built 3 Bedroom Terrace Duplex In Lekki,Ikota Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Exquisite 4 Bedroom Semi Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedrooms Duplex,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedrooms Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,7 Toilets +.a 4 Bedroom Terrace House,Lekki Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Lovely 2 Bedroom Flat In Ikota, Lekki",Ikota Village Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Terrace Duplex In Osapa,Osapa London Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Wazobia Courts Ibeju Lekki, Lagos By Novarick Homes","4, Babatope Bejide Street, Off Fola Osibo, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"4,000,000",0,1,0, beds, baths, Toilets +3 Bedroom Terrace Duplex With Bq,"Orchid Hotel Road Area, Close To Chevron Toll Gate Axis. Chevron Lekki Lagos",₦,"33,000,000",1,1,0,3 beds,5 baths,5 Toilets +A Plot Of Land For Sale At Lekki,Mayegun Estate Chevron Lekki Lagos,₦,"23,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Lekki(p?tinence Limited),Shepati Lekki Lekki Phase 2 Lekki Lagos,₦,"11,500,000",0,1,0, beds, baths, Toilets +Land For Sale In Lekki(p?tinence Limited),Shepati Lekki Lekki Phase 2 Lekki Lagos,₦,"11,500,000",1,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With 2 Room Bq At Lekki Phase 1,Off Rd 12 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds, baths, Toilets +Frontier Estate Service Plot,Inside Beach Wood Estate Bogije Lekki Phase 1 Lekki Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Lekki County Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace With A Room Bq,Babatope Bejide Crescent Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +2.5 Hectares Of Land Along Elegushi Road,Elegushi Road Ikate Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,1,0,5 beds, baths, Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Bq,Alternative Route Chevron Drive Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 No's Newly Built Semi Detached Duplex 4 Bedrooms All Ensuite,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +"4 Bedroom Semi Detached Duplex At Cdv Southlake Homes Ii & Iii, Lekki, Lagos",Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,4 Toilets +Distress Sale Of 4 Bedroom Terrace Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"31,000,000",1,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Bera Estate, Chevron Lekki Lagos",₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets +668sqm Of Land At Agungi,Madam Cellullar Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex Plus A Room Bq, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Arcadia Mews Estate, Osapa London Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 9 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,3 beds,4 baths,3 Toilets +4 Bedroom Detached Duplex,Secured Estate Along Orchid Hotel Road Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,"General Paint, Close To Lekki Gardens Lekki Phase 2 Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +*940 Sqm Cornerpiece @ #65m* Title: C Of O Inside Ikota Villa Estate Gra,Ikota Villa Estate Gra Ikota Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +"Exotically Built 5 Bedroom Fully Detached Duplex In Osapa London, Lekki. Well Furnished, Fitted Kitchen. Pay And Pack In",Osapa London Lekki Osapa London Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets +632sqm Inside Ikota Villa Gra For 45m With C Of O,Ikota Villas Ikota Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +"* 1,341 Sqm Land @ #110m* Chevron Alt Drive*registered Deed Of Assignment",Chevron Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +"For Sale Newly Built 5bedrooms Semi Detached Duplex For Sale In Ikota Villa Estate, Lekki, 50m",Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets +*exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In*,"Chevron Alternative Drive, Lekki. Lagos State Nigeria Chevron Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Luxury 5 Bedroom Fully Detached Duplex In An Estate In Lekki. Before Vgc. All Rooms Ensuit, Fitted Kitchen. Pay And Pack In","Lekki County Estate, Ikota Before Vgc Ikota Lekki Lagos",₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Ikate Ikate Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land(joint Venture),Northwest Filling Station Vgc Vgc Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Of 1 Bedroom Pent House Flat,Osapa London Osapa London Lekki Lagos,₦,"19,000,000",0,0,0,1 beds,2 baths,2 Toilets +Land,"Elf Bus Stop ,lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lafiaji Chevron Lekki Lagos,₦,"38,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"210,000,000",1,1,0,5 beds,5 baths,5 Toilets +Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,5 baths,4 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.,"Chevron Alternative Drive, Lekki. Lagos State Nigeria Chevron Lekki Lagos",₦,"58,000,000",1,1,1,4 beds,6 baths,6 Toilets +"Exquisitely Finished 5 Bedroom Fully Detached Duplex By Chevron, Lekki. Pay And Pack In*","By Chevron, Lekki Chevron Lekki Lagos",₦,"70,000,000",0,1,1,5 beds, baths, Toilets +Brand New Luxury Finished Fully Detached 5 Bedroom Duplex With Class In An Estate Before Vgc. Lekki .,Inside An Estate Before Vgc Vgc Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.*,"After Chevron Toll Gate, Ikota Lekki Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds, baths,5 Toilets +"Newly Built 5 Bedroom Fully Detached Duplex In Ikota Villa Estate, Lekki. Pay And Pack In",Ikota Villa Estate Lekki Lagos State Ikota Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached & Semi Duplex,Oniru Lekki Phase 1 Lekki Lagos,₦,"180,000,000",1,1,0,5 beds,5 baths,5 Toilets +"Get Your 3 Bedroom Terraced Duplex At Bella Homes Phase 1, Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki. Pay And Pack In",Close To The Toll Gate Axis At Chevron Lekki Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds, baths, Toilets +Luxuriously Finished And Partly Furnished 4 Bedrooms Fully Detached Duplex,Off Aniyde Akimade Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,4 Toilets +"Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Class In An Estate Before Vgc, Lekki . Pay And Pack In.","Before Vgc, Lekki Vgc Lekki Lagos",₦,"75,000,000",0,1,1,4 beds, baths, Toilets +"Exquisitely Finished 4 Bedroom Semi Detached Duplex By Chevron, Lekki. Pay And Pack In*","By Chevron, Lekki Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Bungalow,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,5 beds,5 baths,5 Toilets +"Exotically Built 4 Bedroom Semi Detached Duplex With Bq At Chevron Alternative Route, Lekki. Pay And Pack In","Chevron Alternative Route, Lekki. Lagos Chevron Lekki Lagos",₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Luxury 5 Bedroom Fully Detached Duplex In Chevron Alternative Route. Lekki, Lagos State. Pay And Pack In","Chevron Alternative Route, Lekki. Lagos. Chevron Lekki Lagos",₦,"78,000,000",0,1,1,5 beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Tastefully Built 4 Bedroom Terrace Duplex In Chevron, Lekki. Fully Serviced And All Rooms Ensuit With Fitted Kitchen.","Chevron Estate, Lekki, Lagos State. Chevron Lekki Lagos",₦,"38,000,000",1,1,1,4 beds, baths, Toilets +5 Bedroom Detached Duplex,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,1,0,5 beds,5 baths,5 Toilets +*441 Sqm Land @ #45m* Chevron Alt Drive*registered Deed Of Assignment,Chevron Alternative Route Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Irresistible Offer!!!! Buy A Plot Of Land At Lexington Gardens With Instant Allocation And Ready To Build,Sangotedo Lekki Lekki Lagos,₦,"17,000,000",1,0,0, beds, baths, Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New Luxury Finished Semi Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In.,"Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"54,000,000",0,1,1,4 beds,6 baths,6 Toilets +308 Sqm Land @ #20m* Inside Ikota Villa Estate Gra With C Of O,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",1,0,0, beds, baths, Toilets +Fully Detached 4 Bedroom Duplex With Bq In Creek Avenue Court Phase Two Lekki. Pay And Pack In,"After Chevron Toll Gate, Ikota Lekki Ikota Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Chevron Alternative Route Lekki. Pay And Pack In,"Chevron Alternative Route, Lekki. Lagos Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds, baths, Toilets +Well Finished 8 No Of 4 Bedroom Treeace Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built 5 Bedroom Fully Detached Duplex At Chevron Alternative Drive, Lekki With Good Tittle. Pay And Pack In","Chevron Alternative Drive, Lekki Lagos Chevron Lekki Lagos",₦,"75,000,000",1,1,1,5 beds,6 baths,6 Toilets +Secure A Plot Of Dry Land At Sapati Lekki And Get Instant Allocation,"Blue Pan, Sapati Lekki Lekki Lagos",₦,"4,500,000",0,0,0, beds, baths, Toilets +"Newly Built 4 Bedroom Semi Detached Duplex In Ikota Villa Estate, Lekki. Pay And Pack In",Ikota Villa Estate Lekki Lagos State Ikota Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +"Tastefully Built 5 Bedroom Fully Detached Duplex With Bq In Chevron Estate, Lekki.",Chevron Lekki Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,6 baths,6 Toilets +2 Units Of 4 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Alternative Route Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Osapa London Lekki. Pay And Pack In,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets +*900 Sqm Land @ #75m* Chevron Alt Drive*registered Deed Of Assignment,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Luxury 5bedroom Bq Fully Detached,Circle Mall Shoprite Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3bedroom With Abq For Sale,Circle Mall Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex + Bq,Off Orchid Hotel Road Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds, baths, Toilets +5 Bedrooms Fully Detached Duplex,In A Gated Estate Between 2nd Toll Gate And Mega Chicken Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace,Ikota Lekki Lagos,₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Classically Designed Brand New 4 Bedrooms Duplex With A Bq,Ikota County Ikota Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Duplex House ( Off Plan),"Akinmuje Street,onigbogbo Estate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Classically Designed 4 Bedrooms Detached Duplex With A Bq,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 No's Newly Built Semi Detached Duplex 4 Bedrooms All Ensuite,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +Massive 5 Bedroom Fully Detached Duplex|+ Bq,Orchid Hotel Road Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Flat For Sale At Orchid Road,Orchid Road Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 3 Bedroom Flat,Orchid Hotel Road Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Bedroom Detached House With Fitted Kitchen Swimming Pool And 2 Room,Nicon Town Is One Of The Popular Estate In Lagos.suited Immediately After Chisco Bus Stop In Lekki Nicon Town Lekki Lagos,₦,"380,000,000",0,1,0,5 beds,5 baths, Toilets +Fenced Plot Of Land With Foundation,10 Family Estate Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With A Boys Quarter,Noibi Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedrooms Duplex Tripplex,"Lekki Phase 1, Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"170,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 7 Bedroom Duplex With State Of The Art Fittings At Chevron,Chevron Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,8 baths,8 Toilets +Well Finished 4 Bedroom Detached House, Chevron Lekki Lagos,₦,"68,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detach Duplex,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Chois Garden Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Abijo, Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Roundabout Lekki Epe Expressway. Chevron Lekki Lagos,₦,"60,000,000",0,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached House With 2 Room Bq,. Chevron Lekki Lagos,₦,"180,000,000",1,1,1,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Semi Detached Duplex,By Nike Art Gallery Lekki Phase 1 Lekki Lagos,₦,"66,329,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House,Geer 12 Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets +Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen Available For Sale. Location ??ikota Lekki Lagos Price: N55m,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Bungalow | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"52,500,000",0,0,0,3 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Maisonette,"By Nike Art Gallery, Lekki Phase 1 Lekki Lagos",₦,"40,090,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 5 Bedroom Semi Detached Duplex,"By Friends Colony, Agungi Lekki Lagos",₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached House With One Room Bq,. Ikate Lekki Lagos,₦,"88,000,000",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Bungalow, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex (off Plan),Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets +Dry Land,Ikota Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of Super Luxury 4 Bedroom Terrace Duplex Now Available For Sale.,Ikate Elegushi Lekki Lagos. Ikate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Lekki Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,5 baths,5 Toilets +5 Bedroom Fully Detach Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Duplex With 1 Room Bq,. Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Maisonette (off Plan),Elegushi Ikate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive And Spacious 5 Bedroom Semi Detached Houses With A Penthouse And A Room Bq,. Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +Very Spacious 4 Bedroom Semi Detached Houses With A Room Bq. (90% Completed) Location ??agungi Lekki Lagos Price: N61m & N57m,Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,"By Nike Art Gallery, Ikate Lekki Lagos",₦,"44,815,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious 3 Bedroom Semi Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +Executive 4 Bedroom Semi Detached House With Bq, Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex (off Plan),Ikate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Maisonette,By Nike Art Gallery Ikate Lekki Lagos,₦,"40,090,000",0,1,0,4 beds,4 baths,5 Toilets +Testfully Finished 5 Bed Room Duplex For Sale; Location ??lekki Phase1 Lagos Nigeria Price:n180m,Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Contemporary Detached House With 2 Rooms Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House 1 Room Bq,Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,6 Toilets +Plots Of Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Semi Detached Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plot Of Land,Behind Mega Chicken Ikota Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House, Agungi Lekki Lagos,₦,"58,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxurious 5 Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,6 baths,6 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With A Room Bq,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"47,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly 4 Bedroom Detached House With 1 Room Bq,. Ikate Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Well Finished 2 Units Of 5 Bedroom Semi Detached House,Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Spacious And Well Finished 4 Bedroom Detached Duplex With A Room Bq,Chevron Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Penthouse Apartment,Lekki Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,5 baths,5 Toilets +Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen. Location ??ikota Lekki Lagos.,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom House,Cane 2 Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"115,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detach Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Detached Duplex With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With A Penthouse And 2 Rooms Bq. Location??victory Park Estate Osapa London Lekki Lagos. Price: N110m,Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely 4 Bedroom Duplex With Bq,Chevron Drive Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive & Spacious 5 Bedroom Detached Houses With A Penthouse And A Room Bq Now Available For Sale. Location ??by Lekki 2nd Toll Gate Price: N90m Per Unit,2nd Toll Gate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Spacious 4 Bedroom Semi Detached Houses With A Room Bq. (90% Completed) Location ??agungi Lekki Lagos Price: N61m & N57m,Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Detached House With A Room Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,6 beds,5 baths,4 Toilets +Exquisitely Finished Units Of 5 Bedroom Detached Houses With A Penthouse And A Room Bq. Location ??ikota Lekki Lagos Price: N95m Per Unit,Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +6 Bedroom Bungalow With 1 Room Bq,Abijo Lekki Phase 2 Lekki Lagos,₦,"23,500,000",0,0,0,6 beds,7 baths,7 Toilets +Land,West Wood Park Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Very Spacious 4 Bedroom Semi Detached House With A Room Bq And A Fully Equipped Kitchen. Location ??by Lekki 2nd Toll Gate.,Lekki 2 Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Executive 5 Bedroom Detached House With A Room Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 5 Bedroom Detached House With A Room Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxurious 4 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached House With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"68,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Land Fenced With Gate,Ikota Ikota Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached House With 2 Rooms Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,7 Toilets +Exquisitely Finished 5 Bedroom Contemporary Detached House With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Bedroom Semidetached Duplex,Premier 2 Estate Lekki Phase 1 Lekki Lagos,₦,"83,000,000",0,0,0,6 beds,6 baths,6 Toilets +Executive & Very Spacious 5 Bedroom Detached House With A Room Bq And A Swimming Pool. Location ??lekki Phase1 Lagos.,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Massive 5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House With One Bq,. Chevron Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Exquisite 4 Bedroom Detached House With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Detached House With A Room Bq, Ikota Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 4 Bedroom Semi Detached Duplex With A Room Bq,Before Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached House With A Room Bq, Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,5 baths,5 Toilets +Exquisite And Super Luxurious 5 Bedroom Detached House With Top Notch Finishes And A Fully Equipped Kitchen. Location ??chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Detached House With 1 Room Bq,. Chevron Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,5 baths,5 Toilets +Very Spacious 5 Bedroom Detached House,Geer 12 Osapa London Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,6 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With 1 Room Bq,. Chevron Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built Luxurious 4 Bedroom Duplex With A Room Bq,. Chevron Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,5 baths,5 Toilets +Luxurious 6 Bedroom Mansion,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"290,000,000",1,0,1,6 beds,7 baths,8 Toilets +"Executive & Very Spacious 4 Bedroom Detached House With A Room Bq, Air Conditioning Units And Generator. Location ??lekki Phase1 Price: N130m",Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment For Sale At Chery View Lekki Off Plan,Chevy View Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,"Orange Ville Estate, Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Detached House,Crown Estate Lekki Epe Express Way. Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Very Spacious And Well Finished 5 Bedroom Detached Duplex With A Room Bq Now Available For Sale. Location ??chevron Lekki Lagos Price: N65m,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Terrace Duplex,Chevron Drive Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Orchid Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Executive 4 Bedroom Fully Detached Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"63,000,000",0,1,0,4 beds,4 baths,5 Toilets +Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms 1 Room Bq Study Room Box Room Fully Equipped Kitchen Cinema Room L Shape Swimming Pool Great Neighborhood Etc Location ??osapa London Lekki Lagos.,Osapa Osapa London Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Mansion With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"190,000,000",1,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,"Abijo, Lekki Phase 2 Lekki Lagos",₦,"18,500,000",0,0,0,6 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House,By Lekki 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Executive 4 Bedroom Terrace Duplex,By Nike Art Gallery Lekki 3rd Roundabout. Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Maisonette, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lekki Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished Units Of 5 Bedroom Detached Houses With A Penthouse And A Room Bq. Location ??ikota Lekki Lagos,Lekki Ikate. Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With 1 Room Bq,. Chevron Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,6 baths,7 Toilets +Exquisite 4 Bedroom Fully Detached House With Bq, Ikota Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +1 Bedroom Apartment,Paradise Estate Lekki Lagos,₦,"16,000,000",0,0,0,1 beds,2 baths,2 Toilets +4 Bedroom Terrace Maisonette,Lekki Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Furnished 4 Bedroom Detached House With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,1,4 beds,5 baths,5 Toilets +5 Bedroom Semidetached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Lekki 2nd Toll Gate Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Contemporary Detached House With Bq, Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Spacious Units Of 3 Bedroom Terrace Duplex With Bq,By Lekki 2nd Toll Gate Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxurious 5 Bedroom Detached House With A Room Bq, Osapa London Lekki Lagos,₦,"108,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Townhouse With A Room Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,. Ikate Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House With 1 Room Bq,. Ikota Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Terrace Duplex,4th Roundabout Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached House,By Lekki 2nd Toll Gate Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detach Duplex,Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite And Very Spacious 5 Bedroom Detached House With Top Notch Finishes And A Fully Equipped Kitchen. Location ??chevron Lekki Lagos Nigeria.,Lekki Phase 1 Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Lekki Lekki Phase 2 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semidetached Flat,Chevy View Chevron Lekki Lagos,₦,"50,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Maisonnette | Off Plan,Chevron Drive Chevron Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Maisonette | Off Plan,Paradise 2 Estate Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Finished 4 Bedroom Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"18,500,000",0,0,0,6 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built Semi Detached 4bed Rooms Duplex With 2rooms Bq At Orchid Estate, Lekki Phase 1,laogs","Orchid Estate, Lekki Phase 1,lagos Nigeria Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand 5 Bedroom Terrace + Bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment For Sale Location:prime Water View Estate,Primewater Estate Ikate Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,2 baths,2 Toilets +Luxury 3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Flat,Safe Court Ikate Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,3 Toilets +992 Square Metres In Lekki Phase 2. With C Of O,Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Frontier Estate,Bogije Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex At Eli's Court,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",1,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex+ Bq And Swimming Pool,Lekki County Homes Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex At Lekki County N105m,Lekki County Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Houses For Sale In Lagos, 3 Bedroom Newly Finished Terrace Duplex With Bq Close To Chevron Toll Gate Axis, Lekki",Close To Chevron Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,5 Toilets +"Houses For Sale In Lagos, Lekki 3bedroom Newly Finished Terrace Duplex At Osapa London Lekki",Osapa London Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +"Houses For Sale In Lekki, Newly Finished Built 4bedroom Semi Detached Duplex With Bq At Chevron Lekki Lagos",Alternative Route To Chevron Ikota Lekki Lagos Chevron Lekki Lagos,₦,"45,000,000",1,1,1,5 beds,6 baths,6 Toilets +Newly Built 2 Bedroom Apartment With Bq At Lekki Phase 1 N55m,Christ Church Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +"Houses For Sale In Lagos , 3bedroom Newly Finished Terrace Duplex At Alantic View Estate Igbo Efon Lekki",Agugi Lekki Lagos Immediately After Lekki Phase1 Lagos Agungi Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,4 Toilets +Distress Sale. 4 Bedroom Semi Detached Duplex In Lekki 1,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Carlton Gate Estate,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Full Detached Duplex For Sale In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Ensuite Flat In Oniru Estate,"Lawani Oduloye Street Off Magbogunje Street, Oniru Estate Lekki Lagos",₦,"60,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex + A Room Bq,Ibrahim Odofin Street Idado Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5bed Room Detached Duplex Plus A Room Bq,"Off Chevron Drive At Amolegba Street, Bera Estate Chevron Lekki Lagos",₦,"50,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Duplex At Oral Estate. ( Great Neigborhood),Phase 13 Oral Estate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,6 Toilets +Developers Deal 7 Bedroom House On 845sqm,Lekki 1 Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,7 beds,7 baths,8 Toilets +3 Bedroom Terrace Duplexes + 1 Maids Room,"Orchid Road, Lekki Lekki Lagos",₦,"33,000,000",1,1,0,4 beds,4 baths,5 Toilets +Superclean 4 Bedroom Duplex (detached),Osapa Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Duplex For Sale In Oral Estate,Oral Estate Oral Estate Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Duplex At Megamound Estate,Diran Famakinwa Streer Ikota Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,5 baths,7 Toilets +Luxury 2 Bedroom Flat,Oba Amusa Agungi Lekki Lagos,₦,"30,000,000",0,1,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedrooms Terraced Duplex With Two Big Living Area.,Off Kusenla Road Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built,"Madiba Estate, Ikate Lekki Phase 1 Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds, baths, Toilets +Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 9units Of Luxury 3 Bedroom Flat With A Room Boys,Olubunmi Rotimi Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chervon Estate Before Vgc Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Boys Quarter,Mega Chicken Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex With Boys Quarter For Sale,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedrooms Duplex Ensuite With Bq,Ologolo Spg Road Off Lekki Express Ologolo Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +Brand New Richly Finished Massive And Luxury Fully Detached Duplex With Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Fully Service Flat At Seagate Estate Ikate,Seagate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exotically Finished 4 Bedrooms Semi Detached Duplex With Bq For Sale,Ikota Lekki After Toll Gate Chevron Lekki Lagos,₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +Newly Built Three Bedrooms Terrance Duplex With Bq,Toll Gate Axis Chevron Lekki Chevron Lekki Lagos,₦,"33,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Serviced Terraces Duplex,Chervon Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Distressed Sale Of 5 Bedroom Semi Detached In Ikota Villa,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Distressed Sale. 5 Bedroom Semi Detached Duplexes In Mega Mount,Lekki County Homes Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +Global C Of O,Elegushi Estate Ikate Lekki Lagos,₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets +Governor Consent,Pinnock Beach Estate Jakande Lekki Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex + Bq For Sale At Bera Estate,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Governor's Consent,Chevron Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,4 baths,5 Toilets +Governor's Consent,"No 20 Babatunde Kuboye Street By Akanbi Dish, Lekki Phase 1 Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq At Creek Avenue Court Phase 1,Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,6 baths,6 Toilets +"New List Luxury Structure,built With The Right Architectural Brilliance, Now Selling",No 20 Babatunde Kuboye Street By Akanbi Disu. Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex + Bq In Bella Homes 1 Lekki,Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,5 baths,5 Toilets +*5 Bedroom Fully Detached Duplex For Sale.*,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +*5 Bedroom Fully Detached Duplex For Sale.*,Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +"The Magnificent Luxury Home Is A Massive 6 Bedrooms,",Lekki Lagos,₦,"295,000,000",0,1,0,6 beds,6 baths,7 Toilets +"Beautifully And Obviously Luxuriously Finished Semi Detached Duplex With Bq, Swimming Pool",Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Perimeter Court 1: Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq.,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1 Room Bq,Inside Madiba Estate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Duplexes At Vgc,Roxbury Leisure Homes Vgc Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki,Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki.,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +3 Bedroom Detached Bungalow,"Idiagbon Town, Opp Fara Park Estate Agungi Lekki Lagos",₦,"14,800,000",0,1,1,4 beds,4 baths,4 Toilets +6 Units Of 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Duplex At Oribanwa Lekki Ajah Lagos,Wealthland Green Estate Oribanwa Lekki/ajah Jakande Lekki Lagos,₦,"19,975,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Spacious 5 Bedroom Duplex + Bq For Sale,Lekki County Lekki Phase 2 Lekki Lagos,₦,"118,000,000",0,1,1,5 beds,5 baths,6 Toilets +New 3 Bedroom Duplex At Aribanwa Lekki Ajah Lagos,"Wealthland Green Estate, Aribanwa Lekki Ajah Lagos Jakande Lekki Lagos",₦,"17,675,000",0,1,0,3 beds,3 baths,4 Toilets +New 4 Bedroom Duplex At 3rd Roundabout Ikate Lekki Lagos,"Inside Madiba Enclave, 3rd Roundabout Lekki Phase 1 Lagos Ikate Lekki Lagos",₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex+ Bq,"Lekki County Homes, Megamound Estate Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedrooms Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +Newly Built 4 Bedrooms Terraced Duplex In A Serene Environment In Chevron,"Leon Drive, Chevron Alternative Route Lekki Chevron Lekki Lagos",₦,"47,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex + Massive Bq,Lekki County Homes Megamound Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"For Sale!!!! Brand New 5 Bedroom Lovely Duplex With All Rooms Ensuite,",Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,0,4 beds, baths, Toilets +Luxurious 5bedroom Duplex For Sale In One Of The Most Secure Estate In Lekki,Megamound Estate 2nd Roundabout Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,5 Toilets +"Distress Sale Of 4bedroom Duplex In Chevyview Estate, Owner Needs Money",Chevyview Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,1,4 beds,5 baths,5 Toilets +Fully Detached 5 Bedroom Duplex,Opposite Victory Park Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massively Finished 5bedroom Duplex For Sale In Lekki,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,5 Toilets +Fully Detached Duplex,Behind Chevron Quarters Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,5 baths,6 Toilets +Lovely 4 Bedroom Duplex For Sale,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Duplex,"Ebun Adegboruwa Street, Off Freedom Way, Itedo. Ikate Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +An Exquisite New 5bedroom Fully Detached Duplex With Bq For Sale In Chevyview Estate,Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +"22plots Of Land For Sale In Orchid Road, Lafiaji",Orchid Road Ikota Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +"Beautifully Built 1, 2 And 3 Bedroom Flat For Sale",Mercedes Road Ikate Lekki Lagos,₦,"55,000,000",1,1,1, beds, baths, Toilets +4bedroom Semi Detached Duplex With 2rooms Bq For Urgent Distress Sale At Vgc,Gobu Vgc Lekki Lagos,₦,"62,000,000",0,0,1, beds, baths, Toilets +"Luxurious 5bedroom Duplex, Fully Detached For In Chevy View Estate Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets +Newly Completed 2 Bedroom Apartment In Lekki,"Ocean Bay Estate Along Orchid Hotel Road, Lekki Ii Peninsula Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,1,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Maisonette In A Serene Environment,Ocean Bay Estate Along Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex + Bq,Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Cossy 5 Bedroom Terrace Duplex For Sale At Ikate Lekki Lagos,Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,5 baths,5 Toilets +A Virgin Land Big Enough For Anything,"No 3 Hawau Abikan Str, Chevy View Estate, Chevron Lekki Lagos",₦,"550,000,000",0,1,0, beds, baths, Toilets +Newly 5 Bedroom Duplex In A Serene Neighborhood,"No 5 Hawau Abikan Str, Chevy View Estate. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,7 baths,8 Toilets +Luxurious 5bedroom Detached Duplex,Alfred Street Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex,Moore Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Detached 5 Bedroom Duplex,Close To Abiola Court Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Exquisite And Lovely 4 Bedroom Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious And Superb Finished 4 Bedroom Duplex,Babington Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 4bedroom Terrace Duplex,Bimbo Adenuga Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 4bedroom Duplex,Moore Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3bedroom Flat,Ivie Street Oral Estate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fantastic 2 Bedroom Flat,Eric Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxurious And Newly Built 5bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fantastic 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 3 Bedroom Flat,Eric Ikate Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fantastic 4 Bedroom Duplex,Babs Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly, Lavishly Built 5 Bedroom Duplex With Bq At Lakeview Park 2, Lekki",Lafiaji Chevron Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Right Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex+ Bq,Chevyview Estate Lekki Lagos,₦,"92,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex With Bq In A Serene Environment.,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,Megamound Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets +Governor's Consent,Megamound Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +Governor's Consent,"Jakande, Shoprite Road Jakande Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq For Sale,Ikate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,1, beds, baths, Toilets +"Well Maintained 4 Bedroom Semi Detached Dulpex In A Chevy View Estate,very Serene And Secured Estate","8,william Onoh Street,chevy View Estate,lekki,lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Duplex In A Serene Neighborhood....,Elegushi Ikate Ikate Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex Plus 1 Room Bq,"8,william Onoh Street,chevy View Estate Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,10 baths,10 Toilets +24 Units Of 3 Bedrm Flats With 1 Bedrm Bq Attached To Each Flat,Elegushi Near House On The Rock Jakande Lekki Lagos,₦,"1,000,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Build 5bedroom Duplex,Idado Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +5bedroom Newly Built,No14 Idado Way Idado Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +"A 6bedroom Duplex, Penthouse House, Immediately After Chevron Gate",Southern View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,7 beds,7 baths,7 Toilets +3 Bedroom Flat,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,0,1,3 beds,3 baths,3 Toilets +A Newly 2bedroom Flats,Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,2 beds,2 baths,2 Toilets +Distress Sale 4 Bedroom Terraced Duplex For Sale @agungi Lekki,Agungi Lekki Agungi Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex All Luxury Finished With Swimming Pool,Lekki County Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5bedroom Fully Detached Duplex All Luxury Finished With Swimming Pool For Sale @ Lekki County,Lekki County Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0, beds,6 baths,6 Toilets +3 Unit Of 4 Bedroom Terrace Duplex,After Second Toll Gate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 4 Bedroom Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Detached Duplex For Sale,After Second Toll Gate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,After Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duolex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"65,000,000",1,1,0, beds, baths, Toilets +Exquisitely Finished 4 Bedroom Semi Detached Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Plots Of Land In Southern Green Estate,"Lafiaji,behind Cooplag Gardens Lekki Phase 2 Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. .,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",0,0,0, beds, baths, Toilets +Brand New 3 Bedroom Terraced Duplex For Sale,Ikate Lekki Lagos,₦,"58,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3bedrooms Terace Duplex.,Muritola Eletu Close. Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds, baths,5 Toilets +Tastefully Finished Fully Detached 5 Bedroom Duplex,Lekki County Homes Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,9 baths,9 Toilets +Luxury 5bedroom Duplex.,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",1,0,0,5 beds,5 baths,6 Toilets +Newly Biult 5bedroom Duplex.,Atternative Root Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedrooms Duplex For Sale..,Muritola Eletu Close. Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +1030sqm (corner Piece) Of Land In Pinnock Beach Estate.,Beside Femi Okunu Estate Road. Osapa London Lekki Lagos,₦,"180,000,000",1,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex With Bq,"Eli Court Is At Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex +bq,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Plot Of Land Measuring 10,700sqm Facing Lekki Epe/shoprite,access From Admiralty,lekki.",Admiralty Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +A Brand New 5bedroom Fully Detached Duplex In A Serene Environment,Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex For Sale,Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedrooms Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 4bedrooms Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +C Of O,Bogije Lekki Lagos,₦,"12,350,000",0,0,0, beds, baths, Toilets +Newly Build Fully Detached Duplex,Opposite Northwest Filling Station Vgc Ikota Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +6 Bedroom Fully Detached Duplex In A Serene Environment,Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 4 Bedroon Fully Detached Duplex In A Serene Environment,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Duplex For Sale,County Homes Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,4 Toilets +Certificate Of Occupancy,Bogije Ikate Lekki Lagos,₦,"12,350,000",1,0,0,6 beds, baths, Toilets +Newly Build 4 &5 Bedroom Detached Duplex,Opposite Northwest Filling Station Ikota Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,4 baths,5 Toilets +Newly Buit 4bedroom Terraced Duplex (1 Year Payment Plan Available),Hd Terrace Phase 2 Chevron Lekki Lagos,$,"125,000",0,1,0,4 beds,4 baths,4 Toilets +"Newly Built (4)bedroom Fully Detached Duplex At Chevron Alternative Route, Lekki Lagos","Hd Court @ Chevron Alternative Route, Lekki Lagos Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +Tastefully Build 3 Bedroom Flat In A Serene Environment,Otaiku Street Behind Primewater Gardens Lekki Phase 1 Ikate Lekki Lagos,₦,"60,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki.pay And Pack In.,Osapa London Lekki Lagos. Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,6 beds,6 baths, Toilets +A Superb Mansion With 2 Sitting Rooms And About 8 Rooms,"Utomi Aire, Along Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,1,8 beds,8 baths,8 Toilets +Semi Detached 4 Bedroom Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fu;lly Detached Duplex Beunavista Estate,Beunoivista Estate By Orchid Road Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Tastefully Built Semi Detached Duplexes(springs Field Gardesn 2),"Orchid Road,opposite Chevron Chevron Lekki Lagos",₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex Up For Quick Sale,Conservation Way Chevron Lekki Lagos,₦,"40,000,000",1,0,1,4 beds,4 baths,5 Toilets +Affordable Newly Built 4 Bedroom Terrace,Chevron Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 5 Bedroom Duplex With A Bq,Conservation Way By Chevron Tollgate Chevron Lekki Lagos,₦,"60,000,000",1,1,0,5 beds,5 baths,6 Toilets +A Serviced 4 Bedrooms Semi Detached Duplex In Gated A Estate,Conservation Road 2; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Terrace Duplex With Bq,"Close To Chevron, Toll Gate Axis Lekki. Chevron Lekki Lagos",₦,"33,000,000",0,1,0,3 beds,5 baths,5 Toilets +A Brand New Mini Apartment,Chevron Drive Chevron Lekki Lagos,₦,"15,000,000",0,1,0, beds, baths, Toilets +Newly Built Luxurious 7 Bedroom Detached House At Lekki Phase 1 N500m,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,8 Toilets +A Newly Built And Astonishingly Finished 5/6 Bedroom Duplex With 2 Rooms Servant Quarters,Pinnock Beach Estate Agungi Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Luxury & Serviced 4 Bedroom Semi Detached Duplex,Conservation Road 2 Lekki Lagos,₦,"50,000,000",1,0,0,4 beds,5 baths,5 Toilets +A Wing Duplex With A Room Bq,Oba Oyekan Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +"3 Bedroom Terrace Duplex With Bq At Chevron, Lekki","Close To Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"33,000,000",1,1,1,3 beds,5 baths,5 Toilets +A Tastefully Finished 4 Bedroom Fully Detached House At Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Duplex With 2 Room Bq,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4bedroom Fully Detached Duplex With Bq,"Chevron Alternate Drive,lekki Lagos State. Chevron Lekki Lagos",₦,"69,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 5 Bedrooms + 2 Rooms Bq Fully Detached Duplex,Pinnock Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",1,1,1,5 beds,8 baths,8 Toilets +Astonishingly Finished 5 Bedroom Duplex,Nicon Town Ikate Lekki Lagos,₦,"360,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxury & Serviced 4 Bedroom Semi Detached Duplex,Conservation Road 2 Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Fully Detached 4 Bedroom Duplex With Bq In Phase 2 Creek Avenue Court, Lekki.","Ikota, Lekki, Lagos Ikota Lekki Lagos",₦,"46,000,000",1,1,1,4 beds,6 baths,6 Toilets +A Newly Built And Luxury 24 Unit Of 3 Bedroom Flat + Servant Quarters,Elegushi Ikate Lekki Lagos,₦,"1,100,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land For Sale At Lekki Express By 3rd Roundabout,Lekki Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Plots Of Land For Sale,Chevron Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 3 Bedroom Terrace Duplex With A Room Servant Quarters,Lekki County Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +"A Brand New 4 Bedroom Luxury Serviced Town House With A Room Bq, At Ikate",Ikate Ikate Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom With 2 Rooms Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Superbly Newly Built And Astonishingly Finished 5 Bedroom Detached Duplex,Northern Foreshore Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq,"Chelvron Altenative Drive, Lekki Chevron Lekki Lagos",₦,"68,000,000",1,1,1,4 beds,6 baths,6 Toilets +A Luxury & Serviced 3 Bedroom Terrace In Gated Estate,Conservation Road 2 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +En Suit Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Semi Detached With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets +A Luxury & Serviced 3 Bedroom Terrace In A Gated Estate,Conservation Road 2; Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Luxury & Serviced 5 Bedroom Detached Duplex,Conservation Road 2 Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Corner Piece Terrace,Agungi Agungi Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Tastefully Finished 4 Bedroom Town House At Agungi,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,1,4 beds,4 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos. Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,6 baths,6 Toilets +A Massive And Enterprising Hotel,Lekki Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built And Astonishingly Finished 5/6 Bedroom Duplex With 2 Rooms Servant Quarters,Pinnock Beach Estate Agungi Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Maintained And Astonishingly 5 Bedroom Duplex,Nicon Town Ikate Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Newly Built And Astonishingly Finished 5 Bedroom Detached Duplex With 2 Rooms Servant Quarters,Northern Foreshore Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Tastefully Finished 4 Bedroom Semi Detached With A Room Bq,Off Emma Abimbola Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Stylish Fully Furnished And Fully Equipped Brand New 4 Befrrom En Suit Duplex,"Osapa London Lekki, Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +A Newly Built 5 Bedroom Semi Detached House, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4300sqm Land At Fountain Springville Estate Lekki, Lagos","Fountain Springville Estate, Lekki Lekki Lagos",₦,"210,000,002",0,0,0, beds, baths, Toilets +Newly Built Modern 4 Bedrooms Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets +Serviced 4 Bedrooms Terrace Duplex With Bq,Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets +Finished 4 Bedroom Detached Duplex With Bq,Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedrooms Semi Detached Duplex With 1room Bq,Idado Estate Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom Semi Detached With 1 Room Bq,Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Terrace Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Units Of 4 Bedroom Terraces At Ikate Elegushi [redacted],Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Lovely 5 Bedroom Fully Detached Duplex At 2nd Roundabout Lekki Luxury 5 Bedroom Fully Detached Duplex,2nd Roundabout Lekki By Petrocam Osapa London Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +"Newly Built 4 Bedrooms Semi Detached Duplex, Furnished With Bq.",Idado Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,6 Toilets +"8 Units 3 Bedrm Office Complex Sitting On 850sqmts Land Good For Citing Of Banks, Churches, Eateries, Pharmacitical Complex, Furniture And Electronics Showrooms Directly Facing Lekki Expressway","38, Idao Rd Off Jakande Lekki Jakande Lekki Lagos",₦,"350,000,000",0,0,0,3 beds,1 baths,1 Toilets +Own 2 Bedroom Apartment At Abijio Gra,Lekki Phase 2 Lekki Lagos,₦,"10,500,000",1,1,0,2 beds,2 baths,3 Toilets +3 Bedrooms Terrace Duplex With Bq,2nd Tollgate Chevron Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Semi Detached Duplex,Idado Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1534sqm Plot Of Land, Fenced For Sale",Off Orchid Road Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +New And Classy 4 Bedroom Duplex,Chevron Lekki Phase 1 Lekki Lagos,₦,"65,000,000",1,1,1,4 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Terrace In A Serene Environment,Otaiku Street Behind Primewater Gardens Lekki Phase 1 Ikate Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In A Serene Environment,Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly 4 Bedroom Duplex In A Serene Environment,Agungi Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Igbo Efon Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Newly Buillt 5 Bedroom Fully Detached Duplex In A Serene Environment,Ikate Elugushi Ikate Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex In A Serene Environment,Lekki Conservative Agungi Lekki Lagos,₦,"43,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terraced Duplex,Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex For Sale At Lakeview Park Ii,"Lakeview Park Ii, Lafiaji, Off Lekki Expressway Chevron Lekki Lagos",₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Duplex With Bq For Sale,Chevron Alternative Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Terrace,"Osapa London, Close To Shoprite Osapa London Lekki Lagos",₦,"80,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex At Vgc For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Penthouse,"Off Adewunmi Adebimpe Drive, Marwa Lagos Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Neatly Built 4 Bedroom Semi Detached Duplex With A Bq,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex With Bq For Sale In Chevron Lekki Lagos,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Nos Of 4 Bedroom Terrace Duplex With A Boy's Quarter (town Houses),Logos Street Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Boys' Quarter,"Hebert Oriji Street, Off Femi Okunnu Road, Osapa London, Lekki, (7th Avenue) Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +90 Plots Of 600sqm Dry Land,Orchid Road By Orchid Hotel Lekki Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +90 Plots Of 600sqm Dry Land In An Estate,Orchid Road By Orchid Hotel Lekki Chevron Lekki Lagos,₦,"28,000,000",0,0,0, beds, baths, Toilets +90 Plots Of 600sqm Land,"Orchid Road By Orrchid Hotel ,lekki Chevron Lekki Lagos",₦,"28,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Off Road 5 Vgc Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +960 Sq.mtrs. Of Land,Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0, beds, baths, Toilets +Fenced Prime Land,Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Amazing 5 Bedroom En Suite Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Newly Built 7 Unit Terraces, 4 Bedrooms With 1 Servant Quarters With Good Road Access, Proximity To The Atlantic Ocean",Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Apartment,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built4bedroom Detached Duplex,Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Jakande Shoprite Osapa London Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq In Daniel's Garden Lekki,"Osapa London, Lekki Lagos Igbo Efon Lekki Lagos",₦,"56,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisetely Finished 4 Bedroom Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,"Lekki Phase 1, Ilasan Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki.,"Chevron Alternative Drive, Lekki Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +A 4 Bedroom Semi Detached Duplex With Bq,Creek Avenue Court Phase 1 Ikota Lekki Ikota Lekki Lagos,₦,"46,000,000",0,1,0,4 beds, baths, Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In.,"Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Exclusively Finished 4bedroom Fully Deterched Duplex,Chevron Alternative Drive Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House For Sale In A Serene And Secured Environment,Van Daniel's Close Osapa London Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Exquisitely Finished 4 Bdrm Detached Duplex Located In Lekki.,Vgc Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In A Mini Estate,N/a Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Registered Survey, Layout, And Deed Of Assignment.","Ilamija, Close To New Lekki International Airport, Lekki Lekki Phase 1 Lekki Lagos",₦,"900,000",0,0,0, beds, baths, Toilets +Four Bedroom Detached House For Sale,"Engr Enemoh, Off Freedom Way,lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Detached House For Sale,"36b Ladi Alakija Crescent, Lekki Phase 1,lekki Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom All Exquisite Luxury Duplex With Top Notch Finishing For Sale.,Chevron Lekki Lagos,₦,"100,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built4bedroom Detached Duplex,Chevron Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,6 baths,6 Toilets +"Well Built Shop For Sale At Ikota Shopping Complex Vgc, On Road 1. Good Title.6m",Road 1 Ikota Shopping Complex Vgc Lekki Lagos,₦,"6,000,600",0,0,0,1 beds,1 baths,1 Toilets +Premium 3 Bedroom Flats In Atlantic View Estate,"Atlantic View Estate, Alhpa Beach Road Chevron Lekki Lagos",₦,"35,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Newly Built 4 Bedroom Duplex In Ikota, By Megachicken",Road 5. Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Duplex In Osapa London.,Osapa London Lekki Lagos,₦,"56,000,000",1,1,0,4 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex + Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom Terrace Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex +bq At Chevron Alt Route,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Condo Studio Apartment In Jumeirah Uae Dubai,Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,1, beds, baths, Toilets +1111sqm Bareland At Bakare Estate(bera Estate) By Uba Bank Off Chevron Drive.,Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +2000 Square Meter Land, Chevron Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Sqm Of Land At Bakare Estate Off Chevron Drive Title Deed And Global C Of O Price 180m Asking,Chevron Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +Land, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"12 Nos Of 4 Bedroom Semi Detached Duplex With Bq, New",Good Location On Chevron Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Hampton Lake Estate By Chevron Hq,"Chevron Hq Road, Lekki Lagos. Chevron Lekki Lagos",₦,"60,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq,Jakande On Shoprite Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Duplex With 2 Rooms Bq,Pinock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite Mansion At Lekki,Lekki County Megamond Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +"8 Nos Of 4 Bedroom Fully Detached Duplex With Bq, New",On Chevron Road Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,By Second Toll Gate Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Fully Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"8 Nos Of 4 Bedroom Semi Detached Duplex With Bq, New",Inside Chevy View By Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Duplex With Bq,Pinock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Swimming Pool,Chevy View Estate; Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace Duplex, With Bq, Penthouse",In Bene Vista Estate By Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Can Be Use For Commercial Or Resident Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Floor Of 5 Bedroom Semi Detached Duplex With Bq,"Jakande, By Shoprite Road Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,1,1,5 beds,5 baths,6 Toilets +Affordable 3 Bedroom Apartment With Detached Bq,"Admiralty Way, Close To Tantalize Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Conserbation Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,3 Toilets +Lovely 4 Bedroom Fully Detached Duplex With Bq,"Orchid Hotel Road, Ikate Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Floor Of 5 Bedroom Fully Detached Duplex,Elegushi Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevron Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Semi Detached Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +British Design 4 Bedroom Terrace Duplex With Bq,Agungi Road Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Or Commercial 8856sqm Bareland With C Of O.,"Directly On Lekki Epe Express Way, Beside Vgc Vgc Lekki Lagos",₦,"1,300,000,000",0,0,0,1 beds,1 baths,1 Toilets +2 Floor Of 5 Bedroom Fully Detached Duplex With Bq,Elegucshi Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Bq, New",Inside Chevy View By Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,"Lekki County Homes Megamound, Best Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Conservation Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exqusitely Finished 4bedroom Semi Detached Duplex At Ikate Phase 1,Ikate Phase 1 Lekki. Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Off Adimralty Road Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes Megamound (best Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Duplex With Bq, Comercial Or Resident",Orchid Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Duplex With Penthouse Bq,Pinnock Beach Estate. Osapa London Lekki Lagos,₦,"220,000,000",0,0,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Orchid Hotel Road Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With Bq,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built And Well Furnished 5 Bedroom Fully Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths, Toilets +"Allocation, Deed Of Assignments",Alpha Beach Rd Igbo Efon Lekki Lagos,₦,"28,000,000",0,1,0,2 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex At Chevron Estate,Street 41 Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Terrace In Lekki Phase 1,Street 40 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Newly Built Bedrooms Mansion, In The Serene And Prestigious Peanock Estate. It's A Dream House For A Family That Desires One.it Comes With A Cinema, Penthouse, Swimming Pool And Ample Parking Spaces. Call Today To Book A Visit.",5 Peanock St Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,0,7 beds,7 baths,8 Toilets +5bedroom Duplex In Vgc,Vgc Lekki Vgc Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Plots Of Land,Ogombo Road By Abraham Adesanya Roundabout Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Detached Duplex, For Sale In Elegushi, Lekki, Lagos",Elegushi Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace In Lekki Right Hand Side,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built 4 Units, 4 Bedrooms Detached",14 Maiyegun St Oral Estate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Detached Duplex With Ample Parking,Off Ajiran Road Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Orchid Hotel Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex In Peanock Beach Estate Lekki,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,5 baths,5 Toilets +4bedroon Duplex At Chevron Alternative Road,Chevron Alternative Road Chevron Lekki Lagos,₦,"85,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq, Osapa London Lekki Lagos,₦,"53,000,000",1,1,1,4 beds,4 baths,5 Toilets +5bedroom Duplex In Peanock Beach Estate Lekki,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built 4units Of 3 Bedroom Terraces,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,5 baths,5 Toilets +5bedroom Duplex In Lekki County,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Lekki Phase 1 Jakande Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Governors Consent,Road 35 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex+ Bq,Chevron Alternative Route Lekki Phase 2 Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex On 3 Floors.,"Abiola Court, Agungi Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex At Chevy Alt Route,Chevy Alternative Route Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 2units Of 4bedroom Semidetached House In A Serene Environment In Oral Estate. Almost Complete.,Oral Estate Oral Estate Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,Tobioba Street Ologolo Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Build 4 And 5 Bedroom Fully Detached In Mini Estate,Ikota Lekki Lagos,₦,"55,000,000",1,1,1,5 beds, baths, Toilets +Land Excision And Governor's Consent,Kusenla Ikate Lekki Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +"5bedroom Detached House Opposite Bera Estate Opposite Chevron Nigeria Hq, Lekki , Lagos.","Opposite Bera Estate Opposite Chevron Nigeria Hq, Lekki , Lagos. Chevron Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bed Room Semi Detached House With Bq.walking Closet.spacious Kitchen.study Room.waiting Room.spacious Balcony With A Sea View.spacious Compound To Take About 4 5 Cars.24/7 Clean Water Access.affordable Estate Charges.24 Hours Security,Oral Estate Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,6 baths,6 Toilets +A Newly Built Units Of 3 Bedroom Apartment In A 24 Hours Security Secured Gated Estate In Lekki.,Oral Estate Lekki Lagos,₦,"33,000,000",0,1,1,3 beds,4 baths,4 Toilets +A Newly Built 6 Units Of 2 Bedroom Apartment In A 24 Hours Security Secured Gated Estate In Lekki.,Oral Estate Lekki Lagos,₦,"22,000,000",0,1,1,2 beds,3 baths,3 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex In A Secured Gated Estate In Lekki.,Idado Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets +A Newly Built 4 Bedroom Semi Detached Duplex In A Secured Gated Estate In Lekki.,Idado Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New Semi Detached House In Osapa London Lekki,Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Duplex With 2 Living Room And A Bq On 450sqmt,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,"Ikota Villa Estate, Lagos Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached Duplex,Gbola Salami Street; Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedrooms Flats,Allan Balogun; Osapa London Lekki Lagos,₦,"32,000,000",0,0,1,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Bourdillon Court Estate Chevron Lekki Lagos,₦,"82,000,000",1,0,0,4 beds,4 baths,5 Toilets +"5 Bedroom Duplex For Sale Within An Estate At Maruwa, Lekki. 100million Asking",Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Fenced 1000sqm Land Beside Lekki Gardens Housing Estate, Ikate, Lekki",Ikate Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"37,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex With A Bq,"Chevron Alternative Road, Adjacent To Atlantic Mall Chevron Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Nike Art Gallery Way Lekki Ikate Lekki Lagos,₦,"85,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplexes,"Orchid Road, By Second Lekki Toll Gate, Lekki Phase 1 Lekki. Chevron Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Behind Madiba Court Ikate Ikate Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,"Orchid Road By Second Lekki Toll Gate, Lekki Lagos. Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive. Alternative Road Adjacent To Atlantic Mall Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplexes For Sale,Orchid Road By Second Lekki Toll Gate Lekki Lagos Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq For Sale,"Orchid Road By Second Lekki Toll Gate, Lekki Lagos. Chevron Lekki Lagos",₦,"63,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Pinnock Beach Road, Ajiran Jakande Jakande Lekki Lagos",₦,"70,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,"Pinnock Road, Ajiran, Lekki Lagos. Jakande Lekki Lagos",₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Serviced Plot In A Serene Estate Developed By Nlng Staff Coop With Well Layed Our Road , Drainage And Recreational Services",Nlng Cowry Creek Estate Ikate Lekki Lagos,₦,"90,000,000",1,1,0, beds, baths, Toilets +Prime Plot Ideal For Redevelopment In A Fully Gated And Serviced Estate,Serviced Plot In A Gated Estate With Good Road Network And Drainage System At Diamond Estate Off Monastry Road Via New Shoprite Mall Sangotedo Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"25,000,000",1,1,0, beds, baths, Toilets +Distress Sale : 4 Unit 4 Bedroom Semi Detached Duplexes With 1 Room Attached And A Gate House,Jasper Ike Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex+ Bq,Ikota Villa Estate Lekki Lagos,₦,"4,500,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Lovely Bq.,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"105,000,000",0,1,1,5 beds,5 baths,6 Toilets +A Residential Development Of An Exquisite 4 Bedroom Townhouse + Bq,Platinum Way Nicon Town Lekki Lagos,₦,"122,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With 1 Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Furnished,Rasaq Eletu Street Behind Shotrite Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedrrom Duplex,Rasaq Eletu Street Osapa London Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,5 Toilets +Amazing Fully Detached 4 Bedroom Duplex For Sale At Chevron Lekki.,Nicon Town Lekki Lagos,₦,"100,000,000",0,1,1,5 beds,6 baths,6 Toilets +"A Tastefully Finished,cute 4 X 4 Bedroom Duplex In Osapa London, Lekki For Sale",Opposite Seebuff Plaza Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex In Lekki Phase 1,Off Freedom Road Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,1,4 beds,5 baths,5 Toilets +Hottest Deal: 4 Bedroom Detached Duplex With Bq At Lekki Phase 1,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +600sqm Of Land,"Vintage Park Estate, 4th Roundabout Lekki Lagos",₦,"96,000,000",0,0,0, beds, baths, Toilets +Newly And Tastefully Finished 5 Bedroom Detached House With Swimming Pool,"Oba Okunade Sijuade Close, Chevy View Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly And Tastefully Finished 4 Bedroom Wing Of Duplex With Boys Quarter,"Oba Okunade Sijuade Close, Chevy View Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Duplex,Lekki County Home Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Exclusively Finished Duplex With Boys Quarter,Spring Bay Estate Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Exclusively Finished Duplex With Boys Quarter,Pinnock Estate Jakande Lekki Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +2500sqm Land With Water Front For Joint Venture,"Atlantic View Estate, New Road. Igbo Efon Lekki Lagos",₦,"150,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Chevron Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Built 6 Bedroom Duplex With Swimming Pool,Admiralty Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exotic Finished 4 Bedroom Semi Detached Duplex With Boys Quarter,Creek Court Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,6 baths,6 Toilets +84 Hectares Of Land,Behind Chevron Chevron Lekki Lagos,₦,"35,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terraced Duplex With Boys Quarter,Bella Homes 1 Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Wing Of Duplex With Boys Quarter On 500sqm,Wumego Street Off Christ Avenue Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Luxurious Expatriate 4 Bedroom Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + Bq,Osapa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Govt Excision,"Plot 18,udo Wogu Drive,chevy View Estate,off Chevron Drive, Lekki,lagos Ilasan Lekki Lagos",₦,4,0,1,0, beds, baths, Toilets +Exquisitely Built Fully Detached 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Beautifully Built 2 Unit Of 5 Bedroom Semi Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +New Estate,Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat/apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,2 baths,2 Toilets +Governor's Consent,Behind Petrocam Close To Citi Lodge Hotel 2nd Round About Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Houses,"Adedeji Adekola, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"110,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Elegushi Lekki Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,1 Toilets +7 Bedroom Duplex,Beside Diamond Bank Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,0 baths,0 Toilets +Penthouse, Jakande Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached House,Behind Middle Hall School Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Okun Ajah Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land For Sale,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bodije Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land 1002sqm, Vgc Lekki Lagos,₦,"135,000,000",0,1,0, beds, baths, Toilets +"Land 600, 800 & 900 Sqm",Orchid Hotel Road Chevron Lekki Lagos,₦,"27,000,000",0,1,0, beds, baths, Toilets +Land,Elegushi Lekki Lekki Phase 2 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Plot Of Fenced Dry Land,Ajiran Agungi Lekki Lagos,₦,"53,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Tunde Laitan Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom House Plus A Bq, Lekki Phase 1 Lekki Lagos,₦,"69,000,000",1,1,1,4 beds,4 baths,5 Toilets +3bedroom Semi Detached Duplex,Chevron Roundabout Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4 Bedroom Semi Detached Duplex Off Alpha Beach Road, Lekki",Alpha Beach Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Duplex For Sale In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,1,1,4 beds,4 baths,5 Toilets +600sqm Cofo At Royal Arcade Awoyaya,Royal Arcade Awoyaya Lekki Phase 2 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Cofo At Platinum Garden Lekki Origanringan,Platinum Garden Lekki Origanringan Lekki Phase 2 Lekki Lagos,₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Cofo At Almond Garden. Origanringan Lekki Free Trade Zone,"Almond Garden, Origanringan Lekki Lekki Phase 2 Lekki Lagos",₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets +"600sqm Cofo At Diamond Spring, Origanringan Free Trade Zone","Diamond Spring. Origanringan, Free Trade Zone Lekki Phase 2 Lekki Lagos",₦,"5,600,000",0,0,0,0 beds,0 baths,0 Toilets +"600sqm With Gazette At Vellore Garden, Lekki Town","Vellore Garden, Lekki Town Lekki Phase 2 Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot For Inside Beechwood Estate Shapati Lekki Global C Of O,Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Spacious 5 Bedroom With 100% Facilities In A Serene Environment,"Heritage Place Estate* Monastery Road Behind Novare Mall (shoprite) Sangotedo, Lekki, Lagos. Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,0 Toilets +Contemporary Styled 4 Bedroom Town Houses,Just Before Agungi Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex,"Few Minutes Drive From The Lekki 2nd Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",1,1,0,4 beds,4 baths,4 Toilets +Beautiful And Well Built 4 Bedroom Semi Detached House In .ikate Elegushi,Eleguishi Ikate Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Few Minutes From Osapa Bus Stop Osapa London Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex + Bq,Bera Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Bera Estate Chevron Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,4 baths,5 Toilets +A Stylish Fully Furnished And Fully Equipped Brand New 4 Bedroom Fully Detatchedduplex,"Daniel's Garden Lekki Located At Osapa London, Lekki Before Agungi, Igbon Efon And Also Minutes Before Chevron. Osapa London Lekki Lagos",₦,"49,000,000",1,1,1,4 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq In The Serene High End Of Lekki Environment.,"Creeks Avenue Court Is Located Close To The Toll Gate At Chevron, Ikota, Lekki, Lagos.ki Ikota Lekki Lagos",₦,"45,000,000",1,1,1,4 beds,6 baths,6 Toilets +"A Luxury 4 Bedroom Terrace Duplex With A Room Bq Inside Madiba Estate,ikate Lekki Phase 7 Lagos.","Madiba Estate Ikate Lekki,phase 7 Lagos. Ikate Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq In Creek Avenue Court Lekki. Pay And Pack In.,"After Chevron Toll Gate, Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds, baths,5 Toilets +Bella Homes Phase 2 Is Exceptionally Finished Luxury Homes Located Close To The Toll Gate Axis At Chevron Lekki.,"Close To Chevron Toll Gate Axis, Lekki Chevron Lekki Lagos",₦,"36,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Fully Detached + Bq,Bera Estate Lekki Lagos,₦,"71,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale 3bdrm With Bq And 5bdrm With Bq,Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Triplex, Agungi Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq In Daniel's Garden Lekki. Pay And Pack In.,Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,6 Toilets +The Grand Atrium Event Centre For Sale,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Brandnew 4 Bedroom Semi Detached Duplex ( All Ensuite ) Luxurious Fittings And Amenities,",Oral Estate By Ikota Lekki Lagos Oral Estate Lekki Lagos,₦,"65,000,000",0,0,1,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +Distress Sale Solid 5 Bedroom Duplex With Penthouse And 2 Rooms Bq . The Owner Want To Relocate To Usa,Awoysya Ikate Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fast Selling: Plots Inside Beechwood Shapati, Lekki",Lekki Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Luxury 5 Bedroom En Suite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Lovely 5 Bedroom Detached House At Osapa Lekki,"Osapa, Lekki Osapa London Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached House With A Penthouse,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,6 baths,6 Toilets +Lovely Five(5) Bedroom Detached House At Ikota Villa Estate,"Ikota Gra, Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom House On 500sqm,Pinnock Beach Estate Jakande Lekki Lagos,₦,"133,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Lovely 4 Bedroom At Pinnock Beach Estate With A Lovely Water View,"Pinnock Beach Estate, Osapa Lekki Lekki Lagos",₦,"200,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +"5 Bedroom Detached House At Victory Park Estate, Lekki","Victory Park Estate, Lekki Lekki Lagos",₦,"115,000,000",1,0,0,5 beds,6 baths,6 Toilets +Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment,"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Lovely Brand New 4 Bedroom Detached House At Ikate Elegushi, Lekki","Ikate Elegushi, Lekki Ikate Lekki Lagos",₦,"86,000,000",0,1,0,4 beds,5 baths,5 Toilets +3 Star Hotel With 39 Rooms 2 Penthouses 2 And 3 Bedroom Flat,"Off Orchid Hotel Road, Lafiaji, Chevron Lekki Lagos",₦,"650,000,000",1,0,1,10 beds,10 baths,10 Toilets +Brand New 5 Bedroom Detached House 900sqm,"Pinnock Beach Estate, Lekki Lekki Lagos",₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment In Lekki,"By Pinnock Beach Estate, Lekki Jakande Lekki Lagos",₦,"46,000,000",0,0,0,3 beds,4 baths, Toilets +Serviced Well Finished 5 Bedroom Terrace,"Off Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"135,000,000",1,1,0,5 beds,6 baths,6 Toilets +Brand New Lovely 4 Bedroom Detached House Lagoon View,"Pinnock Beach Estate, Lekki Osapa London Lekki Lagos",₦,"165,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Commercial Property On Lekki Epe Expressway 3,700sqm","Lekki Epe Expressway, Jakande Lekki Jakande Lekki Lagos",₦,"1,200,000,000",0,0,0, beds,10 baths,10 Toilets +Lovely Five(5) Bedroom Detached House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,6 Toilets +Lovely Brand New 5 Bedroom Detached House With A Swimming Pool And Equipped Gym 864sqm,"Pinnock Beach Estate, Lekki Lagos Jakande Lekki Lagos",₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Lovely And Spacious 5 Bedroom Semi Detached At Atlantic View Estate, Lekki","Atlantic View Estate, Alpha Beach Road, Lekki Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale, behind Ikota School Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House 24hrs Power Supply,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land,"Royal Gardens Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Detached House,Osapa London Osapa London Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,"Pinnock Beach Estate, Ikate Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment (7th Floor),"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached House At Chevy View Estate,"Chevy View Estate, Chevron Drive, Lekki Lagos Chevron Lekki Lagos",₦,"87,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,"Orchid Hotel Road, By Chevron Toll Gate, Lekki Chevron Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +Lovely Brand New 5 Bedroom Detached House With A Swimming Pool And Equipped Gym 864sqm,"Pinnock Beach Estate, Lekki Lagos. Jakande Lekki Lagos",₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Beautifully Built Brand New 5 Bedroom Detached House With A Swimming Pool 900sqm,"Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 5 Bedroom Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"133,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,"Whiteoak Estate, Ologolo Lekki Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Lovely 4 Bedroom Semi Detached In A Fully Serviced Estate 24 Hrs Power,"Vintage Park 2, Osapa Lekkk Oral Estate Lekki Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +Tastefully Finished Detached House In Vgc,Off Road 3 Lekki Lagos,₦,"185,000,000",0,0,0, beds, baths, Toilets +Commercial Open Plan Space,Fola Osibo Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Five(5) Bedroom Detached House In Royal Garden Estate, Lekki","Royal Gardens Estate, Ajah Lekki Lekki Phase 2 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Crafted Five(5) Bedroom Detached House,"Off Chevron Drive, Lekki Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House,"Whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 5 Bedroom Detached House,"Off Road 2, Vgc Vgc Lekki Lagos",₦,"205,000,000",1,1,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semidetached Duplex,Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale At Ikate,"Parkhust Luxury Apartment, Alma Beach Estate, By Mercedes Ikate Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex At Ikate,"Perimter Court1, Madiba Enclave Ikate Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Plot Of Land,Chevron Lekki Lagos,₦,"18,000,000",0,1,0, beds, baths, Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,"Augustina Orji Street, Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Terraced Duplex,"Ugochukwu Orji Street, Behind Spg Building Igbo Efon Lekki Lagos",₦,"42,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classy 3 4 Bedroom Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exotic 5 Bedroom Duplex With One Room Bq, Osapa London Lekki Lagos,₦,"95,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built Semi Detached 5 Bedroom Duplex,Chief Bamidele Eletu Street Osapa London Lekki Lagos,₦,"80,000,000",1,1,0,5 beds,6 baths,6 Toilets +Exquisite And Luxury 5 Bedroom Terrace Duplex,Lekki Conservative Road Opposite Chevron Lekki Lagos,₦,"50,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terraced Duplex,"Ugochukwu Orji Street, Behind Spg Building Chevron Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedrooms Terraced Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedrooms Terraced Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"35,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedrooms Semi Detached Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,"Opposite Abiola Court 10, Chevron Alternative Road Chevron Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace,Adjacent Abiola Court 10 Chevron Lekki Lagos,₦,"37,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Inside Beechwood Estate Shapati, Lekki","Inside Beechwood Estate Shapati, Lekki Ilasan Lekki Lagos",₦,"12,000,000",0,0,0, beds, baths, Toilets +A 4 Bedroom Semi Detached Masionnette,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex + Bq At Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +6 Flats Of 3 Bedroom.,"7,lekki County,ikota Estate Ikota Lekki Lagos",₦,"180,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 3 Bedroom Terrace Apartment At Osapa London N46m,Osapa London Osapa London Lekki Lagos,₦,"46,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Beautifully Built 5bedroom Duplex Mansion With Bq In Ikate,Estate Close To House On Thee Rock Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,6 baths,7 Toilets +Brand New Massive 5 Bedroom Fully Detached Duplex,Before Chevron Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Luxury Spacious 4bedroom Duplex With Bq In Osapa, Lekki",Canal West Estate Osapa London Lekki Lagos,₦,"60,000,000",0,1,1,4 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With Bq,"Gate 2, Ikota Villa Estate Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 4 Bedroom Terrace House,Bakare Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury Foreign 4bedroom Fully Detached Duplex With Bq In Canal West Estate,osapa,lekki",Canal West Estate Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +Luxury Beautiful5 Bedroom Fully Detached Duplex With Bq,. Oral Estate Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,7 Toilets +Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex +bq,Osapa Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Oral Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Very Spacious 4bedroom Duplex For Sale,Estate Close To The Express Ologolo Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,5 baths,5 Toilets +Lovely 4 Bedroom Fully Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,2nd Toll Gate By Orchid Road Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Alpha Beach Road Lekki Lagos,₦,"25,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Ilaje Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Uniquely Built And Well Finished 2 Bedroom Flat,Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ilaje Opp Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Chevron Drive Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Super Luxurious Massive 5bedroom Duplex With Bq In Osapa London,lekki",Osapa Lekki Lekki Lagos,₦,"102,000,000",0,0,0,5 beds,6 baths,6 Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Indoor Swimming Pool,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplexes With Bq,Pinnock Beach Estate; Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Terrace House,Southern View Estate Opposite Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Amazing 5 Bedroom Fully Detached Duplex,Before Chevron Drive Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With An Indoor Swimming Pool,Chevron Drive Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 3 Bedroom Flat,Victoria Crest Estate Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Amazing 5 Bedroom Detached Duplex + Bq,Chevyview Estate; Chevron Lekki Lagos,₦,"95,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex +bq,Lake View Estate Off Orchid Road Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Ensuite Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Southern View Estate , Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop,Ajiran Agungi Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex,Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Victory Park Estate Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Palace Size 5bedroom Duplex With Bq,swimming Pool In Chevyview Estate",Chevy View Estate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautiful 3 Bedroom Terrace Duplex With A Bq,Orchid Hotel Road Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Chevy View Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Fully Detached Duplex,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex,Oral Estate After 2nd Toll Gate Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Amazing Newly Built 5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplexes With Bq,Idado Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Pay 30% And Move In Luxury 4bedroom Fully Detached Duplex In Ocean Breeze Estate,ologolo Lekki",Ocean Breeze Estate Ologolo Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,"Lekki County Home, Ikota Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful Spacious 4bedroom Fully Detached Duplex With Bq And Gate House,Canal West Estate Osapa London Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,After 2nd Toll Gate Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached + Bq,Chevyview Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury Spacious 4bedroom Duplex In A Mini Estate For Sale In Chevron,lekki","Orchid Hotel Road, Chevron Lekki Phase 2 Lekki Lagos",₦,"37,000,000",1,1,1,4 beds,4 baths,5 Toilets +Amazing 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Before Vgc Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Orchid Road By 2nd Toll Gate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Oral Estate Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,"Before Chevron, Idado Estate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,"Orchid Road, Southern View Estate Lekki Phase 1 Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Pay In 4yrs Fully Serviced 4 Bedroom Fully Detached Duplex In A Mini Estate In Agungi,lekki",Lara Ademola Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Southern View Estate Beside Lekki Conservation Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Shop Space,Ikota Shopping Complex Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Arcadia Groove Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With A Large Room Bq,Osapa London Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Agungi Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built 4 Bedroom Duplex With Bq Attached,Ologolo Road Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 2 Bedroom Apartment For Sale At Silicon Valley Estate,"Silicon Valley Estate Off Alpha Beach Road, Before Chevron Round About Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace,"Orchid Road, After 2nd Toll Gate Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms En Suite Detached Duplex + Bq,Pinnock Beach Estate By Shoprite Circle Mall Jakande Jakande Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Blocks 3 Bedroom Flats,Pinnock Beach Estate Jakande Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom En Suite Detached Duplex + Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Very Spacious Kingsize 4bedroom Duplex,Osapa Lekki Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"3,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Ikota Villa Estate Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Double Suite (shops),Ikota Shopping Complex Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 3 Bedroom Apartment,"Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Luxury 4 Bedrooms Semi Detached Duplex,"Off Lekki County Road, Lekki Lagos. Lekki Phase 2 Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached + Bq,Orchid Road 2nd Toll Gate Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom Flat,Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Duplex With Bq,Ikota Villa Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq,Ologolo Road Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House,Barolla Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Serviced 3bedroom Flat With Bq,. Oral Estate Lekki Lagos,₦,"29,500,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Duplex With 2 Rooms Bq,Victoria Garden City Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Suite (shop),Ikota Shopping Complex Vgc Lekki Lagos,₦,"6,300,000",0,0,0,0 beds,0 baths,0 Toilets +Massively Built 5 Bedroom Fully Detached Duplex, Ologolo Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Amazing 5 Bedroom Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Payment Plan Luxury Fully Detached 4bedroom Duplex In Ocean Breeze Estate Lekki,Ocean Breeze Estate Ologolo Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Furnished Standard Double Office Space,"Ikota Shopping Complex Vgc, Lagos. Ikota Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,1 Toilets +Dry Plots Of Land,Eleko Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Bera Estate Off Chevron Drive Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop/suite,Igbo Efon Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,1 Toilets +5 Bedroom Fully Detached Duplex,Lekki Conservation Lekki Lagos,₦,"4,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Spacious Luxury 4bedroom Fully Detached Duplex With Bq And Gatehouse In Chevron,lekki For Sale","Orchid Hotel Road, Chevron Lekki Phase 2 Lekki Lagos",₦,"60,000,000",1,1,1,4 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Chevyview; Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Maids Quarters,Osapa Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex With Bq,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex + A Maids Room,Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,Chevy View Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached,Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Ikota Villa Estate Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Amazing Newly Built 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Uniquely Built 5 Bedroom Detached House With Bq,"Chevyview Estate Lekki Ajah, Lagos Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 2 Bedroom Apartment,"New Road, Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"22,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace,Orchid Road After 2nd Toll Gate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex + Bq,Ologolo Agungi Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury Spacious 4bedroom Duplex With Bq In Osapa, Lekki",Canal West Estate Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths, Toilets +Brand New 5 Bedroom Fully Detached Duplex,Chevron Drive Lekki Lagos,₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Massive 5 Bedroom Terrace House + Massive Bq,"Lekki Phase1, Lekki Lagos",₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Located At Bakari Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets +Newly Built Extra Modern Offices For Sale/lease,Agungi Agungi Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets +Affordable Luxury Five (5) Bedroom Detached Duplex For Gorgeous Family Lifestyle,"Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Five (5) Bedroom Detached Duplex Located With Bq @chevy View Estate, Lekki Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,6 baths,7 Toilets +"2units 5bedroom Terrace Duplex Off Chevron Drive, Ikoyi Lagos",Chevron Drive Lagos Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +Orchid Road: Four(4) Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets +Five (5) Bedroom Detached Duplex Located With Swimming Pool,"Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"120,000,000",0,1,0,5 beds,7 baths,8 Toilets +"Three(3) Bedroom Semi Detached Duplex Located @oral Estate, Lekki Lagos",Oral Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,4 baths,5 Toilets +"Five (5) Bedroom Detached Duplex Located With Bq @chevy View Estate, Lekki Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,7 Toilets +Affordable Luxury Five (5) Bedroom Detached Duplex For Gorgeous Family Lifestyle,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,6 baths,7 Toilets +"Affordable Luxury Of 5 Bedroom Detached Duplex At Megamound Estate, Lekki County Homes","Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,7 baths,8 Toilets +5 Bedroom Ensuite Detached Duplex With Breathtaking View Of The Environment At Oral Estate Lekki Lagos.,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,7 baths,7 Toilets +5 Bedroom Duplex @ Oral Estate,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,7 baths,7 Toilets +4 Bedroom Semi Detached,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,6 baths,6 Toilets +Five(5) Bedroom Standalone Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,7 Toilets +Five(5) Bedroom Stand Alone Duplex With Bq,Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,7 baths,7 Toilets +"4 Bedroom Semi Detached @megamound Estate, Lekki County Estate.","Megamound Estate, Lekki County Home Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,6 baths,7 Toilets +Alexander Homes 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,7 baths,7 Toilets +2500sqmt Land On Lekki Epe Express Way Lagos For Sale,"Lekki Epe Express Way Road, Lekki Lagos Ikota Lekki Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +Oral Estate: 5 Bedroom Stand Alone Duplex,Oral Estate Oral Estate Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,6 baths,6 Toilets +Five(5) Bedroom Stand Alone Duplex With Bq,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,7 baths,7 Toilets +Afordable Five (5) Bedroom Detached Duplex Located At Bakari Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced With Bq,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,5 baths,6 Toilets +Afordable Modern Five(5) Bedroom Stand Alone Duplex With Bq,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,7 Toilets +Newly 4 Bedroom Semi Detached Duplex,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,6 Toilets +Four (4) Bedroom Detached Duplex Located At Empire Estate,Bakari Estate Lekki Phase 2 Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,7 baths,6 Toilets +3bedroom Flat In County Home Ikota Lekki,County Home Ikota Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Tastefully Finished 3 Bedroom Terrace House With A Maids Room For Sale,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrance Duplex,Ochid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,5 Toilets +Well Located And High Quality 3 Bedroom Terrace House For Sale At Osapa,"Castle Avenue, Osapa Osapa London Lekki Lagos",₦,"40,000,000",1,1,0,3 beds,3 baths,4 Toilets +Stylish Urban 4 Nos 3 Bedroom Terrace And 2 Nos 3 Bedroom Penthouse Apartment ( Off Plan),"Atlantic Beach Estate, Lekki Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Serviced Brand New 4 Bedroom Semi Detached Duplez With A Room Bq At Osapa, Osapa London Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedroom Semi Detach Duplex In Igbo Efom Lekki,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 5bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 4 Bedroom Duplex With A Room Bq,Orchid Road Ikota Lekki Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Luxury 4bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Spacious Luxury 4 Bedroom Penthouse Apartment For Sale At Primewater Gardens 2,Primewater View Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",1,0,0,4 beds,4 baths,5 Toilets +Ready To Move In 5 Bedroom Detached House For Sale At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,1,5 beds,5 baths,6 Toilets +Brand New Spacious Luxury 5 Bedroom Townhouse For Sale,. Oral Estate Lekki Lagos,₦,"65,000,000",1,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",1,0,1,4 beds,4 baths,5 Toilets +Luxury 4bedroom Semi Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex With Top Notch Facilities,General Emdin Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",1,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Newly Built Flat (carcass) For Sale At Paradise 3 (lekki Gardens),Lekki Gardens (paradise 3) Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,. Osapa London Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built With Excellent Finish 4 Bedroom Terrace House For Sale,Along The Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Tastefully Finished 4 Bedroom Terrace House With A Room Boys Quarters For Sale,Ikota Villa Estate Behind Mega Chicken Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ochid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary Luxurious 4 & Bedroom Houses For Sale At Roxbury Homes 2,Roxbury Homes Vgc Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New Sophisticated 4 Bedroom Semi Detached House For Sale,"Off Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Duplex With A Room Bq Inside Bera Estate Off Chevron Drive Lekki.,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Contagious Plots For Sale,Off Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Brand New 5bedroom Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Semi Detached Duplex With A Room Bq In A Gated Part Of Lekki Phase 1.,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +Newly Built 4bedroom Detached Duplex For Sale,Lekki Alternative Route Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex," block 4, Plot 48 Ojomu Family Layout, Oral Estate, By Chevron Toll Gate, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," novojo Estate, Lbs, Lekki Expressway, Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," osapa, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Acres Of Land For Sale,"Back Of Chevron Drive, Alpha Beach Chevron Lekki Lagos",₦,"35,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Terrace Duplex,"Oribanwa, Lekki Ajah Lekki Lagos",₦,"17,675,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Terrace Duplex,"Oribanwa, Lekki Ajah Lekki Lagos",₦,"14,800,000",0,1,0,2 beds,3 baths,3 Toilets +"4 Bedroom Semi. Detached Duplex For Sale Ib Friends Colony, Estste, Lekki Lagos","Friends Colony Estate, Agungi , Lekki Agungi Lekki Lagos",₦,"75,000,000",1,0,0,4 beds,5 baths,5 Toilets +"800sqm Of Labd Fir Sake At Seagate Estate , Ikate Lekki Lagos","Plot 3, Seagate Estate Phase 1 Peninsula Ikate Lekki Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +2units Of 3bedrooms All Ensuite Terrace Buildings,"Fara Park ,lekki Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bed En Suite Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bed Corner Piece Detached Duplex With A Bq,Chevy View Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bed En Suite Semi Detached Duplex,Ikate Elegushi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 5 Bed Ensuite Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lekki Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +For Sale 4 Bedroom Detached Duplex,By Second Lekki Toll Gate Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,5 Toilets +5bedroom Luxury Fully Detached,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,6 baths,5 Toilets +Newly Built 4,"Ikota Villa,lekki. Ikota Lekki Lagos",₦,"65,000,000",0,1,1,4 beds,4 baths,4 Toilets +Well Maintained (demolishable) And Vacant 5 Bedroom Fully Detached Duplex With 2 Room Bq,Off Admiralty Road (tantalizer) Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,1,0,3 beds,3 baths,3 Toilets +Land In A Developed Area Of Elegushi Lekki,Ilasan Ikate Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,"Off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Detached Duplex,"Osapa, Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,5 baths,4 Toilets +Lovely 4 Bedroom Terraced Duplex,"Orchid Road, Lekki Lagos",₦,"39,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,"Orchid Road, Lekki Lagos",₦,"26,000,000",0,1,0,0 beds,0 baths,0 Toilets +Stunning 4 Bedroom Detached Duplex,"Osapa London, Lekki Lagos",₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,White Oak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,"Mudasiru Eletu Way, Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,"White Oak Estate, Ologolo Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Kazeem Eletu Way, Osapa London Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Behind Prime Water Gardens. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detach (2 Units) Duplex Wth A Room Self Contain Bq At Agungi/osapa London Behind Friends Colony,Osaka London Osapa London Lekki Lagos,₦,"40,000,000",1,1,0,5 beds,6 baths,6 Toilets +"4 Bedroom Detached Duplex( Brand New, 24 Hours Light Service) For Sale At Osapa London Lekki",Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Fully Detached Duplexes Plus Bq In Eli Court Chevron Lekki,"Chevron Alternative Drive, Lekki Lagos. Chevron Lekki Lagos",₦,"69,000,000",1,1,0,5 beds,5 baths,6 Toilets +2 Storey 5 Bedroom Semidetached Duplex (all Rooms Ensuite),Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +Fully Built 2 Storey 5 Bedroom Terrace Duplex With A Boys Quarter,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"53,000,000",1,1,0,6 beds,6 baths,7 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex With A Boys Quarter (all Rooms Ensuite),Ibrahim Odofin Agungi Lekki Lagos,₦,"72,000,000",0,1,0,6 beds,6 baths,7 Toilets +3 Bedroom Flat (all Rooms Ensuite),Paradise Estate Chevron Lekki Lagos,₦,"30,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semidetached Duplex (all Rooms Ensuite),Ibrahim Odofin Agungi Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,5 baths,6 Toilets +Global C Of O,Meadow Hall Way Ikate Lekki Lagos,₦,"42,000,000",1,1,0,4 beds,4 baths,5 Toilets +"27 Rooms Hotel With 5 Room Duplex Attached, Sitting On 2200 Square Ft For Sale At Lekki Phase 1",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",1,0,1,10 beds,10 baths,10 Toilets +A Fenced And Gated Dry And Strategic Piece,Vgc Vgc Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +Tastefully Built 5 Bedroom Duplex, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +Affordable Land For Sale In Lekki.(the Marjestique Garden G.r.a),G.r.a Abijo Lekki(2 Minutes From Epe Express Way) Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Sunrise Terrace Duplexes At Ocean Bay Estate, Lekki","Ocean Bay Estate, After Chevron Toll Gate Plaza, Before Vgc Roundabout Ikota Lekki, Expressway,lekki Epe Road Lagos, Nigeria Ikota Lekki Lagos",₦,"55,000,000",1,1,0,5 beds,6 baths,7 Toilets +"? Luxury 9 Units Of 2bedroom Flat With Gym And Swimming Pool At Ikota Villa, Lekki.",Ikota Villa Ikota Lekki Lagos,₦,"25,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terraced House,Oral Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 4bedroom Semi Detached Unit With Bq,Oluwatosin Adewuyi Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 4 Bedroom Fully Detached Duplex,in Osapa London",Osapa London Road Osapa London Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Newly Built 4 Bedroom Semi Detached Duplex,in Chevron Alternative,self Servied In A Well Secured Environment",Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Spacious And Neat Block Of 3,2 And 1 Bedroom Flats",Babafemi Osoba Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,3 beds,2 baths,3 Toilets +Brand New Four Bedroom Fully Detached Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Terrace Duplex At Lekki, Osapa London Lekki Lagos,₦,"87,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificent Five Bedroom Duplex At Ikota,"Megamound Estate, Ikota Lekki Lagos",₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,. Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplex,"Lekki Conservation Centre, Chevron Lekki Lagos",₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"73,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki,. Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex,"Orchid Hotel Road, Ikota Lekki Lagos",₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Fully Detached Duplex At Lekki,. Ikota Lekki Lagos,₦,"67,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Four Bedroom Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Serviced Terrace Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Chevy View Estate, Chevron Lekki Lagos",₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq, Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Terrace Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",1,1,0,4 beds,4 baths,5 Toilets +Exquisite Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"67,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq., Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq, Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Alternative Route, Chevron Lekki Lagos",₦,"78,000,000",0,1,0,5 beds,5 baths,6 Toilets +Semi Detached 4 Bedroom Duplex,. Ologolo Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Westend Estate, Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Orchid Road Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki, Osapa London Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached Five Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex At Lekki,. Agungi Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplexes At Osapa London,. Osapa London Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Detached Duplex,"Megamound Estate, Ikota Lekki Lagos",₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"57,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Ikota, Oral Estate Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached Four Bedroom Duplex At Ikota,"Oral Estate, Ikota Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplex,. Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Cheveron Alternative Route Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,. Oral Estate Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,. Osapa London Lekki Lagos,₦,"82,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Terrace Duplex,"Orchid Hotel Road, Ikota Lekki Lagos",₦,"42,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Fully Furnished All Rooms Ensure 5 Bedrooms Duplex House For Sale,"Chevy Estate, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Villa With Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Flexible Payment Plan,Chevron Drive Lekki Phase 1 Lekki Lagos,₦,"36,500,000",0,1,0,4 beds,5 baths,5 Toilets +2 Unit Of 3 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 7 Bedroom Fully Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,0,7 beds,7 baths,7 Toilets +5 Bedroom Detached House On Land Measuring 480sqm,Akanbi Disu Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +3 Bedroom Serviced Apartment With Bq,Prime Waters Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds, baths, Toilets +Newly Built 3 Bedroom Fully Serviced Apartment.,Lekki Express Way Lekki Phase 2 Lekki Lagos,₦,"32,000,000",1,1,0,3 beds,3 baths,4 Toilets +For Sale Luxury 5 Bedroom Fully Detached Duplex,Royal Garden Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +"For Sale, New!!! Luxury Built 5 Bedroom Fully Detached Duplex On Two Floors + Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,5 beds,5 baths,5 Toilets +Renovated 6 Bedroom Fully Detached Mansion + Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,8 Toilets +3 (no) 4 Bedroom Luxury Flat On The Pent Floor With Bq,Safe Court Apartment Ikate Lekki Lagos,₦,"65,000,000",1,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Semi Detached Houses,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Detached Houses With A Room Bq,Chevy View Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Waterfront Land Measuring 1,057sqm Block P1 Plot 10",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0, beds, baths, Toilets +2 Units Of 5 Bedroom Detached Houses,Murphy Agbabiaka Street Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 And 5 Bedroom Duplex Houses With Bq.,Alternative Route Chevron Drive. Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,0,0,5 beds,5 baths,6 Toilets +Fully 5 Bedroom Detached House,Nicon Town Nicon Town Lekki Lagos,₦,"500,000,000",1,0,0,5 beds,5 baths,6 Toilets +Massive Brand New 5 Bedroom Detached Duplex,Osapa Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With A Bq,Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxuriously Finished 5 Bedroom Detached House With Boys Quarter,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,7 Toilets +"Brand New, Strategically Located And Partly Furnished 2 Bedroom Apartment",Ikota Villa Estate Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +4bedroom Semi Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Waterfront Duplexes,"Megamound Estate, Lekky County Homes Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In A Serene Neighborhood,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets +Well Finished 5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Done 4 Bedroom Semi Detached House,Ikota Villa Estate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets +Well Finished 4 Units Of 3 Bedroom Luxury Apartments,Off Admiralty Way; Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,10 beds,8 baths,10 Toilets +Nicely Made Semi Detached 4 Bedroom Duplex,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 3 Bedroom Apartment,By Alpha Beach Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished 3 Bedroom Apartment,Off Ajiran Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Five(5) Bedroom Detached House.,Ikota Villa Estate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Tastefully Finished 5 Bedroom Fully Detached Duplex,Agungi Axis Between Jakande And Chevron Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached House With Bq,"Ochid Road, Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"65,000,000",1,1,1,5 beds,5 baths,6 Toilets +Tastefully Furnished 4 Bedroom Terraced Duplex, Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With B/q,Victory Park Estate; Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,7 baths,6 Toilets +Brand New And Nicely Finished 4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Fully Detached House,Lekky County Homes Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +Top Class Finished Newly Built 5 Bedroom Fully Detached Duplex,. Agungi Lekki Lagos,₦,"60,000,000",0,0,1,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Main Street Lekki Phase 1 Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +Spaciously Finished 5 Bedroom Detached House,Lekky County Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex,By Pinnacle Oil Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 10 Unit Of 2 Bedroom Flat With Gym And Swimming Pool,"Ikota Second Gate, Road 30 Ikota Lekki Lagos",₦,"280,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Magnificently Built, Brand New And Luxuriously Finished 5 Bedroom Fully Detached Duplex",Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +Luxirus 5bedroom Detached Duplex With 1room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With 2 Guest Rooms,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,1,7 beds,7 baths,8 Toilets +Luxury And Superbly Finished 4 Bedroom Terrace House,Yetville Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Detached Duplex With B/q Located At Chevy View Estate,Chevy Ville Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Funished 5bedroom Detached Duplex With 1room Bq,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +Fully Furnished And Serviced 4 Bedroom Penthouse Type Apartment,"Safecourt Estate, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Finished Luxurious 4bedroom Semi Detached House,"Ochid Road, Ikota, Lekki Ikota Lekki Lagos",₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Flat For Sale,Off Ajiran Road Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury Furnished 4 Bedroom Fully Detached Duplex,"Berra Estate, Chevron Drive Chevron Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex With Bq,"Mario Ama Close, Off Ben Chi Onudo Street, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached House,Lafiaji Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Well Finished And Exquisitely Built 5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Super Classy Brand New 4 Bedroom Fully Semi Detached Duplex,Chevron Axis Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New And Uniquely Finished 4 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets +An Exquisitely Built And Elegant 5 Bedroom Fully Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Northern Foreshore Estate; Chevron Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,6 baths,6 Toilets +Newly Built 5bedroom Detached House With Bq And Swimming Pool,Megamound Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Home,"Lekky County, Megamound Estate Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New And Luxuriously Finished Five (5) Bedroom Detached House,Westend Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Detached House With Bq And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Luxury Four (4) Bedroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Constructed 5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Fully Detached Luxury Duplex With 1 Room Bq Situated At Westend Estate Ikota Villa, Lekki.",Westend Estate Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate Opposite Abiola Court 10 Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached House,Behind Mobil Estate Lekki Lagos,₦,"50,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxuriously Finished 5 Bedroom Detached House,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,7 Toilets +"Brand New, Tastefully Finished 4 Bedroom Detached Duplex",Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,5 baths,6 Toilets +Fully Detached & Furnished 5 Bedroom Duplex,Ikate Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate Opposite Abiola Court 10 Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Superbly Finished 5 Bedroom Fully Detached Duplex,Lekky County Homes (megamound Estate) Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,7 Toilets +Brand New 2 Bedroom Apartments,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,1,1,2 beds,2 baths,3 Toilets +Beautiful And Well Built 5 Bedroom Detached House,"Lekky County Homes, Megamound Estate Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New And Well Located 5 Bedroom Fully Detached House,Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Designed And Finished 5 Bedroom Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Newly Built, Well Designed And Finished 5 Bedroom Terrace Duplex",Off Admiralty Way Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex With Bq,"Osapa, Eletu Estate Osapa London Lekki Lagos",₦,"60,000,000",1,1,1, beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex,Creek Avenue Court; Ikota Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisite And Beautifully Finished 6 Bedroom Detached House, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets +"Exquisitely Finished, Brand New And Nicely Located 4 Bedroom Semi Detached House",Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets +Executive 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxuriously Finished 5 Bedroom Fully Detached House,Canal View Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,7 baths,8 Toilets +Beautiful 4 Bedroom Detached Duplex,Lekky County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,6 Toilets +Magnificent And Beautiful 5 Bedroom Fully Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +Newly Built 4 Bedroom Terrace Duplex,"3, Heaven Tulip Estate, Opposite Abiola Court 10, Chevron Alternative Chevron Lekki Lagos",₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"52,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,7 baths,8 Toilets +6 Bedroom Detached Duplex With Servant Quarters,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +4000sqm Land For Sale On Admiralty Road,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +450sqm Land For Sale At Lekki Ph 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex,Idado Lekki Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +4bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +2000sqm Land For Sale On Admiralty Road,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +3bedroom Flat For Sale At Agungi,Amusa Estate Agungi Lekki Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,3 Toilets +Duplex,Herbert Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4bedroom Terrace Duplex For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0, beds, baths, Toilets +580sqm Land For Sale At Lekki Ph 1,Behind Diamond Bank Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +4bedroom Terrace Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,4 Toilets +30 Bedroom Resort Complex,Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"300,000,000",0,1,0,10 beds,10 baths,10 Toilets +Distress Sales: Luxuriously Finished 4bedroom Duplex For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Excellently Finished 5bedroom Detached Duplex For Sale,Megammond Estate Ikota Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +400sqmeter,Megamound Estate By Leeki County Homes Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,1, beds, baths, Toilets +Newly Built And Lovely 6 Units Of 3 Bedroom Flats,"7, Abioro Street, Off Kunsela Road Ikate Lekki Lagos",₦,"40,000,000",0,1,0,3 beds,3 baths,4 Toilets +750sm Bare Virgin Land Global C Of O,"Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +"Joint Ventures In Ikate Size: 3,470 Sqm Fenced",Ikate Ikate Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built State Of Art 4 Bedroom Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Ocean View Vgc Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gated Fenced Bare Land Measuring 1000sqm,Ayo Adeleye Street Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Virgin Half Plot Of Land,"Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Joint Ventures On Conservation Road Chevron Lekki Land Size: 2,200sqm",Conservation Road Chevron Lekki Lagos,₦,"180,000,000",0,1,0,0 beds,0 baths,0 Toilets +Gated Fenced Bare Land Measuring 640sqm,Ayo Adeleye Ilasan Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex In A Gated Estate And A Good Neighbourhood,Mudashiru Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Fully Detached 5bedrooms House With A Room Bq In A Secured Neighborhood, Fully Equipped Kitchen, Jacuzzi Masters, All Ensuites, Nd Lots More",Chevron Alternative Road Chevron Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +1982sqm Gated And Fenced Land,"Directly Behind World Oil, 4th Roundabout Ilasan Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2plots Together,"Kusenla Road, Ikate Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Detached Duplex In A Gated Estate In A Nice Neighbourhood,Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Westend; Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +2plots Together,Behind Oando 4th Roundabout Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Ventures In Lekki Phase 1 Land Size: 3100sqm,Behind Admirality House Lekki Phase 1 Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With All Rooms Ensuit In A Gated And Secured Environment In A Good Neighbourhood,Chevron Alternative Route Chevron Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex Mansion In A Gated Compound With Nice Finishing In A Very Nice Neighbourhood,Behind Orchid Hotel Oral Estate Lekki Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +800 Sqm By Nicon Town Lekki,Nicon Town Nicon Town Lekki Lagos,₦,"80,000,000",0,1,0,0 beds,0 baths,0 Toilets +Joint Ventures Behind Redeem Church Jakande Jakande First Gate Lekki Lagos Land Size 1500sqm,Jakande First Gate Jakande Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxurious Terrace Duplex In A Very Nice Neighbourhood,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate And Good Neighbourhood,Lekki County Homes Ikota Lekki Lagos,₦,"70,000,000",0,1,0,5 beds,5 baths,6 Toilets +"875sqm At Carlton Gate Estate, Chevron Drive, Chevron Lekki Lagos",Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace,June 4 Osapa London Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,5 Toilets +500sqm Dry Land,Behind Oando Filling Station Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom 6 Numbers Blocks Of Flats In A Gated Compound In A Good Neighbourhood,Behind Orchid Hotel Ikota Oral Estate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Lekki Phase1 Jv 4670sqm Location: African Lane,off Admirality Way Lagos",Off Admirality Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury Serviced Penthouse In A Serviced Estate By Orchid Hotel All Ensuites,fully Fitted Kitchen,glass Finishing Living Area And Lots More","Orchid Road, Chevron Chevron Lekki Lagos",₦,"37,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Luxury 3bedrooms Semi Detached Duplex All Ensuites,fitted Kitchen, Ampla Parkings, Large Masters, Double Lounge,pop Finishing, Nice Tiling And Lots More",Chevy View Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Residential Plots Of Land Fenced,"Off Admiralty Road, African Lane Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached In Gated Estate And Very Fine Neighbourhood,White Oak Estate Ologolo Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +1050sqm Dry Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Fenced Gated Land,Freedom Way Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land For Joint Venture, 2plots Together With Good Title In Ologolo Before Igbo Efon, No Premium, Open Proposal",Spg Road Ologolo Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +1000sqm Land,Behind Oando 4th Roundabout Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex In A Gated Compound In A Secured Estate,Lekki County Homes Ikota Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex In A Gated Compound In A Secured Estate And A Good Neighbourhood,Lekki County Homes Ikota Lekki Lagos,₦,"53,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex In A Nice Environment And A Good Neighbourhood,Idado Estate Idado Lekki Lagos,₦,"72,000,000",0,1,0,5 beds,5 baths,6 Toilets +Hot Jv In Lekki Phase1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom 4 Numbers Blocks Of Flats In A Gated Compound In A Good Neighbourhood All En Suites With Visitor's Toilet,Behind Orchid Hotel Ikota Oral Estate Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached With All Rooms Ensuit In A Gated And Secured Environment In A Goodand Friendly Neighbourhood,Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"105,000,000",0,1,0,5 beds,5 baths,6 Toilets +Standard Full Plot Of Land,"Ilasan Road, Behind World Oil, 4th Roundabout Ikate Lekki Lagos",₦,"35,000,000",0,0,0,1 beds,0 baths,0 Toilets +Newly Well Built Luxury Semi Detached Duplex,By Chevron Alternative Route Conservative Chevron Lekki Lagos,₦,"48,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Luxury 4bedrooms Serviced Terrace Duplex All Ensuites,fitted Kitchen, Ampla Parkings, Large Masters, Double Lounge,pop Finishing, Nice Tiling And Lots More","By Orchid Hotel, Chevron Right Side Chevron Lekki Lagos",₦,"37,000,000",1,1,0,4 beds,4 baths,5 Toilets +Hot Land For Sale At Ibeju Lekki Opp Dangote Refinery 100 Acres,Km 23 Opp Dangote Refinery Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Units Of 5 Bedroom Semi Detached On 740 Sqm Land..,Dauda Fasanya Street Off Primewater View Garden Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,1,0,5 beds,4 baths,5 Toilets +Hampton Lake Estate,Chevron Alternative Road Chevron Lekki Lagos,₦,"110,000",1,1,0, beds, baths, Toilets +15 Plots Of Land In A Cozy Enverolment Of Lekki Phase 2 By Orchid Road Elengazia,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"24,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With A Room Bq,"Madam Juliana Okoye Close, Chevron Alternative Road, Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +C Of O,"G.r.a Abijo Lekki, Lagos 2 Minutes Drive From Lekki Express Way Lekki Lagos",₦,"13,500,000",0,0,0, beds, baths, Toilets +Plots Of Land In A Developed And Serene Neighbourhood,Ogombo Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Newly Built 5bedroom Semi Detached Duplexes For Purchase.,"Off Orchid Road, Chevron Lekki Lagos",₦,"53,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Megamond Estate Ikota Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Swimming Pool,Megamond Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Govt Consent,Megamond Chevron Lekki Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",1,1,0,4 beds,4 baths,5 Toilets +Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"59,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex For Sale In Ikota,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Behind Worldoil Ilasan Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +Newly Built Four Bedroom Duplex For Sale,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex For Sale,Chevy View Estate Igbo Efon Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Units Of 4 Bedroom Terrace Duplex,"(atlantic View Estate) ,b4 Chervon Lekki, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"A Landed Property Measuring About 2.95 Hectares,located In Lekki Scheme Ii",Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"725,000,000",0,0,0, beds, baths, Toilets +Newly Built 2 Units Of 2 Bedroom Flats,"7, Abioro Street, Off Kunsela Road Ikate Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex," oba Ogbagba Close, Lekki Phase 1 Lekki Lagos",₦,"126,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3 Bedroom Duplex+bq, For Sale At Oral Estate, Lekki,lagos",. Chevron Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,4 baths,5 Toilets +Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +Fully Serviced 8units Of 4 Bedrooms And 2 Big Living Rooms Plus One Maid Room Terrace With Swimming Pool And Kiddies Corner In Madiba Estate Ikate. 75m Per Unit. 24 Hours Light.,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat," west End Estate, Ikota Villa Estate, Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,0 Toilets +Hotel / Guest House," oriwu Street, Lekki Phase 1 Lekki Lagos",₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," chevron Alternative Route, Chevy View Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +1001.251sqm Land,Pinnock Estate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Prime Water View Estate Lekki Lagos,₦,"120,000,000",1,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale," ologolo, Lekki, Lagos Lekki Lagos",₦,"51,000,000",0,0,0,4 beds,5 baths,5 Toilets +Spacious 3 Bedroom Flat,Victory Park Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +New 5 Bedroom Detached House @ Megamord Estate Lekki County,Megamord Estate Lekki County Osapa London Lekki Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," @ Idado Estate , Before Chevron Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Residential Land," gracias Emerald Abijo , Lekki Epe Express Way Lekki Lagos",₦,"4,300,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 4 Nos 3 Bedroom Flat,University View Estate Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +Commercial Land For Sale," opposite Eti Osa Local Govt Office, Before Chevron Roundabout, Lekki Expressway, Lekki, Lagos Chevron Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat (first Floor),Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale," ikota Villa Estate, Lekki, Lagos Lekki Lagos",₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale," osapa, Lekki, Lagos Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," megamound Estate, Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat For Sale," kunsula Road, Ikate Elegushi, Lekki, Lagos Lekki Lagos",₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Self Contained (single Rooms) For Rent," road 22, Ikota Villa Estate, Lekki, Lagos Lekki Lagos",₦,"400,000",0,0,0,1 beds,1 baths,1 Toilets +4 Bedroom Semi Detached Duplex For Sale," jide Agbalaya Street, Chevy View Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land For Sale," royal Gardens Estate, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," beta Estate, Chevy View Estate, Lekki, Lagos Lekki Lagos",₦,"199,999,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land For Sale," 5plots From Express Abijoh, Abijo, Lekki, Lagos Lekki Lagos",₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale," before Chevron, Idado, Lekki, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +"New 5 Bedroom Duplex + Bq For Sale In Chevron, Lekki, Lagos",. Chevron Lekki Lagos,₦,"88,000,000",0,1,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex For Sale," lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detatched Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",1,0,0,4 beds,0 baths,0 Toilets +Beautiful 14 Units Of 4 Bedroom Terrace House,Ikota Estate Ikota Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Office Space Commercial Property,Chevron Chevron Lekki Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets +Enchanting 5 Bedroom Duplex With A Work Of Art,Orchid Road Chevron Lekki Lagos,₦,"97,000,000",0,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Detached House,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Charming Cottage 5 Bedroom Duplex With Majestic Interior,Lekki County Ikota Lekki Lagos,₦,"115,000,000",0,1,1,5 beds,6 baths,6 Toilets +Beachfront Plots Of Land,Atlantic View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +New 4no.4 Bedroom Wing Of Semidetached House + Bq,"Spring Bay Estate, Ikate, Lekki Phase1 Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,1,0,4 beds,4 baths,4 Toilets +Office Space, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 5 Bedroom House + Boys Quarter,"Spring Bay Estate, Ikate, Lekki Phase1 Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,Very Close To Court Of Arbitration . Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificient Mediterranean 4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"63,000,000",1,1,1,4 beds,5 baths,5 Toilets +Land (lexington Garden With C Of O),Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Land,"Imperial Drive, Lekki Lagos",₦,"10,450,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 5 Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,"Bera Estate, Chevy View Estate, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Gorgeous 4 Bedroom Detached Duplex,. Ologolo Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Luxury Built 4 Bedroom Fully Detached + Bq For Sale At Ikate, Lekki",Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Chevyview Estate Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury Built 5 Bedroom Fully Detached + Bq For Sale At Ikate, Lekki",Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,6 Toilets +A Beautiful Four Bedroom Fully Detached Duplex,"Bricks Court, Lekki Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Constructed Luxury 5 Bedroom Fully Detached Duplex,"Ologolo Area, Lekki Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 3 Bedroom Apartment In Lekki,. Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Penthouse,"Silicon Vale Estate, Ologolo Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Fully Detached Duplex,"Chevron Drive, Alternative Route, Lekki Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Furnished 5 Bedrooms Detached House + Bq, Chevron Lekki Lagos,₦,"90,000,000",0,1,1,5 beds,5 baths,6 Toilets +Residential Land For Sale," gracias Emerald Abijo , Lekki Epe Express Way Lekki Lagos",₦,"4,300,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale," canal West Estate., Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,3 baths,4 Toilets +(2)*brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq In Daniel's Garden Lekki . Pay And Pack In.*,Oshapa London Agungi Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale," beta Estate, Chevy View Estate, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"199,999,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat For Sale," canal West Estate., Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"23,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terraced Duplex For Sale," close To The 2nd Lekki Toll Gate, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale," chevron Drive Opposite Chevron Lekki Office, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"89,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedrooms Terrace Duplex,"Opp Chevron, Lekki Chevron Lekki Lagos",₦,"40,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Off Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Luxury 5 Bedroom Fully Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Detached House With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat + Bq, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,1,0,2 beds,0 baths,0 Toilets +New 2 Bedroom Flat,Lekki Right Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,0 baths,0 Toilets +Block Of 4 Nos Of 3 Bedroom Flat,Off Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,4 baths,4 Toilets +2 Bedroom Flat,"Alma Beach Estate, Ikate Lekki Lagos",₦,"39,000,000",0,1,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House + Bq, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +800sqm At Cowrie Creeek Estate Ikate Lekki Lgaos,Cowrie Creek Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5bed Room Detached House With Fitted Kitchen And Bq At Megamould Estate Ikota,Mega Mould Eatate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plot Of Land Measuring 800sqm,Off Kusunla Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Four Bedroom Terrace Duplex At Ikate,Elegushi Ikate Lekki Lagos,₦,"78,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Semi Detached Duplex,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Residentail / Commercial 6nos 3bed Room Flat With Bq In Lekki Phase One,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Ikate Elegushi Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq, Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + Bq, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plot Of Land Measuring 680sqm At Ologolo Lekki Lagos,Ologolo Lekki Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex + Bq, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex At Ikate,"Still Water Estate, Ikate Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Renovated 5 Bedroom Detached House,Bera Estate Chevron Drive Chevron Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Maisonette With A Room Bq, Jakande Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat With A Room Bq,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,  Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," abijo, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,7 baths,6 Toilets +4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"41,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Terraced Duplex," chevron Drive, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex," chevron Drive, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Residential Land," twin Lake Chevron, Chevy View Estate, Lekki Lagos",₦,"265,000,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted 3 Bedrooms Bungalow,Sapphire Garden Estate Lekki Lagos,₦,"23,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Wing Of Duplex With 2 Flats House, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Africa Lane Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms Detached House,Pinnock Beach Estate Lekki Lagos,₦,"160,000,000",0,1,0,5 beds,0 baths,0 Toilets +4 Nos Of 4 Bedroom Townhouses,Admiralty Way Lekki Lagos,₦,"750,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fairly New 3 Bedroom Flat + Bq,Otunba Olufeko Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +1300 Sqm Bare Fenced And Gated Land,"Freedom Way, Osapa London Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +1.317 Hectares Land,Lekki Garden Estate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1.317 Hectares Land, Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Deposit N1,000,000 And Get Instant Allocation At Iland Properties Inside Beechwood Estate, Shepati Lekki","Beechwood Estate, Shepati Lekki Ikate Lekki Lagos",₦,"6,500,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"By Nike Gallery, Lekki Phase 1 Rhs. Lekki Phase 1 Lekki Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets +3 Bedrooms Terrace Duplex,Lekki Garden Estate Phase 4 Lekki Phase 1 Lekki Lagos,₦,"32,000,000",1,1,0, beds, baths, Toilets +5 Bedroom Duplexes,"Ocean Bay Estate, Orchid Hotel Road By Chevron Chevron Lekki Lagos",₦,"75,000,000",1,1,0,5 beds,5 baths, Toilets +Land, Agungi Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shopping Mall,"20,baale Street Igbo Efon,lekki Lagos Igbo Efon Lekki Lagos",₦,"12,500,000",1,1,1, beds,1 baths,1 Toilets +Shopping Plaza,"No1,agungi Close To Domino Pizza,lekki,lagos Agungi Lekki Lagos",₦,"12,500,000",1,1,1, beds, baths, Toilets +An Executively Finished Four Bedrooms Terraces Apartment Within A Service Estate Bourdilion Court.lekki.lagos,Bourdilion Court Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House," after Chevron Toll Gate, Ikota, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom House, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex," lake View Park 2, Lafiaji, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House," creek Avenue Court Phase 2 , Ikota Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +3 Bedroom House," oribanwa,lekki Peninsula,(before Awoyaya), Lekki Lagos",₦,"11,950,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," buena Vista Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex," close To Lekki 2nd Toll Gate By Chevron, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex," orchid Road, Lafiaji, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex," palace Road Ikate Eleguishi Lekki, Ikate Elegushi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex, Nicon Town Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +Two Numbers Of Five Bedrooms Duplex,Lekki Ikate Lekki Lagos,₦,"90,000,000",1,1,1,5 beds,6 baths,6 Toilets +3 Bedrooms Apartment Exquisitely Finished And Ready For Occupation At The View,The View Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,5 baths,5 Toilets +Commercial Land, directly Facing Express Opposite Osapa London Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," by Charlesdony Schools, Abijo Gra, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," chevron Axis, Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron Environs, Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land," maroko, Lekki Phase 1 Lekki Lagos",₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," ikota Gra Road, Ikota Villa Estate, Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex," creek Avenue, Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," abijo Gra, Behind Chalcedony School, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex," chevron Drive, Lekki Phase 2 Lekki Lagos",₦,"98,000,000",0,0,0,6 beds,8 baths,8 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedrooms Detached House,Bera Estate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," orchid Estate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," buene Vista Estate By Chevron Toll Gate By Orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets +Residential Land," ibeju Agbe Town, Lekki Expressway, Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," megamound Avenue, Lekki County Homes., Ikota Villa Estate, Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly 5 Bedroom Duplex With Bq All Ensuite In A Serene And Beautiful Estate,Megamound Estate Lekki County Ikota Ikota Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"95,000,000",1,1,1,5 beds,5 baths,5 Toilets +Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Mini Flat," oceanbay Estate, Lafiaji, Lekki Lagos",₦,"16,000,000",0,0,0,0 beds,0 baths,2 Toilets +"1,750m2 Land",Sikiru Ayinde Oloko Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Hectares (3.993 Hectares) Of Fenced Land,Maiyegun Lekki Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mixed Use Land," chevron Via Orchid Hotel Road And Is Opposite Shell Estate(coplag Garden), Chevy View Estate, Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," pinnock, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,  Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 2 Units Of 4 Bedrooms Detached House, Lekki Phase 2 Lekki Lagos,₦,"2,500,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +30 Units Of Newly Built Shops, Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land For Sale In Lekki,. Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +Luxury Finished Five Bedroom Detached House With A Room Bq,Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Furnished Five Bedroom Detached House,Prince Ibrahim Eletu Drive Osapa London Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,5 baths,6 Toilets +Luxury Finished Three Bedroom Flat,Off Kafayat Abdulrazak Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Finished Five Bedroom Terrace With A Room Staff Quarters,"Off Petrocham Road, Lekki,phase One Right Lekki Phase 1 Lekki Lagos",₦,"90,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Terrace With A Room Staff Quarters,Off Fola Osibo Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets +Newly Built Four Bedroom Terrace Duplex With A Room Staff Quarters,"Off Circle Mall Road, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Finished Four Bedroom Terrace With A Room Staff Quarters.,"Off Durrossimi Etti Drive, Lekki Phase One. Lekki Phase 1 Lekki Lagos",₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,After Toll Gate Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds, baths, Toilets +Newly Built Contemporary 5 Bedroom Duplex In An Amazing Neighbourhood,"Richmond Estate, Off Meadow Hall Way, Ikate Lekki Ikate Lekki Lagos",₦,"149,000,000",0,1,1,5 beds,6 baths,7 Toilets +Land For Sale At Durosimi Eeti Lekki Phase One,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring 2200sqm On Spg Road,agungi.lekki..",Spg Road Agungi Lekki Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Flat,37 Toyin Street Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built 4bedroom Flat,Beside Waterboard Lekki Phase 1 Lekki Lagos,₦,"300,000",0,1,0,4 beds,4 baths,4 Toilets +Own A Land In Lekki At An Awoof Price,Lekki Expressway Lekki Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets +"A Plot Of Land Measuring Fenced On Interlock Road At Oral Estate,lekki.",Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +A Super Finished Fully Detached Five Bedrooms Duplex With Two Rooms Bq On A Full Plot At Still Water Garden Estate Lekki.lagos,Still Water Garden Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land Measuring 948sqm, Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land Measuring 2000sqm,Meadow Hall School. Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Newly Built Super Finished 4bedrooms Semi Detached Duplex With Bq At Burner Vista Estate,lekki.lagos",Burner Vista Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Super Finished Five Bedrooms Detached Duplex With Bq At Lekki County Estate,lekki.lagos",Lekki County Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Plot Of Land Measuring 2500sqm Waterfront At Vgc,lagos",Vgc Vgc Lekki Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +A Super Finished 5 Bedroom Detached Duplex With Bq,Northern Foreshore Chevron Lekki Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +"A Plot Of Land Measuring 800sqm Bareland At Cowrie Creek Nlng Estate,lekki.",Cowrie Creek Nlng Ikate Lekki Lagos,₦,"95,000,000",0,0,0, beds, baths, Toilets +"A Super Finished Luxury Hotel With 32rooms At Lekki Phase I,lagos.",Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +"20units Of Semi Detached Duplex Within A Mini Estate At Ikota,lekki.lagos",Ikota Ikota Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,4 baths,3 Toilets +8000sqm Land, Ikate Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 1139sqm With C Of O At Lekki Right,lagos.",Lekki Right Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +Plots Of Land,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Four Bedrooms Semi Detached Duplex With Bq At Friends Colony Estate,lekki.",Friends Colony Estate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,5 Toilets +A Semi Detached Duplex,Eli Court Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,6 baths,6 Toilets +Exquisite 4bed Room Suplex,F Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,5 Toilets +Hectare Of Land,"On Coastal Road, Lafiaji Village With Beach Front, By Barbed Wire Bus Stop After 2nd Toll Gate Off Lekki Epe Expressway, Lekki, Lagos. Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Town House Of 3 Units 4br Duplex With Bq.,"Ibiyinka Salvador Street Off African Lane, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"16,500,000",0,0,0,4 beds,0 baths,5 Toilets +Residential Land," close 26, Mayfair Gardens Estate, Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex," lafiaji, Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Bungalow," mayfair Garden Estate, Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," orchid, Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Two Plots Of Land, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," lekki Expressway, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," ikota Gra Back Of Mega Chicken, Ikota Villa Estate Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached + Bq,Lekki Right Lekki Lagos,₦,"3,500,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets +Five Units Of Four Bedrooms Fully Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +20 Units Of Four Bedroom Terrace Duplex,Fairview Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Six Units Of 3 Bedroom Flat, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Units Of 5 Bedrooms Fully Detached Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +20 Units Of Four Bedrooms Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedrooms Terrace House, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Two Units Of Luxury Modern 5 Bedrooms Fully Detached, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Four Units Of 5 Bedroom Townhouses With One Room Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Bare Fenced Land, Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Fully Detached 4 Bedroom Duplex With Bq In Phase 2, Creek Avenue Court, Lekki",Creek Avenue Court Phase 2 Chevron Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,6 Toilets +Pay And Pack In Luxury Finished 4 Bedroom Semi Detached Duplex With Bq,Eli Court Chevron Lekki Lagos,₦,"58,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxuriously Built 20 Rooms Mansion, Lekki Phase 1 Lekki Lagos,$,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Plots Of Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Rooms Capacity Hotel,Chevy View Estate Chevron Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +45 Plots Of Land, Lekki Phase 2 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Beautiful 4 (nos) 5 Bedroom Duplexes,Oba Tijani Akinloye Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +95% Completed 4 Bedroom Detached,Bakare Estate Agungi Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 (nos) 5 Bedroom Detached House,Parlsey Road Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 (nos) 5 Bedroom Detached Houses,Parsley Road Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace With 2 Sitting Rooms,Whitesands Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 12 (nos) 4 Bedroom Terraced Houses,Adedeji Adekola Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Spectacular 5 Bedroom Detached House,Off Abeke Animashaun Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +House On 650sqm,"Peninsula Gardens Estate, Sangotedo Lekki Lekki Lagos",₦,"50,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom House, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale," off Chevron Drive, Chevy View Estate, Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land," abijo Gra, Abijo, Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," meadow Hall Way, Ilasan Lekki Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex," off Orchid Road, Lekki Expressway, Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mixed Use Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex," chervon Alternative, Lekki Phase 2 Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,6 baths,7 Toilets +Residential Land," abijo Gra, Abijo, Lekki Lagos",₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +*luxury Finished 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. Pay And Pack In,Chevron Alternative Route Chevron Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets +Mixed Use Land," lafiaji, Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Large 5 Bedrooms Semi Detached Duplexes For Sale In Ocean Bay Estate (governor's Title),"Ocean Bay Estate, Along Orchid Hotel Road, By Chevron Toll Gate, Lekki. Chevron Lekki Lagos",₦,"59,000,000",1,1,0,5 beds,5 baths,5 Toilets +Land, Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,  Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," megamound Estate, Lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Residential Land," ore Famewo/kunshenla, Ikate Elegushi, Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land," abijo Gra, Abijo, Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," conservative Chevron, Lafiaji, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," whiteoak Estate, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of 4 Nos 3 Bedroom Flat,"University View Estate, Opposite Lagos Business School, Lekki Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Femi Okunnu 2 Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex," chevron Alternative Drive, Lekki Phase 1 Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets +Residential Land," between Road 2 And 3, Water Side, Vgc Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," megamound Estate, Lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Block Of Flats," chois Estate, Abijo, Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate, Lekki Lagos",₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," richmond Gate Estate, Ikate Elegushi, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," abijo, Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"92,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex," beside Primewaters Estate, Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron, Chevy View Estate, Lekki Lagos",₦,"93,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land, Ologolo Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," orchid Road, Lafiaji, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detach House,Oba Adeyinka Oyekan Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,3 Toilets +Plots Of Land,Ikota Ikota Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +Brand New Semi Detach House, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Flat,Freedom Way Nicon Town Lekki Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxuriously Built And Furnished 4 Bedroom Semi Detached House,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 5 Bedroom Terrace House Plus Bq,Estate Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +1340m2 Land,Ikota Villa Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service 2 Bedroom Terrace Duplex,New Horizon 2 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom House,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detach House With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Semi Detached Duplex With C Of O,"New Horizon 1; Lekki Gardens, Ikate Lekki Lagos",₦,"85,000,000",1,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,"New Horizon 1, Lekki Gardens Ikate Lekki Lagos",₦,"37,000,000",1,0,1,3 beds,3 baths,3 Toilets +Luxurious 4 Bed Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Idado Lekki, Just Between Lekki Phase 1 And Ikate) Lekki Phase 1 Lekki Lagos",₦,"58,000,000",1,0,1,4 beds,4 baths,5 Toilets +"4 Bedroom Newly Built, Semi Detached House","Ologolo Drive , Jakande Lekki Lagos, Lekki Ologolo Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Parkhust Luxury Apartments,Alma Beach Estate Ikate Lekki Lagos,₦,"95,000,000",0,0,1,4 beds,0 baths,0 Toilets +Lands,Gracias Court And Residences Ikota Lekki Lagos,₦,"7,000,000",0,1,0,0 beds,0 baths,0 Toilets +"Land At Southern Green Estate, Lafiaji, Lekki","Located By The 2nd Tollgate; Chevron Axis Off Orchid Hotel Road, Lafiaji, Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,1,1,0 beds,0 baths,0 Toilets +Land,"Lekki Scheme Ii, Okun Ajah, Off Ogombo Road By Abraham Adesanya Roundabout. Eti Osa Lga, Lagos. Vgc Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Northville Estate,Bogije Lekki Lagos,₦,"9,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Road 6 Ikota Lekki Lagos,₦,"61,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Functional 5 Star Hotel, Lekki Phase 1 Lekki Lagos,$,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,  Nicon Town Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," along Orchid Road, Immediately After Lekki 2nd Toll Gate, Lafiaji, Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," ikate Elegushi, Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," by Chevron, Lekki Expressway, Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets +"6,010.424 Sqm Land",Lekki Peninsula Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," oral Estate, Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +900 Square Meters Land,Block 25 Plot 31 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Meters Land,Off Ayoola Makanjuola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," megamound Estate, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex," oral Estate Lekki, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,7 Toilets +"1,292 Sqm Land",Block 69 Plot 40 Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +961.971 Sqm Land,Lanre Ojo Drive. Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +846.822 Sqm Land,Block 91 Plot 4 Lekki Phase 2 Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +958 Sqm Land,Block 82 Plot 13 Off Engineer Kola Ajibola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," freedom Way By Cis School, Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," beside Nicon Town 2 Off Lekki Expressway, Abijo, Lekki Lagos",₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land For Sale," beside Nicon Town 2 Off Lekki Expressway, Abijo, Lekki Lagos",₦,"12,500,000",0,0,0,0 beds,0 baths,0 Toilets +570 Sqm Land, Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Governor's Consent,"Chevron, Drive Chevron Lekki Lagos",₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached,Buena Vista Estate Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Close To Macopolo Hotel Chevy View Chevron Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Grand Court, Lekki, Lagos.","Lekki Expressway, Behind Lekki Conservation Centre, Lagos. Lekki Phase 1 Lekki Lagos",₦,"48,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House Plus 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Units Of 5 Bedroom Houses With 3 Living Rooms, A Study, A Swimming Pool, Gym On 2000 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"188,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Bungalow,Chevron And Okota Villa Vgc Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 5 Bedroom Detached Houses With 2 Rooms Bq In Ajah,Royal Gardens Estate Vgc Lekki Lagos,₦,"148,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House And A Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Storey Building Of 7 Bedroom Duplex With A Bq,Buckingham Court Chevy View Chevron Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Bedroom Terrace Duplex (off Plan) Clustered Units,Sugarland Luxury Estate Vgc Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex For Sale,Heritage Place Estate Lekki Lagos,₦,"170,000,000",0,0,1,5 beds,5 baths, Toilets +Governor's Consent,On The Major Street Oral Estate Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +C Of O,"Chevron Drive,ikota Lekki Chevron Lekki Lagos",₦,"54,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex," chevy View Estate, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," bera Estate By Chevron Drive, Chevy View Estate, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," ikate Elegushi, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," ikate Elegushi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land, Lekki Phase 2 Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex," esther Adeleke, Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat," eko Pearl Towers, Eko Atlantic City, Lekki Lagos",₦,"670,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"96,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex," peninsular Gardens Estate Ajah, Lekki Expressway, Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex," chevron, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Lekki Expressway, Chevron Lekki Lagos",₦,"48,500,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," green Brooks Estate (high Court Judgement), Abijo, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Alternative Route Chevron Lekki Lagos,₦,"110,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," chevron, Lekki Expressway, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," lafiaji, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex F," chevron, Lekki Expressway, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevron Toll, Lekki Expressway, Lekki Lagos",₦,"48,500,000",0,0,0,4 beds,0 baths,5 Toilets +4 Bedroom Terraced Duplex, Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex," in An Estate Off Amadasun Street, Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," amadasun Street, Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," ilasan By World Oil, Lekki Lagos",₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Land," opposite Ikota Shopping Complex, Lekki Expressway, Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Gra Ikota Lekki Lagos,₦,"37,000,000",0,0,0, beds, baths, Toilets +Residential Land, Nicon Town Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," chevyview Estate Lekki, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevyview Estate Lekki, Chevy View Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex," chevyview Estate By Chevron Head Office Lekki, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached Duplex," osapa London Street, Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex," atican Beach Estate Off Abraham Adesanya, Lekki Phase 2 Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,Ikota Gra Ikota Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,5 baths,5 Toilets +Fully Detached Duplex For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",1,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Apartment + 1 Bed Bq (furnished),Safecourts Apartments Nicon Town Lekki Lagos,₦,"70,000,000",1,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New 5bedroom Duplex At Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace House With Bq (on Going Construction), Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 2 Unit Of 4 Bedroom Semi Detached Duplex,Kinnock Beach Jakande Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Semi Detached With Bq @ Lafiaji,Lafiaji Agungi Lekki Lagos,₦,"52,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House,After The 2nd Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Lekki Gardens, Olokonla, Lekki, Lagos. Lekki Lagos",₦,"28,000,000",0,1,0,4 beds,4 baths,4 Toilets +Super 4 Bedroom Terrace House, Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace House With Bq,Elegushi Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5bedroom Fully Detached Duplex With A Room Bq @ Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +Four(4) Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"49,900,000",0,0,0,4 beds,4 baths,5 Toilets +Terrace Duplex,"Abiola Court 10, Chevron Alternative Route, Lekki, Lagos. Chevron Lekki Lagos",₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,0 baths,0 Toilets +5bedroom Detached Duplex With A Room Bq At Lekki,Not Necessarily Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,1,5 beds,5 baths,5 Toilets +Richly Finished 4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached @ Banana Island,Banana Island Lekki Lagos,₦,"700,000,000",0,1,0,5 beds,5 baths,5 Toilets +Hotel,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Exclusively Finished 6 Bedroom Canadian Style Luxury Mansion, Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,6 baths,6 Toilets +New And Exquisite 4 Bedroom Semidetached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Serviced Terrace House, Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Megamond Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Osapa Gra Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,3 Toilets +4 Bedroom Terrace House,After The 2nd Toll Gate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 2 Units Of 5 Bedroom Detached Duplex With Smart Features,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq At Buena Vista Lekki,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built 2bedroom Flat With A Bq For Sale,Secure And Serviced Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",1,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace House With Bq, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Distress Sale: 2 Bedroom Bungalow With A Guest House,"South Pointe, Estate Orchid Hotel Road By Chevron Head Office Lafiaji Lekki. Chevron Lekki Lagos",₦,"25,000,000",0,0,1,2 beds,3 baths,3 Toilets +3bedroom Terrace Duplex In New County Estate In Lekki For Sale,New County Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,2 baths,2 Toilets +Five Bedrooms Mansion At Carlton Gate With 2 Rooms Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"450,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex," pinnock Beach Estate, Osapa London Lekki Lagos",₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House," ikate Elegushi, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," pinnock Beach Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +Mixed Use Land," lekki Epe Express Way, Vgc Lekki Lagos",₦,"250,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex Joint Venture, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," lekki Expressway, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +House For Sale At Lekki Phase 1,"Lekki Phase 1,freedom Way Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Terraced Duplex For Sale," alpha Beach Road, Igbo Efon Lekki Lagos",₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Corner Piece Land,Off Fatai Arobieke Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land For Sale In A Built Up Estate And A Serene Environment,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",1,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex," chevron Orchild Hotel Road, Chevy View Estate, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Event Hall For Sale In Lekki,Lekki Epe Express Road Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0, beds,6 baths,6 Toilets +5 Bedroom Duplex,Aluko Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Semi Detached Duplex," ginza Hills Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," ginza Hills Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lekki Vale Estate,Bolorunpelu Opposite The New Lekki International Airport Ibeju Lekki Lagos. Chevron Lekki Lagos,₦,"5,500,000",0,1,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex," orchid Hotel Road, Chevy View Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex," atlantic View Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex," orchid Road,chevron Tollgate, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land," link To Agungi, Osapa London Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," chevron Alternative Route, Chevy View Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Detached Bungalow," off Igbo Efon Road, Igbo Efon, Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat," 3rd Roundabout By Nike Art Gallery, Ikate Elegushi, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Cowrie Estate, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevy View Estate By Chevron Drive, Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,0 baths,0 Toilets +Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,7 baths,6 Toilets +5 Bedroom House," off Chief Street, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat," off Orchid Road, By Chevron Toll Gate, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,0 baths,4 Toilets +4 Bedroom House, Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," abijo Gra By Chalcedony School, Abijo, Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," chevron Road Lekki Lagos., Chevy View Estate, Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Governers Consent,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,1,0,4 beds,4 baths,5 Toilets +Finished 2no Units Of 4 Bedroom Semi Detached Houses,"Willow Greens Street, Osapa London, Lagos Osapa London Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,"Ifiok Ojuolape Street, Osapa London Osapa London Lekki Lagos",₦,"100,000,000",0,1,1,5 beds,5 baths,5 Toilets +6000sqms Land @ Lekki Phase1,Lekki 3rd Roundabout Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +A Distress Blocks Of Flat For Sale,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"320,000,000",1,0,1,10 beds,10 baths,10 Toilets +Fantastically Finished 5 Bedroom Detached House With Modern Facilities,"Willow Greens Street, Osapa London, Lagos Osapa London Lekki Lagos",₦,"60,000,000",0,1,0,5 beds,5 baths,5 Toilets +Tastefully Furnished 4 Bedroom Fully Detached Duplex,Before Agungi Osapa London Lekki Lagos,₦,"49,000,000",1,1,0,4 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Fully Detached Duplex,Chevy View Estate Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,3 Toilets +Sageville Estate Burtons Homes,"Lekki Right, Elegushi Beach Road, Down Nike Art Gallery Road, Ikate, Lekki, Lagos Ikate Lekki Lagos",₦,"80,000,000",1,1,1,4 beds,4 baths,5 Toilets +Detached Duplex With Bq,2nd Toll Gate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Detached Duplex With Bq,Lekki Lagos Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex," skc Court Estate Orchid Lekki, Ikota Villa Estate, Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," signature Estate Chevron Alternative, Chevy View Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate Lekki, Ikota Villa Estate, Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," ikota Villa Estate, Ikota Villa Estate, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom House, Lekki Lagos,₦,"17,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ilasan Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, Ilasan Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," orchid Road, Lekki Expressway, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,5 Toilets +5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Hotel / Guest House," lekki Vi, Lekki Expressway, Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel / Guest House," chevy Estate, Lagos, Chevy View Estate, Lekki Lagos",₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"280,000,000",0,0,0,8 beds,9 baths,9 Toilets +6 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"190,000,000",0,0,0,6 beds,7 baths,7 Toilets +A Plot Of Land For Sale,Chevron Chevron Lekki Lagos,₦,"70,000,000",0,0,0, beds, baths, Toilets +A 6 Bedroom Mansion For Sale Urgently.,Chevron Chevron Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,6 Toilets +5bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Cofo,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,5 Toilets +C Of O,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached House + 2 Rooms Bq,Banana Island Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,5 beds,0 baths,0 Toilets +Partly Furnished 4 Bedroom Semi Detached House,Off Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury Units Of 3br Flat,Off Ebun Ojo Street Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Duplex,Lekki Ikota Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +Land,Beside Vgc Off Lekki/ajah Expressway Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex,By Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Jv Land,Off Kusenla Road Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Lovely 6units Of 3bedroom Flat,Off Shop Rite Road Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lands For Jv,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cozy 3 Bedroom Terrace Duplex With Service Quarters.,"Daniel's Court, Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Ultra Modern 4 Bedroom Duplex With Indoor Pool,Tunji Street Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Superbly Finished 4 Bedroom Terrace Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"49,000,000",0,0,0, beds, baths, Toilets +Exquisite 4 Bedroom Semidetached Duplex,"2nd Tollgate, Opposite Chevron Lekki Phase 2 Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," lekki County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,"Chevy View, Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom Fully Detached Duplex,"Lekki County Homes, Rd 3 Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,6 baths,5 Toilets +2 Bedroom Flat,"Ikota Villa Estate, Road 32 Ikota Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Splendid 4 Bedroom Semi Detached Duplex,Eletu Road; Osapa London Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,5 baths,4 Toilets +Massive 4 Bedroom Semi Detached Duplex,Southern View Estate Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellent 3 Bed Flat With Bq And 24/7 Power,Off Kusenla Road Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5bed Room Fully Detached Home Just Off Fola Osibo,Babajide Babatope Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,1,0,5 beds,5 baths,6 Toilets +Ultra Luxury 5 Bedroom Fully Detached Duplex,Bamidele Eletu Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Miniflat With Pool And Gym,"Ikota Villa Estate, Road 32 Ikota Lekki Lagos",₦,"16,000,000",0,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex,Carlton Estate Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex With An Indoor Pool,Bakare Estate Off Chevron Drive; Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,5 Toilets +Contemporary 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,"Pinnock Estate, A Secured Uacn Developed Estate, Close To Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +Classy 4 Bedroom Fully Detached Duplex,Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +Contemporary 5 Bedroom Fully Detached Duplex With Modern Facilities And Pristine Views.,Lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex With 2rooms Attached Bq,"Road 55, Vgc V.g.c Lekki Lagos",₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Van Daniels Street 7th Roundabout Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Detached Duplex, bamidele Eletu Street Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Duplex,"Pinnock Estate, Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New Serviced 4 Bedroom Semi Detached Duplex With Bq,Victoria Crest 3 Off Orchid Hotel; Lekki Phase 2 Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,5 baths,5 Toilets +Massive 5 Bedroom Fully Detached Duplex With Excellent Facilities,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,"Africa Lane, Off Admiralty Road, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex In A Serviced Estate,Off Orchid Hotel Road; Chevron Lekki Lagos,₦,"36,000,000",1,0,0,4 beds,4 baths,5 Toilets +C Of O,Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex, orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Detached Duplex," chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Modern 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New And Fully Fitted 4 Bedroom Terrace Duplex,Van Daniels Street Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,4 Toilets +3 Bedroom Duplex,"Block 13, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom And 4bedroom Duplexes,Ologolo Road Ologolo Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 3 Bedroom Detached Duplex With Bq,"Safe Courts Estate, Nicon Town Lekki Lagos",₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex," lekki County Homes, Ikota Villa Estate; Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, lekki County Homes Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Luxury Exquisitely Built Elegant 5bedroom Semi Detached Duplex With Swimming Pool,gymnasium ,meeting Hall",Circle Mail Road Osapa London Lekki Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Residential Land," cowrie Creek Estate, Ikate Elegushi, Lekki Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite Bullet Proof Mansion For Sale In Lekki,"Carlton Gate, Estate Chevron Lekki Lagos",₦,"450,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," orchid Hotel Road By Chevron Toll Gate, Lekki Expressway, Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex," richmond Gate Estate., Ikate Elegushi, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,  Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," orchid Hotel Road 2nd Toll Plaza, Lekki Expressway, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," orchid Hotel Road, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Governor's Consent,Road 35 Vgc Lekki Lagos,₦,"180,000,000",0,1,0,6 beds,9 baths,9 Toilets +Brand New Luxury Serviced 4 Bedroom Terrace For Sale In A Very Good And Accessible Location,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex," orchid Hotel Road, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale At Abijo,4th Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +Excision,"Enukunmi Village, Off Eleko Beach Road, Lagos Vgc Lekki Lagos",₦,"3,000,000",0,1,0, beds, baths, Toilets +Semi Detached Duplex,By 2nd Toll Gate Lekki Chevron Lekki Lagos,₦,"43,000,000",0,1,0,4 beds, baths, Toilets +2 Bedroom Flat,"Chois Garden, Abijo Gra Lekki Lagos",₦,"15,400,000",0,0,0,2 beds, baths, Toilets +5bedroom For Sale With Bq,"Prince Kazeem Street,osapa London Lekki Osapa London Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Executive 4 Bed Room Semi Detached Duplex,Creek Avenue Court Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,6 Toilets +Luxury Estates In Lekki (let's Form A Thread),Nike Arts Gallery Road Ikate Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Buy And Build, 15 Geniue Plots Of Land In Lekki Phase 2 Selling 25m Per Plot.",Eleganza Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,1,0, beds, baths, Toilets +5bedroom Semi Duplex With Bq,Lfek Street Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Apartment With Bq,Runabout At Lkata Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"48,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Duplex Detached House,Lekki County Homes Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths, Toilets +707m2,Off Domino Pizza Ologolo Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +A State Of The Art 3 Bedroom Terrace.,Off Orchid Road. Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths, Toilets +Luxury 4 Bedroom Duplex For Sale At Lekki,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,4 baths,5 Toilets +Land,Chevron Alternative Chevron Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom House,Plot 33. Off Orchid Road. Lekki Chevron Lekki Lagos,₦,"35,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex For Sale,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",1,1,0,4 beds,4 baths,4 Toilets +Cornerpiece Land Ideal For Residential Develoment. For Sale.,Off Orchid Rd. Lafiaji. Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Maisonette Located In Ocean Bay Estate, Lekki","Ocean Bay Estate, Orchid Hotel Road Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Penthouse With Bq,"Ocean Bay Estate, Lekki Phase 2 Lekki Lagos",₦,"44,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bed Room Terrace With Boys Quarter Located At Romany Garden,Romany Garden Ilasan Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +"2 Bedroom Luxury Apartment Located In Ocean Bay Estate, Lekki","Ocean Bay Estate, Orchid Road Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Land For Sale.,Lafiaji Chevron Lekki Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Plots Of Land,Vintage Park 1 Behind Toyota Office Ikate Lekki Lagos,₦,"140,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Toyota Office Ikate Lekki Lagos Ikate Lekki Lagos,₦,"84,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Behind Femi Okunnu Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Governor's Consent,Off Chevron Drive Chevron Lekki Lagos,₦,"70,000",0,1,0,5 beds, baths,6 Toilets +Gosford Castle,Osapa London Lekki Lagos,$,"656,452",0,0,1,10 beds,10 baths,10 Toilets +6 Bedroom Detached Duplex Plus 3room Bq,Alternative Route Chevron Lekki Lagos,₦,"135,000,000",0,1,0,6 beds,6 baths,6 Toilets +Furnished Four Bedroom Duplex For Sale,Ochid Road Lekki Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,6 Toilets +A Modern And Luxury 5bedroom Duplex In A Well Serene Environment,Elegushi Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,1,5 beds,5 baths,5 Toilets +Beautifully Fiished 4 Bedroom Semi Duplex + Bq In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Terrace House,Lafiaji Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Detached House + Bq, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedroom Detached Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House In Megamound,Megamound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Serviced 4 Bedroom Semi Detached Duplex + Bq In Osapa London,Alpherton Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisite 5 Bedroom Detached House In Megamound,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Edifice + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 4 Bedroom Fully Detached Duplex + Bq, Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached Exquisite 5 Bedroom Duplex + Bq,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +423sqm Land,Ologolo Ologolo Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +573sqm Land At Lekki Right, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury And Fantastic Finished 5bedroom Fully Detached Duplex With Swimming Pool, On 650sqm.secure And Gated Environment",Idado Idado Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Very Luxury And Excellent Finished 5 Bedroom Duplex With Bq, Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex With Bq And 4 Number Of 3 Bedroom Flat.on 1190sqm,Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Very Beautiful And Well Finished 4 Bedroom Terrace Duplex With Bq.secure And Gated Environment.,Osapa Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury And Fantastic Finished 5 Bedroom Fully Detached Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +"520sqm Of Land For Sale At Pinnock Beach Estate,lekki Lagos","Pinnock Beach Estate,lekki Osapa London Lekki Lagos",₦,"80,000,000",0,0,0, beds, baths, Toilets +For Sale:incompleted 12 Numbers Of 4bedroom Terrace Duplex With Bq At Osapa London,Osapa Osapa London Lekki Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Luxury And Superb Finished 4bedroom Terrace Duplex With Bq.royal Garden Estate Ajah,Royal Garden Estate Ajah Vgc Lekki Lagos,₦,"56,000,000",0,1,0,4 beds,4 baths,5 Toilets +Very Luxury And Superb Finished 5bedroom Fully Detached Duplex With Bq And Swimming Pool At Victory Park Estate,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale 450sqm In Victory Park Estate.lekki Lagos,Victory Park Estate Osapa London Lekki Lagos,₦,"39,000,000",0,0,0, beds, baths, Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +A Luxurious Estate In A Beautiful Atmosphare Of Lekki,Lekki Conservative Chevron Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets +"40,000sqm Land", Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0, beds, baths, Toilets +"Off Plan 4bed Terrace With Bq Beside Orchid Hotel, Lekki","Orchid Hotel Road, Lekki Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detatched House With Swimming Pool And Bq,Agungi Igbo Efon Agungi Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,5 baths,5 Toilets +One Bedroom Apartment,Dependable Drive Ikate Lekki Lagos,₦,"18,500,000",0,1,0,1 beds,1 baths,2 Toilets +Luxury 5 Bedroom Duplex,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +Apartments, Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Bareland, Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landed Property,Small Estate After Agunbiade Street. Ologolo Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Plots Of Land, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex + Bq, Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +9.5 Hectares Of Land,Akodo. Lekki Free Trade Zone Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With Bq, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Tastefully Built 5 Bedroom Classic Style Luxurious Duplex,Osapa Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex Semi Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Plots Of Land,Near The Redeemed Christian Church Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +1313887sqm Of Land For Sale At Lekki Phase 1,Itedo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Expressway Lekki Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Off Lekki Epe Expressway. Agungi Lekki Lagos,₦,"355,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Osapa London Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Orchid Hotel Road By Shell Quarters By 2nd Toll Gate Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Agungi Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq, Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With 1bq, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Agungi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Free Trade Zone Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex Wit Bq Fully Detached, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Plots Of Land,Chevron Alternative Route Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House With A Room Bq,Pinnock Beach Estate Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Governor Consent With Building Approval,Christopher Street Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +678 Sqm Of Land With Governor's Consent,Christopher Street Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Cofo,Off Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,4 Toilets +The Sapphire Penthouses,"Lekki Phase 1, 2nd Round About,lekki Epe Expressway Off Remi Olowude Street, Towards The Atlantic Coast. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",1,1,0,6 beds,6 baths,7 Toilets +New 5 Bedroom Detached House + Servant's Quarter,Spring Bay Estate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +Units Of Flats,By Jubilee Bridge Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +Distressed Sales ! 5 Bedroom Fully Detached Duplex With A Bq In Osapa London,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"77,000,000",0,0,0,5 beds,4 baths,4 Toilets +C Of O,Igbo Efon Ikota Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,4 Toilets +4bedroom Semi Detached Duplex With A Bq In Oral Estate For Sale ( Available For Inspection ),"Second Toll Gate, Lekki Oral Estate Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,3 baths,3 Toilets +Massive 5bedroom Semi Detached Apartment With 1rm Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"127,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With Bq,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Two Units Of Luxury Five(5) Bedroom Detached Houses, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Orchid Ikota Lekki Lagos,₦,"49,900,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Buene Vista Estate By Chevron Toll Gate Orchid Hotel Road. Chevron Lekki Lagos,₦,"49,900,000",0,1,1,4 beds,6 baths,6 Toilets +5bedroom Fully Detached Duplex,Osapa Street Osapa London Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +4bedroom Semi Detached Duplex For Sale In A Very Secured Estate In Agungi,Off Ajiran Road Agungi Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +Furnished 4 Bedroom Terraced Duplex For Sale,"Novojo Estate, Sangotedo A Bit After Lagos Business School Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale,Lagos Business School Lekki/epe Expressway Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets +Certificate Of Occupancy,Jide Sawyer Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Certificate Of Occupancy,Jide Sawyer Lekki Phase 1 Lekki Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House, Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +C Of O,"Directly Opp Alma Beach Besides Mercedes Benz, Image, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets +C Of O,"Directly Opposite Alma Beach Beside Mercedes Benz, Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets +C Of O,"Directly Opposite Alma Beach Beside Mercedes Benz, Ikate, Lekki Phase 1 Ikate Lekki Lagos",₦,"95,000,000",1,1,1, beds, baths, Toilets +C Of O,Directly Opposite Alma Beach Estate Beside Mercedes Benz Lekki Phase 1 Ikate Lekki Lagos,₦,"95,000,000",1,1,1, beds, baths, Toilets +4 Bedroom Maisonette Plus Bq,Amadasun Street Igbo Efon Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House, Lekki Lagos,₦,"64,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,0 baths,0 Toilets +Captivating 5bedroom Semi Detached Apartment For Sale,Main Osapa London Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,"Salem Street, Spar Road Nicon Town Lekki Lagos",₦,"79,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Plots Of Land, Chevron Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,"Megamound Estate, Lekki County Homes. Ikota Lekki Lagos",₦,"115,011,500",0,1,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached House,Abayomi Durosimi Etti Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Joint Venture,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Plots For Sale,Orchid Lafiaji Chevron Lekki Lagos,₦,"25,000,000",0,0,0, beds, baths, Toilets +Lands For Sale,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Megamond Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +C Of O,"Megamound Estate, Lekki County Homes. Ikota Lekki Lagos",₦,"115,011,500",0,1,0,5 beds,6 baths,7 Toilets +The Best Luxurious 5bedroom Apartment Within Lekki 1,Mobolaji Johnson Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,5 beds,6 baths,6 Toilets +Iconic 5bedroom Fully Detached Apartment In Pinnock Beach,Pinnock Osapa London Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"130,000,000",0,1,1,5 beds,6 baths,6 Toilets +Luxury 5bedroom Fully Detached Duplex,"Ikota, Lekki Lagos Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Gbadamosi Eletu Street Osapa London Lekki Lagos,₦,"47,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced Plots By Novare Mall In Lekki Ajah Selling For N14.28m,By Novare Mall Lekki Phase 1 Lekki Lagos,₦,"14,280,000",1,1,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Road 3 Oral Estate Lekki Lagos,₦,"55,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex With Bq,Chevy View Estate Behind Chevron Alternative Route Chevron Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly 4bedroom Semi Detached Duplex With Bq,Road4 Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5bedroom Duplex With Bq.,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex With Bq,Road2 Oral Estate Lekki Lagos,₦,"85,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Megamond Estate Lekki Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Uncompleted Hotel,"Off Lekki Express Way, Jakande, Osapa Jakande Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +900sqm² Land,"Block 83, Plot 22 Lekki Lagos",₦,"20,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Newhall Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +Available Four Bedroom Terraced Apartment,Spring Estate Drive Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Drive Chevron Lekki Lagos,₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +Contemporary Styled 4 Bedroom Town House With One Room Boy's Quarter,Gbadamosi Eletu Drive Osapa London Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikota Villa Chevron Lekki Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,"At Osapa London Lekki Lagos ,well Constructed Osapa London Lekki Lagos",₦,"65,000,000",1,1,1,5 beds,5 baths,5 Toilets +Governor's Consent,Behind Chevy View Estate Chevron Lekki Chevron Lekki Lagos,₦,"56,000,000",1,1,1,4 beds,4 baths,5 Toilets +3bed Luxury Bungalow With Bq At Divine Homes Thomas Estate Ajah Lekki.,Divine Homes Thomas Estate Ajah Lekki Lagos. Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets +Governors Consent C Of O,Beside Oba Elegushi Road Ikate Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,6 Toilets +Dry Plots Of Lands For Sale At Awoyaya Ahaj.,Behind Greenspring School Awoyaya Lekki Lekki Lagos,₦,"4,500,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex With One Bedroom Boys Quarter,Ilasan Ikate Lekki Lagos,₦,"60,000,000",1,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Olajide Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Elegushi Beach Road Ikate Lekki Lagos,₦,"90,000,000",1,1,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Duplex,Lekki Gardens Lekki Lagos,₦,"29,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Bungalow,Northern Foreshore Estate Off Chevron Drive Lekki. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Eti Osa Street Ikate Lekki Lagos,₦,"50,000,000",0,0,1,4 beds,3 baths,3 Toilets +Newly Built 4bedroom Duplex For Sale,Buene Vista By Orchid Hotel Chevron Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Luxurious 5 Bedroom Terraces In Lekki Phase 1,"Adekola Balogun Street, Off Remi Olowude Street, By Fitness Central Gym, Lekki Phase 1, Lagos State. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",1,1,0,5 beds,8 baths,8 Toilets +Four Bedroom Duplex,Jakande Jakande Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With A Pool,Chevron Ikota Lekki Lagos,₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Two Bedroom Flat,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"30,000,000",0,1,0,2 beds,2 baths,3 Toilets +Executive Four Bedroom Terrace Duplex At Lekki,"Ocean Bay Estate, Chevron Lekki Lagos",₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace Duplex,. Agungi Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Detached Five Bedroom Duplex At Lekki,"Megamound Estate, Ikota Lekki Lagos",₦,"115,000,000",0,1,0,5 beds,5 baths,6 Toilets +Four Bedroom Semi Detached Duplex At Lekki,"Orchid Hotel Road, Chevron Lekki Lagos",₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New Apartments At Lekki,. Agungi Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,3 Toilets +4bedroom Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"130,000,000",0,1,0,6 beds,5 baths,5 Toilets +4 Bedroom Detached House,Lekki Garden Ii Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached 4 Bedroom Duplex With Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrooms Bungalow,"Vgc, Lekki Vgc Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat With Bq,1st Round About Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Uncompleted 3 Units Of 4 Bedroom Terrace Duplex,"Awoyaya, Lekki Lekki Lekki Lagos",₦,"12,000,000",0,0,0,4 beds,4 baths,4 Toilets +Well Finished 4 Bedroom Terrace,Lekki Garden Estate Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,4 Toilets +2093 Sqm Land At Lekki Phase 1,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Detached Duplex,"Bera Estate, Beside Uba, Chevron Drive Chevron Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplexes,After Second Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,Vgc V.g.c Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets +Secured Plots Of Land In Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,1,2 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House For Sale,Orchard Hotel Area Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq,Creek Avenue Courts Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 4 Bedroom Semi Detached Duplex For Sale,Close Off Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,2nd Round About Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,2nd Toll Gate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Alpha Beach; Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc V.g.c Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Residential Land In A Gated Estate,"Monastry Road, Lekki Epe Express Road. Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,"Adjacent White Sand School, 2nd Roundabout Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Detached 6 Bedroom Twin Duplex With A Bq,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex,3 Mins Drive From Orchid Hotel Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3 Bedroom Flats Victoria Apartments, Pinnock Beach",Jakande Jakande Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With 1 Maid Room,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +East Amber Lands,Abijo Gra Lekki Lagos,₦,"11,000,000",0,1,0,0 beds,0 baths,0 Toilets +Southern Greens Estate Lands,Lafiaji Lekki Lagos,₦,"20,000,000",0,1,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With 1 Maid Room,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Twin Lakes Estate By Chevron Lekki Lagos,₦,"190,000,000",0,0,0, beds, baths, Toilets +5 Plots Of Land,"Alewa Road, Ilasan Elegushi Lekki Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex,"Chevron Drive, Chevron Lekki Lagos",₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5bedroom Terraced Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets +5bedroom Fully Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +5bedroom Terraced,Ikate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Dry Land With C Of O,10 Min Drive From La Champaigne Tropicana Lekki Phase 2 Lekki Lagos,₦,"750,000",0,1,0, beds, baths, Toilets +3 Bedroom Apartments At Greencity Estate.,Elf Bus Stop Lekki After The 2nd Round About Same Street At City Lodge Hotel Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"50,000,000",1,1,0,3 beds,3 baths,1 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"Daniels Garden, Osapa London Lekki Lagos",₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Grand 6 Bedroom Detached House For Sale At Chevron, Lekki",Chevron Chevron Lekki Lagos,₦,"150,000,000",1,1,1,6 beds,7 baths,7 Toilets +"Newly Built Luxury 5 Bedroom Fully Detached House For Sale At Lekki, Lagos",Osapa Osapa London Lekki Lagos,₦,"98,000,000",1,1,1,5 beds,5 baths,6 Toilets +5bedroom Duplex,Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +5bedroom Duplex,Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +Global C Of O,"Inside Beechwood Estate Shapiro, Lekki. Lekki Phase 1 Lekki Lagos",₦,"6,000,000",1,1,1, beds, baths, Toilets +Brand New 5 Bedroom Duplex At Elegushi,Chisco Ikate Lekki Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land,"Lafiaji , Lekki Lagos",₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",1,1,1,4 beds,4 baths,5 Toilets +Land,Close To Lekki Beach Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Buene Vista Estate By Chevron Toll Gate, Chevron Lekki Lagos",₦,"49,900,000",0,1,1,5 beds,6 baths,6 Toilets +Land,Destiny Gardens Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With 2 Room Domestic Staff,Alpha Bay Estate Lekki Epe Express Way Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House With Staff Quarter,"Mobolaji Johnson, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,1,4 beds,4 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached With A Room Domestic Staff Quarters,6 Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Bungalow Detached House,Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom House,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Water Front Mixed Use Plot,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse,Off Christ Avenue Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Executive 3bedroom Duplex,Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached House,Megamound Estate Lekki Lagos Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Legacy Street Ikate Lekki Lagos,₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Plots Of Land,"Alewa Road, Ilasan Elegushi Lekki Ilasan Lekki Lagos",₦,"250,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Buene Vista Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,5 Toilets +Five Bedroom Detached Apartment With Boys Quaters,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",1,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Duplex For Sale At Orchid Road,Orchid Road Chevron Lekki Lagos,₦,"45,000,000",1,1,0,3 beds,3 baths,3 Toilets +Exclusive Brand New 5 Bedroom Detached Duplex/bq,Chevyview Estate Chevron Lekki Lagos,₦,"135,000,000",0,1,1,5 beds,5 baths,5 Toilets +Exclusively Finished 5 Bedroom Detached Duplex,Bola Crest Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Terraces,Tony Crest Chevron Lekki Lagos,₦,"38,000,000",1,1,1,4 beds,4 baths,4 Toilets +"Lekki 4 Bedroom Duplex, Fully Finished (mortgage And Installment Plan )","Daniel's Court, Osapa London, Leki Osapa London Lekki Lagos",₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +2000sqmtrs Land,Lekki Conservation Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4/5 Bedroom Semi Detached Duplexes, Chevron Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex With Boys Quarters,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +Land, Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"105,000,000",0,1,1,5 beds,5 baths,5 Toilets +Luxury 5bedroom Fully Detached,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"108,000,000",0,1,1,5 beds,5 baths,5 Toilets +Bare Land,Carlton Gate Estates Chevron Lekki Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Serviced 3 Bedroom Flat,"Grace Court, Ikate Elegushi Ikate Lekki Lagos",₦,"50,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,"Lafiaji, Vgc Lekki Lagos",₦,"25,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex Wit Bq,Orchid Road Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land, Lekki Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets +Inprogress 6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,6 beds,7 baths,7 Toilets +Inprogress 6 Bedroom Duplex With Penthouse,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"190,000,000",0,1,0,6 beds,7 baths,7 Toilets +3 Bedroom Terraced Duplex With Bq,"18 Silverbird Road, Jakande 1st Gate Bus Stop, Lekki Ilasan Lekki Lagos",₦,"35,000,000",0,1,0,3 beds,4 baths,4 Toilets +4bedroom Duplex,"Chevron Lekki, Lagos. Chevron Lekki Lagos",₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With One Room Boys Quarters,"The Property Is Located At Cdv Court 2, Silicon Valley Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Block Of Flats," ikota Villa Estate, Lekki Lagos",₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land," lekki Free Trade Zone, Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," eli Court, Chevron Alternative Drive, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"North Pointe Estate Phase 1, Chevy Drive Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,. Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Daniels Garden Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Eli Court, Chevron Alternative Drive Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets +2 Bedroom Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Palm City Estate Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terraced Duplex, Idado Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex Cornerpiece Terrace Duplex,. Ikate Lekki Lagos,₦,"37,000,000",0,0,1,4 beds,4 baths,5 Toilets +Residential Land,Bera Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Bera Estate, Chevron Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,0 baths,5 Toilets +5 Bedroom Semi Detached Duplex," ocean Bay Estate, Along Orchid Hotel By Chevron Toll Gate, Lafiaji, Lekki Lagos",₦,"62,000,000",0,0,1,5 beds,6 baths,6 Toilets +Residential Land With Governor's Consent,"Lekki Epe Expressway; Road 12, Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex," chevron Alternative Drive, Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex," chevron Alternative Drive, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets +Residential Land," off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex + Bq With Swimming Pool & Gym,Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,. Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Luxury 4 Bedroom Detached Duplex,Before Agungi/igbo Efon/chevron Axis; Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,. Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Fully Detached Duplex With Bq,Before Agungi/igbo Efon/chevron Axis; Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Daniel's Garden Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +Residential Land,Road 12 Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex For Sale," before Agungi, Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex For Sale,  Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets +Residential Land,"Road 12, Victoria Garden City (vgc) Lekki Epe Expressway Vgc Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat For Sale," oral Estate, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Alternative Drive Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale," chevron Alternative Drive, Lekki Phase 1 Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale," daniel's Garde,n Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ologolo Agungi Lekki Lagos,₦,"59,000,000",0,1,0,4 beds,4 baths,4 Toilets +Brand New Luxury Finished Fully Detached 4 Bedroom Duplex With Bq,"Osapa London, Before Agungi, Igbo Efon And Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exotically Finished 4 Bedroom Senmi Detached Duplex,. Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Semi Detached Duplex,Ocean Bay Estate Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedrooms Terrace Duplex,Lekki Gardens Estate Lekki Lagos,₦,"29,000,000",0,1,0,3 beds,3 baths,3 Toilets +Exquisitely Finished 4 Bedroom Fully Detached Duplex,"Alternative Chevron Drive, Chevron Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq.,Osapa London Before Agungi Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedroom Duplex,"Oral Estate, Orchid Road, 2toll Gate,lekki Oral Estate Lekki Lagos",₦,"57,000,000",0,1,1,4 beds,4 baths,4 Toilets +Beautiful And Spacious 6 Bedroom Duplex For Sale,Lekki 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,1,0,6 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Fully Detached House,"Lekki County, Vgc Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Alternative Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 3 Bedroom Flat With Bq And Swimming Pool,2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,4 baths,4 Toilets +Lovely 4 Bedroom Fully Detached Duplex,"Chevron, Chevron Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki County Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Detached House,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxuriously Finished 5 Bedroom Detached House,"Osapa, Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Fully Detached Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedrooms Fully Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Jude Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Duplex,Pinnock Beach Estate. Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Pent House,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5/4 Bedroom Detached Duplex With Bq,Southern View Estate By Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Dry Land, Fenced And Gated 1500sqm",Off Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Flat, Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Furnished 4 Bedroom Apartment With 1 Room Boys Quaters,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 4 Bedroom Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex With Bq,After 2nd Toll Gate Lekki Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,3 Toilets +Nice 3 Bedroom Terrace Duplex,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,5 Toilets +Best Luxury 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +New 5 Bedroom Detached Duplex With Bq,Olushola Akeem Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +New Lovely 4 Bedroom Detached Duplex Ajah Lagos,"Lekki, Lagos, Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Spacious 3 Bedroom Terrace Duplex With Bq In Ikota,Ologbo Ajawe Ikota Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With B/q,Road 2 Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex With Bq,Folanke Adebayo Street Chevy Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 5 Bedroom Detached Detached Duplex,Ikota Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,Alternative Chevron Road; Chevron Lekki Lagos,₦,"50,000,000",0,1,1,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq In Eli Court Lekki. P,"In Eli Court. Chevron Alternative Drive, Lekki, Lagos State Chevron Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Fully Detached Duplex,"Chevron Alternative Drive, Lekki, Lagos State. Chevron Lekki Lagos",₦,"68,000,000",0,1,1,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Olumide Street Idado Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,6 beds,5 baths,6 Toilets +2 Bedroom Flat,Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built Luxury 4 Bedroom Semi Detached And 5 Bedroom Fully Detached Duplexes,Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"49,247,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,. Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land,Lekki Estate Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"By Meadows Hall School, Ikate Elegushi Ikate Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,After Chevron Toll Gate Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 2 Room Bq,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Behind White Sand School Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Event Centre,Ikate Elegushi Ikate Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,10 Toilets +4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,. Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Detached Duplex,. Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Block Of Flats,Honeyville Apartments Agungi Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Eli Court, Chevron Alternative Drive Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,"Off Kusunla Street, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,"Off Palace Road, Ikate Elegushi Ikate Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,"Off Lekki Epe Expressway, Ikate Elegushi Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Mini Flat,Off Freedom Before Ikate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,10 beds,2 baths,2 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,"By Chevron, Lekki Expressway Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"By Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +New And Tastefully Finished 5 Bedroom Duplex + Bq With Governor's Consent,Chevy View Estate; Chevron Lekki Lagos,₦,"58,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Adebisi Popoola Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +C Of O,Behind Chevron Chevron Lekki Lagos,₦,"68,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxury 3 Bedroom Terraced Duplex In Lekki Gardens New Horizon Ii Estate,"S7 Unit 2 Olivewood Road, Lekki Gardens New Horizon Ii Estate. Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,1,3 beds,4 baths,4 Toilets +Mixed Use Land,"Orchid Road, Lafiaji Lekki Lagos",₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Block Of Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Mobil Estate Vgc Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lekki Expressway Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Detached Duplex For Sale At Ologolo , Lekki",Ologolo Ologolo Lekki Lagos,₦,"60,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Semi Detached Duplex For Sale,Ologolo Ologolo Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Residential Plot Of Land,New Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,. Vgc Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land For Sale, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Lands,"Lekki Expressway, Lekki Lagos",₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex For Sale," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Lands,. Lekki Phase 1 Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat For Sale, Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +6 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"295,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex,"Lekki Conservation Centre, By Orchid Hotel Road, Lafiaji Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Alternative Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale," chevron Alternative Route, Before Abiola Courts, Chevy View Estate, Lekki Lagos",₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale,  Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale," oral Estate, Lekki Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex For Sale," chevy View Estate, Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Bedroom Flat For Sale," off Lekki Epe Express Way, Ikate Elegushi, Lekki Lagos",₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space For Sale," admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land For Sale,  Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex For Sale," royal Garden Estate, Lekki Expressway, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Opposite Agungi By Shoprite Circle Mall Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Agungi Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex For Sale," lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat For Sale," ikate Axis On The Side Of Oando Gas Station, Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +Residential Land For Sale," off Chevron Drive, Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom House For Sale," behind Mega Chicken, Ikota Villa Estate, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex For Sale," orchid Road Eleganza Lekki Lagos, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Terraced Duplex For Sale," off Orchid Road, Lekki 2nd Toll Gate, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex For Sale," orchid Road Eleganza Lekki Lagos, Lekki Expressway, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 4 Bedroom Semi Detached Duplex,"Orchid Hotel Road; Off Lekki Epe Expressway, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Brand New 4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex + 1 Room Bq With Governor's Consent,Ikota Villa Estate; Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Tastefully Furnished 5 Bedroom Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Brand New Luxury Fully Detached 4 Bedroom Duplex With Bq,Daniel's Garden; Osapa London Lekki Lagos,₦,"60,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,"Roxbury Home 2; By Manor Garden/vgc, Lekki Phase 2 Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With A Maid's Room,"Primewater Garden 2; Freedom Way, Elegushi Lekki Phase 1 Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Plots Mixed Use Land With Governor's Consent,"After Victoria Crest Estate; Orchid Hotel Road, Lafiaji, By Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + Domestic Room With Governor's Consent,"Orchid Hotel Road; Lafiaji, By Tollgate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Semi Detached Duplex With A Domestic Room With Governor's Consent At Osapa London,By Zenithbank; Osapa London Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New And Beautifully Designed Fully Serviced 4 Bedroom Terraced Duplex + Bq With Swimming Pool,Off Freedom Way; Lekki Phase 1 Lekki Lagos,₦,"110,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Expressway; By Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With Bq Available For Sale,"Lekki County Homes, Ikota, Lagos Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Exquisite 4 Bedroom Terrace Duplex At Pracht Gardens, Ikota, Lagos (offplan).",Ikota Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"36,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,"Off Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,. Idado Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +Plaza / Complex / Mall For Sale," lekki Expressway, Lekki Lagos",₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,  Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +Commercial Joint Venture Land,. Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex For Sale," osapa London, Lekki. Few Minutes Before Chevron. Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +Commercial Land Joint Venture, Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex For Sale, Ilasan Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale," pinnock Beach Estate, Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +Residential Land For Sale,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale," off Omorire Johnson, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale," kayode Animashaun Street, Off Admiralty, Lekki Phase 1 Lekki Lagos",₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex For Sale," road 12, Vgc Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale," ikate, Ilasan Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Rent," off Lekki Conservation Center Road, Lekki Lagos",₦,"3,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale," osapa London, Before Agungi, Igbo Efon And Few Minutes Before Chevron, Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale," pinnock Beach Estate, Lekki Expressway, Lekki Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex For Sale, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,7 Toilets +4 Bedroom Semi Detached Duplex For Sale," white Oak Estate, Ologolo Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,. Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale," before Agungi, Igbo Efon And Few Minutes Before Chevron, Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land For Sale," babatunde Anjous Street, Lekki Phase 1 Lekki Lagos",₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale," orchid Hotel Road, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,"Lekky County Homes; Lekki Expressway, Ikota Lekki Lagos",₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex + Bq With Swimming Pool,Off Admiralty; Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Serviced 3 Bedroom Flat,"Soji Olagunju Street; Off Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"30,000,000",1,0,0,3 beds,3 baths,4 Toilets +1 Unit Of 4 Bedroom Semi Detached House With Bq,Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"40,000,000",0,1,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"40,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale," ikota Villa Estate, Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +10.9 Hectares Of Dry Waterfront Bare Land,Lekki Beach Gate Street Jakande Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kikelomo Street Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,"17/19, Sherifat Adenike Animashaun Street, Chevy View Estate. Chevron Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch 4 Bedroom Detached Duplex,"Razak Eletu Street, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +Elegance 5 Bedroom Detached Duplex For Sale,"Razak Eletu Street, Osapa London, Lekki, Lagos Osapa London Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets +2 Nos Fitted 4 Bedroom Semi Detached House With 1 Room Boys Quarter,Oral Estate Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished/fitted 5 Bedroom Detached House With 1 Room Servant Quarter,Oral Estate Ikota Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 3 Bedroom Apartment On 2000 Sqm,Off Babatunde Anjouse Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Duplex + Bq, Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets +C Of O, Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex With Bq,"Oba Ogbagba Estate, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Executive Furnished 4 Bedrooms Semidetached Duplex,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Prince Ademola Eletu Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex At Abraham Adesanya Lekki Lagos,6 Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Flat In Lekki Right,Lekk Right Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex At Lekki Phase 2, Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,1,0,5 beds, baths, Toilets +5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Canal West Estate Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,"Ocean Estate, Lekki Expressway Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex For Sale,"Ocean Estate, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Block Of Flats,. Lekki Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,"By Cisco, Conoil Filling Station, Ikate Elegushi Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex For Sale, Igbo Efon Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale," bera Estate, Chevron, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale," bera Estate, Chevron Drive, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale," agungi, Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale, Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex," chevron, Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,"Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex," chevron Drive, Chevy View Estate, Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," chevron Drive, Lekki Expressway, Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land," off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom House," ikota Villa Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale, Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land," close To The British International School, Abijo, Lekki Lagos",₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Off Omorinre Johnson Avenue Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex,  Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex," off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land,"Lafiaji, Off Orchid Road Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex," lafiaji, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex," oral Estate, Lafiaji, Lekki Lagos",₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex," off Orchard Road, Lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Mixed Use Land Joint Venture," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,"Meadow Hall School; Off David Christian Center, Lekki Phase 2 Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex + Bq With Swimming Pool,  Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New And Tastefully Furnished 4 Bedroom Fully Detached Duplex With 2 Rooms Bq,Idado Estate; Idado Lekki Lagos,₦,"128,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With 2 Bedroom Bq,Idado Estate Idado Lekki Lagos,₦,"128,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex," baruwa St, Ologolo Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex," ocean Bay Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,6 baths,7 Toilets +648 Sqm Dry Land,"Behind Mega Chicken; Ikota Villa Estate, Ikota Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dry Land,Behind Mega Chicken; Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"10, Denco Courts, Ikate Elegushi, Ikate Lekki Lagos",₦,"50,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," ologolo, Lekki, Lagos Lekki Lagos",₦,"58,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury And Superbly Finished Fully Serviced 4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"80,000,000",1,0,0,4 beds,5 baths,5 Toilets +House For Sale," lekki, Lagos Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Mixed Use Land,"Alakutor; Mobil Road, Ikota Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex For Sale," bera Estate Chevron, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Bera Estate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq On 450 M2,. Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex With Governor's Consent On 465 Sqm In Serviced Estate,"Ocean Bay Estate; Along Orchid Hotel Road, By Chevron Toll Gate, Ikota Villa Estate, Ikota Lekki Lagos",₦,"65,000,000",1,0,0,5 beds,5 baths,6 Toilets +6 Bedroom House With 2 Room Service Quarters,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,6 beds,6 baths,7 Toilets +"3,234 Sqm Office Space Commercial Land",Block 94 Plot4 Providence Street; Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"295,000,000",0,1,1,6 beds,6 baths,7 Toilets +Promise To Own Primewater View Gardens 2 Lekki Phase 1,Primewater View Gardens 2 Off Freedom Way Lekki Phase 1 Ikate Lekki Lagos,₦,"45,000,000",1,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Duplex,"Lekki 2nd Toll Gate, Lekki Expressway Lekki Lagos",₦,"38,000,000",0,1,1,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Elf Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,4 Toilets +A Luxurious 5 Bedroom Duplex,Chevy Chevron Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fully Serviced, Newly Finished 3 Bedroom Penthouse",Platimum Way Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Privately Gated Luxury Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Behind Shoprite, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +New | 4 Bedroom Semi Detaced Duplex | Self Serviced,After Second Toll Gate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Finished And Privately Gated 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxurious Semi Detached 4 Bedroom Duplex,Chevyview Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Duplex With 2units Of 3 Bedroom Flat And A Separate One Story Office Building, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terrace Apartments,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Finished Serviced 4 Bedroom Terrace House,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan | 4 Bedroom Terrace Apartments | Serviced,Lafiaji (after Second Toll Gate) Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Terrace Duplex | Self Serviced,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Finished And Privately Gated 4 Bedroom Luxury Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Privately Gated 4 Bedroom Luxury Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,6 Toilets +2 Bedroom Luxurious Apartment,By Ikate Elegushi (third) Round About Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Corner Piece Dry Land,"Behind Elevation Church, Salem Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Terraced Triplex,Off Freedom Way Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 & 2 Bedroom Studio Apartments,Buenavista Estate (off Orchid Hotel Road) Chevron Lekki Lagos,₦,"10,000,000",0,0,0,1 beds,1 baths,3 Toilets +2 Bedroom Luxury Apartment,Off Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Units Of Luxurious 3 Bedroom Flats,Ologolo Road Igbo Efon Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,4 baths,3 Toilets +New 4 Bedroom Luxury Terrace Triplex,Royal Garden Estate Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary Luxury 4 Bedroom Quadruplex On 3 Floor With 1room Staff Quatersr,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,6 Toilets +New | 5 Bedroom Fully Detached Duplex | Self Serviced,"Lekki County Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"31,500,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Exquisitely Finished Terrace Triplex,After Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,By Second Toll Gate Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"22,500,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Fully Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Privately Gated Luxury 5 Bedroom Fully Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Terraced Triplex | Off Plan,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Privately Gated Luxury Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxurious 4 Bedroom Terrace Duplex Close To Chevron Drive For 40m,Chevton Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,4 Toilets +Finished And Privately Gated 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Penthouse,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land,Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Studio Apartment,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,2 Toilets +Lovely 2 Bedroom Apartment In Lekki,Chevy View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxurious 5 Bedroom Terrace Duplex,Alternative Route; Lekki Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,7 baths,5 Toilets +"Fully Serviced, Newly Finished 3 Bedroom Apartments",Platimum Way Osapa London Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Luxury Semi Detached Duplex,Royal Garden Estate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Hectare Of Land,Beside Vgc Lekki Lagos,₦,"40,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex,"Off Lekki Epp, Express Way Ikate Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +New | 5 Bedroom Detached Duplex With Swimming Pool | Self Serviced,"Lekki County Estate, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Triplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxurious Flat, Agungi Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,5 baths,3 Toilets +Luxury 5 Bedroom Terrace Duplex With Excellent Facilities,Alternative Route; Lekki Lekki Lagos,₦,"95,000,000",0,0,0,7 beds,7 baths,7 Toilets +3 Bedroom Terrace Apartment,Olugborogan (off Orchid Hotel Road) Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +New | 4 Bedroom Luxury Fully Detached Duplex | Self Serviced,Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Privately Gated Luxury 4 Bedroom Fully Detached Duplex And 2 Bedroom Flat,Happy Land Estate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,6 Toilets +Fully Detached Luxury 5 Bedroom Duplex + 1 Room Bq With Excellent Facilities,Francis Oje; Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,7 baths,5 Toilets +A Luxurious 3 Bedroom Terrace Duplex At Chevyview Estate Lekki Lagos,Chevyview Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +New | Privately Gated 5 Bedroom Luxury Fully Detached Duplex | Partly Serviced,Off Road 3 Vgc Lekki Lagos,₦,"215,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +"A Luxurious 4brdroom Semi Detached Duplex At Creek Avenue, Lekki",Lekki Chevron Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Triplex | Serviced,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Triplex,"Behind Spg, After Globe Motors Agungi Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Apartment | Fully Serviced,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Luxury Apartment | Off Plan,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Terraced Triplex,After Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,"Off Lekki Epp, Express Way Ikate Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Luxury Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,After Chevron Round About Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Terrace Duplex,After Second Toll Gate Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,4 Toilets +New | 5 Bedroom Luxury Fully Detached Duplex | Self Serviced,Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Off Orchid Hotel Road Chevron Lekki Lagos,₦,"43,200,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Off Lekki Epp, Express Way Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +New | Luxury 4 Bedroom Semi Detached Duplex | Partly Serviced,Off Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartments,Off Platimum Way Osapa London Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium Plots Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex (off Plan),After Second Toll Gate Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished And Privately Gated 4 Bedroom Semi D,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terraced Triplex,"Elf Bustop, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +New | 5 Bedroom Luxury Fully Detached Duplex | Partly Serviced,Off Chevron Drive Chevron Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,1,1,6 beds,6 baths,7 Toilets +4 Bedroom Flat With Bq,Otunba Adeleke Adeshina Street; Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Lekki County, Ikota Villa Estate Ikate Lekki Lagos",₦,"110,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,1,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex With Bq,. Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,1,1,3 beds,3 baths,4 Toilets +Old 4 Bedroom Semi Detached Duplex.,Grace Anjous Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished And Furnished 5 Bedroom Detached House + 1 Room Bq With C Of O,Iweanya Ugbogho; Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,1,5 beds,5 baths,6 Toilets +2 Bedroom Block Of Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,1,1,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,"Orchid Road, Lekki Expressway Lekki Lagos",₦,"36,500,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Off Prince Adelowo Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,"Pinnock Beach Estate; Behind Shoprite, Lekki Phase 2 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,. Igbo Efon Lekki Lagos,₦,"47,000,000",0,0,1,4 beds,4 baths,5 Toilets +Tastefully Finished And Serviced 4 Bedroom Terraced Duplex,Lekki Right; Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Detached Duplex,Lekki Right; Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Detached Duplex With Bq,"Orchid Hotels Road, Lekki Expressway Lekki Lagos",₦,"63,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached House,Minutes Away From Circle Mall (shoprite) Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex,. Igbo Efon Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Lekki Expressway Lekki Lagos,₦,"37,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New And Tastefully Furnished 5 Bedroom Semi Detached Duplex,"Orchid Hotel Rd; Lekki Expressway, Chevron Lekki Lagos",₦,"37,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,"Orchid Hotel Road; Lekki Expressway, Chevron Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,"Orchid Hotel Road; Lekki Expressway, Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Semi Detached Duplex,Oriwu Road Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached Duplex,. Ilasan Lekki Lagos,₦,"45,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Elf Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Stylish Home,Ikate Ikate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Fully Detached House,Lekki County Homes. Lekki Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom House,Mega Chicken Lekki Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex On 560 Sqm,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished And Fully Serviced 4 Bedroom Terraced Duplex,Lekki Expressway; Along Orchid Hotel Road By Toll Gate Chevron Lekki Lagos,₦,"38,000,000",1,0,0,4 beds,4 baths,0 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex With Good Title,Lekki Expressway; orchid Hotel Road By Second Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Lafiaji; Chevron Lekki Lagos,₦,"37,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Lafiaji; Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths, Toilets +Newly Built 3 Bedroom Semi Detached Duplex," lafiaji, Lekki, Lagos Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths, Toilets +Mixed Use Land,Opposite Victory Park Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + 1 Room Bq With Good Title,Idado Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,800,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Alternative Route; Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Lafiaji Lekki Lagos,₦,"37,000,000",1,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat,"Off Kunsula (conoil Filling Station) Road, Ikate Elegushi Ikate Lekki Lagos",₦,"55,000,000",0,1,1,3 beds,3 baths,4 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"90,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Victory Park Estate; By Circle Mall, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,. Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Providence Way Lekki Lagos,₦,"950,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Mini Flat,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"2,800,000",0,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built Bedroom Semi Detached Duplex + 1 Room Bq With Governor's Consent,By Orchid Hotel Road Close To The Toll Gate; Chevron Lekki Lagos,₦,"155,700,000",0,1,0,8 beds,8 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa London Estate Osapa London Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex On Chevron Drive,Chevy View Estate; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Newly Built 4 Bedroom Detached Duplex + 1 Room Bq,"Lekki Country Homes; Ikota Villa Estate, Ikota Lekki Lagos",₦,"105,000,000",0,1,0,4 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With Bq,. Osapa London Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Close 48 Vgc Lekki Lagos,₦,"40,000,000",0,0,1,3 beds,2 baths,3 Toilets +3 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,6 baths, Toilets +5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,1,5 beds,6 baths,6 Toilets +Residential Land,"Atlantic View Estate, Along Atlantic Beach, Before Chevron And Opposite Idado Idado Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Conoil Road, Ikate Elegushi Ikate Lekki Lagos",₦,"40,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Off Orchid Road, Lafiaji Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,"Signature Court, Chevron Alternative Route, Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"After Chevron Toll Gate, Opposite Lekki County Homes, Ikota Lekki Lagos",₦,"45,000,000",0,1,0,4 beds,5 baths,5 Toilets +No. 10 Royale Unit 2: Fully Detached Luxury 4bedroom Duplex,"Victory Park Estate, Osapa London, Jakande Roundabout, Lekki Penninsula, Lekki Epe Expressway Osapa London Lekki Lagos",₦,"140,000,000",1,1,0,4 beds,6 baths,5 Toilets +5 Bedroom Detached Duplex For Sale," close To Vgc, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths, Toilets +7 Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,1,1,7 beds,7 baths,8 Toilets +5 Bedroom Semi Detached Duplex," ocean Bay Estate, Orchid Hotel Road, By Chevron Toll Gate, Lafiaji, Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Terrace Duplex With Bq,"Brownstone Estate Off Kusenla Road, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Detached House With Bq On 450sqm Land At Victory Park Estate, Lekki",Victory Park Estate; Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Detached Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets +16 Bedroom Hotel / Guest House," right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets +1000 Sqm Residential Land,Acadia Grove Estate By Pinnock Estate; Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths, Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets +Residential Land,Acadia Estate By Pinnock Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," spar Road, Ikate Elegushi, Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths, Toilets +Newly Built And Tastefully Finished Luxury 4 Bedroom Terraced Duplex + Bq With Governor's Consent,"Parkhust Luxury Apartments; Alma Beach Estate By Mercedes, Elegushi/ Ikate Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,5 baths, Toilets +3 Bedroom Block Of Flat," island Estate, New Road, Lekki Lagos",₦,"22,000,000",0,0,0,3 beds,3 baths, Toilets +4 Bedroom Terraced Duplex," orchid, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Detached Duplex, Jakande Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths, Toilets +Office Space, Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Semi Detached Duplex," off Bisola Durosinmi Etti Dr, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Terraced Duplex,"Oral Estate By 2nd Toll Gate, Before Vgc, Ikota Villa Estate Ikota Lekki Lagos",₦,"63,000,000",0,1,1,5 beds,5 baths,5 Toilets +Mixed Use Land," southern Green Estate, Lafiaji, Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Terraced Duplex," off Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths,0 Toilets +Commercial Land, Vgc Lekki Lagos,₦,"285,000,000",0,0,0,0 beds,0 baths, Toilets +800 Sqm Residential Land,Cowrie Creek Estate; Elegushi/ Ikate Lekki Lagos,₦,"98,000,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,5 baths,5 Toilets +Mixed Use Land," off Abraham Adesanya Road, Lekki Phase 2 Lekki Lagos",₦,"9,000,000",0,0,0,0 beds,0 baths, Toilets +Exquisitely Finished 5 Bedroom Detached Duplex,"Lekki County Homes (mega Mound Estate); Ikota Villa Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths, Toilets +Luxury 4 Bedroom Semi Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Terraced Duplex," orchid Road, Eleganza, By Chevron, Lekki Expressway, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex," orchid Road, Eleganza, By Chevron Lekki Lagos",₦,"43,000,000",0,0,0,4 beds,5 baths, Toilets +4 Bedroom Semi Detached Duplex," vintage Estate, Jakande Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Detached Duplex + Bq With Swimming Pool,Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths, Toilets +3 Bedroom Terraced Duplex," lafiaji, Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths, Toilets +4 Bedroom Semi Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,0 baths, Toilets +Residential Land," closely Located To Greenspring Group Of Schools And Omu Resort, Bogije, Ibeju Lekki, Lagos Lekki Lagos",₦,"7,500,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Semi Detached Duplex,"Creek Avenue Court, By Chevron, Ikota Villa Estate Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths, Toilets +Residential Land," pinnoch Beach Estate, Osapa London Lekki Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Detached Duplex,"Megamound Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +7bedroom Fully Detached Mansion + 4 Room Guest Chalet,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,1,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,4 beds,3 baths, Toilets +Luxury Of 3 Bedroom Apartment,Freedom Road; Lekki Phase 1 Lekki Lagos,₦,"2,200,000",0,0,0,2 beds,2 baths, Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Units Of Five Bedroom Semi Detached Duplex,Road 7 Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Semi Detached Duplex Wit Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 4 X 4 Bedrooms Terrace Building,1 Osapa London Lekki Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"After 2nd Toll Gate, Before Megachicken Ikota, Chevron Lekki Lagos",₦,"48,000,000",1,1,0,4 beds,5 baths,5 Toilets +Mixed Use Land," oniru Market Area, By Lawani Oduloye Street, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Block Of Flats, Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," olatunde Amolegba Street, Bera Estate, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," buena Vista Estate, Cityscape Boulevard, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Mixed Use Land," about 8 10 Mins From Dangote' S Refinery, Lekki Free Trade Zone, Lekki Lagos",₦,"2,200,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets +Luxurious 5bedroom Semi Detached Duplex At Oral Estate By Chevron 2nd Toll Gate Lekki.,James Street Oral Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 2 Lekki Lagos,₦,"31,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,  Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Buena Vista Estate, By Chevron Toll Gate By Orchid Hotel Road Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With B/q,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," lekky County Homes, Ikota Villa Estate, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,0 Toilets +2 Bedroom Flat," chevy View Estate, Chevron Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Detached Duplex,. Chevron Lekki Lagos,₦,"54,000,000",0,1,1,4 beds,4 baths,5 Toilets +6 Bedroom Semi Detached Duplex,"Off Admiralty Way, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,6 beds,6 baths,0 Toilets +5 Bedroom Detached Duplex," off Udeco Road, Chevy View Estate, Chevron Lekki Lagos",₦,"93,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Semi Detached Duplex," ikota Primary School, Ikota Villa Estate, Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"210,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,. Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,1,1,6 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex," behind Shoprite, Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,1,1,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Idado Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex," ikota Villa Estate, Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land,"Lakeview Park Ii, Lafiaji Road, Lafiaji Lekki Lagos",₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex, Vgc Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,0 Toilets +4 Bedroom Terraced Duplex,. Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,5 Toilets +Royalty Homes Estate Lekki Lakowe,"Shapati Town, Lekki Lakowe. Lekki Phase 1 Lekki Lagos",₦,"6,000,000",0,1,0, beds, baths, Toilets +Royalty Homes Estate Lekki Lakowe,Behind Beachwood Estate. Lekki Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Joint Venture Land,Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,"Mobile Road, After Vgc Roundabout, Lekki Expressway Vgc Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + 1 Room Bq With Governors Consent,Chevron Lekki Lagos,₦,"55,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +7 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,7 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex For Sale,Lafiaji Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths, Toilets +7 Bedroom Detached Duplex,"Lekki County, Ikota Villa Estate Ikota Lekki Lagos",₦,"125,000,000",1,1,1,7 beds,7 baths,7 Toilets +Residential Land,"Orchid Road By Ocean Bay Estate; Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lafiaji Lekki Lagos,₦,"23,000,000",0,1,1,3 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex + En Suite Bq,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Dry Mixed Use Land With Governor's Consent,"Southern Green Estate; Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Marwa; Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Ocean Bay Estate, Lafiaji Lekki Lagos",₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex Off Plan Sales,Orchid Road Off Lekki Epe Express Way By Chevron Toll Gate Applewood Estate Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Residential Land,"Opposite Buena Vista Estate, Lafiaji Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,"Orchid Hotel Road, Lekki Expressway Chevron Lekki Lagos",₦,"39,000,000",0,1,1,4 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,"Orchid Hotel Road, Lekki Expressway Chevron Lekki Lagos",₦,"39,000,000",0,0,0,4 beds,5 baths, Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"163,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +"Luxury 2 Bedroom Apartments, On Going Project",Kusenla Road Ikate Lekki Lagos,₦,"40,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Terraced Duplex,"Orchid Hotel Road; Close To Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Bera Estate Lekki Lagos,₦,"72,000,000",0,1,1,4 beds,6 baths,5 Toilets +Well Built 4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 4 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths, Toilets +5 Bedroom Luxury Detached Duplex With Governor's Consent,"Megamound Estate; Ikota Villa, Ikota Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,"Iroko Awe, Ilasan, By World Oil, After Chisco, Ikate Elegushi Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex For Sale," ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,"After Chevron Roundabout, Lekki Expressway Chevron Lekki Lagos",₦,"31,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Plots Of Land At Lakowe, Lekki @ N3.5m",Lakowe Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets +3 Bedroom Block Of Flats,. Lekki Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +Mixed Use Land,"Off Orchid Hotel Road, By Second Toll Gate Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Second Toll Gate, Lekki Expressway Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ceda West Estate Osapa London Lekki Lagos,₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex," ologolo, Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths, Toilets +Land," ologolo, Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths, Toilets +6 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,5 baths, Toilets +6 Bedroom Detached Duplex," victory Park Estate, Lekki Lagos",₦,"140,000,000",0,0,0,6 beds,6 baths, Toilets +Residential Land,"Lekky County Homes, Ikota Villa Estate Ikota Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,. Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,1,1,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex," near Circle Mall, Jakande Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths, Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Terraced Duplex," lekki Conservative Road, Opposite Chevron, Lafiaji, Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths, Toilets +5 Bedroom Detached Duplex For Sale,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths, Toilets +2 Hectares Mixed Use Land,Lafiaji; Opposite Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths, Toilets +5 Bedroom Detached Duplex,"Pinnock Estate, Osapa London Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New, Luxury 5 Bedroom Terraced Duplex",Admiral Gabriel Okoi Street; Elegushi/ Ikate Lekki Lagos,₦,"65,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex With 1 Room Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex,Off Oriwu Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,1,1,5 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Off Oladimeji Alo Street Lekki Lagos,₦,"3,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," sunday Dare Close, Off Prince Olarenwaju A, By Romey Gardens, Elegushi, Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,By Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"50,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex," kunshenla, Elegushi, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," crowd Estate, Lekki Phase 2 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,0 Toilets +3 Bedroom Semi Detached Bungalow, off Chevron Toll Gate By Orchid Hotel Gate Lekki Lagos,₦,"55,000,000",0,1,0,3 beds,0 baths,0 Toilets +Residential Land,  Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"170,000,000",0,1,1,6 beds,6 baths,7 Toilets +Mixed Use Land Joint Venture,"Kusenla Road, Ikate Elegushi Ikate Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Conservation Drive Chevron Lekki Lagos,₦,"37,000,000",0,1,1,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With A Room Bq For Sale,"Megamound, Lekki County Estate Ikota Lekki Lagos",₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex," off, Oladimeji Alo Street, Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terraced Duplex + Bq With Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"128,000,000",1,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex + Bq With Governor's Consent,Elegushi/ Ikate Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex + Gatehouse & Servant Quarters With Governor's Consent,"Lekki County; Ikota Villa Estate, Ikota Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex," westend Estate, Lekki County Homes, Before Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,1,1,4 beds,5 baths,5 Toilets +5bed New House For Sale,"Megamound Estate, Kekki County Ikota Lekki Lagos",₦,"95,000,000",0,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"58,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Units,Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Bedroom Detached Duplex," lekki County Homes Megamound, Ikota Lekki Lagos",₦,"90,000,000",0,0,0,6 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,2nd Toll Gate Chevron Lekki Lagos,₦,"52,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," lekky County Homes, Chevron Axis, Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Boys Quarters,Opposite Lekky County Homes Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,0 Toilets +West Spring Estate Lands,West Spring Estate; Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxurious 3bedroom Semi Detached Duplex For Sale At Buene Vista Estate, By Chevron Toll Gate, Orchid Hotel Rd, Lekki",Orchid Hotel Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Off Kusenla Road, Ikate Elegushi Ikate Lekki Lagos",₦,"90,000,000",0,1,1,5 beds,5 baths,0 Toilets +Land,"Lakeview Estate, Opposite Vgc And Ikota Complex Vgc Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"By Chevron Toll Gate, Oral Estate Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Residential Land Joint Venture,. Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," durosimi Eti, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex," megamound Estate, Lekki Expressway, Lekki, Lagos Lekki Lagos",₦,"98,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,"Kayode Otitoju, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"230,000,000",0,1,1,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Terraced Duplex + Bq With Governor's Consent,Off T.f. Kubuoye; Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +"1,000 Sqm Land With C Of O & Deed Of Assignment At Vgc",Lakeview Estate; Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," megamound Estate, Lekki County Homes, Ikota Lekki Lagos",₦,"95,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Eden Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"26,000,000",0,0,0, beds, baths, Toilets +Tastefully Finished 4 Bedroom Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Orchid Road Ikota Lekki Lagos,₦,"35,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +"600 Sqm Land At Lakeview Estate, Vgc",Lakeview Estate; Vgc Lekki Lagos,₦,"46,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newlt Built Mini Flat For Sale,Chevron Chevron Lekki Lagos,₦,"20,000,000",0,0,0,1 beds,2 baths,2 Toilets +Newlt Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +800 Sqm Land With Governor's Consent,Lakeview Estate; Opposite Vgc Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Semi Detached Duplex,Between 3rd And 4th Roundabout; Close To Nicon Town Lekki Lagos,₦,"57,000,000",0,0,0,6 beds,6 baths,7 Toilets +Fenced And Gated 2 Plots Land With Governor's Consent,Behind Mega Chicken; Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom For Sale,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Off Meadow Hall; Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex + Bq With C Of O,Chevy View Estate; Chevron Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisite 5 Bedroom Terraced Duplex,"Conservative Road; Lafiaji, Opposite Chevron Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Behind Ikota School, Ikota Villa Estate Ikota Lekki Lagos",₦,"45,000,000",0,1,1,4 beds,5 baths,5 Toilets +3 Bedroom Terraced Duplex With Bq,"Orchid Hotel Road; Lafiaji, Opposite Chevron Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,By Chevron Drive; Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Duplex,After Chevron Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +673 Sqm Residential Land With Governor's Consent,Road 12; Vgc Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Well Finished 3 Bedroom Semi Detached Duplex With Bq,Agungi Lekki Lagos,₦,"46,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Fully Serviced 4 Bedroom Terraced Duplex With C Of O & Governor's Consent,Just After Chevron Lekki Lagos,₦,"35,000,000",1,0,0,4 beds,4 baths,5 Toilets +Residential Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Bera Estate Along Chevron Drive Chevron Lekki Lagos,₦,"57,000,000",0,1,1,4 beds,5 baths,5 Toilets +"Brand New, Well Finished 3 Bedroom Semi Detached Duplex + Bq With Governor's Consent",Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +Exquisite Fully Detached 5 Bedroom Duplex + 2 Room Bq With Governor's Consent,Pinnock Beach; Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Luxury, Well Finished 5 Bedroom Detached Duplex",Riwu Street; Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New, Well Finished 4 Bedroom Semi Detached Duplex + Bq With Governor's Consent",Lekki Expressway; Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Chevron Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +700 Sqm Residential Land With C Of O,Normal Road; Vgc Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"By Chevron Drive; Lekki Expressway, Chevron Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Idado Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,. Idado Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Agungi Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Block 65a Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevy View Estate; Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Bera Estate Lekki Lagos,₦,"33,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,"Ikota Villa Estate, Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq, chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,4 baths,5 Toilets +2900 Sqm Land,"By Ocean Crest; Lekki Right, Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With 1 Room Bq,"Megamound Estate; Lekki County Off Lekki Expressway, Ikota Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,. Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, chevy View Estate Chevron Lekki Lagos,₦,"62,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,"Conservation Road; Lekki Express Way, Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,  Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,0 Toilets +3 Bedroom Flat," bera Estate, Off Chevron Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Orchid Road Chevron Lekki Lagos,₦,"39,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,. Agungi Lekki Lagos,₦,"55,000,000",0,1,1,5 beds,5 baths,0 Toilets +1 Hectare Residential Joint Venture Land With C Of O,Elegushi Waterfront By Lekki Garden Estate; Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale,Nte Nicon Town Lekki Lagos,₦,"265,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,0 Toilets +2 Bedroom Terraced Bungalow," south Pointe Estate, Orchid Road, Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,0 Toilets +5 Bedroom Detached Duplex, megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,2 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool And Bq,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Chevron Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +27 Rooms Hotel / Guest House + 5 Room Duplex On 2200 Sqm With C Of O,Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," dele Adeyemi Street, Agungi Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land," lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land," bode Ajakaiye Street, Atlantic View Estate, Alpha Beach Road, Igbo Efon Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,0 Toilets +Land, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex House, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 4bedroom Terrace,Ikota Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Semi Detached Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terraced Duplex,Southern View Estate Oral Estate Lekki Lagos,₦,"44,000,000",1,1,0,4 beds,4 baths,5 Toilets +Residential Land," charles Ezekwe Str, Abijo, Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," charles Ezekwe Street, Abijo, Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Lekki County Homes Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,6 baths,6 Toilets +3 Bedroom Penthouse For Sale In Lekki,Orchid Road Chevron Lekki Lagos,₦,"35,000,000",1,1,0,3 beds,4 baths,4 Toilets +Residential Land For Sale," lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Large 5 Bedrooms Semi Detached Duplexes For Sale In Ocean Bay Estate,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"62,000,000",1,1,1,5 beds,5 baths,5 Toilets +Portable Semi Detached 3 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex," lekki County Homes, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets +Mixed Use Land," behind Lng Estate, With Access From Kushenla Street, Elegushi, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,New Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,By Lekki Toll Gate; Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,By Lekki Toll Gate; Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Alpha Beach Road Opposite Admiralty Estate Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land, zone A Nicon Town Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,. Agungi Lekki Lagos,₦,"30,000,000",0,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land," chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Meadow Hall Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevron Alternative Route, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,  Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,"Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"75,000,000",0,0,1,6 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex," road 1, Off The Lekki – Epe Expressway, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevy View; Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Brand New 6 Bedroom Fully Detached Duplex With Swimming Pool, Penthouse And Rooftop Terrace",Vgc Lekki Lagos,₦,"17,500,000",0,1,0,6 beds,6 baths,6 Toilets +6 Bedrooms Fully Detached Duplex With Bq,Alpha Beach Road; Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Chevron Conservative Route Chevron Lekki Lagos,₦,"45,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Ikota Villa Estate; Ikota Lekki Lagos,₦,"70,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex,. Osapa London Lekki Lagos,₦,"110,000,000",0,0,1,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex With Bq,Lekki County Homes; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With Bq,Idado Estate; Idado Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," orchid Road, Along Funderland, Lafiaji, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Detached Duplex," near Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +Residential Land," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land," freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,By 2nd Toll Gate Lekki Lagos,₦,"47,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Thomas Estate Lekki Lagos,₦,"53,000,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex," chevy View Estate, Chevron Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Idado Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Detached Duplex,  Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Units Of 5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,1,1,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Detached Duplex," chevron, Lekki Phase 2 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,0 Toilets +Residential Land," close To Atican Beach, Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," just After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,6 baths,0 Toilets +4 Bedroom Semi Detached Duplex Wit Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex Wit Bq,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Second Toll Gate Lekki Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Units Of 2 Bedroom Fully Serviced Apartment,Elegushi/ Ikate Lekki Lagos,₦,"45,000,000",0,1,0,2 beds,2 baths,2 Toilets +2 Bedroom Flat,"Orchid Road, By Eleganza Chevron Lekki Lagos",₦,"26,000,000",0,0,1,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex, Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,  Idado Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex,  Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,0 Toilets +Residential Land," mobil Road, Ilaje (by Vgc), Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,"Macaulay Street, Chevy View Estate Chevron Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"74,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built 2 Bedroom Flat,2nd Toll Gate; Ikota Lekki Lagos,₦,"25,000,000",0,1,0,2 beds,2 baths,2 Toilets +4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Detached Duplex,  Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,0 Toilets +Semi Detached Duplex,. Ologolo Lekki Lagos,₦,"60,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,  Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq,Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,. Idado Lekki Lagos,₦,"58,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex," before Chevron, Agungi Lekki Lagos",₦,"68,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached + Bq,"Muritala Eletu Way, Osapa, Lekki, Lagos Osapa London Lekki Lagos",₦,"58,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Detached Duplex With Bq,Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached + Bq,"Muritala Eletu Way, Osapa London Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,. Osapa London Lekki Lagos,₦,"60,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," behind Circle Mall, Osapa London Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Terraced Duplex,"Elegushi, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,0 Toilets +2 Bedroom Flat, Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,0 Toilets +Residential Land, Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Detached Duplex," chevron Alternate, Off Chevron Drive, Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex," orchid Road Eleganza, Just After Chevron Lekki Lagos",₦,"30,000,000",0,0,0,4 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,1,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Oral Estate Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,0 Toilets +Land,"Lafiaji, Shortly After The 2nd Lekki Toll Gate, Igbo Efon Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Terrace Duplex,By 2nd Toll Gate; Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," off Freedom Way, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +Units Of 4 Bedroom Detached Duplex With Bq,By 2nd Toll Gate; Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,1,0,5 beds,6 baths,0 Toilets +2 Bedroom Terraced Bungalow," south Pointe Estate, Along Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"20,000,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Admiralty Estate, Off Alpha Beach Road Igbo Efon Lekki Lagos",₦,"42,000,000",0,0,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,1,0,4 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Lakowe Golf Course , Epe Lekki Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land," freedom Road, Lekki Phase 1 Lekki Lagos",₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex," off Orchid Hotel Road, Lafiaji, Lekki Lagos",₦,"24,000,000",0,0,0,3 beds,3 baths,0 Toilets +5 Bedroom Duplex,Kazeem Eletu Way Osapa London Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment With Gym And Swimming Pool,Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Chevy View Estate; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Elegushi, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Terraced Duplex, orchid Road Lekki Lagos,₦,"35,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,4 baths,5 Toilets +Mixed Use Land," nicon Town, Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex," off Oladimeji Alao Street, Lekki Phase 1 Lekki Lagos",₦,"205,000,000",0,0,0,5 beds,5 baths,0 Toilets +4 Bedroom Semi Detached Duplex," off Kusunla Street, Elegushi, Ikate Lekki Lagos",₦,"70,000,000",0,1,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached Duplex,"By Chevron, Lekki Expressway Chevron Lekki Lagos",₦,"70,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Off Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive, Lekki Expressway Chevron Lekki Lagos",₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,. Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,1,1,6 beds,7 baths,7 Toilets +3 Bedroom Terraced Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex For Sale,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,1,1,4 beds,4 baths,5 Toilets +Mixed Use Land,Balogun Estate Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex, ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,"Off Orchid Road, Ikota Villa Estate Ikota Lekki Lagos",₦,"35,000,000",0,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex," orchid Road, Beside Second Toll Gate Ikota Lekki Lagos",₦,"30,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Newly Built Luxury 4 Bedroom Semi Detached Duplex At Lekki County Estate, Lekki","Lekki County Estate, Lekki Ikota Lekki Lagos",₦,"68,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly And Fantanstically Built Luxury 5 Bedroom Duplex,"Megamond Estate, By Chevron Toll Gate, Ikota Lekki Lagos",₦,"90,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Garden Phase 4 Lekki Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"42,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex For Sale,Chevron Alternative Road Chevron Lekki Lagos,₦,"51,000,000",0,1,0,4 beds,4 baths,4 Toilets +3 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"35,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terraced Duplex, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,0 Toilets +3 Bedroom Terraced Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"1, Emmanuel Ogunsade Street, Off Otunba Street, Itedo, Ikate Lekki Lagos",₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,"Lafiaji, Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,1,1,4 beds,5 baths,6 Toilets +Brand New Luxurious 5 Bedroom Duplex, Ikota Lekki Lagos,₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex," chevron Toll, Lekki Expressway Chevron Lekki Lagos",₦,"30,000,000",0,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"69,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,"Ocean Bay Estate, Orchid Road Lekki Lagos",₦,"46,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Stylishly Finished, Brand New Luxury 5 Bedroom Detached House With Bq",Megamound Estate; Ikota By Toll Gate Chevron Lekki Lagos,₦,"85,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedrooms Duplex,Chevron Estate Chevron Lekki Lagos,₦,"67,000,000",0,1,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq With Swimming Pool,Orchid Hotel Road; By Toll Gate Chevron Lekki Lagos,₦,"52,000,000",1,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq With Governor's Consent,Orchid Hotel Road; By Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Creek Avenue Court Ikota Lekki Lagos,₦,"49,000,000",0,1,1,4 beds,5 baths,5 Toilets +6 Bedroom Duplex,"Megamound Estate, School Bus Stop, Ikota Lekki Lagos",₦,"80,000,000",0,1,1,6 beds,5 baths,5 Toilets +Land,"Resettlement Scheme,off Mobil Road, Ikota Lekki Lagos",₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq And Swimming Pool In Lekki County Homes,Lekki County Homes; Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki County Homes; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nice 3 Bedroom(terrace) Flat,Orchid Bore Road Chevron Lekki Lagos,₦,"25,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex + Bq In A Serviced Estate With Governor's Consent,Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Luxury Fully Detached Duplex With A Domestic Room + Swimming Pool,. Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,5 Toilets +Standard 2 Plots Of Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Plots Of Land, Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,White Oaks Estate Ologolo Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom House, Osapa London Lekki Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex + Bq With C Of O,Lekki County Homes; Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Peninsula; Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,New Road; Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,New Road; Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Lekki County Estate; Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets +2 Units Of New And Nicely Built 4bedroom Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Swimming Pool,Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,3rd Roundabout; Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq And Swimming Pool,Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate; Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex With Bq,After Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,After Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki County Estate; Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Lagos,₦,"5,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,12 Road Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached + Bq,"Muritala Eletu Way, Osapa,lekki,lagos Osapa London Lekki Lagos",₦,"75,000,000",0,1,1,5 beds,5 baths,6 Toilets +Superb 5 Bedroom Complete Detached Mansion,. Vgc Lekki Lagos,₦,"450,000,000",0,1,1,6 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With 1 Room Bq,Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,By Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Detached 5 Bedroom Duplex With One Room Bq,Lekki County Estate; Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Apartment,"Off Remi Olowude Street, Towards The Atlantic Coast., Lekki Right Hand Side Lekki Phase 1 Lekki Lagos",₦,"81,180,000",1,1,0,3 beds,3 baths,3 Toilets +Contemporary 5 Bedroom Detached Duplex,Lekki County Estate; Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +1 Bedroom Apartment,"Off Remi Olowude Street, Towards The Atlantic Coast, Lekki Right Hand Side, Lekki Phase 1 Lekki Lagos",₦,"41,492,000",1,1,0,1 beds,1 baths,1 Toilets +Luxurious 5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Duplex,. Ikate Lekki Lagos,₦,"100,000,000",0,1,0,5 beds,5 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Saheed Elegushi Street Jakande Lekki Lagos,₦,"35,000,000",0,0,1,3 beds,3 baths,3 Toilets +Luxurious 5 Bedroom Duplex,Natalia Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,5 Toilets +A Very Lovely And Spacious 4bedroom Terrance Duplex For Sale,Lakeview Pack 11 Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,4 Toilets +Land At Southern Greens Estate,"Along Orchid Hotel Road, Lafiaji Chevron Lekki Lagos",₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Well Finished 5 Bedroom Duplex With Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"75,000,000",0,1,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,After Chevron Tollgate Ikota Lekki Lagos,₦,"45,000,000",0,0,1,4 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Plus Bq,"Behind World Oil, Ikate Elegushi Ilasan Lekki Lagos",₦,"62,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Along Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex," buene Vista Estate, Off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos",₦,"49,500,000",0,1,1,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"115,000,000",0,0,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,In A Prestigious Estate Agungi Lekki Lagos,₦,"65,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,"Pinnock Beach Estate, Off Lekki Epe Expressway Osapa London Lekki Lagos",₦,"145,000,000",0,0,1,5 beds,5 baths,6 Toilets +Land,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex Plus Bq,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,"Behind Chevron Estate, End Of Peter Ihemesi New Site Chevron Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Plots Of Land By Chevron Tollgate Along Orchid Hotel Road,lafiaji By Chevron Tollgate,lekki","Orchid Hotel Road,lafiaji,lekki Chevron Lekki Lagos",₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, off Lekki Epe Expressway Vgc Lekki Lagos,₦,"120,000,000",0,0,1,5 beds,4 baths,5 Toilets +Furnished And Serviced 5 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"80,000,000",1,1,1,5 beds,5 baths,6 Toilets +"2.4 Plots Of Land Behind Mega Chicken, Lekki",Gedegede Area; Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevy View; Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached Duplex With Bq,Igbo Efon Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Detached Duplex,"Megamound, Lekki County Homes Ikota Lekki Lagos",₦,"120,000,000",0,1,1,5 beds,6 baths,6 Toilets +Commercial Land,"By World Oil And Opposite Nicon Estate, Lekki Epe Express Lekki Phase 1 Lekki Lagos",₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, off Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"130,000,000",0,1,1,4 beds,4 baths,4 Toilets +Residential Land," lekki County Homes, Ikota Villa Estate, Lekki Epe Expressway Ikota Lekki Lagos",₦,"28,000,000",0,1,1,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached With A Bq,Chevy Estate Chevron Lekki Lagos,₦,"110,000,000",0,1,1,4 beds,4 baths,4 Toilets +Luxurious 3 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,. Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Beach Ikota Lekki Lagos,₦,"110,000,000",1,1,1,5 beds,4 baths,4 Toilets +Land,"Agbadon Village, Along Ilaje Road, Behind Emerald Estate. Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Agbadon Village, Along Ilaje Road, Behind Emerald Estate. Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,Eletu Way Jakande Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedrooms Duplex,New Street Chevron Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,7 baths,7 Toilets +5 Bedroom Fully Detached House,Off Hunponu Wusu Road Lekki Phase 1 Lekki Lagos,₦,"135,000,000",1,0,1,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Semi Detached Apartment,Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,1,3 beds,4 baths,4 Toilets +Lekki Epe,Lakowe Golf Course Lekki Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex,Lafiaji Chevron Lekki Lagos,₦,"35,000,000",1,1,0,4 beds,4 baths,5 Toilets +Cofo,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 6 Bedroom Duplex, Chevron Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Duplex,Toll Gate Chevron Lekki Lagos,₦,"49,500,000",0,1,0,4 beds,5 baths,4 Toilets +Dry Land,Trade Zone Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex Plus One Bq,After Chevron Toll Gate Before Mega Chicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached Duplex,Chebron Drive By Chevy View Estate Chevron Lekki Lagos,₦,"37,000,000",1,0,0,3 beds,3 baths,3 Toilets +Fully Finished 7 Bedroom Duplex,By Vgc Ikota Lekki Lagos,₦,"115,000,000",0,1,1,7 beds,6 baths,7 Toilets +4 Bedroom Terraced Duplex,. Ikate Lekki Lagos,₦,"95,000,000",0,1,1,4 beds,5 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,"Off New Shoprite By Aa Rescue, Jakande Osapa London Lekki Lagos",₦,"120,000,000",1,1,1,5 beds,5 baths,5 Toilets +3 Bedroom Luxury Flat,Ochid Estate By Chevron Toll Gate Chevron Lekki Lagos,₦,"33,000,000",1,1,0,3 beds,3 baths,3 Toilets +Hot Newly Finished 4 Bedroom Fully Detached Duplex,. Oral Estate Lekki Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Megamoud Estate Ikota Lekki Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built Fully 5 Bedroom Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"75,000,000",1,1,0,5 beds,5 baths,6 Toilets +7 Bedroom Maisonette,Alpha Beach Road Agungi Lekki Lagos,₦,"300,000,000",1,0,1,7 beds,9 baths,9 Toilets +8 Units Of 4 Bedroom,Osapa London Agungi Lekki Lagos,₦,"480,000,000",1,1,1,0 beds,0 baths,0 Toilets +"Land Of 8,856 Sqm",By Northwest Vgc Vgc Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Fully Detached Duplex With In Built Swimming Pool,Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",1,1,1,4 beds,4 baths,5 Toilets +8 Units Of 4 Bedroom Plus Bq,Osapa London Agungi Lekki Lagos,₦,"480,000,000",0,0,1,8 beds,8 baths,8 Toilets +4 Bedroom Detached Duplex With A Bq,"Creek Avenue Court, After Chevron Toll Gate Ikota Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets +Vip Gardens,Vip Gardens Lakowe Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Semi Detached House,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"155,000,000",1,1,0,5 beds,5 baths,6 Toilets +Governor's Consent,Chaplain Court Osapa London Lekki Lagos,₦,"35,000,000",0,1,0,2 beds,2 baths,3 Toilets +Terrace Duplex With C Of O,Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 4 Bedroom Semi Detached Duplex With Bq,Creek Avenue Court; Ikota Lekki Lagos,₦,"48,000,000",0,1,0,4 beds,6 baths,4 Toilets +Newly Built 3 Bedroom Flat,Atlantic View Estate; Igbo Efon Lekki Lagos,₦,"30,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex,"Bricks House Court, 2nd Tollgate Lekki Chevron Lekki Lagos",₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Bricks Court Estate, 2nd Tollgate Lekki Chevron Lekki Lagos",₦,"53,000,000",0,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Happly Land Estate Opp. Lagos Business School; Lekki Phase 2 Lekki Lagos,₦,"33,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,"Ikota Villa Estate Off Mobil Road, Ikota Lekki Lagos",₦,"20,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,1,0,4 beds,6 baths,6 Toilets +4 Bedroom Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex Plus One Bq,"Chevron, Alternative Route Chevron Lekki Lagos",₦,"65,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex Plus One Bq,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,1,0,4 beds,4 baths,4 Toilets +Exotic 4 Bedroom Semidetached Duplex, Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,"After Chevron Tollgate, Ikota Lekki Lagos",₦,"48,000,000",1,0,0,4 beds,6 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets +Standard Serviced 2 Bedroom With Bq,Osapa London Lekki Lagos,₦,"40,000,000",1,1,1,2 beds,2 baths,2 Toilets +Acres / Plots Of Lands,22 Olumorukun Street Mushin; Lekki Phase 1 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Plots Of Dry Land At Matoks Layout, Alpha Beach Road With Deed Of Assignment And Survey Plan","Matoks Layout; Alpha Beach Road, New Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 8 Units Of 3 Bedroom Services Flat With A Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Sqm Plots Of Land With C Of O,Lakowe; Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Home In The Prestigious And Serene Vgc,"Close 10; Road 3, Vgc Lekki Lagos",₦,"180,000,000",0,1,1,5 beds,5 baths,6 Toilets +Super Luxury House,Kusenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedrooms Duplex, Osapa London Lekki Lagos,₦,"96,000,000",0,1,1,5 beds,5 baths,5 Toilets +Five Bedrooms Duplex,Osapa London Chevron Lekki Lagos,₦,"85,000,000",0,1,1,5 beds,5 baths,5 Toilets +Newly Bult 6 Bedroom Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"160,000,000",0,1,0,0 beds,6 baths,7 Toilets +6 Units Of 5 Bedroom Fully Detached Duplex, Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Units Of 5 Bedroom Detached Duplexe,"Block 10, Plot 6, Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Off New Shoprite Road Osapa London Lekki Lagos,₦,"80,000,000",0,1,0,5 beds,5 baths,5 Toilets +2 Units Of Detached Duplex,"Block 10, Plot 6, Pinnock Beach Estate Osapa London Lekki Lagos",₦,"140,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Massive Semi Detached Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Self Contain Boys Quarters,Rd 22b; Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Semidetached Duplex, Agungi Lekki Lagos,₦,"75,000,000",1,1,1,5 beds,5 baths,5 Toilets +Very Standard 5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",1,1,1,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"80,000,000",0,1,0,4 beds,5 baths,4 Toilets +Land,Off Oba Amusa Chevron Lekki Lagos,₦,"65,000,000",0,1,0,0 beds,0 baths,0 Toilets +Ultra Modern 5 Bedroom Duplex,Udeko Street Chevron Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 2 Unit Of 5 Bedroom Fully Detached Duplex For Sale,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex,Metro Gardens Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Fully Detached Duplex With A Room Bq,Behind The Rock Cathedral Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 2 Unit Of Executive 5 Bedroom Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 6 Bedroom Fully Detached Duplex (distress Sales)with 2 Unit Of Executive Mini Flat,Behind Romeo Gardens Ilasan Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,6 Toilets +"1200 Sqm Secure, Dry Land",Lafiaji; Vgc Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lafiaji Igbo Efon Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +100% Dry Land,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built 5 Bedroom Detached Duplex With Bq,Osapa London Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,1,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki V.g.c Lekki Lagos,₦,"41,000,000",0,0,0,4 beds,5 baths,4 Toilets +Newly Built And Well Finished 4 Bedroom Terraced Duplex With A Room Bq, Ilasan Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Twin Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Luxury Semi Detached Duplex,"Lekki County Homes, Ikota Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Classically Finished 4 Bedroom Luxury Semi Detached Duplex,Bera Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"130,000,000",1,1,0,5 beds,5 baths,6 Toilets +Classically Finished & Humongous 5 Bedroom Luxury Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq, Oral Estate Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets +Wonderfully Finished 5 Bedroom Terrace Town House With Bq,12 Main Street. Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,6 baths,6 Toilets +4 Bedroom Exotically Finished Semi Detached Duplex With Bq,Creek Avenue Court Ikota Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,5 baths,6 Toilets +A 29 Rooms Hotel,"Tunde Seriki Street, Alpha Beach Road, Chevron Lekki Lagos",₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Brand New 4 Bedroom Terrace Duplex,Off Grace Andrews Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exotically Finished 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"48,000,000",0,1,1,4 beds,6 baths,6 Toilets +Brand New Tastefully Finished 5 Bedroom Detached House,Off Admirty Way Lekki Phase 1 Lekki Lagos,₦,"175,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Pinnock Estate Osapa London Lekki Lagos,₦,"250,000,000",1,1,1,5 beds,5 baths,6 Toilets +Lovely Brand New Four Bedroom Terrace Duplex, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"55,000,000",0,1,1,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedrooom Fully Detached Duplex With A Room Bq, Osapa London Lekki Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Lakeshore Gardens, Opposite Amen Estate, Lekki Phase 2 Lekki Lagos",₦,"3,500,000",1,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Units Of 4 Bedrooms,Osapa London Agungi Lekki Lagos,₦,"90,000,000",0,1,1,0 beds,0 baths,0 Toilets +The View 3 Bedroom Luxury Flat + Bq (fully Serviced),Atlantic View Estate; Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +"1,018sqm Land At Abijo Gra Lekki",Abijo Gra Agungi Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 6 Bedroom Miami Style Luxurious House,Royal Gardens Estate Lekki Lekki Lagos,₦,"260,000,000",0,0,0,8 beds,8 baths,8 Toilets +Terraces With Deed Of Assignment,Osapa London/ Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,10 baths,10 Toilets +4 Bedroom Detached Duplex With Excellent Features,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,5 baths,4 Toilets +House At Wealth Land Green Estate,Metusela; Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex At Wealthy Land Green Estate,Lekki Pennisula; Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built Spacious 4 Units Of 5 Bedroom Terraced Duplex With A Room Bq,fitted Kitchen,swimming Pool,etc.",Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built And Nicely Finished 5 Bedroom Semidetached Duplex,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,6 Toilets +Amazing 4 Bedroom Semi Detached Duplex,Chevron Toll Gate; Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely Four Semi Detached House,. Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land With C Of O,"Mary Osadolor Crescent; Chevy View Estate, Chevron Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Palm City Estate. Vgc Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Road 6 Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,By 2nd Toll Gate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opposite Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opposite Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant Luxury 5 Bedrooms With B/q Fully Detached House,Sulaimon Galadima Street. Ikate Lekki Lagos,₦,"79,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Terrace Houses,Grantham Court Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With B/q In Ikota,Around Second Toll Gate. Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fenced Land Approximately 800sqm With C Of O,Lekki Palm City Estate. Vgc Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Luxuriously Finished 4 Bedroom Semi Detached House With Boys Quarters.,Westend Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 5 Bedroom Detached House,Megamound Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedrooms Terrace Duplex + B/q,Victoria Crest Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +Nicely Finished 3 Bedrooms Detached Duplex,"Fortune City, Lekki Phase 1 Lekki Lagos",$,"280,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terraced Duplex,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedrooms Terrace Duplex With 1 Room Ensuit B/q,Nicon Town Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Nicely Finished 4 Bedroom Terraced Duplex,Beside House On Rock Church. Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Terrace Duplex With 1 Room Bq,Lekki Palm City Estate Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +1065 Sqm Corner Pieces Land,Elegusghi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Use Land,Behind Conoil Filling Stattion Ikate Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land For Sale,Behind Conoil Filling Stattion Ikate Lekki Lagos,₦,"73,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superbly Finished 5 Bedrooms Duplex,Famous Emerald Housing Estate Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Terrace Duplex For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Vgc Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Townhouse With 2 Rooms Boys Quarters,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +550 Square Metres Plot Of Land,Pinnock Beach Estate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Northern Foreshore Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Full Plot Of Land,Lake View Park 2 Estate Lekki Phase 1 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Square Metres Plot Of Land,Mobile Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land (750 Square Metres Each),Atlantic View Estate Lekki Phase 1 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Gracefully Built 5 Bedroom Detached Duplex With A Room B/q,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + Bq,Megamound Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Detached Duplex,"Ikota, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex + 1 Room B/q,"Ikota, Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Beautifully Designed 5 Bedroom Detached House + 1 Room Servant Quarters,"Megamound, Ikota Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Lewis Ham London Terrace With A B/q,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury & Newly Built 5 Bedroom Detached Duplex,"Elegushi, Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex + B/q,Elegushi Ikate Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex + B/q,Ikota Villa Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Semi Detached Duplex + B/q, Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Semi Detached + A B/q,"Orchid Hotel Road,beside 2nd Toll Gate Lekki Phase 1 Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + B/q, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + B/q,Chevron Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + B/q, Chevron Lekki Lagos,₦,"58,500,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terraced Duplex + B/q, Chevron Lekki Lagos,₦,"62,500,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + B/q, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + B/q,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Hotel Road Beside 2nd Toll Gate, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex + B/q, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Orchid Hotel Road Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex + B/q, Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Luxury Duplex With 1 Room B/q, Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms B/q, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Osapa Jakande Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex With 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +611 Sqm Land,"Vintage Park Estate, Ikate Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Duplex, Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Semi Detached Duplex With A B/q,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant Luxury 4 Bedroom Terraced Duplex,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex With B/q,Southern View Estate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Semi Detached Duplex,Southern View Estate Off Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Chevron Drive Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Agunigi Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A B/q,Jakande Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Fully Detached 4 Bedroom Duplex With B/q,Ikota Villa Estate Vgc Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 5 Bedroom Fully Detached Duplex With 1 Rooms B/q,Victory Estate Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Gracefully Built 5 Bedroom Detached Duplex With A Room B/q,Victory Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished Semi Detached 4 Bedroom Duplex,"Beside Mega Chicken, Lekki Epe Exressway Ikota Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Shoprite Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 5 Bedroom Fully Detached Duplex With 1 Room B/q,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevy View Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex,Orchid Hotel Road Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached House + B/q,Megamound Estate;lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 1 B/q,Lekki County Homes; Mega Mound Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + B/q,Oral Estate Beside 2nd Toll Gate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Room B/q,Chevron Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Gracefully Built 4 Bedroom Detached Duplex With A Room B/q,Chevron Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +675 Square Metres Land,"Road 3, Close 4 V.g.c Vgc Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +525 Square Metres Land,Road 3 Close 4 Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With 1 Room B/q,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plot Of Land,Ikota Ikota Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Gracefully Built 5 Bedroom Semi Detached With A B/q,Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached House With 2 Maid Rooms,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq For Sale.,Idado Estate Idado Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +600 Square Meter Land For Sale In Lake View Park1,Lakeview Park 1 Vgc Lekki Lagos,₦,"40,000,000",0,0,0, beds, baths, Toilets +A Beautifully Designed 5 Bedroom Detached House With 1 Room Servant Quarters,Lakeview Park 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms B/q.,Lekki Palm City Estate Vgc Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +1300 Square Metres Land,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex With 1 Room Bq,Oral Estate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terraced Duplex With 1 Room Bq,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,Ikate Elegushi Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New & Luxuriously Finished 4 Bedroom Semi Detached Duplex With 1 Room B/q,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Ikota Villa Estate Ikota Lekki Lagos,₦,"26,000,000",0,0,0,2 beds,2 baths,3 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Alternative Route By Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite Newly Built 5 Bedroom Detached Duplex,Alternative Route By Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Newly Built 5 Bedroom Detached Duplex With B/q,Alternative Route By Chevron Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +800 Sqm Land,Megamond Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Sqm Land,Agungi Agungi Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opposite Silver Bird Jakande Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notch 5 Bedroom Semi Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +2022sqm Land,Victoria Garden City Vgc Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Land,"Road 2, Vgc Vgc Lekki Lagos",₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusively Built 4 Bedroom Semi Detached Duplex With B/q,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex +bq,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex Town House With 1 B/q,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +486 Sqm Land,E.l.f. Lekki Phase 1 Lekki Lagos,₦,"9,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Strategically Located Shop In A Complex,Lekki Epe Expressway By Ikota Ikota Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +600 Square Meters Land,Victoria Garden City Vgc Lekki Lagos,₦,"85,000,000",0,0,0, beds, baths, Toilets +900 Square Meters Land,Victoria Garden City Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Square Meters Commercial Land For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +1400 Square Meters Water Front Land For Sale,Victoria Garden City Vgc Lekki Lagos,₦,"145,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With A B/q,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Built 4 Bedroom Semi Detached Duplex,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +1420 Square Meters Land,Alternative Route By Chevron Chevron Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +495 Square Meters Land,Lekki Phase 1 By Elf Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +658 Square Meter Land,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +1321 Square Meters Land,Osapa By Zenith Bank Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +1838 Square Meters Land,Orchid Road By Second Toll Gate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plot Of Land,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Semi Detached Duplex + B/q,Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semi Detached Duplex With 1 Room B/q,Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Fully Detached 4 Bedroom Duplex With A B/q,Osapa London Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex For Sale,Alternative Route By Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached Duplex,Alternative Route By Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Classy 4 Bedroom Semi Detached Duplex,Apperton Place Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex With B/q,"Cooplag Estate, Lafiaji, Inside Orchid Road Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury & Newly Built 5 Bedroom Fully Detached Duple With Servants Quarters,"Elegushi, Chisco Ikate Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +1472 Square Meter Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +657 Square Meter Land,Chevron Alternative Route Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tasteful 4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Terrace Apartment (mortgage Option Available),Off Mobil Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxurious 4 Bedroom Semi Detached Duplex (mortgage Option Available),Rasaq Eletu Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +Neatly Finished And Spacious 3 Bedroom Apartment (mortgage Option Available),Ologolo Axis Ologolo Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Dan Ogbeide Street; Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Off Fola Osibo Street; Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace,Alpha Beach Rd; Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached House,Off Providence Street; Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex Plus Bq,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 3 Bedroom Terrace Duplex,Osapa Lagos Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovely 4 Units Of 4 Bedroom Terrace,Alpha Beach Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built And Well Finished 5 Bedroom Detached Duplex With A Room Bq,Jakande 1st Gate Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5bedroom Duplex With 1room Bq, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq.,Egbuefon Ologolo Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +Well Finished 2 Bedroom Apartment,Oral Estate; Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 3 Bedroom Apartment,Oral Estate; Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House With A Jaccuzi,Off Orchid Hotel Road; Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached House With Bq,. Oral Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built And Nicely Finished 5 Bedroom Semidetached Duplex With A Room Bq,fitted Kitchen,etc.",Off Kazeem Eletu Way Osapa London Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale Exclusively Finished Brand New Luxury 4 Bedroom Mansion Duplex With Bq In A Secured Estate Is Up For Sale.,Oral Estate Oral Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,4 Toilets +"Mega 4 Bedroom Detached Duplex, Lekki",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built And Nicely Finished 5 Bedroom Semi Detached Duplex With A Room Bq,Off Kunshenla Road Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Semi Detached 4 Bedroom House With Bq,Lafiaji Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Newly Built 5 Bedroom Detached Duplex With A Room Bq,",Off Kunshenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Fully Detached Duplex,Oba Amusa Estate Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Hotel Rooms And Penthouses,"Orchid Hotel Road, After 2nd Toll Gate Lekki Phase 2 Lekki Lagos",₦,"800,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Detached House,Femi Okunu Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 3 Bedroom Terrace Duplex With Bq,Lafiaji 2nd Roundabout Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +60 Plots Of Land,Abijo Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +East Amber Estate With Governor's Consent,"Abijo Gra, Beside Nicon Town Ii, Off Lekki Epe Expresswa Lekki Lagos",₦,"11,000,000",0,0,0, beds, baths, Toilets +Corner Piece Land,Pinnock Osapa London Lekki Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Terrace Duplex,Idowu Emma Street Ilasan Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lekki Royal Garden,Ibeju Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 3 Bedroom Block Of Flats For Sale, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 14 Units Of 3 Bedroom Block Of Flats, Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Units Of 5 Bedroom Semi Detached House,Prince Kazeem Eletu Street Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Well Finished 4 Bedroom Terraced Duplex,Alternative Route Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built Fully Detached 5 Bedroom Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3 Units Of 5 Bedroom Terraced Duplex,Off Lekki Expressway Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant Terrace Duplex,. Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exotic 5 Bedroom Fully Detached Duplex With One Room Bq,. Vgc Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 5 Bedroom Fully Detached Duplex,. Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets +Contemporary 5 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Majestic 5 Bedroom Fully Detached Duplex,"Off Chevron Toll Gate; Lekki Epe Expressway, Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Admirable 4 Bedroom Semi Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedrooms Terraced House,"Orchid Hotel Road, chevy View Estate Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +Irresistible 4 Bedroom Semi Detached House,White Oak Estate Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Detached House,Lekki Penninsula Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Semi Detached Building,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House With Bq,. Idado Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Lafiaji Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished Five Bedroom Detached House,. Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished Five Bedroom Detached House, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Majestic Five Bedroom Detached House,. Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Elegant 4 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Four Units Of Four Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built And Well Finished 3 Bedroom Serviced Terraced Duplex,Alternative Route Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House,Lafiaji Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Serviced 4 Bedroom Terrace,Lafiaji Chevron Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House With Excellent Features,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 3 Bedroom Apartment,Pracht Garden Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Acres Of Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex Plus Bq,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex For Sale In Lekki,"Mega Chicken Outlet In Ikota, Before Vgc Ikota Lekki Lagos",₦,"55,000,000",0,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale, off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Top Notch 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale," admiralty Estate, Off Alpha Beach Road, New Road Igbo Efon Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Newly Built 5 Bedroom Detached Duplex With Bq, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex, Ologolo Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"After Chevron Toll Gate, Ikota Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,"A Close, Chevron Alternative, Chevy View Estate Chevron Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale," northern Foreshore Estate, Chevron Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex For Sale," mega Mound, Ikota Villa Estate Ikota Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Elegushi/ Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedrooms Fully Detached Apartment,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,4 baths,4 Toilets +4 Bedroom Terrace Apartment,6 Saki Close Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Opp. Agungi By Domino Pizza; Lekki Right, Ologolo Lekki Lagos",₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Saki Close Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terrace Duplex,Hakeem Dickson Street Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex For Sale," chevron Alternative, Chevy View Estate Chevron Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex, orchid Road By Chevron Roundabout; Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House In Ikota,Pracht Gardens Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex On 700 Sqm,U3 Estate; Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,"Victory Park Estate; Lekki Epe Expressway, Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale,"Orchid Hotel Road, chevy View Estate Lekki Lagos",₦,"31,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land For Sale, off Lekki Epe Expressway Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Elegushi/ Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Residential Land,Off Orchid Hotel Rd Just After The Second Toll Gate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, chevy View Estate; Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex," orchid Hotel Rd; Ikota Villa Estate, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Domestic Quarters, chevy View Estate; Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Idado Estate Idado Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex For Sale,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land For Sale," royal Gardens Estate, Close To Lekki Scheme 2 Lekki Phase 2 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex," lekki Gardens; Chevron Drive, Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Semi Detached Duplex For Sale, third Roundabout Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,6 beds,7 baths,7 Toilets +Lovely 2 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Two Bedroom Flat, Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex With A Nice Bq,Royal Garden Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,Ologolo Road Ologolo Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With A Room Bq (off Plan),Victory Park Estate Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House,. Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Idado Idado Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"125,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale, ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land For Sale, behind Prime Water Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Mini Flat For Sale,Lekki Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex., Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq...,Westend Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Elegushi; Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built And Fantastically Finished 5 Bedroom Detached Duplex With A Room Bq,Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 6 Bedroom House With A Swimming Pool And A Bq,Pinnock Beach Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex On 500 Sqm, off Chevron Drive; Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets +8 Bedroom Detached Duplex,. Vgc Lekki Lagos,₦,"270,000,000",0,0,0,8 beds,8 baths,9 Toilets +4 Bedroom Semi Detached Duplex For Sale, off Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex, . Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Semi Detached House With Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Constructed 4 Bedroom Terrace House With A Room Bq At Crest Estate,"Orchid Road, Chevron Area, Lekki, Lagsos. Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Constructed And Tastefully Finished 4 Bedroom Semi Detached House At Beuna Vista Estate, Orchid Road, Lekki, Lagos","Orchid Road, By Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale," orchid Road, Ikota Villa Estate Ikota Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Residential Land, lake View Estate Phase 2; Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,Lake View Estate Phase 2; Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Executive Detached House,Nicon Town Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,7 baths,7 Toilets +3 Bedroom Terraced Duplex," ocean Bay Estate By Orchid Rd; Lafiaji, Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex, chevy View Estate; Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Adorable 4 Bedroom Duplex A,Lekki Gardens 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Thomas Estate Lekki Phase 2 Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,5 baths,5 Toilets +Splendid 5 Bedroom Duplex For Sale,Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Abraham Adesanya Roundabout Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built And Excellently Finished 2 Units Of 5 Bedroom Detached Duplex With A Room Bq, Fitted Kitchen",Megamond Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Well Finished 2 Units Of 4 Bedroom Semidetached Duplex With A Room Bq,Adebisi Oyinlola Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Finished 5 Bedroom Duplex In Lekki For Sale,Alternative Route Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +1100sqm Of Land,Twin Lake Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Terrace In Lekki,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +"5 Bed Detached Duplex Plus Bq: Chevy View Estate, Chevron, Lekki","Chevy View Estate, Chevron Lekki Phase 2 Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 10 Units Of 2 Bedroom Serviced Apartment,By Mega Chicken Ikota Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached Duplex,Mobil Road Before Ajah Bridge; Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex On 660 Sqm,. Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terraced Duplex,Victoria Crest; Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached House,Osapa Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Detached House With Bq And Swimming Pool,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Contemporary Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House With Bq,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Superb 5 Bedroom Terraced Duplex,Oral Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,6 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,3rd Round About By Nike Art Gallery; Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Super Luxury Finished Detached Duplex With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Superbly Built 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +70% To Completion 4 Room Duplex,Lekki Garden Homes 3 At Abraham Adesanya Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Fully Detached House With A Room Bq, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Terrace Duplex,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Terrace House,Ologolo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 5bedroom Duplex With Bq,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Terrace Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Serviced 4 Bedroom Terrace Duplex,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Terrace With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Staff Quarters, idado Estate; Idado Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fabulous 2 Blocks Of 4 Bedroom Apartments & 3 Bedroom Apartments,Eyitayo's Court Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +Gorgeous 2 Units Of 4 Bedroom Duplex,Victory Park Estate; Jakande Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Duplex With Swimming Pool & Pent Roof,"Victory Park Estate, Jakande Lekki Lagos",₦,"195,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Fully Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached House With Bq,Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Off Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Friend’s Colony Estate Agungi Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,3 baths,4 Toilets +"5 Bed Duplex With Pool, Chevy Estate, Lekki, Lagos",Chevy View Estate Lekki Phase 2 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 6 Units Of 4 Bedroom Spacious Terraced Duplex With A Room Bq,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex All Room Ensuite At Jakande Lekki For Sale,Jakande Jakande Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 5 Bedroom Semi Detached Duplex,After Circle Mall (shoprite) Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +1200 Sqm Land,Rocky Drive Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +800sqm And 700sqm Set Back Prime Land(fenced And Gated),Lekki Epe Expressway; Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Finished 5 Bedroom Fully Detached House,Osapa Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Orchid Road Beside Cooplag Garden Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Excellently Finished 5 Bedroom Detached Duplex With A Room Bq,Megamond Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fabulous Contemporary Building,Arcadia Grove Estate Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex,"Megamond Estate, Lekki County Ikota Lekki Lagos",₦,"110,000,000",0,0,0,6 beds,5 baths,5 Toilets +"Newly Built And Wonderfully Finished 2 Units Of 4 Bedroom Detached Duplex With A Room Bq, Fitted Kitchen",Megamond Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxury Finished Detached Duplex With Bq,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Terraced Duplex,. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land Available,Lekki Rose Garden Osokoro Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Lekki Phase2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Units Of 5 Bedroom Fully Detached Duplex With Bq,Megamound Estate; Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Fully Detached 4 Bedroom Duplex In Mega Mind Estate, Lekki County","Lekki, Ajah Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built Luxury 5 Bedroom Semi Detached Duplex With A Room Bq And Fitted Kitchen,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached House,Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Southern Green Estate, Lekki","Southern Green Estate, Lafiaji Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Luxury Maisonette With A Room Bq,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Apartment,Beside Spar Shopping Mall Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Terraced Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex At Chevron Lekki,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Finished 2 Bedroom Flat,. Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 5 Bedroom Fully Detached House With Excellent Features,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex With Bq En Suite,Chevy View Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Contemporary Detached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex At Ikate Lekki,Off Conoil Street Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built And Well Finished With Architectural Designed 3d 5 Bedroom,. Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,5 Toilets +Fully Detached 4 Bedroom With Bq For Sale,Chevron Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Silky Touch Mall(uncompleted),"3rd Roundabout, Lekki, Phase 1 Lekki Phase 1 Lekki Lagos",₦,"570,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Kunsenla Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 4 Bedroom Semi Detached Duplex With Bq,Megamound Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Abioro Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fantastic 5 Bedroom Duplex At Jakande Lekki,Jakande Lekki Jakande Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flats,Abioro Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Abioro Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Oladimeji Alao Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Bungalow All Ensuite Sitting On A Plot Of Land,Behind Lagos Business School Lekki Lagos,₦,"25,000,000",0,0,0,4 beds,4 baths,0 Toilets +4 Bedroom Duplex,Oladimeji Alao Ikate Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 5 Bedroom Mansions With Swimming Pool,Victoria Estate Park Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4/5 Bedroom Terraced Duplex,. Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautiful 5 Bedrooms Detached Duplex + Bq,. Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,. Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Well Finished And Furnished Hotel Of 16 Rooms, Lekki Phase 1 Lekki Lagos,₦,"590,000,000",0,0,0,10 beds,0 baths,10 Toilets +Top Notch 3 Bedroom Terraced Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terraced Duplex,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Terraced Duplex,Oral Estate Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House With Excellent Features,. Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 3 Bedroom Duplex,Babatope Bejide Crescent Off Folaoshibo Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built Massive 6 Bedroom Detached Duplex With Bq (all Rooms En Suite),Marwa Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Flats Of 3 Bedrooms Each With A Bq (governors Consent),Ologolo Agungi Lekki Lagos,₦,"132,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 5 Bedroom Mansion,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fantastic 4 Bedroom Semi Detached Duplex,. Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +12 Units Of Luxurious 5 Bedroom Beautifully Built Terraced House,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,. Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex All Room En Suite,. Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land Available,Lakowe Golf And County Estate Road Lekki Phase 1 Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Completed House For Sale,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"98,000,000",0,0,0,8 beds,5 baths,5 Toilets +Newly Built And Fantastically Finished Luxurious Detached Bungalow,South Pointe Estate Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,5 baths,5 Toilets +Newly Built Palatial 4 Bedroom Semi Detached Duplex With Quality Fittings,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land In A Fast Developing Area,Ibrahim Odofin Street Agungi Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale 4 Bedroom Semi Detached Duplex Plus Bq,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Bera Estate Off Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Wing Of Duplex,Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Ologolo By Elegushi, Facing Atlantic View Estate Agungi Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oba Yekini Elegushi Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land With C/o At Khl Gardens Phase 2 Sangotedo,"Okun Mopo, Off Monastery Road, Sangotedo Lekki Phase 2 Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Pent House With A Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Elegant 4 Bedroom Semi Detached Duplex At Chevron Alternative,Chevron Alternative Ikate Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisitely Finished 5 Bedroom Semi Detached Duplex With Bq For Sale At Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Boys Quarters,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Boys Quarters,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos. Chevron Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Furnished Fully Detached 6 Bedroom Duplex For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,5 baths,5 Toilets +Fantastic 2 Units Of 4 Bedroom Semi Detached Duplex Apartment,"Westend Estate, Ikota Villa Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Block Of Flats On A Full Plot,. Agungi Lekki Lagos,₦,"131,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Block Of 4 Flats On Full Plot Of Land,. Agungi Lekki Lagos,₦,"131,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Osapa Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Flat,Alpha Beach Road Jakande Lekki Lagos,₦,"18,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Fantastic Newly Built Duplex At Chevron Estate, Lekki",Chevron Estate Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Superb 5 Bedroom Fully Detached Duplex With Bq And Swim Pool At Lekki County,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"123,000,000",0,0,0,5 beds,5 baths,5 Toilets +Astonishing 4 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,0 Toilets +"A Plot Of Land Measuring 900sqm Strategically Located In A Built Up Area At Lekki Scheme 2,lekki.",Lekki Phase 2. Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Luxury Finished Detached Duplex With Bq,Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +650sqm Land,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +676sqm Of Land,Bera Estate Chevron Lekki Lagos,₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +842sqm Of Land,Off Gbolahan Salami Agungi Lekki Lagos,₦,"71,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq For Sale At Lekki County Home,Lekki County Home Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex Available At Osapa London,"Behind Circle Mall, Shoprite Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets +Palatial 5 Bedroom Detached Duplex,Lekki Phase2 Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached +bq & 5 Bedroom Fully Detached And Bq,"Buene Vista Estate, By Chevron Toll Gate Lekki Phase 1 Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets +Event Center,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,6 Toilets +Brand New 4 Bedroom Duplexes,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Furnished Duplexe Plus Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Classy & Spacious 4 Bedroom Duplex,Off Admiralty Way. Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Terrace Duplex,"Alpha Beach Road, Before Chevron Drive. Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Mansionette On 2 Floors,Behind Spg Hq Ologolo Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Duplex House, Agungi Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisitely Finished 2 Bedroom Flat With Bq,Osapa Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Plots Of Land,Mopo Akinlade Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb And Tastefully Furnished 4 Bedroom And 3 Bedroom Terrace Duplex With Bq And Swimming Pool,Shell Estate Lekki Phase 2 Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +700sqm Of Land,Road 6 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex For Sale At Royal Gardens Estate Ajah,"Royal Gardens Estate, By Ajah Flyover Bridge Idado Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built And Well Finished With Architectural Designed 3d 5 Bedroom Duplex,. Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex + One Room Bq,"Agungi Ajiran, Agungi Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace + Bq,. Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious Fully Detached 4 Bedroom Duplex (mortgage Option Available),Off Oba Amusa Street Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 3 Bedroom Terrace Duplex,"Victoria Crest Iii, Ilaje After The Second Toll Gate Lekki Lagos",₦,"32,750,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,. Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Residential Land,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land At New Road Igbon Efon, Lekki",New Road Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom For Sale At Stillwaters Garden, Ikate, Lekki",Stillwaters Garden Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,4 baths,4 Toilets +Semi Detached Bungalow For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Duplex With Quality Finishing In Vgc For Sale,Vgc Lagos Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Metro Garden Estate Lekki Phase 1,Metro Garden Estate Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,0 Toilets +Nicely Finished Detached 5 Bedroom House,Shoprite Road Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Well Finished 4 Bedroom Semi Detached Duplex In Ikota, By Vgc, Lekki",Ikota Vgc Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Units 3 Bedroom Flat,Ologolo Village Road Agungi Lekki Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +"A Well Design, Work In Progress 4 Bedrooms Detached Duplex",Chijioke Chuwkuma Street Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex For Sale, road 2 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely Newly Built 4 Bedroom Semi Detached Duplex,"Agungi,lekki Agungi Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex," sapphire Estate; Lekki Expressway, Lekki Lagos",₦,"26,000,000",0,0,0,5 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached House,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Fully Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Contemporary Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex For Sale," off Chevron Drive, Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale," by Conoil Oil Junction, Beside Lekki Gardens, Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex For Sale," omoriere Johnson Street, Lekki Phase 1, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"92,500,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Semi Detached Duplex For Sale," gra, Abijo, Lekki, Lagos Lekki Lagos",₦,"16,000,000",0,0,0,2 beds,2 baths,3 Toilets +Detached Duplex, . Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive Four Bedroom Terrace Duplex,Northern Foreshore Osapa London Lekki Lagos,₦,"70,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury Four (4) Bedroom Terrace Duplex ( Promo Offer),Conservation Park Road Chevron Lekki Lagos,₦,"40,000,000",1,1,1,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom With Bq,"Chief Bamidele Eletu Streetosapa London Lekki, Lagos. Osapa London Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 4 Bed Semi Detached Duplex With Bq,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fenced Plots Of Land,Kudirat Salami Street Agungi Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Fully Detached House With Bq,Vgc Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 5 Bedroom Fully Detached Duplex With Bq,"Ikate, Elegunshi Lekki Ikate Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxury 5 Bedroom Duplex,Northern Foreshore Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Apartment,Safecourt Apartment Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Flat,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious Fully Furnished 4 Bedroom Semi Detach Duplex Plus Bq,Atlantic View Estate Alpha Beach New Road Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +"800sqm Of Land In Cowrie Creek Estate, Ikate",Spar Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxurious 5 Bedroom Detached Duplex,"Lekki County Homes Estate, Megamond Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom Fully Detached House,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished Four Bedroom Semi Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached House,Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki County Homes Ikota Lekki Lagos,₦,"34,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Fully Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House With Bq,Buene Vista Estate By Chevron Toll Gate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly And Trustfully Built 5 Bedrooms Fully Detached Duplex With Bq,"West End Estate Of Lekki County Estate, Lekki Ikota Lekki Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +600sqm Land,"Lafiaji, Behind Cooplag (shell Estate) Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Terraced Duplex,Before Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exotic 5 Bedroom Semi Detached Duplex,Lekki County Homes Estate (megamond) Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House,Plantinum Way Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"47,999,999",0,1,0,4 beds,4 baths,5 Toilets +Land At Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Southern Greens Estate,Lafiaji Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Fully Detached Duplex,"Osapa , Lekki Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Newly Built 5 Bedroom Fully Detached Duplex With Attached Bq,",Lekki 1 Right Side Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Nicely Built 4 Bedroom Terrace Duplex,Lekki 1 Right Side Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Duplex,Royalty Road Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Luxuriously Built 5 Bedroom Fully Detached Duplex With 2 Room Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Newly Built 6 Bedroom Fully Detached Duplex With 2 Rooms Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets +A Newly Built 5 Bedroom Fully Detached Duplex And A Room Boy’s Quarter,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Tastefully Built 5 Bedroom Fully Detached Duplex With 2 Room Boy’s Quarter,Lekki Nicon Town Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +Cheap Affordable Plots Of Dry Land,Lekki Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Trustfully Finished Newly 5 Bedroom Duplex With Bq,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Four (4) Bedroom Terrace,"Whitesands Street, Lekki Phase 1 Ikate Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House,Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Plots Of Land, Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished 4 Bedroom Detached Duplex With Bq,"Bera Estate , Lekki Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Well Furnished 5 Bedroom Fully Detached Duplex With A Room Boy’s Quarter,Lekki Chevron Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Terrace With Bq,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Trustfully Newly Built 5 Bedrooms Semi Detached Duplex,Lekki Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 6 Bedroom Semi Detached House With Bq,"Victory Park, Osapa Osapa London Lekki Lagos",₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Terrace House With Bq,Osapa Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of Newly Built 4 Bedroom Terrace Duplex With Bq,"Alantic View Estate,by New Road Chevron Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Built 4 Bedroom Fully Detached Duplex,Off Adebayo Street Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 3 Unit Of Fully 4 Bedroom Detached Duplex,"Ikota, Lekki Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With A Room Bq,Beside Elf Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Buene Vista Estate By Chevron Toll Gate Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,1 Lekki Stre Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +Southern Green Estate,1 Lifiaji Str Lekki Lekki Lagos,₦,"18,000,000",0,0,0,10 beds,10 baths,10 Toilets +Lovely Detached 4 Bedrooms Duplex With Bq,Olaniyi Street Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exclusive 4 Bedroom Semi Detached House,Chief Bamidele Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Dele Adedeji Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,0 Toilets +7 Bedroom Fully Detached Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Carttin Gate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +7 Bedroom Fully Detached Duplex,Awudu Ekpekha Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds,0 baths,0 Toilets +10 Units Of 3 Bedroom Apartments,Eyitayo's Court Oral Estate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4.2 Hectares Of Fenced Land,Maiyegun Tourism Scheme Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +12.5 Hectares Of Fenced Land,Maiyegun Tourism Scheme By Alpha Beach Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Corner Piece Land Measuring 3,600sqm",Behind Femi Okunnu Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogumbo Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Bq,Mega Mound Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Terrace House (mortgage Option Available),Orchid Road Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House With Bq (mortgage Option Available),Orchid Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +9 Plots Of Land Located On Orchid Road,After Lakeshore And Ocean Bay Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 Units Of 4 Bedroom Semi Detached Duplex With Bq ( Off Plan),By Domino's Pizza Agungi Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace House,Atlantic Boulevard Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Nos Of 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex In Chevy View With 1 Room Bq,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Duplex,Muritala Eletu Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Well Finished 5 Bedroom Fully Detached House In Ikota, By Chevron","By Chevron, Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq (mortgage Option Available),Westend Estate Ikota Lekki Lagos,₦,"39,500,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 3 Bedroom Luxury Flats (mortgage Option Available),Atlanticview Estate Lekki Lagos,₦,"35,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Luxury Semi Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +A 700sqm Fenced Land,Ilasan New Road Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex Bychevron, Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terrace Apartments With Bq (mortgage Option Available),Aaron Irabor Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Luxury Townhouse With Bq & Swimming Pool (mortgage Option Available),Femi Olatunji Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Luxury Semi Detached Duplex (mortgage Option Available),Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex In Ikota, Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Magnificent 5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace At Abiola Court 11,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Mansion At Megamond,Megamond Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Detached Duplex,Atlantic Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 4 Bedroom Terraced Duplex With Bq,Ikota Villa 1 Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Fully Detached House With Bq,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex,Admiral Okoi Close Ikate Lekki Lagos,₦,"65,000,000",0,0,0,6 beds,6 baths,7 Toilets +Range Of Plot Sizes Of Land,"Victory Park Estate, Behind Femi Okunu Estate And Shoprite Mall Jakande Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex With A Room Boys Quarter,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Newly Built 5 Bedrooms Detached Duplex + Bq,","Plot 8 Chief Bashiru Street, Oral Estate, Lekki, Chevron Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +1340 Sqm Of Land,"By Agungi, Lekki Express Way, Lekki Agungi Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Chevy View Estate. Chevron Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Semi Detached House (ongoing Construction),"Chief Bamidele Eletu Avenue, Opposite Victory Park, Osapa London Lekki Lagos",₦,"65,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,"Atlantic View Estate, Alpha Beach Road Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New Ultra Luxurious 5 Bedroom Duplex With A Room Bq,Lekki County Homes Ikota Lekki Lagos,₦,"138,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Executive 5 Bedrooms Detached House + Penthouse,pool,gym,in House Cinema",Arcadia Grove Estate Jakande Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Terrace House,Off Royal Garden Estate Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House | Off Plan,"Orchid Road, By Lekki Conservative, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Furnished 6 Bedroom Duplex (maine Style),Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrance Duplex,Lekki Ph 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Recheal Nwangwu Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,By Orchid Hotel Road Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace House With B/q For Sale In Osapa London, Lekki", Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With Bq,Alternative Route Chevron Lekki Lagos,₦,"102,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Full Plot Of Land,New Road Alpha Beach Lekki Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Atlantic View Estate Lekki Phase 2 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"At Ikota Villa, A Min Drive From Chevron Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detaced Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Sweet 5 Bedroom Detached House With 2 Room Bq,Calton Gate Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House, Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached House,"Idado, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"8,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Nos Of 4 Bedroom Terrance Apartment With One Room Bq,Osapa London Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +Standard 4 Bedroom Duplex,Lekki Drive Ikota Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex With With 1 Room Bq,Mobolaji Johnson Estate Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +45 Rooms Functional Hotel With 2 Wings 2 Bedrooms Penthouse,"Adjacent Chevron Hq, Lekki Chevron Lekki Lagos",₦,"600,000,000",0,0,0,1 beds,0 baths,1 Toilets +4 Bedroom Terrace Duplex,Serviced Estate Bh Ikota Chevron Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Over 300 Dry Plots Of Land,"In Stonehenge Estate, Lafiaji, Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 4 Bedrooms Semi Detached Duplex, Oral Estate, Lekki Second Toll Gate, By Chevron.","8 Bahiru Street, Oral Estate, Chevron Lekki Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land,Ikota Area Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 5 Bedroom Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Semi Detached Duplex With Bq,Oakville Estate. Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,"Urban Base Estate, Bogije Lekki Lagos",₦,"6,800,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Detached House With Bq,Victory Park Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +35 Unit Of 4 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Detached House With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Serviced Apartment,Spar Road Ikate Lekki Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Contemporary Detached House With Bq,Pinnock Estate Ikota Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +10000 Square Meters Land Space, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Terrace Duplex,Elegushi Road 4 Jakande Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +"1,390.47 Square Metres Corner Piece Plot Of Land",Lekki Phase Ii Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Built 4 Bedroom Semi Detached Duplex,"12a Grace Anjous Drive, Off Adebayo Street, Admiralty Way Lekki Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Built 4 Bedroom Duplex,Back Of Mega Chicken Ikota Lekk Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex Inside Vgc,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached House In Chevy View,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,5 Toilets +Exquisitely Built 5 Bedroom House,Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,5 Toilets +Newly Built 5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,6 baths,5 Toilets +Newly Built 4 Bedroom Detached House,Chevron Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House,Chevron Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Twin 4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets +Newly Built 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 3 Bedroom Flat In Ikate,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex,Megamond Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3bedrooms Flat With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 4 Bedroom Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detach Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Duplex With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 4 Bedroom Duplex,Orchid Hotel Road Ikota Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 3 Bedroom Duplex Terrace With 1 Bq,Orchid Hotel Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets +"Duplex Promo Sale At Ikota, Chevron Area, Before Vgc, Lekki, Lagos.",Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonettes And 2 Bedroom Apartments ( Off Plan),"Oral Estate, By Chevron Toll Gate Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Palatial 4 Bedrooms Detached Duplex.,Rasaq Eletu Street. Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,4 Toilets +Contemporary 5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +"8 Units Of 2 Bedroom Luxury Apartments In Ikota, By Chevron, Lekki", Ikota Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,"By 2nd Roundabout, Marwa Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Vgc, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eleko Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Semi Detached Duplex With Bq,Dillon Off Agungi/ajiran Road Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Luxury Semi Detached Duplex With Penthouse (mortgage Option Available),Ologolo Close Agungi Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Units Of Tastefully Finished 5 Bedroom Terrace Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Igbo Efon Along Spg Road Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Flat,Bera Street Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Terrace Apartment,Orchid Road Lafiaji Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of Brand New 4 Bedroom Duplexes At Chevron Drive,Chevron Drive Lekki Lagos,₦,"7,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 4 Bedroom Semi Detached House,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5bedroom Fully Detached House With Bq,Pinnock Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Detached Duplex,Chevi View Idado Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Brand New 4 Bedroom Fully Detached House,Osapa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,"Northpointe Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Terrace With Bq,Collins Ikate Lekki Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 3 Bedroom Terrace Duplex,Altternative Road Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +Beautifully Finished 4 Bedroom Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Sangotedo Ajah Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +500sqm Land,Bogije Lekki Phase 1 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom House,Plantinum Way Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Furnished 5 Bedroom Detached Duplex,5 Streets Estate Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikate Elegushi Off Kusela Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opposite Germain Auto Center Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex,New Road Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,0 Toilets +Luxury 5 Bedroom Fully Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,7 baths,8 Toilets +4 Plot Of Land,"Behind Rosemary Gardens Estate, Lekki Ilasan Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 10 Flat Of 2 Bedroom,Ikota Villa Estate Ikota Lekki Lagos,₦,"220,000,000",0,0,0,2 beds,2 baths,3 Toilets +"A 914m2, 992m2 & 1,200m2 Land", Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000m2 Of Land", Chevron Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +1 Hectare Of Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A 2,400m2 Land",The Rock Drive Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Daniel Court, Off Orchid Hotel Road, After Chevron Roundabout Chevron Lekki Lagos",₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +"4 Bedrooms Semi Detached Duplex + 2 Rooms Bq,",Circle Mall Drive (shop Rite) Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets +"A Fully Fenced And Gated Bare Land Measuring 1,147sqm,","Opposite Goshen Estate, Behind Lekki Updc Estate. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +River View 3 Bedroom Penthouse,Ladipo Latinwo Crescent Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Fully Detached Duplex,Lekki County Homes Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +1.5 Plot Of Land,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,0 baths,0 Toilets +1400 Sqm Of Land,Ikate Bus Stop Ikate Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 4 Bedroom Semi Detached House With Fitted Kitchen And Bq For Sale At Ikate,lekki.", Ikate Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace House,Jeremiah Ugwu Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Land At Northville Estate, Bogije Lekki",Bogije Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Osapa London Jakande Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Elevation Church Jakande Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +800 And 1000 Sqm Of Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 5 Bedroom Detached House For Sale At Victory Park Estate, Jakande, Lekki", Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detach Duplex,Lekki County Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Jakande Bus Stop Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,"Near 3rd Roundabout, Lekki Express Way, Lekki Ikate Lekki Lagos",₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,7mins Drive From The Ajah Jubilee Bridge And About 4 Mins Drive From The Lekki Epe Expressway. Lekki Phase 2 Lekki Lagos,₦,"5,250,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Of Land,Lafiaji Chevron Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +300sqm Land,"Opposite Amen Estate Phase 2, Eleko Beach Rd Lekki Phase 2 Lekki Lagos",₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex,Oribanwa Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Oribanwa Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,4 beds,4 baths,5 Toilets +"Dry Land At Brooklyn Court Okun Imedu Ibeju Lekki, Lagos",Okun Imedu Lekki Lekki Lagos,₦,"800,000",0,0,0, beds, baths, Toilets +Camberwall Estate @ Eleko Rd On Promo Buy & Build With Instant Allocation,Eleko Road Besides Amen Estate Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets +Luxurious Neatly And Well Finished 4bedroom Semi Detached Duplex,Star Estate Lekki Forth Round About Behind Shopprite Osapa 2nd Roundabout Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2000sqm Waterfront Land Along Road In Vgc,Road 2 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Hakeem Dickson Street Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,4 Toilets +3 Bedroom Terrance Duplex,Victoria Crest Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Luxury Apartment With Bq (mortgage Option Available),Oniru Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets +A 3 Bedroom Luxurious Apartment,Josemaria Escriva Street. Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,3 Toilets +4 Bedroom Detached Duplex,Bakare Estate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Prime Ocean / Water Front Land,"Jakande, Osapa Osapa London Lekki Lagos",₦,"95,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonettes,Oba Amusa Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"20,000,000",0,0,0,2 beds,3 baths,2 Toilets +Prime Commercial Land Along Lekki Express By Chevron,"By Chevron, Along Lekki Expressway Chevron Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,400sqm Of Land",Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Off Chevron Drive Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Terrace With Bq,Uac Gardens Road Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +"800sqm Of Land In Lakeview Estate, Opp Vgc","Lakeview Gardens, By Vgc Vgc Lekki Lagos",₦,"57,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Semi Detached Duplex + Bq (mortgage Option Available),Kudirat Salami Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex (mortgage Option Available),Ikota Estate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Floors Of Luxury Office Building In Lekki Phase 1 (off Plan),Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,0 baths,10 Toilets +Land,Lekki Advert Lekki Phase 1 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat Water Front,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"47,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Duplex In Lekki,Oba Ogbagba Close Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Semi Detached House With Bq For Sale,Ologolo Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely 5 Bedrooms Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 5 Bedroom Fully Detached Duplex,"Megamound, Lekki County Ikota Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +Well Built 4 Bedroom Semi Detached Duplex,Ologola Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Piccadilly St. Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely 3 Bedroom Flat,"Phase 3, Pinnock Beach Estate, Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedroom Duplex,"Phase 3, Pinnock Beach Estate, Osapa London. Lekki Osapa London Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Just A Few Minutes Away From Victoria Garden City Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette Duplex,Oba Amusa Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Afordable Land At Ablaq Avenue Off Monastery Road, Sangotedo, Lekki Ph 2","Ablaq Avenue Off Monastery Road. Sangotedo, Lekki Ph 2 Lekki Phase 2 Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Rasheed Alaba William Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite And Tastefully Finished 5 Bedroom Mansion For Sale At Arcadia Groove Estate, Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Serviced Lovely And Perfectly Finished 4 Bedroom Semi Detached Duplex With A Room Self Contain Bq,Cooplag Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Lekki Right Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +7 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,9 baths,9 Toilets +Brand New 5 Bedroom Detached Duplex For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Story Building And A Duplex,Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Approximately 18,000 Sqm Of Land",Baderinwa Alabi Street Between 1st/2nd Round About Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Express Way Lekki Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Arium Estate,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Rent,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Vgc, Vgc Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Brand New 5 Bedroom Detached Duplex At Victory Park Estate, Osapa",Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land At Southern Greens Estate,Rasheed Olukosi Street Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,"Lekki Peninsula, Lekki Phase 2 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +10 Bedroom Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Brand New 5 Bedroom Detached Duplex At Victory Park Estate, Osapa",Victory Park Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,Road 5 Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached With A Bq (off Plan),Megamound Estate Lekky County Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,6 beds,6 baths,7 Toilets +A Newly Built 4 Bedroom Semi Detached House With A Bq,Megamound Estates. Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,6 Toilets +(4units) Of Newly Built 4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land At Urban Base Estate,"Along Lekki Epr Expressway, Bogije Lekki Phase 2 Lekki Lagos",₦,"7,600,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 5 Bedroom Duplex + 1 Room Bq,Friends Colony Agungi Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +Land,Abijo Gra Lekki Phase 2 Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Townhouse + 1 Room Servant Quarters,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced Plots Of Land,Vip Estate By Shoprite Road Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Direct Mandate: Luxury 5 Bedroom Detached Duplex With Bq.,"Near Chevron Roundabout, Circle Mall Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace House,Abiola Courts Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +600sqm Dry Land,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Semi Detached Duplex Location:lekki Phase 1, Price N120m",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex,"Off Durosimi Etti, Lekki Phase 1, Lagos Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5 Bedroom Fully Detached Duplex,Road 4 Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House,Osapa Lekki Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace House With A Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Idado Idado Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +950sqm Land,"Igbokusu, By Dillion Office, Jakande Jakande Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Three Numbers Of 800sqm Land,"Off Conoil Road, Ikate Elegushi Ikate Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Luxury Bedroom,Road 2 Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Plots,"Beside Kicc Church, Osapa Osapa London Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +679 Sqm Land,Itedo Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Land,"Freedom Way, Lekki Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice 5 Bedroom Duplex,Megamond Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached House,Westend Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom House,Osapa Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Victory Park Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Idado Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Victory Park Agungi Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom House,Ikate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Zone C Ikate Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Zone B Ikate Lekki Lagos,₦,"390,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000 Square Meters Of Land,Zone C Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Square Meters,Zone C Ikate Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Alpha Beach Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Chevron Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace,Oniru Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Ikate Lekki Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Ikate Lekki Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Duplex,"Ikota, Lekki Ajah Beside Mega Chicken Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,5 Toilets +Luxury 5 Bedroom House,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisitely Finished And Very Spacious 5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Land At Northville Estate,Lekki Epe Expressway Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 4 Bedroom With A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxurious 5 Bedrooms Duplex,Chevy View Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 3 Bedroom Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedroom Semi Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 5 Bedroom Contemporary House With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Trustfully Finished 5 Bedroom Terrace Duplex,"Lekki Ajah, Mobil Road Lekki Lekki Lagos",₦,"35,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Contemporary House With A Room Bq,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached Duplex,"Buena Vista Estate, Eti Osa, Chevron Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisitely Built 4 Bedroom Detached Duplex,Orchids Hotel Road By Second Toll Gate Chevron Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury Built 5 Bedroom Detached Duplex,8 Sulieman Galadinma Off Chisco Bus Stop Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Alternative Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Units Of Furnished 4 Bedroom Terrace Duplex,Orchid/chevron Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached With Bq,"Buene Vista Estate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets +610m² Of Land,By Orchid Hotel Road Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace House,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +600sqm Of Land,Shortly After Lekki 2nd Toll Gate Ikota Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikate Ikate Lekki Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully And Finished 4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Osapa Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ayinda Akinmade Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,4 Toilets +6 Bedroom Detached House With Penthouse With Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +2803sqm Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +1280.95sqm Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +2110.95sqm Corner Piece Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Five Bedroom Detached House With Bq,Megamond Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite Four Bedroom Semi Detached House With Bq,Oral Estate By Second Toll Gate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached House With Bq,Megamound Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 2 Bedroom Apartment With Bq,Ikota Ikota Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Flat / Apartment At Alpha Beach Road Lekki Lagos,Alpha Beach Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex With A Bq,Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Dada Fayemi Close Osapa London Lekki Lagos,₦,"31,500,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Akiogun Street Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dideolu Est Oniru Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,"Osapa London, Lekki Peninsula Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Three Plots Of Land,"Beside Orchid Hotel, Ikota Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Plot 99/100 Maiyegun Tourism Zone Off Silverbird Road Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex And A Bq,"Megamound Estate Lekki County Homes, Ikota Villa, Lekki. Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Luxury Built Fit For Prime Minister 5 Bedroom Mansion, Vgc Lekki",Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,7 baths,7 Toilets +4 Bedroom Duplex With Bq,Udogwu Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Dr Chimezie Street Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chevron Drive. Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Units Of 4 Bedroom Semi Detached Duplex With Bq,Seagate Estate Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land,Tf Kuboye Road Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3 Bedroom Apartment In Brookes Court, Osapa London, Lekki","Dada Fayemi Street, Off Chief Bamidele Eletu Avenue By Circle Mall, Lekki Osapa London Lekki Lagos",₦,"36,450,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Lekki Peninsula Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4 Bedroom Apartment In Brookes Court, Osapa London, Lekki","Dada Fayemi Street, Off Chief Bamidele Eletu Avenue, By Circle Mall Osapa London Lekki Lagos",₦,"41,400,000",0,0,0,4 beds,4 baths,5 Toilets +600sqms Of Land,Abijo G.r.a Lekki Phase 2 Lekki Lagos,₦,"11,000,000",0,0,0,0 beds,0 baths,0 Toilets +Southern Green Estate,"Orchid Road, Lafiaji. Chevron Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +640 Sqm Land,"Chevy View Estate, Off Chevron Chevron Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq, Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Lekki Free Trade Zone Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Eleko Behind Amen Estate Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Around Lagos Business School Lekki Phase 2 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Semi Detached Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Furnished Four Bedroom Terrace Duplex With Bq,"Furnished Four Bedroom Terrace Duplex, At Lekki Gardens Estate By Lagos Business School, Lekki. Lekki Phase 1 Lekki Lagos",₦,"28,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 5 Bedroom Detached House,Royal Gardens Estate Lekki Phase 2 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Nos Of Luxury 2 Bedroom Flat,Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Plots Of Land,Ologolo Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Orchid Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,"Off Ajiran Road, Agungi Lekki Lagos",₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached House With 2 Rooms Bq,Richard Nwangwu Street Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ajah Lekki Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Chevron. Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +High Value Brand New 5 Bedroom Detached Duplex,10 Adekola Adedeji Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious And Well Built Brand New 5 Bedroom Detached Duplex With Bq,Near Jakande Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautifully Built 5 Bedroom Detached Duplex With Bq,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite 5 Bedroom Detached Duplex With Bq,Near Chevron Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Room Bq,Lekki County Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex For Sale,Ikota Conty Home Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 4 Bedroom Detached Duplex With Bq,Close To Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +600sqm Of Land,Sangotedo Lekki Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 5 Bedroom Duplex,Udogwu Street Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +900sqm Cornerpiece Land,Pinnock Estate Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Duplex,Oba Elegushi Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets +8 Units Of 2 Bedroom Flat,Chevy View Ikate Lekki Lagos,₦,"240,000,000",0,0,0,2 beds,2 baths,3 Toilets +10000 Sqm Of Land,Ikate Bus Stop Ikate Lekki Lagos,₦,"165,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Arobieke Street Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4bedroom Detached House With Bq,Oral Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Mega Chicken Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached 5 Bed Duplex + A Bq,"Lekki County Estate, Ikota Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + 2 Rooms Bq,Off Fola Oshibo Street Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,Orchid Hotel Road Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,"Admiralty Way ( Overlooking Banana Island , Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Directly On Shop Rite Road The Palms Shopping Mall Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neatly Finished Luxury 4 Bedroom Duplex With A Bq,Idado Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplexes With 1 Room Boys Quarters At Osapa London, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4bedroom Detached House Duplex,Alternative Route Chevron Lekki Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex,Idado Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +2&1/2 Plots Facing The Road,On The Agungi Major Road Agungi Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedrooms Fully Detached Duplex With 2 Rooms Bq,"Daniyan Natalia Street, 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Ladega Street Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished And Well Built 5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Nicely Finished 4 Bedroom Duplex With 2rooms Bq,Vgc Estate Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semidetached Duplex,Ikota Conty Home Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Semidetached Duplex,Ikota Conty Home Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely Built 4 Bedroom Detached Duplex With A Room Bq,Lekki Gardens Private Residence Wing Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautifully Built 4 Bedroom Terrace Duplex With A Room Bq,"Alanbalogun Street, Agungi Agungi Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Plot Of Land,Eluju Lekki Phase 2 Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex With Bq And Security Post House,Westend Estate Ikota Villa Lekki Lagos Ikota Lekki Lagos,₦,"62,000,000",0,1,1,5 beds,5 baths,5 Toilets +Brand New Serviced Luxury Flats.,Along Ikate Eleguishi Road Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bwedroom Duplex With Bq 2 Bedroom Apartment,Secondgate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Full Plot Of Land,Road 2 Vgc Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"470,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With A Room Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Plots Of Land,Facing Lekki Epe Expressway Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,Ikate Elegushi Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Admiralty Way Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Way Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + 2 Rooms Bq,"Fola Oshibo Street, , Off Road 14 Lekki Phase 1 Lekki Lagos",₦,"265,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4bedroom Semi Detached House With Bq,Ajah Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +Fenced Full Plot,Iroko Awe Estate Ikate Lekki Lagos,₦,"60,000,000",0,0,0, beds, baths, Toilets +"4 Bedroom Semi Detached Duplex In Oral Estate, Ikota",Oral Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom House, Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 4 Bedrooms London Terraces + Bq,"Oral Estate, By Chevron Lekki Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets +Residential Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6 Bedroom Luxury Mansion With Swimming Pool On 1,550sqm Land",Royal Garden Estate Vgc Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex With A Room Bq,"Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex With A Room Bq And Swimming Pool,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Lovely 4bedroom Detached House In Ikota,Lekki County Homes Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Semi Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Detached House,Ikota Villa Estate Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Ugochukwu Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisite 5 Bedroom Duplex With A Room Bq,Pinnok Beach Estate Avenue Jakande Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,6 baths,6 Toilets +3bedroom Terrace Bungalow,Orchids Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Semi Detached House With Bq,Ajah Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Large Space 5 Bedroom Fully Detached Duplex With Bq,Chevy View Bakare Estate Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Zone A Nicon Town Estate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse (off Plan),Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 2 Bed Apartment For Overlooking The Atlantic Ocean,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land Directly Facing Orchid Hotel Road Lekki,Orchid Hotel Road Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Full Plot Of Land,Orchid Hotel Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Semi Detached House With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Massive Luxury Fully Detached Duplex With A Room Bq, Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,5 Toilets +Luxurious 5 Bedroom Detached House For Sale,Lekki Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedrooms Semi Detached Duplex,Oba Amusa Adebambor Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Udogwu Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Full Plot Of Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Plots Of Land With 4 Storey Building For Sale,Ocean Bay Street Ikota Lekki Lagos,₦,"280,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land For Sale,Opposite Orchid Hotel Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Wit Bq,Chevron Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Three Bedroom Flat,Off Dominos Agungi Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets +800sqm Land Fully Sand Filled Land,Mega Chicken Ikota Lekki Lagos,₦,"68,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Duplex In Vgc,"Vgc Estate, Ajah Vgc Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 5 Bedrooms Duplex,"Garuba Mohammed Way, Lekki Phase Ii Beside Abraham Adesanya Estate. Lekki Phase 2 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxurious 5 Bedroom Mansion,Close To Osinbajo House Vgc Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets +New And Well Finished 4 Bedroom Terrace House With Bq,Admiralty Homes Estate Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land Measuring 1400sqm,Orchid Hotel Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Kazeem Eletu Street Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury Maisonette At Ibuefon By Ologolo/ Agungi,Ologolo Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Behind Petrocam,by Citilodge Hotel Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Furo Ezimora Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki Epe Expressway Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Terrace With Bq For Sale,Ologolo Ikate Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Idado Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Detached House With Bq,Ikota Vila Ikota Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +2bedroom Apartment,Ikota Villa Ikota Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4bedroom Semi Detached House With Bq For Sale,Megamound Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex With Excellent Facilities,"Bera Estate, By Chevron Drive Lekki Phase 1 Lekki Lagos",₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom Flats,"Directly Off Babatunde Ajus Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"425,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4bedroom Semi Detached House,Lafiaji Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex At White Oak Estate,White Oak Estate Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Terrace House In Osapa, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Bare Land, Lekki Phase 1 Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Off Babatunde Ajus Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +12 Hectares Of Land,Near Nicon Town Estate Lekki Lagos,₦,"9,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Admiralty Way, Opposite Ebano Super Market Lekki Phase 1 Lekki Lagos",₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Off Admiralty Way By Freedom Way Lekki Phase 1 Lekki Lagos,₦,"120,000",0,0,0,0 beds,0 baths,0 Toilets +11 Units Of 2 Bedroom And 3 Bedroom Serviced Flat, Jakande Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,"Atlantic View Estate, Before Chevron Lekki Lagos",₦,"42,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4 Bedroom Fully Detached Duplex With Bq, At Chevy View Alternative Route Lekki",Chevy View Alternative Route Estate Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,4 Toilets +New 4 Bedroom Terrace Duplex,Dream World Africana Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 4 Bedroom Semi Detached House With A Room Bq,Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 2 Bedroom Flat In Lekki Garden Phase 4,Abraham Adesanya Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +New 4 Bedroom Semi Detached Duplex In Lekki,"Ikota Villa Estate, West End Estate Lekki Phase 1 Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,"Megamound Estate, Lekki County Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +50 Hectares Of Land,Off Jakande Road Jakande Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Serviced Flat For Sale,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Half Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shopping Complex/ Shops For Rent/sale,Baale Street Lekki Igbo Efon Lekki Lagos,₦,"8,000,000",0,1,0, beds, baths, Toilets +Very Sweet Brand New 4 Bedroom Duplex And A Bq, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Consent,Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Orchid Road Chevron Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House ( Off Plan),Spar Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"14 Plots Of Land Off Monastery Road, Sangotedo","Monastery, Sangotedo Lekki Lagos",₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Duplex At Lekk Phase 1,Lekk Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Odion Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Apartment,Lafiaji Street Off Orchid Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Brinton Chevron Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Govenor Consent,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Pinnock Beach Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Lekki Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Lovely 3 Bedroom Semi Town House,Orchide Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of 5 Bedroom Duplex,Megamall Estate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex + Bq | Off Plan,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Victoria Crest Estate 3 Luxury 3 Bedroom Terrace Duplex With Excellent Features,"Victoria Crest Estate, Orchid Hotel Road, Beside Buena Vista, Opposite Ocean Bay Estate Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Near Multichoice Office Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6300 Sqm Of Land,Lekki Epe Expressway Jakande Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,Behind Mega Chicken Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets +Alexandria Dews Ii 8 Units Of Elegantly Designed Semi Detached Duplexes,"Ologolo, White Oak Estate, Opposite Agungi Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Victoria Crest Estate 3 Beautifully Designed Units Of 4 Bedroom Terrace Duplexes,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Lekki Lagos",₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment + Bq,Near Pinnoch Beach Estate And Friends Colony Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,"Orchid Hotel Road, Opposite Ocean Bay Estate, Beside Buena Vista Chevron Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Victoria Crest Estate 3 Luxury 4 Bedroom Semi Detached Duplex With Bq,"Victoria Crest Estate, Orchid Hotel Road, Beside Buena Vista, Opposite Ocean Bay Estate Lekki Lagos",₦,"52,000,000",0,0,0,0 beds,0 baths,0 Toilets +Victoria Crest Luxury Apartment 3 Bedroom Flat Plus Bq,"Ajiran, Near Pinnock Beach, Femi Okunnu And Friends Colony Estate Lekki Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,0 Toilets +Plot Of Land,Opposite Fara Park Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"46,200,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bed Semi Detached Duplex In Lekki,Ikate Elegushi Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Serviced Plots At Green Haven Inside Chois Garden, Abijo Gra",Lekki Epe Expressway Lekki Lagos,₦,"13,000,000",0,0,0, beds, baths, Toilets +Lovely 5 Bedroom Detached House For Sale,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Fully Detached House With Bq For Sale,Chevron Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3bedroom Semi Detached House For Sale,Lafiaji Ikota Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ajah Lekki Phase 1 Lekki Lagos,₦,"27,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,6 beds,5 baths,5 Toilets +Twin 4 Bedroom Duplexes,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New 4bedroom Semi Detached House With Bq For Sale,Lafiaji Ikota Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced 3bedroom Terrace Duplex( Off Plan) For Sale,Lafiaji Ikota Lekki Lagos,₦,"10,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,Vintage Park 2 Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exquisite 4 Bedroom Maisonettes .,"Heirs Park,lekki Osapa London Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq For Sale,Osapa Lekki Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Apartment,"Spring Bay Estate, Lekki Phase 1 Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terrace Duplex,Westend Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,Before Chevron Idado Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Whit Sand School Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,3 baths,3 Toilets +Land,"Off Rasheed Alaba William, Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,Shadyville Close To Chevron Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 7 Bedroom Duplex With 1 Bq For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,7 baths,8 Toilets +5 Bedroom Semi Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,6 Toilets +Fantastic 5 Bedroom Detached Duplex For Sale In Lekki Phase One,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Super Finished 4 Bedroom Terrace Apartments With Bq,Lekki Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Jeremiah Ugwu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With 2 Rooms Bq,"Northern Foreshore Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With 2 Rooms Bq,"Chevron Alternative Route, Chevron Drive Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With 1 Room Bq,"Megamound Lekki County Estate, Lekki Ikota Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +C Of O,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex + Pent Floor,Pinnock Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Lafaji Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Couplag Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Nicely Built 5 Bedroom Duplex,Pinock Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Pinock Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached,Pinock Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Beautifully Finished 4 Bedroom Semi Detached Duplex,Ologolo Jakande Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex With A Room Bq, Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Residential Land,Victory Park Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Couplag Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Megamond, Jakande Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Building,Pinock Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nicely Built 5 Bedroom Detached Duplex,Pinock Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,White Oak Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +81 Hectares Of Land,At The Back Of Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,7 Toilets +Brand New 3 Bedroom Terrace House,Megamound Estate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Penthouse With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fenced Land,"Directly Behind Rumen Gardens, Off Elevation Church Drive Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Cowrie Creek Estate Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With A Bq,Lekki County In Mega Mound Estate Lekki . Ikota Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of A 4 Bedroom Duplex,Off Hakeem Dickson Street Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevy View Alternative Route Lekki Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq,Chevy View Alternative Route Lekki Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Osapa Ikota Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Luxury 5 Bedroom Fitted Kitchen +bq, Gym House,cinema Hall Swimming Pool , Good Parking Space , In Built Central Music System And Cctv Cameras In Acade Estate In Lekki Near Osapa Shoprite",Lekki Acade Estate In Lekki Near Osapa Shoprite Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale,Ologolo Chevron Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +Semi Detached Duplex For Sale,"West End Estate, Ikota Villa Esta Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Detached Duplex For Sale,"Nevada Court, Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Detached Duplex For Sale,"Off Chevron Drive, Chevy View Estate Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Semi Detached Duplex For Sale,"Ikota Villa Estate, Lekki Ikota Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets +Detached Duplex For Sale,"Oral Estate, Ikota Villa Estate Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Semi Detached Duplex For Sale,"Behind Mega Chicken, Off Road 23, Ikota Villa Estate Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Detached Duplex For Sale,"Behind Mega Chicken, Ikota Villa Estate Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +Semi Ddetached Duplex For Sale,"Horizon Court, Off Chevron Drive, Chevy View Estate Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Terraced Duplex For Sale,"Off Mobil Road, By Emerald Estate Lekki Phase 1 Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,3 baths,3 Toilets +Residential Land For Sale,"Off New Shoprite Road, Jakande Lekki Phase 1 Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex,Kushenla Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Alteernative Route Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dry And Fenced Land,Agungi Road Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land At Agungi,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land +2 Rm Bq, Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,6 Toilets +6 Bedroom Mansion,Igboefon Gra Igbo Efon Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Blocks Of 2 & 3 Bedroom Flat,Kushenla Ikate Lekki Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detach With Bq,Megamound Estate Lekki Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Units Of Newly Built 5 Bedroom Terrace,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,0 Toilets +Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex At Megamount Lekki Country Homes Lekki,Megamount Estate Lekki 2nd Roundabout Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Fully Detached Duplex For Sale At Chevy View Alternative Estate Lekki,Chevy View Alternative Route Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached House + Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq, Ikota Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bed Room Terraces,Lekki County Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms Bq, Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Two Rooms Bq,Carlton Estate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House, Osapa London Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4bedroom Terrace House,Lafiaji Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House In Megamound,Megamound Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Gorgeous 4 Bedroom Duplex In Jakande, Lekki.",Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom With Boy's Quarters,Chevyview Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Hi Tech 4 Bedroom Terrace With Study, 2 Living Rooms And Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Plots Of Land + Bq,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Town House With Boys Quater,Jakande Jakande Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Off Plan For 4 Units Of 4 Bedroom Town House + Boys Quater,Chevron Right Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Comfortable Duplex,Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +10000sqm Facing Lekki Epe Expressway Ikate,Ikate Lekki Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4000sqm Land Facing Lekki Epe Expressway,Ikota Vgc Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Land Facing Lekki Epe Expressway Alasis,Lbs Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Eletu Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land,Awodele Street Osapa London Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Luxury Duplex, Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +700 Square Metres Of Land,5th Round About Igbo Efon Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Lovely Finished 5 Bedroom Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Elegushi Beach Road, Ikate Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Unit Of 2 Bedroom (1unit Available),Ikate Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets +Luxury 5 Bedroom Detached Duplex,"Carlton Gate Estate Off Chevron Drive, Lekki, Lagos Chevron Lekki Lagos",₦,"550,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flats For Sale At Oniru Lekki In A Block Of Flats With Swimming Pool,Bis Lekki Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury And Stylish 6 Bedroom Mansion,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Duplex,"Chevy View Estate Is Located Along Chevron Drive, Of The Lekki – Epe Expressway, And Directly Opposite The Head Office Of Chevron Nigeria Limited. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House Plus One Room Bq,"Kazim Eletu Street, Osapa , London, Lekki, Lagos Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +600sqm Of Land In Various Locations In Ibeju Lekki,Ibeju Lekki Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Units Of 4 Bedroom Duplex With A Bq,Oyewode Street Osapa London Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Southern Greens Estate,"Lafiaji Off Orchid Road Behind Coolplag Estate, Chevron Toll Gate Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terrace House,Lafiaji Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With Bq, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House,Buene Vista Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Well Finished 5 Bedroom Detached Duplex With Bq,Private Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Three Bedroom Flat +bq,Spg Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Pinnock Osapa London Lekki Lagos,₦,"300,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),"Off World Oil Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Oral Estate By 2nd Tollgate Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Fully Detached House With A Room Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Terrace Duplex In Ologolo,Ologolo Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex + Bq In Ikota, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Duplex + Bq,Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Units Of 4 Bedroom Town House With Boys Quaters (off Plan),Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Agungi Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Fully Detached House With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Bq,"Ikota Villa, A Min Drive From Chevron Ikota Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Demola Eletu Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom House,Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +"5 Bedroom Bungalow,on 675sqm Land",Vgc Vgc Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Plots Of Land,Behind Oando Filling Station Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedrooms Detached Duplex With Two Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + 1 Room Servant Quarter,"Orchid Hotel Road, Vgc Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached 4 Bedroom Luxury Duplex With Bq (mortgage Option Available),Westwood Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Idado Idado Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex For Sale At Agungi, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Newly Finished Detached Duplex By Chevron Drive,lekki",Chevron Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,"Kusenla Road, Lekki Phase 1 Lekki Lagos",₦,"72,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Luxury Townhouses (mortgage Option Available),Gbadamosi Eletu Road Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,By Nicon Town Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Adedeji Dtreet Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments With Bq (mortgage Option Available),Rasaq Eletu Way Osapa London Lekki Lagos,₦,"34,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Luxury Apartment With Bq (mortgage Option Available),Oniru Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Terrace Duplex, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex For Sale,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex (off Plan),By Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Duplex With 1 Room Bq,Friend's Colony Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautifully Finished 5 Bedroom Duplex With 2 Nos 3 Spacious Bedroom Flats,Peter Ochidozie Street Igbo Efon Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace For Sale At Lekki Right, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Tremendously And Fantastically Finished 4 Bedroom Pent House Apartment,Safe Court Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Royal Garden Estate A Series Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Olayinka Street Osapa London Lekki Lagos,₦,"72,500,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Beside Goshen Estate By Elegunish Roundabout Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq (mortgage Option Available),Orchid Road Chevron Lekki Lagos,₦,"43,500,000",0,0,0,4 beds,4 baths,4 Toilets +Property In Royal Garden Estate,Royal Garden Estate. Lekki Phase 2 Lekki Lagos,₦,"249,000,000",0,0,0,5 beds,5 baths,7 Toilets +Luxurious 4 Bedroom Terrace Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fantastically Finished 4 Bedroom Terrace,Lekki Ikate Ikate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 5 Bedroom Duplex,Megamound Estate Lekki Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex And A Bq,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Newly Built 4 Bedroom Semi Detached House For Sale At Chevron Alternative Route, Lekki, Lagos", Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Lekki County Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House, Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orile Ilasan Jakande Lekki Lagos,₦,"62,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,4 Toilets +One Bedroom Apartment,Alpha Beach Road Chevron Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,1 Toilets +Quality 4 Bedroom Semi Detached In Chevron,Chevron Toll Gate Chevron Lekki Lagos,₦,"51,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrood Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Flats With Excellent Fittings,Off Freedom Way Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Victory Park Estate Jakande Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +645sqm Land,Picdally Suite Behind Idado Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,3 baths,3 Toilets +Lands In East Amber Estate,Sangotedo Chevron Lekki Lagos,₦,"10,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,By Orchid Hotel Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,"Stillwaters Gardens Estate, Lekki. Ikate Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Main Road, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 2 Bedroom Flat For Sale At Ikate, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,Chuks Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +2700sqm Of Land Facing Lekki Epe Expressway,"Oko Ado, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 4 Bedroom Terrace Duplex,Mega Mound Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Via Shoprite Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq Location Chevron Alternative Road,Chevron Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Opportunity To Purchase 4 Bedroom Semi Detachedat Duplex,Lekki Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Land,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Contemporary 4 Units Of 4 Bedroom Terrace Duplex With A Room Bq,Oral Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Newly Built 4 Bedroom Semi Detached Duplex,Westend Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 3 Bedroom Terraced Duplex,"Victoria Crest Estate ,lafiaji Lekki Phase 1 Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced Plots,Chevron Alternative Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 4bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,7 Toilets +Tastefully Finished 4 Bedroom Duplex,Ikota Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,5 baths,5 Toilets +2bedroom Apartment,"Alpha Beach Road, Chevron Lekki Lagos",₦,"26,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex And A Bq,Osapa London Lekki Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +Mega Mall Facing Express,Chevron Lekki Chevron Lekki Lagos,₦,"750,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex + Bq,Off Ihuntayi Off Palace. Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +A Brand New 4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Lekki Lekki Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex And A Bq,Osapa Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 2 Bedroom Flats With Excellent Fittings,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom With A Bq And Swimming Pool,Mega Mound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"320,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Free Trade Zone Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Miami Style Luxurious Open Plan House,Royal Gardens Estate Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,6 Toilets +Fantastic 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely Finished 4bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Apartments With Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Semi Detached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Luxury Semi Detached House (mortgage Option Available),Lafiaji (chevron Alternative Route Axis) Chevron Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Standard Plot Of Land,Femi Okunu Street Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Luxury Houses,Lekki Epe Expressway Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Massive And Tastefully Finished 6 Bedroom Fully Detached Duplex With A Fitted Kitchen,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Royal Garden Vgc Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,7 baths,7 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Contemporary Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New And Tastefully Finished 5 Bedroom Detached Duplex For Sale In Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Megamound Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Duplex,"Primrose Road, Jakande Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex + Bq ( Rent To Own),Aikoje Osapa London Lekki Lagos,₦,"26,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 5 Bedroom,Oral Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Penthouse With Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 5 Bedroom Detached House With Bq, Ikota Lekki Lagos,₦,"52,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Contemporary Detached House With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace House For Sale, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Residential Land,Pinnock Beach Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Contemporary House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Megamound Estate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Megamound Estate Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Townhouse In Ocean Bay Estate,"Park Lane, Ocean Bay Estate Chevron Lekki Lagos",₦,"59,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Pinnock Beach Estate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Way Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq,Bakare Estate/chevy View Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture), Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Six Units Of 2 Bedroom Apartment,"Ojo Oyewo Road Off Tunde Adeleye Str, Off Oba Amusa Adebambo Avenue Lekki Phase 2 Lekki Lagos",₦,"29,000,000",0,0,0,2 beds,2 baths,3 Toilets +Stunning 15 Unit Of 4 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +50 Plots Of Land,Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Bq,Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + Room Bq,"Chevy View Estate, Lekki, Lagos Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,4 Toilets +5 Bedroom House,Megamound Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Half Plot Of Land,Agungi Lekki Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautiful 5 Bedroom Terrace,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Detached House,"Oluwatosin Olawuyi Street, Oral Estate Ikota Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,7 baths,7 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Terrace Apartments,Orchid Road Chevron Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Main Road, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Luxury Terrace Apartments (mortgage Option Available),Bakare Estate Off Ajiran Road Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Luxury Flats (mortgage Option Available),Ologolo Agungi Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Luxury Semi Detached Duplex,Ademola Eletu Osapa London Lekki Lagos,₦,"49,500,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 3 Bedroom Flat,"In An Estate At Agungi,lekki Close To Domino Pizza Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Houses At Ocean Bay Estate Lekki (mortgage Option Available),Atlantic Boulevard Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Royal Garden Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Luxury Flat,Dele Adeyemi Agungi Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +Northville Estate,Bogije Lekki Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Prince Abayomi Close Ikate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraces,Off Conoil Filling Station Rd Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached House With A Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Around Victory Park Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Between 2nd And 3rd Round About, Lekki/ Epe Express, Lekki Scheme 1 Lekki Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,By Studio 24 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Semi Detached House With A Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),"Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Tastefully Finished 5 Bedrooms Detached House In Agungi Lekki,Lekki Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Bedroom Mansionette At Lekki Phase 1,Heirs Park Residence Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Providence Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With A Room Bq, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House + Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +60 Units 4 Bedroom Terraces (offplan Payment),Around Elevation Church Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Christal Villa Queen's Court,Shapati Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,"Nals Daniel Street By Orchid Hotel, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Refurbished 2bedrooms Flats,Ikota Villa Ikota Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets +2 Units Of 4 Bedroom Duplex With 2 Bq Each,Bosun Adekoya Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With 2 Rooms Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Vgc Vgc Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Elegushi Beach Road. Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms + Bq,"Hameed Kasimu, Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Rachael Nwangwu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 6 Bedroom Duplex,Royal Garden Estate Chevron Lekki Lagos,₦,"270,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex Wiith Swimming Pool,Idado Estate Before Chevron Lekki Idado Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious 5 Bedroom Detached House,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +"15,000 Plots Of Land",Free Trade Zone Lekki Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +One Plot Of Land,Victory Park Estate Osapa London Lekki Jakande Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms B/q,Close 10 Vgc Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +16 Bedroom Duplex,Ibiyinka Salvador St. Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0, beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,"Orchid Road Behind Coolplag Estate, Lafiaji Lekki Phase 2 Lekki Lagos",₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Southern View Estate Behind Orchid Hotel Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House With Bq,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Partly Furnished 4 Bedroom Fully Detached House With A Bq For Sale,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Executive 4 Bedroom Semi Detached Duplex,Lafiaji Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Oceanvale Estate Behind Meadowhall School Ikate Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Two Bedroom Flat At Lekki,"24, Cornelius Odigor Street Chevron Lekki Lagos",₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached House + Bq,"Ikota, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex + Bq, Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House And 2 Bedrooms Bq,Lekki Phase One (ikate Elegushi) Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Off Bisola Durosinmi Eti Street Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House With Bq,"Chevyview Estate,off Lekki Peninsula Expressway Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5bedroom Detached House In Megamound Estate,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Terrace + Bq, Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +14 Units Of 3 Bedroom Apartment,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,5 beds,3 baths,4 Toilets +Brand New 3 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,3 Toilets +Residential Land In Megamound Estate,Megamound Estate Ikate Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House With Bq, Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex + Bq,Oba Amusa Adebambor Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 5 Bedroom Fully Detached House With A Room Bq,By Meadow Hall Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedrooms With 2bq Fully Detached Duplex,Professor Kunmi Street Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached + Bq,Idado Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Units Of 650 Square Metres Of Land With 2 Rooms Bq,Olatunji Moore Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Duplex At Genese Court,Atlantic View Estate Alao Etti Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flats At Alexander Apartments (off Plan),Legacy Boulevard Vgc Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +40plots Of Land,Alternative Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,10 Toilets +2 Bedroom Flat,Osapa Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House, Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With A Room Bq,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex And 2 Rooms Bq,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached House With A Room Bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 2 Bedroom Flat,Ikate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Residential Land In Pearl Nuga Garden,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land,Ologolog Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Agungi Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Kazeem Eletu, Osapa London Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House With 2rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Units Of Newly Built 4 Bedroom Terrace Duplex At Lekki,Chevron Alterntive Route Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Fully Detached House + Bq,Ologolo Lekki Lagos,₦,"75,000,000",0,0,0,6 beds,6 baths,0 Toilets +Five Bedroom Detached Duplex Sitting On A 1000 Square Meter Landspace At Lekki,Mobil Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chevron Toll Area Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +New Four Bedroom Terrace Duplex At Lekki,Gbangala Street Off Oba Yekini Elegushi Road Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Friends Colony Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Chevy View Chevron Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Edroom Fully Deatached House,Megamound Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With A Room Bq,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House For Sale,Megamound Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached House With A Room Bq,Megamound Estate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedroom Detached House,Megamound Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Fully Detached House With A Room Bq,Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Landed Property For Sale,Abijo Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House With A Room Bq,Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Serviced 4 Bedroom Semi Detached House With Bq,Alpherton Estate Osapa London Lekki Lagos,₦,"77,000,000",0,0,0,0 beds,4 baths,5 Toilets +Lovely 4 Bedroom Fully Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely New 4 Bedroom House With A Room Bq,Oral Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Contemporary House With Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached House + Bq,"Ikota, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Orchid Hotel Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished Fully Detached 5 Bedroom House,"Megamound Estate, Ikota Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plots Of Land,Alpha Beach Road Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Newly Built 4 Bedroom Duplex + Bq In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex, Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Elegushi Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Lafiaji Chevron Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Four Bedroom Semi Detached Duplex With One Room Bq,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 And 4 Bedroom Terrace,Orchid Road Lekki Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Amiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex For Sale In Osapa London,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plot Of Land,Free Trade Zone Lekki Phase 2 Lekki Lagos,₦,"864,000",0,0,0,0 beds,0 baths,0 Toilets +Residential And Commercial Plots,Eleko Lekki Phase 2 Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House + Bq, Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom House, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +"An Exquisite 6 Bedroom Detached Duplex At Pinnock Beach Estate, Osapa",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,6 beds,6 baths,7 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Orchid Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex,"Orchid Road, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Via Shoprite Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Eletu Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House, Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5,072 Sqm (8 Plots) Of Land",Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With B/q,Lekki Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Serviced Brand New 4 Bedroom Terrace House With Ample Parking Space,Orchid Hotel Road Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"320,000,000",0,0,0,7 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With A Room Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +"2,700sqm Land",Marwa Lekki Phase 2 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Marnor Gardens Estate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Behind Shoprite Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex,Hakeem Dickson Lekki Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Flat With A Room Bq,Prime Water Gardens Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Behind Shopright Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached Duplex With 2 Rooms Boy's Quarter, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House + Bq,"Ologolo, Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex| Off Plan, Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,6 baths,7 Toilets +Luxury And Furnished 4 Bedroom Terrace For Sale At Ikate, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semidetached Duplex For Sale At Agungi, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built Four Bedroom Terrace Duplex At Lekki,Alhaji Galadima Street Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Oribanwa, Lekki Peninsula Lekki Lekki Lagos",₦,"18,975,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4bedroom Semi Detached House With Bq For Sale At Chevy View Estate Lekki,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House With Bq,Atlantic View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land,Sangotedo Osapa London Lekki Lagos,₦,"12,800,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ajifuluke Jakande Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House, Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Lafiaji Lekki Phase 1 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Terrace House With Bq,Lekky County Homes Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House With A Bq,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House With A Room Bq, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Ikota Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex + Bq,"White Sand Road, Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex For Sale,Spa Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Elegushi Beach Side Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,"Jamiu Eletu, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom 1 Bq House,Westend Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Off Road 14 Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,5 beds,6 baths,6 Toilets +"1,275 Square Metres Of Land",Inside Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached House With A Bq,Chevy View Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +950sqm Land,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With A Room Bq,0sapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 5 Bedroom Detached House With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached With A Room Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land At Ibeju Lekki,Ibeju Road Lekki Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"560,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Comfort Zone Gardens,Vgc/ajah Bus Stop. Vgc Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House With Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Oceanvale Estate Behind Meadowhall School Ikate Lekki Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Ikate, Elegushi, Off Kushenla Road, Lekki 1, Lagos. Ikate Lekki Lagos",₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached House,Oral Estate By Second Toll Gate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Apartment + Bq,"Seagate Estate, Off Spar Rd, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +"A Brand New And Tastefully Finished 5 Bedroom Detached Duplex At Pinnock Beach Estate, Osapa",Pinnock Beach Estate Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex At Lekki,House On The Rock Way Salem Bus Stop Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Lekki/ Epe Expressway Agungi Lekki Lagos,₦,"355,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Southern Greens Estate, Lekki Phase 1 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lands At Southern Green Estate,Lafiaji Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Africa Lane Lekki,Africa Lane Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Express Way Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,Ikate Elegushi Lekki Lagos Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Behind Jakande Shoprite By Aa Rescue Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Orchid Road Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Bungalow On Full Plot,"Vgc, Vgc Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,4 baths,4 Toilets +Luxury 5 Bedroom Duplex,Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Bungalow,"Southpointe Estate, Lafiaji Chevron Lekki Lagos",₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Lekki Epe Express Way Lekki Lagos,₦,"13,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Mid Terrace Duplex + Bq, Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ologolo Agungi Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Apartment, Agungi Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ikota Westend Estate Lekki Lagos Ikota Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +290 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Monastary Road Lekki Phase 2 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Room + Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms + A Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex For Sales,Lekki Lekki Lagos,₦,"24,000,000",0,0,0,4 beds,4 baths,4 Toilets +Modern 5 Bedrooms Semi Detached With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex At Lekki County Ikota,Lekki County Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Deluxe 6 Bedroom Detached House With Bq,Osapa Lekki Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +14 Units Of 3 Bedroom Luxury Flat,Serene Area Of Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,"Lafiaji, Lekki Lagos Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,By Chevron Alternative Route Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Duplex On 3 Floors.,"Iweanya Manduike Avenue Lekki Phase 1, Lagos. Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,5 beds,7 baths,7 Toilets +Newly Built 5 Bedroom Detached House With Bq,Oral Estate By Second Toll Gate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Express By Chevron Before Gtb Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached House With A Room Bq,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached Five Bedroom Duplex At Lekki Phase 2,"Roxbury Homes Opp Orchid Hotel, Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Flat At Agungi,"21, Dele Adeyemi Agungi Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets +Massive And Well Built 4 Bedroom Detached House,Off Admiralty Lekkki Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace House, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terraced Duplex,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Massive And Well Built 4 Bedroom Detached House,"Admiralty Way, Lekki Scheme 1 Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Newly Built 4bedroom Detached House In Osapa London Lekki Lagos,Osapa Osapa London Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Plot Of Land Measuring 800sqm,Epe Expressway Ikate Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Tastefully Finished 14 Units Of 3 Bedroom Luxury Flats On 6 Stories In Lekki Phase 1,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New And Tastefully Furnished 5 Bedroom Fully Detached House,Richard Street Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroomdetached House, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Completed And Exquisitely Finished 5 Bedroom Fully Detached Mansion,Vgc Lekki Lagos State Vgc Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Duplex,"Chevy View Estate, Chevron Drive, Lekki Chevron Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,0 Toilets +A Newly Built And Tastefully Finished 5bedroom Duplex With 2 Rooms Bq,By Jakande Bus Stop Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex + 1 Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,"Prince Ibrahim Letu Street, Osapa Estate, Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached House With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached House With A Room Bq,Ikate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Megamound Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +10 Units Of Charming 4 Bedroom Duplex At Lekki,Crest Villa Court 2 Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of Flats At Lekki,19b Kenneth Agbakuru Street Off Rashidat Williams Street Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Seni Detached House,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,By Orchid Hotel Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Furnished Semi Detached 4 Bedroom Duolex,Atlantic View Estate By Alphabetical Road Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Furnished Fully Detached 4 Bedroom Duplex,Atlantic View Estate By Alphabetical Road Chevron Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,5 Toilets +14units Of 3 Bedroom (9 Available),Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,4 baths,4 Toilets +Fully Detached 5 Bedroom Duplex At Lekki,Hakeem Kasunmu Street Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex With Bq,Oladimeji Alao Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +Hotel With 204 Rooms,Chevy View Estate Chevron Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets +Executive 4 Bedroom Fully Detached Duplex With Bq,Oba Amusa Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +30 Units Of Elegantly Designed 3 Bedrooms Apartments With A Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxuriously Furnished 4 Bedroom Duplex With Excellent Interior & Exterior,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex,"Vgc, Vgc Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Modern 4 Bedrooms Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +900sqm Land In Lekki Scheme,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Constructed House, Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Duplex+ Bq,Orchid Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Vgc Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 2 Bedroom With Excellent Facilities In Idado,Idado Idado Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Luxury Duplex With Bq (mortgage Option Available),Westwood Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Serviced Lovely And Perfectly Finished 3 Bedroom Terrace Duplex With A Room Self Contain Bq,Cooplag Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +Modern 4 Bedroom Terrace With A Bq,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex For Sale,Audu Epeka Lekki Phase 1 Lekki Lagos,₦,"225,000,000",0,0,0,7 beds,9 baths,9 Toilets +3 Bedroom Duplex,Lekki Grdens Vgc Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Whitesands Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Aparnmemt At Lekki By Ebon Efon,Igbon Efon Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Oba Amusa Adebambor Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,"Lafiaji, Off Orchid Hotel Ikota Lekki Lagos",₦,"45,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Westend Estate, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex + Bq, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Excellent 4 Bedrooms Semi Detached Duplex With A Bq,Lekki Epe Express Way Ikota Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +Modern 4 Bedrooms Semi Detached Duplex, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +600sqm Land In Northern Foreshore Estate Lekki,"Pinnock Beach Estate, Ikate Elegushi Osapa London Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached House,Megamound Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 3 Bedroom Flats For Sale At Lekki Phase 1, Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Three Bedroom Apartment At Lekki,Aboro Street Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Three Bedroom Apartment At Lekki,Abiola Court Estate Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"92,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Behind Jakande Shoprite Jakande Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex And Bq,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +798sqm Land In Ocean Bay Estate Off Chevron Toll Gate,"Ocean Bay Estate, Off Chevron Toll Gate Chevron Lekki Lagos",₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace,Whitesands Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Epe Farm Lands,"5a Dozek Close, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 3 Bedroom Penthouse Flat, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Duplex,Hebert Orji's Avenue Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Office Space And Shop,Road 5 Ikota Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Deatched House With A Bq,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semidetached Duplex, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedroom Terrace Duplex At Lekki,Victoria Adode Kobiti Street Orchid Hotel Road Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Hectares Of Land,Along Jakande Beach Road Jakande Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful Two Bedroom Apartment At Lekki,Aboro Street Off Kusenla Road Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedrooms Fully Detached Luxury Duplex With A Room Bq,Lekki County Homes Estate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Maple Estate Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,"Lekki Scheme Ii, Okun Ajah, Off Ogombo Road By Abraham Adesanya Roundabout. Eti Osa Lga, Lagos. Lekki Phase 2 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets +Elegantly Built Fully Detached 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,6 Toilets +Fully Detached 2 Units Of 5 Bedroom Duplex + Bq,Ikota Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,7 Toilets +Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,7 Toilets +Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Duplex, Ikate Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Lekki County In Mega Mound Estate Lekki . Chevron Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Apartment + Bq At Lekki,"Maduka Close Off Agiran Street/ Domino Plaza/stanbic Bank, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Chevron Drive,opposite Carlton Gate Estate Lekki Lagos",₦,"75,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Manor Gardens Estate, Direct Drive In From Lekki Expressway Lekki Lagos",₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex With A 1 Room Bq,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Stylishly Built 4 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,7 Toilets +6 Bedroom Duplex With 2 Bq For Sale,Ikota Vgc Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +A Phenomenal 2 Units Of Fully Detached 5 Bedroom Duplex,Ikota Vgc Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,6 baths,7 Toilets +Epe Farm Lands,"5a Dozek Close, Alternative Route, Chevron Drive Chevron Lekki Lagos",₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +World Oil Filling Station Lekki,Lekki Epe Express Way Ilasan Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Duplex,Royal Paradigm Estate Mobile Road. Ajah Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Lovely 5 Bedroom Terrace Duplex In Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,"Oral Estate By 2nd Tollgate,ikota, Lekki Before Vgc Ikota Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Newly Built Two Bedroom Flat In Ikate, Ikate Lekki Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +An Exquisite 5 Bedroom Fully Detached Duplex With Bq In Agungi,"Agungi, With Access To Chevy View Estate. Agungi Lekki Lagos",₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Exquisite 4 Bedroom Fully Detached Duplex With Bq,Southern View Estate Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Lovely 4 Bedroom Terrace Duplex,Ilasan Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand 4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Admiralty Way, Around Stanbic Ibtc & Fidelity Bank Lekki Phase 1 Lekki Lagos",₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Perez Drive, Cbd Lekki Phase 1 Lekki Lagos",₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 5 Bedroom Fully Detached Duplex,Lekki County Homes (megamound Estate) Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,"Beside House On The Rock, Ikate Ikate Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Fully Detached Duplex, At Ikota Villa",Ikota Villa Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Ikota Villa Estate,Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Abiola Court 2 Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Fully Furnished Detached Duplex With 2 Rooms Bq,Victoria Garden City Vgc Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,6 baths,4 Toilets +20 Plots Of Land,Off Lekki Epe Express Road Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of Duplex Of 4 Bedroom Duplex,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat Plus Bq,Proff Dublin Green Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Off Shoprite Road Jakande Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 2 Bedroom Flat Plus Bq,Proff Dublin Green Off Alpha Beach Road Igbo Efon Igbo Efon Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House,Richmond Estate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Opposite Carlton Gate Estate Chevron Lekki Lagos,₦,"70,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Duplex +bq,Chevyview Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Lekki Beach Road Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,About 5mins Drive From Chevron Via Orchid Hotel Road And Is Opposite Shell Estate(coplag Garden). Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Chevy View Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Town House With A Room Bq, Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House,Pinnock Beach Estate Osapa London Lekki Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki/ Epe Express Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Seagate Estate, Ikate Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,5 baths,5 Toilets +Great Duplex With Pent House,Carlton Estate Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat At Ikota Resettlement, Ikota Lekki Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Duplex, Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex,West End Estate Ikota Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House With A Bq ( Off Plan),Church Street Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Of 4 Bedroom Duplex,Beside Pinnock Beach Estate Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Spar Road Ikate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Brand New Luxury 4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Tastefully Finished 4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New 3 Bedroom In Ikate., Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of 3 Bedroom Terrace House,Baale Street New Road (alpha Beach) Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious House & Apartments, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,2 baths,2 Toilets +Service 3 Bedroom Flat Plus A Bq,Oba Amusa Agungi Lekki Lagos,₦,"48,999,999",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex, Ikate Lekki Lagos,₦,"41,800,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"52,800,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale, Agungi Lekki Lagos,₦,"34,100,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"39,600,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"66,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,"Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"71,500,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,"Nicon Town, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"88,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex @ Carlton Gate Estate,B5 Road Carlton Gate Estate Lekki Chevron Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedroom Terrace Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Ikota Villa Estate, Lekki, Lagos Ikota Lekki Lagos",₦,"46,200,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"60,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale,Ikate Elegushi Lekki Lagos Nigeria Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Banana Island Estate Lekki Lagos Nigeria Lekki Phase 1 Lekki Lagos,₦,"41,800,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisitely Built 2 Bedroom Flat At Lekki,Lekki Gardens 4 Estate Road Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Detached Duplex,"Ninalowo Street, Off Fola Osibo Lekki Phase 1 Lekki Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Exquisite Newly Built Four Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Luxury 4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex, Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New Lovely 3 Bedroom In Ikate.,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 2 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"33,000,000",0,0,0,2 beds,2 baths,3 Toilets +Massive 4 Bedroom Semi Detached Duplex In Ikate,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 2 Bedroom Flat,"8 ,oye Balogun Street, Lekki Phase 1 Lekki Lagos",₦,"10,950,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Freedom Lekki Phase 2 Lekki Lagos,₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"99,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"60,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex, Osapa London Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,5 baths,5 Toilets +A Lovely 5 Bedroom Fully Detached Duplex, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached + Bq,Acadia Gardens Lekki Lagos,₦,"370,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Idado Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +Newly Constructed 3 Bedroom Flat, Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Constructed 2 Bedroom Flat, Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached House With A Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Flat,Ikate Ikate Lekki Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached House With A Room Bq,Ologolo Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House With A Room Bq,Ologolo Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached House + Bq,Osapa Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Fully Detached 5 Bedroom Duplex, Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +Fully Detached 4 Bedroom Duplex,Chevron Road Chevron Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land For Sale In Grandville Park Lekki Ajah,"Near By New Shoprite, Lagos Business School, Crown Estate Ikota Lekki Lagos",₦,"6,300,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 6 Bedroom Detached House In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Dulpex,Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,7 baths,6 Toilets +One Bedroom ( Off Plan),Lekky Home Ikota Lekki Lagos,₦,"11,100,000",0,0,0,1 beds,2 baths,3 Toilets +4 Bedroom Duplex,Lekki Homes Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,University View Estate Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 5 Bedroom Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Agungi Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Detached At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets +Land At Chevy View Estate,Chevy View Estate. Chevron Lekki Lagos,₦,"62,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex,Off Conoil Street Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Lands,Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built And Well Finished 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedrooms Apartments,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,4 Toilets +2 Nos Of 5 Bedroom Fully Detached Duplex,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +12 Units Of 4 Bedroom Terrace On 2 Floors,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached House,Victory Park Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 28units Of 4 Bedroom Luxury Terrace Duplex, Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,5 baths,5 Toilets +6units Of 4bedroom Luxury Semi Detached Duplex (off Plan),Benue Vista Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House + 2 Rooms Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Flat, Ikate Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Chief Raphf Okon Cresent Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,4 Toilets +Land, Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Stewart Court Lakowe Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Thomas Estate Vgc Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex,Nicon Estate Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat, Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,3 baths,3 Toilets +Brand New 5 Bedroom Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land (joint Venture),Behind Pinnacle Filling Station Plot 2&3 Lekki Peninsula Scheme 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex At Agungi Lagos,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury 5 Bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +This Lovely Rare 5 Bedroom Duplex With Excellent Facilities In Osapa London,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detatched Duplex With 2 Bqs,Oniru Alternative Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedrooms Semi Detached Duplex With Bq,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Ikota Ikota Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Bare Land,Victory Park Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5bedroom Duplex,Victory Park Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom And A Bq Semi Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex With Driveway,Osapa London Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Duplex Plus Bq,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Road 12 Vgc Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Luxury Finished Fully Detached 2 Storey Duplex( Off Plan), Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex,Igboefon Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Lekki Gardens Phase 4 Lekki Phase 2 Lekki Lagos,₦,"19,500,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Chevron Drive Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Millennium Estate, Close To Fatai Arobieke Street Lekki Phase 1 Lekki Lagos",₦,"73,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Block Of Flats At Oral Estate, Lekki Lagos.","Lekki, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Detached Building,Off Alpha Beach Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,7 baths,7 Toilets +Tower With 14 Flats,Off Admirallty Road Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedrooms Detached House At Oral Estate Lekki,Oral Estate Lekki By Second Toll Gate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House At Oral Estate Lekki,Oral Estate Lekki By Second Toll Gate Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,"Chief Gbolahan Street, Off Jeremiah Ugwu Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Five Bedroom Fully Detached Duplex With One Room Bq,Alternative Route Off Chevron Drive Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Detached House+bq At Osapa London, Lekki",Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +"5 Bedroom Fully Detached House + Bq At Chevyview Estate, Lekki",Chevyview Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House In Lekki,Megamound Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom House In Lekki,"Chevy View Estate,chevron, Lekki Chevron Lekki Lagos",₦,"52,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Saki Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Luxury 4 Bedroom Duplex At Chevron, Lekki, Lagos","Chevron, By Orchid Hotel Lekki Lagos",₦,"47,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land At Lekki County Homes,Lekki County Estate Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat With Luxurious Finishing,Alpha Beach Road Igbo Efon Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Finely Finished 3 Bedroom Terraced Duplex With A Bq.,Orchid Hotel Road Jakande Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +"20,180sqm Of Land Is Available For Joint Venture Between Vgc Entrance And Ikota Shopping Entrance",Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Duplex,Rasaq Eletu Street Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex In Chevron,Chevron Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Chevy View Estate,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Oribanwa Lekki Peninsula, Lagos Lekki Lagos",₦,"10,950,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Bogije Lekki Lagos Lekki Lagos,₦,"7,600,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki Peninsula Lekki Phase 2 Lekki Lagos,₦,"18,975,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Bq, Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Broom Duplex And Bq Partly Furnished,Lakeview Estate Vgc Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"20,180sqmis Available For Joint Venture Between Vgc Entrance And Ikota Shopping Entrance",Between Vgc Entrance And Ikota Shopping Complex Vgc Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex At Ikota Lekki,Behind Mega Chicken Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land At Urban Base Estate Bogije Lekki,Nil Lekki Lekki Lagos,₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House,Lekki Ikate Lekki Lagos,₦,"290,000,000",0,0,0,5 beds,7 baths,7 Toilets +4 Bedroom Terrace Duplex,Agungi Street Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets +Filling Station At Lekki Phase 1,Lekki Epe Expressway Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Land,Igbokusu Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Orchid Hotel Road Lafiaji Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq,"No 20 Abioro Street, Off Elegushi Road, Ikate, Lekki Ikate Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +Blocks Of 4 Bedroom Flats,No 17 Abioro Street Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Duplex, Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex At Queens Villie Estate,"Chevron Drive, Lekki Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,3 Toilets +3 Bedroom Duplex At Wealth Land Green Estate,"Oribanwa, Lekki Penisula Lekki Phase 2 Lekki Lagos",₦,"1,095,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House,Ikate Elegushi Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ademola Adeshina Ikota Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Renovated 4 Bedroom Semi Detached Duplex In Lekki Phase 1,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 6 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury 9 Units Of 3 Bedrooms Apartments,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,3 beds,4 baths,4 Toilets +2 Wings Of 4 Bedroom Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex + Bq,"3rd Roundabout, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"99,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Oral Estate Just Facing Lekki Epe Expressway By Chevron Toll Gate Chevron Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,"Chevron Alternative, Chevy View Estate Lekki Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,By Lekky County Homes Estate Lekki Before Megachicken Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Bq,By Chevy View Estate Idado Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat In Ologolo,Ologolo Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Semi Detached 4 Bedroom Duplex With Bq,Westend Estate Inside Lekki County Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nice House At Abogije Lekki,Abijor Vgc Lekki Lagos,₦,"203,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex,Otunba Odunsina Street. Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"39,000,000",0,0,0,4 beds,3 baths,1 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With A Room Bq In Elegushi,Lekki Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +New Luxury 5 Bedroom Duplex At Lekki,Off Chevron Rd Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Luxury Duplex With Bq,"Block 27, Owobode Abiodun Street, Mega Mound Estate, Lekki County. Ikota Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,7 baths,6 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Ologolo,Ologolo Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +The Exclusive Mini Estate,Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,5 Toilets +6 Bedroom House,"Pinnock Beach Estate, Jakande Lekki Lagos",₦,"145,000,000",0,0,0,6 beds,7 baths,6 Toilets +Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedrooms House,Pinnock Estate Jakande Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedrooms Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedrooms Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,5 Toilets +Semi Detached Duplex, Jakande Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,6 baths,5 Toilets +Detached 5 Bedroom House,"Lekki , Lagos Lekki Lagos",₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Built 5 Bedrooms Fully Detached Duplex,Ikota Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Beautiful 3 Bedroom Terrace Duplex,Oribanwa Lekki Lagos,₦,"16,675,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Ugochukwu Street Igbo Efon Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Ologolo Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Luxurious 3 Bedroom Flat In Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Beautifully Designed 5 Bedroom Duplex,","Lekki, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Apartment,"Renaissance Mews Estate, Behind Roamy Gardens, Opposite Nicon Town, Lekki Lagos Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House,"Chief Collins Street, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,"Megamound Estate, Ikota Lekki Lagos",₦,"114,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,"Chevron Drive, Lekki, Lagos Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,0 baths,6 Toilets +"Newly Built 4 Bedroom Duplex With 1 Room Bq In Osapa, London",Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Town House,"Lekki Phase1 ,lekki,lagos Lekki Phase 1 Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq, Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Plots Of Land At Arium Estate, Abijo G.r.a.",Abijo G.r.a Lagos. Lekki Lagos,₦,"10,000,000",0,0,0,10 beds,0 baths,10 Toilets +5bedroom Semi Detached Duplex,Toyosi Ayetoro Street Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex With 1bq,Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,5 Toilets +Tastefully Furnished 5 Bedroom Duplex For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,4 Toilets +"3,750 Sqm Land In Lekki Phase 1 For Sale","Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Amen Estate Is Here Again, 10m Per 600sqm Get Your Own Land Now","Lekki, Lagos, Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,5 Toilets +"4 Bedroom Terrace Duplex In Bakare Estate,agungi.",Agungi Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace House With A Room Bq,Osapa Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedroom Detached Duplex At Lekki,Chevy View Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Orchid Estate By Chevron Toll Gate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Osapa London By New Shoprite Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Spar Road Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,4 Toilets +4 Bedroom Terrace Apartment,"Off Spar Road, Ikate Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex Wit Bq,Road 16 Ikota Villa Esatate Ikota Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Flat,Ikate Lekki Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,4 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,"Road 16 Ikota Villa Estate, Lekki Lagosm Ikota Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Detached Duplex,Alcaldia Estate Lekki Lagos,₦,"260,000,000",0,0,0,6 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment,Off Spar Road. Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Units Of 5 Bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom House,Pinnock Estate Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Behind Mega Chicken Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex With A Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex + Bq,Orchid Lekki Lagos,₦,"44,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Detached House At Ikate Elegushi,Ikate Elegushi Ikate Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Forsale At Lekki Phase 1,Abimbola Street Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,3 Toilets +Lovely 5bedroom Duplex,Victory Park Estate Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,7 Toilets +Dry Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex With A Mini Flat Bq,"Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5bedrooms Detached Duplex With 1bq,"Chevy View Estate, Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets + New 4 Bedroom Terrace,"Lekki, Lagos, Lagos Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +Duplex,Water Front View Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,55 Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +600sqm Genuine Plot Of Land With C Of O,"Sangotedo, Eti Osa, Lagos Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,10 beds,10 baths,0 Toilets +A Full Plot Of Dry Land For Sale(fenced And Gated),"Lekki, Lagos, Lagos Lekki Lagos",₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Duplex With Bq In Lekki 1,Near Spar/niccon Town Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"66,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Pent House,Luxury Home In Pinnock Beach Estate Osapa Lekki Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,7 baths,8 Toilets +900sqm Land,Victory Pack Estate Osapa London Lekki Lagos,₦,"105,000,000",0,0,0,1 beds,0 baths,0 Toilets +Newly Built And Well Finished 5 Bedroom Duplex .,"Victory Pack Estate ,osapa Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex For Sale In Ikota Lekki,Westend Estate By Lekky County Homes Ikota Lekki Lagos,₦,"34,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Ibeju Lekki,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"2,100,000",0,0,0,0 beds,0 baths,0 Toilets +"Service Plots Of Land At Portview Estate, Ibeju Lekki","Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Lekki Rose Garden,"Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Lekki, Lagos, Lagos Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Ajah Lekki Lagos,₦,"20,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Pinnock Beach Estate Lekki By Osapa Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Pinnock Beach Estate Lekki By Osapa Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern Luxury 5 Bedrooms Fully Detached Duplex With Separate Compounds Inside A Serviced Gated Estate,"Lekki, Ikate Elegushi Ikate Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxuriously Finished And Spacious 5 Bedroom Duplex,"Estate By Chevron Toll Gate, Lekki Expressway, Lekki, Lagos Chevron Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land With C Of O,"Lekki, Lagos, Lagos Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Duplex,Thomas Estate Ajah Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached Duplex All En Suite,"Lekki Phase 1, Lekki, Lagos Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built And Well Finished 4bedroom Detached Duplex With Bq,"Ikota Villa Estate, Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 3bedroom Terrace Duplex With Bq,"Ikota Villa Estate, Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,"Lekki, Lagos, Lagos Lekki Lagos",₦,"7,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Amen Estate, Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land At Ibeju Lekki,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Ocean View Estate,"Ocean View Estate,alfa Beach Road,lekki Lekki Lagos",₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +2600 Sqm Land,Osapa Osapa London Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fully Detached Apartment,Agungi Lekki Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex + Bq,Off Admiralty Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached,Adebisi Popoola Crescent Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Buene Vista Estate Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Chevy View Within An Estate Lekki Lagos,₦,"375,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Corner Piece Bare Land Measuring 1,300sqm",Mike Adegbite Street Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Measuring 800sqm,Off Kusenla Road Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegant Built 5br +1rm Bq And Swimming Pool. Lekki. Chevron.,"Chevron Drive, Lekki Lagos",₦,"112,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,Destiny Homes Estate Ajah Lekki Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,"Lekki, Lagos, Lagos Lekki Lagos",₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets +Delight House,"Lekki, Lagos, Lagos Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Agungi Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Property,"Lekki, Lagos, Lagos Lekki Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevron Lekki Epe Expressway Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Detached 5 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Scheme 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Osoroko Ibeju Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"1,080,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Pinnock Beach Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +300sqm Plot Of Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Hebron Garden Estate, Eleju, Lekki, Lagos. Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Super Standard 7 Storey, 18 Flats, Water Front.","Lekki, Lagos, Lagos Lekki Lagos",₦,"7,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Plots For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Agungi Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Abijo Lekki Phase 2 Lekki Lagos,₦,"16,000,000",0,0,0,2 beds,2 baths,9 Toilets +Four Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"24,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Serviced Terrace House,"Lekki, Lagos, Lagos Lekki Lagos",₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Flat,"Destiny Homes Estate, Lekki Lagos",₦,"32,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached House,Chevy View Estate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semidetached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Osapa London Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Affordable Plot Of Land For Sale,United Estate Songotedo Lekki Epe Express Way Ajah Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Semi Detached 3bedroom Duplex For Sale,"Ikota Villa Estate, Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex For Sale,"Lekki, Lagos, Lagos Lekki Lagos",₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom House,Sangotedo Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +Prime Commercial 2000sqm Land,Between 2nd And 3rd Round About Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Oral Estate Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Bellavista Gardens Vgc Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ibeju Lekki, Lagos, Lagos Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Peninsula Homes Phase 2 Lekki Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +650sqm Land,Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land Together,Atlantic View Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Row 2 Vgc Vgc Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,Elevation Church Jakande Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +800 Sqm Land,Lagoon View Chevron Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedroom Flats For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"360,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Bare Land Measuring 1,500sqm In Serviced Prime Estate.",Royal Garden Estate. Lekki Lekki Lagos,₦,"100,000,000",0,0,0, beds, baths, Toilets +Bare Land,Royal Garden Estate. Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Measuring 920sqm In A Prime Serviced Estate.,Royal Garden Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +Bare Land Measuring 660sqm In Prime Serviced Estate.,Royal Garden Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedroom Semidetached Duplex For Sale At Chevy View Estate, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +14 Units Of 4bedroom Terrace And 4bedroom Semi Detached Duplex,Ikota Villa 2 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Oriwu Street By Citylodge Hotel Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Express Road Lekki Ikate Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Units 3bedroom Flats,Alpha Beach Rd Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5200sqm Land,Landmark Road Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Normal Road 4 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Opp Agungi Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Express Lekki Phase 1 Lekki Lagos,₦,"1,275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Bare Land,Block C Plot 3 Ikate Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Unique 5 Bedroom Detached House,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of 4 Bedroom Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Ikota Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,3 Toilets +3bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"23,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury Built 5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,4 Toilets +For Sale,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +2bedroom Flat,Abraham Adesanya Estate Ajah Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,2 baths,2 Toilets +4 Bedroom Semi Detached House,Toll Gate 2 Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 5 Bedroom Fully Detached Duplex For Sale In Chevron Alternative, Lekki, Lagos", Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Semi Detached And A Bq,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Labora Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,1 Toilets +Land,Labora Lekki Phase 1 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Palmsbay Estate Lekki Phase 1 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abijo Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Unit Of 5 Bedroom Detached Duplex,Off Ologolo Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,0 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With A Bq,Chevron Alternative Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Nicon Town Estate Jakande Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat + Bq, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Lekki Phase1 , By 2nd Roundabout Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,6 Toilets +Nicely Built 7 Units Of 3 Bedroom Terrace Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,By Aa Rescue Behind Circle Mall Jakande Lekki Jakande Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Bera Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Three Bedrooms Flat,Milverton Estate Osapa London Lekki Lagos,₦,"39,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished Detached Duplex,Lekki Expressway Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Units Of 5 Bedroom Duplex,"Chijioke Akwukunma Street, Chevy View Estate Chevron Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Duplex,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Spacious Semi Detached 4 Bedroom Duplex,Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,8 baths,8 Toilets +4 Bedroom Semi Detached Duplex With Bq,Elegushi Ikate Lekki Lagos,₦,"67,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Olubunmi Owa Str Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Spacious Fully Detached 5 Bedroom Duplex,Back Of Shoprite Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,5 Toilets +Exquisitely Spacious Semi Detached 4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Obire Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Olayinka Street Osapa London Lekki Lagos,₦,"73,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxurious 3bedroom Flat,Ikate Ikate Lekki Lagos,₦,"52,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex (under Development),U3 Estate Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"64,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Itamarun Igbo Efon Lekki Lagos,₦,"1,600,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5 Bedroom Fully Detached Duplex With Boys Quarter At Osapa, Lekki, Lagos.","Osapa, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"59,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ologolo Egbuson Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Epe Express Way Idado Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Akodo Lekki Phase 2 Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Sangotedo Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Unit Of 4 Bedroom Detached Duplex With Bq,Kolawole Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,Ocean Bay Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terrace Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Tastefully Finished 5 Bedrooms Fully Detached Duplex With Attached Room Bq,Located At Idado Beside Chevy View/chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Bedroom Duplex,Jakande Bus Stop Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex,Opposite Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Toll Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautifully Finished 5 Bedroom Detached House,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,0 Toilets +2 Units 4 Bedroom House,Wole Ariyo Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Osaulu Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Oral Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Lekki County Estate Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Estate Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Dele Adeyemi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plots Of Land,Oshoroko Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Idasho Lekki Phase 2 Lekki Lagos,₦,"800,000",0,0,0, beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Chevron Alternative Route Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached House, Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Meadow Hall School Ikate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached House,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Distressed Duplex,Agungi Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Awobode Street Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Via Orchid Hotel Road Lakeview Park, Beside Shell Coplag Garden Chevron Lekki Lagos",₦,"20,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Via Orchid Hotel Road Beside Shell Coplag Garden Chevron Lekki Lagos,₦,"20,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive 6 Bedroom Detached Duplex,Off Admirality Road Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets +Unique 5 Bedroom Duplex + 1 Room Bq,Chevron Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex With Bq,"Chevron, Lekki Chevron Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat And 1 Bq,Whit Sand School Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Plot Of Land,Block 25 Plot 31 Off Akin Adieola Street Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Block 82 Plot 13 Off Engr. Kola Abijola Street Lekki Phase 2 Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Eti Osa, Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Eleko Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Harris Drive Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Harris Drive Vgc Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Xmas Sale Now Selling Four Bedroom Semi Detached Duplex Agungi,Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lands,Epe Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +Lands,Olokonla Ajah Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms Bq,Osapa Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Agingi Lekki Lagos,₦,"7,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With A Bq With All Room Ensuites,Private Chevron Lekki Lagos,₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Mega Mound Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Northwest Station Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Mega Chicken Ikota Lekki Lagos,₦,"260,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Chevy Lekki Phase 1 Lekki Lagos,₦,"82,000,000",0,0,0,5 beds,6 baths,5 Toilets +5 Bedroom Detached And Bq Duplex,Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,New Shoprite Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lands,Ceddar Wood Estate Lekki Lagos,₦,"1,800,000",0,0,0,0 beds,0 baths,0 Toilets +Lands,Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Detached Duplex With Stand Alone Bq,Behind Shoprite Jakande Jakande Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Duplex,Oniru Estate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With A Bq,Eletu Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +4.5 Acres Of Land,Off Baderinwa Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Whiteoak Estate Agungi Lekki Lagos,₦,"71,500,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,By Orchid Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,5 Toilets +Detached 4 Bedroom Detached House,Off Hakeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lands,Ilasan Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Sweet Home,Epe Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Fully Detach And Semi Detached 4 Bedroom Duplex,",Epe Lekki Lagos,₦,"92,000,000",0,0,0,4 beds,5 baths,0 Toilets +Land,"Off Monastery Road, Sangotedo Lekki Lagos",₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Acadia Gardens Estate By Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Units Of Luxuriously Finished 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Rose Garden Estate Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House, Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced House,Chevron Drive Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Houses,Lekki Ocean Side Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +20 Acres Of Land,Epe Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,0 Toilets +15 Hectares Of Land,Akodo Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,By New Shoprite Osapa London Lekki Lagos,₦,"87,000,000",0,0,0,5 beds,0 baths,0 Toilets +Gazetted Dry Land,Free Trade Zone Lekki Lagos,₦,"1,600,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Hotel For Sale In Lekki Phase 1,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"1,700,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land,Lekki Express Way Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Plots Of Land,Lekki Express Way Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Peninsula Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Pinnock Estate Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"178,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex + 2bq, Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Four Plots Of Land (2100 Sqm),5th Round About Igbo Efon Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terrace + Bq, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Southern View Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Southern View Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With 2 Rooms Bq,Chevron Drive Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Aro Town Opp Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,"Lekki, Lagos, Lagos Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 5 Bedroom Duplex With 2 Bq, Well Finished Kitchen Fittings And Foreign Wardrobe",Northern Foreshore Chevron Lekki Lagos,₦,"167,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Verified And Genuine Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Terrace House,Ikate Elegushi Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Duplex Wit Bq,Lara Ademola By Green Ville Estate Agungi Lekki Phase2 Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Alatishe Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Four Bedroom Fully Detached House,Pracht Garden Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached 4 Bedroom Luxury House With Bq (mortgage Option Available),Off Orchid Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Ikota Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,4 Toilets +3 Bedroom Flat,Victory Park Estate Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedrooms Detached House,White Oak Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New Fully Detached 5 Bedroom House,Chevy View Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5bedroom Fully Detached,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom House,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat,House On The Rock Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,5 Toilets +3 Bedroom Flat With B/q,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex + Bq,Chevyview Estate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Pent House,Ocean Bay Estate Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,2 baths,2 Toilets +Exquisite & Smart 5 Bedroom Fully Detached Duplex With 2 Room Bq,Off Road 3 Vgc Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,7 Toilets +Well Finished 4 Bedroom Terrace Duplex Off Carlton Gate Estate,Off Carlton Gate Estate Chevron Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New 4bedroom Terrace House With A Bq,"Abiola Apooyin Street, Oral Estate, Lekki Second Toll Gate Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Spg After Ologolo And Before Igbo Efon Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Eleko Jakande Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,"Providence Street, By 1st Roundabout, Lekki 1, Lagos Lekki Lagos",₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Admerilty Way Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex + Bq,Olatunde Amolegbe Chevron Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex,Lekki Epe Express Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,Udeco Medical Road Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +Old Detached Duplexe,Off Oyibo Adjarho Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Full Detached,Chevron Drive Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,7 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow, Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,6 beds,6 baths,7 Toilets +3 Bedroom Flat With Boys Quarters,Shoprite Jakande Osapa Lekki Lagos Jakande Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Road 51 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,"Ijia Street, Near Buena Vista Estate Ikota Lekki Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex With Bq,Ayogoro Street Ikate Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Bungalow,Southpointe Estate Vgc Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House With 1 Room Bq (off Plan),Josemara Escriva Street Lekki Phase 1 Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lafiaji Off Orchid Hotel Ikota Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4bedrooms Semi Detached Duplex With Bq Each (uncompleted ),Akwuzu Street Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land For Sale.,Off Orchid Hotel Ikota Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Brand New 4 Bedroom Fully Detached Duplex With A Room Bq,Close To Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Around Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Brand New 5 Bedroom Fully Detached Duplex With A Room Bq,Chevron Chevron Lekki Lagos,₦,"77,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Ivory Close Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Lekki County Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Filling Station,"Lekki/epe Express Way,abulepan Before Eleko Junction Lekki Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellent 4 Bedrooms Semi Detached Duplex With A Bq,Orchid Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat, Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern Office ( Off Plan),Off C And I Leasing Road Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Duplex With Bq,West End Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki Phase Of Admiraty Way Lagos Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,"Off Admaratty Way, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plot Of Land,"Treasure Garden Estate, Agaye Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Behind Oando Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Duplex With Bq,Off Chevron Drive Before Vgc Ikota Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Bq,Acadia Groove Estate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached Duplex With Bq, Ikota Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Association Avenue Osapa Just Behind Shoprite Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + A Room Bq,Off Kusenla Road Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"98,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Renovated 4 Bedroom Duplex 24 7 Power,Sultana St Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex,Road 5 Ikota Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 In 1 Cluster 4 Bedroom Duplex,Sultana Chevron Lekki Lagos,₦,"69,900,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Corner Piece Duplex With 1 Ensuite Bq On 800 Square Metres,Chevron Drive Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached 1 Room Bq,Duro Etti St Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,5 baths,0 Toilets +Fenced Land,Seagate Estate Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex,Dada Fayemi Osapa London Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Royal Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Omonrire Johnson Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +"2 Bedroom Apartment (20% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"31,500,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Road 12 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Ikota Housing Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Virgin Land,Lekki Sheme 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Chevron Drive Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Spar Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Magnificent 7bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"370,000,000",0,0,0,7 beds,8 baths,8 Toilets +Well Built 5bedroom Duplex,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,6 baths,6 Toilets +Spacious And Magnificent 5bedroom Duplex,Off Admiralty Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,7 baths,7 Toilets +Excellent Finished Of 5bedroom Duplex,Chevy View Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 And 3 Bedroom Apartment (off Plan),Lekki Epe Expressway Vgc Lekki Lagos,₦,"29,000,000",0,0,0, beds, baths, Toilets +Off Plan 4bedroom Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Durosimi Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Victory Park Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Osapa Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,Chevy View Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Royal Garden Vgc Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Luxury Apartment,"4 Dada Fayemi Close, Osapa, Lekki Osapa London Lekki Lagos",₦,"63,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ikate Ikate Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Luxury Duplex + Bq,"Chevy View, Chevron Lekki Lagos",₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Off Lekki Epe Expressway Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Room Bq, Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ajah Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Opposite Germain Auto Center Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Mansion, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,0 baths,0 Toilets +Land,Oyibo Adjarho Street Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Room Bq, Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Kafayat Abdulrazak Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Road 27 Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Dele Adedeji Street Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +18 Plots Of Land, Lekki Lagos,₦,"27,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Plots Of Land,Olokonla Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Jubril Estate Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Villa Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chevy View Estate Agungi Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Megamound Estate Agungi Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Bakare Estate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Ikate Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Inside U3 Estate, Along Pinnacle Filling Station Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Conservation Road Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Conservation Road Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Off Conservation Road, Olugborogan Lekki Lagos",₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Buena Vista Estate On Orchid Hotel Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Alpha Beach Road Igbo Efon Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Road Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Gbetu Behind Mayfair Garden Estate Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Updc Estate Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Off Orchid Hotel Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Orchid Hotel Road Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Hectares Of Land,Buena Vista Estate On Orchid Hotel Road Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Facing Conservation Road Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Road 27 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom House With A Bq,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom House With A Bq,Lekki County Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Bq, Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Iroko Awe Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Iroko Awe Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Igbo Efon Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Duplex With A Bq,Elegushi Ikate Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land, Chevron Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Off Orchid Road Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Scintilla Close Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With A Bq,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Special Offer! 3 Bedroom Duplex + Extra Penthouse, Electronics, & Laundry Room",Dada Fayemi Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,6 Toilets +"4 Bedroom Flat (10% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"41,400,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Orchid Estate Off Chevron. Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikota Villa West End Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Luxury Terrace Duplex With Bq, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,6 beds,6 baths,6 Toilets +3 Bedroom Flat, Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plot Of Land,Arium Estate Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Orchid Estate Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Estate Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +7 Bedroom Duplex,Admiralty Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,7 beds,7 baths,8 Toilets +3 Bedroom Apartment (off Plan),Lanre Olumide St Agungi Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace With Bq,Jordan Terrace Estate Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Orchid Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Detached Duplex,Chevy View Estate Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Orchid Estate Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom House, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,1 Toilets +4 Bedroom Semi Detached Duplex With Bq,Off Chevron Drive Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq, Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq., Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Governors Consent C Of O,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,1 Toilets +3 Units Of 2 Bedroom Apatment,Adedeji Adekola Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,2 beds,2 baths,1 Toilets +4 Bedroom Duplex,Akinde Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Westend Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Semi Detached Duplex, Vgc Lekki Lagos,₦,"155,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With Bq,Road 16 Lekki Phase 1 Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex,Chief Gbadamosi Street Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Townhouse And A 3 Bedroom Flat,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Walton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Bungalow (uncompleted),Lakowe Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Off Orchid Hotel Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,2 baths,2 Toilets +6 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,6 Toilets +4 Bedrooms Duplex With A Room Bq,Igboefon Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite 4 Bedroom Semi Detached Duplex With Bq,Alternative Rout Chevron Lekki Lagos,₦,"56,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Acres Of Land,"Okun, Ajah Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,"Okun, Ajah Lekki Lagos",₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Meter Land,Off Admiralty Way Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +3&2 Bedroom Boungalow,Awoyaya Ikate Lekki Lagos,₦,"16,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Duplex With Bq,Beach Zone Jakande Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of Tastefully Finished Duplexes For Sale In Chevy View Estate Lekki Lagos,Off Udeco Medical Road Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +600 Sqm Of Land,Okun Ajah Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Jakande Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Alternative Rout Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautifully Built 5bedroom Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Lekki Chevron Lekki Lagos,₦,"55,005,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury Home,Lekki County Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +630 M² – 3 Units Of 4 Bedroom Terrace Duplex With A Room Servant Quarters,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Good Deal: A Very Well Finished And Spacious 4 Bedroom Wing Of Duplex For Sale @ Idado Chevy Lekki Lagos,Off Idado Estate Road By Chevy Link Lekki Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Duplex At Lekki,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful 4bedroom Duplex With Swimming Pool,Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex With Bq,Orchid Hotel Road Chevron Lekki Lagos,₦,"49,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"4 Bedroom Terraced House With Bq,swimming Pool And Fitted Kitchen",Off Prime Water Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Off Fola Osibo, Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets +Excellent 5 Bedroom Detached House + Bq, Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Maisonette(shell Unit),Kusenla Street Ikate Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq (shell Unit),Kusenla Street Ikate Lekki Lagos,₦,"52,500,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,"Southern View, Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Terrace Apartment + Bq,Lafiaji By 2nd Toll Gate Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House, Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Meadow School Road Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Governor's Consent,Road 1 Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Chevron Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Duplex Plus 2 Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"138,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With 2 Bq, Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"125,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House,"Chevron Drive, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Duplex And B/q, Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,"Lekki, Lagos, Lagos Ikate Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House, Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat, Chevron Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,"Abijo Gra, Beside Nicon Town Ii, Off Lekki Epe Expressway Lekki Lagos",₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom House, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Manor Garden Lekki Lagos,₦,"58,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Duplex For Sale,Road 12 Vgc Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Terrace, Jakande Lekki Lagos,₦,"73,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Terraces With 1 Room Bq, Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Bq,Before Chevron Roundabout Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex Plus Bq, Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,5 baths,6 Toilets +Land,Durosinmi Eti Drive Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Buene Vista Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Nicon Town Ikate Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Jamiu Eletu Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terraced Duplex,Eletu Way Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +C Of O,Agungi Agungi Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop, Jakande Lekki Lagos,₦,"19,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Duplex,"Duke's Court Estate, Off Adenike Olotu Street, Off Mobil Road Ilaje Bus Stop, Lekki Phase 2 Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,6 Toilets +5 Bedrooms Detached Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Alpha Beach Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Beside Spg Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Semi Detached House,Chevron Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Near Uba Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Terrace Duplex,Buene Vista Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedrooms Semi Detached Duplex,Orchid Hotel Road Chevron Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Tarrace Duplex,"Lekki Right, By Elf Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Tarrace Duplex,"Mini Estate, Close To Prime Water Garden Ikate Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Tarrace Service Apartment,Idado Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Terrace Service Apartment,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Detached Duplex,Still Water Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Duplex,Estate Close To Pinnacle Filling Station Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex,Cadogan Estate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Pinnock Beach Estate Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Bedrooms Detached Duplex,Behind Shoprite Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedrooms Tarrace Duplex,Estate Chevron Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooms Detached Duplex,Megamound Estate Lekki Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached Duplex,Near French Colony Estate Osapa London Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Tarrace Duplex,By Pinnacle Filling Station Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedrooms Detached Duplex,Chevy View Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Nicon Town Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached House,"Inside Vgc, Vgc Lekki Lagos",₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Luxury 4 Bedrooms Detached Duplex,By Jakabde Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand 5 Bedrooms Detached Duplex,By Jakande Shoprite Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Detached Duplex,Chevy View Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedrooms Detached Duplex,Pinnock Road Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedrooms Detached Duplex,"Megamound Estate, Lekki Lagos",₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Off Folasibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex, Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + Bq,Off Lekki County Road Ikota Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex, Ikota Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chevy View Chevron Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Ocean View Estate Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Palace Estate Lekki Phase 2 Lekki Lagos,₦,"3,600,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Palace Estate Lekki Phase 2 Lekki Lagos,₦,"4,400,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq, Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,0 Toilets +Building, Chevron Lekki Lagos,₦,"400,000,000",0,0,0, beds, baths,0 Toilets +Land,Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"170,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex, Lekki Phase 2 Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,"Chevron, Conservation Drive Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex With One Bq,"Whitesand School Road, By Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"97,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plot Of Land,Lekki Free Trade Zone Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex,"Atlantic Boulevard, Ikota Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Lekki Epe Expressway Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Expressway Lekki Lagos,₦,"4,200,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment, Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Town House, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Omorinre Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex, Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,7 baths,7 Toilets +4 Bedroom Duplex, Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex, Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Behind Emerald Estate Off Mobile Road,ilaje Bus Stop Lekki Phase 2 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + 1 Room Bq,"Oral Estate, Ikota. Vgc Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Ensuit Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,8 Toilets +3 Bedroom Terrace Duplex + Bq, Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached Duplex + Bq,"By Northern Foreshore Road, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,6 Toilets +3 Bedroom Terraced Apartment, Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land ( Joint Venture ),Orchid Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With One Room Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex,Megamond Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5bedroom Completely Detached Duplex For Sale In Lekki,Chevy View Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Completely Detached Duplex,"Royal Gardens , Vgc Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment + Bq | Off Plan, Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +One Unit Of 4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached House,Ikota Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,6 Toilets +4 Bedroom Detached House At Osapa,Osapa Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With A Bq, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached Duplex + Bq,Whitesand Lekki Phase 1 Lekki Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Bakare Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Orchid Road Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Ensuite Semi Detached Duplex With Bq,Igbo Efun Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Orchid Road Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Ensuite Detached House,Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lamd,Behind Mega Chicken Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Fully Detached Duplex, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detach Duplex, Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detach Duplex, Osapa London Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Fully Detach Duplex, Osapa London Lekki Lagos,₦,"86,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Eleganza B/stop Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex, Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Zone M Plot 24 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat With A Room Bq, Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,1 baths,1 Toilets +Land ( Joint Venture ),Inside Eko Atlantic City Lekki Lagos,$,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Link Bridge Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Oba Akinjobi Lekki Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Goshen Estate Road Back Of White Sand School Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilesan Elegushi Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex With Bq, Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex, Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex, Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex + Bq, Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex, Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4unit Of 3bedroom Apartment,"Lagos Bussiness School, Sangotedo Lekki Lagos",₦,"24,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Elegushi Off Kushenla Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Idado Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Bedroom Detached Duplex With A Penthouse, Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Bedroom Flat,Seagate Estate Phase 1 Ikate Lekki Lagos,₦,"39,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced House,Ikate Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +32 (units) 3 Bedroom Flats,Ikate Elegushi Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +12 (units) 4 Bedroom Terrace Houses,"Adedeji Adekola Street, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 (nos) 5 Bedroom Terrace Houses,"Oba Tijani Akinloye Street, Ikota Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Otunba Ajose Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Steve Ajose Street Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detadhed House,Nicon Town Ikate Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Northern Foreshore Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex + Bq, Ikota Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land,Otolu Along Lacapaign Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Iba Behind Ibeju Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Idado Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilamija Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ilamija Near New Airport Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detach Duplex,Ologolo Road Agungi Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Along Orchid Hotel By 2nd Toll Gate Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detach Duplex,Oral Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +60 Plots Of Land,Ilamija Ibeju Lekki Lagos,₦,"450,000",0,0,0,0 beds,0 baths,0 Toilets +80 Plots Of Land,Ibeju Lekki Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +60 Plots Of Land,Iberekodo Near Kayetoro Lekki Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New And Tastefully Furnished 5 Bedroom Fully Detached House,Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment | Off Plan, Lekki Phase 1 Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex, Jakande Lekki Lagos,₦,"32,750,000",0,0,0,3 beds,4 baths,4 Toilets +Mini Flat,Seaside Estate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean And Tastefully Built 6 Bedroom Fully Detached House,Admiralty Way Lekki Phase 1 Lagos State Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,6 beds,6 baths,7 Toilets +A Clean 5 Bedroom Detached House At Vgc,Admiralty Way Lekki Phase 1 Lagos State Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Various Plots Of Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"67,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,Ikota Vgc Ikota Lekki Lagos,₦,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +C Of O,Ikota Vgc Ikota Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bedroom Apartment,Abijo Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Apartment + Bq, Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace House,"Located Beside Vfs Global , Plot 24, Providence Street , Lekki Epe Expressway Lekki Scheme 1, Lekki Phase 1, Lagos, Lagos Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 2 Bedroom Flats,Kunshenla Road Lekki Lagos,₦,"49,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Lilly Gate Hotel Lekki Lagos,₦,"175,000",0,0,0,0 beds,0 baths,0 Toilets +Land,By Pinnock Beach Estate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Urban Base Estate, Lekki Phase 1 Lekki Lagos",₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex With Bq,Meadow Hall Way Ikate Lekki Lagos,₦,"58,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette,Meadow Hall Way Ikate Lekki Lagos,₦,"35,200,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Maisonnette,Kusenla Road Ikate Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,4 baths,5 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached Duplex,Road 2 Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Opposite Mega Chicken Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Bungalow,Tipper Garage Chevron Lekki Lagos,₦,"18,000,000",0,0,0,2 beds,2 baths,3 Toilets +Executive 4 Bedroom Fully Detached Duplex,Bakare Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedrooms Semi Detached Duplex With Boys Quarters,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced House,"Abiola Court 3, Saki Close Osapa London Lekki Lagos",₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex + Bq,Hameed Kasumu Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bederoom Detached Duplex,Crown Estate. Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,2 baths,2 Toilets +4 Bedroom Duplex,Romay Garden Ikate Lekki Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Barolla Estate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Ajibade Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Westend Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,3 baths,3 Toilets +6 Bedroom Detached Duplex,Chief Amah Close Ikota Lekki Lagos,₦,"150,000,000",0,0,0,6 beds,8 baths,8 Toilets +4 Bedroom Semidetached Duplex,Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached House,Off Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Detached House,Ikate Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House In Chevron,Chevy View Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 4 Bedroom Semi Detached House With Bq,Atlantic View Estate Idado Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Carlton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex | Off Plan,Lekki Right Side Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Plots Of Land,Oribawa Close To The Express Of Ibeju Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogufayo Royal Estate. Eputu Town Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land, Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogufayo Royal Estate Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,After Buena Vista Estate Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom End Of Terrace House + A Room Bq,Romay Garden Ikate Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Apartment,Elegushi Beach Road Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat,Meadow Hall Way Chevron Lekki Lagos,₦,"26,500,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Meadow Hall Way Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Duplex,Chevron Drive Lekki Lagos,₦,"34,500,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Apartment,Oral Estate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,0 baths,0 Toilets +7 Units Of 4 Bedroom Semi Detached Duplexes, Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplexes,Orchid Road Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplexes + Bq,Ilasan Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Flat With Bq,Elegushi Ikate Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +2 Bedroom Flat,Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + 2 Rooms Bq,Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Units Of Beautifully Finished 4 Bedroom Terrace Duplexes + Bq,Elegushi Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplexes + 1 Room Bq,Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +1 Bedroom Studio Apartment,Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,1 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex + Bq,Elegushi Ikota Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex + Bq, Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Bakare Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Terrace Duplex + Bq,Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,8 baths,8 Toilets +Executive Luxury 5 Bedroom Duplex With A Rooms Bq,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semidetach Duplex,Vgc Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,"Chevron Drive, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Agungi Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,6 Toilets +2 Bedroom Apartment,Meadow Hall Road Ikate Lekki Lagos,₦,"22,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Bungalow,Desa Ibeju Lekki Lagos,₦,"7,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Kushenla Road Ikate Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Goshen Estate Road Back Of White Sand School Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Carlton Gate Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Chevron Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + 2 Rm Bq,Vgc Vgc Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,4 baths,5 Toilets +2 Hectares Of Land,Behind The Presbyterian Church Vgc Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Buena Vista Estate Orchid Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +3bedroom Bungalow Detached House,Divine Homes Estate Agungi Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terraced House, Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House, Ikota Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"31,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Road 27 Vgc Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Idado Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki County Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,"Pinnock, Ikate Lekki Lagos",₦,"365,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Road Ikota Lekki Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq, Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +60 Plots Of Land,"Oshoroko Village, After Dangote Refinery Lekki Lagos",₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +60 Plots Of Land,Oshoroko Village Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +15 Plots Of Land,Facing Lekki Epe Expressway At Lakowe Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Plots Of Land,Abijo Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +33 Plots Of Land,"Beside General Paint At Alasia, Facing The Lekki Epe Expressway Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,Oribanwa Facing Lekki Epe Expressway Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land,"Eputu, All Facing Lekki Epe Expressway Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Plots Of Land,Abraham Adesanya Roundabout Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +60 Plots Of Land,"Alahun, Opposite Richmond Estate Lekki Lagos",₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Along Lekki/epe Exp/way Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Green Spring School Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Fola Osibo Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Modern Detached House,"Royal Gardens Estate, Lekki Phase 1 Lekki Lagos",₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Lekki Ekpe Expressway, Lekki Phase 2 Lekki Lagos",₦,"3,800,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Chief Eletu, Osapa London Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Chief Eletu Osapa London Lekki Lagos,₦,"76,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Duplex,"Ilasan, Lekki Phase 1 Lekki Lagos",₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Duplex + Bq,"Whitesand ,along Elf Road, Lekki Phase 1 Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +Appealing 4 Bedroom Duplex With Bq In Osapa London,Osapa Osapa London Lekki Lagos,₦,"61,000,000",0,0,0,4 beds,4 baths,5 Toilets +6bedroom Duplex With 2nos Of 3bedroom Flat,Garba Lawal Street Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Semi Detached Duplex,Chevy View Estate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,"Road 2, Vgc Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Igboefun Jakande Lekki Before Chevron, Lekki Phase 1, Lekki, Lagos Igbo Efon Lekki Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Lekki, Lekki Phase 1 Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5 Bedroom House,"Northern Foreshore Estate, Chevron Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive 5 Bedroom House,"Chevron Alternative Route, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 3 Bedroom Flat,"Orile Ilasan, Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 4 Bedroom Detached Duplex,"Idado Estate, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Serviced And Furnished 4 Bedroom Penthouse Type Apartment (7th Floor),"Ikate Lekki, Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex,"Ologolor, Agungi Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,"Ikate Elegushi, Ikate Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Vgc, Vgc Lekki Lagos",₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Lekki Phase1 , Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced House,Femi Okunnu Estate Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Crown Estate Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House,"Lekki County Homes Estate, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 4 Bedroom Duplex + Bq,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Duplex Of 5 Bedroom Duplex With A Room Bq Each,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Terrace Duplex,"Estate, Jakande Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Flat,"Oral Estate, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets +4 Bedroom Terrace Flat,"Oral Estate, Ikota Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Detached House,"Lekki Phase1, Lekki Phase 1 Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex,"Lafiaji Opp Chevron Hq Via Orchid Hotel Road, Chevron Lekki Lagos",₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom + A Bq,"Omorire, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,"Royal Garden, Vgc Lekki Lagos",₦,"165,000,000",0,0,0,5 beds,7 baths,7 Toilets +5 Bedroom Contemporary Detached House + Bq,"Lekki County Homes, Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Fully Detached House + Bq,"Osapa, Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Terrace Apartment,John Okafor Street Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Bungalow With A Storey Building, Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,0 baths,0 Toilets +Governor's Consent,7th Avenue Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Governor's Consent,Off Lekki Epe Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Governor's Consent,Buena Vista Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Pennisula Scheme 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Block Of 4 (3bedroom) Flats,Road 48 Vgc Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,6 beds,6 baths,6 Toilets +2wings Of 5bedroom Duplex + Bq, Agungi Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land For Sale,"Lafiaji Road, Off Orchid Hotel Ikota Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Duplex,Estate Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 4 Bedroom Semi Detached House,"Oral Setate, Ikota Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Semi Detached,"U3 Estate Lekki Right, Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Off Durosinmi Etti Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached House, Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Detached Duplex For Sale,Chisco Ikate Ikate Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,"Lekki Phase 4, Ajah Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Terraced Duplex,Vgc Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex, Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +9 Units Of 4 Bedroom Semi Detached Duplex, Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ologoro Area Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ologoro Area Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace,Orchid Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,3 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq, Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Serviced 4 Bedroom Apartment + Bq,"Off Spar, Ikate Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace House,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautiful 4 (nos) 5 Bedroom Duplexes,Oral Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex., Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Half Plot Of Land,Near Eleko Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex + 2 Brm Bq, Ikate Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets +Massive Newly Built 5 Bedroom Detached Duplex,Off Chevron Drive Lekki Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Ologolor Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built Four Bedroom Detached House With Bq And Swimming Pool For Sale In Victory Park,"Victory Park, Osapa Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Five Bedroom Detached House With A Room Bq,Ikate Elegushi Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With 2 Rooms Bq,Royal Garden Estate Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Detached House,Orchid Hotel Road Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Terrace House,Igboefon Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Five Bedroom Semi Detached House + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplexes, Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Wings Of 5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,0 baths,0 Toilets +Five Bedroom Fully Detached House + Bq,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex, Vgc Lekki Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached House,Gen Edmin Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets +"3 Bedroom Apartment (20% Discount, Off Plan)",Dada Fayemi Osapa London Lekki Lagos,₦,"39,150,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Oba Musa Agungi Lekki Lagos,₦,"39,000,000",0,0,0,5 beds,0 baths,0 Toilets +Mega Filling Station,Eleko Junction Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House + A Room Bq,Ikate Elegushi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex + A Room Bq,Carlton Gate Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Fully Detached Duplex, Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Twin Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached House With 2 Room Bq, Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Four Bedroom Fully Detached,Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four Bedroom Terrace,Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Three Bedroom Flat,Ikate Elegushi Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 4 Bedrooms Semi Detached With Bq,Alpha Beach Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With Miniflat Bq, Vgc Lekki Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex, Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Bungalow,"Ilasan, Lekki Before Jakande Estate Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"32,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Southlake Estate Around Spg Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ologolo Area Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ologolo Area Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Buena Vista Estate By 2nd Toll Gate By Orchid Hotel Road Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Osapa Lekki Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Igbogun Road Lekki Phase 2 Lekki Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki Phase 2 Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki Phase 2 Agungi Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Phase 2 Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex, Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury New 5 Bedroom Duplex With Bq,Femmi Okunnu Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +Duplex In Nothern Foreshore Estate Lekki,Nothern Foreshore Estate Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,6 Toilets +New Duplex In Lekki Phase 1,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,Lekki Expressway Osapa London Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Lekki Expressway Vgc Lekki Lagos,₦,"195,000,000",0,0,0,5 beds,6 baths,6 Toilets +New Duplex In Chevyview Estate Lekki,Lekki Expressway Chevron Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,5 baths,5 Toilets +Detached House,Alpha Beach Chevron Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Lekki Epe Express Lekki Phase 1 Lekki Lagos,₦,"780,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detatched Duplex With Pent House,Chevy View Estate Off Lekki Peninsula Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oladimeji Alo Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Bamidele Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive Well Finished 4 Bedroom Terrace Duplex,Lekki County Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Plot Of Dry Land,Tera Annex Estate Shangotedo Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 No's Of 2 Bedroom Flat,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Urban Base Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace House,Off Chevron Drive Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ikota County Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land (half Plot),"Gra, Abijo Lekki Lagos",₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House With A Room Bq,Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex, Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Bq,Megamound Estate Lekki County Homes Ikota Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Completed 3 Bedroom Serviced Terraced Duplex With Excellent Facilities,Bamidele Eletu Osapa London Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Serviced 3 Bedroom Terrace Apartment,Spar Road Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Faji Close Vgc Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Five Bedroom Fully Detached House,Lekki Right Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Amadasun Street Igbo Efon Lekki Lagos,₦,"52,500,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Terrace House,Ojo Oyewo Idado Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land,Ogombo Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Bridge Ikota Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,"Lafiaji, Off Chevron Road Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House,Chevy View Estate Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Earls Court Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Expressway Osapa London Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets +7 Bedroom Detached Duplex,Lekki Ph 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,7 beds,8 baths,8 Toilets +Luxury New Property,Lekki County Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex And A Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"118,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 5 Bedroom Duplex And A Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex And One Room Bq,Mega Mound Estate Ikota Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury New Duplex In Lekki Phase1,Lekki Expressway Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Plot Of Land,Eti Osa Vgc Lekki Lagos,₦,"15,300,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Along Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Fully Detached Duplex With Bq,Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land, Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ), Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Elegushi Ikate Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Elegushi Ikate Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Aremo Oniru Crescent Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Abisogun Street Off Palace Road Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale ( Joint Venture ),Dideolu Estate Oniru Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Estate Ikota Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Victoria Creset Estate. Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,. Agungi Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex In Lekki Phase 1,Oral Estate Lekki Phase 1 Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex Along Orchid Hotel,. Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Behind Elegushi Estate Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +An Old 5 Bedroom House,Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Old 4 Bedroom Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,"Ikate, Elegushi Ikate Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,0 Toilets +Serviced Plot Of Land,Kunsela Street Jakande Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 5 Bedroom Duplex,Oba Akinloye Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Osapa London Jakande Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex, Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace,"Meadow Hall School Street, Ikate Ikate Lekki Lagos",₦,"34,000,000",0,0,0,4 beds,4 baths,4 Toilets +An Old 4 Bedroom Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Ochid Road Ikota Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex With Bq,Osapa London Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Ochid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Built 4 Bedroom Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Semi Detached House,"Meadow Hall School, Alternative Route Lekki Phase 1 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exotic 5 Bedroom Fully Detached,White Sand Street Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex + Bq,White Sands School Road Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Admiralty Estate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxurious 4 Bedroom Fully Detached Family Duplex,Admiralty Estate Road Igbo Efon Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Pent House Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Property Containing 7 Flats,Osapa London Osapa London Lekki Lagos,₦,"210,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 5 Bedroom Luxury Duplex,"At Admiralty Estate Road, Alpha Beach, Lekki Lagos., Lekki Expressway, Lekki, Lagos Igbo Efon Lekki Lagos",₦,"67,000,000",0,0,0,5 beds,5 baths,1 Toilets +An Old 4 Bedroom Semi Detached,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Old 5 Bedroom Detached Duplex With Bq,Estate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Mansionette,"Off Road 12, Very Close To Lekki Ikoyi Bridge. Lekki Phase 1 Lekki Lagos",₦,"850,000,000",0,0,0,5 beds,0 baths,0 Toilets +630 Square Metres Land,Estate Chevron Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +980 Square Metres Land,Estate Chevron Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Estate Chevron Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,000 Square Metres Of Land For Sale",Estate Chevron Lekki Lagos,₦,"760,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House With 2 Rooms Bq,Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Old 5 Bedroom Duplex With 2 Rooms Bq,Estate Chevron Lekki Lagos,₦,"260,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex,Alternative Route Chevron Lekki Lagos,₦,"15,500,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Gracefield Island Chevron Lekki Lagos,₦,"100,000",0,0,0, beds, baths, Toilets +902 Square Metres Of Land,Just After The Roundabout. Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Room Office Building,Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,3 baths,3 Toilets +Acre Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Flat,Spar Road Ikate Lekki Lagos,₦,"36,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terraced Duplex,Off Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 6 Blocks Of 4 Bedroom Terrace Town House Duplex With A Room Bq,Elegushi Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Newly Built 5 Bedroom Duplex With A Room Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,"Mobil Road, Ilaje Ikota Lekki Lagos",₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ibeju Lekki(ayeteju) Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 2 Bedroom Apartment,Cornelius Odinjor Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,3 baths,3 Toilets +Commercial Land On Lekki Ajah Expressway,"Illasan, Lekki Ajah Expressway Lekki Phase 1 Lekki Lagos",₦,"210,000",0,0,0, beds, baths, Toilets +Luxury Built 5 Bedroom Detached Duplex,Osapa London Lekki Phase 1 Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex For Sale,Osapa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex With 1 Bq,"Vintage Park 2, Jakande, Jakande Lekki Lagos",₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Old 5 Bedroom Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +An Uncompleted Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"220,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached Duplex,Estate Chevron Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Semi Detached Duplex,Estate Chevron Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Maisonette All Ensuite,Amadasun Street Just Before The 6th Roundabout Idado Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Built Brand New 4 Bedroom Semi Detached Town House + 1 Room Bq,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Duplex With One Room Boys Quarter,Off Ninolowo Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached,"Victory Park Estate, Beside Nicon Town Ikate Lekki Lagos",₦,"112,000,000",0,0,0,5 beds,0 baths,0 Toilets +Residential Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"36,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New Luxury 4bedroom Fully Semi Detached Duplex With A Bq,",Bueno Vista Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Detached Duplex For Sale At Lekki Phase 1.,"Oladimeji Alao Street, Lekki Phase1. Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Apartments In Chevron Area,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 4 Bedroom Terrace With A Bq,Oniru Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartment,Admiralty Lekki Phase 1 Lekki Lagos,₦,"78,000,000",0,0,0,3 beds,4 baths,4 Toilets +900sqm Plot Of Land,Victory Park Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Newly Built 4 Bedroom Detached Duplex,Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Penthouse + One Room Bq,Oba Saheed Elegushi Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Lekki Left Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Units Of 4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lagos Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached House With 2 Room Bq,"Ayinde Akinmade Str, Off Admiralty Way Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautiful And Newly Built Commercial Property,Fola Oshibo Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,4 beds,3 baths,3 Toilets +Genuine Plot For Sale In Lakeview Park Estate 2,Lakeview Park Estate 2 Chevron Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,093 Square Meter Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 4 Bedroom Terrace Duplex,Lekki Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nice 4 Bedroom With A Bq In Block Of Flats,"Victory Park Estate, Jakande Lekki Lagos",₦,"30,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Lekki Gardens Estate 2 Lekki Phase 2 Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Bridgegate Estate Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,A Series Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Christ Avenue Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2plots Of Land Well Located,Sea Gate Estate Lekki Phase 2 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Bedroom Bq,"Igbo Efon, Lekki Igbo Efon Lekki Lagos",₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex With 2 Bedroom Bq,Igbo Efon Igbo Efon Lekki Lagos,₦,"38,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Adegbenle Street Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5bedroom Detach Duplex,Ikate Lekki Phase1 Ikate Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Wing Of Duplex With Bq,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New Tastefully Finished Property,Lekki Expressway Idado Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Awesome 5bedroom Duplex With Bq,Osapa London Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Duplex,Oral Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Atlantic View Estate,by Alpha Beach Lekki Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Mungamund Lekki Phase 2 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq And 3 Sitting Rooms,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Fitted Semi Detached 4 Bedroom Duplex,Oba Akinloye Way Jakande Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,6 baths,5 Toilets +"Land Measuring 2,100 Square Metres",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Plots,Dreamworld Africana Way Ikate Lekki Lagos,₦,"50,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 5 Bedroom Fully Detached Duplex With 2 Room Bq Plus Swimming Pool,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,4 baths,4 Toilets +Plot Of Land,Ceder Street Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lekki Villas Phase 1 Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Terrace House With A Room Bq,Opposite Nicon Town Ikate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With 2 Room Bq And Swimming Pool,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Units Of 4 Bedroom Terrace Duplex,Lafiaji Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Town House,Bakare Estate Agungi Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,3 baths,4 Toilets +Fully Detached Large 4 Bedroom Duplex With Bq,Oral Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedrom Terrace Duplex,"Buene Vista Estate Lafiaji Lekki, Lagos Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,3 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Oral Estate Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +Imported Urban Marquee Tent,Alafia Lekki Lekki Lagos,₦,"20,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Beside Orchid Vgc Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Executive And Specious 3 Bedroom Flat With A Bq,U3 Estate Lekki Lekki Phase 2 Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +7bedroom Water Front Mansion With Bq.,Friends Colony Osapa London Lekki Lagos,₦,"150,000,000",0,0,0,7 beds,4 baths,7 Toilets +Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Terraced Duplex+bq In Osapa,Abiola Court Osapa London Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Land,Before Eleko Junction Lekki Phase 2 Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Bakare Estate Chevron Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oae Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Finished 4 Bedroom Terrace Duplex With Boys Quarter,2nd Round About Lekki Lekki Phase 2 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedroom And 2 Bedroom Flat,Circle Shoprite At Osapa London Lekki Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Finished 4 Bedroom Terrace House With A Room Bq,Opposite Nicon Town Ikate Lekki Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Flat,Lekki County Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Wings Of 5bedroom Duplex,Jakande Estate Jakande Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Oladimeji Alao Street Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Buene Vista Estate Off Chevron Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,"Akinifesi Olusola, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Admiralty Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Unit Of 4 Bedroom Detached Duplex With 1bq,"Atlantic View Estate,by Alpha Beach Lekki Chevron Lekki Lagos",₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Buene Vista Estate By 2nd Toll Gate By Orchid Hotel Road, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 No's Of 4 Bedroom Terraced Duplex With Bq,Chevron Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex In Ikota,"Road 16, Ikota Villa Estate1 Ikota Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Royal Garden Estate Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Detached House,Royal Garden Estate Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),Osapa London Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Admiralty Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land ( Joint Venture ),Ariori Tajudeen Street Off Alpha Beach Road By New Road Bustop Igbo Efo Igbo Efon Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lekki Phase 1 Series A Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lekki Aldmalrity Axis Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,"Westend Estate, Ikota Villa Estate 1 Ikota Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land ( Joint Venture ),"Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace Duplex For Sale In Chevron,Near Toll Gate Ajah Chevron Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +Uncompleted Duplex And 2 Storey Hall,Chevy View Idado Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Office Space,Carlton Gate Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Beach Road Jakande Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Furnished Duplex,Chevron Drive Lekki Chevron Lekki Lagos,₦,"88,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Duplex,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom House,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +"1,000 Square Metres Of Fenced Land",Ben Okagbue Mba Street Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Old Building Of 2 Units Of 4 Bedroom Duplexes On 1,300 Square Metres",Ibiyinka Salvador Street Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,4 Toilets +6 Bedroom Luxuriously Built Detached House With Penthouse On 3 Floors And Inbuilt Bq,Prince Adelowo Adedeji Street Junction Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land ( Joint Venture ),"On Silverbird Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Off World Oil Road, Ilasan Ikate Elegushi. Ikate Lekki Lagos",₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Osapa London Lekki Osapa London Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Christ Avenue, Off Admiralty Road. Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +Mega Filling Station,"Eleko, Between Eleko And Ibeju Lekki Lekki Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Apartment (off Plan),Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"16,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Be Chevron Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Semi Detached Duplex,Ocean Bay Estate After 2nd Toll Gate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3 Units Of Duplex,Western Estate Ikota Lekki Lagos,₦,"150,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury Fully Detached 5 Bedroom,Chevron Road Chevron Lekki Lagos,₦,"95,000,000",0,0,0,6 beds,6 baths,6 Toilets +A 4 Bedrooms Terrace Duplex,Association Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedrooms Semi Detached Duplex,Idado Estate Idado Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5bedrooms Fully Detached Duplex For Sale In Osapa London,Eletu Road Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lands,No:providence Street Shangotedo Ajah Lekki Phase 1 Lekki Lagos,₦,"2,600,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Finished 4 Bedroom Semi Detached Duplex,Chevron Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,0 Toilets +A Plot And Half Of Land,Beach Road Jakande Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built Three Bedroom Terrace Building,Off Lekki Epe Expressway Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built Five Bedroom Fully Semi Detached House With One Room Servant Quaters,Osapa Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Units Of 3 Bedroom Duplexes,By South African Embassy Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Duplex,Awudu Ekpekha Blvd Street Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Duplex With 2 Units Of 3 Bedroom Flats,Ikota Villa Estate Ikota Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Units Of 4 Bedroom Terrace,Lekki Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fantastic 5 Bedroom Fully Detached House,Richard Nwangu Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedrooms Duplex,Atlantic Chevron Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,6 baths,5 Toilets +4 Units Of Three Bedroom Flat,Novojo Estate Agungi Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Alma Beach (water Front). Ikate Lekki Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Opposite Vgc, Facing Lagos Epe Expressway Vgc Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,52 Plots Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"832,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ogombo Road Lekki Phase 2 Lekki Lagos,₦,"832,000,000",0,0,0,0 beds,0 baths,0 Toilets +Superb Newly Built 5br Duplex,Off Afrika Lane Lekki Phase 1 Lekki Lagos,₦,"340,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat At Lekki Gardens After Lbs,Lekki Gardens After Lbs Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Semi Detached,Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Units Of 3 Bedroom Flat,Cromwell Court Chevron Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land ( Joint Venture ),By Castle And Temple Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5 Bedroom, Fully Detached Duplex",Oba Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A 5 Bedroom, Fully Detached Duplex",Oba Avenue Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Detached Duplex (construction On Going) 4 Bedroom With A Bq,Dolo Oyekan Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Room Duplex.,Akin Legh Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Kss Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Ikate Elegushi Ikate Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace House,Lekki Right Lekki Phase 1 Lekki Lagos,₦,"92,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,"Peanock Estate Behind 2nd Shoprite,lekki Lekki Phase 1 Lekki Lagos",₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxiriously Finished 2 Bedroom Apartment,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex And 2bq Attached,Road 47b Vgc Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,6 Toilets +Land For Sale," Max Film Cinema, Cbd Lekki Phase 1 Lekki Lagos",₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lilygate Hotel Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 4 Bedroom Townhome,"After Nicon Town Behind Globe Motors, Agungi, Lekki Agungi Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,1 Toilets +Land For Sale,4th Round About Lekk Ikate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,4th Round About Lekk Ikate Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lekki Rhs Whites And School Area Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Block 139 Plot 3,lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroon Ensuite Duplex,Within Chevron Axis Chevron Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroon Duplex,Chevron Road Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Christ Avene Off Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,"Plot 6 Block Iii, 16a, Oladimeji Alao Street, Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Femi Okunnu Estate Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +"3 Bedroom Flat And 2 Bedrooms Flat, With A Servant Quarters Each",Chief Austin Anozie Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Within Chevron Axis Lekki Phase 2 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,Chevron Road Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Luxury Detached House With 1 Room Bq,Lekki County Chevron Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedrooms Luxury Semi Detached House + 1 Room Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedrooms Fully Detached House With 1 Room Bq,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 6 Storey Building Hotel With 153 Rooms,Along Chevron Drive. Chevron Lekki Lagos,₦,"2,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +Tastefully Built Brand New 5 Bedrooms Fully Detached House With 1 Room Bq,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Nos Brand New Tastefully Finished 5 Bedrooms Fully Detached House,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House With 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Houses,By Ascon Filling Station Ikota Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex + Bq,White Sand School Rd Ask Bencom Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished State Of The Art 4 Bedroom Detached House With Swimming Pool,Olumide Bamidele Street Idado Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 12 Unit Of 3 Bedroom Flat,Road 7 Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Luxury Apartment,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,0 Toilets +3 Bedroom Flat With 1 Room Servant Quarter,Chevy View Estate Idado Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +1222sqm Of Land,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Unit Of 4 Bedroom Terrace Duplex,Wonder Church Road Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Abraham Adesanya Round About Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,"Orchid Road, Lekki Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached House With A Room Bq,West End Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Plots Of Land,Ajah Vgc Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Semi Detached Duplex + Bq,Orchid Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Auto Germaine Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrrom Fully Detached House With A Room Bq,Awobode Ikota Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +House /land,Royal View Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,6 beds,5 baths,5 Toilets +648 Square Metres Of Land,Awoyaya By Mayfair Garden Igbo Efon Lekki Lagos,₦,"16,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom And 4 Bedroom Detached Duplex,Chevy View Estate By Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House With Bq,Durosimi Etti Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land ( Joint Venture ),Rasheed Williams Street Lekki Phase 1. Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With Bq,Durosimi Etti Road Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Brand New 5 Bedroom,in Ensuite Fully Detached House With A Room Bq",Lekki Parse2 Agungi Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With A Room Bq,Agungi Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Duplex,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4unites Of 5 Bedroom Duplex With Swimming Pool,Lekki Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Duplex With Swimming Pool,Ajah Vgc Lekki Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Opposite Lagos Business School Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Constructed And Well Furnished 4 Bedroom Semi Detach Ed House + 1 Room Bq,Apena Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +1100.0 Square Meter Land,Pin Nock Beach Lands Agungi Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Apartment Newly Built 3bedroom Flat,Osapa London Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,0 baths,0 Toilets +6 Units Of Luxury 2 Bedroom Service Apartment,Osapa London Osapa London Lekki Lagos,₦,"28,000,000",0,0,0,2 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom,Beside Circle Mall Jakande Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartments,Friends Colony Jakande Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Duplex + Pent House,Victoria Park Serviced Estate Jakande Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Semi Detached 4 Bedroom Duplex,Ikota Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Three Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land With Global C Of O,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"126,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Behind Romay Gardens Lekki Phase 1 Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq,Before Chevron Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,0 baths,0 Toilets +6 Bedroom Detached House With 2 Rooms Bq,Nicon Town Chevron Lekki Lagos,₦,"480,000,000",0,0,0,6 beds,6 baths,6 Toilets +5 Bedroom Detached House With 2 Rooms Bq,Nicon Town Chevron Lekki Lagos,₦,"380,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached House With Bq,Nicon Town Chevron Lekki Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets +A Plot Of Land Measuring 1000sqm,Zone B Chevron Lekki Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1000sqm,Zone A Chevron Lekki Lagos,₦,"215,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1200m2,Nicon Town Chevron Lekki Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat At Chevron For Sale #35m,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached,Ikota Villa Estae Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,6 baths,5 Toilets +A 5 Bedroom Semi Detached Duplex,"Lekki County Homes, Mega Chicken Lagos Ikota Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +7 Bedroom Duplex All Room Ensuit,Road 5 Ikota Lekki Lagos,₦,"65,000,000",0,0,0,7 beds,6 baths,5 Toilets +5bedroom Fully Detached Duplex,Megamound Estate Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale: Brand New 5 Bedroom Fully Detached House With Bq,"Lekki County Estate, Ikota, Lekki . Ikota Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Nos Of 4 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Shop,Jakande Jakande Lekki Lagos,₦,"700,000",0,0,0,1 beds,1 baths,0 Toilets +5 Bedroom Duplex And 2 Units Of 3 Bedroom Flat,Lekki Igbo Efon Lekki Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,5 Toilets +Land,Westwood Estate Ikota Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Maid Room,Oniru Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Eruifa Ikate Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Bq,Oral Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex N62m And 5bedroom Fully Detached Duplex For N75m.,Circle Shoprite Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +Block Of Flats,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Lekki Phase 1 Behind Tantalizer Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Off Ikota Villa Road Ikota Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Bedroom With 2 Rooms Bq Mansion,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,0 baths,0 Toilets +"2,100 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Story Building And An Uncompleted Duplex,Chevron Estate Chevron Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Majek, Close To Crown Estate Shoprite Lekki Phase 2 Lekki Lagos",₦,"22,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 5 Bedroom Duplex,Herbert Orgi Street (7th Avenue) Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,7 baths,7 Toilets +Shell 2 Bedroom Apartment @ Lekki Gardens Horizon 2 Estate For Sale,"Meadow Hall Way Lekki Gardens Horizon 2 Estate, Ikate Elegushi, Lekki, Lagos Lekki Phase 1 Lekki Lagos",₦,"18,500,000",0,0,0,2 beds,1 baths,3 Toilets +2 Bedroom Serviced Apartments,Chevron Drive Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Land With Global C Of O,1 Km From Dangote Refinery Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Global C Of O,I Mile From Dangote Refinery Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Rich Mall Estate Chevron Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of A Luxury 4 Bedroom Duplex,"Osapa London, Lekki Osapa London Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Plots Of Land At Vgc Lekki,Vgc Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex With Bq,Idado Street Igbo Efon Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terraced Duplex,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex (governor's Consent),Ikota 1st Gate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Chevron Drive Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Chevron Twin Lake Chevron Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Duplex With Swimming Pool,Road 3 Vgc Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached,Chevron Chevron Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom Detached House,Vgc Lekki Lagos,₦,"300,000,000",0,0,0,9 beds,9 baths,9 Toilets +Beautiful 4 Bedroom + Bq Semi Detached In A Secured Gated Enviroment,By 2nd Toll Gard Ikota Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,6 Toilets +Beautiful 4 Bedroom + Bq Semi Detached In A Secured Gated Enviroment,By 2nd Toll Gard Ikota Lekki Lagos,₦,"42,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex With A Pool,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bed Room For Sale,Yeye Olofin Lekki Phase 1 Lekki Lagos,₦,"260,000,000",0,0,0, beds,5 baths,6 Toilets +Land For Sale,Plot 99/100 Maiyegun Tourism Zone Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,James Adejumo Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,"Idado Road, Lekki Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious 4 Bedroom Duplex,Ikota Gate 2 Vgc Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Idado/ Igbon Efon Street Agungi Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Duplex (all Ensuit),Lekki County Ikate Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 2 Bedroom Flat,Lekki Lekki Phase 1 Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Free Trade Zone Lekki Lagos,₦,"350,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Jerry Iriabel Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Duplex,Mega Chicken Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Hope Hariman Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Tunde Laitan Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Unit Apartment 3 Bedroom Apartment,Road 5 Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Eletu Agungi Lekki Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +"A Mega Shopping Mall , ( Sitting On Total Area 3000sqm)",Chevron Lekki Chevron Lekki Lagos,₦,"800,000,000",0,0,0,10 beds,10 baths,9 Toilets +Block Of Flats,Olushola Agbaje Lekki Phase 1 Lekki Lagos,₦,"950,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Bungalow And A Room Boys Quarters With 24/7 Power Supply,Lekki Epe Expressway Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Two Room Bq,"Lake View Park 2, Orchid Road Chevron Lekki Lagos",₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Semi Detached Town House,Chevron Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex,Ikota Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Awobode Abiodun Street Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,7 Toilets +5 Bedroom Town House,Elegushi Ikate Lekki Lagos,₦,"48,500,000",0,0,0,5 beds,5 baths,6 Toilets +"Land For Sale At Stonehenge Estate, Lekki",Eti Osa Reservation Road Chevron Lekki Lagos,₦,"16,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury Solar Powered 5 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Luxury Apartment,"3, Michael Olawale Cole Street, Off Ladipo Latinwo Crescent, Lekki Phase 1. Lekki Phase 1 Lekki Lagos",₦,"110,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Built 3 Bedroom Flat With + Bq,Ask Bencom Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +8 Units Of Semi Detached 4 Bedroom Duplex At Lekki,Van Daniels Street Off Orchid Hotel Road Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex At Lekki,Victoria Adode Kobiti Street Orchid Hotel Road Ikota Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land With 2 Demolish Able Bungalows,Behind World Oil Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Staff Quarters,"7 Avenue, Ocean Palm Estate Lekki. Ikota Lekki Lagos",₦,"53,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 12 Units 3 Bedroom Apartments,Royal Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Ikate Lekki Lagos,₦,"75,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ikate Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Beside Oriental Hotel Sharing Fence With Tanzan Jetty Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Pennisula Garden Estate , Ogombo Lekki,lagos Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Massive Brand New Luxuriously Finished And Smart 4 Bedroom Detached House With Boys Quarters,Ikota Ikota Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Duplex,Lekki Gardens Lekki Phase 2 Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +Modern 4 Bedroom House In A Gated Community,Near Domino's Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex In Lekki,Elegushi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached With 1 Room Bq,"Olumide Bamidele Street, Idado, Off Lekki/epe Expressway Idado Lekki Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +5 Bedroom Detached House With 2 Room Bq,"Sola Oguntade Close, Off Bisola Durosimi Etti Street Lekki Phase 1 Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat Super Finished + Bq,Onna Lane Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Units Of 4 Bedroom Terence Duplex,"Immediately After Chevron Toll Gate, Buene Vista Estate Lafiaji Lekki Lagos Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Building With C Of O,Sola Oguntade Close Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House,Road 16 Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chris Madueke Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached,Charles Ifeanyi Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +Genuine Land,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"600,000",0,0,0,0 beds,1 baths,0 Toilets +4 Bedroom Fully Furnished Terrace,Victoria Crest Vgc Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Chevron Drive Chevron Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Deluxe Fully Detached Duplex,Whitesand School Street Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Units Of 4 Bedroom Duplex With A Bq,Off Elf Estate Road Lekki Phase 2 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedrooom Detached House With 2 Rooms Bq And A Swimming Pool On 550 Square Metres Of Land,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedrooms With 2 Bedrooms Bq Fully Detached,Abimbola Okunlaja Street Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +4.2 Hectare Of Land,Jakande Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq In Lekki,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Exotic 3 Bedroom Blocks Of Flats In Igbo Efon,Lekki Igbo Efon Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex + An Ensuite Bq,Lekki Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +7 Bedroom Duplex Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,7 beds,8 baths,9 Toilets +Astonishing 5 Bedroom Detached House +bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Duplex,"Westend Estate, Ikota Villa Estate, Lekki Lagos. Ikota Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,4 Toilets +For Sale: Brand New Luxury 5 Bedroom Fully Detached House With Bq,Lekki Ikota Ikota Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +For Sale: Brand New 3 Bedroom Exquisitely Finished Terrace Duplex With Bq,"Ikota Villa Estate, Ikota, Lekki Ikota Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Furnished 4 Bedrom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,"Orchid Hotel Road, Lekki 2nd Toll Gate, Lekki. Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Service 4 Bedroom Detached House,"Jakande, Lekki Jakande Lekki Lagos",₦,"112,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Well Finished 3 Bedroom Services Appartment With Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Exquisite Well Finished 5 Bedroom Detached Duplex, With Bq,",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Tastefully Well Finished 5 Bedroom Detached Duplex, With Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,5 Toilets +"Tastefully Well Finished 5 Bedroom Detached Duplex, With 2 Bq",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Osapa Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built And Well Finished 4 Bedroom Terrace Duplex,"Ikate, Osapa London Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +10.9 Hectares Of Land,Maiyegun Lekki Phase 2 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Meadow Hall Road Ikate Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Chevron Office Lekki Axis Chevron Lekki Lagos,₦,"141,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Stylish 5 Bedroom Duplex In Lekki,Hakeem Dickson Road Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 3 Bedroom Apartments,Lekki Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Behind The Cathedral Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +16 Units Of Semi Detached 4 Bedroom Duplex At Lekki,South Lake Homes Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Duplex Ensuite,"Oral State Behind Oando Filling Station Close To The Second Toll Gate, Lekki Express Way Lekki Phase 2 Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Room Bq,Napier Garden Ikota Lekki Lagos,₦,"82,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Chevy View Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"49,500,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Terrace Duplex,Km39 Lekki Epe Expressway Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Meadow Hall Rd Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxurious Fully Detached 5 Bedroom Duplex,Whitesand Street Ikate Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,"Lekki,epe Expressway Chevron Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +7 Bedroom Duplex,Christ Avenue Street Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"410,000,000",0,0,0,7 beds,7 baths,9 Toilets +Tastefully Finished Brand New 5 Bedroom Ensuite Detached Duplex With Bq And Swimming Pool,Off From Way Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Detached House With 2roooms Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land ( Joint Venture ),Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"270,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Chevy View Chevron Lekki Lagos,₦,"57,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Duplex Fully Detached,Nicon Road Lekki Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Salem Street Jakande Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Serviced Townhouse Plus Bq,Seagate Estate Ikate Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,Bakare Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Spar Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Spar Road Ikate Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Victory Park Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Victory Park Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ologolo Road Agungi Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Peace Garden City Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Lagos State Full Title,Baale Street Chevron Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Ayinde Akinmade Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Block Of 6 Flats 4 Units Of 3 Bedroom Flat And 2 Units Of 2 Bedrooom Flat In Agungi,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House,Amadasun Street Igbo Efon Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Semi Detached Duplex,Chevron Drive Chevron Lekki Lagos,₦,"32,500,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Off Kusenla Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Alternative Route Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Apartment Fully Finished,Scintilla Chevron Lekki Lagos,₦,"14,500,000",0,0,0,1 beds,1 baths,1 Toilets +Land For Sale,Off Kusenla Road Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Allan Balogun Street Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Off Igbo Efon Gra Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale ( Joint Venture ),Royal Garden\ Scheme Phase 2 Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale ( Joint Venture ),Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Eti Osa Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Flats 4units 3bedroom Flat & 2units 2bedroom Flat,Agungi Agungi Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale,Ikate Off Kusenla Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Lagos,₦,"1,200,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With Penthouse,Chevrom Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +"2nos, Brand New 5bedrooms Fully With Bq",Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land ( Joint Venture ),Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Bungalow,"Close 25, Off Road 2 Vgc Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Affordable Land,Abraham Adesanya Ikate Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lakeview Estate Phase 2 Chevron Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Ikota Ikota Lekki Lagos,₦,"460,000,000",0,0,0,5 beds,5 baths,5 Toilets +7 Bedroom House,Ikota Ikota Lekki Lagos,₦,"145,000,000",0,0,0,7 beds,7 baths,6 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Osapa London Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +4044sqm Of Land Directly Facing Lagoon,Water Front Lekki Phase 1 Lekki Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Road 6, Olushola Harris Street Lekki Phase 2 Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,7 Toilets +Newly Built 4 Bedroom Back House With A Room Bq,"Emmanuel Emenike Street, Lekki. Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +450 Square Metres Of Land,Victory Park Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +500 Square Metres Of Land,Victory Park Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +100 Square Metres Of Land,Victory Park Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +900 Square Metres Of Land,Victory Park Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat In Osapa London,Osapa Osapa London Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Well Serviced 3 Bedroom Flat,The Horizon Estate Ikate Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Aroromi Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Gym. Intercom System. 2 Nos, Brand New 5 Bedroom Fully Detached Duplex With Bq. Swimming Pool",Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Prime Waterview Gardens 2 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,3 Toilets +5 Bedroom Detached House With 2bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom House,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Meadow Hall School Road Ikate Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully Finished 8 Units Of Brand New 5 Bedroom Detached Duplex With Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +25 Units Of 4 Bedroom Luxurious Terrace With Bq,"Off Chevron Drive, Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,Ilasan Village Lekki Phase 1 Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Eti Osa Lekki Phase 1 Lekki Lagos,₦,"5,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Off Allan Balogun Street Osapa London Lekki Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Igbo Efon Gra Chevron Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ikate Elegushi Ikate Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Furnished With Properties,Lekki 2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,Nicon Town Estate Lekki Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Idado Estate Idado Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Providence Road Lekki Phase 1 Lagos Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedroom Terrace Duplex,Meadow Hall School Road Ikate Lekki Lagos,₦,"33,500,000",0,0,0,4 beds,5 baths,5 Toilets +895 Sqm Land With Cofo,Block 23 Lekki Phase 2 Lekki Lagos,₦,"35,750",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With 2 Room Bq And Laundry Room,Phase 1 Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,4 beds,5 baths,5 Toilets +800 Sqm Of Land,Spar Road Lekki Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Brand New 5 Bedroom Fully Detached House With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Nos Of Brand New 5 Bedroom Detached House,Lekki Lekki Phase 1 Lekki Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Luxury Apartment,Banana Island Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,4 baths,4 Toilets +3 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of 5 Bedrooms + 2 Rooms Bq Duplex,Lekki Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Brand New 5 Bedroom Fully Detached House With A Room Bq,","Agungi, Lekki Agungi Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Duplex At Lekki Gardens Phase 2.,Lekky Gardens Phase 2. Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,5 baths,5 Toilets +5 Bedroom Semi Detached House,Victory Park Estate Ikate Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +Well Finished 5 Bedroom Duplex,Lekki Strret Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Plot Of Land,Opposite Puri Mall Vgc Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished (2 Nos) 4 Bedroom Terrace Duplex,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Closed Street Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,"Sikiru Alade Oloko Crescent, Close To Italian Int'l School, Off Anjous Drive Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Block 57a Plot 1 &2 Sikiru Alade Oloko Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adebisi Ogunniyi Street Lekki Phase 1 Lekki Lagos,₦,"195,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Blk 140 Plot 6 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Block 68 Plot 3, Abike Sulaimon Off Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Prof Kiumi Street, Off Akwuzu Street Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"7 Iweanya Ugboh Street, Off Bisola Durusemietti Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Lekki Scheme 2 Lekki Phase 2 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Osapa Osapa London Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land For Sale,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Fully Detached 5 Bedroom Duplex With Bq In Agungi,"Dele Ogunade Street By Friends Colony, Agungi, Lekki Agungi Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Happy Gardens Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,"Animashaun Street, Chevy View Estate Chevron Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,4 baths,5 Toilets +Waterfront Land,Beside Landmark/ Water Corporation Lekki Phase 1 Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 28 Units 4 Bedroom Terrace House,5th Avenue Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land For Sale,Sikiru Alade Oloko Crescent Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Alma Beach Lekki Phase 1 Lekki Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Banana Island Lekki Phase 1 Lekki Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +19 Months Old Solid 5 Bedroom Fully Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Walton Gate Estate Lekki Phase 1 Lekki Lagos,₦,"16,200,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Of 3 Bedroom Apartment With A Bq,Ikate Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +12 Units Of 2 Bedroom Terrace Flat,Chevy View Chevron Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Mini Flat As Bq,Ikate Elegushi Ikate Lekki Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With 1room Bq.,Ikate Elegushi Ikate Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom Terrace Duplex,Oyibo Adjarho Street Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Flat,Chevy View Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Apartment,Femi Okunnu Estate Ph 4 Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,"Dosek Close, Off Alternative Route Behind Chevron Hq Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 8 Units Of 4bedroom Terraces With Bq,"Dele Ogunade Street By Friends Colony, Agungi, Lekki Agungi Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Monastery Road Novare Mall Lekki Phase 2 Lekki Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex With Bq,Osapa Gra Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +Tastefully 4 Bedroom Duplex With Bq,"Mini Estate, Osapa London Osapa London Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Luxury Penthouse With Gym & Pool,"Noah Court, Chevron , Lekki Lagos. Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex,"Dosek Close, Off Alternative Route Behind Chevron Hq Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +"4 Units Of Tastefully Finished 4 Bedrooms, Semi Detached Duplex",After Lekki 2nd Toll Gate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land For Sale,Chevron Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex,Lake View Estate Vgc Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Apartment With Excellent Facilities,Lekki Jakande Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Flat With A Bq,Vgc Vgc Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached House,Vgc Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Omonrire Johnson Street Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,5 Toilets +Featured 4 Bedroom Semi Detached Duplex,Lekki 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"67,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Plot Of Land At Lekki,Orange Ville Estate Vgc Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Duplex At Ajah With 2.5m,After Abraham Adesanya Roundabout Vgc Lekki Lagos,₦,"2,500,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex,Meadow Hall Schools Road Ikate Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Detached 4 Bedroom Duplex With A Bq,Osapa London Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oral Estate Ikota Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Duplex With Excellent Facilities,Ikota County Homes Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex,Lara Ademola Street Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Lekki County Home By Megamound Ikota Lekki Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Nicon Town Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 4 Bedroom Semi Detached Duplex,"Chief Ugochukwu Orji Street Behind Spg, Igbo Efon, Lekki, Lagos. Igbo Efon Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Finished Ocean View 5 Bedroom Fully Detached Duplex,Kensington Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Bogije Ikota Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Royal View Estate Opp Mega Chicken Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land For Sale,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ebano Supermarket Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ndb Behind Uba Or Catholic Mission Lekki Phase 1 Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Chevron Chevron Lekki Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekky County Homes Ikota Lekki Lagos,₦,"80,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Twin Duplex,Plot 2 Block A6 Shafi Sule Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built Executive Luxury 4 Bedroom Semi Detached Duplex With Bq,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Genuine Plots Of Land With Good Title Documents,Off Monastery Road Lekki Phase 1 Lekki Lagos,₦,"8,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Pinnock Jakande Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,5 baths,5 Toilets +Exquisite Newly Built 4 Bedroom Semi Detached Duplex At Agungi,Abdur Raufu Obitayo Street Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,2nd Roundabout Lekki Phase 2 Lekki Lagos,₦,"7,600,000",0,0,0,4 beds,4 baths,4 Toilets +A 3 Bedroom Duplex,Ajah Vgc Vgc Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment With Bq,Opposite House On The Rock Church Ikate Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,4 baths,5 Toilets +Land With Certificate Of Occupancy,Lekki Lekki Phase 2 Lekki Lagos,₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Chief Ugochukwu Orgi Street Igbo Efon Lekki Lagos,₦,"24,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Serviced Apartment With 1 Bq,Baale Street Igbo Efon Lekki Lagos,₦,"29,500,000",0,0,0,2 beds,2 baths,2 Toilets +Well Finished 5 Bedroom Detached House,By Oba Palace Way Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Well Finished 4 Bedroom Duplex,By Oba Palace Way Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Oniru Lekki Phase 1 Lekki Lagos,₦,"175,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oniru Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Built Semi Detached Duplex At Lekki,Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Nicon Town Estate Lekki Phase 1 Lekki Lagos,₦,"375,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,0ff Chrevon Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced House,Off Chevron Drive Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Off Chevron Drive Chevron Lekki Lagos,₦,"72,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Duplex Wit Bq,Lekki Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrace House,Hakeem Dickson Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Ikate Lekki Ikate Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Ikate Lekki Ikate Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Detached House,Orinru Lekki Lekki Phase 1 Lekki Lagos,₦,"85,000,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex With Bq,Prime Water Garden Ikate Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 6 Bedroom Detached Duplex At Lekki,Providence Street Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +Nicely Finished 4 Bedroom Duplex With Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5 Bedroom Fully Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Bedroom Duplex,Chevron Round About Chevron Lekki Lagos,₦,"68,000,000",0,0,0,6 beds,6 baths,6 Toilets +2 Bedroom Flat,Off Chevron Drive Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Flat In Chevron,Off Chevron Drive Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Off Chevron Drive Chevron Lekki Lagos,₦,"37,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Chevy View Estate Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terraced House,Chevron Drive Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land For Sale,Fara Park Estate Lekki Phase 1 Lekki Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Opp Shoprite Jakande Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +"Wonderfully Recently Built And Renovated 5 Bedroom, 6 Bathroom With An Attached Bq Detached Duplex",Thomas O Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,6 baths,6 Toilets +Superb 4 Bedroom Duplex In Chevron,Lafiaji By Eleganza Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,5 baths,5 Toilets +30 Units 3 Bedroom Luxury Apartment,Osapa London Extension Agungi Lekki Lagos,₦,"42,000,000",0,0,0,3 beds,4 baths,4 Toilets +700 Square Meters Land With C Of O,Beach Resort Osapa London Lekki Lagos,₦,"49,000,000",0,0,0,0 beds,0 baths,0 Toilets +24 Units Of 3 Bedroom Flat,"In An Estate At Ikota, Next To Eleganza. Ikota Lekki Lagos",₦,"27,000,000",0,0,0,3 beds,3 baths,3 Toilets +Corner Plot Of Land,Esther Adeleke Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Phase 2 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Free Trade Free Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0, beds, baths, Toilets +Land,Orimedu Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"3,500,000",0,0,0, beds, baths, Toilets +84 Hectares Of Land,"Chevron Drive, Ojo Olokun Chevron Lekki Lagos",₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Unit Of 4 Bedroom Terrace Duplex With Maid's Room,"Alh Agbeko Sanyaolu Street, Off Barr. Paul Nwachukwu Street, Allan Balogun, Ajiran Lekki Agungi Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Chevyview Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,0 Toilets +5 Bedroom Duplex,Northern Foreshore Estate Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Crown Estate Lekki Phase 2 Lekki Lagos,₦,"42,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Bare Land In An Exclusive Secured Estate,Fountain Spring Vile Estate Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Bq,Ad Way Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastely Finished 4 Bedroom Detached Duplex With Bq In Igbo Efon,Ologolo Igbo Efon Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Bq,Chevron Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Multipurpose Choice Landed Property,"Lekki Epe Expressway, Abijo Gra, Lekki, Lagos Lekki Phase 2 Lekki Lagos",₦,"64,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"6,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Tastefully Finished Detached House On 3 Floors,Off Kazeem Eletu Street Osapa London Lekki Lagos,₦,"95,000,000",0,0,0,6 beds,7 baths,6 Toilets +Tastefully Finished 4 Bedroom Duplex With A Bq,Pinnock Beach Estate Road Osapa London Lekki Lagos,₦,"138,000,000",0,0,0,4 beds,6 baths,7 Toilets +New 3nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,"Ikate Elegushi, Lekki, Lagos Ikate Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Serviced Apartment,Chevron Drive Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Town House,Ikota Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Fully Detached Duplex,Royal Crown Estate Ikota Lekki Lagos,₦,"75,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Westend Estate. Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Units Of 4 Bedrooms Semi Detached House,Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Corner Piece Measuring 6,010.424sqm",Lekki Pennisula Scheme 1 Ikate Lekki Lagos,₦,"810,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Chevy Estate Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +"3 Bedroom Flat (2nd, 3rd, And 4th Floor)",Lekki Horizon 1 Ikate Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Massive 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"78,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House With Bq In Ikota,Westend Estate Ikota Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of Newly Built 4 Bedroom Duplex,No 14 Road 26 Ikota Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Westend Estate Ikota Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 5 Bedroom Fully Detached House With Bq,Lekki County Estate Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Apartment,Gated Community Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Estate Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,6 Toilets +600sqm Of Land,Ajah Ikota Lekki Lagos,₦,"38,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Pinnacle Filling Station Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Apartment,"Grandville Estate, Lekki Phase 1 Via Admiralty Way. Lekki Phase 1 Lekki Lagos",₦,"37,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Duplex With Bq In Lekki,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Inside Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Tastefully Finished 5 Bedroom Detached Duplex With Swimming Pool, 2 Bedroom Bq And Cinema Studio",Close To Second Round About. Lekki Phase 1 Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land With Structure On It,Road 12 Vgc Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Oral Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Chief Ralph Okpon Street Ikota Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,"Westend Estate, Ikota Ikota Lekki Lagos",₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Otunba Olufeko Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,Benue Vista Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex In Ikota,"6b, Road 22, Ikota Villa Estate Ikota Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +6 Units Of Newly Built 3 Bedroom Flat In Lekki,"1, Ugochukwu Orji Street Agungi Lekki Lagos",₦,"32,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Terrace,Orchid Hotel Road Chevron Lekki Lagos,₦,"34,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Flat,Chevy View Estate By Chevron Drive Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Flat,Chevy View Estate By Chevron Drive Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Olabisi Close Oral Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Buildings On A Piece Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Southern Lake View Estate Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lao's Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 12 Nos Of 2 Bedroom Flat In Ikate,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautiful 4 Bedrooms Semi Detached Duplex With A Room Bq,Off Road 1 Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekki Garden Estate Phase Ii Ikate Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +3500sqm Of Land,Kunsela Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"70,000,000",0,0,0,5 beds, baths, Toilets +5 Units Of Newly Built 5 Bedroom Terrace Duplex In Lekki,"8, Adedeji Adekola Close Lekki Phase 1 Lekki Lagos",₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Mega Shopping Mall Building,Chevron Chevron Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment,Chevron Chevron Lekki Lagos,₦,"87,000,000",0,0,0,2 beds,2 baths,2 Toilets +"4 Bedroom Contemporary Terrace Duplex , With Pool, Gym, 24hours Light And Security",Spar Road Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Flat,Spar Road Ikate Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Newly Built 4 Bedroom Terrace Duplex In Lekki,Michael Olawale Cole Street Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Units Of 4 Bedroom Terrace Duplex In Lekki,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House,Agungi Agungi Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Close To Lekki Epe Express Way Vgc Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Close To Ilbagno Lekki Phase 1 Lekki Lagos,₦,"76,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Chevron Alternative Route Chevron Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 & 4bedroom Duplex,Ologolo Road Igbo Efon Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace With Bq,Lekki Phase I Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New 5 Bedroom Duplex + Bq In Lekki,R.t. Lawal Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +"10,000 Sqm Of Land",Beside Northwest Filling Station Vgc Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +23 Plots Of Land,Beside Royal Garden Estate. Vgc Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,900 Sqm Of Land",Osapa London Osapa London Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"23,000 Sqm Of Land",Beside Femi Okunnu Jakande Lekki Lagos,₦,"220,000",0,0,0,0 beds,0 baths,0 Toilets +6400sqm Of Land,Jakande Estate Jakande Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +2600 Sqm Of Land,Beside Germain Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11,000 Sqm Of Land","Beside Mercedes Benz,ikate Elegunshin Ikate Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"100,000 Sqm Of Land",Itedo Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Bedroom Bq,"Ahmed Ojikutu By Friends Colony Estate, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,0,0,7 beds,7 baths,6 Toilets +New 12 No's 2bedroom Flat For Sale Opposite House,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lao's Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Ogombo Town Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 12 No's 2bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +"New House 4bedroom Terrace Building All Rooms Ensuit, Fitted Kitchen, Treated Borehole Water, Ample Parking Space Pop Finishing At Osapa London Lekki",Osapa Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrance,Orchid Road Chevron Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Fully Detached 5 Bedroom Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +Urgent Sale Of 865sqm Land,"Off Pionner Street, En Route Wakanow Travel Ikate Lekki Lagos",₦,"85,000,000",0,0,0, beds, baths, Toilets +12 Units Of 2 Bedroom Apartments,"Prince Samuel Adedoyin Way, Ikate Lekki Phase 1 Lekki Lagos",₦,"32,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Brand New 4 Bedroom Semi Detached Duplex With Bq,Ikota Villa Estate Ikota Lekki Lagos,₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrance House,Orchid Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4 Bedroomduplex With Fited Ac, Tv, Cooker Etc",Ikota Lekki Ikota Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,5 baths,6 Toilets +10 Plots Of Land In Lekki Chevron Drive,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Lekki Gardens Road By Abraham Adesanya Vgc Lekki Lagos,₦,"27,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ibeju Lekki Lekki Phase 1 Lekki Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,"Along Dreamworld Africana Road, Behind Orchid Hotels Chevron Lekki Lagos",₦,"33,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 5 Bedroom Duplex For Sale In Chevy View,Chevy View Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +One Acre And 3 Plots Of Dry Land,Providence Street Lekki Phase 1 Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Units Of 4 Bedrooms Terrace Duplex,1 Osapa London Street Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedrooms Semi Detached Duplex Plus Bq,Idado Chevron Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Semi Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached With Pent House And Bq,Odiyan Street Ikota Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,6 baths,7 Toilets +5bedroom Fully Detached With A Bq,Gbangbala Street Ikota Lekki Lagos,₦,"95,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Semi Detached With A Bq,Ggangala Street Ikate Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 4 Bedroom Semi Detached House With Bq,Westend Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Newly Built 5 Bedroom Detached Duplex + Bq In Lekki,Kenneth Odidika Close Agungi Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Itedo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Excellent Brand New 4 Bedroom Detached Duplex With Bq,Madam Comfort Street Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroomfully Detatched Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detatched Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detatched Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detatched Duplex With A Room Bq,Fourth Roundabout Before Chevron Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex With 2 Bedroom Bq,Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 3 Bedrooms Semi Detached Duplex Plus Bq,Alpha Beach Road Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +A 4 Bedrooms Fully Detached Duplex Plus Bq,Alpha Beach Road Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With A Bq,As Way Lekki Phase 1 Lekki Lagos,₦,"96,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Boys Quarters,Idado Idado Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plots Of Dry Land,Chevron Tollgate Area Chevron Lekki Lagos,₦,"14,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Igbo Efon Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Two Room Bq,Nicon Town Lekki Phase 2 Lekki Lagos,₦,"390,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 12 Nos 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,2 baths,3 Toilets +New 3 Nos 5 Bedroom Duplex,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury And Affordable 4 Bedroom Detached Duplex,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With Bq,Orchid Road Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Town House With Penthouse,Agungi Road Agungi Lekki Lagos,₦,"47,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brilliantly Finished 4 Bedroom Semi Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Brand New 4 Bedroom Detached Duplex With Bq,Osapa Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Finished 5 Bedroom Detached House,"Ahmed Ojikutu By Friends Colony Estate, Lekki Agungi Lekki Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +New 12 No's 2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex,Palace Road Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Lekki Phase 1 Right White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Right Off White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,White Sand School Lekki Phase 1 Lekki Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"9,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,"Behind Spg Office, Befor Igbo Efon Roundabout Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,6 beds,7 baths,7 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Beside Italian Inter School Off Chief M.i Okoro Street, Off Akanni Bashorun Street, Off Sikiru Alade Olowo Street Off Adebayo Doherty Street. Lekki Phase 1 Lekki Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Christ Avenue, Behind Tantalizer Off Admiralty Road Lekki Phase 1 Lekki Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Babatunde Osoba Street Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Babatunde Osoba Street Lekki Phase 1 Lekki Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Acres Of Land,Opp The Circle Mall(shoprite) Jakande Lekki Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 5 Bedroom Duplex In Lekki,"Dr Lad Alakija Street, Off Fola Osibo Road, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Hectares Of Land,"On Orchid Hotel Rd, Sharing Fence With Buenavista Estate, Chevron Lekki Lagos",₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Camelot Mews Estate Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Camelot Mews Estate Chevron Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Off Orchid Hotel Rd, Behind Ocean Bay Estate Chevron Lekki Lagos",₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Lekki Updc Estate Opp Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Alao Etti Igbo Efon Lekki Lagos,₦,"42,000,000",0,0,0,4 beds,3 baths,1 Toilets +Land,Ibeju Lekki Lga Lekki Phase 2 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +"1 Storey Building, 3 Bedroom Flat, 4 Flat All Together",Oseni Okota Street Okota Isolo Lagos Lekki Phase 2 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace House In Osapa London,Osapa Lekki Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Own A Luxury 1 Bedroom Flat,Alternative Route Chevron Lekki Lagos,₦,"6,000,000",0,0,0,1 beds,1 baths,1 Toilets +Brand New 4 Bedroom Terrace With Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +60 Hectares Of Land,Chevron Twin Lakes Chevron Lekki Lagos,₦,"115,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Nos 5 Bedroom Duplex,"Royal View Estate Ikota Lekki, Lagos Ikota Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 Bedroom Flat,Ilasan Street Ikate Lekki Ikate Lekki Lagos,₦,"27,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Lekki County Homes Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Lekki Scheme Ii Lekki Phase 2 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,7 Toilets +500 Square Metres Of Land,Babatunde Koboye Lekki Phase 1 Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Lekki Phase1 Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fenced 5 Plots Of Land,Lekki Chevron Lekki Lagos,₦,"26,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Luxury Flat,Milverton Estate Osapa London Lekki Lagos,₦,"38,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex Plus A Bq,V.g.c Vgc Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex,Vgc Vgc Lekki Lagos,₦,"230,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex Plus 2 Bq,Vgc Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,3 Toilets +"2 Hectares Of Land Measuring 20,180 Sqm In Lekki.",14 Ajiran Road Agungi Vgc Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom House Plus Bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 5 Bedrooms Duplex Plus Servant Quarters,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +4 Bedrooms Semi Detached Duplex Plus Bq,Agungi Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedrooms Detached Duplex Plus Bq,Agungi Agungi Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets +Bare Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +A Corner Piece Plot Of Land Measuring 650sqm,New Road Chevron Lekki Lagos,₦,"21,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1400sqm,Lekki Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 600sqm,Foreshore Chevron Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +: A Plot Of Land Measuring 850sqm,Cbd Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,600 Sqm Of Land",Beside German Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,600 Sqm Of Land",Beside German Motors Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11,000 Sqm Of Land",Expressway Beside Mercedes Benz Ikate Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Alternative Road Ikota Lekki Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets +"100,000 Sqm Of Land",Itedo Lekki Phase 1 Lekki Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +Uncompleted 2 Units Of 5 Bedroom Terrace Wit Bq Off Mobil Rd Lekki,Lekki Scheme Ii Ajah Lekki Phase 2 Lekki Lagos,₦,"17,500,000",0,0,0,5 beds,6 baths,6 Toilets +4 Units Of 4 Bedroom Terrace Duplex Plus Bq,Off Buena Vista Estate On Orchid Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duple,Off Fola Osibo Street Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished Spacious 2 Nos 5 Bedroom Duplex With One Room Servant Quarter,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Off Orchid Road. Ikota Lekki Lagos,₦,"23,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House And A Room Bq,Elegushi Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 And Half Plots Of Land,"Ologolo Bus Stop, Agungi Lekki Lagos. Agungi Lekki Lagos",₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Beside Lekki Business School,Lekki Epe Express Way Ikota Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Jemtok Street Ikota Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Town House,Oba Tijani Akinloye Street Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,2 baths,2 Toilets +5 Bedroom Duplex With Boy's Quarter,Iron House Ilaso Lekki Lagos Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Duplex,Nicon Estate Road Lekki Lagos Lekki Phase 1 Lekki Lagos,₦,"235,000,000",0,0,0,5 beds,6 baths,6 Toilets +Brand New 5 Bedroom Semi Detached +bq,Lekki Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Tastefully Finished, 4 Bedroom Terrace",Orchid Hotel Road Chevron Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,4 Toilets +"A Tastefully Finished, 3 Bedroom Terrace",Orchid Hotel Road Chevron Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,3 baths,3 Toilets +"A Beautifully Finished 5 Bedroom Fully Detached, Duplex With 1 Room Bq",Chevy View Estate Chevron Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Serviced New 4 Bedroom Duplex With 1 Room Bq,Bourdillon Court Estate Chevron Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 2 Blocks Of 3 Bedroom Flats,Akintunde Adeyemin Street Lekki Phase 1 Lekki Lagos,₦,"780,000,000",0,0,0,3 beds,0 baths,0 Toilets +"2 Units Of 4 Bedroom Duplex With 1 Room Bq Behind, Meadow Hall, Ikate",Ikate Ikate Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Road2 Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decently Finished 40feet Container Facilities,Lekki Epe Expressway Osapa London Lekki Lagos,₦,"2,600,000",0,0,0,1 beds, baths, Toilets +A Serviced 4 Bedroom Terrace With 1 Room Bq,Chevron Chevron Lekki Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Sangotedo Ajah Lekki Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,After 3rd Roundabout Ikate Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +912 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +864 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +850 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +936 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Beside Living Stone Estate, Opposite Mtn Estate Chevron Lekki Lagos",₦,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Wit Bq,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Plot Of 1000sqm Coner Piece,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Atlantic Boulevard Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisite 5 Bedroom Detached Duplex,Igbo Efon Igbo Efon Lekki Lagos,₦,"62,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Church Street Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Lara Ademola Street Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Atlantic View Estate Igbo Efon Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,Ojulari Road Ikate Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Plot Of Land 500sqm In Ikota Villa Estate Lekki,Ikota Villa Estate Lekki Ikota Lekki Lagos,₦,"16,500,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex In Ikota,4 Joseph Road Ikota Oral Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Lekki Penisular Lekki Phase 1 Lekki Lagos,₦,"33,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex With 2 Boys Quarters,Ikate Ikate Lekki Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,"Opposite Ajure Police Station, Ajah Vgc Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex +bq,Lekki Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace With Bq,Lekki Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Town House,Lekki Osapa London Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace With Bq In Lekki,Lekki Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Plot Of Land,Okoado Road Vgc Lekki Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat In Lekki,Lekki Osapa London Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat,Gbara Osapa London Lekki Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Bedroom Detached Duplex,Off Christopher Ugbaja Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Semi Detached,Orchid Hotel Road Ikota Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ogombo Lekki Phase 2 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 No Of 3 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Ochid Hotel Road Ikota Lekki Lagos,₦,"33,000,000",0,0,0,4 beds,4 baths,3 Toilets +Lands,"Orange Ville Estate Located In Developed Area Of Ogombo Town, Off Lekki Scheme 2, Lekki Phase 2 Lekki Lagos",₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat,By Chevron And Vgc Ikota Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Admiralty Way, Lekki Phase 1 Lekki Phase 1 Lekki Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Units Of 5 Bedrooom Duplex,Royal View Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With A Swimming Pool,V.g.c Vgc Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Detached Duplex In Lekki,"Road Ii, Ikota Estate Ikota Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Off Alpha Beach Besides Admiralty Estate Chevron Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 5 Bedroom Detached Duplex + Bq In Lekki,Otunba Adewoyin Ogungbe Street Lekki Phase 1 Lekki Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In Lekki,"Kamashe Street, Bakare Estate, Chevron Lekki Lagos",₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Two Blocks Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,Otunba Adewoyin Ogungbe Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +"2,500 Square Metres Of Land",Beach Resort Estate Osapa London Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,400 Square Metres Of Land",Arcadia Groove Estate Osapa London Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,By Ajose White House Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +1295 Square Metres Of Land,Agungi Motor Road Agungi Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3967 Square Metres Of And,Close To 2nd Toll Gate Lekki Phase 2 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2750 Square Metres Of Land,By Chisco Round About Ikate Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,538 Square Metres Of Land",Cloe To Fort Oil Filling Station Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Road 2 Vgc Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Furnished 4 Bedroom Duplex With Bq, Gen , Pool, Gym","Vgc, Lekki Vgc Lekki Lagos",₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 5 Bedroom Detached Duplex In Lekki,Richard Nwangwu Street Lekki Phase 1 Lekki Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +28 Units Of Newly Built 4 Bedroom Terrace Duplex In Lekki,Ikota Villa Estate Ikota Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +3700 Square Metres Of Fenced Land,Along Lekki Epe Expressway Lekki Phase 2 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +60 Hectares Of Land,Chevron Twin Lakes Chevron Lekki Lagos,₦,"115,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"3,100 Square Metres Of Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +1500 Sqm Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Chevyview Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Terrance Duplex,Behind Nicon Town Estate Jakande Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Ilasan Ikate Behind Oando Filling Station Ikate Lekki Lagos,₦,"29,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Super Deluxe Terrace Duplex With Spacious Bq.,Amiralty Way Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +960 Square Metres Of Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estae Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land N8m Promo Price,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chervy View Estate Chevron Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Apartment In Lekki,Beside Italia School Lekki Phase One Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Equiped 4 Bedroom Detached House,Ikota Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Exquisitely Built Fully Furnished 4 Bedroom Semi Detached Duplex,Osapa Osapa London Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +2079sqm Of Open Plot Of Land,Admiralty Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished Luxurious 5 Bedroom Detached House With C Of O,Chevy Chevron Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lovely 5bedroom Fully Detached Duplex,Ikota Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogombo Town Vgc Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Esther Adeleke Street Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"570,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Furnished 5 Bedroom Duplex,Elegushi Ikate Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,5 Toilets +6 Bedroom Terrace House,Opposite Chervy Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,6 beds,6 baths,7 Toilets +"10,000 Square Metres Of Land",Kayode Animashaun Street Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +15000 Square Metres Of Land,Animashaun Street Lekki Phase 1 Lekki Lagos,₦,"135,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Befroe V.g.c Vgc Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3800 Square Metres Of Land,Providence Road Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2895 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5000 Square Metres Of Land,Agungi Bus Stop Agungi Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Square Metres Of Land,Ikate Elegushi Ikate Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex In Lekki,Lekki Ajah Express Way Ikota Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Southern View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,5 Toilets +A Plot Of Land,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Southern View Estate Beside Lekki Conservation Centre Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,0 Toilets +5 Bedroom Duplex Wit Bq,Ikota Lekki Ikota Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Units Of Lovely 4 Bedroom Semi Detached Duplex In Lekki,"Adegbenle Street, Chevy View Estate, Chevron Lekki Lagos",₦,"35,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedrrom Fully Detached House,Luxurious Garden Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Royal Haven Garden Akodo Ise Lekki Phase 2 Lekki Lagos,₦,"750,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex On 3 Floors On 13 Squaremetres Of Land,Lekki Peninsula Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Built 5 Bedroom Detached Duplex,Lekki County Home Lekki Phase 2 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Rose Garden Osoroko Ibeju Lekki Lekki Phase 2 Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Agungi Lekki Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex With Bq,Lekki Lagos Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex Wit Bq,Ikota Ikota Lekki Lagos,₦,"63,000,000",0,0,0,5 beds,6 baths,7 Toilets +5 Bedroom Duplex With Bq Well Finished,Lekki Lagos Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,6 baths,7 Toilets +3 Bedroom Flat With Bq,Near Aa Rescue Jakande Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +7 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"250,000,000",0,0,0,7 beds,0 baths,0 Toilets +2 Nos 5 Bedroom Duplex,Atlantic View Road Chevron Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,La Campaigne Tropicana Beach Resort Lekki Phase 2 Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached House Plus 2 Bedrooms Flat Bq,Off Wole Olateju Crescent Lekki Phase 1 Lekki Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 4 Bedroom Detached Duplex In Lekki,"James Anyaeche Avenue, Bakare Estate Chevron Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Apartment,Ikate Villa Estate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished 4 Bedroom Semi Detached Duplex In Lekki,"Ben Chidi Oyindo Street, Chevy View Estate Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Plot Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Lovely 5 Bedroom Terrace Duplex In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"70,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Newly Built 3 Bedroom Flat In Lekki,"Bourdillion Estate, Chevron Lekki Lagos",₦,"56,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Fully Detached Duplex In Lekki,"Road A4, Carlton Gate Estate, Chevron Lekki Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,"3d Homes,prince Ademola Eletu Osapa London Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Bq,Fola Osibo Str Osapa London Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex In Lekki,"Mary Osadolor, Chevy View Estate, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Semi Detached Duplex In Lekki,"Mary Osadolor, Chevy View Estate, Chevron Lekki Lagos",₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Chevy View Chevron Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Chevy View Chevron Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached House On 700 Square Metres Of Land,Off Omorire Johnson Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ibeju Lekki Phase 1 Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +"Design 6 Bedroom Duplex With Bq,","Pinnock Beach Estate, Lekki Lagos Lekki Phase 2 Lekki Lagos",₦,"350,000,000",0,0,0,6 beds,7 baths,7 Toilets +Land,Lekki Chevron Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Chevron Lekki Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Ibeju Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Lekki Phase 1 Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent 4 Bedroom Fully Detached Duplex In Lekki,"No. 25 Jide Agbalaya Street, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Fully Detached Duplex In Lekki,"No. 18 Jide Agbalaya Street, Chevy View Estate, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Ali Close, Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Ilaje Road Vgc Lekki Lagos,₦,"35,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Elegushi Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex In Lekki,"Bello Close, By Pelician Hotel, Behind Gtb, Chevy View Estate, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bello Close, By Pelician Hotel, Behind Gtb, Chevy View Estate, Chevron Lekki Lagos",₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex,Ologolo Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Stylishly Built 2 Bedroom Flat,Obaamusa Street Agungi Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Duplex In Lekki,"Olivia Road, Chevy View Estate, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Road 3, Ikota Villa Estate Lekki Lagos. Ikota Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Bello Close, Chevy View Estate, Chevron Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,5 baths,4 Toilets +Land,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Duplex,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units 4 Bedroom Townhouse With Bq,Seagate Estate Ikate Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Units Of Newly Built 4 Bedroom Duplex In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 7 Bedroom Fully Detached Duplex In Lekki,"Atlantic View Estate, Igbo Efon Lekki Lagos",₦,"150,000,000",0,0,0,7 beds,0 baths,0 Toilets +3 Bedroom Bungalow,Chevron Chevron Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Newly Built 4 Bedroom Penthouse In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +10 Units Of Newly Built 2 Bedroom Flat In Lekki,Cornelius Odinjor Street Chevron Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Sangotedo Chevron Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Chevron Chevron Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Abioro Ikate Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex With Bq,Kunle Idowu Idado Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Duplex With Bq,Abioro Ikate Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 6 Bedroom Terrace Duplex In Lekki,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +2 Bedroom Flat,Freedom Road Osapa London Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Beautifully Finished And Fitted 3 Bedroom Apartment,Abioro Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Sir Johnson Asinuga Street, Off Alpha Beach Road Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplexes + 1 Room Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace House,Lekki Garden Phase 2 Lekki Phase 2 Lekki Lagos,₦,"18,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached House With 2 Room Bq,Victory Park Estate Osapa London Lekki Lagos,₦,"80,000,000",0,0,0,6 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex With Bq,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Primewaterview Gardens. Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Terrace House,Opposite Chevron Lekki Phase 1 Lekki Lagos,₦,"115,000,000",0,0,0,6 beds,6 baths,7 Toilets +Newly Built 3 Bedroom Flat In Lekki,"1 Awe Iroko Street, Off Yemi Adebayo Street, Salem Bus Stop, Jakande Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex With Bq,Chevy View Estate Chevron Lekki Lagos,₦,"97,000,000",0,0,0,5 beds,6 baths,0 Toilets +2 Units Of Newly Built 3 Bedroom Flat In Lekki,"Rock Drive, Lekki Phase 1 Lekki Lagos",₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"57,172,500",0,0,0,5 beds,5 baths,6 Toilets +4 Bedrooms Semi Detached With Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"45,980,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace With Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"40,535,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat + Bq,Lekki Pearl Estate Lekki Phase 1 Lekki Lagos,₦,"30,855,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Lekki Ikota Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Ogidi Crescent, Christ Avenue, Lekki Phase 1 Lekki Lagos",₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Rock Drive, Lekki Phase 1 Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Ikate Ikate Lekki Lagos,₦,"62,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki 2 Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Prime Water View Estate Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Ibeju Lekki Igbo Efon Lekki Lagos,₦,"700,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With 3d Cinema Hall,Pinnock Beach Estate Jakande Lekki Lagos,₦,"320,000,000",0,0,0,6 beds,5 baths,6 Toilets +"15 Plots Of Land (10,000 Square Metres)",V.g.c Vgc Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets +"1,000 Square Metres Of Land",Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House In Lekki,Ikota Ikota Lekki Lagos,₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +"2,105square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +2198 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,105 Square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,198 Square Metres Undeveloped Commercial Land",V.g.c Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Metres Undeveloped Commercial Land,V.g.c Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Mansion,Vgc Road Vgc Lekki Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Plots Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6010.424 Square Metres Of And,Oba Elegushi Beah Road Ikate Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"80,000 Square Metres Of Land","Beside World Oil Filling Station, Before Elevation Church Lekki Phase 1 Lekki Lagos",₦,"180,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Along The Express Jakande Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,"Lifiaji Road, Orchid Chevron Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,"Lifiaji Road, Orchid Chevron Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +30 Plots Of Land,Chevron Drive Chevron Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Plots Of Land,Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Flat With A Self Contain Bq,Agungi Agungi Lekki Lagos,₦,"28,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Flat,Ikota Ikota Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Mansion,Didiolu Estate Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Flat,Lekki Gardens Lekki Phase 1 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,General Paint Lekki Phase 2 Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Units Of 5 Bedroom Degtached House With 2 Rooms Bq On 475 Square Metres Of Land Each,Sybil Iroche Street Lekki Phase 1 Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Cromwell Estate Chevron Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace With Bq,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached House,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With 2 Rooms Bq,"Victoria Park Estate Behind Femi Okunu Estate, By Mobile 3rd Round About. Jakande Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex + A Bq,Northern Foreshore Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,New Haven Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Sangotedo Lekki Phase 2 Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace House,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terrace Duplex With A Bq,Agungi Agungi Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +3100 Square Metres Of Land,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Victory Park Estate, Osapa London, Lekki Osapa London Lekki Lagos",₦,"44,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Plots Of Land,Ilasan Estate Ikate Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +669 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Metres Of Land,Lakeview Estate Chevron Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +650 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Ikota Villa Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +700 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Pinnock Beach Estate Resort Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +547 Square Metres Of Land,Pinnock Beach Estate Resort Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House,Agungi Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +13.067,Off Lekki Beach Road(4th Roundabout) (atlantic Ocean View) Directly On Lekki Beach Shore Line Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lakowe Idado Lekki Lagos,₦,"5,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,Chevron Chevron Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4 Bedroom House With 1 Room Bq, Co","Abiola Court, In Dillon Estate Agungi Lekki Lagos",₦,"78,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Omorire Johnson Street Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +15000 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Unit Of 7 Bedroom Duplex,"Block 8 Plot No. 76 Igbo Efon Village, Close To Alpha Beach Lekki Lekki Phase 1 Lekki Lagos",₦,"350,000,000",0,0,0,7 beds,6 baths,7 Toilets +16 Plots Of Land,Orchid Road Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Close To Central Mosque Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +650 Square Metres Of Land,Oba Amusa Estate Agungi Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,Maruwa Round About Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +650 Square Metres Of Land,Ologolo Jakande Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +630 Square Metres Of Land,Chevy View Estate Chevron Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Square Metres Of Land,"Spar Road, Nicon Town Estate Jakande Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Square Metres Of Land,"Spar Road, Nico Town Estate Jakande Lekki Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex In Lekki,"Hawau Abikan Street, Chevy View Estate Chevron Lekki Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +14 Units Of 3 Bedroom Flat In Lekki,"Abike Court, General Ogomudia Crescent, Lekki Phase 1 Lekki Lagos",₦,"1,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +More Than 6 Units Of 5 Bedroom Duplex With A Room Bq,Agungi Agungi Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Duplex,Agungi Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex With 2 Rooms Bq,4th Roundabout Ikate Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,5 Toilets +Decent 4 Bedroom Semi Detached Duplex In Lekki,"Off Cornelius Odinjor Street, By Udew Medical Road, Chevron Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Lekki Gardens By Alternative Route, Chevron Lekki Lagos",₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace Duplex,Abiola Court Agungi Lekki Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Road Ikota Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fola Daniel Street. Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace,Oral Estate Ikota Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Units Of 3 Bedroom Flat,Oral Estate Ikota Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +2538 Square Metres Of Land,Close To Fort Filling Station Lekki Phase 1 Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Hectares Of Land,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"55,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Lekki/epe Expressway Ikate Lekki Lagos,₦,"55,000",0,0,0,0 beds,0 baths,0 Toilets +4450 Square Metres,Behind Total Filling Station Close To House On The Rock In Ikate. Ikate Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets +"15 Plots Of Land (10,000)",V.g.c Vgc Lekki Lagos,₦,"85,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex In Lekki,"Dele Adeyemi Street, By Agungi Bus Stop, Agungi Lekki Lagos",₦,"78,000,000",0,0,0,5 beds,5 baths,6 Toilets +Decent 4 Bedroom Semi Detached Duplex In Lekki,"Agungi Road, Agungi Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Duplex In Lekki,"Off Chevy View Road, Chevron Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Osapa London Osapa London Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex (corner Piece),Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Bungalow,Lafiaji Chevron Lekki Lagos,₦,"36,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"John Great Court, Off Chevy View Road, Chevron Lekki Lagos",₦,"49,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"John Court, Off Chevy View Road, Chevron Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +10000 Squae Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +650 Square Metres Of Land,Osapa London Osapa London Lekki Lagos,₦,"48,000,000",0,0,0,0 beds,0 baths,0 Toilets +700 Square Metres Of Land,Ikate Ilasan Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +6500 Square Metres,Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Behind Femi Okunnu Estate Jakande Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex,Road 26 Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace,Dada Fayemi Close Lekki Phase 2 Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House,Castle Rock Avenue Lekki Phase 2 Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +7000 Square Metres Of Land,Lekki Epe Expressway Igbo Efon Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikota Village Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of 5 Bedroomduplex,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Olaitan Sebanjo Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Adebayo Doherty Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road. Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Citilodge Hotel By Elf Bus Stop Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adedeji Adekola Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Chief Collins Street Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Abike Sulaimon Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units 4 Bedroom Terrace Apartment,"Wole Ariyo Street, Off Admiralty Way Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Madam Cellular Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Opposite Victory Park Osapa London Lekki Lagos,₦,"57,000,000",0,0,0,4 beds,5 baths,5 Toilets +18000 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lafiaji Road Lekki Phase 2 Lekki Lagos,₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets +Land,Agungi Road Agungi Lekki Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,"Lafiaji, Behind Chevron Staff Cooperative Chevron Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,"Lafiaji, Behind Chevron Staff Cooperative Chevron Lekki Lagos",₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Hectares Of Land,"Lafiaji, Opposite Chevron Staff Cooperative Chevron Lekki Lagos",₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets +12 Hectares Of Land,"Lafiaji, Opposite Chevron Staff Cooperative Chevron Lekki Lagos",₦,"28,334",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex In Lekki,Kunshella Road Ikate Lekki Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Decent 4 Bedroom Terrace Duplex In Lekki,"Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Off Epe Express Way Lag. Lekki Phase 2 Lekki Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +150 Plots Of Land,Ologolo Road Agungi Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Chevron Toll Gate Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Eleganza Lekki Phase 2 Lekki Lagos,₦,"17,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neat 5 Bedroom Fully Detached Duplex In Lekki,"Chief Ganiu Enitan Street, Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Chief Ganiu Enitan Street, Off Orchid Hotel Road, Lekki Phase 1 Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + Bq,Robert Nebolisa Street Idado Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets +8 Plots Of Land And 400 Square Metres Of Land,Chevy View Chevron Lekki Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Plots Of Land,Osapa London Osapa London Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Metres Of Land,Spare Road Elegushi Ikate Lekki Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +1491 Square Metres Of Land,Kushenla Road Ikate Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400 Square Metres Of Land,Agungi Agungi Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace,Phase 2 Lekki Phase 2 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,2 Toilets +2 Unit Of 6 Bedroom Duplex + Bq,Pinnock Beach Estae Jakande Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex With 2 Rooms Bq,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,4 Toilets +2300 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flats,Itedo Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Block Of Six Units Of 3 Bedroom Flat In Lekki,"Aaron Irabor Street, Close To Alh. Adewunmi Fowewe Street, Lekki Phase 2 Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex In Lekki,"Iderekodo Road/mary Osadolor Cr, Lekki Phase 2 Lekki Lagos",₦,"73,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In Lekki,"Madam Cellular, Off Agungi Road, Lekki Phase 2 Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,1mile From Dangote Refinery Lekki Phase 2 Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Elemoro Lekki Phase 2 Lekki Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Town House In Lekki,"Off Orchid Hotel, Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Before Chevron Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +28 Units Of Serviced 4 Bedroom Terrace Duplexex With A Room Bq,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Servide 3 Bedroom Flat With Swimming Pool,"Shevy View Estate, Offchevron Drive Chevron Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Five Street, By Olajumoke Close, Off Alhaji Adewunmi Fowewe Street, By Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Ajiran Agungi Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Allan Balogun Street, Off Agungi Road, Lekki Phase 2 Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex In Lekki,"Alhaji Adewunmi Fowewe Street, Off Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Detached Duplex In Lekki,"Alhaji Adewunmi Fowewe Street, Off Allan Balogun Street, Lekki Phase 2 Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Flat In Lekki,"Olajumoke Close, By Adewunmi Fowewe Street, Lekki Phase 2 Lekki Lagos",₦,"41,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,At Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,6 baths,4 Toilets +1000 Square Metres Of Land,Off Fola Daniel Close Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds,0 baths,0 Toilets +2043 Square Metres Of Land,On Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0, beds,0 baths,0 Toilets +Land,Close To Whitesand School Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +890 Square Metres Of Land,0ff Olaitan Sebanjo Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets +963 Square Metres Of Land,Off Adebayo Doherty Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +1087square Metres Of Land,0ff Adedeji Adekola Close Lekki Phase 1 Lekki Lagos,₦,"140,000,000",0,0,0, beds,0 baths,0 Toilets +1100square Metres Of Land,"Behind Citilodge Hotel, Elf Bus Stop Lekki Phase 1 Lekki Lagos",₦,"125,000,000",0,0,0, beds,0 baths,0 Toilets +1100 Square Metres Of Land,Close To Whitesand School Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets +1139 Square Metres Of Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0, beds,0 baths,0 Toilets +1000 Square Metres Of Land,Off Fola Daniel Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0, beds,0 baths,0 Toilets +1067 Square Metres Of Land,Off Chief Collins Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0, beds,0 baths,0 Toilets +967 Square Metres Of Land,Off Abike Sulaimon Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0, beds,0 baths,0 Toilets +720 Square Metres Of Land,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0, beds,0 baths,0 Toilets +450 Square Metres Of Land,Off Oladimeji Alo Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds,0 baths,0 Toilets +500 Square Metres Of Land,Off Providence Road Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0, beds,0 baths,0 Toilets +500 Square Metres Of Land,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0, beds,0 baths,0 Toilets +5 Bedroom Detached House,Admiralty Road Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Constructed 4 Bedroom Semi Detached House Duplex,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built 3 Bedroom Serviced Apartment In Lekki,Off Freedom Way Lekki Phase 1 Lekki Lagos,₦,"43,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With 3 Bedroom Bq,V.g.c Vgc Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +"Three Bedroom Terraced Duplex With Ensuite Service Quarters, Swimming Pool And Gym",Off Road 2 Ikota Lekki Lagos,₦,"35,850,000",0,0,0,3 beds,3 baths,4 Toilets +"4 Bedroom Terraced Triplex With Ensuite Service Quarters, Swimming Pool And Gym",Off Road 2 Ikota Lekki Lagos,₦,"40,500,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificently Built 6 Bedroom Mansion,"Nicon Town Estate, Lekki Jakande Lekki Lagos",₦,"590,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Detached Duplex,Orchid Road Lekki Chevron Lekki Lagos,₦,"37,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Villa Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Bungalow,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"46,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat With A Bq,Jacob Lekki Phase 1 Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex With A Room Bq,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,5 baths,5 Toilets +2 Bedroom Flat,Awkuzu Str Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Sweet Semi Detached 4 Bedroom Bungalow,Orchid/lafiaji Road Lekki Phase 2 Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Awkuzu Str Lekki Phase 1 Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Salk Lake Estate Igbo Efon Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,0 baths,0 Toilets +One Bed Room Flat,Emma Abimbola Str Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Units Of 4 Bedroom Terrace Duplex In Lekki,"Sunday Dare Close, Off Prince Olarenwaju Elegushi Street, Salem Bus Stop, Lekki Phase 1 Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,"Lekki,phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,5 Toilets +9 Units Of Fully Detached Of 5 Bedroom,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +New Luxury Terrace Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,4 Toilets +5 Bedroom Duplex,Damilola Eletu Jakande Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chaplin Court Along Abraham Adesanya Estate Main Gate Road Ikota Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Phase1 Osapa London Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevron Drive Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury Semi Detached 4 Bedroom Duplex,Ocean Bay Estate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Logos Church Street Off Lagos Epe Express Way Behind Zenith Bank Osapa London Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat,"Pioneer Street, Osapa London,lekki Osapa London Lekki Lagos",₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +Half Plot Of Land,Pennisula Estate Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Pennisula Estate Lekki Phase 1 Lekki Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Bungalow,Lekki Phase 2 Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With 1 Bq,Jakande Jakande Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Osapa Osapa London Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Golden Street Lekki Phase 2 Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Igbo Efon Round About Ajah Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Detached Duplex,Mike Adegbite Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Detached House,Lekki County Homes Ikota Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Off Forla Osibo Lekki Phase 1 Lekki Lagos,₦,"210,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Units Of 4 Bedroom Duplex With Servant Room,Igbo Efon Igbo Efon Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 2 Bedroom Flat,Off Kusenla Street Ikate Lekki Lagos,₦,"38,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury Brand New 3 Bedroom Flat,Off Kusenla Street Ikate Lekki Lagos,₦,"42,500,000",0,0,0,3 beds,3 baths,4 Toilets +Plot Of Land,Pearls Estate Monastery Lekki Phase 2 Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Detached Duplex In Lekki,"Plot 9 Tesutu Abiodun, Vgc Lekki Lagos",₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Iketa Elegushi Ikate Lekki Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex +bq,Vgc Lekki Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex +bq,Vgc Lekki Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With 2 Rooms Bq,V.g.c Vgc Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Daniel Ayomike Lekki Phase 1 Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Behind Schme 2 Lekki Phase 2 Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Nike Gallery By Lekki Round About Lekki Phase 1 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Expressway Before World Oil Petrol Station Ikate Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Off Nike Art And Gallery Lekki Phase 2 Lekki Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Before World Oil Petrol Station Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Plot Of Land,Alma Beach Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Half Plot Of Land,Omi Soso Chevron Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Alma Beach Ikate Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Ilasan Ikate Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Ilasan Ikate Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Exquisitely Finished 3 Bedroom Terrace With Bq,1c Pascal Offiah Close Agungi Lekki Lagos,₦,"33,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Terrace,Lekki Gardens Estate Opp Abraham Adesanya Estate Lekki Phase 2 Lekki Lagos,₦,"20,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex + Bq,Castle Rock Avenue Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex In Lekki,"No. 6, Road 24, Ikate Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,C Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Units Of 4 Bedroom Terrace House,Bakare Estate Agungi Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Terrace,Omosehinde Agbaje Close Agungi Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Units Of 3 Bedroom Terrace Duplex,Maroko Off Mobile Road Lekki Phase 2 Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Chevy Veiw Estate Via Chevron Drive Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Fully Detached Duplex With Bq,Kusenla Road Lekki Phase 1 Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Plots Of Land,Itedo Junction Ikate Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Fara Park Lekki Phase 1 Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat In Lekki,"Abioro Street, Off Kusenla Street, 4th Roundabout, Lekki Phase 2 Lekki Lagos",₦,"28,000,000",0,0,0,2 beds,2 baths,3 Toilets +A 3 Bedroom Flat,Pearly Gate Estate Vgc Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Kusenla Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kusenla Ikate Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Phase 1 Lekki Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Silverbird Boulevard Jakande Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Duplex,Sassi Street Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +"24,000 Sqm Of Land",World Oil Street Ikate Lekki Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Duplex With Bqin Lekki,Off Ologolo Road Osapa London Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +Acres Of Land,Eleko Road Agungi Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Plots Of Land,Ikate Ikate Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Osapa London Osapa London Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ologolo, Estate Lekki Phase 1 Lekki Lagos",₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Plots Of Land,At Orchid Hotel Road Lekki Phase 1 Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Igbo Efon Igbo Efon Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevy View Estate Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Chevy View Chevron Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,2 Toilets +A 2 Bedroom Flat,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Detached House,Shoprite Jakande Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Steve Ajose Street Ikate Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Osapa London Osapa London Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,4 baths,5 Toilets +Land,Block 114a Lekki Phase 1 Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Block 12 Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Kusenla Road At Ikate Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Block 94 Lekki Phase 1 Lekki Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Beside Oba Oyekan Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Kunmi Akingbehin Street Off Omorinre Johnson Street Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,642.69sqm Land",Elf Bus Stop Lekki Phase 2 Lekki Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Dry Plots Of Land For Sale Close By Lekki Free Trade Zone, Ibeju Lekki, Lagos",Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +A 30 Room Hotel,3rd Roundabout Ikate Lekki Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Room Detached Duplex,Lekki County Estate Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,4 Toilets +Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Gated Community Ikate Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Bungalow,Abraham Adesanya Chevron Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Bungalow,Abraham Adesanya Chevron Lekki Lagos,₦,"26,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Nos Of 4 Bedrooms Semi Detached House,Agungi Agungi Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Itedo Lekki Lekki Phase 1 Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Elegushi Ikate Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abraham Adesanya Lekki Phase 1 Lekki Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase Lekki Phase 1 Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Vgc Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Maiyegun Tourism Scheme Near Alpha Beach Lekki Phase 2 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Garden City Vgc Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,After Mobile Filling Station Opp Four Sheraton Hotel Lekki Phase 2 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Tourism Zone Lekki Near Goshen Estate Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Maiyegun Tourism Zone Lekki Phase 1 Lekki Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Okunde Blues Water Near 2nd Roundabout Lekki Phase 1 Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Maiyegun Tourism Zone Agungi Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached Duplex,"Victory Park Estate, By Shoprite Roundabout Osapa London Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 7 Bedroom Detached House A Room Bq,"Chris Otulana Crescent, Lekki Scheme I Lekki Phase 1 Lekki Lagos",₦,"160,000,000",0,0,0,7 beds,7 baths,8 Toilets +7 Bedroom Mansion,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"380,000,000",0,0,0,7 beds,7 baths,7 Toilets +4 Bedroom Duplex + Boys Quarters,Godwin Eche Agungi Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 & 4 Bedroom Terraces.,At Chevron Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedrooms Flat In Lekki,Esther Adeleke Street Lekki Phase 1 Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Flat,Ojulari Road Ikate Lekki Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,2 Toilets +7 Bedroom Mansion,Ikota Villa Ikota Lekki Lagos,₦,"140,000,000",0,0,0,7 beds,7 baths,8 Toilets +Newly Built 4 Bedroom Semi Detached House,Chike Mba Street Osapa London Lekki Lagos,₦,"74,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Omorinre Johnson Lekki Phase 1 Lekki Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 5 Bedroom Duplex,Lekki County Ikota Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisitely Finished 5 Bedroom Duplex,Pinnock Estate Jakande Lekki Lagos,₦,"240,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Chevy Veiw Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Units Of A 3 & 2 Bedroom Luxury Flat With A Bq Each,Babatunde Anjous Lekki Phase 1 Lekki Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Land,Pinnock Beach Estate Osapa London Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Park Chevron Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Land,Nicon Town Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikate Round About Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached House,Pinnock Beach Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached House,Mudashiru Eletu Jakande Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex With A Room Bq,Royal Estate Chevron Lekki Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Duplex,Carlton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +15 Units Of 5 Bedroom Detached House,Ferrari Court Spg Jakande Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,4 baths,5 Toilets +Land,Ikate Round About Ikate Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 5 Bedroom Detached Duplex,Agungi Agungi Lekki Lagos,₦,"85,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 5 Bedroom Apartment,Carlton Gate Estate Chevron Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace Duplex,Ikate Ikate Lekki Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Chevy Veiw Estate Chevron Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Off Airan Road Agungi Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Villa Estate Ikota Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +8000 Square Meters Of Fenced Land,"Maruwa Waterfront, Before Ventage Hotel Resort Jakande Lekki Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Orchid Hotel Opp Ocean Bay Gate Ikota Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 680 Square Meter Of Land,Mega Chicken Estate Ikota Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury Mansion,"Victoria Garden City, Vgc Lekki Lagos",₦,"600,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Fully Detached House,Royal Garden Estate Lekki Phase 1 Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Alpha Beach Road Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful New 5 Bedroom House + Bq,Chevy View Estate Chevron Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautifully Designed 4 Bedroom Semi Detached Duplex With 1 Room Bq,By Second Toll Gate Chevron Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,5 baths,5 Toilets +Corner Piece Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + 2 Rooms Bq,Road 25 Vgc Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Detached Duplex With Bq,Carilton Gate Estate Chevron Lekki Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 3 Bedroom Terrace,Oniru Estate Lekki Phase 1 Lekki Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Chevron Estate Chevron Lekki Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"78,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Jakande Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Turn Key 4 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful Brand New 4 Bedroom Detached Duplex With A Room Bq,Chevy View Estate Chevron Lekki Lagos,₦,"54,000,000",0,0,0,4 beds,4 baths,5 Toilets +Distinctive Brand New 4 Bedroom Detached Duplex With Exceptional Fittings,At Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,6 beds,5 baths,6 Toilets +Beautiful 4 Bedroom Semi Detached Duplex With A Room Bq,"Off Chevron Drive, Chevron Lekki Lagos",₦,"58,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex,Madam Cellular Close Agungi Lekki Lagos,₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex And A Bq,"By Slot, Lekki Lekki Lagos",₦,"33,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex +2bq,Northern Foreshore Estate Chevron Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Detached Duplex With A Bq,"Ologolo, Agungi Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 16 Room Luxury Hotel,Emmanuel Abimbola Cole Street Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Pinnock Beach Estate Osapa Lekki Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Villa Ikota Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex +bq,Ikota Villa Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Duplex,Ikota Villa Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Duplex +bq,Ikota Villa Lekki Lekki Lagos,₦,"45,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Lekki Lekki Lekki Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Akodo Peninsulat Gardens Lekki Phase 1 Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Detached House With A Boys Quater,Pinnock Estate Lekki Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Duplex,Off Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"185,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached House,"Chevy View, Chevron Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Fully Detached Duplex,"Lekki, Lekki Phase 1 Lekki Lagos",₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Epe Express Way Lekki Phase 1 Lekki Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Townhouse With A Bq,"Northern Foreshore Estate, Off Chevron Drive Chevron Lekki Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Chevy View Estate, Chevron Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,3 baths,4 Toilets +Studio Apartment,Ikate Beside Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"14,000,000",0,0,0,0 beds,1 baths,1 Toilets +Exquisitely Finished 1 Bedroom Apartment,Ikate Beside Meadow Hall Lekki Phase 1 Lekki Lagos,₦,"21,500,000",0,0,0,1 beds,1 baths,1 Toilets +Studio Apartment,Chevron Drive Chevron Lekki Lagos,₦,"13,500,000",0,0,0,1 beds,1 baths,1 Toilets +Exquisitely Finished 1 Bedroom Apartment,Chevron Drive Chevron Lekki Lagos,₦,"18,500,000",0,0,0,1 beds,1 baths,1 Toilets +3 Bedroom Penthouse,Oladimeji Ald Street Lekki Phase 1 Lekki Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Osapa London Lekki Phase 1 Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"57,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 4 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terrace,"Donatus Odum Street, Off Kunshela Road, Ikate Elegushi Lekki Lekki Lagos",₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ikota Shopping Complex Vgc Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Daniel Ayomike Str, Off Freedom Way Lekki Phase 1 Lekki Lagos",₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Terrace,"Off Castle And Temple Str, Lekki Phase 1 Lekki Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex With Bq,Off Akeem Dickson Street Lekki Phase 1 Lekki Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Wing Of Duplexes With Bq,"Off Hakeem Dickson Street, Oniru Lekki Lekki Lagos",₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +A 5 Bedroom Detached Duplex With A Bq,"Ikota Villa Estate, Off Lekki Ajah Road Ikota Lekki Lagos",₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex +bq,Agungi Agungi Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex With 2 Rooms Bq,"Ihuntayi Street, Oniru Lekki Lekki Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Mini Flat,Christ Avenue Lekki Lekki Lagos,₦,"1,300,000",0,0,0,1 beds,1 baths,2 Toilets +Plots Of Land,Off Freedom Way Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Off Freedom Way Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Mansionette,"Eldarado Estate, 5th Roundabout Agungi Lekki Lagos",₦,"52,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A 2,500sqm Land",Admiralty Way Lekki Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off White Sand Schools Maruwa Lekki Phase 1 Lekki Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Lekki,phase 1 Lekki Phase 1 Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,4 baths,5 Toilets +Land,On Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Admiralty Road Lekki Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Two Rooms Bq,Off Ladi Alakija Str. Lekki Phase 1 Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Duplex Plus Bq,Off Oladimeji Alo Str. Lekki Phase 1 Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land,"Off Epe Express Way, Lekki Phase 2 Lekki Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Off Agungi Main Str, Agungi Lekki Lagos",₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Two Rooms Bq,Off Fola Osibo Lekki Phase 1 Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mini 5 Bedroom Fully Detached Duplex,Prime Water Road Ikate Lekki Phase 1 Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +832sqm Land,Plot 11 Lekki Phase 1 Lekki Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached House With A Room Bq,Phase 1 Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,"Abijo Gra, Lekki Epe Expressway Lekki Lekki Lagos",₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Mansionette,"Chevron Drive Lekki, Northern Foreshore Estate Chevron Lekki Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex Plus Bq,Tunji Aderinto Street Off Ire Akare Estate Road Jakande Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,North Pointe Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,"Lekki Right Hand Side, Bosun Adekoya, Lekki Phase 1 Lekki Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 2 Bedroom Flat,"Westend Estate, Ikota Villa Ikota Lekki Lagos",₦,"200,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Detached Duplex,Lekki Phase 1 Lekki Lekki Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached,Chevyview Estate Chevron Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land For Sale At Lekki,Lekki Agungi Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land,Lekki Peninsula Scheme Lekki Phase 1 Lekki Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ogombo Town Off Lekki Lekki Lagos,₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adimiralty Way Lekki Phase 1 Lekki Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 30,000sqm Land",Freedom Way Lekki Phase 1 Lekki Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 20,000sqm Land",Ikota Vgc Lekki Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 30,000sqm Land","Marw, Lekki Ocean View Lekki Phase 1 Lekki Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 10,000sqm Land",Off Admiralty Way Lekki Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 535sqm Land,Lekki Scheme I Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 500sqm Of Land,Lekki Penisula Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 900sqm Of Land,Vgc Lekki Lekki Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,000sqm Of Land",Opposite Vgc Shopping Mall Lekki Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,139sqm Of A Bare Land","Chris Otulana Crescent, Lekki Scheme I, Goshen Estate Lekki Lekki Lagos",₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 42,768sqm Of Land",Right Hand Side Lekki Phase 1 Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land,Lekki Epe Expressway Lekki Lekki Lagos,₦,"240,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,200sqm Of Land",Fatai Arobieke Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,000sqm Of Land",Admiralty Way Lekki Phase 1 Lekki Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Terrace Duplex,Richmond Estate Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Pent House,Off Oba Amusa Street Agungi Lekki Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Off Oba Amusa Street Agungi Lekki Lagos,₦,"30,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Duplex,Ilasan Opposite Nicon Town Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +A 4 Bedroom Semi Detached Duplex,"Govenille Estate, Opposite Alpha Beach Road, Before Chevron Roundabout Lekki Lekki Lagos",₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached House With A Room Bq,Phase 1 Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 900sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,451sqm Of Land","Road 13, Close 15, Behind Chrisland School Vgc Lekki Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,000sqm Of Land",Near Nicon Hotel Vgc Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 998sqm Of Land,Phase 1 Lekki Lekki Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,261sqm Of Land","Orchid Hotel, Off Chevron Toll Gate Lekki Lekki Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,401sqm Of Land","Block 1, Lekki Road Lekki Lekki Lagos",₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Detached House,Lekki Phase 1 Lekki Phase 1 Lekki Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Sale,Opp Lekki Gardens Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Opp Lekki Garden Estate Lekki Lekki Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Lekki Free Zone Neighbourhood Lekki Lekki Lagos,₦,"3,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Marwa Estate Lekki Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Km 46, Lekki Epe Expressway, Awoyaya, Lagos Lekki Lekki Lagos",₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex In Lekki,Buena Vista Estate Lekki Phase 2 Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Off Chevron Drive Lekki Lekki Lagos,₦,"96,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Pinnock Beach Estate Lekki Lekki Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House,Pinnok Estate Lekki Jakande Lekki Lekki Lagos,₦,"120,000,000",0,0,0,6 beds,5 baths,7 Toilets +6 Bedroom Semi Detached House,Off Admiralty Road Lekki Phase1 Lekki Lekki Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,7 Toilets +5 Bedroom Duplex With 1 Room Bq,Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5bedroom Duplex + A Bq,Osapa London Lekki Lekki Lagos,₦,"68,000,000",0,0,0,5 beds,6 baths,5 Toilets +3 Bedroom Flat,Chevron Conservation Centre Lekki Lekki Lekki Lagos,₦,"57,000,000",0,0,0,3 beds,3 baths,2 Toilets +A Plot Of Land,Mayfair Gardens Lekki Lekki Lagos,₦,"4,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Abraham Adesanya Lekki Lekki Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Off Thera Annex Vgc Lekki Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oshopa London Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Jasper Ike Lekki Lekki Lagos,₦,"85,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,Ikota Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lekki Phase 1 Lekki Lekki Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Nicon Town Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Detached House,Lekki Phase 1 Lekki Lekki Lagos,₦,"190,000,000",0,0,0,5 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ikota Ville Lekki Lekki Lagos,₦,"58,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Ikota County Homes Lekki Lekki Lagos,₦,"35,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace House,Greenville Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Mobolaji Johnson Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,3 baths,4 Toilets +Office Space,Lekki Epe Expressway Lekki Lekki Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Road 44 Vgc Lekki Lagos,₦,"140,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,Lekki Phase 2 Lekki Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Resort Estate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2538sqm Of Land,Akinogun Road Lekki Lekki Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Ikate Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Luxury Bedroom Duplex,Lekki County Estate Vgc Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bed Room Duplex,Canal View Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,4 baths,5 Toilets +Land,Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Fountain Springville Estate, Behind The New Shoprite Along Lekki Epe Express Way, Lagos State Lekki Lekki Lagos",₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,"Springville Estate, Behind The New Shoprite, Lekki Epe Express Way, Lagos Lekki Lekki Lagos",₦,"37,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,"Plot Q5, Springville Estate, Lekki, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Lawrence Akande Close, Off Prof Kiumi Akingbehin Street (street Of Payless Supermarket) Lekki Lekki Lagos",₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Story Building Of 4 Flats 3 No's Of 3bed,Ajah Lekki Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,3 Toilets +A 3 Bedroom Terrace Duplex,Lekki Gardens Lekki Lekki Lagos,₦,"30,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Osapa Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 3 Bedroom Apartment,Bamidele Eletu Street Lekki Lekki Lagos,₦,"32,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House With 2 Room Bq,"Still Waters Gardens, Lekki Lekki Lekki Lagos",₦,"80,000,000",0,0,0,7 beds,6 baths,6 Toilets +4 Bedrooms Detached House,Beachwood Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 3 Bedroom Flat,Abijo Lekki Lekki Lagos,₦,"600,000",0,0,0,3 beds,3 baths,4 Toilets +A 650sqm Of Land,By Oniru Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Southern View Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,5 baths,5 Toilets +"5 Bedroom Detached House + Bq,","Abdul Rahaman Oseni Street, Off Maiyegun Road, Jakande Lekki, Lagos Lekki Lekki Lagos",₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Semi Detached Duplex With A Room Bq,Ilasan Opposite Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4bedroom Bungalow,"Near Fara Park Estate, Sangotedo, Ajah Lekki, Lagos Lekki Lekki Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Platinum Way Jakande Lekki Lagos,₦,"43,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Duplex,Road 12 Jakande Lekki Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached House,Ikota Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Bunmi Oluwude Lekki Phase 1 Right. Lekki Lekki Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Osapa London Lekki Lekki Lagos,₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Lekki Gardens Sangotedo Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Detached +1bq,Carlton Gate Estate Chevron Drive Lekki Lekki Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached +1bq,Prestigious Carlton Gate Estate Lekki Lekki Lagos,₦,"100,000,000",0,0,0,5 beds,0 baths,0 Toilets +"A 1,007sqm Of Land","Block 135, Plot 31 Lekki Lekki Lagos",₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Farapark Estate Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Victory Estate Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Farapark Estate Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victory Estate Lekki Lekki Lagos,₦,"2,800,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,962sqm Of Dry Land","Block 113, Plot 1b Lekki Lekki Lagos",₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House + 2 Room Bq,Goshen Estate Lekki Lekki Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +A 900sqm Of Land,Plot 15 Block 112 Lekki Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 900sqm Of Land,Road 14 K 12 Lekki Lekki Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,105sqm Of Land",Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,198sqm Of Land",Vgc Lekki Lekki Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 3000sqm Of Land,Vgc Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 10 Plots Of Land,After Mobile Filling Station Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4.206 Hectares Of Land,Maiyegun Tourism Zone Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2.6 Hectares Of Land,Plot 7a And 7b Okunde Blue Waters Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 26,510sqm Of Land",Tourism Zone Near Goshen Estate Lekki Lekki Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +13.067 Hectares Of Land,"Plot 5,6,7 & 8 Maiyegun Tourism Zone Lekki Lekki Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Hectares Of Land,Sangotedo Lekki Lekki Lagos,₦,"3,750,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 12.75 Hectares Of Land,Maiyegun Tourism Scheme Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Vgc Lekki Lekki Lekki Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached House With 2 Rooms Bq,Alpha Beach Road Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Oba Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Oba Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Plot Of Land,Flourish Gardens Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Flourish Court Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Platinum Way. Lekki Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Lafiaji Town Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex +2 Bq,Dasilva Street Lekki Phase 1 Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,6 Toilets +Plot Land,Onosa Ibeju Lekki Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Half Plot Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"850,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ibeju Agbe Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Madonna Gardens Lekki Lekki Lagos,₦,"1,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Flourish Court Lekki Lekki Lagos,₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Flourish Gardens Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Lekki Free Trade Zone Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,By Lakowe Lakes Golf And Country Estate Lekki Lekki Lagos,₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace House,Ikota Villa Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4bedroom Duplex + 2room Bq,Lekki Lekki Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,0 Toilets +Land,Rockville Couts Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Hampton Courts Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Brooksville Courts Ibeju Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Ibeju Town Cherrywood Court Estate Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Spring Courts Estate Ibeju Town Lekki Lekki Lagos,₦,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Land,Ibeju Town Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Duplex With 2 Rooms Bq,Dasilva Street Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Vgc Lekki Lekki Lekki Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace With A Bq,Oniru Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Fully Detached House With A 2 Room Bq,Pinnock Estate Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 900sqm Of Land,By Lakowe Lakes Golf And Country Estate Lekki Lekki Lagos,₦,"18,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached 4 Bedroom Duplex With Bq,Northern Foreshore Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,19a Lekki Lekki Lagos,₦,"22,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 3 Bedroom Terrace With Bq,Bosun Adekoya Lekki Lekki Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 6 Units Of A 3 Bedroom Flat Building On A 500sqm Land,Fola Oshibo Street Lekki Lekki Lagos,₦,"320,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5bedroom Duplex,Idado Estate Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,4 Toilets +5 Bedroom Detached House,Osapa London Lekki Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Osapa London Lekki Lekki Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Treasure Gareden Lekki Phase 1 Lekki Lekki Lagos,₦,"65,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Palace Road Oniru Lekki Lekki Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +6units Of 3 Bedroom Flats,Atlantic View Estate Lekki Lekki Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 4 Bedroom Semi Detached Duplex With A Room Bq,Sangote Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 740sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,040.000sqm Of Land",Lafiaji Town Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +A 1242.663sqm Of Land,Off Platinum Way. Lekki Lekki Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Lekki Lekki Lekki Lagos,₦,"70,000,000",0,0,0,5 beds,4 baths,5 Toilets +5 Bedroom Detached +2bq,"Off Fola Osibo Street, Lekki Phase1. Lagos Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Crown Estate Lekki Lekki Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Duplex,Ologolo Lekki Lekki Lagos,₦,"63,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ikota Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex With A Room Bq,Calton Gate Estate Lekki Lekki Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Eluju Town,before Eleko Junction.lekki Epe Express Way.lagos., Lekki Expressway, Lekki, Lagos Lekki Lekki Lagos",₦,"4,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Along Coastal Road, After Lekki Free Trade Zone,indomie Factory, Power Oil Company And Dangote’s Refinery, Ibeju, Lagos Lekki Lekki Lagos",₦,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Abraham Adesanya Lekki Lekki Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Abijo Gra Lekki Lekki Lagos,₦,"7,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Lekki Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Semi Detached 5bedroom With Cctv,Igbo Efon Lekki Lekki Lagos,₦,"65,000,000",0,0,0,0 beds,5 baths,5 Toilets +5 Bedroom Duplex,"Chevy View Estate, Chevron Drive Lekki Lekki Lekki Lagos",₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Duplex With A Room Bq,Nicon Town Lekki Lekki Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,5 Toilets +3 Bedroom Flat A With A Bq,Chevon Drive Chevy Lekki Lekki Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flat,Dideolu Estate Oniru Lekki Lekki Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached Duplex With 2 Rooms Bq,Niyi Okunnubi Street Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached House With A Bq,"Victory Pack Estate, Lekki Lekki Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Detached House,"Rthyme Road, Jakande, Lekki Lekki Lagos",₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedroom Duplex With A Room Bq,Modupe Odulami Street Off Bosun Adekoya Street Lekki Lekki Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Detached House With A Bq,Lawrence Akande Close Lekki Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 5 Bedroom Detached House With A Bq,Unity Close Off African Lane Lekki Lekki Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,6 Toilets +28 Room Hotel For Sale,Remi Olowude Lekki Lekki Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Plots Of Land,Nicon Town Lekki Lekki Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 14 Units 4 Bedroom Semi Detached Duplex Estate,Kanmi Oyegunle Lane Lekki Lekki Lagos,₦,"434,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex With A Room Bq,Kanmi Oyegunle Lane Lekki Lekki Lagos,₦,"36,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terraced Duplex,Provindence Road Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Flat,Few Mins Drives From The New Circle Mall Shoprite Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,0 baths,0 Toilets +65 Units Of Terrace Flats,Behind Westend Estate Behind Spg Office Agungi Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Nos Of 20 Units Of 4bedroom Terrace,Kushenia Road Ikate Elegushi Lekki Lekki Lagos,₦,"50,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartments,Ora Estate Ikota Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedroom Bungalow,Ajah Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,3 Toilets +3 Units Of 4 Bedroom Terrace Duplex,Ocean Bay Estate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace,Ocean Bay Estate Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,4 Toilets +12 Units Of 2 Bedroom Apartment,Ocean Bay Estate Lekki Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +8 Units Of 1 Bedroom Apartments,Ocean Bay Estate Lekki Lekki Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex,"Off Gbamgbala Road, Lekki Lekki Lagos",₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +15.428 Hectares Of Land,Ikasan Lekki Lekki Lekki Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 660sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 668sqm Of Land,Phase 2 Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,"Gbangbala Street, Lekki Lekki Lagos",₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +Certificate Of Occupancy,"Road 16, Off Lekky County Road Lekki Lekki Lagos",₦,"56,000,000",0,0,0,5 beds,5 baths,6 Toilets +Dominion Project,"Plot 10,block 25,lekki Residential Scheme 1 Lekki Lekki Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +9 Bedroom Flats,Alpha Beach Road Lekki Lekki Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached +1bq,Off Castle Road Lekki Phase 1 Lekki Lekki Lagos,₦,"2,200,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Bungalow,Serene Street Off Lekki Epe Express Way By Bogije Lekki Lekki Lagos,₦,"25,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Serene Close By Off Amadason Street Lekki Lekki Lagos,₦,"48,500,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flats,Ikota Villa Lekki Lekki Lagos,₦,"85,000,000",0,0,0,3 beds,2 baths,3 Toilets +Land,Alma Beach Ikate Elegushi Lekki Lekki Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Igbo Efon Chevron Lekki Lekki Lagos,₦,"27,500,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Arisco Barr Jakande Directly On Lekki Beach Road Lekki Lekki Lagos,₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Per Spmts,"Prince Abiodun Road,off Idowu Abiodun Road Oniru Lekki Lekki Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached +2bq,Sybil Lroche Street Off Niyi Okunibi Street Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat A With A Bq,Lekki Phase 1 Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land,Lekki Country Estate Lekki Lekki Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Lekki Country Estate Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Norther Foreshore Estate Chevron Drive Lekki Lekki Lekki Lagos,₦,"100,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Sapphire Gardens Lekki Epe Expressway Lekki Lekki Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Land,1st Right Turn After The Second Toll Gate And Opposite Mobil Corporative Estate On Orchid Hotel Lekki Lekki Lagos,₦,"30,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached Duplex,Ikota Villa Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex+bq,Oloc Jakande After Shoprite Lekki Lekki Lagos,₦,"35,000,000",0,0,0,3 beds,4 baths,5 Toilets +A 5 Bedroom Detached Duplex With 2 Room Bq,Carltongate Estate Lekki Lekki Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plot Land,Block 25 Lekki Scheme 2 Lekki Lekki Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Detached Duplex,Lekki House Lekki Lekki Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Plots Of Land,Abijo Gra In Lekki Peninsular Lekki Lekki Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,Lekki Free Trade Zone Lekki Lekki Lagos,₦,"852,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached + 2bq,Vgc Lekki Lekki Lekki Lagos,₦,"145,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Fully Detached Duplex,Lekki Country Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Semi Detached Duplex With A Room Bq,Off Romay Garden Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"56,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Lekki Right Maruwa By Pinnacle Filling Station Lekki Phase 1 Lekki Lekki Lagos,₦,"35,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat,Western Estate Ikota Villa Estate Lekki Lekki Lagos,₦,"25,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"46,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Chevron Alternative Road Chevron Lekki Lekki Lekki Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"32,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom +bq,Behined Havens Homes And Meadows School Ikate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex,Agungi Lekki Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom +bq,Osapa Gra By New Shoprite Jakande Lekki Lekki Lagos,₦,"48,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Duplex +bq,Oba Musa Estate Agungi Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Agungi Lekki Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Lakowe Bodija Ibeju Lekki Lekki Lekki Lagos,₦,"3,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom With 2 Bq,Norther Foreshore Estate Chevron Lekki Lekki Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Detached Duplex,Osapa Gra By Shoprite Jakande Lekki Lekki Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex,Ikota Villa Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Lekky County Ikota Villa Estate Lekki Lekki Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Mini Service Estate Agungi Lekki Lekki Lagos,₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Fully Detached House With A Bq,Thomas Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex,Atlantic View Estate Estate Off Alpha Beach On Chevron Drive Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Lekki Epe Express Way 6th Roundabout Lekki Lekki Lekki Lagos,₦,"22,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,Ologolo Lekki Lekki Lekki Lagos,₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +Acres Of Land,Ode Okun After Lekki Peninsula Lekki Lekki Lagos,₦,"1,500,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Land,Aiyedere Lekki Peninsula Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Akodo Ise Village In Ibeji Lekki Lekki Lekki Lagos,₦,"600,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of A 4 Bedroom Semi Detached Duplex,Off George Omonubi Street Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Da Sliva Street Lekki Phase 1 Lekki Lekki Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,3 Toilets +A Plot Of Land,Lekki Scheme Ii Lekki Lekki Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard Plot Of Land,Ikota Villa Estate Lekki Lekki Lagos,₦,"41,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land,Ikota Villa Estate Lekki Lekki Lagos,₦,"47,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5 Bedroom Twin Duplex With 2 Room Bq,Phase 1 Lekki Lekki Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 4 Bedrooms Semi Detached House With A Bq,Northern Foreshore Estate Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Twin 4 Bedroom Duplex,Ibeju Lekki Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedrooms Fully Detached House,Furo Eximora Lekki Lekki Lagos,₦,"110,000,000",0,0,0,6 beds,5 baths,6 Toilets +5 Plots Of Land For Sale,Ogombo Lekki Lekki Lagos,₦,"6,600,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House + 3 Rooms Bq,Admiralty Road Lekki Lekki Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedrooms Fully Detached House,Chevy View Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House + A Room Bq,Calton Estate Lekki Lekki Lagos,₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +6 Units Of A 3 Bedroom Flat,Chevy View Estate Lekki Lekki Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +Semi Detached Duplex Plus A Room Bq,Chevy View Lekki Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,Behind Romay Gardens Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Ikate Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedrooms Semi Detached Duplex,Crown Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex With A Bq,4th Roundabout Lekki Lekki Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedrooms Semi Detached House With A Bq,Bela Vista Estate Lekki Lekki Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex With A Bq,Lekki Phase 1 Lekki Lekki Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 5 Bedroom Fully Detached House,Pinnock Estate Lekki Lekki Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +20 Units Of 3 Bedroom Flats,Lekki Phase 1 Lekki Lekki Lagos,₦,"1,700,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Free Trade Zone, Lekki Lekki Lekki Lagos",₦,"5,400,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Oakwood Garden Lakowe. By Lakowe Lakes Golf & Country Estate, Lekki Lekki Lagos",₦,"13,500,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ikota Villa Estate Vgc Lekki Lagos,₦,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Duplex,Agungi Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Duplex,Ikota Villa Lekki Lekki Lagos,₦,"40,000,000",0,0,0,4 beds,5 baths,6 Toilets +A 4 Bedrooms Semi Detached Duplex,Lekki Garden Phase 4 Lekki Lekki Lagos,₦,"75,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Plot Of Land,Lekki Epe Express Way Lekki Lekki Lagos,₦,"2,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex Apartment With 1 Room Bq,Elegushi Lekki Lekki Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Pinnock Beach Lekki Lekki Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Duplex With Bq & Study Room,Oniru Lekki Lekki Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,5 Toilets +Land For Sale,",plot 3. Block 120 Lekki Lekki Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,"Agungi, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex + A Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of 4 Bedroom Duplex,Extention Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Luxury Brand New 4 Bedroom Terrace,"New Road, Lekki Lekki Lagos",₦,"46,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplexe + Bq,"Ikota Villa Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + A Room Bq,Osapa London Lekki Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,6 Toilets +15 Bedroom Mansion,Ikota Villa Estate Lekki Lekki Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,Chevy View Estate Lekki Lekki Lagos,₦,"57,000,000",0,0,0,5 beds,5 baths,5 Toilets +Spacious And Can Be Redeveloped Or Upgraded,Bakare Estate Lekki Lekki Lagos,₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +14 Units Of New Duplexes With Bq,Peninsula Estate Lekki Lekki Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Storey 6 Bedroom Terraced House,Meadow Hall Way Lekki Lekki Lagos,₦,"50,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Duplex For Sale,Osapa London Lekki Lekki Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +"10,000sqm Of Land Beside Lekki Gardens, Elegushi","Beside, Lekki Gardens Lekki Lekki Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Tastefully Finished 4 Bedrooms Detached Duplex,Marcapolo Mini Estate Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached House With One Room Bq,No1 Lara Ademola Street. Lekki Lekki Lagos,₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex,No1 Lara Ademola Street. Lekki Lekki Lagos,₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace House,"Jakande, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,3 baths,6 Toilets +4 Bedroom Terrace House,"Jakande, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Three Bedrooms Flat With Boys Quarters,"Pearly Gate Estate, Ikota Lekki Lekki Lagos",₦,"39,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached House + 1 Bq,"Osapa London, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Unit Of 4 Bedroom Duplex (detached & Semi Detached),Road 3 Lekki Counting Lekki Lekki Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With A Room Bq,Victory Park Estate Lekki Lekki Lagos,₦,"98,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Fully Detached House + A Room Bq,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"180,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House + A Room Bq,"Off Agungi Road, Lekki Lekki Lagos",₦,"57,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 3 Bedroom Semi Detached Houses +room Bq,"Off Eletu Street, Lekki Lekki Lagos",₦,"38,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House + A Room Bq,"Chevyview Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 4 Bedroom Terraced House,"Off Agungi Road, Lekki Lekki Lagos",₦,"48,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex Withb 1 Room Bq,Lekki Cantting Transformation. Lekki Lekki Lagos,₦,"45,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,Lekki Cantting Transformation. Lekki Lekki Lagos,₦,"60,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Road Six Cantting Lekki Lekki Lekki Lagos,₦,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Unit Of 2 Bedroom Flat,"Close To Lekki Toll Gate, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets +Newly Built 4 Bedroom Detach House In A Mini Estate,"Lara Ademola Street, By Nevada Hotels Lekki Lekki Lagos",₦,"55,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House + 2 Rooms Bq,"Plot 104, Olajide Olabanji Street Lekki Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Block Of Flats In Lekki Expressway,"Ikota Villa Estate, Lekki Lekki Lagos",₦,"250,000,000",0,0,0,3 beds,3 baths,0 Toilets +8 Bedroom Detached House + 4 Room Bq,Adeniyi Olanrewaju Street Lekki Lekki Lagos,₦,"300,000,000",0,0,0,8 beds,8 baths,0 Toilets +Block Of Flats In Lekki Expressway,Ikota Villa Estate. Lekki Lekki Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,0 Toilets +4 Bedroom Detached House Plus 2 Room Bq,"Plot B25 B8 Close, Carlton Gate Estate, Lekki Lekki Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex + 1 Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"55,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Semi Detached Duplex + A Room Bq,"Chevy View Estate, Lekki Lekki Lagos",₦,"47,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,"Chevy View Estate, Lekki Lekki Lagos",₦,"53,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex,"Chevy View Estate, Lekki Lekki Lagos",₦,"50,000,000",0,0,0,5 beds,5 baths,6 Toilets +A 1000sqm Land For Sale,"Central Business District, Lekki Lekki Lagos",₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Carlton Gate Estate, Lekki Lekki Lagos",₦,"170,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,"Lekki Phase 1, Lekki Lekki Lagos",₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +6 Units Of 2 Bedroom Flat,"Marwa, Lekki Lekki Lagos",₦,"42,000,000",0,0,0,2 beds,2 baths,2 Toilets +Furnished 4 Bedroom Terrace,"Off Lekki County Homes Estate, Lekki Lagos",₦,"40,000,000",0,0,0,4 beds,4 baths,4 Toilets diff --git a/dirty/vi.csv b/dirty/vi.csv new file mode 100644 index 0000000..ae618fa --- /dev/null +++ b/dirty/vi.csv @@ -0,0 +1,4459 @@ +Title,Location,Currency,Price,Serviced,Newly Built,Furnished,Bedrooms,Bathrooms,Toilets +Luxury 3 Bedroom Apartment With Excellent Finishing,Off Ligali Ayorinde Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets +Ultra Luxury 3 Bedroom Apartment,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 2 Bedrooms Apartment With Bq,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,4 baths,3 Toilets +Brand New Specious Luxury 6 Bedroom Fully Detached Duplex With Bq And Swimming Pool For Sale,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"590,000,000",0,1,0,6 beds,6 baths,7 Toilets +Exquisite 3bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Cluster D1 1004 Victoria Island Lagos,₦,"95,000,000",1,0,0,2 beds,1 baths,2 Toilets +Luxury One Bedroom Hotel Styled Apartment,The Knight's Place Ahmadu Bello Way Victoria Island Lagos,₦,"80,000,000",0,0,0,1 beds,1 baths,0 Toilets +Luxury 2 Bedroom Apartment,"The Knight's Place, Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos",₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment,"The Knight's Place, Ahmadu Bello Way Victoria Island Lagos",₦,"160,000,000",1,0,0,2 beds,2 baths,3 Toilets +Well Finished Open Plan Space,Idowu Taylor Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Block On 2 Floors,Saka Tinubu Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"4units Of Newly Built & Tastefully Finished Luxury 5bedroom Fully Detached Duplex + A Room Bq,gym Center & Cinema House For Sale!!!",Oniru Victoria Island Lagos,₦,"280,000,000",1,1,0,5 beds,5 baths,5 Toilets +Brand New 2 Bedroom Pent House Apartment With Bq,Victoria Island Lagos,₦,"170,000,000",1,1,0,2 beds,3 baths,3 Toilets +5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +"Luxurious 2 Units Of 4 Bedroom Penthouses With A Room Bq Each. , Swimming Pool, Gym",Victoria Island Lagos,₦,"190,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Penthouse,Akin Adesola Victoria Island Lagos,₦,"160,000,000",1,1,0,2 beds,3 baths,3 Toilets +Strategic Waterfront Bare Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat,Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",1,1,0,3 beds,4 baths,4 Toilets +3bedroom Apartment,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets +6 Units Of Affordable Duplex,Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Luxurious 8 Units Of 3 Bedroom Flat With Bq, Swimming Pool, Gym",Victoria Island Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 3 Bedroom Terraces With Bq,Waziri Adeola Odeku Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +The Deal: Full Service Contemporary Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +Brand New 3 Bedroom Apartment With Bq,Adeola Odeku Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Maisonette,Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedrooms Fully Serviced Apartments With 24 Hrs Electricity Available For Sale(good For Shortlets,Victoria Island Lagos,₦,"135,000,000",1,1,0,3 beds,4 baths,4 Toilets +2 Floor Full Service Terrace,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,5 baths,4 Toilets +Purpose Built Office Block On 5 Floors,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +This Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Exquisitely Finished Luxury 5 Bedroom Detached Duplex For Sale At Oniru, Vi.",Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Stellar 3 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets +Fully Detached And Fully Serviced Contemporary Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +Exclusively Built Brand New 6 Bedroom With A Pent Floor,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"550,005,000",0,1,0,6 beds,6 baths,7 Toilets +4 Units Of Three (3) Bedroom Luxury Terrace Duplexes.,"Kayla's Haven Terraces, Off Ozumba Mbadiwe (oba Yesufu Abiodun Road) Oniru Victoria Island Lagos",₦,"140,000,000",1,1,0,3 beds,4 baths,4 Toilets +Purpose Built Office Block On 2 Floors At The Corner Of Amodu Ojikutu Street.,Amodu Ojikutu Street Saka Tinubu Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Luxury & Executive Four Bedroom Apartment,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Detached House With Bq,Dideolu Etate Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Flat,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,0 Toilets +One Of Its Kind. An Elegant 5 Bedroom Fully Detached Duplex In A Top Private Estate In Oniru,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedrooms Terrace Duplex,Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment With Service Quarter,"Water Corporation Drive, Off Ligali Ayorinde, Oniru, Victoria Island Extension Victoria Island Lagos",₦,"87,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Ultra Modern 3 Bedroom Apartment + Bq,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"875,000",1,0,0,3 beds,3 baths,4 Toilets +Almost Completed Luxury 3 Bedroom Apartment With A Maid's Room,"Water Corporation Drive, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +Spacious & Serviced 3 Bedroom Apartment With A Bq,"Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +Almost Completed Luxury 3 Bedroom Apartment With A Maid's Room,"Water Corporation Drive, Oniru, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Luxury 3 Bedroom Apartment With Maid's Room, Laundry Room, Ac & Fitted Kitchen","Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde, Oniru, Victoria Island Extension Victoria Island Lagos",₦,"87,000,000",1,0,0,3 beds,3 baths,4 Toilets +Functional 27 Rooms Hotel,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 5 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Ultra Modern 2 Bedroom Apartment +bq,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"710,000",1,0,0,2 beds,2 baths,3 Toilets +Serviced 4 Bedroom Terrace Duplex With Bq.,Mabogunje Street Oniru Victoria Island Lagos,₦,"137,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Fenced And Gated Land Measuring 2100sqm,Louis Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 3bedrooms + Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +5bedrooms Detached Duplex + 1 Room Bq For Sale,Tiamiyu Salvage Ahmadu Bello Way Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,4 baths,4 Toilets +Luxury One Bedroom Hotel Styled Apartment Along Ahmadu Bello Way Victoria Island,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"80,000,000",1,0,0,1 beds,1 baths,2 Toilets +Newly Built 2 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +6074sqm Water Front Sand Filled Drylland,"Lekki Epe Expressway, Victoria Island, By Oriental Hotel, Lagos Victoria Island Extension Victoria Island Lagos",₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Adeola Odeku Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious Luxury 3 Bedroom Apartment With Service Quarter,Adjoining Eko Atlantic City On Water Corporation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"95,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Fully Detached,Oniru Victoria Island Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Masonite Penthouse,Victoria Island Oniru Victoria Island Lagos,₦,"265,000,000",1,1,0,5 beds,5 baths,6 Toilets +Functional 27 Rooms Hotel With Swimming Pool,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",1,0,0,10 beds,10 baths,10 Toilets +Luxury Waterview Fully Furnished 2 Bedroom Apartment In Blue Water Apartments Lagos,Blue Water Apartments Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,2 beds,2 baths,3 Toilets +Water Front Land With C Of O,Experience Pure Tranquility And Absolute Peace Of Mind With True Nature Oniru Victoria Island Lagos,₦,"3,000,000,000",1,0,0, beds, baths, Toilets +"Serviced 3 Bedroom Apartment With Swimming Pool, Gym",Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautiful 5 Bedroom Detached Duplex With Swimming Pool And Bq,Oniru Victoria Island Lagos,₦,"270,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Luxury Serviced 5 Bedroom Semi Detached Duplex With Swimming Pool, Cinema, Gym And Bq",Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +Serviced 4 Bedroom Terrace Duplex With Swimming Pool And Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Hotel Space,Victoria Island Lagos,₦,"1,300,000,000",1,0,1,10 beds,10 baths,10 Toilets +Land,"Loius Solomon Close, Victoria Island Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Serviced Apartment,Victoria Island Lagos,₦,"120,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 3bedroom Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"230,000,000",0,0,0,3 beds,3 baths,4 Toilets +Open Plan Office Space For Sale,"Along Walter Carrington, Ozumba Mbadiwe Victoria Island Extension Victoria Island Lagos",$,"30,000,000",0,0,0, beds, baths, Toilets +Mixed Used Development On 7 Floors,Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Room Hotel For Sale In Victoria Island,Victoria Island Lagos,₦,"4,500,000,000",1,0,1,10 beds,10 baths,10 Toilets +2 Bedroom Luxury Apartments,Prince Adesegun Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartments Plus 1room Bq For Sale,Mabogunje Road Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +800 Sqm Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +10 Units Of 3 Bedrooms Flat,Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Well Finished 7th Floor Open Plan Space 240 Sqm,By Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"220,000,000",0,0,1, beds, baths, Toilets +Smart 6 Bedroom Detached House,Vi Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4100 Joint Venture Landbridge Avenue Oniru Victoria Island*,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Furnished Apartment,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"750,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terraced Duplex With 1room,Off Palace Way Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 6 Bedroom Detached Duplex With 2 Rooms Bq Sitting On 750sqm,Off Bishop Oluwole Street Victoria Island Lagos,₦,"360,000,000",0,0,0,6 beds, baths, Toilets +Luxury 3 Bedroom Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"85,000,000",1,1,0,3 beds,2 baths,3 Toilets +Contemporary 4 Bedroom Detached Duplex,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"190,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Flat With 247 Electricity,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Office Tower,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"60,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxurious Newly Built 3 Bedroom Flat,Eko Atlantic City Victoria Island Lagos Eko Atlantic Victoria Island Lagos,₦,"432,000,000",1,1,0,3 beds,4 baths,4 Toilets +Land,Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Terrace + 1 Room Bq,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Maisonette,Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,3 Toilets +Standard 5 Star Hotel,Kofo Abayomi Victoria Island Lagos,$,"160,000,000",0,0,0, beds, baths, Toilets +Ready To Build Corner Piece Of 1400sqm Of Land With Governor Consent,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartments,Prince Adesegun Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,0 baths,0 Toilets +An Office Building In The Heart Of Victoria Isl,Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Land,Off Water Corporation Road Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"290,000,000/day",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Maisonette + Bq,Off Idejo Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,"Louis Solomon, Victoria Island Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq Jnf,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,6 Toilets +Two Storey Building,Murin Okunola Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,2 beds,2 baths,2 Toilets +"Land Measuring 11639sqm Located At Eko Atlantic, V.i",Eko Atlantic Victoria Island Lagos,₦,"11,639,000,000",0,0,0, beds, baths, Toilets +Two Storey Commercial Building,Off Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 3 Bedroom Terrace Duplex, Communal Swimming Pool And A Room Bq",Vi Victoria Island Lagos,₦,"220,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex With Swimming Pool,"Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"270,000,000",0,1,1,5 beds,5 baths,6 Toilets +Serviced 3 Bedroom Apartment With 1 Room Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Well Developed & Newly Built 4bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2200sq Bareland Fenced With Gate,Bishop Kale Close Off Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House With A Room Bq,"Off Adeola Odeku Street, Victoria Island, Lagos Adeola Odeku Victoria Island Lagos",₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool Okny,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,7 Toilets +"1,287sqm Land (joint Ventures)","Muri Okunola Street, Former Cool Fm Building Victoria Island Lagos",₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commerical Property On A 599sqm Of Land,Ajose Adeogun Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3bedroom Luxury Flat,Victoria Island Lagos,₦,"10,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Luxury Terrace,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Apartment With Swimming Pool,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Well Titled 800sqm Of Land In A Fantastic Location,"Off Palace Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedrooms Semi Detached,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,0 baths,0 Toilets +A Modern Purpose Built 7 Floors Hospital,Oniru Oniru Victoria Island Lagos,₦,"10,000,000,000",1,1,1, beds, baths, Toilets +"Tastefully Finished, Serviced 3 Bedroom Flat",Off Ajose Adeogun Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Furnished 3 Bedroom High Rise Apartment,"Eko Pearl, Eko Atlantic Victoria Island Lagos",$,"960,000",0,0,0,3 beds, baths, Toilets +2 Bedroom Flat,1004 Victoria Island Lagos,₦,"57,000,000",0,0,1,2 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Maisionette,Oniru Victoria Island Lagos,₦,"240,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex With Communal Swimming Pool And A Room Bq,Vi Victoria Island Lagos,₦,"210,000,000",0,1,0,4 beds,4 baths,5 Toilets +"11,500 Sq Mtrs Land With Approved Building Plan",Oniru Estate Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Corner Piece Land With Structures On It Measuring 1.230sqms,Bishop Bayodecole/festival Street Off Ademola Adetokunbo Victoria Island Lagos Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3700 Sqm Land For Joint Venture,Adeola Odeku Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Serviced Flat With A Room Bq,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +1 Bedroom Flat,"Off Palace Road, Oniru Oniru Victoria Island Lagos",₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +Hospital Building With 7 Floors Available, Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Maintained 4bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"70,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Luxury Apartment,Bonny Camp Victoria Island Lagos,₦,"180,000,000",1,0,0,2 beds,2 baths,3 Toilets +2000 6000sqm Land,Eko Atlantic Estate Eko Atlantic Victoria Island Lagos,$,"2,500",0,0,0, beds, baths, Toilets +Complex Of 4500sqm Lettable Spaces,Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets +Property Of 1260.42sqm,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Bungalow,Off Kofi Abayomi Kofo Abayomi Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Office Tower,Eko Atlantic City Victoria Island Lagos,$,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4600sqm* *fenced And Gated With *approval* *for* *commercial* *purposes*,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land,Victoria Island Lagos,₦,"180,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"310,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Bishop Oluwole Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detach House +1room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,0 Toilets +Executive 30 Rooms Hotel,Opposite Eko Hotel Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",1,0,1,0 beds,10 baths,10 Toilets +Fantastic 3 Bedroom Flat,1004 Victoria Island Lagos,₦,"65,000,000",0,0,1,3 beds,0 baths,0 Toilets +2700sq Demolishable Structure,Idowu Martins Opp. Mega Plaza Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +Land,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,150",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Luxury 3 Bedroom Flats With Bq,swimming Pool And Elevator",Oniru Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Land Measuring 6,700m² Land",Oniru Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Tamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedrooms Terrace + 1 Room Bq,Off Oba's Palace Road Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,0,0,4 beds,0 baths,0 Toilets +2000sqm Dry Land With 2 Buildings,Near Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern 7 Floor Hospital Building,Oniru Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel In A Serene Neighborhood,Ajose Adeokun Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1350m² Residential Land Plus 2 Units Of Re Developable Detached Houses,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,"Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Serviced Terrace Duplex With A Room Bq,Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex Available,Festival Road Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Ultra Modern Serviced Apartment,Victoria Island Lagos,₦,"350,000,000",1,0,0,3 beds,3 baths,4 Toilets +Furnished 2 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"170,000,000",1,0,1,2 beds,2 baths,2 Toilets +Office Space,Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"190,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Massionette With Bq,Eighteen65 Residences Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Well Crafted 1,2,3 Bedroom Apartment",Few Minutes From Oriental Hotels Akin Adesola Victoria Island Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,2 Toilets +Executive 27 Rooms Hotel (3 Star),"Off Ajose Adeogun Str, Victoria Island, Lagos State. Ligali Ayorinde Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,10 baths,10 Toilets +Spacious 4 Bedroom,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Stylish 3 Bedrooms Apartment,Victoria Island (v.i) Eko Atlantic Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedrooms Terrace + Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,5 beds, baths, Toilets +1 Bedroom Flat (mini Flat),Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets +Brand New 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"240,000,000",0,1,0,4 beds,5 baths,5 Toilets +13 Unit Of 2 Bedroom Flat,Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Chalet,Tiamiyu Savage Victoria Island Lagos,$,"460,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Duplex + Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury Built State Of Art 5bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"260,000,000",0,1,1,5 beds,5 baths,6 Toilets +Well Maintained 4 Bedroom Penthouse,"Oniru Estate,close To The Palace Road With Swimming Pool Oniru Victoria Island Lagos",₦,"145,000,000",0,0,0,4 beds,4 baths,4 Toilets +1100sqm Land,Victoria Island Lagos,₦,"455,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets +6538.581sqm Bare Land,Along Ligali Ayorinde Street Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Perfect Investment Property For Shortlets And Rentals,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Blocks Of Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 6 Until Of 3 Bedroom Flat,Oniru Estates Oniru Victoria Island Lagos,₦,"990,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,"Louis Solomon Close, By Silverbird Cinemas, Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Close To The Palms Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Fantastic Neighbourhood Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Furnished 4 Bedroom Maisonette + Bq,"Off Idejo Street, Adeola Odeku Victoria Island Lagos",₦,"250,000,000",1,0,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Maisonnette With Bq,"Eighteen 65 Residences, Fatai Durosinmi Street Vi Victoria Island Extension Victoria Island Lagos",₦,"180,000,000",1,0,0,3 beds,0 baths,0 Toilets +Fully Serviced 2 Bedroom Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",1,0,0,2 beds,2 baths,3 Toilets +5bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets +12 Units Of 3 Bedroom Flats With Bq (price Per Unit),"Eighteen65 Residences, Victoria Island Lagos",₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets +New 3 Bedroom Apartment With Great Facilities (14 Units),Off Adeola Odeku Way Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +2500sqm Virgin Land With Great Infrastructure,Eko Atlantic Victoria Island Lagos,₦,"2,850,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace With Swimming Pool And Gym,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets +Spacious 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,1004 Victoria Island Lagos,₦,"90,000,000",1,0,0,4 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Duplex On Two Floors,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +Off Plan 3 Bedroom Apartments With Great Facilities (84 Units),Ahmadu Bello Way Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Purpose Built Office Block On 2 Floors,Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +3bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Relatively New & Tastefully Finished Luxury, Furnished & Serviced 2bedroom Flat For Sale!!!",Eko Atlantic Victoria Island Lagos,₦,"293,379,100",1,0,1,2 beds,2 baths,2 Toilets +Beautiful Serviced 5 Bedroom Semi Detached Duplex, Oniru Victoria Island Lagos,₦,"250,000,000",1,0,1,5 beds,5 baths,6 Toilets +Building Comprising Of Different (block Of Flats) For Sale!!!,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Palatial 3bedroom Ensuite Flats,Eko Atlantic Victoria Island Lagos,₦,"370,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Finished And Extremely Luxury 3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,4 Toilets +A Massive Dry Land Measuring 2400sqm Landsize With A Solid Building For Sale!!!,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Three Bedroom Apartment,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Apartment With Great Facilities (16 Units),Off Ahmadu Bello Way Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Furnished 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment At Eden Heights,Elsie Femi Pearse Street Victoria Island Lagos,₦,"350,000,000",1,0,0,4 beds, baths, Toilets +Beach Front Land,Panche Villa Estate Victoria Island Extension Victoria Island Lagos,₦,"20,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"285,000,000",0,1,1,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +Bare Land Measuring Approximately 2100sqm,Harbour Light District Eko Atlantic Victoria Island Lagos,$,"1,500/sqm",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Massively Built& Tastefully Finished Luxury 27rooms Hotel On 1174.045sqm Landsize For Sale!!!!!,Victoria Island Lagos,₦,"1,300,000,000",1,0,1, beds, baths, Toilets +Spacious 4 Bedroom Ensuite Flat,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +"*eighteen65 Residences, Victoria Island*","*eighteen65 Residences, Victoria Island* Victoria Island Lagos",₦,"140,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"145,000,000",1,1,0,3 beds,3 baths,4 Toilets +Furnished 3 Bedroom Apartment At Eko Pearl Towers,Eko Pearl Tower Eko Atlantic Victoria Island Lagos,$,"1,650,000",0,0,1,3 beds, baths, Toilets +Brand New 5 Bedroom Detached Duplex With Bq,Victoria Island Oniru Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +3bedroom Maisonette With Bq,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedroom Ensuite Terrace Houses,Victoria Island Lagos,₦,"240,000,000",0,0,0,5 beds, baths, Toilets +4bedroom Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Amazing Newly Built 4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"450,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury4bedroom Penthhouse In Oniru Victoria Island.,Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,1,1,4 beds,4 baths,5 Toilets +Leasehold Interest For Space And Hotel In A Prestigious Building For Sale.,Elsie Femi Pearse Adeola Odeku Victoria Island Lagos,$,"17,000,000",1,0,1, beds, baths, Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment With Bq,Eko Atlantic City Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,"Fully Serviced Apartment In Serene And Secured Environment, Neighborhood To Oniru Beach, Oriental Hotel,eko Atlantic City Oniru Victoria Island Lagos",₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,Near Mega Plaza Idowu Taylor Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Notch Luxury 3 Bedroom Block Of Flats With Bq,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"950,000",0,1,0,3 beds,3 baths,4 Toilets +Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",1,0,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Fully Detached Duplex With Swimming Pool,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Maisonette,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced & Fully Furnished 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Maisonette,Victoria Island Lagos,₦,"225,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Well Built Block Of 6 Units Of 3 Bedroom Apartments, A Room Bq Each On A Land Measuring 1500sqm",Off Ademola Adetokunbo Victoria Island Lagos,₦,"820,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Super Luxury Fully Serviced Home, Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Luxury Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +1000 Sq.metres Of Land, Eko Atlantic Victoria Island Lagos,₦,"460,000,000",1,0,0,0 beds,0 baths,0 Toilets +Beautiful Contemporary 4 Bedroom Masionette, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Direct Cash Ready Buyers New 3 Bedroom Apartment,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Old Fully Detached Duplex Sitting On 820sqm Of Land,"Idejo Street, Victoria Island Lagos",₦,"820,000,000",0,0,0,4 beds,4 baths, Toilets +"Luxury 3 Bedroom Apartments, Fully Furnished",Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"110,000,000",0,0,1,3 beds,3 baths,4 Toilets +Direct Cash Ready Clients New 4 Bedroom Semi Detached Terrace House + Bq,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Superb Luxury Terrace,Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,5 beds,7 baths,7 Toilets +Massive Four (4) Bedroom Pent Floor Apartment,"Oniru Estate, Oniru Victoria Island Lagos",₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +Massively Built Brand New 4 Bedroom Massionette With Swimming Pool,Oniru Estate Oniru Victoria Island Lagos,₦,"205,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3bedrooms Apartment + 1 Room Bq,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Duplex Town House,Oniru Victoria Island Lagos,₦,"144,000,000",1,1,0,4 beds,4 baths,4 Toilets +Top Notched Finishing Super Luxury 4 Bedroom Fully Detached Duplex With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of 3 Bed Apartments & 2 Units Of 4 Bed Maisonette,Oniru Oniru Victoria Island Lagos,₦,"1,000,000,000",1,0,0,10 beds,10 baths,10 Toilets +"Land Measuring 1,400m²","Ologun Agbaje Street, Victoria Island Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +"Land With Units Of Detached Duplexes Measuring Approximately 2,400sqm With Approval For 15 Floors Office Building","Tiamiyu Savage Street, In Close Proximity To Eko Atlantic City, Victoria Island Lagos",₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 3 Bedroom Flat,Victoria Island Lagos,₦,"120,000,000",0,0,1,3 beds,3 baths,4 Toilets +Very Spacious Fully Serviced Apartments,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,4 baths,4 Toilets +2 Units Of Office Block,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"8,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Units Of 3 Bedroom Flats,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,3 Toilets +Newly Built 3 Bedroom Flats,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,3 Toilets +Luxury Serviced 4bedrooms Detached House + 1 Room Bq,Oba’s Palace Road Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land Measuring 1,676.96m²","Off Adeola Odeku Street, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Detached House,Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +"Exquisitely Finished, Fully Serviced 4 Bedroom Terrace Duplex On 3 Floors With Roof Top Patio",Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Land With Dilapidated Structures Measuring 1,250m²","Ahmed Onibudo Street, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 & 4 Bedrooms Apartment (off Plan),Ahmadu Bello Way Victoria Island Lagos,$,"950,000",1,1,0,3 beds,3 baths,4 Toilets +Practical & Cheap Self Serviced 4 Bedroom Terrace House + Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Top Notch Super Luxury 3 Bedroom Apartment With Swimming Pool,V.i Adeola Hopewell Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Italian Style Premium Finished 4 Bedroom Maisonette (all En Suite)+1 Room Bq,Oniru Victoria Island Lagos,₦,"240,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Terrace + Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished 5bedroom Semi Detached Duplex All Rooms En Suite With Bq With Swimming Pool And Gym,Within A Mini Estate Oniru Victoria Island Lagos,₦,"250,000,000",0,0,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace With A Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4bedrooms Terrace + 1 Room Bq,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +Ultra Luxury 2 Bedroom Apartment +bq+elevator+pool+gym,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"750,000",1,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Water View Terrace,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,7 Toilets +Serviced 1 Bedroom Apartment With Excellent Facilities,Oniru Victoria Island Lagos,₦,"50,000,000",1,0,0,1 beds,1 baths,2 Toilets +Land,Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"380,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Victoria Island, Lagos, Nigeria. Victoria Island Extension Victoria Island Lagos",₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Absolutely Stunning Terrace Duplex In Oniru,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Top Notched Super Luxury 3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Service Apartment With A Room Bq;,Victoria Island Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive Brand New Executive Super 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Vi Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +4bedrooms Terrace Duplex + Bq For Sale,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Pent Housewith Excellent Facilities,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,4 Toilets +Extraordinary Spacious Brand New 3 Bedroom Block Of Flats,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 5bedrooms Terrace + 1 Room Bq,Z Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 2bedrooms & 3bedrooms Apartment (off Plan),Off Ajose Adeogun Behind Zenith Bank Hq Ademola Adetokunbo Victoria Island Lagos,₦,"100,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Apartment, Eko Atlantic Victoria Island Lagos,$,"710,000",1,1,0,2 beds,2 baths,3 Toilets +Luxury And Fully Serviced 3 Bedroom Flat,Oniru Victoria Island Shoprite Oriental Hotel Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Tastefully Finished, Serviced 3 Bedroom Flat + 1 Room Bq",Ligali Ayorinde Victoria Island Lagos,₦,"170,000,000",0,0,0,3 beds,3 baths,4 Toilets +Top Quality 4 Bedroom Luxury Semi Detached Duplex,Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Luxury 2 Bedroom Blocks Of Flat,Victoria Island Akin Adesola Victoria Island Lagos,₦,"155,000,000",1,1,0,2 beds,2 baths,3 Toilets +Self Serviced 3 Bedroom Apartment In A Gated Estate,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Beautiful Luxury Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Massively Built Brand New 4 Bedroom Maissionette House With Swimming Pool For Sale,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Elegant Super Luxury Fully Serviced 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"157,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Units Of Serviced 4 Bedroom Terraced House,Oniru Victoria Island Lagos,₦,"900,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Functional Hotel With 31rooms, Restaurant, Swimming Pool And Gyms On A Land Measuring 4000sqm",Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds, baths, Toilets +Spacious Well Built Terrace Duplex In An Estate,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Luxury 3 Bedroom Maisonette,Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",1,0,0,3 beds,3 baths,3 Toilets +Plot Measuring 600sqm,"Aboyade Cole Street, Victoria Island Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Fitted Kitchen,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +Beautiful 3 Bedroom Apartment With Swimming Pool,In A Serene Neighborhood Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Off Palace Way Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,3 baths,4 Toilets +Spacious Luxury 4 Bedroom Terrace House With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartment With A Room Bq;,Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 2bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",1,1,0,2 beds,2 baths,3 Toilets +Exquisitely Finished & Fully Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Terraced House,Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Property,Bishop Oluwole Street Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +New 3 Bedroom Apartment,Off Ajose Adeogun Street Ademola Adetokunbo Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Kofo Abayomi Victoria Island Lagos,₦,"700,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +27 Rooms Functional Hotel,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 3 Bedroom Penthouse With Excellent Marine View,"Black Pearl Tower, Eko Atlantic Victoria Island Lagos",₦,"900,000,000",1,0,0,3 beds,4 baths,5 Toilets +3bedroom Flat With Bq,V.i Victoria Island Extension Victoria Island Lagos,₦,"155,000,000",1,0,0,3 beds,3 baths,4 Toilets +New Serviced 2 Bedroom Apartment,Gated Estate Oniru Victoria Island Lagos,₦,"62,000,000",1,0,0,2 beds,2 baths,3 Toilets +Service 2 Bedroom Flat,Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,. Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Detached House,Dideolu Estate Oniru Victoria Island Lagos,₦,"180,000,000",1,0,1,4 beds,4 baths,5 Toilets +"Studio, 1, 2 & 3 Bedroom Flat",. Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000/year",0,0,0,3 beds,4 baths,4 Toilets +Fully Serviced 3 Bedroom Apartment With Good Roi,S Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Prime Land,Eko Atlantic Victoria Island Lagos,$,"3,615,150",0,0,0,0 beds,0 baths,0 Toilets +Luxury Executive 4bedroom Terrace Duplex In A Good Location,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,0,1,4 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 3 Bedroom Ensuite Flat + 1 Room Bq,"Victoria Island, Lagos. Victoria Island Lagos",₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"70,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5br Duplex,Near 4 Points Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +An Exquisitely Finished Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Serviced Duplex,Houston Road. Oniru Victoria Island Lagos,₦,"175,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +Spacious 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached,. Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",1,1,1,5 beds,5 baths,6 Toilets +"1, 3 & 4 Bedroom Luxury Apartments",. Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Akin Olugbade Street, Off Adeola Odeku Akin Olugbade Victoria Island Lagos",₦,"1,433,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment,Victoria Island Lagos,$,"1,000,000",1,0,0,3 beds,4 baths,3 Toilets +New 5 Bedroom Fully Detached House + Bq,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Terraces,Palace Road Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets +3 Bedroom Apartment With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedrooms Fully Detached Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,7 Toilets +2 Bedroom Flat, Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds,2 baths,2 Toilets +Commercial Detached Office Space,Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Built Brand New 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Maisonette,Younis Bashorun Victoria Island Extension Victoria Island Lagos,₦,"190,000,000",1,1,0,3 beds,3 baths,4 Toilets +Finished 3 Bedrooms Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets +27 Rooms Functional Hotel,Off Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",1,0,1,10 beds, baths, Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"235,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Penthouse,Palace Road Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,6 baths,6 Toilets +Typical 2 Bedroom With Quarters At The Tower.,Victoria Island Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets +New 4bedroom Terrace Duplex,Near 4 Points Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Ozumba Bonny Camp Victoria Island Lagos,₦,"135,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom With 2 Bq,Ogunyemi Oniru Victoria Island Lagos,₦,"120,000,000",1,0,0,4 beds,4 baths,5 Toilets +3bedroom Maisonette,Cluster C6 1004 Victoria Island 1004 Victoria Island Lagos,₦,"67,000,000",0,0,0,3 beds,3 baths,3 Toilets +Finished 3 Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse, Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,3 Toilets +Modern Day 3 Bedroom Apartment, Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 2bedroom And 3bedroom Flat,Victoria Island Lagos,₦,"145,000,000",1,1,1,2 beds,2 baths,3 Toilets +A Luxury 5 Bedroom Fully Detached Duplex With Bq,Nice Environment Oniru Victoria Island Lagos,₦,"290,000,000",0,1,0,5 beds,5 baths,6 Toilets +Typical 2 Bedroom With Quarters At The Tower,Victoria Island Victoria Island Lagos,₦,"110,000,000",1,0,0,2 beds,2 baths,3 Toilets +22 Units Of 3bedroom Flats With Bq,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",1,1,0,10 beds,10 baths,10 Toilets +Apartment,Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"480,000,000",1,1,1,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat,Eden Heights Adeola Odeku Victoria Island Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedrooms Semi Detached Duplex +bq,"Abisogun Street, Off Palace Road Victoria Island Lagos",₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Tm High Gardens: 2, 3 & 4 Bedroom Apartment At Eko Atlantic City",. Eko Atlantic Victoria Island Lagos,₦,"330,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Bedroom Fully Detached House + Penthouse & 3 Rooms Bq,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000",0,0,0,10 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex With Bq,"Waziri, Ibrahim Crescent Victoria Island Lagos",₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +"1,342m2 With A Detached House","On Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets +Luxury 3bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,200,000",1,1,1,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Tiamiyu Savage Tiamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,5 Toilets +2 & 3 Bedroom Luxury Flat,. Eko Atlantic Victoria Island Lagos,₦,"360,000,000",0,0,0,3 beds,4 baths,4 Toilets +A Land Measuring 1670sqm,Louis Solomon Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Pent House, Victoria Island Lagos,₦,"145,000,000",0,0,0,2 beds,2 baths,2 Toilets +Massive Office Complex With 5 Open Floor Plans,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Strategic 3,000sqm Land At Akin Olugbade Street, Off Adeola Odeku Street* *victoria Island, Lagos*",Akin Olugbade.... Adeola Odeku Victoria Island Lagos,₦,"600,000",0,0,0, beds, baths, Toilets +Land,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"1,500,000/sqm",0,0,0, beds, baths, Toilets +Serviced 4 Bedrooms Terrace Duplex With Pool In Oniru Estate Victoria Island Lagos,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Duplex With Pool,Oniru Estate Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +12 Bedroom Detached House,Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment + Bq,.glotch Tower Adeola Hopewell Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,"Oyin Jolayemi Street, Off Eko Hotels And Suites, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"250,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Semi Detached,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +4441sqm Plot Of Land,Oniru Victoria Island Lagos,₦,"1,250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Flat,Victoria Island Lagos,$,"650,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Build Shop Measuring 25sqm,Oniru Market Road Oniru Victoria Island Lagos,₦,"18,000,000",0,0,0, beds, baths, Toilets +10 Rooms Commercial House,Victoria Island Lagos,₦,"650,000,000",0,0,0,10 beds, baths, Toilets +27 Rooms Hotel Building,Off Ligali Ayorinde St Victoria Island Lagos Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000/day",1,1,1,10 beds,10 baths,10 Toilets +4 Bedroom Town House,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Finished 4 Bedroom Semi Detached House With A Room Bq,"Ocean View Estate, Oniru Oniru Victoria Island Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +2bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,2 beds,2 baths,3 Toilets +"3,000 Sqm Of Bareland At Eko Atlantic Estate","Residential District, Eko Atlantic Eko Atlantic Victoria Island Lagos",₦,"2,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4bedroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,4 Toilets +Commercial Twin Duplex (10 Rooms),Victoria Island Lagos,₦,"500,000,000",0,0,0,10 beds, baths, Toilets +Lovely 3 Bedroom Flat With Maid's Quarters,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Units Of Of 5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"144,000,000",0,0,0,5 beds,4 baths,4 Toilets +30 Rooms Hotel Building,Adetokunbo Ademola Opposite Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000/day",1,1,1,10 beds,10 baths,10 Toilets +Luxury Functional 27 Rooms Hotel,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",1,0,1,1 beds,1 baths,1 Toilets +Land,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,1,0,0 beds,0 baths,0 Toilets +"1,277sqm Land With Demolishable Structure",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Serviced 4 Bedroom Maisonette,Oniru Oniru Victoria Island Lagos,₦,"240,000,000",0,0,0,4 beds,5 baths,5 Toilets +"1,672sqm Fenced & Gated Vacant Land",Solomon Louis Close Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette,Victoria Island Lagos,₦,"190,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette,Victoria Island Lagos,₦,"190,000,000",0,1,0,3 beds,3 baths,4 Toilets +30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Apartment,Victoria Island Lagos,$,"1,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets +"Newly Built, Units Of 4 Bedroom En Suite Detached Houses On 2 Floors Within A Serviced Premise",Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Newly Built, 3 Bedroom Luxury Terrace Houses With 1bq",Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Shop Space,Oniru Oniru Victoria Island Lagos,₦,"20,000,000",1,0,0,0 beds,0 baths,0 Toilets +Water Front Fenced Land With Building Approval For 10 Floors For Outright Sale.: [redacted],Victoria Island Oniru Victoria Island Lagos,₦,"13,000,000,000/day",1,0,0, beds, baths, Toilets +Luxury 6 Bedroom Detached Duplex With Swimming Pool ( Smart House),Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,1,0,6 beds,6 baths,7 Toilets +6units 3bedroom Flat And 2units Of 4bedroom Maisonette For Sale,Victoria Island Extension Victoria Island Lagos,₦,"950,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Wings Of 5bedroom Duplex And Bq Sitting On 1227.676sqm For Sale In Vi,Victoria Island Lagos,₦,"750,000,000",0,0,0,5 beds,5 baths,6 Toilets +Functional 27 Hotel Rooms*,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Refurbished Luxury 3 Bedroom Serviced Upper Floor Maisonnette With Air Conditioning , Fully Fitted Kitchen",1004 Estate Victoria Island. 1004 Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment *,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functioning Hotel For Sale,Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +2 Bedroom Penthouse With Bq For Sale At Eighteen65 Estate Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,2 beds,3 baths,3 Toilets +3 Bedroom Maisonette With A Bq For Sale At Eighteen65 Estate Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat With A Bq For Sale At Eighteen65 Vi,Eighteen65 With A C Of O Is Located At Fatai Durosimi Etti Street Victoria Island Accessible Through Ajose Adeogun Street Lagos Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,4 baths,4 Toilets +Land,Ajose Adeogun Street Victoria Island Lagos,₦,"28,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Serviced Apartment,"Architech Place, Idowu Taylor Street, Idowu Taylor Victoria Island Lagos",₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +7358.102sqm Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Palace Road Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Built 3bedroom Maisonette,Cluster C6 1004 Victoria Island Lagos,₦,"67,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Built Blocks Of 3 Bedrooms Flats,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,0 baths,0 Toilets +22 Units Of 3 Bedroom Flats With Bq,Victoria Island Lagos,₦,"3,500,000,000",1,1,0,3 beds,4 baths,0 Toilets +Newly Built 24 Units Of 3 Bedroom Flat,Victoria Island Lagos,₦,"125,000,000",1,1,0,3 beds,4 baths,0 Toilets +New Building With Block Of Flats,Victoria Island Lagos,₦,"100,000,000",1,1,0,2 beds,3 baths,0 Toilets +2 Storey Commercial Building Of Open Plan Detached Office Spaces,Victoria Island Lagos State. Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Storey Building,Idumota Lagos Island Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Building Is 8 Floors + Penthouse,Adeola Odeku Victoria Island Lagos,₦,"7,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +Modern Purpose Built 7 Floors Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Luxury Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,1,0,6 beds,6 baths,7 Toilets +Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +1 Bedroom Mini Flat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +An Exquisite 3 Bedroom Apartment On The Pent House,"Eko Pearl Tower, Eko Atlantic Victoria Island Lagos",₦,"900,000,000",0,0,0,3 beds,3 baths,0 Toilets +Brand New Luxury 3 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate Victoria Island. 1004 Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets +5 Bedroom Detached House With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Land Measuring 1,315sqm",Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Spacious Detached House With 2 Bq,Oniru Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Finished 2 Bedroom Flat,Ajose Adeogun Victoria Island Lagos,₦,"125,000,000",1,1,0,2 beds,2 baths,3 Toilets +"Executive 5bedroom Semi Detached Duplex With A Room Bq, At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"250,000,000/day",1,1,1,5 beds,6 baths,6 Toilets +Fully Detached Property On 1300sqm Of Land In A Good Location,Off Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds, baths, Toilets +Newly Built Luxury 2 Bedroom Fully Serviced Apartment + Bq,Muri Okunola Ademola Adetokunbo Victoria Island Lagos,₦,"85,000,000",1,1,0,2 beds,3 baths,3 Toilets +2116 Square Meters Land, Ahmadu Bello Way Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Of Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hot 7358 Sqm Commercial Land In Oniru,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +"Executive And Luxurious 3 Bedroom Apartment With Bq,",Ligali Ayorinde Victoria Island Lagos,₦,"98,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 3 Bedroom Fully Serviced Terrace Duplexes With Room Bq,"Waziri Ibrahim Crescent, Victoria Island Extension Victoria Island Lagos",₦,"200,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 3bedroom Apartment,Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Luxury 4 Bedroom Fully Furnished & Serviced Pent Floor Apartment,"Off Palace Road, Oniru Lagos State. Oniru Victoria Island Lagos",₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets +Landmark Waterview Apartments,Water Corporation Way Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,$,"99,000",0,0,0,3 beds,3 baths,4 Toilets +2 Numbers Of Detached Houses,Victoria Island Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300 Sqms Land For Sale At Victoria Highland,Oyin Jolayemi Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Duplex With A Room Bq, Oniru Victoria Island Lagos,₦,"150,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +4 Bedroom Semi Detached House +1 Room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",1,1,1,4 beds,0 baths,0 Toilets +Hottest Offer Oniru Water Front Plots; Sand Filled & Fenced. Building Approval For 10 Floors,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Refurbished Luxury 4 Bedroom Fully Finished Terrace Duplex With 2 Bedroom Flat As Bq,Ayo Adebanjo Estate Behind Prince Ebeano Shopping Mall Oniru Victoria Island Lagos,₦,"160,000,000",1,1,0,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Massive Commercial Bare Land Property Of Size 3100.76sqm,Chief Yesufu Abiodun Road Directly Facing 4point Hotel By Sheraton Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +15 Floors,Ademola Adetokunbo Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Serviced 2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,0 baths,0 Toilets +Measuring 1300sqmts Land,Oniru Victoria Island Lagos,₦,"430,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Bare Land Measuring 1,700sqm",Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 2 Bedroom Fully Finished Apartment,"Oniru Estate, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"70,000,000/year",1,1,0,2 beds,3 baths,3 Toilets +Well Situated 1400sqm Of Land,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite And Luxurious 3 Bedroom Apartment With Maid's Room,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Fully Detached Duplex With Bq Seating On 1000sqmtrs,"Ologun Agbaje Street, Off Adeola Odekun, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"400,000,000",0,0,0, beds, baths, Toilets +Well Finished Semi Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,0 Toilets +Newly Built Luxury 4 Bedroom Serviced Apartment,"Seagle Towers, Odudu Eleyiwo Street Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos",₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets +A Newly Built 4 Bedroom Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Maintained Commercial Property,Off Adetokunbo Ademola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Well Built 3 Bedroom Flat With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Along Water Cooperation Drive Oniru Victoria Island Lagos,₦,"260,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functioning Hotel,Off Ajose Adeogun Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Solid Building Of Duplexes,Mike Adenuga Close Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment Fully,Ikoyi Victoria Island Lagos,₦,"175,000,000",0,0,0,2 beds,2 baths,3 Toilets +New House,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,5 baths,0 Toilets +4 Units Of Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,0 baths,0 Toilets +2000 Sqm Beside Access Bank Oniru 550m,Beside Access Bank Oniru 550m Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4bedroom Semi Detached Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Idowu Martins Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Karimu Kotun Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With 2 Sitting Rooms,Oniru Estate Oniru Victoria Island Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Executive 4 Bedroom Tetrace Duplex With A Bq Located Inside Dideolu Estate Oniru.,Dideolu Estate Oniru Victoria Island Lagos,₦,"7,000,000",0,1,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 5bedroom Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"380,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eko Atlantic Victoria Island Lagos,$,"3,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Luxury 2 Bedroom Fully Serviced Upper Floor Apartment,"Eko Pearl Towers, Victoria Island Extension Victoria Island Lagos",$,"750,000,000",1,1,0,2 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Furnished And Serviced 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,2 beds,0 baths,0 Toilets +Furnished 3 Bedroom Serviced Apartment,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,1,3 beds,3 baths,4 Toilets +New House,Victoria Island Lagos,₦,"550,000,000",0,1,0,6 beds, baths, Toilets +Newly Refurbished Luxury 3 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate 1004 Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,5 baths,5 Toilets +3bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,4 baths,0 Toilets +"Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment With Air Conditioning , Fully Fitted Kitchen",Oniru Estate Victoria Island Lagos State. Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built 5 Bedrooms Fully Detached Duplex With Boys Quarter,Oniru Victoria Island Lagos,₦,"185,000,000",0,1,0,5 beds,0 baths,0 Toilets +Residential Plot In The Heart Of Oniru Measuring 800sqm,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace,Oniru Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastestully Finished 4 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +800sqm Land For,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Built 3 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +Super Beautiful 5 Bedroom High Toned Luxury Terrace Duplex With Swimming Pool,Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Victoria Island Quick Sales Large Commercial Barelands,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets +4bedroom Residence At Oniru Victoria Island,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3 Bedroom Passionate Flat With Bq,Teslim Elias Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",1,1,0,3 beds,4 baths,4 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +*executive 30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,1,0,10 beds,10 baths,10 Toilets +4 Bedroom Detached House,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +Bedrooms Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +5bedrooms Semi Detached Duplex For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 6 Bedroom Fully Detached Duplex,Victoria Island Victoria Island Lagos,₦,"580,000,000",1,1,0,6 beds,6 baths,6 Toilets +Land,Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Oniru Estate 1500sqm Prime Land,Oniru Estate Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0, beds, baths, Toilets +"5233/,sqmts Land",Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Cozy 3 Bedroom Apartment In Victoria Island,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets +"Serviced, Well Priced And Neatly Finished 3 Bedroom Flat",Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,3 baths,4 Toilets +"A Luxurious 4bedroom Terrace With Bq. Located In A Secured Estate, And A Mini Fully Service Court. Around Ebano Supermarket Mall Axis. Price ; 85m",Close To Ébano Supermarket Onirun Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Along Shoprite Road Oniru Victoria Island Lagos,₦,"620,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Office Space From 28sqm To 200sqm,Onriu Oniru Victoria Island Lagos,₦,"28,000,000",1,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Flat House Oniru,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,1,1,3 beds,3 baths,4 Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Building,Muri Okunola Street Victoria Island Victoria Island Lagos,₦,"581,000,000,000",0,0,0, beds, baths,4 Toilets +House,Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0,6 beds, baths, Toilets +5 Bedroom Fully Detached Duplex + Bq,Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",1,1,0,5 beds,6 baths,6 Toilets +Super Luxury 3 Bedroom Flat,Ajose Ajeogun Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Penthouse With Bq,Oniru Victoria Island Lagos,₦,"155,000,000",1,0,1,4 beds,0 baths,0 Toilets +A Well Maintained 3 Bedroom Flat,Off New Market Road Oniru Victoria Island Lagos,₦,"50,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Well Maintained Commercial Property On 2 Floors,Victoria Island Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets +4bedroom Semidetached At Ahmadu Bello Way Victoria Island Lagos,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished And Serviced 2 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,1,2 beds,2 baths,3 Toilets +Land,Oniru Victoria Island Lagos,₦,"495,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Spacious Semi Detached Duplex With Bq??* Gated Estate Prestigious Address Ample Car Park Green Area Beautiful Lightings Family Lounge Gate House Fully Fitted Modern Kitchen Study Tv And Telephone Outlets All,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 3 Bedroom Luxury Flat,Sinari Daranijo Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terraced Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +High Rise Commercial Property,Adeola Odeku Adeola Odeku Victoria Island Lagos,$,"100,000,000",0,0,1,10 beds,10 baths,10 Toilets +A Fully Functional Hotel,Victoria Island Lagos,₦,"2,700,000,000",0,0,0,10 beds,0 baths,0 Toilets +Excellent Luxury 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Akin Ogunlewe Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Town House,Oniru Victoria Island Lagos,₦,"120,000,000",1,0,1,4 beds,0 baths,0 Toilets +2bedroom Flat,Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,0 baths,0 Toilets +Large 6 Bedrooms Fully Detached Duplex,Muri Okunola Eko Atlantic Victoria Island Lagos,₦,"460,000,000",0,0,0,6 beds,6 baths,7 Toilets +7 Bedroom Dully Detached Duplex,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,7 beds,7 baths,8 Toilets +6units Of 3bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Along Water Corporation Road, Oniru Oniru Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Top Quality 4 Bedroom Luxury Semi Detached Duplex At Oniru Pt,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds, baths, Toilets +Newly Built Luxury 3 Bedroom Apartment,"Oniru Estate, Off Palace Road, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"80,000,000",1,1,0,3 beds,4 baths,4 Toilets +"Brand New Luxury 4 Bedroom Serviced Fully Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Ozumba Mbadiwe Via Oba Yesufu Abiodun Road, Oniru Estate Lagos State. Oniru Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Distress Sale At Victoria Island Building On 1866 Sqm Of Land , Suitable For Office Use Jw",Z Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Detached Duplex On 825sqm Of Land,Off Idejo Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel(opposite Eko Hotel And Suite Vi) Title: C Of O Land Size: 2.292sqm. Fum,Victoria Island Lagos,₦,"3,000,000,000",1,0,0,10 beds,10 baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Off Oniru Palace Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3bedroom Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Commercial Land Property,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Built 3 Bedroom Flat With Bq,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,4 baths,0 Toilets +"2,050sqm Of Land",Ademola Adetokunbo Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New Luxury 4 Bedroom Serviced Terrace Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen","Off Adeola Odeku, Victoria Island, Lagos State. Adeola Odeku Victoria Island Lagos",₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached House,Kofo Abayomi Victoria Island Lagos,₦,"420,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom High Toned Luxury Terrace Duplex With A Swimming Pool And Gym Fully Fitted Modern Kitchen Built In Wardrobes Tv And Telephone Outlets All Bedrooms En Suite Luxury Finishes 24 Electricity,Onirun Lekki Right Side Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Brand New Executive Luxury 3 Bedroom Fully Serviced Terrace Duplex Plus A Room Bq,"Oniru Estate, Oniru Victoria Island Lagos",₦,"160,000,000",1,1,0,3 beds,4 baths,4 Toilets +5bedrooms Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Brand New Luxury 4 Bedroom Serviced Terrace Plus Bq,"Dideolu Estate, Oniru Victoria Island Lagos",₦,"170,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Victoria Island Lagos,₦,"350,000,000",1,1,0,3 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Family Home,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets +Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"6,650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,300sqm With A Commercial Detached 5 Bedroom Duplex",Off Sanusi Fafunwa Sanusi Fafunwa Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Parcel Of Land Measuring 1,300sqm",Sanusi Fafunwa Victoria Island Lagos,₦,"450,000,000",0,1,0,0 beds,0 baths,0 Toilets +Executive Hotel,Victoria Island Lagos,₦,"300,000,000,000/day",1,0,1,10 beds,10 baths,10 Toilets +4 Bedroom Terrace Duplex,Estate Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury Built And Fully Serviced 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built Luxury 1 Bedroom Fully Finished And Serviced Upper Floor Apartment,Magbogunje Street Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,1 beds,2 baths,2 Toilets +Brand New Luxury 3 Bedroom Apartment With A Room Bq,Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,4 baths,5 Toilets +Luxurious 4 Bedroom Terraced Duplex With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Serviced Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,2 beds,2 baths,3 Toilets +New House,Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,0 Toilets +Land,Eko Atlantic Victoria Island Lagos,$,"1,250/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Block Of 15 Units Of Spacious 1 & 3 Bedrooms Apartment,"10 Akin Adesola St, Victoria Island, Lagos, Nigeria. Akin Adesola Victoria Island Lagos",₦,"4,500,000,000",0,0,0,3 beds,4 baths,4 Toilets +High Ceiling Luxury Maisonette,Oniru Oniru Victoria Island Lagos,₦,"235,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Fully Fitted 4 Bedroom Apartment,Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Office Complex, Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000,000",0,1,1,0 beds,7 baths,0 Toilets +4 Bedroom Fully Detached Duplex With Bq., Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex, Kofo Abayomi Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,0 Toilets +"Newly Built Luxury 4 Bedroom Fully Furnished And Fully Serviced Maisonette Plus Bq With Air Conditioning , Fully Fitted Kitchen",Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,4 beds,5 baths,5 Toilets +Land,Akin Ogunlewe Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,5 beds,0 baths,0 Toilets +Remodeled 5 Bedroom Detached Duplex + 2 Rooms Bq,"Off Ligali Ayorinde Street , Victoria Island Lagos. Ligali Ayorinde Victoria Island Lagos",₦,"700,000,000",0,1,0,5 beds,6 baths,6 Toilets +New House,Victoria Island Lagos,₦,"600,000,000",0,1,0,6 beds, baths, Toilets +New House,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds, baths, Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Fully Serviced 4 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Situated Land Measuring 4000sqm,Next To Access Bank Head Office Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment,Eko Hotel Eko Atlantic Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool Located In Oniru Lekki Phase 1 Right Side Axis,Lekki Phase 1 Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Serviced Smart Home,Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,0 baths,0 Toilets +20 Units Apartment,Ajose Adeogun Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Executive 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 3bedroom Flat,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +5units Of 3 Bedroom En Suite Apartment,"Oniru Estate, Lagos Oniru Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Landmark Road Oniru Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eko Atlantic Victoria Island Lagos,$,"3,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Modern Luxury Flats Consists Of 17unit Luxury Flats,Tony Anegbode Street V.i Lagos. Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonnette,Oniru Victoria Island Lagos,₦,"1,200,000,000",1,1,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Fully Finished And Fully Semi Deatched Duplex With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Gafar Animashaun Street , Behind Zenith Headquarters Victoria Island Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat Apartments With A Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +New House,Ajose Adeogu Street Sanusi Fafunwa Victoria Island Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths, Toilets +Furnished 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,6 baths,6 Toilets +4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,300sqm Plot Of Land",Akarigbere Close Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautifully Built Furnished 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +8 Numbers Of 3 Bedroom Flats With 8 Maid Rooms Bq,"@ Adeola Hopewell, Victoria Island, Lagos. Adeola Hopewell Victoria Island Lagos",₦,"950,000,000",0,0,0,3 beds,0 baths,0 Toilets +Four Bedroom All Ensuite Penthouse,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive Brand New 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land,Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Victoria Island Lagos,₦,"200,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With Bq,Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bed Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +New 3 Bedrooms Block Of Flats,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,0 Toilets +"Newly Built Luxury & Spacious 5 Bedroom Fully Furnished And Fully Serviced Detached Duplex Plus Bq With Air Conditioning , Fully Fitted Kitchen And A Room Bq","Off Ajose Adeogun Street, Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos",₦,"500,000,000",0,0,0,5 beds,6 baths,6 Toilets +House,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets +A Beautifully Built 4 Bedroom Maisonnette With A Bq,Oniru Victoria Island Lagos,₦,"235,000,000",0,0,0,4 beds, baths, Toilets +A Massive Commercial Bare Land Of Size 3304.01sqm,Cornerpiece Of Ligali Ayorinde Str And Muri Okunola Str. Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Exceptional Terrace Duplex,Idowu Martin's Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 3 Bedroom Fully Serviced Apartment,"Eden Heights Apartments 6 Elsie Femi Pearse St, Adeola Odeku Victoria Island Lagos",$,"1,000,000",1,1,1,3 beds,4 baths,4 Toilets +Brand New Serviced Portable 3bedroom Flat No Bq In A Serene And Secured Environment,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Terrace Building,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,6 baths,5 Toilets +Luxury 3 Bedroom Apartments With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,0 baths,5 Toilets +4bedroom Terrace Duplex,Musa Yara Sua Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +"Newly Built 17 Flats In A Block. 1 No 4 Bed Pent House, 9 No 3 Bedroom , 6 No 2 Bed, And 1 Unit Of 1 Bed, With Ample Car Park , 500kva Transformer And 200kva Gen At Victoria Lsland Lagos Multimodal",Victoria Lsland Lagos Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,1,0, beds, baths, Toilets +"20,000sqm Land",Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Tastefully Finished Serviced 2 Bedroom Flat With 1 Room Boys Quarters,Oniru Victoria Island Lagos,₦,"68,000,000",1,1,0,2 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With Bq,Anifowoshe Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Executive Luxury 5 Bedroom Fully Detached Duplex,"Oniru Estate, Oniru Lagos State. Oniru Victoria Island Lagos",₦,"160,000,000",1,1,0,5 beds,6 baths,6 Toilets +Newly Built 3bedroom Apartment,Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Expansion 6 Bedroom Detached House With Open Plan Office Bungalow,Off Amodu Ojikutu Victoria Island Lagos,₦,"380,000,000",0,0,0,6 beds, baths, Toilets +Plastic Factory In A Senere Neighborhood,Lagos Island Victoria Island Lagos,₦,"40,000,000,000/sqm",0,0,1, beds, baths, Toilets +"Land Measuring 2,200sqm",Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive Block Of Flats House,Opp Mike Adenuga Towers Adeola Odeku Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Fully Serviced Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +Semi Detached Duplex,Royal Estate Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +"High Rise Property, Land Size: 2031 Square Meters.",Adeola Odeku Victoria Island Lagos,₦,"42,000,000,000",0,1,0,10 beds,10 baths,10 Toilets +Land,Karimu Kotun Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,1,0,0 beds,0 baths,0 Toilets +Primely Located 1000sqm Of Land,Corporation Drive Oniru Victoria Island Lagos,₦,"290,000,000",0,0,0, beds, baths, Toilets +Executive 3 Bedroom Apartment With A Room Bq,1004 Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,4 baths,4 Toilets +Executive 4 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"150,000,000/day",1,0,1,4 beds,5 baths,5 Toilets +Land,Off Ahmodu Bello Road Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Penthouse,Off Palace Road Oniru Victoria Island Lagos,₦,"220,000,000",1,0,1,4 beds,4 baths,5 Toilets +100mt Self Propel Tanker,Lagos Shores Victoria Island Extension Victoria Island Lagos,$,"1,200,000",0,0,0, beds, baths, Toilets +House,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,1, beds, baths, Toilets +New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths, Toilets +High Rise Property,"Off Adeola Odeku, Victoria Island Lagos",$,"100,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Fully Finished Upper Floor Apartment,Victoria Island Lagos State. Victoria Island Extension Victoria Island Lagos,₦,"170,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Built Luxury 5 Bedroom Fully Finished Detached Duplex,"Oniru Estate, Victoria Island Lagos State. Oniru Victoria Island Lagos",₦,"280,000,000",1,1,0,5 beds,6 baths,6 Toilets +Furnished 4 Bedroom Maisonette + Bq,Idejo Victoria Island Lagos,₦,"250,000,000",1,0,1,4 beds,0 baths,0 Toilets +A Tenanted 3bedroom Maisonette,"5th Floor At Block C6 1004 Victoria Island, Lagos 1004 Victoria Island Lagos",₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 2 Bedroom Mansion,1004 Victoria Island Lagos,₦,"170,000,000",1,0,0,2 beds,2 baths,3 Toilets +Functional 27 Rooms Hotel,"Off Ajose Adeogun Street, Victoria Island,lagos State. Ademola Adetokunbo Victoria Island Lagos",₦,"1,300,000,000",1,1,0,10 beds,10 baths,10 Toilets +Executive 4 Bedroom Fully Detached Duplex On 15000sqms,Ademola Adetokunbo Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Fully Serviced Upper Floor Apartment,"Oniru Estate , Oniru Lagos State Oniru Victoria Island Lagos",₦,"90,000,000",1,1,0,3 beds,4 baths,4 Toilets +New 2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,2 beds,3 baths,0 Toilets +7000sqm Waterfront Empty Land,"Ozumba Mbadiwe Street , Victoria Island Lagos . Victoria Island Extension Victoria Island Lagos",₦,"1,000,000/sqm",0,0,0, beds, baths, Toilets +Executive 4 Bedroom Semi Detached Duplex,Off Palace Road Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Terrace,Musa Yaradua Street Adeola Hopewell Victoria Island Lagos,₦,"320,000,000",1,1,0,4 beds,5 baths,5 Toilets +"1,700sqm Of Bareland",Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroomt Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,1,3 beds,3 baths,4 Toilets +"A Corner Piece Of Land Measuring 1,200sqm",Festival Street Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +27 Room Hotel,. Ligali Ayorinde Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"1,100sqm Bare Waterfront Land",Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedrooms Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +New House,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths, Toilets +A Commercial Land,Akin Olugbade Off Adeola Odekun Str Victoria Island Akin Olugbade Victoria Island Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets +Beautifully Built 4 Bedroom Terraces Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Fully Finished And Serviced Upper Floor Apartment,Adeola Odeku Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets +Newly Refurbished Luxury 2 Bedroom Serviced And Furnished Upper Floor Maisonnette,1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,3 baths,3 Toilets +"Newly Reburbished Luxury 7 Bedroom Fully Finished And Fully Serviced Detached Duplex + Bq With Air Conditioning , Fully Fitted Kitchen And 2 Bedroom Guest Chalet House As Bq",Off Muri Okunola Victoria Island Lagos. Victoria Island Extension Victoria Island Lagos,₦,"400,000,000/year",0,0,0,7 beds,8 baths,8 Toilets +4 Bedroom Terrace Duplex With Bq,Adeola Odeku Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fantastic 3 Bedroom Flat,Cluster D 5th Floor 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds, baths, Toilets +2/3 Bedrooms Flat,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,"Dideolu Estate, Victoria Island Lagos",₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +New House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths, Toilets +A Well Built 2 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"125,000,000",0,0,0,2 beds, baths, Toilets +5 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,4 Toilets +4 Bedroom Fully Furnished And Fully Serviced Maisonette Plus Bq,Oniru Estate Victoria Lagos State Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,5 baths,5 Toilets +820sqm Prime Land With Structure Off Idejo Street Victoria Island Lagos,Off Idejo Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Demolishable Building Property,Ajose Adeogun Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Well Maintained 4 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"86,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,"Along Water Corporation Road, Oniru Oniru Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Sleek 3 Bedrooms Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Well Maintained Twin Duplex (10 Rooms In All),Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Honorary 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Goriola Str Off Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4200sqm Land,"Adeleke Adedoyin Off Musa Yar'adua, Vi Victoria Island Lagos",₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraces Duplex + 1 Maid's Room,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Executive 3bedroom Flat Downstairs With All Rooms Ensuite,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets +5 Bedrooms Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex Forsale,Oniru Victoria Island Lagos,₦,"80,000,000/year",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,3 baths,3 Toilets +Modern Day 3 Bedroom Apartment With Elevator And Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Quick Sales In Victoria Island Lagos Off Amodu Ojikutu,Amodu Ojikutu Victoria Island Lagos,₦,"360,000,000",0,0,0,6 beds,6 baths,6 Toilets +Finished 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets +1450sqm Cornerpiece Of Land At Oniru Estate Victoria Island,Oniru Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Commercial Property,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Unit Of 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"195,000,000",0,1,0,3 beds,3 baths,3 Toilets +Urban City Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Terrace Duplex At Oniru,Boctrust Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,5 Toilets +"Newly Built Large Compound 5 Bedroom Semi Detached +bq, Gated Estate",Off Ligali Ayorinde Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +New 3 Bedroom Flat With Bq + Elevator,Oniru Oniru Victoria Island Lagos,₦,"98,000,000",1,1,0,3 beds,4 baths,4 Toilets +"3,300sqm Land",Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Story Building Sitting On 3000sqm At Adeola Odeku Vi,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Urban City Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Floor Block Of Flats + Penthouse,Akin Adesola Victoria Island Lagos,$,"14,000,000",0,0,0,10 beds,10 baths,10 Toilets +Two Storey Commercial Building,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,4 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace [email protected],Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Terrace Duplex With Bq,Atlantic Mew Estate Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment + Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Spacious 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built & Fully Serviced 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 8 Units Of 3 Bedroom Flats,Akin Olugbade Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,3 Toilets +Contemporary 4 Bedroom Fully Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 3 Bedroom Apartment With A Bq,Eighteen 65 Residence By Fatai Durosinmi Street Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,3 baths,3 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,3 Toilets +Tenanted 2 Bedroom Maisonette,1004 Estate Ozumba Mbadiwe 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Apartment On The 4th Floor,Vi Victoria Island Lagos,₦,"90,000,000",0,1,0,2 beds,3 baths,3 Toilets +Luxurious 3bedroom Apartment Penthouse,Oniru Victoria Island Lagos,₦,"6,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Awesome 4 Bedroom Maisonette Duplex With Bq,4 Bedroom Maisonette Duplex With Bq In Eighteen 65 Residence By Fatai Durosinmi Street Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",1,1,1,4 beds,4 baths,4 Toilets +Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service & New 3bed Room Compact/portable Flat No Bq,Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Maisonette Duplex With Bq,"Fatai Durosimi Etti Street, Accessible Through Ajose Adeogun Street. Victoria Island Lagos",₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Super Affordable 5 Bedroom Duplex,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2007sqm Plot Of Land,Bishop Kale Street Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Semi Detached House,Ahmadu Bello Way Victoria Island Lagos,₦,"300,000,000/year",0,1,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +An Office Property,A Very Beautiful Environment Ademola Adetokunbo Victoria Island Lagos,₦,"800,000,000",1,0,0,0 beds,0 baths,0 Toilets +A Newly Built & Tastefully Finished Luxury & Fully Serviced 2 Bedroom & 3 Bedroom Flat For Sale!!!!,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury & Spacious 4 Bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths,5 Toilets +Well Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +19 Floor Commercial Masterpiece,Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets +Great 4 Bedroom Terrace Duplex Masterpiece,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 & 5 Bedroom Terrace Duplex With Bq In Victoria Island Extension Oniru,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,1,5 beds,6 baths,6 Toilets +5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Built 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 8 Numbers Of 3 Bedroom Apartment,Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,A Very Beautiful Environment Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq For Sale With Swimming Pool And Gym,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Vi Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Newly Built & Tastefully Finished Luxury & Serviced 3bedroom Flat For Sale!!!,Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,3 Toilets +Beautifully Built 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Masionette,Victoria Island Lagos,₦,"210,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Nicely Structured 4 Bedroom Terrace Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5bedroom Semi Detached Duplex+ A Room Bq For Sale!!!,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Luxury 5bedroom Fully Detached Duplex With Bq,A Serene Environment Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Idle Bank Branch On Approximately 1530sqm Land,Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets +Newly Built Luxurious 4bedroom Townhouse With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +Idle Bank Branch On 2 Floors On Approximately 1100sqm Land,Very Nice Environment Adeola Odeku Victoria Island Lagos,₦,"800,000,000",1,0,0, beds, baths, Toilets +Fully Serviced Luxury 3 Bedroom Apartment+ A Room Bq For Sale!!!,Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace With Swimming Pool,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Four Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Penthouse Apartment,Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedroom Newly Built Contemporary Fully Detached Duplex,Very Beautiful Neighbourhood Oniru Victoria Island Lagos,₦,"290,000,000",0,0,0,4 beds,4 baths,5 Toilets +Western Standard 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,5 baths,5 Toilets +Oniru Water Front,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex In A Serene Gated Estate,Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool, Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 2 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,1,0,2 beds,2 baths,3 Toilets +3bedroom Apartment And 4bedroom Penthouse,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Fully Luxurious Detached Duplex,A Very Secured Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 2 Bedroom Penthouse With Bq,1004 Victoria Island Lagos,₦,"250,000,000",1,0,0,2 beds,0 baths,0 Toilets +Beautiful And Massive 5units Of 3 Bedroom Terrace Duplex With Bq,Secured Neighborhood Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +Executive 5 Bedroom Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +Cute 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,4 Toilets +Furnished 5 Bedroom Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,1,5 beds,5 baths,6 Toilets +Fully Furnished 3 Bedroom Flat On A Block Of 9 Flats,Z Victoria Island Lagos,₦,"75,000,000",1,0,1,3 beds,3 baths,3 Toilets +3 Bedroom Apartment With A Bq,Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Structured 7 Bedroom Duplex,Muri Okunola Victoria Island Lagos,₦,"390,000,000",0,0,0,7 beds,0 baths,0 Toilets +Exquisite 3 Bedroom Flat With Bq,Eighteen 65 Residences Fatai Durosinmi Street Vi Off Plan Project Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,0 baths,0 Toilets +Fully Furnished 2 Bedroom Apartment,Bluewater Apartments Oniru Victoria Island Lagos,₦,"135,000,000",1,0,1,2 beds,2 baths,3 Toilets +Functional Hotel,Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",1,1,1,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom Detached House;,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +"A Commercial Property Comprising 2 Units Of Open Plan Detached Houses Sitting On 1,817m²",Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"Newly Built, Well Finished And Maintained 4 Bedroom Terrace Duplex With Swimming Pool And Gym","Millenium Estate, Oniru Victoria Island Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Terrace House,Off Palace Road Oniru Victoria Island Lagos,₦,"69,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Serviced 4 Bedroom Apartment;,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Terrace Duplex,E Victoria Island Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplexes;,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +8 Units Of Fully Serviced 3 Bedroom Flats,Victoria Island Lagos,₦,"180,000,000",0,0,0,3 beds,3 baths,4 Toilets +Excellent Top Quality 3 Bedroom Block Of Flats With Bq,Oniru Estate Oniru Victoria Island Lagos,₦,"82,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built Executive Elegant 2 & 3 Bedroom Block Of Flats,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Finished 4 Bedroom Terrace Duplex,"Chery Homes, Oniru, Vi Extension Oniru Victoria Island Lagos",₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New And Spacious 3 Bedroom Flat With Bq;,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury & Fully Serviced 2 Bedrooms Pent Flat,Oniru Victoria Island Lagos,₦,"67,000,000",1,0,0,2 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached House With A Room Bq;,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Top Notch And Luxury 3 Bedroom Flat With A Room Bq,"Oniru Royal Estate, Oniru Victoria Island Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached House;,Oniru Victoria Island Lagos,₦,"265,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land Measuring 800m²,"Akin Olugbade Street Off Adeola Odeku Street, Victoria Island Lagos",₦,"480,000,000",0,0,0, beds, baths, Toilets +"Waterfront Land Measuring 8,000m²","Along Water Corporation Drive, Beside Queenspark Event Center, Oniru Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Apartment With Bq,In A Serene Neighborhood Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets +"A Bare Land Measuring 3045sqm Located Near Four Point Hotel Sheraton Victoria Island, Lagos State Nigeria",Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Fully Service 4 Bedroom Semi Detached House;,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached House With Swimming Pool;,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Bareland Measuring 1,676.96m²","Off Adeola Odeku Street, Victoria Island Lagos",₦,"950,000,000",0,0,0, beds, baths, Toilets +"Land Measuring 2,000m²","Goriola Street, Off Adeola Odeku, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +Beautiful 4 Bedroom Terrace Duplex,In A Serene Neighborhood Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,5 Toilets +Nicely Built 4 Bedroom Terrace With Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Affordable 4 Bedroom Detached Duplex In A Strategic Location,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Apartment On The 1st Floor,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"350,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With A Room Bq;,Victoria Island Lagos,₦,"182,000,000",0,1,0,4 beds,4 baths,5 Toilets +Top Notch Luxury 4 Bedroom Block Of Flats With Bq,Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"1,200,000",0,1,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Luxury Terrace Duplex With Swimming Pool;,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Exquisitely Finished 4 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedroom Terrace Duplex With Bq,"Victoria Island, Victoria Island Lagos",₦,"210,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Corner Piece Land Measuring 1,230m² With Structure","Sir, Manuwa Street, Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached With A Swimming Pool & A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 4 Bedroom Terraced House With Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Self Service Flat;,Oniru Victoria Island Lagos,₦,"100,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Semi Detached House With 1 Bq;,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With A Room Bq;,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Vacant 2 Bedroom Massionette,1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +"Land Measuring 2,835.902m²","Akin Olugbade Street Off Adeola Odeku Street, Victoria Island Lagos",₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Massive And Elegant Newly Built 2 & 3 Bedroom Block Of Flats With Bq,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace With Swimming Pool,Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +"A Corner Piece Bare Land Measuring 3,300.72m²","Off Ligali Ayorinde And Muri Okunola, Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,In A Serene Neighborhood Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"190,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Built 5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 4 Bedroom Maisonette In A Good Location,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Excellent Finishing,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,2 Toilets +Luxury Finished 3 Bedroom Apartment With Bq,In A Serene Neighborhood Victoria Island Lagos,₦,"145,000,000",1,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Terrace House With 2 Living Room 1 Bq 1 Study;,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached Duplex;,"Palace Road, Oniru Estate. Victoria Island Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced Block Of 2 Nos Of 4 Bedroom Maisonette With Bq And 8 Units Of 3 Bedroom Flats With Bq, Oniru Victoria Island Lagos,₦,"800,000,000",1,1,0,3 beds,4 baths, Toilets +Newly Built 4 Bedroom Massionette Duplex;,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +New Built And Well Serviced 3 Bedroom Apartment With A Room Bq;,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 4,450m²","Chief Yusuf Abiodun, Oniru Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Massive Elegant Newly Built 2 & 3 Bedroom Block Of Flats With Bq,Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Primed 2500sqm In A Strategic Location,Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"255,000,000",0,1,0,5 beds,5 baths,6 Toilets +Brand New Massive Elegant 3 Bedroom Block Of Flats And 5 Bedroom Penthouse With Bq,Vi Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Strategically Located 5 Bed Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 3 Bedroom Luxury Flat;,Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Contemporary Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Nicely Built 4 Bedroom Serviced Terrace With A Bq, Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +"Land Measuring 2,000m²",Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Serviced 4 Bedroom Apartment With Bq On 7th Floor,"Eden Heights Off Adeola Ayodeji Street, Victoria Island Lagos",₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached House With A Bq;,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built Executive Massive Elegant 4 Bedroom Terrace House With Bq And Swimming Pool For Sale,Vi Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terrace House With A Room Bq (video Available On Request),"Kayla’s Haven, Palace Road, Oniru Victoria Island Lagos",₦,"220,000,000",1,0,0,4 beds,4 baths,5 Toilets +Nicely Built 5 Bedroom Terrace Duplex;,Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace With A Bq;,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Modern Built 27 Luxury Bedrooms Hotel,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds,0 baths,0 Toilets +"Waterfront Plot Measuring 1,839sqm","Off Ligali Ayorinde Street, Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +Brand New Exquisitely Finished 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,In A Serene Neighborhood Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Flat;,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite Luxury Finished 1 Bedroom Apartment In Premium Location,Knight Towers Ahmadu Bello Way Victoria Island Lagos,₦,"68,500,000",1,1,0,1 beds,1 baths, Toilets +"Land Measuring 2,364m²","Jakande Close, Oniru Victoria Island Lagos",₦,"650,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Service Flat With A Room Bq;,Oniru Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,"Waterfront, Oniru Victoria Island Lagos",₦,"3,000,000,000",0,0,0, beds, baths, Toilets +2300sqm Land,Goriola Str. Off Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Jv 3000 Sqm Land,Lekki Right Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of 8units Of 3bedroom Luxury Flats,Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,0 baths,0 Toilets +1507 Sqm Joint Venture,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +2100 Sqm,Victoria Island Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1560 Sqm Of Land,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Luxurious Serviced 3bedroom,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built 3bedroom Flat With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds, baths, Toilets +1272sqm Land,Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5300 Sqm Of Land For A Joint Venture,Victoria Island Lagos,₦,"4,200,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1767sqm Of Land For Joint Venture,Victoria Island Lagos,₦,"885,000,000",0,0,0,0 beds,0 baths,0 Toilets +200sqm Of Land For A Joint Venture,Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +9000sqm Of Land,Eko Atlantic Victoria Island Lagos,₦,0,0,0,0,0 beds,0 baths,0 Toilets +Nixon Hotel,Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3bedroom,1004 Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +2000 Sqm Of Land For A Joint Venture,Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ecobank Building,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Fantastic 5 Bedroom Semi Detached,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New 4 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Standard 27room Luxury Hotel,Victoria Island Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property On 2 Floors, Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serivced 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +For Sale 65 Card Rooms 4 Stars Hotel At Tiamiyu Salvage Street Victoria Island Lagos With C Of O,Tiamiyu Savage Victoria Island Lagos,₦,"17,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built And Contemporary 4 Bedroom Terraced Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +1600sqm Of Land,Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Improved 4bedroom Semi Detached Duplex,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex With A Room Bq For Sale In Victoria Island,Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,3 Toilets +Fully Furnished 2 Bedroom Maisonette With Excellent Facilities For Sale In Victoria Island,Victoria Island Lagos,₦,"75,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury Fully Service And Furnished 3bedroom Apartment With S/pool,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",1,1,1,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With 2 Rooms Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets +Executive New 3bedroom Flat With Bq Swimming Pool And Elevator,Estate Oniru Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,3 beds,5 baths,4 Toilets +Luxury 3 Bedroom Terrace Duplex,S Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,4 Toilets +New Luxury 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,4 beds,6 baths,6 Toilets +"1,650 Square Meters Land","Tiamiyu Savage Street, Off Ahmadu Bello, Victoria Island, Lagos. Tiamiyu Savage Victoria Island Lagos",₦,"700,000,000",0,0,0, beds, baths, Toilets +9 Bedroom Detached House + 3 Rooms Bq,"By Ademola Adetokunbo Street, Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"700,000,000",0,0,0,9 beds,9 baths,10 Toilets +Mini Estate Of 8building Of Six 3bedroom Terrace,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,1,4 beds,8 baths,8 Toilets +Brand New Luxury 3bedroom Flat With All Necessary Amenities,Palace Road Oniru Victoria Island Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury Executive 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,5 baths,6 Toilets +Contemporary 4 Bed Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 6bedroom Detached House With Bq,Victoria Island Victoria Island Lagos,₦,"360,000,000",0,0,1,6 beds,8 baths,8 Toilets +"2,000 Square Meters Land","Senrolu Street, Dideolu Court, Victoria Island, Lagos. Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex + 4 Rooms Bq On 700sqm Land,"Idejo Street, Off Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +Lovely Fully Furnished 2 Bedroom Flat,Eko Atlantic Victoria Island Lagos,$,"1,045",0,0,0,2 beds,0 baths,0 Toilets +A Five (5) Star Luxury Hotel (between Lekki & Victoria Island),Victoria Island Victoria Island Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +High Toned 4bedrooms Terraced Duplex With Bq In Oniru Vi,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +Eko Atlantic City Land,Eko Atlantic Victoria Island Lagos,$,"945,000",0,0,0,0 beds,0 baths,0 Toilets +Morden 3bedrooms Apartments With Bq & Swimming Pool,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets +Functional Hotel,Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built Fully Luxurious Detached Duplex,A Well Secured Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,1,0,4 beds,4 baths,5 Toilets +Idle Bank Branch On Approximately 1530sqm Land,Nice Environment Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 8 Unit Of 3 Bedroom Flat With Luxury Facilities, Victoria Island Extension Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 4bedroom Fully Detached Duplex With Bq.,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,6 baths,6 Toilets +Standard 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Maisonette With Swimming,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,4 baths,5 Toilets +"2 Wings Of 5 Bedroom Duplexes On 2,740sqm + Swimming Pool & 2 Rooms Bq","Tiamiyu Savage Street, Victoria Island, Lagos Tiamiyu Savage Victoria Island Lagos",₦,"1,400,000,000",0,0,0,10 beds,8 baths,9 Toilets +A Commercial Land Of 1413 Sqm,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000/day",0,0,0,0 beds,0 baths,0 Toilets +2 Wings Of 5 Bedroom Duplexes,Tiamiyu Savage Victoria Island Lagos,₦,"1,500,000,000/sqm",0,0,0,5 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities, Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Executive Portable 3 Bedroom Flat In A Gated Estate,Gated Estate Oniru Victoria Island Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets +Executive Luxury 3bedroom Terrace Duplex,Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"220,000,000",0,1,1,3 beds,5 baths,5 Toilets +Waterfront 5star Hotel Of 133rooms,Victoria Island Saka Tinubu Victoria Island Lagos,$,"170,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat + 1 Room Bq,"Off Ajose Adeogun, Victoria Island, Lagos. Victoria Island Lagos",₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets +2100sqm Of Land,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Town House With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +An Old Detached Duplex With Appurtenances On 820sqm Total Land Size,"Off Idejo Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"350,000,000",0,0,0, beds, baths, Toilets +"A Land Measuring 5,400m2",Ligali Ayorinde Street Vi Ligali Ayorinde Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2262 Square Meter With C Of O,Victoria Island Victoria Island Lagos,₦,"880,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"240,000,000",0,1,1,5 beds,7 baths,7 Toilets +Commercial 5 Bedroom Detached Duplex,Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,6 Toilets +"1,500 Square Meters Strategically Located Land","Adetokunbo Ademola ( Close To Eko Hotels), Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +"Fully Serviced 4 Bedrooms Terrace Duplex With Private Elevator, Roof Terrace,gym And Pool Vi",Ozumba Akin Adesola Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +Waterfront New Luxury 6bedroom Detached Mansion With Bq,Victoria Island Victoria Island Lagos,₦,"550,000,000",0,1,1,6 beds,8 baths,8 Toilets +Executive 4bedroom Flat Apartment,Victoria Island Lagos,₦,"80,000,000",0,0,1,4 beds,6 baths,6 Toilets +New 3 Bedrooms Penthouse,Eko Atlantic Victoria Island Lagos,$,"2,000,000",1,1,0,3 beds,3 baths,3 Toilets +Land,Festival Road Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Fast Food,Victoria Island Lagos,₦,"491,200,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Land,Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Parcel Of Land Measuring 1,413 Square Meters","Ajose Adeogun Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +Executive Luxury 30rooms Hotel,Victoria Island Victoria Island Lagos,₦,"3,000,000,000",0,0,1,0 beds,0 baths,0 Toilets +"Land Measuring 4,000sqms For Sale In Victoria Island",Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +2641 Sqm Land,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets +Newly Built And Luxurious 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Standard 4bedroom Duplex,Savoy Town Home Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Hamadu Tijani Victoria Island Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4bedroom Semi Detached Duplex With Bq In A Gated Estate,Gated Estate Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,0,1,4 beds,6 baths,6 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With A Beautiful Ambience, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Acres Of Land, Ahmadu Bello Way Victoria Island Lagos,₦,"6,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Western 4bedrooms Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,4 Toilets +3000sqm Of Land With Uncomplted Block 8 Nos Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,800,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Flat,Off 4 Points Road Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,2 beds,2 baths,3 Toilets +Contemporary 3 Bedroom Terrace Duplex,Akin Adesola Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +800sqm Of Residential Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos Of. 5 Bedroom Detached Duplex With Bq And 4 Bedroom Duplex On 1500sqm With C Of O,Oko Awo Sanusi Fafunwa Victoria Island Lagos,₦,"650,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Semi Detached With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New Fully Furnished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +: Brand New 3 Bedrooms Apartment,Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Acres Of Land, Kofo Abayomi Victoria Island Lagos,₦,"7,000,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Strategically Fully Detached 5bedrooms Duplex With Pool,Lekki 1 Axis Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,6 baths,6 Toilets +8 Floors Penthouse Buiding,Akin Adesola Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Standard 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,0 baths,0 Toilets +Fully Furnished 5bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",1,0,1,5 beds,7 baths,7 Toilets +Luxury 3 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,3 beds,5 baths,6 Toilets +"2,400 Square Meters Land","Goriola Street, Off Anifowoshe Street, Victoria Island, Lagos. Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Pent House With Bq,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Land Measuring 2500sqm, Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5bedroom Semi Detached Duplex With Bq And Swimming Pool,Kayla Homes Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,7 baths,7 Toilets +New And Modern Luxury 1 Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,4 Toilets +"Land Measuring 5,300sqms For Sale In Victoria Island.",Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +4000sqm Of Land With Approval Of 24 Floors With C Of O,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 4 Bedroom Terrace Duplex With Beautiful Ambience, Adeola Hopewell Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Fully Detached Building On 1,866sqm Land","Akin Adesola, Victoria Island, Lagos. Akin Adesola Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Detached Duplex,"Palace Road,estate Oniru Victoria Island Lagos",₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +An Office Property,Nice Environment Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Shop Measuring 20sqms, Oniru Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex With Luxury Facilities For Sale In Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"125,000,000/year",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette With Bq At Eighteen65 Residences,Durosimi Etti Street Vi Lagos Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +"7,400sqms Waterfront Land For Sale In Oniru",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets +"1,400 Square Meters Land ( Behind Law School)","Behind Nigerian Law School, Off Ozumba Mbadiwe, Victoria Island, Lagos. Adeola Hopewell Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +"1 Storey Building Plaza On 1,200 Square Meters Land","Idejo Street, Off Adeola Odeku, Victoria Island, Lagos. Adeola Odeku Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Duplex,Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +4 Bedroom Terraced Duplex With,Saka Tinubu Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,4 Toilets +Functional 27rooms Hotel,Off Ajose Adeogun Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 5 Bedroom Fully Detached House With Bq On 400sqm,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +1277sqm Of Land,Oko Awo Off Eko Hotel Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex,Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,5 beds,7 baths,7 Toilets +New Executive Luxury 5bedroom Fully Detached Duplex With Bq Swimming Pool,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"290,000,000",0,1,1,5 beds,7 baths,7 Toilets +Newly Built 19 Floors Office,Idowu Taylor Victoria Island Lagos,₦,"40,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Fully Detached House + Open Plan Space,"Off Ligali Ayorinde, Victoria Island, Lagos. Ligali Ayorinde Victoria Island Lagos",₦,"250,000,000",0,0,0,7 beds, baths, Toilets +Finished Furnished And Functional Hotel,Victoria Island Lagos,₦,"1,200,000,000",1,0,1,10 beds,10 baths,10 Toilets +"Land Measuring 2,262sqms Available In Victoria Island",Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Office Building,Ademola Adetokunbo Island Ademola Adetokunbo Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Water Front Land For Joint Venture,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely 2bedroom Serviced And Furnished Pent Flat,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"70,000,000",1,0,1,2 beds,3 baths,3 Toilets +Exquisitely Furnished 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Duplex With 1 Rm Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,6 baths,6 Toilets +Executive 4bedroom Terrace Duplex With Swimming Pool And Gym,Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,1,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Flat + Bq Fully Serviced,Located In A Very Good And Secure Neighborhood Oniru Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets +"1,200m2 With 2 Numbers Of 5 Bedroom Houses",Muri Okunola Street Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Buy 4 Bedroom Maisonette With Bq At 1865 Residence Victoria Island Lagos With C Of O,Durosinmi Etti Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"140,000,000/day",0,1,0,4 beds,4 baths,4 Toilets +Commercial 5 Bedroom Detached House,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"700,000,000/year",0,0,0,5 beds,5 baths,6 Toilets +Fully Serviced 4 Bedroom Terraced With Private Elevator,Victoria Island Lagos,₦,"320,000,000",0,1,0,4 beds,4 baths,4 Toilets +1500sqm Of Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"450,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Bare Virgin Land For Any Development,Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"65,000,000",0,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Swimming Pool,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Fully Detached Duplex With Bq,Oniru Lekki Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,0 beds,0 baths,0 Toilets +4bedroom Town House At Dideolu Estate Off Ligali Ayorinde Vi,Ligali Ayorinde Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,5 baths,5 Toilets +800sqm Gated Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 2floors Office Building On 860sqm Land,Victoria Island Victoria Island Lagos,₦,"600,000,000",0,0,1,0 beds,0 baths,0 Toilets +"3bedroom, 4bedroom And 6bedroom Penthouse",Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,1,3 beds,3 baths,4 Toilets +For Sale 5 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"460,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Duplex,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Standard Luxury 4bedroom Semi Detached Duplex With 2rooms Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"125,000,000",0,0,1,4 beds,6 baths,6 Toilets +A Luxury Brand New 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Executive Hotel,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,3,4 And 5 Bedroom Maisonettes And Duplex Penthouses","Water Corporation Drive, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"180,000,000",1,1,1,4 beds,5 baths,5 Toilets +A Lovely 4bedroom Detached House,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Luxury Brand New 3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,3 Toilets +Land With 2 Units Of Detached Houses,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House,Ojo Olobu Vi Victoria Island Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +Joint Venture,Located At Dideolu Estate Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +Lovely Furnished 5 Bedroom Fully Detached House,"Oniru Estate, Victoria Island, Lagos. Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 2 Bedroom And 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"120,000,000",0,1,1,2 beds,3 baths,3 Toilets +"7,358 Square Meters Fenced & Gated Land ( 2 & Half Acres)","Water Corporation Road, Off Ligali Ayorinde, Victoria Island, Lagos. Victoria Island Lagos",₦,"2,800,000,000",0,0,0, beds, baths, Toilets +Fully Furnished 3 Bedroom Apartment,Victoria Island Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,3 Toilets +"Blocks Of 20 Units Of Flats + Bqs Each On 2,400 Square Meters Land","Victoria Island, Lagos. Victoria Island Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets +4 Bed Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Plot Measuring 4,300sqms", Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Luxury Apartment With Bq,Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,3 Toilets +Massive 4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex With A Self Contained Bq.,"Oniru, Victoria, Lagos Ligali Ayorinde Victoria Island Lagos",₦,"105,000,000",0,1,0,4 beds, baths, Toilets +4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"210,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury Fully Fitted 3bedroom Penthouse Apartment With Maid's Quarter,"Eko Pearl Tower, Eko Athlantic City Eko Atlantic Victoria Island Lagos",₦,"910,000,000",1,0,0,3 beds,3 baths,3 Toilets +New Luxury 5bedroom Semi Detached Duplex With 2rooms Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,7 baths,7 Toilets +An Office Property,Nice Environment Ademola Adetokunbo Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3300. 72 Sqm Of Cornerpiece Land With C Of O,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Urban City 3bedrooms Apartments With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,3 Toilets +New Fully Detached 4bedrooms Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +"2,034 Square Meters Land",Serenolu Street Ligali Ayorinde Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 7 Bedroom Detached Duplex,Victoria Island Lagos,₦,"390,000,000",0,0,0,7 beds,7 baths,8 Toilets +4 Bedroom Penthouse With A Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat + Bq,"Eighteen 65 Residence, Fatai Durosinmi Street, Vi Victoria Island Lagos",₦,"150,000,000",1,1,0,3 beds,3 baths,3 Toilets +2 Bedroom Penthouse With Bq,"Eighteen 65 Residence, Fatai Durosinmi Street, Vi Victoria Island Lagos",₦,"250,000,000",1,1,0,2 beds,2 baths,2 Toilets +3 Bedroom Maisonette + Bq,Eighteen 65 Residence Victoria Island Lagos,₦,"180,000,000",1,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Decent Miniflat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Semi Detached Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,4 Toilets +This Lovely 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +Land,Victoria Island Lagos,₦,"8,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartments,Oniru Vi Oniru Victoria Island Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +Tastefully Finished 4bedroom Flat,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished 4bedrooms Flat,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets +5bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,6 Toilets +Ground Floor 4bedrooms,1004 Victoria Island 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000/year",1,1,0,4 beds,4 baths,5 Toilets +4000sqm Of Land,Next To Access Bank Head Office Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Fully Detached Duplex With Pool,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Well Renovated, Vacant And Spacious Luxury 4 Bedroom Low Rise Apartment",1004 Housing Estate 1004 Victoria Island Lagos,₦,"82,999,999",1,0,0,4 beds,4 baths,5 Toilets +3bedroom Flat With Bq ,Fatai Durosinmi Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3bedroom Flats,Nicole's Place Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 2 Units Of 2 Bedroom Flats,Off Palace Road Oniru Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,3 baths,3 Toilets +Tastefully Finished 4bedrooms,1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets +4bedroom Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,0 baths,0 Toilets +"4,100sqm Land At A Strategic Point",Eko Pearl Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,"Victoria Island, Lagos Island Victoria Island Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 27 Rooms Hotel,Ajose Adeogun Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +This Luxuriously Built 3 Bedroom Highrise Apartment,Oniru Victoria Island Lagos,$,"1,000,000",0,1,1,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Off Palace Road Oniru Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,5 baths,5 Toilets +3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Atlantic Ocean View 7 Floor Building Over Suites,Avenue Suites Tiamiyu Savage Victoria Island Lagos,$,"33,000,000",0,1,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Victoria Island Lagos,₦,"530,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Massionette,Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex +bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,1,4 beds,4 baths,5 Toilets + 6 Bedrooms Detached Duplex Converted To Office Space, Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Very Nice Mini Flat,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +Land,Inside A Secured Estate By Kuboye Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Massive Office Complex Is Available For Sale,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,$,"100,000,000",1,0,1, beds, baths, Toilets +Demolishable Property,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Penthouse,"Victoria, Lagos State Victoria Island Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 5bedroom Fully Detached House,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With 1 Room Bq And A General Swimming Pool,Ologun Agbaje Street Adeola Odeku Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Masionette,Victoria Island Oniru Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,5 baths,5 Toilets +"Executive 5b/r Terrace Duplex In Oniru, V.i",Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +3 Bedroom Flat + A Room Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Victoria Island Extension Lekki Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Distress Sale: A 65 Rooms Hotel With Modern Furnishings,Victoria Island Lagos Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Modified 2 Bedroom Maisonette At 1004 Estate.,"1004, Victoria Island 1004 Victoria Island Lagos",₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Maintained 3 Bedroom Maisonette,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedrooms Terrace Maisonette Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Victoria Island, Lagos Victoria Island Lagos",₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom 1004 Estate, 1004 Victoria Island Lagos,₦,"65,000,000",1,0,1,2 beds, baths, Toilets +4bed Flat In 1004 Estate,1004 Estate 1004 Victoria Island Lagos,₦,"85,000,000",1,0,1,4 beds, baths, Toilets +"3 Bedroom Apartment For Sale In Oniru, Victoria Island Going For 120m","Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisite 4 Bedroom Massionette,Oniru Oniru Victoria Island Lagos,₦,"245,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House With 2 Bedroom Guest Challet And 3 Room Bq,Off Idejo Street Adeola Odeku Victoria Island Lagos,₦,"380,000,000",0,0,0,9 beds, baths, Toilets +Six Bedroom Fully Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,6 beds,6 baths,7 Toilets +Twin Duplex 10 Rooms In All,"(ajose Adeogun) , Victoria Victoria Island Lagos",₦,"500,000,000",0,0,1,10 beds,10 baths,10 Toilets +Top Notch One Bedroom Mini Flat,Palace Road Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,2 Toilets +3 Bedroom Flat,Ajose Adeogun Street Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat 1004 Estate,1004 Estate 1004 Victoria Island Lagos,₦,"75,000,000/day",1,0,0,3 beds, baths, Toilets +Spacious Fully Detached Four Bedroom Duplex With Bq And Pool,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds, baths, Toilets +Solid Floor 3000 Square Meters Land,Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +(4) Bedroom Luxury Detached Duplexes,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terraced House,Victoria Island Lagos,₦,"145,000,000",0,0,0,5 beds,0 baths,0 Toilets +Newly Finished 3bedroom Apartments,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Brand New Luxury Built, Serviced And Very Spacious 3 Bedroom Apartment",Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +3bedroom Apartment,Victoria Island Lagos,₦,"320,000,000",0,0,1,3 beds,3 baths,4 Toilets +Vi Office And Residential Apartment,Off Adeola Odeku Ademola Adetokunbo Victoria Island Lagos,$,"100,000,000",1,1,0,10 beds,10 baths,10 Toilets +2 Bedroom Apartment,Flat 1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,2 Toilets +Brand New 4 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +1260 Square Meters Of Land,Off Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2wings Of 5bed Room Duplex,Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartment,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land With 3no Terrace Houses On 1315 Sq.m Along New Market Road Oniru.,New Market Road Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Land,Victoria Island Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Mini Estate Comprising 8 Units Houses Splited Into 6 Nos 3 Bedroom Terraces,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"850,000,000",0,0,0,3 beds,3 baths,4 Toilets +800sqm Of Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000/year",1,1,0,3 beds,3 baths,4 Toilets +"4,000sqm Land",Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"16,800sqm Land",Ahmadu Bello Way Victoria Island Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1350 Sq.m Of Corner Piece Plot, Oniru Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +"17,000sqm Corner Piece Land",Victoria Island Lagos,$,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,000sqm Land",Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq (off Plan),Eighteen65 Residences Idowu Taylor Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Maisonette,Ligali Ayorinde Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,500sqm Land",Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"5,300sqm Land",Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished 4 Bedroom Penthouse,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished And Serviced 2 Units Of 2 Bedroom,Oniru Victoria Island Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Maisonette With A Room Boys Quarter,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,0 baths,0 Toilets +600sqm Land,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 And 3 Bedroom Apartments With Communal Swimming Pool And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Of Land,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale In Eko Athlantic 3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"1,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Fully Detached With 2 Living Room,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Apartment,Victoria Island Lagos,₦,"18,000,000",0,0,0,2 beds,0 baths,0 Toilets +2000 Square Meter Of Land, Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Penthhouse 4 Bedrooms Apartment,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Maisonette,Victoria Island Lagos,₦,"500,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Oniru Waterfront 7400sqms Land, Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5300 Square Meter Land, Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"20,000sqm Corner Piece Land",Victoria Island Lagos,₦,"17,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +600sqm Land,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Square Meter Waterfront Land, Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +Awesome 4 Bedroom Terraced Building With A Bq,Oniru Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,5 baths,5 Toilets +"3 Bedroom Apartment With Communal Pool, Gym",Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex +bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 2 Room Boys Quarter,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Semi Detached House,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,5 baths,5 Toilets +"4,050sqm Land",Oniru Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"7,400sqm Land",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"7,100sqm Land For Sale",Victoria Island Lagos,₦,"6,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Mosere Kogo Villa, Behind Eko Akete, Lekki Peninsula Victoria Island Lagos",₦,"11,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,"Off Kofo Abayomi, Victoria Island Lagos",₦,"290,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds, baths, Toilets +1000sqm Land,Dideolu Estate Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Charming Custom Built 4 Bedroom Penthouse,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ready To Build 1400sqm Of Land,Idowu Taylor Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Resplendent 4 Bedroom Terrace With A Bq,Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,2 beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Terrace,Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,0 baths,0 Toilets +1599.665sqmts Land,Oyinjolayemi Street Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Dazzling Four Bedroom Semi Detached Duplex On Two Floors,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,3 baths,3 Toilets +Contemporary 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Dazzling 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Magnificent 4 Bedroom Terrace.,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Vivacious 3 Bedroom Apartment With A Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Fully Detached Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Prestigious 5 Bedroom Fully Detached House,Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,3 Toilets +Top Notch 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Kano Guest House And Liason Office With 72 Rooms And Other Offices Reception,Waziri Ibrahim Crescent Victoria Island Lagos Victoria Island Lagos,₦,"2,300,000,000",0,0,0,10 beds, baths, Toilets +Two Storey Commercial Building Affording,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 8 Units Of Luxury 3 Bedroom Flat With 1 Room Bq Each,Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets +Top Notch 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,6 Toilets +100 Rooms 5 Stars Hotel,Vi Victoria Island Extension Victoria Island Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Penthouse,Ligali Ayorinde Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Serviced Furnished 2 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedrooms Pent Flat With Swimming Pool And Bq,Off Ajose Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,2 baths,3 Toilets +Functional 27 Room Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment,Kofo Abayomi Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bed Detached Duplex With A Room Bq,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Off Plan Projects,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,3 beds,3 baths,4 Toilets +Top Quality 3 Bedroom Terrace Duplex,Victoria Island Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +Commercial Plot With Development,New Market Road Oniru Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +An Exquisite 3 Bedroom Apartment,Victoria Lsland Eko Atlantic Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +Block Of Flats And Maisonette,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"830,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Units Of Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,0 baths,0 Toilets +Functional Hotel,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 2 Bedroom Flats And 2 Units Penthouse Mini Flats,Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,2 beds,2 baths,3 Toilets +535m2 Water Front ( Fenced & Gated )*,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedrooms Flat With Swimming Pool And Bq,Off Ajose Ligali Ayorinde Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Floor Newly Built Office Complex,Mma Lucy Akpabio Road Off Muri Okunola Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached House,Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Maisonette With Swimming Area And Gym,Oniru Oniru Victoria Island Lagos,₦,"225,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,6 Toilets +Spacious 5 Bedroom Terrace With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom House With Quality Interior And Excellent Facilities,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Maisonette,Oniru Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +Modern 2 Bedroom Apartment,Victoria Island Lagos,₦,"95,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Upscale 3 Bedroom Apartment With Ample Parking Space,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,3 baths,4 Toilets +Serviced 3 Bedroom Apartment With Excellent Facilities,Vi Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Furnished 2 Bedroom Blue Water,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,1,2 beds,2 baths,3 Toilets +Superbly Finished 4 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Ample Parking Space,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Detached Smart Home,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Premium 3 Bedroom Penthouse With Excellent Facilities,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,1,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Flat With Excellent Facilities,Victoria Island Lagos,₦,"120,000,000",1,0,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartment With A Swimming Area,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartment With Fully Fitted Kitchen,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +Spacious 8 Units Of 3 Bedroom Apartment With Swimming Area,Oniru Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +Luxury 4 Bedroom Terraced Duplex With Fitted Kitchen,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Premium 3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,1,3 beds,3 baths,4 Toilets +Spacious 4 Bedroom Terrace With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Apartment In A Serene Neighborhood,Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Amazing Facilities,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Smart Home,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Terrace Duplex With Fitted Kitchen,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Penthouse With Excellent Facilities,Victoria Island Oniru Victoria Island Lagos,₦,"110,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Apartment With Ample Parking Space,Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,2 beds,3 baths,4 Toilets +Fully Furnished 4 Bedroom Townhouse,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,1,4 beds,4 baths,5 Toilets +Newly Built 10 Units Of 4 Bedroom Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Furnished One Bedroom Studio Maisonette,Victoria Island Victoria Island Lagos,₦,"55,000,000",1,0,1,1 beds,1 baths,2 Toilets +Upscale 3 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Detached Duplex With Bq,Dideolu Private Estate Victoria Island Lagos,₦,"450,000,000",0,1,0,4 beds,4 baths,5 Toilets +Premium 4 Units Of 3 Bed Terrace Maisonette And 2 Units Of 4 Bedroom Penthouses,Oniru Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +Newly Built 5 Bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,5 baths,6 Toilets +Spacious 4 Bedroom Terrace With Swimming Pool,Oniru Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +The Aspire Luxury 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Unit Off Plan,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,1,0,5 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets +Furnished 2 Bedroom Apartment With Quality Interior,Oniru Oniru Victoria Island Lagos,₦,"58,000,000",0,0,1,2 beds,2 baths,3 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace,Victoria Island Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 5 Bedroom Terrace Duplex With Swimming Pool,Oniru Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Upscale 6 Bedroom Penthouse,Oniru Oniru Victoria Island Lagos,₦,"220,000,000",1,0,0,6 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace With Excellent Facilities,Victoria Island Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Penthouse In A Serene Neighborhood,Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,2 baths,3 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Premium 3 Bedroom Apartment With Swimming Area,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"158,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"130,000,000/year",1,0,0, beds,4 baths,5 Toilets +3 Bedroom Off Plan,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,3 beds,3 baths,4 Toilets +Premium 4 Bedroom Penthouse With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"190,000,000",1,0,0,4 beds,4 baths,5 Toilets +Serviced 2 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",1,0,0,2 beds,2 baths,3 Toilets +Serviced 3 Bedroom Apartment With Excellent Facilities,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",1,0,0,4 beds,3 baths,3 Toilets +Premium 3 Bedroom Apartment Available For A Mortgage Plan,Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Furnished 2 Bedroom Apartment With Excellent Facilities,Victoria Island Lagos,₦,"130,000,000",0,0,1,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat,Sinari Daranijo Street Ligali Ayorinde Victoria Island Lagos,₦,"165,000,000",1,1,1,3 beds,3 baths,4 Toilets +Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +2034sqm Land,Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Land,Lucy Akpabio Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +5bedroom Detached House,Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land,Victoria Island Lagos,$,"10,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Adeola Odeku Victoria Island Lagos,₦,"320,000,000",0,0,0,8 beds,8 baths,9 Toilets +3 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +2bedroom Serviced Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,2 beds,2 baths,2 Toilets +Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,0 Toilets +6 Bedrooms Detached Duplex Converted To Office Space, Victoria Island Lagos,₦,"460,000,000",0,0,0,6 beds,6 baths,7 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Commercial Waterfront Land At Oniru Vi,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Commercial Waterfront Land At Oniru Vi,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +26 Rooms Hotel,Vi Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",0,1,1,10 beds,10 baths,10 Toilets +Tastefully Finished 2 Units Of 2 Bedroom Apartment,Oniru Oniru Victoria Island Lagos,₦,"62,000,000/sqm",0,0,0,2 beds,2 baths,2 Toilets +A 16 Units Of 1 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 5bedroom Semi Detached Duplex Is Available,"John Adam Street, Oniru Victoria Island Lagos",₦,"260,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Fully Furnished Luxury Apartment,G Eko Atlantic Victoria Island Lagos,$,"850,000",1,1,1,3 beds,3 baths,4 Toilets +Block Of Flats Available,"Jakande , Oniru Victoria Island Lagos",₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette,"Block D5, 4th Floor, 1004 1004 Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,4 Toilets +5 Bedroom Detached Duplex In A Serviced Mini Estate,Victoria Island Lagos,₦,"120,000,000",1,0,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Masionette,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,"Oniru, Vi. By 4 Points By Sheraton. Oniru Victoria Island Lagos",₦,"350,000,000",0,1,0,5 beds,5 baths,6 Toilets +A Block Of Detached Houses, Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +A Functional 27 Rooms Hotel,Off Ajose Adeogun Street Sanusi Fafunwa Victoria Island Lagos,₦,"1,300,000,000",0,1,1,10 beds,10 baths,10 Toilets +Newly Built 3 Bedroom Terraced Duplex With Bq, Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,7 Toilets +4 Bedroom Fully Serviced Detached Duplex,Oniru Victoria Island Lagos,₦,"235,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,0 Toilets +Estate Land,Eko Atlantic Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Penthouse Apartment,Victoria Island Lagos,₦,"170,000,000",1,1,0,2 beds,2 baths,0 Toilets +Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Fully Finished Luxury Apartment,H2 Eko Atlantic Victoria Island Lagos,$,"750,000",1,1,1,2 beds,3 baths,3 Toilets +Luxury Furnished 4bedroom Penthouse,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,4 baths,4 Toilets +A Hotel Is Available,Off Ajose Adeogun Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Fully Furnished Sweet Apartment,Boid Eko Atlantic Victoria Island Lagos,$,"960,000",1,1,1,3 beds,3 baths,4 Toilets +Fully Serviced 4bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Unique Standard Commercial House,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Joint Venture Odeku* Description: 1400sqm Of Land Location: Adeola Odeku , Victoria Island. Specifications: The Owner Wants 12floors Of Luxury Flats. Value: N1.2bn Title: C Of O Professional Fees: 10% Submit Your Proposal",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000,000",0,0,0, beds, baths, Toilets +Land,Oniru Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Distress Sale For Sale In Victoria Island Lagos For Sale,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"104,000,000,000",0,0,0, beds, baths, Toilets +4bedrooms Terrace With Bq And Swimming Pool, Victoria Island Lagos,₦,"60,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Numbers 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bed Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,4 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Detached Buplex With Swimming Pool And Bq,E Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,3 beds,0 baths,4 Toilets +"Automated Unconventional 5 Bed Detached House With Swimming Pool, Cinema, Gym And 2 Bqs",Victoria Island Lagos,₦,"330,000,000",1,1,0,5 beds,5 baths,6 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Joint Venture,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury And Executive 3 Bedroom Flat,Victoria Island Lagos,₦,"145,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,3 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Ahmed Onibido Street Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"540,000,000",0,0,0,0 beds,0 baths,0 Toilets +5120sqm Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedroom Apartment With 1 Bq For Each Apartment,Akin Olugbade Victoria Island Lagos Akin Olugbade Victoria Island Lagos,₦,"1,300,000,000",1,0,0,10 beds,10 baths,10 Toilets +3000sqm Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Semi Detached House With Bq, Oniru Victoria Island Lagos,₦,"155,000,000",0,1,1,4 beds,4 baths,5 Toilets +Fully Furnished 3 Bedroom High Rise Apartment,Eko Atlantic Victoria Island Lagos,$,"960,000",1,1,1,3 beds,3 baths,4 Toilets +( Distress Sale ) Land,Victoria Island Adeola Odeku Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary Newly Built 4 Bedroom Terrace With Swimming Pool & Gym,Ligali Ayorinde Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +3000sqms Land With A Structure,Akin Olugbade Victoria Island Lagos,₦,"1,350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Oniru Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"98,000,000",1,1,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedrooms Semi Detach Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +Joint Venture Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Victoria Island Lagos,₦,"45,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Brand New Office Complex Of 3 Open Floors Plan,Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Fully Fitted And Serviced 2 Numbers Of 4 Bedroom Maisonette With Bq,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Serviced Portable 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand Newly Built Fully Serviced 4bedrooms Terrace Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +2bedrooms And 3bedrooms Apartments,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Tiamiyu Savage Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Most Lucrative Block Of 8 Units 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Oniru Victoria Island Lagos,₦,"640,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached House,Along Balarabe Musa Victoria Island Lagos,₦,"610,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Detached House,Kofo Abayomi Victoria Island Lagos,₦,"720,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Louis Solomon Close Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Elegantly Built 5bedrooms Detached Duplex,Oniru Estate Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 7 Bedroom Detached House,Muri Okunola Street Victoria Island Lagos,₦,"375,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Floors Commercial Building,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 8 Numbers Of 3 Bedroom Flats,Off Sanusi Fafunwa Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex And Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced And Vacant 4 Bedroom Apartment,1004 Estate Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Elegantly Newly Built Fully Serviced Block Of 17 Flats Apartments,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dideolu Estate Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 8 Units Of 3 Bedroom Flats,Akin Olugbade Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Portable 2bedrooms Flat With Inbuilt Bq,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette With Bq,Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Commercial Detached House,Akin Adesola Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Numbers 3 Bedroom Flat,Off Ajose Adeogun Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11,500sqm Land",Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 5 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,Pearl Tower Eko Atlantic Victoria Island Lagos,₦,"290,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Terrace Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Penthouse,Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Building Of 6 Flats,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Ologun Agbajr Street Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 3 Bedroom Apartment,Teslim Elias Adeola Odeku Victoria Island Lagos,₦,"160,000,000",1,0,0,3 beds,3 baths,4 Toilets +Spacious 3 Bedroom Apartments With Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Penthouse Suite,Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Waterfront Land Ozumba Mbadiwe Victoria Island Victoria Island Lagos,₦,"950,000/sqm",0,0,0, beds, baths, Toilets +Land,Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"950,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Fully Detached Contemporary Home With 1 Room Bq,Dideolu Private Estate Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,31 Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Akin Olugbade Street Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With An Open Terrace And A Room Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 6 Units Of 6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +2numbers Of Detached House,Along Iman Augusto Close Off Olosa St Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Numbers Of 3 Bedroom Flat With 8bqs,Adeola Hopewell Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Elegantly Built 5bedrooms Detached Duplex,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,600 Sqm Land",Broad Street Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dideolu Estate Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 24 Units Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +6bedroom Fully Detached Duplex Plus Boys Quarter,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Storey Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 5 Bedroom Detached Duplex Plus Bq On 500sqm+, Ocean View",Lekki Right Hand/oniru Oniru Victoria Island Lagos,₦,"285,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex (pcl 199),Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Semi Detached Duplex (pcl 124),Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds, baths, Toilets +Luxurious 6 Units Of 3 Bedrooms Flat (pcl 151),Oniru Victoria Island Lagos,₦,"900,000,000/year",0,0,0, beds, baths, Toilets +4 Bedrooms Maisonette And Apartments (pcl 144),Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Terrace (pcl 033),Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 4 Bedrooms Massionette Duplex House With Bq,Vi Victoria Island Lagos,₦,"300,000,000",1,1,1,4 beds,4 baths,5 Toilets +4 Units Of 3 Bedroom Fully Serviced Apartments,Oniru Victoria Island Lagos,₦,"90,000,000",1,0,0,3 beds,0 baths,0 Toilets +4 Units Of 3 Bedroom Apartment (pcl 217),Oniru Victoria Island Lagos,₦,"300,000,000",0,0,1,3 beds, baths, Toilets +4 Units Of 4 Bedroom Terraced Duplex (pcljuly21 002),Oniru Victoria Island Lagos,₦,"150,000,000/year",0,1,0,4 beds, baths, Toilets +9 Units Of 4bedroom Terrace ( Pcl 160),Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds, baths, Toilets +4 Bedrooms Terrace (pcl 032),Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Units Of 5 Bedrooms Semi Detached Duplex (pcl 149),Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Terraced Duplex (pcl 218),Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Massionette (0010a),Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds, baths, Toilets +3 Bedroom Flat,Off Palace Road Oniru Victoria Island Lagos,₦,"90,000,000",1,1,1,3 beds,4 baths,4 Toilets +Luxury 2 Bedrooom Apartment,Victoria Island Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Furnished And Serviced 4 Bedroom Penthouse,Oniru Victoria Island Lagos,₦,"150,000,000",1,0,1,4 beds,4 baths,5 Toilets +"2,000sqm Fenced Land",Not Far From Shoprite Oniru Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,5 baths,6 Toilets +3bedroom Flat,Oniru Royal Estate Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Apartment,Estate 1004 Victoria Island Lagos,₦,"68,000,000",0,0,1,2 beds,1 baths,2 Toilets +Luxury 3 Bedroom Ocean View Apartment,Remi Olowude Street. Victoria Island Extension Victoria Island Lagos,₦,"193,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Serene Neighborhood Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Commercial Storey Building,Via Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxiruy 2 Bedroom Apartment With Bq,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"185,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxury 2 Bedroom Ocean View Apartment,"Remi Olowude Street, Lekki Waterfront, Lagos Victoria Island Extension Victoria Island Lagos",₦,"135,000,000",1,0,0,2 beds,3 baths,2 Toilets +10 Units Of 4bedroom Fully Detached Duplex,Mini Estate Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,4 beds,4 baths,5 Toilets +"3bedroom Apartment In 1004 Estate, At Ozumba Mbadiwe Street Victoria Island Lagos.",Estate 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,2 baths,3 Toilets +Brand New Serviced 3 Bed Apartment + Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"140,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Flat,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Off Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"140,000,000",1,0,0,3 beds,3 baths,4 Toilets +800sqm Land In Oniru,Oniru Victoria Island Lagos,₦,"296,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terraced Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Top Quality 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,5 Toilets +Smartly Located Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Parcel Of Land,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Prime Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2007sqm Land,Bislhop Kale Street Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom House,3&4 Water Corporation Road Landmark. Oniru Victoria Island Lagos,$,"120,000/sqm",0,0,0,10 beds,10 baths,10 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Luxury Terrace With Maidroom(fully Serviced),Off Ahmadu Bello Way Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Almost Completed 4bed Room Spacious Semi Detached Duplex, A Room Bq",Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Tiamiyu Savage Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,5 baths,5 Toilets +Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +5 Bedroom Luxury Terrace, Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Joint Venture Land,Oniru Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of Flats,Victoria Island Extension Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Bedroom Serviced Flat & A Bq On 1st Floor (lift, Pool, Gym)",Oniru Estate / Akiogun Road Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,0 Toilets +8 Bedrooms Fully Detached House With Gatehouse,Karimu Kotun Victoria Island Lagos,₦,"750,000,000",0,0,0,8 beds, baths,6 Toilets +15units Of 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced Compact/portable 3bedroom Apartment, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedrooms Apartment (fully Serviced),Ademola Adetokunbo Victoria Island Lagos,₦,"130,000,000",1,1,0,2 beds,2 baths,3 Toilets +Office Complex,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Detached 5 Bedroom House(all Ensuite ) With 3 Rooms Bq,Vgc Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",1,0,1,5 beds,5 baths,5 Toilets +4 Bedrooms Terrace Duplex With Maidroom(fully Serviced),Oniru Victoria Island Lagos,₦,"138,000,000",1,1,0,4 beds,4 baths,5 Toilets +14 Units Of 4 Bedrooms En Suite With Walk In Closets And A Bq Semi Detached Houses,Teslim Elias Street Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,4 baths,4 Toilets +"6 Beds,bq,laundry Room, Penthouse Duplex On The 6th & 7th Floor 650m . 4 Car Park, Sw Pool, Gym, Cctv, 24hrs Ligh, Etc. Oniru Estate Vi Extension",Oniru Estate Vi Extension Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,1,0,6 beds,6 baths,6 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,1,3 beds,4 baths,4 Toilets +15 Number Flats,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Ajose Adeogun Street Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedrooms Semi Detached Duplex With Maidroom(brand New),Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",1,0,0,5 beds,5 baths,6 Toilets +11 Units 3 Bedroom Service And Fully Furnished Luxury Flat With Bq,Kofo Abayomi Victoria Island Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment With Maidroom (fully Serviced),Victoria Island Extension Victoria Island Lagos,₦,"190,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Eko Athlantic 2 Bedroom And 3 Bedrooms Luxury Apartment, Eko Atlantic Victoria Island Lagos,$,"1,245,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse Flat,Eko Atlantic City Eko Atlantic Victoria Island Lagos,$,"2,000,000",1,0,1,3 beds,3 baths,4 Toilets +"An Executive, Beautiful And Functional 27 Rooms Hotel With Swimming Pool At Off Ajose Adeogun Street, Vi, Lagos.",Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +5 Bedroom High Toned Luxury Terrace Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3 Bedrooms Terraced Duplex,Vgc Estate Victoria Island Extension Victoria Island Lagos,₦,"400,000,000/year",0,0,0,3 beds,3 baths,4 Toilets +Land,Isheri North G.r.a Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Flat With Boys' Quarter,Victoria Island Lagos,₦,"180,000,000",0,1,0,3 beds,3 baths,4 Toilets +Beautiful 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Two Story Commercial Building:240 Square Meter Open Plan Office Space Per Floor,"Rauf Talyor Close, Off Adeola Odeku Street, Victoria Island, Lagos State Adeola Odeku Victoria Island Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,E Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With Private Elevator, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 4 Bedroom Fully Fitted Terrace House,Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette With Bq,Victoria Island Adeola Hopewell Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Semi Detached Duplex With Bq,Victoria Island Akin Adesola Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex With Bq & Swimming Pool,Oniru Lekki Oniru Victoria Island Lagos,₦,"275,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Eko Atlantic Victoria Island Lagos,$,"1,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Maisonette,Fatai Durosimi Etti Street Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Hotel,1004 Victoria Island Lagos,$,"150,000,000",1,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Maisonette Duplex With Bq,Eko Hotel Adeola Odeku Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment With Bq,Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment With A Room Bq (high Rise),Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex With Swimming Pool,Oniru Victoria Island Lagos,₦,"270,000,000",0,1,0,5 beds,6 baths,7 Toilets +Luxury 3bedroom Apartment,Victoria Island Lagos,₦,"165,000,000",1,1,0,3 beds,3 baths,3 Toilets +Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",1,1,0,4 beds,4 baths,4 Toilets +Land Measuring 1300sm,Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House With Bq,Oniru Victoria Island Lagos,₦,"230,000,000",1,1,0,4 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Roof Top,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Massionette With A Bq,Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury Smart 5bedroom Duplex,Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths, Toilets +Petroleum Products Import Licence,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Beautiful 3 Bedrooms Flat,1004 Estate 1004 Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Off Adeola Odeku Street Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture,Teslim Elias Close Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Joint Ventures Residential Land,Victoria Island Lagos,₦,"1,000,000,000",1,0,0,0 beds,0 baths,0 Toilets +Land,Akin Olugbade Victoria Island Lagos,₦,"415,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Crude Oil Lifting License,Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +Land,Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Super Luxury 3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"850,000",1,0,1,3 beds,3 baths,4 Toilets +Lovely Joint Venture,Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Joint Venture,Sinari Daranijo Street Victoria Island Lagos,₦,"885,000,000",0,0,0, beds, baths, Toilets +Hotel,Vi Victoria Island Lagos,$,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Chief Yesufu Abiodun Street Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Joint Venture,Dideolu Estate Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +A Demolishable Structure,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Parcel Of 26000sqm Land,Victoria Island Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3 Bedrooms Apartment Plus Bq Each,Akin Olugbade Street Victoria Island Lagos Akin Olugbade Victoria Island Lagos,₦,"900,000,000",1,0,0,3 beds,3 baths,4 Toilets +2000 Sqm Joint Venture Land,Oba Oniru Oniru Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Flat,30akin Ogunlewe Victoria Island Lagos Ligali Ayorinde Victoria Island Lagos,₦,"20,000,000/day",0,0,0,4 beds,3 baths, Toilets +Newly Built Luxury Furnished 3bedroom Apartment & Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,3 beds,3 baths,4 Toilets +800+ Sqm Bareland,Off Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean 3bedroom Apartment,Off Fourpoint Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Off Plan Maisonette,Ajose Adeogun Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Four (4) Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,5 baths,5 Toilets +Five (5) Bedroom Terrace Duplex,Victoria Island Lagos,₦,"260,000,000",0,1,0,5 beds, baths,6 Toilets +Newly Built 3 Bedroom Luxury Maisonette With A Bq,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Beautifully Designed 3 Bedroom Terrace Duplex With Bq And Swimming Pool,Victoria Island Lagos,₦,"185,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Terrace Duplex In A Secure Estate,Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four (4) Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,4 baths,5 Toilets +Beautifully Built 3 Bedroom Terrace Duplex + Maids Room,Victoria Island Lagos,₦,"200,000,000",0,1,0,3 beds,3 baths,3 Toilets +2 & 3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths, Toilets +Newly Built Classic 3 Bedroom Serviced Flat,Z Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Four (4) Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,5 baths,5 Toilets +Newly Built 3 Bedroom Serviced Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,5 Toilets +"2 Office Buildings On A Land Mass Having An Area Of Approximately 1,850sqm",Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"150,000,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bed Fully Detached Duplex With Swimming Pool,Stunning Detached Duplex With Bq And Swimming Pool Located In One Of The Most Sort After Location Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",1,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,F Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Serviced Terraced House For Sale In Oniru Estate,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,6 Toilets +4 Bedroom Terraced Duplex,Z Oniru Victoria Island Lagos,₦,"150,000,000",1,0,0,4 beds,5 baths,6 Toilets +Fully Serviced 3 Bedroom Apartment,E Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,4 baths,5 Toilets +Newly Built Fully Serviced 3 Bedroom Terraced House,D Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Flat,Victoria Island Lagos,₦,"170,000,000",1,0,0,3 beds,5 baths,4 Toilets +3 Bedroom Fully Serviced Flat,Oniru Victoria Island Lagos,₦,"95,000,000",1,0,0,3 beds,4 baths,5 Toilets +4 Bedroom Serviced Terraced House For Sale In Oniru Estate,Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,5 baths,6 Toilets +Water Front Land,Waterfront Oniru Oniru Victoria Island Lagos,₦,"3,000,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Massive 4 Bedroom Terrace House.,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bed Penthouse Apartment ( With Furnitures ),Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +30 Rooms Hotel,Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",1,0,1,10 beds,10 baths,10 Toilets +"For Sale: Brand New Fully Serviced 14 Units Of Luxury 3 Bedrooms Flat In Victoria Island, Lagos","Victoria Island, Lagos Victoria Island Extension Victoria Island Lagos",₦,"1,820,000,000",0,1,0,3 beds,3 baths,4 Toilets +"For Sale: Victoria Island Lagos 36,570sqm Multiple Cornerpieces Bareland","Ahmadu Bello/akin Adesola/tiamiyu Savage/karimu Kotun Cornerpieces, Victoria Island, Lagos, Nigeria Ahmadu Bello Way Victoria Island Lagos",$,"75,000,000",0,0,0, beds, baths, Toilets +"For Sale: 2,100sqm Commercial Plot Opposite Silverbird, Ahmadu Bello Way, Victoria Island, Lagos","Opposite Silverbird Galleria, Ahmadu Bello Way, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,500,000,000",0,0,0, beds, baths, Toilets +"Distressed Sale Of 7,000sqm Bare Land","Off City Of David Church Road,, Oniru, Victoria Island Extension, Lagos Oniru Victoria Island Lagos",₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,839sqm Waterfront Plot Off Ligali Ayorinde, Victoria Island, Lagos, Nigeria","Off Ligali Ayorinde Street, Victoria Island, Lagos Ligali Ayorinde Victoria Island Lagos",₦,"828,000,000",0,0,0, beds, baths, Toilets +Land,"Akarigbere Close, Off Idejo Street Adeola Odeku Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Luxury 4 Bedroom Maissonete With Bq,"Inside Oniru Estate, Oniru Victoria Island Lagos",₦,"260,000,000",1,1,0,4 beds,4 baths,5 Toilets +"For Sale: 1676.96sqm Bareland Off Adeola Odeku , Victoria Island, Lagos, Nigeria","Off Adeola Odeku Street, Victoria Island, Lagos, Nigeria Victoria Island Lagos",₦,"850,000,000",0,0,0, beds, baths, Toilets +New Luxury 4bedroom Maisonette With Bq,"Oniru Estate, Oniru, Lagos Oniru Victoria Island Lagos",₦,"260,000,000",0,1,0,4 beds,4 baths,5 Toilets +24 Units Top Notch Luxury 3 Bedroom Apartments Plus Bq And 2 Pent Houses (off Plan),"Oniru Estate, Oniru Victoria Island Lagos",₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Massive Land With Building Approval,"Multiple Cornerpieces Of Akin Adesola/ahmadu Bello/tiamiyu Savage/karimu Kotun Streets, Victoria Island, Lagos, Nigeria Akin Adesola Victoria Island Lagos",$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Units 3 Bedrooms Flats + Bq,"Oniru Estate, Victoria Island Extension Oniru Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Townhouse With Service Quarters,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury Semi Furnished 3 Bedroom Apartments With Ample Terrace Area,Eko Pearl Eko Atlantic Victoria Island Lagos,$,"950,000",1,1,1,3 beds,3 baths,4 Toilets +"Plots, Acres And Hectare Size Land",Eko Atlantic Victoria Island Lagos,$,"550,000",0,0,0,0 beds,0 baths,0 Toilets +A Well Serviced Commercial Space,Oniru Victoria Island Lagos,₦,"13,500,000",1,0,0,0 beds,0 baths,1 Toilets +A Fully Serviced 4bedroom Penthouse With Servant Quarter And Swimming Pool,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"180,000,000/month",1,0,0,5 beds,6 baths,6 Toilets +"A Fenced Land Measuring 2,700sqm Accommodating An Old Structure/duplex Off Adeola Odeku Street, Victoria Island, Lagos State.",Goriola Street Adeola Odeku Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +1400sqm Land,Ahmed Onibudo Street Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +840sqm Land,Off Idejo Street Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Bishop Aboyade Cole Street Victoria Island Lagos,₦,"790,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Bosun Adekoya Stree Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +1260sqm Land,Ahmed Onibudo Street Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Blocks Of Flats House,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,"Oyinjolayemi Street, Victoria Island Lagos",₦,"480,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Off Bishop Oluwole Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +2900sqm Land,Kofo Abayomi Street Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 3bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 2600sqm Land,Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +36570sqm Land,Victoria Island Lagos,$,"2,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial 7500sqm Land,Ajose Adeogun Street Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land,Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Adeola Odeku Victoria Island Lagos,$,550/sqm,0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4452sqm Land,Chief Yesufu Abiodun Way Oniru Victoria Island Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Town House With In Built Bq.,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Completed Block Of 8 Nos 3 Bedroom Luxury Flats With A Room Bq,Oniru Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +19 Units Flats And Mansionate,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Detached House,Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeola Odeku Victoria Island Lagos,₦,"600,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +1008.48sqm Land,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Festival Road Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +"5 Bedroom Duplex, With 2bq",Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,5 beds,5 baths,6 Toilets +947sqm Land,Bishop Kale Close Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 5,300m2",Oniru Victoria Island Lagos,₦,"4,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Two Story Building,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +"7,000sqms Water Front Land",Victoria Island Lagos,₦,"900,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Festive Road Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Units Of Structure,Muri Okunola Street Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Amen Estate Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Eko Atlantic Victoria Island Lagos,$,"850,000",0,0,0,3 beds,3 baths,3 Toilets +2344sqm Land,Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached With 2 Bedroom Guest Chalet And Bq,Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +16000sqm Land,Ahmadu Bello Way Victoria Island Lagos,₦,"5,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Akin Olugbade Victoria Island Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Two Unit Of Detached House,Muri Okunola Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +800sqm Fenced Land,Odudu Eleyiwo Road Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Newly Built 3 Bedroom Terrace Duplex,",Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 6 Units Of 3 Bedrooms Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0,3 beds,0 baths,0 Toilets +Hospital,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +A Property Comprising A Dilapidated Two Storey Building,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Vacant Old Block Of 12 Units Of 2 Bedrooms Flats,Adeola Hopewell Victoria Island Lagos,₦,"900,000,000",0,0,0,2 beds,0 baths,0 Toilets +1400sqm Corner Piece Dry Fenced Land,Oniru Victoria Island Lagos,₦,"580,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Terraces Duplex Plus A Bq,Adeola Odeku Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Ligali Ayorinde Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat / Apartment,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex With 2room Bq,Etim Iyan Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +1600sqm Land,Oyin Jolayemi Street Victoria Island Lagos,₦,"320,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"460,000,000",0,0,0,0 beds,0 baths,0 Toilets +1473.038 Sqm Land,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4450sqm Land,Oniru Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Waterfront 7353sqm With Additional 3000sqm,Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2173sqm Land,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Vacant Block Of 8 Units Of 3 Bedroom Flats,Adeola Hopewell Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3100.76sqm Commercial Land,Chief Yesufu Abiodun Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Land,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000sqm Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Functional Hotel Of 35rooms,Eko Hotel Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +8475.620sqm Waterfront Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached House With A Bq,Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,5 baths,6 Toilets +A Block Of 6 Units,Musa Yar Adua Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +7300sqm Land,Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Uzomba Mbadiwe Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Spacious Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached Duplex,Ligali Ayorinde Victoria Island Lagos,₦,"480,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Land,Kofo Abayomi Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1080sqm Land,Off Muri Okunola Street Victoria Island Lagos,₦,"390,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ligali Ayorinde Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Available Land,T.y Danjuma Street Oniru Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +30 Rooms Hotel,Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,0 baths,0 Toilets +2 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +30 Bedroom Hotel,Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,10 beds,10 baths,10 Toilets +The Oriental Hotel,Oniru Victoria Island Lagos,$,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Nice 400 & 450sqm Plot,Oniru Estate Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200 Sqm Of Land,Off Kuboye Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Parcel Of Land (water Front),Oniru Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With A Bq,D Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex With A Bq,D Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace With A Bq,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,3 baths,5 Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Modern Day 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom High Toned Luxury Terrace Duplex,Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Spacious 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Tastefully Finished 3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Luxury 5 Bedroom Detached Duplex With Bq,Lekki Oniru Extension Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Neat 4 Bedroom Semi Detached Luxury Apartment,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"125,000,000",1,1,1,4 beds,5 baths,5 Toilets +Gorgeous Massionette At Affordable Price,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"220,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Detached Duplex In Well Planned Estate,Vgc Harris Drive Victoria Island Extension Victoria Island Lagos,₦,"98,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built Serviced 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +"Size 1,500 Sqms Fenced Land",Off Mabogunje Street Oniru Estate Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +800sqm Residential Land,Oniru Victoria Island Lagos,₦,"298,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 27 Rooms Hotel,Off Ajose Adeogun Street Victoria Island Lagos,$,"3,500,000",0,0,1, beds, baths, Toilets +5bedroom Detached Duplex With Bq,Victoria Island Lekki Lagos Victoria Island Lagos,₦,"270,000,000",0,1,1,5 beds,6 baths,6 Toilets +4 Bedroom Semi Detached House,Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +5bedrooms Fully Detached Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,5 beds, baths, Toilets +3 Bedrooms Flat With Attached Bq,Off Ajose Adeogun Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Storey Commercial Building,Off Ademola Adetokunbo Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +2000m2 Land,Akin Adesola Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Brand New Fully Fitted And Serviced:block Of Flats And Maisonette,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +A Well Built 3 Storey Building With Ground Floor Area Of About 250sqm,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Waterfront Bare Land,Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5322sqm Land,Off Idejo Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Brand New 4 Bedrooms Duplex,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4200sqm Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +2262sqm Land,Off Karimu Kotun Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Bareland,Eko Atlantic Victoria Island Lagos,₦,"2,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Tenanted Fully Fitted 3 Bedroom Apartment With A Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,3 Toilets +6000sqm Waterfront Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +1523sqm Land,Off Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +2400sqm Land With Old Detached House With Bq,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Detached Commercial House, Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House,Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2 Storey Branch Premises,Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1781sqm Land,Ajose Adeogun Street Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +5 Bedrooms Fully Detached House With Maids Quarters,Ajose Adeogun Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Apartment (cluster A),1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 4 Bedroom Semidetached House,Victoria Island Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +7 Bedroom Detached House With 2 Large Living Room,Off Bishop Oluyole Victoria Island Lagos,₦,"450,000,000",0,0,0,7 beds,7 baths,8 Toilets +4523sqm Corner Piece Land,Off Ozumba Mbadiwe Street Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +2533sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +5400sqm Land,Ligali Ayorinde Victoria Island Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +8 Units Of 3 Bedroom Apartments,Off Ademola Adetokunbo Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached Duplex, Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +7350sqm Waterfront Land,Victoria Island Extension Victoria Island Lagos,₦,"2,793,000,000",0,0,0, beds, baths, Toilets +Available Land,Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Luxurious 3 Bedroom Fully Fitted Fully Equipped Maisonette Apartment, Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,5 Toilets +5000sqm Land,Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +4700sqm Land,Adeola Odeku Victoria Island Lagos,₦,"3,700,000,000",0,0,0, beds, baths, Toilets +A Waterfront 5 Star Luxury Hotel,Ozumba Mbadiwe Victoria Island Lagos,$,"220,000,000",0,0,0, beds, baths, Toilets +"12,000sqm Waterfront Fantastic Operational Business With Private Jetty",Ozumba Nbadiwe Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Detached Duplex Converted To Office Space,Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Newly Built 25 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Hotel,Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +6units Of 3bedroom Flats Commercial Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +4941sqm Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +3300sqm Waterfront Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +4000sqm Land With Old 7 Bedrooms Detach House With Bq,Off Adeola Odeku Victoria Island Lagos,₦,"1,850,000,000",0,0,0, beds, baths, Toilets +2450sqm Land,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Cornerpiece Detached House,Off Ligali Ayorinde Street Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Brand New 3 Bedroom Apartment With Bq, Serviced",Adeola Odeku Victoria Island Lagos,₦,"125,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,3 Toilets +3048sqm Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Luxury Units Of 3 & 4 Bedroom Houses,Oniru Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1900sqm Land,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +6 Units Of 3 Bedroom Apartments,Ahmadu Bello Way Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,3 baths,3 Toilets +27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Available Land,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Nos. Duplexes (a Commercial And Residential Duplex),Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment On A Top Floor In A Beautiful High Rise With Views Of The Ocean,Victoria Island Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5322sqm Land,Off Idejo Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +6 Rooms Fully Detached Duplex Converted To Office Spaces,Victoria Island Lagos,₦,"450,000,000",0,0,0,6 beds,0 baths,0 Toilets +6 Floors Highrise Commercial Towers,Victoria Island Lagos,$,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Floors Commercial Building,Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Luxury Apartment,Old Victoria Island Victoria Island Lagos,₦,"165,000,000",0,0,0,2 beds,2 baths,2 Toilets +Compound With 2 Detached Buildings,Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom With Bq And Swimming Pool,Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,4 Toilets +Available Land,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House(corner Piece),Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000sqm Land,Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +1817sqm Commercial Land,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5000m2 Land,Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Commercial Property,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Available Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious Office Space,Off Ajose Adeogun Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +12000sqm Fantastic Operational Business Property,Ozumba Mbadiwe Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets +30 Room Hotel,Off Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4000sqm Commercial Property,Off Ahmadu Bello Way Victoria Island Lagos,$,"8,000,000",0,0,0, beds, baths, Toilets +An Office Floor On 3 Blocks,Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +5000sqm Fenced Land,Oniru Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Fitted 5 Bedroom Luxury Waterview Terraces With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +5000sqm Fenced Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3000sqm Land,Akin Olugbade Street Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,₦,"30,000,000/year",0,0,0,3 beds,3 baths,3 Toilets +750sqm Land,Ajose Adeogun Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With Bq,Off Bishop Oluyole Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Fully Fitted And Serviced: 2 Nos Of 4 Bedrooms Maisonette With Bq And 6 Nos Of 3 Bedrooms Flat With Bq,Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +New 4 Bedroom Semi Detached House,Adeola Odeku Victoria Island Lagos,₦,"280,000,000",0,0,0,4 beds,0 baths,0 Toilets +3300sqm Corner Piece Land,Ligali Ayorinde Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +3 Blocks Detached Houses With Penthouses And Bqs Perfect For Residential And Official/commercial Uses,Off Ajose Adeogun Vi Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +A 26 Suites Non Functional Hotel On 1706sqm Of Land At A Strategic Location,Oniru Oniru Victoria Island Lagos,₦,"1,300,000,000/sqm",0,0,0,10 beds,10 baths,10 Toilets +Contemporary 5 Bedrooms Semi Detached Duplex In A Secured Location In Oniru,Oniru Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built Beautifully 5 Bedroom Fully Detached,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment On The 11th Floor,Eden Heights Off Adeola Odeku Victoria Island Lagos,₦,"320,000,000",1,1,0,3 beds,4 baths,0 Toilets +Full Serviced 3 Bedroom Pad,T Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Well Designed And Spacious 4 Bedroom Terrace Duplex In A Secured Estate In Oniru,Oniru Victoria Island Lagos,₦,"125,000,000",0,1,0,4 beds,5 baths,5 Toilets +"4 Bedroom Luxury Detached Duplex With Internal/external Facilities Include: 2 Living Rooms Fully Fitted Kitchens (extractor, Kitchen Cabinets, In Built Cooker Unit Etc)",Oniru Oniru Victoria Island Lagos,₦,"1,850,000,000",0,1,0,4 beds,5 baths,7 Toilets +New 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Apartment,Victoria Island Lagos,$,"600,000",0,0,0,4 beds, baths, Toilets +Newly Built 4bedroom Terrace With Maid’s Quarters,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,4 beds,4 baths,5 Toilets +Brook's Channel Points Apartments,Sinari Daranijo Victoria Island Lagos,₦,"165,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 3 Bedroom Flats,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,1,1,3 beds,3 baths,3 Toilets +800 Sqmtrs Of Residential Land,"Oniru Private Estate, Oniru Oniru Victoria Island Lagos",₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built3 Bedroom Flat + 1 Room Bq,1 Minute Walk From Landmark Beach And Film House. Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +Sandfilled Strategic Waterfront Land,Victoria Island Lagos,₦,"900,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land 260k/ Sqm,Musa Yaradua Crescent Victoria Island Lagos,₦,"260,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land With Demolish Able Building,Ajose Adeogun Str Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Newly Well Built Grade A Open Plan Office,Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000,000",0,1,0, beds, baths, Toilets +Newly Built 5bdrm Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +6bedroom Detached House With Bq,Off Amodu Ojikutu Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +800 Square Meters Land,Oniru Victoria Island Lagos,₦,"296,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Hotel With C Of O,Victoria Island Lagos,₦,"3,500,000,000,000",0,1,0, beds, baths, Toilets +Land With C Of O,Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Nice 3bedroom Penthouse,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom Detached House,Medical Close Off Olabode George Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Units Of 4 Bedroom Maisonette Duplex With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,4 Toilets +3bedroom Flat With C Of O,Eko Pearl Tower Eko Atlantic Victoria Island Lagos,₦,"650,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"270,000,000",0,0,0,0 beds,0 baths,0 Toilets +12 Units Of 3 Bedroom Flats With Bq (payment Plan),Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Detached House With 3room Bq,Sinari Adaranijo Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plots Of Land,"...,. Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0, beds, baths, Toilets +2000sqm Land, Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of Serviced 3bedroom Flat With Bq,Akin Olugbade Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Functional 27 Room Hotel Off Ajose Adeogun Street, Vi, Lagos",Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment With A Bq + A Swimming Pool.,Victoria Island Lagos,₦,"150,000,000",1,1,0,3 beds,3 baths,4 Toilets +Ultra Luxury 3 Bedroom Penthouse + A Maids Room With World Class Facilities.,Eko Pearl Towers Eko Atlantic Victoria Island Lagos,₦,"900,000,000",1,1,0,3 beds,3 baths,4 Toilets +7 Bedroom Waterfront Palatial Mansion With Jetty In Banana Island,Victoria Island Lagos,₦,"4,500,000,000",0,0,1,7 beds, baths, Toilets +Magnificently Finished 4 Bedroom Semi Detached Duplex With Bq In A Secured Estate,Gated Estate Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Serviced & Flawlessly Finished 3 Bedroom Flat With Bq,Gated Estate Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Flawlessly Finished 3 Bedroom Flat With Bq In A Gated & Serviced Estate,Gated Estate Ligali Ayorinde Victoria Island Lagos,₦,"90,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisitely Built 4 Bedroom Detached Duplex With Bq In A Quiet Neighbourhood,Gated Estate Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq In A Gated Estate,Gated Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,1,4 beds,0 baths,0 Toilets +Bare Land,Landmark Road Ligali Ayorinde Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Bare Land,Ligali Ayorinde Road Ligali Ayorinde Victoria Island Lagos,₦,"5,600,000,000",0,0,0, beds, baths, Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq In A Quiet Neighbourhood,Gated Estate Victoria Island Lagos,₦,"138,000,000",1,1,0,4 beds,4 baths,5 Toilets +Magnificently Finished 4 Bedroom Detached Duplex With Bq,Gated Estate Oniru Victoria Island Lagos,₦,"175,000,000",1,1,0,4 beds,4 baths,5 Toilets +Flawlessly Finished 5 Bedroom Detached Duplex With Bq & Swimming Pool,Gated Estate Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds,5 baths,6 Toilets +Exquisitely Built 4 Bedroom Terrace Duplex With Bq,Mini Estate Victoria Island Lagos,₦,"105,000,000",1,0,0,4 beds,5 baths,5 Toilets +Magnificently Finished 4 Bedroom Terrace Duplex With Guaranteed Power Supply,Gated Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Bq,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,1,5 beds,0 baths,0 Toilets +Brand New Furnished 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Flat,Victoria Island Lagos,$,"1,000,000",0,0,1,3 beds,5 baths,5 Toilets +Luxurious Super Deluxe 2 Bedrooms Apartments,Jide Oki Street Victoria Island Lagos,₦,"150,000,000",1,1,1,2 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Flat With Bq,Eighteen 65 Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,4 baths,4 Toilets +Luxury High Rise Building,Adeola Odeku Victoria Island Lagos,$,"65,000,000",0,0,0, beds, baths, Toilets +C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Maisonette Duplex With Bq,Eighteen 65 Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets +C Of O Water Front Sand Filled And Fenced Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Lovely Units Of Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",1,0,0,3 beds,0 baths,0 Toilets +Block Of Eight Units Of Three Bedroom Flats,Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,4 baths,4 Toilets +A Building With 2 Floors,Sanusi Fafunwa Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Duplex With Bq In Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,4 beds,4 baths,5 Toilets +Joint Venture Bare Land 5200sqm,Ligali Ayorinde Victoria Island Lagos,₦,"4,200,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 6 Unit Of 3bedroom Flats And 2unit Of Mansionate With Swimming Pool And Gym,Estate Victoria Island Extension Victoria Island Lagos,₦,"1,100,000,000",1,1,1,3 beds,4 baths,4 Toilets +Newly Built 4bedroom Semi Detached Duplex In A Serene Environment,Oniru Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets +Four Floors Of Office Space,Off Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +A Commercial Block On 6 Floors With Ample Parking Space,Victoria Island Saka Tinubu Victoria Island Lagos,₦,"2,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +5bedroom Fully Detached House And Spacious,Muri Okunola Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Lovely 5 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,4 Toilets +4 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedrrom Detached Duplex On 750sqm,Muri Okunola Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,6 baths,6 Toilets +"Plot Of Land Measuring 2,900 Square Meters", Kofo Abayomi Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 4bedroom Duplex With A Room Bq,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",1,1,1,4 beds,5 baths,5 Toilets +Newly Built Four Bedroom Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,4 beds,5 baths,5 Toilets +Luxury 4bedroom Duplex Semi Detached Duplex,Z Victoria Island Lagos,₦,"200,000,000",1,1,1,4 beds,5 baths,5 Toilets +A 5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds, baths, Toilets +Mini Estate,Chief Yusuf Abiodun Street Oniru Victoria Island Lagos,₦,"1,900,000,000",1,0,0,5 beds,5 baths,6 Toilets +Building On The 5th Floor For Sale,1004 Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Oniru Land,Off Palace Road Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Luxury Terrace Duplexes,Off Ozumba Mbadiwe Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,3 Toilets +"2, 3 And 4 Bedroom Luxury Apartment", Oniru Victoria Island Lagos,₦,"80,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Detached Duplexes In Oniru,Palace Road Oniru Estate Victoria Island. Oniru Victoria Island Lagos,₦,"170,000,000",1,1,0,4 beds,4 baths,4 Toilets +1 Bedroom Apartments,Dubai Victoria Island Lagos,$,"200,243",1,1,0,1 beds,3 baths,3 Toilets +3 4 Bedroom Beautiful Finished Townhouses,"Nshama Town Square, Dubai. Victoria Island Lagos",$,"410,960",1,1,0,3 beds,3 baths,3 Toilets +4 Bedrooms Terrace Duplex With Bq,Victoria Island Victoria Island Lagos,₦,"130,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedroom Mansionette With Bq,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,5 baths,5 Toilets +"Fully Serviced 4 Bedroom Terrace Duplex With Private Elevator, Roof Terrace,gym And Pool", Oniru Victoria Island Lagos,₦,"300,000,000",1,1,1,0 beds,5 baths,5 Toilets +Newly Built 10 Units Of 3 Bedroom Maisonettes With Bqs,Visage Apartments Ademola Adetokunbo Victoria Island Lagos,₦,"170,000,000",0,1,0,3 beds,3 baths,4 Toilets +4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"275,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex And 1 Bq,Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"189,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +16 Units Of 3 Bedroom Flats,Idowu Martins Street Victoria Island Lagos,₦,"2,800,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Akin Olugbade Victoria Island Lagos,₦,"450,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lavishly Finished 4 Bedrooms Semi Detached Duplex With A Room Bq,Chevron Alternative Route Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +2835.902sqm Land,"Akin Olugbade, Victoria Island Akin Olugbade Victoria Island Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Maisonette Duplex With Bq (certificate Of Occupancy) Eighteen 65,Fatai Durosinmi Victoria Island Lagos,₦,"130,000,000/day",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With Pool,Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,0 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex,Hh Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Fully Detached Duplex With A Pent House,Oniru Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,5 baths,6 Toilets +1 Bedroom Maisonette,Victoria Island Lagos,₦,"60,000,000",0,0,0,1 beds,1 baths,2 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 5 Bedroom Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"300,000,000",1,0,0,5 beds,5 baths,6 Toilets +Spacious 3 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Apartment,Victoria Island Lagos,₦,"110,000,000",1,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Terraced Duplex,S Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached House,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex In Oniru Vi,Oniru Vi Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,6 Toilets +Fully Serviced 3 Bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +Clean 3bedroom Flat With 1 Room Bq, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"330,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished Luxury 4 Bedroom Terrace Duplexes,"Around Kofo Abayomi, Kofo Abayomi Victoria Island Lagos",₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 6 Bedroom Detached Duplex,Victoria Island Lagos,₦,"500,000,000",0,0,0,6 beds,6 baths,7 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Offplan 3 Bedroom Apartment,"Balarabe Musa,vi ,lagos. Victoria Island Extension Victoria Island Lagos",₦,"140,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Offplan 3 Bedroom Apartment,"Balarabe Musa,vi ,lagos. Victoria Island Extension Victoria Island Lagos",₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +Own An Apartment Or Simplex In Azuri Towers,Azuri Towers Eko Atlantic Victoria Island Lagos,$,"4,500,000",1,1,1,6 beds,6 baths,7 Toilets +Luxury 3 Bedroom Terrace Duplex With B/q,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Luxury 4 Bedroom Townhouse With B/q,Adeniyi Coker Street Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Fully Detached Duplex With B/q,Palace Road Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Decent Furnished & Serviced Ocean View 2bedroom Maisonette,1004 Victoria Island Lagos,₦,"58,000,000",1,0,1,2 beds,2 baths,3 Toilets +"Newly Built & Fully Serviced 4bedroom Terrace On 2floors With Bq, S/pool & Gym",Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom With Bq,"Victoria Island Extension, Oniru Lagos Oniru Victoria Island Lagos",₦,"135,000,000/day",0,0,1,4 beds,4 baths,5 Toilets +3 Bedroom Maisonnette With Bq,Ajose Adeogun Street Fatai Durosimi Etti Victoria Island Lagos,₦,"130,000,000/day",0,0,1,3 beds,3 baths,3 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +New 4 Bedroom Terrace House In A Serene Environment,"The Roswell Terrace , Off Palace Road Oniru Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,5 baths,6 Toilets +Building On 1866 Sqm Of Land,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex With Bq,"Megamound, Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartments With Swimming Pool And Lawn Tennis,Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,4 Toilets +A New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,0 baths,0 Toilets +4 Bedroom Semidetached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 3 Bedroom Terrace,Abraham Adesanya Victoria Island Lagos,₦,"35,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,4 baths,4 Toilets +Units Of Newly Built Luxury 4 Bedroom Terraced Duplex,Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"180,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Serviced 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex With Excellent Facilities,Teslim Elias Close Ahmadu Bello Way Victoria Island Lagos,₦,"300,000,000",1,1,1,4 beds,5 baths,5 Toilets +2 Bedroom Apartment,Adebisi Omotola Akin Adesola Victoria Island Lagos,₦,"100,000,000",0,0,0,2 beds,3 baths,3 Toilets +Newly Built And Exotic 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"300,000,000",0,1,0,5 beds, baths, Toilets +Land,"Akin Adeola,ahmadi Bello Way Akin Adesola Victoria Island Lagos",$,"75,000,000/month",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment With A Room Bq,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex Located In A Serene Estate,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",0,1,1,5 beds,5 baths,5 Toilets +Super Affordable 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,1,5 beds,0 baths,0 Toilets +Hotel Of 65 Luxury Card Rooms,Tiamiyu Savage Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedrooms Apartment,Walter Carrignton Victoria Island Extension Victoria Island Lagos,$,"800,000",0,0,0,4 beds,0 baths,0 Toilets +Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Victoria Island Extension Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"50,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Apartment, Victoria Island Lagos,₦,"93,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Luxury 4 Bedroom Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,4 Toilets +Four Bedroom Terrace Duplex With Swimming Pool And Gym,Addyholly Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,1, beds, baths, Toilets +Block Of Flats,Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,"Atlnatique Mew Estate , Oniru Victoria Island Oniru Victoria Island Lagos",₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +25 Hotel Rooms,Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Detached Duplex,Festival Road Oniru Victoria Island Lagos,₦,"500,000,000",0,1,1,5 beds,5 baths,6 Toilets +High Rise Property,Off Adeola Odeku Street Lagos Island Victoria Island Lagos,$,"100,000,000",1,0,1,10 beds,10 baths,10 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,4 baths,4 Toilets +Spacious 4 Bedroom Terrace Apartment With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,1,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"230,000,000",0,1,1,4 beds,5 baths,5 Toilets +Spacious 4 Bedroom Semi Detached Duplex With A Mini Flat Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,5 baths,5 Toilets +Ocean View Luxury 2 Bedroom Apartment,Remi Olowude Victoria Island Extension Victoria Island Lagos,₦,"98,000,000",1,0,0,2 beds,2 baths,3 Toilets +Tastefully Finished 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Bq,Oniru Oniru Victoria Island Lagos,₦,"125,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New Spacious 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"210,000,000",1,1,1,4 beds,4 baths,5 Toilets +Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Beautifully Built 4 Bedroom Terrace Duplex,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Tastefully Finished 5 Bedroom Fully Detached Duplex With A Bq,Oniru Oniru Victoria Island Lagos,₦,"300,000,000",1,1,1,5 beds,5 baths,6 Toilets +Brand New 4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Terrace Duplex With A Swimming Pool In A Serene Neighborhood,Oniru Oniru Victoria Island Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxurious 2 Bedroom Apartment With Boys Quarter,Musa Yaradua Street; Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"150,000,000",1,0,0,2 beds,2 baths,3 Toilets +Luxurious 1 Bedroom Apartment,Musa Yaradua Street; Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"60,000,000",1,0,0,1 beds,1 baths,2 Toilets +Paramount Luxurious 3 Bedrooms Apartment,Remi Olowude Street Oniru Victoria Island Lagos,₦,"134,000,000",1,0,0,3 beds,3 baths,4 Toilets +Contemporary 4 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"360,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Eko Atlantic Victoria Island Lagos,$,"875,000",0,0,0,3 beds,3 baths,3 Toilets +Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +Luxury 5bedroom Fully Detached Duplex,Victoria Island Lagos,₦,"120,000,000",1,0,1,5 beds,6 baths,6 Toilets +4 Bedroom Apartment," Location: Victoria Island, Lagos Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land,Ademola Adetokunbo Victoria Island Lagos,₦,"550,000",0,0,0,0 beds,0 baths,0 Toilets +Demolishable Building,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Apartment With A Bq,Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,2 beds,2 baths,2 Toilets +Land,Eko Atlantic Victoria Island Lagos,₦,"5,840,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury Spacious 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"175,000,000",0,1,0,4 beds,4 baths,5 Toilets +Three Story Building,Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture For Land Size Of 1800sqms,Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 1500 Sqms,Karimu Kotun Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Vacant Land And Uncompleted Block 8 Numbers Of 3 Bedroom Flats (price Per Sqm),Akin Olugbade Victoria Island Lagos,₦,"550,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 4 Bedrooms Bungalow With Bq,Victoria Island Lagos,₦,"95,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land Of 1555 Sqm,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Unit Of 3bed Room Flat + Bq For Each Flat,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds, baths, Toilets +Bare Land Of 1555 Sqm,Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 2 And 3 Bedroom Apartments With Communal Swimming Pool And Bq,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +3 Bedroom Flat,S Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets +2 Floors Detached Office Space,Victoria Island Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets +55 Room Hotel,Victoria Island Victoria Island Lagos,₦,"1,900,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Semi Detached Duple,Oniru Victoria Island Lagos,₦,"225,000,000",0,0,0,5 beds,0 baths,0 Toilets +Office Space,Oko Awo Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"750,000",0,0,0,10 beds,0 baths,0 Toilets +Premium 4 Bedroom Maissonnette With A Bq,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 3 Bedroom Semidetached Duplex With A Bq And Pool In A Serene Environment,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +3bedroom Apartment Serviced,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Stunning 4 Bedroom Terrace With Bq,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 2 3 Bedroom And Studio Shortlet Apartments,Sinari Daranijo Street Behind Zenith Bank Hq Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,3 Toilets +3 Star Hotel,Off Ligali Ayorinde Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Adeola Odeku, Off Idejo Str Land For Sale. Size 5,200sqm","Akarigbere Close, Off Idejo Stre Adeola Odeku Adeola Odeku Victoria Island Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"Oniru Lagos, 4 Bedroom Terrace Duplex With Bq",Victoria Island Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,5 beds,5 baths,6 Toilets +3304sqm Corner Piece Land,Muri Okunola Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Oniru, Victoria Island,land Size 2300sqm",Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"Closable, Oniru Land For Sale 1500sqm",Victoria Island Oniru Victoria Island Lagos,₦,"260,000",0,0,0, beds, baths, Toilets +"Oniru Joint Venture Land, Victoria Island 600sqm.",Victoria 6 Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Jv Land At Victoria Island Oniru, 26000sqm",Oniru Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +"Oniru, Victoria Island Land For Sale, 1785sqm",Victoria Island Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +"Oniru Victoria Island, 4 And 5 Bedroom Townhouses",Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +4864sqm Jv Land,S Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Oniru, Victoria Island. 6 And Half Plots For Sale",Victoria Island Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,"1004 Estate, Block C Victoria Island Lagos",₦,"65,000,000",0,0,0,3 beds, baths, Toilets +"Victoria Island, Akin Adesola Land For Sale.",Akin Adesola Victoria Island Lagos,₦,"15,000,000,002",0,0,0, beds, baths, Toilets +Spacious 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Adeola Odeku, Off Idejo Str Land For Sale. Size 5,200sqm","Akarigbere Close, Off Idejo Stre Adeola Odeku Adeola Odeku Victoria Island Lagos",₦,"1,600,000,000",0,0,0, beds, baths, Toilets +Oniru Waterfront Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Eighteen 65 Residences Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"120,000,000/month",1,1,0, beds, baths, Toilets +"Eko Atlantic Joint Venture, Land Size 9000sqm",Eko Atlantic Eko Atlantic Victoria Island Lagos,$,"1,500",0,0,0, beds, baths, Toilets +"Oniru, Victoria Island, Land Size For Sale, 1500sqm",Victoria Island Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Brand New 3 Bedroom Apartment,Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Oniru Victoria Island, 2 Nos Of 1200sqm Of Land",Victoria Island Oniru Victoria Island Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets +Strategic Location Landed Property,Besides Landmark Towers Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +"Oniru, Off Place Road, 2350sqm Corner Piece Land",Off Palace Road Oniru Victoria Island Lagos,₦,"455,000,000",0,0,0, beds, baths, Toilets +Bank Building,Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Story Building,Ademola Adetokunbo Victoria Island Lagos,₦,"25,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq In Victoria Island,Victoria Island Extension Oniru Oniru Victoria Island Lagos,₦,"130,000,000/sqm",0,0,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Victoria Island Extension Oniru Oniru Victoria Island Lagos,₦,"130,000,000/sqm",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,4 Toilets +Urban City Tastefully Finished 3 Bed Apartment With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace,Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,4 baths,5 Toilets +3bedrooms Semi Detached Duplex With Bq,Vi Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartments,Phoenix Tower Eko Atlantic Victoria Island Lagos,₦,"270,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached Duplex With Bq For Sale,"Oniru, Victoria Island Lagos Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths, Toilets +Newly Built 4bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exquisitely Finished 4 Bedroom Terrace Duplex And A Room Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Western Standard Beautiful 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Modern Day 3 Bed Apartment With Elevator, Swimming Pool And Bq",Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Newly Built 4 Bedroom Terraced Duplex With Gym, Swimming Pool And Bq",Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets +3 Units Of 4 Bedroom Maisonette Duplex With Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Serviced 3 Bedroom Flat, Eko Atlantic Victoria Island Lagos,$,"1,500,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Contemporary 4 Bed Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,4 Toilets +Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Bedroom Semi Detached Duplex,Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,3 Toilets +Beautiful 4 Bedroom Terrace,Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace,Waziri Ibrahim Crescent Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,H Ahmadu Bello Way Victoria Island Lagos,₦,"1,500,000,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse,Victoria Island Extension Victoria Island Lagos,$,"1,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace Duplex With Rooftop,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,4 Toilets +2 Bedroom Flats,1004 Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 4bedroom Terrace Duplex With Bq And Swimming Pool In Vi,Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0, beds, baths, Toilets +4bedroom Semi Detached Duplex With Bq,G Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"220,000,000",0,1,0,0 beds,3 baths,0 Toilets +"1st Class Office Complex In Victoria Island On Ten (10) Floors With Helipad *land Size: * 2,644 Sqm * Lettable Space: * 9,176 Sqm *",Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets +4star Luxury Hotel.**** Over 65rooms Dining Conference Halls Swimming Pools State Of The Art Amenities Everything Sell *100% Luxury*,Victoria Island Lagos,₦,"14,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Duplex With Bq At Oniru,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets +Commercial Property In Victoria Island Precisely Ajose Adeogun Is Out Size: 1413sqm.,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +2 Units Detached Houses On 8500sqm Land Size At Walter Carrington,Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +"Modern Headquarters Building On Eight Floors (5,559m2 Lettable Space)with Another Building On Two Floors (1,200m2 Lettable Space)with Other Auxillary Buildings All On Land Area Of 9,365m2 (2.38acres)",Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +"A New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building With Helipad Of 15 Floors",Victoria Island Lagos,₦,"20,000,000,000",0,0,0, beds, baths, Toilets +Office Space 1098sqm,Inazuri Towers Eko Atlantic Victoria Island Lagos,$,"4,500/sqm",0,0,0,0 beds,0 baths,0 Toilets +"A Detached House Within A Land Size Of 2262sqm At Imam Augusto, Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Karimu Kotun Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"25 Luxury Bedrooms Posh Hotel Facility With Restaurant, Lounge/bar, Massive Conference Room, Standard Pool",Victoria Island Lagos,$,"4,000,000",0,0,0, beds, baths, Toilets +3 Bedrooms Apartments (off Plan),The Knight Towers Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Maisonette With 2 Bq In Victoria Island,Ahmadu Bello Way Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +4200sqm Land In Victoria Island,Victoria Island Lagos,₦,"600,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Detached Duplex With Bq In A Serviced Estate,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds, baths, Toilets +10units Of Four (4) Bedroom Luxury Detached Duplexes,Palace Road Oniru Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds, baths, Toilets +*out Now* 8 Units Of 3 Bedroom Flat On A Land Area Of 4100sqm At Victoria Island Lagos,S Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Floors + Penthouse Land Area Is 1360 Sqm Each Floor 395aqm Car Park 20 Cars,Victoria Island Lagos,$,"18,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Penthouse,Victoria Island Lagos,₦,"135,000,000",0,0,0, beds, baths, Toilets +"10,000sqm Of Land",S Ahmadu Bello Way Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds, baths, Toilets +3000sqm Plot,Akin Olugbade Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2100 Sqm Land Opposite Silver Bird Galleria, Victoria Island With C Of O And Approved Plan For Highrise Development.",Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2bedroom Guest Chalet And 2 Bedroom Bq,Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds, baths, Toilets +Super Affordable 5 Bedroom Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,0 baths,0 Toilets +Ready To Build Corner Piece 1400sqm Of Land With Governor's Consent,D Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"11,000m2 Plot Along Ligali Ayorinde St By Water Corporation Drive Victoria Island With C Of O",Ligali Ayorinde Victoria Island Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets +1800 Sqm Land,D Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Detached House Within A Land Size Of 2262sqm At Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +2475 Square Meters On Akin Adesola Victoria Island,Akin Adesola Victoria Island Lagos,₦,"1,600,000,000",0,0,0, beds, baths, Toilets +"Now Selling Eko Atlantic City ( Marine Zone ) Water Front* *prime Corner Piece Land, Victoria Island, Lagos*",Eko Atlantic Victoria Island Lagos,$,"2,800/sqm",0,0,0, beds, baths, Toilets +2 Bedroom Brand New Apartment With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds, baths, Toilets +2 Bedroom Luxury Apartment,Victoria Island Lagos,₦,"110,000,000",0,0,0,2 beds, baths, Toilets +13 Block Of Flats On 1000sqm Land Size,Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,3 beds,0 baths,0 Toilets +2835.902sqm Land,F Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000 Sqm Along Main Road Close To Shoprite,Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"Penthouses, Luxury Highrise Apartments And Lands Available",Eko Atlantic Victoria Island Lagos,$,"2,700,000",0,0,0,4 beds,0 baths,0 Toilets +"4600 Square Meters At Oniru, Vi. Property Is Sharing Fence With Lagos State Court Of Arbitration. Title: C Of O And Governor Consent",Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +27 Room Hotel On 1706sqm Of Land,Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"129,500,000",0,0,0,5 beds, baths, Toilets +"1st Class Office Complex In Victoria Island On Ten (10) Floors With Helipad *land Size: * 2,644 Sqm * Lettable Space: * 9,176 Sqm *",Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached Smart Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,5 beds, baths, Toilets +4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Commercial Property On 2500sqm At Victoria Island Akin Adesola,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +Functional Fast Food,Victoria Island Lagos,₦,"492,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 27 Rooms Hotel,Victoria Island Lagos,₦,"1,200,000,000",0,0,0,10 beds,0 baths,0 Toilets +Hospital On 7 Floors,Oniru Victoria Island Lagos,₦,"8,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Penthouse On 27 Floor Phoneix Tower,Eko Atlantic Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +"New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +1200sqm Land,Off Ajose By Bode George Vi Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000sqm Prime Land,Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategically Located 4452sqm High Density Fenced And Gated Land, Oniru Victoria Island Lagos,₦,"350,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached House On 1368sqm Land, Victoria Island Lagos,₦,"435,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets +Functional Hotel Of 35 Rooms,D Ademola Adetokunbo Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Serviced Terrace With Bq,S Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds, baths, Toilets +"Block Of 16 Nos 3 Bedroom Flat With Bq, Pool And Gym, With Office Complex Total Land Size 5230sm Off Idejo, Victoria Island",Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"7358.102 Square Metres Situated At Ligali Directly Facing The Beach By Landmark, Victoria Island, Lagos",Ligali Ayorinde Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House(rear Building) With 4rooms Bq On About 685sqm,Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets +"A 5 Bedroom Duplex With 2 Bq, 2 Office Spaces,2 Living Rooms, Sitting On 3000sqm Land",R Victoria Island Lagos,₦,"1,600,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Luxurious Flat,Ahmadu Bello Way Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Apartments,Eko Atlantic Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds, baths, Toilets +Old Structure Measuring 2400sqm,S Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Prime 4,000sqm Land Next To Access Bank Head Office At Oniru,",Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +1 Bedroom Deluxe Apartment,Victoria Island Lagos,₦,"65,000,000",0,0,0,1 beds, baths, Toilets +"An Expanse Of Land With Building Approval Measuring 20,000 Square Meters And 16,570 Square Meters Totaling 36,570 Square Meters Fully Fenced And Gated Dry Bareland.", Victoria Island Lagos,$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"176,000,000",0,0,0,4 beds, baths, Toilets +2100 Sqm Land, Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bloc1000sqm Land With Global C Of O. Dideolu Estate Oniruk,Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"2,200m2 Fenced And Gatedwith Approved Building Plan For 15 Floors.with Complete Pile Foundation",Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +7 Bedroom Detached Duplex At Etim Inyang Crescent Victoria Island. Approximately 1000sqm.,Victoria Island Lagos,₦,"550,000,000",0,0,0,7 beds, baths, Toilets +Mixed Used Development On 7 Floors,Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4,383 Sqm Land With Approval For 32 Floors Twin Towers", Eko Atlantic Victoria Island Lagos,$,"2,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +A Bare Land Measuring 5300sqm On Ligali Ayorinde Street Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"4,200,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat (5th Floor) Off Plan,A & A Towers Eko Atlantic Victoria Island Lagos,₦,"180,000,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds, baths, Toilets +Office Complex On 10 Floors Plus Annex Building On Same Street,Victoria Island Lagos,₦,"8,500,000,000",0,0,0, beds, baths, Toilets +Detached House On 1400sqms, Ademola Adetokunbo Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Various Land Sizes,Eko Atlantic Victoria Island Lagos,$,"2,500/sqm",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Land,S Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel And Restaurant On 2034 Sqm With Land Certificate,Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,₦,"20,000,000",0,0,0, beds, baths, Toilets +The Building Is 8 Floors + Penthouse At Victoria Island Land Area Is 1360 Sqm Each Floor 395 Square Meter,Victoria Island Lagos,$,"14,590,000",0,0,0, beds, baths, Toilets +10units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"185,000,000",0,0,0,4 beds,0 baths,0 Toilets +"Oniru Waterfront 7,400sqms",Oniru Victoria Island Lagos,₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Seize This Opportunity To Own This Lovely 7 Bedroom Detached House With Service Quarters And Other Ancillary Buildings. Land Area Of 950 Sqm.,Victoria Island Lagos,₦,"550,000,000",0,0,0,7 beds, baths, Toilets +19 Nos Apartments,Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +14 Units Of 4 Bedroom Semi Detached Duplex With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds, baths, Toilets +4 Bedroom Apartment And A Room Bq,Eden Heights Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,0 baths,0 Toilets +"7,000 Sqm Waterfront Property Directly Located On Ozumba Mbadiwe , Victoria Island (can Be Partitioned Into 2) For Mixed Use Development",Victoria Island Lagos,₦,"900,000/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Penthouse,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds, baths, Toilets +Approximately 2300sqmsqm Bare Land,S Oniru Victoria Island Lagos,₦,"590,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Fully Furnished Apartment,1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,2 beds,0 baths,0 Toilets +Off Plan 15 Nos 2 Bedroom Luxury Apartments,Kofo Abayomi Victoria Island Lagos,₦,"165,000,000",0,0,0,2 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Apartment,Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +14 Units 4 Bedroom Semi Detached Duplex With Bq,Ahmadu Bello Way Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Corner Piece Land Measuring 2600sqm On Muri Okunla By Ligali Ayorinde For Sale.,Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +"4600sqn With Approval For Ground + 15 Floors At Oniru, Vi. Property Is Sharing Fence With Lagos State Court Of Arbitration. Title: C Of O And Governor Consent.",Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +5bedrooms Fully Detached Duplex With Bq, Oniru Victoria Island Lagos,₦,"280,000,000",1,1,0,5 beds,0 baths,0 Toilets +5br Detached House(rear Building) With 4rooms Bq On About 685sqm At Idejo Vacant Possession,Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds, baths, Toilets +2000sqm In Victoria Island With Building On It,Z Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 65 Rooms Hotel,Victoria Island Lagos,$,"32,000,000",0,0,0,0 beds,0 baths,0 Toilets +First Class Office Space On Twelve (12) Floors (,Victoria Island Lagos,$,"40,000,000",0,0,0, beds, baths, Toilets +An Exquisite Office Space,Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"129,500,000",0,0,0,5 beds, baths, Toilets +"Akarigbere Close 5,300sqms Land",Y Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Deluxe Highrise New Apartments,Ahmadu Bello Way Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds, baths, Toilets +3 Bedroom Luxury Terraces,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +7358sqm Land,S Oniru Victoria Island Lagos,₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Brand New Flat,Victoria Island Lagos,₦,"85,000,000",0,0,0,2 beds, baths, Toilets +"A Detached House Within A Land Size Of 2262sqm At Imam Augusto, Off Karim Ikotun Victoria Island, Lagos. Title: Land Certificate.",Karimu Kotun Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +3400sqm Prime Location In Eko Atlantic Phase 1,Eko Atlantic Victoria Island Lagos,$,"2,350/sqm",0,0,0, beds, baths, Toilets +3 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"164,500,000",0,0,0,3 beds, baths, Toilets +This Exquisitely Finished Four (4) Bedroom Terrace Duplex With Swimming Pool And A Room Boys Quarter Is Located In A Serviced And Secured Environment,Victoria Island Lagos,₦,"168,000,000",0,0,0,4 beds, baths, Toilets +Brand New 1 Bedroom Deluxe Apartment,S Ahmadu Bello Way Victoria Island Lagos,₦,"90,000,000",0,0,0,1 beds,0 baths,0 Toilets +Old Fully Detached House On 820sqm,Off Idejo Victoria Island Lagos,₦,"400,000,000",0,0,0,7 beds,0 baths,0 Toilets +Fenced Land Measuring 1650sqm On Oyin Jolayemi Street Victoria Island.,Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +"11,000m2 Plot Along Ligali Ayorinde St By Water Corporation Drive Victoria Island With C Of O",Oniru Victoria Island Lagos,₦,"500,000/sqm",0,0,0, beds, baths, Toilets +"20,000 Sqm Of Bareland",Ahmadu Bello Way Victoria Island Lagos,₦,"12,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 2 Bedroom, 3 Bedrooms And Penthouse Apartments With Ocean And Marina View",Eko Atlantic Victoria Island Lagos,₦,"270,000,000",0,0,0,3 beds,0 baths,0 Toilets +"Land Size: 5,979.48sqm The Development On Site Consists Of Office Space 1 (admin), Office Space 2, And Warehouses, 2no. Security Houses, Generator Shed And A Convenience Block.",Along Adeniji Adele Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +A Commercial Development On 2 Floors On Land Measuring 800sqm,Victoria Island Lagos,₦,"640,000,000",0,0,0, beds, baths, Toilets +Commercial Property In Victoria Island,Victoria Island Lagos,₦,"40,000,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"133,000,000",0,0,0,4 beds,0 baths,0 Toilets +Office Complex,Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +"A New Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15(fifteen) Floors", Victoria Island Lagos,₦,"15,000,000,000",1,1,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Land Measuring 2800sqm Strategically Located, Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Ozumba Mbadiwe Waterfront 4,000sqms Lasg C Of O",Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Building On 1866 Sqm Of Land,D Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment With Bq,Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,3 beds, baths, Toilets +Land,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale Residential Plot Of Land In Oniru Vi Land Size 1,785 Square Metres. Title C O",Oniru Victoria Island Lagos,₦,"430,000,000",0,0,0, beds, baths, Toilets +1261sqm Land Has Building On It With Documents,S Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2116 Square Meters Of Land With Pile Foundation, Approval For 15 Floor Storey Building",Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment, Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,0 baths,0 Toilets +2 Bedroom Apartments With Rooftop Garden,Victoria Island Lagos,₦,"145,000,000",0,0,0,2 beds, baths, Toilets +For Sale Bareland Measuring 3000sqm,Kofo Abayomi Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 2111sqm Location: Harbour Light, Eko Atlantic, Victoria Island Lagos",Eko Atlantic Victoria Island Lagos,$,"1,750/sqm",0,0,0, beds, baths, Toilets +A Block Housing 6 Units Of 3 Bedrooms Flats With A Room Service Quarters,Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land,"Akin Adesola Street, Ahmadu Bello Way Victoria Island Lagos",$,"75,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2 Bedroom Flat A & A Towers Eko Atlantic City, Vi",Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Brand New Deluxe Maisonette With 2 Bq,V Ahmadu Bello Way Victoria Island Lagos,₦,"320,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury Penthouse On 3q Floor Executive Residential Tower,Eko Atlantic Victoria Island Lagos,$,"2,300,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex + Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,1,5 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,1,5 beds,0 baths,0 Toilets +2100sqm Waterfront Land, Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ademola Adetokunbo Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex On 5 Floors,Ademola Adetokunbo Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Adetokunbo Ademola Street Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,5 baths,5 Toilets +Newly Built Luxury 4 Bedroom Terrace + Bq,Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment + Bq,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace,Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Portable Flat,Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,700sqm Bare Land.",Z Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Duplex With Bq, Swimming Pool And Gym",Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fully Serviced 4 Bedroom Terraced Duplex,S Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Executive Terrace + Bq,Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,5 beds,5 baths,6 Toilets +5bedrooms Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Functional 27 Rooms Hotel,Off Ajose Adeogun Street Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Very Beautiful And Magnificent 19 Storey Structure,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With Bq,Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Room Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land For Jv,Z Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Maisonette + Bq In Victoria Island,Fatai Durosimi Etti Street Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Lovely Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat In A Fully Serviced Block Of Flats.,Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +4452sqm Land,Abiodun Yusuf Way By City Of David Oniru Victoria Island Lagos,₦,"1,558,200,000",0,0,0,0 beds,0 baths,0 Toilets +2400sqm Bare Land,"Oniru, Victoria Island Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom High Toned Terraced Duplex,Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +"Luxury 4 Bedroom Terrace Duplex With Bq,",Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Furnished 5 Bedroom Semi Detached Duplex, Victoria Island Lagos,₦,"270,000,000",0,0,1,6 beds,6 baths,6 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Units Of 2 Bedrooms Apartment,Off Ajose Adeogun Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4bedroom Terrace Duplex With Open Roof,Oniru Oniru Victoria Island Lagos,₦,"122,000,000",0,0,0,4 beds,5 baths,5 Toilets +Grade A 5 Storey High Rise Office Complex,Off Bishop Aboyade Cole Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +Available Land,Muri Okunola Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture At Victoria Island Lagos,Muri Okunola Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex With Bq,F Victoria Island Lagos,₦,"185,000,000",1,1,0,3 beds,3 baths,4 Toilets +6 Bedrooms Fully Detached Spacious House With Bq,Victoria Island Lagos,₦,"420,000,000",0,0,0,6 beds,0 baths,0 Toilets +4060sqm Waterfront Land,Beside Oriental Hotel Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Hot Joint Venture At Landbridge Avenue Oniru Victoria Island,Landbridge Avenue Oniru Victoria Island Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"Functional 5 Star Hotel,with 170 Rooms",Victoria Island Extension Victoria Island Lagos,$,"150,000,000",0,0,1,10 beds, baths, Toilets +2300sqm Bare Land,Oniru Victoria Island Lagos,₦,"530,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Victoria Island Lagos,₦,"780,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"350,009/sqm",0,0,0,0 beds,0 baths,0 Toilets +4600sqm Bare Land,Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Quick Joint Venture In Victoria Island,"Bishop Kale Close, Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Adeola Hopewell Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Quick Joint Venture In Victoria Island,"Bishop Kale Close, Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Apartment And A Room Bq On The 7th Floor Floor,Off Adeola Ayodeji Street Ademola Adetokunbo Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +Available Land,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Vacant Parcel Of Land Measuring 2100sqm For Jv At Vi,Karimu Kotun Str. Karimu Kotun Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +Hot Joint Venture At Landbridge Avenue Oniru Victoria Island,Landbridge Avenue Oniru Victoria Island Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Available Land,Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,200sqm Land",Victoria Island Lagos,₦,"400,000/sqm",0,0,0,0 beds,0 baths,0 Toilets +4100sqm2 Land,Eko Atlantic Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Acres (16,065 Sqm)",Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3bedroom Flat With Bq And Pool..,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,4 Toilets +Vacant Parcel Of Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,0 beds,0 baths,0 Toilets +Executive 4 Bedroom Spacious Semi Detached Duplex With A Room Bq,Dideolu Estate Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +Blocks Of Flats House,Oniru Victoria Island Lagos,₦,"1,600,000,000",1,0,0,3 beds,4 baths,4 Toilets +1 Bedroom Luxury Apartment,"Behind Zenith Bank Headquarters, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"70,000,000",1,1,1,1 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Serviced Compact/portable 3 Bedroom Apartment,"Plot 14, Olaniye Oduloye Street, Oniru Estate Oniru Victoria Island Lagos",₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Finished 4 Bedroom Penthouse In A Serene Neighbourhood,Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",1,1,0,4 beds,4 baths,5 Toilets +Four Floors Of 3 Bedroom Flats,Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Four Floors Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +Four Floors Of 3 Bedroom Flats,Akin Olugbade Victoria Island Lagos,₦,"1,400,000,000/month",0,0,0, beds, baths, Toilets +Contemporary 4 Bedroom Fully Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Modern Day 3 Bedroom Apartment With Elevator, Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Urban City Tastefully Finished 3 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Apartment,Sapara William Kofo Abayomi Victoria Island Lagos,₦,"110,000,000",1,0,0,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Flat,"Chief Yusuf Abiodun Street, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,4 baths,4 Toilets +Breathtaking 130m Luxurious 4 Bedroom Terraced Duplex With Bq,Lagos Island Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq & Swimming Pool,"Victoria Island Extension, Oniru Oniru Victoria Island Lagos",₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat With Two Sitting Rooms Available,Oniru Estate Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,5 baths,5 Toilets +"4,300 Sqm Land",Z Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom,Kofo Abayomi Victoria Island Lagos,₦,"169,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built 6 Units Of 3 Bedrooms Terrace Duplex,Adeola Odeku Victoria Island Lagos,₦,"185,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Service, Compact 3 Bedroom Apartment",Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +Serviced 3 Bedroom Apartment With Bq,Fatai Durotimi Street Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths,4 Toilets +"4 Bedroom Flat For Sale In Oniru Estate, Victoria Island", Oniru Victoria Island Lagos,₦,"160,000,000",1,0,0,4 beds,4 baths,4 Toilets +Luxury 3 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds, baths,4 Toilets +Luxury 4bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Contemporary 4 Bedrooms Terrace Duplex With Service Quarters,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,1,4 beds,4 baths,4 Toilets +1 Acre Of Land, Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Furnished 5 Bedroom Apartment With Bq, Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"130,000,000",1,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,Landmark Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,2 beds,2 baths,3 Toilets +"3 Bedroom Terrace House With Fitted Kitchen, Swimming Pool",Off Odeku Adeola Odeku Victoria Island Lagos,₦,"200,000,000",0,1,0, beds, baths, Toilets +Brand New 4 Bedroom Semi Detached Duplex With Bq,Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Bq,Estate Ademola Adetokunbo Victoria Island Lagos,₦,"120,000,000",1,1,1,3 beds,2 baths,2 Toilets +Luxury 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,0 baths,0 Toilets +2bedroom Flat,Orchid Victoria Island Lagos,₦,"32,000,000",0,0,1,2 beds,2 baths,2 Toilets +5 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +A Distress Sale: New 4bedroom Terrace Duplex With Bq Swimming Pool And Gym,Adeola Odeku Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Flat With Elevator And Swimming Pool,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +A New 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Functional And Luxury 4star Hotel With 65 Rooms,Victoria Island Lagos,$,"50,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Distress Sale 4 Bedroom Maisonette House With Bq, Elevator, Pool And Gym In Victoria Island",Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Distressed Sale Newly Built Open Space Office Terrace In Muri Okunola, Victoria Island",Victoria Island Lagos,₦,"140,000,000",0,1,0, beds, baths, Toilets +"2364sqm Corner Piece Land In Eko Atlantic, Victoria Island",Eko Atlantic Victoria Island Lagos,$,"2,000/sqm",0,0,0, beds, baths, Toilets +"10 Units Of 3bedroom Flat With Bq, And 4 Units Of 1bed Flat",Victoria Island Lagos,₦,"2,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedrooms Apartment,Vantage Court Akin Olugbade Victoria Island Lagos,₦,"140,000,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Penthouse / 3 Bedroom Luxury Apartment,Oniru Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets +3 Bedroom All En Suite Flat With Bq,Oniru Victoria Island Lagos,₦,"77,000,000",1,0,0,3 beds,3 baths,4 Toilets +Land,Akin Olugbade Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Apartments,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,0 baths,0 Toilets +Fully Serviced 4 Bedroom Maisonette,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +Lovely 4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Fully Serviced 3bedroom Apartments,Victoria Island Lagos,₦,"165,000,000",0,0,0,3 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +Newly Built 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"250,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex With Pool And Bq,Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exclusive 2 Bedroom Luxury Apartment,"Knight Tower, Ahmadu Bello Way Victoria Island Lagos",₦,"130,000,000/sqm",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Semidetached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths, Toilets +3 Bedroom Luxury Apartments,Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,3 baths,0 Toilets +Exclusive 1 Bedroom Luxury Apartment (off Plan),Ahmadu Bello Ahmadu Bello Way Victoria Island Lagos,₦,"70,000,000/sqm",1,0,0,1 beds,1 baths,2 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +"An Executive, Beautiful And Functional 27 Rooms Hotel With Swimming Pool","Off Ajose Adeogun Street, Vi, Lagos Victoria Island Lagos",₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"440,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property,Akin Adesola Victoria Island Lagos,₦,"1,500,000,000,000/sqm",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartments,Victoria Island Lagos,₦,"120,000,000",1,1,0,3 beds,3 baths, Toilets +Land,Saka Tinubu Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4bedrooms Maisonette With Bq,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Ajose Adeogun Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Danmole Street, Off Idejo Street Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exclusive 2 Bedroom Apartment,"Silverbird Galleria/standard Chartered, Knight Towers Ahmadu Bello Way Victoria Island Lagos",₦,"170,000,000",0,0,0,2 beds,3 baths,3 Toilets +3 Bedroom Apartment,Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",0,0,0,3 beds,0 baths,0 Toilets +Commercial Land Sale In Oniru,Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Bedroom With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,5 Toilets +Four Bedroom,1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +Oniru Partitioned Land Sales,Oniru Oniru Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +"Off Plan 1, 2, And 3 Bedroom Flats Sales In Vi",Victoria Island Lagos,₦,"60,000,000",1,1,0, beds, baths, Toilets +Newly Built 5 Bedroom Fully Detached Duplex,Oniru Oniru Victoria Island Lagos,₦,"280,000,000",0,1,0,5 beds,6 baths,6 Toilets +Newly Built 3 Bedroom Full Service Terrace Residence,Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Eko Atlantic Victoria Island Lagos,$,"4,743,400/sqm",0,0,0,0 beds,0 baths,0 Toilets +4 Bedrooms Maisonette Apartment(1st Floor) With Bq,Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced 3 Bedroom Flat With A Bq,Oniru Victoria Island Lagos,₦,"5,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace With A Bq In A Fully Serviced Mini Estate,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Serviced 4 Bedroom Terrace With A Bq,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 4 Bedroom Maissonette With Swimming Pool, Gym And Bq",Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +Tastefully Finished Brans New 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built Serviced 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Modern Headquarters Building With An Office Complex On Two Floors And Other Ancillary Buildings All On 2.38 Acres Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"10,000,000,000",0,0,0, beds, baths, Toilets +Fully Serviced And Brand New 4 Bedrooms Terraced Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +2835sqm Land,"Off Adeola Odeku Street, Victoria Island Adeola Odeku Victoria Island Lagos",₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Neat 3 Bedrooms Apartment, 1004 Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Units Of 4 Bedroom Maisonette Duplex,Victoria Island Lagos,₦,"140,000,000",0,0,0,3 beds,0 baths,0 Toilets +Neatly Used 3 Bedrooms Apartment, 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 3 Bedrooms Flat,Oniru Vi Oniru Victoria Island Lagos,₦,"95,000,000",1,1,0,3 beds,3 baths,4 Toilets +A Tower With 19 Floors,Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom With A Bq,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,1,3 beds,3 baths,3 Toilets +Land,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Eko Atlantic Now Selling! Luxury Apartments.,Victoria Island Lagos,$,"2,720,000",0,0,0,3 beds,3 baths,3 Toilets +A Commercial Land For Sale At Oniru Water Front Measuring 7358.102sqm With A Certificate Of Occupancy Victoria Island Lagos Nigeria 3 Billion Asking,Z Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 650sqm,Z Sanusi Fafunwa Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"145,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury High Rise 3bedroom Penthouse. (other Floors),Eko Atlantic Victoria Island Lagos,$,"2,000,000",0,1,0,3 beds,3 baths,4 Toilets +Brand New Luxury 4 & 5 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Units Of Newly Built Luxury 3 Bedroom Flat,G Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,3 beds,4 baths,5 Toilets +3 Bedroom Flat With Bq,Eighteen Residence Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,0 Toilets +Hotel,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of Luxury 3 Bedroom Flats,Victoria Island Lagos,₦,"110,000,000",1,1,0,3 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,4 baths,5 Toilets +A Fully Serviced Ocean View 2bedroom Maisonette,1004 Victoria Island Lagos,₦,"75,000,000",1,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Apartment And A Room Bq On The 7th Floor,Royal Residences Adeola Odeku Victoria Island Lagos,₦,"320,000,000",1,0,1,4 beds,0 baths,0 Toilets +Newly Built 2 Bedroom Pent Floor Flat, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,1,2 beds,2 baths,3 Toilets +Newly Built 3 Bedroom Flat, Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace In A Serene Environment,"Dideolu Estates, Vi Victoria Island Extension Victoria Island Lagos",₦,"145,000,000",1,1,1,4 beds,4 baths,5 Toilets +"Plot 125, For Sale 2,111sqm In Victoria Island District, Victoria Island (vi), Lagos","Plot 125, Louis Solomon Close, Victoria Island District, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Beautiful 5 Bedroom Detached Duplex With Boys Quarter,Z Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,5 beds,0 baths,0 Toilets +Nice 4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautiful 4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Available Land,Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartment,Victoria Island Lagos,₦,"100,000,000",0,1,0,3 beds,3 baths,4 Toilets +*newly Built 4 Bedroom Terrace Duplex With Bq* Pay And Pack In,Fola House. Victoria Island Extension Oniru. Victoria Island Extension Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,5 baths,5 Toilets +Newly Built 4bedroom Terrace Duplex. Vi,Adeola Odeku Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment With Pent House,1004 Victoria Island 1004 Victoria Island Lagos,₦,"75,000,000",1,0,1,3 beds,2 baths,1 Toilets +Available Land,Victoria Island Lagos,₦,"4,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Eatery Sitting On A Land Measuring 1800sqm Land, Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land With Excellent View For Sale,Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New Open Plan Office Space On 3 Floors,Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,0 baths,3 Toilets +Newly Built 3 Bedroom Apartment,Ajose Adeogun Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,3 baths,4 Toilets +Demolishable Fully Detached 5 Bedroom Duplex,Adeola Odeku Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Newly Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building",Victoria Island Lagos,₦,"20,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2835.912sqm For Sale Off Adeola Odeku, Victoria Island @ N1.7billion(negotiable)",Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Ground Floor Flat,Oniru Victoria Island Lagos,₦,"4,500,000",0,0,0,2 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"185,000,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths, Toilets +Peridot Heights,Skyeview Housing Scheme Adjacent Novare Mall Sangotedo Eti Osa Victoria Island Lagos,₦,"19,900,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Investment/development,Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Duplex,Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Aparment With Bq,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,0 baths,0 Toilets +10 Hectares Of Reclamation Land Waters,Oniru Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Land,Oniru Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Available Bare Land,Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Units Of Four (4) Bedroom Luxury Detached Duplexes,Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fine 4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Well Built 4 Bedroom Detached House With A Staff Room In A Serene Neighborhood,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets +A Brand New Jv Thats Eko @ Atlantic For The Giants Developers Of Lagos,Circle Of Marina Eko Atlantic Victoria Island Lagos,₦,"4,000,000,000/sqm",0,0,0, beds, baths, Toilets +"Prime Plot Of Land Measuring 1,100 Square Meters And Above",Eko Atlantic Victoria Island Lagos,$,945/sqm,0,1,0, beds, baths, Toilets +Terrace Apartments Of 4 Bedroom,Oniru. Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds, baths, Toilets +1 Bedroom Apartment,Paramount Twin Towers Oniru Victoria Island Lagos,₦,"87,505,000",0,0,1,1 beds,2 baths,2 Toilets +Newly Built 4bedroom Detached House,Oniru Victoria Island Lagos,₦,"10,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 4 Bedroom Detached Duplex,Shoreline Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 5 Bedroom Terrace House,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Detached House,Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Pent House, Ademola Adetokunbo Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Furnished Cozy 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"68,000,000",1,0,1,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace House,Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Terrace House,Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land Measuring 4030 Square Meters,Oniru Victoria Island Lagos,₦,"900,000,000",0,1,0, beds, baths, Toilets +Luxury 3 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,"Eden Heights, Elsie Femi Pearce Street, Off Adeola Odeku Victoria Island Lagos",₦,"180,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedrooms House,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 2 Bedroom Flat, Victoria Island Lagos,₦,"110,000,000",0,1,0,2 beds,2 baths,2 Toilets +Functional 27 Rooms Hotel In Vi,Victoria Island Lagos,₦,"1,200,000,900",0,0,0,10 beds,10 baths,10 Toilets +A Standard 25 Bedrooms Hotel With Swimming Pool For Sale At Victoria Island,Victoria Island Lagos,₦,"950,000,000",0,0,0,10 beds, baths, Toilets +Executively Designed 4 Bedroom Penthouse Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Hundred Rooms 5 Star Hotel For Sale At Victoria Island Lagos,Victoria Island Lagos,₦,"2,000,000,000",0,0,0,10 beds, baths, Toilets +"Executively Structured 2 Wings Duplex Consisting Of 5 Bedroom And 4 Bedroom Houses Plus 3 Rooms Bq On A 1407 Sqm Land Size For Sale At Off Ademola Adetokunbo, Victoria Island",Oko Awo Street Ademola Adetokunbo Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Lovely 4 Bedroom Detached Duplex Plus A Room Bq,"Shoreline Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +Beautifully Built 4 Bedroom Semi Detached Terraced Duplex For Sale In A Mini Estate At Oniru,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds, baths, Toilets +Newly Completed Luxury Serviced 3 Bedroom Flat,Idowu Martins Victoria Island Lagos,₦,"130,000,000",1,0,0,3 beds,4 baths,4 Toilets +The Northgate Estate,Victoria Island Lagos,₦,"6,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Designed 4 Bed Rooms With Bq Located In A Serene Environment In Oniru Estate,Oniru Victoria Island Lagos,₦,"145,000,000",1,0,0,4 beds,4 baths,4 Toilets +Exclusive 4 Bedroom Terrace Duplex With Bq,Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,5 Toilets +Spacious 3 Bedroom Apartment,Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +Magnificent 4 Bedroom Fully Detached Duplex With Bq,Oniru Victoria Island Lagos,₦,"165,000,000",0,1,0,4 beds,4 baths,5 Toilets +Newly Built And Exquisitely Finished 4 Bedroom Townhouse House With Bq,Off Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"160,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Service Townhouse With A Room Bq,Off Ogunyemi Street Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,"Palace Road, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds, baths, Toilets +Uncompleted 11 Floors Office/space,"Marinho Drive, Victoria Island, Lagos Victoria Island Extension Victoria Island Lagos",₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment,"Palace Road, Oniru, Victoria Island, Lagos Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds, baths, Toilets +8 Units Of Well Laid Out 3 Bedroom Apartments Plus 1 Room Bq,"Ihuntayi Street, Off Palace Road Oniru Victoria Island Lagos",₦,"600,000,000",0,0,0,3 beds,0 baths,0 Toilets +4bedroom Terrace Duplex,"Victoria Island, Lagos Victoria Island Lagos",₦,"300,000,000",0,0,0,4 beds, baths, Toilets +Eight Units Of Three Bedroom Flat With Bq In Victoria Island,"Akin Olugbade Street, Akin Olugbade Victoria Island Lagos",₦,"1,300,000,000",0,0,0,10 beds,10 baths,10 Toilets +2 Bedroom Flat,Mabogunje Street Oniru Victoria Island Lagos,₦,"55,000,000",1,1,0,2 beds,2 baths,3 Toilets +Plot Of Land With C Of O, Oniru Victoria Island Lagos,₦,"970,000,000",1,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment And Room Bq On The 7th Floor,Royal Residence Off Adeola Ayodeji Street Victoria Island Lagos,₦,"350,000,000",0,1,0,4 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Terrace Duplex With Bq And 5 Bedroom Terrace Duplex With Bq,Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",1,1,1,5 beds,5 baths,6 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Duplex In A Serene Environment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000/month",1,1,1,4 beds,4 baths,5 Toilets +Unmcompleted Office Building On Three Floors,Bishop Aboyade Cole Raod Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +8 Bedrooms Detached House,Along Balarabe Musa Road Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",0,0,1,8 beds,8 baths,10 Toilets +7 Bedrooms Detached House With Two External Office Buildings,Along Karim Kotun Off Akin Adesola Street Karimu Kotun Victoria Island Lagos,₦,"450,000,000",0,0,0,7 beds, baths,10 Toilets +5 Bedroom High Toned Luxury Terrace Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,1,5 beds,5 baths,6 Toilets +4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island. Oniru Victoria Island Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets +C Of O,Victoria Island Extension Victoria Island Lagos,₦,"230,000,000/month",1,0,0,5 beds,6 baths,7 Toilets +Best Designed 4 Bedroom Terrace Duplexes,Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0, beds,4 baths,4 Toilets +4 Bedroom Terrace Duplexes With Bq With Governor Consent,Victoria Island Oniru Victoria Island Lagos,₦,"125,000,000",1,1,0,4 beds,4 baths,5 Toilets +Fully Serviced Luxury 3 Bedroom Apartment With A Bq,Ligali Ayorinde Victoria Island Lagos,₦,"100,000,000",1,1,0,3 beds,3 baths,4 Toilets +Newly Built 3 Bedroom Apartments,Idowu Martins Adeola Odeku Victoria Island Lagos,₦,"200,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat,Oniru; Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Beautiful Service 3bedroom Flats With 1room Bq,Oniru Oniru Victoria Island Lagos,₦,"75,500,000",1,1,0,3 beds,3 baths,4 Toilets +Land, Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +13000sqm Land With Structures,Ahmadu Bello Way Victoria Island Lagos,$,"13,000,000",0,0,0, beds, baths, Toilets +16000sqm Land,Ahmadu Bello Way Victoria Island Lagos,$,"34,000,000",0,0,0, beds, baths, Toilets +2600sqm Plots Of Land,Ozumba Mbadiwe Victoria Island Lagos Victoria Island Lagos,₦,"4,500,000,000",0,0,0, beds, baths, Toilets +Parcel Of Land Measuring 3025sqm With C Of O,Idowu Martin's Victorial Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"350,000",0,0,0, beds, baths, Toilets +Land,Along Lilagi Ayorinde Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Water Corporation Road Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Water Corporation Road Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Idejo Street Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Dideolu Estate Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Off Idejo Street Adeola Odeku Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Along Ozumba Mbadiwe Street Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Nos Of 4 Bedroom Terrace Duplex With Bq,Oniru Private Estate Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Off Idejo Street Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Oniru, Along Water Corporation Road Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious Ongoing 4bedroom Terrace Duplex With In The Heart Of Oniru,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex,Oniru Private Estate Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land, Ahmadu Bello Way Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex For Sale,Oniru Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Duplex For Sale,Off Palace Road Oniru Victoria Island Lagos,₦,"155,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land,Along Ozumba Mbadiwe Street Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House With All Rooms Ensuite With Guest Chalet And Bqs On A Large Land Measuring 1650qm,Kofo Abayomi Victoria Island Lagos,₦,"900,000,000",0,0,0,6 beds, baths, Toilets +Spacious 3 Bedroom Terrace Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"85,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Terraced Residences,Oniru Royal Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,1,0,4 beds,4 baths,5 Toilets +"5 Bedroom,gym Room &1bq Fully Detached House On A Fully Gated Road And The Best In Oniru Estate",Oniru Estate Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +"4 Bedroom Terrace Duplexes, Location: Victoria Island, Lagos",Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,5 baths,5 Toilets +Office Complex For Sale Lagos 8bn Off Adeola Odeku Vi,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets +Brand New Luxurious 5 Bedroom Duplex With Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,6 Toilets +"New & Well Built , Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ozumba Mbadiwe Victoria Island Lagos,$,"40,000,000",0,1,0, beds, baths, Toilets +10 Bedroom Mansion,Banana Island Victoria Island Extension Victoria Island Lagos,₦,"4,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Luxury Apartment For Sale,1st 6th Floor Eko Atlantic Victoria Island Lagos,$,"710,000",0,1,0,2 beds,2 baths,3 Toilets +3 Bedroom Luxury Apartment,1st 6th Floor Eko Atlantic Victoria Island Lagos,$,"875,000",1,1,1,3 beds,3 baths,4 Toilets +4 Bedroom Detached With 2 Rooms Bq,Vi Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,4 Toilets +Fully Detached House,Vi Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With 2 Room Bq With Gate House,Vi Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths, Toilets +Fully Detached Duplex At Victoria Island,Vi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,5 baths, Toilets +4 Bedroom Terrace House With Bq,T F Kubuoye Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Four(4) Bedroom Duplex,T F Kubuoye Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Brand New 4 Bedroom Terraces In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",1,0,0,4 beds,5 baths,5 Toilets +Executive 5bedrooms Duplex With 2 Rooms Bq For Sale At Lagos Business School.,Lagos Business School. Victoria Island Lagos,₦,"50,000,000",0,0,1,5 beds,5 baths,6 Toilets +Exquisite 4 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"87,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite And Luxurious 5 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +Executive 4 Bedrooms Terraced Duplex With A Bq And Swimming Pool,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nice Finished 4 Bedrooms Terraced Duplex With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Fully Serviced All Room Ensuit 4 Bedrooms Penthouse,Oniru Victoria Island Lagos,₦,"165,000,000",1,0,0,4 beds,4 baths,5 Toilets +Bare Land On Eko Atlantic City,Ahmadu Bello Way Victoria Island Lagos,₦,"1,250,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Semi Detached Duplex With Bq At Oniru Estate Victoria Island Lagos,Off Palace Road Oniru Estate Victoria Island Oniru Victoria Island Lagos,₦,"147,000,000",1,1,0,5 beds,5 baths,5 Toilets +4 Bedroom High Toned Luxury Terrace Duplex With A Bq,Oniru Victoria Island. Oniru Victoria Island Lagos,₦,"180,000,000",0,1,1,4 beds,5 baths,5 Toilets +4 Bedrooms Duplex,1004 Victoria Island Lagos,₦,"75,000,000",0,1,0,4 beds,4 baths,5 Toilets +8units Luxury Beautiful Service 4bedroom Terrace Duplex With 1room Bq,Off Adeola Odeku Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat,"Block D1 Cluster D, 1004 Estate, 1004 Victoria Island Lagos",₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +Hot 4 Bedroom Duplex,Cherry Homes Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +24 Rooms Hotel + Restaurant, Akin Adesola Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House With Separate Studies,Oniru Estate Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,0 Toilets +"1,346 Sqm Of Bare Land",Palace Road Oniru Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Ademola Adetokunbo Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Off Palace Road, Oniru Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mixed Use Land,Victoria Island Extension Victoria Island Lagos,₦,"320,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Waziri Ibrahim, Victoria Island Extension Victoria Island Lagos",₦,"485,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,... Victoria Island Lagos,₦,"130,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 2 And 3 Bedroom Apartment,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex,"Off A J Mario, Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets +5 Bedroom Semi Detached Duplex,Palace Road Oniru Victoria Island Lagos,₦,"210,000,000",0,0,0,5 beds,0 baths,0 Toilets +4 Bedroom Terrace,Sutherland Court Victoria Island Victoria Island Lagos,₦,"20,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,5 Toilets +4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,"1004 Estate, Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +Hotel/ Guest House,Oniru Victoria Island Lagos,$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Storey Office Building,.. Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Victoria Island Extension, Victoria Island Lagos",₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel/ Guest House,"Lekki Phase 1 By Victoria Island Major Area, Victoria Island Lagos",$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Jakande Crescent Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,0 baths,0 Toilets +Commercial Land For Sale,Eko Atlantic Victoria Island Lagos,$,"5,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House With Three Room Bq,Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,"Dideolu Estate, Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,.. Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths,4 Toilets +Hotel,"Lekki Phase 1 By Victoria Island Major Area, Victoria Island Lagos",$,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +9 Bedroom,Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,9 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +9 Bedroom Detached Duplex,"Idowu Martins Street, Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,9 beds,7 baths,10 Toilets +4 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,"Bishop Oluwole Street, Victoria Island Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat, Oniru Victoria Island Lagos,₦,"35,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"170,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Complex,Off Adetokunbo Ademola Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Twin Duplex,.. Adeola Odeku Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Four Point Hotel Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,5 Toilets +Waterfront Land Measuring 2672sqm,Ozumba Mbadiwe Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Block Of 12 Units Of 2 Bedroom Flat With 2 Units Of 1 Bedroom Pent House,.. Oniru Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Residential Land,"Ologun Agbaje Street, Victoria Island Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 4 Bedroom & Pent Room With A Bq,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Fully Detached Duplex,Abiodun Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +Mixed Use Land,Kofo Abayomi Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 5 Bedroom Detached Duplex,By Lekki Right Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of Flats,Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,"Bosun Adekoya Street, Oniru Via New Market, Oniru Victoria Island Lagos",₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Victoria Island Lagos,$,"2,200,000",0,0,0,3 beds,3 baths,3 Toilets +Hotel/ Guest House,Kofo Abayomi Victoria Island Lagos,₦,"2,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats, Adeola Odeku Victoria Island Lagos,₦,"90,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex,... Ligali Ayorinde Victoria Island Lagos,₦,"105,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,.. Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Bedroom Detached Duplex,"Off A J Mario, Victoria, Isalnd, Lagos Victoria Island Extension Victoria Island Lagos",₦,"400,000,000",0,0,0,7 beds,7 baths,7 Toilets +Newly Built 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Luxury And Exquisite 3 Bedroom Apartment, Victoria Island Lagos,$,"54,500",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"1004 Estates, Oniru Victoria Island Lagos",₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +Miniflat, Oniru Victoria Island Lagos,₦,"33,000,000",0,0,0,1 beds,0 baths,0 Toilets +Land,"Oniru Private Beach Estate, Vi, Oniru, Victoria Island Lagos",₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Spacious 4 Bedroom Duplex With 2 Rooms Bq,Oniru Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Penthouse,.. Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Dideolu Estate, Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex,"Off Palace Road, Oniru Victoria Island Lagos",₦,"235,000,000",0,0,0,5 beds,0 baths,0 Toilets +Office Space,"2a And 2b Oko Awo Close Vi, Victoria Island Extension, Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space, Adeola Odeku Victoria Island Lagos,₦,"8,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Oniru Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Serviced Flat,Mabogunje Street Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Bedroom Flat,"Aremo Olusegun, Oniru Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Units Of 3 Bedroom Flat With Bq, Victoria Island Lagos,₦,"2,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Mixed Use Land,Ahmadu Bello Way / Akin Adesola Street. Ahmadu Bello Way Victoria Island Lagos,₦,"22,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat,Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,3 baths,3 Toilets +Mixed Use Land,Tiamiyu Savage Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Oniru Estate, Oniru Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +7 Bedroom Detached Duplex As Office Space.,Muri Okunola Victoria Island Lagos,₦,"300,000,000",0,0,0,8 beds, baths,8 Toilets +"*bank Sale* 1 Unit Of 3bedroom( Ensuite) Luxury Apartment On The 24th Floor At Eko Pearls Towers, Vi",Victoria Island Victoria Island Extension Victoria Island Lagos,$,"1,800,000",0,1,0,3 beds,3 baths,3 Toilets +Banana Island Ikoyi Water Front 800m2. In Zone. J Plot ? Price. 480mil,Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Victoria Island *4000sqm At Ibrahim Waziri. Price:1.5b,Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex With Bq,Victoria Island Lagos,₦,"200,000,000",0,0,0,5 beds,5 baths,5 Toilets +Commercial Property,.. Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Joint Venture Brief @ Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +"4nos 5 Bedroom Semi Detached Houses On 2200sqm Land At Adeleke Adedoyin Street, Victoria Island. N700m.",Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets +"5,050sqm* Of Land For Sale",Ligali Ayorinde Victoria Island Lagos,₦,"220,000",0,0,0, beds, baths, Toilets +3000m2 Fence Round With Entrance Gate,"1004 Estate, Off Ozumba Mbadiwe 1004 Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +5 Storey Office Building With A Total Lettable Spave Of 1750sqm,Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths,6 Toilets +3000m2 Fence Round With Entrance Gate,"1004 Estate, Off Ozumba Mbadiwe 1004 Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"New 3 Bedroom Apartment With Bq, Pool And Gym",Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +A Well Located Land,Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +"New 4 Bedroom Apartment At Oniru, Lagos",Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,4 beds,5 baths,5 Toilets +4 Bedroom Maisonette,Muri Okunola Street Ademola Adetokunbo Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Block Of 8 Flats,Victoria Island Lagos,₦,"1,400,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Plot Measuring 2,300 + Sqms With Highrise Development Permission",Akin Adesola Street Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Excellent 3 Bedroom Apartment For Sale,Victoria Island Lagos,₦,"110,000,000",0,1,0,3 beds,3 baths,3 Toilets +Two Units Of Detached Houses,Close To Eko Hotel Victoria Island Lagos,₦,"480,000,000",0,0,0, beds, baths, Toilets +Brand New Four Units Of 4 Bedroom Terraces With 4 Car Park Spaces,Close To 1004 Flats Victoria Island Lagos,₦,"1,200,000,000",0,0,0,4 beds, baths, Toilets +Cornerpiece Plot Of 715sqms,Ligali Ayorinde/ Muri Okunola Street Victoria Island Lagos,₦,"240,000,000",0,0,0, beds, baths, Toilets +A Beautiful 5 Bedroom Fully Detached Duplex,Oniru Victoria Island Lagos,₦,"160,000,000",0,1,0,5 beds,6 baths,6 Toilets +Luxury Newly Built 4bedroom Terrace Duplex With Swimming Pool And Gym,Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"80,000,000",1,0,1,3 beds,3 baths,4 Toilets +Luxury Beautiful Service 4bedroom Semi Detached’s Duplex With 1room,Gated Community Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Terrace Duplex.,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +Luxury Beautiful Serviced 3bedroom With 1room,Gated Community Oniru Victoria Island Lagos,₦,"80,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached Duplex,Opposite Eko Hotel And Suits Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,5 beds,0 baths,0 Toilets +2500sqm Land,Water Corporation Road Oniru Oniru Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4126m2 Of Land, Victoria Island Extension Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Numbers 5 Bedrooms Duplex On 2000sqm,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Numbers 5 Bedrooms Duplex On 2000sqm,Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,5 beds,5 baths,6 Toilets +"A Detached House On Commercial Roaf, V.i Lagos",Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +5 Bed Room Detach Duplex,Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,1,1,5 beds,8 baths,8 Toilets +5 Bed Room Detach Duplex,Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,1,1,5 beds,8 baths,8 Toilets +4 Bedrooms Serviced Terrace House For For Sale,Off Place Road Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +8 Bedrooms Detached House On 1318 Sqm,Off 1004 1004 Victoria Island Lagos,₦,"350,000,000",0,0,0,8 beds,7 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Off Oniru Palace Road Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +"2,672.792 Sqm Land For Sale","Ozumba Mbadiwe Road, Water Front Victoria Island Extension Victoria Island Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +6 Units Of 3 Bedroom Terrace Duplex,"Off Ajose, Victoria Island Extension Victoria Island Lagos",₦,"250,000,000",0,0,0,3 beds,0 baths,0 Toilets +A Sharp And Neat Luxurious Taste Fully Finished 2 And 3 Bedroom Flats,Victoria Island Lagos,$,"710,000",0,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 15 Floors High Rise Open Plan Office Complex,Eko City Eko Atlantic Victoria Island Lagos,$,"55,000,000",0,1,0,0 beds,0 baths,0 Toilets +Newly Built 4bed Room Terrace Suplex,Hy Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,4 Toilets +Lovely 3bed Room Duplex With A Bq,Off Palace Way Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,3 baths,4 Toilets +Luxury And Well Built 4 Bedrooms Terraced Duplex With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace Unit,46b Anifowoshe Street Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +4 Bedroom Masionette For Sale,Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +State Of The Art One Bedroom Apartment,Water Coperation Drive Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"32,000,000",0,1,0,1 beds,1 baths,2 Toilets +One Bedroom Luxury Apartment,Wter Coperation Drive Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"35,000,000",1,1,0,1 beds,1 baths,2 Toilets +"Very Lovely 3 Bedroom Massionette For Sale At 1004 Estate, Victoria Island",1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds, baths, Toilets +"Luxuriously Built 3 Bedroom Apartment For Sale At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Nicely Structured 3 Bedroom House For Sale At Oniru, Victoria Island",Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,4 Toilets +Units Of Luxuriously Built And Serviced 3 Bedroom Apartment For Sale At Oniru Victoria Island Ext,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Apartment On Victoria Island,Water Coperation Drive Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,... Ligali Ayorinde Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished (luxury) 8 Unit Of 3 Bedroom Semi Detached House + Bq,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Flat,"Off Palace Road, Oniru Victoria Island Lagos",₦,"40,000,000",0,0,0,2 beds,0 baths,0 Toilets +25 Exotic Suites/mini Suites,... Victoria Island Lagos,₦,"1,500,000,000",0,1,1,1 beds,1 baths,1 Toilets +3 Units Of 4 Bedroom Duplex,... Saka Tinubu Victoria Island Lagos,₦,"1,000,000,000",0,0,1,4 beds,4 baths,4 Toilets +Hotel For Sale In Victoria Island 280720,Victoria Island Lagos,$,"40,000,000",0,0,1, beds, baths, Toilets +4 Bedroom Terrace Duplex,... Victoria Island Lagos,₦,"100,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Estate Oniru Victoria Island Lagos,₦,"140,000,000",1,1,0,4 beds,4 baths,5 Toilets +A Newly Built And Well Finished Service 4bedroom,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Flat With Fantastic View Of The Lagos Lagoon,1004 Victoria Island Lagos,₦,"58,000,000",0,1,0,2 beds,1 baths,2 Toilets +"Hot Cake 3 Bedroom Apartment With Bq In Oniru, Newly Built With Modern Finishes Top Of The Class Fitted Kitchen 70m Asking ...",Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds, baths, Toilets +Luxury 4 Bedroom Fully Detached Duplex With A Bq And 2 Living Areas,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,6 Toilets +5 Bedroom Duplex For Sale In Victoria Island 150703,Victoria Island Lagos,₦,"600,000,000",0,0,0,5 beds,5 baths,5 Toilets +Office Building For Sale In Lagos,Ozumba Mbadigwe Ahmadu Bello Way Victoria Island Lagos,₦,"15,000,000,000",0,1,0,10 beds,10 baths,10 Toilets +Massive Commercial 6bedroom Duplex With 2room Bq Suitable For Any Office Use For Sale,By Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0,6 beds, baths,7 Toilets +Luxury Newly Built 6units 4bedroom Terrace Duplex With 1bq Each For Sale,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +A Commercial Plot Of Land,Dideolu Estate Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Victoria Island Sale 3500m2 Bare Land On Musa Yaradua For Sale. Asking 1bn. Title: Very Good.,... Victoria Island Lagos,₦,"1,000,000,000",0,1,0,0 beds,0 baths,0 Toilets +Government Consent,Magodo Phase 2 Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",1,1,1,4 beds,4 baths,4 Toilets +7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",1,1,1, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,... Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",1,1,1,10 beds,10 baths,10 Toilets +4 Bedroom Maisonette,... Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex,... Oniru Victoria Island Lagos,₦,"3,200,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets +3 Bedroom Apartment / Flat For Sale In Victoria Island,No 452 Street Victoria Island Extension Victoria Island Lagos,₦,"2,500,000",1,1,1,3 beds,3 baths,3 Toilets +Exquisitely Finished Newly Built 4 Bedroom Terrace At Oniru,Oniru Victoria Island Lagos,₦,"135,000,000",1,1,0,4 beds,4 baths,4 Toilets +C Of O,Off Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000,000",0,1,0, beds, baths, Toilets +Land Measuring 570sqm In The Heart Of Oniru For Sale,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0, beds, baths, Toilets +Waterfront Corner Piece Land (2262m²) For Sale With Governor's Consent,Oniru Victoria Island Lagos,₦,"375,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,.... Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +7 Floors Massive Hospital Building,Oniru Victoria Island Oniru Victoria Island Lagos,₦,"7,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Flat,... Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly And Tastefully Finished 4 Bedroom Semi Detached Duplexes/townhouses For Sale In Victoria Island,Victoria Island Lagos,₦,"220,000,000",1,1,0,4 beds,4 baths,5 Toilets +22 Unit Of Three Bedroom Each For Sale,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,0,1,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Victoria Island 17jun02,Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat For Sale In Victoria Island 17jun01,Victoria Island Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terrace Duplex,... Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land In A Business District,Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Durblin One(1)bedroom Apartment,Danjuma Street Ligali Ayorinde Victoria Island Lagos,₦,"20,000",1,1,1,1 beds, baths, Toilets +Exquisite Three(3) Bedroom Apartment,Ligali Ayorinde Victoria Island Lagos,₦,"100,000",1,1,1,3 beds, baths, Toilets +8 Units Of 3 Bedroom Flat For Sale In Victoria Island 13jun13,Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets +Spacious 4 Bedroom Terraced Duplex With A Bq For Sale,Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,4 beds,4 baths,5 Toilets +Land,Victoria Island Victoria Island Lagos,₦,"50,000,000",0,0,0, beds, baths, Toilets +*brand New 5 Bedroom Detached House For Sale At Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"145,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Penthouse,"Along Pricewater Coopers, Opposite Landmark Towers Victoria Island Extension Victoria Island Lagos",₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +"A Massive Property Comprises Of 54 Suites On A 4,126sqm Land.",Off Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"900,000,000",1,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Apartments And Maisonettes,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House For Sale In Oniru 10jun22,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex For Sale In Victoria Island 09jun21,Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat For Sale In Victoria Island 09jun20,Victoria Island Lagos,₦,"90,000,000",0,0,0,2 beds,2 baths,2 Toilets +"Governor Consent. 1,234square Meter Of Dry Land In Victory Island Off Ligali Ayorino, Price: 325m",Victory Island Ligali Ayorinde Victoria Island Lagos,₦,"3,250,000,000",0,0,0, beds, baths, Toilets +Governor Consent. 8000squeter Meter Of Dry Land In Oniru Victory Island In A Well Developed Area Price: 160k Per Square Meters,Water Cooperation Road Oniru Victory Island Oniru Victoria Island Lagos,₦,"160,000",0,0,0, beds, baths, Toilets +Luxury 2 Bedroom Flat With Fantastic View Of Lagos Lagoon,1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,2 beds,2 baths,3 Toilets +Certificate Of Occupance Cofo Lagos State,Apagbo By Ologunagbaje Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,10 beds,7 baths,7 Toilets +4 Bedroom Maisonette With A Maids Room,Musa Y’ardua Street Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"350,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House For Sale In Oniru 03jun13,Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Duplex For Sale In Victoria Island 21mar10,Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,4 baths,4 Toilets +Office Complex For Sale In Victoria Island 22may8,Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Fully Detached House For Sale In Oniru 6may10,Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +4 Bedroom Twin Duplex Houses For Sale In Victoria Island 17apr3,Victoria Island Lagos,₦,"370,000,000",0,0,0,4 beds,4 baths,4 Toilets +"3, 4 Bedroom Terrace For Sale In Oniru 27apr21",Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex For Sale In Oniru 7apr9,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,4 Toilets +"2, 3 And 4 Bedroom Apartments For Sale In Oniru 4apr48",Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,2 Toilets +Land For Sale In Victoria Island 31mar34,Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Oniru 28mar50,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +"4,685.558sqm Land For Sale In Oniru 5may48",Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Block Of 3 Bedroom Flats For Sale In Oniru 15apr42,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +Office Building For Sale In Vi 25apr31,Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Victoria Island 8may8,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Apartment For Sale In Oniru 16apr22,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,3 Toilets +Plot For Sale In Eko Atlantic 01jun55,Eko Atlantic Victoria Island Lagos,$,"1,800",0,0,0, beds, baths, Toilets +2 Bedroom Penthouse For Sale In Oniru 9may31,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Victoria Island 29apr41,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 And 4 Bedroom Terrace Duplex For Sale In Oniru 6apr39,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land For Sale In Oniru 17apr29,Oniru Victoria Island Lagos,₦,"2,700,000,000",0,0,0, beds, baths, Toilets +Land For Sale In Victoria Island 30apr34,Victoria Island Lagos,₦,"22,000,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat For Sale In Victoria Island 9apr34,Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat For Sale In Oniru 4may37,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +6 Bedroom Detached House For Sale In Vi 24apr69,Victoria Island Lagos,₦,"800,000,000",0,0,0,6 beds,6 baths,6 Toilets +10 Units Of 3 Bedroom Flat For Sale In Victoria Island 29ape2,Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Apartment For Sale In Victoria Island 15may24,Victoria Island Lagos,₦,"410,000,000",0,0,0,4 beds,4 baths,4 Toilets +8 Nos 3 Bedroom Flats On Adeola Hopewell Street Victoria Island,Adeola Hopewell Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Spacious 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Commercial Property,"Waziri Ibrahim Street, Victoria Island Lagos Adeola Odeku Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4 Bedroom Terrace Duplexes, Location: Victoria Island, Lagos",Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,4 Toilets +1.200 Per Square Meter,Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Fenced & Gated Bare Land Measuring 2,000sqm Plus Off Ligali Ayorinde Victoria Island Lagos. Now Available...... Title Deed(registered)",Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +3000sqm Bareland Available In Victoria Island Ext,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4000sqm Property For Sale,Kofo Abayomi Street Victoria Island Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000",0,0,0,5 beds,5 baths,4 Toilets +Fully Serviced Four(4) Bed Fully Fitted Luxurious Semidetached Duplexes,Off Tiamiyu Savage Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,5 baths, Toilets +Brand New 4 Bedroom Terrace Duplex With A Room Bq And Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +Two Fully Detached Houses On 850sqm Is Now Available For Sale,Off Ademola Adetokunbo Victoria Island Lagos,₦,"600,000,000",0,0,0,8 beds,8 baths,8 Toilets +A Building With Two(2) Units Semidetached Houses In Victoria Island Now Available For Sale ...,Off Akin Adesola Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Detached House,Off Oniru Market Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +5 Bedroom Terrace Duplex For Sale At Oniru Estate Victoria Island Vi421,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Semi Detached House For Sale At Oniru V.i Vi662,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +"2,100sqm Land","1, Engineering Close By Churchgate Towers And Total Plc Idowu Taylor Victoria Island Lagos",₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +New Four(4) Floors Open Plan Commercial Building With Three Sides Glass Opening On A Land Size 2000sqm..,Off Akin Adesola Akin Adesola Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +Bare Land Measuring 7000 Sqm At Victoria Island,Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +"1,360.77sqm Land For Sale At Victoria Island, Lagos.",Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Newly Built 3 Storey Building And Partly Furnished With Excellent Facilities On 1700 Sqm Land For Sale At Victoria Island #43,Ligali Ayorinde Victoria Island Lagos,₦,"870,000,000",0,0,0, beds, baths, Toilets +"2000 Sqm Bareland At Victoria Island, Lagos",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"1670 Sqm Bare Land At Victoria Island, Lagos",Victoria Island Lagos,₦,"580,000,000",0,0,0, beds, baths, Toilets +"Sales: A Detached Structure Sitting On 1,045sqm Land At V.i 350m",Akin Ogunlewe Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +2116 Sqm Land With Raft Foundation At Victoria Island,Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"Fully Fenced Land Measuring 5,100sqm For Sale At Victoria Island, Oniru, Lagos.",Oniru Victoria Island Lagos,₦,"200,000",0,0,0, beds, baths, Toilets +"4 Bedroom Terrace Apartment In Oniru, Victoria Island, Lagos",Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0, beds, baths, Toilets +"Bare Land Measuring 2959 Sqm For Sale In Victoria Island, Lagos",Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +"1680 Sqm Bare Land At Victoria Island, Lagos",Adeola Odeku Victoria Island Lagos,₦,"680,000,000",0,0,0, beds, baths, Toilets +Bareland Measuring 2159 Sqm For Sale At Victoria Island,Ahmadu Bello Way Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +5 Star Hotel For Sale,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"12,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +Fenced 2000 Sqm Of Dry Land, Akin Adesola Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Strategic Fenced Land Measuring 1280sqm For Sale,Chief Abiodun Way By Four Point Hotel Oniru Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +Uncompleted 5 Bedroom Detached House,Oniru Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3184 Sqm For Sale On Idowu Martin,"Idowu Martin Street, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"1,400,000,000",0,0,0, beds, baths, Toilets +1280sqm Land Alone City Of David,"Yusuf Abiodun Way, Along City Of David Oniru Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3143sqm Land For Sale Along Adeola Odeku,Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely Brand New 4 Bedroom Terrace Duplex For Sale In Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",1,1,0,4 beds,4 baths,5 Toilets +9400sqm Land For Sale Close To Landmark Event Center,"Landmark Road, Oniru Oniru Victoria Island Lagos",₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex For Sale In Victoria Island,Victoria Island Extension Victoria Island Lagos,₦,"450,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 3bedroom Flat At Oniru Dideolu Estate,Dideolu Court Vi Oniru Victoria Island Lagos,₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +Currently Being Built 3 Bedroom Apartments In Victoria Island,Hjd Adeola Odeku Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Luxury En Suite Apartment With Maid Room In Oniru,Cbb Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A 3 Bedroom Bungalow Sitting On A 3,200sqm Opp Mega Plaza",Ghah Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Luxury En Suite Terrace Duplex In Victoria Island,Fgh Victoria Island Lagos,₦,"180,000,000",1,1,0, beds, baths, Toilets +"4 Bedroom Penthouse For Sale Price: N300,000,000",Teslim Elias Street Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds, baths, Toilets +Quick Sale At Oniru: A 3 Bedroom Serviced Flat Plus Furniture,Oniru Victoria Island Lagos,₦,"100,000,000",1,0,1, beds, baths, Toilets +"For Sale; Commercial Land Measuring 1,280sqm In Oniru",Oniru Oniru Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"A Brand New Office Complex On 4 Floors Lying On A Land Measuring Approximately 1,800 Square Meters",Adeola Odeku Victoria Island Lagos,₦,"2,800,000,000",0,1,0, beds, baths, Toilets +A Unit Of 3 Bedroom (ensuite) Luxury Apartment At Eko Pearls Towers,Eko Atlantic City Victoria Island Lagos,$,"1,800,000",0,1,0,3 beds,3 baths,4 Toilets +Executive Brand New Terrace Duplex With Bq At Ikoyi.,Abeke Residences Ojora Ikoyi Lagos. Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A New, Well Built, Fully Equipped Purpose Built Grade A Open Plan Office Building Of 15 Floors",Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,0,0,10 beds,10 baths,10 Toilets +"A Detached Structure Sitting On 1,045 Square Meters Land",Akin Ogunlewe Road Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +An Affordable Five Bedroom Fully Detached Duplex With Bq For Sale At Oniru.,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,5 beds,5 baths,5 Toilets +Corporate Building For Sale A Former Access Bank Headquarters On 10 Floors,Adeola Odeku Victoria Island Lagos,₦,"8,000,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Townhouse With 1 Room Bq,... Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +This Magnificent 3 Bedroom Duplex With A Bq For Sale At Oniru 65m Asking Price,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Under Construction Newly Built Five Bedroom Detached Duplex With A Boy’s Quarters,Oniru Victoria Island Lagos,₦,"220,000,000",1,1,0,5 beds,5 baths,6 Toilets +Newly Built Four Bedroom Detached Duplex For Sale,Victoria Island Lagos,₦,"300,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terraces,.. Oniru Victoria Island Lagos,₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +"1,300 Square Meter",Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0, beds, baths, Toilets +Newly Renovated 4 Bedroom Terrace Duplex For Sale At Oniru Victoria Island Lagos.,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3bedroom Flat,@ Lawani Oduloye Street Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0, beds, baths, Toilets +"Brand New Office Complex On 4 Floors Lying On A Land Measuring Approximately 1,800 Square Meters, Situated Along The Commercial Adeola Odeku Street, Victoria Island, Lagos",Adeola Odeku Victoria Island Lagos,₦,"2,800,000,000",0,0,0, beds, baths, Toilets +"Tastefully Newly Built 4,bedroom Detached House","Road 3 House 6,vgc Victoria Island Extension Victoria Island Lagos",₦,"145,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newley Built 4bedroom Semidetached House In A Mini Estate,Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex,Oniru Estate Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,4 beds,4 baths,5 Toilets +Old Building 1200sqm,Olubogbaji Street Off Post Office Adeola Odeku Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex With Bq,... Saka Tinubu Victoria Island Lagos,₦,"180,000,000",1,1,0,4 beds,4 baths,4 Toilets +9 Bedroom With 200 Seater Event Centre,"21b Idowu Martins Street, Victoria Island, Lagos Kofo Abayomi Victoria Island Lagos",$,"1,200,000",0,0,0,9 beds,4 baths,4 Toilets +4 Bedroom Detached House With 3 Rooms Boys’ Quarter At Victoria Island: N350m,Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds, baths, Toilets +Brand New 4 Bedroom Terrace Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat With One Bq,Ajoseadegun Street Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terrace Duplex For Sale In Victoria Island Lagos.,Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0, beds,4 baths,5 Toilets +15 Storey Building Tower,Adeyemo Alakija Victoria Island Lagos,₦,"20,000,000,000",0,1,0,0 beds,0 baths,8 Toilets +"Land Measuring 2,228.94sqm",Ahmadu Bello Way Victoria Island Lagos,₦,"1,225,917",0,0,0, beds, baths, Toilets +"Get 1,2 ,3 Bedroom Luxury Apartment In Eko Atlantic With Just 10m Initial Deposit And 2 And Half Years Payment Plan (a And A Tower). A & A Tower Is A New Luxury Residential Development Situated In The Ocean Front District Of The Eko Atlantic. It Is Locat",Ocean Front Eko Atlantic Victoria Island Lagos,₦,"160,000,000",0,1,0,3 beds,4 baths,4 Toilets +Brand New Fully Detached 7 Bedroom Duplex With Swimming Pool For Sale On Banana Island. Price: 700m,Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +Prime Land For Sale On Ahmadu Bello Way And Bishop Oluwole Street Victoria Island 16000 Sqm N350k Per Square Meter Federal Cofo,Ahmadu Bello Way Victoria Island Lagos,₦,"350,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"140,000,000",0,1,0,4 beds,4 baths,3 Toilets +Brand New 5 Bedroom Fully Detatched House,Osapa London Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,5 beds,5 baths,4 Toilets +Brand New Fully Furnished Water Front Detached Duplex On Banana Island.,Victoria Island Extension Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Semi Detached Duplex With 1bq,"Palace Road, Oniru, Lagos Oniru Victoria Island Lagos",₦,"170,000,000",0,1,0,5 beds,5 baths,5 Toilets +Mixed Use Land For Sale In An High Value Location,Oyin Jolayemi Victoria Island Extension Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"20,000 Sqmt Fence And Gated Land",Ahmadu Bello Way Victoria Island Lagos,₦,"550,000",0,0,0, beds, baths, Toilets +Modern Building In The Heart Of Victoria Island,Akin Adesola Victoria Island Lagos,$,"15,000,000",0,1,1, beds, baths, Toilets +4 Bedroom Flat For Sale At 1004 Estate,Adetokunbo Ademola 1004 Victoria Island Lagos,₦,"80,000,000",1,0,0,4 beds,4 baths,4 Toilets +Newly Built 3 Bedrooms Terraced Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"130,000,000",1,1,0,3 beds,3 baths,4 Toilets +Tastefully Fnished Terrace Duplexe For Sale In Vi,Oniru Victoria Island Lagos,₦,"105,000,000",1,1,1, beds, baths, Toilets +Building For Sale At Vi,Ademola Adetokunbo Str. V.i Ademola Adetokunbo Victoria Island Lagos,₦,"1,800,000,000",0,0,0,5 beds,5 baths,5 Toilets +Newly Built 3bedroom Flat For Sale At Oniru Inside Oniru Estate,Oniru Estate Oniru Victoria Island Lagos,₦,"60,000,000",0,1,0,3 beds,3 baths,3 Toilets +"Corporate Offer For Sale Of Property At Bishop Oluwole Street, Victoria Island, Lagos",Bishop Oluwole Ahmadu Bello Way Victoria Island Lagos,₦,"4,600,000,000",0,0,0,10 beds,10 baths,10 Toilets +15 Storey Kanti Towers In Victoria Island,Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment For Sale Per Flat,Victoria Island Akin Olugbade Victoria Island Lagos,₦,"200,000,000",1,1,1,3 beds,3 baths,3 Toilets +A 7 Storey Commercial Property For Sale At Victoria Island,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0,7 beds,7 baths,7 Toilets +New 3 Bedroom Terrace,Off King Palace Oniru Victoria Island Lagos,₦,"49,000,000",1,1,0,3 beds,4 baths,4 Toilets +Lovely 3 Bedroom Serviced Flat With One Room Bq For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +For Sale; Luxury 3 Bedroom Terrace House With A Maid's Room At Oniru,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +"For Sale, Luxurious 5 Bedroom Fully Detached Serviced House At Oniru",Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,6 baths,6 Toilets +For Sale; A Brand New 4 Bedroom Tasetefully Finished Terrace House At Oniru,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,4 beds,5 baths,5 Toilets +For Sale; Brand New 5 Bedroom Semi Detached House With A Room Bq At Oniru,Oniru Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,6 baths,6 Toilets +Exquisitely Finished 5 Bedroom Terrace For Sale,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,1,5 beds,5 baths,5 Toilets +Brand New Service 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,3 baths,3 Toilets +Luxury One Bedroom Flat For Sale, Oniru Victoria Island Lagos,₦,"45,000,000",0,0,1,1 beds,1 baths,1 Toilets +5 Bedroom Terrace For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths, Toilets +Brand New And Exquisitely Finished Service 3 Bedroom Duplex Located In Oniru Extension And Available For Sale,Oniru Extension Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,3 Toilets +For Sale; 3 Bedroom Serviced Terraces At Oniru,Oniru Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,3 beds,4 baths,4 Toilets +For Sale Nice 3 Bedroom Duplex,Dideolu Estate; Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fenced And Bareland Measuring 1599.665m2,Oyin Jolayemi Street Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 3 Bedroom Luxury Apartment,Water Coperation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Land Measuring 3,150sqm",Oniru Opp. Rccg City Of David Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +"10,000sqm Sand Filled Land Along Landmark Road. (land Can Be Sold In Bits)","Landmark Road, Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 39,940sqm (3.994 Hectares)","Maiyegun Tourism Zone, Beside Silverbird Radio Victoria Island Lagos",₦,"2,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Detached In Oniru Estate,"Ihuntayi Road, Oniru Private Estate Victoria Island Extension Victoria Island Lagos",₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +Luxury Brand New 4 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Brand New 3 Bedroom Flat For Sale In Oniru,Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +Exquisite 5 Bedroom All Rooms Ensuite Detached House + A Pool,Oniru Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +"3 Nos Detached Houses With Six Rooms Bq On 3,200sqm",Along Idowu Martins Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",1,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 1,413sqm",Ajose Adeogun Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Fully Detached House + Bq,Behind 4 Points Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Serviced Apartment +maid's Room,Water Coperation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Land Measuring 4,600sqm",Directly Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +"Land With Demolishable Structure Measuring 2,600 Sqm",Musa Yar'adua; Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Cornerpiece Parcel Of Land Of 2513m2 Along Ahmadu Bello Way, Victoria Island, Lagos For N1.3b","Ahmadu Bello Way, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,300,000,000",0,0,0,10 beds, baths, Toilets +"A Cornerpiece Parcel Of Land Of 2518m2 At Ahmadu Bello Way, Vi With Fed. C Of O. Price. N1.3b.","Ahmadu Bello Way, Vi Ahmadu Bello Way Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Home Dry Land With C Of O Behind Shoprite Sangotedo,Behind Shoprite Novare Mall Eko Atlantic Victoria Island Lagos,₦,"14,500,000",1,1,1, beds, baths, Toilets +"Two Plots Measuring Almost 4,500sqms Both Plots With Existing Buildings On Them With Lagos State Title Selling",Victoria Island Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +For Sale :land Size: 2159.844sqm,Vi Ahmadu Bello Way Victoria Island Lagos,₦,"1,180,000,000",0,1,0, beds, baths, Toilets +"For Sale : 15,000sqm Land On Ozumba Mbadiwe Road Near Oriental Hotel Victoria Island. Price 5 Billion",Vi Victoria Island Extension Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +"For Sale : 15,000sqm Land On Ozumba Mbadiwe Road Near Oriental Hotel Victoria Island. Price 5 Billion",Ozumba Road Victoria Island Extension Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Land For Sale,Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +"3300 Square Metres Of Land On Muri Okunola Street, Victoria Island, Lagos. For Sale!!! It Is Located In A Commercial Precinct With High Flow Of Traffic And Accessible Road Network.",Muri Okounola Victoria Island Extension Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +"4 Storey Office Building, Located Off Adetokunbo Ademola Street, Victoria Island, Lagos, Nigeria (opposite Eko Hotel) Is Available For Sale",Ademola Adekunbo Street Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Elegantly Built 5 Bedroom Detached Duplex,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,6 baths,6 Toilets +Prime Vacant Bank Building On Plot Measuring 600sqms Available For Sale,V. I Ademola Adetokunbo Victoria Island Lagos,₦,"285,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Terraced,Victoria Island Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive 8 Units Of 3 Bedroom Terrace With Swimming Pool And Gym 3500sqm,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,4 baths,4 Toilets +Plot Of Land Measuring 851sqms,Victoria Island Oniru Victoria Island Lagos,₦,"138,000,000",0,0,0, beds, baths, Toilets +Luxury Newly Built 5bedroom Semi/terrace Duplex With 1bq,Vi Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Land For Sale,Victoria Island Extension Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +"Plots Of Land Measuring Almost 8,500sqms",Vi Kofo Abayomi Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Exquisitely Built 4 Bedroom Terraced Duplex,Ihuntanyi St Oniru Oniru Victoria Island Lagos,₦,"95,000,000",1,1,0,4 beds,4 baths,5 Toilets +For Sale:massive Land Measuring 850sqm Availabe In Prime Victoria Island,Prime Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +Plot Measuring 822sqms For Sale,Victoria Island Oniru Victoria Island Lagos,₦,"138,000,000",0,0,0, beds, baths, Toilets +"Plots Measuring Almost 4,500sqms",Victoria Island Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +Newly Built Office Space For Sale,Victoria Island Area Of Lagos. Victoria Island Lagos,₦,"180,000,000",0,1,0, beds,4 baths,4 Toilets +Oriental Hotel: 5 Star Luxury Functional Waterfront Hotel With Asian Furn,Victoria Island Area Of Lagos. Victoria Island Extension Victoria Island Lagos,$,"250,000,000",0,0,0, beds, baths, Toilets +Prime Building On Plot Measuring 900sqm On Saka Tinubu Street Victoria Island Is Available For Sale Price: *n320m Title:c Of O,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"320,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Terraced,Vistoria Island Oniru Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Flat Detached Duplex,Victoria Island Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive Commercial Land Measuring 1000sqm Facing Oriental Hotel,Victoria Island Area Of Lagos. Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Elegant And Luxury Built 3bedroom Flat In A Serene Area,Victoria Island Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Nicely Built 2bedroom Flat In A Private Estate,Oniru Private Estate Oniru Victoria Island Lagos,₦,"50,000,000",1,0,0,2 beds,2 baths,3 Toilets +Home 5 Bedroom Duplex With C Of O In Omole Phase 2,Omole Phase 2 1004 Victoria Island Lagos,₦,"70,000,000",1,1,1,5 beds,5 baths,5 Toilets +Certificate Of Occupancy (c Of O),"Ozumba Mbadiwe Road, Close To Oriental Hotel Kofo Abayomi Victoria Island Lagos",₦,"5,000,000,000",0,0,0, beds, baths, Toilets +Newly Built And Serviced 3bedroom Luxury Flat With A Room Bq,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,7 Toilets +"4 Bedroom Terrace In A Serene Environment Of Oniru Estate, Victoria Island, Lagos.",Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +9 Floor High Rise,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Super Luxury 1 Bedroom Apartment In Victoria Island,Olosa Street Oniru Victoria Island Lagos,₦,"50,000,000",1,1,0,1 beds,2 baths,2 Toilets +"3 Bedroom Apartment + Maid's Room (under Construction ) N10,000,000 Initial Deposit And Spread Balance Payment Over 24 Months","Water Corporation Drive, Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 1 Bedroom Beach View Apartment(off Plan),Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"38,000,000",1,0,0,1 beds,2 baths,2 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bedroom Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 1 Bedroom Mini Flat With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,2 Toilets +Luxury 2 Bedroom Flat With Excellent Facilities,Vi Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Finished 4 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New 5 Bedroom Detached Duplex With Excellent Facilities,Oniru Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Property On 863 Square Meters Of Land,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"400,000,000",0,0,0,6 beds, baths, Toilets +4 Bedroom Detached House + 2 Rooms Bq,Atlantic Beach Estate Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Brand New Spacious 5 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,5 Toilets +Bare Land Measuring 3000sqm,Directly Along Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +Land Measuring 1663sqm,"Oyin Jolayemi Street, Close To Eko Hotels Victoria Island Lagos",₦,"550,000,000",0,0,0, beds, baths, Toilets +Executive 5bedroom Duplex With A Bq For Sale At Vgc.,Vgc Victoria Island Lagos. Victoria Island Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxurious Brand New 7 Units Of 4bedroom Terrace Duplex For Sale At Palace Road Oniru.,Oniru Palace Road Victoria Island Lagos. Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +"Newly Built 4 Units Of Terraces, 2 Units Of 4 Bedroom And 2 Units Of 5 Bedroom With A Room Bq", Oniru Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Well Maintained 4brm Detached Duplex + 3rms Bq @ Barabale Musa Cr, V. I. #350m",Barabale Musa C Vi Ahmadu Bello Way Victoria Island Lagos,₦,"350,000,000",0,0,1,4 beds,4 baths,5 Toilets +Brand New 4 Floors Of Office Space, Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 4 Bedroom Terrace Duplexes,Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds, baths, Toilets +"For Sale In Lekki Phase 1 Lagos. An Apartment Which Comprises Of 17 Numbers 1,2&3 Bedrooms (2&3 Bedroom Penthouse), Sitting On A Land Measuring 2801sqm",Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +A Strategically Located “commercial Plot” With Governor’s Consent 1.3b,"@ Landbridge Avenue, Oniru Lagos Oniru Victoria Island Lagos",₦,"1,300,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Bungalow With Less Than A Year Of Use... Owner Relocated Abroad 28m,Thomas Estate Before Abraham Adesanya Victoria Island Lagos,₦,"28,000,000",0,0,0,3 beds, baths, Toilets +"Luxury & Newly Built Open Office Space Of International Standard Of 15 Floors , With Ample Parking Space On Each Floors",Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,1,0,10 beds,10 baths,10 Toilets +3 Bedroom Flat With A Bq For Sale,Wurola Court Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraces With A Bq,... Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Newly Built 3bedrooms Flat At Victoria Island,Off Palace Road Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,3 beds,3 baths,4 Toilets +Joint Venture At Oniru Land Measuring 4985m2 Fenced And Gated With Approval For Commercial Purposes,Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Vi Shortlet,Victoria Island Lagos,₦,"400,000",0,1,0,3 beds,3 baths,3 Toilets +5 Bedroom Semi Detached Duplex Oniru,Oniru Victoria Island Lagos,₦,"160,000,000",1,1,0,5 beds,5 baths,5 Toilets +10 Flats Of 3bedroom Flat,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",1,1,1,3 beds,0 baths,0 Toilets +4 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +1950sqm Bare Land,... Ademola Adetokunbo Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +"6,850sqm Bare Land", Ademola Adetokunbo Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Palace Road, Oniru Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With 2 Room Bq, Oniru Victoria Island Lagos,₦,"68,000,000",0,0,0,4 beds,0 baths,0 Toilets +Fully Fenced & Gated 452 Sqm Bareland,"Mabogunje St, Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +933 Sqm Land, Eko Atlantic Victoria Island Lagos,₦,"365,773,320",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House With Bq,"Oniru Estate, Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +944 Sqm Land, Eko Atlantic Victoria Island Lagos,₦,"370,085,760",0,0,0,0 beds,0 baths,0 Toilets +Land,"Dideolu Esate, Victoria Island Lagos",₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +House, Oniru Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Prime Land Measuring 2,300 Sqm In Victoria Island",... Adeola Odeku Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,"Off Palace Raod, Oniru Victoria Island Lagos",₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Well Maintained And Serviced 3 Bedroom Ground Floor Flat,"Off Palace Raod, Oniru Victoria Island Lagos",₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land, Eko Atlantic Victoria Island Lagos,₦,"377,926,560",0,0,0,0 beds,0 baths,0 Toilets +Land, Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Fenced & Gated 900sqm Bareland,"Mabogunje St, Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ibile Close, Oniru Victoria Island Lagos",₦,"135,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 4bedroom Terrace Duplex With Ac Units,Victoria Island Oniru Victoria Island Lagos,₦,"150,000,000",0,1,1,4 beds,4 baths,5 Toilets +Luxury 4bedroom Terrace For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds, baths, Toilets +Land Measuring 3000sqm,Directly Along Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Corner Piece Detached Building,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +Land,Landmark Center Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4060.646 Sqm Water Front Bare Land For Sale At Ozumba Mbadiwe Street, Victoria Island, Lagos.",Ozumba Mbadiwe Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +C Of O,"Oko Awo Street, Victoria Island,lagos. Victoria Island Extension Victoria Island Lagos",₦,"270,000,000",0,0,0,10 beds, baths, Toilets +C Of O,"Oko Awo Street, Victoria Island,lagos. Victoria Island Extension Victoria Island Lagos",₦,"270,000,000",0,0,0,10 beds, baths, Toilets +4 Bedroom Terrace Duplex At Oniru,Plot 25 Ihuntayi Street Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace Duplex At Oniru,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +Flat Apartment And Penthouses,Eko Atlantic City Saka Tinubu Victoria Island Lagos,$,"5,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Duplex,Ihuntayi Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,4 Toilets +New 4 Bedroom Luxury Semi Detached House,Oniru Victoria Island Lagos,₦,"195,000,000",0,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex At Millennium Homes Estate Oniru,Millennium Homes Estate Oniru Near Shoprite Oniru Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Brand New 3 Nos Of 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Office Space,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terraced Duplex With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 5 Bedroom Semi Detached Duplex With Excellent Facilities,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,5 beds,5 baths,6 Toilets +Executive 5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,5 beds,0 baths,0 Toilets +Tastefully Finished 4 Bedroom Mansionette, Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Nice 3 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,7 baths,0 Toilets +4 Bedroom Semi Detached Duplex, Oniru Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Landed Commercial Property,V/i Akin Adesola Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bed Luxury Terrace With Penthouse And Bq,Near Mega Plaza Victoria Island Lagos,₦,"280,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,5 beds,0 baths,0 Toilets +"Topmost Finished, World Class 10 Units, 3 Bedrooms Luxury & Serviced Apartments",Adeola Odeku Street Victoria Island Lagos,₦,"2,187,500,000",0,0,0,3 beds,4 baths, Toilets +Land,"Ligali Ayorinde, Victoria Island Lagos",₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +4000 Sqm Land At Banana Island,Banana Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +An Empty Land,Beside Four Point Hotel Oniru Victoria Island Lagos,₦,"1,100,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flats In Block Of 12(nos),", Adeola Hopewell Victoria Island Lagos",₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets +3 Bedroom Flat + Maid Room,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,4 beds,5 baths,5 Toilets +2700sqm Land For Sale,.... Eko Atlantic Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury Furnished House,"Plot 320, Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex, Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +Old 5 Bedroom Duplex For Sale At Oniru Estate For Quick Sale,Oniru Estate Victoria Island Victoria Island Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Luxury 4 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,5 Toilets +Brand New 3 Bedroom Flats,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New Luxury 4 Bedroom Penthouse, Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Flat,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"300,000,000",0,0,0,3 beds,4 baths,4 Toilets +Spacious 4 Bedroomed Purpose Built Town House Offers Excellent Accommodation,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bed High Rise Mansonette,"Cluster D, Block D5 (ground Floor) 1004 Victoria Island Lagos",₦,"67,000,000",0,0,0,3 beds,3 baths,4 Toilets +2bedroom Flat,1004 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +"Fenced And Gated Waterfront Land Measuring 20,000sqm (5,000 Acres)",Ozumba Mbadiwe Street Victoria Island Lagos,₦,"5,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2088sqm Fenced And Dry Commercial Land,Churchgate Street. Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Oniru Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Brand New 5 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,6 baths,6 Toilets +5 Bedroom Town House,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +Land Measuring Approximately 5000sqm,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 2600 Sqm,Corner Piece Land Between Jide Oki/ Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New Luxury 3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 3 Bedroom Flat In Victoria Island, Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Duplex In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,5 baths,5 Toilets +1346sqm Land,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +Land Measuring 4058sqm,Adeleke Adedoyin Off Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"1,050,000,000",0,0,0, beds, baths, Toilets +Land Measuring 3000 M2,"Ozumba Mbadiwe; From Addax To Oriental Hotel (waterfront), Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +2784sqm At Dideolu Estate,Dideolu Estate Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of Exquisitely Finished 2 Bedroom Flat,Muri Okunola Victoria Island Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat, Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +1 Bedroom Flat,Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,1 beds,1 baths,2 Toilets +5 Bedroom Duplex,Victoria Island Ademola Adetokunbo Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,6 baths,6 Toilets +Luxury 3 Bedroom Flat For Sale At Oniru,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths, Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,3 beds,3 baths,4 Toilets +1700sqm Land,Off Sakai Tinubu Saka Tinubu Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,1004 1004 Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +Fully Serviced One Bedroom Apartment,Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,2 baths,2 Toilets +"Land Measuring 15,000m2","Directly Along Vi Lekki Expressway, Beside Oriental Hotel (waterfront) Victoria Island Lagos",₦,"3,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land Measuring 16000 Sqm,Ozumba Mbadiwe Victoria Island Lagos,₦,"7,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets +Clean 2 Bedroom Flat,1004 Housing Estate 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,0 beds,0 baths,0 Toilets +15 Storey Kanti Towers At Adetokunbo Ademola,Adetokunbo Ademola Victoria Island Lagos,$,"30,000,000",0,0,0, beds, baths, Toilets +Land,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex + Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,1 Toilets +Newly Built One Bedroom Apartment Furnished, Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,3 Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,4 beds,0 baths,0 Toilets +Office Space With Parking Space In Victoria Island,Victoria Island Victoria Island Lagos,₦,"8,000,000",0,0,0, beds, baths, Toilets +Newly Built 3bedroom Flat,Around Oniru Oniru Victoria Island Lagos,₦,"60,000,000",0,1,1,3 beds,4 baths,4 Toilets +Newly Built One Bedroom Apartment Furnished,Foursquare Road Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets +Newly Built One Bedroom Apartment Furnished,Oniru Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets +Land Measuring 4500m2,Cofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +One Bedroom Flat In Victoria Island,Victoria Island Victoria Island Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths, Toilets +"Eight, 3 Bedroom Flats",Olosa Street Tiamiyu Savage Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Eight, 3 Bedroom Flats",Olosa Street Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,2 baths, Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built One Bedroom Apartment Furnished,Oniru Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,2 Toilets +1 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",0,0,0,1 beds,1 baths,1 Toilets +Fully Detached 5 Bedroom Duplex For Sale At Victoria Island Lekki,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land Measure 900 Square Metres At Saka Rimini,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Unit Of 3bedroom Flat,Wurola Court Oniru Victoria Island Lagos,₦,"45,000,000",0,1,0,3 beds,3 baths,4 Toilets +Newly Built One Bedroom Apartment Furnished, Oniru Victoria Island Lagos,₦,"35,000,000",1,1,1,1 beds,1 baths,3 Toilets +4200sqm Land,Adowu Martin Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Jide Oki Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 2 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Luxury 3 Bedrooms Flat With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedrooms Flat With Excellent Facilities With Bq,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Pent Flat,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Mojisola Onikoyi Estate Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +"4 Bedroom And A Bq, Cinema, Study, Laundryroom, Box Room.",Oniru Palace Road Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,4 beds,5 baths,5 Toilets +Stunning Four Bedroom Terrace At Victoria Island, Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Pristine 5 Bedroom Terrace Duplex At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +8 Units Of Three Bedroom Flat With 1 Room Bq At Vi,"16a Hyde Tower , Akin Olugbade Street Akin Olugbade Victoria Island Lagos",₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets +Off Plan: Super Luxury 3 Bedroom Ocean Front Apartments With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"160,000,000",0,0,0,3 beds,3 baths,4 Toilets +Off Plan: 4 Bedroom Luxury Penthouse With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"360,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan: Super Luxury 2 Bedroom Ocean Front Apartments With 1 Room Boys' Quarter At Eko Atlantic,Eko Atlantic Eko Atlantic Victoria Island Lagos,₦,"145,000,000",0,1,0,2 beds,2 baths,3 Toilets +"3 Bedroom Maisonette On Ground Floor With Garden At The Rear At 1004, Victoria Island.",1004 1004 Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +"A Well Finished 3 Bedroom Semi Detached Duplex With 1 Room Boys' Quarter For Sale In Dideolu Estate, Victoria Island",Dideolu Estate Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +"A Well Finished 2 Unit 4 Bedroom Terrace Duplex With Bq In Victoria Island, Oniru",Oniru Oniru Victoria Island Lagos,₦,"125,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Block Of Flats At Victoria Island,Oniru Oniru Victoria Island Lagos,₦,"500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Off Plan: Super Luxury 2 Bedroom Ocean Front Apartments In Victoria Island,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"157,800,000",0,1,0,2 beds,2 baths,3 Toilets +"A Newly Built 4 Bedroom Well Finished Terrace House For Sale In Dideolu Estate, Victoria Island",Victoria Island Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,5 Toilets +"A Well Finished 3 Bedroom Luxury Apartments For Sale In Dideolu Estate, Victoria Island",Victoria Island Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Block Of 8 Flats For Sale Tenanted 6 Units Of 3 Bedroom And 2 Units Of 1 Bedroom Pent Flat,Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tenanted 8 Units Of 3 Bedroom Terrace House With 1 Room Bq Each,Victoria Island Oniru Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment In A Mini Estate,Plot 9 Edudu Eliyemo Street Oniru Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace,No 20 Palace Road Oniru Victoria Island Lagos,₦,"135,000,000",1,0,0,4 beds,4 baths,5 Toilets +Apartment For Sale In Dubai,Dubai Victoria Island Lagos,₦,"107,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Terrace,Palace Road Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets +Apartments For Sale At Victoria Island Lagos(3 Bedroom Apartments At Iconic Tower For High Class),"Behind Zenith Bank Headquarter On Sinari Daranijo Street, Victoria Island Lagos Victoria Island Lagos",₦,"150,000,000",1,1,1,3 beds,4 baths,4 Toilets +Commercial Land In Major Street In V Island,Plot 1o87 Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,"Oniru ,victoria Extension Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +9 Bedroom Massive Mansion + Bq, Akin Adesola Victoria Island Lagos,₦,"900,000,000",0,0,0,9 beds,9 baths,10 Toilets +"Quick [email protected] *4,000m2* Beside Four Point Sheralton. Title: Gov. Consent *price:n300,000* Per M2.",Beside Four Point Sheralton Oniru Victoria Island Lagos Oniru Victoria Island Lagos,₦,"300,000",0,0,0, beds, baths, Toilets +Land,Akin Ogunlewe Street Victoria Island Extension Victoria Island Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Victoria Island Extension Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +"5 Bedroom Fully Detached Duplex With 4 Rooms Servant Quarters & 2 Rooms Office Sitting On 1,005.14 Square Meters Of Land",Ligali Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exclusively Designed 4 Bedroom Semi Detached House (carass),George Omonubi Street Oniru Victoria Island Lagos,₦,"110,000,000",0,1,0,4 beds,4 baths,4 Toilets +Residential Complex For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths, Toilets +2 Blocks Of 3 Bedroom Apartment And 2 Bedroom Guest Chalet,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Building For Sale Along Akin Adeshola, Victoria Island",Akin Adesola Street Akin Adesola Victoria Island Lagos,₦,"1,200,000,000",0,0,0,9 beds,8 baths,10 Toilets +Luxurious 3 Bedroom Apartment In Serene Environment,Oniru Axis Oniru Victoria Island Lagos,₦,"65,000,000",0,1,0,3 beds,3 baths,3 Toilets +8 Units Of Three Bedroom Apartment At Oniru,. Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +C/o,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",1,0,0,3 beds,3 baths,4 Toilets +Cofo,Oniru Oniru Victoria Island Lagos,₦,"600,000,000",0,1,0,3 beds,3 baths,4 Toilets +"2, 3 Bedroom Apartment With Bq Available For Sale At Oniru. Fully Serviced.",Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,4 baths,4 Toilets +"5 Bedroom Terrace Duplex @ Oniru Estate,  Victoria Island",Oniru Victoria Island Lagos,₦,"135,000,000",0,0,1,5 beds,6 baths,6 Toilets +This Stunning 4 Bedroom Terrace Duplex With A Bq Is Available For Sale At Oniru Victoria Island,Oniru Victoria Island Lagos,₦,"105,000,000",0,0,1,4 beds,5 baths,5 Toilets +Newly Built 5bedroom Terrace Corner Piece Duplex With Bq Oniru Vi,Oniru Victoria Island Lagos,₦,"120,000,000",1,1,0,5 beds,5 baths,6 Toilets +"Expanse Of Land Measuring 20,000 Sqm & 16,570 Sqm Totaling 36,570 Square Metres For Sale On Victoria Island, Lagos:",Tiamuyu Salvage Akin Adesola Victoria Island Lagos,$,"80,000,000",0,0,0, beds, baths, Toilets +"1,430 Sqm Of Land For Sale At Oniru Estate Victoria Island Lagos",Estate Oniru Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oniru Street Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0, beds, baths, Toilets +Luxury 4 Bedroom Town House,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious 5 Bedroom Terrace With Bq, Oniru Victoria Island Lagos,₦,"170,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxurious 3 Bedroom Penthouse,Off Chief Yesufu Abiodun Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat (all Rooms En Suit) With Bq Flat,Off Abisogun Road Oniru Victoria Island Lagos,₦,"58,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished And Furnished 3 Bedroom Flat With A Servant Quarters,Oniru; Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +3300 Square Metres Of Land,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 2 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New Exquisitely Finished And Contemporary 5 Bedrooms House In A Mini Estate With Bq,Oniru Victoria Island Lagos,₦,"200,000,000",0,1,0,5 beds,5 baths,6 Toilets +Plot Of Land Measuring 2121m2 At Eko Atlantic For Sale,Eko Atlantic Victoria Island Lagos,$,"4,242,000",0,0,0, beds, baths, Toilets +For Sale: Excellently Finished 4 Bedroom Terrace Apartment, Oniru Victoria Island Lagos,₦,"77,000,000",0,0,0,4 beds,4 baths,5 Toilets +Nice 2 Bedroom Maisonette In 1004,Cluster D 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +8 Units 3 Bedrooms Apartment With 1 Room Bq Each,Oniru Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",1,0,0,3 beds,3 baths,4 Toilets +6 Bedroom Fully Detached Duplex, Sanusi Fafunwa Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets +4 Bedroom Semi Detached Duplex With Bq,Estate Victoria Island Extension Victoria Island Lagos,₦,"130,013,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedrooms Flat + Bq In Oniru, Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Lagos,₦,"130,000,000",0,1,0,4 beds,4 baths,4 Toilets +5 Bedroom Semi Detached Houses With A Room Bq,Oniru Victoria Island Lagos,₦,"180,000,000",0,1,0,5 beds,5 baths,5 Toilets +Brand New And Very Spacious 3 Bedroom Apartment With Bq,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",1,1,0,3 beds,3 baths,4 Toilets +"Top Notch Finished 5 Bedroom With A Room Bq For Sale At Oniru, Lagos.",Oniru Victoria Island Lagos,₦,"135,000,000",0,1,0,5 beds,5 baths,6 Toilets +2 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Apartment,Cluster A2 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,3 baths,4 Toilets +Luxury 3 Bedroom Penthouse For Sale In V.i Kw 2330,Eko Atlantic Victoria Island Lagos,₦,"34,256,343",0,0,0,3 beds,3 baths, Toilets +5000sqm On Adeola Odeku,Vi Adeola Odeku Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Luxury And Well Finished 4 Bedroom Terraced Duplex,"Off Palace Road, Oniru Estate, Victoria Island (extension.) Victoria Island Extension Victoria Island Lagos",₦,"85,000,000",0,0,1,4 beds,0 baths,0 Toilets +A 9 Unit Terrace House,Ologun Agbaje Street Adeola Odeku Victoria Island Lagos,₦,"215,000,000",0,0,0,4 beds,4 baths,4 Toilets +Hottest Land Sale In Oniru Victoria Island Lagos,Oniru V.i Oniru Victoria Island Lagos,₦,"185,000,000",1,0,0, beds, baths, Toilets +"Tastefully Finished 4bedrooms Duplex In Oniru, V.i","Palace Road, Oniru Oniru Victoria Island Lagos",₦,"140,000,000",1,1,1,4 beds,4 baths,5 Toilets +A Luxurious Fully Furnished And Serviced Mini Flat Located In Victoria Island,Oniru Victoria Island Lagos,₦,"55,000,000",1,1,1,1 beds,1 baths,2 Toilets +10 Units Of 3 Bedroom Flats,Adeola Odeku Victoria Island Lagos,₦,"1,100,000,000",0,1,0,10 beds,10 baths,10 Toilets +Newly Built 15 Floors Highrise Office Complex For Sale In Lagos.,Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos,₦,"14,400,000,000",1,1,1,10 beds,10 baths,10 Toilets +4 Bedroom Semi Detached Duplex For Sale In V.i Kw 2247,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths, Toilets +"I,346sqm Commercial Land Jv In Victoria Island",... Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Duplex With Service Quarters For Sale In V.i Kw 2235,Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths, Toilets +"1600 Sqm Land On Oyinjolayemi Street, Victoria Island, Lagos",Ademola Adetokunbo Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +"Eko Pearl Towers Comprises Units Of 2, 3 And 3 Bedroom Penthouse Available For Sale",Eko Atlantic Victoria Island Lagos,$,"710,000",1,1,0,2 beds,2 baths,3 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built Luxury 3 Bedroom Serviced Apartment In Oniru Estate Kw 1368,Oniru Estate Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,4 baths, Toilets +4bedroom Duplex With 2rooms Bq For Sale At Victoria Island Kw 1818,Balarabe Musa Street Victoria Island Lagos,₦,"350,000,000",0,0,0,4 beds,4 baths, Toilets +For Sale: 5 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Block Of 80% Completed 3 Bedroom Flat,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +For Sale: 5 Bedroom Semi Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +For Sale: 4 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Maisonette At Oniru Kw 2076,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Terrace With Service Quarters For Sale In V.i Kw 2134,Landbridge Avenue Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths, Toilets +Ground Floor Office Space For Sale At Victoria Island,Rauf Taylor Street Victoria Island Lagos,₦,"5,000,000",1,0,0, beds, baths,1 Toilets +6 Floors 5 Star Luxury Hotel In The Diplomatic Area Of Victoria Island Lagos Is For Sale,Tiamiyu Savage Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +7000sqm Land,Victoria Island Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +10000sqm Land,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,231 Sqm Land","Along Akin Adesola Road, Vi Akin Adesola Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4407sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200sqm Land,Off Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex For Sale,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex For Sale,Oniru Oniru Victoria Island Lagos,₦,"120,000,000",0,1,1,5 beds,5 baths,6 Toilets +Excellently Finished Serviced 4 Bedroom Terrace Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land," abila Abiodun; Oniru, Victoria Island Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Semi Detached Duplex For Sale In Oniru,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land, Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Oniru Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +1345 Sqm Land (price Per Sqm),Oniru Palace Road Oniru Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Ligali Ayorinde Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land, Victoria Island Lagos,₦,"410,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautiful 5 Bedroom Semi Detached Duplex For Sale At Parkview Estate,Park View Estate Victoria Island Lagos,₦,"170,000,000",0,1,1,5 beds,5 baths,6 Toilets +"An Exquisitely Built 3 Bedroom House With A Separate Bq Located Strategically At Oniru Iwith Alarge Parking Space, Swimming Pool, Standby Generator Set, Water Treatment And Exquisitely Finished Is Available For Sale.",Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Nice And Spacious 3 Bedroom Flat At Oniru,Asher Court Of Palace Road Oniru Oniru Victoria Island Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets +New And Luxury Finished 5 Bedroom Detached House At Oniru,Off Palace Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Flat, Adeola Hopewell Victoria Island Lagos,₦,"260,000,000",0,1,0,3 beds,3 baths,4 Toilets +"Affordable Land For Aale At Awoyaya Lekki Lagos,(altlatic Bar Estate).",Behind Altlatic Bar Estate Eko Atlantic Victoria Island Lagos,₦,"7,500,000",1,0,0, beds, baths, Toilets +Distress Sale: 3 Bedroom Flat At Oniru,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"38,000,000",1,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached House,Akinbo Savage Close. Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 5 Bedroom Fully Detached Duplex With Servants' Quarter.,Oniru Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,6 baths,6 Toilets +Land For Sale,Musa Yaradua Street Kofo Abayomi Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Land,New Market Road Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Ornamentally Built 8 Bedroom Fully Detached Edifice. Located In Banana Island,Banana Island Lagos Victoria Island Lagos,₦,"5,000,000,000",1,1,1,8 beds, baths,10 Toilets +Land For Sale,Dide Olu Estate Oniru Victoria Island Lagos,₦,"420,000,000",0,0,0, beds, baths, Toilets +Fully Serviced And Partly Furnished 4 Bedroom Townhouse,"Landbridge Avenue, By Palace Road Oniru Victoria Island Lagos",₦,"90,000,000",1,0,0,4 beds,4 baths,5 Toilets +Dubai Luxury Hotel Investment,77 Eko Atlantic Victoria Island Lagos,$,"220,000",1,1,0,1 beds,1 baths,1 Toilets +3 Bedroom All Ensuite Apartment On The Ground Floor,Oniru Victoria Island Lagos,₦,"55,000,000",1,1,1,3 beds, baths, Toilets +Service 4 Bedroom Terrace,"Oniru, Vi Victoria Island Extension Victoria Island Lagos",₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 3 Bedroom Flat, Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Flat,1004 Estate Victoria Island Lagos,₦,"62,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New And Tastefully Finished 3 Bedroom Service Apartment In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +1 Bedroom Serviced Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,1 beds,1 baths,2 Toilets +"10 Acres Of Dry Land With C Of O At Almadu Bello Way ,victoria Island","Almadu Bello Way,vi Ahmadu Bello Way Victoria Island Lagos",₦,"24,000,000,000",0,0,0, beds, baths, Toilets +"10 Acres Of Land With C Of O At Ahmedu Bello Way, Victoria Island","Ahmedu Bello Way, Ahmadu Bello Way Victoria Island Lagos",₦,"24,000,000",0,0,0,0 beds,0 baths,0 Toilets +"4000 Square Metres Of Land At Akin Adesola Street,vi",Akin Adesola Akin Adesola Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +Executive And Fully Service Units Of 4bedroom Terrace Duplexes,Very Close To 4point Hotel Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets +Exquisitely 358 Hotel Rooms,On Lekki/vi Expressway Beside 1004 Estate Kofo Abayomi Victoria Island Lagos,₦,"35,000,000,000",1,1,1,10 beds,10 baths,10 Toilets +Luxury 3bedroom Flat + Bq,Near Four Point Hotel Oniru Victoria Island Lagos,₦,"70,000,000",1,1,1,3 beds,3 baths,4 Toilets +Luxury 3bedroom Flat,Oniru/vi Off Four Point Road Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +Luxury 4bedroom Duplex,At Lekki Right Hand Side Very Close To Oniru Oniru Victoria Island Lagos,₦,"75,000,000",0,1,1,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,"Abisogun Road,(ihutayi Street After Opeyemi Court) Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Joint Venture Proposition For A Serious Developer,The Land Its Around Shoprite Oniru Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service And Luxury 4bedroom Terrace Duplex,In A Gated And Mini Estate Around Vi Oniru Victoria Island Lagos,₦,"100,000,000",1,1,1,4 beds,4 baths,5 Toilets +Waterfront Hotel,At Oniru/vi Victoria Island Extension Victoria Island Lagos,₦,"1,800,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Terrace Duplex,Off Kigali Ayorindé Road Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury 3 Bedroom Apartments For The Rich And Famous,Victoria Island Lagos,$,"1,100,000",1,1,1,3 beds,3 baths,4 Toilets +Newly Developed Estate,Victoria Island Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Newly Developed Estate,Victoria Island Lagos,₦,"32,000,000",0,0,0, beds, baths, Toilets +Newly Built 4 Bedroom Terrace House,Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds, baths, Toilets +Hotel For Sale At Victoria Island,Oniru Oniru Victoria Island Lagos,$,"35,000,000",1,1,1,9 beds,9 baths,9 Toilets +"3 Bedroom Flat At Oniru, With A Room Bq, For Sale, High Rise, Beach View, With Swimming Pool And Gym",Oniru Victoria Island Lagos,₦,"70,000,000",0,1,0,3 beds,4 baths,4 Toilets +"Office Building, Skyscraper",Ademola Adetokunbo Crescent Ademola Adetokunbo Victoria Island Lagos,$,"40,000,000",0,1,0, beds, baths, Toilets +"15,000 Sqm Spacious Land", Victoria Island Lagos,₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +947.939sqm Land, Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1200sqm Land,Ligali Ayorinde Street Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +850sqm Landwith C Of O,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace House In Oniru,Off Palace Road Oniru Victoria Island Lagos,₦,"100,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Terrace House In Oniru,Lekki Right Side Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,6 Toilets +3300 Sqm Land, Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Newly Built 3 Bedroom Luxury Apartment With A Room Bq,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",1,1,1,3 beds,3 baths,4 Toilets +Well Finished 4 Bedroom Terrace Duplex For Sale With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Terrace Duplex With A Room Boys Quarter At Dediolu Estate, Oniru",Dediolu Estate Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,4 baths,5 Toilets +Exquisitely Finished 4 Bedroom Tarrace With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Well Finished 4 Bedroom Terrace Duplex For Sale With A Room Boy's Quarter At Oniru,Oniru Oniru Victoria Island Lagos,₦,"140,000,000",1,0,0,4 beds,4 baths,5 Toilets +"Well Finished 3 Bedroom Flat For Sale, Oniru #45m",Oniru Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Completed Service 2 And 3 Bedroom Apartments With Adequate Parking Lots,Off Palace Road Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,3 beds,3 baths,4 Toilets +18km Sqm Fenced Plot Of Land Facing Main Express,Oniru Victoria Island Extension Victoria Island Lagos,₦,"6,000,000,000",0,1,0, beds, baths, Toilets +Land For Sale At Vgc,Vgc Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +A Commercial Plot Measuring 4143 Sqms,Landbridge Avenue Oniru Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +2bedroom Apartment For Sale,1004 1004 Victoria Island Lagos,₦,"52,000,000",0,0,1,2 beds,2 baths,3 Toilets +"1559sqm Commercial Land For Sale At Oyin Jolayemi Street, Victoria Island, Lagos","Oyin Jolayemi Street, Victoria Island Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +"5brm Fully Detached House + Bq At Oniru, V.i N95million",Oniru Oniru Victoria Island Lagos,₦,"95,000,000",1,0,0,5 beds,5 baths,6 Toilets +Well Fitted 3bedroom Terrace Duplexduplex With A Bq On 2floors,Bosun Adekoya Street Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,3 beds,4 baths,5 Toilets +Decent 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Units Of Tastefully Built 3 Bedrooms Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of 4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Tastefully Built 4 Bedrooms Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"750,000,000",0,0,0,3 beds,2 baths,3 Toilets +A Tastefully Built 4 Bedrooms Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 4 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 4 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,4 beds,4 baths,5 Toilets +12 Units Of 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Lovely 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Units Of Tastefully Built 3 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Beautiful 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +6 Units Of Lovely 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"800,000,000",0,0,0,3 beds,2 baths,3 Toilets +Lovely 3 Bedroom Duplex In V.i, Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Exquisite 4 Bedrooms Penthouse,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Units Of 3 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 5 Bedroom Terrace Duplex In V.i, Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +Lovely 2 Bedroom Flat In V.i, Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Tastefully Built 3 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"77,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautiful 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Units Of Exquisite 2 Bedroom Flat,Eko Atlantic Victoria Island Extension Victoria Island Lagos,$,"710,000",0,0,0,2 beds,2 baths,3 Toilets +Nicely Built 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +An Exquisite 3 Bedroom Flat,Eko Atlantic Victoria Island Extension Victoria Island Lagos,$,"875,000",0,0,0,3 beds,3 baths,4 Toilets +Neat 4 Bedroom Semi Detached Duplex In V.i,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Exquisite 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Newly Built 4 Bedroom Terrace Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Beautiful 4 Bedroom Terrace Duplex In Lekki,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +A Lovely 4 Bedrooms Semi Detached Duplex,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Built 4 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 3 Bedroom Penthouse In V.i,Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Units Of Exquisite 3 Bedroom Penthouse,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Lovely 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Tastefully Built 3 Bedroom Flat In V.i,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Units Of 3 Bedroom Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"260,000,000",0,0,0,3 beds,4 baths,4 Toilets +Lovely 4 Bedroom Terrace Duplex In V.i, Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 5 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,6 Toilets +10 Units Of 3 Bedroom Flat In V.i,V.i Victoria Island Lagos,₦,"280,000,000",0,0,0,3 beds,3 baths,4 Toilets +8 Units Of 2 Bedrooms Flat,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"45,000,000",0,0,0,2 beds,2 baths,3 Toilets +Lovely 3 Bedroom Duplex In V.i, Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Built 4 Bedroom Terraced Duplex In V.i,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious And Fully Furnished 1 Bedroom Apartment, Victoria Island Extension Victoria Island Lagos,₦,"39,800,000",0,0,1,1 beds, baths, Toilets +Office Complex For Sale???? Land Size: 2065sqm. Location ??olosa Street Directly Opposite Eko Hotel & Suites Victoria Island Lagos Nigeria. Price: N2b Title Documents: C Of O,Ademola Adetokunbo Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Brand New 7 Nos Of 4 Bedroom En Suite Terrace Houses,Off Oniru; Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +Affordable Mini Estate In Victoria Island,Adeleke Adedoyin Street Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Exquisite 3 Bedroom Flat In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Massive Commercial Property In Vi (former Embassy),Off Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,$,"25,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 5 Bedroom Town Houses In V/i,Transit Villa Victoria Island Victoria Island Lagos,₦,"250,000,000",1,1,0,5 beds,5 baths,5 Toilets +Serviced 4 Bedroom Town Houses For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat For Sale In Oniru,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +"A Prestigious & Elegantly Finished 3 Bedroom Apartment (with A Maid's Room) In Olosa Street Victoria Island , Adjacent To Eko Hotel & Suites","Olosa Street, By Eko Hotel & Suites Ademola Adetokunbo Victoria Island Lagos",₦,"90,000,000",1,1,0,4 beds,5 baths,5 Toilets +A Prestigious 3 Bedroom Apartment + A Maid's Room By Eko Hotel & Suites,Olosa Street Eko Atlantic Victoria Island Lagos,₦,"100,000,000",1,1,0,4 beds,5 baths,5 Toilets +"5,190 Sqm Land",Oniru Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached Duplexes For Sale,Off Aboyade Cole Victoria Island Lagos Adeola Odeku Victoria Island Lagos,₦,"470,000,000",0,0,0,5 beds,5 baths,6 Toilets +Luxury Serviced 4 Bedroom Town House,Akiogun Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +Luxury Serviced 4 Bedroom Terraced With Very Large Rooms With A Room Bq In Gated Estate,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",1,1,1,4 beds,4 baths,5 Toilets +Lovely And Well Maintained 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Serviced 4 Bedroom Town House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,0,0,4 beds,4 baths,5 Toilets +Newly Built Four Bedroom Detached Duplex For Sale,Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds, baths, Toilets +A Lovely And Well Maintained 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 3 Bedroom Flat With Excellent Facilities,Oniru Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",1,1,0,3 beds,3 baths,4 Toilets +Land For Sale,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,150",0,0,0, beds, baths, Toilets +Eko Atlantic City Lands,1 Eko Atlantic Victoria Island Lagos,₦,"500,000",0,0,0, beds, baths, Toilets +"4 Floors Office Space On 2000sqm Land Space, Corner Piece With Cctv Cameras Air Conditionals Etc",Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"3,500,000,000",0,1,0, beds, baths,9 Toilets +"Luxury Block Of 10 Flats With Bq Each, Swimming Pool, Gym, Elevator Etc",Jide Oki Vi Victoria Island Lagos,₦,"1,400,000,000",0,0,1,3 beds,4 baths, Toilets +"35,000sqm Fenced Land Boardering Ahmedu Bello / Akin Adesola/tiamiju Savage",Tiamiyu Savage Akin Adesola Victoria Island Lagos,$,"100,000,000",0,0,0, beds, baths, Toilets +Beautifully Built Fully Serviced 3 Bedroom Apartments With Attached Maid Quarters,"Oniru Private Estate, Vi Oniru Victoria Island Lagos",₦,"65,000,000",1,1,0,3 beds,3 baths,4 Toilets +3 Bedroom Penthouse,Elegbata Festival Drive Oniru Victoria Island Lagos,₦,"65,000,000",1,0,0,3 beds,3 baths,4 Toilets +"1,050sq.m Land With Detached Houses Along Ajose Adeogun Street Victoria Island.",Tiamiyu Savage Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +63 Rooms Hotel For Sale, Akin Adesola Victoria Island Lagos,₦,"2,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +"15,000sqm Of Commercial Land, On Express Way","Ozumba Mbadiwe Road, Beside Oriental Hotel Victoria Island Lagos",₦,"6,500,000,000",0,0,0,1 beds,1 baths,1 Toilets +5000sqm Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat For Sale,Oniru Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,4 baths,4 Toilets +Newly Built 4 Bedroom Terraced House With Bq,Oniru Victoria Island Lagos,₦,"105,000,000",1,1,0,4 beds,4 baths,5 Toilets +Tastefully Finished 3 Units 3 Bedroom Terraced House With Bq,Palace Road Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,3 beds,3 baths,4 Toilets +5 Bedroom Detached Duplex Ideal For Residential Or Offices In A Tenant Able Condition,Off City Of David Church Road Oniru Oniru Victoria Island Lagos,₦,"130,000",1,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Flat In A Serviced Private Residential Building.,Palace Road Off Ihuntai Street Close To Four Points Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,4 baths,4 Toilets +Distress Sale : 3 Bedroom Apartment & 4 Bedroom Pent Flat,Palace Road Oniru Private Estate Oniru Victoria Island Lagos,₦,"45,000,000",1,0,0,3 beds,3 baths,4 Toilets +"Tastefully Finished 6 Units 5 Bedroom Semi Detached Duplex With Family Lounge, Bq, Swimming Pool And Gym Center.",Palace Road Oniru Victoria Island Lagos,₦,"200,000,000",1,1,0,5 beds,5 baths,6 Toilets +Five Star Hotel At Victoria Island,Victoria Island Lagos,$,"46,000,000",0,0,1,10 beds,10 baths,10 Toilets +15000sqm Waterfront Land,Ozumba Mbadiwe Road Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +610 Sqm Plot Of Land,Opposite Eko Hotel Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +3300sqm Land,Muri Okunola Street Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +Land At Victoria Island For Sale,Victoria Island Eko Atlantic Victoria Island Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House,Off Adeola Ademola Adetokunbo Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,5 baths,0 Toilets +For Sale 3 Bedroom Terrace With A Separate Bq,Palace Road Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Luxury Apartment ( Off Plan),"Water Corporation Drive ,off Ligali Ayorinde Victoria Island Lagos",₦,"10,000,000",1,1,1,3 beds,3 baths,4 Toilets +2 Bedroom Flat,"20,ozumba Mbadiwe Way, Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,1,0,2 beds,3 baths,2 Toilets +Office Space, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +6th Floor Open Plan Office Space In Victoria Island,"Off Adeola Odeku, Victoria Island Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +6 Bedroom Mansion Duplex, Ademola Adetokunbo Victoria Island Lagos,₦,"300,000,000",0,0,0,6 beds,7 baths,6 Toilets +Office Space, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedrooms Apartment,"Eko Pearl Towers, Ahmadu Bello Way Victoria Island Lagos",$,"710,000",0,0,0,3 beds,4 baths,4 Toilets +"Mixed Use Land In Eko Atlantic City 3,433 Sqm $1,000/sqm",Eko Atlantic City Eko Atlantic Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"Pent Floor Open Plan Office Space, 497 Square Metres",Off Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +"Land On Adeola Odeku, Victoria Island",Adeola Odeku Victoria Island Lagos,₦,"2,600,000,000",0,0,0, beds, baths, Toilets +Commercial/residential Property In Victoria Island Mixed Development,Off Adeola Odeku Street. Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0,10 beds,10 baths,10 Toilets +6 Bedroom House In Victoria Island,"Off Oyinjola Yemi Street, Victoria Island Victoria Island Lagos",₦,"307,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat,. Akin Olugbade Victoria Island Lagos,₦,"290,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land,Off Kasumu Ekemode Street Saka Tinubu Victoria Island Lagos,₦,"610,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom Apartment,"Eden Heights, Off Adeola Odeku Victoria Island Lagos",₦,"304,000,000",1,1,0,4 beds,5 baths,5 Toilets +Open Office Spaces And Shops At Eko Atlantic City,Eko Atlantic City Victoria Island Extension Victoria Island Lagos,$,"6,000",0,0,0,0 beds,0 baths,2 Toilets +1650sqm Of Land In Victoria Island,"Adeola Odeku, Victoria Island Victoria Island Lagos",₦,"800,000,000",0,0,0, beds, baths, Toilets +Land,"Close To Four Points Sheraton, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land In Eko Atlantic City Mixed Development,Eko Atlantic City Victoria Island Lagos,₦,"2,831,812,500",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Apartment With Maids Room,"Water Corporation Drive, Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +The Pacific Lagos ( Luxury 1bedroom Apartments),"20, Ozumba Mbadiwe Victoria Island Lagos",₦,"120,000,000",1,1,1,1 beds,2 baths,2 Toilets +World Class 2bedroom Apartments,20 Ozumba Mbadiwe Victoria Island Lagos,₦,"170,000,000",1,1,1,2 beds,3 baths,3 Toilets +Newly Built 4 Bedroom Terrace,Palace Road Oniru Victoria Island Lagos,₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Maisonette,Before Bar Beach Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +Newly Built 1 Bedroom Mini Flat,Victoria Island Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets +Lovely 4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace House With Maids Room,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,5 Toilets +Hotel,Tiamaya Savage Street Victoria Island Extension Victoria Island Lagos,$,"25,000,000",1,0,1,0 beds,0 baths,0 Toilets +Lagos Oriental Hotel,"3, Maroko Road, Lekki Epe Express Way Eti Osa, Victoria Island Lagos",$,"250,000,000",1,0,1, beds, baths, Toilets +4 Bedroom Terraced Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,4 beds,4 baths,5 Toilets +6 Bedroom Detached House With A 2 Rooms Boy’s Quarter,"10a & 10b, A.j Marinho Drive, Victoria Island, Lagos Victoria Island Lagos",₦,"370,000,000",0,0,0,6 beds,6 baths, Toilets +Mixed Use Land," saka Jojo Street, Off Idejo St, Victoria Island Extension Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Governor Consent,Oba Idowu Oniru Avenue Oniru Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +13 Units Of 2 Bedroom Apartments On Land Measuring 1503sqm,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"550,000,000",0,0,0,2 beds, baths, Toilets +A Detached House,Adeola Odeku Street Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House For Commercial Use,Tiamiyu Street Tiamiyu Savage Victoria Island Lagos,₦,"30,000,000",0,0,0, beds, baths, Toilets +14 Bedroom Detached House With Service Quarters,"320, Akin Ogunlewe Street, Off Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos",₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +Finished 3 Bedroom Semi Detached House,Didieolu Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,3 beds,3 baths,4 Toilets +Beautifully Finished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"75,000,000",0,1,0,3 beds,3 baths,4 Toilets +A Well Built 4 Bedroom Terrace Duplex,"Akiogun/market Road, Oniru Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Astefully Finished And Stunning Four (4) Bedroom Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Well Built And Finished 3 Bedroom Terraced Duplex,"Off Yesufu Abidoun Way, Oniru Estate Victoria Island Lagos",₦,"75,000,000",0,0,0,3 beds,2 baths,3 Toilets +Serviced 3 Bedroom Ground Floor Flat,Seagle Towers Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,0 baths,0 Toilets +3 Nos Of 5 Bedroom Town House With A Bq,Off Ligali Ayorinde Victoria Island Lagos,₦,"390,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Five Bedroom Terrace Duplex With A Room Bq,Off Palace Rd Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Commercial Property,"Ajose Adeogun Street,victoria Island,lagos Victoria Island Extension Victoria Island Lagos",₦,"610,000,000",0,0,0,10 beds,10 baths,10 Toilets +Hotel / Guest House, Tiamiyu Savage Victoria Island Lagos,₦,"9,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Vacant Luxury And Partially Serviced 4 Bedroom Terrace Duplex,Ihuntayi Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Terrace Apartment,Spring Gate Estate Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,6 beds,0 baths,0 Toilets +"Newly Built 2 And 1 Bedroom Luxury Apartment At Mivi, Oko Awo, Victoria Island",Oko Awo Ademola Adetokunbo Victoria Island Lagos,₦,"85,000,000",0,1,1,2 beds,2 baths,2 Toilets +24 Bedroom Block Of Flats For Sale," adeola Hopewell, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat For Sale," off Palace Road, Oniru, Victoria Island (vi), Lagos Oniru Victoria Island Lagos",₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Office Space For Sale," off Ajose Adeogun Street, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"160,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Commercial Property On 2 Floors,"An Office Block At Idowu Taylor Street, V.i, Lagos State Victoria Island Lagos",₦,"300,000,000",0,0,0, beds, baths, Toilets +Luxury Flats Available For Sale,Victoria Island Akin Olugbade Victoria Island Lagos,₦,"220,000,000",0,0,0,3 beds, baths, Toilets +"3,300 Square Metres Land With Good And Transferable Title","Muri Okunola Street, Victoria Island Lagos",₦,"950,000,000",1,0,0, beds, baths, Toilets +2000 Sqm Land, Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced And Gated 903 Sqm Land,Mabogunje Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,0 beds,0 baths,0 Toilets +5342 Sqm Land, Oniru Victoria Island Lagos,₦,"980,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terrace With Bq, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +Newly Built Open Space Office,Muri Okunola Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Penthouse, Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New 4 Bedroom Mansionette,Etim Iyang Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,0 baths,0 Toilets +Brand New Commercial 3 Storey Building, Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Semi Detached House With Bq,City Of David Road Oniru Victoria Island Lagos,₦,"150,000,000",0,1,0,5 beds,5 baths,6 Toilets +1800 Sqm Land, Idowu Taylor Victoria Island Lagos,₦,"650,000,000",0,0,0,4 beds,0 baths,0 Toilets +2 Nos 5 Bedrooms Detached House With Bq,Adeleke Adedoyin Victoria Island Lagos,₦,"1,000,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached House With 2 Rooms Bq,Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Brand New Open Office Space, Victoria Island Lagos,₦,"55,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,0 baths,0 Toilets +Exquisite Four Bedroom Terrace Duplex At Oniru,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"110,000,000",1,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Duplex + Bq, Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat," oniru Palace Road, Oniru Victoria Island Lagos",₦,"85,000,000",0,0,0,3 beds,4 baths,4 Toilets +4 Nos 5 Bedroom Semi Detached Houses,Adeleke Adedoyin Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +7358sqm Land, Oniru Victoria Island Lagos,₦,"2,575,300,000",0,0,0,0 beds,0 baths,0 Toilets +",",Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +,Millennium Homes Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +1000 Square Meters Land, Oniru Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Four Bedroom Terrace Duplex With Bq, Oniru Victoria Island Lagos,₦,"85,000,000",0,1,0,4 beds,0 baths,0 Toilets +Allocation Letter From Bank,Millennium Estate Oniru Victoria Island Lagos,₦,"100,000,000",1,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"220,000,000",0,0,0,4 beds,4 baths,5 Toilets +Massive Detached House,Off Adeola Odeku Street Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats," plot 1388a Olosa Street, Off Adetokunbo Ademola Street, Victoria Island Extension Victoria Island Lagos",₦,"95,000,000",0,0,0,3 beds,4 baths,5 Toilets +4 Bedroom House, Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Mixed Use Land, Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat, Eko Atlantic Victoria Island Lagos,$,"710,000",0,0,0,3 beds,3 baths,4 Toilets +Mixed Use Land, Oniru Victoria Island Lagos,₦,"200,000",0,0,0,0 beds,0 baths,0 Toilets +"For Sale: Lovely 3bedroom Flat Off Palace Road, Oniru Victoria Island","Off Palace Road, Oniru Victoria Island. Oniru Victoria Island Lagos",₦,"58,000,000",1,0,1,3 beds,3 baths,4 Toilets +"A Plot Of Land Measuring 2659sqm At Dideolu Estate,oniru Lagos.",Dideolu Estate Oniru Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 1700sqm On Adetokunbo Ademola Street Victoria Island With An Approval For Filling Station.,Adetokunbo Ademola Ademola Adetokunbo Victoria Island Lagos,₦,"1,400,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 1880sqm,Musa Yar Dua Victoria Island Victoria Island Lagos,₦,"680,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A Plot Of Land Measuring 1600sqm On Idowu Taylor Street,victoria Island,lagos.",Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 7000sqm, Ahmadu Bello Way Victoria Island Lagos,₦,"3,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 1400sqm, Idowu Taylor Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Plot Of Land Measuring 2200sqm On Akin Adesola Street Victoria Island,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"1,500,000,000",0,0,0, beds, baths, Toilets +A Plot Of Land Measuring 1800sqm,Ibrahim Waziri Tiamiyu Savage Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Functional Waterfront 5 Star Hotel For Sale Location: Along Victoria Island, Lagos",F Victoria Island Lagos,$,"250,000,000",1,0,1,10 beds,10 baths,10 Toilets +8 Nos Of 4 Bedroom Semi Detached Houses,"Adeleke Adedoyin Street Off Kofo Abayomi, Victoria Island, Lagos. Kofo Abayomi Victoria Island Lagos",₦,"1,600,000,000",0,0,1,4 beds,4 baths,4 Toilets +Office Space," adetokunbo Ademola Street, Off Ozumba Mbadiwe, Victoria Island Lagos",₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats, Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,4 baths,3 Toilets +Mixed Use Land," mobil, Victoria Island Extension Victoria Island Lagos",₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat," in Oniru Estate, Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat," in Oniru Estate, Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"165,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Detached And Semi Detached House With 1 Bedroom Bq, Oniru Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,0 baths,0 Toilets +2 Bedroom Flat, Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,2 beds,2 baths,3 Toilets +Commercial Property, Victoria Island Lagos,₦,"13,000,000",0,0,0,0 beds,0 baths,0 Toilets +Landed Property,Abduraham Okene Ligali Ayorinde Victoria Island Lagos,₦,"1,400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Duplex,Oniru Oniru Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Semi Detached House With Bq,Moshood Olugbani Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,4 Toilets +10 Bedroom Detached House,Akin Ogunleye Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +Commecial Property,Onyi Jolayemi Sanusi Fafunwa Victoria Island Lagos,₦,"390,000,000",0,0,0, beds, baths, Toilets +15 Bedroom Commercial Property," akin Adesola Street, Victoria Island Extension Victoria Island Lagos",₦,"1,200,000,000",0,0,0, beds, baths, Toilets +2121 Sqm Land,"Hlb Zone, Eko Atlantic Victoria Island Lagos",$,"4,242,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Waziri Ibrahim Crescent Adeola Odeku Victoria Island Lagos,₦,"420,000,000",0,0,0,4 beds,0 baths,0 Toilets +2670 Square Meter Land,Ozumba Mbadiwe Street Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1514 Square Meters Land,Saka Jojo Street Off Idejo Street Saka Tinubu Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Units Of 4 Bedroom Detached Duplex,"Oniru, Victoria Island. Ligali Ayorinde Victoria Island Lagos",₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +11 Units Of 3 Bedroom Luxury Flats With Bq,"Off Palace Road, Oniru, Victoria Island Ligali Ayorinde Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Tastefully Finished 3bedroom,Victoria Island 1004 Victoria Island Lagos,₦,"60,000,000",1,0,0,3 beds,2 baths,3 Toilets +Office Building,"Adetokunbo Ademola Street, Off Ozumba Mbadiwe Ademola Adetokunbo Victoria Island Lagos",$,"40,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached House, Oniru Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,0 baths,0 Toilets +Luxuriously Built 4 Bedroom Terrace House, Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,4 baths,5 Toilets +New 3 Bedroom Serviced Flat With Bq,Oniru Estate Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Block Of 1, 2 & 3 Bedroom Flats", Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Flat With Bq, Oniru Victoria Island Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Office Complex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"5,000,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terrace House With Bq, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex For Sale, Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Semi Detached Duplex,  Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"140,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat," 1, Sogbesan Close, Oniru Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Functional 5 Star Hotel For Sale Location: Along Victoria Island, Lagos",Victoria Island Ligali Ayorinde Victoria Island Lagos,$,"250,000,000",0,0,0,10 beds,10 baths,10 Toilets +5 Bedroom Detached Duplex, Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Massive 4bedroom Terrace Duplex,At Oniru/vi Lagos Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land For Jv,Off Hamadu Bello Way Ahmadu Bello Way Victoria Island Lagos,₦,"960,000,000",0,0,0, beds, baths, Toilets +7 Beds Detach House,Vi Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,7 beds,7 baths,8 Toilets +2 Bedroom Flat," eko Atlantic City, Eko Atlantic Victoria Island Lagos",₦,"650,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Detached Duplex,  Victoria Island Lagos,₦,"210,000,000",0,0,0,4 beds,5 baths,5 Toilets +Luxury 3 Bedroom Apartment With Excellent Facilities And Bq,"1, Sogbesan Close, Oniru Oniru Victoria Island Lagos",₦,"80,000,000",1,1,1,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Fed. C Of O,Lekki Epe Expressway By Oriental Hotels Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Office Building,"Adetokunbo Ademola Street, Off Ozumba Mbadiwe Victoria Island Lagos",$,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Of Land For Sale,Off Kofo Abayomi Street Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +Land,"Atlantic View Estate, Oniru Victoria Island Lagos",₦,"150,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fenced Land For Sale,Sinari Darinjo Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +13 Room Hotel, Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500sqm Of Land For Sale At Victoria Island,Kofo Abayomi Street Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +4800sqm Of Land For Sale At Victoria Island,Adeleke Adedoyin Street Victoria Island Lagos,₦,"2,200,000,000",0,0,0, beds, baths, Toilets +1800sqm Of Land At Victoria Island,"Vi , Lagos . Victoria Island Lagos",₦,"55,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Victoria Island,"Vi , Lagos . Victoria Island Lagos",₦,"250,000",0,0,0, beds, baths, Toilets +5 Bedroom Terrace For Sale At Victoria Island,Beside 4 Point Sheraton Hotel Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Office Building For Sale,Olosa Str Tiamiyu Savage Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"5 Story Building Of Superbly Finished 3bedrooms Flat,+bq, All Rooms Ensuit,",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"270,000,000",0,1,0,3 beds,3 baths,3 Toilets +Four (4) Bedroom Terrace House, Oniru Victoria Island Lagos,₦,"105,000,000",0,0,0,4 beds,0 baths,0 Toilets +The Pacific Lagos 1 & 2 Bedroom In A Luxury Apartment In Vi,#20 Ozumba Mbadiwe Street Kofo Abayomi Victoria Island Lagos,₦,"25,000,000",0,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached House With 2rooms Bq,Adeleke Adedoyin Street Off Kofo Abayomi Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,0 Toilets +Exquisitely Finished And Fully Serviced 3 Bedroom Flat,Palace Street Oniru Victoria Island Lagos,₦,"70,000,000",1,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex,"Ihuntanyi Street, Off Palace Road, Oniru Victoria Island Lagos",₦,"90,000,000",1,1,0,4 beds,4 baths,5 Toilets +2500sqm With Demolishable Old Structure,Kofo Abayomi Area Kofo Abayomi Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Ligali Ligali Ayorinde Victoria Island Lagos,₦,"1,223,344,555",0,0,0,4 beds,5 baths,5 Toilets +Well Finished 4 Bedroom Twin Duplexes,Lasode Crescent Off Ozumba Mbadiwe Avenue Victoria Island Victoria Island Lagos,₦,"550,000,000",0,1,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House,Balarabe Musa Crescent 1004 Victoria Island Lagos,₦,"500,000,000",0,0,0,5 beds,0 baths,5 Toilets +World Class 1&2 Bedroom Apartments With Penthouse Suites,Ozumba Mbadiwe Avenue Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",1,1,0,1 beds,1 baths,2 Toilets +3 Bedroom Terrace Duplex,"Emerald Court, Dideolu Estate Victoria Island Extension Victoria Island Lagos",₦,"75,000,000",1,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terraced Duplex, Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,5 Toilets +Luxury 4 Bedroom Terrace Duplex With 1 Room Bq,. Oniru Victoria Island Lagos,₦,"90,000,000",0,1,0,4 beds,4 baths,4 Toilets +"1,700sqm Land For Mixed Developement","Off Palace Way, Victoria Island Victoria Island Lagos",₦,"230,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With Bq,Off Palace Way Victoria Island Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Tastefully Finished 3 Bedroom Apartment,1004 Estate 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Odudu Eleyiwo Road Ahmadu Bello Way Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mixed Use Land,Off Ligali Ayorinde Victoria Island Lagos,₦,"295,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex With Bq,. Oniru Victoria Island Lagos,₦,"88,000,000",0,0,0,4 beds,4 baths,4 Toilets +2 Bedroom Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +2 Bedroom Flat,. Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,2 beds,2 baths,3 Toilets +5 Bedroom Semi Detached Duplex,Off Palace Road Oniru Victoria Island Lagos,₦,"160,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat For Sale,  Oniru Victoria Island Lagos,₦,"38,000,000",0,0,0,3 beds,3 baths,3 Toilets +4 Bedroom Terraced Duplex With Bq,Off Palace Road Oniru Victoria Island Lagos,₦,"6,000,000",0,0,0,4 beds,5 baths,5 Toilets +Serviced 5 Bedroom Terraced Duplex With Swimming Pool & Gym,Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,6 baths,6 Toilets +Serviced 3 Bedroom Flat,1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,2 baths,3 Toilets +"2 Wings Of 5 Bedroom Detached Duplex With C Of O On 500 Sqm Off Adeola Odeku, Victoria Island",Off Adeola Odeku Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,6 Toilets +5 Bedroom Semi Detached Duplex For Sale, Oniru Victoria Island Lagos,₦,"155,000,000",0,0,0,5 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Akiogun Road Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom House For Sale,  Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Detached Duplex," adeleke Adedoyin, Victoria Island Lagos",₦,"900,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New Tastefully Finished 4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,"Mabogunje Street, Oniru Victoria Island Lagos",₦,"45,000,000",0,0,0,4 beds,3 baths,4 Toilets +5 Bedroom Detached House With A 2 Room Boy’s Quarter On 1600sqm,"10a. Aj Marinho Drive, Victoria Island, Lagos. Ademola Adetokunbo Victoria Island Lagos",₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House With A 2 Room Boy’s Quarter On 1000sqm,"40 Balarabe Musa Crescent, Victoria Island, Lagos 1004 Victoria Island Lagos",₦,"350,000,000",0,0,0,4 beds,4 baths,5 Toilets +4400 Sqm Land,. Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2500 Sqm Land With Dilapidated Detached House,Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"670,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House On 750 Sqm,Adeleke Adedoyin Victoria Island Victoria Island Lagos,₦,"260,000,000",0,0,0,4 beds,5 baths,4 Toilets +Detached House On 950sqm,Sir Manual Street Victoria Island Extension Victoria Island Lagos,₦,"300,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Luxury Apartment,Coperation Drive Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Off Plan |3 Bedroom Luxury Apartment | Serviced,Musa Yaradua Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +Privately Gated Luxury 4 Bedroom Semi Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat In Victoria Island,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Semi Detached Corner Piece Apartment,Off Market Road Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Off Plan |4 Bedroom Terrace Duplex | Serviced,Oniru Victoria Island Extension Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Apartment,Water Coperation Road Victoria Island Extension Victoria Island Lagos,₦,"68,000,000",0,0,0,3 beds,3 baths,4 Toilets +1 Bedroom Luxury Apartments Tailored To Your Highest Standard,"Olosa Street, Opposite Eko Hotels & Suites, Off Adetokunbo Ademola Road Victoria Island Lagos",₦,"45,000,000",0,0,0,1 beds,1 baths,2 Toilets +Now Selling | 4 Bedroom Villa Apartment | Fully Serviced,Off Adeola Odeku Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxurious Shopping Mall, Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Own A Unit | 3 Bedroom Luxury Apartment In Victoria Island,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +14 Units Of 3 Bedroom Flats And 4 Bendroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,10 beds,10 baths,10 Toilets +Now Selling | 4 Bedroom Penthouse With Dedicated Elevator | Fully Serviced,Off Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Luxury Penthouse,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +1 Bedroom Luxury Apartment,Water Coperation Road Victoria Island Extension Victoria Island Lagos,₦,"37,000,000",0,0,0,1 beds,1 baths,2 Toilets +Office Building,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +"New, Well Built, Fully Equipped Purpose Built Office Space",Adetokunboh Ademola Street Off Ozumba Mbadiwe; Victoria Island Lagos,₦,"40,000,000",0,1,1,0 beds,0 baths,0 Toilets +6 Bedroom Semi Detached Duplex,Off Ajose Adeogun Victoria Island Lagos,₦,"9,000,000",0,1,1,6 beds,6 baths,7 Toilets +3 Bedroom Flat,. Akin Olugbade Victoria Island Lagos,₦,"270,000,000",0,0,1,3 beds,3 baths,4 Toilets +Mixed Use Land," waziri Ibrahim Crescent, Victoria Island Lagos",₦,"360,000,000",0,0,0,0 beds,0 baths, Toilets +Office Space On 863 Sqm,"Off Adeyemo Alakija; Victoria Island Extension, Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths, Toilets +Commercial Land,. Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,. Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"80,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Semi Detached Duplex,. Victoria Island Lagos,₦,"165,000,000",0,1,1,5 beds,5 baths,6 Toilets +2 Bedroom Flat," eko Pearl, Eko Atlantic Victoria Island Lagos",₦,"710,000",0,0,0,2 beds,2 baths,0 Toilets +4 Bedroom Terraced Duplex With 2 Rooms Servant Quarters,"Ibile Street Off Palace Road; Oniru, Victoria Island Lagos",₦,"60,000,000",0,0,0,4 beds,5 baths,5 Toilets +Commercial 5 Floors Office Building,Adeyemo Alakija; Victoria Island Lagos,₦,"2,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,. Tiamiyu Savage Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"4,000,000",0,0,1,3 beds,3 baths,4 Toilets +3 Bedroom Block Of Flats + Bq With Swimming Pool,Oniru; Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets +Luxury 3 Bedroom Flat With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"37,500,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Semi Detached Duplex,Oniru; Ademola Adetokunbo Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +3305 Sqm Corner Piece Commercial Land,Victoria Island Extension; Muri Okunola / Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex,Oniru; Victoria Island Lagos,₦,"70,000,000",0,0,0,4 beds,4 baths,5 Toilets +"The Empire Residences Ii, Luxury 3 Bedroom Plus Maid Room Development",Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",1,1,0,3 beds,4 baths,4 Toilets +3 Bedrooms Apartment (off Plan),"Water Corporation Drive,off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos",₦,"75,000,000",0,1,0,3 beds,4 baths,4 Toilets +4 Bedroom Terraced Duplex, oniru Victoria Island Lagos,₦,"125,000,000",0,1,1,4 beds,4 baths,5 Toilets +2 Bedroom Flat," oniru, Victoria Island Lagos",₦,"50,000,000",0,0,0,2 beds,2 baths,0 Toilets +"10,000 Sqm Land",Oniru Victoria Island Lagos,₦,"25,000",0,0,0,0 beds,0 baths,0 Toilets +Serviced 1 Bedroom Apartments In Victoria Island,Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets +5 Bedroom Detached Duplex,Vgc Victoria Island Lagos,₦,"190,000,000",0,0,0,5 beds,5 baths,0 Toilets +5 Bedroom Semi Detached Duplex," oniru, Victoria Island Lagos",₦,"175,000,000",0,0,0,5 beds,5 baths,0 Toilets +Mixed Use Land,Ajose Adeogun Victoria Island Extension Victoria Island Lagos,₦,"1,100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel / Guest House, Victoria Island Lagos,₦,"34,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Block Of Flats,Water Corporation Road Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,1,1,3 beds,4 baths,4 Toilets +Office Space Of 8 Floors,Off Adeola Odeku Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,10 Toilets +Four Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,1,0,4 beds,4 baths,5 Toilets +"Newly Built, Fully Serviced 1 Bed Room Apartment",Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets +4 Units Of Fully Serviced 1 Bedroom Apartments For Sale,Water Corporation Drive Victoria Island Extension Victoria Island Lagos,₦,"38,000,000",1,1,0,1 beds,1 baths,2 Toilets +Brand New Luxurious 5 Bedroom Duplex,Oniru Victoria Island Lagos,₦,"120,000,000",0,1,0,5 beds,5 baths,5 Toilets +5 Bedroom Penthouse," onigbefon Street, Oniru, Victoria Island Lagos",₦,"150,000,000",0,0,0,5 beds,5 baths,0 Toilets +Office Space,. Victoria Island Extension Victoria Island Lagos,₦,"199,000,000",0,0,1,0 beds,0 baths,0 Toilets +Exquisite Apartments,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",1,1,0,4 beds,4 baths,5 Toilets +4 Bedroom Terraced Duplex," oniru, Victoria Island Lagos",₦,"118,000,000",0,1,0,0 beds,0 baths,0 Toilets +Well Renovated 4 Bedroom Terrace Duplex.,. Victoria Island Lagos,₦,"40,000,000",0,1,1,4 beds,4 baths,4 Toilets +Newly Built 2 Bedroom Flat,Off Palace Road. Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,1,0,2 beds,2 baths,2 Toilets +8 Detached (standalone) Duplexes, Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With One Bq,Off Ty Danjuma Street. Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Newly Built 12 Units Of Luxury 3 Bedroom Apartments With A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",1,1,1,3 beds,3 baths,4 Toilets +A New Building Containing 8 Units Of Luxurious 3 Bedroom Flats With Bqs Each,Off Oniru Palace Road; Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,1,0,3 beds,3 baths,4 Toilets +4 Bedroom Luxury Terrace Duplex And A Room Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",1,1,1,4 beds,4 baths,4 Toilets +Luxury 4 Bedroom Maisonnette,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +Luxury Apartments,Oniru Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,1,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With A 1bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +8 Units Of 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,3 Toilets +Off Plan 5 Bedroom Semi Detached Duplex With 1bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,5 Toilets +Beautifully Built 3 Bedroom Penthouse,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +3800sqm Plot Of Land,Oniru/maroko Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Luxury 3 Bedroom Penthouse,Oniru/maroko Victoria Island Lagos,₦,"100,000,000",0,0,0,3 beds,3 baths,3 Toilets +A Luxury 3 Bedroom Apartment,Oniru/maroko Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +3800sqm Plot Of Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 7 Unit Of Executive 4 Bedroom Terrace Duplex With A Maid's Each( 3 Unit Left),Oniru Estate Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Fully Detached Bungalow With Two Rooms Boys Quarter For Sale With Land Certificate,Off Ologun Agbaje Victoria Island Victoria Island Lagos,₦,"230,000,000",0,0,0,3 beds,4 baths,3 Toilets +Plot 1419 Idowu Taylor Street Off Engineering Close,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"800,000,000",0,0,0,6 beds,3 baths,3 Toilets +3 Bedroom Apartment,Along Palace Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Semi Detached Duplex With 1 Bq,"Lekki Right Hand Side, Oniru Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Finished 4 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",1,1,0,4 beds,4 baths,5 Toilets +"1,346sqm Land",Ayorinde Vi Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Serviced Luxury 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Serviced 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Comfort And Luxury 3 Bedrooms Elite Services Apartment,"Osu Badu Crescent, Behind Turkish Airline Airport West Accra Victoria Island Lagos",$,"400,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 3 Bedroom Apartment With B/q,Vi Extension Ligali Ayorinde Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury 4 Bedroom Terrace Duplex With 1 Room B/q,Victoria Island Extension Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Luxury Penthouse Apartment,"A J Marinho Drive, Ligali Ayorinde Victoria Island Lagos",$,"9,500,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Duplex + B/q,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +2500 Square Meter Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terraced Duplex With A B/q.,Around Ebanor Super Market Victoria Island Lagos,₦,"72,000,000",0,0,0,4 beds,4 baths,5 Toilets +Luxury 3 Bedroom Apartment,Oniru Estate Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 3 Bedroom Luxury Apartment With A Room B/q,Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Plot Of Land Measuring 1400sqm With Two Detached Duplex, Adeola Odeku Victoria Island Lagos,₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 5 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Apartment, 1004 Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Uncompleted Office Building And 4no 4 Bedroom Detached Houses On 6,400 Sqm","Ahmadu Bello Way/bishop Oluwole Street, Victoria Island, Lagos Ahmadu Bello Way Victoria Island Lagos",₦,"1,500,000,000",0,0,0,4 beds,5 baths,5 Toilets +5 Bedroom Semi Detached Duplex, oniru; Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Mixed Development Land For Sale," eko Atlantic City, Lagos Eko Atlantic Victoria Island Lagos",$,"1,800",0,0,0,0 beds,0 baths,0 Toilets +A Fenced Prime Land Measuring 1700square Metre,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Lovely 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"90,000,000",0,0,0,3 beds,3 baths,4 Toilets +Newly Build Serviced 4 Bedroom Terrace,"Off Palace Road,oniru Oniru Victoria Island Lagos",₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Serviced 4 Bedroom Duplex With Bq,Off Palace Road Oniru V.i Oniru Victoria Island Lagos,₦,"68,000,000",0,0,0,4 beds,4 baths,4 Toilets +Beautifully Finished And Furnished 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Three Bedroom Flat/apartment,Ozumba Nbadiwe 1004 Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,2 baths,3 Toilets +4 Bedroom Terrace With Bq,Oniru Next To Shop Right Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,5 baths,5 Toilets +Beautifully Finished 4 Bedroom Terrace,Oniru Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 1 Bedroom Flat,Oniru Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets +3 Bedroom Flat For Sale," oniru, Victoria Island (vi), Lagos Victoria Island Lagos",₦,"650,000,000",0,0,0,3 beds,3 baths,3 Toilets +Brand New 3 Bedroom Flat With Bq,Oniru Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +A Nicely Built 4 Bedroom Terrace Duplex And A Room Boy’s Quarter,Oniru Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +Lovely 8 Units Of 3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"700,000,000",0,0,0,3 beds,3 baths,4 Toilets +"Luxury 4 Bedroom Terraced Duplexes For Sale In Oniru, Victoria Island",Palace Road Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Wing Of Duplex,Moshood Olugbani Ligali Ayorinde Victoria Island Lagos,₦,"160,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land At Eko Atlantic City,Eko Atlantic City Victoria Island Extension Victoria Island Lagos,$,"1,250",0,0,0,0 beds,0 baths,0 Toilets +Lovely Five 5 Bedroom Semi Detached House With Bq,City Of David Rd Oniru Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 5 Five Bedroom Duplex + A Room Bq,"Off Oniru Palace Rd, Victoria Island Extension Victoria Island Lagos",₦,"110,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land (joint Venture),Off Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat At 1004 Estate, 1004 Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxurious 1 Bedroom Serviced Apartment (mortgage Option Available),Water Corporation Drive Oniru Victoria Island Extension Victoria Island Lagos,₦,"39,500,000",0,0,0,1 beds,1 baths,1 Toilets +Service 5 Bedroom Semi Detached In Oniru,Oniru Victoria Island Lagos,₦,"1,150,000,005",0,0,0, beds, baths, Toilets +1000sqm Of Land At Victoria Island,Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,0, beds, baths, Toilets +"A 4,100m2 Land",Bridge Avenue Victoria Island Extension Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,800m2 Land", Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,100m2 Corner Piece Land",Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +"2,600m2 Corner Piece Land",Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Land,Ligali Ayorinde/muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Victoria Island Ahmadu Bello Way Victoria Island Lagos,$,"2,500",0,0,0,0 beds,0 baths,0 Toilets +"New Serviced 2, 3 & Penthouses",Eko Atlantic City Victoria Island Lagos,$,"710,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Sanusi Fafunwa Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +13 Bedroom Detached House,Akin Ogunlewe Street Victoria Island Lagos,₦,"400,000,000",0,0,0,10 beds,10 baths,10 Toilets +Shops/office Spaces,Eko Atlantic City Victoria Island Lagos,$,"6,000",0,0,0,0 beds,0 baths,1 Toilets +"1,934.52sq Metres Land",Ologun Agbaja Off Adeola Odeku Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flats With Bq,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +3 Bedroom Flat,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +5 Bedroom Duplex,Elegba Festiva Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,5 baths,6 Toilets +Five Bedroom Townhouse With Two Room Bq,Off Kofo Abayomi Street Victoria Island Lagos,₦,"15,000,000",0,0,0, beds, baths, Toilets +Furnished 3 Bedroom Flat,Oniru Oniru Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,0 baths,3 Toilets +Five Bedroom Townhouse With A Room Bq,Off Legalized Ayorinde Street Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +Land (joint Venture),Idowu Martins Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Storey Building Complex,Broad Street Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,5 beds,0 baths,8 Toilets +3 Bedroom Service Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land (joint Venture),Between Diamond And Gt Banks Near Shoprite Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +2600sqm Of Land For At Victoria Island,Dideolu Estate Victoria Island Lagos,₦,"455,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"43,000,000",0,0,0,2 beds,0 baths,0 Toilets +Land,"Idowu Martins Str, Vi Victoria Island Extension Victoria Island Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Bedrooms Duplex Mansion,Ajose Adeogun Victoria Island Lagos,₦,"350,000,000",0,0,0,8 beds,7 baths,7 Toilets +12 Bedroom Apartment,Akin Ogunlenwe Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Units Of Flats For Sale,Victoria Island Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths, Toilets +4 Bedroom Terrace Duplex With A Bq ( Off Plan),Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Detached Duplex,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Exclusive 3 Bedroom Luxury Apartments Now Selling In Victoria Island,Water Corporation Corporation Road Victoria Island Extension Victoria Island Lagos,₦,"73,000,000",0,0,0,3 beds,3 baths,4 Toilets +3125m2 Land,Place Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +970sqm Land,Bishop Kale Street Vi. Victoria Island Lagos,₦,"650,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land (joint Venture),Idowu Martins Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Commercial Property On Akin Adesola Street, Victoria Island, Lagos","Akin Adesola Street, Victoria Island, Lagos Akin Adesola Victoria Island Lagos",₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +40 Units Of 1 Bedroom Flat Apartment,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,1 baths,1 Toilets +Luxury 4 Bedroom Terrace Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Terrace Duplex With A Room Bq,Hakeem Dickson Drive Victoria Island Lagos,₦,"78,000,000",0,0,0,4 beds,4 baths,5 Toilets +Lovely 2 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,1 baths,3 Toilets +5 Bedroom Detached Duplex,Near Land Mark Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +Brand New 3 Bedroom Seviced Flat In Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,0 Toilets +Lovely Terrance House For Sale At Oniru Estate,Oniru Estate Victoria Island Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A Luxury,well Finished And Newly Built 5 Bedroom Terrace With A Fitted Kitchen",Palace Road Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,5 beds,6 baths,6 Toilets +3 Bedroom Apartment,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Oniru Victoria Island Lagos,₦,"55,000,000",0,0,0,2 beds,2 baths,3 Toilets +Brand New And Furnished 2 Bedroom Flat At Oniru.,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,2 Toilets +Luxurious 2 Bedroom Apartment (mortgage Option Available),Oniru Victoria Island Extension Victoria Island Lagos,₦,"46,000,000",0,0,0,2 beds,2 baths,2 Toilets +4 Bedroom Terraced Duplex, Idowu Taylor Victoria Island Lagos,₦,"115,000,000",0,0,0,4 beds,6 baths,6 Toilets +3 Unit Of 3 Bedrrom Flat,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace Apartment,Land Bridge Avenue Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,3 baths,4 Toilets +Pent House,Palace Road Oniru Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Duplex,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"6,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Semi Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"100,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Story Building With 18 Apartments,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Terrace Duplex With A Room Bq,Adekoya Street Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat ( Off Plan),Magbogunje Road Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +4 Bedroom Semi Terrace Duplex With A Bq,Modupe Odunlami Street Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Fenced, Gated 9.1 Acres Of Land",Victoria Island Victoria Island Lagos,₦,"25,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Ozumba Nbadiwe 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom Duplex With A Room Self Contain,Lekki Adeola Hopewell Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,6 Toilets +Top Notch 4 Bedroom Terrace House,Oniru Kofo Abayomi Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,3 baths,4 Toilets +4 Bedroom Terrace House With A Room Bq,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +A Lovely 3 Bedroom Flat At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,3 beds,3 baths,4 Toilets +2 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"50,000,000",0,0,0,2 beds,2 baths,3 Toilets +90% Complete: 5 Bed Detached Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"225,000,000",0,0,0,5 beds,5 baths,6 Toilets +House, Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +Plots Of Land,"By The Palms, Shoprite Victoria Island Extension Victoria Island Lagos",₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Hotel With 13 Rooms For Sale At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +Land,On Ligali Ayorinde Street Facing Ajose Adeogun Street Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached Duplex,"Oniru Estate, Eti Osa, Lagos, Nigeria Victoria Island Lagos",₦,"100,000",0,0,0,4 beds,0 baths,0 Toilets +Land At Ligali Ayorinde Street,Ligali Ayorinde Street Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 100,000sqm",Eko Atlantic City Victoria Island Lagos,₦,"500,000",0,0,0,0 beds,0 baths,0 Toilets +Three Bedroom Apartment With Bq At Victoria Island,Akinogun Road Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Queen's Drive Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,3 Toilets +3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Oniru Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,3 Toilets +Off Plan 3 Bedroom Apartments At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxury Serviced 5 Bedroom Terrace At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"135,000,000",0,0,0,5 beds,5 baths,6 Toilets +Brand New 3 Bedroom Flat At Oniru,Oniru Victoria Island Extension Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,"Off Ligali Ayorinde Street, Victoria Island, Lagos. Ligali Ayorinde Victoria Island Lagos",$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +Exotic 4 Bedroom Terrace Duplex At Oniru,Oba Idowu Oniru Road Victoria Island Extension Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Townhouse,Musa Yar'adua Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Townhouse (ongoing Construction),Musa Yar'adua Street Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex With A Bq,Hakeem Dickson Drive Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Exquisite And Brand New 3 Bedroom Flat With A Bq,New Oniru Market Area Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +10 Storey Building Of 3 Bedroom Flat Of 18 Units Apartment,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,3 beds,3 baths,4 Toilets +Brand New 3 Bedroom Serviced Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +4bedroom Service Terrace House With A Room Bq For Sale.,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +Classified Lagos High Rising House,By Tantalizer Ademola Adetokunbo Victoria Island Lagos,₦,"15,000,000,000",0,0,0,10 beds,10 baths,10 Toilets +42 Luxury Housing,Eko Atlantic Ligali Ayorinde Victoria Island Lagos,₦,"37,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land For Sale,Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House, Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +2000sqm Of Land At Victoria Island,"On Abayomi Daramola Street Oniru, Victoria Island Victoria Island Lagos",₦,"410,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Terraced Duplex,"Oba Oniru Road, Victoria Island Lagos",₦,"115,000,000",0,0,0,4 beds,6 baths,6 Toilets +5bedroom Mansionate,Abisogun Street Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,6 Toilets +Waterfront Land,Beside Oriental Hotels At Ozumba Mbadiwe Road Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Duplex,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,10 beds,10 baths,10 Toilets +Land, Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Fully Detached Five Bedroom Duplex.,Vi Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,6 Toilets +2 Bedroom Flat,Muri Okunola Victoria Island Lagos,₦,"58,000,000",0,0,0,2 beds,3 baths,3 Toilets +4 Bedroom Townhouse+bq At Oniru,Aremo Adesegun Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,4 Toilets +Brand New Luxury 4 Bedroom Terraced Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land, Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4605sqm Of Land At Eko Atlantic,Eko Atlantic Victoria Island Lagos,₦,"3,000,000,000",0,0,0, beds, baths, Toilets +Land For Sale At Waziri Ibrahim Crescent,Waziri Ibrahim Crescent Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex With A Bq,Jasper Ike Street Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +5000sqms Of Land At Musa Yaradua Street,Musa Yaradua Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury 3 Bedroom Duplex In Victoria Island,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Contemporary 4 Bedroom Terrace House,"Vi , Lagos Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat With A Bq,Oniru Estate Victoria Island Lagos,₦,"84,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,"Location: Lekki Peninsula Scheme 1, Tourism Zone (okunde Blue Water Scheme, In Eti Osa Area Of Lagos State) Victoria Island Extension Victoria Island Lagos",₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Ologun Agbaje Street, Adeola Odeku Victoria Island Lagos",₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Detached House,Saka Tinunbu Saka Tinubu Victoria Island Lagos,₦,"300,000,000",0,0,0,5 beds,6 baths,5 Toilets +6 Bedroom Detached Duplex,No51 Victoria Island Lagos,₦,"50,000,000",0,0,0,6 beds,7 baths,6 Toilets +100 % Dry Land, Ademola Adetokunbo Victoria Island Lagos,₦,"12,000,000",0,0,0,0 beds,0 baths,0 Toilets +The Oceanna Hotel Apartments By Grenadines Homes,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"4,038,000",0,0,0, beds, baths, Toilets +"Land For Sale: Location: J 46, Banana Island. Size: 4000sqm.",J46 Ademola Adetokunbo Victoria Island Lagos,₦,420,0,0,0,0 beds,0 baths,0 Toilets +Luxury 4 Bedroom,"Oniru Estate, Victoria Island Lagos",₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +"4680sqm Of Land For Sale At Odeki Str, V.i","Odeku Street, Victoria Island, Lagos Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Service Plots Of Land For Sale,Amity Estate Sangotedo Ajah Victoria Island Lagos,₦,"6,600,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace Duplex,Off Palace Road. Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Duplex,"Off Oniru Market Road, Victoria Island Victoria Island Extension Victoria Island Lagos",₦,"80,000,000",0,0,0,3 beds,3 baths,3 Toilets +Fenced Commercial Land Measuring 1650 Sqm On Adeola Odeku V/i,Adeola Odeku Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Duplex,Ligali Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +Tastefully Finished 2 Bedroom Flat,Oniru Estate Off Victoria Island Estate Victoria Island Extension Victoria Island Lagos,₦,"43,000,000",0,0,0,2 beds,2 baths,3 Toilets +5000sqm Dry Land At Dideolu Estate V/island,Dideolu Estate Victoria Island Lagos,₦,"700,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Duplex,Moshood Olugbani Victoria Island Victoria Island Lagos,₦,"6,500,000",0,0,0,4 beds,4 baths,4 Toilets +5 Bedroom Terraced House,Dideolu Street Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Terrace Duplex With Bq,Mabogunje Road Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +4960 Sqm Land,Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +2480 Sqm Land,Victoria Island Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Duplex,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"15,000,000",0,0,0,3 beds,3 baths,3 Toilets +Hotel, Tiamiyu Savage Victoria Island Lagos,$,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Walton Gate Victoria Island Extension Victoria Island Lagos,₦,"15,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Building,Idowu Taylor Idowu Taylor Victoria Island Lagos,₦,"550,000,000",0,0,0,9 beds,3 baths,4 Toilets +3 Bedroom Flat,Lekki By Pass Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,5 Toilets +Land Measuring 5200sqm,Inside Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"143,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,"Odudu Eleyiwo Road, Victoria Island Extension Victoria Island Lagos",₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +Well Finished & Fully Serviced 9 Units Of Mixed Luxury Apartment,"Off Market Road, Oniru. Victoria Island Extension Victoria Island Lagos",₦,"1,000,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land,Water Corporation Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"260,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Water Corporation Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Off Oniru Palace Road Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Office Building,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Bis Victoria Island Extension Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +House,Musa Yaradua Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5120sqm Land For Sale With C Of O,"Dideolu Estate, Oniru Victoria Island Lagos",₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Commercial Property, Akin Adesola Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached House,"25 Ihuntayi Road, Oninu Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,5 beds,5 baths,6 Toilets +Land,Landmark Ligali Ayorinde Victoria Island Lagos,₦,"220,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex,Palace Road Victoria Island Extension Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom Duplex, Ligali Ayorinde Victoria Island Lagos,₦,"65,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,"Oniru, Victoria Island Extension Victoria Island Lagos",₦,"750,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Semi Detached Duplex, Victoria Island Extension Victoria Island Lagos,₦,"40,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land, Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +3bedroom Flat,A.j Marinho Drive Victoria Island Lagos,₦,"750,000,000",0,0,0,3 beds,4 baths,4 Toilets +Commercial Property,Off Kofo Abayomi Victoria Island Lagos,₦,"950,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Behind Mega Chicken Victoria Island Extension Victoria Island Lagos,₦,"40,000,000",0,0,0,0 beds,0 baths,0 Toilets +Beautifully Finished 5 Bedroom Semi Detached Duplex In Oniru,Victoria Island Victoria Island Lagos,₦,"107,000,000",0,0,0, beds, baths, Toilets +Brand New Luxury 3 Bedroom Service Apartment,Eko Atlantic Ahmadu Bello Way Victoria Island Lagos,$,"1,150,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedrooms Detached Duplex,Ottasona Estate Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ligali Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Office Space,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +8no. 3 Bedroom Flat,Adeola Hopewell Adeola Hopewell Victoria Island Lagos,₦,"850,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land For Sale,Oniru Oniru Victoria Island Lagos,₦,"100,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Water Corporation Road, Victoria Island Extension Victoria Island Lagos",₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Oniru Victoria Island Lagos,₦,"300,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Oniru Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex + Bq, Ligali Ayorinde Victoria Island Lagos,₦,"250,000,000",0,0,0,4 beds,4 baths,5 Toilets +2 Bedroom Flat With Bq, Victoria Island Lagos,₦,"60,000,000",0,0,0,2 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex With 1 Room Bq,Oniru Estate Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,0 baths,0 Toilets +Land, Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House,Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"175,000,000",0,0,0,4 beds,3 baths,4 Toilets +Land,Adeyemo Alakija Street Victoria Island Lagos,₦,"98,400,000",0,0,0, beds,0 baths,0 Toilets +Land,Adeyemo Alakija Street Victoria Island Lagos,₦,"97,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom With 4 Rooms Bq In Vi,Buriamoh Kenku Off Oyinjola Yemi Victoria Island Lagos Victoria Island Lagos,₦,"300,000,000",0,0,0, beds, baths, Toilets +20 Units Of 3 Bedroom Flats,Oju Olobun Street Karimu Kotun Victoria Island Lagos,₦,"3,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +10 Story Building With 18 Apartments Fully Fitted At Victoria Island,Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"3,500,000,000",0,0,0,3 beds, baths,4 Toilets +Plot Of Land,"Femi Sule Street, Dideolu Estate Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Storey Building Hospital,"4 Point Hotel Road, Oniru Victoria Island Lagos",₦,"6,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Ademola Adetokunbo 1004 Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Apartment,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"55,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Olosa Street Ademola Adetokunbo Victoria Island Lagos,₦,"650,000,000",0,0,0,3 beds,3 baths,4 Toilets +2700 Square Meter Land In Victoria Island,"Dedeolu Estate, Off Water Corporation Road, Victoria Island Lagos. Victoria Island Lagos",₦,"450,000,000",0,0,0, beds, baths, Toilets +Land,Ozumba Mbadiwe Victoria Island Lagos,₦,"750,000,000",0,0,0,0 beds,0 baths,0 Toilets +1 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"40,000,000",0,0,0,1 beds,2 baths,2 Toilets +3 Bedroom Apartment,Oniru Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,0 baths,0 Toilets +Land ( Joint Venture ),Louis Solomon Close Back Of Silverbird Gallery Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Well Finished 6 Bedroom Detached House + 4 Room Bq,"Akin Ogunlewe, Ligali Ayorinde Victoria Island Lagos",₦,"400,000,000",0,0,0,6 beds,6 baths,7 Toilets +Four Flat Of 3 Bedroom Apartments + B/q For Sale,"Adeola Odeku, Adeola Odeku Victoria Island Lagos",₦,"700,000,000",0,0,0,3 beds,4 baths,4 Toilets +3 Bedroom Luxury Penthouse Apartment In Victoria Island.,# 15 A J Marinho Drive Off Sinari Daranijo Victoria Island Victoria Island Lagos,₦,"2,968,750,000",0,0,0,3 beds,4 baths, Toilets +Land,Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"T.y Danjuma Street, Ligali Ayorinde Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Commercial Property,Muri Okunola Street Victoria Island Extension Victoria Island Lagos,₦,"62,000,000",0,0,0,2 beds,2 baths,3 Toilets +Off Plan | The Oceanna Hotel Apartments,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"68,000,000",0,0,0,1 beds,1 baths,2 Toilets +4 Bedrooms Detached Duplex At Victoria Island,Victoria Island Victoria Island Lagos,₦,"117,000,000",0,0,0, beds, baths, Toilets +"Land For Sale In Ademola Adetokunbo Street, Victoria Island",Ademola Adetokumbo Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +"36,000 Square Metres Of Land",Ahmadu Bello Way Ahmadu Bello Way Victoria Island Lagos,$,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +10 Bedroom Detached House For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"655,000,000",0,0,0, beds, baths, Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +1650sqm Of Land For Sale In Victoria Island,Adeola Odeku Street Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +4600sqm Of Land For Sale At Kofo,Kofo Abayomi Victoria Island Lagos,₦,"1,300,000,000",0,0,0, beds, baths, Toilets +Bare Land,Dideolu Estate Oniru Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Duplex,Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos,₦,"450,000,000",0,0,0,6 beds,6 baths,6 Toilets +2700sqm Cornerpiece Land At Adeola Odeku,Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Atlantic Resort @ Oniru Water Corporation Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Zenith Bank Headoffice On Ajose Adeogun Street Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1, 650sqm Of Commercial Land At Adeola Odeku",Adeola Odeku Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +Land,Elsie Femi Pearce Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bare Land,Dideolu Estate Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +3200 Square Metres,Adjacent Orientals Hotel Victoria Island Extension Victoria Island Lagos,₦,"203,125",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Apartment,Oniru Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,3 beds,3 baths,3 Toilets +Service 5 Bedroom Semi Detached Duplex,Oniru Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,6 Toilets +4 Bedroom Detached House On 950 Square Metres Of Land.,Balarabe Musa Cr Victoria Island Lagos,₦,"230,000,000",0,0,0,4 beds,4 baths,3 Toilets +8 Units Of 3 Bedroom Flat,Plot Adeola Hopewell Victoria Island Lagos,₦,"900,000,000",0,0,0,8 beds,2 baths,2 Toilets +"3,500sqm Of Land At Victoria Island For Joint Venture (j.v)",Victoria Island Victoria Island Lagos,₦,"1,900,000,000",0,0,0, beds, baths, Toilets +1650sqm Of Land For Sale At Vi,Louis Solomon Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached House,"City Of David Road, Oniru, V.i Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Executive 3 Bedroom Apartment With Bq,Vi Extension Off Ligali Ayorinde Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,3 baths, Toilets +"Land Measuring 2,660 Square Metres",Dedeolu Estate Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxurious 3 Bedroom Apartment Plus Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Luxurious 3 Bedroom Apartment Plus Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 5 Bedroom Semi Detached Duplex Plus Bq,Opposite City Of David Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,5 beds,6 baths,6 Toilets +Fully Finished And Furnished 3 Bedroom Apartment With Bq,Chieftaincy Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,4 Toilets +Luxury 3 Bedroom Apartment With Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land ( Joint Venture ),Elsie Femi Pearce Street Vi . Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Aremo Oniru Crescent Off Palace Road Oniru Ligali Ayorinde Victoria Island Lagos,₦,"280,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Femi Sule Street Inside Dideolu Estate Oniru Lagos Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Dideolu Estate Oniru, Ligali Ayorinde Victoria Island Lagos",₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Adeola Odeku Vi Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Storey Apartment Building With Pent House(can Be Converted To Office),Akin Adesola Akin Adesola Victoria Island Lagos,$,"15,000,000",0,0,0,3 beds,3 baths,3 Toilets +3 Bedroom Flat,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"146,940,000",0,0,0,3 beds,3 baths,3 Toilets +2 Bedroom Flat,Off Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"116,250,000",0,0,0,2 beds,2 baths,2 Toilets +1 Bedroom Apatment,Water Corporation Drive Ligali Ayorinde Victoria Island Lagos,₦,"35,200,000",0,0,0,1 beds,1 baths,1 Toilets +Fully Serviced Luxury 3 Bedroom Apartment In Victoria Island,Oniru Estate Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths, Toilets +6 Bedroom Detached House + 2 Bq,Etim Iyang Crescent Ahmadu Bello Way Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,0 baths,0 Toilets +1 Bedroom Luxury Apartment,Olosa Street Off Ademola Adetokunbo Victoria Island Lagos,₦,"45,000,000",0,0,0,1 beds,1 baths,1 Toilets +6 Blocks Of 3 Bedroom Flat,Off Kofo Abayomi Stt Kofo Abayomi Victoria Island Lagos,₦,"60,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Detached House With 1 Room In Built Boys Quarter,City Of David Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +Land ( Joint Venture ),Louis Solomon Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Water Cooperation Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Dideolu Estate Oniru Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Bedroom Flat,"Oniru Chieftaincy Estate, Victoria Island Annex. Victoria Island Extension Victoria Island Lagos",₦,"55,000,000",0,0,0,2 beds,2 baths,2 Toilets +5 Units Of 4 Bedroom Duplex With 1 Bq,"Oniru Palace Road, Victoria Island Victoria Island Lagos",₦,"700,000,000",0,0,0,4 beds,4 baths,4 Toilets +Semi Detached 4 Bedroom Duplex,Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"130,000,000",0,0,0,4 beds,4 baths,4 Toilets +"8 Nos Of 3 Bedroom Flat On 1,500 Sqm Of Land","Adeola Hopewell Street, Victoria Island Adeola Hopewell Victoria Island Lagos",₦,"900,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Dideolu Estate Oniru Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Ajose Adeogun Adeola Odeku Victoria Island Lagos,₦,"1,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Fully Detached Duplex,Victory Park Estate Victoria Island Extension Victoria Island Lagos,₦,"115,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land ( Joint Venture ),Louis Solomon V/i Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Apartment,"Ihuntayi Street Off Palaca Street, Oba Oniru Victoria Island Lagos",₦,"50,000,000",0,0,0,4 beds,4 baths,4 Toilets +Clean 3 Bedroom Flat,Oniru Victoria Island Extension Victoria Island Lagos,₦,"15,000,000",0,0,0,1 beds,1 baths,1 Toilets +"16 Units Of 3 Bedroom Flats On 5,100m2 Land",Ozumba Mbadiwe Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Property Situated At Akin Adesola Street, Victoria Island, Lagos","180 Akin Adesola Street, Victoria Isalnd Victoria Island Lagos",₦,"900,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Detached Duplex,Off Palace Road Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,5 Toilets +4 Bedroom And 2 Bq,Balarabe Musa Crescent Ligali Ayorinde Victoria Island Lagos,₦,"200,000,000",0,0,0,4 beds,4 baths,4 Toilets +Land ( Joint Venture ),Louis Solomon V/i. Ligali Ayorinde Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Cooperation Oniru Ligali Ayorinde Victoria Island Lagos,₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Ajose Adeogun Ligali Ayorinde Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +7 Floors Office Space,Ligali Ayorinde Street Ligali Ayorinde Victoria Island Lagos,₦,"6,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000sqm Of Land For Sale At Victoria Island,Kayode Abraham Street Victoria Island Lagos,₦,"750,000,000",0,0,0, beds, baths, Toilets +2000 Sqm Of Land On A Corner Peice With C Of O,Off Ajose Adeogun Victoria Island Lagos,₦,"550,000,000",0,0,0,0 beds,0 baths,0 Toilets +Bedroom Detached House + 5sittings Rooms + Dinning Area,Vgc Facing The Lagoon Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Luxury Apartment,Water Corporation Drive Off Ligali Ayorinde Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,4 baths,1 Toilets +1 Bedroom Luxury Apartment,"Water Corporation Drive, Off Ligali Ayorinde Victoria Island Lagos",₦,"30,000,000",0,0,0,1 beds,1 baths,1 Toilets +Luxury 3 Bedroom Flat With A Room Bq,Off Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive Residential Complex In Victoria Island,Victoria Island Victoria Island Lagos,₦,"950,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Fully Detached Duplex,Oniru Estate Victoria Island Lagos,₦,"110,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Water Cooperation Oniru, Ligali Ayorinde Victoria Island Lagos",₦,"3,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Victoria Island,Akin Adesola Street & Ahmadu Bello Way Victoria Island Lagos,₦,"30,000,000,000",0,0,0, beds, baths, Toilets +5 Bedrrom Full Detached Duplex,Victory Park Estate Victoria Island Extension Victoria Island Lagos,₦,"105,000,000",0,0,0,5 beds,5 baths,5 Toilets +20 Units Of 3 Bedroom Luxury Flat,"Oju Olokun Close, Off Ijedo Street Victoria Island Lagos",₦,"4,000,000,000",0,0,0,3 beds,0 baths,0 Toilets +5 Bedroom On 2 Levels Terraced House,Princely Court Along City Of David Road Victoria Island Extension Victoria Island Lagos,₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +3 Bedroom Flat For Sale At Victoria Island,Akin Olugbade Street Victoria Island Lagos,₦,"190,000,000",0,0,0,3 beds,3 baths, Toilets +10 Storey Building With 18 Apartments For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"3,800,000,000",0,0,0, beds, baths, Toilets +10 Storey Building For Sale At Victoria Island,Victoria Island Victoria Island Lagos,₦,"3,500,000,000",0,0,0, beds, baths, Toilets +2672sqm Of Land For Sale At Victoria Island,Ozumba Mbadiwe Avenue Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +Land,Bishop Karli Close Saka Tinubu Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Duplex,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +Newly Built 4 Bedroom Terrace With 2 Units Of Study Room And Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"100,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Detached House,Kofo Abayomi Street Victoria Island Lagos Kofo Abayomi Victoria Island Lagos,₦,"380,000,000",0,0,0,4 beds,4 baths,5 Toilets +Duplex Building,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"145,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Fully Furnished Luxury Apartment,Off Oniru Palace Road Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths, Toilets +5300sqm Of Land With 8 Units Of 3bedroom Duplexes(demolishable),Adeleke Adedoyin Kofo Abayomi Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Brand New 4 Bedroom Duplex For Sale In Victoria Island,Off Ligali Ayorinde Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +A Parcel Of Land,Ozumba Mbadiwe Road.eti Osa Lga Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat In Victoria Island,Victoria Island Victoria Island Lagos,₦,"85,000,000",0,0,0,3 beds,4 baths, Toilets +Executive 3 Bedroom Duplex For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"90,000,000",0,0,0, beds, baths, Toilets +Land ( Joint Venture ),Ajose Adeogun/ligali Ayorinde. Ligali Ayorinde Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land ( Joint Venture ),"Saka Jojo Street, Off Idejo Street Saka Tinubu Victoria Island Lagos",₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300sqm Of Land,Bosun Adekoya Victoria Island Extension Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom On 2 Levels Terraced House,"Princely Court Along City Of David Road, Oniru Estate Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +5 Bedroom Terraced House,"Princely Court Along City Of David Road, Oniru Estate Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,5 beds,5 baths,5 Toilets +Affordable Housing Units,Adeola Odeku Victoria Island Lagos,₦,"45,000,000",0,0,0, beds, baths, Toilets +Units Of House For Sale,"Vi , Lagos . Victoria Island Lagos",₦,"2,000,000,000",0,0,0, beds, baths, Toilets +"10 Units Of 3 Bedroom, 10 Units Of 1 Bedroom Flat And 6 Bq",Victoria Island Victoria Island Extension Victoria Island Lagos,₦,"2,000,000,000",0,0,0,3 beds,3 baths,3 Toilets +5 Bedroom Duplex,Chevy View Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,5 beds,5 baths,5 Toilets +Land,Bishop Karli Close Saka Tinubu Victoria Island Lagos,₦,"200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Newly Built 3 Bedroom Terrace /units Apartment.,"Vi,oniru Victoria Island Extension Victoria Island Lagos",₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Executive 3 Bedroom Flat For Sale In Victoria Island,Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,3 beds,4 baths, Toilets +"1,800 Sqm Corner Piece (bare Land)",Ligali Ayorinde Victoria Island Lagos,₦,"600,000,000",0,0,0, beds, baths, Toilets +10 Units Of 3 Bedroom Flat For Sale (complete Property),V.i Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,3 beds,4 baths,4 Toilets +Land For Sale,Oniru Estate Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oniru Estate Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"520,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Duplex,"Ihuntayi Street, Off Palace Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"130,000,000",0,0,0,5 beds,5 baths,6 Toilets +Massive Office Complex With Penthouce,Akin Adesola Akin Adesola Victoria Island Lagos,₦,"3,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oniru Estate. Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,"Abibo Adetoro Street, Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Abibo Adetoro Street, Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos",₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Kayode Abraham Street Off Ajose Adeogun Street Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Oniru Ligali Ayorinde Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Muri Okunola Ligali Ayorinde Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale,Kayode Abraham Street Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Semi Detached Duplex,"Vi , Lagos . Victoria Island Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Semi Detached Duplex,"Vi , Lagos . Victoria Island Lagos",₦,"135,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Luxury Apartments,V.i Victoria Island Lagos,₦,"45,000,000",0,0,0,3 beds,2 baths,2 Toilets +A Standard Plot Land,Femi Pearse Str Victoria Island Extension Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Lovely 4 Bedroom Apartment,1004 Estate Victoria Island Lagos 1004 Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,4 Toilets +3 Bedroom Flat,"Water Corporation Road, Off Ligali Ayorinde, Oniru, Victoria Island (vi), Lagos Ligali Ayorinde Victoria Island Lagos",₦,"68,000,000",0,0,0,3 beds,4 baths,5 Toilets +Fully 6 Bedroom Detached Duplex,Ajose Adeogun Akin Adesola Victoria Island Lagos,₦,"350,000,000",0,0,0,6 beds,6 baths,7 Toilets +4 Bedroom Semi Detached Duplex With 8 Bedroom Guest House,Kofo Abayomi Kofo Abayomi Victoria Island Lagos,₦,"400,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Flat,Lawani Oduloye Street Oniru Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets +"5,bedrooms Duplex","Victoria Island, Lagos Nigeria Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +A Block Of 9 Flats With A Room Bq Each,Near New Market Victoria Island Extension Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +Affordable Apartments In Victoria Island,"Victoria Island, Lagos Victoria Island Lagos",₦,"20,000,000",0,0,0,4 beds,4 baths, Toilets +Affordable Luxury 3 Bedroom Apartment,Oniru Palace Victoria Island Extension Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,4 baths,5 Toilets +Office Building,Ademola Adetokunbo Ademola Adetokunbo Victoria Island Lagos,₦,"11,000,000,000",0,0,0,8 beds,8 baths,9 Toilets +Newly Finished 3 Bedroom Terrace,"Muri Okunola,v.i 1004 Victoria Island Lagos",₦,"78,000,000",0,0,0,3 beds,3 baths,4 Toilets +15 Units Of 3 Bedroom And 2units Of 2 Pent Floor Luxury Apartments Left With Maid's Room To Each Unit.,Lawani Oduloye Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,3 Toilets +Selling Fast 16 Units Of 5 Bedroom Semi Detached Apartment With A Bq,Off Ozumba Mbadiwe Victoria Island Extension Victoria Island Lagos,₦,"150,000,000",0,0,0,5 beds,5 baths,5 Toilets +Lands For Sale In Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"400,000,000",0,0,0, beds, baths, Toilets +Luxury 1 2 Bedroom Apartment,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"43,000,000",0,0,0,1 beds,1 baths,2 Toilets +One Bedroom Luxury Apartment For Sale In Victoria Island,Olosa Ademola Adetokunbo Victoria Island Lagos,₦,"43,000,000",0,0,0,1 beds,2 baths,2 Toilets +13 Bedroom Detached House For Commercial Purpose For Sale,By Akin Ogunlewe Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +A Luxury 3 Bedroom,Akinogun Street Victoria Island Extension Victoria Island Lagos,₦,"775,000,000",0,0,0,5 beds,5 baths,5 Toilets +1850sqm Of Land At Ayorinde Ligali,Ayorinde Ligali Victoria Island Lagos,₦,"900,000,000",0,0,0, beds, baths, Toilets +5 Bedroom Detached House,Ligali Ayorinde Street Ademola Adetokunbo Victoria Island Lagos,₦,"250,000,000",0,0,0,5 beds,0 baths,0 Toilets +5 Bedroom Detached Duplex In Victoria Island,Ligali Ayorinde Street Ademola Adetokunbo Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land For Sale,"No 17a, Ozumba Mbadiwe Victoria Island Lagos",₦,"1,000,000,000",0,0,0, beds, baths, Toilets +New Finished 3bedroom Terrace For Sale In V.i Behind Mobil,"Muri Okunola,v.i Victoria Island Lagos",₦,"83,000,000",0,0,0, beds, baths, Toilets +"6,800 Square Metres Of Land",Beside Landmark/water Corporation Victoria Island Extension Victoria Island Lagos,₦,"1,300,000,000",0,0,0,0 beds,0 baths,0 Toilets +2000.80 Sqm Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Two Plots Of Land,Dideolu Estate Ligali Ayorinde Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 3 Bedroom Flats,Jojo Saka Street Victoria Island Lagos,₦,"400,000,000",0,0,0,3 beds,3 baths, Toilets +Office Building,Victoria Lsland Ademola Adetokunbo Victoria Island Lagos,₦,"11,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +5 Bedroom Detached House,Aj Marinho Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,5 beds,5 baths,5 Toilets +A Mini Estate Of 8nos Of 3bedroom Duplex,Off Kofo Abayomi Victoria Island Lagos,₦,"1,800,000,000",0,0,0, beds, baths, Toilets +2 Wngs Of 4 Bedroom Detached House In Victoria Island,"Victoria Island, Lagos Victoria Island Lagos",₦,"290,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Semi Detached Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Semi Detached Duplex,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +4 Bedroom Terrace Duplex With A Bq And Swimming Pool,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,0 baths,0 Toilets +10 Acres Of Land,Opposite Eko Atlantic City Akin Adesola Victoria Island Lagos,₦,"30,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +200 Square Metres Of Table Land,Off Ajose Adeogun Ademola Adetokunbo Victoria Island Lagos,₦,"500,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Purpose Built Office Complex On Four Floors With Each Floor Measuring 975 Sqm,Adeola Odeku Victoria Island Lagos,₦,"100,000",0,0,0, beds, baths, Toilets +Waterfront Land In Victoria Island,Victoria Island Victoria Island Lagos,₦,"800,000,000",0,0,0, beds, baths, Toilets +6 Units Of 4 Bedroom Terrace Houses With 1 Room Bq Each,Ayo Babatunde Crescent Victoria Island Lagos,₦,"350,000,000",0,0,0, beds, baths, Toilets +5 Bedroom House At Waziri Ibrahim Street,Waziri Ibrahim Street Victoria Island Lagos,₦,"450,000,000",0,0,0, beds, baths, Toilets +Land,Off Remi Olowude Street Victoria Island Extension Victoria Island Lagos,₦,"160,000",0,0,0,0 beds,0 baths,0 Toilets +13 Bedroom Fully Detached House In Victoria Island,Akin Ogunlewe Ligali Ayorinde Victoria Island Lagos,₦,"300,000,000",0,0,0,10 beds,10 baths,10 Toilets +Good,"Austin Alozie Dideolu Estate, Victoria Island, Oniru, Lagos Victoria Island Lagos",₦,"500,000,000",0,0,0, beds, baths, Toilets +4605 Square Metres Of Land,Eko Atlantic Ahmadu Bello Way Victoria Island Lagos,₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat With A Gym And A Swimming Pool In Victoria Island,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"80,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"25,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +8 Units Of 4 Bedroon And 2 Bedroom Pent House With Swimming Pool And A Gym,Ligali Ayorinde Ligali Ayorinde Victoria Island Lagos,₦,"2,500,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Plot Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Luxury 3 Bedroom Flat With A Bq, Swimming Pool And A Gym",Ojo Olobun Street Adeola Odeku Victoria Island Lagos,₦,"4,000,000,000",0,0,0,3 beds,3 baths,4 Toilets +"22,000 Square Metres Of Land",Opposite Eko Atlantic City Ligali Ayorinde Victoria Island Lagos,$,"14,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Land Measuring 5,300sqm Or Sale",Adeleke Adedoyin Street Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Detached House,Akin Ogunlewe Street Ligali Ayorinde Victoria Island Lagos,₦,"420,000,000",0,0,0,0 beds,0 baths,0 Toilets +Water Front Land Measuring 1900sqm For Sale,"Victoria Island, Lagos Victoria Island Lagos",₦,"750,000,000",0,0,0, beds, baths, Toilets +100 Room Massive Building On Ahmadu Bello /bishop Oluwole Street,Ahmadu Bello /bishop Oluwole Street Victoria Island Lagos,₦,"3,600,000,000",0,0,0, beds, baths, Toilets +14000sqm Of Land Off Corporation Drive,Off Corporation Drive Victoria Island Lagos,₦,"2,100,000,000",0,0,0, beds, baths, Toilets +5000sqm Bare Land In Victoria Island,Along Ademola Adetokumbo Victoria Island Lagos,₦,"1,200,000,000",0,0,0, beds, baths, Toilets +"1234sqm Of Land, Ligali Ayorinde",Behind Amazing Grace Plaza On Ligali Ayorinde Street Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +3 Bedroom Flat In Eco Pearl Tower,Eco Pearl Tower Victoria Island Lagos,₦,"221,875,000",0,0,0,3 beds,3 baths, Toilets +3 Bedroom Apartment,Oniru Kofo Abayomi Victoria Island Lagos,₦,"600,000,000",0,0,0,3 beds,3 baths,4 Toilets +4 Bedroom Terrace House,Oniru Kofo Abayomi Victoria Island Lagos,₦,"95,000,000",0,0,0,4 beds,4 baths,5 Toilets +5 Bedroom Detached House With 2 Bq In Victoria Island,Off Ajose Adeogun Street Akin Olugbade Victoria Island Lagos,₦,"350,000,000",0,0,0,5 beds,5 baths,6 Toilets +3 Bedroom Flat Off Adeola Odeku,Off Adeola Odeku Victoria Island Lagos,₦,"260,000,000",0,0,0,3 beds,4 baths, Toilets +5 Bedrooms Duplex With Bq,Ozumba Mbadiwe 1004 Victoria Island Lagos,₦,"270,000,000",0,0,0,5 beds,3 baths,3 Toilets +Fully Furnished 3 Bedroom Serviced Apartment,Victoria Island Victoria Island Lagos,₦,"7,000,000",0,0,0,3 beds,3 baths, Toilets +16 Storey Kanti Towers At Adetokunbo Ademola Street,Adetokunbo Ademola Street Victoria Island Lagos,₦,"14,000,000,000",0,0,0, beds, baths, Toilets +Office Complex At Akin Adesola Street,Akin Adesola Street Victoria Island Lagos,₦,"2,500,000,000",0,0,0, beds, baths, Toilets +"1,500 Square Metres Of Land",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +"1,850 Square Metres Of Land",Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +4500 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +950 Square Metres Of Land,Dideolu Estate Saka Tinubu Victoria Island Lagos,₦,"330,000,000",0,0,0,0 beds,0 baths,0 Toilets +5180 Square Metres Of Land,Dideolu Estate Victoria Island Extension Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Victoria Island 22000sqm N7b,Ajose Adeogun Victoria Island Lagos,₦,"7,000,000,000",0,0,0, beds, baths, Toilets +Land,Adeleke Adedoyin Street Kofo Abayomi Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +1600 Square Metres Of Land,Louis Solomon Close Ahmadu Bello Way Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land At Karim Ikotu,Karim Ikotun Victoria Island Lagos,₦,"12,000,000",0,0,0, beds, baths, Toilets +Land,Eko Atlantic City Ahmadu Bello Way Victoria Island Lagos,$,"2,500",0,0,0,0 beds,0 baths,0 Toilets +"A Property For Sale In Ligali Ayorinde,victoria Island",Ligali Ayorinde Victoria Island Lagos,₦,"850,000,000",0,0,0, beds, baths, Toilets +Newly Built 5 Bedroom Terrace House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"140,000,000",0,0,0,5 beds,5 baths,0 Toilets +Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"1,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Landmark Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"2,700,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Landmark Road, Oniru Victoria Island Extension Victoria Island Lagos",₦,"2,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +Functional 65 Rooms 5 Star Hotel On 7 Floors Overlooking The Atlantic Ocean.,Victoria Island Ademola Adetokunbo Victoria Island Lagos,$,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Units Of 4 Bedroom Terrace,Oniru Market Road Victoria Island Extension Victoria Island Lagos,₦,"320,000,000",0,0,0,4 beds,0 baths,0 Toilets +4 Bedroom Penthouse,Lawani Oduloye Street. Victoria Island Extension Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,6 baths,6 Toilets +3 Bedroom Flat,Lawani Odunloye Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 bedroom Flat +bq,Lawani Oduloye Street Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,5 baths,5 Toilets +3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"1,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +1300 Square Metres Of Land,Off Ligali Ayorinde Ademola Adetokunbo Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"165,000,000",0,0,0, beds, baths, Toilets +2500 Square Metres Of Land,Oniru Victoria Island Extension Victoria Island Lagos,₦,"130,000",0,0,0,0 beds,0 baths,0 Toilets +3000 Square Metres Of Land,Adeola Odeku Adeola Odeku Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Duplex In Victoria Island,"Dideolu Estates, Victoria Island Victoria Island Lagos",₦,"90,000,000",0,0,0, beds, baths, Toilets +"Heritage Apartments, Louis Solomon Close",Louis Solomon Close Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths, Toilets +4 Bedroom Terrace House,Teslim Elias Ahmadu Bello Way Victoria Island Lagos,₦,"75,000,000",0,0,0,4 beds,4 baths,5 Toilets +"4 Bedroom Semi Detached House On 2 Floors, With A Bungalow On 560,27 Sqm",Mabogunje Street Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,5 Toilets +A 4 Bedroom Terrace Duplex,Ihuntayi Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,4 beds,5 baths,6 Toilets +6 Units Of 3 Bedrooms Flats And 4 Units Of 2 Bedrooms Flats At Vi,Elegba Victoria Island Lagos Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,3 baths,4 Toilets +Twin 4 Bedroom Duplex,"Kofo Abayomi Street, Victoria Island Kofo Abayomi Victoria Island Lagos",₦,"380,000,000",0,0,0,4 beds,5 baths,5 Toilets +Office Space,Adetokunbo Ademola Street Adeola Odeku Victoria Island Lagos,₦,"15,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Terrace House,"Senrolu/tiwa Danjuma Street Oniru, Victoria Island. Victoria Island Extension Victoria Island Lagos",₦,"90,000,000",0,0,0,4 beds,4 baths,5 Toilets +3300 Sqm Of Land,Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +1000 Sq.m Of Land With C Of O,Saka Tinubu Saka Tinubu Victoria Island Lagos,₦,"380,000,000",0,0,0,0 beds,0 baths,0 Toilets +"36,570sqm Land",Akin Adesola Akin Adesola Victoria Island Lagos,$,"2,800",0,0,0,0 beds,0 baths,0 Toilets +Plot Of Land,Ibiyinka Olorunbe Victoria Island Extension Victoria Island Lagos,₦,"350,000,000",0,0,0,0 beds,0 baths,0 Toilets +Luxury New 2 Bedroom Flat,Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +16 Storey Building,Ademola Adetokunbo Street Beside Tanterlizer Ademola Adetokunbo Victoria Island Lagos,₦,"13,500,000,000",0,0,0,0 beds,0 baths,0 Toilets +6 Bedroom Detached House,Oniru Victoria Island Extension Victoria Island Lagos,₦,"180,000,000",0,0,0,6 beds,6 baths,7 Toilets +Brand New 3 Bedroom Flat,Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +6000 Square Meters Of Land,Ozumba Adeola Odeku Victoria Island Lagos,₦,"1,600,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,"Along Adekunle Animashaun Drive, Off Remi Olowude Str, By Pinnacle Filling Station, Maruwa Bus Stop, Lekki Oniru Victoria Island Extension Victoria Island Lagos",₦,"150,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Oniru Road Ligali Ayorinde Street Victoria Island Extension Victoria Island Lagos,₦,"4,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 2 Bedroom Flat With A Room Bq,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"65,000,000",0,0,0,2 beds,2 baths,3 Toilets +A 3 Bedroom Flat With A Room Bq,Oniru Estate Victoria Island Extension Victoria Island Lagos,₦,"70,000,000",0,0,0,3 beds,3 baths,4 Toilets +Land,Adeleke Adedoyin Street Kofo Abayomi Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Ibiyinka Olurumbe Off Amodu Ojukutu Opp Marina Securities Victoria Island Extension Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House Off Palace Road,Off Palace Road Victoria Island Lagos,₦,"120,000,000",0,0,0, beds, baths, Toilets +2 Bedroom Apartment,Water Cooperation Drive Victoria Island Extension Victoria Island Lagos,₦,"76,000,000",0,0,0,2 beds,2 baths,3 Toilets +A 7 Floors 5 Star Hotel,Victoria Island Victoria Island Extension Victoria Island Lagos,$,"45,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land For Sale At Victoria Island,Victoria Island Lagos Victoria Island Lagos,₦,"500,000,000",0,0,0, beds, baths, Toilets +10 Bedroom Duplex,Akin Ogunlewe Victoria Island Extension Victoria Island Lagos,₦,"600,000,000",0,0,0,10 beds,10 baths,10 Toilets +"Land For Sale At Victoria Island, Oniru Estate, Dideolu Estate, Lagos Nigeria",Femi Sule Street Oniru Estate Lagos Victoria Island Lagos,₦,"650,000,000",0,0,0, beds, baths, Toilets +Luxury 3 Bedroom Flat With Bq,"Fatai Durosinmi Etti Crescent, Via Ajose Adeogun Street, Victoria Island Extension Victoria Island Lagos",₦,"100,000,000",0,0,0,3 beds,3 baths,4 Toilets +3 Bedroom Flat,Kofo Abayomi Street Kofo Abayomi Victoria Island Lagos,₦,"1,200,000,000",0,0,0,3 beds,3 baths,3 Toilets +Land,Adeleke Adedoyin Street Off Kofo Abayomi Street Victoria Island Extension Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Bedroom Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"48,000,000",0,0,0,3 beds,3 baths,4 Toilets +Mini Flat,Off Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"28,000,000",0,0,0,1 beds,1 baths,2 Toilets +"A 20,00sqm Fenced Land","Oniru, Behind 4 Point Hotel Victoria Island Extension Victoria Island Lagos",₦,"3,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 1,800sqm Of Land",Akin Adesola Victoria Island Extension Victoria Island Lagos,₦,"900,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,000sqm Of Land",Adjacent Globalcom Office Adeola Odeku Victoria Island Lagos,₦,"1,800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 6,800sqm Land",Ligali Ayorinde Victoria Island Extension Victoria Island Lagos,₦,"1,200,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,800sqm Of Land","Beside Orientalhotel, Ozumba Mbasiwe Victoria Island Extension Victoria Island Lagos",₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 2,900sqm Of Land",Idejo Street Victoria Island Extension Victoria Island Lagos,₦,"250,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 3,000sqm Of Land","Oniru, Near 4 Point Hotel Victoria Island Extension Victoria Island Lagos",₦,"450,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Semi Detached House With 2 Rooms Bq,Oniru Victoria Island Extension Victoria Island Lagos,₦,"120,000,000",0,0,0,4 beds,4 baths,4 Toilets +800sqm Plot Of Fenced Land In Victoria Island,Ologun Agbaje Street Victoria Island Lagos,₦,"380,000,000",0,0,0, beds, baths, Toilets +7 Bedrooms Detached House,Victoria Island Victoria Island Victoria Island Lagos,₦,"300,000,000",0,0,0,7 beds,6 baths,7 Toilets +Shops,Market Road Victoria Island Extension Victoria Island Lagos,₦,"14,500,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House,Oniru Estate Victoria Island Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,0 baths,0 Toilets +A Bare Land,Ozumba Mbadiwe Victoria Island Victoria Island Lagos,₦,"190,000,000",0,0,0,0 beds,0 baths,0 Toilets +"A 5,700sqm Of Land",Dideolu Estate Victoria Island Victoria Island Lagos,₦,"850,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 4 Bedroom Semi Detached Duplex With Bq,Off Palace Road Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +3 Bedroom Apartment,Eko Atlantic City Victoria Island Victoria Island Lagos,₦,"160,000,000",0,0,0,2 beds,0 baths,0 Toilets +"A 4,008sqm Of Land",Adeleke Adedoyin Street Victoria Island Victoria Island Lagos,₦,"800,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Bedroom Detached House + 2 Rooms Bq,Off Onigefon Street Victoria Island Victoria Island Lagos,₦,"150,000,000",0,0,0,4 beds,4 baths,5 Toilets +"A 1,200sqm Of Land",Ibiyinka Olurumbe Victoria Island Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Full Detached Building,Off Ahmadu Bello Way Victoria Island Victoria Island Lagos,₦,"30,000,000",0,0,0,0 beds,0 baths,0 Toilets +Land,Abisogun Street Victoria Island Victoria Island Lagos,₦,"140,000,000",0,0,0,0 beds,0 baths,0 Toilets +4 Units Of 4 Bedroom Terraced Houses,34 Ihuntayi Road Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,4 beds,4 baths,5 Toilets +8 Units Of 5 Bedroom Town House,Oniru Victoria Island Extension Victoria Island Victoria Island Lagos,₦,"130,000,000",0,0,0,5 beds,0 baths,0 Toilets +Land,Ahmadu Bello Way Victoria Island Victoria Island Lagos,$,"80,000,000",0,0,0,0 beds,0 baths,0 Toilets +3 Hectares Of Land,Oniru Victoria Island Extension Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0,0 beds,0 baths,0 Toilets +A Mixed Use Land,Water Corporation Victoria Island Victoria Island Lagos,₦,"250,000",0,0,0,0 beds,0 baths,0 Toilets +Office Building,Ligali Ayorinde Street Victoria Island Victoria Island Lagos,₦,"700,000,000",0,0,0,0 beds,0 baths,0 Toilets +20 Nos Of 3 Bedroom Apartment,Victoria Island Victoria Island Victoria Island Lagos,₦,"180,000,000",0,0,0,0 beds,0 baths,0 Toilets +"Brand New High Rise Building On 1,380sqm Of Land",Vi Victoria Island Victoria Island Lagos,$,"40,000,000",0,0,0, beds, baths, Toilets +A 3 Bedroom House With A Bq,Oniru Victoria Island Victoria Island Lagos,₦,"75,000,000",0,0,0,3 beds,3 baths,4 Toilets +A 1250sqm Land,Kofo Abayomi Victoria Island Victoria Island Lagos,₦,"400,000,000",0,0,0,0 beds,0 baths,0 Toilets +A 1800sqm Land,Sinari Daranijo Street Victoria Island Victoria Island Lagos,₦,"600,000,000",0,0,0,0 beds,0 baths,0 Toilets +2 Units Of 4 Bedroom Flat,Victory Park Victoria Island Victoria Island Lagos,₦,"110,000,000",0,0,0,4 beds,4 baths,5 Toilets +4 Bedroom Flat Plus 1 Room Bq,Shortline Estate Victoria Island Victoria Island Lagos,₦,"85,000,000",0,0,0,4 beds,4 baths,5 Toilets +"Plot Of Land, Off Amodu Ojikutu Street",Off Amodu Ojikutu Victoria Island Lagos,₦,"250,000,000",0,0,0, beds, baths, Toilets +6 Bedrooms Fully Detached House + 3 Rooms Bq,Sam Adedoyin Victoria Island Victoria Island Lagos,₦,"280,000,000",0,0,0,6 beds,5 baths,6 Toilets +House On 1 Acre Of Land At Victoria Island Lagos,Victoria Island Victoria Island Lagos,₦,"2,000,000,000",0,0,0, beds, baths, Toilets +Bareland Forsale In Victorial Island Lagos,Oko Awo Street Victorial Island Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +4 Bedroom Flats,Lawani Oduloye Victoria Island Victoria Island Lagos,₦,"125,000,000",0,0,0,4 beds,5 baths,6 Toilets +3 Bedrooms Flats,Lawani Oduloye Victoria Island Victoria Island Lagos,₦,"65,000,000",0,0,0,3 beds,4 baths,5 Toilets +"Property For Sale At Dideolu Estate, Oniru Estate, Lekki Right, Victoria Island, Eko Atlantic, Northern Foreshore, Chevron Estate, Nicon Town, Lagos",Victoria Island Lagos Victoria Island Lagos,₦,"550,000,000",0,0,0, beds, baths, Toilets +7 Units Of 3 Bedroom Flat & 1 Unit Of 2 Bedroom Flat + 8 Bq's,Olosa Victoria Island Victoria Island Lagos,₦,"550,000,000",0,0,0,3 beds,3 baths,4 Toilets +7 Bedroom Duplex + 2 Room Bq,"Sam Adedoyin, Victoria Island Victoria Island Lagos",₦,"300,000,000",0,0,0,7 beds,7 baths,7 Toilets diff --git a/tools/encoder_joblib b/tools/encoder_joblib new file mode 100644 index 0000000000000000000000000000000000000000..620dd7cd25de99f48ed1a8c1ffbeac6804685923 GIT binary patch literal 902 zcmZWn!EO^V5JhU!G>}cHC? z{+ID44X7kiHamWv_vXF%zWMv>#)J0bpWlFVwS^o^i3aw;jHy6V?vsIBkqbV_47??G z6c50LU*YAC@GZRXy}7g~M;fYd<`XOpahDsiQ|ZD_KX5e5$I?Mb7F$TKuw2rzipP)F zFZl?Kv<=rDt{djz6BG2$082F@tB8u=H?Nu*@Z$ho6Tt7@2{&>IRgPwPY5NlF9LK;H z9-YBLH)2?$<}rG2YHP4k@nm}l%umyb%R}kZ>VNl&P=l+2>Z?Qzzz_8GY3t%#$qK});5#Q1ax(bt zfr7aua}V*lMX-tMz9$p-%=ms*$(asWM#%)*ow6 zms79%-*xCRc8S=^EHF**&+dW5(X9hhVVt9%YR$6JIhdMxw^A+ZipSmlz#FpE^yFH8 zL5qToB`rl(z=XB*Q?xU(PF#?T$)^i;V?p9tHY_wPF|IVn11gDO?OnnY#UVI3=6w){ x^-RNU@H_ukuE1K!+jNHkHE7db<9CM65?A#kJK<#(`uJv-&GLC)ACe8ZG+l2K#4>(pM}bwx@mTkOtt45J13QR@>nlI@!%@pM&V3X`Z+;`yuh9$ZV;9gYlb=bR)50&x_@bHA z>B2;62=g+tyiOVrY*Y%ws7!32)|OVms-!?QMr)UODfDc5C*C+qv2UtM0|&O@#j{ay>y-LtD-Z!3u6y zgW$+Fjm6T9<%uDl^_R=VcG-RQpc(;t$R4qM_JlqA-x2I097hahS_%Yj2c=`MG+~fF pJudOUz95br)V_u3l-~mR7&R5SK3Sb7!5cAL3f#zp5FcO0;U5(2Rbl`D literal 0 HcmV?d00001 diff --git a/tools/model_joblib b/tools/model_joblib new file mode 100644 index 0000000000000000000000000000000000000000..d5ee73435ea80004ee1aca4ac099cef22ebf7c98 GIT binary patch literal 599142 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

m5u5BundVms_t|8uX4|t( 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 z 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 literal 0 HcmV?d00001 diff --git a/tools/scaler_joblib b/tools/scaler_joblib new file mode 100644 index 0000000000000000000000000000000000000000..fd6ff71425b5d90d897a748c0222f2cf228e2b6d GIT binary patch literal 943 zcmah|&1(}u6i?EmO}Cmf=@%jvK`GJ0LT^13w%VJK6jH%}lwo#v+F9MN`Pi07)fVkX za0Jnb|AD6py((V3RPd@74ilLi<={lzFM_$+jp<^j(DN422y+kQ&UZ*e&57XpX zWLhp{Op07`ONzcY9~G-|5jlooh-9^AL)ihf)m4$6RkqEW>KqsGsEW$WP07~wmaNN4 zwMV2^Wvy1b@>{LsS2egag$7+WSOJ~~L)nVVwTzX}=~h6I?nN$l5>gFNWCcFsG_trx zQk^KRo03M-)zk*bSilNwWHAl-v7wQkMl82UvW;G~yO2BnB*|@(-a6^qBKbP$uT;~j z3ZiuZll(O@(8#FxxhZl&Bi8{-RJv8 ad;9=s5Okj*SVojNfv?1v)YT^=Q~v`_6=8w^ literal 0 HcmV?d00001 diff --git a/web-app/Procfile b/web-app/Procfile new file mode 100644 index 0000000..b26ea46 --- /dev/null +++ b/web-app/Procfile @@ -0,0 +1 @@ +web: gunicorn lagos.wsgi \ No newline at end of file diff --git a/web-app/db.sqlite3 b/web-app/db.sqlite3 new file mode 100644 index 0000000..e69de29 diff --git a/web-app/lagos/__init__.py b/web-app/lagos/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/web-app/lagos/asgi.py b/web-app/lagos/asgi.py new file mode 100644 index 0000000..69b1fca --- /dev/null +++ b/web-app/lagos/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for lagos project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lagos.settings') + +application = get_asgi_application() diff --git a/web-app/lagos/settings.py b/web-app/lagos/settings.py new file mode 100644 index 0000000..0aa00f9 --- /dev/null +++ b/web-app/lagos/settings.py @@ -0,0 +1,130 @@ +""" +Django settings for lagos project. + +Generated by 'django-admin startproject' using Django 4.0.6. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/4.0/ref/settings/ +""" + +from pathlib import Path +import os + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ["lagos-estimator.herokuapp.com", "127.0.0.1"] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + + # 3rd party + "whitenoise.middleware.WhiteNoiseMiddleware", + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'lagos.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [BASE_DIR / "templates"], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'lagos.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/4.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/4.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/4.0/howto/static-files/ + +STATIC_ROOT = BASE_DIR / "staticfiles" +STATIC_URL = 'static/' +STATICFILES_DIRS = [ + BASE_DIR / "static" +] +# Default primary key field type +# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/web-app/lagos/urls.py b/web-app/lagos/urls.py new file mode 100644 index 0000000..1a292f2 --- /dev/null +++ b/web-app/lagos/urls.py @@ -0,0 +1,22 @@ +"""lagos URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/4.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path("", include("predict.urls")), +] diff --git a/web-app/lagos/wsgi.py b/web-app/lagos/wsgi.py new file mode 100644 index 0000000..c834424 --- /dev/null +++ b/web-app/lagos/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for lagos project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lagos.settings') + +application = get_wsgi_application() diff --git a/web-app/manage.py b/web-app/manage.py new file mode 100644 index 0000000..5af8c73 --- /dev/null +++ b/web-app/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lagos.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/web-app/predict/__init__.py b/web-app/predict/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/web-app/predict/admin.py b/web-app/predict/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/web-app/predict/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/web-app/predict/apps.py b/web-app/predict/apps.py new file mode 100644 index 0000000..e532a91 --- /dev/null +++ b/web-app/predict/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class PredictConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'predict' diff --git a/web-app/predict/migrations/__init__.py b/web-app/predict/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/web-app/predict/models.py b/web-app/predict/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/web-app/predict/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/web-app/predict/tests.py b/web-app/predict/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/web-app/predict/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/web-app/predict/urls.py b/web-app/predict/urls.py new file mode 100644 index 0000000..303e979 --- /dev/null +++ b/web-app/predict/urls.py @@ -0,0 +1,8 @@ +from django.urls import path + +from . import views + +urlpatterns = [ + path("", views.home, name="home"), + path("predict/", views.predict, name="predict"), +] \ No newline at end of file diff --git a/web-app/predict/views.py b/web-app/predict/views.py new file mode 100644 index 0000000..f17a183 --- /dev/null +++ b/web-app/predict/views.py @@ -0,0 +1,66 @@ +from django.shortcuts import render +import pandas as pd +import joblib + +# Home page +def home(request): + return render(request, "base.html") + + +# Predict page +def predict(request): + # Fetch data from the frontend + bedrooms = float(request.POST["Bedrooms"]) + bathrooms = float(request.POST["Bathrooms"]) + toilets = float(request.POST["Toilets"]) + newly_built = float(request.POST["Newly_Built"]) + serviced = float(request.POST["Serviced"]) + furrnished = float(request.POST["Furnished"]) + type_of = request.POST["Type"] + city = request.POST["City"] + neighborhood = request.POST["Neighborhood"] + + # Store data in a dictionary + data = { + "Bedrooms" : bedrooms, + "Bathrooms" : bathrooms, + "Toilets" : toilets, + "Newly Built" : newly_built, + "Serviced" : serviced, + "Furnished" : furrnished, + "Type" : type_of, + "City" : city, + "Neighborhood" : neighborhood} + + # Import tools for preprocessing + encoder = joblib.load("tools/encoder_joblib") + scaler = joblib.load("tools/scaler_joblib") + + # Import model + model = joblib.load("tools/model_joblib") + + # Function to predict price + def predict_house(data): + test = pd.DataFrame([data]) + numerical = ['Bathrooms', 'Bedrooms', 'Toilets'] + test[numerical] = scaler.transform(test[numerical]) # scale the numerical data + test = encoder.transform(test) # encode the categorical data + + return model.predict(test)[0] // 1e6 # make prediction, convert it to millions and round up to 2dp + + # Getting prediction and convert to integer + prediction = int(predict_house(data)) + + # Send to frontend + context = {"prediction" : prediction, + "Bedrooms" : int(bedrooms), + "Bathrooms" : int(bathrooms), + "Toilets" : int(toilets), + "Newly Built" : newly_built, + "Serviced" : serviced, + "Furnished" : furrnished, + "Type" : type_of, + "City" : city, + "Neighborhood" : neighborhood} + + return render(request, "base.html", context=context) \ No newline at end of file diff --git a/web-app/requirements.txt b/web-app/requirements.txt new file mode 100644 index 0000000..7684e30 --- /dev/null +++ b/web-app/requirements.txt @@ -0,0 +1,18 @@ +asgiref==3.5.2 +Django==4.0.6 +docutils +lightgbm +xgboost +feature_engine +sklearn +gunicorn==20.1.0 +joblib +numpy +numpydoc +pandas +python-dateutil +pytz==2021.3 +six +sqlparse==0.4.2 +urllib3 +whitenoise==6.2.0 diff --git a/web-app/runtime.txt b/web-app/runtime.txt new file mode 100644 index 0000000..8985c70 --- /dev/null +++ b/web-app/runtime.txt @@ -0,0 +1 @@ +python-3.9.12 \ No newline at end of file diff --git a/web-app/static/css/.DS_Store b/web-app/static/css/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0, 0, 0, 0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0, 0, 0, 0.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#f1f5cb}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#e4ec9f}.table-hover .table-primary:hover{background-color:#ebf1b6}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#ebf1b6}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f9cdcf}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#f5a2a7}.table-hover .table-danger:hover{background-color:#f6b6b9}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f6b6b9}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0, 0, 0, 0.075)}.table-hover .table-active:hover{background-color:rgba(0, 0, 0, 0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0, 0, 0, 0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255, 255, 255, 0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255, 255, 255, 0.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;-webkit-transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;-o-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#e9efb0;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:0.375rem;padding-bottom:0.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40, 167, 69, 0.9);border-radius:0.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#eb4d55}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(235, 77, 85, 0.9);border-radius:0.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#eb4d55;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23eb4d55' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23eb4d55' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#eb4d55;-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#eb4d55;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23eb4d55' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23eb4d55' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#eb4d55;-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#eb4d55}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#eb4d55}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#eb4d55}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#f07b81;background-color:#f07b81}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#eb4d55}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#eb4d55}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#eb4d55;-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;-o-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.btn.disabled,.btn:disabled{opacity:0.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#212529;background-color:#ccda46;border-color:#ccda46}.btn-primary:hover{color:#212529;background-color:#c0d02a;border-color:#b7c628}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(178, 191, 66, 0.5);box-shadow:0 0 0 0.2rem rgba(178, 191, 66, 0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#212529;background-color:#ccda46;border-color:#ccda46}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#212529;background-color:#b7c628;border-color:#adbb25}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(178, 191, 66, 0.5);box-shadow:0 0 0 0.2rem rgba(178, 191, 66, 0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5);box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5);box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72, 180, 97, 0.5);box-shadow:0 0 0 0.2rem rgba(72, 180, 97, 0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72, 180, 97, 0.5);box-shadow:0 0 0 0.2rem rgba(72, 180, 97, 0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5);box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5);box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5);box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5);box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5)}.btn-danger{color:#fff;background-color:#eb4d55;border-color:#eb4d55}.btn-danger:hover{color:#fff;background-color:#e72b34;border-color:#e61f29}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(238, 104, 111, 0.5);box-shadow:0 0 0 0.2rem rgba(238, 104, 111, 0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#eb4d55;border-color:#eb4d55}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#e61f29;border-color:#df1923}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(238, 104, 111, 0.5);box-shadow:0 0 0 0.2rem rgba(238, 104, 111, 0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5);box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5);box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5);box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5);box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5)}.btn-outline-primary{color:#ccda46;border-color:#ccda46}.btn-outline-primary:hover{color:#212529;background-color:#ccda46;border-color:#ccda46}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#ccda46;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#212529;background-color:#ccda46;border-color:#ccda46}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.btn-outline-danger{color:#eb4d55;border-color:#eb4d55}.btn-outline-danger:hover{color:#fff;background-color:#eb4d55;border-color:#eb4d55}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#eb4d55;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#eb4d55;border-color:#eb4d55}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.btn-link{font-weight:400;color:#ccda46;text-decoration:none}.btn-link:hover{color:#a3b023;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;-webkit-box-shadow:none;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.btn-group-sm>.btn,.btn-sm{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;-o-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;-o-transition:none;transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle:after{display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#ccda46}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#ccda46;background-color:#ccda46}.custom-control-input:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#e9efb0}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#f5f8db;border-color:#f5f8db}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label:after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label:before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#ccda46;background-color:#ccda46}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(204, 218, 70, 0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(204, 218, 70, 0.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(204, 218, 70, 0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label:after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{-webkit-transition:none;-o-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;-webkit-transform:translateX(0.75rem);-ms-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(204, 218, 70, 0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#e9efb0;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#e9efb0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label:after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:calc(1rem + 0.4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#ccda46;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#f5f8db}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#ccda46;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#f5f8db}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#ccda46;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#f5f8db}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:none;-o-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#ccda46}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0, 0, 0, 0.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0, 0, 0, 0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0, 0, 0, 0.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-toggler{color:rgba(0, 0, 0, 0.5);border-color:rgba(0, 0, 0, 0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0, 0, 0, 0.5)}.navbar-light .navbar-text a{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0, 0, 0, 0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255, 255, 255, 0.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255, 255, 255, 0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255, 255, 255, 0.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255, 255, 255, 0.5);border-color:rgba(255, 255, 255, 0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255, 255, 255, 0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0, 0, 0, 0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0, 0, 0, 0.03);border-bottom:1px solid rgba(0, 0, 0, 0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0, 0, 0, 0.03);border-top:1px solid rgba(0, 0, 0, 0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(0.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:0.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#ccda46;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#a3b023;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#ccda46;border-color:#ccda46}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{-webkit-transition:none;-o-transition:none;transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#212529;background-color:#ccda46}a.badge-primary:focus,a.badge-primary:hover{color:#212529;background-color:#b7c628}a.badge-primary.focus,a.badge-primary:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5);box-shadow:0 0 0 0.2rem rgba(204, 218, 70, 0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(40, 167, 69, 0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.badge-danger{color:#fff;background-color:#eb4d55}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#e61f29}a.badge-danger.focus,a.badge-danger:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5);box-shadow:0 0 0 0.2rem rgba(235, 77, 85, 0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#6a7124;background-color:#f5f8da;border-color:#f1f5cb}.alert-primary hr{border-top-color:#ebf1b6}.alert-primary .alert-link{color:#464a18}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#7a282c;background-color:#fbdbdd;border-color:#f9cdcf}.alert-danger hr{border-top-color:#f6b6b9}.alert-danger .alert-link{color:#541b1e}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#ccda46;-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{-webkit-transition:none;-o-transition:none;transition:none}}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0, 0, 0, 0.125)}.list-group-item:first-child{border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#ccda46;border-color:#ccda46}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#6a7124;background-color:#f1f5cb}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#6a7124;background-color:#ebf1b6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#6a7124;border-color:#6a7124}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#7a282c;background-color:#f9cdcf}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#7a282c;background-color:#f6b6b9}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#7a282c;border-color:#7a282c}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:0.875rem;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);box-shadow:0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border-bottom:1px solid rgba(0, 0, 0, 0.05)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;-o-transition:transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);-ms-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;-o-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;-ms-transform:none;transform:none}.modal.fade2 .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;-o-transition:transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, 0px);-ms-transform:translate(0, 0px);transform:translate(0, 0px)}@media (prefers-reduced-motion:reduce){.modal.fade2 .modal-dialog{-webkit-transition:none;-o-transition:none;transition:none}}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.fade2{opacity:0}.modal-backdrop.show{opacity:0.2}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0.3rem;border-top-right-radius:0.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0.3rem;border-bottom-left-radius:0.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:0.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 0.4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:0.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 0.4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:0.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((0.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:0.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:0.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((0.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:0.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;-o-transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transform:none;-ms-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:0s 0.6s opacity;-o-transition:0s 0.6s opacity;transition:0s 0.6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;-webkit-transition:opacity 0.15s ease;-o-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;-o-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#ccda46!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#b7c628!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#eb4d55!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#e61f29!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#ccda46!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#eb4d55!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:0.2rem!important}.rounded{border-radius:0.25rem!important}.rounded-top{border-top-left-radius:0.25rem!important;border-top-right-radius:0.25rem!important}.rounded-right{border-top-right-radius:0.25rem!important;border-bottom-right-radius:0.25rem!important}.rounded-bottom{border-bottom-right-radius:0.25rem!important;border-bottom-left-radius:0.25rem!important}.rounded-left{border-top-left-radius:0.25rem!important;border-bottom-left-radius:0.25rem!important}.rounded-lg{border-radius:0.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)!important;box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)!important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)!important;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0, 0, 0, 0.175)!important;box-shadow:0 1rem 3rem rgba(0, 0, 0, 0.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0, 0, 0, 0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:0.25rem!important}.mt-1,.my-1{margin-top:0.25rem!important}.mr-1,.mx-1{margin-right:0.25rem!important}.mb-1,.my-1{margin-bottom:0.25rem!important}.ml-1,.mx-1{margin-left:0.25rem!important}.m-2{margin:0.5rem!important}.mt-2,.my-2{margin-top:0.5rem!important}.mr-2,.mx-2{margin-right:0.5rem!important}.mb-2,.my-2{margin-bottom:0.5rem!important}.ml-2,.mx-2{margin-left:0.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:0.25rem!important}.pt-1,.py-1{padding-top:0.25rem!important}.pr-1,.px-1{padding-right:0.25rem!important}.pb-1,.py-1{padding-bottom:0.25rem!important}.pl-1,.px-1{padding-left:0.25rem!important}.p-2{padding:0.5rem!important}.pt-2,.py-2{padding-top:0.5rem!important}.pr-2,.px-2{padding-right:0.5rem!important}.pb-2,.py-2{padding-bottom:0.5rem!important}.pl-2,.px-2{padding-left:0.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-0.25rem!important}.mt-n1,.my-n1{margin-top:-0.25rem!important}.mr-n1,.mx-n1{margin-right:-0.25rem!important}.mb-n1,.my-n1{margin-bottom:-0.25rem!important}.ml-n1,.mx-n1{margin-left:-0.25rem!important}.m-n2{margin:-0.5rem!important}.mt-n2,.my-n2{margin-top:-0.5rem!important}.mr-n2,.mx-n2{margin-right:-0.5rem!important}.mb-n2,.my-n2{margin-bottom:-0.5rem!important}.ml-n2,.mx-n2{margin-left:-0.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:0.25rem!important}.mt-sm-1,.my-sm-1{margin-top:0.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem!important}.m-sm-2{margin:0.5rem!important}.mt-sm-2,.my-sm-2{margin-top:0.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:0.25rem!important}.pt-sm-1,.py-sm-1{padding-top:0.25rem!important}.pr-sm-1,.px-sm-1{padding-right:0.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem!important}.pl-sm-1,.px-sm-1{padding-left:0.25rem!important}.p-sm-2{padding:0.5rem!important}.pt-sm-2,.py-sm-2{padding-top:0.5rem!important}.pr-sm-2,.px-sm-2{padding-right:0.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem!important}.pl-sm-2,.px-sm-2{padding-left:0.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-0.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem!important}.m-sm-n2{margin:-0.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:0.25rem!important}.mt-md-1,.my-md-1{margin-top:0.25rem!important}.mr-md-1,.mx-md-1{margin-right:0.25rem!important}.mb-md-1,.my-md-1{margin-bottom:0.25rem!important}.ml-md-1,.mx-md-1{margin-left:0.25rem!important}.m-md-2{margin:0.5rem!important}.mt-md-2,.my-md-2{margin-top:0.5rem!important}.mr-md-2,.mx-md-2{margin-right:0.5rem!important}.mb-md-2,.my-md-2{margin-bottom:0.5rem!important}.ml-md-2,.mx-md-2{margin-left:0.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:0.25rem!important}.pt-md-1,.py-md-1{padding-top:0.25rem!important}.pr-md-1,.px-md-1{padding-right:0.25rem!important}.pb-md-1,.py-md-1{padding-bottom:0.25rem!important}.pl-md-1,.px-md-1{padding-left:0.25rem!important}.p-md-2{padding:0.5rem!important}.pt-md-2,.py-md-2{padding-top:0.5rem!important}.pr-md-2,.px-md-2{padding-right:0.5rem!important}.pb-md-2,.py-md-2{padding-bottom:0.5rem!important}.pl-md-2,.px-md-2{padding-left:0.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-0.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem!important}.m-md-n2{margin:-0.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:0.25rem!important}.mt-lg-1,.my-lg-1{margin-top:0.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem!important}.m-lg-2{margin:0.5rem!important}.mt-lg-2,.my-lg-2{margin-top:0.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:0.25rem!important}.pt-lg-1,.py-lg-1{padding-top:0.25rem!important}.pr-lg-1,.px-lg-1{padding-right:0.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem!important}.pl-lg-1,.px-lg-1{padding-left:0.25rem!important}.p-lg-2{padding:0.5rem!important}.pt-lg-2,.py-lg-2{padding-top:0.5rem!important}.pr-lg-2,.px-lg-2{padding-right:0.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem!important}.pl-lg-2,.px-lg-2{padding-left:0.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-0.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem!important}.m-lg-n2{margin:-0.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:0.25rem!important}.mt-xl-1,.my-xl-1{margin-top:0.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem!important}.m-xl-2{margin:0.5rem!important}.mt-xl-2,.my-xl-2{margin-top:0.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:0.25rem!important}.pt-xl-1,.py-xl-1{padding-top:0.25rem!important}.pr-xl-1,.px-xl-1{padding-right:0.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem!important}.pl-xl-1,.px-xl-1{padding-left:0.25rem!important}.p-xl-2{padding:0.5rem!important}.pt-xl-2,.py-xl-2{padding-top:0.5rem!important}.pr-xl-2,.px-xl-2{padding-right:0.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem!important}.pl-xl-2,.px-xl-2{padding-left:0.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-0.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem!important}.m-xl-n2{margin:-0.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#ccda46!important}a.text-primary:focus,a.text-primary:hover{color:#a3b023!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#eb4d55!important}a.text-danger:focus,a.text-danger:hover{color:#d41821!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0, 0, 0, 0.5)!important}.text-white-50{color:rgba(255, 255, 255, 0.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/web-app/static/css/bootstrap.min.css.map b/web-app/static/css/bootstrap.min.css.map new file mode 100644 index 0000000..243a496 --- /dev/null +++ b/web-app/static/css/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../scss/bootstrap/bootstrap.scss","../scss/bootstrap/_root.scss","../scss/bootstrap/_reboot.scss","../scss/bootstrap/_variables.scss","../scss/bootstrap/vendor/_rfs.scss","../scss/bootstrap/bootstrap.css","../scss/bootstrap/mixins/_hover.scss","../scss/bootstrap/_type.scss","../scss/bootstrap/mixins/_lists.scss","../scss/bootstrap/_images.scss","../scss/bootstrap/mixins/_image.scss","../scss/bootstrap/mixins/_border-radius.scss","../scss/bootstrap/_code.scss","../scss/bootstrap/_grid.scss","../scss/bootstrap/mixins/_grid.scss","../scss/bootstrap/mixins/_breakpoints.scss","../scss/bootstrap/mixins/_grid-framework.scss","../scss/bootstrap/_tables.scss","../scss/bootstrap/mixins/_table-row.scss","../scss/bootstrap/_functions.scss","../scss/bootstrap/_forms.scss","../scss/bootstrap/mixins/_transition.scss","../scss/bootstrap/mixins/_forms.scss","../scss/bootstrap/mixins/_gradients.scss","../scss/bootstrap/_buttons.scss","../scss/bootstrap/mixins/_buttons.scss","../scss/bootstrap/_transitions.scss","../scss/bootstrap/_dropdown.scss","../scss/bootstrap/mixins/_caret.scss","../scss/bootstrap/mixins/_nav-divider.scss","../scss/bootstrap/_button-group.scss","../scss/bootstrap/_input-group.scss","../scss/bootstrap/_custom-forms.scss","../scss/bootstrap/_nav.scss","../scss/bootstrap/_navbar.scss","../scss/bootstrap/_card.scss","../scss/bootstrap/_breadcrumb.scss","../scss/bootstrap/_pagination.scss","../scss/bootstrap/mixins/_pagination.scss","../scss/bootstrap/_badge.scss","../scss/bootstrap/mixins/_badge.scss","../scss/bootstrap/_jumbotron.scss","../scss/bootstrap/_alert.scss","../scss/bootstrap/mixins/_alert.scss","../scss/bootstrap/_progress.scss","../scss/bootstrap/_media.scss","../scss/bootstrap/_list-group.scss","../scss/bootstrap/mixins/_list-group.scss","../scss/bootstrap/_close.scss","../scss/bootstrap/_toasts.scss","../scss/bootstrap/_modal.scss","../scss/bootstrap/_tooltip.scss","../scss/bootstrap/mixins/_reset-text.scss","../scss/bootstrap/_popover.scss","../scss/bootstrap/_carousel.scss","../scss/bootstrap/mixins/_clearfix.scss","../scss/bootstrap/_spinners.scss","../scss/bootstrap/utilities/_align.scss","../scss/bootstrap/mixins/_background-variant.scss","../scss/bootstrap/utilities/_background.scss","../scss/bootstrap/utilities/_borders.scss","../scss/bootstrap/utilities/_display.scss","../scss/bootstrap/utilities/_embed.scss","../scss/bootstrap/utilities/_flex.scss","../scss/bootstrap/utilities/_float.scss","../scss/bootstrap/utilities/_overflow.scss","../scss/bootstrap/utilities/_position.scss","../scss/bootstrap/utilities/_screenreaders.scss","../scss/bootstrap/mixins/_screen-reader.scss","../scss/bootstrap/utilities/_shadows.scss","../scss/bootstrap/utilities/_sizing.scss","../scss/bootstrap/utilities/_stretched-link.scss","../scss/bootstrap/utilities/_spacing.scss","../scss/bootstrap/utilities/_text.scss","../scss/bootstrap/mixins/_text-truncate.scss","../scss/bootstrap/mixins/_text-emphasis.scss","../scss/bootstrap/mixins/_text-hide.scss","../scss/bootstrap/utilities/_visibility.scss","../scss/bootstrap/_print.scss"],"names":[],"mappings":"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AAED,SACE,YAAa,CACd,AGrLD,SH0LE,sBAAwB,CACzB,AK5dD,0CAEE,qBJiSuC,AI/RvC,gBJiS+B,AIhS/B,eJiS+B,CI/RhC,AAED,OHgHM,gBAtCY,CG1E6B,AAC/C,OH+GM,cAtCY,CGzE6B,AAC/C,OH8GM,iBAtCY,CGxE6B,AAC/C,OH6GM,gBAtCY,CGvE6B,AAC/C,OH4GM,iBAtCY,CGtE6B,AAC/C,OH2GM,cAtCY,CGrE6B,AAE/C,MHyGM,kBAtCY,AGjEhB,eJmS+B,CIlShC,AAGD,WHmGM,eAtCY,AG3DhB,gBJsR+B,AIrR/B,eJ6Q+B,CI5QhC,AACD,WH8FM,iBAtCY,AGtDhB,gBJkR+B,AIjR/B,eJwQ+B,CIvQhC,AACD,WHyFM,iBAtCY,AGjDhB,gBJ8Q+B,AI7Q/B,eJmQ+B,CIlQhC,AACD,WHoFM,iBAtCY,AG5ChB,gBJ0Q+B,AIzQ/B,eJ8P+B,CI7PhC,ALwBD,GKhBE,gBJ0EW,AIzEX,mBJyEW,AIxEX,SAAS,AACT,uCJzCa,CI0Cd,AAOD,aHMI,cAAW,AGHb,eJsN+B,CIrNhC,AAED,WAEE,cJ8PgC,AI7PhC,wBJsQmC,CIrQpC,AAOD,eC/EE,eAAe,AACf,eAAgB,CDgFjB,AAGD,aCpFE,eAAe,AACf,eAAgB,CDqFjB,AACD,kBACE,oBAAqB,CAKtB,AAND,mCAII,mBJgP+B,CI/OhC,AASH,YHjCI,cAAW,AGmCb,wBAAyB,CAC1B,AAGD,YACE,mBJiBW,ACFP,iBAtCY,CGyBjB,AAED,mBACE,cAAc,AH7CZ,cAAW,AG+Cb,aJ1GgB,CI+GjB,AARD,0BAMI,oBAAqB,CACtB,AEpHH,WCIE,eAAe,AAGf,WAAY,CDLb,AAID,eACE,gBNg/BwC,AM/+BxC,sBNRa,AMSb,yBNNgB,AQLd,sBRqOgC,AO/NlC,eAAe,AAGf,WAAY,CDQb,AAMD,QAEE,oBAAqB,CACtB,AAED,YACE,qBAA0B,AAC1B,aAAc,CACf,AAED,gBLkCI,cAAW,AKhCb,aN3BgB,CM4BjB,AGxCD,KRuEI,gBAAW,AQrEb,cToCe,ASnCf,qBAAsB,CAMvB,AAHC,OACE,aAAc,CACf,AAIH,IACE,sBTkkCuC,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b7I,qIlBqb6I,AkBrb7I,0KlBqb6I,CqB9YlJ,AHlCG,uCGLJ,KHMM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CGiCrB,CAAA,AlBjCC,WkBQE,crBJc,AqBKd,oBAAqB,ClBTD,AkBNxB,sBAoBI,UAAU,AACV,yDrByCmB,AqBzCnB,gDrByCmB,CqBxCpB,AAtBH,4BA2BI,YrB8Y6B,CqB5Y9B,AAaH,uCAEE,mBAAoB,CACrB,AAQC,aCrDA,ctBUgB,AoBVd,yBpB8DmB,AsB5DrB,oBtB4DqB,CqBPpB,AlBjDD,mBmBAE,ctBIc,AoBVd,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,4CAEE,ctBdc,AsBed,yBtBqCmB,AsBpCnB,oBtBoCmB,CsB/BpB,AAED,uIAGE,ctB1Bc,AsB2Bd,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,eCrDA,WtBCa,AoBDX,yBpBOc,AsBLhB,oBtBKgB,CqBgDf,AlBjDD,qBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,0CAMI,yDAAiF,AAAjF,gDAAiF,CAEpF,AAGD,gDAEE,WtBvBW,AsBwBX,yBtBlBc,AsBmBd,oBtBnBc,CsBwBf,AAED,6IAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,+JAKI,yDAAiF,AAAjF,gDAAiF,CAEpF,ADGH,aCrDA,WtBCa,AoBDX,yBpBqCa,AsBnCf,oBtBmCe,CqBkBd,AlBjDD,mBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,uDAAiF,AAAjF,8CAAiF,CAEpF,AAGD,4CAEE,WtBvBW,AsBwBX,yBtBYa,AsBXb,oBtBWa,CsBNd,AAED,uIAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,uDAAiF,AAAjF,8CAAiF,CAEpF,ADGH,UCrDA,WtBCa,AoBDX,yBpBuCa,AsBrCf,oBtBqCe,CqBgBd,AlBjDD,gBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,gCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,sCAEE,WtBvBW,AsBwBX,yBtBca,AsBbb,oBtBaa,CsBRd,AAED,8HAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,gJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,aCrDA,ctBUgB,AoBVd,yBpBoCa,AsBlCf,oBtBkCe,CqBmBd,AlBjDD,mBmBAE,ctBIc,AoBVd,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,4CAEE,ctBdc,AsBed,yBtBWa,AsBVb,oBtBUa,CsBLd,AAED,uIAGE,ctB1Bc,AsB2Bd,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,YCrDA,WtBCa,AoBDX,yBpBkCa,AsBhCf,oBtBgCe,CqBqBd,AlBjDD,kBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,oCAMI,yDAAiF,AAAjF,gDAAiF,CAEpF,AAGD,0CAEE,WtBvBW,AsBwBX,yBtBSa,AsBRb,oBtBQa,CsBHd,AAED,oIAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,sJAKI,yDAAiF,AAAjF,gDAAiF,CAEpF,ADGH,WCrDA,ctBUgB,AoBVd,yBpBEc,AsBAhB,oBtBAgB,CqBqDf,AlBjDD,iBmBAE,ctBIc,AoBVd,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,kCAMI,yDAAiF,AAAjF,gDAAiF,CAEpF,AAGD,wCAEE,ctBdc,AsBed,yBtBvBc,AsBwBd,oBtBxBc,CsB6Bf,AAED,iIAGE,ctB1Bc,AsB2Bd,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,mJAKI,yDAAiF,AAAjF,gDAAiF,CAEpF,ADGH,UCrDA,WtBCa,AoBDX,yBpBSc,AsBPhB,oBtBOgB,CqB8Cf,AlBjDD,gBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,gCAMI,sDAAiF,AAAjF,6CAAiF,CAEpF,AAGD,sCAEE,WtBvBW,AsBwBX,yBtBhBc,AsBiBd,oBtBjBc,CsBsBf,AAED,8HAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,gJAKI,sDAAiF,AAAjF,6CAAiF,CAEpF,ADSH,qBCJA,ctBOqB,AsBNrB,oBtBMqB,CqBDpB,AlBvDD,2BmBqDE,ctBjDc,AsBkDd,yBtBEmB,AsBDnB,oBtBCmB,CGxDC,AmB0DtB,sDAEE,wDtBJmB,AsBInB,+CtBJmB,CsBKpB,AAED,4DAEE,ctBTmB,AsBUnB,4BAA6B,CAC9B,AAED,+JAGE,ctBpEc,AsBqEd,yBtBjBmB,AsBkBnB,oBtBlBmB,CsB4BpB,AARC,iLAKI,wDtBzBe,AsByBf,+CtBzBe,CsB2BlB,AD9BH,uBCJA,ctBhDgB,AsBiDhB,oBtBjDgB,CqBsDf,AlBvDD,6BmBqDE,WtB1DW,AsB2DX,yBtBrDc,AsBsDd,oBtBtDc,CGDM,AmB0DtB,0DAEE,yDtB3Dc,AsB2Dd,gDtB3Dc,CsB4Df,AAED,gEAEE,ctBhEc,AsBiEd,4BAA6B,CAC9B,AAED,qKAGE,WtB7EW,AsB8EX,yBtBxEc,AsByEd,oBtBzEc,CsBmFf,AARC,uLAKI,yDtBhFU,AsBgFV,gDtBhFU,CsBkFb,AD9BH,qBCJA,ctBlBe,AsBmBf,oBtBnBe,CqBwBd,AlBvDD,2BmBqDE,WtB1DW,AsB2DX,yBtBvBa,AsBwBb,oBtBxBa,CG/BO,AmB0DtB,sDAEE,uDtB7Ba,AsB6Bb,8CtB7Ba,CsB8Bd,AAED,4DAEE,ctBlCa,AsBmCb,4BAA6B,CAC9B,AAED,+JAGE,WtB7EW,AsB8EX,yBtB1Ca,AsB2Cb,oBtB3Ca,CsBqDd,AARC,iLAKI,uDtBlDS,AsBkDT,8CtBlDS,CsBoDZ,AD9BH,kBCJA,ctBhBe,AsBiBf,oBtBjBe,CqBsBd,AlBvDD,wBmBqDE,WtB1DW,AsB2DX,yBtBrBa,AsBsBb,oBtBtBa,CGjCO,AmB0DtB,gDAEE,wDtB3Ba,AsB2Bb,+CtB3Ba,CsB4Bd,AAED,sDAEE,ctBhCa,AsBiCb,4BAA6B,CAC9B,AAED,sJAGE,WtB7EW,AsB8EX,yBtBxCa,AsByCb,oBtBzCa,CsBmDd,AARC,wKAKI,wDtBhDS,AsBgDT,+CtBhDS,CsBkDZ,AD9BH,qBCJA,ctBnBe,AsBoBf,oBtBpBe,CqByBd,AlBvDD,2BmBqDE,ctBjDc,AsBkDd,yBtBxBa,AsByBb,oBtBzBa,CG9BO,AmB0DtB,sDAEE,uDtB9Ba,AsB8Bb,8CtB9Ba,CsB+Bd,AAED,4DAEE,ctBnCa,AsBoCb,4BAA6B,CAC9B,AAED,+JAGE,ctBpEc,AsBqEd,yBtB3Ca,AsB4Cb,oBtB5Ca,CsBsDd,AARC,iLAKI,uDtBnDS,AsBmDT,8CtBnDS,CsBqDZ,AD9BH,oBCJA,ctBrBe,AsBsBf,oBtBtBe,CqB2Bd,AlBvDD,0BmBqDE,WtB1DW,AsB2DX,yBtB1Ba,AsB2Bb,oBtB3Ba,CG5BO,AmB0DtB,oDAEE,uDtBhCa,AsBgCb,8CtBhCa,CsBiCd,AAED,0DAEE,ctBrCa,AsBsCb,4BAA6B,CAC9B,AAED,4JAGE,WtB7EW,AsB8EX,yBtB7Ca,AsB8Cb,oBtB9Ca,CsBwDd,AARC,8KAKI,uDtBrDS,AsBqDT,8CtBrDS,CsBuDZ,AD9BH,mBCJA,ctBrDgB,AsBsDhB,oBtBtDgB,CqB2Df,AlBvDD,yBmBqDE,ctBjDc,AsBkDd,yBtB1Dc,AsB2Dd,oBtB3Dc,CGIM,AmB0DtB,kDAEE,yDtBhEc,AsBgEd,gDtBhEc,CsBiEf,AAED,wDAEE,ctBrEc,AsBsEd,4BAA6B,CAC9B,AAED,yJAGE,ctBpEc,AsBqEd,yBtB7Ec,AsB8Ed,oBtB9Ec,CsBwFf,AARC,2KAKI,yDtBrFU,AsBqFV,gDtBrFU,CsBuFb,AD9BH,kBCJA,ctB9CgB,AsB+ChB,oBtB/CgB,CqBoDf,AlBvDD,wBmBqDE,WtB1DW,AsB2DX,yBtBnDc,AsBoDd,oBtBpDc,CGHM,AmB0DtB,gDAEE,sDtBzDc,AsByDd,6CtBzDc,CsB0Df,AAED,sDAEE,ctB9Dc,AsB+Dd,4BAA6B,CAC9B,AAED,sJAGE,WtB7EW,AsB8EX,yBtBtEc,AsBuEd,oBtBvEc,CsBiFf,AARC,wKAKI,sDtB9EU,AsB8EV,6CtB9EU,CsBgFb,ADnBL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FAwBM,wC7B9DiB,C6B+DlB,AAzBL,2FA2BM,wC7BjEiB,C6BkElB,AAQL,2CAGI,iB7B0Z+C,C6BzZhD,AAJH,wEAQM,sJb1GqI,Ca2GtI,AATL,kFAcM,wC7BxFiB,C6ByFlB,AASL,eACE,oBAA2D,CAmC5D,AApCD,4CAKM,cAAqD,AACrD,c7BkY+E,A6BjY/E,mBAAmB,AAEnB,oB7BgY4E,C6B/X7E,AAVL,2CAaM,wBAA0I,AAC1I,0BAA+G,AAC/G,uB7B2XiI,A6B1XjI,wB7B0XiI,A6BzXjI,yB7B3KY,A6B6KZ,qB7BsX4E,AkBziB5E,iKlB8f+H,AkB9f/H,yJlB8f+H,AkB9f/H,4IlB8f+H,AkB9f/H,yIlB8f+H,AkB9f/H,mNlB8f+H,C6BzUhI,AXhLD,uCW2JJ,2CX1JM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW+KjB,CAAA,AArBL,yEA0BM,sB7BzLS,A6B0LT,sCAA4E,AAA5E,kCAA4E,AAA5E,6BAA4E,CAC7E,AA5BL,mFAiCM,wC7BnIiB,C6BoIlB,AAWL,eACE,qBAAqB,AACrB,WAAW,AACX,mC7BwR2H,A6BvR3H,0C7BwKkC,AChQ9B,eAtCY,A4BiIhB,gB7BiE+B,A6BhE/B,gB7BqE+B,A6BpE/B,c7B9MgB,A6B+MhB,sBAAsB,AACtB,6M7BmWmI,A6BlWnI,sB7BxNa,A6ByNb,yB7BrNgB,AQNd,sBRqOgC,A6BPlC,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CAsCjB,AAtDD,qBAmBI,qB7B0PsE,A6BzPtE,UAAU,AAIR,yD7BvKiB,A6BuKjB,gD7BvKiB,C6BmLpB,AApCH,gCAiCM,c7BtOY,A6BuOZ,qB7B9OS,C6B+OV,AAnCL,8DAwCI,YAAY,AACZ,sB7BmIgC,A6BlIhC,qBAAsB,CACvB,AA3CH,wBA8CI,c7BpPc,A6BqPd,wB7BzPc,C6B0Pf,AAhDH,2BAoDI,YAAa,CACd,AAGH,kBACE,kC7BmOqI,A6BlOrI,oB7B2HkC,A6B1HlC,uB7B0HkC,A6BzHlC,oB7B0HiC,AC1Q7B,kBAtCY,C4BwLjB,AAED,kBACE,gC7B4NqI,A6B3NrI,mB7BwHiC,A6BvHjC,sB7BuHiC,A6BtHjC,kB7BuHgC,AC/Q5B,iBAtCY,C4BgMjB,AAOD,aACE,kBAAkB,AAClB,qBAAqB,AACrB,WAAW,AACX,mC7B0M2H,A6BzM3H,eAAgB,CACjB,AAED,mBACE,kBAAkB,AAClB,UAAU,AACV,WAAW,AACX,mC7BkM2H,A6BjM3H,SAAS,AACT,SAAU,CAoBX,AA1BD,4CASI,qB7B+KsE,A6B9KtE,yD7B9OmB,A6B8OnB,gD7B9OmB,C6B+OpB,AAXH,+CAcI,wB7B7Sc,C6B8Sf,AAfH,qDAmBM,gB7BqUQ,C6BpUT,AApBL,yDAwBI,yBAA0B,CAC3B,AAGH,mBACE,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,OAAO,AACP,UAAU,AACV,mC7BoK2H,A6BnK3H,yB7BoDkC,A6BlDlC,gB7BlD+B,A6BmD/B,gB7B9C+B,A6B+C/B,c7BjUgB,A6BkUhB,sB7BzUa,A6B0Ub,yB7BtUgB,AQNd,qBRqOgC,C6B2HnC,AAjCD,yBAkBI,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,SAAS,AACT,UAAU,AACV,cAAc,AACd,6B7B8I+F,A6B7I/F,yB7BkCgC,A6BjChC,gB7B9D6B,A6B+D7B,c7BjVc,A6BkVd,iBAAiB,AT1VjB,yBpBGc,A6ByVd,oBAAoB,ArB7VpB,iCqB8VgF,CACjF,AASH,cACE,WAAW,AACX,2BAA+F,AAC/F,UAAU,AACV,6BAA6B,AAC7B,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CAkIjB,AAvID,oBAQI,YAAa,CAOd,AAfH,0CAY8B,yE7BrTP,A6BqTO,gE7BrTP,C6BqT2D,AAZlF,sCAa8B,gE7BtTP,C6BsT2D,AAblF,+BAc8B,gE7BvTP,C6BuT2D,AAdlF,gCAkBI,QAAS,CACV,AAnBH,oCAsBI,W7B8N6C,A6B7N7C,Y7B6N6C,A6B5N7C,oBAAyE,AT/XzE,yBpB8DmB,A6BmUnB,S7B6N0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6BzHjI,wBAAgB,AAAhB,eAAgB,CAKjB,AXrYC,uCWkWJ,oCXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CWoYnB,CAAA,AAnCH,2CTvWI,wBpBmmB2E,C6B1N1E,AAlCL,6CAsCI,W7BuMoC,A6BtMpC,c7BuMqC,A6BtMrC,kBAAkB,AAClB,e7BsMuC,A6BrMvC,yB7B7Yc,A6B8Yd,yBAAyB,ArBnZzB,kBRylBoC,C6BnMrC,AA9CH,gCAiDI,W7BmM6C,A6BlM7C,Y7BkM6C,AoB3lB7C,yBpB8DmB,A6B6VnB,S7BmM0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6B/FjI,qBAAgB,AAAhB,eAAgB,CAKjB,AX/ZC,uCWkWJ,gCXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW8ZnB,CAAA,AA7DH,uCTvWI,wBpBmmB2E,C6BhM1E,AA5DL,gCAgEI,W7B6KoC,A6B5KpC,c7B6KqC,A6B5KrC,kBAAkB,AAClB,e7B4KuC,A6B3KvC,yB7Bvac,A6Bwad,yBAAyB,ArB7azB,kBRylBoC,C6BzKrC,AAxEH,yBA2EI,W7ByK6C,A6BxK7C,Y7BwK6C,A6BvK7C,aAAa,AACb,oB7BvD+B,A6BwD/B,mB7BxD+B,AoB9X/B,yBpB8DmB,A6B0XnB,S7BsK0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6BlEjI,eAAgB,CAKjB,AX5bC,uCWkWJ,yBXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW2bnB,CAAA,AA1FH,gCTvWI,wBpBmmB2E,C6BnK1E,AAzFL,yBA6FI,W7BgJoC,A6B/IpC,c7BgJqC,A6B/IrC,kBAAkB,AAClB,e7B+IuC,A6B9IvC,6BAA6B,AAC7B,yBAAyB,AACzB,mBAA4C,CAE7C,AArGH,8BAwGI,yB7B3cc,AQLd,kBRylBoC,C6BvIrC,AA1GH,8BA6GI,kBAAkB,AAClB,yB7Bjdc,AQLd,kBRylBoC,C6BjIrC,AAhHH,6CAoHM,wB7BrdY,C6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,AAZP,+BAgBM,gBAAgB,AxBxPlB,6BwByPiC,AxBxPjC,2BwBwPiC,CAChC,AAlBL,8BxBtPI,yBwB2Q8B,AxB1Q9B,yBwB0Q8B,CAC7B,AAtBL,8BAyBM,kBhCtD2B,CgCuD5B,AC9RL,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,qBjC4gCsC,AiC3gCtC,mBjC8gCsC,AiC7gCtC,gBAAgB,AAChB,yBjCGgB,AQJd,qBRqOgC,CiClOnC,AAED,kCAGI,mBjCmgCqC,CiC3/BtC,AAXH,yCAMM,qBAAqB,AACrB,qBjC+/BmC,AiC9/BnC,cjCLY,AiCMZ,WjCogCuC,CiCngCxC,AAVL,+CAoBI,yBAA0B,CAC3B,AArBH,+CAwBI,oBAAqB,CACtB,AAzBH,wBA4BI,ajCzBc,CiC0Bf,ACvCH,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,A7BGb,eAAe,AACf,gBAAgB,AGAd,qBRqOgC,CkCtOnC,AAED,WACE,kBAAkB,AAClB,cAAc,AACd,uBlCqwBwC,AkCpwBxC,iBlC6N+B,AkC5N/B,iBlCwwBsC,AkCvwBtC,clCwDqB,AkCvDrB,sBlCNa,AkCOb,wBlCJgB,CkCmBjB,AAvBD,iBAWI,UAAU,AACV,clC2J8D,AkC1J9D,qBAAqB,AACrB,yBlCXc,AkCYd,oBlCXc,CkCYf,AAhBH,iBAmBI,UAAU,AACV,UlCiwBiC,AkChwBjC,yDlCyCmB,AkCzCnB,gDlCyCmB,CkCxCpB,AAGH,kCAGM,cAAc,A1BChB,+BRuMgC,AQtMhC,iCRsMgC,CkCtM/B,AALL,iC1BVI,gCRqNgC,AQpNhC,kCRoNgC,CkCjM/B,AAVL,6BAcI,UAAU,AACV,WlCvCW,AkCwCX,yBlCqBmB,AkCpBnB,oBlCoBmB,CkCnBpB,AAlBH,+BAqBI,clCvCc,AkCwCd,oBAAoB,AAEpB,YAAY,AACZ,sBlCjDW,AkCkDX,oBlC/Cc,CkCgDf,ACvDD,0BACE,uBnC8wBsC,ACnpBpC,kBAtCY,AkCnFd,enC8N6B,CmC7N9B,AAIG,iD3BwBF,8BRwM+B,AQvM/B,gCRuM+B,CmC9N5B,AAGD,gD3BKF,+BRsN+B,AQrN/B,iCRqN+B,CmCzN5B,AAfL,0BACE,uBnC4wBqC,ACjpBnC,mBAtCY,AkCnFd,enC+N6B,CmC9N9B,AAIG,iD3BwBF,8BRyM+B,AQxM/B,gCRwM+B,CmC/N5B,AAGD,gD3BKF,+BRuN+B,AQtN/B,iCRsN+B,CmC1N5B,ACbP,OACE,qBAAqB,AACrB,qBpC24BsC,AC10BpC,cAAW,AmC/Db,gBpCmR+B,AoClR/B,cAAc,AACd,kBAAkB,AAClB,mBAAmB,AACnB,wBAAwB,A5BRtB,sBRqOgC,AkBpO9B,qJlBqb6I,AkBrb7I,6IlBqb6I,AkBrb7I,wIlBqb6I,AkBrb7I,qIlBqb6I,AkBrb7I,0KlBqb6I,CoChalJ,AlBhBG,uCkBNJ,OlBOM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CkBerB,CAAA,AjCXC,4BiCGI,oBAAqB,CjCAxB,AiCdH,aAoBI,YAAa,CACd,AAIH,YACE,kBAAkB,AAClB,QAAS,CACV,AAMD,YACE,oBpCg3BsC,AoC/2BtC,mBpC+2BsC,AQn5BpC,mBRs5BqC,CoCh3BxC,AAOC,eCjDA,crCegB,AqCdhB,wBrCkEqB,CoChBpB,AjCpCD,4CkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,wDrCuDiB,AqCvDjB,+CrCuDiB,CqCtDlB,ADoCH,iBCjDA,WrCMa,AqCLb,wBrCWgB,CoCuCf,AjCpCD,gDkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,gDAQJ,UAAU,AACV,yDrCAY,AqCAZ,gDrCAY,CqCCb,ADoCH,eCjDA,WrCMa,AqCLb,wBrCyCe,CoCSd,AjCpCD,4CkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,uDrC8BW,AqC9BX,8CrC8BW,CqC7BZ,ADoCH,YCjDA,WrCMa,AqCLb,wBrC2Ce,CoCOd,AjCpCD,sCkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,sCAQJ,UAAU,AACV,wDrCgCW,AqChCX,+CrCgCW,CqC/BZ,ADoCH,eCjDA,crCegB,AqCdhB,wBrCwCe,CoCUd,AjCpCD,4CkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,uDrC6BW,AqC7BX,8CrC6BW,CqC5BZ,ADoCH,cCjDA,WrCMa,AqCLb,wBrCsCe,CoCYd,AjCpCD,0CkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,0CAQJ,UAAU,AACV,uDrC2BW,AqC3BX,8CrC2BW,CqC1BZ,ADoCH,aCjDA,crCegB,AqCdhB,wBrCMgB,CoC4Cf,AjCpCD,wCkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,wCAQJ,UAAU,AACV,yDrCLY,AqCKZ,gDrCLY,CqCMb,ADoCH,YCjDA,WrCMa,AqCLb,wBrCagB,CoCqCf,AjCpCD,sCkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,sCAQJ,UAAU,AACV,sDrCEY,AqCFZ,6CrCEY,CqCDb,ACdL,WACE,kBAAoD,AACpD,mBtC0yBsC,AsCxyBtC,yBtCKgB,AQJd,oBRsO+B,CsCjOlC,A1BkDG,yB0B5DJ,WAQI,iBtCoyBoC,CsClyBvC,CAAA,AAED,iBACE,gBAAgB,AAChB,eAAe,A9BTb,e8BUsB,CACzB,ACZD,OACE,kBAAkB,AAClB,wBvCo8ByC,AuCn8BzC,mBvCo8BsC,AuCn8BtC,6BAA6C,A/BH3C,qBRqOgC,CuChOnC,AAGD,eAEE,aAAc,CACf,AAGD,YACE,evCwQ+B,CuCvQhC,AAOD,mBACE,kBAAsD,CAUvD,AAXD,0BAKI,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,wBvCs6BuC,AuCr6BvC,aAAc,CACf,AASD,eC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,kBACE,wBAAqC,CACtC,AAED,2BACE,aAA0B,CAC3B,ADoCD,iBC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,oBACE,wBAAqC,CACtC,AAED,6BACE,aAA0B,CAC3B,ADoCD,eC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,kBACE,wBAAqC,CACtC,AAED,2BACE,aAA0B,CAC3B,ADoCD,YC9CA,cxBmFgE,AI9E9D,yBJ8E8D,A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AA,A/B3CL,yB+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,A/B3CL,yB+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,A/B3CL,0B+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,AAYT,mCAEI,eAAe,AACf,cAAc,AnCjHd,emCkHwB,CAKzB,AATH,8CAOM,kB3C6G2B,C2C5G5B,AARL,2DAaM,YAAa,CACd,AAdL,yDAmBM,gBAAgB,AAChB,eAAgB,CACjB,ACrIH,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,2BACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,gHyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,yDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,sBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,sGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,oDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,wBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,0GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,sDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,uBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,wGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,qDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,sBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,sGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,oDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,ACjBP,OACE,YAAY,A5C8HR,iBAtCY,A4CtFhB,gB7CyR+B,A6CxR/B,cAAc,AACd,W7CYa,A6CXb,yB7CCa,A6CAb,UAAW,CAaZ,A1CRC,a0CDE,W7CMW,A6CLX,oBAAqB,C1CAD,AAItB,sF0CCI,WAAY,C1CEf,A0CSH,aACE,UAAU,AACV,6BAA6B,AAC7B,SAAS,AACT,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CACjB,AAKD,iBACE,mBAAoB,CACrB,ACxCD,OACE,gB9C43BuC,A8C33BvC,gBAAgB,A7C6HZ,mBAtCY,A6CpFhB,2C9CEa,A8CDb,4BAA4B,AAC5B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"} \ No newline at end of file diff --git a/web-app/static/css/bootstrap/bootstrap.css b/web-app/static/css/bootstrap/bootstrap.css new file mode 100644 index 0000000..81b5940 --- /dev/null +++ b/web-app/static/css/bootstrap/bootstrap.css @@ -0,0 +1,8149 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #eb4d55; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #eb4d55; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #eb4d55; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +*, +*::before, +*::after { + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; } + +body { + margin: 0; + font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; } + +[tabindex="-1"]:focus { + outline: 0 !important; } + +hr { + -webkit-box-sizing: content-box; + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #eb4d55; + text-decoration: none; + background-color: transparent; } + a:hover { + color: #d41821; + text-decoration: underline; } + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):focus { + outline: 0; } + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg { + overflow: hidden; + vertical-align: middle; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; } + +label { + display: inline-block; + margin-bottom: 0.5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible; } + +button, +select { + text-transform: none; } + +select { + word-wrap: normal; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; } + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 0; } + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; } + +h1, .h1 { + font-size: 2.5rem; } + +h2, .h2 { + font-size: 2rem; } + +h3, .h3 { + font-size: 1.75rem; } + +h4, .h4 { + font-size: 1.5rem; } + +h5, .h5 { + font-size: 1.25rem; } + +h6, .h6 { + font-size: 1rem; } + +.lead { + font-size: 1.25rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + +small, +.small { + font-size: 80%; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; } + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #6c757d; } + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 87.5%; + color: #212529; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; } + @media (min-width: 576px) { + .container { + max-width: 540px; } } + @media (min-width: 768px) { + .container { + max-width: 720px; } } + @media (min-width: 992px) { + .container { + max-width: 960px; } } + @media (min-width: 1200px) { + .container { + max-width: 1140px; } } + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; } + +.row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; } + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + +.order-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + +.order-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-sm-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-sm-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-md-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-md-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-lg-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-lg-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-xl-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-xl-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; } + .table th, + .table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; } + .table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; } + .table tbody + tbody { + border-top: 2px solid #dee2e6; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #dee2e6; } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; } + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); } + +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #f9cdcf; } + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #f5a2a7; } + +.table-hover .table-primary:hover { + background-color: #f6b6b9; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #f6b6b9; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; } + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; } + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #c8cbcf; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; } + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; } + +.table-hover .table-success:hover { + background-color: #b1dfbb; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #b1dfbb; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; } + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; } + +.table-hover .table-info:hover { + background-color: #abdde5; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #abdde5; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; } + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; } + +.table-hover .table-warning:hover { + background-color: #ffe8a1; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #ffe8a1; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f9cdcf; } + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #f5a2a7; } + +.table-hover .table-danger:hover { + background-color: #f6b6b9; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #f6b6b9; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; } + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; } + +.table-hover .table-light:hover { + background-color: #ececf6; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #ececf6; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; } + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; } + +.table-hover .table-dark:hover { + background-color: #b9bbbe; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #b9bbbe; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); } + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); } + .table-hover .table-active:hover > td, + .table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); } + +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; } + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; } + +.table-dark { + color: #fff; + background-color: #343a40; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #454d55; } + .table-dark.table-bordered { + border: 0; } + .table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); } + .table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .form-control::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #f8c0c2; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; } + .form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; } + .form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; } + .form-control::placeholder { + color: #6c757d; + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; } + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; } + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; } + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; } + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; } + +select.form-control[size], select.form-control[multiple] { + height: auto; } + +textarea.form-control { + height: auto; } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; } + .form-check-input:disabled ~ .form-check-label { + color: #6c757d; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; } + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .was-validated .form-control:valid ~ .valid-feedback, + .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, + .form-control.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .was-validated .custom-select:valid ~ .valid-feedback, + .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, + .custom-select.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; } + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; } + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; } + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #eb4d55; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(235, 77, 85, 0.9); + border-radius: 0.25rem; } + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #eb4d55; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23eb4d55' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23eb4d55' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #eb4d55; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .was-validated .form-control:invalid ~ .invalid-feedback, + .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, + .form-control.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #eb4d55; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23eb4d55' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23eb4d55' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #eb4d55; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .was-validated .custom-select:invalid ~ .invalid-feedback, + .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, + .custom-select.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #eb4d55; } + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #eb4d55; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #eb4d55; } + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #f07b81; + background-color: #f07b81; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #eb4d55; } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #eb4d55; } + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #eb4d55; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + +.form-inline { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; } + .form-inline .form-check { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + -ms-flex-negative: 0; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .btn:hover { + color: #212529; + text-decoration: none; } + .btn:focus, .btn.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .btn.disabled, .btn:disabled { + opacity: 0.65; } + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; } + +.btn-primary { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-primary:hover { + color: #fff; + background-color: #e72b34; + border-color: #e61f29; } + .btn-primary:focus, .btn-primary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); + box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #e61f29; + border-color: #df1923; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); + box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); } + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; } + .btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; } + .btn-secondary:focus, .btn-secondary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; } + .btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; } + .btn-success:focus, .btn-success.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; } + .btn-info:focus, .btn-info.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; } + .btn-warning:focus, .btn-warning.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } + +.btn-danger { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-danger:hover { + color: #fff; + background-color: #e72b34; + border-color: #e61f29; } + .btn-danger:focus, .btn-danger.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); + box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #e61f29; + border-color: #df1923; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); + box-shadow: 0 0 0 0.2rem rgba(238, 104, 111, 0.5); } + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; } + .btn-light:focus, .btn-light.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; } + .btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; } + .btn-dark:focus, .btn-dark.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } + +.btn-outline-primary { + color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-primary:hover { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-primary:focus, .btn-outline-primary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + .btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #eb4d55; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; } + .btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } + +.btn-outline-success { + color: #28a745; + border-color: #28a745; } + .btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; } + .btn-outline-success:focus, .btn-outline-success.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:focus, .btn-outline-info.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.btn-outline-danger { + color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-danger:hover { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #eb4d55; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; } + .btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-outline-light:focus, .btn-outline-light.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + +.btn-outline-dark { + color: #343a40; + border-color: #343a40; } + .btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } + +.btn-link { + font-weight: 400; + color: #eb4d55; + text-decoration: none; } + .btn-link:hover { + color: #d41821; + text-decoration: underline; } + .btn-link:focus, .btn-link.focus { + text-decoration: underline; + -webkit-box-shadow: none; + box-shadow: none; } + .btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; } + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } + @media (prefers-reduced-motion: reduce) { + .fade { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; } + +.dropdown-menu-left { + right: auto; + left: 0; } + +.dropdown-menu-right { + right: 0; + left: auto; } + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; } + .dropdown-menu-sm-right { + right: 0; + left: auto; } } + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; } + .dropdown-menu-md-right { + right: 0; + left: auto; } } + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; } + .dropdown-menu-lg-right { + right: 0; + left: auto; } } + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; } + .dropdown-menu-xl-right { + right: 0; + left: auto; } } + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropleft .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #eb4d55; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; } + .btn-group > .btn:hover, + .btn-group-vertical > .btn:hover { + z-index: 1; } + .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; } + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropright .dropdown-toggle-split::after { + margin-left: 0; } + .dropleft .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; } + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .btn-group-vertical > .btn, + .btn-group-vertical > .btn-group { + width: 100%; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; } + .btn-group-toggle > .btn input[type="radio"], + .btn-group-toggle > .btn input[type="checkbox"], + .btn-group-toggle > .btn-group > .btn input[type="radio"], + .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; } + .input-group > .form-control, + .input-group > .form-control-plaintext, + .input-group > .custom-select, + .input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; } + .input-group > .form-control + .form-control, + .input-group > .form-control + .custom-select, + .input-group > .form-control + .custom-file, + .input-group > .form-control-plaintext + .form-control, + .input-group > .form-control-plaintext + .custom-select, + .input-group > .form-control-plaintext + .custom-file, + .input-group > .custom-select + .form-control, + .input-group > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, + .input-group > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .form-control:focus, + .input-group > .custom-select:focus, + .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; } + .input-group > .custom-file .custom-file-input:focus { + z-index: 4; } + .input-group > .form-control:not(:last-child), + .input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-control:not(:first-child), + .input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .input-group > .custom-file { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .input-group > .custom-file:not(:last-child) .custom-file-label, + .input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .input-group-prepend .btn, + .input-group-append .btn { + position: relative; + z-index: 2; } + .input-group-prepend .btn:focus, + .input-group-append .btn:focus { + z-index: 3; } + .input-group-prepend .btn + .btn, + .input-group-prepend .btn + .input-group-text, + .input-group-prepend .input-group-text + .input-group-text, + .input-group-prepend .input-group-text + .btn, + .input-group-append .btn + .btn, + .input-group-append .btn + .input-group-text, + .input-group-append .input-group-text + .input-group-text, + .input-group-append .input-group-text + .btn { + margin-left: -1px; } + +.input-group-prepend { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); } + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; } + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); } + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; } + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; } + +.custom-control-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #eb4d55; + background-color: #eb4d55; } + .custom-control-input:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #f8c0c2; } + .custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #fdedee; + border-color: #fdedee; } + .custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; } + .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; } + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; } + .custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; } + .custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; } + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #eb4d55; + background-color: #eb4d55; } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(235, 77, 85, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(235, 77, 85, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(235, 77, 85, 0.5); } + +.custom-switch { + padding-left: 2.25rem; } + .custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; } + .custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + -ms-transform: translateX(0.75rem); + transform: translateX(0.75rem); } + .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(235, 77, 85, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-select:focus { + border-color: #f8c0c2; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; } + .custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; } + .custom-select::-ms-expand { + display: none; } + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; } + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-label { + border-color: #f8c0c2; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + .custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; } + +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-range:focus { + outline: none; } + .custom-range:focus::-webkit-slider-thumb { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + .custom-range::-moz-focus-outer { + border: 0; } + .custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #eb4d55; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .custom-range::-webkit-slider-thumb:active { + background-color: #fdedee; } + .custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #eb4d55; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .custom-range::-moz-range-thumb:active { + background-color: #fdedee; } + .custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #eb4d55; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .custom-range::-ms-thumb:active { + background-color: #fdedee; } + .custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; } + .custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; } + .custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; } + .custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; } + .custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-moz-range-track { + cursor: default; } + .custom-range:disabled::-ms-thumb { + background-color: #adb5bd; } + +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; } + +.nav-tabs { + border-bottom: 1px solid #dee2e6; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; } + .nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + border-radius: 0.25rem; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #eb4d55; } + +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; } + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; } + .navbar > .container, + .navbar > .container-fluid { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; } + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } } + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } } + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } } + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } + +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); } + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; } + +.card-title { + margin-bottom: 0.75rem; } + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.25rem; } + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); } + .card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } + .card-header + .list-group .list-group-item:first-child { + border-top: 0; } + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); } + .card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; } + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); } + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } + +.card-deck { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .card-deck .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; } + .card-deck .card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; } } + +.card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .card-group > .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.card-columns .card { + margin-bottom: 0.75rem; } + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.accordion > .card { + overflow: hidden; } + .accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; } + .accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; } + .accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; } + .accordion > .card .card-header { + margin-bottom: -1px; } + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; } + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + +.breadcrumb-item.active { + color: #6c757d; } + +.pagination { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; } + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #eb4d55; + background-color: #fff; + border: 1px solid #dee2e6; } + .page-link:hover { + z-index: 2; + color: #d41821; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; } + .page-link:focus { + z-index: 2; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.25); } + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; } + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; } + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; } + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; } + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .badge { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + a.badge:hover, a.badge:focus { + text-decoration: none; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; } + +.badge-primary { + color: #fff; + background-color: #eb4d55; } + a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #e61f29; } + a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + +.badge-secondary { + color: #fff; + background-color: #6c757d; } + a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; } + a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } + +.badge-success { + color: #fff; + background-color: #28a745; } + a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; } + a.badge-success:focus, a.badge-success.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } + +.badge-info { + color: #fff; + background-color: #17a2b8; } + a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; } + a.badge-info:focus, a.badge-info.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + +.badge-warning { + color: #212529; + background-color: #ffc107; } + a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; } + a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.badge-danger { + color: #fff; + background-color: #eb4d55; } + a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #e61f29; } + a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); + box-shadow: 0 0 0 0.2rem rgba(235, 77, 85, 0.5); } + +.badge-light { + color: #212529; + background-color: #f8f9fa; } + a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; } + a.badge-light:focus, a.badge-light.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + +.badge-dark { + color: #fff; + background-color: #343a40; } + a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; } + a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; } + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 4rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; } + +.alert-primary { + color: #7a282c; + background-color: #fbdbdd; + border-color: #f9cdcf; } + .alert-primary hr { + border-top-color: #f6b6b9; } + .alert-primary .alert-link { + color: #541b1e; } + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; } + .alert-secondary hr { + border-top-color: #c8cbcf; } + .alert-secondary .alert-link { + color: #202326; } + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; } + .alert-success hr { + border-top-color: #b1dfbb; } + .alert-success .alert-link { + color: #0b2e13; } + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; } + .alert-info hr { + border-top-color: #abdde5; } + .alert-info .alert-link { + color: #062c33; } + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; } + .alert-warning hr { + border-top-color: #ffe8a1; } + .alert-warning .alert-link { + color: #533f03; } + +.alert-danger { + color: #7a282c; + background-color: #fbdbdd; + border-color: #f9cdcf; } + .alert-danger hr { + border-top-color: #f6b6b9; } + .alert-danger .alert-link { + color: #541b1e; } + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; } + .alert-light hr { + border-top-color: #ececf6; } + .alert-light .alert-link { + color: #686868; } + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; } + .alert-dark hr { + border-top-color: #b9bbbe; } + .alert-dark .alert-link { + color: #040505; } + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +.progress { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; } + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #eb4d55; + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; } } + +.media { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; } + +.media-body { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; } + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; } + .list-group-item-action:active { + color: #212529; + background-color: #e9ecef; } + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); } + .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + .list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #eb4d55; + border-color: #eb4d55; } + +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; } + .list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + +@media (min-width: 576px) { + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; } + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 768px) { + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; } + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 992px) { + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; } + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; } + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; } } + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; } + .list-group-flush .list-group-item:last-child { + margin-bottom: -1px; } + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; } + +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; } + +.list-group-item-primary { + color: #7a282c; + background-color: #f9cdcf; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #7a282c; + background-color: #f6b6b9; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #7a282c; + border-color: #7a282c; } + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; } + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; } + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; } + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; } + +.list-group-item-danger { + color: #7a282c; + background-color: #f9cdcf; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #7a282c; + background-color: #f6b6b9; } + .list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #7a282c; + border-color: #7a282c; } + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; } + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; } + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:hover { + color: #000; + text-decoration: none; } + .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + +a.close.disabled { + pointer-events: none; } + +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; } + .toast:not(:last-child) { + margin-bottom: 0.75rem; } + .toast.showing { + opacity: 1; } + .toast.show { + display: block; + opacity: 1; } + .toast.hide { + display: none; } + +.toast-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); } + +.toast-body { + padding: 0.75rem; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + -o-transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + -ms-transform: translate(0, -50px); + transform: translate(0, -50px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .modal.show .modal-dialog { + -webkit-transform: none; + -ms-transform: none; + transform: none; } + .modal.fade2 .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + -o-transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, 0px); + -ms-transform: translate(0, 0px); + transform: translate(0, 0px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade2 .modal-dialog { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.modal-dialog-scrollable { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + max-height: calc(100% - 1rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; } + .modal-dialog-scrollable .modal-header, + .modal-dialog-scrollable .modal-footer { + -ms-flex-negative: 0; + flex-shrink: 0; } + .modal-dialog-scrollable .modal-body { + overflow-y: auto; } + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - 1rem); } + .modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; } + .modal-dialog-centered.modal-dialog-scrollable { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + height: 100%; } + .modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; } + .modal-dialog-centered.modal-dialog-scrollable::before { + content: none; } + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.fade2 { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.2; } + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; } + .modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; } + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } + .modal-footer > :not(:first-child) { + margin-left: .25rem; } + .modal-footer > :not(:last-child) { + margin-right: .25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; } + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; } } + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; } + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; } + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); } + .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); } + .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); } + .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); } + .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); } + .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; } + .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); } + .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; } + +.carousel { + position: relative; } + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + .carousel-inner::after { + display: block; + clear: both; + content: ""; } + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + -o-transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + -ms-transform: translateX(-100%); + transform: translateX(-100%); } + +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + -o-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + -ms-transform: none; + transform: none; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; } + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + -webkit-transition: 0s 0.6s opacity; + -o-transition: 0s 0.6s opacity; + transition: 0s 0.6s opacity; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + -webkit-transition: opacity 0.15s ease; + -o-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; } + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + -webkit-box-sizing: content-box; + box-sizing: content-box; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + -webkit-transition: opacity 0.6s ease; + -o-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .carousel-indicators .active { + opacity: 1; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + opacity: 1; } } + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + opacity: 1; } } + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary { + background-color: #eb4d55 !important; } + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #e61f29 !important; } + +.bg-secondary { + background-color: #6c757d !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; } + +.bg-success { + background-color: #28a745 !important; } + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; } + +.bg-info { + background-color: #17a2b8 !important; } + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; } + +.bg-warning { + background-color: #ffc107 !important; } + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; } + +.bg-danger { + background-color: #eb4d55 !important; } + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #e61f29 !important; } + +.bg-light { + background-color: #f8f9fa !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; } + +.bg-dark { + background-color: #343a40 !important; } + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border { + border: 1px solid #dee2e6 !important; } + +.border-top { + border-top: 1px solid #dee2e6 !important; } + +.border-right { + border-right: 1px solid #dee2e6 !important; } + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; } + +.border-left { + border-left: 1px solid #dee2e6 !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #eb4d55 !important; } + +.border-secondary { + border-color: #6c757d !important; } + +.border-success { + border-color: #28a745 !important; } + +.border-info { + border-color: #17a2b8 !important; } + +.border-warning { + border-color: #ffc107 !important; } + +.border-danger { + border-color: #eb4d55 !important; } + +.border-light { + border-color: #f8f9fa !important; } + +.border-dark { + border-color: #343a40 !important; } + +.border-white { + border-color: #fff !important; } + +.rounded-sm { + border-radius: 0.2rem !important; } + +.rounded { + border-radius: 0.25rem !important; } + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-lg { + border-radius: 0.3rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + +.d-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + +.flex-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + +.flex-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + +.flex-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + +.align-items-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + +.align-self-auto { + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; } + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + +.align-self-center { + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-sm-center { + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-md-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-md-center { + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-lg-center { + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-xl-center { + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.overflow-auto { + overflow: auto !important; } + +.overflow-hidden { + overflow: hidden !important; } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; } + +.shadow-sm { + -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow { + -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-lg { + -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + +.shadow-none { + -webkit-box-shadow: none !important; + box-shadow: none !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.min-vw-100 { + min-width: 100vw !important; } + +.min-vh-100 { + min-height: 100vh !important; } + +.vw-100 { + width: 100vw !important; } + +.vh-100 { + height: 100vh !important; } + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); } + +.m-0 { + margin: 0 !important; } + +.mt-0, +.my-0 { + margin-top: 0 !important; } + +.mr-0, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; } + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; } + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; } + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; } + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.mt-3, +.my-3 { + margin-top: 1rem !important; } + +.mr-3, +.mx-3 { + margin-right: 1rem !important; } + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; } + +.ml-3, +.mx-3 { + margin-left: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; } + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.mt-5, +.my-5 { + margin-top: 3rem !important; } + +.mr-5, +.mx-5 { + margin-right: 3rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; } + +.ml-5, +.mx-5 { + margin-left: 3rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; } + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; } + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; } + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; } + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.pt-3, +.py-3 { + padding-top: 1rem !important; } + +.pr-3, +.px-3 { + padding-right: 1rem !important; } + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; } + +.pl-3, +.px-3 { + padding-left: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.pt-5, +.py-5 { + padding-top: 3rem !important; } + +.pr-5, +.px-5 { + padding-right: 3rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; } + +.pl-5, +.px-5 { + padding-left: 3rem !important; } + +.m-n1 { + margin: -0.25rem !important; } + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; } + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; } + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; } + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; } + +.m-n2 { + margin: -0.5rem !important; } + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; } + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; } + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; } + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; } + +.m-n3 { + margin: -1rem !important; } + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; } + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; } + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; } + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; } + +.m-n4 { + margin: -1.5rem !important; } + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; } + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; } + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; } + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; } + +.m-n5 { + margin: -3rem !important; } + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; } + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; } + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; } + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 0.25rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; } + .m-sm-2 { + margin: 0.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; } + .m-sm-3 { + margin: 1rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; } + .m-sm-4 { + margin: 1.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; } + .m-sm-5 { + margin: 3rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 0.25rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; } + .p-sm-2 { + padding: 0.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; } + .p-sm-3 { + padding: 1rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; } + .p-sm-4 { + padding: 1.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; } + .p-sm-5 { + padding: 3rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; } + .m-sm-n1 { + margin: -0.25rem !important; } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; } + .m-sm-n2 { + margin: -0.5rem !important; } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; } + .m-sm-n3 { + margin: -1rem !important; } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; } + .m-sm-n4 { + margin: -1.5rem !important; } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; } + .m-sm-n5 { + margin: -3rem !important; } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 0.25rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; } + .m-md-2 { + margin: 0.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; } + .m-md-3 { + margin: 1rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; } + .m-md-4 { + margin: 1.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; } + .m-md-5 { + margin: 3rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 0.25rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; } + .p-md-2 { + padding: 0.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; } + .p-md-3 { + padding: 1rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; } + .p-md-4 { + padding: 1.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; } + .p-md-5 { + padding: 3rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; } + .m-md-n1 { + margin: -0.25rem !important; } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; } + .m-md-n2 { + margin: -0.5rem !important; } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; } + .m-md-n3 { + margin: -1rem !important; } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; } + .m-md-n4 { + margin: -1.5rem !important; } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; } + .m-md-n5 { + margin: -3rem !important; } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 0.25rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; } + .m-lg-2 { + margin: 0.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; } + .m-lg-3 { + margin: 1rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; } + .m-lg-4 { + margin: 1.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; } + .m-lg-5 { + margin: 3rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 0.25rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; } + .p-lg-2 { + padding: 0.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; } + .p-lg-3 { + padding: 1rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; } + .p-lg-4 { + padding: 1.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; } + .p-lg-5 { + padding: 3rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; } + .m-lg-n1 { + margin: -0.25rem !important; } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; } + .m-lg-n2 { + margin: -0.5rem !important; } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; } + .m-lg-n3 { + margin: -1rem !important; } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; } + .m-lg-n4 { + margin: -1.5rem !important; } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; } + .m-lg-n5 { + margin: -3rem !important; } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 0.25rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; } + .m-xl-2 { + margin: 0.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; } + .m-xl-3 { + margin: 1rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; } + .m-xl-4 { + margin: 1.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; } + .m-xl-5 { + margin: 3rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 0.25rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; } + .p-xl-2 { + padding: 0.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; } + .p-xl-3 { + padding: 1rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; } + .p-xl-4 { + padding: 1.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; } + .p-xl-5 { + padding: 3rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; } + .m-xl-n1 { + margin: -0.25rem !important; } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; } + .m-xl-n2 { + margin: -0.5rem !important; } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; } + .m-xl-n3 { + margin: -1rem !important; } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; } + .m-xl-n4 { + margin: -1.5rem !important; } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; } + .m-xl-n5 { + margin: -3rem !important; } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } + +.text-justify { + text-align: justify !important; } + +.text-wrap { + white-space: normal !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light { + font-weight: 300 !important; } + +.font-weight-lighter { + font-weight: lighter !important; } + +.font-weight-normal { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-weight-bolder { + font-weight: bolder !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #fff !important; } + +.text-primary { + color: #eb4d55 !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #d41821 !important; } + +.text-secondary { + color: #6c757d !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; } + +.text-success { + color: #28a745 !important; } + +a.text-success:hover, a.text-success:focus { + color: #19692c !important; } + +.text-info { + color: #17a2b8 !important; } + +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; } + +.text-warning { + color: #ffc107 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; } + +.text-danger { + color: #eb4d55 !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #d41821 !important; } + +.text-light { + color: #f8f9fa !important; } + +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; } + +.text-dark { + color: #343a40 !important; } + +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; } + +.text-body { + color: #212529 !important; } + +.text-muted { + color: #6c757d !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.text-decoration-none { + text-decoration: none !important; } + +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; } + +.text-reset { + color: inherit !important; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; } + a:not(.btn) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #000; } + .table { + border-collapse: collapse !important; } + .table td, + .table th { + background-color: #fff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; } + .table-dark { + color: inherit; } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; } + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; } } diff --git a/web-app/static/css/fine.css b/web-app/static/css/fine.css new file mode 100644 index 0000000..d051cf6 --- /dev/null +++ b/web-app/static/css/fine.css @@ -0,0 +1,100 @@ +body { + font-family: "Roboto", sans-serif; + background-color: #fff; + line-height: 1.9; + color: #8c8c8c; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + font-family: "Roboto", sans-serif; + color: #000; } + +a { + -webkit-transition: .3s all ease; + -o-transition: .3s all ease; + transition: .3s all ease; } + a, a:hover { + text-decoration: none !important; } + +.text-black { + color: #000; } + +.content { + padding: 7rem 0; } + +.heading { + font-size: 2.5rem; + font-weight: 900; } + +.form-control { + border: none; + background: #f3f3f3; } + .form-control:active, .form-control:focus { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; + border-color: #000; + background: #f3f3f3; } + +.col-form-label { + color: #000; } + +.btn, .form-control, .custom-select { + height: 50px; } + +.custom-select:active, .custom-select:focus { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; + border-color: #000; } + +.btn { + border: none; + border-radius: 4px !important; } + .btn.btn-primary { + background: #000; + color: #fff; + padding: 15px 20px; } + .btn:hover { + color: #fff; } + .btn:active, .btn:focus { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; } + +.box { + padding: 40px; + background: #fff; + -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08); + box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08); } + .box h3 { + font-size: 14px; + margin-bottom: 30px; + text-align: center; } + +label.error { + font-size: 12px; + color: red; } + +#message { + resize: vertical; } + +#form-message-warning, #form-message-success { + display: none; } + +#form-message-warning { + color: #B90B0B; } + +#form-message-success { + color: #55A44E; + font-size: 18px; + font-weight: bold; } + +.submitting { + float: left; + width: 100%; + padding: 10px 0; + display: none; + font-weight: bold; + font-size: 12px; + color: #000; } diff --git a/web-app/static/css/owl.carousel.min.css b/web-app/static/css/owl.carousel.min.css new file mode 100644 index 0000000..a71df11 --- /dev/null +++ b/web-app/static/css/owl.carousel.min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/web-app/static/css/style.css b/web-app/static/css/style.css new file mode 100644 index 0000000..a1df2f5 --- /dev/null +++ b/web-app/static/css/style.css @@ -0,0 +1,52 @@ +body{ + margin-top:20px; + background:#eee; +} + +a{ + text-decoration:none; + color: #fff; +} +.gradient-brand-color { + background-image: -webkit-linear-gradient(0deg, #376be6 0%, #6470ef 100%); + background-image: -ms-linear-gradient(0deg, #376be6 0%, #6470ef 100%); + color: #fff; +} +.contact-info__wrapper { + overflow: hidden; + border-radius: .625rem .625rem 0 0 +} + +@media (min-width: 1024px) { + .contact-info__wrapper { + border-radius: 0 .625rem .625rem 0; + padding: 5rem !important + } +} +.contact-info__list span.position-absolute { + left: 0 +} +.z-index-101 { + z-index: 101; +} +.list-style--none { + list-style: none; +} +.contact__wrapper { + background-color: #fff; + border-radius: 0 0 .625rem .625rem +} + +@media (min-width: 1024px) { + .contact__wrapper { + border-radius: .625rem 0 .625rem .625rem + } +} +@media (min-width: 1024px) { + .contact-form__wrapper { + padding: 5rem !important + } +} +.shadow-lg, .shadow-lg--on-hover:hover { + box-shadow: 0 1rem 3rem rgba(132,138,163,0.1) !important; +} \ No newline at end of file diff --git a/web-app/static/fonts/.DS_Store b/web-app/static/fonts/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..9636ff32b5421084cab00cfd56bb91921bdebe82 GIT binary patch literal 6148 zcmeHKL2uJA6t=r=bvsS#0jV5)LE_LugEr+bP0F%zC?}*KH~`v`rdlJVan+_&&=uup zz+d46H~s;Cfd2vS*(8kjGsd_-iyg+Aj4=U@SgAvCi(xx@ z$tt#{2FP_EiYb=$Qq_;r5}PXSq5`;fHI}eGtlS8EwSFps7JMyEz#sq822qI}&8Ooi z)$H%lI8CN`r}KkXcB;F3H6a?JanN`h4Anfy!+bXN!^vxWdLHJ($i^>}N>_0hy-Wu4 zi{^uKmE~cQ4JJA{i3dP=^D4<=HTTsli>JDuz%&R^7xjx~Yq99GrQ^EGwp=(*T(>Qc zkKE<5E?SSA)86Ii{fEW%^5Z8x560o0)pls{20lZup-Fn>1bsCcYfA6y&oX1Ax?QUS z{#m~GyWh@kW5rvr#=}2GdnTcq&ENAbm}IHSuAt>+7RVwa1xNu>U^@lu&LQ@xehO7Kf?G~^WqS1AzaqZqh&6h8#l2K5pHK+j@f5Ng2aLqN+w1u5`P G75ELeM18XW literal 0 HcmV?d00001 diff --git a/web-app/static/fonts/icomoon/Read Me.txt b/web-app/static/fonts/icomoon/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/web-app/static/fonts/icomoon/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/web-app/static/fonts/icomoon/demo-files/demo.css b/web-app/static/fonts/icomoon/demo-files/demo.css new file mode 100644 index 0000000..976bde3 --- /dev/null +++ b/web-app/static/fonts/icomoon/demo-files/demo.css @@ -0,0 +1,155 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 28px; +} +.fs2 { + font-size: 24px; +} + diff --git a/web-app/static/fonts/icomoon/demo-files/demo.js b/web-app/static/fonts/icomoon/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/web-app/static/fonts/icomoon/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/web-app/static/fonts/icomoon/demo.html b/web-app/static/fonts/icomoon/demo.html new file mode 100644 index 0000000..04b8e12 --- /dev/null +++ b/web-app/static/fonts/icomoon/demo.html @@ -0,0 +1,26137 @@ + + + + + IcoMoon Demo + + + + + +

+
+

Grid Size: 14

+
+
+ + + + icon-asterisk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-glass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-music +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envelope-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-film +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-th-large +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-th +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-th-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-times +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-search-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-search-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-power-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cog +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trash-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-clock-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-road +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-o-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-o-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-inbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-repeat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rotate-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-list-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-headphones +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-qrcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-print +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-font +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bold +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-italic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-text-height +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-text-width +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-align-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-align-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-align-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-align-justify +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dedent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-outdent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-indent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-video-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-picture-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pencil +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map-marker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-adjust +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pencil-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-step-backward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fast-backward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-backward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fast-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-step-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eject +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-minus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-times-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-question-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-info-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crosshairs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-times-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ban +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mail-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-expand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-compress +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exclamation-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gift +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-leaf +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fire +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eye-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exclamation-triangle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-warning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-random +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-magnet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-retweet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shopping-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrows-v +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrows-h +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bar-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bar-chart-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-twitter-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-facebook-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera-retro +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cogs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gears +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comments +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumbs-o-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumbs-o-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-heart-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sign-out +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linkedin-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumb-tack +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-external-link +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-sign-in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trophy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-github-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lemon-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bookmark-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-facebook-f +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unlock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-credit-card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-feed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rss +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hdd-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bullhorn +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bell-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-certificate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-o-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-o-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-o-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-o-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-globe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tasks +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrows-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-group +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-users +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chain +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-link +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cut +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-scissors +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-files-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paperclip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-floppy-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-save +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-navicon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reorder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-list-ul +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-list-ol +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-strikethrough +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-underline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-table +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-magic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-truck +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pinterest +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pinterest-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google-plus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-money +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-columns +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unsorted +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-desc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-asc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envelope +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linkedin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rotate-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-undo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gavel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-legal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dashboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tachometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comment-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comments-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bolt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sitemap +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-umbrella +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paste +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lightbulb-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exchange +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-md +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stethoscope +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-suitcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bell +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cutlery +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-text-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-building-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hospital-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ambulance +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-medkit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fighter-jet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-beer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-h-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-double-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-double-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-double-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-double-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angle-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-desktop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mobile-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-quote-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-quote-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-spinner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mail-reply +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reply +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-github-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder-open-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-smile-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-frown-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-meh-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gamepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flag-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flag-checkered +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-terminal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mail-reply-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reply-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star-half-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star-half-full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star-half-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-location-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-code-fork +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chain-broken +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unlink +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-info +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exclamation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-superscript +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subscript +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eraser +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-puzzle-piece +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-microphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-microphone-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shield +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fire-extinguisher +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rocket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-maxcdn +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-circle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-circle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-circle-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chevron-circle-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-html5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-css3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-anchor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unlock-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bullseye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ellipsis-h +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ellipsis-v +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rss-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ticket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-minus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-minus-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-level-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-level-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pencil-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-external-link-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-square-o-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-square-o-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-square-o-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eur +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gbp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dollar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-inr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rupee +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-jpy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rmb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rouble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rub +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ruble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-krw +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-won +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-btc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-alpha-asc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-alpha-desc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-amount-asc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-amount-desc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-numeric-asc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort-numeric-desc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumbs-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumbs-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-youtube-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-youtube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-xing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-xing-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-youtube-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stack-overflow +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flickr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-adn +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bitbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bitbucket-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tumblr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tumblr-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-long-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-long-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-long-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-long-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-windows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linux +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-skype +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-foursquare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trello +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-female +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-male +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gittip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gratipay +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sun-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-moon-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bug +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-weibo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-renren +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pagelines +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stack-exchange +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-o-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow-circle-o-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-caret-square-o-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dot-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wheelchair +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vimeo-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-try +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-turkish-lira +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plus-square-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-space-shuttle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-slack +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envelope-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wordpress +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-openid +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-institution +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-university +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-graduation-cap +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mortar-board +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yahoo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reddit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reddit-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stumbleupon-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stumbleupon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-delicious +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-digg +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pied-piper-pp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pied-piper-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-drupal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-joomla +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-language +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fax +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-building +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-child +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paw +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-spoon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cubes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-behance +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-behance-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-steam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-steam-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-recycle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-automobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cab +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-taxi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tree +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-spotify +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-deviantart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-soundcloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-database +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-pdf-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-word-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-excel-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-powerpoint-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-image-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-photo-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-picture-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-archive-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-zip-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-audio-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-sound-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-movie-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-video-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file-code-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vine +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-codepen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-jsfiddle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-life-bouy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-life-buoy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-life-ring +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-life-saver +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-support +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-circle-o-notch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ra +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rebel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-resistance +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-empire +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ge +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-git-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-git +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hacker-news +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-y-combinator-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yc-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tencent-weibo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-qq +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wechat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-weixin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paper-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paper-plane-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-send-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-history +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-circle-thin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-header +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paragraph +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sliders +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share-alt-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bomb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-futbol-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-soccer-ball-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-binoculars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plug +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-slideshare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yelp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-newspaper-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paypal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google-wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-visa +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-mastercard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-discover +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-amex +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-paypal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-stripe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bell-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bell-slash-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-copyright +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-at +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eyedropper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-paint-brush +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-birthday-cake +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-area-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pie-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-line-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lastfm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lastfm-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toggle-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bicycle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ioxhost +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-angellist +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ils +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shekel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sheqel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-meanpath +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-buysellads +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-connectdevelop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dashcube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forumbee +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-leanpub +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sellsy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shirtsinbulk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-simplybuilt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-skyatlas +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cart-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cart-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-diamond +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ship +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-secret +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-motorcycle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-street-view +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-heartbeat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-venus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mercury +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-intersex +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-transgender +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-transgender-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-venus-double +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mars-double +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-venus-mars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mars-stroke +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mars-stroke-v +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mars-stroke-h +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-neuter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-genderless +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-facebook-official +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pinterest-p +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-server +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-times +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hotel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-viacoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-train +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subway +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-medium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-y-combinator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-optin-monster +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-opencart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-expeditedssl +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-three-quarters +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-quarter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-0 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mouse-pointer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-i-cursor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-object-group +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-object-ungroup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sticky-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sticky-note-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-jcb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cc-diners-club +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-clone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-balance-scale +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-start +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass-end +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-grab-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-rock-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-paper-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-stop-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-scissors-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-lizard-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-spock-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-pointer-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hand-peace-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trademark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-registered +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-creative-commons +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gg +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gg-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tripadvisor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-odnoklassniki +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-odnoklassniki-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-get-pocket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wikipedia-w +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-safari +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-firefox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-opera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-internet-explorer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-television +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tv +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-contao +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-500px +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-amazon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-plus-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-minus-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-times-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-calendar-check-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-industry +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map-signs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-commenting +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-commenting-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-houzz +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vimeo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-black-tie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fonticons +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reddit-alien +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-edge +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-credit-card-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-codiepie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-modx +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fort-awesome +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-usb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-product-hunt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mixcloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-scribd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stop-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stop-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shopping-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shopping-basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hashtag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-percent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gitlab +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wpbeginner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wpforms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envira +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-universal-access +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wheelchair-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-question-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-blind +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-audio-description +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume-control-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-braille +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assistive-listening-systems +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-american-sign-language-interpreting +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-asl-interpreting +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-deaf +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-deafness +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hard-of-hearing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-glide +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-glide-g +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sign-language +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-low-vision +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-viadeo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-viadeo-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-snapchat-ghost +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-snapchat-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pied-piper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-first-order +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-yoast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-themeisle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google-plus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-google-plus-official +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fa +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-font-awesome +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-handshake-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envelope-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-envelope-open-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-address-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-address-book-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-address-card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vcard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-address-card-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vcard-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-circle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-user-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-id-badge +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-drivers-license +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-id-card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-drivers-license-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-id-card-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-quora +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-free-code-camp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-telegram +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-three-quarters +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-quarter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-0 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thermometer-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shower +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bath +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bathtub +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-s15 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-podcast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-window-maximize +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-window-minimize +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-window-restore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-times-rectangle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-window-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-times-rectangle-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-window-close-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bandcamp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-grav +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-etsy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-imdb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ravelry +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eercast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-microchip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-snowflake-o +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-superpowers +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wpexplorer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-meetup +
+
+ + +
+
+ liga: + +
+
+
+
+

Grid Size: 24

+
+
+ + + + icon-3d_rotation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ac_unit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-alarm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-access_alarms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-schedule +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-accessibility +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-accessible +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-account_balance +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-account_balance_wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-account_box +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-account_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-adb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_a_photo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-alarm_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_box +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-control_point +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_shopping_cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-queue +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-add_to_queue +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-adjust2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_flat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_flat_angled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_individual_suite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_legroom_extra +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_legroom_normal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_legroom_reduced +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_recline_extra +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airline_seat_recline_normal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flight +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airplanemode_inactive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airplay +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-airport_shuttle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-alarm_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-alarm_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-album +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-all_inclusive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-all_out +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-android2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-announcement +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-apps +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-archive2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_downward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_drop_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_drop_down_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_drop_up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-arrow_upward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-art_track +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-aspect_ratio +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-poll +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment_ind +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment_late +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment_return +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment_returned +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assignment_turned_in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-assistant +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flag2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-attach_file +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-attach_money +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-attachment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-audiotrack +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-autorenew +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-av_timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-backspace +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery_alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery_charging_full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery_std +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-battery_unknown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-beach_access +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-beenhere +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-block +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth_searching +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth_connected +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bluetooth_disabled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-blur_circular +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-blur_linear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-blur_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-blur_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-class +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-turned_in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-turned_in_not +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_bottom +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_clear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_color +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_inner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_outer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_style +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_top +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-border_vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-branding_watermark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_medium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brightness_auto +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-broken_image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-brush +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bubble_chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-bug_report +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-build +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-burst_mode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-domain +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-business_center +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cached +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cake +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_end +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_made +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-merge_type +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_missed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_missed_outgoing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_received +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_split +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-call_to_action +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera_enhance +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera_front +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera_rear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-camera_roll +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cancel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-redeem +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-card_membership +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-card_travel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-casino +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cast_connected +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-center_focus_strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-center_focus_weak +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-change_history +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chat_bubble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chat_bubble_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check_box +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check_box_outline_blank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-check_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-navigate_before +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-navigate_next +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-child_care +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-child_friendly +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-chrome_reader_mode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-close2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-clear_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-closed_caption +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wb_cloudy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-cloud_queue +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-code2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_library +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-collections_bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-palette +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-colorize +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-comment2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-compare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-compare_arrows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-laptop2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-confirmation_number +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-contact_mail +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-contact_phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-contacts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-content_copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-content_cut +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-content_paste +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-control_point_duplicate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-copyright2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mode_edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-create_new_folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-payment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_16_9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_3_2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_landscape +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_7_5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_din +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_free +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_original +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_rotate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-crop_square +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dashboard2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-data_usage +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-date_range +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dehaze +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-delete_forever +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-delete_sweep +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-description +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-desktop_mac +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-desktop_windows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-details +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-developer_board +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-developer_mode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-device_hub +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-devices_other +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dialer_sip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dialpad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_bike +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_boat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_car +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_railway +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_run +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_transit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-directions_walk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-disc_full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dns +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-not_interested +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-do_not_disturb_alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-do_not_disturb_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-done_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-donut_large +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-donut_small +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-drafts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-drag_handle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-time_to_leave +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-dvr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-edit_location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-eject2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-markunread +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-enhanced_encryption +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-equalizer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-error +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-error_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-euro_symbol +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ev_station +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-insert_invitation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-event_available +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-event_busy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-event_note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-event_seat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exit_to_app +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-expand_less +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-expand_more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-explicit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-explore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure_neg_1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure_neg_2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure_plus_1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure_plus_2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-exposure_zero +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-extension +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-face +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fast_forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fast_rewind +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-favorite_border +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-featured_play_list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-featured_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sms_failed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fiber_dvr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fiber_manual_record +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fiber_new +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fiber_pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fiber_smart_record +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-get_app +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-file_upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_9_plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_b_and_w +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_center_focus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_drama +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_frames +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-terrain +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_none +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_tilt_shift +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-filter_vintage +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-find_in_page +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-find_replace +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fingerprint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-first_page +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fitness_center +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flash_auto +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flash_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flash_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flight_land +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flight_takeoff +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flip_to_back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-flip_to_front +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder_open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder_shared +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-folder_special +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-font_download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_align_center +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_align_justify +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_align_left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_align_right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_bold +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_clear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_color_fill +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_color_reset +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_color_text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_indent_decrease +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_indent_increase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_italic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_line_spacing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_list_bulleted +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_list_numbered +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_paint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_quote +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_shapes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_size +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_strikethrough +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_textdirection_l_to_r +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_textdirection_r_to_l +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-format_underlined +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-question_answer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forward2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forward_10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forward_30 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-forward_5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-free_breakfast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fullscreen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-fullscreen_exit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-functions +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-g_translate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-games +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gavel2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gesture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gif +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-goat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-golf_course +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-my_location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-location_searching +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-location_disabled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-gradient +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-grain +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-graphic_eq +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-grid_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-grid_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-group_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-group_work +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hdr_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hdr_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hdr_strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hdr_weak +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-headset +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-headset_mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-healing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hearing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-help_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-high_quality +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-highlight +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-highlight_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-restore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-home2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hot_tub +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_hotel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass_empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-hourglass_full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-http +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lock2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-image_aspect_ratio +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-import_contacts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-import_export +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-important_devices +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-inbox2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-indeterminate_check_box +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-info2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-info_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-input +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-insert_comment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-insert_drive_file +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tag_faces +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-link2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-invert_colors +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-invert_colors_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-iso +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_arrow_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_arrow_left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_arrow_right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_arrow_up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_backspace +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_capslock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_hide +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_return +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_tab +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-keyboard_voice +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-kitchen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-label +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-label_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-language2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-laptop_chromebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-laptop_mac +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-laptop_windows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-last_page +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-open_in_new +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-layers +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-layers_clear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-leak_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-leak_remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lens +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-library_books +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-library_music +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lightbulb_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-line_style +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-line_weight +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linear_scale +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-linked_camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-list2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-live_help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-live_tv +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_airport +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_atm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_cafe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_car_wash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_convenience_store +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-restaurant_menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_drink +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_florist +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_gas_station +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shopping_cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_hospital +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_laundry_service +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_library +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_mall +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-theaters +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_offer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_parking +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_pharmacy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_pizza +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-print2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_shipping +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-local_taxi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-location_city +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-location_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-room +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lock_open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-lock_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_one +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-looks_two +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sync +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-loupe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-low_priority +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-loyalty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mail_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-map2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-markunread_mailbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-memory +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-message +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mic_none +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mic_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mode_comment +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-monetization_on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-money_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-monochrome_photos +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mood_bad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-more_horiz +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-more_vert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-motorcycle2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-move_to_inbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-movie_creation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-movie_filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-multiline_chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-music_note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-music_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-nature +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-nature_people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-navigation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-near_me +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-network_cell +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-network_check +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-network_locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-network_wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-new_releases +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-next_week +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-nfc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-no_encryption +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_cellular_no_sim +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-note_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-notifications +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-notifications_active +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-notifications_none +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-notifications_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-notifications_paused +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-offline_pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ondemand_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-opacity +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-open_in_browser +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-open_with +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pages +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pageview +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pan_tool +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-panorama +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-radio_button_unchecked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-panorama_horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-panorama_vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-panorama_wide_angle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-party_mode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause_circle_filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pause_circle_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-people_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_camera_mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_contact_calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_data_setting +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_device_information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-person_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_media +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_phone_msg +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-perm_scan_wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-person_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-person_pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-person_pin_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-personal_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pets +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_android +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_bluetooth_speaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_forwarded +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_in_talk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_iphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_missed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phone_paused +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink_erase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink_lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink_ring +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-phonelink_setup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_album +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_size_select_actual +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_size_select_large +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-photo_size_select_small +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-picture_as_pdf +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-picture_in_picture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-picture_in_picture_alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pie_chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pie_chart_outlined +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pin_drop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play_arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play_circle_filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play_circle_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-play_for_work +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-playlist_add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-playlist_add_check +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-playlist_play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-plus_one +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-polymer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pool +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-portable_wifi_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-power +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-power_input +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-power_settings_new +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-pregnant_woman +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-present_to_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-priority_high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-public +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-publish +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-queue_music +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-queue_play_next +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-radio +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-radio_button_checked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rate_review +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-receipt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-recent_actors +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-record_voice_over +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-redo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-refresh2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove_circle_outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove_from_queue +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-visibility +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-remove_shopping_cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reorder2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-repeat2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-repeat_one +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-replay +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-replay_10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-replay_30 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-replay_5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reply2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-reply_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-report +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-warning2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-restaurant +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-restore_page +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ring_volume +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-room_service +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rotate_90_degrees_ccw +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rotate_left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rotate_right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rounded_corner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-router +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rowing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rss_feed +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-rv_hookup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-satellite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-save2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-scanner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-school +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-screen_lock_landscape +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-screen_lock_portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-screen_lock_rotation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-screen_rotation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-screen_share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sd_storage +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-search2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-security +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-select_all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-send2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sentiment_dissatisfied +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sentiment_neutral +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sentiment_satisfied +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sentiment_very_dissatisfied +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sentiment_very_satisfied +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_applications +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_backup_restore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_brightness +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_cell +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_ethernet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_input_antenna +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_input_composite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_input_hdmi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_input_svideo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_overscan +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_power +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_remote +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_system_daydream +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-settings_voice +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-share2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shop_two +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shopping_basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-short_text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-show_chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-shuffle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_cellular_4_bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_cellular_connected_no_internet_4_bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_cellular_null +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_cellular_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_wifi_4_bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_wifi_4_bar_lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-signal_wifi_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sim_card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sim_card_alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-skip_next +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-skip_previous +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-slideshow +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-slow_motion_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stay_primary_portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-smoke_free +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-smoking_rooms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-textsms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-snooze +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sort_by_alpha +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-spa +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-space_bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-speaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-speaker_group +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-speaker_notes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-speaker_notes_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-speaker_phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-spellcheck +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star_border +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-star_half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stay_primary_landscape +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stop2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-stop_screen_share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-storage +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-store_mall_directory +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-straighten +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-streetview +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-strikethrough_s +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-style +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subdirectory_arrow_left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subdirectory_arrow_right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subject +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subscriptions +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subtitles +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-subway2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-supervisor_account +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-surround_sound +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-swap_calls +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-swap_horiz +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-swap_vert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-swap_vertical_circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-switch_camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-switch_video +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sync_disabled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-sync_problem +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-system_update +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-system_update_alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tab +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tab_unselected +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tablet2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tablet_android +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tablet_mac +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tap_and_play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-text_fields +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-text_format +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-texture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumb_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumb_up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-thumbs_up_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timelapse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timeline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timer_10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timer_3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-timer_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-title +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-today +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toll +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tonality +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-touch_app +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-toys +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-track_changes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-traffic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-train2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tram +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-transfer_within_a_station +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-transform +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-translate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trending_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trending_flat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-trending_up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tune +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-tv2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unarchive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-undo2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unfold_less +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-unfold_more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-update +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-usb2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-verified_user +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vertical_align_bottom +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vertical_align_center +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vertical_align_top +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vibration +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-video_call +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-video_label +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-video_library +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-videocam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-videocam_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-videogame_asset +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_agenda +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_array +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_carousel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_column +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_comfy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_compact +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_day +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_headline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_module +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_quilt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_stream +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-view_week +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vignette +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-visibility_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-voice_chat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-voicemail +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume_down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume_mute +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume_off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-volume_up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vpn_key +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-vpn_lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wallpaper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-watch_later +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wb_auto +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wb_incandescent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wb_iridescent +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wb_sunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-web +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-web_asset +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-weekend +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-whatshot +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-widgets +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wifi2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wifi_lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wifi_tethering +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-work +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-wrap_text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-youtube_searched_for +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-zoom_in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-zoom_out +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-zoom_out_map +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+ + + + diff --git a/web-app/static/fonts/icomoon/fonts/icomoon.eot b/web-app/static/fonts/icomoon/fonts/icomoon.eot new file mode 100644 index 0000000000000000000000000000000000000000..352a9b2355298234a9a5e7b158e95617e7476968 GIT binary patch literal 307332 zcmeFae|%fzeLs4hb8O4MZCTb2%eHJumSs!wPgzo&D7F$3CnO;;K^7*2@FM}T5FkKG zDYv5vmoK9%V~nOA%NWaO*Y&GtZO1ykyn4BtyRoigjP>?9`gUE%oP;npFy?ry>+PbG z@B8yS=SW9RoQB@J|E?1G9GxG}d7jVnc|N~CpYzl=%B1LrP2?Ro@aDq+hpl+ z3D=4b`^gJmT7FKF>ZMcz4zaF=$97n{v%w}CQ0Sn z?!EJoLpa_jNfrCCt-SZ(XYP4@^vqWLJ|vZW`m6izzH^`DkIhl3>3cff=u+Tr9e21P!-!_~RTZLcMCY6;B;)cz*#UyRUvCesA zzGdD$-!&hcADSPXziIxV`B&%Pn16Hrujc<|{`>RiPH#HB_4JO@H=n-$^lzL#cKW5$ zUpoDb)32WXi__md{k_xwaQe)dEoW{xv*XOZGjE*vi!*8&IZq}I{Uk4 z|NGgmpZ$}we|q-2XWue@a+~m2N z&h0t(@VU3n{p0)f@0;K6e821c>)zk^{$IZTkMIA}`=|f;$N&7%KVMj23-t@uh1Cl; zF5J4Xcj3W>M;1Q4@WjGX3(qVZT{yPz`wM@#@J9=;E&SQSI}6`i`1c=I{J7!A!4I}A z)-Spi#}>CQ?pb_b@rlLf7GGZc+TyE=?<~H%_|c+zq5gvPg6l&6g|Q3UFYLMSz=bC+ zJa^&c3tzkNrx)J2@a~0=E~rcOORlB9rLm>$OM8|cSbAdVxuutvzP9wIOYbbbyEK0( zf9Vp3dFQ+YNVd*<=X>V|=EL)A=BMWWX#Sh?e=+}^`M;k3+xb(cH=e%!^bMzPJbg<6 zlD`i~z6MDC?dcz!o66OjDVGv5IuO=oM)HlB5!?K}JO+21?+hiCuj?CWP| z&%Omno;iEr?7yG=>3enWS>JQKH+Zh^+z24K=3L_3=5yQ6?L0Sq?v8VRaqe#c$;S7a z0m*Ja@=XII7ytR+7HSsE3nL3REZnqk+rs{ZhZa7y@R^15!qW@SESWZ>BZ+4Pb_|8adz>0i}Q<%7o-b~ z7aSKlFAQEtT$sFY$Av=|(ifh;aN@!@F3eu|-i7%Ki%Zf{oe#g0v_d3pYe7WOG9lz7@Qpaz19PfCs zW3*#cN30{-5$R~^XzZx!P&(ue=2BfhbN$5iudWYVUv>R~>npA=yKZo8b8T^LcGbIT zT{W(1S5^C$+rQL)qWyQAoV?O$krq5U`7ey{CB+skdg z)Amx^Z?_$9`>nPwwjFER(6+v9n{k?Upu6tHo()u{bPti_K!SG+QiK@kWZkk@Nrm^9w?NNet_|!2nS(#n>nZ za1qK^Kc;}SF(so+VP;H{7xdTcHQOUzt7X{kVs@Lg*;LO=6<&|OpZU8ZBe5|Si^_py zG8vfOzWou8+wFN|`wh1k_Sq38U6Qh?l$`ds58tqT`j#8EA9mw&m|u6pVYdh4Eh{{? zRf-FUVc2a%d&IsBW- zW;3Z&S_xdt;hyxRQ%V~5)JQ$j0KW%!&;Y`b4rX;nVj7UKjfRJ9?aU@7f`ywg4c&4k zolK{b7kA~QU1oDU&^zRBZ|fQA4aCi6_35t;c|F7IbE$M1|6keF-@ogp;eml|tC_C z?~aEKP11J-XtPt|vL?rQy6&MJlZWI3D}fmJkp^tjN)T|eOE*ckqjwx0qJuuYn}84t zUj5HofwN;*i&HqxtZ*bL~oG0QZ11!GOq1JX^7L@ITj@9;zT#g2JK!rpwgYk0VeoeI%7 zvh*ipOWR6+vCxP|m4H=PhMp1XX9oRDp`S!oYS2%tQnxwG|H+wbR+X~JtQ=GWETv}T zY(5E*(=g|)G%~l@9l==eUEXUseF9N@<-hA?D_NQ*))2bNT<)sfpi+$OYo9J$F!ex zLd-40+W6jlF&bD>!HV2S178@Ur#wP9d zRAb|)-{05g_pfd=o6WWnrz>V|blWQ|axgeP9t@3*v3TU@j>)4V@s4iaRDb`_;6Q(} z+t+#V-LQAl-ik`wrZpYDW@|jsGu12FwA&|R(Q&QG#?@%vwcZsNu-I1(4ffP3n832a z8c?tbyqt0Yj*|s%;FFO?*8rs&0<7P*ZRC;^f%b@1XY5b>8hXUc%{D*`0v=I)%eD7UJ>Oxqw#)d_F>)z zvB+!kThUh?qwS^eY#FvsRMc0FY!mC9pqgoJ8mX#Mg869l)dox1GSJr4Ovv)qNGBHk z4^`Yp;O*Yj5w!$~7?&6Lr=W4I=rd6*D}8;mT}Eq7X1A5oT_vD`NP&c9u+4dfhrBAN zX4spRQ~8W%SU!?Wst_6QpQVS3bagnB&m@PuGK7yJ@2-?uq+Y;DZ@V1gL_gp{j2rX0 zmc^F!BBMPdlc{qz1=rE?H*`ThsXZf*JYQYAj+Suf!#QIo@a({)e}UZdOPsb7rPgFd zpUK|9{H6gG^T+(-%pU7tCN2oc(*FA6lP|n5dAxpqVXq)4<{o|7^UT=T(_Jq=`q)df z_l)OdqQ%8A)=4BKNiO6|(=Eij)dxf0$5-vt53C@p{C)7? znh7ovc6;(K`MhjCba3_0lMAWOGC0E#MUqc(*c7;)oXTX>Oh!JH&&tVs);KnU-0cM% zuQm=j4d#|!q03kWNi|DfIk}=(WstiSsYA%!3_RIXA{bq}?5*HlIgm;lrETN>3Vrpb zL~pa7T=>rOAxey;0OtVU4E?4`W+^tOhU8OfPR-$nF4xMEOOpEJ*i{5XmZ621TA`yK z%+8))5tv2%Baob2_t33Im&Cd;YL3SPjWtUn*#8(2q?Hq8s5@YLv zo`{3saKx9}nMJ4UIIx_w(^9rT(3Wk_4-P&*>mP-5HahzEB(kd#3Hfpw0&?n9=O8|v z>?l8tOAhn%xQetnL81hi!gQx$A0U2QDVeDkVelD$%xVU#-4VM9fK93p#4+eh=2R9^ zZ6=du*(~Ebgcth#6~HraO-9%i3tKL4C;;IrkS(^xf|*c2&0O9l1b@f~Ddh;4w63_e zONA|+X`tg*T4$-|W+-lv2t==Dd}u!h=(o1+9@C8hf=)&I^(*?Lk%9h+=H_fJM`P4= zoeHUrpajlm^~U^`u+`7}3@kAwKlb$Whtp5@e>k0Ah|3N&{%)K-$Pcl1v|~@>nBX5L z!9QqSR-h%WH8Gh`CdCfOCkbmwQz1Shu9NAyDrTlj*$g|Nl6cD16k4kE(dCp|p{4kw zb<#%ZdbEtiVG3hq#FSr<_LrOdG5Rv-Gsll#l8!rt8f;XF#s1|gG*_qD&!TTe)dO!v z-^6m?_RZAxSJkxLaU-PvG14v^4$=h1pcUNcu*=!Yb!RlY-_@~Y{Z|r+FDJf?Ar)W( zzXF5uNM0fU3_#;B0KF^dqYdDG90nvVc>xPE6o%#UngV?ixSUj>sY)cJ<&*T6O>r6l zFcYX#C7J-iT0Ex)a+wdh$#r-RXoOCf7|Af*ev=F89As64mBrMLGhC=8MQ?duNUaWg z@nzPb@bK`M&)?Pk+Qh!SoAAA#e#Ggpyt&v-nT>cz2lkApuMd50{rV?{$GUGD8ou3E zOE>MC*tECWciZsL?cMR=C)Th3+>pGvWF$tK4zd8MF0nr5D)8p_PjPsX(}($`a( zzR*b2MQ96pBWswy+|1BYJ3A_W9DSy&zCtwCc^DG7hgCK?m8pDf^ckgGw0QVgbrpNp z(KLg0bC^dP@TFX;MY~~i&kL)Q$?RgeOfHv^6Y;^pxE##olezThtqwNrxD{)Sv4Aus z6P`g)W&AD{$j;5d)InErz9sBhGH8218pc&tzh5Xh5g1qfc#b*jXF|^PM>Ol7&};l{ zxG>^kvb1Xv8qTz5d#H8L`dTjY)?0F>v0>ETJ&=gScGzupYofaLfV_WjwZgu+>nUhA z)2+SL(0N+~j}KT*iB8z;J7Upw{opSRjiPf0Ru2xY&d(D3 z6u0)^jcdpDdc5`1b**h%`}@OMx70HlOgC|`>GDcp{Q?_(kd|Ryu@akKzFL%2HUQI7 zP7TP};)*!Q(rOwwh5vHtvNg<$0vgUWDh6)vH**yVtQR^C2}Ubf5@t9)!o+hW6T<8z z7};9KrXdV5q;Vq)hSNR4 zCs>(!?BdVZUHMgCNqQz`xA*+8XFGfNJNxc=Yu|rvh_VMZMAeJ$?p7W9_fPDTf3Od@ zDPtZP^tPaAU4vN=<21uEXC=EYSp+RrVE9CAGMPM>I_-hN!;lx`^kE3BUX@4<1x30D zT;hhavI0+Tl_sPcq|X9lxc)iL2BCuv!lX>%O9LB(2s3DlHS=8@!Bd6ZYAx)$bTI%9 zqpmPc;jh)?jhG-Xlnd8Gm}HI;*MM%*)hsTWr$Qd7uTUzL%CfSiG6j1T6_ZS5uREHh$1r70}j(ZIYg^efd>N~%gJ zt5%ds+VfXgDx9@tOuMh zY&2~k2yh&cfu=acSWtuDgs@ZdX)d%E$y_VMpDUf!va+N;s}0s_nnHYNmTUPeYqNT$ zwyCUKv6W+jL$-RQUa4!TuB^l%AV@`>qLlN=QtJ3UH41hrtGo0&uywK{*En7Fl@X$* zTulGv2vJ{KNnOK(DjPb=fU%D1`YQCwq$nodC3F$kRZci1D`n2Y<$Od?aLK+cY@#>U*}7 zl~rIA1k-B8RD=GOS5(>?=ywfZ>Zz~AqNpw_!;(?IcCAx>FDsW7Wsj>H&52KiVrr?U zM(Zl7Oadsj+8QiHEI?;vb(!-TXA30Ju)h9_=+>3(IVCrvcJku56a>Ss}Nd=V6$f5qr2ogJRtw_RU5}kH!ln}vot+b0X zmKDjD`IFfM*iS*eTvsMv6`;cAiYrmDYn_9u(l0J`T!DnK2R;D|^*99bl{fGhj-nCI z3J0c{Bt50MB1qu{x|FBI5wKJqvc6|T9`feYY>phgFsAbG0dw>-l zdqV*HhUCb4$qGGs09r1r^THEN0R{UyWXpqW#gqx0p0Da|vIT zBT#Y>b3jtxj=%;>HtY(i8qkF0$V84KvRabq6;{i+d|D1<@*#OHA7V$+X;^|-CYi*B z+cZw${v#Nruz_}>1;5E}f-kQ`lP1%y8SOE5#LZ^!*b?2s4urjzxJ`p$_F>``t^=5Q zgXudGcaT(1wgWmjqCSIXBB1Azl!O|f+q$5E>5}M`mYXKhUA{`#N#R%l|1ZSa2w9i( zlPTa8!%U50Bv;iqb$#GU&z5sB*zzp+z^A&(*V)lmTUT4x*U{0PPYSW)@@~oh-r(xE zIU0$_qtR4HNBwlI!!h3N4+Ofq6Lv@4(n_7idMK_xvPE~H=RB&!PCAt^NSAAi&^RqD zwKY<0t;un-v>Xu25WyCJIN%;6do-&|sdJI*w|jl; z<#VrS^Dbw|>#5tYNG&E4IGL-nj6JKKXHhjnHfWe|Mn>2($s`t;zJ7AB(Ue0o)vTK^ zXxfcvs>~$R+@B|&gk3#}zz!lC?Ar--ZZ?q)!K4mcC3Gb?UHYI5dL-I1!>TPIJOZ9V zqtAhxmta|jk=cuW>%^)|LR0C4dLEHa_)lE~-GVzzBUvZ;=^0M9GFW8fBa&e0E|4t4 z9Ff0`Y*_@B6=@@!XxfaF5=P9&m5E}7G>zEljB*oj*T+5AYo+ygiWUa2%v_>bbyy6# z5}dUPHn9HrW6+qqFst~m1qF>+?ATEGO#KeUapEe;6W)BI_Yx9Djtpw?;u zFYKRT!G46nqXE*Z!JO3(Gi~^;fx4QGQD;R%RaHa9feL(vMn|96xbgbyH*S1lbaaT0 z91v$)MmwwP`}fMhhK8qV9c2xEhv8(u&o@$!&xp_0Z)nWnZzyZ7f2sjaCv=tbX7Y(w z;s-4wc%R&G&t#HnW1KCj@54c!Vov^pU!Ru#6885akUb!IR57qC&|SN-A&zLb9PsGP zkK`lRXMs0aD)o_gMh-Fy#r5GCRSX77xEvWAC5>n|m1K+ZU#g8D`Re;@k*+7(gop#I zglr19+G%y0%)JbM;XBIQbtd`NT@3!hyFMHLtitX(qrS*C;0RVN9icXgd``sKw4fbY zU-(8q#S7kLlZa;o^P!MJiMt~5nGBc!95y5}=CC#b!WEGLwv#MNc5cMu0tTXOzzwl` zXqosM3s9&GY{lSdN%;s`O{KC)L@KV>Ct9g|wVM3~M}|UPDE$koDnfkFDR5xwSepN5 zS=d_nN*ShZfkUP)odiE2|8^Vvzk?DMGJL>fEA7_eGfI8IoOK$+J~O&PGM}8YJJ$Pr zt*t)adWSuy`Gna((JW5Um!}e~&CRVQd}y0suj#JgM~zOQivR#-1H8N(a1(wEqTXRd zq6$A3!cbxFyxM%(B7SE2KF)+y+=J7RcUyh(}g0f^d0+C;foeG@_))y)*OF zQ{NdK#kR>&TdR~+?XkODn|piv_Eb4)y0-R)0_hauC<$`e5VP{@Mo0hhssF}(L%mzO zY8+L2`g?mfxm@-=Rb@(TEt?I6I6c9wfl!Lvw!r!fVzJ4OOfkk@=rL=gO+424KIzlI zG3q-RFEJ3pF@4`{*f$>c8jdr57wp)$Yo&IK_ZqJ$c>2iO$31@fj=ufJ$%%z)NsF2)CfVz5EDE(u3)|n$@qOpjvTXaW7vuMmVd-Kn9`B)B#(=CO_hR znVrI#ywEoh8IXkH1mb-Pfx96V$f$D+p$%Armp*{6X)8P*4y4wBNLFVKzxig~PZ7J{CUpYmCE?43h1(kD5*4#u3~}4@e+8LbrrM zq3H9`T?74x`UlFDXQFIhBiPHcJr9iwzkW~W@y4bx_HA4@P1im*xjz>B%AI#68{Ot- zqUuZUG&epI7#2?Z=wtDhz`%mzgcmE&?*gq9K=Qf^^t(VSOG&t(l(J-`;BdifIuI~U z1GnB%@or_xc#nV=<-C+ZZ-V6MHY1Q)3yT+>fLa8xm6J$fAPlTLpGnC{V>95lMH;AU zs~Ua7%3p~RnwZl_%x>^siQch)>g(;@%&Av-S#9kV2^{b-C0Tjy&VaO);>9g?W@26n zEvC>|BD^L;Oaayt7F8jD9E+#?%J{%h#zJAV+-FycGDib&Jgc*EC2U3;s;c_C1EZUo zo8zvo+Sg)`KCfnL5 zESpE3$sI(CFJ|d4o3e!Lwor32)tMTx25t6$H9XysN@fC`Ee=m*RaK?O(b5@^B?=Lv zyGtc;;=lTM6xbX(As<8qCYwJ=?-9NevB#8*n*F&wR={tOxq!eTN|(5%ZswB75XlMz z`ys%7idzsUn@3`TE`iKj!1K$wuMnDR%)&i~mkHA3RwQ!8CkmAGib6PRvfD=yDHMP4 zM@jY#=5UPK?eP~g1|eFLu){x3DwnJ5_EmNV8+(y8&dt5X9QcK%R7`I{jCb@ll-X*Z zYQX2IdfUp`V>FVmP7H3C%B#!?g;X}RHGdS22Z}WKCz)$q}L#`7;lW>zo%dL}0^jGNl zc^F5ETBCe~qNO~;ppi*3B#}G-`6{4|`-=7gIVbKx06Y(^I>IeoDmWZBKT_jB7SK7^ zNuhK2@B`w6ki^WKI$6zJ%na5<{>u*?j0ry#t$mCwKu26*4{F$HsQ}0e#i%g0>N=hQS`%kQ;)^0tL^JVP#?)dBFFLwm+FgB0i}u{;*oS*N*A%1AWd=$BuF6d zgi3ZrvRI`k_$3p_WCQq{&5-ac5Hg*Tvnkku)VK9>xPqPugyVUgN1zvX=-v>lSjd7x z6hMw19*@V;qp^|-ShTEHY^K}U;(yKJcH7Te+?~x^`}(eDdk93v-mz1OmX3~=M5k@0 zxzlZ*v2-N*#>e~E!Q~yLzCr#%-)6LR*a|Pm71tuOHG}AkkVuU^B0wX4sJ?tn>+4fa z`Tc>$#;1Ca%iY`)8XcV?2=HD4md4j`+)?cp~Bwz!?EzH~6E^go2-s`nNr@{zz|qB>>fTAcAB4zdYXma0ow5 z4gH@RAOGw?|1W=$eOO)XYgKKnzFK*kyCeTXWxecZ_O*IkEmpaNexE>z^z7-Rg{sT>SInYp>k?as&)k)|MrFpS#`h{pU@ zL6=Mzc{#;Ghc#C077vpH+3Z+fDBjdm)%W-c zCYr&x@(?ufJDNY-kVUB4yzKD|cRuQ2!N73shOTM3;^J%3!*F)6tfixN zeSXf-Q~hD$B*$JkG=3)kTuSlGt)QR@QBC#xWlnC790EgXFl`I$jD>C z;1~ApeJJMlMpq46i|tj4R%D^;h~5`|25kb<)Xk=ShO==hDA9fv1HK%5m+tH z`3TQ!$+FA*ZAHDYhG?j_3#Z^`oK^CvP=5A2B$dvZ zwubzNBml|H4Q(}>tLy7w5~lScbfy}fUjsA+!?c_1klKr@(XUvre3Zb8FUDUy9zTx% zFTTN{nYMXq-+#Z>ZD(dWs{JQt5IHBTX10s%YP9jO6?J%#=ci{Rbo((j#0}Y@t7%5h zWwKEzq_qkVKCjvtJgAtm@k2ZL;$=Le3Dv3*yW6woS- z=aZa_45TZ0#E^Uhq{ZSu#CeF#aYi1ZzuZMRb@1q6pB>AAz~)B$XVi4mNsyN(>i`!qaBrq;6R;~C>+hOXfX0Ib1-VU zbp;tYNH!O+1t-$wc3=w~kH&;F0A^KDI5Y;2M1?$QTU)g;W>r78#bmBET^DGZbU7PF zYHDj5>RKyJ*EcyH-n{4f@&o%#Hv5`Rw{vtyUEQisaIMlD>ABtCwZ^;k_9k>IB;c&dRc6+qd>)p`W zTGJA~YcQ0kcHDcNKLoY6&D0RADDzltTPl}J&5`@pSkr?^>lxxr;41^IL%xoi zV*?pw3f2luIaQioRMRi@9U31U2~Tx&nD^Owdmp@R!}3yDuH?_e95+uTOqHP zFS@HST$*3;EK#567p_jEV9m=KU%EW@Xoc?mGOQH8NM#~54KM+QJWc~L6Xham-T)pf z+3mHWnn~u+jXMu{+>NmKd}_nSN%;8#a2m$!EbPWzSGC3_5SpJ=4;AyN)9JprVyr0x*hIc~o>h8h9^o5yX(_kYaK ztF!a-qISURIMmr`v%BTH#L>h&y3A>BvE6pGOSIR(78%!YG;t{`r{NUW^L1Gbys(f4AMYVr$-eBB|~V^>RKhyj{_Z5|^-6ehk3s6TyU z+7|m@z{C>h0J%T0wSpprX`Om~I6`NTEi0}72e(qbB~~l~J-Fowf5Tp|4}=6}$bKQC ze-x?*XLXW$y&+Vf+KjkIMeHQ2`hBW+=tv#6#D{0O9#Qo082H^=insI?bG-lg&^{90c_Lc;Nk2K zqI;41QOy#peegaRGA>0!n!*jtYoWxaa=wfvPkgIq`mMxU(>>}zZYeyO+qQ?Yy!Lz( zh>w1OKK-dip9E#l{T-yq+TCWmFsjP7E!SQ5U~jK|Ut?#-RCr``{7~OZYWl@?k7sLd zk33~}>|8avzB3#Qj+vW+zT+%?yv5qwR#}N&>vVy%Q_9f_D_$jxgyy0|EV8I#cKNHj zemMEVU4x77a@!y$t?Kmj7v)fXE-fdFa)@gC@IwRMR$%3lh6)ENX5PLs(~_a$C$n>x zb1oTqtLb#E$i9Tsjfv&xYj~DHpD0H{Fdj%oc!T_NMSbE)p-yxSm#PyVk~Z;5jjO0l zxN0VZHX(Q>(Nw~lDvDF~L7}jlDDyT#Mlv#s8J@d_(qY5Mw#8y7M;+h^^lpXSZ zF`I!$LT*kbf&NJ_ssImO%y~xm0E;$kGuOSTee%q@;ln{lax`47dFVg|xLJ;V;$)Oe z&b}d48tewFVCe%j;L0J~UCFR~YS^>8J`tFnhG4ndGdwrq$CGtRmx`DHXQzy6hoDyM3Rq{=JR%F*)eG?&n*9i`J~+n zYb=imqMUMBS}B*@SUkti>hlkB6GamBAsJci&nc8&cRruJQ9nQBeh@CpwdzKMD!=A znPY$)cwXum^;L?tk^d%|za#qb%ZUWEki_`|$rI6BGQhUKgg~5D7@?4hDeJWZg_VNW z4qQe@Fo9t!uc7lDhsWbkze|57vIsNJflxzBbmSj)bap!A=Nul2Op*)jmIL=BAF@Z4 z<+O>niFE}YP}1lWOMIx#vf1TrQcknzE22J^$&aFcFB$u$uw@Mt$J!36hMG<*#7$5X z1+)y{E9AQ6qySL3tIkZ^I6=^@s_JQI*lF0&bbyUD|ezoJqu) zU%$dbNJ*sHBpE!1;yq+oGGRdh9jyX>iXJndCQ>kH5d|hE)i>lr@w;B9o+BhLoeX^Z zWPHPyCU>$o^3TWbdX4v=Ih&qM<(8g|PZ-A_;Nd3fc_o-YCoTq%pyZwSDR)m!K4yRv zdl63h&S48Y3fa4=YHF&k1iJ4IJ{%u^cxc$48tA{-pS{aI+~OR;uoTI4>93VD%CGTA zSh9g@yw+z&JurmSMEsDWV)iftuf1#Mv&m<7x}IT8M~{B@x#zws{;H1+4k>xKxU0v*%L_j-+3 zp`R46l3(h_+=*o?sp(KvjVR)IWNmnTPiJR; zZLO$VOCj`KT~+Byr*lVmc$FyADSsa!^bc*h{-%Lx)J}-DYXv*Om-V>9I#84rjDqUs zpkHLXB1cyYi_>l@r{o7aKvob(ya?7rVm-OSlj-=IZ^oZy55%8-I{s#U4u{FNo;;F7 z=oh?`$yez7Gx+~Z{7n`}!e}86dorZ{f%fRWBO!Z}ZbJ5IJc%MKDY1x3B9Syg)O>kn z7+OmvK z}qeXoSv@e^U7bDo-VVRQ3FF<=vwVebZqR>uK6?eO80GHF^6vXrYKd%@b*upq#F zr(`bTG*bvU8LZfLWf3|6>HEXBp(@k@7}8>0H0zOF+0U3dqt38jG5NcXOi$l;-}Lm6 z?(RzV1Ewa}Ec@@}t*vWY@LAj13Kg`dleNMwL^YL3VWMDm*pWG366S7RQCY`&gQ9^N zxEKWV+q9*HY~PM%EVd9OMin&?U3i1ohw0TY{JTou#F3shO7+$xujNW$zN-UwnzBzLozL9Yi~2g}5P# zfe>|Bq1*8=9Ys^Kgv{KIQSbE)o5Cj>BT{4{U2vKh0Cz471GR7gb37_}n&$axVzAleddgbzN^6(`ELD7b2 zi1Z3wK+-V@BeFj%=pjXIunLc#b&teYbQl#kk^TwBBES7Y zz~u^YC{l?}f@1#ss#n_f?Yiaj!C+;g!fL%P6p~L`Eb3y@NV6(gEUdmM+Ppu$Yl*$L zxF@cxv)NpMfciGCU1OtqzBazA+E%?Hclkb-n%WzW#cuO;v*D(gMO|ucMjqlwGi$V1 z_Q$6e)wZQQal$WzJRz4s#W+bL_K~FJyKEfgRdUs`v5+FDS#i9AOR&Uh;{cl1heGUr z)~HJAB8$tiHk7=Ip)@v)u+Gb_wlC{>Eo%e?TV!K-wJ8EXU?9Dw?tqepdfPa*#h|nEU>Qxzq;OWDP!~*n?^GeO0 zMt(%fi@egR;2ygem?X?3b~2S<$y}Dsgjmz{gOyF2`bKZ6l&P%q=S2L6(fX6mZH)|V zF82*>iBg4TqRBd~0=hxB5f@LmZB0C&Wj>QD2+r{!paB>o&u9Z9;q>$ zKG1!#bkC)8%G03pwWL)U>vH)K%n@@B+g_5-ubQlCt|4*fko>0FwvR}gQl59L+6haP zm%V$aLak@-?E~FJd&NG2xMz4|~ACmyo68V}dv9{0J!0Sjvg)@`2?%s7Ydo z_XtAg>*9H1R@1UpOa&iyxuA(F#)io=GisBm+o!WWU$<$x%39y&?;bTbvStbp%QiY& z%sKkAwy$rTtvmFFe6Xywb&R;;SZiz9A%&4gsr&v!i{IapXlu-vTUyMS#i6G;~RbM9r-}Ts?O=x)OXqIRW+PF6E0L>?u1ROD35~s6TLN&RTyi>54NcPhFwBQ z!bF`Uks?Vy7;Io^tQ#Z~r?XJy=m*+m(%YB*gU6SG$dkN+C4m|TB^)0tb*%{W7E8ut z4Vx*F3JLx&?_~nRU1^&OK`F6zd%9~_?6%r@;$b=dD%^R(~w!Z|$pna=2@{ zHYk1tYp0Rz49SPY8mtp^0rO9FGO4aEd=8xNtvJViAtSaUV!ssGfF??Y7&WgbMuh~L zs5<*W;R>8lC8Vey*|>4@=8YSV#N&~NtC|=~5Nl8H$^;ISCvYZ+SkJ*B*zFHJ{vA2f z)7cTKsjaOEb#(T;$OO$vNe$cn#VA7KX3P}gt zU94dc1;tw_MbY4WDS7l3rV3fQ&zFL@S$w-k^o zLU8ZKkZ5u-bxjW1p#u;#ZN|7;xtYf&C#VuPn^6xCMzGo7x^=<)hnw!cdlULqF9qdU z&>mO@C>RJKW#C9~HHTeT#FVxGT^N!V=^BWO^l~RY1pxeXbNc4-^x9qJdz8`j6a9me zyBZLh9re5Sn0Li`hWkA( zvgTjz3oClOh?n83K$xVMEwXI$xGlJr6pDa2MMof4lf@f>So*$<;&b?zuh2Hx)kwbd zW4xmF2)#cBT9^f+rnE=WbV+ZaSh{lTlMNL%G45a^eog27bd9!8jyL^Sj(SB|R%B|+ zXT=VFplkSpP9vKZJ`Sobz=Fa-M)f#wF)qM{-ar9HNJS6u183l;!#?e4{x(vcAqQO! zvz5lRN!lvy;8_zi2JK5@qRI*7*uuL|IBufj_|kdWH-70lf&<;7w}T=I^ueUi071=Y z!#@;fqU~aX5%ZD|bVNpkJFet4>II<0XmKaG5;0RCsbSTS$`$geRHV@a&VtU&0xC@F`NCz7>YwfkzHRg))Jb_zU!j^IF-IP%Hxgy2K4 z(BZ^mE;%RCjsYL+8h*I3C7dA_EM1Sn$G|bbFF?*w4Q%96g%Zh;gl3w6h_hf`v`M9a zD17*Y0XU_@4&af+2@XHBf{U?BzFqRe0{`nu@Pz7gUyl3Sx9O9^s zFw|qc=e+NqXzdcdQs1aw95>N-f-~VN9V3Oga85f$xJ+NVp2p8{nYvFO4uAAg`;AEv zA0zS-wqm7{hZ~(I*SO}F=I(BqRSXIHIEnw-Ww1tHdF^rw8_^pI(k6OGG=*@7tZs}d z8DLR>q!8Joc}IUpvZ2OBffrCiLLOQ`pP2R${B&68aH3M+1RH{(4qv*4_TBjE*XjE# z$3aBU1Jr2Zbqav410e{M9ISZL4hM*~%n3}KmSafhJEwCPl|~^12x-X+fI>nl!cWwc z5q?tgcvJ5<64M^dDfONDr+=~T$ReqeXskK(2y=+P)GHukUME86g7|z=K0?ptIHzri zZ&I)5xDG$sr~VOq=@|8s_Nkw=1uiBjDubZLJ1lWZX(Xyel1fn!R9rw{AcrjwgvbOA z(g^}7P=j{Gf5J-f`xEj=>NoX|zINJb>x}muYs`mZbd7O*VY<$6Oye1RM$s`r_ptmi z2lUa<1ijXWrS-W;`3PHZ&@kTOfCx_bFMLsY98bY6X~8_$@fDhbh$%_)=E(GeTq_Q2 zgvY2!C5WzQPy=3ESx%w$te}i~HZpB_ds<6`Yxtrq>Xy#VS8j{TA83OC6XM_Yfv^zmq)A=5J!8KLed7V7=oPhhrQU(J!e@I@{t04f$o|-gm8FFvg7^!O&i1dg=DWI?m6VY*OQTF%tM9eu?SmWk$f{Qy`c@BqcUem_!?;gF0$*^pB|-LT7b&tr#c<^9p6_38cU59Cwn6Vsa? ztE|q?M3-Lr3F`rym$)n--bc{{9a=~OR4-Pui~8LDa$B>O8#(}c*ElLB3Hcy^7!X)R z^WS90-(e1m<$P63ZLPiPLyP4{_l!+tWZS_2S!@Fb6K|hr9%(vHp2+jC^Ze)@GEh;C z5}z`ucmXNI6>7E$JysKW(xl-)A08Uy`tZDbDEhD`H7LAlosQ?^l%l9F^lj?txud5? z{+s;s(L*keaHsiq4Lqm*c|%(rJCsNb4gT8Xjd&h(MLyObo-E>=!V0hM>^6B#Ku31` z?Rx^r^LO;C9}nJfo&+GI-PS*xM|FTS*;y+L^i!-0s{RGqsZ}jO6C4X;c#$Izk%x{j zh|@YoBPuvUOA~m<$t5;vqyUF#&0Ry=Jem$3(97CJ5GkIL!5S>K&V$Dg@s~s6qG@4(tU_a`#@_`)cue+&!Kkl zHEOFCgXU`77nNan=zc1X;!;CSBVLUnV@vyylKy1o(%ZMEw|N3El)&R3FaRPO>Y2v>bUFk( zN+=s@4mAUDxLq?1+XY3{lI@@DD5S(92%nP(kBE^XLV=)7HREVPl@^u>6kaQW68#E8 zATg}*P)>810KIGkbrKzr>MBakkQjMpOm4A}Q^_<*7kG&fknt4P1Ia{+ zSBMf^$Tx8WIKY4bu*^{uAqB*PYSYF`WC>AVfjNY_olGN90fD9D4WZCgK$7kiFr^4h zem7Alz|c$lJ&hHCc*!}c&rdIPU<0gQ+z1=i9uDCO>xOVH zL;io_(aF?Fs&A4dTLs2Mp^1XNhHUL+%FZGnrPN@C?KZ%e$_ zEr`(}vWzq)pGK*QCI{U#kt4B^X{odaklTC90seZEBdLraPvp26OQptWE8-3aZnRFP z3hNZ?mWUFi7l7fQASL3`5DToH$4brRNU9~?dM!0R3MG*Q;}WZts%+>LkuU{m{+~QJ zg?dN;ux@u3b;rVf$_XUa1rS-QaDikA%JCo# zO4!&D?x>k;xKoY_76C0_iG-enN_K26#q)wiJTQ#;$x!YHdBvgl7%l4H;Q$5t`H{3y zX#&0CmU8%Nr~((>KuT`@#O&LPx=|51MN`S|m+26g*3)iEip z9%ZZ;rLY2A$Rvelk}Q2#=|H>@kC@f9=PG7rUghxi6Wh7s4AtTXC)A!3^5^IXDbDbu z(h=T94)aZMx0Gutq5eNDPzqe921qWIlJsWg`5$_LTZ3?;p*a0+D zJB7dDk_ZcLpXb8BKGn^AT*4H_jZ(;j#A1R?N?5IUViLt|z+C0yhBKJh$fPK&R+<${ zxIl0Rd;Ypn{~C{z-s^FXB7Fsw!Ye9w#H@YJhRz1}D!V7dcE<)hL#TXgZm4awzKIK} zOx@0oosq~?o3o4kZ>xtr-CeD9I1UY_QfcV2Ol(CR4;1fjZfe=GX0bnHL+vV4Lu++q zg9$0E4PDmYnAO_a-s0HMFUFQ3`3Ga8I9lC;L9aRGeqo?4=)n=l@1SXjCdXA7*bq}3 z533<>AdipRJh+I>Gkhb48|Ub5=!gsnzS(RZY42qCruATWCbeK8T=R-&;;J;szM!C4 zM7C$>nYca;8BKpv7Uya(mE%QDnlLDYRT3NI91$Q?-h*=+!LM(TdmB@Jiei?i9v@j- zaUcoO0y~y0eGP5z#P}T)DJEp666+%+Ye)1_GeryJd-4O(J(id&y>>UOk89Qk2Ww`w z-ueRDZ*kX;HFTQO*IfrI;XDbVFDMI#YLKKq+c)6M|*l+imc(}O*T$Pt7!>cj4*#zMP6qZP# z%H@zdCj2LFaHpU zTqvtI$E_%^rjVx0ZHQPscr%&dV(N97Gy}im0q|!b8&DJ`{HNqYB@2&&zL?Mpd2UyH zSN`evuK4@OWDbM@^4 z?Yg^hj4ALbjD_5h+RxTT+}h@{BeIn|ir)5iFMVOq9`9;v>!Po=Ry2Ac=7>OuFW1#L zmSLTM3<9SPfN#&}Jf8_xAE8FlH{6v7P;j8BG#$!7kS(iZl=Wwr_WNYIO$8NZ5a&y2xzB-~L zm7Agu$5%+@`Ge|pYi^t{H~L#$J)y3l$%bUIc4KV)CX0EnwRv#BJvLE`7>yOPOtt)H z4hy0c90K6$=hMW0g`h(~L#;r_S6~TxO=h9gaTW>31ihL3XGF&U8Gm<5 zxFpytEqrx`UJ1$)>Kjc>>;dk)PEbh^@;rzdBJ7K(`;o9%?g2p{pG7J_r4(*i3qhi( zDG?y8MxTRb)Fmoto`RnH#ltPaw|M2(%g+*Gp-NhOSA7K)Ps*$STgC{*Chpl9lliOk zuJYbX5(q`^e>wHZ$IE2;rbs<$B!vZO`|?vKqTx5scR?{+F-L*!1dK%SBH4R zL4+(7`&YqhxN*awT}!#TmJZ6fbQVJJ>TB#CI|7}IC9kn}TxaF}O|mDnNgFV$+8h^G}2^*t7G(sq;Nr;gQ&!v!?VYnXy<4f0F(}evv)8kG)vEFAWy8UX z&?pyN>!F%64hKoc7pJ5cjTy2s z9>Qe=SrTtJ-5N<}M8LVoUdyCMw(%9A91(9X#oHXV!c1g*y(ug&TO%wa)&d?|s9i=7 zF7^SD!c-CCTKfSAqA=Oj`;v@oO~G1rwcbdG-s83RpgR`l-spqokxpKoxkiGuoqyf% z7Kwf6mx#2$%T%=O^75G|-+}Z-LIK#H@i(pgq)0%WBFl^)$0__L_aZK&>kLQJdd)!| z@C*ADVgn`lHc$?UA(R?9@02Y;g)8OT_zo;wI0Yl~x8)b)Z_{-?6D%es`2}3XBxGE~ z(FnHUx(B2`ku&n2@aqs;i}oHsGi0Q^ptUQmlUNI$JH?;NQ?giGYlpS)%Xx!@XD4}X zG}UP*`x-qO3;xS5il@H_mH)W7@i-cmh232KKQRZW3gUyl2ayXIU*rb5BvD7u)sukC zanUI_HR^b68p^fR-z_8F5F)hQ0P6H1@Uz_SCM}mH?H8FmENH~cYcqD02@H}UO|$H! zxo?ls#Ic7D{%ZeqzQ@2Q0T$q$fDx=JWRn&^LI_bR|JZQ>rsMLkjLJ_1NKwu&=|SW} zLZm9EPnauz3~NULMN?lCb8tNWioAyc`kBCq_;Iph_F&#Z>YH8Uv zG!z@`=~>-~&+49@Ne}@9?`|8pBt^E;oZ~C>6@{pq1=I~T2#|5@xge<|48guZMagKf z@N5OD4g=~Yr9iz2kOHV^i{cZhJ+f1AOFGd@diSxLw~E*-nC*}=4te7u0<$zC2?hfv zZMx)svZVWgg+iC)N&vNmvMRzLyR3%@35OQ|Ut}U?QCNWL-xm9OL@&xC@{RJm2q(He z$GaXvAvJt-SWw@=GmEf@lmf%M92#E!zJp9Ymr4be!J`aoknF+KCcV81bd1Y~I`4vU zj7wVd3YxV{ce7{)VlvjjngA|95JVvqGvx+QNC%3rasRhxxbz3&X2APS5%Y%WES2&i zRchJA!ya-k<0?*@bUWcML*HtF)I4jRHw74-SLMIXJGjNwJeu>qE1@m(=>upSBlOsxU*6!Y7Q_+Vq706gCF+-*3{jIT_al>mm2u83?lTB z-e*IiF&?JP5OQ+GQxRW{>TL>tY-M_PCdHroR{q`n_wN6@d+*&J-IuRT)l_X)p3A?J zlAn>ML?6;D^ls|aCdU>vDnGw}|GnSCH@Xk~LCLo5Po-eJFXA-$OFJMd6JBHHG+ZX% zCeOQpEXb=Kpg&fNiN}MIrVgamDm;lFc0_t4k_o(cjf788Rtw_TT^`$Ldt1!zX}jL< z-*TP*wn4l-+SB*I=;)z7up#>7Mm!=>5vx7JYCX2*W}Bz2v$Mj}-R<%8;X^o)CV5Mf zEvS|TP@8&+7}nBW`j9G3@kjEbHkaNH*^&RM3vp>+d-W9qE$2x-1jYN|B()3tB{_~V zuaKq6P|l0XZ6=MDBO+BOzcC=T6-5uy?evbNn|5x(dzIQ*dQCXIy~SCn=2T=bW-m#% z+?4$M@KAH}(D3JzH{F6#DmnGZrf%QeYuB!4k3ID<){Lp(qcX}#$Qt3%?HH3VCwmcR z!fTsZ8RdI%k(_~+^D4q*0fuXZBAEiRaAkqB!#~DQi3a?Oit5mZL?6^!5k<^EF31st z94F4drZDe*P&7ot(rU#su%77s6->Dw&=nHkqrw~{M#V4ck z0BeL?KS7srBNJXxNQyOd=Yfv=aTIs&l<(<)ln(x+zqgKbk%FB8d9`AKK?HaeD`2M# zp%&(Zu=ga_wxIQEMTN*>L3j(92YFJ2L*V)=(Oo5)KgNz`VKgAR%ctlF;-ynWcQc^7 z5Fxh0Su5x+y+=m0S)jY+M&7+_#?jNX$R_~tWt#|Mc}{ux6AD>}N^U%OagIXL6+o5S z60qhd-?tuiiV)9$DB)62Ke@44OBx94^+UCbG)+pg3t~y4Fm)g}C@jq^Hy8}Srlub& z?(0X$9?eeDRlHg??nKRMet%#cvcdvX<~l&Ft!uKNwE)$>7RR*t6Lt_TYZ26G?JUoW z)-`g>VGi$|qggyur0&gIz z19bF=pS*P87}5lUuLrBj1m|A{HD_{}tZ#^x{a`m^xhKE*%_no2XHZR%;$4rlW+?j+NOUD$ zZ7gjW6S+OYy@+1JwN81yn#2IDGo6`hY-=@Nk|;51PLm!Uw6r*yGgN|t2q;aPBAw)U ztQlvcnliVxnpvjNsUFnhan5gR8f(oH+3S`|PYMsXLnnV->*(+Ev?Gnzaw@@2>V4wDck~0{GW7N{6fEC0c3DJ0C5JToVW1OZ>vM>R=w zZ2Y!Xe2VYGZ{l6oUzh$5>95c-Xox-ucEi5u7o3fi+EX}($28Ll zHay2~IF72`SM1A5$4L&*`z|Ba3u+ofU<#W=iP#%HDKZRbH&$uePxD%{XiRJPxOV*W z+HrlWU-x->xZVkD*%AFGRi5RYn)&2trq1%wpn;6u3MzwZ?IpyBn;Z%K$fd%$w0?*M z^cIfk9YScF=q$$*T^=vKUu<03D%~vYl^&FIe37)EG7fR$oEi7+hPgBzhfmzi4Cm-w zj1V`j+7`tN81FF|?lJDmqNr{u=xKDv_36{L`QJkv9m0IIpX%@Nsd6~p(CC^T7x@sy zeQD>!bQZ5Ur2{alTLcP_EL0cH>d-!)Qf>Mi*z_A`bW&N+4pkdPnClZl?Qu)QtbQS_ zi+PJ^cIxRQcYux7!R1u4<&xGBt z6Qr2mc!s}|T3?qI{c2kGE9@KR*@zp)<7BYWaYmu|2>pkb>?`_@G@sqNy3gyAtIzg7 zEjuBg%vS#*blEYS|Wz2K@0d1kn*ieUYDV zI@z0g`)=))FKJz|SY3*kTkXN@J{?PD^vOSlBfQWxo71tWuyzYLRk)h{B%0q6eFZ%h zy<+S!dxx*p;ll`Uj4usYb?9x%L^U{$Wp%79U@=SS=L$571@s&BEy}34tkq)K%<9)8 zvg*n>db>pLDg581UzdJc`UB~Yr9YGYM*5%9S?OP;|AcMW!eC`t2^Wog!idwxeIpMb zySSj4(N+de~7-7 z*Xe^OC};)rVFkHXB@V`s|Co+jMO-|fA1Yuhg?TT-X1uXOz~w{zRAD{kLwe&JtvOR> z#8_8&;Ca1;0vASc5dnZJJed0fL|hlVn|h4Xl|X8K2PJs=c&s zO)Pf1-{00s`Ds9)mOVdyM6m- zT{U&f3fPG_WwN)|K`Vw=j>w4{{KX9a9Df%uUPT99C!9#-GUBwJfUMrJYx+%EUeP8oao3S18n{F7<`WnNMAUHoGy<%l>X) zVBofafqrYip8UdZ;01%pFO0G~YynjGakftM1|BG5^?l)rGO`=ORuO=$qLIHBaTQ>< z%obxtab6L4L#1RRVRDIZ-}RRh@|szyDr&u6?~0bi`(qhQJcGq#9NSg z9T0_EKw!P4Eus?CEUdiT8HVarDBBT$fe>aA6&_Kf3zuwBhcC^871Ev&o?H{4TEn`2 zA!>}#8;oH?r%Ho}Vgpdx;kcrDe-xsFlE4bg5SY8QT#GJnbIP3~vk2mj$@EDEW-PTd zw~_AKi!eb7bU`(6n4nYqIu)6axDN01Kzte{x`;KR_l4x>PSBZQZUZz}8jU=dY(+n> zmlStJND%gFePIt>v8#pG!ZAtjks4aD+vu#IMMNtUp4$UL0gpoisGlDIqihXSAh5F@ zHoa5*s{C>-t9yE9Jgz?Z7W-^GzVm4iiX;3KTd4JlQ%}9cp5Uk8cIJK!&Hqq`RYm>> zfuBKUwji8bF)K(u!j8U<#OulC5KuPSFI*zNluH$i3 z)vNJlvmV#=Lfme~tMQY~Iv&O2dOU9GX7f;NHrq)vZ6=e^rhfc*Gj1joulD`Uxfi&g zNLq6H3?%>;7ZfDiDefwj1p3E7SG`Z*ebge#{7!XswjOr$1wK7CHjx_}`*dHx zdAPL;QhL*G)6W))bggO5!jI3f4Tv#N#9fby#)r$QHa`xxE*lpyluDC$0*$xgr2;?i!)FmFYW#ovHe@@qo_NI zq0(!-kWaOO5zyr;-N{0z;tm!9jL#_&s)!~N?K)tE5aW=PBQAxufAB14Fa&=u@~ zKouVoLPII>_AY2~&|7RTM-r^&Iiz?heDct-h^vjXAh$2$Hm@;Nq{0O?cCx^xL91w- zG5^!M&mVtMa8Xnb1=?82J6xxYtN9Vv98=0&nuV^t(flJEBA5L{o40nT3^N4SEnt1V zi!EB0c^;Ju-Z1(H{0cFSiih-FAdGljl*-&EZfg_kWXL0AEgyWa@+>@4ys{F4+bg7Q zU<7s9O8BWZLSTSI&Vk?tnVZJj1xp6UgYZj_Z^saDn zqssx$6)f}knC5;7_cztK<2iUikdLP_NjRs0cq$a%v0()OQt%RcJGOHt5{hxWz()}- z54Z!KMTUmK69oEPs+37_7>fDo2`~g@4{&~Uq%o?C(t|TcWOGe@ZA+x>w5mS)swUZ#qM5wsuFIqqfbP8VGH1xuMGIZ6^)@ z3$gfUZ8sZ)Efk;PJ58!6bSFAd(4{|pU*xY)jXy+znBj|SbpzegdVIAEe%c z!v+*`lvO0UWvy$htM6)a_chep&@)?CYiro;^4o!$aCSHvtt}1p9ve};(L$zvLF;Cx z-PLWgHQ5^)!cO$m=A=5(HI}CO*3rJ6A*UD?w4Ln(&%&$ddoLmCn8<1rfC_#k0A!#R zBFzr1-NMY=pN1U}Bl^XH9zdZ{*b99Q)5oUv zHd|^XkH^+&Z|QS7`s^)TwvIOT5218hUA?&mf9CqSwshzVBRgBovfb{?_I;u0_~YBg z+#|jN*@HbzZPW{krLC#^-f_%vU51mq@Lwsy9PI zjsU<`LcSsqpt@10s7LK#$aF@$zL4kx0HCmVbL$rMR#nEr11~_(L=10SL4~|`f&WsI~R_vK4&-2cvxdG!9_z97BX;yIRa=K zQCe*VQO0*_m3 zdJka*h>IVJ0wh+7ypy^LpiSX5i}jYT5Y&2TLPLQ?Y8%41K*JLfUB9jL8B7FG)ULh+ zwGVWZpbT3*J@m^~b#IBf!2z@`fFd9$mA1yEGc*Pn#<&7&w;@X8JOprD|HR;&FOQ2A z_s=HN7|+tc$PoTp*6?QHg(@_2fS2~N@r{mgqLHGT2{$~d^I&7c@d8F%#hCHiDo>Cd zZR=x(jxY)3K2)x43J6cJO&8Jf7r zQ%j0P=(6C=fj=f9?p+BAH$=LL`!GoFu1IM{cFD2R4wzlLV zI$tDyi6Fj)H01B0MhXqTqMCzf1ZJbb|Iq-f7|AD|Gf|0D+?tm`L%6X|lg7?9a)Tp8 zik87_5b5iHeT)4S?D%c;c&^2OL4#?%dg0H!GfUr zg8@kMB)nGJ5TiFuz$N5%#aR$Kv>Tcn>C#EO5~@!Ri^938)EJNXU1+;QxT8&!*o!Rh^<)Ze9^n$)a zd{zBbTq%qC7wT-_$mL|$vo>_^*!pp zWSYD2=knL(--X@{6U69IHEWI&p_b-|pTo`l+2|e_8R%5H4Pu4#ZG42CO{BnzU^RLV zWsU~L5`sI4z?R4ESO1p=TcpPus%x#=vTf{lb9MGwChr&<+aXC-?0RZ!GKY`W`;;;I z5pwTs4+ewz_Vz}(-rRR;(kJ(s8!YvXhN(wpQgr2U~14eKKADio7Qq(wNs|GK1X#SDv#h7^9O^M2+gVgn=uU@k-1K3>kWF zAI=_T)7it>C0(90kZWQbyGw-`?3ZqsgtJ1zF8t53XLZp6qE+m8o1p*dkMRlk8|eBF z9`vew8F3=wsvxXVGMqszL?Wr!#ANtb0@8cOh9gw=$h-e3h-LV0)#ak}zze9$LOx`* zh$NRH{TA6+BIaZkJTVM8F;p~4hISv8mM2kd19TyC($~}9yjWb4*caIRVR(-ssA2Z1 z`fFDF`ZD5H$X(<$%K(FdxTXdmZ5Kfp`1#?~U(`-kSH@op&iEEcXR3ljY`x^4u2j4v zFA5QRlH>^ZgabuG^pWhQ2NHfz-V&H-&ZbEI9gyddpe9ibsz7`a)k;`0=$MrHa>FDq zUN6X4oao?191XLce`3No>T8jx*hv~3aR?KC@DB6}YbkVDXe|5zrdPhQ(&~Cs_5+1H zDEBc;U!Vi90K@1_`JkAR4~>+2Zru|Kg)4SE0TKHInVTk(KW3t`%y(@naGu?{puNJOpP&HPnAcbuBRG4Blcyi!MfyV_tZ<_wxqz#M9 z7WR?u1jr_;Zt{#c@hX*axq|0B{x2@(-pr{p^7*u~asnwnQVCN&r%30)J(yF@FN&wx zT<*LFNildL3LYtkFG;=EPo$AmBAr)qa5KOKbVA7$7V(ar(Ej?ezsVS95?sGYTu(HJ z8cq*+oo%{qM!Q`G=Metj)+j$4*I=qfLG9yh)LvI_-&EEHK7;Iy|14jWw{m|$2$4{e z9`Lln6BZUXg0Ke>O$l>Th-ijV)&OWyg~D%jLx{~Ef8h9^A3uIPp}ziXKCj?^%Qg0X zOMYK_IDbV^S`ru9!!CO$A4F&yGLvK%8xVF8_o1c_ara*VN^FxP5=VH4?cJ z|3SDt;`Cb%aURVwF1ZnHBrG}~J?QXcav%l+9z6=afJ%i}TXC~u8KVZ#4h$g`TWk-9 zI?fk)s}OX#Aexa!gV;mG;+1fFu_HunxMAXLaYiD}p1MQ0uT5e2!XdYf_+VT;$2w84 z;3}*Et)M_$k*bl_$OSIqjnfN+`C6_+<;C(`SDbFlU9ukj|ibwY{ro0QH8QL zj4xJZtJ!cIF^QKsL#-CSMjT4)q1=1egRvHLwNyl|1nR)KnXP=ohu*DyIpFJ63s z9n*IHP042amZiC_&Te_7gmB=uZMG72ecRGfTi0wUyGyXGg) z244WL=FjuA{%iDsqFgbqa`^qq`s{@C9x-hv&bXksDUvR&vKlId!oj_2r>t30DGgxl zyXn0J74{U76|eD4Ab%zj3>KAHVx#zs*IV@|Gob>IGCL6Bgy<0x39^v7f(YwC_mIj+~xM9NhH8b`-C(xz+#H*PC;>RTQaxH+{O* zS@3n|`r}HiwcF+DnC}S$?nIvQ9lt%C3m!@Oa~^nU{#qD}xdp)?Rq=CuP zBRQ0NNfXJ=>5iN~d2c8?{Ma4Q$fi33fu8wJr>ncxstjz(b^8j=)^B<@w{M3>9ipYY zrV-+216iln1i1;iRgG;Dr5FW@i^h`TIU?RgUSvplV(%ecOgx6uNO24WhLQYMy)a5e z?sdcRD7;F7{e^2Z?ElTfg+Y3o@E@^zs%9shGlCf9GUBk^0^dNE5tP>|dI-Gb7s{>m zdF@XnQx)NeHvhzA6!B$_pn45=R+3)cf z#;Fb~BIE^023q}AYYbTHK$uNBcKKcc;|60z63sAA{g!U#OHpiLjX6p- z4#o*iSv>Q;XkM|ah-D~Bq7TwJ!A`FlFx@{hi?uU_irlw^2@!oVY9F_Q2m#E?NYHkR zcn}rbE5;kTj0O?5s^FU$ntZRV$$HG7yxHbz7qej5w5&L))8hjN;LGaY)l9X2j~}dKNO`b znMzbU=>8p^h*OS&LXtzXjyHil1E0ZmmxtxOeC4J9dCI4=T4+mX)%Z#g_;_K!q~h^y z4hJDwGC4tL<8v&$LgAIVj*gk(p;7GKPhb~Fp4@mcxwjp;T97y7Yj_psYam`t zqiq=!OERi(p%DU>MtXSw@2U_xS{~>X4TUZJB|q~he994C=MlU$H@A*m)#1rAqAiw} z3roC;)?#su24hSScLx8HOnOeEhmn4R6TD#5@e%67T>}3LKdw%Kh6y%6 znCsw_kuDLb3^wSv%G$2m;|K6%qi$;0#=0cf!$6{E)McyJNziZ;%N{w{=z1G(QR$jC zI1gyA|HrEL%q*4^p{wlf4A$0K>w=wPCx>-*v9*Zt8o`S9M!t ze4?8gI$eN^`543BD&WXEPM!N;2~JJ!S}_({zCZJ@?;B5A)dUIE=UQwlPd7G;&QP#t? zhxF?{$bE4_DD_Bu@;6IW7jzH}g_C(g61{dqd)7%^1=IpJ7w#6x6pcnefgcOmTJdKK zX>ZrwJM)KkHREsp^E2fwnaNVE1tS=md~y>1Ll(TNmGDQemAzKlD=W>7V_z7<|0ev2 zt;S|tQ(cGo*n5Kk_AHip4tRg4a&JHhpnHS3oJFoe4SZf4c^4)pZpLk2ZGaIw)Jw&~ z#rYFLM-gbMg&)22F#9XDl+SbET?L9nzb(d}bcaFGZa2b{%04%FOR5$&aIw=qzA|C$ zq(u{dn#D^T-D z1U4ap;0ahIfPiq1R;BfdPXgwoN zVd9l)K|XRHIArsXa?mr&aa1$CA+;J|*g(q4jS)DM(nxE7Swg!}_Plz;l9CcZU{$mT zbsDa~<&>WfcFxat2AA=Yk8}nZ9F2M-*>{V@YrKt;av=uZ8@P<~v0||^h+-1I5u=wv zklh0~B?m)NpJRi-G z^7v>M{zfxj-JLib%Xeja$9^LgZEI_D#iE}ZyL@@qS65!ZA9Jd|P_Ic}9h=(mwW%GW zV;PSp*JO*uqM6KZW-_tpz*CoBdumMm4i0@3NB)9gk*WcA`9WY27fiiqSHeWO4^{Hj znyQwmXqb%FQdm&NixuuVJ@h9<1jiERUz&)c+xC_gJBA?s=9|}Zo>ce1>^@Ya&vyAO zkGHtZiY3r3t!SJ}ljGxuyxmsC>TcTxmWshhbep@a_T@L;T{m5lRZqQN)s=&La&jeBV{_e>FHdC4Ilug%Qc{Yp(+Yp%Qf;YqXWBr7Ip^T&4%v!&Kob+wz<)bL6B^0 zYjdMl-QGjv1RCg4ut4K8L`R=1Y_wZtU=>ZzBfU9%)#Tj|amd%nrW$LTo9B#z^6R*p61eZN+VbieER(=1j9N;k`(l6%VP zPWe_jLbzol6)#-4VY+YuMuI^o&p=2s*M$owPT;{1h$>5z5fPiDb1VRVdv*0W(7!OP z06ee)aY7o16rppV1dj<93uVZ8VHlznD4*i|;>yzE1sW2;7l+Z+WiELfy|5!-lm{`O zz9uFct7dzPH_EY~+)1aAM+xSw$% zx04-#>sYZTi1(4=mGGklQT8H8af}R0Vv$MvlJK=a7-4FK+0*Qo>XYOXC;)R%*HX&E*uC-kzhSIElkZTQ z{1E9GI|#0BH?4#<2A$yY2?Y~_bAyAS%R~2mf)taFLW6_%4GsoF#0nI;jQ9-QA2oRV zF^bavZ$MEcOeal`;T{p{B3w&QBQ?k_j4oQ2AWd^D%;y;PaM&8=Tu`^mu&?}|RBdtF zF$i2IyQBR-CZgn=abTl=#!CElaSVsC9z4r7>OO0j!Ku=ewt;I3sv^nbR zu94oxF8h{)1y{4B<@&Sl+E88TkrVzAXG@bTw@xPJoxa8<9M{~^Qs-!D^nKyz>2|kQ zN$)>;=FHLgHcy+)A`=?C#@uMJ*pXD)I5=Q4%bSArZMNPnXNR-dYHh3~SVf>?(?|m{ z6gRha)iCqP-M|1`M957ty=wYn`3a2iHa@=p1jD7JQVOdNqbsft*RDvn!q8${TtV(J z7eno|NWbueJS~7xw{#iDt=FEq6XUjTkdK?yZR<)nTb%m1wY6B9)Ncm|+ug1$p{Y5= zR^Q-tY>Ey=M}~VMbutTux&pXBh4E0cuXWemgY56zZdc>_gVxi{2Mtz_+1XehY}W?O z(TPFJHl-8cw7s=$_f%_-wXOlyWq8ulW^JhphTB>ZXG-RpYb-l=MgdADU5+8gV*#>2 zt9rbVmJZ2K&Sa)Zs7DuRG0KqCu%oIfRtL!>96Ta6V%TQ$;ene{q4sTiY&hHEZBidD zzKoEW z=@apXHVYq!-+PKZO+8?X*=%^g@6Bn)<@)#d@&hL}qnopBPWHU-&VH>&i!1f%6JEb? zevE&1;MA+x=hz#H@_aUjzHUA-kn>G%5+mVqrXhDA zU3@M#o&zoyJ)>w1E>qA&g-QUNg`#P%Qr&wzFhYiWH8pq>Q7XJ zC4X|JYvPLr{p~Zxlybv1o2^GqagmlG4$i&jWN#zOz&pd6PQuFfD2_ah~ZLLRUU;XMUr(d9$5 zgH$|9P2j1m1Zt%u8_uAMW?*&#utgCOnj=&Uo8Iwif(6)tye=K|pPTU-8qx`&JYK=r zhncEBfPQk(e)O7GU)A?h1zDK(XigD@`S4sq5j|`#E|ntM4nQWa@`N%{OiQIDq`(*P zy1dB$NDHP|iO|W)IZ+r@jt}q?VZjyYuNRBJv{Dho`gCe>6UwW#<)E>-*xA5y~<3 zMc;db?^C6-XJ4Ml0&Xm@jMS#D@itM0yuh__X5$Iisw6MuP(*jm2Ley>W1pEk_Uqh?r&z_Z**28=(D<7b9 z(gl1A$EgPts1MOvHdEVe4;Tb;g?r?g)JexOqLU5PE zxg+t|o?cIa`{OcjRfku5W|qlQeL`yM$)tP9S)J|$LhnkEUC8vTEcT`;4%&ly8NgCj zev4QT9mr_vf^TWY=fH&Ak$@)%8G7#Cx0XO#X$wZx@gJ=hfzy(O{SI~oZIh+x49k~Z6j#lE` zz-LVB1?t%05A@j(&7uoH-HAHlSYF^cLzonJPu?S{(7d9EF3}LteL;Q!!R<*%&ka4A ztEa%aCJXy_6>mWm`-yS3SEDx}RiB51P#Y`atj|t@j+%oPvC^#7_mIY!VAXF*I z?Iqk3=kSo8z|)5q0tv6`N5ljy74FXAgPqv1@?mx+`^&S^8`ysBtcv{88{Edx>M2ux z_5i5%LkE91 z8m-MEP&FBgrN&>hHoi_zwbdUW+D55Wv~&{*I*-6h3IH~<%3L;`IT8%EkG?2fKY^z{ zLfzb-&1CKk!qsK)1z54RXAm1eWQ49(68io|M*pg~D>SX)ws5K%lwqV4mXNvdH(przI{E)X1I8Z{K{W6YM>v-U zsXN8t_eRCM+0++Ix3s9EW1pf3^Il=6QcafyXf|QUkty_A_jSOx8c-E8;lrD?(Wn zDs@O-EAsnLk1dEgzJ%7%7(J~zv*&s-a_I*L4)piq@$RWp>5)^XM&O^xYPDeOP;kJBd$qLuvz)FMAE{3{T!B!h@Ab^(~7tJu;iaH5v^&1+5o zimHqURqQ@@Vw%kp_E0b;E^#p4)ywA&vqyQ+WzADY`TP7Nh%sq4l$kQDQ1t?SUrnM} z%|ZAhC{79$yO>p9e?CjmC6`@&S$(;s4LyM>#&OlXp>3?iDwB;9#mt`5ZjWZoIk(Z>M1O;o#0t25~otpW@EI$wxTRI zib5B?O@6~(d`#y+Mggxc_Yj}!+rX(x+;(II3ZouD@QqBLAX1Q0&;sFNDdRffzH#|O zgJ8S4wclVyS7L-}9&Wi?$r%wM1K|+4_4)nr7e@+DH8#{YJzCe}boAQycTFd@Jrwb) zFVdIj%Z7tFeuQo;gu>Y0(cFQnbt@f4RTJ5~2z=p8V^j?Ucc1o!{G9r$B{~6Y?ME9M z8XEU^2b4s_zw*Jyf0wlpE}szfm~|zrfy8enFtyt;)L6rfiG0#d7j4-sslj&^o+dAU;fT=$R0SZUPn z>oZ#{=02Z)R8@$4nVi9~7(IiAnfpD6Z<_2a!UaS3a-fF7dVOFH1SYFnoU%LM5%LYU zLAA?cmDK5>)g4;HrGW!DW2;96Whh<_Sdj9ugoXI(l?pYq-eLx&L*;I4(L^df?Qny# z9db^yd265n0=dduL34`9ATHGrT7-CoUfS%m?vs)SdwUKflXv&_97;;i52FV*^+%(3N28li z?!8bLI1mm;V+Uf5Mncq~Oi72WlX=DEuKlU$Ev;PDfJxbK^WYkjtwk z)ESl7(vrHQCw=7El~KRHk3i6Ue$0z}PRX~mW&wn4b>AyWeYM$t%NreKobR%0(ddT8c=a;PKnTRXOV zx+B)u=SI-y$I3Nr6s5tHm!Vfd6U!^b#CT!zz;=hb=EytGezSb{<7C|bRK)!cBqIyD z+%AL!GbwWl^$Y1d-OMZ(VLDtmPkccIn&X(yZ2nq4ABp7i*X9e$9BXuKnbv}$X%l>P zv$*>7YXY8vVpPIEU=5`i}TiGFtcLiUh$s;4f? zk*E??zj=nu4W_2CoZc$@o)37eMeW8bD``%=@?aX9g1%v z$70QBJJc|EzVwW2O*!LNgCv(rAodNF96_^DQ{Y^3w&E0?jawp2*#2k)k$84jg)kPkic&Vj3ks$ zsPa+?7$#hI&EBOpWbH z_4fBqdGI&Y-`|_sBQ0J3s5cVn z)<2p{bXV|ok!e0E&1Tcks=|K-Y!{VtnaHVc20A+f`53e$dXI=$bnDG~SgY{*8}N_& zcw|HR?p72nr@}Db>q#~>CVQh>8|rGKTen7Q>l(I3dy|b#$(~rQuCA7js;#TbsiPtQ zAmH}`11aJh7;RdY=7G~C8=n|~4C@bhPJ-|b3heF{IHY}~l|v_SQR*4R9cifSyz3Yt z_y%O1F#Ubl{L{_N)WN)3fXl*&5AzYT@#Y${=pJ(S7nf-H(ctK_ zv;*WJ`0+}%D)+mfz6bQRCSJdRy2u?zSoC~$*|5aPk*VVf>cS!`mRAr%`n0rg9E$}Y zT39exjPh=%@(8bsN9(@8ztK8Mb&ftJPA&7uqnLq7!}e;loFhY!B!4yKts%WlklJ^2 zJj@3eH00Y!<_gJs?t`JBq2HgqxeSZ&+Dc_Ma2><}(w~(AiAf2ydRNYUIQ-QiAhpPb z`!9TLZGi5Gd#9oYSOpL%X%|>`Z7B?BMRY1vnu4*|Txw)AlS<9SqM@pH(yTs=7Xn>f zq51|j)==Ny)fK?I{`v;+q1T7Hx{R`80n({UWVvu1DFwzV+?sgdF*z!F>>Gg_VigKd zyGgZMR>uJ zsSC2B-{l0J{RGqBWEia4~50hleC@} zwY7n8>ZFYtWR$GK7NCx1#5IIUC#D~bJXhZTcm9laFOQ|ubJ1vkRJ%YlI+sqfC_WRE zx&WH+?N@EKSZ_~w1)ke*Pj8G599=Vg4MYoqVeSTUTQfnNUsETxXzil40+*~Ci;47n z{OQY+ldnA!f1V+oTKIwb60}9R&HmxP{*#mSue?%!@=xXfDd+wlP9)6bUkTm}^2La{ zLnNO&xprpgy#r#;I2yqEX_MZk&3!Jg5v$YGfP3cOSUI6>OP??DSuO+?dES*j(B}{< z&a2nTZ?2S`|>uloq1-Ozbz|QQMjF}*XL=0jG%a7 zIrz>si*9CI`k^S&qGv4IBb&Oq_MwIv>ZtAO>SCtE_U#EgeoZrsYWR?JWh~U&?(t*E zt@V4_dqeCU95XqIi?pw?ZskmE1KWS-fYewgJz;H-u!(!I!bj7|wbhLy2~goQdkA`+ zX0|}x7k5zxy1wwI(;6hE)ku1M1jg$J4p_b2hc=IID{LFze5kv-cJ&VRDV}Z(wq}Ak ztcGHM<<^ZL&$i7}_tT2+Ql-z$+X|DLwI4%B|Ip^mxpEpd0$q@4dDwW!ivjW?XbvO6 zDDPE&tp3<5&tCtfw^;P@FnW^A|R(ygF*aZ;fXugR>xJLw?o}T~;?BpH0jhCO@cjI>$m;^+)QDvg{jeJ;^Q455`+_ zNz`7wJT$~&?BC?*lMw%S=xlO}BR+U>OVXRUJoNj+6pgRQ0`eDg&VC-F3~LVmfEK?^ zxgfb#>oFKt1TN1D2#>;j`LU5{DyXY#Y?mmInHQiP;oV$*{LU00_6GHhuMs*=u$?S@ zs?7;zPx|MBCPz7SSb(Vhv{a0MI~++C5=g^V3YP#%pvVwC6jXc1qJ+6ZaeIN!g{K!> zU(AsS!+Bo34twd!_D6X&X1FniU&OJxzmjxlVrBXizHX4w#=?)rZOWSFWDe!!1IvAq z>f32g`Z7X<4=%EnY4)M0WA!ULy>qmL-eEpl9kt?+5v!^Z46_OiO%@`LR&g&)HS)YjJ&X}>Qwbvn{K;+PyOt=|;PNj)CKOhVrVbTMfh?s6ElLs&C5sw*2P^|(|6Yrd6Fr8uoJ~Oi=7A4ng$hE za|GG!a3m6sMHFtkqd`ZliVp(q_JeQ{ElS~N1tixS}O;WLw{GU`3 zxj*wKmI{Zr&u_aI&;#jGm)ASo(sCVsMvgt&K34-9uUIp;y@E!n*wBQr&qMZrz*0^c zV?l6--;NcHkRkq21!ry`ANd$N`Vx!4Xf9WQx>ZwJ#1|=EOQ?`Bj1WMoWt*dkxvMQB zO^OQ-hgK7Wi!SK9>{=|O9}g)+wPM7!-Y!-a>)jtLI2nnA{LieLdk zb8(U9f*XZ+g3w}E`Q4DOx9&@#3yT`J|C#_uP=gB z-{*^teL0)`vie!7)QgCb;9Ox5-CSm77AnNdHJ$D45%oudTN5q$d`n`hbg#X=W3oRy zu=0H=F%a&bMA6SS*m8ffT+obk;SK5F{nXsNwBCn%h#&O=dAHkR^3VHwLPM28x3CMkQ=ukUykj!AU>? zB;%@wT!26lRtmAgrO3agHEsg5AOL)jUyX>_mo*!O-7%W3$@7+NAK2=0O#z|j{~lX> zy7#kRW3$W4<>GkT(=&Nzq2SzJzhjU+80+ftS*#M$)ADlW5QIUE7UvT2j5ubF$+31! zqnX%ot6~}{UZ#a0P)Mly=+vRzhm`{zkwqwLdBRLR-(+@669%o4eV;y`&I@f%qc8i7(B_t+L z5}ad>nnKV#pSF+K-{?K~z2NZVOy%Ifzy@asFD$|h3QA%A5d2yCGja-H%K^cvowpWm zaAQDCgfLcCe)WEq>K|m^2e<4Hkc=cFRT81k@!W*BJIQ8%jnjo#y3S=(j z9-@j9KFuJBhkIYvgmoi(SY0%dF&OJ$u~`V+jqtkEj#;!L%G&`*X9VgS<^;8)s!x;y z?@Rf}DgZPq`~J$Wq}umo2Iy=l`$2)aWN5e0FNl^28jTgpQnh|jjVP6tFJ8>*|1TPV z$yFV(>qp>Fskm;JnCUs-E{f83$c_mD>>kb_AoW&OHNBtxZ`!Nq+cJ(L?)?UIlvYfv zmRLnmbpHMKv-*GOf6%wE3)jrV+7T$xZ6th!NEpBbkduxmGI31eqph&v{aC03rjG_3PrYr-L$VrV?%4& zC5$2Qy;kZhK(d(eD9Wh&DIU@#w5)(=1piKn;l9Is7WzAMriz^lM^4%1HEx%EONfIC zCzGmgNQ|^>UE4OkqJ4-b%}P{HVvTb-4CgXRpz^u&Gw83Zd?sR|5$7!EC&cAi)b49I zl2`_+76om!KnlMpb^3wiI%sL>!(-~wQ~rCas(VL5;R%ns@jz2g&)unXb}E;NP?`pG zKr4hCQ*!SYJ`hM;O+w&s98Yyb=z7)TjoXUo7Wjir4zGE_ehh?aJgiuwt z<2Vuo+_cqid%8b44&bwVzQ%~1(rDWnSwRpfB6=Vm26A&P3&N9@|0=~%;;~@pJMU}C zEt|}2TUneOJ=8bno$TwI^v?CId`~Ly1Q?CRMT+V=mj3$orn9?Zv0Z039rDjL+wIMB z{*~8CC6V;PJq0vISo1OeOZ;Bba~uqI`9=#9VOv~~I%VF_fH5t=Fy-0*R{+knLTR{& z2|kgV+JTz_1@R17l*MJ>Sd6|Osw)UoP&pea6ow(KY2eyjTFtGpYUR-q6vF}4KX5|* z+i-yWc;LjCXeLt*+&OcSNh4I_ZyDmnFB{LuFo*peEf zB5f5H4%{w^`U?M)uAPp36z3z4J2ZIBL#pTMmd}SNOkxA8HK--PWJ?AGd5_9xRiBAJ z_#pnr=>Iw=Unz-W_%r5?u(j#@RxL*d`j&ZvR&f84qAp1wBf6;t5nzaCv3jl3alQ~4 zV+_D8R$>gaE>H{>QEw3sa!acJ;b+IkpMBVW){q8`d;jV)M{Q3&X*>GNZuT?+P&}kT z%LlD<72T``9zo#IjClmy*C?EE>=yNLsoY9xPr%rk2oTm>TKJ8>Ke&pELpFZ&wo~XWQPhW$l?nr#orX60d`$%1l zjNsthzW$%=>;KUE=%e1b7wLO1@_9mYpT=+#@dcozx7c=25yN*0^0HfKE;7Mxsfkyh zCqkpwHe1@qdh46w_a~EcgN+S6V;y4eJRLDKHg@)oJ9h25+05YXR*NjPMHgr*C`%-;I)c>M{ydf9!BeZ3I80dqT&S&>BVP##8`Vn$^tj zos0;g3l&NwNo5Nt-3cwRQrQg(BA=7G?Y`dc@kK)XUa`DJNTBhjpEDU330U^f8x_b9 z57o;Gk`JXU{D|&FOO!4vVS+(cyOH5%!4H&#GSk(OYi<@nwwrd8N|#V@S);2MIug!x zW_=onMG>0V@V$Je2*BZ3-p|vfAlK9R!l)r@5AUSHFut|b-SJz}_<5YYIthloZQ8Yj3?YUu^9$_)TIVskf zRoC;sZ+?KpZXFgX@?3^Rw3cQhL0?#3R|xhB8QnwDGg1m@z#-vWYapa9Jd=BuN8)PnGpG9y)-!NM+!Gmf}x7S_Nnyh#a!a z@iFT+EXm>bYHHl>eVH`-4&dr#^5`#;o%Y38~~5!BZ18mNoJk3_JPzgne^ z4j`c`_Py4yV{&}+J>6dRNQ0~X;LMCL*=Az+Esm;W)2jo>ieZ;p0Scm{k}~vYVpvd+;@JKI9@v5-@T<7~4)lUx zU>GNDiL)o=_Zl6ZuRjL}>ok-Ruwy-&@C;x7Iq*}M*N_6pTP*yUXT-LXMX(REz5|PT zTYbyBsXYKeAn$5`6-8f27cZ61O;!VDAWzJOY$FTCPB7f6bMu?-ia0j}+R9@2v>-TC zE|H0&pO#RzV9u>NslX-`aL#6qPjt3Xq2O}Yz!rv7pG;){Tr!%myeC!C5>XZDtR>{V z0(nTCM*|93Pmoo(Su;dOkPW3;O%6>K(ds|)F`&%|BLDpS~ zi(L&4$5eM$qr)}DqF3_8%>&oNTWjTp`gE_a;c$b$`%g;B@fr4_dSY;kH168Y58ct# z4d*23TQ2AgThPXSs-qaRhB@?`@}vwv2v^d)>WX9lvq82YN9@Wc*|>k-2+Zs!Me+yNHjimyxf zy$O%2X@guN6p??-9daV90xI$nBBUcOk^EeZQIxh83Rn1lmM0&x0i;O&6@G6Eo10=j z7S4gt$kuR_Bz?k3gO~<1b9hNGpxn;q&ushC-crf?w8R!m&?Tv|Aiita zgxjVR^RaMQWu`Ko+%<$!XOPW4N>br&5-dRF(?~;sWp#0xTFkCutw421!#NaSGYMcr z>y7^Vl!s9EI<5X`6ma9MH~j3?HGdE>6||Rlu$^2Ibu&WFfMb(V>v%B=X|X4DVd=t1 zuY|yzw2q>rNC`uH})T=O4*aE;zx3_)+|I1m=8?)Z;=iU|5!Zq+^RGiraLMR^JjX0|1MUqR8|p*gofTNzs-4TZnVA>wyfasb zjgFoi9gQg?f0!z&k^3Hd?8alK?^E_ZaP0fXj_qR$TYB)fMTvnrvkeE06xs68p+sWn zsIr%UcgQ!_?H^jVoLrBG|3S|LAa5MUy_iWvR-9)T_9|FIH`6def5K{K(&-uY1kFi7 zvKles7?_S0g0nn5GXq4Y%AtOws47P60=e1{mEgEt=@)#xBQ6JcfiONqL*pjh!Uwf9 z1F9&*WcaI3|12c5d0a)8j4E|BnPGI`!Y=m)gZsc*JQ_dL#};iJO&;%PhY~)RXq)`4 z)b&DkYU&U7?!9w3yCr)vor+7Ly2b}B32)!9+5BUvo-Oox+&va6J8g;effM^obANjw zyxIAvXL=;NX;a)>)A$8&0`~*ufY4Ok%8#V(@Ni!}f`A`b5nsT4q33IRO;p#`6|S<` zxgvy>2wpWHF)T2U&~lob(7fTvVrOP*T2Y8PxJe8Y5<%3dpVM$lH6sa>ji&MLa2^dog(pS4TDAr7NMVq#2q@b)gFb!mb zOA-VXIv$#&A4CLkw)!x{(lU6NAP*uUM-7@5dk)b=4*mzsGqwnL7!c3$Y_Ui@5Jg~; zbd*Q2KzQh(0LPGlMu21!Y!Sh`>*6T2WH=y;v8dR-VHTkJDSA{KR%en$&MUch<^1TW zrV|57fXf2hygg(YSrG zU7&-tdq|40vsPd4@yW^Q>B-6Cy}h;Sll^-QZhiUz(oW_JFU~Di>;daoDy! z?CkZ$+P>fycJC_OwR`s$`e^;2wM$?IY9Zr#O^AmD#q7%Xf+Bart+9$h)NAl$ef-wY z)1}DxaB`-jy;l99T0|TvlbH}yVpw_lttbSL96n}^yvCQ5|T%VBO~4I~ar^7)8X7ird;8Aevcu^l z+VgMVy#lWc{C$8tT%Z%Mcviho`a}9YD`eFN7fs~?K z${0BppdJGHSk`#>TTo}T4Nqu9>GNn#BK))8EBV3dO=58uJw zRc}@RE61N1k4xYpy$W8ycIYFN3k#16M-%YqFJIwc#6j!8S|BoA$x7jwuAK8QglDk_ zR7>a^#SDO5iipe#RpeQ)Z2okyNB#F&ank>}-ci@;bhg&DHeiqH<2)^Fp|-ZySc zLF8Nog8}~&ufz+ug2|1QLyT|LNFoNR4KRbdO;WI=U`R2px(qb%2a_h}1DUHq$ulZ^ z8&L_B{iYC$~EH`Lfj70MTrAaFvthozxdY)5;$%}agt+S=Q9 z48#&@Y$yPt5&Y>oFvbel=Kqt@xYwk*R^20sGVw7^;MxV5=fvend?R}IMU^3;y0 z-=CVAN-Ha`A+zz(G#g{j$+aNPWm08$VzD7LMywjrOS^XN`sX`$?M%aOx7@$G_ta=* zt=3(0^EK91D`IA>7&7 zn+^5$#2cHWm5aX4&allUDN<8oya!oULxE5nJRIu{a7Uy+Jmu~7WW9aC*~DOywR*a} zQ{nzdaxgI)>?7ZUh@)%;0y89H#*nlC5vKy?4f^EL=Abmcbn4X7DP~)%^71j9;1>x|FvUd+pN zWT{jNj*Q&v^W8ATL-j88Uk68$_xAc$NovgPweVs zOn(zZo^oA%L0^9KSCTVU*n@&oOJF9bUdi^=j009f;{;*1$OAX-Hwz03+M8HmA*;G^ z8CEU8SYO>aCS9RPKo8Cib?|^XxoU^xIXC0q+FftUpPQLEhtx8tao(Qm1#i#YiNQd4 zelY%!^apzV;%me(b@!IsfonJK8EGAFuCui_k6>fGb>vE2U7)kWfAXZiqcea4OfDCk zDJ0*8eoQ%-H){>mkjLoe@rOdel|nG|(D>%4mN3X>8|tIIy@(@3dV8bw4WR9qI({5w z)`cwRHaGNd`u+Yj&Hy{GtZ|qPgDn-S&Zb_1wTJ)Y(&okBSD$u~s}jqGlarsO(zgK~ zpId!V99#_&2EBGSag~WiiDmF70-^rCPUpH}aUkh7-brEi^PldwpOn ziTHY>4GpYF<3UYR`t3gr<{=;4)pLCJim!v-tRtY*2+)w-;msb^sOHx{fYDw{7 zntNJFRe;ec+7km>3YK#P1;%BOum!sziGhniB?`Sn6!(0KCz$Ts?V*2T{_oqZN^fRu7^q>ficDzE@-6cH(+8(|?KpN@{3me{Zj&H87;KdJv^42EMXC z8Hk8T3>k|Xl1o?oiWcboSlKaDX67~rUFINw*vkqs(j#CvCfBG6kxg`6tp5kh^y*75 zEx!07sgov|`vHlcr#z9eEECjyM0C#+ah}1{4?_{hfLYBsCYzGGb|sU$B=rZau?~`B z?E~NiU@}Q5{swUmS&~?yCANYC_v}epn=Rk8+v)SxmOp_~AxJG8_HWiUTk-#!&6qg4 z&h}Lx%Ag(?Rt}EwK+IVyx4mXW4dxkV5E%)vUkW4FX7imG8=LslS8~abT~4Qlpyb?a zb@hGi9lZx8C-?O(a3eQ5FdK=bZMN+rqcd_-a$@42f9g{Tke7!$J32ZKqkcs?IdUIJ z#9Af~AD+D9cMUprBi6Y)kf(VsUtP%zCc`(7V~!0tDmR*2vSHAT*1SZj_Eg(UB5|jC z3JSLXFc^C!w%5rV_-$RQX0h@XRPG>d{>l9}Oxo|{CIr^Bj5~#2-ACxng9HM_AGwM| zSWvy9sr=BD`7e^(tk@npx6xgOE6Jr(HEjHoj0D9IrQ0p4u}1$9tpbJrKS9s`C|}+8 zsyTs}6Thv(hy`!NTlz^x0&HVqGH6rdpI}a~cxZC}{>f0B;K#RFxaH<4QJD`n+oFSD z)6}81K@PYTP{n_=E&9(WRX#>f@i-f$XYI|Cw>dt-CROltR2;)oJpLqqrXP&ORR8Ud zQ1v_^`P~X1IPv%(5a~mGAD(tVq~&4jKWZGPrqBNsiyt~1fBf(vH21)5c3qV7nT*E| z9TJcDC$hvv{Fl~uQA^m!&8j=~jnu5l;dWLVTOfR*1Q&T(PW7<2?A z0Q<;>(G>)a^g#sL_%ocHwt``40M-EaCL z&1Pc}Xy+3InfF5(wXg4o95pB8a53 zn@c90u-xo&2`2L&$Am-qZAI zYEyHdwWWXD>GZI|%k{w?)N!h_TWq$$K~G0VS64^O)8Xl8ceQzKwx+I*I)|+*pniHa zTRO>wN_^V{zp5}I2ys-_a!1m{1pp(0c&5~%X2VKRSS3&fBslqWgH+RHC{LvZ9u%s6 zNpW{GJX2b$g5KTJlj+Y}+XD2n?^=kEDL04ds|OW$9K?7Xk7v+!(3}B%I|` znX8~gtdJLh=7Lk$?fGkJjF9D`ExMnYIBbEoq`F6X?1=lCF}v62nb1*0!bvEZ_Wn+U zQR86K$6|ZIs}y;1pXOspt)mk^GM(!|JL~WVlBJ&9v~+~L`_!rRQ)@9B2&3{O=0yme z)f}zfI&6yK>xc;<3;|sa|FuXweEU!VeOAH`;PP^B0gbD^jTkczT#(7k5M*cXBZ!UH z@r%mS&VFada0iRIoUTnSr*rp9_5B|8%@BK$++LWz>LYv(4-fr?ARtMZ%}O#*@2Z<; z+Y8azNcy1^cwhGffumKIot~*@0lWc4y$E{L-3eh;kh46k@`2VE2H>#Ck3 zs{z+*1P0tLs4$#+!wi*XU52Nek&@D|eZ18B?vrn&-;$n9zm;CU%GRQwp}e`!*5Xf& zjXcUsZ@-j(>7~h+^M<}rPWCp`QP_j4X7EvbQfrNR$9ssI9`}DlKzfZChhp2%H>w=| z887}mGj#|1HTtK{Q%|GfGN_StYl^Mg+ui759$h8-Yl_Fe@4=mJ=UE2CX@NG@aqKx? zTi^)P^Mp9I!hk2hfnn;6m14Km$bz!(geiTw5PL~I+!GXCOW(KhpXTnL`_udHpGzM} zF6MGfkX$WBSX*LTHH{`lk?7KD$+vIz0x^`wrp5Atwl1ycZ1P``h(?}#0-R7A2`kc7 zGN4WePE1Uk2#oS?FrpL%6L5k;4A6CC?{QJdIn$83Yx*~ z4E|g~Mkc5Uz9b!3c}1dP5?FG@3JhgnS)uIrIqV) zSjJIn*#7Zjgw&Mf4K5vvf}dg;TI0I?zvVZ6Ly`jgX z*XJ<#`w<%n3akF(yA3#ll2w29Fz5l+pAA>(n4jaA4VnNwv??bIF-6@eOlUk^+K0m7 zN~F6g(gvw~Hsi~<1yhio^}^596vi|`9Vm{3Y1$rOlgydX#q z$C$X;VX8roloasqu*E~5e^wCseAIVp$J8UfN6YV#fH;*s((G-<|0CHcPq>*~;>a72 zUpBbwBT59pPi1V!jxhxxP`pKH%R+m^K9xNzJ6|t; zD-?+o!r|T?hoeQVXcZS1# z=>^~!9eAl0kW+OZ-A zMLLOorwAKgpRv0B#aoVBM5{*>S;uH8JH|@udFF9m!VJ@T#xMtUG}xLe8iOyLDuU8K zFaQ=AH;Jk2A42{mvRU=Vf)rU<=3;P}FKh(7&F7gjAIa002;9RgRur<5?O+{Q70^$D zZ1+SZcQgq&t6IVjC&e z8T2fiRtUSxoI<*dt7EcEgt2NDKr0UMmmUU`rVSCHzQLOB4YO;ymRWsD*5 zTU#OLU@iDk#0AH=szf$A@k5-CEydJ%$poA?7GD{ZpCAG)5`G_pq~nUI{t)FD)B}wJ z3~ktu7hQ5NUVQJhr!#h`ZIB9U{y+cNjMWw5s^un2dnlG4X8$QjRook63oC53W2_Y z%m-msG60*gAK$0+Gh9-1XI(z3@xNzpb6zSs4xInMHhd_32U~Sub~HI4013;P0en2n zTC?wGrOP?h^g-@bDvz3lRr4FPFUx=7Rd!AVxmXL$M|}espKD7`Pt_RpTj5BdT0;v05gYK z)_izt-rvT+y>#S7^~D#NX`LJWprfoQ4q{HbOGKq z;Yrcm*0mO-Os9v34~9bBEpGRi-xp#`tnurN@c-S`+vCRLzi6+T-?}~Fw$#`f2YtRs z*dN&J_O#Ts)`^v1gK+3kZ=1UZKj+n7X&mT!bn~1$ps#{_1r5VVB-9WNtVvca24I}Z z?ccub)1<9WL?gqQ;{pHi(V=K`g4D53Z`*cP_voI9{K>J=En??zfB!HY8Xej)HhL;Q z0k;ONPvV?i7<(Q6u3>#dd|Gqh^dLyhT>{!vZAO)JeqE|sDAi0) z`u1i@8-cK;)L*usIV}IvOYK=-EF2o=1?)oMm~GZ83K>j^#neu>d>(6U85^SnCS$(movZFtkiU?|1k5# zX2sgsfdqolEhjb|xPcF6Sn&I~_d0t9`LW%;qq{@f+5COG1W7@npC9BmL2Bx=b&*Gat)Q$3*s(I%vb6Zq>VOn7L`)0@Y(bx(y_`p{uBs1&3!>WQ{qR^LpOf0oc`C6I8zehV)T2x|dVqi@m88<*^k4va z0i#3S1X|Bjg*(iF_bp)yCs!2M%D}R74FDBIG_oT)nirKoD^;w==o4Vs==L)7Khg_i ztmvHiy-p%_07L+Yu8B}Lz-?br7&ZXIfkt7FhXS)lcD7+HHddZ6CL2}Xo~u0GC6d&r z0rYc{%=7?(5D~QGm)8+@-=%{{db9JQ=+9PltG-J*zuxMCUh2MAjNLyE-(>+{RPupdG);iQZb?n#_X%;9=lJ?~M zZHa_O{V~!CmTsZV0*6vrebx{f8#UKq04C@QjTZLjNTLnbmw%Ui_+kD3Cy0rHLa*|D zv6hhC5v5s2eDrmcrilntX$eKLQ5tJ$5mW_KniZ-o1b4!p@g??jf4 z%Li2$6ze`ai0Fwnl|ie4+KHPG?7Voe@0KoHP>ZF~1)01b&^o~>$ZcE7K^4D=SZw82 zC@>_xDuV&k@P*3UAz4HSWSSmm^+sdPSz*?j5aiaP{vlYmVT?wfvoen@;eI2j@JS&R z4&p~yE<|n2Z~~Skz!fDjA5bgpz#^m@e*fQsym*Ve2k}TBW|bYG98EbujDV8Nu>)!r zS^vm8pJ0;da$mp8IW-t(p#)Hu-N|apGotV`#zlob1D7ZsNaXn% zO4sxc!?+~fUVOiXS7*qexctpOQ+ob+@B((M`Z3gC#Ss0~s$Zl$9(}$Lo4g<1yaa5i zJD|DVW%>=Y5h-(h>j$E;C&vOXiSE8=d8x?IsVcSOD6*q7S0=N-c?ml`e%4i?y7_D}aY_l>BF zseO*VJ(~)KL)agLXXEkNFOTeV_D%O=(ye2jkS=GzHMqvvW2ub=Sz-eu5H+dAc^H9VR?! z3H&aq%G;J^DSJ2#fGsUv#9+YV2pi;XSK22-`+{}82KQvrr>&*|-7erdIczcLF!}-u zumUE2rCp4-c)wAdMQ$-QD>+NS0ZyS+X&5!z0MLmUx`5R|A43@^2aY$VRyqh7Kv)2Z zTI+ra1deVVz18hJ^D*h~)eXh9-8cunGTKIao2o|=LzAwHz;=n_!clmlhZ%h!8g3ak zAIULdiQ}m*(7~mjG~08rws3Q=w>jjFPBb^aRz@(cTN{n_Xvg;UHaAa1-J#~!B#(}$ zUAJ7Cu**xp`p~RjJ)oq6V}+3wis_3~79>{w|Gd2kcw5(XE{c5)fO9a<0A~UOK#<@B z5(Gd};2=t(1WJ}@iGr=cwyZd^tw{73N6uiwPMWxm@7IQQRHsS${MtBmDSeG^uWPkw znkuf_m!!Q-nonl)BHg^aG&jw4Q#Hv;lipkL`2B0|bHGE2l9jaYK_YPGv&Xg9@UOMN zM8k)j%v7ZCLEmE$7AyPexF@}m$ooTDC2j(U@Z^P8YnFJPwBEIPrIjDTW{v+61>Z3% zmWalR7-3@Fi3v_a6r8X{7$8t!li+|6ip3vKVHYT!%+k^dQX&$Ajqn@9I8ZtdJUh>o zYFr55>y9C#h}?0&>J*^gNzy{AtHgLOpE${{E+^-{C-d1{<%F5 z+&|X>b)tQ>)7g~H(*I8R{n30YdHc=X@AtCriWVe!32s*4;HQZ3C%S6*Talhu;bV(f zJao?b5{R6-&`TrhVm$*Ray|)-rwEY3I}H*Yo=ZA}9?oleM0RPNs&b5d{n-WKa#vWJ z91(tQVq6FpF7%loOjsc>ytNBLh$eTNyY%=(8jlw96nSs4C%~2rcTi*)_8wuQJ*dQ@ zTY9oNN}-#}_H2Rv{~&J)h;E_{#8?tGOhj|It_4%i$7W!xK+W_(!)uXEaOCFLrhlQb zo5KH|F(aGe*;QNR8kj0ASm+T8Z1w+&Iq$L@u-uDsnIygvm@5*R2Jq)YI9E#8ULe^7 zrWOP$8lD6W3&g(wwrdhJj!gMD1mcS+NXr8ZFzt*UArO75X08O2k)EF0(P5YW<9-H7?x@P5HNTOA)e=TStef_l|n3UZNYK{=!B{YZ5$EO>!Bu?P6|2>cJ;_^Y$H&jf@OwSS5x=MjqR-9juT} zIL6QD8fKYG|l*)|W+AqHe(H6D= zF#X9877aO+ml5DKd;a{=`TMn(m-sK66InS}^)FYx2eBAD<6lZ}6%_J=@HwNbKNiCc zd?Q4(DY~d(S%efoasH)$ZEtK$Il!0$#ib*v_f{-a0+FC%o;6sPTG~*}oCO`wP{wiZa{>p+iZ>OknQ0S6HU#@=Z z;7n>q3jb#geoH#LGH;+Pj06R*uP(l~lS6Z&6pTiLrNrw>P%6HMZ{>hJl}tZJKwaBeHSsI8QLl^}3cdmhv^= zU$966(Bg6Pgk+gI9e*`z0xQn#dAd;UI)O|Il+cc{%a!!33bnJ=&(=gn@%^tH9A02c zW?<%~!bJCg7~KM_*FcdgC(hbGi-#ksDKGajx-yIY5jk^AE9KhKuS<((u=NHu!Nl$#|!QxX0_Hp4C*A*Ew zZL^+x9UQ5dMj*vVrob%{T=iKu?dXOdgjQpxi5JBmo4YV|!JWD-kDy08qxkI14~>lt z4eg9ZI^u4&pDrSn6jyb);~kOcEY2gAk$!D{G=E#ljrHy>^yQ~`UmjRnmNZ_v%Jq;3 z1BGR*b3M>6VP3%z6(wEedPE#L$_=S=J&2hJuBQdMDBTyGz5k$HvR18L^|(J3_A{4y z7TIh4p;X|w;pTZ+~~K?U`Dzk=o|wt)r0(Uw-F!6%CKiofc5J~ zWAyW1Gz4lzgs2n0_HaA4Q9}yvMirmLAN_*;LmNTG6pP}QlDv|i=^F7IIhpeDE;@8*|{Tj(;J7)FBImO4GGQ$!PYE;iY zB*wJ`^o;z+hRK$>-m-pON@gI2LZI7*CIxN+tKjRo=~KCK`ate#P%lBfI63>QA-u>v zW{Q^WEH|}WP0^N?1VKYWaFMeK(&zG9XQZD(1|Y0Z9f`v-kwB!Br;H2%tUW+C1oD*e zDuF*9!RWnnbMO75Kl*9*b;`l@dbU=D;S46M%G?W*_l3Dv|LCV|>+9to;S}3?Md-({ z#zAF_oIH4!!8a3MyMZidh&=Q*9$A?qAPK($jcb#`4o%qpSdof74heZ zZ_thAM)+@C_|nyP2wp?XOo_7Z*0p!ny+g9xiH!B>bk)pERuT8Ry8ok#Tgvzi__ zi-AVKoG&N3M#YiQxAb<06{9J~Wq%$B5YOc;`Rs??sb>vKTam=vfrfL(8>r`B*pQNCr;i zh(owuqC`N9>e6xP`0?WyN*l?RE6XQNaK!)+04Gk6+-1n?B2Nd&h|qOH1h_$w9asri zIf0n~?BIs7bs$_`Pxbr_2<|M(HA_VEmO$$XS14Nwh!8VQIAc!bL{zK|v1iwoW+^Ko zUkz&2Fonc&xy&|hmowASoG6#JnA6j59XU8plM^~bdAb4VgSxtV%mFicy1SroXecKi z-X;Jl0y@3z;lyW2yuCsdsiLi4!MxdpH7f$^@PGwMO`W<5kZ(PNq@E-g;u>`PirKic zp8t_7gZ=&Uo#}Xa_?fvq&lJk-ot^Xj{lC+-FaelNnLGsNTA$aMnBO6-ihwH0XGnf; z!fj>z7ojFKtt*%7Dz|iWv}j)hD}c!kn-5Tr8b>`!z&KK0V2y|D@`NRBNdco$$oDD~|4fGf0hX)3>MZ!Bm!O8CK-rnx+ z$zbRxk;<&Do7DaVi6%>fgEuucDbGBEaHBU34wiCVU1JpNbF8Z?2Yd@Y4Dr-S#3y0D zuv5dJ6nbMJ59_h7`=k=lLGl6;s!MHfn_{>g$Kfh z<1C4`oG%dgL-Ab5`rzgZg2Wn+ruBj=GQpe}$0W;}Z!T4r$v~aTT^LHif&dup65fa{ z@`s>z8KN)8@4#Y_rFZgVu|_O!k{`VsBV>{wa63Ad8RE*S2z@tyew4SX1z?KW`7YoMHPL#1?Yp7^f0Y1B>AMr1&K-(lwks&nAN6 zt-R-%F6mUTL6)Bvo}gf)P5z<`%19chgRmS4KTl~1Yb%tr+7IFVX*YR?u7I}_m(coU z*uM?TH1Vp`dsxRwF+$!n1nr?;`m3{ade#g=Q)_T)0h@{sqJNPkYiS7zP!Nb3{||Mk zzO^>Lk8HW;t$*aaqzzVF!US-} zQylwN`M21EKh&mR!2&p)ukl7b98~(%ymv-+mW{N0(krXp2(|>b9nz*K!o9w7hKui7xXtIa}ioAF*V4?K_nChgvTOy?p{c#iR8}nqxre-1F z8|F?`$2FK@&_#h}9^05#OOQJa-zwqz7XxLj`&e<>WTsPjSeChV96{x1upsy`1`~Y{ zB!NDJLDjd}e09}p(m<(Fkq89}K8L<}A8}rvY$tKN8E+u294n_HlGE{gCUE2e8j=ZJL%nR9l{;b6CV85bWh_ynXS;8w> zQ@rOJb|Gw#sIlj?h54cj5bVIOcciO+}Z&>2L zffxe5L_H03KIlwWQsB9+g(t#Tl)n)`akAxWtl@k={6nF#^l~!XA z^+-~*fR9O^eR`(%d^PvgT=o2Kc6?~L{H?C3hH7ZAt$$lY>tMZDs~>aw{h5YXi}c3l zAJm}VkSyQ4^+OlR%Y8=*o!b-nhbBO>tDULzOroO=bb|NY8SbYC%M&m#3KAURACk2l z{rZyjIvnzrnEU7%?65L?^p>=r9(_ynd5xjZCCas7a1JuoubM@mZREFp#Ung^3vC(GjEx9sZ55?9?Ha5=(LR^l)yd{E`Kn|1A!sn2`wu`?~LoM zSTDJi8o?q!%#GW$`Q`epXNbwXUFsl}sQv)h_OTY!Ap6+}eWQCq+XA}ur%&bp;Ms=b zGpn_>-aRw3Z}0Y*yIWfgXJ^R*tki*h^S?SY7!D5({p$R_1B}{A;BZL)?c>yF9nZ0z z2NCIVS9s1@i5nlqwv4RjtB!hFb&Y!-VHD4BUQX}{ycH<>9%0f5P>#?hD@!$Ad+q}& zSZ$0)&ac82uir;2A>BjBay)ctrMi@5XORRx3t(~<*31>^T3o&Eea3ynH%X8oG|O^! zS$YHBrsQ$T-$w5;;>2>~C~?;7fQfmshF9h6m1TGlLaY~6&yuG`4LZcSLt?`UP+cg; zHTd-iojy5QTTH^@E3;6?1Hhv0!l{ofALiU~!lJ^ihKCBR2|1AN@l(uK2U z;c~BU(b~4QeT?Vots6osQ7h9Q6qdZj-l7)M_VvGM~>6<=OZ*zZR z++&6zXSH}H^#aB#9*4=alI2}tJd8SnKL&_D(=#CF2>;q833o`m1mf-VJ~2*6R-iFF zpwCMk^2AYoVpMYo)JFS+GC=M@>Qi=>zH78km;>6xm-GhL$j}z=d1z-g*cN5UTHXaF z=^weBd5b6ubP!yOx&e!COwd!qeNkX!xH*Fd!ZK^r&D(R8%KQ2UT3QDB-&d*3t=Xfr zA0pa?wj{FknQs(WIVsu@+rMek%=S%V`x|1hhW%rkw$E(Zgt$mlC$hyb`2uK!4fqPu zJ%ei@jve8A>q{SE!f*gAF{Pl=(4(!Ign?ef(qUT@^9N$5$YIMl4)(w7Fvh&*^a{&E zV=gj{OiRPNfD8LZQTk~Sh=-orhV*(h?k%*AvHujw1P^DbeK`2&Kz~caZ0`MvgWpay zR*yw;jiPcM*R&+o2aji^=V&U{KU?@?F{1O;v|-*yj@sP(If6{$M5|T1fP# z!9UO(1iXh~UXZ>*r;JGAmI2^X@XGnMAV|PeIT%u6G^Cfo=Vx;%=#+*o%+Esu#gJfJ15aWn`f)G7c3&KL|}OM-on zRY3=QfEhJIJh)bk%Nz!NMMfWUX$OyA56k9SwN{2`5zGYhJj>N}5&}YO^kh5?v~@Gb zj8H6^I$A)ttrCYtuxfJzhE?c*w0vP=nGge+?eQt}i~tfm_wr|s8{h!~2c!r*aA9gW z4$we2IH9TnNU*dtGL+v1Hxu9t@}q@A96PWKnwkZzApIf5RuI8{SF6322xcUJY$=jKtT!&MZ6I=~gS8SehzsTnrV3(r?&o~6<^qyTTgaV?UfuW_LS5X|BjGqzwQ59B%viCnRi z>n!Ck35rB%5nu(B13Wwes~}UjtihFm*`zkFHDGJ$zrDjIcgeEU6&|vIt+DlMKbi3} ztE~%{jBIsdt5>!)W&5Snd$v0wWw$S2l@moJD%<4gn_R3@MpX8Uq_8PTviGWL+4&vq zM}Y3izuoaV0K78ue&{JEljXnOeadE&r29X^;w^DsJ|F2(95Jt>7?JEwS$6DekTV@N z{|_bT(C|-aJ1wrCq?+($rKH@k+jw%^uG*W}7;p zxt*GtI*&8w&qqPzj~^#WD(1VOO#+R8z&hZs#DWm9;gys+g4QWoMJSjTlrhlSuhbw@ zTmY+$wW0>y=@Vpf9`3*q?$1dUXOahwgAYE9aYv{N3ljpy04uahfmnz}jhAI?;Eknf zemH;kaDI5}MAwDAk9@bW*{<|8t>on1D;L-nFWELc-tZ;=T_fyBRI8QMfySl=`-iFg z5^`Dh$iFX#xV8{dIl}+ov5MU%VT1y;DT9M3Mj75B|GvGc2`{-DFZ=G+mXVf;`3o=a zWu4z^9Julty-M;m^(p$>%HiCRoPTNrOS5*lth8tcfQ`mP+Amu`FCu*P&T|I?=pgwE zbv7$Rb04VfauI^b;MZth=K9nQMD)LfqWF{6gQEN2LfeF6uv=cS?2&Jm{wLS} zjlr%wMOoR9L$NrV;a;GWj1~XF2>yhBL!}~;GH^dp9PAL6z)_U`A$=DboBHb?CI$+@67c?qtQrj&q(RPQmNOxqgfGi1=(xgO7!x(5&?V?{1Ls04%%VA z*;^_-R4VoKMkA4EZx7$$&xr0L36yR(w=MaDA4QF>!zWy?wE++Y{fLt035s%zQe7nq z^9)%Lp@~XDzr-my7Uf@TA>P;D(b3_jjW3QlCR1IV=L*uAi@dthHjXLlpQcY+78hCF@S8=5@$G&OANQ-fBUtaicm!R>at z8e)@OHu*bJJCe7$I$eqO_JjkF=h!f-e4(kpNe)D|fFs%?(zv(n%P z(gqkp=M`ie<7g&wd*rJJ+5FBL4l*2-2@@iu4UP0X^s(Yk_%%5=7G(sxfSICkGx-wS zn-KpA21N+35pMD;00_a+Cs_3Wc;|~&T@AyuCy#gCbG+;LlUYQCgQb$fqm#iz^ek&7?4V&M_w;1Qw;6%M|!W_}fznOW#866iY% zpv|yh30o4IL%x#CrnZOF?>4jvtCZBnzDh_lm}S{rjr)fP);_eq@dd(1n#NU3ppMf#feRm4 zq&`6=ZQz1U{t-g2fhEO@`4;-0I5AG~vr%&wd zmq39>+7Att9?DYt!Y$g!rF>@g2pJkW`w#}`R_}DSurtSgyKhsIBs=UA$)5Rv_5{&BPBuoB2P|ZC-Cib)3&<@&P!#pDY z99fUEL$Mz*_SSJRb(@z=BANb2G4NIczYnFdRTxn*Oke@tPdY>%375y5fVF#=6dl?H z`Uc*C^n!xlA-y2w3KZ){DKFSfMdxla1z{J8rNwbwrxjagDuec>r*|8iLu*QV`(0bN z%rOgut!=$Mxw$P{?`m&Tk&3dve+M{?=#KvWoY@uYgZ5Z-D=xfw%a*&^+ZA>p*VD5V zPkK_tleTP`)6}M>J$Vr8q5PhvCLA_rod(Ls%wG`xle9!+gwg8}0!cE`UUQvXG`2SP zbxF#$ce+?kFZi6ZGhQ!qd#M;Vmz51VdYgA`nZ7%oKtY>(9W1BD6UVk}**S-SlHKCb zzP_$_F7&VP?41*QJ9B!f3?J{oHf}w%GVJ@By@6Bgvi28Th8IhHgvX z#j(LIENjsVS`=X?&n`h7pc_|diWfDS8c)VzHzkB*$7?X+Dv`y>cB~ci_}1&vZ8-WxA%B)}2ZY z`+P#@)0gQS4fyT$M`nBv?G{Q*ae`g0KL3R`2)Ir=dxo7!9(qyQ{~wartH4I%!D5huL|Yf#ZL4QcNn z-o!;ma7iHl#Li_p`DDZ>1~C@AEoX1R#*v1?pllh_wmDguVmdB;FFWUS3}zcXG^g(Q zm4@t~!?7pZGT7=%#o!<8@FUfSij8R6*D~lMoICxUH#Xj~7+dv2Y%qIdIx*(3#bP$c zSYqmEHZhh6wyEG_@R6C?7EFx&xj-sSe3OT~;tuoNalWP>M_V({ABk+wKF~ej!8uLS z7o9dn(x6dIX$fHxs9)0q8Ze5a#D(VeiL>yb?4{23&9MFAAPBMWjrc?TxgwXSE+bLk zT#}=d`u=c6$GZYxV=yG97t6O!wBs`|(@S)#cP385C%&V(S-Y|(ujAuntfoJC|K{Dh zU)Xii#MXSd{Ju?_amh?!(yo`tnZ#9K46heN-L z*1@Vvkskzij}0z5llV;AL>ow-La^2h{s8O+$jRv0&4L39QRE@(Yhx7l>iR$U8 zo?2~+^-G7Pq0VVnWHj@$=7HezM+5C{?Wa=RO=;!)iRY$h4PYqE8R(qOAiD%Ig4mOg zJrMs-umHq3WW@9}A0yTVwileGvDO0hpqOj*WAbu73GeymnM}%ENm?M!dYA1rvCq%F z#*nrc=T3-I#-;m{gVOWxwk*Kj#0nCxyVu&s=p7W+hlK4sa? zeXeXA$xQw%1zUorW?3)%gF0|Icq8E-*81pkZLcDh?zbP=K(z1e>8X}RN49T&Zu|C; zkrsSLMz+r^&TJofSmI8k7Y?54iA5Pg6!jL14-|`rgnw*u@^opWrMbCfq%<@0v6-2X z65U-og+3r2$k3rAFfxEWew$chuXLQB%3ecl^7E00zYWg%LdP`~Cg^jF#bw~7#?a@w zWg)|IMT2H?QFyS<$zHu7x?Wy>=XUL@9a9b3%SA~EI=~sS)|PFpEyT@c>t8&ng7l@8 z=eED234SxfkR|1SKjZhaE5yzMFv%T1wBzgq-+%6h_z`2%nBSv(z2reM^%$&t#U!sw zY#0)}9%I{%DVz{OK4gYAhVajaQ@ipXoShsUy(5_npMDZFd zY?T|p9OHdNj_e`~P)sJl2_S#VQa&t#ExUfc2w?Q?V4n{6Lb9F+IHVz1caQDZaqJE@3Sj7kE4c^8uc6G zIgGEb%I^k+CM`Bux=iFO&7j33i3k94TRxK{2s!MwMhhS^8aHfD!pF2!kMGPrrq!eg z9YL-=^UdmAosvy@w)kFmGSV>&J%jcdPd;?}7m9Td`7(nmx(*_*RtZL~y;^)P1!aq* z-D4u(&|iL`$oUu8JhApsZj!6CY@o@JJj~7Yg_R&%w@lCp-iR2^+_Z6$1i` zL?MC1_rNZP@)-_wM=K)uL54yy4J5VYZ)o4lvc1~UmA$kmeN}$A_*2A3L_N8w57ZPf z^{acYXtnAxRxbCIXNo^vk}eRhYT%0$=!VI1%a_Vh9vTk{fB+vwtVfWwgy=7wevXF} z*R;b2%Ln!UpIsAOT>G$o>Tvn+VeL86j)0=mSXsr=fv3lMjadS$K3W`EDd3KXg^y-9 z6!>`Jsh@H*HRhCXX^>9 zfn@(9PJ(pqpg2H_Ce1!OGUP{doKqRmN75)VmzL|{gos#5wdJ$f<3!Bx_u>-wMZ?xR zq1S~f{si%4Z_*c(4eX7x+7!PI*Rt^0v)T_$dt_iIoCW={8ch3KWAYb}BR&SdY>Wh5 zX$c-%Av_3X42}qdAqWT#bFk|gfFXu4OwMKsgY}SD5VN9*W$#ebt6UC{aXrUG9 zM#?RPNZ+B}Q|o1wkt-nP2n9#rFy0eJ?oJ{0Kva!f~xjY|DLNG%`82=d*KrCbhqr zV8IC~Ka@zcOH#zC>*o2MTe+k~6;%)N+?UUNCPiQ|ZWBdr5 z7san2oCA$xj1@?6tAQV3m@L|r1sWXlo41{|iV*D1N=~B7DBvOon z)kJhK;l0kX5)3cH9dOSkFa&r#Vn?-F7CuIBIpX8jSSN|zl1JJmk}%Ej6wKo|W0E}0 z+vaQ5X;JbLu+hf26rDi3t*eH<(GE`Kq~%e| zub@^~+A-2&!W06_XnnLN#lXedI3jWAm9H^+``0=zf@9c*{eB^qB$Ee=#Z8-v z#RJKXNdGj1KuJ=j2mJkQ`6p(}INV_zUU`P1v$rDP`!ape4%?5MD4+EEN4hct5@)dc zy9^P%t6w4yFA3Uk2<^<9+v(}+%8UmCfnd3-tIxAD2M82UOSxHZYNDwx9}Li8?`+PF zl;+-QG#(f6;KeV-mcW6Ko{h%VC?xMSnhUTqx?VFJ72-b0`dm#xK0ciN&U6lfgvSza z(a`BtLR!{`jrK`>gRMkcsuQF8)Pu_2(eVR4NvqcvcYAJsu1i|TXn!k=QrgmfWB3@q zFGt1_6V=&bake^UR!*=TwdK}3&`p_NT=vn`FZT)s`@Ujp1|y10^JgHKmjkvqiho` zShe4aX$bFdNV5cZ<9K};2-HOn22KY*BTZ1TvSNj@? zfB7xTp+`UduH&bXGl$jZobotSU^;DCxE z_W}4+A4`^sG_59~kO#TNq!5QF42XU#1TDPzA7BGUEp;Dz3Ibx*xkwKtn(fkFyDb<> zv|__*^#*?*Th=++vevhPMCkCJ+1cNS5R68tyPWspuo`p@xwJ;8>id?>N6 z7YNJ2ki-u(4u&P;$O_U`m@uWZ4f&i}gH_|1(THo>;r*Zdaa<)0x+7wXl5Sb}#K8zNTBo-~D!8_{L-N7O(>V`XRHY*7PX1mM&swZ~-ckxFl;u!b0(e2$56 zaqdE)*0XdJ`GrG!RF{A`d6J`nJ%uiQ{Xw3s}vBoX$Cfjkghj z{y*qRQq@p_eJ>bx+kLL5v#Fh%_S`$ff>wvk9R{1>_VuJvJwA6(>P&U}Ru5fcTfgBN zXT=k)`5byp5C!pd1E|SgY<`aEEH6+{`jW1Jds9`ditXv%RLk-7p!Or#&QyGW356;0 ze8{2T;|Q()t=d&Oh{!VQeziB(Uux`M^A?PcRU1hY_uqf*?LLUI;DxKO zb&`Hjf}WakFXVYlu1r3|r81a|NJ~wg&}1|M%(6sgFusKmMtT+UWh&v1_%P@PLF^xU z?8MmozDQ` z6mA;bTFmx-ruCs6x8Azr*wjFxt)M*%O&D7$u4Id>w}v8f`5QJQl$kOU68$2*hEYIn z8pL!G1<$W7F3OK7g_bi4O~zd5EHC7=QRdIYHE99)4|Efosq6sG#lPIIe8F) zFayXd(=i%@@@g-cnL9i8_V$d2LQ_520l4o>g+lvpx~Z1SHLFgm>{6R^x!O&TF0gJE zAbb9myuhVS2<$-H3prj$=ztw@i?qnMEdQ0?q5Z}=Uo?ueB=mhw`wfS`+Yf_hw|tW) zhLc()3V=ey=Zms)>|RIA6LGsE^d6FN7w{g~@VHzph8k#H0A491*a*!C8COebA&JWi zPYnz__0&MiNRw8nZ$<*_l2x_F;&N%FHa<8wULJC}S^gv1yZFwa(=Bxa`LHOlcnp0) z@5P&;Ne5rU)|uh4*u}tI5@T2-%_xaiM0Y_TGbj*0z6u*raCt;p6kcS7ehPvhA|eRy zGM4UX^EEqPAA0xrzRK)L5+F{_R`$(TDktOdbjRyX7rVH|yA4kWM6H znToeBRQN3mbUU`^%kR#=?r4TD1Xe11-~*Y41*Sy0+;o616Bs`<0jSLQPbs;HWeZ^3 zC-_9BN{SF&R39itOZC+oa|S|;e9jSejlZ`X-_tAg?unP*JMIcQT#7tP!OE_@s<`?) z#~vJw?P!zQcEm;>9BUb=6w_B;O&5!4c{W`<#LhWGYVOETbD_{YbR?&SoLYsVj!6ex zEiPqnUt8ayzR=iM2tUz%smRJA-6<_}7K>cgr8+HuFR{RBJfquI>un#6(OBU9q@#=# z>LJOZcx>7yp@hwa!lB^yq5Ra&Cp$Wx+&PsW+8)HA!Ei*Wx7 zuJE|!*Px~N9C&Rcg0eD#(z3-Zm+F_7|=S68o*)2laKG+%_BYdnnKOyuAsCkM}_i|P86Z|d)k zM&F#JqR^LifTj5QaS7kj|6adhMoQ^Ls2T9d7sMv|K|8Xly2Vb$W3SRtd}+^ae4H(;-lQ$AUT;3Wdd1}hdfWnD!n`MGlfJaSs2`Q` zVv~-(e&ZJ~Z~Zp%Ys7wtz8&HtGTM`Kw0MhAk*vjK@|kQAMRxEWTp8X6+gC zRli&tnVSIX?>5WL@}Efm3cCocd3J{n^Ne3;HtCQ*Z9g37>g!4gx5^2YuHIM0epskxN2;;N}G zm#S|nuFAiIA-zmbBVMikG}>(X_pqs^_VFX0%f1b$@PANaXy>RM7<%ML& zskym>hvw$q(~)$$`Vxum#&R&|Xedp@VsnMUc)3{E6N`)o6phh=jiH1jc>CGJ>}BMMJ}79=?qI<;iqJN z3RN@uZ~cGWyI-=(vU9)Bs#y29 zo4m4JkzDHIikta8O`bVm*sOrD6@viU$li9J>bBmaIvn(7FpJ0(rYX1~$pUnJG)GdL##)kbPqf=9(qw|do4UO}ov^}!Fp|K_?Hc{_nM@N#V zx1i)w?JbKw+`dA;UlG?|{TwslH*M3@kzj4ASo<(8f|d$uSO885L%<$^GYXe$3#1Z* zE{TX5oe+T_xu%W+h;8E6ic9H|B(XUmV#nU+bt~^u++L^hQ4otia0WDxWrlz1Cqa~4 zPDNYrJ5~EXTO+R56t}~n-k~~~%G}Cpu88%Y?GE;s#3#WyiFh^bUp%cYX3oftM(xLCxTH~G6F(JudP=7_~VZ?&p#S!`a#?zN%A zY&L7q^=!oVtS_?Y4qDHVP%IwAe}7E~R#kQYSig;Gp=@h z%i?zG`anKL+cB>Xpa)GnH0LIOMldEX(JR^TKB9HSPQjI}o%)>XMR_~4!H#h&+JQ(JC*VX8h|KAs;l$$l?`Vd{C8uqHa~t45Wa%81CA12f zso9&6FQho6&&wSS`V z%0m7wFDrY)VXyYOw+o?BSNos=zDaX@EGj~0N}LX+5BWoqrZj&YLFl?9^F^ma`wHxe zHiwmB*s5Wbl^o7%4w-9`PH3wGHX41BE#PDe*siz{dY{n*oW_lTKA-}-1);#}EoyEWd~ zdCS1Spm}m+ySsNMlWns^Ez8p|(e3EfqnpOg!sL`%us%;j^d_MRrzKGqnyX&6Pu3zbL zdK4l?s?$de=8M>Dd&CKsTZQN91F9>O>AHVrh8}VgJ;Y8AVTWY4b87NXW2349Zqqtz zvqgM@v;yF~yR&=eW`81RS0G$|l^QVWgSBB#XV>gz@QOIBSa(g4)lGHqcCy(cWS;@6 zrR$UYkd1QCKkl`>!}74@L-1s(QzKmfDy%!OexJzK>f!|2O&47MKxmy7xlnI&y<;xA z6v3_1N_zE{^sGx=xkTqAesbe&=pe`xhKTSwH5>^ zMK~2jX9^1eF3r)Ks4PPMtK%~`_2W~47$iP3c$vZhu6787vh8g>awXu&9Ut9&;`Xgi zZ-Rx!7jZb84X)w`#<$*Ib~k#qJQnmt<#agVT!lmrzO-s5u%DRSRtXA>F!XPORZCzHr?9X)YN?I zrcG0=rDmn0n_r{x5gD5354H3h9JqD&o=1}SJhEpum;q6L*eK;7u+@g`d4Sjg!ONo# z)E(>`pXGn{ahmQQ|1(Z(q{}OdzNp>yXA$2eU*wB+Pzik;9>O@J=TT%CB5fovt$!j7 z5VSOBKQL6$h@$^DeAUHV7o>MzWO_P6VtiL_gLi9R>DlR*Sj3m`4-fm}{s@!&J9{|K zn}FTpCSIP~EuZ*h%Cw3_5Cx{5rQx8PmG#2w+Nq5%E(tQO4?6S>j_o+>Z#4bcz?d{I)N+g<8ufh*|eCVyF?(Dr2@0f~7gtvP=;B3OtKmYnpwaym zmcBH5i2;B>8bBPxABs#-@bxv$D7O*2n=(xFV%4MQ-4lehK<2`HXx(2RzwW^L3uvET z6hH*_d%cl{!%<&}FF+vl_>j! z!!4a7YK^P3Wq?F*jmza^pNQ^gzl@8b+C8pjN>ECCwA(tazke%c@{N^%V!jw6tC+Ti zKz^g;yXc}qHT$B?KIWmqX?I5|?X~twgnh#4x`EQ`wF*JChsSuEUF`X2n^7~Fv~^Ii zEbxrOkD^|rOagV}EHht6hI!l+T2QXJ5mP{`NqDK>Oca)uRA?zmq2h1>g00QYm3c@* z*NLaw6@XglbbVj`J*VCNY1edm<;T5y{fZqLDI1f(;Wa{4B}*Qwy8!{oCE0IxHS<#e zCD;O-n@?f?C7g7+aC5k;sQGLjIRj*XW z20NtqB)6<8+GlV|`mDb*yz;+NL*sp+wBHeQDlVHV;EI-GYEV%A zCOb9YY~JgKiZ9^vcSctJZ5r{_Y))q*e7>b&HK17CDkF9YDnF;nmDyYmiE%{hzK3Hl zlGx#`Mk}~jlME}HA)QgfN}mAZ5Q;`aAb6ez=annY2Cv;Cj(F_SEs%92H6B`N55-mJ z031L0i336~j!6GE9ig#H`WFkg!CNg}pbNJULK-9t`2zUzh#;7z0WAy#bAMC0c2NLs4?%yoD6J}8V5>?*S1!ilFkx-(OF>~$gSzh)e=OCvxv~h71%B_aw#d;0 zq-*&n)rCjIV~1SoKlN<}8XUU6Tc8VE+}uaSrm_PELb{_)jur!3z}I#xVdULL3w@o< zB(?!Vv7I5YAuX1$;m~>qjuZ_{Azm;nV^Jx+^~jN}+m0Mze@Fb~m5cOUYjuqgoM6n= zTGQ6BnI`*_RJwC3-MjV9%hhqsLiZuBWc8-juCCUbR!*9MXJ-2!sz7|Q=mRJBpogC^ zIY^*z+ykPSQ5-)+$D;Dlm+>EUMX(TJTZOvBSjg+)Eg%z8@<-uzLBojs)}1}`J*r=g z4!3JZS=a91Q!iAQmA%{V_qD?zJk$}9U3TwO7@FSV$>Qk!BaH2Iceq_`9fH6oU3*p6E%!DRV^dAc20UHs2O8Ou%%w& zrlMiZ$2Nr}qHy+TvXWu$(*0~O4!Fe%hdYQ5MrJd3k=w8@FEjD*k&HIy1%rTa_$ zhx#O&wRNJ^p<12je7DDCZAJc~LNmI_8FV%bHMDJN?cCYP235Dm)8_LXIr813cLscJ z$+}5~Q?aMX?ew~1gN>z;(tY>~KOS`2p=WCGN-oBnl0No-hB~xZK7w8zf<%PimoR2f z0KJY*tO77;L?Ol?tqb~#CdL>v*<)~Zz%+@5X?&w9oO4ZfcHkE5#=?lE6A7b}sf%e7 zDh@k!FoLR$lR=M~iN*)=5N3wQDUqsZ2JxtZ{NIBv_YPMAf6h>Uf5_?D;ZESs73}Z7 zQfZe@I?%gq6KyXAVy*^^TP8U}P6%?ck2xZq%v=UW5-b7E_-q1w$U@_fj`!TsBLxmO z+xQt~v+q&-+rjHLsX_Z<#D~blhkX&L67k*U!~e+2Iq9NLg1o>Of*tzeKC6ud(joO` zH?sx1Lgn%Dsqu0-u{G}Z`moaRBDkGcer!!XpR28X1~779i*M=a>77>l?RMsIcuz5_ zN4?1D&0BxW^Csyj&D2Sw1&xceP5flNX(NdC zv94(|H1$A**S4y@rs+#sv5*Ky@km^QD~UW0*&~Qk(yuq~$mr-pqobpafW1L>z-Gpq z7~Hv!$%@U|W-UCNm(jMeBT=D74v(Lj(A(IK846vQf;JBRx-;yjHkSU$H}AH?it3*C zg{75qa@e=urKqX`Q)*b2Dw2GX+M8aZu5WWI@f?yJ?S4z!%tvPuTiXL@b+5{c<#r)E zEn4009vpi2a3O>RIQVPeQox{`lBmH~QrjKy@N#%K_$^z|3i@wM?9jC`pd^!~Izt)fWF4kdu|38&kVAdrl^r*}PK=jD~BcjY2 zN(&9(!hdv`*K6(8??=`jSliC#W;VAnj-#j%YUJpRH}VaPi}l4>zyG%7T^%Fl@nYV- z@$#DWsf6d8=K9o!EFZiYal*?bR8!YbuwJE5r32w90DjH*6kLjW@1u-B!x&7Q!<4A5h<~NT{r0r8-#^ zR9TWszi55gMO2j6lAvw8-d64Mjn|j!dqMxxT!Uef_;e!AD~v^;mH1j+C256485}jt z9RF}+tF{1vWgA=EdgLFV2E}2x)Ibvoa}-uB+dtf~_0BuD;w-*z|L=AjgHanpO2~d3 zNACinAj$puv8-_YCtd^fQ~`bqX~^V|q_|9ul5{2spF?YpQ7pEwxvy_C{YjN87tbAL zDF$>oA21vPaL5ccmlpb`ruzG)rnH~GWm&+*=@((e5Z)(12ZmNEgb$a_8TfDubUR0R zMur5%0Rgxa0Fp>vXjw>uBEqwkz|$2nG5EZ3n|ekx6vtnEZTQ2(m2uXi*Z}3xzAAw& zfZBi+B&q$fmcA@Q0d&XZJDkm4=tDl@a942octwIS2{|dg3L7eIup%}V=yLWMZ?p4` z%eR9Yc77OY6KY2;zi~d?1)bU&4NwWZ4rxum<;Yj*-`P1}vZ_@e!xmN7*Bz;FB<1+J zONG_1XaEGIihzz)%T0xtHbb&L`+Tg>WVSErJT%!gz1%A&utuWY7$+d4Aa>4V24_FN zmi@mbEtqZGtYo%dnzr?}sGuzt;r9or1pNf|Zj}o(`YXK-YXfUDx{QC(0I$osEUnmV zDF-7Yn&e2@YzkCzJuGEdMvDMZHbz`cP36|sfW6i0X|n}eTFXsMu4n^GJHrk~zSRm8 zM{C{zF{{0&=brHb-6Pt#XRafVO5HI!GDZ1Ty-l-+m^r$E1QMB#RXDqI@g}UWf7^1) zbTNL#>au>>D)Voay>qLU<}>?Zpu-OVfFY)?71Q2hCoEdAlU?jA$a2c+Lc5ecqt!km zePH;-g1_HiMVx`)mg;o8#6D$Zc%sWHezccQaAI(A>zz<@fsJ(XBz>lOJdbS^`dccDd0b?0_tAv170ah+;Vy{UIa%|j3& z1lLbc53Ucahj8YD#qi_fU>IW}!wfH{jrRDM>T=kloqkNpDWe?_*4nQ?d0|sNauK!# ztUFH6q1)e=NJc!UC%}*}Dlnff>GgR%x9;2b%ps2x<_a|BMVE^``JB-zF4gX03UCI{ zMv6v$ugxLLSR4pNV`I%1bppDO?(F*DJM1n<3|6ZYi*4`e&5n(2x}&Y_q$>n@&~Cfv zYIE_qS&@Ga<7kYdEKKc1eEsTJL6eXqzQJ(ODSk-E#lu1(7GklvQJ86vU_C zN6`*8u(&5ZJYM zf!|v7>mmT|F@Sxqob%b8>@-qpXdf`7AGmpa00%@{(;|-d3|#e|Yrc<{2k(`?ufNyI zHhMk#xXZ@?QeIbz?&;seM^KE|VAuB|`(MTY@XMVn9=KF!N;9EvU~ z112JWtF-Z3F`Y~=(Z||bG9rXP|BD<4cFvK+fY^~^D-I8$rAt5euotz1ipwWgd~Q`c zq{6dVU$43TgD~;J9&F-g%;*G~qa56$ap{v>;WS9rt9x=~RW3ElsD>S1;Eg~!xz*Y9 z7D5cI-n!;7R7TOYC`sLnVJyIL(NDXr#S6YX@y1> zxSfylEwrF^94GjQ67Q&wpR3*>-X+GVF>dj`jo-U|^j@zNRGtsgXcpCHAH)H3u}peR z%%64Tx~e>@^%wq%sfrJw>zfb-cvTO@`uy;zgLy@Fl^eRxhhoUQ~i)jTIsq<U|Rdof(Z4d z|8m7E&v%UWq?PWvW&W7mcF#SuEDdAH!}4?YJ&^WPk3CPv?!KG8^LCF4ned*w#TCOg z`+vJ;gBRCccta2W)oZoFYF~))Lv6q{>Q~jB*O|*}v2{WK@rY1EbDl{0w#`1wt7rQk zPZ*W4*=%1E+pK7}{ra_PCWYYq&KuKYc1K(Yx{gZDMRV{n=v%|jyfDZa-@TV?xB z$qqLlDH3)lP5$PdhNkw-9Ksz7CuS~PtLiV-^+qbIA!z5I*Ha$1d#$4|Cdo~JVXCd6 zSd-hkIU6AX-I;U;$EO#r-5e&IFlF4_X|xCQ0MNx5L_sGHH0cWRy7sbNuahfI71|c= zI#4Q+JshZcClHH9gE08f89o$i{V85N1P=smI6tho&N(ps=tmZ5a zV7`LUByzurSTuB?P%>hv1H($>zXyE`4}Z?GwbC3FR&eTQnAGYw2-zi5f0!=N)^F5h zTH=DGvlFyROau>4aN;s?I9NZx2_+6-DcS3cMK^bK_w#G|ySp~WqOP0i#+zNy7@gqP z(uruyxfdwe1>@%W)2@2_Nl@e)c$E3&rZGTsn=px#pH6(yx`SYkLMYLNS@`&3Z7Uh` zgtyaL_sQ#$xrgTAOtgEq-Dlrtr(gVtecQavwtKhD_CB*R;)c9$*zRjQs{X2be_=Ga znN}D+N4#CuwTALb`y74x$5@=P@Q>kV{?k~+$6T(PfAPA1|Hm#D_zJokPobx|27ck% zlDt8@>;o1rypSlC6Er)V_;IRTuyJaycXc$jUcX}|?Gfp6Q-gMMx~i9A@EjrGx!*0P?}R8N+JT~4 z(ukk6An)P%G)UY`kP4XN2Ucor?B+O>t>C2e1iP!Vd+a3I*j95RK2 zIP<$~u|37kRa$#r5=VRaCGQqDu!m_6cN4_wcY7&xFJ$C5Jl&quE`bPyq>|cd`(USAac2WS6gULrP|rz@6uk66V~5mC%uv_;&r01JIDSS9tr>n`OXop(_N?ud5=u-cF)CpKv>~K*E_Hk9vxBK{5Cl z{JPmQZ(Cx$W}-Z8D9?gko;py@Z0cx7&=y^a7E3ShHyP#O?SnGl7oB62uBWZi)+74I zl|^|j(iIcNA}um)Nre`_oRoWb_*EFD_><@~CU|{v!2NeZceagfA& z(AQO!G}KK^SBFKf>1-pK0~dtZ=Va-Nd&zsE?qsp=PoY(UvTZY94S&WX{Q6EK@ zhedr1>(_M(djnM#5OS&mFR=to9$u>ZmKe1ajw%r!ltO#IC`vYs+Ai`E+ffJHB}#0n zUkw+csYrb!JXMU^PNQ{DACm6{o;Zaa&P3EXi8>2W=N*V?kP%|!GDTR4!z&g}ukk1x zVlPJ%QV`Kp^g|SM#n|NUVDK=LDv*!rnp#7!rN^znYXb305E+I)M8s^N``{lXAIJQo zsCX1!)C-BRUOb>Z2%p182GJ&y$1$QM5LgEYjXh0%U)r~+>3Kfyo^RTOJ%7{l&u@H~ z-GNIdaqiZaY4*K*E3TcyJ-6O^jpHVsqy;GEEhwjf>*7;#Z4ifiXdP3U330mwv9P!t z`4OYgE5LnvP1ptEAPuGyjH=FAI~g!i=)=b_=w->_R_|3^jN&~Qd@8L$tJ^E3lZxA| z(9Qpqy#p2~{(-{d(}YFQaTHjaDi$X)v39^>jwo?SnA@m8fRPKqk&IlzE!M{+@0c-Q zXfkt;Nx{GxraNO|<1%vcjYvU^bRZD4EBEcNg}v14>{sJ4U)Z|izF7S4Txt=60iM;| zz5NPBHgCxXDwV)cD{cRq>Ux=dLc80C5Bu(6yE`7krLnl%emEXm1otk69MG()lj5Ss zBDdcjiP08$vkO`z?ALM2?dT~2l=5Dpwnxo`{3Q5g(kmeN*eX^{&{TpK8Au`YC0`gh zPhqwjaltV{&c5*Wx*wT}h-$(GAd(4Z(&;_Dy#=U-(srQFTK44go5mjBoZXiRZw*9> zoy{?~)%Ji7>hZ?L{iTud-l?f4M@L&5lBtG(KWwu~Q1$ryn|gYRb~mQ9%@*nkCmR~u zRVC_sprzC@JyJT9hF@OXf45(o`@aol_Z-(ZH;y`HvF{{gjV^LKukt)cx}GKx=5CSSGf{G(t@f)3cd@Fu;Ne$N~)XfG<4T)pew+ ztI;d7O@#sy1@hen5ADr0#Dc5NThgJuLxa0gsZ!ex_(L>zByJfQscdja@VV$e=_0I~ zo8Td5Awh{2ytPw}BMpU=11uTI@+Gq?H;5T^uC3m=hBqQ#)%AWf+$!6ce6D+8OCYF2 zWe57n?JKZlp*ua0yKic8+qTK6`*H(m?JmD-$FYFR<)0aJ`5CO+UB%LqmCCMNmCBQ) zVi$@3>yNO-$$L9mr#sBehFR3Bvuph^0UmkjoN0_^DC3G)i9x4=q|By;Oqeip$t|-_Qte zzG!pvIA+qf&CT|8*4Ni}5PvNIw5er>)fTaKXF9jGwlz}w^%RSb@7S@YX}GZ+7BGdM zKe+P+VDG@rc;kWW;Lv^J<5O9ra(QP@wj+LXE>*Y-dA+}IbL!-{XxNT;dkKL<*&i5< zI&JfH2GDT^Ve~!831F8ZU0oLnrHeLb>GO1<3 z?f$>Sy$PITSy?9<=iZ385piSR_kGQbTq7eQ_sZHUGPCxrtE;N1D!QSUs-(N=t_B*U zkVO#`%;bq84LqkxK~&U%N@qYooYAS~_iSbc^ zp5Lp=ym|L~mhYVNt^W`6D&;T`B0)&P{4aD8&^p+_wDipXk1BBJU$xq7S>MfNU)E-` z;wb0$=d4#cQ~#ecvka$1Fba|)YyV0y4pQ*uny2XT_T6@c`tgc>PU1h6RuB_p77c+)k=4aNf zT=8}Ta3NHrDtSvWDRb{^7NF*X4D*ie0&USvz?pj~Cy#Oxmi;n6kCV zYT@$b%S)XTN`9Tg7D{W$YJ+Us`cIWaG_)tpFIV8L(=@yh#Dd{I$WdU#@=sz$M|?xj zCmjFb{*IZL&}8{kBcxj}&-y&mHo@z&k5GN_rqSmRn#MOg%ib0)dLrAl3J|irPgbRO z60QPyip|x>PL?Y`gZD(X&#efM1Y+>T)s=}YVSCUPj>YF|qr1f8IOU*Iv4zpv&dw9k z<--2**fEY5vSUUg;#`#gf_#DbW3h354g8c*0>Fh)GIXwPAA~!4v(Y#jjqyi&jyt#0 z_~Q2I0=JpASFmCUElG1{u{0v`6>eB=^;IcgG?dHld*Jk=fj;00lG?E+l1jHKT-$;OgZtt_T*75oI$CCK>*!=u);q|*OmDWdG+@->9h>H})Z zMrXA9Y$=t$a~t0IEVrNOwli+#vUc1b$fiZMGu_NJ1Z$dj`FFJwcX^B)YmqR|CP}04895fcx}Oqibp~F0f4K2V6krSlkj^ zDA%vM;ZGhknyw1Z?^TmA=(@mKm@7}hoovZyTs0w7%mp9|6F772Dxzd@0e+PQmkdVz zq@qSuhG+obcdgNKv1YQ9mxC-XVFkHib{MbI+3QA!8Q$GSoHb(rMpO-5s?!oUOU$=n zii@Hewnc+Lrssg1NEHJ4z#p=7>n#E8g)APR*)l{|*b;E*s#Rdq5sa$XYx$hW*=w?z zBqveCI>2e;%0o}l{&K=@lzzh%#5_oNcAa18fVSocvRyX6&E~ZVFdfI3gZ&9`d4hF_ z%G5t%4I~V3&{D76T+H269C>x2zTP6?WVOD)F4Y&LliCs;N(D-z>05y0s`v9Ke@_)} z()$m6*6wD!s)S5H=vPE5==vn&&%_6eqpI@d$bCh`lV?@)mm?>Df9=Zs7cF1EnEQPu zKHD5yWFNNqE#FR596tT;Z=GyZUP5Q~mV@+0U1ty=@t6{?bwhGn=dSfWt+d-=SuG z5TGr3mW{5r4Pg-Xz8R4#^X)S|o;1QIhAeh%zZr3cd&vlX*&Z{y7gN z5wBt3A+(t9Hu>?=3R_xUmRkS11W2%zl{Lf*u4-$n!14%|X{|58;pQgA9U=ny`uYWF zrAG(0m2jnKwZwA9*G$2Hhrm#A5j2E_lEf_D77%SZJGvl)q=vMNZpLkv*4$a2FK+gf z{O-Z%$Zm-(TpCcUv4|_-n5ZB?1X(ieGo{pGA2fF5)3w8MTaF_Ur8j9`IlE*1I=S{q z`5kAa`xTp{<^ph2@%VR*Do(R;dlMjmsk+;uFvRabEM@s27LFnGDvsc?nVD%s(c9DB zH*{ZeR*W0rZ&JhoD2)3Xd1}bk2HC5LP$zDvgC~}U#sKIYA*9!Kz%BT(C%o?rS9Vz^ z@(Ztd;~TZFiIT}nqLl2&yN@Jt>>@MXfAs9TwOB$EGRNa{3rTdX{b? zZeBo!_riyZ{q@!B*Fhp$si1vO21xWxj*}?^CzGvN)JBm6=ulc!=IM3hb*udjg6a3% z3RuoRz&_e)Ev?MAR@U=0y-6G$TFf~we@p%fXgb-^b&#wFQtJ`=il8wPhA|~!%pnIQ zpMq(Zn*t#4-8P$n5G6_U6QX2*t<4P#&Y4YW*a4U7?k@Z5ahqDVHh)a94uk=+tG#33 zv5CP_sfozv^rPE%>=OHx>{pxCiE*0@=$%AjE)tcN$vfK~R!wH%(@ndkxdCm-HaqT-cmRnDlmd~i<%I?wD^qJp?BT(y`m2KdwJF9y%ee!L|Rz=z4Q+8UgV_F z{mBUgy=T?M{&mHCA5dxlHcARe>ux((QluibOE585&5y$A)u9H|?c{S{mh8J_=7>1V zs(jpRv6xQC^q_-c>MXk{tJ+pX@xsAXvf)7+9t_&H<1BvE-I8RF+L7P$IILPri&oic zGDaXa&PnD$qY;_~i_tV_lD7b%ENV0(;&<;}Y|O?elT2G=TryhVlWasWjnW((o+Czh z-&z-6wHI}OQ2$169_jUhm+Ai>kD65GL>qWAZnOf#b$d&aY7lh;g8{UH`98EljT%qg z;ef}QJMB>s56jR7c+dgN6HnT6n+L7t7OUd4s^$ZLV?=nNWec2_rQ(!=pi+coIHdxlZ=6KDC$lM1>j1g| zx9Kk`Owo&`aF2Kq-PH3YoW-kfi#y|D{HD&E1kXfsdI4H>j!;O1$|os4;y2!3rbW*oHXRmbJq>T{(}*0tpHr2loC0`S56T-%m9_XM+RP!^Ki&_g=-k=Qx7xIWDrv6wTWK zLTghjs@Yf0m*2DjFnM{`GdSlnt5`pv2a(kRXsn!P2n&gNec`e9?hRH0<+tp{T;7(+ z2wz~<@D}JOdS)lgVEve2P#c;e_>bW0Fw`-z@JMx0S+T_#3I-8#iP#EP6SNXdWP<%{ zPfchi8tURc>;=FE5?>8QYh@sDt(lpO8!M2e{YSxogm;97&ee7f&oJionanP?YW0U& zE(c_01X+9CuRYM3dE>aFVZTB||D1co0Tkh=v0sh4s`~>@v(xe5^zk;fCA%+C9X(VV zosPeu3V7kjquO%F;*R#$5yEfn_d^lt%=(=<+k~4%h67N92Kp%EHC7KEyg%hLd69Pk zOR75K@#Vd-C;Na?*B7lNlJ(fJDPkAUrqBnG&mOfY^gg}XP_!x7EFzGet!||0G%gwi zQy^|a2KfeDtGItocOn&Jhb<^oXX$A|7NSFM>tnyCQA0?e<93-%J}+aFL#^7mq0o-7 z&zC*ww*~DLV|+5xyp|Yf9iM&>8h&SBf7KOL`%Mvd(&ZR&KS%9)#olntJh^Rd-$QP^ z13sLR!zHy_Rr>??IJ4!P{;U&C<_DgZ+cG*Bbz8#P%A*lS%wBy%e0mh^UQMv6i#dE8}>hb^)N=JAx>o>otWAowlbIg^ld z?#=TqS0xy9*zJyB5PZt~n@jn^I9{fG87V?Np7BDy)RRc)F6oBQrd(Hm9QFn9bF(B# z2fKrnWH>tHfi6T~0q}FWvjPMv!4=eW35q)auqEcdO3d|D7!CbbNx64fjUw30q+R2d zabZ_ya4|0X3Y^6;V7(ndk4NZ=q*}@Fe^Lal9eaiBm!+JXeeWT}jl`IZ+z?cr-l1Po306eHbwMtFT(941Q;vw#ZCBsq66p<_T?*_f+-NEO~G6pKoorK z><*NP`6#55s2zJd&T=Ke?J4-0wuCAv_I|X*GUD6ZGy?Rsm~=uG*bqp90Q-T^A-I}R znr{g9b+~1UNrx}SxP*0+{5Pq;NEV>w0!s^)2C)$;Rh@En&AzkV z=bGCeDSOZM&Ci!BmF>Zh9E_R+)p%@hv?2_!mC?aiyc#e^gK{Xiy;3R92h&Yzpk_MA z^9zabYlp3*41Mr+=r3Ml_`Kn(sP_oRDuM4YrcYExK^$U|HAfm_rP2uU!uGKME={s} zh)&UUy0M8P*aAd;?nZ5-hmol_M+O;q7~WtozTZwPN2DWEAoXE$X}E}=+At(gKGU~F zAUJ-E2$p5ILHROz7FxVlH%Q(BaLOvMiG!nsWz0!nHw5FwSeSMw%uJH);8lVAfqzCe z0=pD$;@b#pRz%o{qNF|i8rc%Xgw|&S6XMyCM6a~^jpj}$psgJYITHpH%_8r-d{!RE#-wC=DO{kj_&1N zd+|f2AOh2%ZW5mq}>X>`9x0T&u`!iUT2&nb~B1*`NgV_1GX^ zz&tPoq+a4jK;sz0G_qkK6=F2^>d{SFAV196g1AvZOag6c)SZwqXP}zmN%10GtRYT@ zR~*k!)9|-oECuAeqFA8yM(0X^Z>*iGmG>4BGm&Z{S+H1~0742>g2QJ&E;x|o!RP%;o7-Tcg8bPGASllkN?7d*yB%zfhvX7 z(iD%l)Pyfn9e91CF_znr^A&t{kKJRj`zz%~rl+Ua?%lhe9Ucn1Y#z^C#b5O0cI2nG zYT?FK-l#ZRXV za41@(dr2+;UZ>9&8B3H~1(NDYrFo<*cZF<@sLQD)0?ttvR0LL!(HV0p{)gS>>f`%t zaW%9f>WHb~k+3z5@$|o3qs~A=b-1HWYsdvhrBh5Fd(}P5c>{shXQsG&2AEHHr6RF78s#3qeaq{stWf($)H==m>a3<}s`3iBol6_&r#Ks`gwB(P0S0PVU5G+u?x|Ul` ziKOFe@63=&PY^Km1S-f6FoZ)OXgrRs{4w8942|>dbLZZ^|ARAX&_4I{@XP~VtH%l* z!`u;XU#KwPuxI=F&Ndp8vUGlLX;&mY6;t~X@kT`Yqxi7jY&V~L;Pi)whpQ#VDn+&j z{t>e5cxbx>@8Zb8;mA;+FPj^6x@22GUA&NvnM3Y$-6OlW4U%D1H%NK#l_akrwF_ct zY6{QU4&2zbUL`2y?;lJ3O7Letv%KtfPn63egL~xP{P1A@{HL^i?6*Jl)@G$|!s!BF z3OU-r*o%4bBrxCKh+LTOGyJ^ais85M_6?qquyO0tWn0DuTR?+0%N{vkA01Oy%N2jI-m zgJ42JI6%4Dj+mj~fo5|nvgUg2^KTCa067;s9c#vsU-)#)Ym)=vx3`d|)psD_9Z4sG zG2c5Jo~_O1flyGSUeW%67G_$FvGrjQmN<}?Wb$Dd2XrW4{Gz0oQ)nZbbIb%cU^vTQ zlSlp{tiG~21J@n+#NZHCR^i#%+P3XNxe}D!7Ij-SRkm3Uy*)n}vThl$HV9CxVIA0F z4Nc~M>@bkD0~T{F1y}RNloA`XTHJE5QogWlTT6r|t-qH_r?U@U1{Wc453~)FCXq15 zunkEHoNZ8ca1>A=^1E>lxE~`34jZFn#topd9ky;+uNN&;!ZMntjjF7UDi zLxtNNv6}W40cpUwrLmaHkmd|)DhMP~0Ag~DP?O~wgb5=OmLmFg75F?CWI)T@M5LI! za`W;^YYmBO8^tbmObglekaKT64>p|w5OO9a zMJ{D_l*pTRHb~7^Ec&7XM zfH*Vzo;|GvY9s11^cdz_J7%Xo$m5hRqo4KB zD}HTEWO69x^~GX7Z)_#zqa9ytt``SreXI0K_e)NTwv_;QKO_3qEI(lzOR+Dd$81l? zNU$TGYd;_JorG3JweSt{R{4-J&7%D*SF&8S2W;$QvRF)NS8M^o@}~6?j`*O<37$)d z^LHGILhpIZMVJeT9x&wzCbNk;b3rnrE3-+yl#yQob0q=+1!c$_Ho8Aq938p1eaCz) znN5xlIskW?%lhq3r^mI6h?)5gEiC+aqghGzx5k^}7r>O_=fZeXYLVpz*2Hu^w*}w# zoXL&M=c7&se20C-V(DPDf23YqD%OL6t-!8D(pv3Tq)a~|J)yn)h}q>D$!1VB$jk6K zkk_!jcp(YA9-T_Vp9FSH0)iW^7c!!*n}KjeeKOQ_qMwNy;Nl+GY>Wjk(Crl!{o8?2 z6>BYAM2*>DG9yj(8BN-|q?d~EMA2$d=!OA`YFvmTtRr!y&t5yKFWOvcKT$#}V1t6ki&eQzwCZhCzH zMop(KGiLNpQ^l#<=4>kAlES zybZ@lAW0zy_)+0u^z<#Zkz7XDMuaHFnF+4J=gk04lNix9148?B3R7`Ev3Ejw05AqfpS{Kr z5huV!GNL<@$vPT*xiApdRvXQ{J!drA%+9nowspYgD-;WhrE+C>nn_;Fp=28Q-9!}` z8P77+3fqW>J-C1Pk=WKoUwW6#>a&K*{?x3t ztlDF$y*jqZFakZ}^l@+2-8PDZ+_tdLJvN-)yubX0`IfifC2I(`FYz{PpbalV9)p&a z*BRBuj~J=spM(KBg_a?9y=SZ2)M~wgJ#p`(k_P$WRpj#lZV$t?#0Nio2HPW-I)cmn zkohr$2DZk$X(z^qDQnL+8`^4opqltyvWb|?ey;?ZNPoG!SS%E-bTX*HXR_`C$ z|9a+u$-}C$v(v|pPyLBmIlE(GEaFJG9HV};D{#GMQ~ojm9ou%K`x;wgkd*to){uVi zMV8utU5(jQg47^O7rT%0n1*ex@bN=ZklQ=lS?}@bsbgro*8CgF{=C=O=ue8dPS}*l zPRD7nH|#(ty%pY?`c|I=p+FWbESdsa&V=v@j@#;ZAU`HSKI`+TveS5IRFGeSBn?iF zAt2gxbtChfC~SRQYgsjssK&N7D}sK470?g6U{~X+y%q9U!~H33CDqrak3GJE=lE2Y zhyn*scADk)N2Wl^K9dQkFV-(6s-XI-O`>{W%y+52P$a6CH&V9Uop6N5CU=}M6J>80 z0-P4PU2YXz5vN7nJqLCS8f$z2V=GpUno!G=phZGs&$cf2EHDU8$dx!9VoTl}puriT z4=1AJ+68?*B}FaGlQ0YOR?${KF_j>JD(^^FnnW>)s+!$kKdTME=S=94R*oOijbg66 z2Sjq*UGnZ}6NxaLg{|%|TP7mLoZ$5iY>j);05dX~a%!Q8EJBGY=-p!P+5j2c89A+M zCv^gcnotn9V%|vLosl5;3L%FNh#ZZ?8=M$zUMC$c=&FGo5ECsNA~oXSr-|4oVKOa$dL*j*(7H)4)`cDQTS^ z)=@>y2VAcRb4An-Q@5xVdFr5ADblnEPEe2wdD0M(P(5|4;HKcb4&VosgVzkOC1%rk z?M3PUmTK3TYKhw38TSK51q98)F{J|?a-QQKobSO8!3&(qE5e4@R6o7j^y+MZjucZe z`pg5WMg4d`-lKkZY;Sl)cDv<{uqJF(ZvfN18tO-?pH7x8GP%*p5%7qmNAFObPI>>` zl|H+GEq7>jy>sqdzpER__%7tm?p#5>rgA+H4y$FSSnpD3|c3}2iQi=9?~T|S?EQsIZ+fOsS@dUykv5NMI; zJxCmbEq}S#hJs_I?3nIWG>c+1nn0R|3JFaYY?KH0ZVUE6pvA|8^O~X?aX4sjV7d*kz8i0%PK1h z3`KZeC5GRKOqLEayy9@H*CM$g7~nA``H(sRj$*PU0L7Cm!3u`FlDHN&dvT{(f}$H5 zEd;(8U9eBVRSn@B^1>*L$ImEJW%psD-Rhf|A>2BJNh!~%^J z5HjH&2t6-eFFCx3Zj&Ul(PxAu9&Umrncgj%@jQwwF{@d|;}GR=yV(df+zA7b3vpz) zi6N~pWFDi*ZZwj)00lQfqwH0oD#p_^w>wRzr(RcvkG;_h&^t2(V`M5eSrnvslo{2_ zO$srp3>>^r9y|m%PuXO>OPIFyC+JJO2E~I~kTHcC9dzEUIKAA;S33+

IHEclQLo@u$~ECKLp=y76D@|K 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 literal 0 HcmV?d00001 diff --git a/web-app/static/fonts/icomoon/fonts/icomoon.svg b/web-app/static/fonts/icomoon/fonts/icomoon.svg new file mode 100644 index 0000000..bf75889 --- /dev/null +++ b/web-app/static/fonts/icomoon/fonts/icomoon.svg @@ -0,0 +1,1530 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web-app/static/fonts/icomoon/fonts/icomoon.ttf b/web-app/static/fonts/icomoon/fonts/icomoon.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c3d4be0c58ca1c7896c12ae026905956094c4baf GIT binary patch literal 307168 zcmeFae|%fzeLs4hb8O4MZCTb2%eHJumSs!wFUgYPM6s2SI3Wp%39>LD1V{p8;YS0c zlyW<&@a4-WOBti7$1=t;+I9UZTGz3TFRxzi=5DO(7-PM?j=o*jF()C+4U9P+>w3HB zaiSsq7ncf9C^t-hbC`ZmIfD{9c7VJay<(4?SUO)2} zXa4%kTW2fJ)}M8p4W3Dlj{edp}l*$>bD+u5JKTl22vUE90; z?rGr!mQUe|lqy|?kbzkKf>-}|Tc zPXF^y{`tdyzA(?`>*uZWtLJZ=zjc1!{HNw0p8w4JKRthR{@DEQ&HustAI-ly z|7Y`W&wqdZ-+xl^lZKxJ-`}=Szu;OJUD&>`XW@Z`#}}SmcxmAq3$HA^z3|S$hYRY3 z`U}V$I~P8@pf1)gx)%EuM;Es*?pb_b z@$toH7hhWZ#^RqYzPzx~zi_EQ=o1FWjxo^$=#oTx2 z{(A0j=T4p8c>4O&H=Mrl^esh5{vIItDj@l{r+;{Q?o9WYZGhxXK=Mz|d>4>3ovk_B zc-DEg@9axwfA{Pkoc*J-ubrJa`z9cH=In*D|9EF4x z+i|wzs~unI`0b7tJASL!+@Nb-nNU zy6g8{Uvqucb%Sf0Yl~~MtKL=Xs&Q4js@lKW{+0FfWhu5|{T0cWq%=j?KNogSy#+3D1=U2 zoOY+pX>~R`EsiqFjg|?^cFPTxZI-Q;Etcyon=P9xijQyrm!N$0V~UiPn37c{F*7E~3;JvJn(a}q)e^S5nB8V= zHq|pzh1cWnXa4T!aD0@-V{#ysN(H92Z-3b1c6%P)e#0$>eRhONm!w=eEoVIL!#8Z7 zy5)xLhu!!b=GWbD*zLi1%Zkr!mEzJGX-txQVcvLjm_N$v;SaVp^KM+NH};6xYmHdF zvNS$6dRr?#w~dZ&GVU9CXYA;N}{U3nGbAW~B-kAIW7TsED~D1nQ4+>^ODT8bBo4!L06R zTmv$;u}Ij~&TL{LSfm-#&@E>(sZ1tyaaTdwWi}@Qy+i)?ww|HhK*DTRpZfZc*Ar%+ zPiHdt|MIT>{#`$d3=C{*b=JDtdV1Piwa(UU0|OB??Ttjx7k%z)B)b$rU&5GgdI%nE z567az-Cj?Hwb^zx=*v=*!_h?F9SIa}2Yq@s0U;K-3aZAV%;c|U8X85GpqSt4H5=Mw5<2K~Vk~lTPt6B* zjF1143!h&a-#8)mYifGh+P%z^nD6k~?Kj5aqoeWIjdpvpW#hm=ETs>Vozx+tZP^1I zt^?!aJ0`}*4^WHPpBM;*w!7V}vieTqJ^$^ou^2T(jmE}Sg(Ewh&dQx?O7w~ZIKm%k z5^!OF$^fkzhFJI!47*Q0c?tAN#+N>_bP(63 zi`O!%xHzL8WB0L>Oj7Y=PF_nitW2ts>LrU9rQZ~{TiuG?A$i;`jIU`TeUK&1SQ0*y)O!8{PH_iyRD&jRixa zqbw0Ux?|$#aH6BzH`(7mG&sh^VBd?(`Fw6CJlwrNd=ui2W2_DuGQHtqI_cx+5- zvT-$2NUV;6bAPEWZ@pfj4>3s{rVFr_@h)Ao!*U zPuFHFA~=~wf=t@-6RS}^v$@&2aiBk%8Xg$fXl>qXX&US84TXAp$C@l>hPQ2v;>%9O zhlaMbw3v<_HMO*C8yboa_VkQ2HZ(Mj^z=+@jRNbpZ5zHMMWH=n)fxMfxP~4vbF&Q) zgMdd=-*WB!Q_pu;t?e@YbPQihSJ|-oGi!Uhl~r0hI@EiXcAV%N(fvuOOX`!Nl4RlZ z`$}+(#X;D?tkyEde1cg*#;h>;M_Ke$`OVlXj*<4I@N5a&$1Cb9hqsCKPEgG@Hw{-+ zDZxT4_DX}LY#C^4YQ|-GYqS%K{zoeABk*=_>WEo_M2yRe{8P}lR`i*umX*Ff+AgED zCbQeh>8=t`L8L&!ve@Q5;UTXIsu}U-QSxDCby`+ovV>!CR%Gp0lTnm< zPqz^BR^J!;0lsRdeqaS*QVi(J|EmBl0AW~?r z1dAH1RZa)djHcIEmQf%B9pud#$d5(=*(veFmB^na15p1PrDn+iYa-SfNFU>iFLP(tLTCvF>#Zj~o~y!qL1 z7i8xlP1e%=!rN84o7^somq6sjswd{J1u1k1Z~;&+~DAIGyV}s zXCotjPa?Z2k&rKEARwntbq?aw$&T{Vxa2TDkE=+V6C_HIDNJ_;_5tF@m6Dly5doj^ z$E{|-+8wo<0N9iYK^%k5W>4iH)n>C9mdi1|LwKRzUjaM=*JOlU@rdQ}h5``20=ZIa zESL=i)a>PLLhy%-kXDXxN$ZMhd#SLcGYxe7O6x4$+ziDn8inZ9j1TSS0sYq2-J`lO zK+vgJzkWr3EIQCX-rSta=V^?(u2Uh^5tP9Btlqfa60!Q3pMfRDKrZt^H@Oba0gccJ6C)X>+i!9~ zorA1uu(Fu?afS=Er06a03#ru+FTTt=6bXk%eg3ZQSI777+l24^^dmus<;|sT%52y} zI(@UX9__wuD15uGmTuZVzG+{z@3!#J?cIs+t<$-8Rf^K5DOXs9L@mONpp^y{RAZ4EMHh*qiGuL<}r^p;7hqwi*_UEo)=apli9`c*?c}LCliB% z2|1WAr1F`OTODl5aVypuV*zPWCOm_p%J^L@kei)_se`WMd`sB1WYG426vkCnzh5Xh zQ5aYKc#b*ZXF|^PM>Xr8&};l{xG?Hsvb1Xf8qSnwd#H8L`f5J==9_Z1v0=pDJ&=sY zci3%qYqGlbpnPC(wZgu&>q%%gQ?0$#QzobRRdp`Uq&L-9BmMnbTU+a=8a&>8YezQ> z-s)f9GUBSNtvIj;BO$sS1>JW`?chKG^iuB#H_Mu$uzJA~tWj1!>0N+~j}KT*i%!_= zJL0i*{opSRjiPf0R}T)ZF3b@86u0)^jcZ5udA#*gb**h%`}-qWx70HlOgC|`>GDc( z{Q?_(kd|Ryu@akKzFL%YE&$U~UJb~((uz3AGHM1mh5z!>Wowuh1vH#%R1DnSZ{{i# zSTA%O5{y=|BusOBgo)=$CWM(wFtXtSvRMiHfxOg0Mf7QdRHuAZxgIpS7MNj|oERb0 z#i)g-6N~u$5sTOFHF?V;CW|*NpI~L`v5P-vdkd?+mhz0xZ14F|&vy3EclY1@=KlZO z5MvK)h^ZIf*{wPb92nm(|8PHWQ^q_p=xssKx(2f##%YFS&PsM)vIttL!0?IKWU~b@ zb=m`khaoS>>BA6My(*C!3W{_QxWo--WksIcDve7wNS_17aQ$O4W2+15vTm!mISF^Zio(g%m zzCx)~D$B~6$`tHXR7^0Xwy~n3p8v0`sIFv6z4(E@)fE+rqOezb0^2Io9|~@t&kJLW zu*``4w5G6dM+5W1(63ZiDd{SutXfejY0qC}sc_boF$GU8_cyu>Kb88bs>Z5=M{8Y< z*!bw^?$%a_4>@b|c>lm~w0{8NM04{vj6g!qLv4}Hd&Zd7#!$0I2%nH2m%~OWS}WcF&5MyI3euRe42~xMYGom@n@IL zYFSxIpVbCyHBBKtG|RPombFk!693{Qm@ptR99Bw5D=uIPEpGFWGQw0 zo*D%^mDOGP9oRbAk!zeT`^pGWQ!b|ea)hX_t)#BuL6r?1Wx!ZRb$u0jWl|Iq?-IHQ z>?$Xml9e)N@p3*QD7a+b7V_|V=|QYJvWZj-dE;2pra_SCaCDel1KOH0%#613U_rKF zBE?D_z$ANp9}mUYM@mhZv-<8WWn~o@1;MmhG1Z{IeDmlcc9KR|F}%K$r5gI0BX~K-TvR%R}D0n#+@; z7sgZ`KA_HW?Kv%sQ|UBGd|l92U~dS3-;f+xFIk~S4?xR>bzXR)NkFzo;Daf*cujt< z#Sg(R2)k4`wp>PsdBjWhMkV8Golb_klHH9q_4u}AD3ILpBo0lt`s4t0sDQ`fG$Kj@ z(6_%6X!Vf`ZkNgZ1e2bBp4_T*#K-;tmug<$uCNO4D%2Lu&I!H23{A!_`pG4ElIFQA z5{~(}TrWJ$Cdm1ufkiLVz?Fl;gR#Mwvnfly!ff{7!Gre=-#0w`fb7z(dxKqUGCwmt zJ(Guy`bzAQ6zh)-zR9HN=}Y*sJb{vfm;;jfb_6z9vSC+9)qo}}M<#L{k=2q+udrIq z7BX@mTL{Usg%CTE$-olCvZ)j{+@^5~_aDJ1g$=Y5E%;4-6MT6~G-)#Jn$aF}N8N1Z zjxDh*>|n%uiQ6<7W*;VA;W~h+H<-C2c?U`LWILdf!|Ky`CIWgcNhzoSx~&Tum@bK4 zX}M`4-Q}x8;UfYfYY;rR9KFh6uI*!~ypp*`rxyTAhtvzxC5( zjFq!Xf*SB#!XFX4MfMpRX^hNgUOxAVHt%wlyq>xZi_~H=fs?s9$JjIKc@|T%WP^qY zXLy)Bol0Sm>FXyC8%;ShQ_Z>wgQnexrpk0u&Hs7w3E0(B2<#xT!M>AJXJ?X`5KQX8 zRYF&S)1~*zphu!DGpyPY!Xw}*H2NI4c?p(f7@583w@$3eBs7&ts^<~;g#Xk<&@H&b zG?I0apPuG)D~m-&J|YR0?jp%D%n|w9$d*N5S&=rviKflSQo@M&xH3_!kfsnjomFlE z?)tdrdabk`Ptn2vmYGX5s}74pSAw%v!3Nepe;gW<7iJY7wxFPKiyb>k*42IwB8806 z5r`nVr`=W9oamYyNFF|1;cZR$hboS@dMnZuLw?rTpYBQwKD;jdcrue@CvUob%Y(kI z%5yoQi?{c+QrK`HS9=d*ux<4UqW19vhJ)^kmVpqC9d3bPx)~fpIp20g1 zm`!?y9($ya#m;vHq*emtJ?IMSK|?3W!@bVlL_3!dR)w;Cz1dOmAY;^F~MlWGPEki z+T`(#%U9#_cCKWT$}C;uAm+74=j0I+ewGVuzT(cXw<;?kHk-kXscRmOa zMUnN8FpfXM-diKA?o;zEd}L&ZjvN$cTShvo>-+b~!G?w>YaL|`euv>?zt1;ZkI%5r z*KcUd;cqBwu79!tPA7Dg^JemiSKvfFdqsjl(;LRkj;V#z+pooV;*ZG zAY2hyU^~gOWamaaE?^+q2HX(4hn9)Iu>gh2z*Y>NmXeR4)pRR8uaq!#3mh_i=_L3G`M2BP{~eUDkl_O+TWPlz zpRv>z%vq;F>@%Y)B=gC6yJNl2*V^jyt#{b-nopPwl+5B3eR(R`+T7e~!iTm=_Nwk0 ze#Gb$x(EPZHo(iv0XN~tAnF}KB&zUpAq*AvKHf_>v&ia1&MX_Oy+WF^!)<`oVu9@K zhj?W5A_$j9c+wAeO`}Sh+&j}xKKb2|5p0_rwY5rF)gHUcwYj&qZ%>t@rfX|&D3D1b zj*=jk3o$FdZe-*ypZxFKH`KeetHx2ar@yy%lgnk_Q&pza*0PyUh|?3?8VIGyZ40c= zA{Lwc$P{Djg&wm;+Qegx@0C6S9HYLI@e%_e9MkvRhJE94ui-f3cfpR0yH;w)c(3uA zqNk6%eca=x@95iqTz;aUAJMPSx1dL&4dsaL47>!_gK!J#+sluz6g`;Et2zBD3aSc#twIPhruZN?ZK+m!I3?nkv(WEIKV<*jG}JzR_ub<( z2~Dorm}Asq8w@+tA43VwhCPL>HHU3-kEB2o1c!UFTUN}_;esFoc6It6EA{+1;+?4R-oTSS}B0!br4UUUL#5yVzb zB8h=8u<}ASEvJmlfZvvApsuZI^bIS2B}!;wP9rh9!G9%s$Ns6Ww|6tAUgc%AwO1r? zz{j*?<+(cp(pHKWx7eA9c`3A*LSu>WnhY@oSWj3~#Q<_Fp7JZ>14kK)Kn-%}EJ2y0 z0XUx38MzWRqYYJ6{oR3)P0h^-S66LqUq@$mV9@Vh)zHu%m}1%Bja{RIhekzcU8gH) zv2*47_s1FAw+YtlaoeC%1l?3A>q78Rv-J=bD>pRxtb^NaTilOq@^5sF2JRXe42HIK zblSGG`g?AV#}e27N^DoP)iUbp6rp*ehXzNxCPG3(SGSB))B714ud0GSt$!fug!WPf zJPdN((+X8 zhP8oI@_bv{L@3nR8469bwNY3$k35q*h!$VW(O))c3E6F-=2W^fJ!}oy>;Y?Jsw17s z20B|Dp317KN{^$ZGayS8B1U&FmBfkv>f=#hbLfP85EGbe{y4oy_)gRwSF&pE7xq{I zzeVN(0*feJ;+nddPo+X6D-i650Q*U9L7;3Ni3z#{GH(ITFXz5OXs&S!_Z(g(ND~$k zx#ANAN_s^hoHg0)BZw4Ayzt```zCWZM(p;)3t58@tx4FCUnG^wRd)L-yMv9sz#3;~ zUu6#bLQ^WHw)1Nfo z1Fc!U>V$@&5WVILnGRCk%g-(CZOtFipT`FK`zV62l4n7YQHg#h$^zofIrAAG+E>H828w2-_5C!8072DdI)1zx|nNpkZXB0o= zgF}Jfn5C)7G8POB6=sdUhJwLllcmi$)6#BfN(O^0NVnX)c63VLvJ5g%g26$$lG?yU zLxV`^X|jmpf$c8W_JBCT@#Q4qRcTz5`(hXgB3L-!!~!oW2F8KVL|~f2L(Iy)oz8x{ z&h8lVcL$8on1OEpn8VH{b)gjbl-cf%j=s8Diq_O)G3#pkIuX=I@{q`}Ji?{=l2kyc zB8Ye-9hcHYEG9^k+yV&_$UC8uU6CwSX$pSH2C}&T{^qhIJPU-(q~%;1wjlK_{T!~K zX9D4PUgr_$#T~jg1S=M@pb!O+qld@ivGi!Hq#_nA>lK^scDDFmwYc5(^A>k!^VYt; z>)9Rxk+FB|RI;U`qb1pCn{MuO+ovrZ$-c3%K6c;oj#A$sf1z*F+B$577vzd-k=dF} z{@5^y)Yt>t$39eFzNYo{DX0DZKx5;RJ;>#5?g@>IOp@}bAo;JfVAZDs_xMA$sQpQZ z*ZT$ryFzPUf;nHv`6NG!dAWx$rI?GjWM&it2E`$^aDD(TOXlu#40Emt#g@R>#t0H!j+uFdMvwF~wxUpSp@B9NUbz4o}Fl z;@Jwt1ANkLS>zca%f2^m$5OhYCn1|c0CtY$$-Y=}m{Fv8_6d2a@O3#yo-yutf^C+s zS1Z=*`_R&$#rVvE;g~t6QNV17zy>ItkXVlR%cFRr;u63a0b)1!V^4>IUx@j)J-q%% zZ+#^I)psz8WBtE8*8fllKTQq&pC23h+(7>?f0=zyUF~aCZLPjqd7HbV@O)*x>}dA2 zdR#45xwcY%$m4Q(Jcwl>nO3(k3j3$e&CKO+Ym{(>N2wv+l>07JJjOc;4N#X?6kR_qoJlLNWjXkRGN)Kt~?*exuSy(neL z%FLg~)}1)9yUNkBp%=N=t3D!{!MO59$<-wDTsn-A8g1WRBcZ7c*32JcvvtH zuHDczC0AU0HFg-z4wkcY)UGegI(n)uab2Zo>$5-=L{y;}d9|4Y z+wdV-_td<+F`>TxA*6*jkV7M4+Skkf0;^qz6ohV}@gzN&RQItLe+#n4S#x&kh8rIC zxF2&kcE;nQU-;~2zZD&RG#LESzI_kI{r+gw4_&n2aX);+_M1oJ@tsJkJQyAR)@MKa zg+u%H9Sa84QE?4?%IG)Q8_A|gImBesgbNcUN4FAyJCXt_k+Q*#XgfRo1$D4 z*a}N_=F6}sk0h2HnjiwJ1H`WjhHMXlP<=9IYwk)2pa=irYd9y1f z8VTB|jY$DLKm`Sh+wZ1X1WjNNnrX>u7DrACflBrt$=iCc7Uc8Ca>wL!RSk{MGh9=( zy2{xgOAXE{`BbPda~_gPXH8o};R6zY&b+s z$sx^PWMu3QRMpj0;rk!dH^cYOFAnW8S~N(bFt44=R*kK%Grb^E+|3 zIuq_9Hq#Y`l}6iZEGz_AV87X8A+dWLE$!c5SwVaI$D4u3TrR*EGq812t`#J3M0SH1 z!+l{;yfu=nBl#L)_`q=`fb5JE3y={7U*@2$6Pic7uhgvz1d{cTP%;_FC{)vdUj*fX z>nB9TeM3V&;JM&Aq@Ohdx_zv?+_0YFzH*AVXLqP4)Dudz@Nn6h*b@wuG@e+j?uxoT&k=M@xEcgYH)#e*%096je@nDTRz86(r;aFgWd40O>uXDsy^Av78LL zGUnOrMl1?wo_zO$I@`FAV#t<&n+3!=PuJ?c70MKfR>2`+Cbq~~;$)6CaD>x3eoUhs zm5AU#os}3I&9G=N7k2Y*kZdks3r?iV?Z6f~9*YZU0L-eQcxV(Ji3)kb zwzg_x+^T+li^*JTx-QT*;c_+%*VNWD)U{Tcu5WTYw0Y0<!Tv!$%c(pc^PQZn6iqou*j7B^Q}YE1*tjiE%B^>&YUptZ_0 z>2U3OeE8rE;Ygykc6+SV>)p`WTGJBQI~Yn)(6MQfgz}C!*CE$+LX7kSNz$G28DHp{`7*g)DmM`akaNPkltTPmMV z&yxGsSkr?^>lxxr;41^IL%xoiV*?pwNLk?cp(&?I(+g_m#lAyhBg2u&jt=vFTW{~D zuG_FB*wee!<6-}NT+JN!1)I#H!C<6w{m81F4tr%~TQhZ1$}{kLM)}hc1FsjB1}qXW z9ueh?+Nm2TOK)t*B;_J#^#FLmqb{EIyy!uyF!@{(u~8?CZ~L zzhPokZ*Q!w?i&mw8~DTJW!?@&B3#x|xyg?929w&VLh=jPOzxj9ig;58iT?6le4@?LQ?IfpKD+FNS39qkhB zHLyj-H5^S`ipUu_#r1q$Rs%1rrYi+81_WtodAj%^>f2CB8TbuKeW&_1B8Qs%LLy&x z2=>_3(kNnp#$lVs$Pk5zuL9~%-?+BLJ{T~u1Uf+OPi(EAND*46ULTIo8Dz_fE5O06 zly8X@i$D)cLr^;$CkE6{t2N?opAvlTH_K4?MY$`r+Az zw!+e)-UN^yq6g057D&H1OL(aMMW$MO;OGr#ec#I9XIzO_Y}pxz|b;5FfzbW z&G0!m$#eTO{zoB*JX`?V3^{l>`-A9S;(k=K1Zy9>Plk+3(U7J{1M^xa@u{3IqlpvW z?wNWs`Q}uQdLOqGp3HCCLs?#Xz6Hcbzd)bps=n zYv144*)bUz9vM5-_oAA4q21%z+S?;f+8sMrjjZpC1cRgIrl9XQ%N%d9Hn&w)qSrcI zAnlZLv?7XEi6Ei5BoT`&s<>VL`mP^M{AkzU!aLkH$Vsa@HT7jVRG7`kNuwO1+CKQe zfVUM`xul`Ofr^>8ugtV$sQ9Ve?B$$GM&4>BlP|F^A$4P7Ir?X>*jgpa!1QEk? z*HAia1lg9^P$rY}4nbVgqlcm zSvPz*2uY4b$~6xir~o(1(NCO=k;&ONq)LO`fE6r#paxtygu5#hkxzv^yX%vIsVNAS zyFKCAVNaeOi>D5IGPs({>%x9v!W>%RktO;=riFL}ijZ3yA72STX$ldg@RCd*i(n}R zS0jRQhatql$3hWUR5Ao!lu&`sBos8}ML?7Y&E$4!JPY($r#pH?t`IFC;sJ)pm(%zn ztsxjc`8RE|ZjFRTrl+Z5n+;WtM#AB(HXEK?j08p$<#)u<6cuYj$W_{A+ZK-eN}8cc zQZmKIO7nR;wCuRFmS>iKVm@iN!WzqCf+(k4mR8CoHx^Gb?BAXBeDBHc#@>*hi+y($ z*6&JLx_-Esw_Iwy z9G#sG`B{gDB9r7|yXC+=$%pJwWjSr)ZDL)42P|oHk|jS-XV}d0HYulB^c7K`%j8GV zzZZ>tQ`oWwN@HyYRYOgu72+l+iULw3@D+01a#8>&?5#5sH%=0CtEze$S~gf4sw}G~ z-Y`C$eX*|FN-UeeTyMo?q1J}(hAQja&Yhrr%fJOXn8(;Y!aP%LIE>HdN7Ph20=nci z3+I42B0n}U@z`sxeH3^j@!^MwHv<2*^JTg5<(;p+w#YV!Lu>>1BE>`roT1tcRp1Xa zuiVLSd7BCvSHLY(yO*||Cub6I=GU(95K9pQ6VMsEHH| zT10_~3H5dPP-5?E)N_R7Wm18Uo=9x?%EV6gdf~am-dB15nX~Dcbbj%P#JF(`0v>Ln zo>zhibmCF~2}<6HpK|xa#G?jCu@~T^?+jbuQONDBs;Q~E66n4+_)uc(p`oxpJGj^w-K6<%>KLmTce}ul3nc4-6qSQ9tCUxIMzaYxnMaCiTot*VC-& z=+W;z`|S6`U-i*&7%`rRlTE!_Jb3h|`s|A@8rvs(9@pVYQC=3^2E|pjr4^Adr%Rp> z`Cb%a*ktrt8TQ$)8apLVQt<_{fT+Cmi0;4=(F&r-2z%DhUEmff8ELR+C2Q=}YNbMG zG{DAcmnB0_j8#t9ua*FH^rX?1X6(sB8YpQ5#(vaOZKY-XfQoySN3--w&r_E?M7Oiv zgjrcj&xpnCx*@`-K*u%nyFn&Utrc}^DTKbOt146Jbnb|RSBWy6@(&O~|KOJEZyK0F z?SxpnRJv`6+iVv0%M*I|p19V3yrdZ4o7?|LN@scNGNuf6~QvrTr zdgWKuJ#8LQS0-{>VIf9!Fc2e@x^DHFUG43aQ&SavUioWNQ)N~&YG8;9U8|kRj*VT~ zHGjrl?!GM|=FlzQ6r<`G-oA>dDN}psfw zmF?}j)~w;{Q6FC`MZPXu2TKYRP+cm`&$MK?LKQKLY$ch8y^gNA@ZiZ14sL@Vk@upq#Fr(`eUG*bvU8LZfLWdS+>>HA^ZP!(zc3@x=D*_8u~ zsnhB-`xTSF`^ePPz4uN{9qI0_WItqTlFhLHQQq3RwgsQHt*uZ&OFCIA>_SvinG_}p zW``Y_^Ce;K<`tE7tT!kcsDX96^aCt1@4Mx}HdNvz(|P7NiJn3(4PPa3qitL5OmBio9AVp;ENUm&3*4 zR)pWcZAGlCI_n85RCI$PW0ebQQdXY#Fa9`>hTamq^(wV%H*jcVSOLS!c7k0s-|cUc1Id^?Yr7SGBErS?=t^AmxJ6xTZblyBa5HPPSPmqn7Sy)IJqf}ugghaaLB%*pBleM`<-2SgH67(x_R`h1_COz%y^;(L6EJR`oY$=!ml@;nqC-UPZ{4EE+8s#XS~6u>`9RYd3x zDfOz1Lh$rqC1L@3$a$q^Pa{7f`ST+F!)W~}Pt9HT?m(O#*KAo-w5NIv3>MJl{4hn2~TIr*u= z+qjPSG9tFP2F9O@EAhm)|d`$3W z&6@!UT5Vj)iR|*hA&_Uzm8!HQL#Q?IJ;u-B?;IC~~ssKDF_n^;L6 z1@|XHeHB}oFzk;<>$aaS0Lt+iq3A%v!r#hKbR~J49&i7WFW519Q z+Yzz96xo0#N|qQkuP8=^1e&Ni`+dR{IIT)ZQ9rVAx>dRd{S}j~z3)T! z=PeB;*Ay+?rmp#fc?1*BBY}~!t2U5_yF5SqIP{JA-R{8ydq3+I3Brji*5TL#Up5G2cotoSAsjjBIyYjMz#GwTO`mHvSC4fBo3Q?Gbu^474x{Monptr0J60La}t^*e4q*Y+~HO zM*N!2`{^2OpB!)cu{`yPvaHC|R>+AR{6N?62c1SXEqokQU4R9JgN*8N;9^{W4ZVQ^ zjF5^R;0MmYPltWl)BJ6uJVOq;9A+zxYm>B9+QG9XXbjqy#zd79%CUuap?KUx$ML1} zv~T>ypzr+=Ej?>IbCqXlR2h_8UGO^;|0+3(hB*v0hi&=rtbx~3dr%t45yK48> zKBJ~iu-qhg0v*ADE^*}J;R(TqV4=f_$6Rtwq#Xl3*fsocV@o(gE?BxAg^z(_fM0-| zqZ-)Ar3xjIBMHqk0TE}xyl9h715xZJzo^`7&-f2_4j_)2}FesSDH-wDoyt8|PM=HfZ+ z7~wK~>3SMJ$7Sk1eK`ElOYJu%MSP6NOW2B)N*-=>o?PRaUz)qSX;v{L?BgWwEo?+@C`g;=9nloR9kRMHs$_sg0g^&wkLDfyA<2ds7X@BG4GDQ@0ex)RNAS~O zp~HzvffH;9hB|!d8rpZ`t6!(@vpfe8K@U))iPtFrx(UAE<48<Yx6_x+9CEPNK2q&?C$t z{!*`ij0K$tp$p>karp>6o8z3eCB8|$qT@RJXrKB=@TFtaPuiz`(iXUwqNogl8t<^g zDW#F9mPjf^K~Ql4fq@*hKoBAmI7lZ5q(BYY75@n<#qW>FBdOoiKl<8ftF1HMcdRiV zj?p#7@kQu5!!eC#@EJwN1l_~(#~jc{Llg8`AC}hV66GUo!9l}#O9LV};lJ=j>2W+o zyQBs4V8>Tz4kD%`!e-U^@X zN%^OUr6K!cCsvjgjtJr}L_#l=JCe#lr?_}7b0uOLwbXpAhXUbU8`K}L+Rb~rnU$20 z49lQQTdVKY=Iw(U_Q>h|o83vGQKXk6UKKG2{QUq}CGY^ny?#GZk>QYxL)nniKija& zb@!u(Yvlv6#r2s3>JQ~pnG;i+AFZq|Ove^q{3+`Jo0qsOAl^sO1RYvP15__ovy1xN z{&HKhmK!<%d)F8$CJFfH~}A$9IoTW@X!b0kYTz z?n}OPqItOKJb5C|!_M>LyU9RBHA;NSgyIFH5Lc+#D)d-Q1 z7gYTVv{S2Ef+jc?#_=LYAR-SPVGyTvj7C&&mX;>)j+0AlGDraq(VDx4ws|xiJfN4g zjUZAyC5ts!YMlpuEO#!2zSI}3o5JeLEN|2Vm{AaI(cAAN3*n#CUl&RPr%vm-fEarl|WNah^l%;%n4aEe6fixGyTh@X-Bq0mY@rBty$%$rqtJ^nCgr z^tU*>=^|OuFG0mZ?FLM#W+TY}Hu_k3o*o~oHeTX32+)E!;g5PXii|DoN0;;`JDb_Q zJ+sXdfT08)|9}Ayxlqp({%0~F*ik~cP;;mmh{Nrg8Q3l;s+Mg3WJe(-7D4!&M0iAu z6cGvpZK_#E6RNbZY@qmB5tQgx7y^l5jfZlY&j#paBdC+;fK-o3$s<-8))b7A>Vm|{ zGh=d#jhs$pNV>pFgn*2vxE@F*QoKTx;6lEMBftR$41i^hq6jG<9#oq)ULs3~0t?I{ z)a_&ji3$iTC2t6Yt^$&DuYf5LIH+e;_n%(2*gXyQhk1UsRKjE9B$5JM4uUt z|Eb^+7GO8{=i^4$i1u&@S6DZMb6N8L6OT@%Pf~r89N8)`CJIdy^hLyLh_-;ccoRu{ zSzCyq1o9#oNoxyS^i&EfXL(!Vy>3B_4v}S~G5It~RWdo~rina>l}t;eJ&4@iTMqKq zn;c1J1$iRJ&1gD3N?Q?kKyagVI$2z&V7Ek+D7^p-2L&k+mxfqi^*mN;K2K6D@z!gp z@lh;^Bp8=ityE=0uZV;x$ngKf6}ObbS3?!J@CH(H^CxF!rY}i}c_uxdcwU~I znNb(;^SuuX3(qBt<FqKL}mt}k_ z>Uf}de{)mImNg6gAscE}nHpNFD;rEmX>I7T21l*d*7g?1hJG=&EXh9@8^zJ;77TjL zDfbHlbwLk~Kz;{JLo_+A%EE@2=6F~Qc>{TT+~&bWY@Xp8HQYE$cSA>HNbt?&3P^h= z!#Ax5!!xM`3*nkqJQG)CNcIH<%^|WqOV7mh8OUh*o3c1pgQ*-Za?*rBA*_3MEMD_T{+KK}ykQUgnWa%4ddnd;4phz(xJ1wz3QnGebFEvxL zK)x$K5ZhykyE1Ec!}_>peQ>a5dh4yvvjY}){b)m{Idk20utE;X1&C93G&w3X6J$%n zG26uY=hs(MjGAi8H7g{?F&!6)e{xDs#m_h_$xes$#c{T>7?&bsuO>t>d4QLz34{H1 zuZf47TfkL$i88zzgPTndPC#La6slYfxr35WA!OksSzMxS_Ps-^woJRmpHDouVTP+f zBy-@yZ6ufp6;c3of(qTSU;XNjkjRCydb8Y$0&5Cs%G`#C)q^*a87`(?mr2v`J01jo z7P0|FVZwh(K2);sDCmm`y^v>jC3Y2_O6*F!mrCV97*Ox^OS=-gcPDm@GH`98*0ZyK z6=1<2SIJf$6{JfzegxjYTcT}*pWd#!8%LP}pTcO!9j*ObZPcx8E;}My$)o6PZ}-v{ z2JNw~wze+%YHLNK7h;YGg!pn@jbjLB>`w9fOHVD(X|B|$u2nIOh2|+hN>g}kQ0pSVB)`F-A-NH`<$Qrq74sRm9gow~4NWwpQnef7 z>o-}6#0vc)sLcRh^&}%XarH->m zI3@sQPctgGkS_qocs(OJ2FUok)50aeW@zE7)AUMEmQ-JFYGMy?=XH`wije0))DU4` zM%|C3#d0?Y0{JY`0V<_%%UTE$O-;!FX*K#BG@~w2QS%h^+%Fz})x@nCLM&8COYEwz zpyEl{6=2I4q1gD{TjMf+mEKj}dr1PJ$o(&;KKXc=Y@hIY>hHK;T4x2xj+F7JIYFVK zI1}$oCFHK&uC7>PgGj?GM{^V@gxgh|d=g z342278VZFr*sK+Bef8JXA>MEhAxowHRqz^a+;C{uQm(G0gK|ETgAly>8oS4iKqq6V zYwR7@S-F3c>AF7K%}#*Z-#3Qr`{x_aa1tS%a#e66!` zlH%L7j^24a4eeT|s5BOVKM_CW@>ukF5T43qv$O=k+8h@@- z2^*t@BT>6f5kXMUCg6|3^e~?D@{% z8G|A%GVwH~T@<8Y94Jhp1pZC;OcT%BDuG>((Vr9oUY$#N7w z21Tnl5<7&rxTc6kN}*jU-mr>yP$I_+F;SDn07oRF5?XO=7d3tKb}8$`*e}xeV}KEn#e#D=sVCc@eUy*{lRtzEu6a~Q+#0~w{O^!0vsU_ zX|Wg-Ge@z+#u1b43eV;03@n?XxT-2DFX9asq>0f;QAU*v1bFC0Na~P(U>7C;~`u|kR|bk)2-1=Rs@`j?6quWcpG04$`SGQQoPM!E6ha3 z*PFufvNg&=VlCjY#oA>A;Zh$EDNGeHuC*V4APSRRy)UWg)-ViT|EiN92cE}Q=^X8rlDM0{oOL+4Ix6?4WLdR0zb?BZqjmT(mu)L zVL>BiUYoJ2Okj`{CXPLP@K^h<^F0Pe39ta~1dL!+A)B-S5<-a5g-4GI zFddh}GAch6Aw@aAqz91?36ZLtK4Gr>ajYE$6it0W%)#-(%kmxy=w|{a635Aokq2ES z`J|KAFpOv~?f`oeJOqjQ-20=wZjy@ZmLk67Gn>WR)l%X$k(*H^v9~uA>g`3v#4}p` zS9UT!G__QT?!2Ea%gz@`wp^&d^#Oi29GkV zL9z!^oAmZ7&@nC_>bwiaF)nG*D`?g--OZvIh{;$7YXZ0cK@f#d%#<5IAsr~f#{J)( z@X{ZMn*r}TMa&zfvvk^vRH2|_jhQ8GTsfYNRR_YVWe@Wz_uAR8y zZI}hgkH`N-&KV;rS!OIA!#lLqS>>12Z>(EQ=|F{7vsuG?M&;i`F3_#3SFa;@BPSNT zRn%?eHTVcJG}5A^qQPCBgAq9fk)1FcmE!UDB>BXEHVP!U0yqpR=is>BCdE!ttq;xq zzNFTNF3;(0!;Y<){_^&Dcr1C(lnjC(L!o36ug3~%eJ`yW3)V7b72cv{ zZDTyNl(=YORiFqHie8e)XH}TRn;5c~Mg_A)Su`2=xYBfn!JU;>QFDMn665+n8T_~x zu%_-p>>An9xYWRxWe}m4^gbIBjqxyThLDpho{IQtRBu!GV=FVevuXa^Hw*6^xaYv% z-E+@@*#1Iox~6Ko@@(PlwEVO@Df*CMp?A`+GYG5NUz2k!YkzOnu24@$Oee=-g0 zeF>+@U)lj#neZAjr{OaBHhJC+WI3@moXC*8rO6glO9QA)Jw*)b(q8(IDoyc6@*_5v-VfPP___;mX<&Qx z6$35jNj?O{`_Tlo3;ZQHjxw*1rOHswi_2{$jg})KRVcr4Ahs1n4>Ilaj-{J+Zo+$& z+F52zB(lB5S*hk#WH9C~Nw?gT`a*c9xp^r3h15;App;5peWIz`ch}mr>)E4EeuOn+ zD*C95auTvecyv3)B+SWP#F_BgW>!Y|UR)$+pyj-ZFj;`%TA@g$fGk{D;Oy{^F;t=f z|DvKg^dZp)^;Sd?Gmr~%1R=+X^RG$FyB`z{(Xg~y@eHgddVd8MRF_Jzdfu$C$Z>ie zU$#>4o@y*=`U?F_sC34CQYe8OT&oo|oY_geXt|m-)}%64t^!dIan-{lh8N4Rk*=rv zM@Yx+#G6kb%z*a6RtbhHUaTfYwS;(FWe5Nv#Qm-?1C<~Of>3(0$&BB9*Cs-0u+CrW z80ha*k9YKiI^|OcEQ8{cRe69lLaraDOSzE=uP7wN8oKj9N8vb%yLZZWcR)%9f70Ju zN4iMS&VamHF~J}LyowdDQ-)9rb3(*>l51Pg`n94$WU(N;h0KFIDZ(Le{gvph5-S{I zM{_V55Z&cdbOiCzX`;JX&|QcSTj8t~beG;EBiby|-Et%EUN+&l;0#xQYK&`E7vY@p9 z)xQ?UwD}Wu5H4#G)M@Q3&x_VIa?D{K@13JrJY|^0Qt~t8V!%9&d2HoxHd`V%E?t7< zRG!!^{1ao$4GEJ;+(mE9)7SRp^rkfdH5W*Xk0$~w6ESpy){GXjw0(eh6oN%02 zL$Jq(Y&zmykF;he`w>WVC0=bTZ5bE2J;J?+UcYY>k5QJ1?bunXMPN-GHeXV4#TP{5*Jm3zU{57qkzsJ*#G+xW8 z1Usqsi3i`&4}{Cm+s{z2%%j2v1+f-35#pt~&xPneQGcEEgN-X!qyCzWVd-Mk>>B*t zl!OSG%U_r&B+QjOGbf1z0bkTdG)Z)H?6y{XO7HxK?$kyM|=R)zdM)) z!yxouecI)TZ+>%vzM_ykV#oL#v;WQyPJB~_abW5Dawxtf$aOukD|4S3cYTU=fNVe5 zPGr;lTc|Wrqq{+Yk1?=$@1cnu4_2VirUVLCg0&s9zk_E`JuH1*`c>&S@UH7Wl>T?= zuh24Rh&~B+!@lVg&c;gZDV)P&nrQ_ap5r$hM^*1D_GP8xBnRkyml5j)H4P##g-xPF z>hAv8{Omg9*okC)yrHYRPAZkF~*pOSQZ zk+h&P4sqk08TajmxilV!Pu$H6=jdIG5I3&c7R3t~?=czfG49KvsP0nG)98-t)2D3< zzl%6Jg!yVe)!*e)<#4>N(KS6T@p?yBB+VnZF z={HX6q_U_Tsy2!+*C&M90hM(8@30- zx-hP3H6L!B&km7#h8U9XceO+4gt7+Y@uy34aBW@Uvlfg#E z8HM5_^dDZbujoHAe0J;VzMxO8KHLAa?1cQhc0i42%U1nCOn!CM3C6@!;JpWrDn3W6 zufzT*KZaSUWm_~F@W;y#L`M|$1%ATmWN+y0yR}=sqIJb$btz(QwFk3%bu5|IC;u3Z z@Iu#YR>!8|+AZQ#@oM(dSYb=-W%O9|im^xS9llnF4d$)!;am)3LIM z#VoC#E7B|$&~MbYD5K)CR*PjbqhF86sw?B@?GnAG@V`mFCjFN5`_dmvex)f2F?3cyq8$4*2%hHPmU+j{lX0V>+v12@U%`vjUzL@wG_(G`!Whr@+6O8dYC7 zOzaRl6ttE(v}Y9bhdiJi&=;Tn5Pd7J(+5#h(2D58igK+=9E>CXF&(!`xOh-MRK!>c z^InF{cw>iv%Ln?Y;(98C^u{?_bEeFQv99pI^Lh(KE{x(L0svQdF!u+DxGs1%^%$os ziLPm$GJebDaw$706231BwL;ruJ4wSQ>!uaM&HP0ZYqwULNYmS37h@ET^l7)pH$1zpa(ZfkOTyU&FONFJl~xd!1`tJifz* z&yIK;KbAfZ@4WN-?_Ixc^X7Hy?)CevRd5)UYRA#LwlAwyRUuvwfWPoUEh*r(v~pZq z%&~sw&h?Hcd)QdbZb{*|`fAtbwr~HOtEO&Q0Xq?=O!oFVXvOf#5jk;#znI~lvm_ecn;wExga&kk2$srf93{9pZW*vrI-49de%Eyc0f^z;j7M+m90_C_!E7rmc`V)+Ih9AOx$Cy z!HYY0g+hJmVqc`3`P4;dvl|1w?C%B!25uV|=(h&!sW1IHUND&Y(g?f57C?m`XX|)x z;DIt$-xsMUBfBAN6#>{P8u@z>R{?g*Y%yjO=M{lBR7y4)A(sgEeHjH13PfcAyk}Z!PmI8xXo@IwYj@Uyak!p0a3UG1lC*HA}T@6!OF{>VW?h(vK;{!2w^5s z;Soi;@RBX+@MU&)*WsNWh)<(L z7qLe4zK|T<2|5$zHb8@=(a3|zR`iQ{NpV+%1QD;+7xv&4yIOoL9Fz1Osi76Sjm`>M zM6^QTxji5h@HjMp`uPDc%GN*y0z2zrQ#;kK%P-Zkx~Fy~66zCgvd<+FJD&ofIKoe{ z`C6|y_2irEaefMJXYSX~{10_lRpfsV_!(qo3&P12vx4L!?C9%Ayq;_p0d=$Rlh4wK z6)nVwQ4lv=-WiHDfHMYhDuNb@=je2a>Mz6QbG0gjdSus?>^z9hfQ^c9C4v`Sd`#{B zzaeEQm(yONBi_M!ZDyWX{_3S1*^Xh4;l61a$E0-UCm#tDwpP1UbM$C$Ezt^v`i$eu ztc6q5?m(&NSZvg|FJgH_B-{VP+uMM*b)9E|IQJ3+f50CQ00I7i#6JaqAV?4ZNkJe) z$zs)|1x}z8>y~YdqR4W((UB1$tEQBiVU?ITxoFbu$Xfn~R z16Bwz4oOL}3ZfFil!PiWgt!P@!5#=y@i8GZloD_6f))q8&GvF6!D^mEil@RS4;_oR z+DHp>c{48a8dF6oTvTJH3Tzs*ipCl9KfUwZi6;aXMfFgijg`E^b=tU^A92kwrQD@i z=-M02Kf)n$*-x~2Ylq4(Lx9}^*5|v}qIH?)Q90oaqkq7!5aXzLNZ$p*h}T7_%zfgv zHnA>-JVMs`{`)J>z%#`wD3@vLCZW0Egpt;dSb3uQ_`OOZRe9PnJhGLMgG?w4?XQ=L1WgBJw(cq)^Ga~g=J zLh)@YRsbLcFSEB|J9i?X7{?2I6yfrKJK$MlXc#;}pwFdBnG}bin6I7yLr``<=T}D> zqq-NBr6dYbBLnOq;}jmM94JKS4&+S#tX)=n$_cO}~&-YQ$Ha57eMD<1snfe8-n_V_%kJZ|2YitZV&{L~}>PXkrHaE1526~4aVp!02 zwjVqTub}UJgs5X8t5E};Vfm(<(JG6ESGjo3$c0i2i7Ylj-g+^g7NJ?FEZF8Na zt+Ao4&eDQSdoSK}bT>9Ns=t~(KDDo8R@al zstFENB}p7!PA=XN2IbZ1u*`7PmBkbwtSJ2K8@a|a;t|`gAZxjRCs3LeSm*baeqPE) z?C1F|n5`r~Nd*xQ6#%f-l3W(O84_{?0JakH6^Q`VjY35|Y7axEGvf7yL;wJQ!s4y1 zThv=s84EYO06`Nmym18;<_?)Wdb9kv$;v~q)(Rypb8*ibM&1&%i#G-My6RzDpoZbz zPXu@zkU4bZ0X*qAv}zEI@pZaZ-Q=lQ>spnE$4sJs^`+99BAt6qjhrs5ak2E__?x#c z9$$UV9-i^A#$tkthA1p#;0AL9&^Ds9+F+KH2o}EHJP|k^B;1y-38n#}s<(GB@Y9Q! z4EpKUz7hn>8xAlc7UKAiHLn7XTWfj`VFiebABqAbR*Jlnx(c98;Wdl(mah=hdT2sJ z{zYmV!ni=g6B1p&t@Ig81X0wkK!Vx_I!aK6t)3qGWvjZkMBQLNTIWX*5R^(=bXe9zSDIKRU3=x%p;&bve3P64noqQ~ zY!y%{vrCs`mEm_ndKl$77e$69F7nipViCG5cyr*7iHLhwg2D}vZsI-+(z`2?UPZxl z^aPZu5dwu3b_33AR2+$Xz+hD0xL%H ziRVmIA{DpiWzZ0A?9-&NbB)~K2$7;?FdIbrI<643MaL*JT$dU2ko!HVvL3ZmJU>qv zL;7)2$L(qsc{M(&I{UOLt8i@2+wb=!o0}DKzI?*$!erFya&PVLj|p%ayWLDs9cMxq zwFaJ%hUw?B`KkEKDuZ-0lGFv$hjR78#W##>`k*L~W--c=a`ED7nNs4M5taH8V!hjV zwOePQ+hB#mB||R7L6a=MEZ+$Wg6a?YA@KEg~?Gx#FeTVp}`m4AS$l|N_X2lV`+ULuGI|sLZKEawbyv@Ej~Aj)oKSR;<9vDV@v5dC^j@4&&e)|!A!*S{j~$%ZuMHJQv{cfghB zEDOfyBo$Gk`YmDL%4NI~^8!PL-djhqN7!`sNOnn=CynHq7{~5XVFvr9navgzSuG;TrAWU;HkODvnFUV_Lrx48jgq0=ho$97RNDYu z$ei@`^fxaRmn8NDHh%=(qX=r4y`uh_6~DfWxD|32dCfAwpdhZP0Z7|L5C(pJIQ18` zlhv2;*Mc*?71Eii;1F9c`KK!tFUgBS#GWKM{9fTe(GYzkyXk?1AC$KQCYrM;l79!} zc_gSwRD&uIpG371mJB*3rM}!W$%{7%G8QK~co9d#tmmJYFpm0KBr0~221gvi#2>r^ zy~0`wT^1S(e}L(gudKAX-je-5ArH!Z4AU3r04%^TdQ)B~rsP8-<(^yjghJtp9Zx{S zKEdY5KgLRm00(j&X|jmJQH-1aNk|2*ta-#Af&m{AYV69V(GLu$E~t#y z6yvrrR&EUC7{5!}#9F^Yo-2->{tMD?u>I%!{Ydh6R=r>O584OZkzYP=ct~bC0(?=Y z*oON}Wq9L zt*o3xijP#nl+P*B1#l1MlnaaEX*QR;;6_pmo``}+%Hc~=-;I-LWR*x4lpNd)Z~>iE za)m{_qbIb#q3mxm#+d}yZxYuN4WfqALtbZ_uA9+rm%%xNKe#o@&&D;Fs!>q;cpJ6X z)!Vm}wSmtdd-Ffbm*lP7Ul2kh)T9SIE%1be#f>2BK}1u++!P|3p_IiBnpC0iTU-!g z^C#{<@#iN_oJgpzJ(JHX_}_Y+z1N!G-x1DVRg~7m#g4Gk7RrYb^41e4?*FqB_un69 z+n>$`xi#WnC@VJ= zA57hf4zFq(<%v|S`WwZFjEFTs5k(mk>r|FgQ+(AwaermqW~KGor07vQ3?1&>V>fR? zC!zd!s=P_7Muta(P%AcLNb{&dSsTU|E3?IHIF6Xa%bcN>TAxN7O6;NBd)SMy7Ifp% zThBj#iN{ufdU-&D_iWcNIma$tdY&EEcK%JtYW-GiOMShq_T>`7f#0@TOW5`8+Sa=I zmfF(G){ymER_l)EFFpTD9pzF+)s$gi3O=6FAumP#Gvu1%KZM^DzoPH?7Jd@mRh@r= zbYfjwSyMBHhm>YGkNpz+^erqGwD@qc={2G|VyOWq6%1**CY3k{)wLuJ2KabUVv_vf zVwt3qt@evc%gf8i-ghW@Mai@4KJskv1@Kz_0#EC|P9G@BRpTm$->C`H#p;9Ou+^crVnkALe0M_1H-q)hSo+7g1HNFYt&qRX3qB2Wt6rb^Usy<~V zQ~*+D=fp=hO?y&Nk-A?fQ(GKUW{aVqA_9D}NfebUh_t7B@fqjDK$+S7sXav+%Sy~% z*c{x}pqc2T0@ajthYiRnvKvxnQ6-OiyTjb;%|$~dEXv9GQ*bI{KYz_=-;tgfIWw6! zwCVBfC|+lEssAm|mvg#Q6sdhDeWuM(@b={T<4T>S$LZ{x@AdolB2W2_-yY5dk0yP& z&Tlq0ZkJ{Do!+40az4Jj0o+v5z~q^c9Ll|1%XeqC0g!tJ&*6B4tZh>x9W1B=NMuFm@v7~s8hg~5c|nqaR=?F61J*haW|NLxzE?@RhgKkI z2%R$cpfdKNQaM;y_`r)nhvVbc-{$Fy^wXd-tegQ(Fp@Xi{e=Z|)o_yyq+MgXhWmjB zj+aw`6OmuwHO@tL1B(0bbKP=6XxupGFn7DHbyl(4)Ufbwy?$=B^w9h1g9*Xd0#ZI*fqp56eSUWbWX4{s|HN>&&*=& zOraw8ZDB%0pN!ha$3cVu=4B*kyG=ZZ3hou-4P8cq2wPR~%?xr>3p|z8!b8KQ+r+Y; zs;ahm%dCbQiddf1lAvG{qIqoJzA<_j_Zi8goq^nzrH@giCSbeOGm`cwFh`W`(` z8}~)mbgHCA4aMr3ieyFkn*g_%^$pkSv*;AhdBfcO(-3@KT}ha(!p#%<#}Cb{`0g7Y;Jucpzq42mTgRk+Xy0ZSvj+>duvh#f5t^s0u!mj05T zc@#e72(R-9-kMum$FAw{cd?I{|i5^UV?@RHb9u`;FOUr6R8X~=(x(-uG`}W@nxfKYS_lQB-q2? z3O4Gp)$1f^xOqt}EeXVUi%QqE!MR_1{XbT{XJ)aa2wi1&SFoZx2S(D_fAH3lhwBkT{ZGSk(0eZG%Cxup3c?wu5`dZaDih?0vrq7~zY?~(2R!NTGa z?sbiw1*@+`(~(5haahau*XET=ezu{xsS!CGgF}hAp`l^?n@bE0V#hlB$2LVHN;De7 zKP3{~RQ*n7Eln#=H8)F=t*NQ4#%!)>YihDdQma)u)zl(0dWYz|nLcImLjc8FWl5H; zcvTbhEaQ(}sqZ@1br1DD=&iafGF~l;AZ{Z8F6Ltlf2)8a>o|4pgC#gMxogE(X!-uk z&Ax9uX;l*>RG(|Lt~}M$B059Orsgvl-9u-p_ReksKMV~C4GRBL_?sBs9l}^PHioR1ZYT|pF+_>CC76oTw-z$rNxlKMnrWVGK2I|5s2E$j%xBFryfSl26X zC0Bz%*>$z}Od|2j)$rI@7>_kTek@Y>J)aqURP=Ryer zoFZm)%i`Y%7w~YsX28$LT&QzVFUjMh-S`{Le06u?NG#u-?Hl`zShT&p-5HC1ZtTjH zU0+>!9)HZC{zAPjeRXVV$JeHIjE-g8?p(7q7K>&wznRIzq61G}dG*OL^*cE95ghpo zhDE9d+~tRWMO-lTp-5l{6cHRtoPTK|j&9pp zTWuJE_#1EB$hlKJ1GD>4kv`k)t9`81WmanaJ<^KCximRGe%RAvQ7o?ZZD6Swj6}D& z+Us6={f(9GTw8mMQVWz~Ps*JQ76x8-r@II41odbQi-wZ_iJW;*$$11FT=EX>ZGQ`>woU?1{05%td`F1Y>ky zkGGbc#douzJHPY#OLgrobYl=C8{67l=v9yB@c8(opq;9FoZqv$Jlp^efI`-*=ibut z@*2}^nFowX{}7xEWG5ny!);u$bM?pS@H7}U$`KS!|EOuu%%*Mp ztB;ur@!bQHlLuHiOHx;+Rnnnzxg8%TI|A3SVown7BgHG>M+>6tMUdhc8J5H%llCUz zYk@Gr)C#kw*e}&5$R|($=CDvovK?nst8}&9SGzLV-iI&!@{IZfqNVUrkXJ#qo?)kJ z``TBw%JeAi5uq-^wFEU%gY3eyN9z)# zX^w^Y9K#+CTf>|S>UJ6SmH(5fEpB_<^+`Z{xJ)3UjsGV>z~un^gQT1WGYCZ4EK;b> zTIXp8s=5biHgFAf-ELP;T}?e4u^;ZbCp^*Sa!wt+XO}eU4mfQVM`LSeb5lF41#?a9 zNTA7MOV6~{)E*e?=sza1Rxa5=YxrsfoDL!-yODLND#8SahL%PbV?_TvH-#zQUMwq17( zvcGe=oK5QwT5k^@G*~@mM^i(vLmM=E7X~fcoKA$(wzl@&Q*FJL`bJon;YoM9rL{g7 zZf`@JDVb}jsol9V3Q#iXatt{h3y=j`)#Ht{bV!DBCNoV!J-SGXQHG?34OLaKI!Gqr z;1RJA!#0}_58RRpwSU{A!`W6(v-(g0&f8fyrZedYBdPHOa-fj+)H(cH+ip#I8Vu)} zJ+11?D$)0qEkx55)S38C3>B4J$K-h!SZECsMrKK-Z zz(n`LYc&SIUuf#z>s24HJ9)>{*QF2BC*u!p7CsQ4=QMkYdcYR5+3^bk=eyvA~D-G$B9-nZ2jDL3E^efqC+3Sk(TsDWkZaz7X^Gd^<%VrG+kl+nB0Zh0akj8x z44eGvY=4VmRcbTVDasd$u{z*AcZ)JjP6F_Wa7?Z~}TZ@M#5*tQJ{~ zdZR7k_YXHW8x^IgarFaezaMlz|2%xyXdiM!8FcPdRvJ`IqiECoV49~-zTMIr?B;FP zvLLMc-y!$$L4NH$@T!NXRpok2x5`{F)$wA`&)v%c{D=kz}3Yf+qY$iew5YF*AG=xb7t%#tpwS1fXUa@!@ox%TU zRV@Gr_#rmGhE~m=J0~rzhxu4m-bd%8i})6fQx7W22lyKLQSs-HuZ*l02#m}s!zEb; z+RMuFyum@jGkoCP;q-oaHgEKV;4X)AN8+(Py`BX3$7SHE4zKpiER(1Dq}1M`PM|v={XXS#lr$Siry3+~{03aX33*3h((@W35M)swV4T$ff z<$6Da>>$jh=t&szAORf47?5;ZaXm0E5PstG!_IqvH`qwY`c6tR5ZTFo7xwYVM4h37 zXa|eH1xW2z(1Uk4oDp&zxd$kYR^r{jXH4q_>e%5A^w|*2q6Dq6aU z1f56VB?SPRS!FJp&KwN}J4RoSZk)tZfKWI0Wiy$3f^c;id;u1$?HR-d5E-GXm4v>( zk?HIKsI+NZlz8zdI`C&89#w-P)>-j(v(E%=?6$N;O>; zpxJ~WN2btg-PZx%l4}DVNf}zzDhIs{3jpR7W&m!%7tmIIn)AlyVSB9AMxpI67Uc-s z^yC%8ok?0(kg~_!3%2WAwD>%%1DT$fX|~ zJlNll$2+G_r$Msx2`#UD5^3ZRI&T~$!RuE*h9gXxWvJD*RGsD!XDv8 zmo-lr|$1Z?YS&Pmz*~BCH1A&cJu_Q z7~jn(>-2{%zxC&!HgQS)#DYLFbk5WSOy(}kLr5(0C&J7IqfIIqB%UQWc~Ff#Lu^Zu za^b>qo4c^cc7kWANSsPVtCi6P+lsQ>C<+}2L zFOC+TY-((1ex$zFVehjY=$=k&dobctU!X71mkkGV{0QAx2!*k~qqzfD>sC69swT2| z5%|KH#;6(y?mq1c`8oAhOLPL*+K)6fHZ~pT@hgdlZ{_`u{w`}LTs|S{G3!cL1Bu^E zU~0ExsIi6{$Hi+Hqws3}CwR5s*`kWzSlG*3Fik7$woKam6BuiN2n z1Ef|3A0pU9?H%me@^Yo{x$Ym0vC^o|8!*?_ngd?nsHzb8GC6}|F?t3KGxvKC-!$1< zgbRl5Wk(H#_4>f<2uxPDIAycLBjg=!hiaF{Dyh>$t2?xYO9KaS#x}PK%22!7~+{!K)lzSrp+i*#ob!)r4GZUA!cy;xAO9Si=zb!Xc6KSdTEQpvR_Ib z>gzq2Oy1SkdpIdUKa3vS)E|xB6^(8}x%Wb0;9xi$jU9|d!{LL{W$02!*k|3&ZgbmP zU|EBA|E)H2w^RKo$nA;XKA|X1r?au4p%E_%80?yxnqZhg8K?et+feak(;vM7rUsW&wn4b>AyfST zM$t%NreKobR%0(ba(L#Ta=0_{TRXOVx--@ka3SdPW97Owiqhc9OVF#JiRG1IV!W_< zV7uK_bM)zk3{nM>+^+Wjy1ZzOlv{Wv8WE3%@# zIX;DKwBi&)@xRdSU?@nQ2fXYK1;6%Tnj8^nF~1c2KKYD@k%Hp+P>d}|tpu!JJ69$Q zzaVxYxaoRI_N2eDL_a%zF?(1$)st7`NK}cc-#p7^a>F@!;l@wWFT98oe0VyG^g(|1 zlULNA__lf3{$nf4xls0>bc`yx4#hW-W3gtm9cmanUwTHirkwGsL6XZU5c`Hoj-c5n za+wH+l-SUq`zY%OU354g;dx~#RsfeAK97|*_%#zaX}V`k%$xDT8^N7YDaa%EARnJz z`Kk1@DhT^gluuef0^t(4$Us9UZ1PI|KVVMa&2Um?Tsfx(GgSoq$iPG%JNP#4+i}x0 zbpqC#M1GFpKrxUg?zsQ{9jHfc(R7vHo1UkDaSQH$`@5eC!7-qG>dU{~+#Y%d*K{i@G#fp4qF zJ>wvG%|y49m@JD_7fC^T@Qr zk#OJ-PkYpVjVoF+=v52exS3MM)YzU>Uw{9U8-G*%{e7uD($b9&`y!D(zDA4K1o8On zr7J4niy{sN>Khan5+cW?OCCK)Bb@lO{?S~byMnKaO!HA`Hk*c475*z=yQrMYL{5Ff z-__;M$Dk$Adql*dTW{UN+Jx8NfPdW2BOB6px1wk{6^8juVqU44B{9Tfop0lya*ND=42Xw$kh51cO9_{0cgSbxZK5`=e9 zV0X8`A?+ot96E`UQqL&vNJC}gUB?K)Hz4bT>F>ejpKfWP4(8PYbapJH5#I>q7d1Gn z(TR}fa9kpWZ757_?xm&EE#Y=`o?5)DUX@_5z%E-J@m;0Q*@#)r#e8Y&VMOYLOc(M& z==Yd=n2(r^x7L_N_mI24xJ1j321lQz9Uu?Ek5{r)x!(o#J)o~O^ZE_cMeaDlqUW{A zh9yppOr20r7ZzEuyn-0gr=^7xSS$e1!h*qKly^gwM|fR4TK5J1jn+}BbMz5$YMDnK z#SBauwpXL&>=}Y2`Kl>z4e4!y)V{OxAwIyMA>U3iS4iIT?+*E&WmtsQRw}cB z>mUx0{;U*8OiHNLyK?@6;jaz>sYN#2f8lFuBXmdHI~6^^B7jIqo4~qjOQByYqEo5T z6pY2@QX`|8RBA334OP99X7ypb=0RvyA-aA7&fH^UDm&;eYQkL!j|>4QF&5fw?ePO{Z4fw>$q*q?{+NT)y69De}0=Z zLI9g5i-t*sda>*pX}hT9WON>qN3(KYlK%&*E>?;1eF^=5f}eId<)v@}76t^$$iYT8 zlH|!9PcXgga}jn`O7mfN!wev@#bLljT;xj?13!n+#e#L5y_4S5V;JFR=_Qm+X(KXZ8K(rtj z=58RDB@@K?HFaW()-GBraLIbGm`KmXpSm(R`Rdd0=NQtdg&!!8pe@R6_6`5_pPXuV z`Q?UFe=-M1Irsl?B4IB7O7LcoFGkcIBKh3KwKGHS?GSs$(E!#@oAh37?sI{SSe>Q@ z+&%yL%1Lco`h1bkav`wD^RE1XK8ILwUcFv^bG5Wg)0-YtO%Pt9nzC<7*teTMnKq=` zmmfphnP;Z?k7ea53b%9h`aG?W5fm>h2j977(Zh^OKNLk;^o(VDWK(zde$-Gy9ku=4 z-OQBOzCD4*uW5!+4Ih%OjD`9-+&(P1bv}1TUx>YpVTpwv_^ zJ#J}~u!(!I!bj7^wbhLy2~goQdkA`+X0|}x7k5zxy1wwI(;6hE)ku1M1jcIz4_Z7u zhc}OJD{LFze7L8lZuJiJNuF*Ewq}AktcGHM<<^BD&$i7}_tS#!Ql-z$+X|DLwI4%B z|M2F`xpEpd0$q@4dDwW!ivjW?XbvO6DDP2!tp3;|&))c@r&#pxFF+<*k3T#aV~n$iw+l{)5#P=Ocm7@+ zf4_IO2e8)=t;9)v7-N zF&D)0N(oM7$V>$vwBZwcz%GjLA?zW6qn1oxH}%TrWG4`bZkz=%8}hS;=(4&1`D|w9 zF!@2HGdUK@sy|YHlx5#&?@exbZZO`KOQQDbm7yUPWB(>cpM?0wL+6rP?D4@%Taup4 zm7(7srf7Uc7LdP~bN2HXWmt3g`?dIO$_dG}T93iFB5-*@KzJ1H%a4srQ$bx_W4la& z%)9{Y2=C_dV|!D8*c;S0zDDRg!8Wq=sWvB=J?WnpnjGcSVF9B0(^4@4?rB|TaJ~+u*rrC$0j@7U1%+Ar`&QW;Y zVb*1K6~%wle=W3iV!wp-jWjoZa+xMBag!h_Bs{I~qTk(;$R27LCM9vWkqci z6n+dRPP)2buyXiwd}SUU`usR*x*zsD`}WZqmwo%dm@=LKmgXv!es)n` zm@&lAne=;?VoO!JMKwyG`sUR%jfluk9*lo3jv@ni61mB!22P3yD+u=M!oBytl)>Li z_ugCB0z{Y#Hx2x3n#`!@v2&AlmlFFrTs*7vrd20DTT|0t(`5GKzVUSKX^p>obsIi| z1Nv)f#4$NmTE8inlX^Ue%Q?RsOu-NKdgOEJU&+xG6AOGUVrVbTMfh?s6ElLs&BI6o z*2P^|(|6Yrd6Fr8s0+n8i(QA(ng-=xa|GG!a3m6sMLCOyvS-q=?NR6O&J+0-`v^U8Fdb?XL4u1&iGqKuXxL%YwrHK_>!12 z#j@T=crH!RCz%k2S%UK?O5nrTuEulijFhT&SmTit^=Bl=gG$}4T99m5fF1n!avg@&sdeqtsJAb6bmcJ#5 zN()Q3B_7_2f-tBevD_qG9y<}lcRXzr-0RuuGulXoD3Q7#8L9%WIXWt35 z3T2G%MZ0Y@!-a>)h6xU_nnA{LieLdkb8(XAf*XZ+g3w}E`CX8&xbUN5NgZ!CgT-|LNzeL0)`vie!7)QgCb;9Ox5-CSm77AnNd zHC-JY5%oudTNADMd~0H>bdRm0bFx1?u=0H=F%a&bMA6T7*m8ffT+obk;SK5J{nX?B;%@wTmXL(RtmAgrO3agHEsg5AOL)jUyX>_ zmo*!O-7%W3$@7+NAK2=2P646k`yN|-s_(O3W3$W4<>GkT(=&NTq2Sowuw#%t5bN&t z)>d?@yi5y0ppa1Y;pxM>k0=K_BMV8uAg|?ot-- z@anOsvAS=ysMgYW=a14Uv(iS>DqrjL;dNV5s1Eek3pySa1s@*QmPxx>f^b8Xr08@TD z<{-d2^y~!O0^5?ZL^>8CUQ4K~Bwbr7s)gbbK(yGsi2dvSR+8pA0^0l+2?~VYD&d<2 z{K8^kX{jL17M5U;6^d*LyJ=sM#)j6k%NRrAd#%)2fMhY_QIt{lQ#_>0XjuW#2>zWC z!+nSOEcAEiOcgs9j-0a1YuqmTmJkOOP9{~~kQiy%y0&e6Mf(s>nw6-Y#2V+a8_s2v zK;?7kXV70+`Aoz_BhFdSPl(I4sNL6aB(V%sEehIdffRmI>huH2b{KpyPiI$G=RLVCJEneH`XBi>B1Z3^wP~QYH#9m30cbbk zrPCODiDfY!Z(=-XE@3v)JjTSsoR;3iK34u6Slk)@B`CBJ+-R3npTf@LNT{#b zOQ^?QxI{SOs&>^&NRLn2GQN|8r_3AbH>L#`rab%q3c$HmC=C}e!6$N4J8)B=Af6$MvbYQ!i_!N(bp?S6DrZB5 z!Z4&Y4P3iRtGQKHtvp(SV%V?x22QGf8}_pw51bqm&1A~Ky)&n%JWD?8m---e`8*=R37`<}M;E^Lf3reef>Y2J(>0Rf@S0j;4#^vuj`k;LO!@ z5`GsO)1k>Ui~xeGsh+D_ zJ|Ctqi4CmQpq2oWEg2N#Ju077eLDWY1Na}K|LdH5r6i8w&zL*H)~54Yv>YAiTjmW~ z!Tn2$x+H;&=#~~lfFYj6>a|YC`9frjF#xw%i80W+KrvWEy+u68C8@rLo*5s1<{{rX zLmD*h{cBGjvp(^J_1M$9*;5EW@sI{BAGFR@bh8?G1c660<`HmTqj1KtUl=@$Jc}S- zyxwDDqCUKcb(Q-s1HP14Db+pz4D_7g1aX7fhE9+sh6L8fGZXnEPa8_bU`@x1u zXS?|L<8O_P;kC_ewaPX1M_nGz&P|&Jj@G*y1A7MGjK1PIecChUICJF483%LnBge-6 z^zpCoMDk9g)@pzpoF=LyYy8pBP* z7l4-DX4^qU4BsWl%Wk8&$OOBsCSHY}2#sEs2jpYzqI^rDO4On8NiC03e-EbU+ibB^ z+>;W12W`O-XbWIJKWe<$<#Kpf>>%CI?}7m&|B|qj^F&?SQrj`s*U%ilFPWShY-;Qs z>lAzE>4>4Rv2%Cav1`{Icbpp=Te&mOOc$@hgRd_Ct>GZ|rk0v^>*K_j^muc7O-tBq z`0;o!I6@>yBf%j1=0#@8^Y1Si=AF#*qqwF82*K@M3uu>Mgjcvfed8PWE|lC;mr(xLkiqOP{@8LT|01n6Uex5M}xlZ4TYYI;g z)r7!w$bdbCa?fgW1wA-C;vTgDoRRd|1A~@cj z=tQ9i^<}>ArimZ$z515ATzkAzW+w(8of^Iy?b+Nna*zKgwDL5{6&!DN)E<=U%?8WhTS`-BhQc=*Ru>V*IDZ{IF-8A7aw!oufMQVOFomP5#n-5yu?uk%1BD%2x z=;d-YmA1()JTWFRhddk@HG}u)()jNX@XH5 zPQ*DEkXXC~I}0ILNku4~(?t;p4(a&ZK3PB(NeD4r;1D!DBMR9PCh!(scpO#pL+RwU z5U3C|t9D9Un>s8zY>%l0XTNL6zXVp~F9m`HK`H=PPgSH+{t{Y)91g@gke zKC+xDY`t2D9A+}5G?Zl$n`H`I2c;+3X`@u4`$(^$(gH1F#&kc)CejGQWs$^^Bn|jI zRo2&d=m6>>m4OFZia&X26`*|}a>z3KN37qlB!}Ovsd2gXXVUCDfUB3uqrXUY+81Z` z9^#P^@U5dGsIA>SP#=jOjbJH%rAi$gKtfmSdu?I+hdpzvnMrXsJnHgcS&CI~@ zxEGdRWBo~g5)t4+XIs(RG4SwYgOlC6<_b^ur>JL1xGg)sKbvX67W$|KkrEg_-XLX{ zA#joiekK%@g8ccW46K$4zGb<91PzqnW`7)#LgIkXXC6l8BwT%_6LcMAQyxCUSEau$ zpQ9G^m{|Eq1?J)wCkdi@jTuJpXySfXyD!0?)gOA~NcS740D8=`^8R6Va@!X6_b$Kq zFp)U%z<%|w_HW;QwQm3GA3W|}5OYRwUN1n}v}^K!yI^j?ao)f@t3q+Y$BE)Ft1z5o zH$~-l;cMc2$U)NCWp0b%S8@IA=mo*RFizSMXG_ZOHrd@@e-;qdX(%IL$9g8=9=`E& z;HNOJAq9}PSokydh;=86U>|0ECl>YghSqmddjNt!-qiprioTF8UMioPtOm?Lo|p~U zMiz{XV7OK1<~Q9{ac&5-mBsRDL2#&CCKE?LEun0|oLhBLflVsloGl!m=xC=x!R4-j zEexqXnaTh-Wi(@XPpYIPqAJq4+K}fejgWX}oZU8#~TbVXXo0)Xw!~6^CU&VLSkJk=_ zC0D3vs{g@M_Or>@Tk6uj-?Bmpvg}G+>Ta~#r+T`Z?9M3`y_zp>9=H+SS|>L)r2D*$ zM;d)Se^OFT%&-^KlY?8Nap!h^=#K6lI44Qpazby|f;RS39mSv}%%R_uCuIOaIFsg8 zS0n?N4YCb6Vpmpj7k@Z1Jr+!XVvQ7mLM<*LyS2glN4Y9iQ@-$k!6& zhz@j54_DJosBZ(F?}uB3rlQM^e0)DY2`y5<@?NE$r4WS4~&E{$z3G zdL9{izL7lTf)iYbAH`o+upF`N9e#g@`WnPz9;sX-zU%5$aV-cl{~F{3myCAEbIfuV z;NHNop*{rOS%Af@+PR#YnR#LF-drIzI(lk!G^ULFVXCM`?tS#pn~$EkSJ`*}@$Vl$ zzMm~@>BZj`B?juub{sTPWXs2f5{aQ>%02?#A>UlLe`wuua6KOW2R##jym1`&VkQw; zah_q=t6&X1Ov4EM39Fk)r)SvXG$#egYQ%_RU^-d|&hqrk3=o|vhx(DCsu-~g(FVxZusG<;);jdo(vyjl{aTT31s?^bBhS7lwyWAHH z?gwk}X#8-1Em}L9-Ja1-C44B+KKWaz8-?uD)F1BKw|6+ZC3`BJic6vTrUz;hp1`o# z{9~zsE%dovy|os0rZyG;C-&Kv{*FR;v*Qu>^hkEorntGL=?mZl?gz>Np{e?nA4xso z;Xng|fbUxnU%-8#=WBaRRM*xSuCm#=B7~I)UNs;wYGELuWJTyr^hzR0r^BkpkD-)w?CSE8`lak#wcQpQM8Ei=b)22bs>T2#DEguvH&+ZTn?s^ zcE96j-TtpbRJRY`^oqEk#U@ZRF0X78=wR(0l49(f#oKpca&mfla`Hr9U!D4x@+nw7 zJswXF_}1B%rYE=E@9ne5g}Oc*wrvkPcVn?G5d6aKU4=V$@BTu7)(={{1ZJQPGOo{r zcvw)(u8cP*ayMKWs~AMR22a+m8ai=LIBC( z&}t*q+}>XT8DDr(&_ekwoGy5C)x*zWnUyS9Xoe#omBffMXY*>h0_Z zG&GDRvOR8>ufD#qaZ`^ca2}T(PAAcxe*^CocxB-41LWZ%oq)x&>c!F@()U>*t3I%3 zBL6R~gO}kg-OT-^x(^O2A}^DLiBML?$hiRZ5YWf6#>3x&I-`AfLL+3w8}9azp{5S` zTRqkzN8D5H!$+(=HsA1`)N0DTZ$b+(w!2_-mCxs;GAwznRPNzRszXzES{!wD9vPc9=_=9pse|#HHFqKO{ zG?p0BT@jTe)?i>A!4(HaIe7B$9qe88W(BZv{F(8%3@*}Z;05e}K0>*$@VIa^0gwLj z6%Ixmv<|EVBGZ+u6rSnIIS)g47JERoguYSC0NAC7$gEIBo(0S1&lG#rf3FoM{hu4` z^=%GETYXz2_NZRY)4~?&>iXR7K1HGDy1Kf??2w`aH=oiI$7H!9=SP(&S*C2f7-xkk zR%&We9>8jxRSdn+#&-3%8sCdCP5~T5&Q&lN@IUcNynrj1+*mop_*RW1VxZapGq~F% z1xpHs6yvJPKm&g;X>wkWxf+x_qr$fll~CEQx|Vz-{$O>wLpC)y`-w zW}0H**VcJ5zDh&?VXbj2NY=)1S65#))YlttYL-?mdAqv8R;#2)%}w!MWLXXQLviqM ztT(`&k^bR8 zQsjrhssl^{Uqb)&IvNf{d|{^;Fe!e%L`DHkvFpe&aA@+V-DWu0S7q}EhIXxzh9n)9 z&F~6&?$Sc6l^t+?!qcD?)FAG5t(HcEvk~6R)SmDlTNDNW-eTv-ba=1`M-lh?6P$sQ zx>tCrTA($?cs&HeN<{07*YIA<%XMU_R0@ua+~f7$G{r*=PW4|0N0RsSc~?qa?>!^Q z5MPCM?_#~$a>N!I>XCdLoS#qZ>S9cP6GWbJeM3QCe)Lz8GZxr`f>TRiCa7M?_SK97 z7DM9%VYkQwH|{qJ3k%wtSYaWndT<$5Ex=e`T{$LQrAa^!&JK0xpgOr~hvYs#+di~<-#4vT&mfXSXx9%Bf8*iz%cC?IO zW4vwTYJI)GtJ8Ptl&`bPj{;0iC!8rH--UimIheO<4b_mx=;rYUL&23oF!bQ~=BSo1 z$YvWGqJ4dcBSiZ8q799p?U*`o0%g{PEax^i^l$q8{x!}3JFu*Am<@w16|2ssUWT=Y z|K!r<#o$+;c9E+R%Z8JapQh5c0Un=QeNpUO4H5>ub~kaAiDN=!Lv9Y3BG&5s4&*NF zcDbZFmuoljn81b;!hKT1i!a(J9&!16m4}a|H#)Ws$H2dmxE{i$Em` zy+joEe2XWT?%d^IUKP99Q0=)9Nwl_%h5H9l(y_A*k%=}pqAcp)`bNH2Q_Jnd^=PL5 z6akdf(9nUtK6{&gNNIB;N>lWI%N%r?g8*VL zE67NXfZ>>2qbfu;(RH!@A28D^FTS|=!V9EMnq=+=Bz~UqM9Q*EQ1=nhJx|1W22(!_ zMH~ZWG3S_UO77Z~Ozx7@AGF0fNse_4fER$tB&GNp#64t5Vu{w+3J%<}CuwP^{ie-E zpSQLC36u&!YGJp1v#!O0|KDuE#L;!OuL4m9^}w)laEu3H&RV(cH6v;;&p3m~NQnJX z7`axf_vF~v#HYTJOOEVvI5Y$$=Vq&K2y}Gz9h{up-?zYx+~~k;B$l>Xw~vg@$j!-# ziGTj7PbolN9_i}r>^g$_73t*2y&w^5ojh`6@{Zp%=-5qI=k7qB<~@9MB{P@|Uw@9- zH{ht;Xl}`dK{s0S5~9ZUJC0_DXE8lR5C)x>n6%FMz1Y%D7whAK_yb*8dCm9K_jfu&iO^ttoIlP~$lH7mIq1=#u; zE9Qu%S3}>gUV3@1X^B+@6eQZhe z2_%j|m!Y=)BV?*xmwPQx%E#`>A!Dq{u>A>oxFl>eL$a>M9*qmE`8KJhmnmqrhk^ew zTkMFD{%Y#yZ1|B!*znJ%{_Gnp_D(13RDag_j=F?7BK)D0qegKH7m@7XOWM~Z(>Eed zzqXT=emWkztFA!q##F^ zF9!qXlv(0CKf?LW)rOJWhapdcyZM#WrWSu&YyY^z;bw)G8iKv3<5X{}wOR)U-JPA? z-JLOar@OPm+3vAgo4Y&f?bdF;`svkd=_D5_@of|Qs=|mM#8Fwx9Z3@x0E`IYnNo|I z4J$=ql|UJg;N;T{QcahkJe3-FP^kJP#of*DOqmIqmI941UisrXyLbZ$55?ljqKvYZ z6xu7|i?CLZ?TmCq%vB(PFfRr6oG>_)i%qc;Lue7D9c)B5To#PnH1U!L5xT8Z()6sa zvQk7(NulHrwMbI4lGrd0Z}6fLp%gy)c*GZhyJL}}1mvUC?Jcrv$wx`CZKK2^FuZO* zlKP1@lw;nMrCUW^1jxH^W2h#OaF$bLu7MJK^H_BkpU)>|UQ|LPrq^C!u88_d5|rje|`ei|qriQsjyKnvW&5j!yjWbgmcetj8Zn zmU?s3(oyp6Q>WHXt;K90jLH+37a@37bF_NvuqleKBPN6}1av+8*CO%o?L!6hS_nUY z%gen5G_LwKV$3{nK_)Xpke$7UAU0mdFDXws`W>Caoh;^bI5#;Rj@>Ud^t;tJLhJ={ zdtv&j5A!)ZJoFcWfFxx$D@lKYvwog!FGOb}=?7EbecclTj#gcExTl^0@CFq1g0+QS zQ4f~8Aj-P?-LS$lyyC?jbWOOgt9p*C23)TZ7;rhE!f@^lGgO*&8J==RN=n1_iBjJ? zPrR9aQ+g)-W_tZ9TZ@8*^43CIi$6I&@(44%^mXBiNu1=?88vFChkfg@1Q6XMtk1D*f}hN(9eirrQt3(CF|rUY^! z_M&>EHz>N6zIWw6&D}Tmr}y1Amp+D(NCDmE;rMt6QG>Fdvh#*d(v->k3Cx3!C_ zKA;5i?o^jZnSnsjZH>FJ<<;jeL*6K|c|YMSrfhf`5BA0n;x|p_W0yYWbt;obCwRq z)A%aeq8?eBoAZ-j6whE%qIFDPI}G_H%e*$wqIm;elG zw{#(E&=&f#5|SLmB8-B$AK7lfX@e9dqb6m?OyF2meKv?$ULHZ6SvZSWJB6-vTTvgn zYdSCs1WlMNKrvL;G~#2Y>r#}9(#CZ;EaRv(Z2RajLTbwL2A7US!B4Rat#RG{-*WC? zhVFm=?MxpNqISg%&VCsM^*|oB-q2&x>vNd={fLbOg;oF2-3FXN$*Mnl2=oB!&xUJs z%+GPm22Fq-T9p%qn4<0!CN!Qd?L*;kCDLdie>PWUkXLGv`#MnFfgD_=l3=B6ZT=gv z0fwx~XVSglqeCJEzqnW`3Z7$cw(GoLrNCA$e9y3`Zj1wjYyxHu*e$}$S->h)Mu7l< zL$(`fd2poTMfe3FOem$1WC}z#UJ#^*V@%xaFx8+(N(%UQ*y3T(KPw1*KH@#SW9nh= zBjxuSr0z`7{e0{>9Sqt+t7 z-DI0<@;0kygW>RWAkf?AaJ1B#9j_I?6^cX(;c#EC-QFtKG%wVLn&z6D+2bv;+-kS? z_JzZDMk3*F6~ARO*EZYjeZ7Ie-f%cTJ{~>(#&iBq?>U^*E*>mkTuRN09CYc7kno>n zJOBd;brs?2Tax+2)s-Tva{R>ZA_IA&xQsm=JV|gWKKR9wxbo$+!FU>DM7{;V1tCG6 z6Qd*kBk;m;Q0n_qpUhSYQiD3J9V=o`q?71(im>tZ8LR7Gyydt>w0cC5b&Qs>W305E zXCCJz%rLEI40BLNgRQxuG5FG{A}IX>17MMHlbFi>A>>~on^k`-NRgFgE(VwR!bZT` ze4aV-kvxrwz&*@jMIkHM2G)^P0sSP%c28DvN0WfFswMn@Qb67thd&dIu{LJValkFY zd0c|H8S0r}B#|C^>n+YLqW)aalDzewLC?Zzg|NHKDWu!DIws3R7^@BewBitdDMIW` z43yF0l?Tai1*y&{lmlSeR0Vxn#uyU6wFPnx)`B-hTyTu5N@SxGKg5ODQcRtfOu%_# z@s&aO2_n!U;rB5}IQPbv4hCUJ^i)_+glD+EA6(Z;{I$CKeFmI#||*#QK-C8@vsxKNFV*R;9F$gfjsZ z5t*cUuxcOCfNC_?SfFkq!3+$c5a=t&d=O?O1F#wU@qJ1^!zD#`*5#ub|9kcp=cS_K z!1)hs!w1rLuvHIcN0S`_kg%K?z{kU^E&EU z4n!e?^&)YPciA1CbS%c1^kU*$z~rM|Yf3%bf!wdtBY>>}3qm_7cZ3HVc?`UV$@9^z z`B;9){{r}?x5LShC)R1aUnKqt+@S2*1WHCM`iJxn$_G-8KiEAM={i<$*a285)24%v zeU(+2);;cX3TxP{a>C?BK``Uc`FYobCq;K#*VQ6rIz2pmC=}{xb-BiT-VkGAjbCSk z|L^v`UKbw!MSIo!)*T5~ZH={Q(Cdwaeg4fZcWZrHy;uo02!|f?w7Yuoa~}Pb#(}O! z56`&+`YOm*&@h}tLJi@-nq<{t0LH1@f$iHqP1^cIG%}ny;rE>w9g0RLNFDq1wrzLz zjP9AppBfw8B6be<_Yc#d(V;D4qo?x|aBI-|B+l85vDfkM8rDa|r!@yoFM`zEC7?~! z7F0>+*QKh3QqA;4?vUF(yLCvh?Qd0v^NQPjD3{w?bJf_e+^r4&+8yKL4-5_t<_lxd z=vX0-%?HNE@2HWU*P1*!b_z`%O`}VvN5>3ZqOq&2DUGNl3j}~2!t)A{;~zlVfmk4?8tg!;m|lQU>6F< zM0mn(d%dns$Y4q=rgpmI3s`I0xdedYODJ~m=R$d-CLsb0PI!w3Q6zMQ-~f=`dN=p| z;Gy9y4{bWgOef*JocYZbrKU&yhnX+7D3-2HBoK^lIl1ZJO?)`Rg5S@*+toYBkL~du z+a21@=I`AlND31D{2-qRQd5_GwEne%&4H>(QKe?8i#!5s1!YCRj+M!lrNy6C2c(c8 zGJri6+KWBh*!AK*^AmDhrXT{DzXTyi`EcOU(Q&E)0>-bTpTCFjEOB!R&UK)4h6C7p z4GJsZ;|0}(qws|SXoQFt8>sL_+MximLnUyr1$~0{avr_n zsl-ZbknB8Bk22xt0Ro;>l1huyg8}3Pj1GAdXgyOE?l1@5w}dU6Tv1>v1Ix}e08|vw z$d2e}UQ`0DRIwhTPk?2k+sn}ZNH37FqI2f=dWqNp5CI^%CPLi+w|!Y**Z>R%8ihd~ z3d|na*@m^)Sb4&jY*c-FuJU-7NK&H)(9cOS(*p!TM9`97UPs)0mkuK7%`S+dKU>wU z`Y!3hdaDb1sry>Gv6f=)zz?AXmXi8CN%SmOL14cSw0*;7Ki1YxK)3>-37f4W?cIeg z*KlDyZI}I7+fdKc@#9mZS)epY+MV;YClYS;$4Dz!x{Wpq97<*NSwm=S)Lgp(n4m8- zTG*c>i8fqc{$2K=hxGrSASMb5y~_8+T0(Y5lx7|A(brR&CL&O!B^1djbADw{0m0Rs1Gmv6Ww;z>xT=3aow zYdHsQ3c<`2ikYpg&O+e8Gl;<mPaN6HGE)3G_Q1Q-g698b(%m$MDdXCMVAg zi|r5onKXYT@ag18d~nL?U>_uN6JO3v4D-K<+?OYE$q#TLAlnys?idtxX4h)4ap{fa zMtc9--?j#wYK;1TBBVj-U#Y)Ve{Hi5R6!BI-^1 z{?w*DZyR&jUKcX(C_S*w{HWdtqus;aT#^bYJ9@*~*O!s5btz({$ zE?0|db`4y*y5F0SJAiR>?*oKVkUxY*A{J~aVXZx|`r=Poz-`YLU_5JEWPb_2199{@ zMBcV$=WJl=u93I>I3*DCbZtyKOnA}~_+3<$w=K<5_HY^iTUxw`!GOmRHptzsv`>ci z1?zkb?#ZNATTT7CUBGp6*kaIO^aU1R1x)-(yBKfr0i!yL++u20a+ZPvoIkolV%2`7m0uucjsFsn?-(6R zBx40fm{@mQLemfpCu|WW2prgCIADfi@yD;QB`POVDy^U-A}QFQ-yp?-%6Z_oliaDs zjR3yx=r)R|9S5vV3jQ5GEwukXZ*KzL)^(kWVxI%x9LzJonE(M0BshTt0gx0ph>|FQ zk|kQAU~8}~D~@a{5XI} zli9pTH!m;EO>^B;P4d#D_eMN^|JwT;@Q|WpCGC5V2%P!saqTtyYb{+R#(N3vf>b%# zs&;#s{m%0jaJxVU61JUU+&#}vtN`t<39TfIIRx&5JrDl#qz75e4+1|d#0pCz(*ZQ? zu;G!Vpj1efV#$aE^Bn9gz02_6N6OaaCE8^@^j#xs2^mb5YgzgdV^HXS0~mvd3knUT zF$#rothBC&^Jd_O^f%@Adjj{*?Rnt-xfZAs?W>*6rgWD6cgydO=3B|zZ|;7-mwiXH zAjwN`vjPV{MT|euRm0zk^t=imTg2j_bJmwY;8d(?X85oiCNoYJpfE3IlCWVSn!|N1 zn0h`o17ihhrUx2ci)?};H^(;pE0x_8{`ZU-*%Z&N+A7z;RB6FNk62)<|2NEem*s%v zUX;ru@s+?_kex=vy^&C76u#^xTdPyZoQ@%aA~w@~{$ifT5VTs;V>K7`Cd=fXn@oWSoYA>*~{t zNxwZkHg-!>qaK+W~LSS=lBF&mJFITI-C;}d zYa~Q@a@j_#_>9`Op#({@{5&FQUS&iSMU@#=(iv7&9Qlh%rjCQIxFxERjLBAQNFGjeH`usvgNo z)zimMv-5mBKvyAwAGJU&KpZwmbI=%9_4)=AiO!X0q(?dviJaFf=A{${glC)xSK9Q&6#&}tPXn$dN7s>QH3vv%6^qOJT z*Oo6JfcUOqlGc&%VXdvw!=qu*I?Pct38Fdl7K)-a4yj*SMvAy9?DG=dgz(i%8bVuu zqMQjfoR#=M#d}t2xB%)1%&;1C1~tqz(nBWT8*eF5j;{JYf(aV`%vhKj<=oleBTWh2 zBk3QRJa4|@%30GMqC|2%Bc?oI!>BFygIfwhlFlOQx&;)3Ov%vJ0^$W9Iy9ykKan>9 z8hG_r858nX7OZ(YMU8_(mn`~n^_vH0Qae)kKXdS#(%F@H17%?(D0qE!@x7fKniHj9 zG#V@=hIhegw4Yf{4GrEoG<4_S&?$IcL%~%ua45zv1v2a9+DkB7+?%<*v8}DKeb+Dy z{CsTFydxcvjdRC&f?=-LwXCs}uL1vpMH+w>kDDhX%hc)kt639Racu&kWKy7n zc9dPNq-RyAowa_ZCNhfef92rt0$VZzGdC3`x(CGQ7GS*wid;Ey*8Ukh98pbqxtGzE zS@e&{nPXZh*Oq==T0A2UdanTHnKI%LzL1$Tp5mS6ynF_5a8*YoaD$j-gkAk*F@sX{ zeEi$LsHRAI;@b}vpF*&Y3%|Io$e?MP_1x>=NX;|?DMm5{Zjs=s&$?+xH~b*98aqwA zDE`>og{cef)NOeLJ=z(?XJ>wBY;0&~XEf3gceDL;5wWDWs>2=ch(u>`9>4vt!kC*2f@qSz%?uazw`qK;Fo@4 z#^zU^Q)M~pjw$!6PN#am67gnbS$$6N+h#EJ@PEeY$F3FEL~+{X!i5n}R<`0szjX#P z(iK7H7MJ$nMIUq2e7pZ}sEP%9!to%pqf+p&!rQg}D2_$2=57wjL} z2r8yn6u*?@mHbTCi08=Ryb3IrzAa5znOv5gwpn+B*A2AJDZ5>Adm7!dRu_)jrqD2N zf5|M797FOF+lwzMP&8WMtwoK28Em)|-g{RA=q zVTI~Q9F~a$BBeZKWC&pG0lFcOr;Jw#{P74z@12`_?;rp1PqMF54zAa;wJHo}Fkw~Z zUXZ*m%)R=@KVe&6FaHpy*w!mTKZZ39Dr4m2!MhB;nfTfbWI;pZp||nK${Ybn_!Vee zv!r*R$jO*qSY|1)3QTs8w;-3*Uq$jY`UN65Y8VB#kfk?qqAeFP$nso@(aM7yd>LZ$ zIE%8ndO}|S>FWQQnmTU$XXn>qX(c$VllY}A*Dt}wlUGA)X^hyQul<<(E$NHcBFu=$ zA{LU-u4K<78Nr5M8Lcgcq@RBO`_rHM+_zw7gc5Q1bDx|3{`aLXYHw<97Qg*%?We@- z(uX;}{cWJ+SrpHwSbYD&bqTGAKTmvvZZtQ-f9t}RuD(O?8e(Qjlzq3Zy}RxmlI2ch ztWT$_W@fUAxZlzoH*5VwvI+T#bSJ`u9}(kE4Ampm{WV0r z_|h}t8PB*22{QkIgRF_g(5w*D7ejkpZ{h-0DUJG$bN?2wMqqHzl8`MUT=^sF22Us` zg7kV4?`B*@8eL<1%^eaPt#X~!^uSpRGy*0!z#NPrM;y)-u%i7qH%M0aT<3gxaEXQ@ z@vIC;#_VR#E3bGqOOFYI6aWzvMbyGmtgOH?tDi?0t*fs@KbrIYwxSpLOrzNbJSdcJ zn0&IR3h}#urS;-pH48*m4enNi5|&{_!H2xN$iEA!ElZ7nP zj}4}qd0cgTY0HN2&w7ll`XMbVoHfh?P)Iv+RSZo8zsDFC(d_l1xnw*>#CFF!|3!Z< zniQ19pfN!u1j*0%BB`j!VanAIDJINVZ&AK5>F827mxK zaf0M7LtYnoI!H!@t`j1_4T|i*O2Enq%miQuH~6xwOTco__1d!FigT z&>_mx4M-o<)!kzbn91_`uK11T|6{<)TZT$-7%`U825m<)@ zEKq9d)K!3d>meldB*75ZpyOA}#+~*2k7OC_@1O5X$IHXd%QMs5k@^B_JY<(AEOAQ;7?mQ|mMFt9BW-Vq8;c6ayoc6Uz(Lq~~JW_8`9_OD1ZSsEO?sj*3U<{5+=y=ic; zlAkesk%%C>QwH+Pzn|Vz-X87Mr@Hk1ii};eK~#y7K<#slP8NcVtJGN=;at8lLRRz zGBIl3I@pkEn1Py1YZw-{fvSJ&Z-Px8ucrlBe3ZVnl?!dX>Iuf0f`9Wl zd&uPs+utCzklX*NpZ|PAa5$eoHk8jdCzH+W8QCslO=}>hQqDW*x(}Cb|1;C?e2kVF z(j34zm4F&p1m7pcFL{x!;pBNX5fpFbJ zN=sNm zT9Pn%=ShVP1PbTD1g4(sa_DJcS0u|^0LFA-MyyfZ9;hqDL!h7RMT;8!O80f+PQJv( zurPyz%aqo@Sl8j?-aKACep)+E-_>jMF9^)iX?7Z4*M`BN>{;Y&Se7H08I+G&P;A4H zL}@d?3xkQIsvv7ejV7Y*NCAG4kW{>Was>VkJo5p~l6itTAms_bIa-Z)RDmNnE<#O|U zM(un3j)>R$`e4$!7kR!|Z?vsG9-iR+hIy8+FBgJuC{dgNWP-p#!U#gJY&@D`TR`E{ zK(Az8$nNuJC58w4741T-6#~r?UdfvJ9Z`?>^&w3qX`ku_9RloPXLt+%V~lfb1tl

fNc^$vT$m8zs0f{vRN#O*Kg(%we`^0*yc4Y_JILDW{9^Y%#V|3 zUK$HuD9L#w%uuMDph%~{BbcbP8iS}ulA;BCO!~~zGri}lxv%7^=YOl?L(AoFc1<-@ zLxXMo+ag*A>&06AnA`8qG{jn@H$L~E2K|O)`Npjux=>#3J5uP}p2$Bm0g_$qOr>WM z9c`c!yzkC%KRsBUfPqnv;1K_itnKL6mbBO5khjF#N6%n~mEoher2XXRTcXcv41F$9 zt__28kgCcZ+a zZ5*Kl_L*?`gGn9;3;|DQSs{97TyMpC$*t4~76D>z+@{Sh*Ka*TOy=!U2dPB$2f((E zwV(#s&qnAQ-4ogt(4{|pG6w+9HXNT>t+n;;nVEfix6j<&+G;pEOBP_I4(yx%wV}aq zcyQ>~=Jy?7)K&tAL;7zYr$*~|j`ciQlSY7Ygf>}Os`1)$A5g(+V?1(x6}EW&K3WOs9zvGmp-U^(r7Sy(B=A`P zle4g9u29$F>UHlk?jycQf()Tqmb1&!8}K$Ik5m3OdY2I=mLo@rvt9>G%#$^|Drc`O z!;27Ny{LMYJT+?2A=Vud8&-hoLOHI%uSf6{l6pvkS?AXU-!8pD?kNT@Vn;m$4=n2c zc9>R7C|d35Zv`v?KGGZDx<*w4xA?p=lLc{5MPA^r3p2`y1mPGYmPa#WSfFFkbOEOs17A?+W8#)EWFSK>V4W z0Xawb*Dgu8L*gY6Z>RT(aYC{Jjo|@(Uh0r1j`9|#O=&mL|LGN;9}GbSbSrGo*M3p0wcrC89We{ zS)*>=o~u;e*FVtGGSL6NN@Z@%9;N*d(Jr(lk*&{sqrl2Z(T3RmO`B%6ZyMX*5Q{bJ zAKSEjX459bMWQ;9Er!V#KqG9xSCH-*TnlmR25FPl`Z1^xQV2*Q;@Fp>>S? zr${DvI8*Jz!AA%BTN-9_?^hiBcB-*@ERt&!mGii!C23~?5rSENam8IsZchb+qK=dA z%C>H*I+VjcpJ;&cv99+AGZE23qCXA(f#x9KJq+`L^c6Z~L=v|Q0H1H=;HrJ}P zGDM4DCYa}0uC9|15MrYz<6)q!n>l8LV$sym0=jLLI4puyncbR=(ur?sad#TX3G!6oGRguOhU2AxK)8srTJ-$(GaNL zPGLbLwI8`u)}jB!8=yWLYV}D-mn<`PfpH?vbslW1$urHoeGTOYyp+z|H8VG{^= zq~V^qYh}sIr(^pD!af zWOv1+(|vnX3s@&eec9^q8v?gT5chHU@{K`UFlR7T5W90f&$}R?yh&hpI|d{Lcms}W zkraK63nhSH7RQ*e1uJTNRQ%(c^$=wWOvH4V_$=u>98SR4nC{>MHoe-!4Z}+V_1iyZ{JTOL7%v>KI+My zy}|xL{1XOzf6!3L<~}I8jnD-vwYH zgoq8Vq|_0#PSGkt!Mvc1f!2Pd2ASdlSZ%BoHRw*CAd~ZO2aa%mPO>^=!26sS!Z97Hk7 z@D}+G>`hI0$=!I_ceb{Sv`oxjczG}D{BGmGmDlK1lCP;x(ce}M=Z@t3QzKZKwaaCt zMLPg&G$zu1*#deI;j4F^I~YI*$zQ0mSs|MHNNs2lJ_BZPe0l!#`SYjQev+t7qBMK; z^7-?q3VMGT;~i(`-ZGgKmambE5KIQYM*9-ir*msi!v@i9~yQ_zr(YbRS8ebi282$shbE zYIGew;d-qNfH3Gslr&FJlw*|YDp8nc$chL}R1*3nPRX$-|6&XAzW$Dm{+8^n=0GTy z+`Bgt3Qu+?ih)4mF3@PZO>O=qe8{!0&GftbXW}hwz1~3R9XGo>w??D!NFXrOu6XQr zk4<&cJh53mg!SzGpey?=CoP|}yk_}(v=M@ZpelxeiC20JTo~1d!xPpvaTPipk_1fI z27k!KD$YIPDzT^`#6534+$0*W{sI{`S^a%)^B4>_il@=ZFB2Jo@o*wjf*gvB!Jt@P zmd@&KfjFmkQPeKI-=5!*>>JnxpHE6*)7UUSIx^Lt?U`+D4Y}QFSm{!H0iQ3DNX!rB zhAUH3N19vUAi4`la`N4ow#|JG-)e`4MTOpwzNY_+AgHs^{Sq@;Y%s>m(rNVFjo zLLBX(q2AuDIakLvU__o+uHh4>0z(8x%tre__o6K?FHiQitos@rQDLwp{i`8a#9UD z{7h!SaN^DphsUG+AF|vskjdPhAIN4Wf}v1wBAXpRrcKB0g@xS%`#L(i8xg(}Jcu>q z>D%7W5p98jinSrz)SSD-Ij zX(Enx zJ$}=8kwEiTmb0X`K-pJqb6lU520xHCzz{mGAmbQEGm+aPUp>g?ch+!_;iycQ5Fu@7 zr01cJ6@S97$-%KGBiIGZ6pfq7m*C!n_)jn>LU@gElV1Tq2#!9%st3S3U$p9K7^XdW zyz8FhUB{oyA}Sm#l@uPG3?>?fe8}*Iq{{Ix$n@{uz5D&UYCvp|0uM6UJW7pRe7O}1 zk01w+5KX9X@QpR|E5OXmLT8ac-&p`{h7C*Dl8_dJ)6#s5cqS?n5!O1HKwl}k&?Kk) z(YTyMED%qWj7BqX3-Er@A@WGLJmv(f-NU5l&@Rw7@D8LG6#Ne91u0jcSU*a6!EP!#cbh2)yHG4G zj_W$D*g8`gv^PDy+u$5pQ`+0_+PY+Q+SZP|KPdz*?>l>PlXz-dHx^!Mk? zu2>(m$D&(t;mupN+|}N$unW1Ko~?M&lPaFHWy_qVHZ|?ZgIEvc_cS%(usQ2AP(Eh< zg7BZDB_bn?UXKt+l9BeB>*S)bwYjfLQntO*#d3PV=bWAKdYRix#kjewY|zo$ylcz! z-SGqp+T814IW?X*wq?uCISiES7LWF|b;Wa`e}yl%L30fpdJ;$g*pav{9aIoTBW~{J zrX#S$#;<`7p#2(2?qtruH+401TLLeR4R&E!i(b&82s?Rp3F-jdxJp~x#L9bJ=m^%9 z=k0U^cpk(c?Lu!a7;}spi{%L`$qX*YKs$+-Ta`D{&=vF(Mo>)AYnT*^B?Tcl*4j$* zi45+Q>)^Trr%rjMy9p`NHO;i{RC3to6FQ&1Oy_98Z?``(<9legP-2P`>~i(_&%Z&y zb<*h~fA9eP=2%J&21b!p8`q8!HV-DmzECFk2xd9o7SDiM3v+nM;sd^6JCIPM%}fl# zKZf`iZu}$)$+;wup-E^hB}-T86~tp48{i>&I;WR5kVa&!uiXKlIqt=Gq_y zU>U4!o_cHu@mGvE={;D3ik4|edk66*E;@os0{JI)F4M^;BStZZvEXevdkZ#>G!zD9 z%b2#!$;uSdap}9+Ij3VV+wh?|bOK_B7V z>F>O;@s`Edsvly5*(1}5F^4S{vpL2RQ%AFju|%*<1s{Wt%+$7EV(c#jQfcBFJmeL3 znCFi3HT^i+nt}dEWPA33?g0xZQ7KZO?7qeLkQj-=|i2`*|jMz z8PtY%QHDp%Bm?s-tW6@`nvp#m`c&MaM78>XWAy(K>8GdwPx@~5FrY2 zEZ3?#3l}a3g(_e)SQiK?g#Y3r;Q(aP{TJY;ibTR=nT!CflAKCs@I?>}05o8Eo7ee1 z!akGDmHaqiPfEkV4Pg|L1#*fK-eRQV!BH@Qz~30Xh*=}Y;F2PfO6BWFkum&0vg}Gn zrOaqF_0AjTmhrmy)Ju{N;1;4F=`7N`fsT&o|G zm-9(@&p*#(QtnF90(sWEY_ExZe(p7fw8c1gLYy)#-Jcwko`=6ZK|FECf`rd&v`?-{ zLyWzK%SpjxcUysNW$d)rCmQrg%XaQ_W#dR@@@Fa75J8EL^71>kYhUS@YS3OT zN=ncH&XBdXY-?>HZZ=#0;z<>xFRnbd{T)s4n;C{IDF^%+zn@(pb{2q1?)ae{XD9gn zb3ee37@NlY9_8yL50a_JVC5?&d0k?|kl^(g+jdOhgb?x}Gqf>;e?FYrmH*)E=rzaI&3!}DWE8r(u$+Un9*jTO`AD^a9rbmF`giolZ;$#@k0=5AbhsCi^+doS4Z*s5 zY{!mccd$_aLoXx;YXD96b_~_1-yqLne0@cJHz+h|vB}b9B4=p^Ehb4s0Fc}AnIu8T zVYf9}0FlwSVS5rjrlop(XZBI8CQaxFa_yOKRPXAPY|^vE_qvmjj$!B-wAXm@q1!)S ztb@px8C=nI5P7vqFmmnH;(IA5TO{os6ZwYz>hnd;zrf~+wU2U>T%~0LO^)PYZmut^ z6j3c?%o`B}TTl5dCugEPJ4>6_jho^3e(yeWjy8M6_t)HAZQHPuU5rIW3r z+ph|iO>KD&cFsHDAxKErIA*LE5LhG%2_(J;b~%*KaHu<45y1~K6q0EmsV#q9`$m@S z)t0X8rA6s0^25cSAU-1M$xVHrriiIu-Fro=RhO}HxvxA^{K=AZfp}E|U!*`cOqN@| zRF?A4cu)WY_$XpMf~+M(f9dpdJfyg$9X?n-sQ>@Wn&{%%hxJp3%ZCqZ&yjWn6rIM( zDwYmBJ=SZ?5@7Yw;>bz?cSJ0FG{d35&%^i>!(>9->j*qG6?y3opDzDZ^-B{^&p$o! zrRrampZ>%32iP0eJXODz%0NC_Phbrs`yX)!U+h$nlKzMyPiZ=BVp_;t9Jh0mVVeqh=o z13Td?=#SN4+UFXRzl0p|QTSzJB)*L?8@7Kya9YUDp5%F^pkyHd7d^ zhs1)&O*vAZ;e$z@>))R!P7Os1tw=XgZYf0i4)vaDpC4F%$#ic0CDKQQ{w>#?Mf~Sv zA~%waMdr)p`ADQ|uIqTb17Vc2-8rGE{_8q_j&x9*Msf>iZZWMWpW!ZQAtM=FOA2V&T4GY3L_I>GXiZX^%*9 zdq-mEy_4q7Q zb5=~9apYhi+yfEgw+Ky_$_*xwVjQd{qJs(Vb(WQ2cp2`1dp3a~!0Qn^s@1aaF@nnx zAHT*rN%WRH(l(KVX^y909>*Dz1t?QHS~>ka4IJ)k6L~OwZhVlkscGK5Lia*qdh4GhOS0cI&>XA&gX?L z2DonwBQaIDv`Al^kHriS|8+ruMjB^=&Elb1gk)3jN4|UW)IBfd`}=n`w|L+{MHR=7 zr=@vkKNR8{AD3*()IcPeJXkDl+EgqaNOnZ}ry&GNk}^Hu?{CXLF5F#Qe&j^?gx^2Xl^KvYgWca{i0EDY5_xz@(1t^3XWraSPhVGNJQxTB%UxZ4 zo}D>BpnzJ+&3aQ4O?~-bfDU_Sb9SUO_g16vxQGWYelfNL4ute^S707`; zgF39PF(fhTv5~Q`fC|!Dh7}F}00fT73+035^2EW3^2GDn;`8P5>MmPAR^LH7MaRm| zV;@)5cX9OuX8#iCmY@R)ctIXzn`ptR{a#G_LO{o8Rs~e*9oyfs%p7|HST02F!xRTQ zMRDUOo)YO+gq}0NS7O^5L^-_L*GT-!Z&?mK`muK%KaHF@tUl+Y&wfaI%$92>p$cH` zS!lzedb2}gBV>;rL>TJCeCr1XR1~=nz^D3HvQ(sLH3@}0$So#?I7DGU^kX4t;m!X5 z8!&3A``A+u5VOujdN9#!m-gCi!BC0Pa7MtpeE6hdx9m(d?l0}+jtoq@AO z4S*4VQ=ilxletGKy`91uVtDd7CdQ2mTG;nkzKFM()G453M5wq>P=M%7WQ@~592JW^ zoapM?Lf0mauh}kOH4}0==MXmDMg;o*peIRHLk0HTVAyT2gxp)#x`3x((1%OAClHyfvC+0-u{Jfr?l&RZXqB*OHhKQaS?LZ>JboCS z8k@()4#(pj$n9i}a|E^fAj*OluEN$y`b7zPYRbKk=P|i5`3#rJU@{^tHF-jl(Fich z5}CpH7DgE9RmhjAgg@fLpdSRWf9$anWApnqCHndj)8$*I@`+RB*{P#D5`9zA5gtwD z$`6L6@Bb+xzL(hj!e0>yBen1BteR_AE4EY^k`C zEwbJkip=G2*pN_W%1lV~i}V^s0l8@q(@7LOzqYt2Kc*B~&L}h)bEUJqkkdw)Kc|FEBXD}T9tYU*T9Z+m-h z&&jE&?Tt+bCntACx?<66c<1EgK?K4KAg@fvXbj4$y<}$Y?A+ViGad>}^<)R&zB3gH z?Z4@!S}xbDI<2xxZO-LtH$l3TBW`j39w66)f$V-rIp(F;NW<9 z$mM4FU)A2lcLtqqsT;_LMTx~@=o5M`-V9AT_!_p(43EVw2JVs=!y;)$NxUMu3j&!z zf%x%N*ocD5BhsSqA}jP$5CjnsL3o$3bWfYF+4=g=yT|ucW>1m;adNh@Z@yAF8IPws zUU$0K#Wmh-ctSW5A^$Y(U|WyN^%u!hynUg$xSR<0OLNvCo)x1gy^FBKrvdXuilt55MtzWj<9R|z2*3x zUa5Cay!_sASJ>fFEa=F z&KXj3M~0dUh326nIW^?eDin20I^b$?DTDjk`VRGl#>PVUiSA29Ru<__X`!=N?(uY%UZI1-B37r*=Ns(edQYsr=CP zAPxn@6z#IeM!UiEIPIJ~=eFEf_l3(Qz;o+%`Bg2?l;9g6n?YX5(|gVrjxy zc@Y$b^yEGkYSFdinY4{B#~7o95L%h|-n1T|Aw+?^(S-J|4!YcSw@rKNEsNcSB=KzU zYc@y3#oB9DpTp^spJ46IsI*P>+WuPm2S^bvpkP1zVc80JfL&&-e{J)s9yf@iRrUK- z?MjxpJv4sxGC7bR2Qe!Kz@5buBoF?@$|pVj*&m-c@uSaXzwr%by}_cgN0*WpFD93M z_`n0~^S@B3X+6V7y2$4p=>~OnQJ+zQJJEYpUW2KucRcTM>EiYwtzl?~s%F!vk>sJm z@Zsc0DwS2$#Q+y;`n$R|1%koArmn93zOJrvAn=4!Ha0rS zelAX4brTiSMKr=%L0N?#&?J!XcObjMsP+1zdIUzbC!xiU)lkd;_JsHd`tg({fdQ}5jxC-=3E8U-}suor#hNzPzeq6-UF^SEYxXI2)$3tW_b~nu4P$ zu6Ymr?8YIy4%o;^>3h=mc-}WXXajLzLi8p51J>C|U4K_E3pf~~EOZaniHP()2c92x z;pH#AWPaUC`rD|mFTEtL*sVAm*ijsRQ7_eXFI)R)j2ZA@I!~EI4UP#a1IG{|<)qGChrWwffU&v+3W%rkdKvk9aQo zHlV`)L5-oEqjq56HUGU$z+2U&g#KOi<~$E%oO2k@voxDXu!Brt7A8uRpPCfZbq84D z$w|SAtFQ@c2ZY$D$0c5910ZL|)x^{{i|&Sb}X=H?C!4-Os7WZFZHhK6!5`@U`C zg~A*~d8g-WdtVm!H#kD=nashV!C`hzTjY!10=_Z!iBA^%I>mw-giMA0E!Bs<81U=& zBgCN4B1NWcnh{qY2(7S%mj#8HZQyzVH!jNec*ZgOruN4KA& zs~0uC%_{ViODh+-Y?7ukEOmvSlKClA&FI4gaD|KLL*Zk}Jp*VZ=An?eIE5X9Oqqo+ zB3c=7g1WtKc@WW*i7XHuBTRsCiqkSKm!bQqafr&s1d*e$0P@CP1#}Llzfz@I9^b!z zyj*2zhjQHJRJ`qe$tugv{XVN=-Q#ZZ%63I^sgEme=Jzyt=73?d0>)Mh0%#+9+kL9r zdXMUG*xzM!DZVy8d^jZ6ejl#dgR5l)_bQL8{9gCXvSNkfK#cB{CETkZtg_-{=gL)H ziuXNk_b|V=$qfTFy+)Be2V`jiu%4!3lj3kH_u8EHaRe2TBl!kAOGc#IOxWAv^D(#j zn8NS%gmEukW0$=LtkSsMWo;Js9=AG`aap!Xk$j_UrwhWJxYz5K+zJgtTE8I;*ZKA_ z%T^w(W!+GUz0H1ztlUCoMzRg`3?Vsed`RO?5k;s@((8SMZi}$AOHI+3!q*~52#qMv zQw&{v^Zklu@yqO@hhlF8cxCJWNJU_uT8sf!tjK}%CK{+!58p@a`9JQl`Rw{SLi98QjYlVDBj!TAON8ozkOE?E!A3#r zE}RJD?fw|pBnxMzEU}V**WY8@{h{oA<1)C@igZc(mcJBR;f$cXh)eyMzgIo-f030d zAD1fe*ySsWLf69eRS{4*vcv16XwAwVx!yun+KB$^stn1ZlcpLUE0-G^_K%ECO^uGu zH#Rgh&X3ae$o_`LnxNQ3y^|dsNuu6@l1sI>Ec$T!GW~v8Tz~a*%!J>xO;bmLwW(t5 z!?*}qDyU%rI3)}Ldj!rXT&^vUN({OrB5HI(1cKz6Itn1RiC-%&rAv~;=7fkHd!N^> zyi0L=oytc*EdJ0L&_I?M{;8h;QF1vIZNcwU?f+tpxL#A-4u^V&>SQW&E3dgC)_<`( z*kcl(1m`5;)wF;0w7QgMX{z9>)f4FON&B6F)m0(jTshc z!%OCEOz~Ad9fKQIA;=6r; zfNys^#4@sKR{B;DO>ypeDoeu5Guq)aeR*GS(hE-N_IIlTmu1Pwftq#~|^hvgWlPzG! zYCC5QIDcUZ3Y!KhPBsmFeIRNA{{%`Fl3X{{xWR{ppPssQyYyAie>Sva#5zJ3wvx{d%CT)+v(CL>z=t&9Z84U9*wnB1idox#KV@m(X+X*9)nQjgfv_|KBBk~==uFQQi+xDPF zyOOE4St#@Q;IsH5cH8c*drG^0rOWA2h#09(A2paSVzccLCtPk7o~sY2u281y{+Sti z$W8PRJ3WLQlG)Cw$wQ5estUMG>#WTd@d?rjfb;Io?wy@fHAPl8)xq1zW{;442CSB@Px3=H%0d6Q*YXa_!lECjeTM{lCC2>Gv$&*0RLPX%I-_{`vC z3J18_ArQ*8xAn-CfG2l+boYtdw?4fI78+l~;czy%iXRx?dVks7=-KjE&=-}{;e>Og zm-o>HXCh3Jd0N}$_bE+XbHnYj4AT6P(`Q%Q_U3G+1+yfIfk|{q=*59qCmun9ElVGN zqRGgPj-rA17~FtCzCf{{ZqvC4V!la67{}j$L{-KetA6$Jxj?{u+`T)$D*tqE4P{id zt@WMLTPl_5>36oZs%j>*CF?ZgCTD)P=U#Up(AoK9^_C-dR&RN-vy=VVz`>rDQ2#`T zD#~Dmgl49@LuoFxPHozBYjaam^R1gUO|_Pqm5y$HjmAf0Xre#V(sOX&*4=v^N#gU! zp50&uMEzl-l!L%l8@A^GVhaQ>k2+9yuycHt|M|ygx_|7?IkAy0uPpkacH5sve3yKY zFW5mP^l^9yq({@?Ib7js>Z-hGkj=?IDOUAYb3 zt$n#?r(a?bU&22;?2r2+O!DvS;XH2wc8{BQd2Y9S{Ff=yDi%Q$n0l6mgKk#V3$JUZ zHomwd$hba)NRsCN*WS8OGhbErXFZ<&M7$dUr7!Asx+5+EF}NbwjFO(BJD%wGcoq>i z7S?}RMXR};pzH3KJK5aQ>2f+bBebZeLVlftHpTJniwf6W82GbQ-`5;CDA;;Kz{k@c99#;N1rxERk~aJi zDj$$^;N-=52=Y9Dbe`b^{kvGHR3r;j50~&^=Pq7c)E1@1%B9)aOO?vS%B)t=7Ui_I z$kMa3>{VP`S^49O7jdnI3)zB3_g7f@((EM$00L{|8ek{O1V` zQ-xIOM4>>JrBZ0oE0^TdFZaj5Jo7ciEg!`i-wx}*IvE{baRxSA$v{@t(eI-RsxFoVu-9_+8P4+jh64Ciwf23i#Ge1hYF|N9jUa}+A9(Eai{AB zO0U-{1l1lM<85}a=c8>#&1BNnLB+DbGY&tBdXX{-)RD8yd>t9)aZ_kPx#mVp0j(zC zrG7I}SXxq{r6`4p!vzSoHal15Aq`z8o^DqFYNgZlefjsDcKfGX)9IBT_3rg6c4(w* zOah132vwCVd93aR1SFSazunc$PX&}<3vg~eh5eUs(&@s@;jW_Qvw4tT&Z_2PlHV7% zospdZW#t7~QQ2X|E4w8{)m~J+QW+cUkm8fvvZ`pG#wqDD{?72q|4I#w_l44aN6@Lb zY_5PST8^nfMfIrRsjwrcINc8KbPSp7)PS>juOBMDfY09=IOdPL(UOxgHYZh}L}%$6zF}!&{A3aIq#CRyIRAqlT3}4#puAjfOz*JPpn( zSDX!AyGI=H*ri(_>qu%mw9+1mtIz>Be*9wxgkT(z{%<-$W0&+V7H)<D(9PZXtv; zNEq@3@Z}LfFiitm7z*l~ZG8dN8CKGF3;yk*0Nfse{%%oPRl2}dm58ofjKyKX+T53d z!lVXu-!1-Fs&8{;5hM%z-eGN#qX|gY^3SRZkBG+(xzvB|+YB@~bbq%%7r3~&kBUuY z2M&aEN1Yrk2DX5&?O4LdyNwq5I-5ys1BPNdLt;Z(EMdc;^$r{<8kj=7U|7bYQhMu= zBU`r}Il}&)_{%F7>ATkI8Y4Ktn5(s>tzk1w_9v-y=T^FR>z$XYvR(`F|qxQ2S z?6;v{*8aJ(vvU{zdJpv|5u3}Y;+0^M913$qU4Gf=SK8y-;~0XTw)W}P7B%6O)qo0+ zpxer9yj#T=*$N_%9bmJCCj%Nq@HbRtj`WJj#!)&HCdX&`&zp^?DqT(t(Lh~dMa%Mb zMBBl4o?5gX3zN4b8xM7dkG|XC?RsFFC*hWys=wWL;DPsT52b@v?XOu&smVuX8Jlv@ zC*_f@2Y;bVXfQW;Q$yp?@$PhbG!STSKRPinncmg8>l3^7s;*n^Z7Rm5nwSlEy4DXg zvL%^Kzhi#dCihf(qx~^Q*r{2Iirv+8Q>*pBtrrd*a(bZRXA%qr5_7xrU73-aD$R~i zu#`&oRfh889*^uq195$ZL^vo&H{47`!HM&aom--L&Nj7WiM5{x!I??%VkIUMM{6&RkbdxjaY#3^2 z+tk{*vy%;~ZjYzU=R0!bJ4f#f_}r3plMJU~Pm|l}b;kx9OCzQG@E3kO=(I!6)Z&#~ zj5#HJ?Ee&XXtDe%dU*&E5rSXBm_Y&bIy$imz@!m{7=yGf=r5WWW6)%e!PNoNBpRmi zjjC|YHQCvLTd*4oBbrVmj83L5rcJ0g?9{;ssy0prJ!&QzAIL+P86KxZs-hXhqYCnW z54zktTnYR+L;d|Br)!5hfj?KUzyC_5T|VhR@3u{}y%dPK8Zd5|$jLtDh6>MWjl^cbgCY zBP-{mi#`eR0%Hhv=!^TTHWo;S)SKPR7VHX@$IGY2%jLw@xZmr;O2>=fc4GOlHTit5 zw)Ppo$bl`srKhKNTJ5*nnaANh#jGCnBBwWR{R!8D-3!E=g`z!DvksNU7`(D*~F48vfll7*JAlk>erp?gQ0~KD|s`{FyFKNX>A{@mdaSg5{@;qdZ zAWliY-n=8DqYsUajyeMN2H63d8E;~6=RPJYHfx);@Niy6+sckag&H|LeriH*V>@Oj zbY%+KIQSdRu%Fsk`e)y~+YT$Ld)^n8R?f*`-+q^(stQc0VOgq3@=0oMdX2ii&8@_9 zNOrXQEp0O&nMrJI51`e(DleAXh3vFwb-#OX=-tDG5EkIzuY*eggK|ou246{ScfiBT z;k7xoPpazVc8AUDP`!4?_9<1J0_o>AkUE|$XTdSDUDMJN7iazc+m?5AjF`uZdHcr8Yu2X{o^zV(Qy;Q?@M^>fFPBhFT|>col|q#c znD4mig7tM@zYmMQ0Gp70>gp{ScA^yvapsVeT~|z3uRUYF%DnyM)kj`h-Mm=e)TZm3 zinM3|WL)OMs~2CWp9g&)43EH@M!@HiC&4YC+J+X3Q%@aicNIGJs{X&~!1`8#(is-A z7Xbm0Uc`ptlGD&2r>M@ew()vfwaYhNU#{;3{ZDfZ zhDqYni9D|`7J*jcYju^R6&7W1)G%}W9!u6kc4b)Qw_${O%lS7i?GC4}p znIwD;tvyDu*uv(%zRmO}Rjyn-cbKIZ(B*ugTB#5|Tsmjq!!6M59OW4q5)=mn;8FlcB6*=@Aq|QM&sG9YSIETR^TuuJ z8PQN2fA!Vj4-Z$yS&w1^lt=rD1hxQb16Giv_RCuOvJ3^#9hdKLHhZBD`BjIzg3HG% z5{ya6N%0lfP-%k|v9Umxvrl`Qop)Tm9o(?2+8eSewyh{EG&7UDjo3#b!%67$MOlN780fppxrhDZ?^a1cFVsom1R__1Ri0pED>Tms;)|oWz{~4x znmxqK(G4V!$b78A*`13wVTJvC%PrHz_!X zdyk#4XvI!;v9ln{DXR+JPqm$RHItysg-|1MQp^h!OUg7q!}ptWbDy*bl8se|@Z1loJDpV1e8&#}8NmwORyP%NMx>*+gtB zUL3N+{|RD(*uIf#*g5lks)wFI_j%Mc&-U2GvmsEed3Ka!BV3P>$J+pl0_kNaMnRG5 zA<01luAZEOrG=AEmH;M&G~j~3uDuKV)~a6@0dS82?0e;$&+cTWky1nZfFb?B&Fcd= zAljN1alB{Xs`p&;eY`w)ulzmzy;io->)FR#J_eBTx>6j!W_fUf;zKo1G6obMKvwcG z9u0GC{oyY<445j~gv#(KUWVgPbWs^F5&2uCjo*stWO|7{*4~m4Aq4tgKee$3z>JjH+Q}!PucHD!jVT zRy9!*vX9BsglHaWM(Q}lX{SmnG_t_$e2j0Q1-0Wi!AF#MM}7QU^$zhaF;0zfi}!8( z-u0vRdZnQ9e2_-7s6P834w#E&(raS=tSi@5{oGun$_oXYOh6okns5z z@56Uknxs$3p8^MAaY&Th2bnFz1R$kmSdl)Z{T&-{x$eO8wOcX%UvjlM?{K+fm-aR7 z@5D9$B6#^r;v$rK0?&L@f2O`9lpJ^{tqXi)NRQ%CZFr`W<+QIk@jSX8d#}+e=vB~% z=fuP5N+46sb0S6hCjt^6Myufli*;J~&gwwpaZ(r-u8aNyIs-}@_=o~K3ji&rZKVCU z7LUmmK|w|1t+_32;xE?$Nrl~n_+Fog@CD%n>nD{I^S1bQ#anf$y?&vDEA8-&lw%V~ z=HPh|^NkyIIm()F*n$J5wGS8@MmkJ@eb+(XOKFqS+lKX=~) zX;1ao^K|U)yXiY`_o$Ew@3~uCF>JH{w`(?daqWdS^zdK1Rx7Obg&05723(_lRo!`= zxx5xzCj=0W2sJe4iKK7Y?8Cfzw*T>jQ5l=f_EoXXigw#?T&reM2+r@kQNI6#sky$2 z+ik3bhaSFGEp(eAUmN_eh28;8Y<&{w82gZ6Hl$#8#D$>isN`HU2QP!ZHT=vAgPid# zT(_d|ED$bIa6}1)%IS1^=H9ebw(peea08MeVTaP>Z|-SmYTwKu+_7+C=F+vQ{$gEk zq_P@APoK;VY+ z!;0&iQ$55Hh!z|b+uyrRomR(c&hh}}D;P~8_nU}CLk9{aBbGWatVI5M(8uub=PX+* z%~4?mr;dh6t$u@$T{88D=>l#2MqQ>QE?7D{L94_>@bCmDE)$1?^#hzx;sBPCz0O#4 zb60mizox&tYjZ5>x|wdg*%gh^34Se|h{l|Ifs$P?ZmvJ=s>h!MMZSSYnO|-i12ne@ zlSujL#22kQ2=*w15?z>uk1y7?k}*$sJFRt}ye^r0Xdcc)yLa1t_I-Bx#gEvx&D(6d zciU|5Gbt zJ7&@zkuEniXg8;;dMQ@^l6^LP3wFpYrMW@+(`(In_9y+-l(x5_8Er5+y7>(IY(q;U zcfQJ1(`OFP5fYyJ-E#U)h*F{*D5@om_*o0`9-dEw#LWb$VCu4{?mSOx5@x3^Y5Ig` z(L$m+SYmh4xgcoh|+z z?e#ce{cU#AE7>AmCkor+Y$4_5OTDe4h_utg5o7cuDo-2w_TzGew@H_1Le%7j&=lX(WPjy z^zwd_Q6AntCoNmQeV{vJReVJBcbgC(bpB4T#1EI#aoNi71|~4(NH_QbJy{mO8AFxob{)Jx8`t7}|`WgDtMy($KMT~$d#-PCk-SoE6CHljIjL7073mcFo;yeH~T z7W@7TS|upkHUrl1=e*Q=zW{Rz4sIrYu`ld1JT>6Lp~!!>58M~6VDQ}lGlEMYIBtd> zj$IbcAp5>Rci{-0iC6KaB2gOkQFM7&)W@)XU8k@&P-Oujr#kQwOVH%urMhp4QCs1t z67fMPwD$|5WYehaA}_HWb--Ps#HRYya3PwC)JMWo#i;ExS_kzZ`Cj0OQ`q55M4gkU zvk-OOftUsvAx17!gq1kFV&U`}kHR7Lax@_Y5luxuL_t@KP5urB4>PF(`KYd`H3VCF z+zPxV5WfVGVfaHt%oe&2{!#LA%s+~XN8v@ikQnR51KNY|IecUgZ8CWrBU%E1b%4;= z)8zN1eVdw|=kxCQrcK!MH$DIS#)sJ*xO5WdZhe_%-^;h++DY7V>#f%~ZsJK=fMVW) zavHcUJ|))%ama_(F{POhw@VNUi_4K8F$%o`+^5%sT_6t9U^>C5>YTNc0V9Pzd<=tL zmK<*NUe(1Y-h;uX(i*h7y;3@Y zOTEs1EgtiQtvl|E#sA)=7BLv$SuXO7d;la{q{(Vw#b`Z&>~^Kj$3X=PZ6M$_Y$=|Y9{0- z!7r0u0l~*sv1)>*61>Pj3ZXCg!pM0Fv)zabjuCS9g}2xJ$W%mB6D|OeOgNKH@9FI= zKsA)M1AW%AC!gOm_W0)PzD#&)AX4mXj=8P22YgVEH#Y7sjg0qBO+7g}+S-szH3a-& zn^l6U$LHVF(^Is&F{N#`P**tF(AcgjQQreCrIzWD(xEi`^5Pz^J@f8{Fx;T~wl!Ki z9KKfHHU#xV>}anf*&J$Xw4=EhK=`0&7sRDWLs#ynd<+!AK=h~Xm!}6>Llea^u{EX< zYJ!-a%?yMA7F0kMV4w$l;n}XPBVApMUYTtw6p$#8?>2a7Z>}L0Ty@@(4(%Np+?7g| z+IGMnqPZh+%g9J&gF}MPMgK_`VcpyW4>=17O0?juooXCuD5M-<$w-zjnO(U-%&2p1 z_0BcC5&5dF_oLxf*~a8^-3wa+K^-bP&`)k(fh`N&>4DsRQ-age^|q+tE7RVRjemm~QR3cXEWXiQq#S zMlQMh$9A~O@ButA~u!O?YB|y*~3}-R$^+qWH#3>VKRr~pzGF-f?)OD31-gJ-mf*op zjmo7_`a*bU(fa765=2*A#>V@GMtJi@o14cmlfGqcwy&|izP^L_YXP85Ejz5Xh_yS@ zxwW;ek=n1PSbTiPjy+AojqR|2Dg6Awoi6};2X@9A4`c_2?i(MU$|9A^JA1Mn@tbq0 z!d=Mg{rQ_yC&xv@cEsCD2pr1(&}h`5Z2{Lwn5b^P`R3ojU*2jR*s?y^N9$dNicv_CPGJXUgsU=ENe zN}K#M%q<^K703v%UXQc!5>SvyEemcJbd_=#2$3Krf&L4f1hfuLFfAtfe_R2e|D40= z>DqZS^GKpI7rbe7XzJvKqv%fx`3Sie~Eh& zIJ>g4Ui7TJ&%Dn(&+}Mys_L9Nb(cdI!V(B-Oxi)bT{2;ph1ERilAT> zPZVk3c@qUuQ7?3PF9?YD>P_=|HuqlChZU3tZAB$M?*o5|son4Yt+mfkm8sFbzn4_) z+Vft+x7PZ`|L6Am2@pZ>1s?enN5i9~)GKVsNCE}>U{N+{w&g(#LJ`x~F_G1StvtpO zt<1BCssIfHWlyX;aQZYXlx=8};KT^zkB@%{>38%kEMW{w*!d44)uq$|w}Rey!-v#w z!ptl~HnHm2TTcx<5tUCxpD3SJpD-wL3(P81_t_7<0TJCTa6q#DgXi%Yyrl)RVB$j` zm&^!%#=|l@b-G-JT3tt+2glx8LywrDYj;Bz9^u(MN{E@7MlE*%?fe<&`C;%wLXoV$ z*uO(&KtCn*pbQOJx`f1F{kkWl?&(}0TjEya$4$_woEIkp0$CS3`W#vw+gGk!U0b`_ z*|IBZYuDD+*xHpV>p0!RjA57gne{7IJiUP2YlDd!9B;7QEaVE!b-snHp}T^AcrD&_ zc>}LvS1w;xPhH93#n&&Bw(2sbY&E==zkK=fa`%KOx4~fxrS(LmNw#h6r$Qnc+LPv& zEAZB7>D~xp!EhhuC@^CACo!Wdz9Hxnj{k6f$4pFUvV5u$(k+;0ZJz0v;I-LDsJ?j9 zXmbcncqB? zEnp2rV+-}s-QsbaveT*P;%I$W_X+88{y=H$IL8Z_pHYc8*Cc=-UtqpybevxUKc$xd zaG{rU-K#r?;f~&FHjhQ3{L#MS?(HG|}Z;ve( z1TAooItood1uv)5PaQn;n)?qPd1faNo(P~_XLa|>Uy(jSwyr#7aEC#b{P@Y*E9_G8SI82j z{&zBLaqAQ*rN}V##rt6S8o_DhJ|$_TGwMCoq{8311Mhr>+s`!H88>rTy6z8T(<0lM zX671!HBG$yyXr~2^;d9&w+k!VeK?>wiDct8X2f-1TOUAa1>4o2a03hyP2HlYf#7fe z6EHu(ecGteG&L9(SSGXsE+BI(ZV4`w8`oU$ClBZi&k4`(HG@9jyujL+D^J0lY+0{g zGayvV2_OptICJ$mM9Ja;{3`QK8I1ZVlM+!Fq5**4wNA^$y1_Y#oSHBk=GU*8*LI!)*6fK zQe#m%r7qKdfipT_nenqr`rcXltOng8;s+hhU zzNdhA@{D5qa`+_hubtWdqUIVGv%k;8XIo=S?88={`P=cb-K+imty9hNOX$r0a*+OU zjjeze5jfQp%fcIbD>>bQ0vTdM+R)h>;CRAKd#j{S;b#o1!alZQgwF+yX0D>>^IM@Y z-S4HMwJn3qUs~>BW^>gZaJZ=RyVR@=0<=ZnveEOlAq?XFHzRUop>w9slScT&kj1X! zHzUq)FB!ov>-2;VLA-$js9`+bKkKF>;&lu>gckGN7C&BIWy>ooQu|+*0SUIcx{i3k zHFcfkSq{N6?TuwP+}xnJLqtGd+qfXD_UXX36Rs4kmRQdCnkg9YAQ&nxf(Efrl9t7x+~-L#*FTw&ovyW?UC5xr6H3g8g|C*6J-R5AWNogrkGqB zfX1$Lrha5@+X*D1^dxMnXXiJrk!zonn?EbvYqCm8)(IUn z4DmY%xCKA@xaXar@@~sSZt*p5e53j`Q8Ia1l#(5N_tAKkU1a)ukDYzD z`fH-p@J}Iv;{Hb-aCBrF+J!7NXYlQtC7fX2tm6k&Awl#V>_eRGGvO{%+TRa`#3xzF zV>K5Vh$*zDf@bTbIw1YakJ|m{&h210?ze$H|m| zlgZZ2O0z%$bTFlu7U*^4b*ugkg6a3(3|P)Tz&_e;FRw1NS2uDry-6G$TFf~we@p%f zXgbl=b&#wFQtK1?3ZO9(hA|~!%pnIQpMq(Zn*t#4-7=ej5G6_U6QZP_tw0_KF843YpSAECOqZ7l$VhfSasYiCs?-u*z%vW2MiE*n8=$&|c zE*z0o$UEB>QVd4n(@ndExgmAgIzB=VzY}y$qAw&PoF3e@m!Q4<1~7M~G2^sZaJ zSJXj!FRvQCmqPUdNDHgIm);@Xi<~r?KRJP*_pQ3vzh*Mt1C$zojgkV=vd0FN6sd@9 z5=;yh<0Ei-wJUyQC;1#0CEFgE*~50DBA+mt&4!aQJ!q$xI`baNs2qLB*Qitm-J@%B?L}Q6)W6Z1M|!>BWd{GpBL;;z&<5_b z3#|Zg-PV?*Iz(Onupg~pya%mNr^Zv}?eJK0rQ8bQVHw&0588ow;!e45@u03L|?IYJ>3DxakIkTVgjY9bPmKhb8#Wyg;>UQnW`=Aa=*KVqcNY{zfKhIE%0 zQF1<&x`1>kkfQn!Mc?d%8Eg;}3~EDD1pg6y9fmq4 z79OcCDl4`)L%|?oE)iSdYJygxiA=Dcov8`!L_=NNhdn>oK;o;xXsr&#ueQ>YF?|`* zwC@-gkkEW^6#0x4YzWxBD^#!Ef>QnS`WsZ(eXZ%YlI1X0rzZ;8PafT+HRi@iO(xND=CG zkLPp6zC=QINH>Hw<+=jou+M{^nO5I!_grRbRh!sgP+r!6(CRvuAr_-P}~84 zEi>P9#9TiIqoMCPQtn+=A_z7!s8_jVT-enaT+C5P_$nGN*#<@Io?^BQ0)rY!n1BfY z@Mn4g=B+Cn>Ff$O{XehCRb*cla)2J1!eJ_Rs}2#WH`HnvIiv$6X3GTqX*D3%NF^$! z9UweFa_IUAq(=ik@ve9MbSaZ5monKB+yAZ;+Zzo#dl$oxY|2D)31;h;XFkB*uRbZ6 z;>BW|z)v>*ya~!rS@fHI5Z%2OADAT}(=z_F}^arKG;Lp0L^&uFL{~spyOMd4M5>^w#@>zMw8Mt?xMkq~8 zgNccg>?*k#S^?CH?eD>(|L=`f2wMJtbNAycM>-DDaH!WFhZ;`kiYT6?#Pj#kx6rdf zcoP1BINlWM#3`X0o-0OxrX*@- z;wJn*(E)S_`|=e|!4!zop@XABSq=!~Ro?{QSgP|ki6Fc2;bI_S8m*>$%0J_{&E~lJ9bKJdi zV&ZTJh(woB&~~A5C75DgEIqulHE`DRY-{JkCC}M`g@sbNyfYA#0}-RY5{nLxmW2Vf zJUSeWRs6&{l#l^pVxgA^{#QO68Iit z`b1?+h(k=UR;@W!EY^@0c7XYDX_7U9bc(LijV&C(79jF-H|w=NMyAoK4KwgCyuo06 zzm-^yNJpqZ8dYPlTEI`e3JH|Y^c@ihjvqC_vQ(RtFQadv#d|e_XotegB-sXD704g>r)M?TrEnA9hGDZJ!bTJ&?crC?mMJE*F(a5jr?ZjI z4=R@9c8|mBPusi=I~c;+F_%L!*}StrQUQB1>$L$*#B~hVHO!(^^0}tNxk)j@EDVAQ zN`O9jI&IBvc4Ig#^2gs#>qmA%oZ z6C#u`;Wd=9Ncri{=nW2^(a<^?D!L2<31f~N)^ov*QGa~UY_v*FxDZq- zHRjnoiHdoD4Y9YB7rM%I+kG9~&%O5JhfF~Pra|2zK2vsp8|8Wri5~%tV+_;ChJ{p!(cG&?GiibRFlP(m zMg=hmbf{5tLdKkdYKkYti!`x@I2m4XJVQ;x--5B^mvbhQ8Cq|2t_1kT`nh^(Up_t) zuEZ00v)KV4B!4+jy}wpCnH#TG_xOA?kxWeP9DMCi?fxpR4NL%P-&)CL>+xNg%E@Z| z+^8$w>EY?= zDYj?No@c5fA*a>to-6wb-t2sCdfT?A>h)qEZTCcDM!?n;y)KVEd|wm|hBg#_XRtcK zE?=bPfpM2Ihif4vYLD#1R@wj9pwayhCjY42;I`l!8l8xGQjRtqxUudU zjkUY56~jQf)QhNYyuA}=OpB|W@2sqdwr-wQ^PN@qEawdbUZ0WT?ipY{;gyQS;%Jn+ z0QaqItg(FkA5C|`@5^sYvQYJJq(5li4akr96tQMZ@?1uIkw7;Jy6$#qX8{CG7Ii&_ zMK9K#h6a{V&bjolIMO+N5X1)D*BG!!H;Unpk+v?57@JjZD zO%oe~Ow*P>2400cSwXNs{pwk6IVF;gud_2lDm_8K)Dx&6Kfn+Uf}rs@w(`fkBT+QY zyU(3_`+*P6C;{8tQ`MRKJQlYFI)=HUo`GO~$ZpFF44iE?CuQmUzT)n1YAUJ>#AD5{ z^hdF(&uBBAy6?<~tJO-8v2ua!g@1%B+aKI1!Miwos2U#e4`i~V4ySDOD@zwrQDe}R zYPe-5w?Q(j>N+V0zLMlMq;^3pP2I$EwgWe|qgM$?xqHWwzY_S_&#bJtToa{IZFsNz zn;#y|o&S`&pZ)fy-r6b;OgNkXOd&@*7<(}#4QN2;PV3Lrj`lRpu7w;YaDS;n5{ae#7l95I7|gRRzfWX<*17TzB619C2UCfbT2 zzwnu;$13|nZ*L<{tM_2sQ%l7IQSUqK?(MDC!C*k7UQz#n7G_$FvGrmRmN<}?Wbk4c z2XrW4{34{7GtoviW|;wQz;KqqCWrh*Sbb$<8m>F=iNPVPtirRiy<^9PQaK>I%*u{R zvSc+MetT{*XxTPoX%e7V(=xQp5}eHa*byLU`_0CB60YXWDN}UVVs^=aa_Pd39c>Yw zwDDdloyI8Db!2Re!aMTsUVPa9*D_xLQR&h z6DEvESc>S|HQ@7HkO3`o1Ce6#>W#~*?R6xsZ5DdiF>PeqL(aX89N@@L1H@G!gk+@5 z5js7wE+`m*Fq%OrrwNp!0mzw{6uFeyl@mxx07*_UZ7$LN{0O&l8x3LJuskTrVczHP zNyb?8o{5Pa4ln%ckP%_HQaN16r_zx~!KUbOAI_Q&JNy)bcICo_w-H+i;hrt-ZNFz0 z9PZ%2v>WMYIF!!z?QaB_oYClY?3kFi2Syjk=hzQc3#ccGtq_T%Q+ebTuM9~zXEgd8 zZ@X~eN_`aKuH!H~+KtF?$sg0=5&|{cyZJ3<~AdgeNjJ|gA1HHK0 zXn+F*Wnq2gt|@8KETn;TLuc@jp7^ynk;&nx#~Y1$J<-*umv+3-xqcj=jqTDe-77iF z>UIL){fy{aqx`saEXlr<8nZqwBf*Y%uJe4mB&2MF= z5`{uSy<+tfmN%`JaKr~)PVihxoWJ8x6k5+?F2Y<$^nfW(FqtjXnG2F>O_@#drHuR% zm@5$oC@4ebu+f8w!f5T{&iRFUB9j;&wgc`ooAKEk4!3hR5i|21UR?a~W~-bSY>&6b zFMuh<&xP@p)F#Uftcj^yb{oF$zCT-A$VD7>_zrsuh2o*gV69PDE;IuE?ZB=@(pvRb zr1T&nJ)yn)h|%e+Wzwh`{NJdgxlk4~lGPXaq80l^J7@@Y}mtw6Y7_y}Ua(m0_U1r&e7ro+ zwA-zgLOfQG_YWpshRJIB_{+M)U^0!x(dBl}4h>C6GI^NG(!|ivtQ#jAsdN%zL=^&( zL0_IS=r335^^5a6_eE2wmd6WV)Kn_EZ|D5QdcBeuq)BNo5iJ%U-?#6fa(Q4^IBbC- zp5`*-xwC}ByO3Mtp?&)vFBYSiD=}L_o;a^N2O38ePf@AJC#vSi@6a-G^F{xH~}t_5#5nY*45z4`JtG))@CV4Q2l4<03;}v9NJj)adY$I;=z=7(ip~ym%+eWVVM(yz32#-wwAIbP9 zQ=6j-&V7!)%yi|;@(Lm4f4gS z$mavx9)@d?4}SOzc1A9B1eg0E^J54NZI60V4vY^&#+GX})wS4ACH}i)6EPTl9tk#) z!BT0dkk4P~W>AC4Bf1c&+&gmM^~?>Ehecs$r;neQ`V*t+?EJ)7*dBM_8~JO}sU=tu_flfh<~BGzGSt3E>kQx7G1L zeoTUV*5^}YxAD-ZAip?C8k`=3K(y)UMiw|xSOi-g9$ zZA0!`U=W;;Epj@VVP~q2zak^tzJi?mP7taek3+@T1ZqNaf!9aqM8w0~2peKc{j_e=sz3QXny@vk0StF*s2{0* z8d*BYq zJl!Vk#}?A_VqW6Y5TEn|LE-z~9IJuJt0Jv}5lx}}K(kEdlZ*+Tf>3DGLHNU9sWi1P zXq^-vU>iAmNSE+rA!8cF-JEBhWm#b|X+j4*Rt%6HBv_yi(42tOCw*EH@iuxxpis*g zi_@gfqB%6c1rKnRSbnhd;QcrWo)uRIxDyI!F<``mY#I~N2E`+J zqnKu(+?PzU*Om4ko z(}Sni+nCvk8x2S=BRP#0r$siIU?{@#3Nie8WU{my;T4BlJ!Z)T!2pjj$&1tpa1@ix zekh(~305%VmBh7>(StjU5)|FgXd&=L?}U8{u4)L^l7U)}>^D|3PM7DyTVq1=)j&@0&>GcYTmijj~69su)kx-0m=(nR;Cb zKK6PeK<|tYjFG9>U^XGmqs*vYE>eh5W#Hh2^57xBdCCUM9m2HLKS5vOH7Fj`f{dA{ z(P76!3S`91;XASofo{~uHhu%t50VuHpqk0(eDu2Bio)sbhz)0Y7d}aCfeaWjb3=rq zvZJx_COBSNu#P#P=aX4jk&vecPLUSWT(%-gh#Cq|rFxFoiVi|YqXD7DA{{2$6n_x7 zha;+^9`y=rr(6?GBh-VCGSOlv8mLop_@EJqEGL?~(j&2Z!%t8PP#d6E^D78axFj^!xY?a973XLT?&R{c`1IS`wu%Njl zL&yRR3)iE9IuOW7d6?kXNkGe}0EijXAQ^lHuj~PWAnd(188{OUaH3+!K!W$-(-I zQYTomUtxVG40J4O6icmXqc}6Ky#gL*{JSLTvm-c$;F~;Ti8&m0#-N}Q!0>F16*7ZWcP70v90o^)e9 ztVUM1S9b|5-xFH-{D;;kYEoWT=;__ll>qrQuw_C?5(KM=zM!j}feqmw@976@Rz83eT)HN$0&j{E>)pd;LC@@w}70x^dL z`K2PkqrvHPdOCP97>Me^A`2Ucjf0ghJuaMSM0h8>|DZEckS2I-Qyc9tno& z{7fn{i!Vk(p^G6*(P9ojJSx_y5gcfi?Q~}eYGT#u5;$f8*t2>2kXi=4qHl|Ur;Qb{ z&K%y(g297ugc=?w?}Kk~yUQ&<|93qp|tR;tzh{{^1W1Lxvd;^Ku?*^uxNhA|KVqbic0qEZRX> zWN6$sDGxm+K#hcodF+$a!&!TxNj~Gzq=!k6>*6t-Ieqa}oK|eQA_M>;vwWApNF*?D z(Sf8eE*#P90`9^HNW=NBx6N`pJrzKB$=T_g~}3446osTM({lt za>d-HfEKH)KD75U@7@i*-dhQk4(Ep_;MW!o z%@s?B@+0GT1WXtV4DSPz54Noh&tZny0K6!$8aFD7-ej91|8iI0tW_4VM-2m~-14AD|4Bw_Unp=#xHn zhclpj?ge>ml^ZC`0rX29b@RooW$t=EP0;Le5r3orTXGzm1h_2J71Wy2psS5%txwWMYh&NKe&( zo{#71rnME>yg3(xi?kNtIx0--F5FUXLhIrwzQ-UwkoK$Cg73=KTeddMpUn+L$Gj<9 z+U1N4c$}_;2b1m0ms*Imet}8vK#su>BI#PG($rg}_Oxgp3KWn)n>W_Kgm5o|%Us?+ zGqd>;HC^Yn@JQX`8&#YxcgVt0-T|bOOdKEGVH`-X*WGJ!nGQB{nE7q#L~3YoTRoF` zPP8k3T$-53?#i014%1-!ufN%C@Xc-8vthcxGyW8xlQ%itr-4a?wUp-F?lR05O|+wv z$LV%gTAK0rCEBJ9&~Q>)^HpA3b+ve3ii?GVV*!ob>OLTrX>=hssL;wUU#FPvPF}K& z0yJ(8N3l?NY|%B6@{XoRy@YkqR5d#ij>vQ-J?8Zh{MW&0e=Y8c+SC&)^LNmX+2A#! zB>n!uU~n=U8c!VrA{=*6pLDql)}Y;%@VE;;Pbm<{+8p*^&{B#sI4N;-YPkF7l%NeR zj$`-a@;SKM*cBxc$c$0WW~{M;lded_?RF1@{3Wk1?>2f7pL2dOMti zFtG*=K$Spx8+oW4NSMP2R581va2LQuli3t@yYs%#kl*aHao-j(N4;0~5k%M(fWyLF zn9;7p%Ak#K=nwjdN1_Hs!~1DA6|Jw`!dp@_Ce6{*OGMVB4#s``JwuOEM8MX*qCVh1 zhyd-U>To zc8ABPIQ2%D_$6r95Suq)X4R+S<54Rq{16B43zF^#8b~y?&7`FK{;_1TJuq@8lc~Gi zArmPcjRQIPh+@9MV`XG;RC0?+qtH6x75tw$56zUxq%UNUs`#Cs$V>*^5qPkepwm&T z9S848AYXY$Ge(`G{`t1|aX+fRTh?B1-)6}G|&#$nI; z1FdXuzVgN94049wSnp7Yf(*Qvt04Viopk9^$e&2473XwMAb;YA5I27lf?0!_l`J-7 zZX?Zw0nOWg+@SXEKe6?Ot;ctL;HFP*!q=iDkO7R4H*0qh1-!e$avU6zZ`5nOJNnPl zlN|>xb-j0g|M}h>0NdKoktda`D>VC1@3j<)n85yLcL^}F=Q@D$%GbLS+}*C5*Simy z);3m2kt1Eemev!e&WU~^OtTc?bE-fxo5RcpoeZfEHw(IbqHR7%6W%t63*s-+jyr#) zPyWixudr!@VIwVUx{s3`RQij~f#JrDal|p=_ZyErmdW5(YHBCc|Df$ikK!GVU|8WD zc=&N)P{lj&j}9*I=iTG~2Y){EnEH0@1Z!$L#INNwnaqYbk}PRX`#mZegvUmhIhZ&= zf!M_afJuWpjtkBJ5n03_XiNg;e!-P%tX&_N(6wu)prwBdG6-PQL?r&on4h#C>$J%Q z>PVUzdR)mlPh$t%3kU7s!F>4@J$r*>L6SZmuQxa-y?Xb5b0bZSa806F3-zK!hqK|D;g0689>b0q5cLxiB((u% zKnFwM`(~uhjy9^}JDi?P*uy5pr%dO@DwSD}8_^;4v2FV&r}q1Nm0^=z`2QLmE~j&% zR2)5d-@e(*pxGKvB(gPG$@yU;n5nK%urlGzvp?5xREjt>+H;Op<-`i>n~;YKhF=eXIK`F<1Y zrnbAEukk`d`D(Ttgm0pkK2#d@oTF$_yvlTTtTH$Qs6^l1`snQb$;tg*UuDQ_<4q+S z;j`gvp{Y)sS(;6wsbcYXwx+jc{T5kzXfu+HZ+o_~=ueYdd2_BhGz4{eIK01B9UecW zwT_v$PB~vd8u!=ix$nKTZ23qcQk<(+{U1JFJRB0Nz2N1=8av1{vhqkIAnVYQs&U3a zsKB~JL`y3Mi6Ah-IfO)t+mTCfiwq&5S}(j+-`YNL@ZdzUVw;XHRQeT%BS3L+I{z#3 z%j4g({b9H4x3M%WhISvEoH!J)O-2(!F(fpAh#n}GMxyl4EPHITU_t`6&ybhzMNM}0 zjSM~vdITRd-KIXk7fOR8$fH827Qz?m0BMZJA6{5Ebz*7X<7xbReBaWEV?W(|Ja}ZL zIWn@x=lA>ejEppAD}&=shyFU08+!Ktyy;C(Km8{5>-R1$o=+ykGbfgoo=B&s>K6h7 zKL6fowbiOt_u^sScrqFMpeya){U-c-`e`m>k`67eqa2u1JXRO2?9P%l5zKhjf2WiL z1_~x7XIBa%hUelIs z-p$J`Y$c>ZKxR#jiPl|ZwA2M$9VfMo07w;!1^yyV7@4#EQXXCvbO=`=T;zD<+IWU# zN6PDb)Z;>oCEbW%(!mT;E_zD9tvyHa=y(fR063}`9q{itP_VoXK7PQ{>)^F@lpCG* zVaBIuW(4ukI)s2e3PYCGy07O5VR$2;&9t(uFv91f_jT*arv^>g!8rO}E;Dg1gB zH(*}`#B&*i^HnCS+>}!+EkX?P_>+bY&(<+`3PA(N|15je6^6tzn|O`3w6X#4N{@7D z0|}$0wO-HxI0NDT1;lm8)_$Ios$2U0o@(5xz5TcDzgumAdh_31tkSq7N{x^rb)_ock znlJgJi48HgEn#@22^7tz*=eytgTEF2`I?iyKm^dk7)K^Ld)$@H<@RKA+1!a?Y4`;G zX7}WBIXL-F7t*k*WYX!_(TtQi8cU}$J8>p4KRhHa)3!}#@1O?iXC&@g^|$BF~9!nQ|r7lkjv-b&hjwpLJjj3jYD34{~vzg3pT9ztU5kft&K~+_=TZ*aRd$@UtsJD z%)7KSQY=ln+|uEVt5WMT<%x+h-0an+`gt}ov1c%B4cXQI@_Uax{-n!&B(cNg+*Yk_ z*XTm5Up%&hvpSm9n;RYRc`grjmaGm>1nbPr#z@gMo$?Z^^QMCb@2!ngj~9wbxCd<_l*?x?c5mtJ5Gd2L>^D`m!;eM&G5w+_FZ z98;|NKjhbgK77@g?p`;WeYkD_VAtLil+c2=IlH)iWRnRZ2g?NXgNJk%He>blz(huy zLGs3`QBq{$n4t;4Xe|``Wrlt^!O$l&z!QsFAG-T~-dfQ8`aqI6`{V#Yj}j!u;14GB zPGpynCo@fp4KY&(6iYb9-c0w6fw_;ZWPP%4+o?>lqmkw?y) zd0)B2ILtCKLNoD|!NKqUnKPo7oz6d#2eWuJK9HUBd3h0V*Zajc1`lW_UR-$pEJYa2 z{Pe=Z_nmnka2`tUJ9FQ|L~oeWG>qXq&j;8QBzWRK6IrNG!!0ALPaY8(FCxiXf)UrW zc|p>hM9QOV_VB_eXvkLCp9`fu1&=tH&0+|il(qsE!=LT8h{e)6jjQI=+>-;tiX^ox`CRA3h1Z|9#;gy|J)AvTAGp&}-;xR`O{z_oyG|u4Pz0=b>kG9(vQuucl zP%`!>uLzCo$S!H!?U^nWhel4MQdNV^=!QN^oEa*XrakTjF^k;=v~1&nR{~ZBOfx>u zG2qOq&>sz=tuajtO$2nRoQNaTN$k8kN*vv zybM+uE?G~=4$J2ir^L>E8|N@jNN)s(x$!8XjAWOE{m~>8UwWI7{i((3zyq@S&*O-q zr8yV>(D%z^Ss*(Ht<&V}PoT+^3YwI}cR5FfAkra-$2yM?9y9mG(d$ydwE#e^Tk16) zsrnq*cbe+87M)z9gBAjBa(&krz&eq*+G34rl01)6hQP&#-85w@Z(!PTS_w9Sf@Q9bGZG<-Ag=D~Hf3ALZ>cojD;@M(I48fM*8YsIE zeJcm!l@zcBiIInGR}!@+YUjq%04m9*f^|FoGd!FTnoGl zVw6oTpQgws*iPKuEjnUvz1T7Qb#1)DK1gAh6uA6=c%<^ru-~ z#4eL%7iK@?O+vH>EVVka1%7X1S#IU%?i``;|HP-iuU?|tPNjlm?SnNJKA3;&YQalQ z>v!m3G(CM&Kq66$o|bW(rv;0LZB7hFc)7Um)%4gMzK zG}GPQv?j7EirJ*>3Q)m|Cr|mj+e%=2i^Xj|pWkElSQ5kfcj|`|nBF}8c03W^rnf`1 zGMOCkrY(eQL(%B45-#ZVHgVRj--esQk;4%3n`4c`k+8&DFdl*bq*56{SZNh#CN{W- z491#%_zmTbSF6W!*zq@Gm3^u7iD6U30W1fT*XjtHj1E&Q8crm_(HKCCO<`Oy0XV`D zF%6$cr}kAQN2)u#9*=iN6~<2?D~Wt5N!>QIDrSjnnl@bqOk=v@3}c=&PMQY@Cj^=m zI^b%Y5cJ5TdgFUr(+_Qbvg@HPh%8qO|oF2g7pfAax^e)~!5)|K; z_$M#Hb6mcPPXe6xD)`>z&2ByicWQ1v73dOTF}JrCB{!eN*RU%lbV@F2**_?Jrxd^5t#wxdMVXibA0EYk8fvIvMi`zw1;iEeOX#qXEft z>Lz2lM3(Pz+JG@Q3_;ccO}E983ItOY3o*Ndh8;{o5h+1dSnlqQTQ~A7yAU zL5ygNDL@PXZ%Q+xfC(ZPBOX?b+`r_Rd^Jxw5c1GXJ+~lSkr&o+jI+}E!oo&=vBB0G ziyL`q{WSIHX`mj_C7?b?eRu%?%HT4ZSm8A54rOKg_u~Pu|M72+`Tr3k`?YmjpNCG^ zf|VOf4xg>Td=f+j)dsDqiCu7H)J|~wgC>N?YjeZ7-0<8Dc#a>R-pEZK*XMzjQ7jGT zmd4ZzV@n{NmElqmU>s6=c<$QvA+=3C%GLx;cqtbJyW$LphqN^hakiB6t$17nVk9hegmALTjLj@xqNg9 z-uLo~x|*G^sXK|x+3(sWvJB};0?zNVpkUt+b8_Aq1ReN#)cU3)wH0w zy9cccrUpgh%_>?k5H$Jg0*oE1FXHb&zkJyi%skyX!wmfg81P$<)AAnjuhZPOba3BV z`cpWg{kH7*WAJ_O{<^mD9C3Z*v_c#pyVBX~KTG@4pTmc1W0^=_Mz+JCtN5p8yZj$z z(~Vz{;4^mp#tP#uBf=(siQ{To&0rIenn*B6F^-0 zlz2l}k?tbD`c*l?a z3i5-xW5Go_%buWzj9=P3N0REzaI|pj>+)A4HWI*CRCauY&9|1M|z|M%Vu zL(#3j-8%~-&o#vahY1R<+2AU23F(!t_Nuo+0!p`%+TLoXN|1ThZ+UOu9V?q|?!N8T zcdUrFfuT~r-g~a^6}=li(s#Z4RA-!kA-i#%5^{({U-HTg?usZA^Fi~V{f=YkE4r5$ zGzkAcjhegCE9|ygC>jLI!GrjOCY)FW>AHKuL3gjqJZo%pe}}xpaU*Tt=t9sua80`JQ6#qtYI^sUB&?L$kPNV_DFb zbcMSPHJc;}^mZc~IdXuNt~vdH=S>BHmJQl7aQ_yP=Y@aE9{5<@&cnsjuem1O#9+^< z3LLC(z0&%Ti$i2f93+D(7W7x(1_K2&xI(zWNM`9VI2Do~j5vq3#tH=KRMfDu3&fk{ zu73<4Q%Nv6-`Z@VEGkUdIQ!;^?B_S`xwMnprQdA4cRPB3M5PtzSt}onu%?p zU*a3CJM&h!&2Tw^#wx{T3BEK3{I)TycVshq1#JN~3(CG%!oG63m*?0NrRwaetHjn` z^AKC>k*;j4oEB{D>8m)#S=Q=R#MD&#)XY}0(Gexol=$q3Q_05gCT3m z7RiyJQEVV~0RQ3mNKP9<4jE*@I!XC8eY^b3^Otg;ED@Ehz6#s9)qLp(Bto=>mE9JH4ms(G&A^c%?HqgC`Gg~ zrWMHANQTvDX#(R6(z>Qw>7dEYmRARp@CiWftF{n*a~|gLNO?~V4hwLVdRe!;tSJuG zatrNckBU6QT)r2!zbv>=NNt`0N;oW%W<%c zP1v7M&GDAuEkV})fOCz=N=o;8pl};7$86x`c_ox}tMVX-1>=EJEmEPOMEL5a(s29} zUX)F@vfcfK;q4RAJtggsK7&XT$U;4fp=LGLoFur?iF8sB+zAn{6Q0DwI-0k-iM>vi z;uw<9UZ_7H#SBwO!DEu+bnxPfl8gj@adArhC(>^q**L#FP6sc(D9cx%=Z*DW!7K1= zTrwl+lJw%Y`0aPQgV)i7I*xSe*z>Z`OrIR!41#9I>`BZ$>bTjt@m4pnqcA1>lU8cD z;!?G+)oMk_)7NFHJ+C*f$+x~m^@)i`s5(fMhiQw~A7`n3zV)K0A8)75!*{uZ=)9u) zi1a$?D_i@Kqq+68jD1co{zkVS?{JgE`w@ZaCf?#y!dvwTwCs1f16sLW$9D-s^e3<5 zwN77mTZq0yO{g_7@5hSn*HFi=i#qoDQKMC@|2hfbInAPuT0h?5CaU92Ee*=0zUa~H z-R@vi$t|S3nJB1|>OavrqV;Z5cB>3U9fQ5)DfT)}tE77uBd*&~w-}W)&}cYyTNUNp zJlv#9cN;EH_TnFdHT)@dwEOK>V*tDo`WD}==)Qx#9YNoUdUI33zmqVTr$es2HU^pY z(Ou`;Kft$lXy1Ny2u7lBZy^VwW}4Z=%tzlAK0y=*?&N5(hcIH>&AfUwM=Cd`Kc`;h9^B2WWc?v{7V3aa)BPCNcOYvcFBr~>f-;g1gmNQofVN4juUJa! z91lReePh+Dm?iF{zOf1$g!h!dxRtM~4-iJgDcT^LG?HMz^_-G}ulZ8~tIdFCj4Tz*OIqnE` zt|#Khd(#Q3ogqP>rePt38k zn*oM|ceQj~+;Q`h>eYV#>%RTY_z-a-oImL(WI%qrL_+Z70%|8T1Wv7*#Cpe@P>135 z;W^=$z@rLtGsjcGOT%-L?siw$3Z9r7W-G#xfwO|gW+0vM2X1{q8{_?T(3JOmY9i?P zIbC$k|D^cjR)Ra;#MU+!KOI2vd08ag?XJi=b-7o3|8cGO2sA|I%iCN)9n8>~uXBuD z@{`I!!#o8|=utwICS^H>R@a);+1CU^e*Q<@_Y0o_@lrn2r`hsfms1f7Px? z5%Hd;`o)e!`6M+FHSa|d(CC-wlly*fex4FeY_jZhy~+9b>I6j)eP=Vb3TWt!oJ^MQ zci#`+k`#KT=yG-Y}tMaAYON&3%8c%p^tTp|CmNf(%Bpb3Xn%r5>>$Yv%rPwet!cm&; zh7&UW!jpN`Y_1ItEexFn3cIlFzz136u6QdJ7zzf4 z0P7Hv17-NHO3NtN4|`l<&ODt^}&-vr9;K~ z*&R+~F)!ztE_vWUvj2C-YXQ&%aC+JD+8sNJr9tvS7%UZcJXk$fL4vm|L7!#PnTg7| z>gThke7)70i>%(8fA;*{5zwBu=*CwtgqpRXcbex4>Qv7oupTXl?DE*WY(O1E@GiDVG=%Rls6H&%mV&QI!%ehVB`8jeruO&d?L zwRAur>!aK&;Uh)qkDbb=LPwF4oJJZYK1T-f3yCp1&>jAR%^Y@r4d_?+>-m~qd4Piq z@oK4|&nAm!yjkZ9iBeyJ^i$C&0C{OVas3V-uOVn3MiC(mKUvg`$Pb8!9Q+SPGgJn} zr4YC7)V7Ii{lP6hFnpY8Yv>)JBY)EW%&v z#A|MTec$qXs&D_+?FOV20elGUAcimoCJ_O8`nJRU-_dRc2f&C74r(zcs)UO9-`L*! zr2o}vw|{X)kguTAWQK@y*U_W9*uht^-RzL;iqI#%M$CpZM6fhs=>BgYGAK?}&c8B1 zuBlx$>%WVzg#I-U_{V>Dn~<#o7Ns`F|LZO1uutF36OEtJ+lZROw;hH$klHk_?bAV7Ze9b0eMdVT9LeX@^N z4Q#!>`52T>YlGhl)8|%Tk#&Q<1x!%6r8g`X^_OV(lHRz`J1gO|>Ln3}eNS&xS8#<6 zuxazB_?`5Y&e`5>-@C8%&Z>PkuNw7Dgxu2xFTO;tnB#Z0$uVLuaRXilg9%D}!J?fT zjUVWI%J4JYJ@rq!m-VaNv-*`=?e?Dfx$fl;cOPfz?#XVQ4En2D?cPg&)x(lb1^=KT zxx`>X(t(gcTgZz+%ox`47*@K+G0Ko#C|m0=S|;JXtGV#Ch`H=~TXg-2$R8E{)Pg}1 zu5rYIYA1*lgD#@$$4hIxSUtr`>X+9tr)$Boclg2S*4suW-aWD7HN!4j+*Lgj-O%~m zRx@Ngho7r;p28ICM#XiE5jblTDk#DZaPJIcd=johTv`0a}I@Me_b8)&Stc)GpkWi#ouMuo2AruYQBG^|6b!(I*?t zizD?nO77w_lSl_rJH6fLFe}?H)R6Q5a2sfSbc-#ZOg>Y5^}6AiWkWvva4@U?hsWi? z$oWW7{o%vjqWcm+y~0Jt-d+p=E8h9&-%`UU)V8NP?vu{Im3{;9b#M zfJOxvNMVffm0;5x4YGi5Q<@%Hec68Xp8y#fHyB=g(SScr-~$7q^c5gkjboo+tR;1den5`k+Xb!#qNLIIdJ7*;;=@qn(${55 zwIU)DXyBP{Q^>P%lnEa(Fa;md3daupv1B(PA*0m!%ihEb5;GdV^(|gNy5I0&9HSCW zeh^22U;Gw|E}h#*;881HA${9q#*V|JzW^|4yS|^ zJFpak&16o8Gmv}BX+lMn5#|fn3@gji?Y60U{a7{=O?$mQSdsRXG+b1;03`56Ku!bp zv-BMt{PR$K>|`gzZgUM8=JY@R7t)BQfz15lw1fuC;VP6j9L~Y{GMdVK+ z@3@8JGu9fB+(~q2-sBYtT=F6ndCN|E>^%{o1mk|A=UtaxR?o*lPGA5RIp(fky zh>}rXepzQy40gL*`SZ7LKsNh38{cr>|9s)MzN&u5>zDQK zd5>Q9ds+Oeo|HTQcxwDpZw$yO5A+bwM968#+_0=#gg`@pPHym-R2nVT86}a^STfxT zqF?Mzb<6hyFe}$e<0e&y_S-{zK_>Oms{67Pr8>jL8YS@Z|J=~bVV;F?4>J;?YT+KiN z>}ZoTvRng;{Y@+-sI^PWldU zNCz5BwG!cQxIH+KpC1b)2owy*2?7R7g#5$)1NSf-;q0>Ztn?{*0e(ldzrp0FW8Y|P z*6p(SvjYz2Xo3__iBTu}x}%;Tg;b*MQ2!EvY2j`6I!2RpM&w5X`Y&t>Ze0qRx+A)` z=zdc7bGlEW9klVNO^BG0h%wW8iz)+Xdt&1{3|dE^*TAS+!N4f@^(QR5RwpRMBo;eO zMS#FR;RcC!bS-jN0`aQ8H*1YcL_$mCO~v|G*hR@eW-zQ`0yG%z@1#42KZl07W0n4A zIHVz-e#xvDe)6NP5hsU6eO5t|oi7K&>c@Zbqh0(|v-zV|B$>tO-cu$3ygve;G%}Ci zt?E_9M7t*CyQ?s0^3ShuB7AX`Y--qDAwn~RIz@m}2`v)z+wP#De#zuETR-Y@0z#Eg zQ=fe=5W2q%R8-)pKFgt11)A!!?*&Xbou}uhP+vl!tK#ztt9Hty+y~zlNybNk1C0Xk zd1zACmiAz*y9mSLCgvWwXwaViT8|?Ky^_9$^Kqi7`65KZI#*oy*^1rzUW>zFd9T&} zxfA7Zf(~tm^XWu0<4aqtk+2@Q&P?)su+WdZ^ThDT@Iol~-OdwsD?4#$U(ivrSv&!2 zcNK`JD@7!BL-sU(^amA18bqF_({{3{8~5i7|3h z8+x%$b83|}Nrn8txI~SO+r{W0=<>mD$bbD373C7XBQ2?1NEX?2XuXiZk6e(?0i}bG zF#TC-b&^rh2TleLn^qAU>H+*9dTN`5V0cro4i6YwNQH@`*Kvf|M_q>S0K5P^c)cO9 zpE>1#7Xd&>nPk?VTx~!8$o^*!0tHi?lpF_F_dNXMHg;b9GiZI2$;DJM8*s-IgQA}{ zc@$40H+vwF*qchq@BY;N9}EE|4nK%`{J{Oc{EPShI09$Hnb42l|MQ<>@4Dy&1x{wO zqy9iL5VcdPxrXAgID+#N2*eoj`;x=Fe`U(ABrTxcJRs^1v6~EA{cqT{{ zw;HC+?oAcnd)J!3^`a9&UU#dw1Sx@Zr+M@{va#e_Y2dO8_k+Gw7(8cC(tTNNe_8&a z+2~Mp*0@V;`|}nYfa{96*cuL20NMGFZ@|5=X0r!oUtSDl^5;TM5j@Bzui4Z$Bf_c5>=ENpsG~Cr))x^@+0!$w6#{no3HxaGLYqgQF zv5`#NW3U)1Cx;S^xw*>Fo^hAek@aNvWH4))fF_qUWcJ|LVRen~8LG_9H4>v|Ysid% zWEFO6#2KG%)<)S*Tqvf}+tYygwa2m}^~Uh%XstDsa7HZ1?1Y36lH7HUPtulN+5Wk(VXGK9_lnqB&)N{#sS3q!+0!$%LEQJ9j`pPw0QnJ!e*rW!nW~= z6S25)iNhn~+LAFIJ25f7jZa1kA|A(&*qq@8KeMi`FFyL{BFp0iR417{hUFml2{;a9 zc%2t3s#ZpF!VGp2j1^(**jxo%7E{Ab^~b~miG<{#jznTAA`KE%^cN=;fY>|z2!Vd< zA3eI{N;+GS>13~J)C`T;{$|L}Cw>;o@(40y{2pe6VWaUI>a*t;r|x6FI2oHwiF&%y zPIk{9Ei6LhYdTzg^}V@$3+ur+7ERLBJ(`h{R(BAgFovEC7O3wRIP6Z#N%LVXK6rd#BWIN8Wqs=@96&8+; zF?zFwpF2DYqX-2yX?rLtu$*qJ11qrOTF##91z|vYdxP8i0nL*uG~p$IEwoTTrrB7N z)-DsraG4m8-d=8l13pOWiAs|kDzqQC0ANi*O%RiF1@hf-v}GSJOnd}Q7LekAV+vXRRr*n4wf;bSYZ+nip(psN5$IR zZh20<26+-J5IO8tlXT*^$8Xv_ViqSxy2cEFzc7B%1|y_5057mgZ>(n9bg-C@bIer zpC7}bjDtKtGB06q{zhap+^E$ao}OL+o*V33{0*PqGd**Dv|bO5M!o^^yo8!dc`#ca z`$U!YkbCADFg}&!c({?vRV-G;%-4Xn{8w0KD4)8V^>R@6LE6jWw@51t33`8Z-xnW5 zvL18Db^lXedg}6%UwY~u=^K*|W-=ig+fbL-HO#se>&9QeLlwWDA08OE0HKa(1pl~= z%nxKvtYghFaQn1D5-tXjpCLEboowBbY07H-&EK?Ir>qG@-GE##D+w!m{q2laADP7E z-~0?D^hv~GY~U|{DBfp)+GLEnMHv|~XrXvc6b}LjZSGP=_7N0Hd<-A`%x4sQ8|s3u z-?ofY2dW6a?=!!Nn&CP2Bb1Svkjh9+NW}v(3d(p#V<8%**B;$Qx@{R*h1X$Az20}b zX58A(XhZ5^C$u-bA$dRF2}+Lr_nX>-H`24WYec#~0jk(U953CWeDFD;I9d;UPM~i| zd$FX9uxygm8!a!A{UH0cAuqkhqMD-YjP3EqOb^&zkp3v9e$dR`vGEo;zo0&+{*H9+ z0riDmg>l@%))Hpdt7>;{E@^WdNO*Ue&6bf?(U||FiPxpH~~|ee)@axB`k~1PUx- z*gFmkG|OfRP|pY*35F}BvjJx&0tY$2(ywu##T+X;;`@&YStwniK!{RW936XqaS}qV zY%wCHUhZUf*tl_(@_R{gqm)h$+if=ca5`OTz@J;P8W4;Qa12F1F}BCXp5W5f8Sld)Brj7=bcmBG}RyEwlFNr7SM>sw)Hd8Bm(JPGH{(0)Q=K$0soND{a6 zZ(O69)6>s?A&aLoa10q}*kws4aPfhP-$t+wc&*(&{G&7=v|>=n*3fNz_H0G7%07eg z2=-5?B>s&C{(rM$0Oi3sMwQT#obZ5cPk&&08%9JVI}uJ=T|^yNCl_wE4M z_;i0ncmF5*ztU&6oc>WA2hi5g8$#L#G9P5^BrLu+*)z8Wp=~|(BMSw0Z2_6}kXo(n`5x7~xtqz!*c6!Uomg`?E%9u_wN4Ffz zA%N+yPaNEL%;LVsXmjftx*Yw}9W0*)@Ho@}YC*9^*%f>E!+c7jrp) z+_d2}jev}P2-bDYc`mqPa`K*Nl+fy+GlMmp$sW&Cu~;#Y^FAh@$IhMmP^ALC2s2R| zGfOUa@xcC*1h0eprQGI#l-`;YL-f^MGMaL&Rx!_0gObNIW(|^TJ6L)*uR`k}sAgTR1^*?>?1$NeIeZiVk)Q{sY zrSC;z-y0kM;-B&F1w_}W^d4xIjQ*Lx9)1KwSm|^0+;`boFeEQnt?I|Xi@dW1`5Wo1=?(2$FwG zL=nb1bY8S(6RtbPI#={Ugy8ZkiDlj`9?>_2H?1JFJx@{%+}5q+k_~@OxQ4G68VhIV z)jXjbv-SD2?0OGQ{$(95<0gKq#MJ!!*|YO>(^(pBl#iw@?Uv7S|9(>JX^W1A{x}6- zN^T_~BO$lSN&g>j?*Zq?Ri%sTR!LQoN>VA6Vk@Usx1^R@Eva+vneLt(JmU#H<21oz zdj=b@aR6s*V{A+V3)o(wje+&Tf*1GhvMkFp%O4XA81@myu<&>oSRQ5{4_Fr5^83y$ zsl#~2HoV{OKcki^sdVqHbI(2DJLhaLxvfZt)4YP$d=w9eX5-RHst_m2OV*UKglY=H zA*<4K%Zg+~rm&NkJ0}&ZRWmWFTVve} zF#eNpQ5!{RNl96kU;u~n>f{nMg9D_OBISO@CO17ctHozNZMUB``z%%)yTT}5ffd#$ zuX)DY2bx)-%9c#0%f)LJUG4+DgB|8_t+n~vYjpwbt0b`hbnSfq20H|LBY_mxa3T0B zkbi%_e)_IiS0#8t!_brgllAyziYo+Mj5Ms)sQX2hL!4Dxu~6CC&|qrSPxnUS(Dxv{ zJR*WwFyn_%TD=oqIs4d6Ya7W%_eLA>Wl_P!U`YB$^R=xn9qhw5 z_Bx%l#=2Io@*HlDrsB|0df{_K`K*?#-XIfg%WC!_f~9%#99)PnFYIi7t))m*c48`{ zaI4j}e&#&P+$cg~rOJS~R#ze_J0ZL=)OTd-xZ!HMs$}QaN2){yI%MME0%Z#;yV5rD z^o>$P#tJJu<4FsnPbx^6L}d%FpPSvRD5@i+s?d^A#euCcq3*vZAk)6HktljjO7xM`KKp8=Abo10r?JDXoxWc8hE!xz>DC!9+w;qpvt z4JS(w=$ov(a2OC15&5hp@;#H!y=YYy?nOP2$0d~cbDEY=R0AxBVean$@_<53%mU(4 z*3phovv@6V8KXQOGhovS-hY&?TK&e_At$-3)lR}B&^m=Sf)x{$kaHTm$OAip{|ttF zmWCSLwETfBF=+`YMlCAZEts~f{_YtqWdmrN)#5cX13X^l7Yt^vOk8erN9950RwSejrv4*=cK8=bu> z!fX)n-~)0ntK9rK&Pcie4g1m$I$kpiQyYp(8`)P5$Tk6`fM%=JF-0CXEB3f*HBXqW z!@ZRa9*>=&c(H6eK){jtaR@(V;{+fIQ71BCnvLU0`4IW3vIY23eYj zO&^g}uilD^hlLPm0I0>>Il(o&6*X6Dn@2TaBZ%z#ysy0D4Yy~iRI2YehB|^n_@ijP z@$T~Q$7sfU3>onjWQ7%9{F)d3jKbt_slH0= zCGIqBi+Z}r0>gplsv+dne1ZMii{gpIWFnCOZ3-6Y6v|wKNMW|3 z%eiHE7i~~fo+96FcbhIk*vdx-&DLE|B|mtHdcnNY_m(BnJ9*t1nqvNL&}!kZ0Q- zLqyK@T`VgPQ#&8#@7Mnw%+40$DU(IK-m1#7+k6G&wv(7|qVU-DblrzO#NVM-De`9& zdB|+7DDp4}cOEV_)E_tfT1z=SY0rOP(+Koq^HcnE#cCdsmCwjj=Z$0oWOP7(%v?4g zuLGpZddr-MfFSS_dH_7jq^{JSrNiU^Y9XXGVfXyV($dKM9Ujj#YN$NH5=2+cf3uno zw}Cl;;&8MM>l^4PPkTJVYX&yHVAwd&D3vBLF%@|p;wxPP*%_NtiupYB>X=#axF<^` z%Ev(X1*%O=z8pL7DPcq0@OsQR)QKwlG=#T~v6O!ZPI3>9bTI!gtI(0EjvsD$<#S?c zb*s%{ax2}_r6782Fchvl&-NDQxhs#7C&FOa(t&QqCcTfif3?lq`OD%$4;%M<)N|Xv zEAn-Rz%dUVySXguK5R1YoMyZ<%@TazDPnDES4HvI>7hV_1~vRO&w; zITg=$#++BV%PQ6k$|NZG!fN?idxv^Hvi_fc-nH`e(ddqR-tW)ncSNIkRAf#iJt*vh zTF=7Vz($X{Yga9q%v&wu;#=5#i5LK0+Ow1k{nQN=f8sDbhWIF4TZPa$F2(^CPel!jGe8 zTVqcOi_C$;KQ}58Vmg<379Gl+)_juN3s>$R;&Hy& z6MN|c;znxIuhF>N+E&G{(o?;inc$62PM*S+(!mLjpw+zj&A(sUa_WUEq=MIxQ+VnIgguEilijjh zhxGF};ii_z@GMbcT%Is@^X*mEV={w2G2L&iHopO zk0Bb5%$o67kBd9Yc%0E$aqR#lrS$_e2xETj6^@7CT-)X9OAXHLH-tq=0KU|6^EpQ2 z9mB)Bb`1}+>zlU=i)R@b%;IT`g^6f``#7SoS&kXD8!o_TtaF#1Wd!s&*Omnc#6@$k zy|111z*^%gd-$A0Askp6wU4l#CeISU00#x(5U3WCgTbs|6@op5zuk0>A=sgZ17RAl z4n3lWTb?rdDn_$|W%NsMqjh7Ut{Dq1E43FQ9?`|c`W3?tEKF-=3pv`?jRnQ`yyO7^ znf=;5X+C$(abW<`uJ#^!&+534F>58yL1U%U6XzI~wFLvuITkw4*a4nl14rDBypZd2 zAH2*YS@A4#+(rXzR5!7txF!v8n#4w$IHU|9T{`#>T$7Eet17bIWHi;859gZ?oqI4I zwb?3}Y}FG(ps2|QW3Sm~>uZ>qtrQ&Hv}0`g0$1}lhZ%fhSmt`J*m&s4)JS(cR*VH; z>^>{=fWf7y#RAJG&oM&x zVG!UBw5|+-@Lz@Yn3;reUKW0~Kw~z%`%-ejwrmuX$3p>f{os0}Hd)%Z2e3VR5-!7z~bf2MUElgI3;&hVUg^OIwJGbZVMY)eid9hsYm@H{l_d1G=-# zjyNi(BC1aJKz45Q%2K!t_=@ImPI{aXy9;MkDo+iAg}0vJ0ClnzfCPwv=p?~aRiX{uZ~{~*CoFyy z#*P#jh=mxEvyR2>4%bBCy;xfnEq(z40^F*}gw98to=K;J67815r7K70vIB0XDk@II zp4n}f2LdlU$)UEVDdd!gpK97A&XT_{X?IwBwN&Ct$>i=02Fosc${XB*EN>VPK(JJ+ znqWSkr!S6rKdz+H)u~AV2S$JfgfPMmLjXF$5D>IC8tyfG%J6x^zZw3(U|=Vx71>er z*eYbL)Au8+U7XJkQG@dmj0N%)ayX=q#93f&b)uj#L(aY`0=GaOG>(3)gA`r7^zo$i z3InL0jWEhkM|T*;g54T)zM_G)ScMngz=GwE)*Z7mDLDP|QDgHS8Fmw3H zkkI}Ld16}g8Lll#!UsGiwWHhz{mnCVl)rugY zT=NA)-qAlRD~o0+6CAvHXz1#}U2FEa6@belJvQ zrY+q6SS|-lG3-t`$YwT+;!{|Bt&RDq{SHtZ!Y&<-4Iaeish)Rr{`%LQvrnTmG`grN zAG%+bVJfv)-Z!?}p~(~hqp{FI1)s84oi|x+D3WPXP^-`!bk4g1Sk18+aCK)Ls#zB7 z3j6jxy6-**sw*{*XEvvUNk~b8BqoFD&6%{mPmnd*PqWv2i=c-N%eUPEn(gF-mZ3;pS$ZBnc*eE5Z{v8ni z>P6%|SVLw2CGk?o+yKXk8_Uw#89vYA~%9uY9r88EsWs0lOD`3F?Fj-nQpem}ai)gu3MpEKfsiwDX)EU9Lv zrSCtkMNWJ9Q3*-#St#U1?AhzzhUSlB zZkJV&HT6eNV@6Ao&GtRgongKelj0|U&X|IXQeIhAVGi^3mN{rxH;duPS9la<*<11O zHJGoyLbg(-C6`zwH1DpLAA{m-xfTBSRk zF4J2pk~}yvdeY=n-$V$d!MT4#B(4dH8-m*2E8%e&U6$+e>=dF6mVd#T?{6Jq)_sa{ z{PHWFusV&pdue6Oh+w_gL_MLIL5n6w1Zq^TElLffc2?kk<);Lxf_lcSDJ8+XRo5kWRxrr1m$9nZYV=&)UC0$73x z@A!8?xMeMK6NLC-$qrbn#dtmY0=MYc&2Q~z9iq`LH@|V!%u})*FbRv1IT`y)oIh_J z8{sy;ZP3GFcwW%USdqCrI#Q~F^@R7KqVb1^(#&$1CNat{mKa_+J`$B0YCogrcvAY~ zs#e%vFs=EE6FVj+4~2s2P$UVaFPP!nVKJ*p`!T_FqSjnkIp^ILQgb*Cj6%PGuHh1?kCvio3DGK`RwO}-+r$7 z^Ur^t`9IfuR!Dv9gO7h;^bzRt?2*yN2N?T+@c9pX?Ed>7c>IH``S|@G18qnK34Hh% zw-MQZPw;{pN5Fkij|oWbl#4Y?vi=9~ENmVOHjISuqve|qiuD7_Kk=}C_B5~0viIhi z|2oJH58l9>bIt!~ew;noY`7WKPd(ZEB`fSZw2xJH|F>Q2o(;{@8vwLjY_OBhKX>53 z8s9i!&iV|uLz-Eq5xf)@6qQ3D3AALvOfr=PP3vr$e`*vI1h(FiH~4228Wie<=&0q^ z?9BDm`f4C@ni%w=PdS-d;rRr5=3%`2WFHmj;&Kb#S9m|>im-xK+lH{Ne7>hApC56% zT<-R^%RP$V*=W?~i#2}~NTuhKNuL@}Y^r22f@DAqMvJ7{lz{3>Cg;HfMjb8&d z2K@K@8k@g;4O@b5Ba+J_V-$zl6iJgSlJ;5)WG04qG^BlD+BRSRt8 zi4~okKmHY89iF(~$Ch6GESst~|Iqvc$fAn@9pA=Ht#_{ryFPXkdsFl31C4Y0&`pS^ zcou8UooIm%(bV$>!e9C%f=ShV8lr1K-1u40UCzVl6c{Q_@YEEZ8q7od4Ogwu@)!gC z_k!G^7GiB~o#xjd1K29P;|n@X^L$Ty#`q-mv~e<)OhhKe%vbiOy9Hr)t#5;TmuIL0 zwKR9Y$rP@;!gHzdo5#{~;keCG%yxC{Efl&63qd$}L}hH#{QdKr#t}As+$N&4u#HRvoin-G zoXNDekJW>!2_7y4qMFn|NHyY~YIyl?x-JZAHk$ zRO;yoCly?yFr%Exx*EYkp>RI_aygsR3Ht?u7r|kTMeK2+2lC12x|Ri)og6HD7xHW& zeOZd{_tkSWpb~fnjTb6J(KbetI0`L4p1yhx=aFbF$3e{WfM}V4L0BL37MsFx{l(7` zTWPE%c=)T>PkOXK&{r0VrrvCJSU?r-glx7U z#U2Y;vSXsLmW@VzHAo zuJgv@bLljMiC^E>{7!TN{wF-vRSXeF<7IMCA|z-Kl;9mAKlB6SC~3ins0l9uH{F#| zl8!=Xaq%*U;QhPiZMMFy{BVA=^(Siw^EHr*SS9e|Q=b;a?i-?qpNpkZDEh=$SQXYu zF~H)zaGH^y0qcGX5Jo9!R^f1K45jQ-kT1T--Q(hyNT{%wT4e%EmTv%chiDt4@C<7H z!a?vQGW0Ij!B+_HhuWZ@Le9iEcE~`qVn-rnI;)4JBQ*oZ`r${`+!jvp)-MWQreFL^ zleF9*GqCU^qRx2Xr0GopSXq zH`d<-Zhv6y*>kYR-Xvi{3n=nNmTz2mZckDT4JA_J9g(ywyvLo>Q2vjUNR!Y#7mIb- z2<~j+7#1iJkP+cY#0o8w=8kc2Wsszb5>>T6-`Kp4;ZIyz{(~Sb{{cx@-dx9%{z&r< zHr2eRIku5q$9~rwWN*N;!yLr@GU64ummh2GB=WyeoCrsd&;;Zvw{E$@cDo*w?n|KL zOYPL2TVgGphtp%2F1zTqtNoUkZlU#wRU7svj2fTt;iZO z7(f_UFqsst$%MLTYa2wcBVQhWu27KoDFkT7zv(`F@o?CIbrx3y*K{$3wZEq~!Y z`f5f4%gxPnT*~73$`RZdwY@n%_u&+7j=Rwp>AR8)HbDI@b(6TO-@&Z=H}$%u7K%7WRV{3&cKvbtBXqprN4xg^<$NGH3=QH?|g zR1~iV!6UOPvx|r?b!(Et!nU}Z??y5oI7TrSjKZ%37)d4360*Qrb(Goh+XDQ_rWiw9 zfh<~xy1~xP@PyCQ_QwMKHp{RUFlIa%k2B#M$Yz4m^~|_g_6p2nS2~?eRZ<-0unksB z5r{r?(*xX;)ioGRPWmR|*2b0yG*iFX84J35Ft&_^dTmixbQoom!PTuwI+CoICA-BD z?GCGEn;+%`tT86b=42w(HSS5q%t&Ew6TZT%%x(crL$dyk*S8RZuq>O2=XxbxLP_Z+UcGzXRwH|La{iD zBDKgH=vyR@oe zHCikvG#mp3LlHHaoQlnDcSLQ3nnaQqzi2t?+H;{#>M(c2eEB_rz?8RmpsTPcEJ;ph z;9w>?63+}o)7KWedYLdNu&~2t^(!%ZxE3D@c64}EEn~B8w)V$?J;bXee}{l3-iWB6 zy@rbo*BIUg35iSEZ~!DLx;;mRIVTEEUvB_u46z$LE}4?NEnH3>6AP zqOr5&bg%>6dWP(FCS1Sg^(Id^G>xz%hFpT~B_ZNC`VLputy|fL z8QWFph3Dgj^K*xr|7-GfWp=da2s_|RfdyK|EIXGLyDD3kTfSYAVs#S@p3uso&gC+0 zzG*M`{6W=L204rIZ-IzOlB0X@D`-I{zRRBpiI!OMh4;L6csO1tW~Q_Gj`*EBHr;*R z==>hXMCj~mR)gtczp?zy=u;xVJi7jU^zCbyWK?!eJqbMrWA zGHOA#chk7tVRi@o+GI9Z8JgWYJEm$Dci0y_KOLyeTdiI3c=ru@q+q~jGRERp%+2lg zb!*|7j2<%>)Qlz^ouAu|ZTkhq7I8R)&z`b-yvp+3U{iNY zs%9{#{dSw?a|N85({f{Oc6M=Kz~Zej)BM+6qA}1RW`iT6L(O5!z`)|{EKS{&`AfNk z5c5P;rrLc)o9k!pzX)N^DCX%ojy!QAfDXd>>K0@HFx~401F!CqINvYoH}i5|=9VVb`sSfNl}MqP?S=@j2l_lGl%d z8U;i^Is)cfLiY-yPd%9l9|&dP#1+JQLN~*O=#QI>i|%UtbiB{CXfpm%Pm_<_-3NSe zyYj@QUjW{!`W^^pGT{e&Dt3Oc=?MVNeHK+d9ZaW#r{VQrU!olSNc!FG!yNk1#iJKU z!y-a~cFdaulWlvWeM+YhRGnVaW>h=%CDPdtel`;hWz&>)VZ6kyD2+d~siyy!ka>=R zN1t5&Pih;pH2J4sd6JGkM+J+SVWnAXbZQS(+NDH)Buw$q1ErFL)JlrDGO1hBnNMW) z4_{Qwh0KIo4*C2+**%f%#;Sb7xwzcdn8Ud%5(xNYc!hj{KxCIQdoGSdV-|$I@l)~R zu&iH-S@#mLH4s<<&*OU9YMC8Ke&_Cj6_c&EdiI8 zD3ZmwP-x%q@bvWX@V*fKt!}@E$%w{6aFp?pV~8KX3VQ4j>=1-D)opI;=!B8l;e|UI5*mUFLgtTR>elKDg#Cz+MM8j$?6hzRvMxQsB&@<52l30fgnRSd==S(eYNjuqli(jpO)HFg| z%3iq`;x`SNEPMkC)V2*9j>n?0$UwO~as_Jgz_DMEt5P zThF&qwqtXprUyDDAqe`-NY(h1AVy=yH*DC}I9^1a$AkU-qnjrwJG{k`3I<}8!JeKe zw_B$xisVhDMP|1uez|z{q#pG|+2PG*Kfn|`S1?QmC!ujgcy`Mc+C+~kJ`-@zpb58P zegI=YPPTS>G=@}ctIP=Xh@R)UlSD#$AXgh@8q!|B%vqWMmgf84?Jw$l%WZIr55smd z%cBs8Re?kaw!-IE54@8ovgkr8tCa~iMysyQqX4Aj7Gw}X~dyhqFZ_?@6(4bMpQ1o*t*e&k*#KK^JSOOQo%6V z^Tv(BrwvE3!^wmgL)n+Y>?7@~EP;3`Sou;CpNEw)|G9yqG zgMJ55frK~M6!85zPT>f?;0NVZj2q>y-d(Qg$-LkmTnzN)H%0T1nVsrHqf*)A17F$H zQ$ijm)%}->!zy}n-9xUh3Fw@dS#mkFjfGUi(P?CwrP|0tc(+>~&Ul4;-Mgkv6~;$K z#Rr8omU&&ItESo{DK<1Yzs#CP=J`kC) zOX-CzeF(;8%%mA$b1@hK;{Or10Ra?5)Y>F0(Ql^Am8ewJ(pb?o(lJ|FXT1SFrgJHp zUJYGfmi4LHin@Vel_cY{y4UzQKZ#hfR0j@-rY%>CH4%sOTUWTM4K19Ehcu7z2uSOu zpKYDfPr)MLXSdjFUQf|xvwFNGdkqs;c7fT+W|#4j(9L6`rEvI~k+DYTlg5tlzQKX< zu||EX7vfX6W8c8w*m%9MMe{zINL+W`p5xoMY`Hd@u`0Qaj!e1QdmxkXxsf+Ew)OQv zJJdEsDQxcwI22$*JJ6YFINx05mYE2ok%v?1W+1?VP#0_q*Os zI3hfrPK5D!XP~HwG9tR5uF4~W4b5|+UPEZ@vB87+RI&%tMDl54xm;IQ5_^g)X+G@b z%GJKz9Vk?_v9~&&NTug8nRGdoOf$_hn)8^EsUz*_i>gTNG(E(Qgg3+;HX|D8N;nW% zDnfzti)Jmn(0}ig6Ix-1v*&28GipWioMBPz>ZduN9n}iz=@u0GFkU}tpHp!lF8qCJu~I2A0wZb=6~zG9+#a_WX+F`n9f=nU z3&mpMys@$U9UWjy=2Gd(-d=fOWONp}&y9(Aza-TzipO0phI*)n>i zg?6)W_|VwsY;s`WWWH1EQ#(2aRcG*cxg0Z@x_4y59R)@Y+GwyrPW>7%k9K7F@sTB+ z&`{k>rb2fxan}F<=5HBn=;EF5wTYhiJDN|ICWR-KN7{drCHCWW8kok=XlZr*TkT~3 z9pu^!?>b`9*K2Jr($a)E4fZ)xI|3VUB&2;jXAHD(l1i``MGBZUJEg~wxm#^EUMdKB z^*JffnrAqTuBcwQbrJt9;j>l#3-FB=cfpF3gXM*@7bG9&d}I}?vA8zAeeFP=yKEn8 zCkp!Gxd`~&<@>k}Dt-|9Th6cNo4meE|8+=(i z(;Y7S53y94+~>FXZ2?WhC;^IShf~{bHJ38Zo|wPnkNAS3Gv=^|?4D9b@rsGD3HIi- zepz9DbW9NDx0s}ku(KSC$I4}OcBo!83LRl@mp7-X)oRb7o@#aX?(H|0ZamXpO);i~ z%?B>OMPg(#sJRFwglD5eJ)s=Rh$LLQulsN#D~clVS_FbocPSBxf|{_X z8;=f{mFwYjg)a_fYw7m2+lu*s+4^lLa&+cLD;xEm(u~*3PqNdy=H^bu5cv(vsQSIrO^=Zrh7~fuCm?4=k zoH`OxivzyuFnhvjj|-48d&z;9Xf@qu4MU2wxNK<+7WR)CjW+m!8xLie#pC`Zv-%wm z*DV(KIgBn(YtB-h{DX!IFg~2evt~P?tIOw{byu$MD~dfNWORArecJuE729tvrqMKsOvS+-i6)kf)dgo|eAABN|0$&Gjsv zZv}|itc2!Q{K&@NJ_x6(&beAfdB1MaCo(a4&|#g=6Aq)LnZPzk6Nt5K_%ylBSOGn) zLYHSV)y;W4Pxlu~6K=QgL$9Oop19j3xa(sh4Y%NSMrJN}UmWS%+_iB`g-B=aP`x(T zo$uU~Oh%=6SJ-6>G=FfXz*4ih_-K?ZhdNZ}AXdpYx?F_G~Vfy?x)lBWt$VQqO_>^5??&{L$gz317!_X_0*gTs8$iD6qY0u+e`6B>0)u zAy!Oh`Wz0kIjU*lo>;it;Ty~kH(@wtHiy+Bysqc6fsy|Hi#j_a?6&geB&rdy;!0!Q zjQkFrZ(eEG^Zu3Q+?LB`bGNND4Ublz$NbqQ!0mw7kXui*m6=1+b+49`;jg$Dl6-<- z5h~#qu6XdG^UixiDxFBacKeQnk-omonilZy8W@-qLR#}%yAwN$+uqzSEe8HkxVuZP~E8JGmDny3;#CR1C;+o)>4w@5MpKt>t%!V(~DM_G{j@@ zDU?EJ4`Mpj{HL`e0oH*yQNE7Qb~Pbng!G)>`TV z)BndMzf=69xbzIKIxx4`oTDVx?LQ>NL=I23wEPSbwIPpkYn)7!o6XNPAU}sWw5f57 zA;Au@b+Wgau%P1w^C$V7$Nop2+ByPZp|r#!~Z17vLxKZ zqr(N^Cb*2h`?s-BxD#PMN@q9}``cr#5m z*)L=yzyUPL+?mTE^+-XDIh}De8jp>|LX08?@$)Z|bk6hzwRV357Nc{w$W zy?th8=1tSnlT@~?R_nX8kN-Q42M!~VvFAu{p}Vjbf1qpF5zy9ycwR%;!TQ`{D(eO4 zHYbv)FPy!s7pEJk8gSF^5slI4sjXWMlU=zD*Dd7p^YKLFn&6)C{@%*GPt$z!mEQh| zQgKLCjsL}dhoGZF+qPX9kFTv)tWW7z2MRvlrrzqnU~hF3gmY~$kqEq#Fz&5baX+u_ z_$pZMVB>6AZ*|*jYfY&4qSy?UR(;9Ts%v)iay{r#uHjz;kdncXd14*@*vRL7rtUzz z794lQvr6mIiayj*hpvJxYLmmUDTwj5iq3&RV8AI_9|fO^(%=7RZ@i_mLk(I|2l~=i zMKuD8s{#29fJ$^$_ou8uwWCvWF##jiTN&u@?VZyZp?j{zty3INO zc?c*<03V|0wAq~EC0ZoHZ`}Iq>F89ffhhYxNQ=hM5~r;L2#UvqNWiLec4%=63d?k+ z(>156I*|;#)9f;v6JFQ)-&*16JZA;yhcM=W*0Z?j+|R3_}xDJ zgk1>$N%C$X=rvoD0e1&+u2eKuf{oQ)ibdfimF0+wiR*QxRhcOcU4i?%b^kxl!Nau$ zl8<_+(mP3uaGoKwj}P+*lez2!(dn!f>ed8jzp74_ic^T0Q1>92&Lr?Q&L8ek@m@{R z{^!o+KxE%`rb=UD#SbV>r!uplXJWkcKH7}kxM7w)H>l1HrHP52ZRheTl5Xq8TDBj) zZPMfQjzJ<^E6e~=talLdA6MgB%|?+pXzgcQ>WBYG9}MAe5@14)cd}UQtrm)tUeBiq zi0Ji96^gx;VqwbbIrTq3?eR<%3swF6rc?9{AwESo#O4Qk3x!D!V&o=q!Mpx~P>t;3 zN_RJ?!Q-Cj?(W^1IQTC8iyqHpp-_EyDsewu^_OdPcJg__Ymb5s1W>?7Z~aWN73Z2K zo6ptfQ8U6_+mu;LWk~7B7B|(J&oxiZ3;Wm81z~&6H!g}kNT61rNxg{nNWhCR7)aF+4h-vti=zHhsJ5V0J*^#7nMi4$er@yXpWg8Auf@NISQ*=&{`7_o zD_f#(`6+hqL(RfBzloDqVH1}vKfBO#hz`&OySMrEZ+;WaSrdn3hnKhlAInZWRZfe! zRtT!j4BC5CC5=~?p$G12=pm-H9FAh~OsyO^(@7}oDMW2vv)OBl7Cyha$tI3$gc(it zIRm4qYt@8j{%dq2~J;DyJ9bERRbf3}m9+Rmr^V>{oEB&8aE@z0b4@HIM zJN#EmrYko8X3OQsh8Xu>ZIZ6od~E$Quo(O={G;);;^T%l7(QnBwBfUcFB`sz+PdE} z`~dydjqO;Iu$Z(2$5cCxfiewbi4|hu(nFzg=rIZTd|{zCT`17GWh2uzR_WFq%x_g_ ztzQzBxdyFGe1#%~y8#p_2Uo(DBCTMg$KbDoCxCqJt0D)sbTLeXDv7UB3t$>+_#v0^ z{06u&%0|ifz-dp_FV|S5qRBPkANmW0*^Wpky0N=-vNx})(QwBkszX6wk0Cpt6zPvB zUby7Mab~s|y?fHY!gM2kAGzji#p02!F3I9R4iulGn*dQ36;3;o)nTz5XNPU!o#%-{ z77jkam-Fp*Mmxl5A?5O*Y+@`v7P0s}`AS&zYO=lm^73p?w~?t9eBnHaGv+5G@|7$@&_%6kyLYBzE_DCcC=2t24Qd zZeMcq=KBYS;J`Nu(NxtFABzE`DMHG$N9>M1%`8P4e*a*k11LTtLTvp&C|k@9VK@Z8 zBLX%AgRS1e0)nhOj0^a<#vQ!s$ z0eL|F4#Nwd!uR>TnnMPHELXNR+_gxSWM@jgZSaH1TwluTB8)`~q~+TAFoY zl<`%ra<^>5+^IxD?Accp`T@MS(Wm7m)r1G&t#XW)dMa30;ZQW9FmC)%u5-|6@{5WE zH6U$HyDea*%#jGV4+MiwNU?Byi(d++Q?E&Dq2Opb-8Hp<6djICce*n-ACGIveIaky z?NVdu)HU0-?LB|{_Ukg~SZrH1Yme76?yxB|=*!GyZRzypShNUmuGNR~l<*IWc9dEb zjY-jDnKo;v1C46DUK!9~2{F~G(?WujMSj0;@Gx_^yIgLze<0SQS`jZ$fWCZ^3Eog} zga5zwYXl7<16p~%xh+3}3$JIbbKn{ftZ`^Pp_#(HNad|0<2#EcL z*MU2zf`ibJt@%xe7(Wk+>KzkBzl@~HJhE8s5#S1LTYvoI1=iUqT*fG!!lTkqTcbgq zC7Q_;9YM*Eb5s(9SKJsAFoXHC)r5-=>~Uo;E?dUC$}`oREtr+}Ad$B=thx3ayjmVI@m+&y9Ly|lA^&FA+%=FEg`T|;cB+Y!tmBPPGi z6MGNtb>@!uN|S}k4BLtOWJ0!F-%KSxZYf`qmG{cp5Oe_-GEbHy>}W_O{=}XG__<4a z&Es8_nSm}_IJ5lT%1pge4dm#0YTXliKk3R|RK{I}TZ)rXbV$D)@llgMhqTisSH>^qM1RB2Of`C{{C8WruCATn zTP-8K$CX~=%*7g50Wgv72+g@>(oH$Ib%e32SyVD*WhpJHIiES}5Zra>S#<O^c9s`Vm%owIs^T84D<^Kgx)6Fk;Knvgrr&zS&F=k z8LR!c)3wdygpQ49J3*k_X@Xgh%!ud^;N*9pX~hQi1;;6~kieYw(^n!=$m@|!zXF}vR&-IPArC9~ zCfIqe0Ij{n@IJ#QkbC3Hkim4zrtZ}s`wLkx)|xsKdXyL*Cl+p8wp!Q=g8a)I@cjSr z6)MX`esWjh;Y_`rndfh!JD%S&+;nGaaUZ+M-$2rHfAavUJP=^?9B*$^+GpVVXkD{r z3yw}?^gQQV)_i_{3=WVVK4FrCf0;XQR2o&0e>n$hqtEPr{9+$;Pi z7FX~2w$U{#-@)c-$lJtgGT=3Y%_UiP7cw`$#&DbA?S_XCfB!Fre>MEX z@LMJ!T&0r@uzB#HGpyYv=qiLvZa;91@~8ZX2jrI{h4#(Qy!W~GUqp_sGk)Puz2Toh ztY`iN&vChKj)(@r`z@n758!Wx)tYuMy*2;Rr_XklWvGfThbhR+VOKrgq2QSqt zy_#PqE&U)^y)YKDeuHI>J^*7(PntAi_)y>r;ocFJM>;9E5-M@0v<$|83 zkJ`vGt;1I9%Y5mxXZxYG**@2|4-=8!8SD~v^x6ymEIc9}0QMEQW~h2C`$Wr7QFH0` zJIbodv6b>#n~^3w@<=A!0$G2^>2wyIw?2If3NAREf8Pdz3vYO&nJ0+#>C^PizWoTU zayoChgSQ@<&(s-|!Bv#CW?4SA?8@AEk=Zh$J8tJmx_-D6b`%!Ih@WOa}zA$)k zW8l)!E*N@I{h;rzM&Gs#jlS)l>;c@bD-ubT3yQ59pTbAV2k#oDzvlnS&w4xq$y6*4 zU(O&toyp{pp}}fBTJ24ht3yMVB$KZ@SRTHM{)XrBu~c%v~UoIxxz)i;HO zf-LjM2}i3{1E%XX&ZE_5wm8)n@~T(B=pX8vayWVuiEK8R=tYRbU3*S?n_ZNbjs17; z$vusFeNQMH4(+MeDJL`cRq(MkLN?193`i_va*0KV+n@l-!cU?T)r2HbM@P$$sb4@@ zr{-dYy`_0&^D6O#=4xJHc3UhibMp$97DjbVU}~wD&7v0e{(tQ9+nYPtb8lT-WX(Bm z(s~;47^c(Kq?axEvu2>CL}AgKCHyDs$EVR>Y71qE_CZsEJuTCy$*8)RLxz^tMvgXe zbc7rf?N*|tXm5LO1);F6;T*ZnPM$uU`RPx8DxRl*2A_E*{rvOKiv4zhwSz4iYF~;-%n0h(%e^Rn1#)VqG+tZVmAyE zJRTd_Xh_McmY4`(vr3PpMgKa5x99*OaKh`$Kwjlb0u`NUZHbU(XslK}2?>`mjuIN_ z`>Nx{pBwv&i4E2pqt`Bs_Eu&*u%K8zxvI@3e4XQeb(=NSD9RhEklJ=}%-R{NvLCt5 zc)y?lpr0vJn1R@h-lhC2TP93-6egw9?MUlJ3d5Fz=%0eJl>?k;txx)O-}>I@h539m zwr9|GWFeeShD;|ePh`8J?A5vaFW9cl^9%d83~qLBlL}rbnH1kDbjA-p{`h*=^wZ7J z(V4Dco1>JRDm;FvHx>zg_J(LG8FY8&OlH&U@r&oS9IEwe+BdTCc=laz^l-fs{>zhy z5hu>8qZ2vnB2%%RGnAkRP-5tTb6upiE|qAtWnk6SoE~^UxGw4E=;qaedg7fs2L^ZU z930r$oZU5SR?WlRS+{F%0WptmlY-W3^&}W-c9}A$FVAF9$8D3CjL%t_#PdpsI`kY zjkFL{W9+PcbUDk-Yq?hVm|x*1?UQ?ReH(TR-p6m()t$-qV-<8ZGMVnbV~TZ} zDbvXFbNj%K9Ru_SJ}nt6FZ@jW73`Qc@Web~q9!Rug|gz(G6=-K&oBDH{wml3@V}8G zilI0HKm2G&`c9eMV1*dvsbI-%&rdmiNF8; z(cKpmu5dbH$?f9OWwyfTxaro{8Q;3t92;EtlybAJN9&phvumzZEQ)_$uJ7W72|GKB_PKT9+2VZqZ&%fF#cU{iJ1Yf5>Coh}^U!-}WK`PjazOSK^MgqeC z2RppQYmb5@w6U&GlZZjA!){?TD69}N4Y&tP`>2;uM^4+ZX!TQe(kB>_nv7oc{IN_rGGYT20N@w{{m!o0YlZ z#6)pUe^<<>Yny&mpPQ@yY7=IFZWmla-P&yktq(}DeE@xC1~+uG1L*S<)^|J@?&9X+4H?S`ZA54*eY&oG za?aL@sqH3G=1-VD#RGuY{+^k<>XO52V$I*HKFRd#t^EB;WMVX(*30XiHc3A9RX>rC zQu5YkO(rC-4G(lUyk1AgK-j0scGFKa)oeFCOWP7I#upJTr23vU+0Cl**$Kg;AgDab(5kz{}uD7`) zuc~@YlEZ4Gm~muOu;$`|$?Le+>6Uy*#f(#Sqvm!601QHHF``p7B;OLP&BxrobUo-~f6cbI zp5q&II~V@mjatJ0ioAdoJkcGHIxaT68qf8OhIbksG5nq3pA1jIU-UcXCRtR}IgHqP zwqpzjRvvzYiD065zWP~EK`nzkQGDHj&7RhDcy8A1dn&Lyt~+w(6{u>x?!5NmuV@XA zeoYVM-lAXefX-<8g(C zjs3I5Vnz}Pvl-#?lKCSNY>hD3p+q7@T~fXwK=>)3fBCNzMFiRwX|?cPLHG$kKX9Dj z)cY=TAO=Z*TLJkwj97>X0*oEx<*9?Tki0=r=>7D=*u!lRnS}Q`k`zX# z@;xBInryMqJNw~P)Gj2pK*;g+aGFAW6-+bDw+0 zBn3S9+FE29zUB#_n&Tn|szv9ctEjd1&Km!R2WWsS{2wmu_V)L^f3EE1i zdR{{HJ1)Aw)QijfeC}Zy0*~EJ4bA-)xTZ&k>4EVO<{oklHt^!1+yqpoZ$S<0;9z|6 zl$dbV0jGi&ccm+_`j-1rU};{d0+%y+sqx~smthA$`ts@^tAYoL8=bK0>IHNJ0}RcZ zzl~s>Pl}FzML>OXPI#vIJtbgwC!8Ilh+ZO3gUi>kIX!%JsW20Q=xm3A4Wcym))4H( zm_6q5M6CeWh;}pLaVZV}=OwieY%bZe;dtlwVeY4|(A+}}myOw7UC73-WmI!O#S+b~ z6k;+qA z0D^U^|sfN!I# zyC!zhQ9kMeeUHBUs0xOW<{Qx*y9`pW19IN{1-ou!uWTM<2r>hL9nv$J$B^Fw2T&uVH6|5(Ncb>lKt;TQvH1G?yN665AN1EGjut+Y zJ$WkkzOF$DJ}vP0k-~>^m!HbL{2;t>WaJ>SI$)WTj0Zrd)AEFRp!&t(rNIRFs>?b%wfF~PC;zx>00^3(Ng?xdP4cBh?L@6&yK zPfpLMev8xTa$9_kSJczPqGX@z>6un#<4E&~_q`iswUhop8c7#k)W;&l^1i~SOSNAb z{svibxcCA&|7E)~zr1vE?wRIk(zWpS^37+4rIRP;pP3tnLPx3{o{ME=ej2guKm>9Q z$hT4GWJl0;A}zx1Rpphf%qyVQ6td;(oE!O@bS;#W9EhqYxJHi*HoX?a}V;XsoL%CY+w1Z{KR}Wq9J;9Ju0x z*KamE%;nM1GCp>_1>kX8^LIRL1Hy+fK0KCU4c$(nI@Wcs_^GxYJ}jAhrQ%B(d0sJ% z{hl@S4C)1k!$|4j_|@D?oO@ZaXpWGygh&Ojq{Ao)irSxtVbA)NSv94z*|a65AZJ)O z8Vy@fKg=dw3+@yMg#xI`t{~GK<C|`#KY=r9R?~8-60@4P3*<~5(fAX1#EJo- z9jDfEZnuZNh9L*#RbPJe7KxUg;cqNR!YI7`7|D0O6K~jj`C$^euxbEku!Wom|bP5WkDwsImr}0T2;io z(ZOIe*SRH`aQh1(U%7mFwc7CkH58o8X7i=p$<9O^PA^p*$anQsbDcGZ-RU|RHrbNl zXvXOr%;t)y3CVtNr7VpN3>=8YtajC2EG{j+^*c9Ta>;|k!@Z@er?q%|XSrOf7fVwf zk5e7$?yl$eri~T%U<4qxdcC`ANNv@2;FuvE<3o8__3ZsrJpikT$5hM7s3p!aIo(49 z#}M*J*5pP;;|?qUDZyoOpaZVHwlbxHUan{RKKq%IC)u~yzWYC0c;JBtwtu$yi168y zpSi#J2>X`R(k#G(g;%pcsbtx=^gZ@1l+Fl0`_-GY`T4guzxeF2o4(3I$B!Sc-T2hA z56-_`JNE2Tf#w$#uhje^X?Uz(@+z!f@kp$nd_c`FN_xFY)InVoFGXw+lEM&EY^y-o zRHFT?^jvUUb=SjDT8cMdP8wCV#Dn5;Il9M}$oAvY7ZQ@}bq$>~eoheN2QivPx4GS8 zUHLL*@A6!^t9uL}`l=`{Om*~nHKgI~Dfi8ej~xz&m!*rRyC$Nxu-(-ej1~*go@&@ioCbw>A z^9TO?!$40DAUn_{u+Bg?Ekm&DWnKOT@`wI2>fRu0N;e z(sQ|nk&bW8Hk;&E^Y4jE?P$2wAJD_}=EA{KWYjnn3@=}Q(!cV9_=%r~1E=UmPX)rK z^%Q_>?q1Y$_1$n1jazAspZJLTg(t=5#PpS_sqDVC8B$lhMTI za=AC|-+%Pz{{3&vYt(!It!E_3th0 z+I35JxBV7-JaKqvcv8Py|LWxM(BVWJr@Fgu*|lqd+N?l_`W<*5>UDec$pHu+kI{mm z6wVIv6(L0myc!Jzan`dH$~1tSDi!)5M!D{?tgq5ymFt4y8j9d@juZ<0P=rj0M2{?O z-g0@=2+O9TZX3#0g`R^4<92O&sH@KgJgQmt_1?Nomdc5QML~gp4M<T3*dlql4wHqhr3ph!2X~-P zx=Z_Ne3BrG@9-a^6^XvVznN=2q6%Rc=nMFxIYqZZ%QSw!);-$<<@dKjVk_&WV~hIE z9xKzzdBOhAFk(ydoza9vvt>Fj8?z#3So5#Sh?9+nBav|2?2wS%NU;iEPDJu~N|}QT ztYepTW^9^e&+WvhZ?klGE_HSX!zf~`cG$zgZs(<*4$EzH?sn_h&RLs3TyvL1G~Y=# zW~cSvE92*^J$ehK*S3qA+L@1{n8|JX&OdVG{C&6SF|O_H;MzE{wcBb|aJrE9qU=>8 z_C#sSUO~3v9;Yj=dMc-ehhA0jsBu&w9ErzAI*xeDot*AifyzM$LM(I)+lDx z>>WO}_BZvGylUvz9*keSG-|70Im}{4QJa5F9nI!)S>EY==j)w5f8UYy+;vSn8|4Pm zu>q7DY#!FhTY=?76gT;fR+L1J3u%>S@U(KS{ z9;)7?eBKBHlp;fSAOV^r zDy}MEBo|pu>`1m;-m@h+hGi#?6FWtUE%_yJ-ity1X?7CFzm@!sf0u|@z3<$a1s5!` zlmz7NPPudE&YfG%J?A^$iC4011H~k$o$UY#8HQVM6SRPTgRbiPCNO1rO@C`f0KrL} zF7CLOjoYGjgWVV!XY9_l8CY3=0}&?>ZY|!n+1&=~!yLxuzsA^1ocC2&^zTKqyG^lS zVJ=bL2~{196Ux*|@5hhfgX1{(8?8X2MPrQeL&FO$aHkQp&N;wxz`y{l>ywd#@{Y?3ABf{pFi;`3)R zyEBp*>xL z4#6V(eXS}g8EpC3%f+h*>uCL-f7l5m-dywH}Dl-Y;3uv|=a(e}b z!e1rcp?AZAN&OF}@y<8P6dRt*n98x9QMxJ5r!E1rzZ-3FC2aPTBOMGzp_gS2i(qjQ z*I+J;fP7h(q=i0b^n0Q3zQKV>ch+TrhmOYr*^<0U&sAo#x|B8VD-Icc)>DX+(rHjy;XXQ6&w{PN~g0pXBCcGkNy_Q$tDA zdfwbLXCncBF6R$K*ry`_dng1qqlY5?KrRWNLa5kxlOt8 z+@tv%MI$jobe^5tH9t9ZLpEn++qVxVZi)}bDQ!3s2_GC8nVA|HITVQspASTEt4O5w zbIQ^Y3Lys1c}M;oF#WI?+VSK$tic#h(8dbj!PiUIKtVQDz_Y0NH6>o)(X zaQXVbUam#RN|yvS3RIgm7OqE5iE)UtSq{j-^k7{(qDWA%&(YD z&6e6vQ65C>6jzO2<2UX;`>n6D*J`hAF4jB0ilClUEG913%OvT}ehPsJb6eSo8gvm2 zWA8lh1Lv)#xDpC|8vXUc0S_&TBmC+tJ22hF+2&P0$rS|t1@ImUQ}kal=6S{Cbn3Rn z#eE%Z?YpzNIG9xz$SkcF3b#)Tbe9+W_**D<5A*Jg8)ymlyOtlgUc> zezS{cimMU7FK#d@WqKN9c?!gy^H(+2PlQ_nE+*O67vY}=C(25S3$LuLoNpUWrMc0W+8fiPF`s@PxU+j9#c&COi<>_5dXg34!Iw_L zKUxQg5mKhFTN#}ph%_VvD-y;V!xpP4XNhRFVXLgS8pj=90?Y_zGo$n+$GFj|m+6AAHH&M<9qa#S@5Q1^ zwnR{$HZ+9qp+37&xk_cBCZOjh*DGq^Wh|rWTj<05KTTJd%+P%xvv`H?dF*-zSimq` zcx^*=&vp-e7p5YaiW|0kh*hcNJqyff_lUCvTMiTKOQ4d5XN>Z-zveo1N?fijaRO@Pm=a4}*Uzl!kebp& zRRIGY#n|%thnTPm_UbvXU%wI<$uwj zPq{SYzXm?!*uB~prsABFQx$eSK40r|knPc@Dl|f#vxxcit(a}qa9IjxB#HDFa&)e3 z=?oMd?`7=0j$(j6nCR7IVR*!$k?UbV5>}w7Y;} z-{P`Q;zTDhV86Fn1XleO;Hd&c>L3`)4{5H4hvB2B<5rT$RNEESEWGLFfCJ;4lqdpK)Uu`mOMLb1-$u#Vfm&a3l&1q!O?s6v&v(xzCZ>0a?K6)Fs)a`$f*(tW>4}0*O6(_lc(`+0Io~B-$Zo`35Hl% zDt?SS@CUBoMdA`-Y4O8{o3v=8BpXIt>!+U{`m^&i78~kX_N}ItzV~M4^EZvho_;zu zep7xv^WMIeCg)cd#uAg6%w%G0;j8S2x8C}7VdYY~-m_;b_g96|sW0n$clfp}Ep74b z=+%GuR7t4bUzziNrU|j!OiiEhldmi630U<3znFwgVH`H0gPI#KW36aDr};h2pOQAP zQF_1_N=@dRIDrH3bliO4f)tqj6cBZh(ZIdw>I)M8`s`@j?8?F($?4CikD&2F4Dz2h zVxny2joT$5Y3S>&acFN~3g-I^;N|-E32u4iU$rkgd@Sp;BYxuM%c$ufn@e1_R{P$> z6HiRkzUOkDICA8ZpFDEpgwu5{1D_oM3|RK1`VCEnGxZ_?1%1(@OFsL|3`Xa-bIp$s z`KrhY4xPa!%X2aO&B^jF&fV!{WQc54ED3MpZp>H(a1afnonsPBchFao=2X}{`x!7I z&eAy*03D|_ri?jB8A!lWr*6T6%WL=9Yk1O!!JYQgRrqef0h0FZ-k*Y0tyX&3Y2QB#9+WbI4b(M)FluG80+*-A}QTjNJ&;C{BM*FAqq!H4s2ng=j9L7xAy_z8-S zim?u6T&_ZZ{Sug77%m~h!+J|2BOg5ZhWKNz_lLWd+IstL9~>;ddd;h8J7{pjZA-g< z2)Y8F?*|Y3&^O={zKES4?p|sOhb=aH8p$BI-qG9FwzTVqU^~OP2l0zCXf@6^{t&(u z#Mc)9@^M3-p-zX%`g}>1RcE;54D(QJ;1Cz-F->x#0uIrTL6!t)KRjK8%8IZu1qZ}F zb`WC_7t~!+oDlW(?BA=U()4txRAuq$F52pvK9y-%zrQV2YHiyFay3uL0E@ZNX=L#< z7>stbwU;grA6+cS*?0E!3VN$SfSN+i78Z{pnw=jDt?sPwO0I12`)z`weSEyV;qyUu zS7#wtuAM?CH2^_@1ciaaVAlo01Z_i1$B3AkPd>VH7ueBe#Cr#EtO^8#QzpXtNqT=kXX7M1JCv(1 zsqzc>VVt3m96Y-YYIuB9qSvLUVf+%#Dz~iA>+DkQrrgl)WnV!BiokC?266_fOCi16 z7&JoTYTpHZg2|JuIwK-5L;f~dbqA=VOpii;D7MhVAAeUhjO$YUV2VR`i^)7Ev$E;yk1kH)5m}GF9BD=JIG<|!! z&Ikx)cR(`fL@d0ESDRuc0JMG9N9{h*FI&wfo!?qG>OrKt62kKZ?VpL?0r)i_$JaMo z5H<^u^qg6{R_9^|T42Z0W`A|L(PgmMZ1Aek3O19})%C97q0kWcwY9bc0XVU?w}#C2 z;uSf1LhC&VF5;Q^+(dpm^_Z$OMiKJ0gV-1ewCBe}z|cfUfF`1U`f%2NMk@g>=>a^2 zkxWkvv*)&Oa%_O7h0 z%*?Pa@e2_(7J{|%fBlS*QG?SgudkSZfwK#%>$qs7RamZKoCs*PY45z7s7aWd-osZ}c z;9-}}beSl&zI%A&p;l4cZT=`ku&DOXp9_eS*^HXb0CzVC3&JkVVa-jDs~^^UMDtm!!5TDsjoT_E znWF6{(z5!3L7^&Bj=!};(5_?=mzvXkfJnc)QE6DAbMP~x)jlyEdmHX_u4yXDb?;gs zt^o1QC}_M`@l5>)Tdi-cy_IupwHS*vH^&-s0JW<^t{@<=67nb(akFYMc6N>KDazO( z1fWs?<(H$lkns1^6aT?a;zE82c79Jiz)#S2t*Riuu+6?p2k`l>vL=P_@vM4;z5gsn ziHXZ}0Bbu5WA#;dj}^@o=;IwUrt)zbGNaB84I;^oG`8~pWJ>e#p;kEpq!vb8z|WPT zmbhr4x>hm(be&&IJ}yuNP{$Fk(g`|SEV{E?9thgOE|XxQ&-SPVMlHME0Kyon$(ixR zC)2Gv(($5A4|ujH2Ex)|yT!L_G(9bcN})&!T1x0q^iX*`Yjp|_2q7oi?V64bjtWzu z{=}B{j()4nZ8QHdqUSg*?N_w7A8ZFaP%@Zu$>^3Q*lMt{akfQ1o*qw*E(I)>aKw=> z9B6L#i69&ks}7&t>_0F{vPM8%kN9A-AAp>$apO7E`6aD%e@tayqrpU@?xJ4Q1a9?L zMG56fs-CQ#vf=uTT+d?CkrRn7__)2{^m)7D@eHKq@3LWA#*0`n8J{l*wQMXLZU-TI z??|PxD-to)YWhfIcXxOHuh{#wS_FQv8C@ z^7XyF1O2_d$2&XQjGk}x-B4+1F784&?x9m-?d@%sx3o61$M+mQ{M{RGy!EE*um8)d zuDZOoIxsMJYj022!otFn^K&!BVqs@KpEDwYP2WKO9YaHkPdMi-Ccn=(v~jc0@Dpk( zjhP<*(F8hV46le9gH{7yR!sIl#)F>Tot9|S1z8erCtQdFtveQQXl-@tZ;3RmGBq%< z1bj#dascF%y40-pW9`ueyAOk#)p+)glVZT}VYYBb^qR{}_VN7uRgYh_aIpUXd#9~A zJhhMYh9h3t6Uq85HfL{Qb}!52gOPAJkV42^P1PCFf8Z*M;dV*4XQny!I`1ypl~^;o zw=fVi#mAcDPdjY}&(gL(eZAB);e>bo^|i;?^+w4wQEmdwy~pBq8qB)w5W6RP;~j3R z#|py~{IB*}U9~Tyy#9ocUC&S_6nMWyJS~i?8eV^4Xz(XB^QgUpKu_JHc?f8c-_*RS z`F9v$TGiZjxDIRoK4q{&P7wEcjs;dKvtM;zS0K8H<>3@5tw~u){JutX*04$gCq>;WoC3C|t zio{z5M{p~1H@s)-8&pcK(rOg5u@^0cTxygA98AV17S$q0Y8FK$P*!Y01QsYm#sxM& ztYijgj%98@vq@>R%=)kNnGQv>!>9d0hwg_mC}4PA_|4e;b4T^o|cNyBY_O4tz0i{r|3!1%fPkMWCpj@{iln092)4kD1G}7y?M8Yf*sq~Od zO2#o3jr3*CPn==T!onjs;79|-4gTQ=QZfCB!g>c}P?#Dq^wiC7M!9!x=X$E5zM(XcNpo6rGIenf3Iz`t_7Xfm5k zMdf?mDCzw!mmf6iAgV?Hba1s{c_2zQ3;5n(FcT$70+%E9JvKpr2cbO>u&1pK?N+)> z(!pKJXwtjKHoT*HkP8`CbH$ZwPYMm$<{onL(A zknpWd10(6olyT7xJdq5o$xdi*?*u33W15daYxcXCm$?Ljuqmn}52TT@%gI7Wvfg(A_X-Dl347Q9^+fsr?(u0VOHrMM3CkS<06=jmGJ+zd}PN#!VVp z)Q`8HDKI)JN%?{~>jksP5CkEQD}c!G;xF7Tv&HE?+t%CC-R(`<94@CUulf^c_7T3ZL;0oXS2zL^4CljYi{OiU+eRQ%sP|7Xwe&jW>ehn@te?~M3c^9w_4C%(vhxa zvq_GIp|oz+NqzZ3pQHm^yTw~59O~#qxKZ|;QkucymESmZ>Kjs`lqe>?wy2Hx!qKnI zvEKFO1mffge~E7mV$RjufB?-8wSzPmciJ&a?#7zq|G~_tXD}VJb~eL~p*@sxfG*Ow zj!(s3_Sahhx%VsWp^T-1x+Rrzq*v3YbKZ0gYL5yWhf4km1U9&Arb)R)dt4JsbD@$g zH;8e49o{us7G60P!$?I_ln*>s%0bKqC`S%WhvpEpp(M?$xC=EavXH@9lup&pqexsp zqQV2^h719`q95doH4L`#h31W!4CppYPq+YuLPh}8DF@YK1n#=%89y#ltA)?3xP*5YI0ErnDo>O`Y^Kn3`L=CK`+AStjO}eE+cOSB zTdT?bn|34pFkLCQ{tdZ1S)Q}a+nUBI!vh`7gKTJPV!E~M^y95cI^^( zDGhMg9=F|P9{@?m;U?ZI3-3a$9xuSR3`w1#e#C3@v&%km z^UbMLPR=!@v`wDi9V;t5P_B8SZz{212f^QY7kC?A0Bhr)YyJV!DVG72aTF3anjj=k zj)`atVBnRh;bPH=uXwWtn;igjy=N{+woB?Z)ggF|XYlg(9APJ>qjAXq{-XhhB<$9XROlp8aWi zd_PzWWUaOc$^(-SH+1wo2O?XsStptz&O&cf(w^qCat`O;(2C8VVi*X5lA#C$x~MJi zBVe`v>$b!aQXr!?fU7Rds3(_nq&70TQ!5q#Hb!b$(w{AeVK>;i1+yDLH6|Nn81|eu z;&OOnZs)F`V-OtO?p^f*hcgkK^drzWNJCbkr{np@Azc9>G@MU1SuM~a(U~X61$^&r z;7UZ{0izxb7jwa%Ga;&8s};vCdF_uF$sw=dTPHo`GvnrFKg(^B05srNtB?NSf>xOe-09}I)y8CD?%vI= zvRW;1k2`6{QIp5$D7u`k+Rs96cZfa$v)XKhP-VpBan#VGAi}o z6-Z$5Gv@xp6%M=H z;qZ%zPM6C)H=60DRe`x5d>WF@Z54eIyZOBKBWkSBWq3&!`Z&zqXn0PTv!ENylGt{dHc;6g*L$hmeVD}19 zg{0agkSO-&g+Zn^WzM0NmR>E3D}3J0qPP z^O2}GRvg&9Yw#+{pgl#I<@?1IBshCWV!8@8_QQ@4&gJ05b8S9fm<$F%A*3TR1;lPJ z&vm|vWav8Djpuhkf*yqYtU7drUAW=;KeSJdw+RUINIr4d`2ZWTgi~UqbmWh8C!IF(uLt&8c4TKMgVz9(#PC9|&;| z;#*ZaI{Uoo^jILE6DPFNw)EnWquXM8up{ceH#b(tACAqvH7p|AHZ<7b_0E(^{e2ys zRWIUA1bn{K5Oqa_I6J!IvKs>7CfZ|v`JX^7p2JpoG!LNWs88~ahsmO@phGYPzSiV8 zMXFUk({0qO&p*s@rdZCBik;7H(2s8D_0;TWg-g>BhAHk<%~#Cl!)w)@5q$TzoogQd2+n9tsnPh z4!bd6OIA)?g&4y7LZN)doDjhh08LNr6VUPia@BL|j*0OrLZQYtP|U&D5aAFgp}nM1 z6LA1-B5`utw!?&LgYDyG@m}B=u*6gl4Fqe@rP>(G(NI&vMVWxoDm)9JLji37ej3Yo z@#XIBQ~f&KZNNAU)IMbj+iqTwt7a41JD?uCr~IMv`Vy-y*H)Lsd$EJ$cIh^qj*^?J znbSAh!jv4?EFA1V)!lveCzSe2z%;03BP@4_qc71t@WNE3gZlmz1UG=*0G{!eTz{L2 z@Pd9PKA9VIm=G;#YZlHHLz(I|ksvz(>VoxO`seYCZV!MAgVnC`1Q;!Mxy%l&eA^Y` zYPrc@^u~vV9_Z^21jEOsQzL#hYjdtYR~)i74Fdk)@r1+s1_s8=!xq!Q9^wV%{0AJ@ zl7$`VIAU^uX^*VKXmDH-Qzfd4ZCBv?qew`23Xg{4OS@vc;<(0LynB8i}|JeDztIJU1#N&1gX)!nbF1L;_ z4I%}rpOIGfT5D@DUiMGzXt`iR#bm;lVi`4$^%rUyRl^X73JZ^w*O#l}^2*sN(=gyl z#pSbWLbZl%HdFf&4b}K)MB;At17`cJ{8*V1+DMWZnp48#u9s!GphU#b0R3<1K70GPjHadAmGTALGFi^at>T=VW#;om3< z9|P5ANo+g|+B;e(bwzy+&`9Vzxv32ufj^*D<1x+Fyo}rX!#XF zG%L^i(l0G0r1_vu_rPnEL`mUC#AtMOe1O9fzKOUdSf6g_{~GIow?lrQfp7ty$=n?m z`jUEg+cd=~?Y!=C%|%2SRPn?Fjm;_R2(R$>60>wBrf&kNY*sEzwzZ8x6ix2EqL9n> z!}Z3|lgqW{7b4c6u^lv)#hXS(;p^e|2Ln5MdIqoQ@1F?<)9%rZ=82}l+^I?b#CwH8tHiH#?o1?QSbM9m!;JC(z=}h!)0-Vm8u< z4JOOK%B=}AzPjR~$0i^Zw_4~xhd_0K|6D+TeF{~atIv3T)w7%CD5~Wg9{|*h6loo& zE?6yzo!d*`FcKpkli$D$CT%yC9^R&K%NAxF=nD0+jzqfE29~&T5rjKU`9T-LK{`;u zP3^5a;*wEJ1xC6ic3wU(F%rN!qdk@C7}ztg33hy7V92I-g#?S>2}3V#GvX|91Z?~Jq7j#S7_mlM3kB3}I0HlVaBKd^=)e^dgK|sjLO8s2h+VfC zoJ{?ZI3{GylR>Onb(7rY#>XWoSvgl!*DoqOS+B|pb!Y43W{0Pw(tCv!m?^r;1B2!A zq91?UJ*3>&m8#xl2nhk(kXFT3QN)*+c?X61wHw#f30F4k+~yBZdRF+OO2Y*MZpeN4q$U zwBnYkfgI3K$juKR%F1(HP#5$}b@6a~wy~78wMJhWvh{SUm55iz*8)}8ZDr1a9|Pv? zeRzkM$Y{;Dp$4erKo6MnSCX_=Eb+w`T!}bH4N2P|Z*Y+hgmLE~&VgX&FpP_i(PYEG z<$Q94k+!}`M9DPOQeT4>_=Okz9@}-UoOky4@!7E>mSe{xpZ(9DslC=4m30S%Q`gP9 zQ_ialk`;zBqf@#v7`bk4_PQCb2Ln?VNWdpOp4OcFvg9z_sPp^Ai_Pujw$>>R{-#>n z%E_U~)>DKWJ@d=@#(RxlVI2VD)74Ob}HwzZaf52t%-Khx{mnwl^q;#N4O+}2^gmhfU#LXG*1`X5@X zN2tnfG0HGYAhpWDBm#O@9FkT64X0Z9Vkyx_I2|IFqQ3Zl;`9CZ4`d*Lj+La{vAvf1&&Dy6Jd z3GY+Y>-)8__~FsfYIStv%2-Sq(Ce5+#q1E0hdxYm#_Dib&p1PXyc__j4-xwy+~udL zl%T47v%TrQ6w{`{;j9UN*>E^jJDciDEAzgDaprlTw?;TC3$5*W_v3BX zK|P++WkH9av{{S@6%-&wdd!Wbpw6qu;kw?+uVl?w{`F+3VuY-;j?{a2FAQJXz%Np^d+9Z3LGb*wGcdI-<~ zz*_Tuozrg5xjlw(bhNEUGEb&W2p#OOg9EOmH5QMT-EM=?4K~kMs?cIKM-hQ=IvWaK zIkjbPVkDl=%Kc84@Hf9}aTSXP3wfK_yX>mH!xFTb-3C%bYkc|qzI@(G4z4dbmVKt$ zf+Lw23j_gu$Qh%j;^wd8SqsS|Xtg@pyY8F_AnXRL-+)bM!9<^QIIWUS?=YHeI>}-T z%ooD#A*-NW$YbTJ6BA8)+N@5hAZO8}Hw6NnZg<5e^-SBXDQkL4(uP`^4>dOjng?22 z-_g_S^>=q)Unul7`HDp#)B>)fBfDp2mg8~s{77WFP{g_wx;^@$wLl7*@jHOO)Ub<0 z9RWh8aXL!=`XsQNZ~?7RO5131N{gZSr7nA*v7^bl2_F0hw;B%3w90bH29Ted)(L^TP8jEV#6So?!IRE@D0?y0fwrEUz#Tk~IdRs<5Ha1qRPK=*G3`&Dj3Ok%3 zox@1VyRI6iS$K;GnkK@i0uP?KAEM4Ptk^Z2!rDeqFJhD%2nwaQVXiZ(}_{7PZ zp~wQKx*p`RAcKXMqGU3pZ#jAL7I4GqaNJ18K}BuS84a0RPO=vOP+nH#6v)=g@ZcFo zT|;L_Ku7R2z)p2;hs?XYlDtsxD+44q7b_MdCEN>U6R!FaDrWtDgK25>N&J$kjv4#A zO7ni-8XUj7O8vE8kd|)AVEX9D68{yp*M3OqI~E>YT0cQoh#G?#0bEL5{mfW1DOa2I z0#^}YRW{0gPFe7#LSI~8=YW^hA-)2_ph3@|s2tJ%B@8`ejMI}bT7l4#MzemNAhj3U zFU#t6=Mu!o(s!ZQF8su9J85$`@MW+4vmBfA02m)}&&0AiT|%dG*t)F_@RK1o{zu}n!)9~H@kd}v z(cRCFZQiQviOX{QUxC5OY692%CK zmi%75zarz^*sj*eyWHT5e)y!)?%TfuLIZ4*;5h@%bN+)aDj$wYmi1I;IAD47(-~$g z8M8n88W3{pKNG+CS0ae>?f)o0w{Q9KD~NpgkaN#xPTeEkx=h^D>&DtscYNmgPuCvV z%6x&2PrZ9iU=~4qC+3M?Jy*+Ijz8gec&2UYR@~t5Ofwkh*{a1U{uxyF7MJjKl*Z;p zUDItZZ~B=toouoSaFL znrmm-voBveR~wtXR`~jnOsMwbkSvGTmxa!m zbD@B-?KnKb^YB{Pjvk|GO{w)`f+Ayt&rfZ1<9MC)j4AS4Wz#tTlhN|^>M3mDtl)z_ z>%p$Bl%z|gZ(Uqif%GG~}zb@u;CvD=PRJr`nw#B7jXK-n80lGDvG~sFqCj0t- z^YG#8J+0y8Lx(=r*PmF|fsF5TPfse`6HRq?-aRwB6QJ*;HR<-p_5I~C0ztatBw8h$S9(g9yIZ+*RcR&lbvFh*45;E>r@7ngyA`>c`ZHu$%U^!Dx!0K74O z_*3k+>6+T*lr?Lo@7j0h`{x^9uTp|nv3sx`%03tVhVzB?u^S_1uW59@$6YQq<7hCr ztG9O)U+0oFn+~1@^IxPufdI8$HC*IiTXW zNdeQLx{A_a8shV&0wnQ5h^kH0wu{xZ?=+T)2A1Ya0 zMWf*IHHV{HKGI@!v={}auPGRvfD_#h{@@S9$ht{zuK(+^!cR}0{LI+cF8m)I-O0bV zxx;RQ2OoEcJ|0iV9qtafL*=jsA9q;zgNA$Z%|C1%BVEtAzp+-&7-cp#wsUk;`Sx5p zLnWKJ_OC~yS+~*b%GgW+c}pbWHks{7qdiDb5;br93jOgGAUK1Z-=aY;vk5Y@Ny$qB zGWR>@qB8r*zR{6=`$k6hVQXY$X=!9+-ew&elQz)`>zelL_wMk8eePeFe&7L+NhC=-30^QB`VJySbuCJ*URwgCxl_7uUzp z#6o6Pn#fdQnTGYZq8h<0)G$O~N9=e!&*RED9sRjn%Z;1+4wzqXjt1uO=0NFVTeqeg?mK@P3_!U+pN`BGDp+dbaeS~0pQcmPc?^o7`@GRBH#j1kbfL2Lt} zlve{fxC$Cobeup`b#`w;1*#Yv-oFSBr6&$_{M7YMTuW6E>#8M8QFKOtn>%<`K%YWt zNA5(5tr{Hg6c;<9GgqDM+_v@4F&%(LHcGmVu)tB>k(;@;G74wf{|Rq287f7dPeYEi z5~edc@#8Bw}M~5L{Cdn?R335-gd?4q#d84 zNBz_eNyme(t&mVkS=YD^)7z^d4SdD)SpU2aYiJSrG!u^?>m@6^8|-qhW99&(H?p*x z%%y?OPFLJel&c=%SjG@FJXcxX&aV3Gi|jjpTDx)KmM5MTwy>+dT$9;@w|tac^~cXV z@keK1rdmfZIRhL}*3TFP!x_nL6jqFONzl~pXLr`NuotUm&eZzZo%lJ^S6efMP3x;9 zaSK&!GFcB48*kdgW2}7$^Wq#ZY@msj7+Y8V;cj?zcDQBvd+S(CP54g?tHW0+pCYTLK zeFZb3g=$@Tm$s4(nBlg?*lRl{Yu3q~k~SO&Hg(+rjfwNXHBMvBXYg4=EkXRZd5ylT z(RK9!hoCdu(VF!KLRtwpfvQ|vVasxrjbfQ5B1jwP!F1RFn*b>4m=r5aOcY`W%z@pS zX=>}%sa$L89y#N_+m&&{G%SV#p@^8+88VqO8M7(0Ga*Jofv^~8^_}v_naf&Qv&vee zDy1<;Tn&HxCon21uoYFsjb=|aU(`kM;&=qq76dO+Q=vAg#{C!_xN|b?pnEBxa)rdp zKZJRhYFD9>qT4F);bca*v5LK~cv)_dHu<*tF&e16#Lk@RiN`R);~{VNx-eE}$A zOJ3HEsl#ipUU995UEO{U3_XI+`WTF0O`|%ip_j(ZtH;s{#e61RaXF>ezYi1K3$U{R z1-jD`vXS9SlxMHIm=%s)L-ti*9z?fmFyGWVdSh;=<-R$)??S7XK_84I$u8FGsD_+2 zr%^vJN&z%6ryX`e0pjuW%X0p^JBN+fHvFcjC5zng*$d5Z%6LcEC|P_468{1ioWb3U zCJ&#mx?!1cWQz4tZM1bQFxEtMu2`?gUnc(|-6CE>U4iI@&p37!fm)O^nVY7ktJBld zC)1htSM5PTblUe0Gr{NEJ~*(rI5@Z+lRX>WV|NN-z+U~p8LwUDB%L&QV(5U zh2D9sz@p&XyOVgDoQfr^{P0&>lvkY1=QJ5!g@BF2mc-2-)h z-ZH(y+UEh~uYHv3u%z0P=y-o&^@vT!wQe{Ii#rpN6LV0;{};oO$82_q)f;fa>K4a- z>d&}c;7l8ty)TuzZ*~MkXf8KfMvt$38eV)7+k>p^mXFuoMOH%Q9Wk1J*0CpbH~jvX z&HQurZm{fFYQISB=@>=`ahH2vDz(q;n(XKV8xfwF!M?Qu{+3=P#x;NQ2ya&>$h+`` zmK8%mMb(mYE033~o49DuJ0}J6?7YH?kL>7!3ds=1l%66D^{LUGo(1$eDG=CND)j

d9iRd5aWSFN&DSnD0V;|SYV+V%@C;GZdi=mL-;P)*J z4_6xv*JPjedOY4qSeEPWn(M_o(dIQ6Q72)}A0e{%bYOd1c(Nh>OcU`)icuiM7JfzQ(Hw7#R#@ zQ)?z*bIoVhE>&BK{tfSTRYmHm6OQs|Z{-!M?U>A(#C(9qN2BL6AMMbq70>f4S6;W; z6xjFjsZ_hos=RxSO0MuqQHbG&Xt48JZ5_!}zGcFxHJfreqYykXF|iyFO~w@bBV7|M zk6p5Y1WznJ*V5cEOl=~no8xUl;k@H*Von#0T-Mt&+|k@J7ms;D+d7P}GW5^R0?Fwx zc5Dl+|22Ug2xvf{2M+-t$_k7@?H3pmSJ66-lT6Q_|6*)?hsq7`HZ?vbfsC1oqEDtB|>R6fAgGKg|)%A?t?6ZRy%xsu@tZ=mdlC`Ff#Sacr zPwGNX(iyV3$565B(2rcIs#HBM@x$B>JJVqgR- z84a*+rB;PC(4wJI2}l1}GUxXr;>l1$Yf(0bfP#Y6J{j!;QWvaa=a&z z%;l25_LV@RhjAVJ(7(f(dTxM>`x|&OiVSwK7Mt9t=ZyjG{Bhogy51186ubf#jP)21 z6mgd%=S?Gk1UWc|VZxiNoHtN#Z7HVD7!%)+Jl=(#o>65+;DcK2%thviU|^xEtAAj* zrDb`bzpHB@5R_^xl|w+HT<-DIa3tT>mX8dl8ev7O+BB0$%rqh1OXJ~<#KLI{-D8jnX28ZNZhRqlHwy;SbnpHA=ZDlgsOv^Sp|9XZ*I7)gAFQF`H- z$Kl}Yi)bG|voVWd4str0PmYY9Y_>bOxWV4|infZrvs-fvy3|ixy#LhE;5tYf5TVbT zf$QzRv5Tk^8BNa0oJFo_iW-X+Gs@&GDZ>><1=Y@81PUT;!8_zdABC3~A1=vHM_dW!_){Ef_-pq&}yE zeslc}XH7!^nDVX620Rw2VZ#%S#Yw`0K2y-LZC^B9v@&G__X>%NOm2n+D4AyJt(SEmHx%!4ysU z!rBYxb$v2<)#%6;C_JmdfYBI9hGOcFcz+7LaepecA3gI?YA_zJ3q4cmZOW^AL(@2u z)%&fTI0v}=&t<|X&J({$Cgd!aT<7y<(&0Jhk&R*W{CeLsKyJv1cPvU$2mtrRmP-hX zEr)fw5GIDhcf57U@s3607?P0bB}7PM$`c&Eo-W{KOok=-Qeu#>1^iiidU}Ve!^2B{AJ)+r%)9y~1_uwu&pONBSj^5^Rrq384Y4f;@U zTZup46`1Du^O>JL#+#C~{=%hdiG2>5y=Qg0ARL~KDf6--8AW4PjgQUtl{&Y=FbVAJ zVowG0HZ8-BDW#|lHBNwy(;n|%e66_(uhcQLA$304Kv5~P+Q#BpSy#U4qh0N*vffNwXv>kEIp+S1%n}4d!oGDNY2ML zDCe+vQ&|0-fbfu7hC(@EMu6!C@v4&?-Uh6OI7qPCzq!%%u0Vdu*qfO>c=BXzKOuNU zi?|&1oc$S~w>ux$8BMcWnRefq%b*WS)dGFPS zMP0ZYZtf~wS1J{Jr9g2{d#dMHx7-?!@9QjOJ9D|R&E|1Wws-Va2Ce2^!Tn$lG|HMc z)=|$lf@5))5)BioGs5Yj-=f&mObGdOPBTo4YUP2c!Snx^zDt)F84=2_0s%~Q(b`Z` zfbEP=_)6OnO8P@k>}pLTLC=(HXou_wGOriDEIO0UY>>oQlfX;~ho?xYW~*$zd1iDB zp=+X%Lt~>eGh?HNqLFl}^?k*wyY_BfxFv~PM)p+#y)kXH;6Y4wgIT{_>qwaZLGl#s?yyA=Dz*Q$k@?{W{tl0h&GZ~^eV`fc zG(IIqXZ*CX_;KDzM&z% zdwhicnHgor2glZa^=NJ2%o&zh1NH5hGk64Q7Z3~yQ5w;VXs$&Ex#)19s-2`a69$zT z0{)Ob@bjQiQGY!Lc0%Le8XA%hd6#A@7ls>E!jKB`OC&eH1O|1z`DNOCnQzvXim}t) zQi$vedP5O^-^c9F^7S$H^Ia5T=geqISD>!!4~q`!f-03_Nn+|xnb2O+ia3132s)b z1DA;bWuqejG^|W{@S%ya74eMSyK;7Ag-j4IX%QX9?t#Hwg8C%2WpL#{qxptrWkrBJ z9*p(Nt31i>-MeL_fx@Rql@Tz0lD}#QtpE%yK&X1bmIEwL4j-`u2GJ5CK8nlB%TL9B z_s8G*){lQT{?zjF%8UQ!%cpDAp*zLZH#E!et(Msuei-=g8OWkn_%o{hLQNdogn5w0 zTbc{eCa}cDQjVI$FjFNFr`oNOV%>m*hC{F>zK+4P>-LPbv~=A8Pt^6NEk@(*rIr>% z%~ob~w!8|MTMJ04**n(pKsI|vDw(ZmPy!yZ+8Nm3PBFVfWwKbJQwwcQ<$?x|zH7lCX@8 zY_?p!ulA+4_)xCytdaq%&_mT;+Pu&0u{tc8uLb@r2)_o3KtwQ6%$A52#zP`vFq6<8 z{Y+NRpfRg2O(cAPdYCQ6n_Ma?u8vo`+ z$zg|m{PFr>t5*;n(1oqS`%O-rxFWFLn)5?!ZvB%smsY%6=wowpU){dL%8s!X z1GxF0tm9kJsE7;0u0i|hJmY4~LS5&H|lCd7mxVV`h^@E$Y~YP--0k(CZe8bqWjQN*g?9Kd!`G%LPhDjI>_?6ZNM={zqCk!3#aDE{e2pZ46 zd~Tb4+>G>|xX%_uXu)AV^8JsV_igbMi+j>3k^K+QmI9Zs+!pS%?%TKTi~IKNwRMJD zuO~K9kXs}CiG)~52<-r`04K0%a9IWX5`okp)Uvg4=Adi+Y0>a~<%RT7zT= zJLBUn#L*Okeru9I4+g*05^)4t0%1=_K;Ds$j>TcGdk75s(H5t($)cBpq%{x}wI+{q zEbfdLC4&UKr@-K1rxzUr&v(Wp04Vfb5#pCM=?pHT0sPxqqf4*1fCfbXpDJRrJf&sf zn4Vdk7FUbcs&~eWK>rJ|xa2f=ArqjWI*Z=uJbPRp3p2z7bXk4Is8eV4!0#y@!}Ewo zv|cBKgrJ4!b9F*ir-MhWG2~<3g7@QN2M>;oA2=`)8;prM*R%`14IeRxLL9rI$vflu zJA)^Uu(aS(cjr9Q%wkN-^0t9l2~4OfN7PN3Hg8q7K(ZT;48^6b|}!n%Gu{ zq!-~fhXn1+nDu8)NS>K^q!R`bBP-w7H+W?$c~T(qg($jBB1N3jnZ>5<+qXTvecSfF z+s1q?V1v=RGp>)k;B!Cu#$qnyxS~P$&%CH5AG=yFJ!; zqIZ2j1TxC3>)b7{aDcr21Z^P9gx#GusJ9Ve4QN;OaNH0?#7i@P=uC^@9&cJ(U{Wq& z3Rt`$y~!(z4kLp#ADp(h1UN&4yc3wq?Hh|k`kY3qQx6h8(dsoqJPf%L7I#>*+VyCr z2m##|9LZ9K8H2-Sa`r|dV?H-n>Wy~r19B7&*lvstQS_ShA+ObMO5`MF_8>L`ZY98h zT0{&G6R7t@0gV8`JK>6wFgYZ1(d($X&DycxY*GY6q(Pe+FmYT@axx7*jroYTXqFr% zqt@)M&YCP@ayAIufN3Cwr18vn0$ju<-vC8giS$Om?`mC);B_w_pe8jwb^t*+@P20` zycuCZf1`Ma8iQ>KZ}E6y(hh`@wHgrEw813GsZ_5&;IR7xed&}enov!IGwNzj8Qg%A zVo&FR6CMk+B*R9R37pe7Tl+A&raYxL&v$^0R!Bt;*)pzp$(7jIhIJ$oXw5pES&;OC zuiyiu{eYHNzL*?vW5z~vvl(2K6ymB97TIfJzGfd)7F{IaYPh+y?M%2zacjrCSwAI9 z25mGYuok{v|GxIe;$wW?MW|+AIxs0JdWa308ORqZ2LtprG$V2skz7{N(Qui~iPuze zxe9%1J2$o_hbJdr{m6&^wzK(bk1UL=dXge*S?Ed@vph_bch^sVidJcvDj| zD3`*wEG^x;I6Zwl7T0Ry@ypBQCddZ>Cc>rw)GhQ)73g3uhehw>n&%*OY__;*)3=eUv}BOGXCzp?6Sj++nb}zZ^UeSrxwE;*xn@VFJeUx2*si1gz_S$@XR!F z&M4b2ak~_Ogt)cW;pmn#g+fN|b~xB;Sa~4QDgwyhTU?Q|_wK&z@Rhq!o@^H7*?r~V z%XZ(JmE}vteye39ZS6JgW`z=g4#<--j*_Kz)R^+nviQQ{sB}0#>851egf~*Q3Ua0b zDkeuIBNuA>S%$BQ5XZ}h*R8C_IL`z{x9K2>IO$BfiDY_nZ6azVS}c7w^mgA`{LX?6flJkWO zeM28`ewm_FCJG>x#H|PxabXdh7nF67tq5nS`DsfcSRPL%<^d|n}HYmH@m zdUGB9r^}6E5aifuQIqh7dqj3<|FzI4404^66y-M&k5Xu7a4GwWcd_=%3 ze9&FIa+!`NQQ8u`veWR-g?2NIK8Akglt59E_9nGZK(4K4*6=NySzD=|)er?1BF-YD zEPl~TYML{EywC9HTh-HRY*|=aU*+kmXR6gRrwImq7P%loE#S};sg|~C)zdumR;G65 zG?Uj5zYsjUZ>(YrT7^a^4R5g`qPUl!y(AsP-px;gvf_C*o(X1zatSaK#0+bAI2@Jn z#2ZgYF+K2jUPKngH`NS%BZVZ-%-|{3s%LnqHD{`8D0OY7dKUX4l&|Y21kKD$4NneL ztcVBaNnw4%bFa`fcuaPJ9+sX>`CdPPkYY14RfgXhazh%#7h}uFo3_wysLv?tc^CRG z@vPM?AzT%P8O#qzC@CHFWvGc?BUP^mH83`+-_v@mN38|#Yp*HC68`nql0LVmfTJGm zUn}}et}8G?SAZE^PGfCKt{{Mn(=bXB2RXxVoo3^W#l*t~t9TUJz2ACfJtJrm{@47D zqmGJy9f1Oro2`8Sa^^8CgJuNHdgd8lQgGp91*!b?($J&v&cS2O*fcS`%Ncm{fg2Ws zH&*v*FNiS;@KoSk1o5A+YNmF`WuhFGi-5kCr7|i&Mi4@l;5D0pqcD$z{bdY0n;fSzRWVl}WU&F~-Oi*T=B5r`mI(Q+A;#ScSt;;AmIA@(o* z^Yd(JZeU>UouSau;NaBc;NTKS;%R$winc>*iTJU}$=T1%jgJE}3lsVH_}u4aCnt}^ z6Mxi5_We`#e*f`_@#CMLIPR~V^dBGRSpkT8E-U30+U*k)hr{?gJTb9-W^C+AG6-Ec zHa5d<+FTu6W>#cT2Rw}j(U#AX@Gg8JL=|X|TX-k};?RJRvC}86n)T}|B%lbeLsYxv z^%X99EX&<%GxbyZ_mjv%%10Nasvi~*4^TZ(E@#)4mPmYAKW#uZS>Xh-QQJMnWU@sf z0ve>}3D{qVwM$ImzZ-7^?Npf_(eDV{TY>`|BYq@hN12~C(g5#9&!Q-HR4rs3D&L{H zfhdB(ez%q&P1 zQ2VEAID2=sUh!VAqU=~PQINaqrXg-pgMxr|s^n=+Y&M0{Na6?&0! zoHhD$*+LoR5asv=Un$+urQkRG5#8AdQY z_eefpxWACkkGN4WZ@)g=vePM_eP(`ajGmn8VQg%E^RsW^oCg0r&t8VR2B+fw&pmY5 z$Nt$DN+gc<-rsvPAsF8N^A0b!wJi^?S9jd#_usfl_0+yDs#BHwKH zk&qBO3*i!8G|l~gr>bXqWXnlN-tWGVy1T0S^r@;-=Y0G3|M=X8!DDmo+aR$_g4bM4 zs?*BaZz{AQ8&_6+$9%r2o^Dcek@E;;(TlAsf3FFL_Vo4wg0*)~D6A2_qY2S|E=T(z z%|=#4Wj~X?(;k@YEh2KD4XFj7r^XY3Ks<49aIn=H96Xqa2Lg#W!pj!Kb(3z9=nCG5 z2X$o2G-PMgr{!7+XNlxJCDaM<6EdJEUTSV9AreOdB0iOGseLw+;4S$!DsTb-8JY{} zPyC&fJg8V47mkETJZw%WAorQA(X1t zpg}qeGo!cUu%#S{Q76J&hgLM2adE2LzE~Ukq|3W!5V?t(-3>WparcJ=03){Q!E8GC zL;FekxM1-apE8H-WZAHqJf5F57RE){m{rSvQaojk=_`4%xv zoo0MvbHKu^!7X4NfjbL|pqTx<>IX)Q{V14r08lP{&=j>tihA8;e6ojK5lso6#UKq4 zy=4NK89NNlLo1^PP*&G4-`l<`IqrHM1*XRwIeE_zzOzqf#dRRpJj{AIg3aWe7F#i5 z_8Qukt+LR{vCS(QVV<6Hy z1bMguDR**=dHL{mABCVR!X>K?wgd%<$K1pTIUO;MaFcgN9(d|j6s_XD0Re#6F=xs$ z>leZp8Y>f`wItmaAfJ?MRy_wS{%tS+;SmO5tH}`zg3KrevItI`_Ge z^o)_ECxl)&{h&icLuly9Hd_}iCMMi$KAxB?KVP2uaQiFesaMVZgRgz}(5mEcqJVaa zT?z);pTWGQ659xS4LjKL?G&Ooqdvhcjp+)9}b_3eJL0TkQzdpc3A(PiMZ7M{Ua2n7tkHb}t;P-&4qHU%v&6$SagcPO)VZLry zs#OGy{zO5N%}`n}(xo zND4dIqb8ITNXT|9e2?)HW>XlBQYNHA_}#R;#*(2{qxfApYBM?wj2wOSUE1pSNbm3d zuyonX@;B~qI!JljfA6pPzw1Q& z@3+lyN2H+FJ@|l7t=&~0AQxyL8}zhaV5fog6@)2*ld*3g z?z2O9jYc*!x_0F`AF++=C$Ovg%BLyHb6Zi`y; zIi0p<-re7Rae~OsEI|WuqYFv(E2UDRhg186M%f-M)`G(8! zti~*bQ@;;x(0(L4VX;2M`iSTQ#-QX56eAnWsP9Xjl6T-~PaqqS9h_ksjk`V>DRQ~1 zrMX_Xh{z%kV$ut{a67vcNvTs-6ikxr(?pgls8hu^h+`tmh_YTu#K4p$R1&_+{??@b zm{E`1%a4(`$G)sL342Nqn{=o-YYN;V>a}x{LAb@wjJjon3W`DrTYI#6@qWU2ki_$7 zu}5cQ!i5=~sa@rre9ferft0D;xD5L@ocB7m@&f`Y`RDd0P{$S(+cZL22khMTA5(F3 zS;z8{*1)k#G$b!`KcN}6+7+y3!sfyCtK}~#3uE){$goHENtPIXGm74f8x*%$s?>D< zPQ>3;HV=h-A}b#A-Rlwdp)hYavg24fAGs4=af5UKzWwz>$j>6V`4`I-dv&l{fKT?e z1ItUd#}kS8?MurCy0?X%T<&ehkKOcAcc75=Ck>MJgT>5;zljpYaKlMo{|brc0>E8$ zTF0T``l_4YF}@Rz-@d#=z1|VW-yL*@rRCe>@%GW}y&ij8KF581VA5M-SAu=}wLJ(K zO!HV;VnYODS=A~c6jmyNd{C?zB?oD275+kkCsyabv+*mAaQzh=x9so^068+z5C1j@ zcr8~PY!*^Q6v@HtisB1lZg&5xZ(URAQ59jE$ysji0qqncxbE#fp9ro!VV6FKuPBmx%i@;rZBkIV13+ta-?-hna6*)KOFfu~bnF~3wJGQsG z(N({|Y~L*6u~{jF-?thxtERx{)ETVGRgk_L`^%5%(TXRCqk<@kXOwPjutsJm9vsJS99n+1ooc)r;aiKYwg``uOqb z>0`p<*g8h9jqf16v|4R8s?`Nb*2Z?DiEX!wolj;my9B=WS-Q z4dG@Qe9Fp2%nXkl3ItjEGhOYr{pOxXE0{mom>oqs|5US9H_v$nr~Ld58YlC?RwU&0 zMgbpVhbRs17@qfYVG zc-^DVhg;(ltx!Q{4J9J2KsY*t65x_0X+9SncAJwH$!tCs3ADn=kTrD6^71Y8Y7 zbLW|%AImmOgx`KqT@q{ z51j?h?Lz=qO|i#eH2Q0!DHpQ%44?Uo!Dk6&jmGccQ(Uj7+JAigA!?V&;y2f`e5$_j z0i)r68vRzZGCcjX!I%wM{l@=kAex9cfF3L8;&mhirA5^+SWT$F2DlO((5B-EBt{S{ zJ(5naE%9_jb>T|u5-MQRcSPAUSp>p1P!ASW8So=n4GHrCG%Q<}ln2ajUzZfup7I9* z0|CD;no6e^)9IAsRXN6%!#ib|wpU=`HoM%tZjZ&}a+lq1lROt;=}5^EE(Q&AZfmZ= z68T&!6fz{IocBm>H>wh9u2^R503>3?rrnv&9IjS!AuD^d*4KBs)>mVz`&XaZzq&tv zJ(C>TkdTUH_pN?r-@ddrn_bK01MW)YY;UhCXbH2RKQ#WTA^Y2F(Gb%Dp*6&k;VYJE z1qNx8up{YVA%Xc>DN|lM@U`{zqpE(W%9P=rHv{GMH@DArx7Vo-uBaMg!9jGL2aS?_ zIvPvR1Z)z0@95rWlEv(&sew%*^AU_KsorSP#IVy2HX&Pj@KeP$g*G(Qw1Z7||Mp54{XuF_z1x^Lat}%!%ywXjl`3Y#x>huU|xr z;(COvMv8`|1R{J>Qt`r)dOfb3Yv|Uhpj^-7L3@U-CnF-bkS<*lm5S$g>L9|2q8?3O zdU?vFUQ7DumYY321!%yCr65HK&ncZz))x`D&bQ-zbG^{x1Dd-{{k=(h&b*<+3_^XR0r$ZD`XV_61 zw`uf-TqKfP92wnVX5kK3G;Qnjz|xwff+HLmJg)(te&67w0CYI8b zTijp1VX(JQTuvmy`2kTJ$cGb&K8iMN296I!1CZjAcq1M~Gmd*aY z*;I^1GvUcZb}?2=ryEppyPi&$;;n3QDw2*y3TBg7kHk!-d^nWqfBQb)zPAq~!=b#{ z6puuF{KI`FIK`xOLSv-7skBzvBX-1x zg-oEJhg8;zXZLtPSQYzw$2A6`$>PeGcODL^A_^Pp4*PH>lOH@4{wII2bUVte)UU5p z?`tef$R=IU9Ee6{F@mu~d@>yJIf{k5T8k^N%+%j9yyI-Z9uDWms;TAJjyrND$CcX# zYnhcqG8*l7xh$>}i?I(dhhqo z<6reuE4>Hvxio^un~_Lh_tf-tfq<_#zAL|$?!Rq>tyc&Aa`06Xp{dBmSgjs*xC6oQ zWGa(CTVYS+lgU0S{`!*KC8GG;U{9v}EQ;(VqZxTD)Hq}%FsTDZL54|km5l(gT(O97 z>$;}Lq`RWjTzQ-ar?iheO9qEFueI`Q`v^s!h>xcmFTwqm2u{*{xP;i5)=1h_BV#btl?ZL+L1)!GFCrDn5sw$XnC$LX zyHd6|CalS1F&Rx^w>$FQP$m-+KJ`iZI2-l={a7cq|5+$ar-q$gOnt#(s-&hDJ;*B< zh>GjZf)8@dtA~fjYL)82TsDyn3V##IWeJ&yeo&Q7(lo&WVR0Fky zYRyAMF$OP9>g9KhL4gARU7;Pq^OaLwb+$UrM#X#4X+NUTaE?wO)|QINp+ph$u8JE( zuBfvxM04e`NC;7mR=F(}JDq?ftTe>7Vb$@TIW^+9%s20k%p~JDPs8g?;nWVj4vAP=lmm$jN7B0sspXW(0^28( zG|9td+YXCPunVM*mdcY zXf;WY$P#Jf?!X2Gly6DMq)~ngNSNwSSadOd&&stZBT@!wNBf+5r| zYf@rBI*l-Vjn?AUdPLpckx-x0<@S1=HSga!oq61Ivw12@H7GJBR2-E=vynZhw*qj* z-~Ky)6~W1!{$o=R()2RwN(n+RZMMr+s|J9wCM1RnvfbgZ7Z6m6QnpwxFJQd{L6c5X z{AC&$nS3I{_Cd>qBni&rK<}G;Mqw6Vsv)Njvx|!v9xw2?YC42oqCKBv9S8t;Vlzny z9a+^XtD0f#l8dJuj=`%Sz7|)kLvg(M`NM~IE#FrvxlK0x#Gbuhd*BT}f0x#XGHM0` z#yDj*?RGjbV&lQ!4#QtAK9K2$H9EUv{^9=qQu+R=>4I(QMCcb?uI1sOrJa4X5wod% zAsShLD*5J{p+W-`tnLDRUd(0#7L$}MmP!`$&T0Jwyf~O0X47e_m9l{}Mv}En8Vq5ZZ(p*ZXIxIH7WxV!xcbJ6b?qS3jdtdIEVmj5c% zQ%6;_7CbN{ffDs3vaXo7!9&T$9cJAaJJ2F>T>e$@en&|H!^6i2OUE*~Q$ zM&%WqPQ`WdNL&FrEs8TXG9dPs`Fl%2vg0vyZ9pS%CV@BM@hgb<>w=n7HaW`>)1}Bp zntBp0M@kI}hV1<3Ng5v^Mzgtf<$VNM!4z)uk`A|zj|~VKY2;TQ!T4}0wiQSR(E#`A z#Pp$o=(vxsF7Z|GHco(5c5c6GOfl}lMWeobiOl^B!7>ODOT$;Tb?@vMJ{)ww`25Qb z8WL%m9o~tqo~1h!E^WVWWdu?$KTst~Sm~Y@dBlw@^3}#|PpSb5P!Sz)Dh|2M5hdXu zk^T$E;$DK1y5(jCsp^(n6qu@;Z&84yXn*5>{1oH!exOqE&bm6k`R1<9-~XQ-Gs0Ra zppMW9BsK8T+*gg1?!R)v{7w5ZZsbV?ck6r`SW-a@%!!|3VA#*LFH6#s%5bA6jtbU( z^-nVzupg;9O-!XHh#KI;K>6HGUl zf8RJq7~&#;Flc>pe*Wqmr%nNkfBZ_zvHh{1eyj* zJJJpg2kuBaw^wbZ641OH@)!xHN)nn$uQQ!sEsfNEm@bUnh1!_wN~4$l_<~WdH!8f7 zdYI+5K(QwXzV=<*Lm1f&bPu$aAPlKub$@)5R>Yyg;hsA8$7!-cs4I--7{-|LV&dX= zwb~WE+ql8=^%!b@EMjQWMz_A5xTx%KDDRCP99mJ@vh+pP5-or&+oLlOXt;-`)ujx& zjSsai^LtCP9*!oi$8Th5k6ynHZUMeb&-$YHYnz!al(j@pScke_S%_6c^fBy%Mr=()h>lsd)gkTTJc8;YV+Op#1?zW?G}9Ggyqk>bC0G33dYM;2TNS+Bm|R z!n5sX#ixNoeC2s$E?pGGM;<|zs|ZvIF|8bU^ih#XyEcjs3g6Og6z>zhxsepUb>Buo zoiE%T=RvgBtU5R8O8G@9S4g9%u)vo&?4^n;#2s-<9f%Fozc6W$+X!(=2ky@t@S_UA z?m;P$7qLlS;+Q0CT%d&9lmsLxY_y-J4GQ7E@(ldEs9}KWlr1>CkuLml#~7eu3=&0C zVhhe;QH_tJ@qZTgl;%FHRL?5zifgiD=ff25@7h7BQi#^d7n|T}q$xu@B7vL4e+cK> ztP33tfFTZqvfCoX%e>4oN-aO%DdK!tu@Xeb!qxMOW*;gJBH>yJ4w~}3oN%|1jseby z!XK!f^Y%}raJnQ_XJnBw;!#*s@=qW3N2BuyJ71da6dj*lQutHXJumj$hr8xa1&f8$ zzy7WrZ`bx_A_y`CO^Hw7a^t zKL`5yDbiLkzYuE1(tP2TfmwkijP;vl$a@1EE%0fS7ocOTPqjb(6x&PhPqBYhwy^{I zUj^=juZt~;M^?*MY)bHa*7b6A66PwJhg@0ZPe)PPY4YlnP10h;uL~A4G@jmSv9yv- z#q)DPXU6I3^+~B{DKVQU&-ohD7OPXTC7jk$Bpekq(WE_zT5i7Se6BV>s}X)Ck;@@Z zd}O@0cU+ct?woz=+|HdI_aJ~Ea(O{o+`V>_dw#wQ&`Mt}r`HV@@=c3H5RO3%?8GIn zgA2iDg34|2wAhS$MK5AWuUr&vIe)(W&hzI#O*{X{Zur>8+E08OLrU}#govHrh3ELVhybxbXYMv7D68^nboCY9Hj?PqiViGXAPAYmJA z`jsot>52~P_?XpE)HNc`NaNiOnVnwl+qv8*YIKr5&wAE$?40L8jbse6BT>Eh^OmXv z^)vS@zky56%Ct2ew@z1_&E_#j&^(oyY~@>m_$PYUy!&cUX7zvClEmIXsGX@vg2uq| z!xpC3{vl8-BqTX2yx|`>y`2Cm&uP@YqgC4NvQ`;#SGjFGcSHz9mG~|awV{S&l`7%1 zuqB16aY80F1`ySaWlYNx8(Q*VkP#xQvUVbMnw~@mR(*0B96!Eq-@U1nMhvHBD!!s^ z=v`~mf>r+wQ{I>A>q{m3esg5)i4nQrtIS;a`@W=djQxRDtF>zbC$iZS0c>cs`SV`y z`Mi+q<4xEf#v4{^&`SPpc&_}1Mn`6?L5sB+uTDGdxjvEQ^#-BW9pJ5#h4v4`YToXc zuHL5f-}j={uG4CRE>{qJJG6PbJ%1-%47JA?vYzZuJ|lhy^1%#Qy_D(Saplt^2l`%w zESzpd$%Ph7s&JhYUmOLEiz`-g#OV^1N2~{`&)mI#^&D)h*B1-1cyQx>HZl41@$1G@ zLql(xpPy`&d#6wk&2FFStql9pMs~A48r_pjuFTEd-dm2de>}K%-}!V#wv7}^LnHUk z-g2tH&+m4Zz70GMyGHW4GwJJ~fzOYQo=9hc(Z%6CrBWWY2(Ndcw_H)?1(XcR3p8>B zDCiuN5s!yWN++ehCMmL!3pgbHpvWnNhRnYrV~wp}MoO#rkxb+Ny^Ku!^&{+P`y*sZ zyg<3A!sCt1g$tPm&cS6vK5h;0L^$Kp(D!KoHe)0B0AWsfRfe}I3SvB|I-N3rY1Aoy zxu5YyUL8;0MJnFI_qoGivi4364zBv}w>mgDx$~joy`a@6n~mY)dolHr$<)33_8uP_ z9y(hrMB2a29*I}0_slQs?sgIFoSVI~T1_4CHkPZJZ%rhEp^OnF(9z$7()Zl>LKWGf zR%Si66L!u?D)dXtf7a4)1J1iWHlOc+)gR;F{rsZ^HzJa!!OA*S^S) zwRo#V-mK-2^hT%I0<>EkV6Ts_JY}n|*&q2hR~UZcAlX&UuB@eg*2=JbxBs}%kph>E3H)c)P(kx0oE+%Yw7 z8cb0%4w5d%BPF-dXA$m`z-Tn=`y9bYSSL^(Y_>dAUu8G1YocTmu8;KYs!RX^ac!cq zt9N8QmY*t@r}D8~6<^Iw@-c9GXe{{p=Dfv#C<;(Yni4hS(qlnmhSh)sfNdmQcTCqR zt5H`yU%tX)<=A77#mZ-I*!iQgkL|pH89EDRGiXnZr4+|+i zHan5_S5tqIbE)4Np8>cvEH2f~Ngn=J`cnMmYy_dUlGg&;qyzO`bf{&CsG;RIL?cZv z44rASyB;1}TN@MhmnRR%awD0_Z~RiNP@F(+h^-C-up=Hj&_6H;z~rNmux{$$&xC?H zr%7v(WSx=1g^W5`P8oxt$6&-i=$MOcmwHlLh zWG0oGjmSwOPLn%Un|%X}p`yl=l*>0Znm3ejMfhUy!W`z1(BlR@JOp}Z0_N~G1S32! zJPRInp-vpGSHM853=Hh``@NpoY%Vd^8@bCSEri1h z#dszSp9n!A(V9_ZPc{FX5QezINxxp7+BiD2ADuwa1W^mdcpfmm(AH~{Hl(=o_pzyI*)pP?b|4Ap;n)Vq0# z4fdhEpa>LU1NsWF6!U+A#YJbF=PxKW6zE}_8(=$BatRDpP4iJ@6zp}g9Jly)E(WeD z>#r>8Wo$5)`0aY_O0_1qtry86@;sSFE?V6J%J<2hwb9WvDp#n0Mk{!~7k^bJLs!6` ztov2==j}Q6S&Oqp_LP?L?zG%^kxX_MiF_+t1UK!l+Z`jw&m}w)ZnL|DsOKDT9d;m^ z;$HA6EDI7Dkh{U}SX8BjID`ZW&c{el>>;vfIx?JUV%omz<*`UmL=nD8QU=o{F#;nz zM1V{)NFWCCUi!63QtG}obkvxZu&uSsI0?6`Hn;U#rX@cXOCTOiRp$-0H z$V+43!8Pz;0rS#H=wAp^v?EJEM2sV|Qv!jvY44=Y)V9+Xh4!$&Slz#Wl`S&ECqB{s z(Z%|uOZAKFy`j*l9doOzb30B4L!sblW&2bp#Ez}52|7f5Zp_gSn4$gQ$Lg1Uy?(L% zVfO1!oI3RyGV{OY)Tt-Bwuv@)fsNIt>P~pZ$Zc@j@ruF}h7^Zv(~CHS{U`C~_`UX5 zpBn$8KN^3E4ZQW_$=_!G?bOLH-|*G;SJ^wC8vo`uarm9>-y^yXKby*rm3#@xJ?QDq zC+N21c1Gak27nNG`Ml!deG}`I<_e4@m|8E@coo@q(~R2&77#7ANJ(gQ+~L3 zYto4DZ+qlRSGT1Y01z&Wm++H66Wih&FjEZBIlb_i^dRArNOK-3A0W=~FF>HyBFUx3 zcShKk+cu+KGsN`lp3k?xaa;ReZr1><;0Hq*RME2G+kd%@_LCc*V>jr1=1*>XPW({& zL+rT4(*DpVQ4F>HgfL5c^r$+v_9rnL9MC#;l0~MTWWaSw!hDVp9i%oj0o4_!2pdS? zo$=3P5wwT@XxDjsipgsmYq)&$DEqVYRC?drYn4Y2rRO5;U*k|@7b8Jm5cM*8d+YOe z#!zKTZ!^U1oUixx&N*H9D$=dBu*(JhFS`ZW2=NUfB(+rcyVeW1l3OFL}O;J-x_{A>R~oSDSeCD;sgx zYH+hoE;Q=0I#M7ZM=2@{$d`ow9jgw+Eb^t2nTiD;qh9ecX%N>j-_EoEcukNe*LgB%H-}O7Y3I%+Y*}E@2v+nhLX5@qM zfq^%)7MIy~`w^OvFC=nf!DwtQlgSPY4c}NQ`Kqy$Bbi(+l``#T0owJ`(cgID0)0&L?_gH7y*Lmsh$g{uHK_CWMUB+9tQ_Sl0xfw&IH&lxdWSkA>-Ks zn3ZaN9S&ZVHStPBV$)s1NyfFjBz)L9x{&G-5$$3?9=omCylqSlh#H$*UMmP8ha{P; z2+V?`PGk1yd^(R=1Nj_e13vh>)Uy=DL=GG;cJqf-L|Q&DU{84X#@ zy>~t)IgA>=yifJEe0~)gm~s)VRYVvo+knM8O^avcaJS}g7!IFAvfbK#4O@w4n3p2# zx|hTq;3v~+rBrfhfIxsu5Iy7M1J+v7>G=SYl!QG*Uhvt-A21#Zfu;j|0F(#7>>cY4 z38Lf+-=@FPUMKTRY#2~6R!Dl0XzGtK*B;qc&hGYw;GIsT3fZ~fuK2#*ckRF4*=Gls z(p%)L{p&kS7E#h!?))RG&v=^x5ItIGzdJhQTgjblC^}Ixx?*>5*w{S#D}&$C{vBUT z$oPM#iO!|R&lPqB=dyVMZ(Uh6j5Q`U#f2wsv1f0|w! zkXl!wNm82zry3`7E54y-bV`Lao$2CC)Dz&lqfvjPKO{$t2A2)#rog=( z*9w~Csi|ZtIplDBV`+NJx!LW4>juTWN?S8?tP_dWDKc);1d!OC=hE2R|G>H8ZpGr6+7(?4G|}+eAYt_U;R!h1*F;1Ah(pUe{D( zE{tGCTdM*kf_ov5Cr@$*(NlmMI-5Go(3&<=!}J|e436F!vcaJSfJc%+1ydibYnb@; zEIjPAQ&otur-59-xwYdhWCk8my`|L zgNLKKXuuaX{1aU5WNG}X{Dj#9xHY5!iSvTVVA248&0-$z?VT2MIus*mnlZh3?>IyI zv0lmXuO>XJmFJNBhLpPD13CjrW2Ma}nDD}}*QcDC(l33uX*8IP?Qa2I9%$#%{`HHo zWd|+<G!?lnFO5X0!9wHs0DF#bG?K*T3t!>cpSUl)l|wK}mXj zvR5MkoBWd+jY*u>?&#)w#hEe87Nda#eS~P5~Z0!PRMG=?eI#2Iu?pj z&x4z02bAz?5GkTO-v8Kl%F|SZO8Px}RZM~grbSpm&ZR}E0pz5ZOh!SklWbZX(%VQc zlVXErAV63{)*a1I#N~>Fnme$AL$#s1TWl z`wp$I=WY9&&3-hGn4&&kTyHSw<33*$zp)x`vYR40Et07;+K3^wkV&_ah6u_mXhlgM zHra17S(8{OI*ogEbn3#6`PWa4t-29{AV^7B03?GcYBU98)Ko&>CX=fX4maGA_IgCg zM2xYOQfVcMOEDS?HxG~8oYzX%OA_`69$IX@X@LJC3dBa9ep~>GV^kvD3d;?(nJz;Y zH>vsElw-9YoMIjJj<@u@6B&7*?D>4pb3Nbg`Kz8EFh+DujgP_O>hIc4ZqLl^`lh=T zMZ$I*)ZNF$uH%a9io7sL&V!zS*`@9v_fOq{?iSzNK{M1W>-uVI2VZUNY-@&Zwz{Jp zUZKD3U-2?U@TmTTys8vG+xcXdcrq=%QIEEtx#~ct`IQB##6-R|mhRMLYF~b(W5V-j z$BRC-Tb*ABo4;spe#=swUS94Pb0FClSFBzZJ{jD`%JsJ|U;DdG8%kM=(etsM z-|p$@4qs|^O#=c_=-wy10T6{Pos(u21wtqS4`-*F=5S>;5ivs>g?~uheXH9UQs~s} zZH=4T6E^T2b@DPt6`JKm45DJJLn$-Gd>6PlaPfzoqwF1xa4@479H`ysS|b$9b{F`h zmfI?n{z<2!C$Zr{Hu@4Z;Y9)RN^Is|D7uExsc}sek^W(fnEQ8m@5WJ$mNbyS+OQc? zK*S7YRdc!Iv~ppd>(tLLJ>Gwj8~AAdnfbMNbfl(OCg@CSqjUS?k?}s{!_T?!2R>M* zhI6AMhXE2CI6N{shl+0e4u|QJ>KD+ba&b!af{y}^os^HhwK%Q=SChGZq*qZ$%+q%i zm1Dke7=mI3^F-650j_vl{1|KxWz_on3$6t!+y``LOV#U#5s56eq%%Mg;}$}i3t6N= zC`Tz58@exNL;P#vCnSJvr4MBq6M`a3kTaM!)zO66+Ey%@I0zVV)kGLBDAx;f# zrfXN>q{?g|{@C?xKbmphXnze_Yd--xQTM_w8Fgclo=DMT)FPMNlSFkFnau*@2l|B@ z@u>kBEet7lwD1FC(dEdxfT;*3R6p!B$Zn+4z`o>`4c^0b5lM|7eG44yQ2dT)_2#=* zC5ts53MU+8WXL$232S1h=t+rU$m{C`JeD;+5q8N&A#+r#x7@WK8U8?{P3oKmvqx{G z_Llf^K@bIZR1kw+f3M3Ll4BELw``*8$hhP%BucS<$ZNE@5Z$abOD>zyd#J8~C-kEa zLtr#GBzBS6WT&SPwFZrti(aSI-jai;lVtQdWgC6xEk<6Ct1###%}~W%L=_@IG#1>| zAyko(XGLZ-K4T5(X5U>Z6qb^SkSy78JNA^z6OnLL-jpEP&7x?PaZN`qS=5%4`Ki?c z#~9i+DxZh7L6|vEn+GMAtX5OOO(#TJ5KdSy;(Vf^=&s;|@+@jcA=pjRqXWJAvG~cJ zSkHApKD!(9P-T1D$qY$JoD9JY+R>?$W80{SO1MCj6!yu#+)lVeuNq1ZLp=hdf!>uR zQA#*Mt6y16T(bmdp6p&4sP84Tc(PqeNqrrJMBxpW{6 z01drE&pc%vu#A$E(AB*2vqq<}5KmOhmSg(_3(AFQw1p7r`obb>$vNVQk-l^^215e! z>yUS*iA*J(2`8qnpuKS$!p38Wn=7srQJ7*PQo7!&(Ri#s(C@(f3))%l{_5JzBJ7H)(ar>YQ_b!NRe7+kK^hISpU_c>0oLk?%s z?@z!M=oBaW5x47bx)xxolB4ns>nW4ad#b5*O6EDy;6V(eBNAz4vdP|)OrCyl8r99( z52N0e#vJyEI&F9)+&56)9}J#YF1#+~5T}P7zF=@?E*H>>%weDF>zf*znz}WYL;bGP zH!i$+hY%{ZC!7oQQIMjYbNo_As76ueAgI^@$rd01s=;3efbq9Y6e@)*bw z)c;ZlJCr6#$s8r#gs=K_-U_W`$~p!2;=@dGgksSmYo@}+I;^bIP*i`Q?hBp<><?rksB7o^iU$dFF(=^U zSkHZ!P!@yvCYRodvUa(f?i1Z_p+j1Sy(I5}N@@TEoz24j6~X(OpvEPSn#}v;xbyV} z51@k#Z?@{4&XV0{~MD2g)@Cz|V z%NegM8%b#dSDUU0F!htNHpSSipjix&mP@?Xg2$lj>x9H?mT!=X$TLXF~ zK7ogOzb&AT*khJg*~6AqR7o@bs${jX-9NlK^oClXkFE5hgntWiWUi8fnGw!#Z~Ih0GKCqp5hFC3cAq;r{kqxxx^ z$ybCw-DWb`&n}p3UzaqWWQjBVNW1Z-Z3&o7JRZC0tPXI6fH;vJkbp(ARBucgTqY#l z10g`b_nJ4(vTtgT>>};i^P9U@P?=HCu)i?4jE0$+pPQJ(u1|B@-^mdh zfMB)Z$aDy$_cX%;c8_;39#5s?@gc9*o<30@yCuc0GudE6DS1tHyJ_L9-INx&nUvlv z!k>t*LO$PKR6%=vhqGYS^2d(#NXh`kJn4u}aBA1F7k9!qIKB*(I#CEB{Z@H)WZl4{ z%DOR$lqXBZ4TZn(4i$DzCs7_Rri^f~P$-_8oLDaw3SQ5iW@9Qi;5V2A1cKG_`B6Lm zMp1NL*)|xRDVy1JC!vredQq>^Fb=PpP7kTX7WIrJgGk@k8y*c*9HkQhQP2FhjTlT$ z*-`T*8nOoy)&`wzV(gZ3rHuc#j7sw2w!;JYF%{MK~56Ka0`FQ2CZ2J7DGaQ*qrQYFp_*x~cQ`g*Um17QfRkk~| z#u_rSGp-S5W(MQF<>#${dXks-wVd;0`AX<0SbXp?KGzuhtOwxa%CJX3RFzmij5g_A z7<_c4gshK*hcHm`X(S2qJRzKTNCi5ed9L&~g$I=to)dx$nqgU4t)3bBQ*fF&O+m8-=*BUd zoVJ$wiv8BKY>U|$%-BJwvpO-=Z@{y3*#%=rYBV%KqhNRaY?motjl$!nLM$F8#0692U%4nFfXYDQ-cms`)cf`GC2BtsmE5?{mZq6#~z$6>e1LrsKN^^-1!@qYf zU0u~lxU8l51DI^D(O@U_j?bT^8qFX0E>I@`^0&!7F9`ObtX4N=)o5gt11O_nPNf$c z%KX{3`e@GR2fF7>+$N{2<=VC9jA#sE&PXAHXm_y>ZC_$M?z{&v&6hZSAzv%XiqU20 zlY=#lGt`+T;{fN`BoSiZR4&5(Io!$#)Fp*q^jB$O5iWa8W&ZfNl)it$WOO+kr<{%o zfY&NVO2z!X!{yR#w;bK^z6?UYwHnQ>qO5nHTpb%6TyGAJoH=ZOaCFD0X%Xm1+cEz+WB9=|Z8ETCMNYyyA<;9JvH3_-=R{AMAOn!b!8lIJdvi z>S*dPg|@%Zn(z{D-2O(qSJ%X-Y=3)2pf)Gv;PHPFQfWaPm;f{On=feX#(U40qrmlb z3TP{d;(>-S(lO7&%=G-M6Z)?<--8tvT zVSChaMs3R+sG>DGHit4;hl7DY@GvTB&5ezsx>mmZaQiLnZuXA$E$y4dr8X+!q1^f< z^^EAn5w)DX*JRhe@vZ!fZ_wIJ_nx&x9sG=CJsMKmvO7;#r?izWycw=(;mve)YFkI% zQ=+zW{rMwr5w--?i>Y2+|Uh{qSt?z%oU0~mD_xuEtSD*N&8|}Sbblv7Q30VL0Y~gdR#Y4hj>4p~cvS8$vA4RLWFMxu=Mm$j&x05*f;RkMJ-)j$R0p9W8P_H~ZFAnDqPqgP7 z`%PjVA@#{*j(sMVOrekaH$uQlTmf3gt@?qI48#>6&wRN3Gz)J$WOM^4yS8G>IIl+u zF_>f2*bp<2QSyl9oa?#J^MRgU>G^#|cyg-smMF4YRHzu7;l$tS$dDm=uI_FR>fFAk zq7-(<2=kY?XlDh}#8q_M?ss)rD*&A!6Icv1@i%{{$|nl!mMY^*TcHk|O)G8a(!ry_ zTfC|Oq$nQ*&dxay?>yV}P61hp_=&~GSsLNs5+MgWSEO8gD*sh_w0RF5K1ip;VpMJk z2iadcA@4)9b{_ZI9UhOv?mbCwv~${LrwzOB6ur^TyS?%F-b!U)VPtgG>(y!_fQCs0 zgGpV;E(i2_7%hWa@3xRW7VxKyMq$6pt+Q%91^4W@QSbHh{MKS@JRnLN$#5i@jD(Zy z2Ke%miBfrQ#ANRub>&?sW*vcmTCBZaBRP=pYL7(ck_o>U_tU9@u#a}$19CXxABx5& z{4gHG8V-Zo=&!otYYtc(4Y_!{Pxk2~vraS!K;iL4B8XGUfg9UOUQZGJS&v5N*9n!T zQD-;WBIc+|)XD%Bl*3{9%8OHWzu*3Ezp*DEX*O*5&B@8hIe(w8@Ai>$xx5cDw$&k9 zEOO`Nu!iD^<$R%F11<{F=oY8KBca5eLJoz-91f4e}F&=k0J?@;%rejmSG=cthUb%qN<#VH+w>}dP1gj-}s_5!- zr<=_)sgx}1Z93R#oncqhA4nNZOmH~uHk8Dcyc#5qLgXskHl{N=jG?1f?vD1f*@m*YN{~7jKYlF%67mw``7^`|k=4l% z>8C7nk`YmfmCH@)+EtSGKrpsew770F_nxjy-MKJuOaGBnsWmXrDyFKZYN(=~-kJ7Q zeD*1;>_M63xW%cl*y6JJi=x#!nH^}g2C|dZtjUV>I42;jTvP*vV&twsMoD9Gt|BE~c?9Z5YAv6DY{Ucu`v-Usq9oRV?s(ZZyp%Z%!)qW4yDyaJ!FCEOS)P-jD zZ1zs8;B*{mKPOm!A&{|H;pS&%t0899u+@B=rLK2-T#mOntBwdte1t>Jv@_5QLWn@c z*j5{`AnA%WnAJuSVyySwYDJ99x4ETv`Nt zB;C+qL4(!I0%hu8;1SNKMlq_>MbpzrUwJ0o5XJK0KM$^^Qmer~KU@~Y_7`SOB(#F$ z1|m@6x*6r0nd|V_a7fT5PRt}u4-TD)2~!(iCm%2(p@71*_+i)Nr0c_rsHLoFf2z78 zfbggYdhze5IwvQcwK+e28_~*|z>cb~wMgbNMRwr1hE>F0lGT{pVG0w%byFx#CwP=X z_r}$!LI7Eu-*~)Es*9;iDw;8!7};)RpksAYr;Tbv0pk%DL2V?Uo{xDwVq~QxlvW}L z3mu8Z-0Iy&R>wT8h!AOcCf4ZE&lMMbM?LU63q|0H04oILL1_@prc!U^KrS0qI|^rW zhbomKq8@)G48a66ykd7Sf1}|?{&%m>Zs zhZWLWVNTQx$f}=F%nqz>47baT+8SAgP%;!Q(9sLCL&jjs5W01g2dhm~7<}b2)-A0> zK9d^#Ah%>2=4k06)!G{75wR2&h;Feoy&S))36+&^U}oacV$M=Z=I8Hl-uJ$r)Be)? z9tb`1=}+sQ{a+0jUc_=u(>`}G`+nh#h6jcAv)?rSlOUVk!1h89(Y(Wc)@;f_t#}h^ z^9};Wx!9ntACYl5`y8xwcj%ipG68UTK`3RH{ z=EP6W!G5rK@0;&w|Mk(^kN*vIc+##0+_d+6B1 z?98oKj<*vJ?HO&L>)HDG)&tJa3{HGAW0j-$d=q+otMHgf(0DW@4UEKsUmB1Y@*~+Y zJAmJ`e*`5f0Swz61;%0%g17+eZRkVdLk2-ONC7fia)!D7#llyaBS=Vy9L!o8<~w3 zpJ$ig1fYr6+N;7R81Dgo%pf@>D&* z%E6b}(F;sHF+}2?!0P5wrDDZ^@4R#A6i})#FhpALIK2+K-PRqv>|Kgi=j#bOJGT_v zTPo(-mtYfH5kn)1#7Ky}x%-x0dczk1mD=J9?h?T8=5d2#xY5tOYa%r^mKuAvJs!8C zBrx3{y;E*t_s!!lP~~_Mrc#)Za>3xxy$G8JJFpKv6<99(i1;d!|2MZ(u1S-^EwoCr?q)RBbkCGgnhr>QhhZ~cT58mn1Um}%;*L?* z7k6(qv_EGsn+`CZr53D!Aq^}d_(D`>1KwW2G#A7j`7W_%gPtTK` zRKW^=mPS=iOsZ#eG_0DqBkGQmlenF&U! zaLEoUCx7FDa}DVYnpFmZX6xGG1Hnig|peC1O0=|fq|phZ1`=8 zVBDROq---FGr#TF@s}yK^cySp8w=HH!Fc~lA(^OJEfyfAJflJg z$&XO-CRz_R zm)8M1o>*UIw|9+7xl5_RQd9U2=^8a~of|P0%CqmpyIqBp(5371S%5XB+YCYJo)?|$ z3MbZ(GJVw9rHFTAm=Hc5jVFd2PMchZVW;g=&4ebZAX0c$W!P7&1DE}fj3-sg5361$3Hbwce@ zPEp*IV0T?BLGQ}Ny~DGO#xjU#B9lo7ZqIU~F+03h;co)faCd^g6_M-9aSmRILV@4_ zj7Q1h>XuMZeZGVG3XTVAy`93$ln*X9n#;@0#_|U@fNO_JYeXwHE)%T)5dlMbHdFsz zx>ifiyw2tIx?VT4NiXVcCOWThK@z2fFLl_pN_L6h>bKEbs%X3dUVSsqTi(vANbIh6 z*M*U;;#E{NSYboT?Qla__kpXK88Z4h+%Dav&v18IPkPAS8wm8;htetkKl@V@zRJT! z1rX3S2S8^4K)-D2fTmzmfeFBPbho(D(f~t&NUml(g%yTwayXrin}(vLQnamxjeb|< zTqe_dwutKH)_XR2*w>oG;hN2DG}*&TQje*;nFTl=M!&AnwJJ zPN`&V_kpX~*)=AYGMIb_w?_1*9?aGiz|V_-WVmW5X$U*R*%`|A)>!Hv-yArFP0@(H zZF5-LA>qQt1$u1TnUv6DhhFpdSYvsP5d89NsL=%IG}%UA`p5c#WwGw;S8G;4fkev8 zrhS!jtWIF=rqh><6~gaZ<78<=?Sc6**uz5pmHOUe38(YVX5hOm zWUjyXn)&v-3#d|ipArx*Y4YQX0X5S zP&yq+l`Eatl7EC9=6+;yk0ZMNI|{vl=a3+`l?acQgh+8C%BH`OS58w26vRSGZsrXX z5eiEYTn=U(v?s}lPu9*s)t|f76>pHmsnv5T4bg!jj1ec`3=+pTk05VawPfKC9>vwa z*;37!=rBV;^EIrfV-eHo^|}ZmeXMhSqcfyOd|q`V$NdJ7(|bIFy>=Jpj! zRoEzr>~GnWl&XTxMuxCiqloVJ$O7fM5=Q$gqM-c3s@7+3JN(Rj9!R)W{R;-8Q5wJC z@M+kg?)2&I?XR*&0xs=+60fznDdCVV1&ja%k2nPm zMTqLlo%v65$=+{=K?jhmSrX|2hTgbSRN+tMGv%|nUulAm27KGJUam&!{w z-@K&6#wr~^vSaV0gYBD=N12=FT0g$HNYCN_@At=E(|+Xt)B6Lu^8d}}_m_Y9)8E~{ z`Rx8L-`mQ{f5p9#4QCYc46VFvcwWGS`%kYqsxtW>T5{#7>C#WT*lgUdOSB{pfAtjT z$YI2d-2vb3BR%i#d9vqeW=>RO;I9_bN1qbJ6Zb{o7kzqpN=1HNNP+4pJpLY`pt;_qNy%Fzxq9 zHmQQJ&%7yy3M*r47ZtT=?3P^P&Z-|y01Zzu@_0T-@%Y$&Q2lIo4#?~LI8p+h;Z4!3 z{kYnQAkQh6!1Kn=R~#c9-*ygsRc-k}wIR>y!FK0U%xh(B`@LFiFFySP4-Pp!YhxQ} z;j*H{Rr4NO#;?_WxpNII%1xl1&E%-fjg)$-{#R(*`85#Tl`G!ruk%&slfL0Mx7cah z(_`oJs|WKd0d$XH=!JWGj`!Tu^Fc%oe5U8iJ>Tg0)1JTW`QNY!VsB6Mp5JWKeY|_S+dMV`d^!qTP^WLF5UPT9zctaxbl7dP z?e4C7yZiL+?k~ExyBl>MCp5*)i+97m5$A?ON6OV+bfp~J))mi*>l>E|<)2<@la6#R zohjWpf>I;OSE-kL1(-I~+}2zhjW*nY5uaJqi9SL2H9;@8;c`OS;oQJv~Bzl+&sE>h;5tPkBj{qp*(L4linIy{6}vxHWcDc_8ChNAOpLMYx5D zMs`Pns8%4=z31K(_7znD-XT?q>G)UP*Lk-oCKR@==QZWrJm$0P)&Avh3!f>2JU>#`h;-ne7O?$*S_aTF{@ zA-+ty4EGT=fW)ttCQ=}0N+az*hG8VsZQ-LKD0 zPTZ8w`%o<1;56ziIz+B}5{cEmT7B2t?CD@oqlrdNPffMzwc2VT?t#wjcl5~Q< zSiEg!rUfvSTa!si8;{++ci(Xb)hfnoe*Sei5xH_f3-U7}fY~V)Mr90B923r zpheP%`TJT!{r$^6uLzgu3PzjcROkyd8Q{~mlBCYf*T3Ts~zODE0f^-|zbZ&zYJ3eP?%P zcV}m33|Foz2t-lD;bSrZ9!Klg;W*|3(;&*#m`zzAiW!`pc*Z!sxY%8uKd{~HMN`du z1;Is#$yK{I^JRy6Ulz>!xwsYj&-r$O;hx`qzrB9nIIfq>gN;A=Ing{Q`Qzn+%A7Dg zu&Of0IB=%5z^1uVGU`W~Jf6Gn_IR3jWxe}uzEuBgSuG5%y!~@{)w`IScaB%+UVZ5W z70doyXCL`_hf~Rl<{MXjd@4V(n8_EcFZ8)k-=J^L!i5Z!zFJzmOfD>++yD8!t*V2C zTNwTMvbRNy?X=gv`ONWf{#n%UeHl3CnEAp7&+C3LaNiG1T<~*ca9$;;$pbHa_dh*R z+V7b-zEANu^6;9S!#8x*cph)kbH0~Pz4Dqm-=0+>DIs~V^2UyqYh_455Ho}$@9ZYW zZh`m&%|gi7(WSgE9-D6u-Q^etHd{%_fo6--hj6l64$q|k=hkNnNtWFW!;Y$CnRSQ- zZ;~{fCHZ8JNg6AncIze*)R)0C_8qAF1lrMYUpTVq-KdO+@R4V&NSXJVKl2ho5`2jv zAxuJ&LP91EGCc1kG-YO_kOlWvQ zXt*~gCN77QP>kZ#PRbXZ$_|&D*~P2FWZ4*>CobNfQWO>&J3Kco(h7}=FH|}ssxCf3 zrB>x66y#r?n-f(&Ig;;H>rzua>k9)fY50Pqs8C*U$orr9-JDzM3HHlG#kEJlC4jb0JEWCSN~RaGn>P_1Fug?Z42`5 zQWajeq==g_-e--E3H7I6wPy5~gJoA|m5*Vk5hwrB_unz_&9`Q7`Au#o?>bZSXS}5z zT)mjqd@@=L$Sk zQNGlyvWc~A`TT2}R9luiG$g8uU#n*GGn1_B>652LgiF(7zrVG|`iF3CkTlM#TfzDK zI0c^EfEJYVrZbW2d&|HcZk|1Q*295e@dP)%KxP+D9y2aczPyoPJ+XY{kj#EU>E10T zb6lWPG5GC?-N7Br>8?y)B>N0`i4KiW=eAFq)?Ym@#uMt9S2J|@kPnp(nVMF%A?f+Z zoT$XmDHE;G#Hh@eCBdT})PF7I#}U18)28{@0qDDuZF!vU9u+z8p^E%+*2K(#51)PZ zg%_UYMD>2(z=t{As~gh%q2Y4}K8y_yD@sw1UeFA)RZ0DHkM*K?lJoq@`=NDsorCGP z-OdC|+*o&}JjJGgr*;TW{&-1wR_Bi`9UQZ3-`~iO-18(SQ7SP%Ky$|W2O5J?K8pq> z6JUcBXcbD?d*^%xP|jxR{KzV*7YufbbH3nQdrA4E(vqa)!0navDYH-_N366mf&YO3 zxG<`HYZjvK=ScF*jM>A7r9_V(8lRIpzp{d}{+IRh z!;1KKSrtz~+)sQeOIXc0L%g zk&(fHCTX7d_|nA0NR=E{6qcSB7Q&%LC8d?&5x!7gTG6l@YHB7Yrq`xbmXyrN^XK>? zrGr|jp{du_);6euVZ)~-0Lr}@4tB^vv@PiVV33# zKDA05M{O&_o18yxtUvJmXvkQeer$L6#W9a6%_B$lJx%F>Xn$GRs_5v-@eA{#57lhi zJaBl;YOhL(8hOPPYUm@6EDiBk8@N(id09<$d3j)IH!hP@QzrTC4NpEf(A$1f?u>c! zRLu*|uZ+u4xh64bc2#Aa4vBrd=?Xn}ZeLYJ#ntI)mikxnqMTfAL6Uz>^1z;lDl4nk zta-V#Vbl-ryYG&nshh$TXGiDzVdq8e*y@_{v6u0+amr<5%WEEcs;Y9q=FO*0J^uLD z{Qe!Ovr}HFuc=F=rU@M7x|H9b+>h^J zHx5cq5a;HUn^XHoUdOTJ;?MsF;%8rj#@n3(_D{Kee=EH@^5)MT`88bqKO?T>;u&dj zflUi6r13w>>lIl^1ODW!tYmd8DQmOWxJG1wjsIExZ7vrQ=CR@|ev#(c%r!tl?LwIG zZVD9mRXI6!!Rw06^g3dkA>o>{yCo1agTLpBXoso+%}oKL0SBAoZ4bin8gj&Fu$VVs zlb0=I@f!XO-Y3c|h|Y4*91)r19iCTaKiX|G(n?d;KYR6)WL#5C zr*vHtA2QwRpEu7x*&AOIk|ByU&E)U8`Z-&1o%ENjvlXAadKVeZHKLdiQWNi;EPCGQ zyn#6XERZIvGbyJra;|!TYn6Ko9Pf-(axZQkHfGXv4fX*9+ATBFN=|MXUsYFEGhsnS zh7~AHoid@OB|XD>;kBHhLvuppoAS&hbyF`r_p?_?$o7TsBXS{JHhp^i1JmoLtL^+s zYkpcfr_e~6Q&m+bCAL(aq@*U6bo^`C1%+3R8d=gfZQ6=lfB39dvkMEZ8W|}2xj+U# zwhj#q3%u{K$6kdY%AWCfw2b&vyf5UO?ggBI%5V~@Jei0}(u=?L4s6#KH0wHJetPSo zwCjr_Hbk6zYUa}_dPCKQw^xi>uBOZN`11MlFQ0v@tetc|U;Cd%7pWWf9yo9$KCLQU zEu8h#%)0UGtHz96F)FWlwrgT`GtI5b<=;A*4&1yuH}ydyufVHT`loxXG3-m4%Wpwf z^Q^iTdvSn0?(gEia8~ifWL~~EaQU+LJMa8>w<5bVC?i?!ac`1L4DDQ+cyko!10r>h z#P-q_m0OkqkBlyt6O*S?a6UQkRV8awET|x9iu_e%UPsuG5r#AD@>DW08MBDwG; z%f}2CXpalBlpJjK3kn6nI{Lq@%Z!eU%#P%gM@5MV{A?!N7Zw{4mlWwqj__ne4jCWG z4#gpS*&SI@5StusBBL_7lAek4g<49F)t*UlIyyQhI$DQ>g?PfXp62zYr^YVxo_j~L z(~^rJhWdQbs-6vKSTg5{mfwN8Fn*#F5-z{qF#S$=NK8x~XNltPtip^5L#s04?kne= zc2###R5YJgvgkf9QK`)IjKcW5{N~Z6!^V`9a=AaQ(>?m!mt|pXev>7?*KwAkP)!P9Kx#E&9D{Ib(5xKef`ID1VJX~om%gY6L!a^%Y zj3|%)%5ZgSIEM|eCgk@asfn;Ksfn<#bMJ;HXf3y|+}+{o(-=Ra;XD~q9|Id$6Lxe` z9~&YvxuO+oLVo$YW%r{2k8b){Er_oE2;m%f&A+#H|K-N>>8DTHUm442FZ-iSa;Rta zeY%e?pL6(>`lct(wIo{d=Q$Iw6evm87t2>V7{;{I$xABO8I&&j4DSfb0+9>0!MwtG znsRx;sjK7ql(P6DMAy}K(?R>L-Vw?K>xymR)e%B>Y<(^jo*+0Dk^L;)Ezc#-_36^w z)b%N45IY@N#%AYTzUxcuh>Y+hFK~Ho>e4`-ix-#|AEM{V2~TL9gxD0iTeM5@f?Z-fKx)Mu?2?j}V;>B=67$&kZRH{{upFB=5>eUiiUy+9?lX`gKBd zgul$mi>}ZFxCnyzuAJBk2I+Qu;$PsDr7ch^&+`ViLF|bB5#qBxMSrKm3+4;mh0B*z z>7?bjkFFMQJN4-xUzQ_q*Y)D!glo!6h)pzAY zmatHi8%CZ$_--osV7}yq=K2dxh3Co!(n-@Q>?6jb~(1hp8em0dD1j8LU*M{f_UCN?!#3@T&jup9%O5T+ZPF{! zpZUS#%%zLJR~&iQuB5IlHx`kXyzm5~=h~1|XdsR_saqDgBtpuryqg!E$O~O)txgK2 zq}#`h$m9@`y7F#bbaoPbglos;Nh)@iI;qIHel8{}d{eP$Ki;U1^`z7rnL{@l`ivBO0vhZDbH!o$8 z*-4OQKU0XF(1j-Xt%S(CbjiCqk{$`-OZgF}EH*?(cJjfhVP~wwiTZgu6 zyNj4|x*PLDcqJa;xiK*gXvSx8jH?@m==?{>w$PsFh`g;U&zV0WejL!VX|g?^;Br$G zkh5dI`8?mOg5ofS>-26+xY%}Gl(vc6D1JE)k-*-zK%IohcG%dBOI%%>@6>^_J)uTE zi$6@!B9O8A>0SW0@aD3>YDRq*N5yQ zIbZBLkTejB)OBEAx-|ArUrYe+O7UFg&H&+TS?gxK}x9+RX&blrLe%3N7J z3tHgv{!^;!7~^ys8Qd?h^_=5b_akdi?^VPb!io)m?LfQ@iN%d)C8D`KMs(bL$GmsY zhQwJEh*!6vKwYA=Jew}( zJ#`spx!9FIjq&f6B(U)y=e4mfmjs4trT z_o?eMj{ZM&d`P`G^&>v*xSe`&>q7i-8@!U5xPXi+=h_vX&8LsSyzE=4|4lr1Ht`&l z7|TgxD!%mHJYOkq9}mgQi!67WHG#M-a4d_ARmt;7Vi5l#FUO7ek$Mup_Xkp;xp23| zlZ6uLg_ZKf>PJ6BdyXAZ2RM=^Jbu3w#&4`G}4TMkH=GzZBy(z5E-Z4PPP4t4+l2ggHdjb4!ywMHh$O0 za-7(avhZyBO167Jb!W#f_M~n(Ar;Ftv}>PhEX#9EU>oZKHrTe>$2r@VBu_TmQL!z@ zl*hJjQ9i`Bzk+`H0^6y7AFyH5cOz6%Czil5Q1@f$H%4-#J>MtfVth8!C< zP3Q)kYLY2!Nxgg)_O(R(EDoysAbX;B!MXZAQq56}abnK0`64q_)^r{GlNFo_iE5&c zhqJ6S!P&}n1#y_(PEn(WIKVB=A{q$Fcv$wHW>t0ZRRV4J4g#U1hn`{6(MBBQV2W;{ zk1zU)3DP4uzBiIGQDp@6qDYHwA`Y<&m91yYR)RKTI|RaGO%P*z6wzhn@lH)$9uH0kZb;af{^~#+XY+E^X!Z z1ODX%w<(Xl^H|PrCUyV?eu8!imlC}|5$zPQTy&7P|BP)I>BA^D+($G5#Y~GU2-+*& zN*o79P-jFtaTplMbQJj|>xq3p=~7@ch;77KU`z?ImS7C!^j&@i7)#zbqJs7-wh+hJ zv@&101E}f*#>WthsXB`wt%iOk(9Q(LII)oE0cvThwuv|fOrrcG`ki!wUGsB^eZUm@ zoI+k5^HXaH>P)5nRK_ulcBiKi?Ld7BLEU=t>Q8dWk z!vWwDAHn*#g!xO$h#kOX2}CzR`;BXX%bSQkV0Hx2LTm%(R1@oo(?C-LaTK_sf?(WN z(%zMafU7pLyE2C80j_Qb<}vnpq|Ms}8ES}YNN*;snRe!95qp4Zw*d>568nG_@>-e+ z%C*q$Li%4=M|82V(MKFqLVlVEa~GTIBniw5iBp;0^Ha}90iv5 z0xSIBQfLIrs|tyBVn5K9Ky(nyudXF1yZSV+hTFMj2SNFpiV5=D$#36A(EiOSL=(aC z&8L7bH43Q@g5};$f^yGvu#38aU<}XI5wzJy z8+}KC=a&O7L=auT?t0=RuxA_55B!j{ACdo~!@!TJzn6GXa1?mSPb?)E>raY_e&DAT zu^)JuI2Fc*tuw&U zUf_3(^LNXE-^UR2`}@OuusI4Gquw7%fd56Gf25t``+#?-`|cKk_WnfK6F#DjI05{* z4fqRf{e}MDquzV0=ac09HI3K~{4Iev4*Z?APqF-dAwhc|Q0IddVn1*?i#P%NqZ{}q zWBTVA;6uuuA^i-?XK4GQI$|U6F=-!D@8e$JUqnCc_pb*&q3(az5o6#2>OmY&JQ^f2-4!$5~L+ij@NOO*vF}c=s#&Y2R_k$GWp50 zn?jo@)Elx5YG@f$szn@zN~3N%V@jw0^b=4Solu$NXP$=2YJke7TsCELiV6D9Wn8&u zp!_XFFH|1sdE5ATM*^`2s-THD1XWl~Y$Z-X6;Y<>0AFd)&oKHJ-Un68eDP7J5wtUc zzDLFoERR|XRpKMcph}sR?u8oN2{nfH%TkDLsB)&|q>p7Rd_%HGUsog;1uNyqYrNAk>7lP!p+BOIwo|`{X{TDNLtOrmmVe2{n~*PNSb`tpt75 zM-a_KFVu_@g0z|KP_r7K8VaEFx1=xg8t@`el>_4#3878l$qBFbxjPh1*)0+`IMc14C-2L z?*ir*&}K_JL7jz+e-U*Sor1b9jc6mN(@I+Faj3<$L?3Ym>Uze!ggQ$>Q09g@;xyDU z(w6l@-8h%n1GSvG%V~cFMaEI*OU>A?xZ$1F^CHlC$%L#?Cl+gO*kt%d5ah*qfE8=<~jOst2xgSI-Gh<>QA z?1Q?q3+gWVyK5s<7j1P>|L%HXKh#(0=d0bsL8yCZ@19=bB-Hxl#385+tdk9=q3&%b z==;7#f_A%^cJG0@pZ33Y3hIFlqK`NVwK0aMB{~V}JXlAN{~-Af()Olmg5^zzp*EKh z^t*XGR8I-iLl)H6L9`H*{RVZvafqPLEtL7@MuO#UQRiXW-o5`ihBdP|wr$^DMtW{oRaf zH)ZxTf-}QI{b(1|kK2f&Pbw*KwXcNO3iVUU{*?Y+-U0Or>94GZ+E2ef zqyEqOpkA$qdJP0^{k$FO7qs(B*3&`Czs~J={TS36XQ6&Y8;9uUO>XmVTA>cp*Kg~H zeNaaz|JGWlqonhCr+(i?oQ8V)1k|yEP=BEAADf87P{*nFj(~RGrR)iA(+S%BGwuGR z0_r`+c(RM=hx%(D)ZaRw{=O0F6!Y(|h5FzW)M?WGQ9{uEKYO4)tb;nU73w3}{g}Lu z&p`c)^!{pMFVrX8#{Z_>e{-A9&V@S1@<0PYo1ZfMRMJz>Xd*TeXP{L#aT;2arguQ| znx#!2pU|tJJ+~&|^fFKjIvK-PKpcj?b1C#)#n4^EJ#Ek%PC?&Cz56KJy`EtC{toD`MG&MtKpj34=m)p5 z6E215f!-WLbVK*B+`||iY9RWdzrG8a&jET%8T2fOMcR9bF~8Ig z{S%hiCh4En5-h*mOwi6N)P3a`^nR9q7DLd+tL@OQQSP;q&;e_jp!3&!)y1n7e) z#2M(<>GzEe=wBU%K194(2L0;<=->FE50^mymO4l3q2HqYqutQI+XDUj?a+T$osez`d^L23F!VE(4TM{J~;;cZ_1u!Y-hJZpX-Dk*b0N~FscPccN1q| z%xM^l@N9wcE`Q1n7C$`_>(Y+)JrOX zNv3@Aa+nklw42%ilb!;@dr-qR!{nTT$!9sAaTM%=DU2Z)SJ5_@VN8c_gefLQ?133c zjOu|YSr1cM2Qzvf4DT7u*ff}Nv{y+~QFc7})%01D1v8-*W+Ls@Qg6}$n8|%GQ@UX4 zm`xWNZkWbHFtbaDeK2#HVVXK%u3-7fPME8*h%+#A z>FeqSn0cpRt~m@dpSX4-4DZoQ%UptX7q!7$R}Is;73TU@m?hL-+6!|7byoRcR!6|J z?|`|5>8-T2j<}7o>|ZdqpMc@{ZSFV=)42=g&NPB{?>q@}S2Il4c9^@F|0-?WL-`G5 zF!wgX+_wehYlScmFx^Ob-n*CwkHPdXzK1CD^*Weu)WU3Ohxyhan1>nHR@(pe9+>Y? z?vZYo?=FY=9(miT`&bvu<7;7_XoK0&1oQokFgy3c>}rI0svqVD2VtI}%(L5Ip4$)8 zcLL`5UYHjc`wNF)b{~NGVG3~^@ZCR8q8a?eUvtT z$MkoUdz*HT)x!LN`9E4P$2(x&*$eZhxiBZ{VR-JD_bBsTH_XXun7?g<;kjmb?Kkf? z!F;e4<}~I1K|lZ82lL@6n2$*R=p@X?dtg3c`fuu;ZH75V`oMa=jOiiH!oogSsuPwj z20O2bGq60(#4cFgwL~whkgc$M$69LfH zI{_=c4OT(}ti&={N#yfc&`McK?1eRidPA4PN^OLdmPJrLV-Kv%v#_#TVdeC~^4G!2 zPlHvsAJ#C+v+va!c?ecX2`u)vT4QLpyb#vd?XW5UtFi)C75$B;esvqH3FJ*AeR4Of zDIKuteC#ye2#e2E*7RMlW>98kEv#8Y!&+E8$E-__!Mf}utjn_qrgP|{sSDN>)Vt~g zthuyx^>SGA8em;R`^^?{6xIUzUK9bVHGya$w!m7<{Ng>ZuBV^tX`9b9)-uZ7SPN?f z`72MsTFsc&Ft(eTVYSbNbqnt;*(-lW-zzg=@K4*n7yd-yX_4ZeLWunXiy7$6SkCEL*IZO`+Nzc9SxXkLT)bvs`{LHD zMYm?nxNg-YjBO-mbQ0g~^uB~6k7?26OxdaAPW;hfFwW`0u7K- z+HXe{9v((n#u!aKmNAymuInRfUB@~eUVV5rcVk`080)uRM^D#v%t;7y17nWIx_-Op z=6Qe4xmUV&>@@WG?!T{+Yh7JkoqNvbe9q_h=W{-_Yivwnk|dRUJtS4p`yb5V?~1Qo zxAYB45-Z1-chOPTPsK4*Xr|-qJ z*QJtAeU*;ahRb4CAfV?~@dqDa!w1&q<|{B>#r|7C!%~cxUfRVOD|9#uuwMexmb)BrVP< zGgoG$gn|QC2&Ve0ouBZh;H(AT(RmC0(p@c5NohZRuoWLn(pFq+pHt?V=G=1~bHTZR zx#786<{p}RW$yL4H|G9w?yu**H+SLemb2T>?mBzx*$2-4+S!w5Up)JzvtK{^%Gp0Z z`<=7jJ^S}(&z;+L?xu6Q&K*4W`nf+p_gClMI$wUi_PpbK@cf$dzkU9{o&SULe|-K= z&VT3pJLl)le|Y|1&;R({s&_5#+TQJbH-2I8LiED$g^>$m7j|42zi`WieHR|S@aBbo zc(3+7^Ly>@b-Z`Odz;_;i}(KFy?=b~>_7eJpFaGjOY>~LcHTO_cK+u1+vg9=e`5ZT z`A^M1KL6zW)AJ|hPtO1D{O`~I;ry%fe>(s6{CDU7?MG!ls{2v!{T&On3$BHcg`Erg z79L!9eBs%JmlnRZ@XEs53-2s^xS(FDy=1-Qy3~7VG4a?UV7=$*Dn3Z zrMEA=bLqoN>SFDpYq4i>WO3)>zQqR@A76ZS@ukJDE&j>k+l%ik&Rxl0xx!)IJ|_W^ z&2!$l?zz6X@Z7q&iMc&{xw*g7h`Kt5v=bh(!&cAg2ch3L*`9D1W+WDFDZvv9%&R;tJ zZ|8sVZq2*acOCEcU+B3o1W2yCkhrk*!p;l3FHByz>%yO3_!~g7{=G&(vJ;Se!vM*J zfBM(?s(JJL(ELsFx6I!$e`x-p`A^P&dOkh>)ciB^&(2TH|K9u`%>U8+YxCa%B)>QR z?>{R4k@@{~3(`XUf_ovcFurit!qJ8F!gC9!7rwqQv+&)8xrK#G(xv)Kj!W&A`Y$Ce zjbFO!($P!lOV3?8ed+6$W-fjA(%hwmMQO2q(Y@Hem{=TNyle63VtVnp#nX#lUz}O| zt_DeV<$QZd+rPAZ*!ItDKWclg?LynTZRgv*-1eom-)eiY?Kj&_wY|_b+_t7I))sAx zv^BKVw^g($ZE_oPsji>8e(d@e*ZZ!ox_-~~71x(tH@SAWwz;;tYF*W?Dp#eeqV>zI zUur$w`rEC))%s%VZ?>Ll{f*XNZ=GuWV(ZD)FSI`2`fDw}({j4yrIz1nd9md;TTZq7 zM#~plPPS}n+1S$1Vs5Exscxxiscb&c{K@8H&5t;bI1f4RbKdK`!+E=Ny))gRPCc8`tWMJ#6+`!&a{>jg5}n(Tvv}BO_ak=Z4-Hd)kLlBqy}nM@Gd@ zM@PoCj8HR*v|9IPuSlsB#-K<6DX8Q$*i`~{fE&TCw1ROEsY#Z@zlm%%lS-wPz~vl% zlfH6BN#i$FQkT@ne}iAp0K$h?~voQ(qnMdIs6&Qt34Qzr3fnch674eSJHcozisuQ*!}GhQHv#>lem0kBjrFs;-t+FZ0Cb+q`!B&C%G% zNGy7@-QH-~+}9UP>ceEyI%KqW_F$Xq(Ae0n@v*T()FRHu`$D0eZg;b+z7v1Xe`jS?YV5dSzY_pp>jf6Oc36BW6K$rFZ8U@kUg?AZ6(-kw1)6IPT0HU zKv}tM%eppSqctAsn&=j7+U?`9=&06Y{aQ5d+UN@OS?p^D`n#$XOkhc24JcRzUQW4y z@%AMc4{{nFjFy5mcq3jjK3K29p~IL+){K0-sC{90-)>dQZM0w;F~5qU7NA6;A9#JGHJ_CtVa3V)<)~*zTQZ3sIPCc zwQ;MZVYItD6zc9CZLpjh+Oa)?gPn;D4D4uXGMzYKYHHdsFc9nS>Kd-EtE(UG>Kfl3 z0oL!>F?2+hd>vCV32mGP%-=z6-!hSZ-}TU)KH z+}hTr-nX>lMBj++PeAYOks^|0;q-eYI7VY2>|j>w8Dl=dEFoi-nfxOx@~Zr1^cBZ& z>r!|&4cf=bYRiXqi1kiT%``R)Ra7X!d^Gw>ouyG09}GFodgyRDq=DghNl3M4Fp_nc>Nz^j64hP_!imCtwv z<>Seu3XuW-S$eQYR|hlsOme_0L-;82?sBO~>IR(jwo4&S^a3u#xG|sWS!`J^GTK8j znHqOPa04xWLl@*}?HPgO#medpw1h(+%o;m^X9uqQGvuCM;Iy46wI(zAO!hkFH}$cY zKjt50_E;M;aY0Cy4%MC-fByOLQ?-W*X9Ynq_vlNWr$UinV$6lnfr#&wbEiR6+ zMj|Ou@?mCmT2^MV3`S$Dz}l}RqbRkWP9f&4JrepJ4z*psu!^wqcflj;#<)n>>B+z7 z^Rl_nk+nZdE~Gxo;0(tVNj}42Q{Z}XDw9z&8Tm{;D<|_=8n2_dYk?D!grnz zQDQ6wI0pb{=rq0?F#_{dVm^%hl7|(G?uNJ9O&~-PLB8qyE;^uO!?|*K_KMd(?c=+!~WLG5;^5rxH{W3H~t+{z2=q3@vf3 ziOGaADRx+%Cafh*h4_rPPp11Sn3-;6Q|z!x;we{CXsOamms4(smg18(NSmb_(J~f? zDU6j7Q+`g`UuyEl=wQ%iPMx|UopK5_*r*bV^Q%>8u1>R`M&F34hu?_4f#tsA8>yYI zsA;?7W=Q`dq+K{1qzQ~bE4bNVm$O&v&S>_Kt8LrHuOt#*PJ9_dD!>GO1qS62dKN%H zK;tj~y({RWb>My+1|%+d0Shw}hUM~_0(}y=oK&HyN+hM_lk}HOa2f$H6R1;5Gy#IO zcup1MG9Pr48}J;^2%Ru7l3_aiCKuE>$f^b_i>VjiaG{nIz2$u&wL0v@!K?$}!NC!q zzoYZjv4aP;;CO&O#OboUwb)IW4S7fh_6(`74Sa6n#>WRoI`0@5ywg`rKRP(Jqp*$Mfh=+h;&Wume6W01f-th~XgOysMhPb;OO#beK?YuG!EhAFh0!#vu6 zFQrm7+6|+7URa$>W*5t4a=DD0i1+u$Tf(j-gSH1G@+4aQexc+IF-%Mp^x&cL6d!K43W|I$^W#ibXf{g1^+&i_RTh+uy%7KSS_S+}eXTuOB(! z@zze(G`DQ;?G0<)QqO5H-NM19%PWQT3vBd3T84SWN^E}lYEe?z08C3cH6Uk;D`J|Z z)iiJl|K+92)-W#$XgJrX7`VOP%vC6`Ug$U^7_DYWnBw>d6VFN}gqbTavf&1@Sqb}r zywpNP^l6h+qkLJp5j46Qm|>Tk7$MZfh=r&V3;X?Hi`VZpc}v44i#H~pW+m#$%RgoN z^J~76^o-5y?D|31PWJG(58nIc!T;D4We;wOs+Zr{t2z!H8apU|{~&Nv#ym3UZ9&nx z2D2c>X@+IaN_Jne2wEz@@QK)DGI=m{Is=7=Auq`3!vI*lDv=rrigX#c#0_U91)kh2 zjY&62p9RKn{d1J{LkI1LNtwi#I@S*nrr#E8UD+4PG)O@M#QU4!I=iCG(^_7XP3@uNl8+l)jDe>O(9-1%hi0AwOKt^-B41h*h(?M zAzQ6dtJE}AmY3ra5TvX|QA+t_DK-2zRSHhZD?9XG;N8iNU*~k$S4W7dQZfBkBSdX= zIdu&WDz9rR0meEiYb($zlcJb-m(WFES1I9?tduwlxAPG}!6o~)kcT%)4`JPrO{8qV z8^e+|^@BtYMux~Wpsgvx%xEhQ7GxVHQmoWIOtRPa@lcF?q*RqSEAQP_Qc{Ld5KJo- zQx*DKT2^kaqt8`hUrl_k#WoGp+CwH{J=102a>Ss}Nd=V6$f5qz2ogJdy-31k5}kH!mX2LN?c$7ORq|#2cs2p{ z6Ob?0%H*pIRM=d$5(T^7Ik+bM;!?*7B#b@yF<_|2A&{@Uj>m8mjd)f#FwG?CDUD@8 z3NO&5JS~oZrSg#VJwx(YNE20Id+^)~g? zjzlPs*!CnYO*Q-E0Cgyj$Kq>5lmwt}e=E@JBNyBrlluuKJ^wtpRq2Y4{XK5gyuKZS zD!i*uTQoZ-^ae9D8NcW!m*h#B=d#FP)W_v|;b}HO&L<5la+L{SW@>6C2Oag5=oKm28|{CSNmEl-aIhSKl7pB7lKOTW zHdwM@mr0d?CM-uLavYJ>l1#6#TF&Ovav+lr$+P(oJDyI%62vmeB;L49;|zX(9HSIA z&~~)oH~CHQq$+T-md(0hivzfcLMYplTVeb`g(_ol=n0STj0H)qx`mV%XB-NAc zfW913pT;v0&~rsfLJiPuUC_XENpz*ymyl0lZ?EsbP%d zni{9B53KZTITwR1&w>|xs%w1hZ9UaB)iphBZJqg~5Ie5!mi%vZuC`mFk$5~BO|`Yv zPF6b{qn-XhptCb!choGd)@iJV;`$?7bO(CQ{q}a!sf0ngR9l3`X<@1DkxFY-j+>?B zfLMkIwgAKd_aND$S$RsGjoi5XlVpsQGfRRR@La+l5xYh985?Pg%x7Lc_lh>}a)!K~ zx($oeVlsh~xjM_(GwMYaRWoFRh6!hAh&`Q5Vv*_VCkGo%DKt~fx(S1(-H4{jR6@=D zS>g%U)sqP9AhN-}l~8AA66p|3>cCY(SAx@(_e-EhqAfG5+7iMe;3+iv9JqN2mSq^3 zz38`2tV$#_l}@M^5&4Aw)J4!OxWhD(HO;@C;&dy6MMgd%36|~x$ui6l`P;~rMPON# zHo}Rf&B#*1i1}EVD3(c+h@H+Tw*Ys2+;hEN+K8uUVF1g_C7M--#h@#}S*zd;)<1s? z8j}}h6(8O~L1Pv>PLzzR^*%%j8KWZ*L3CfME59|~G0~SecC5_X9QO~Dooe=$rOF2U zti3nY5$}IwL+bHFI>DxIxpCV=zK-%#xvTZ|;k6qQYuD~^wN|7mIyxS{ahrNDE`G+g z^i6n1@TZ|+u??PZU=^1+LkwO+b-wH^r1ju{PF{lR(O_PUvxviyW zBPEO?TT2fhRiL|WZr2f9gJL*V;u}gTdN>+AqJES}5%Wkj`&h0>guyCUut0S|%BBR* z@Uh#C6j;3&z?gJiw)&W0G-7F5m11r3_{Qa{ad|r{*`(4-*Eopz@>YzrgzywzIkMBQ zWZ?oDqE~8~n77_DiW>l(CX=+z2q_k8S>JT5HxeUi&Datg2mv+6(n}g5TdS~b%ka8k z1;N?}K2xgMjofnjVxmA_B>7t(govWZdPo?@A7SsU64v*khtRi@^*2R9j4-kq~Z@h8y=EsMJ2k6RS@om#^du46! z0XbM#_hhxBq|Wa!eA(;s4b|c`_K*2md``W_tQDdyxK`2A_=FJON^4%q{eM+F1B0^PMMo8pLe%K?wx_)tEMa~61m zrBWY?XXGHWP+T9LQNduKgv*h^QBsd~Q%SZU|Akr)lCQqU7U+JmO^7(aa>%BDtDRQ2 z$=uEG7rvv+{&UGU_cQnl_kTA2S%vLCr@p{8;R;qQU7ev`qYs1t?So zwqo$KqcR8<(WitV`H-kFM3a~S9RC$qeiFDWdH!P0bX7TxCuW7QSUG!QH7riVW_b8 z@m|82MOG(rX4zov71Ep?ZUd|q3uJFU#3QR0LAX4^lRm&}8c|Z@-kEyx$!`x2SFmH_SF5#S{H^hxf~SwXeca=xpXl%Zu>6a>enr1Se+NAhZ79ce zXW$jM9)w#^f4}+)OVWesdo`=yMM1UVcg3@O;Tqwr9s?PKHd6y^4V(Ok_hohpYw|+h zL}Wk`iW7+U83gWzSRkX$GK4l@4PJR4zNYQ)d^n^5q7o1=313WQP-P!ZgyI|m2*)~@?Zd|mj_=;W=F ze{k!qyq_X=zeQ>X&P&3V3k$b3tVik+4`^lh7*l}aG_7EfK@3P2W#uOtY~+9C5U#Br zvb7|e?Sn}X$DDzFNBSZAw}ye%v3u_wqe*CRRYx5o9$WvQL;WF?;LM;WpYev%X^;!h zID$Lr0V%|2G;!!@D~&)k(628=fQrSy%OF>3OpCZ0#Yzr!vX4SNq1!^CQ1rRzp1$6r zy?v$1(@}P?9_;0ru7^g2U%#vURDHt;`xfq-q9g?W@26nEvC>|BD^L; zOaayt7F8jD9E+!PWqjZ$V-cu94xJ?^b0Pr8vpOS}!)COpqN2AmFubL)G4AT9uI_1T z?+o<&{cGy#dIOUz6TG=&r2puM2(4>(B`kKXeE;4UV+XdtnmuOgcZ#5!3S~nGK5DiR z!eaTR2A{Qmr)``2(JlVXu93h!!~Ma~j<$B&wq}3Vov~>A#$Sr=skB-~TZ{%qI zNXK|cXz1#;F>3lCV`CK+@Tc|mMV!!HN`Qw!u6x>{c@9aNFz*63VS<%OfC~_c`Ay5Y zEJQ%S5}F8>%5p9%|I}1bUOtvc2G-Y+xK_75kW5@`X&DcN+S@~+@s<_}%jS`1avRa& z%USx%CM+SlE!3DywWo%xL7P2b4NtbEl9@nzlfzS9QBm%3G_?n0i9*Ea*GnaF;=lTM z6xbZvAs<8qCYwJ_?-9NevB#8*n*EtQR={tOxq!eTN|(5|#iLLs{I=r5&wXH6# zbNcrxXw){y8Kh%&^GIgU9OD0+IcWNm=6j$u%U7MyFchNKd?C|C%6s{#rM0E;Bl`21 z{@xx+ric$cGrsE?H5Uz=!4xOExUSpcD7ECFw8Qo7IlAPOG_hr$uEB6$GvRX`i}iuM9ICw_wfcph4HoLjn7a5!#$q{e|PpmVU3Lg(<|1H=g- ziJ5ssfz`~#48ec36b3VTl}QtqB{7ENj>5UZvTAP2fdgAufOsp}aan*kt(xQZPMC~W z=2u0V@lsYHL#cqJNe&g6#TkTH;-$x~>Z%52Uy{y1ubk%cCdJ?xqQBgRbGFo|>DJ|G z9&%&g-eIC({Gwu8e`{)F{cV$K1OANQgM4@(5FE8MG+0K1fr0$2@zX#sm}s!HIA@w# zEe(lakOk={x2_+V)ZbYe87RSEKix@f;HH6or1Ugc#Pz^VmuqK0T;cdKjd)cW7v;Vf zMuG?y4mh#E3yOhpAT$w}rojPbW#3F?zFA{;jQTqR#%Rnyr+?I8XA`amzL)jjP9>LYnbpi~h=Jd%z}=^_>rq)Bdp1PSDwP|2=H7ONBm zzhnZLYyf|=84{iaLZ(x4HU(Rd`j-A3?x1G^;dox>ap=Wux;F$X7P6oa1(2hM$K$c| zXso0H7A@-)o9c8n`CqlT-S&$XcYEXZo}L@oJ_3=kckE1}sjaOk(Qcb+YA-#dkS$_=65{oNzW$ET`j=qN7jizy&thKgBTOmeA}*O3 z#ehLEh%KBSfJ@Um!7)Y>im422fI@~M_%sSpJZvA~?_B95VJ8-~wLu-NV^_~^fL1Gj z`WL-Q2`E&VvZkW3q7v^Za^vDWj`sjl`uq9!P1_V^gZD71m`wOnQ`UfMTM^gc33*oiwoLH=pLAOmd4|Zc?~U29lvea4WReKL z&axcY7mE%viZstWAy4MNDrd`oS{k$%pII;*Gv_o4m<?VKo=}_?VQU8udHXiS;EeD`_4o7gU_ZLTd9}eN8sjl~Pqobeg z>;1(qvJWaNea)(^*;g&^aJS{3FRzsyjlO1&tH~-?m&*@(TrQ6Xu`DFh>NZAU|Ma<; zxfE`VBChZ#HN=~8--U|28e@zfJClO}C^I{IwcQz+BGLrp5QcHP0nwP>D(I34BQK>` z=&;6$-Qr<#Ae$ZO3B?;4DtbP18w+JFOBu2<^XIV*r%&&#a5Qb|M(*{RkBDY4uDnrl zHOV|z&f-~jLl?G!Zy`eqC`zKH0%fr9q?jKFN;JqyCVzUY0z(K3xONO~@^$^KvMqY- z@=x*1+S-lEXB>?mY|0{3ZBF)h2HPL?uwY=YdQ-=wTz2`@=rK4uSk}^3y)i%Q=&Jl6 z@zNfdv3L66afArQb(Mmx&jM8tQH5sY)u!WY(}!f;Q*-j>xcd5skQUxR4vmOu-zfhx ztafcu5W0oNlk{X#-N#<|EXW#X&6&xYZhFMy{*1%1I~E)H{HH(tjmXer!QdAT9C#?^ z_eUar=%RU#`;nV=-Z~PC?M7PV;mFW8KK<#>A3bp3WH6|Xh>-ME^D06y>78R#>z%Uxh_EB(Y@C1QA#*&-pmdY{{~# z{B1?Ov5IJ@v0Y^;$6ms)W$}#F>m_Kj--qD4%AYVM0Jt?Ous%V6sp{k0t70xt6J*vACLef zH`cXOZLO@Wg-Mv!i_n>>czzAg6b#dDvO{Vwu13FN!SYc8FT48kdhoI&KAu$tK(wx{04$5zzgMV_CYkJ(tNwOChaQ zfbe}#i2iaH<$yOxCT88HBP=>ux&l!IpdmZ3X5T2`mf$YL)=H3K z!2b+P(#S9^hU+ny^qELCAo~+vqR?<_$%LlKA&p>UWb6-A)YMeq_;>1?;rLUz7GEDU znMi~_u*KprA3Rv^X%v|UWlAuh&ZegLFY#-2X0U_UOvfOsG}>8xej&gD2hAP}iQQvp z>EOZgGCDgr)(AxAaskGehOL`&tssFTvKz!0?hAwBt&wCM$=4CX2aYQNWM?EyQnMitNYp|?Nv9#BP)!GZ6O;?CpAZ%I4Gj2z=Yr>ue%1)+_OQ}Y!+MJO zN-5%=-KCyZPb-ze!)0q=PcWGB*zq5}{dPI8rvdVB>#jO?t_rjsE$O)px?h3(3GgjY zR5|6P0f&g0*dk|%6IptLBb?UpXEfSTjtCCaS&72Y42uSXVF!{pNuxryE+Zoc z$>svK;6%FI4s4<8(U_11z^uv&mqy@`D3ix+>nk?Ltm@~snatIu8v-rkE@$0PRdrQe zO>?>F#sWu2&i(U3dCB)_J$z*9Ex{X@AP>4nk!5b4%eQ?hYsH~7>-w0?~FEky_=ewtD3_5 z`$LIJ$9*^WLr{BLOm)Gs5)a0%^8z77LGKpPu0^+z#`B@lX0l{z;Suk7&gda+LK`3p z4B@lxQ>7p%l2b(NO%pu+6#cY>15i*sUxzs1-XscoMua^Ht~%iOg)%u8LV^UUCr~AY zP&OOgxigxbWy$LsL$bh8NWIi#%JR;tOa+fh41WGM|`cn9kZ6UWxUN2vC z*J8Ldzv5Yh0b?nh9-TOsYDSn>HL~0sf0t|Va24p76Mbx|jJXo^R zYehAa%+Z^7AN9EFVe$Forp@E<^9ST$eNS(C=S|~ly1Sz_HD6;O*}xwzFY|UN65*?+TputF=q^7~Ve7NZ~`I9AtU|NZpdULvZJ~{pJ{I2n1{%w;jiSpPN%> z=H^80fY)%Tz1?Pa%lpOE#2mWJX>YOJR}&ssBc3hW#Bg`_MPh6h#YG23yFN)0oY^LN+XB?8iQ>fBSRD>4h7Voj+pk2 zb1-0H33P$npLn-|B86$4dVRP;-ymC7+yM@5rF=`QSOj`-%M<>Fyqls6e$D@f#J%JE>G2zkw$gQa?P~&{kMV)SCd(L-fFR_z9$6d`(_+o=}QA z$VEjg3QbYY9mRjb3LP`|Aomo-zQEAZK`=7FQcd$YnC7{C8vmmZL>?}H_cS?pIQxU> zUgUm?koCd)WXQM_4QUG3F|UOZpGx^M8bAHbuE{qOZ%%fpN4TYMI=5pVWqIxU1`r?p z0)6@ujXnv=p!+*WleN3ec0s0O+qN5S_(XTN{a}52+eCP1c=Tw`i)#9XR*z?Ucb7b2 zckEs>ys2%gR0C7!^F3JvgznIOy zBOx~?lR*C@7*&7=FXlW$e1Jt8wwdeR)IND;-SFWcBsm%`)jV{d0^BS|AMs_BOwPUm zRqF2qtYGN_HQ>r2++E4Ad}h$Iw>A-&oP=Px*E2Xf}9+l8Ut<T{Bq)}2`)R4PBHaQwE7A~+sJ<%&EFOM=%qvgT1evJ;pFLPE*W4uUqm2IGmKEk#gz5hfx=3`YX>f) zBbdOjmDkYuw!`CbsNbQ#V_Afm=Rl~TB|7pCJKEbF^0N*PMJCCGc1wYKk`LLV%5vJo z+r+v84_MOZ1WSCN&aj!~ZBkCN=qsW=m&uQ!e=i#Qrm$rV6vx^Ms)m|QtHe!E6a}P6 z;49?1<)i>m*k5BNZk!bFCG(g_`R+>nf~s zyLW^3Edv+mU=CyZ2=h#};V?d*A5l}WFzAxkESv-8u>6_v@z1>W+DCym;vaq(e;U*7%NYm01?xWqPrFH%gDz!|FDPyzlx^U9qJSGTF4aRuBmxp!&XIdUcuXMSyk zhmev;wMjB~4#j)Ouw=r50y{+qkE^fCN8|fnqn;xqFP#j0^hA8q zm&SLq*YnTC_rJ>f&zudVYAoCgO)26|;vKcEn&fFugnq$0 znS7bPe;WUvj=#YINf<5UK~IL%KhPfCcO+zQ(oM)-jVDorB_$S7NhFd+h?+0Y3`1+l zq?{ycC51*W$qyrWh)qL7;2B8xtEPFdmZ+vMATlmUKcZZZGtd!^gF^WbRf+VhLKGh? zBaHYd3DWTpcA#PrIqs{2|zqOMH%j{HKD>R=#7D0#!$ zb$eP{%O@wxdc5*iCMQd*X4JqCH@en36K$J2w0r)Pz1(?6Sj?eYz9mZ4F}yuxlar>_ z*4x*vyCFGzPvASrjxkrFX`M@yqN%P-)LTm@C(Bz~_pDpT*P}kZW{P}WwhopQD4@Dj znxAROaD^&j7};tv4|^S5bK${jZzzs(>4oDo&gFG;sFW;ACU01`_V(6RQ*n43*J+T_ zMq}h#x-LsLX0Hj37Q$Rc?>LBGWk^F5A}DkWgju8d6RNppmE>jd35ZtEkzhf9`%cMR z#@9?CMYVEpraFoK!%{oNd%`nHLwxP)LVzV3D6MyvS1D%zu+EqMedL+z`b;h`OxM z?Rc1uqN!OzW^To(d3+?Pwj2UQ_f?p^b%<(-ddONo*x?zX_gTt+D=K3$3x!ZZRDGZ7 zw>kh21R01^GMw=UQEuWVl1cqC#v!!`pZC?zwfu~}E{|1u`RZ=+@FfL7(S~S<^eSED z@B)pTgWrSTHNdNK{fs_9(lH4mvOg^7Aw_MlGLN5i4#ik>5EVC({t3n+zx8~;eb)jLXQI#wfR@)G5JQUxv$lhJp7gsje zY_32+eT&zwu~9u=8$VTTYhIQ+e4k5A9EitaclbKlU_;EJE;cqI4{@lG)mtow;*$$% z%i_K`;TJ-lkjtQAoTL%^NYe6MHIC8>xnkK^NDKlew`&D<_m-W1w)q{d9u#vpl5CI@C1X&Crf;)Y_&rPKE$D^@*K17}o zU)SVr!B=@63J-4rT`vTCa}QNB15pa#AEhcHbcd9BRYoCrda)w006pZqQnRO#ACdAR zS6UU^V;2LHgqg%nrV=cftJ0YeYr3(&ykSev@Ga#sm397{i2pEJfAYEQk%6tHzJYB~ zs?ba{S*KN?*D+>JabkTrOLJGGttG%xRKmjdq6iX7Bhj6(GQxtVz$B4JY7D0j^gCI) z_sRw3DbV?9(yEMgx%>#`h`9%CFUl9!j8`;Pk+^eIenV|JNTf|E%{$iYh9%0&-Z@&P z*0OgGf^MR{Vjn^BL6wkv#2Jf}e_I|@CN5{?r}A&(KH|%W*y0)(e=hFC6W@~Gi6--v z>@(`3d{KQ~em~zHO|j3g`nU2P_Mm|;Axp`}1aH>78IYjW`lX!6E+1abgBm1;c#j}- zz7C!@W;HEq#Z>TNmkOG=YHXN1HKjI~I(<6p^L3ggE3CCW{?1`@J!_-@v24Aw$(*A< z>w9`e*@mO9%STF@n@5N%jx;xy990;3lsX?sH2M8aiI)0|xv9yVsc%X2tY43GOUmFQ zKKy`Y-_UIPL_8pE`H_1}h{i+4Pwd^h_rLGmdwcZRuK*0=n^VfEd3CI7Pru;G$^-cR zH5}1r-m`HlT@;Ax6zBicukf2CB|} zM7RQ{R0%2S$2V`@x^?sB1uBa zRaIA4h1%M?USNXeq@+4-iyfA3m+nJ<#bj&yedzwYrNQKyqNUr^HJ>n#VB&csFtQht z4vg+V3YyoY8(9)cSY6#3zrR1!+1`%ie4}G*Nge^;U4-4XWjNsLBZXN@Hz=0tBy%Z` zS5Sf?QUlcb&MtrRHd}k!j!>{)lmZgPG?t|iOzxz;NYvDpN8Q_OJNqdfK}$OjwLQ5K z+%_nZo`7Lg+Yhuw0&O817UVbX`qZ6{6yu>;tw_Mb*W^uyF97L!Ww2}WPx1@`Zz&*G zgy7zTA<^Vw>KYt$LKh%v+Kh3xawCsVPEaLoHl-dWj9@dt4I6^_54PNM&ldEnRtm~9 zpgph*P%sd@`QS)!HHTeT#FVxGT^N!V=^BWO^l~RY1pxeHYx>sF^!h!e`;_60W4-<3 zdmc=Uq;J?P?_-0*(fAtnca7U`-?*)M@7|j6EuBLVyDQpgy?NXEUA24nnfJuH275g& zvgTjy3oClOh?n6|AWTxs7Fo7=+!kC*3PnJip(~K9$>NPbEd5+Y@j1NAE3{2^HIgs= z7_X>3Li@)+3$tLvZ2Bz#vN?LujzX~-J_k8<4wPoqh3*#6`9)d zS#g37=o0ssUq7a$-$i96^!PBX7egJ%9V zsAmmjV#UA(Aiu^)j3u!avjU;(vZNeKo=#SGR3EHyRv6M_%H zLWdKNx#XNky9Ru)Yxv>DJK+quVCjAoJ_e2fegSfhYG5OmDwIf$Bs9|mM0^Y8MQ^DT z5QPt)FaTfaumgBx@dbw;TEWdYCEqUjVS)cOOYns1bYG48+`2^bjCBT`O@v5Nf2qQb zmHLW4(>Um$d8aYZ_Z)8m=z-AdFrTQ4O-PKtn0oXSo!~>jgyR%LL@GIM0xDBiAsphW zjxf|?z305|A8YLrzEa<)UmQ2lcY-tFDqSOmx$vEKjc}O`x}V0+ahbYLFAjh7Qu~Za z5icY161HNcl7}0eC)c>K_ShpcXl zDj8r=fTR%Fqj^VvNV1{EMS&MkLqZ-}Kp&g-5&U#m=y0M^-~=0jp$=cVhtAzN^!xO4 zmg68I=mBap@j3-S*MSfON)A@+w8H_SEpq}Br{x$D`p)SbMx{{*0YX~x0-%tPitrOP zWrUxUJl@nhj>L3Eb4q=u{^#ec#|@%dx&Na{EBj}AM%YwL{n9c#>oYjlrsd||rJa82VGd`8hRLHDry zF$eV0&;-5Kho$woNcjj`aM3W{;(!QF_%D1>dK^!|E@{C$*l`HWLBy1#d2?j?L9P`C zHo{}nq!L6|G^hbDR+dw!Ju4`qo{dcJygjWY!ZjRdi@K$=^VQqp@(0>rzyvxBZ9%kw z-USL1ED#o=oiwSdw`c5Ep>I5Z6uqMMR_YyiD}1)o@{bWqL-xmZtSl`Y5yW4JgkC6j zB$b0saq(Q{O2iausrj0Z1_t+RQoqNlx9;y`R#HaNER8a4&AwL~clK}EC#Mc>bti~M zkzS5?Rm33h{Q@5^V>rzf{Q zR$iH(iY~tRW7Y*WFL7Bw>_^c69a=~OR4-Pui~8LDQd^^z8`=kZ*C;9`3Hcy^7!X)R z^WR{n-ewMqN{_l`_tWZRJdS!@GG5^tSu9BQ~op2&-^^Zf8$GEh;C z5}z`zcmXNI6>7E$JysKW(xl-)A0FuE`tY25H2Sb7)i1ni?T%;Vl%lB5_iX9vx~r>8 z{_Fg6(W5SpaHskA^gXNoSzSvFJDNxh^#98E&3GPkMLyObo-E>=!V0hM>^6B#Ku31! zt$PE>i+A;^ANAjLkpv*5-PS&wM|FTS*;&gB^i!-0s{RGqsZ}jO6C4X;*vJux$U{dM z#AzL)5fz-Fr3t*_K&V$Dg@s~s6qPA)A7oMx%Vp4+Ep@JE5O76ZlhE|}Vcv;jJ*6+NeM@)%YOh#rhFLWidU z6VT=vcSF$9q9b$oM-NtQi%lE!yfx*u_A?`v&}x*rnfIn*u= zqqb@>Xs*U{Q5lAZ?x*r7E=498S{_RdgznJu={W3fa(2>9vZUXFiiO$_Fr}J}Bn{Z; zW94~ze5~4diQ6DR3*v-7;?*cJ-swEDq(7P2^v<2>9i9LTCGhwM41manx+d{Ioesf{ z63T`eLybTjZr4o1c0p0KWcw#O3MsJ&!sjHyBVwe8P#|bi%{UrRrG;ezg>6MpqF-SM zB!)E}%4seWpv^{5C(!|^9+Q$otTe1C7$wyOiIHc<cL`X*VjRbWgMnkeXth}RHp0e7(zNo-kLh@k}XA{j|*3taR}5-VqUTVh|g zAV!DCGSZlQ8l@_l9CXt}j>Jl)rP3ZoZtrb}`SvEqQyD>?$Z<20N{!IFh&v#-(K?+d ztW&UCB1)8A0EUBtl!!}1EUauRsg`)__0;$%ltdDYORQF^vY}T*!W5+WfAZiI z>LCHZy4_vW9Si#@Cy-bdKxi4lcC;USK!I0G(k$%*a`0k;xGlxzkrz+k0?87T<3Spf zu(2cDQ8U?aryLb50$RWl2|Wpw?AUCI=LL&+U>Nh0q1SzDt6it%&(Rf9oZ(5O zE4+;y<~x8jM!BXE>i^RMrNDJsP65=7SUvq3i)@%|vzrl1>u9Y901 zQ}_;-L|AzHJQoJ`sZQ?W5~eV2ltLyX787hz!fM46lPGQj<|-dIoWaCKCPiVj(yUm* z1%h9&=WZDGuk$!*Uypkg=_{xdURJ&g|U3Ihd4ct&+ z>U6g4jzlI}oE_}{T07|J>}amRb!af#zn#tk&k%CdZ~;F}4iJKNuUu(drfq+UAt|g@L-D2gf15gQg*x9Cu}4Lrifz ztc1LQJU(vo;3789@QoOLI7`2Vj>wSUo6Y8t_D+UxS`UV2QVSNsHLrLk?n;yF3ksS= zWP665iTl%#(e$0NI9G$I92+@l!k`dVNo{zn&HMG4O<9AS`n2?>8SRW}_JEE7GDOw=kl^=}mv&3BK^?PA`T(>dUUp2M; z_UG9li@SEDuHBrz;RaYC`{g{usk<5+Wts`HsqUn0eB<*Q%gRPf)uoyhlH-_;i^M-U zrKjR&9F}CK!}{VlTV9Au5wceUqL@6u%e92Te!JJi!_6(=s=P!Qw#MLQ6ND2`SR#cg zmqPBKBvc4l_>wFx5jXqJ(KXwqTw~A2pW8IURUnc%@ZvTS%!CRlfI2~i?$|GX`3Fek zLRr08ZbgALg*0VuL&WOA&SZw0sn;da6#R~d!Jma}Kv9_RpOO!iEIbPOVnQ$E**)<+ z`KRK0;_oGsIS>Zad;P+m_};zoJtGWUo2d2dEMNs#FvwN1l}82X5{@5%H}IBdZ^BP+ z*WHaHOo2~fB;<}%f3`Z}*50nVB3sF$=xuHF(gB0^Xh%y+2OZj4(ddPkBLX1~uB&k@ z!#V*O1Wp|W-=5NWJ`=1yLbW7_=POghrIT_fm(IyS&hyhbo#&H20{;nM735Jz+%F;M z21vaf6*C|_A=z3G6`@=Bi2zx{*UaIK$96rkA%XhO;chv}*2f=?-L!vvYrsFcHliez zTcQugS4rjhy~+*iZXPq&`#6T?zqHN@k{v1IQFDSqMRCU8nT*RF-5nj#`Z|$@m(K|$5SeV< zf&NBU>y5!c-`dE~EiJ8QaQ_b{<0qAdhGCyCAQJY3)HM(aZL(R*;QH#VsX@G9KSGv@ z{VU@&+_>S;uBBXEPY2~(Itw9q?R9pK9fwZFlGoWguCsFgCfO5Oq)nJr;p__|2_2gL zGSHRkfaS%*fOANL)Js?LOFC4yZR67J>HJ(2aeOJYTENrNxUr`vEN>En8R#Byb!?Al zo-Cf7e6OTa2(LkDquYsQa(UNDK2?g*9QQt{f zLA9!-k1dX&if0l*+lTsU#oS(%z|0>+8h^G}2^*t^MXz!f8>D@{#8G|A%G$FGi>-4oyF&m5P;%I2h7}u1MH_NPDM}nuuwo7xWBK6B&pC zeFr)w_7FnSA8dEf!nsQ_$rmJ(XK{5rnEe{wJ4M!L^%HLcei&WSzJs5@!iBG3Wd4@?y!5t`% z{Kx!0#MYv{2hj`}DKBa5iu)wigy&B1=kk;+7T4NgP5gG=AmQ0G&yA)!?POo0M`OW% z`33Rx7ohT=5lqQZdyzp21 zuk$?yMhUP0?*xosRUwIen}4^9}*%}Ieo%h`D0i+ z3MiWTf|!F-`IqH=6wuEEPQ*`<9U}+2O!7%PuVEP0Htqm>6FdZo`rP}YZ8u3pc8d{T z^0}>IceSM0CUPsPBzAX)Lfze{n0QXB|H`Ig0|PsnnoK87n3|e)3=G8jySmoaFyvw*t61_3gzJr^XEgdx~Bs3;jN7M`s@)nP#0B&rEO zfD}MQTNIy2?U9{|ThfVM(%#2z-YR0VV75cfIOL7X2+Y!mBp3{wwCN?kCri2?SSWN! zuFX+fD61k2vdemikZ^bba3B*gi^2j_|F+oQ<9bmZk#CgeML5y*S>E*!3aR0x!-Dz_ zo>_!NWGOJb%c0@r`yFKRxl}5!3?3y|gJch;Hfi@N&@nC_>bwiaF)nG*7BuUb?q<;p z#AK|4H33|JAc#UJX37nqkPZ}Kn*r}TL(ChdvsB89RHSGjJr5( z((Q!52z{#wQV;Prt<)!$|B}c+eiuWeXM z=|K5cGa17^qw;Sc7wGo2Yc~+QkrNBvD(bfK8hiv98figN(cmu6!H67%$W9oJO7ZwR zO+GQ8jRHw74-SLMIk>L3NwJeu>qE1@FRAsR%X50$a3;-Y4z<4|dw`muzr1}O9!uUc zC5<4+P$-eW_Emm2u83?lTB_Ol_;7!T8C2sydp zsfe#e^)`h+wmiKzlj6^PGyl$^`wso>efJ%T9?Vy#sw#FW&*tAw$xq7@q7P{ndMEWt zgJYW-m7hCw=)Ujbh#o|LP_k|3lPOs5i#SdG(l*G-gx8ok4VTHc$@6X?3-YQ5=#SN6 z;_;xO%(qRe@PwQ@vX>#!BauvC<24dKMOiI~WBWa};ntRz-P3ZT-@ok!{~i6WQ4y;>!>T>D#zvc`rMO+7^n z>(XBOkSa~_NAjaKm);NAk^ia-acN+CwPk%x7fC(@#rwfHwF~?uIgT=~kfq8{&Wp=! zCXJROB2_5AF(9@TMGw-gw8zpdySHFprB;?+7Y^@ia+a$(6&Z}#E7EPZBtJhm(AYRI z`1#~5x1p3uPJN=G(|6DM^&8n^Pkw|oV=DNljB*mPMtF2P#w5(iUc{O3+GbWp`CeQk zXQ1W0iZEG#;aZ_crhqJ5S>WvOk1-hBKSi ziOvjjLHM75pw-F-O7zj z*rJdWYv|5>ZTV9u?%pon+Xg8e{7K)pj&zZNodJ2ZVuC>gcoi#PrwpMM=7g|!nrmCo z`n94$WU(N;h0KFIDZ(Le{nhBM63w4vC$caa5Z&cdbR6;0DWba>&|QcS+u^JgbeHy# z5p5ReZmE%XFPm}nG%fN8Kz!L2f>@qYUjBqa)}fLc4PKt5kaPu5<+cQ@Im-8~g`FbA zGa#05DX5>^*sLWDg!THN+D)1!rP&3sBvF_;5bPJ0W|r#@24GXuuNBYrD`bym({vZF zR*hexW;OqPU<0zk0#xQYK&@?Pu%NX7)xQ?kwD}Wu5H4#G)M@Q3&x_VIa?D{4`_9oU zo-xc~G5HyCF<_p;JT~*4&6Ws`OP63Nl_z!!|HLSBL&9VdchMX3^tE$2wPjsE%?9FQ zWAOk>2G(w6)52*l44;Oqg~-jn()-azy}xqv%_sUk`l#;&mQaB=kktV?dc;p&x^N6> z0>amWRb_(nFN2yhxlGnKK+C?rld;?r-}uH8xy;k3rbzN>U_;H*oZcY(9kg4>lRUbD zftL_Jp@UaF%j8rE|7T~F0QQN86OI#W2=;i9O-JnYNNa|&AAv+G@oHmf%b3XR5$;9w z8m@K9^VK8(!LGx!KGz z^-lGO9*=WzM?-&0>p;Vf9oU7XrN3bZ2tK!4X@)?un@wx=&MAHfLaMR4n6WS?)GFe> zR*T|!%QJzuI8DUCK3dEQ6JSL(UH+Rn(->` z`FRbe7hjWthffH}fW`Vy{kx56FbqQf)u&w^|N7U*=@5nF5j)1`nEh9Nas2Bti~~#e z%c1y|AlLQCuFQRE-1RBe0kZvIJCRKfY@^ah_3k6fKn$6nWeApH;NF9|1#{MT+cH~pNmv08fy=kS`I z82hr?b&>;g1d ziOzC7(dF^t{$iujcIj5>fb{gL#i(qBveOFA$8i}W9`4OtL}_*Ye>>I;X76Jm#g)-s3ojJ*Dk2ek|O;?p0Zzsno+K@=3U z0{XCmT&ofX=1DIK>w<+p7J5RagNrUDKlcMt32?c z-a>&3qqv9wzzPrM{s0lz1@ERFwR9@I2iW^*M?YZmkqC7u^2uqeIE9_^ZW1LxMAzo4IA$F`>hpl7!_;B z(O%nE)v78J8wB7lyiiLDxGk+5*AjJX+`W6FBf=grR}KkKThSysSK z#3_@#y#`t_ymCZN+~6-}_~-auz}Sioyv7Y}MS@eCY>jCosvvG6n;|DRv>f*5=|AHd zj|24|*z4*%-m*{p8C(T4M)FaMIA{mjr}SYz>fsbQrk{)+QRP^5wfe-P>~Taz=NE={ z9N5yo*VR0{UA}+|;)`lEx?^a|fj)l#3NOhB~w<3&- zTFi~z%@u2{OrnC2b?u8%leVQB`?9mi8Fo6IFUFp^$kd3v!fJcMWhG=cgsma~TSYzJ7jX?>x6Bq}MsZ#d zctfRRBVlrhaNn0v0HHus7BKEKOg<^prb5VRnoe`{2g-LC=70%x$!^1JMvJCLoC*&+ zz+9_v6_F1JJJ8ae1<-HxepW%_hX2W^aT9gtkwMEkNOlg2VW0;O{&ZP~SZH=uo+bkz zm3V*;gU56jx^S7Q>6x^-C%=WBgGf3bx9gHkSHWR?x46x29ksc;NbG{l>wqZS0s`wT zy(20?&BDsdonfe6g|Zz17zkk|QQ;9qy6}>B)Zt6>V1=}2h$q(ssMfHqUx*rGw1Y8h z=u~MC@pb@8D;!r;?~g)sP!d>y83J>+o@>zsZce##WEMf(F_}Kez>KAq<~GuU2M{Jm zfi9>94ij{W-=`uI68B+G55%WYqKjA~dS6J6ZU>zi~a1T+|Jyuq4^(bu&T)aAn-HD%oc=` zD`o}BM>x^fk=UMW76Em$@RQHdh!riwh*1zXT;6GlHGne)aVmlqis$HbiRv%I=5wto zgnDGxN_HMZXTU~9xDv)j7avo*|1U^c%4W4qbi^L4*JtLL+km%qoo9kL_Yweqz#k9*0sesmK>!p0 zf*?TvBn5#GB~yPCrO4p5B+H6S%NmDP+$2?GS5_6!aa`4P9gm}`UX3@K^|-DV;&wA$ zjh}4R@hBeG<8f0rn}=ev*-n~iGntGw_2b8zaWkoKweNS%y}$)U(z4rUC;_;*xWGN< z+;hM4{k-4%c|aANN@b1P0?Q+iY=&($D41!|Lqm5s@Q1>KW5M2@L7R<$YWTmX{Zxv; zZyv;9Q(Lkrin~fhf&MYjRqq#gAGLroztdfvtw$XF{!fpOPiDu*Ki%(l9%=1@l-~5) z^t1T_U2B@N@Z)oA17Zvmao1*5b&LU`QxA}V_ZAX{%2*j3h4edwaiTm!L#)Dxs}vPC zD!;QUFE*$drw@^%;u=$ukd_kvKlt2TMSj$o6DJ)@vP-F-%h<_v1vv1@YW(?>G zF#$?=Pna`G6r#2vZU-DYZ`*D4F+w*6p(k(h;tW*COS`{CZ2van?0bMOKnA5W$ea83j9lrOw(!wLYT;AQq!bmvYa6ytb-kD}N)a0fh#3=M-P z2=uvBDU;$b6!X;+UE2mT=n{Rek0aXLn<*g~@gOJ+au4 zE~jTJPdnSS*VbXf|IS3)<2!S2ID>7rc1N9~w#}Oy3~q6`p~~xRCk_A$vG{0hHyea4 z6raM|O{yq#CpwYWr9XXNt?6j)orsi*&7-{ zPW05~q&m_ymZtjFvHqT6rx+Hro$UwD!Yk-|FCprf$Z8aT3VtO3WS|xz%?_>I!pz*C zh8++i`o)4CK%r6C3zAaXWNE6kwl>ta)>@mf>FB|m_O6D;2K84n$EWu-TWTeb$JS|Y z>32H%?JZrljyCoW!Bksay}1T|=K8v}RPYOwIr8SZ-#^%0f4Q9d_^Ka zb)!&GkJ`hK>5O=NKHd)iKz`}g)-CC+s*HsPUVwm!7~Z&o3Uh}{9=%z9++^jUSZjrn zR=Bw54I^&}+Qpj!d|mahEmFg9@5lRj9FRG6NL`7e5pQ zNUS7zCv_D-o5E`r>n&d)sP)iiNQHv9v3U_pG~H5o~412 zA^f+j;myPgRcPh_FYRUH8y(|BBSkk8Zg^DZ!N!K;1&p|gG2^#YjvzbQ)<+B-VG_!H zs9f755T0Vmhfxhlp!H;}d%rTASk^VYkLv(5aJODt&Y~6Xze(vh`4NbyI24}^#<?HzP@1FnuUjFI;@X$fgg9 z0%;DTEGZW+u9hi9&KXguA0gJejaR#M7P<{qI9xL1QXDkN^2_p_upp@ZpdZpa0k73I z#OO_va0$6xF&2Oh?S>{tx^x1sgzD47qHylItX5W2^xrwO_49Goq~UFj4$bw^DQ@&DvD~TnPx;qQS#z8SwKPlo9B%HNXb2KQHAlyj= zwmg2H`oA>T!ad$#U2ENzZR5Y2t+UrMdB^zp4oR|N*OTK@S$wqKr;O2$kb7@?AP~s4 zw>Qf5=Kj-DKDpoAV5xUBOh4@NJv`musJAqj`(@wM>3(y)EH~7MV`^*`d<3Fj-{~DV z*kY^cm+AUf++<5ToV)6UChs7zjV_ioD~vw;eUobql*?0tzySp1pQZkj8DMdK-Y)xpx5Lph!YW4 z1!0vEp)_hC5=q4-Cd0?#m)<=-5~i|8-UClUEW>xJt`wyEpGRF5@*%4QB)Jsmx5&m4 zF(GKFdzpbMFozMlH#rNXkrzQ7iazm~nmrQ#)dQHa=+B!}N8 z94H#1k7PGJknn@@mcT@FHbwI9fIN=`HHm6a1>%#4R>G1&$E4Jkn2gQ_pXr$b8>z+_3T(RQ`h}b9C9QnssNfF>c&Ld40aX5-`^FIlxz?C(R_(SkV z*l#+Fu4!%Amr{*g`84{00o4VS5u0M%Hpa@0p&a9PNt;;fcgSj5D|k`KKf0<1rQp zb0UuQj{HT;bStvITDYb`)mW*56tdxyA&S-D$$={c9vAq$Y5H@MHY6@v$Va*pAe*SV z$ur`_t5nQp^PUU%zqFKnBdgBJ7g9>;BvO2&BBp#+kuHFHFsocx5>Ip4>;(^!V(>&1 zJW>{4l6r5POd+d8x}ap?W`GOmq>{}q;T=7p{q<#klQGUDxPBA3o@fv?oF4Kz+jQNG zcDoGDA^gFuQGPbA!BmZc+Q-|dy{_KArK}Bn2AP}xS-vE1<^F;oBB3Td;Aw>?EF^9O zVGkmj65^&1(F`T6e$b=}h2QFi5L-BL|A{|8apFW=eeIcCPQm|{>+HRj-2V1Z?y91+ z#4omoT=rlt7?-!6IC1}~Nffx*U^eFfODivaF#m$Okj2c8cFoaZWu{{**xKQA&LeS-+ zXhseVVhJH<+Hih5|huk*egK_m7>qNlYs;+>|3X>0>DW;6R&;n(+bB<@YSrH;Mr1^+35qDnpjfA}oSNjT z{)zi5>ozN{*Cs`e+F|H$?;g8(6FLdy$5Z7^S~b!{jJ2Q}m)?5*`Aa;u3e?L38oXz_hRHd0>C*G;xVH0eiZyVcM z{~2=4@gKr(ieJ(9d<#Db@2bu}K{~Ont*ogT!$V3loX38Nefk!b3tD_Q+4LIG9kJAa zlM043U6V>2gz8!n2LpV(C^1R?aIs9%$yWQtrInQxWbZqboTB8|^*-`!@CEQ%?gCHi zzfK=0%2nekhu^QP&rV41QPXzfj0=dHBH_|1tD#aT9NepR%9 z9TMf_{7E>Kv7f)DweLvJjGmc_AKLWzb`-C(xz+#H-^nUH#qD~0dp)?Rq`|2(qgj-DNfF7; znT~8<;+|k;ncxstj(*cKh9ipYYrV-+216iln z1i1yeRgG;Dr5FW@i^h`TIU?RgUSvpl;u#`cOgu(XNO27MN09thy)a4z?sdcRD7;F7 z{e^2Z?ElTdg+Y3o@E@_et7a#iGmIGJ3gWQc0^dNE5tP>|dI-Gb7s{>mdF@XnQx)Ne zHvhzA6!Bc;|60z63sAAi8{!aq}ak5bChfxj1!!)c;(fp|5Iwq-yp$*97G zMhI9M>E(XBt3vE(d7xJ{6t?u2{LEwUDTjHTNAT9%+B$YkhbPa9wpd=uFY_u|ONBKW zj4?&r8T>Dou_~JwDt^~7=~;~)M*0m-@PbjtN2m{X8T>E&xH<_MCfERBu7guXx=f@p z*r4MoYrAfbAHyls(gDcpm%T}+GpyB2vwX`G<<1H#(*9PZ)?e+gy^`4o< zk|K1K-JOBjT5DaPQ|#pMrb>EYIcG*6!SW7P5NNK!U>uA02`iCE6#tZPWK;D!nKd_-o@#26Bzt3HYmM1l)7sc*m!uY( zbgHpgX7moxc{6>=1fy;9$GuIp~*ep6j&8Frv8Qnu?s`k!p z0zV852@MMWQ}~-G-W|eNHZ+Pcj>qR|glUZ9aX!XP^?1RXdA@rD`}rKwulo@9#R;L* zBk{@KELC05Av6?D=1EEP+70blCv_E23*20|TO?B?5(Wi+G-zwZpDn1pU3>5BAKuxF zzXQ+BmbYXkOSKk^U~uY*Df|yw@UB+EAH7!gT4}GWG&hcaVI2RP@F%t!n{iEb9p)qN z4F=e=Smrt4{lUt;0VRO$4dQYZxe7J#d2!@jh@7}-w|%t%M(j{87LF7aP6{1Gps5yr z^x{M8uhe2L$ANbhC=&g)7=O|ohDf{J2u~{e+~h5(TG+tFPW$-Egte0vP5e!SLQ%su z2ykZ4lb2B7qs~u@m3VyLwROoN3V9<>f?Cv8Z<4tceWwZa44ma)&R4FcBAZh^@t@TC5*tTXc6i(T!qUiw-D%D zSm+F_;3XIC3@|tv^+vMq77EvS8ztpp6udWZ8Rw#fLT3QQBz_}GFZlqw8*oYvhNM2x z7#Zz%!j8aJS_?bEun6-D7}E6$T*=j7PQY{kYDMY-d^0=XZhzi z2BX%G@q1eSJ-iNZe_R`q@wrff0H=r<-Lm*M$^|@JuW9fzGB@g6)JgKhSQq}r(qG*j zKN8J#WqQYdBN}OIYjZ^-pBuk&W!G0r&*P6d)nBOBrLT@p@A%sEjMr$c7 zDC5Nncby*klfr^yiSsW_#?WnhON$*t5PRc|8(B}XdvI<)D$-}V`YeyNxXp^i-z}9i z&ZVh|iNoG*t73JxZ39ciP&l&9-B$b3>u;30vaM}3iUlae?xZIZ$Pd2mNp%h03F^@r z$bm!h0kmEC5vc8O8&ZUlf^!tHWT^8bvrWu_wkJGB@=pABfU{-98IDi|=NFcYf#fmulPG=*AF8Hnz37(W`Fn;faYU zK|59ZIKO9gdAI={0EMhq&%Nc9l{Kc@3J(~Q{vkLS$WBBYhugSh=jxBu;b|~zlAX{0 zlOm!kB?OzM=o01srs&Os_`*8PBMw(_?y!4#+>ihYJu)|U4NRx3PI^+X;gAgTHQ(CDn|&njHJTF zi#JUdFTzML2<2G_Y390k@#IN77y?mci83l;lXQ+n;BT+3J_q_2q7{G#Rv=DD1ChdX z4wT?A;bNf-IWG)Dv;yT*Tv#eCFI}V|5qxnNU0vpq$I%Nr0!DcN1L|vHvOzx4Y4la+ z6VqIn_I$B}U1>l4A2kh{*|m*-^)YiHzI$M5>HsTeN$Se9N;-5lyW`_zN8mbE>`2_O79OjD&w&RRyldiV)SxQrF zz4+2E&!|rzS_&Tpc@HjyNsN$wm zrbls)2z3#zC8&`aWEY-2T9+VAvn<5t81``38s=O;x681v{GU{9aogjrPXOY>Wda#( z{67f-E(hQrB;_=aMj*;=m4dalT5lUr)!k6DforJk^0>QeYwF;L{czVkp~+UaYx?Lt zyQDEszsqiQHnem!HMYT8FxOZ{`y0LX)ND(Q<-lN1SFo+cG48ZE>g=x3-o`HbmP2`0 zv!&(6Gw;|?UFqSIeWT8nCRuKsiZ3{QjZHYNxuvDf(bVYs!m%^$Zm*I$aO~{aV+(Db zHk(BzGd#kRPD++!|=+G&w~;R$+L z0Hbc{GLBoXJ-HX-wtt9^o7HXWiaT4J`na{VSen#t2Zq|+t}VgodBs-W;B{<@3`a&s zdct)w3kJLVxIp=dV6(4v*Ih&G@7!)zFDli zqfk9vc&!fzdyu+KEjPQh^koW|=w5iO#sK&WO#^#<>H`iJ@0j|!^kM2`?7_{#2h!&~ z&7Ptju%%2UG}!0OYR6><_V{vxCpV*;b8SxcoNw=d)}y6Ted?sQPdGm&K0A2&mCUp3 zbwznDlSN-QpB&8kW;ThDa5=KxzCjW=wdJ+U43Ag~5Rio5j+mea<*&oiw6De zGscv1!#10%M^15pp3c^|npq)=P5yLtpxIfvS9-BZXO;e|G1uMb&Lueu9Rb(1i0fL5 z>k1i5x&R~|k%XgiUy`c`gjz)jKNQj-ryBGkcrw9Oj}#SRj-)LqFU|1;FQB84M?w{d z2_A?Z4*JincnuBdgis!@VC=(8)gM4VxoAIn z&8x5K`>BE~OnWq^fWmxuE~1DYwwIQRVQmK>lh=4c87Zd4;xba;3wT{w;(w$CQ>;Yj zWaXSFj4HS6Uj0L(c|2Ef12_0;^GPw1)luk)|f2qBK3BegN(FgRbYFhYuU=Lyjne&b`V? zgQ{s1ZJHlU^YqELTY7`tyzN>RgmwQrmUJM#qfr}24 zev+BVfJ$~{e20D;-O zW;1{r3oIkG>1(`Alp!y0ZJgP761FPIOT7w$78kD?HZx|Wl`2XB(-?rwLn=F#OBw~s)cjsq~-N6A1liH=$v#B-@yI7oPg54<~^-Y>@%jGhqO<#6suJhrFTli>ci zG+fo8)t;FZ@>HLc+IrHdUUF8adV$cpT3{E`J*B1I6vaV%P%i^m%F1sM3!(!VOvEumoW!D?MqT0(q(ErBp8=1s7j^^2qm82uogfTEPJT zDq zRI#5JXL~hz6H@g#$czWH`%}ymLhzVSPQWeWzJr33wqjWz76L+*lH6X#J#iin>2W-L zfFY3Zs(wgJz*7FMEI!zY9ilU~R6tLIeYpWfs)j#f{Z^0No|mBVGj@RwKJ zN{+TB7u%sFd~m1KJ>ehNNo;*s;Ou+ zIq`zE@ils?t^NSfHcG9crJG35c?4ck0I-=;<}<1E(LkVm>;>t@Nj&uv>gK*oI(<(7 zt}cTwz>2j!jo1JpBXqSA(Dyeo`d7tWp=ph@g_6~v3?rqmg#4AUJ2w{%-fE-gnn}xL zuQePb{UcEUe;aFQN%aTRKhho9(&dr=3E}6?i5De9TW3r zQ-2`U(xQ%ye~Kc^`-GiJHC+~=*@PfRrqOHN*8$&>djlRx8CumU2fZB&0Ol2D0B*q- z&{lq$^Ty_3d%VR?q3sYBG5?V)N^t9^Cp6kWPr5_wTI52?6JEu>lMo*s}g@0bZ42GaN`(OD%0|!S(Q~W@3 ztLsrkw5w2nl+gW-Z(EPMyk&Rt_9g3;eY3uRy?(3?jbRMPP=mVN0vPiCX5jt~q`vsxlr_vHSeV z8MZ*!L&2E1%)xlquAD!@9^ploHBTAk@AH!&#-!O$X3DTa)eHE2HHl_52jGvOI4M-@ zLPmYnrJY)g`I;lfI*C%?pYf@i5foJs|ojnM|%in81&3SICv^%?f! zV>$;i3V40F2l-sz22NGtwj(Q081;yfZ)Exekb;zitb&WBjO&E^#?==b0^7~){RT6- z62nyUaLZjv)`$=p3S18H$&K7NmSEVIiHaVg{#w zrI+_xoy|}{3lOi+OPih6{ZiskZ_mL*;;!DF!wCucVdUVZfk@=8NMsYrz320T2ScGq z^k6g+3LTU#LzhCrKI?LInOoli%No4tTn+X04R}$&VAs^x z2*V7@IQ37=CE{oyo$;2L6u5QvKn(;JMPHE57p!@d(~(gB+&E7TW^<|ubw(w&ysR$k zNgp|Ob*!(ipFq(4eV7-ytdeVM%h7^@Ist|`O$_2d8u2U%!%UWwe&oa6diPV%T5A); zA~$8hFLqIz2Y<1`^M{}HyU-ZKTlPhG9NS1#JQ^XbnZxR57ush7;yR7&aqe z+Tp@WINb2P@!%)mY(sG0L#FxxjG~dkOu;0PbGZ8SYXY8v zVpPIEU=5(yR$4M4{(B4$R$v8vb7C6VXoYEp;(x*2fnb0<4|v%f41Ddw6geVNVty(3 zeexL*BL&6tp%`0{S_xRccCK^?enIR)aMS&i>`i@RnSOTSV&<@Rswc0=;fNAZzj>C; zW=FE};*FoAUU(5F`0#WF>4W_2C$FeK>D%UG`;V1Yvcb$h=@?aX9g1%v$70QBJJc|E zzVwW2O*!LNgCv(rAodNF96_^D;4%>oDY2nJ_fggny68y1gy+(7G!HI0d>$=t@M|V; z(sa+7m@n;vH-bB*l8{I6K|VfH`l zTsfx(GgSoq$iPG%JNP#4+i}x0eFD~-M1GEu{z8Aeu;c#wcc31*Rnt{|m&*{6<+R@4 z{mCUd;)0mT!*RM}1e@`#+aFWvtF@hhTrTi`8lKtWRTbb2O-g95d?8pOMJ>!zM;J^S zM|=Bc1D!o{b3Jry^{YO|1-`8g_mB@)1Y=2&>I5&tMoKzCNZ_{wMiNRWRC%cg3=^(9 z=!4*|ET~AiTq;O;c6kMkQ2dXg#AvjD80wM~Er@dzc$|RNd^bM_P_TTpj-hqK>5B{bH z26~fwq~#kQ_J+f~e2o^d3F7hDOIK9D7eyQl)Hf(DBt(u|mppoqMmX_l{iC@=cLiS; zndYO?Y&H$8D*RW#c2PN($*lT@zq8Yyi$Y7H_lSr^w%)pjwFeGIZbi{@ zDh%_zoAWH__OX=!s_Q>T2nz+Pb=|Iwk@D0)8(rkRr~3 z(WZ520XSW<@re=0u>O$eBmnQA!0v8=L)u4LIdl>irJhmTk%r37yN(fpZ$Q=w)8B*5 zKhxYy9n7hD= zmHS;#-vjzu6IFKNmI!woVbSy1Wy2CDho?^{s0)j%SYAO4>C@8U2`mR5)j9fzIJL|pk75QU4BM;Ga*i}XlKQGCZw={fg4DjF;~_r4pdsH* zGFM36^Y0H25C8t$tz}q**H$XCf$Ja+kp7hNBqk-)>MfoBVC1XAKx&Z<_h0zh+5p`V z_fAC*unHhj!Y;7x+EVD(is)3TGzFs3`Q+$WI+>i0MuJuEq&a;UFZ#Q>g7pn*w4r{W ztILmf1N9ByL$42Zbs1&HBBWE7$a3L2QWA_+xHa*@V{#6Rrf(E(h*c;+?IzW3Sse$c z(Amo+fthK~f33`+syr9ADBKG~XrTK`W=2thM0YGuGPTibfpOEZA`M`ksmiw0V#Y$4 zgrH<`GZ;6Vn`<=*saj( zaKBUC$Xae2^Sd3(ceSw!{GZ=0jS|4-$%0{0pk zd|yI8px~!NPWmXEfQ12pGIFrdjU;)q$Ky;d`&@vZj-0JzJmi;xPtbZ^(AEaRsgpKp zkWsP@TYx&67S|9eotSH=uOw_mZ@ zqP;z#5Pzx;CjsXv(qq@4SIIFT@ye?@pR$QL8(4v~EBwFBmOfwLvs?%)^1Lg5pwA&zSWvH*-&`%O z(DbGURTG4lsHW_j687!pPo@p&_T|UWb{3dv;bU33io)$&y*^J1WCX3Usbz2*Izrk`5)1~dJ1 zk^TCxYLWIg)|JlIHn0PS4@!-7(&N?!37fbVD||GaTwC2Zk^mJ>vxlJ9X=V%5eQ_71 zq3a8OI;}xsT8*aGM_{~m@SxS(eR%W4w*0n<&4;_YYgg}3pXBM*U~49r!)ho7SZ>`2 z@@(5obw926E>-&6ye&VqS^F`B^bc>|oGqteBhUqzmV=Flyci%a0_G4BjB;M}$Lf#0 z^4yJIdJ6?FACncx5#q6@Ig98D9PB=aL4KHpqBa~i#%Hy_EM{nFX*uEVA0b)7l!1X` z1Ng&}F~&HDc)Q?)81376;LhKR;qUkEJh0PH>rB`uIzGDzvymjF6_nnoQ6zi!S@oh( zexH?YUfFbAxw^oD7R!vK)uR3g#9R=|r6QclkeLcTXvHV^fL#>fL)b$CM=hDYZt9WG z$u1xgJva+uHsogw(q(l6^4Y}9A@YMtXR<7qQGcZVD8s(d)|1%s+)%7Fn?UW=E5pMq z%KlB3J_+)VhtDOpIATMWwj{jiE5pA(Lecn&EFga|=j`V(%8=&p_iORnqzjU3wH||U zMd0#+fbb~XmmeLSp@O=)#&($knK=R45#G&}$Mz-xu{Wr1e2vg~g6(AKQ*BN#d(uB2 ze65sIhXsi0PfLX`xWkcTA%Qfkl)ns60!4=Cp`hA37A4FTirWi(Emj1Dv1B6|C(>@z3-Pz z?Au3c+>Y&oYG>7G{Pc3c_{X|7>W$w zN#rJ@8aOE;EHBuv^Y`BSQW}3R-Ft6-3lL#$+%)jBX)>dZ$IeaKT}tfhaPh3tn^v9t zY)#ETO{3YH{l?STr#1fW)ou6;4j8DZ5yxa%as8%XPU`U>F6aDmAPGO%>*3F-e8#|QzWTDCcwn7i6C(xkZXaA-9_ zxafku%dSU*>QP%0?EKMYd+wGbDlIJC8h>~z3c{d@#7d)ddHh5G-|@CmaIbr7pV3A# zM6uL=-ygQstNz6GW*FuboP7t-DwHw47wxvw3>O|EJ0>{9Y8n~KNrD9k&BaBY3vLwR z2||lu<#$8A>IzN3uq~VZ;K6t-wzI8m>ri}W?vY$B9-FF-_3&axL+#(mnR}j;VprVCnl(d@wXH zg`%Hru;u<{C9fIj!W+`T`>DqZ1oonbd^5%wCBx;0@+KR^3pnu__s(lwm-N`zqhLB& zBWR%HU&tRrP{Z4OEW4$go6MqEAdBj+w5zZwyljAMhKDgE8ng&9z?|W?Nsou|ijm@pB zl#AnSPtE3>`Mh&`{f;5_K(wpNXR%61Ps_>a!w?2FTAWM7Gh&!ICdb+_jb>uUt%_+R zd6^c1Kp~;(!_$X%A5ji=gdg59abNd9eaLOK*Zw5`3vE4Pzq7D#ec}4`g@sC}W9ncb zu{pnaXuHED%SYaR`W1csEq!D6!pWK3l^kBs#ya?lbgubI?G_CoN=QtgBsj+$HHDyg zK5ZYdztMZ}d%@w!naaU|fep?Oo?n6+6qLgJA^5ZOXXF&ZmIH!SJ8v!C;KqQO2w|+0 ze)V34>K|m@1GoD78N^tW%=>63c=cFBT7fG;!W*BJIQ8%jnjo#y3S=(j9-@j9K20Nu zhkIYvgmoi(SY0xbF&OJ$u{j9cjqtkEjybd=!rK8zXBg@m<^;8)s!x;y?@Ri~DgZPq z^Iqv!Qtf*(19Y~Sc|T8GGPGOh7evbhjmC;)san6NMwCh`mo8=W|CbEFL&H|_kII9N-HK-ORST7g==PF?Ff|UHWI!6c6b#T9!vNf`6yTaNl7*3;msYe|0+-j-0a1YuqmTmJkOOP9{~~kQiy% zy0&e6Mf(s>nvhuGNbQh9*7k#)C~gJ$EHjndxlyo{rAWj(f6Oc1-`a z^gr@%gpJ-oTjO9)PjGAq0?=W^OQ$gQ63bvb-o$v&T*7Rod5npNIW4`3$$9>~dWFA8 zf68A<&+r%iy$HS+5#J+_GPp+R+g8bRo~HGA{`@cbGZSxczACxkpfnBWfK~`OrexpC zzb}xunuNgNIG*Z=(Dkav8@CnFE$|1!MqkNXV&@gL?-K3{DS|hkR=kvfcU7E&e60LC zu(;FwOHgRTxX~`DeF{5|BcZ-#E}^4BP^NQ` zANR7{%IA3~R0QcdEaC$~)g*`ks{M2{0OsixkmyEdBMZP3Lw+qr1*+I@~wkY_~Vh_my5P7Ddtv z_Y}|=Va><Xdmy{l>Ha!<1+LUmiHu3Z>x^CirA_dIxR_ z6vQ)RQ5IH!V=?-EsIDMTLFH_yUipl_KsXa)B#DeAHWGNM~r5C(>L4y)HX9p?*?F~$JgVkO2v z>jK4K5%m`FAh)FUJ@m}P#4``|oin6CBonqx23-WV zDs(0wpcnXi=?;GV9&ZcUe)cmPZ~zbL#>eVcc2&$F)a^RV4!5-7YK5VHl1)oFT!Uzt zz+>`yhJsL4Kv)tKrNOv{2pLK_w8%UHteU zlULTuWEbG7Y1}}V(crAal=g!Slg@VW@yFj9AIEE}$7Yjj>W;d--kqB^4IZuYH1zKo zgfsez_w;G+yz|VFBWIk<#g7~x|I^36!V}du?dfmu)E$j&+O)&#bsw#(kr5o6-#_q^ z{R1C(A9=(({{nsQ1wKz`?$a1=uOjZbKKl=^!xMc-zNrNW-1@H=P=jzC)g`}tAh%`TV2!yVhOl>DYN(fwfJN?15 zHx2Weh?@!bPpAXj(#@`Ao-Vs zrCcED+Gb1pcyE1E?7l=|eyFjbXS_q~U7#a|$H&jzamTJ*cieGqe7tmLj+riAg$G|< z`CG$5o=wd)ZMMgWG3oK9wwmUU$MEB^Kwy+ekVXRm_RWjTl;huDHq1Mj=SOi(3lM_a zy%x|e!3eK#fBMEZ@Ledmr>>w-^+yi3)JE__x+ipO39V6tZcO@-rCH7V-pPm{I$xnw zl2o>c(w)!}E0x`#Ao4k>+wSZA9$zHH?-j~xgajIY`Z<$vk$`0ny-|S-@ld_20QpeL z!jI@)v_$E$5+)dAwHq0J7W_a_C^KCh+2&>uWV>ZYv3MB;mo>VI;iI8!XU3<2SQMd& zjoia`iU1sr<^4Qk3UHmi1=kdwAgT$0>B>25!E|7?YecrzB(g>^he=Qi^NA)aQRpCf z8`}Aa*jSe**J$75KdSbpP>SGqTf75>BGi}pzMCd~!1wB!YqM>!4w;=8dUSf^ZnS4} z@8~`LqtMDzC|7X2$!R$#*P7YE&P-48p1z~>y+?Np9|>haXpn1kAp*tM6g|GxW$NYL zT9^o;<=mvJkpEB*$b8mFh|^j%(Mm7a3a}T)V<}M-G(bf`8$1jG>^LQqMp|I#i3DC=xOfq#>kGJ_?qsN^K2E*l!&^#43#3HgL>N&cK zvZ;{{f2%T;kl<@9psXEAZ_)&#I-H1eE+Vmb8Fm&zu#$>UI;V>w5**U;xqY&TERrB% zy1*f5dPW4YB}CvYyzn@x=7-YBZ6Q!0Xjbi%xHffIcG@3P^R5B+uzwk>$Y1IYHbKRQz=}Jk5JmF?-kzJLnNb!MoRea$S#>@C`{oBo z?Dk=yBF{zWdLPZveQPXME8+i zL!}v7#H{Ill1-!$hRPy|B}f|Zd#bFj@z4R(MJfXiv=o2x(JDauK;)2Nj*nQsVM&g> zTT|n9?@y=LcK}x}lShA%?6fb=?mfgKBj8&{M^Ib4Yp^aHI~vAP{z{cPI*5d>==WMf zj;V>wcXxZ)!ws(bL$kBOWSgCZ<8d!6zlOS#{sbbx`Ht3tuYK_0sd^W?cg+=^?oUzA zl5krNet$O6f-Uq>DSm_V;eT_%I$n@xXrdul8@>ezkW0>mNMsSrl_da9%G$+O%o% zfV*IB!ExTeJgY)+!pDi?Fsm?}WH&|Rcj0T|e8>UP*=25v;a73}9q0wYz%WkQ5@%1y z?>0I-Uw;-5))^=xV8?nU?iso9bKs{iuOS7Hx0wGk&!}xD3u7N-TCE|ZC)pO#Rz zV9u>NslX=Xan5FrPjt3Xq2O}Yz!rv7pLAsaTr!%mvL{*85>XZDoF(YJ3VBGKM+5R1 zPk>!EoTN14jTMTbiCOl7dU9xsG~wFL58ct#4d*23TQ2Ag zThPVWZWRvq82YN9@W<_TmpmXU0QPTc9D+_xa?O#|AH` zk5yfw?d|RDcXZIxo!N_fk{^b~T@6#g_|dW8*TaTk+|Cc`xC1Q46SlzT0mmk#*70H#(o#?I;_}7OUI~FaX))b% z{bHeT@p?}hnh>p5q~lZm68TyJ9MOU9>EUX+3H5Ej^ZjtE&{T9gkdN=@C!s|OSl+AD zb3D`|+6H^RP&io^>#XUF)txMquIG@U*EgD@TyTO5@uT=_3Cj`N-tPCetFJ*k=8(!Y z+IL;ODy{`#=3j%H;F8e+d5&4`2HYDsHq?i}J1elbRXbO*v$HSk-J8uv$Hq>LjYXBw zKTHddh^jU_bU7DKmPsW$M>_vEj{?#qC`QR*@lBg3vA`sa6CSIOxZ`kJLH?| z_7AOFPOitp|Db0AkT;IwUd$vSE6y_vdljsqn`s!KKVh}AsnjfcoaUq;Sq&R;3`|E0 z!C9V~odu#(dOL;e%S522~VdGW^x2 ze-;$lJg%ZkMwL36%rH7|VOM$sf&E}D9*Z6BXG^w@CXaWlLkS&~kB8WQua~f``W;Bkn(KOy2&V!@U<#a@*pg7)SzjxXAw>0;D5k8qf3B?0r4!)6$-=yQ2-`MM|l+TgohsX za|{`11V}c)77@I=E{;-5g#5A?i;C?VVt%ThqDRGHbtYK&f|7kl&W)W;Ji1*3kq7!8 zk(Mr~-!trZE6W!1?DUPRsYm*8o#5F&wC!x-wE6}c?H>?9>5XtfIzjoT;N1v*%}homSw zXZ7`-n3|fInVLG$+gqzXrhE!kPq)|G4Zd~urJ1R1_xpOSa=x|~hi%)#&fQq5?GJom z_pbb%yLW$~pVkjry98#S7Ba5agm_p$%&xRAAaXa{8mkyYy#`O#$8QZiT?$W(BxXC> zYtiG#h%r8L$lB4qZzM4ho*E~P+ghDJjM>#6jwk3x zkF6ghA$f#2GU81l*Qbm)TdS=`?r9_Xh`rX*k`4qSkw6eU9W5mi@H&Jb zhQzRvgRc6{2CAU=SYNDGvGjVD0F=$KT=7h2Z||;wf#{y!No9P2;HRR|q0xB!E)WKt zk-q%w*jILq&PU&XS%71gp6cmn@2{^Pi)Xq$?!LOZhK5bu-v0Br>~K1X_WT=oufQt< ze;*(Z7wH5nmQgPj|B$}V@)`AkB@_97X&t-_Z|P?4FV%f;P!V~VEKG#5GDgk?sE2?) zmNg#!7StJSBa<2-E8cLoj|??+*x%x{9XaBe_8dN9>$dle>`AWVFS(Ll4_v{mCE&AK z!ya$a6^n(>hGQ4|Mr*-uXsI2ca=TOhVHy)i*!2uvHCs8 zjPQ>VTa_guSi&EaJNo0>c!H^11fsFXknW18B(Vkq>j=Gh<}#6Y>Y^wIsG8C&G{Gz$p*3l_o9J+-{xloMB9; zFe^yG@=9alaKArBEr|L1hZ`HILithx1WqXTusj@%?r3kfd8w~nTYLMC!Dw8K4*Nkg zfaEbZ{5+qP zSgz?(fQu9=H=4mEz^WFzwN*QYeD( zSbWKh0Rk+#B1cC100)h(l#1AmJdgrE3|1Xr68IAOuh-FVBH{}>#ehli^CdC@Xo^Ee zj)6myN9{Jl!M-Y+M=-Q&l{6&juxy4`$a|L-Vy*0e^Any1t)K>Rw`;XD>Rk=+W+wN9 zhS-uY0Pq$&M`uDq1vrYh-=E+NoYcL-Q`HQuG0N*97*--$XMBeDVqUHzOQm99bo3sd z@1`jhtaqvZIxw2Jr`K01`h53{CW3qw+P#bQXv+~>tgl1zabRH~zN?cl{Y?OQ%60X5 zefiN}NzPbd4+>5#ftjFsCEHgs4p?KhWzJ zUnhpCyS8KxUcYtEXzN6Covpoj6dMz*qgU(d{GAoAGh2*=?k0}T9 zR;{5L@)+4X@nA4e$_IiEPHc{734?5|p+3^vi#S5Kw>MJX0NRe}6DLq+UC457b3^~8 z-yc}x46p;s8i(01*ixbDZ0coLd-zW-ZC(t1^=X&5DzRcXIr(WSeH-NQxz!iN!POvP z&}(-SSD82_L^kB+fGJ|F&hJ3((r&j~s&%_}BaaDeI6*wvVnaiu*9X>;u&+1L(7*~b z9@I27R^QOo+)^Kl)weWvHPo|0G7uaY!I#9fxXdxcl(RzUP{1G|^2*~QEnLl?yvoZl zOMe`Ld;iV08YHFQKkPN~Nf)?%N%|9Em7p`h{lx!qc~x<^B%~FnmJ}bRxu=y>1sI*8 zJyD>gU^!P%U|bdnTd*6F7`O;jqR>l3anHASg6Ym(4(3&{n+?^T8{v3M^LS`r2qhgm zS`nFO^&rZk{%zmr_i8NMPF#;>`cDx+Ne&Mm=$|5pwq{9zG^A!Bhv za_Nd+(E`06D?5hD%-rUH%Nzg@dqqJ;dKe7HS)FsnJsWK&|-u0&#&r2e2a+Cg%xeGt3=OeQJC z-yrTGOA?E>L`yhu&z^*}+44=hojz}E`4cD=g4Duc|7LBo75~54jESS`Y+nVU4C;Yl z<=_|(#GJKq+iOPDV4iUXk(R*-e zYJcw{H*zC`bKz*pX4^hGHY+zJCMW;-r#__sd3mI>qoeZ(>Q|%^qxXVDtYzxRk*Pa= z*PvrJVx7AKd7Ag|)s@U(GJO46=GcIva-+E=8wTBI%}bv~z)hNK$*H|G-bgfi@$*`zn04u*qoa4f#G3W?L0QQj$qbmp; z>4ONg@n<+YZ3V+zjh_FQQtD$%qE8@k47v=p^&cTq^}5_^fl@wpPYxMlRfg?P(8Fb6 zqZyKQHTGy+V9mElHN8v$vm*rjkJ;)#jPzI2KW8J4Ji9DkWjo(~qIr}PmVAT(sP14QFvI;-69r=wh(|x8d(ro7Dmw}Jm zAxgW$0S)yv1jS5LVuCXc*bNPBsDofDm6rsAsxa^>C4ul==y1fjE`mrpySZf23Cqnc zmtZpgadc!L7#u{spQGc`c1um0)0rBWpLhFE;YrzVjoT?_8}P&3+j4)_a;>Np5QPx3&yS zIGrArf2lsugE~%ic8kq6H00^%=<4c-dOAEE?XEVj&DPY_QRlFA`PEOaW=kizP>FAw z;8zt!1R;*fTJC6yxBy^85YLoa&}>*K0;>edfCML>Zjfra4CSfRz=J~7FDdSBhG)u5 z(6l6Igz?HB*V)AzNO&j|N=q`zT2g4QfG@&YLAEo}6){(V1j4)&*mJ_*P%bvbP7I+% zlyLNhig&RXPfrPW1Dsv5#h!yf8 z&|Gi|yFGtRjS;e3v_t_%gdw2o;lCD%hi@M$pwCM90bE}0EueALw-ICJfeSL38G`KWJp{4wI&n#P$~oZd z80lb9m(#V$<#g_Tv3|g#z7b?EklPE>SACez;gR9L5CkMivsp>_>s@sVY&KZXsW(&WSJ_$;G?cd%+FJU_@zF<^>8%%Y zFTObSQqIsf%E{h_ItqJm)eJt0Pin1E?|2V!)8qaR3rMdq<4|lH`bL$*KjX#UXQuC9 zzefMm1?p);Tn06~ZcVXud%GK5%%Q7fe@*lF_uaVD?L5nXI4#h|I*vW(YYQBKdY%x+ zRv7REI50%Lu~O`|8d*^GoiL?88)Pr4M|uLHYpHun|7rfd`9HnyzWLPA#NtlTy^&~N zJQJUgkE4S>>r8m2P+V1f;%uFQ8xL$STij)}$6y4Ui8(Tho{xal^BAfRU&SJ`j zr}1EK{2+GIbUu3NV_x24`V?l9%lrq_*FOH$?a(JN`e*@0{W5SNe}wC61-fwrSlA=D z!sIi|UA182W3*Tp-+&vVEd|9lI|l<6CNL6BT6 zg;`sCLN$%W$B^jKYRR>4_5v}K!=}aZytXctbT;{~NJJw~J^@asjf55H8W~V${3jtB3QGUlh+^QlfQCUpox>CFFQy`f{~q zehH7F(n8OWutFgKo#2dQx~P>y*z|U+M`gU80q~V@V3ZRsGd+VZsf1>5JA*$Lk&y{% zf-gx2OD{`QOae=;Sb?DotSI!K=BQYIMJ_1$?+F0~Rf5zBdKlL`{Sxu`459pZu-i?X zCc4X$XJr8zz&yMmC>)pYztXrB+~rM@h!|5k4P16ZTNM}{4wU_`i<+N%68)~0 z_0?>KNO3It+16>^YIZ|?4JH7?+AUqo7_^1njD#cyu?VAJ?nky;aM~b+$*4&=FcUad zRi6!FmX}9RXBN&N)=r@--B#3x?wStF0zngI3s4NzHI4Y#>ADo>C1gs5F%gR@^oK|PR%tvB?T^!gkoe?MX) z0b$jDbhiO#P%`Sz9s)hU`m^C09rJS>vq2M}hgRi;A*QH1g$a$POZ#9bREacN$)C-Y z8RV5(<=%EwcOVB>u_#z+TblkxY=9xF@|kpR=;*LW!7nTo3xem^m+3q&SShfT4c#*$ zsvF|~A)A1i19porb5^iQl~Eu-;E?S`S{@wfcoBX<2op+aB$)!yjTZ#z;TRJ)J4`j` zk&*)b9kz5B^v?=HpO5%X@0fnr_el9Y5)h{|N1MIP_k@2 z7%u(+BcFoH4zMmtw!lAB@~~Ltw;S#AjlL%JY#F@99bvm0ZX6I{#Zw15Qd??i0 z<8ZXdHBF0k!N&QfCiZxF3u zQ13aE&@LVRXce#MPC;t8)Cr?g9gOqqvOS?L0|v zIyUshqPX(qw82;kV?@3M!37~fo)e=Z{v+_haZu{}Qm@QPd8uBV(T)`{DAGyvJ4M*| z`i#}}FWz$8B3eD7@H$3I*)djJ&ohtn5@wjzGln^+qrui((HMN`R1uW^fdR0N;rv?Oo+XV9~7S|RK% za|-D;u8zqv5yq-r0IfL0UkVd@69Z+mc;!JdTtTXH3grNpHdR5NRxpOdZ*7H~gSFsG z5*HlfsuJ1g#1C;Hx*Sy(BolDnSbSwreu4JMC^;_h!hlmBlxDJ-J zA+i1?90qU0>d(ZbfmJE(BjHRyMMNfP9<16&G@u&IH5RCwNH7CKC}Ya801}on4fuG7wPxPSNLR9| z>HX|0R30@0tL8UoUxxp}E9|@qaI*M0(>gc$AxCG26A!kR(SayruwEqY@lJ=cgO0^GlU_`G3z&S=YfY(#JCOTz zx&^RRU_odn<&N-xBaeZ1GkGDhH5bhd`(FUx^maHIa>P1~_e;cIfg6-vn?%WoCI7Jg zLHR(+@dvxd5?#j%4!a)~%8cnCWM5@frge||oI)CQtDG>oQ4q{Hbbj77;Yrcm*0mO- zOs7Uh4h4hVEpGRCpD)OmSmW0j;s3j>x5tggf6-nwzjb@uZK<&}4*7iHP@jLZ+tX6l zS|?V54Z@+vylw6t{G3;RrE#F^(am%2fW8Xw6*L4Vkx)Z8uqIKp7=Upqdtm#vPm{Jj z83~W1Px$*zj15O3lcbJ)dfT=;yT|rS=1z@|Z4o<11_nmx(8%zX@v+mnNw_s=eG=#F z!r1HhcMa&^XpR8LaAnEGJDA5ncF(7*!Q<6BRR$6Ih4)r zt+{G!SoYS2f9;Nmi3f&;hI0AwNMt;p!{!4M6L-`|&udK{8$X36kEPJ1(_`a?F45Rk z)|3X+k_7_3!m(-Q=wIH{>Toh9HZcN}WvY*{vX7Fjyx8J2rs0Tf-{y|j>f4(sZ3M!W zQh(W^=CJ%vFSciV(NJ)L7qAP4q9Q!uu)khgD`YSw7E?Rj@&&B5ZCnDt@g)>H_;aDW zQIik>1}D5#gD4WZLT~^`Z@ruSe&Eo^mWMVSWTunwUe5kzvr^No{=@7Sn-yzk2NDRz zww&B_@FqT-Wr6Q!-|g%f;>ULTj_nR^XAAf45+nuj0e(=Q2~ty+eYF0yfX#ubNl~R{ zs*5}dYz1XSz>by4mZim?RtKbzAu@nHR@#d_+}QQuKJycDT&5rbnZE=fNBMBz($R6M z0RqOagrC2M@GNq33eI()bVmBI_Zk#dz{m5d2}j`zdC&+EFE&u&OSD4)W`|1PVhj2N z?d3drbya;JToBbZAArXi`JB{t&Qpn%*dWd>|B+rGV@2o8?{yNf z10VuGbWMc10dD)U!mt4t4m1jbJQSEcva=0qv9a=mG1;j4_FU!hE|R214WOTsWTpoQ zgovOex3Z47`z{?s(wkinMSr%cTlHPih4oe!^iub=bYU&U+<_lL3oIq{dy?o`u!6vT zA!z%C&3>%4jeu}@LK8OGM%%jbo$itRdfG1gv)1A6>Ep+zNwYv{l9VUg*A|a^)E^_Q zVEH!MEO025)n^T%u~Bm!24I4|&}dO+9mq1lOrCFicLM}ldK^HJV_pE^~<-nUX^iE{yxO`BBL9y<$ zgNUAJQyH`xsGYb8!On{Z`)={#MYT{YUX;oE0j(39g50*H98~d}h{aZZg#tt3t1=is z4PU6t9g;K}r28^&n#IVtqC+l%pvJh!IedId(wJBI_S{=aWn_ zUFjciIj4tWEI5L!^7fJ8FHKFI8xh+d{4;6cO8=)5qp_iBmy>;v$WDGaJ2}GtCbM6j z%qBj-g@9~d)E&@V?=<}e zS_z*FL|#Zh*g;sHhVO>!AlN5Jec-Q2<74^^(Re$YHb{sI33xjl4Yw&|q!l~N_y8Yo z$OZiEXKHG#=4arW**7uoJy-AblAq>ndOF^@sp-YW@K@`-PJHCOceBIW@C`arrth$Q z;$zk*K3Sg;*%fxTMO>~(n>(!DbnH)V+Vi$ymrD)hhlcX(F9&A&o%=`CrR07`|DH{G z!y)VsLUXa$+?Pl9JNst_FzMDYPe_-u;F?_nm#*&jCgcua+}!&Bp%mZ`p^=CMn@U(~ z53IiUlNNE?^92~s+7{Vg!tX#FeNK_Lt=Tynn7V7^Z9h&4#5`Ra(+(4!v;=+^Rpo6< zbCf-t0>G9QFJds@afA(Ww=3W3?M83MXhx|1p-I6 zj^65ap8bgQ_v(h?+HRZ!Um0zqy-n34iJ?i?MPR$caN#IC(Zh^B5DmACn~&revBdFI z7wF*9Pnzx7Xj`bc*V`O)M<$z_Uo9gT*R74ldbDGEdz+glBko}HtCB}Y)UI1DP1xl{ zV0~!TuO3j+!Lh=~3dQtADhm=Tp+qBxox)V)@WHjmA}m(+%DgAPlBoMbUL_s^aPi`W zw|bU%owR7RU#av9#H{gOBJv%hV~J#};0P1zj$3FNqTz%s!UTZ>n+ylcP%QrV6}C*} zWQxTSN+Obi4f+jI9H^WJemlXPYTO9;|9N{8@V2h&Ton5p0Ow$y0nP*nfFQvMBnW_{ zz(JHm36w0+5(Qg>ZCP<-TaoB7j-0`UoiueF->(hrs7{mg`L%KCQu-R-Ue{{VG*w); zFG+iwG@s1oMY?%;X>OY9rfQOxCcQV}@%z`_=YWS4B`ay)gGAuWXOC;I;a_X1;}8>3_HU{%F3Hy#40x_j}oQL<^F<1UD;i@KeP26J0g@tw_(S@UcZK9y(`z2}Dj^ z=%tZ$v7UhuIiG~aQv^uiod$^x&m|o~59c*KBD=IsRXN7K{_KKqxht$qjtDXjYo@lioCbj6JSe*J18;?dylZu9#mq{Ej`&BrO?e~ zd$vITe~>o?L^sg}Vk`+8CZai9*Mh0%V>2*Tpk{iY;kC#nIC67r)4x*LP2qpfn2}BK z?5eGD4NR35EcA#4w)%g=oOf9cSnfr+OcGxS%oPbu1NieHoGT@4FOX~kQwstW4Nn4x z1>#=-+cgOqN2Yun0`bKZq~!qyn07{w5Qx52GgpGiNKeo0=&;NGNxuvU)F}@uVFwtB zd8?{A1CC*<3Jtj2FG?|G&M?+7DQBgXJoTM>9QU0_MDY%Qq=CW zj@e|{HfD9&qmm5=Rk_3Jw%Z-H6u(A7lqZ*M#EQ>|&1H`=iC>elIqY^f+uPK5%h=d7 ztW*e59)xUxxogDuGi(=kp>e+?x1)8fYAx7>zLlGK?6b zBpXG^+RqXhWD7D8X41$fVyo(rtW-UH{4_hy#{+Z~68KRI)B?m|gEaS?ubp2u6bG25 zL-Sx@5ME6pJAy&$tlZiU?K2_4ZZPa83`;ct2pBwt5YO|vaeIj%)=q33^|PbBaiLa4pvAf9a*n$Fp=n7 zc}9AqGm*%7y<$!pa*OE04SNuc8(5E`ph$lkKq$BfN@YfG?U&z#Xbal_nEqr4i-sJ^ z%LwqAJ%4`b{QcU?OZ=D3iL4x~`d2I8g;)%p@vkJf3JUo__?%JJAB*7zz7ZnY6kXJ? zEJ6yPIRDbWwKq1V9AM0W;?faaPDiS-vAsMvZiatt$}i4KUu}*jX0zQrW}sS6cXl=r zZ!UK~Ix|_MM1^!$adPH8-M>YODxotHG?-$qgh)Ok8saUw}8Cg&4* zI&O@Y1&H<+hIf%nzq26sKtit>W_@k>0s@Hd8YXES2_M$lDm^?J7Ole^MUx1H< z66NTs|09^7@z0EfsZq|I4L;J8&^?m=k;(JsE3TY1?IB7e*E3?u6E=+6azD7GASCH5 zvaVY|LCBO0Z7m>P@S#Ivn(-5P6QF@tf0Z#Ie`Ud%w^P(OD0Io9FIT^La3-}Qh5s`L zzbTzvnKw`tMuLLZR~O&g$)Pz>3Pz*BQet=)tVa8p<gVWN9L zjBWweYoN%L6KCz8!NU>Nl$U!MU71Dyh@3g5m2z$A*QLcX@}Tz$V4f)>9^ng_N#iNr zY0k@M00&ofR021MSw`5^UlubcMbF2-{flafq$j@pVDTvg`?&Cn>xvATwpq`;4vy4J zBamVwQ{WZ}uKKK-c67rJLaVXU#EasO&0Uzf;7;9^N6@34QG9mhhsMT+hIU3H9dS3? zPZtqOimN)@@s3Dz7UvPmNWV5en!hdO#(H-b`tp;!FAuCOOByd-<$B12fxmN9*V6)BlOp?F+lUWjW!SSP!20#0G5Yy08UnQ< zLez<0d$=9js3C=Sql!=BkAA`ap^czoibe5DNnXj%bd7k99L}r2a_QUBl$FV4*=d_~ zH+bDZ>zuONCAX*1J!^I0xNQmz^Y)j_63H>fuOvssVX+;UDh_vU1e^&Xon@oQ{~evM?a9kY7moZ@3onPG_tHL7PH664wedPe?Z z!(_``Z&|-CB{L91A<%6@lL9w^Rq*xP^r>7qeIR!=sF$E#oSc2e5MJaSGeygGmYZ6x zrf5q`f}kNGxX9TA>2vw5Gty5W0}xiIj>KV^NFY+mQ$~gW)*hf60(r`KmB1g5VD#R( zx%d9@AO9r#I_2PcJzJ~7a0U}rW$p#Z`@-C-fBX}+_4V=(af)rdBJ^We_t@kF3lQkc3}>#x+ZN2a24G>4jyM605*u2YCx}S^ZTcU!z|jf}@5} za0^*_6DQhoA%iT>r5LR|$ibH(CXcfytE(sU1(2@(uc@iy#(#ExEtXb-(>jS?+H(C8 zY&>~2w3fz*4f@)T$={N`h%Lg5h%90u8SP5;Op+07_?6Mxa!C5=_rE{=xzBwIc19=> zhd=kZ>F)N~P-XU4;M8^7bx@u-7tBCtu-T#rra;;WgY)O%wF1cNd)OoYk zPb8a=pGbEiO!yHo{=`r{Qr%xe)Qc}YBcAb$yO1FBA2`UGSPabyL47f_*YzeYV3pFS z?>P5w0c!*X2Q3NNGQyQVqHgenf+9$-C-H8^Rix21w%6Pt!O<$$Sxpa|#Xuuqas$l4 z7;?nnTmdWEk8^`$h0k@)rw5m4C=$=gfMm>W_Pp|nXS4K}Fh~IqK~Y34JjKciEVKG~ zgweYCO7x>S?{6!5keU63s_n&{#CO;WYyqqMJQnzRup{5yNmq0 zpxUz32ndB|BPNTkZzB6{9;4(CC_VS*TcyUNdN63wFKdaCP0ujY20|@hGae0YRN_#1 z$p820*!-`W$)0&zj66Qp?lf%|^!wOgx|zpS$CtKj2>-0d*s34Wvcg%zJOG8XBUi=H zMDTlzaS_d4ADTH)uLiYhm_lN? zTxJ`$%b96uPLxYq%<1X3jvSn)$q5~zJl%lwL0#QF=71SJ-Ca;PG?bGMZxa9&0iE9V zaN;v0-d>@KRMFP2VBYM)niYX{c)$XsrcPZ2$hRIsQcn^LaSb|t#cbSJ&;Ll4!T$dF z&UCyy{LI{*XA0%^&d&M%{@?9dm;lVCOdf)BtvD0u*O4ndBPI6q<~Q=a*e4_ClJZhAys)1 ze$>z-(9%RrPR0`w+%d1A`KF~=&W0n~2Ko#0!vh1`BH{$S4gyNWfp+$z9z%rh`!UJK$ah60|&KC&$ zp?EH2eQ@&yL1K+Z(|W-bnP5(gW0K{~H&<)32(#}`9sjV4AGb4 zcVMx|(mQ#wSR_N{{rsfHP-NqIRC4jCt7!nlTEaT}=mxBe#B zGnS}{m#c|sUgh)j8h4yfkp6rQv8w^=^9R+XA?p3R^IbWmvk!F zAj{7SPf#$@CVx=|Wh4#ML0FE2pQp5hwG~QQ?FaDww41y`SHRneOKANv?B51vns`;} zJ*?xT7$I*Og7(la{nc4IJ!=M`sWmvYfK9~*(Z9%&wX_5UC-a8{Z%SKv0>6P3IU*Eg;>o4S9xdw9T%-=p8JpY>i>AyW8 zO&wiIAUxP(V*@2)c)op$3@t=UPWzX^lo&RfQuc$tNpI@UqPSka3;%6R_vM z!R>4CFf9-;1y#hqj9i1)JKP3%P_88jlXsp}*g&9g9!y~B$u5VU7IsCl%mrXf7iPp7 zW&oP7YRwl>nBIx@4z!3 z&@7oJm;+Lt0Gy-Mh(|Se9uY4E&%0WDf}aNb6U@GcPatm=poeR+U_xhXJWGs6ieJzG z9x86ha2(~Z!8Z_|l9nRA_z(Lo9kBjU)LV|X#6c1~ zt4PW`k8RAWCCHtIZf_-F-fx&^`TBAp z_=Xb289*ioEF_E|1k1*wDYgX^J`MCr=7sD&e^z36uwT(G#9ATHEa8=`soxRxcwZmV zRFd|oZqOmXE_Q~;05HZl$5v1RGw4yq(eb2$%4bj#Qdt=jK*Yc%h|^G1Mr<&L<3fjB zRs71gU>lH*D(&GH#E(TnYCKpfebY^HOvp}|eLx~s)vd2Nn1gq8^7 z=|zzn&z!Ma(v#;2{|U2po7w?A0RD*VGNc#1j_k6D0a90&o=XJ|r~|Z~P9 zbftpe_;f&{!Fl5jxxY0Qi#ybM;;e@#OYuX9ZI=x-5^vWKE>#Gi&>SmwWX+A_4~%9q z{UQf|Sw<=hNdISBN5@Uw+1?F8<-Op_G>{Sv=_U^P4wNaTX2%3%quYkfve5v*4Y8Gzy4ENK6c32rcdP~|*j=m-OyvESy66M-3I0qT)S4|=(Ot1;-pN*x55(^-zKhldc%Teto zPym%#dFgA?nYYZlR3^h`4`t#jblS!dN?@M}mp_=~fxr;(gq9VecgFQrte4zMjbITV z=EiN>{Br%)GsI-xE_IMfRDS?$`&bKVko|0gzR^9QZ2?{S(tTx6Y=T~8i z*YBg1knSO5IUc&SQeDcjvq%D;1u!`aYvu}dEv{boKI1;(ne-k$}+qNA=ZnkXUS8e1|4GEA+ccvs4kS_8vJ?$Pa&y? zG?;aMUGVMF8|0p1@FI59L-4?&{%?nA#e|~Op8i(A65u1f0X}YN>B8BwaJkpFXl+~D zKE`wP)(xSRsFmpt3QOK%Z&8bB{6ChXH%KcA@fey`vBiJ0^i3bCx4FMD?lHrVvsyfp zdI94VkHchI$?~o+9!8zP9|Odn=^2o7gn#XlggYc&0`YcwpBN`3E6^Ao(C4KNdEzKP zF{(KPYNLHZ86fu{^(i|`-!TpFE$;%8^iSN*yhW4+ zItVUC-GIe6Cg`c*z9=v<+?>G!VVO1R=Iyyk<$e7FEiD86@2gbi*6dN*4-xG`TN2s& z%r^?GoD^+{?ccO%X8WeG{SC2L!~U^N+h;ayLR=)O6WL;zd;v7V27CqSp24*c$BuBm z^`#FnVK@Mmm{L$_=+Rb9!ay%#>9DPd`2(?2@dWGeoF&CLerlsLs zz=eIiDE*`e#6!<*Lwda$_ZC{m*nf&-f`>EJJ{){>pueSIHurwT!EdJ;tH&a_Mo~GB zYg&?a77!tr^%qy%#pL!>FevIc`L1m1rm90Z?DL5RC?D&3e=rjfEhPHW;2&rX0^Y+g zFGydZQ${3l%K-2xc;)Jz9 z9$c%&Wex+sBBPJFw1da5hh=lES}Q}e2xfwLp5^K~2>~HCdNLjc+PaxzMkp3d9W9{S zR*AzRShYCDH4e$Vg15yMYxG=RG2WTK1oKRH( zBv@J+8Ora1n+b3R`O(55jvZJAP0fNSuyD6xU{Pbm3EPJW?EfgmlR=a~BvV;#}v! zwwgTC%-h#ce!xrV%w02c6Fcti-%J|rnY&h&%zQewZy+2r$?#NH^35SyZ>))22WDPV zYlN6w{ad@HlKf@hSYkZ#Jxw+OY(sWeOgi1SN40=;g4CC-9={=Qiv)2WmoMKK#07H( zQw6a*_w&390?L~NcDG|dQh+z$xE4v#*SJsu2xf7N8C$TD2XdW-M6OuMb(V6N1Vy5> z2(SXm0UjQKRgfuM*5Jy(Y*L%o8nCtW-`-)9yJT7F3J=-9*4X;BAJ6!i)z*beMz*@K z)hpYYvi(x(J=-0TvfCH1%88;9m2L9$O)l0cBPx4FQrMIv*?U#B?EJR&LqK=s-|2WA z0A87SKlBuo$@1UqK4r5>(*2)i@s_wRpO5q?j+oa`j7WB;EIal!$e9is^5x*O+FyiG zL>e4nDKmz3IQsVeL=yCg8|$Nw74u!tCV@skU>)#RVnK-5@JdP@LF*K)A{5LE${1+vS89+cE`Zg>T2X`U z^a(OK4|m`Q_va*wGsy$T!3UqlxFghsg$V&;fEC)MKrBR~#>+A`@WxU#Kb*gNI6u5~ zqU*xmN50e8Y*+f4R&sLhl?!Z(muwpzZ}^h`t`T-5s@2NsKx0#b{lip#3AwC$FhYUal)*t1qYQ76|G?hVgqPfnmwjhz%Sg+_{DqhIvd-@|4qSPS zUM2aO`V{?b<#6su&ObGRrCGaNR$8emoW~q7zYlFfh1Z?BtAnI^W_%WPv|EKH}I=#sstxZ(}jg5h`{wA>0tN3oR zQ*(<6s%T!Dk+*_8vbaK6plnF_v{qXy_++6AAsh>=7l?QQBninP*VFN^KW1&^@9Zs; zNn!aKxd_2z@N2X$aeZnBBKqG#QT$2kLDBthp>4u3*e$PE_QTqO5Gl zp;#Qwa4%3w#)^Mo1b@Q6p;8e^8MvP)4t9u3;3!J}kiHd)Vm``gMoE9rLD>a6I(m8z z_Vjd^cjkJc(P*T%XQcFCsnl!U(X5EMg6y?#C3^W?i2yzc{)pa02ko%m>MfNXDwTSA zqmf9ow}>1WBcbqQccK^wH0}b8w%gR^U&4o6``S#uyMHF$ z($?z@gx+zpyK`$a8jl15L+y&kZui(!H_a29C+y$=V&kz|A2F00y)JZ`1^ z=G@T8=!2spL%F%QRZ^9ptz}1Ve?EUtKHrbB$f|T39BjrPoSb~L7z_o|R*dJ+QB%v%3-DJHdlkL!Q3v4NV?=ni{tCsX?nvR=eQ(;C8!R4YA2CoBVC5 z9m!i=ovuWCd%^)_I+sN5(h~g3Z&9B)|5~G@YIjlck%VgDe3U3E0?*( zB=+M|KV;v<*DI%1K7DGKmMNm`7_)>KZ?F_Na)i9_XbfSE?xZym3xM?Ao;z)aD&nS2TEO^E*lgCd02 z2sil^0EFP^6Rdgwyz@n?u7+XSlgGR6Io@^r$tf|AI{a z{@uIZzpDns1}X3$qs^n#$i&}P`Mge?ha zK{zeV$B1X5G7({|lL_>dq6I!%(CpR#{EMCYaiO*_yXZ0P2(yiP{(PWz=aPiQlB7`ws7;5 zhl_x@3S@RZ0`e6>NvVYmeFF;5bxTs}R^PjKL#Q0}2ae392X_{-(Qfk{$MmWY7FSauJEsFMx663I(9E z(eI=yeuBqU5VmznOARGyAx6e|2}X5tk|lp1sOFv^6Z=_iXb0`DVIGlxj;zPoq1cZY zd+WHEy3I=_kxc)i7gv(=2z}h`biVp1peFN`6dO^YO zkY12-1&Z~flo#x#qI0*Ig0Kt4(&D(T(~7M#l|g&c)4L7Mp*5ww{jRNB=9mS-*0$cB z+}xI}ceS^vNJZJ-zXO~`bVq-G&g_cyL3=E^6&K#TWy@Xd?Fze)>*?8wCq1d+Nn5te zX=+o`o;-;4P<~HS6AqiRP6Op*<}V2UNm?Q@!szt~fg~AeuenYx8e5zDx+G=WJ6$ZN z7ktjy8LyYQy;O{w%gP2Fz0JF}Oy3<(prFmY4wh5niDO%~?3}|u$!_szUt3o^7y4KD zavL<)z@aCB1b`ih>(W65VKn0Aer`GfTWtIq_yF3kk>pP1417~pL$@XH;@DspmbK^w zEsC&{XP2N3(2c9K#Z9cd*M*K?ZF$~KM}X%+4AL(2_JT3TxUpECu#(K+f(*2ic)3-1 zGYwrqKVbyL6upK?u~rN$yeLkV{>C1GE z2K;vWBQw5-b_*q@IKeJgpa1+D1Y9SbF7gKt&~J{V5)`rCvci7WU)8{E!}q zg|>do_D@w)pZ{Fy*7HM;O>M3XQUI30+UBXph7ft;E#YQykYZ>$r&Yk|w8yjy~jIH`1Hkds!ofvc2VlkUzEHQO7n;1(3 z+f?u|_{dCc3ns??LLikUzQIFYaff;CIA7C`qpca}k3_a-ALt(N;GCxEi%uIOY0#*q zw1hAT)UW9Q4H!jI;zD!##98=I_EKm2X4rml5QJFxM*NZfT#-vumysxNF3C|!eSbKk z<6Qx;F&Glli{)D<+VPo~=_R_=I}@kj6W`I?tX)}?*YR;OR@0xnfAj9$FYLN$Vr#x! ze&41|x!F`#_dbN+-H|@jshwS$@{&Pqco$`O#7r_U&%)Xy;;k9k!=YbA>tNNT$Pa?M z#|9UjNqnYlq79@^Ay{h$e*_Vt5XW+@y0dWMf>5XeMuT;MphEaBJ`xTb1y!}7BrT9gOm?>w*jC0)i+!R&pR{b}K36u5WF~)> zf-S*Qv#b~XK^?dpypiw^Ykl;&wpS5L_gjx_Almo#^i)fuBipw>w|)D_NDDqABim;d zXSR<#EO95&3kOg2#G(u#ih7I12Z}{Q!ap`SdAc;x(%jrKQkt3h=*-MWiS90)LLU$h zWav;57#YAGzfG*MS31s5Wv`(&`Ps%4Y{@*G(ds-iEd$_Zs%HXx3T~HbVndT+0v#G(?@J=Sbbh|a%n=O~K z4ebu=u(e@RV#l##J1Tdu_mg!SK`6=gPo658`x1_XQ+Qi zfBg2SKlO+buuq43Az4oZ9MTZ1yT^9yICcjc1u*nNa==RH_266Hqhiq9_Hry!b%aOP;>z&EeUG zZTz`PQam`cpYpD$6v-JelK(hZ4CqX)Q zP#mB|lV+bC8Sc>5FP|G z21f+K5CjB=IoNd#z!1Y2CTBB+!Fot6h}@JT^%*{xT8_Xa}cq((=wg8T#xN37g-eU{#rasw0P$ZJ6lkPzCfF<)i05U zmjrD%gm&i5?ez3@WyXVnK(O4^)#urn0|W}FrQEDHHPO_U4+iM4cQ$87N^@^D8jp*3 z@ZuL^OW;6A&qiZw6q5HE%>~#QU9TCA3UQxgeXgb;A0N(sXF3N#!ea@zXz27RAua2} zM*D=m!B(Oz)rrx4>Op1i==g!2q}A(-yFIr**Cj1vw7(NZDQ#)LF?@{Qmm_0|iRx^z zI9r{_&V+4kZCjgLs?|-$C0v0V=rgFp>Ka25vmP563k#?qtz}rz@DD)Xn7mLvST0W- zoG4E`uPr`bF0byg1!VOdq*HXP{5hfo=&ppnw`PRzG{a6mgDV99Kz$?ugi;q+1p~aWDfBMuehAa-81P zdS=9jCru&bMsykd5j7CeSlJmkThss;0XX$Z?J=2qq|)0dtRaRcpJQU&xS)l7kL8Pa zn@ODlN=Af=3k3y;-bBVY4a8Bg$is=QzAbcZ;`o~F0#-92r*jTr<84Hs{||bSR5es! z-wlS{cAx9%Y-;DGJ@*c=pw(e>hrwpJeLbmEkIx;HI#b=g)kD|V)^E7RS@DExK8Ict zL_vJr0BZ6Vo1bGk%L^2gzNl;9-c(hqVtcwb)p9&NsQpm3GZi0TLSc$LA95)8I6~`x zt9F$RBC^c7U+vBHmm2%myanT9)kf09efV_CLPE&Bb*&3{3I=_+w0i=P*%}*dD;8^0 zBkX=n`V>eubh?c@WkVX;i<8CZ0vA6?t$D+);LE{yAPr)c;PB+ouprspr@wX z3wa)sE0fP~sSG9~(o&NrG#QNmvn-JrjBjCtkzR#-nM(L0J`DOn5c|g-J25uDZ&RYL zFEL%dbt<1YRi2$Xx+Bpy6&>NxRIdDBSXwT^*8yQunf%zR`!|ivPjx2}g_}mV7PGyd zZhdISt+(ztHZ_oFD`?L`6ULT`E7>CJt)a+V{)P<+Wv0x8M88O{VHA*?1~HvP!Sid2 zi}GViq2-K1lQCC1%L_Sel=*XdY5Njm^YsFgV*vZvuCbYsY;V1|$6FtoIdWvjT_`9j zH$R5b{wI{SR^xprbUYyo*$y#>F{kw&6dkJj$;QM%9Zf{+3NGXnpi_FTYiA-c+ii8Z z(oIdtj;5xR)3x%K+oz^Z_Vl*5_x7Ben%dsjbZ~NVXQV3@&4zbQP98)c%mDJrbd1KJ zyxL1<=FZN&y*=Zh&{R)$0PZ_eq0s)DZmQ*S&8pKXyVT}fu67fo3#^+3$ew>KFL0?7 z0z1(5LXH;_I$%fKA}#VQ%YW^6Xuo;R7mXq<34Nc_e$(Oa_QT-WE#Ksc;iOiH0-zA_ z`J(I`yVnu(MBMHOy@zDn1-u6~JT6y@p$1wPfL96$HbOH(#??|6W^Id{~rNJcd4@_u|daq=T&)<2>|)?9i7_maW|YJ$qPrlF85D>gUxke*xI7{)3NNxkKLtS$5fOxU8B6!H`I?=t z550SQUuE_r2@oe|EBodvm6P#!y5n`Hi(Opf-G(QGBN6gX(+;-vxLkjcOvT$5D*ToO zx*gl|<#*>_cQnHn0xK0h@PSOj0#hPgZaTo135*|_090oDrt_ri;b2Jew{aV&|M8HFspFxlm{xI+9aEPOU;w$D{+U7MC)(udVM; zUubMBgrDfXRAgn5?vxffi$yN$Qk@pSmssF5p3!Zq^|p`3Xe{u4(ox0=^^jyyJT~nU zP{QUy;ZShLz7_OXCk=n_iZ*l7c7=0jFlHbVMtHzW1$vZOP)#F_;QRfS_q+)iSJG80UAOS z$Qw;)|LUO2ZFk$Wx8AbYT}Tqo2ES%=L|m-BX7xFoKKTjO?u<&?RIlx?wSRyV;Q|Ww z!ylHdfCt!R*80~ruj+AwI9gS|U)8Q;ncG9-S1*$T`Ed}lVgTG(OhNMCU#xu6)1UqE zi4#BiZ1x-9VAdNfDtmM(dGTU$>4y(Iz&`&Am73Nwe58wf-jQxlXBYJuCAbs4SLHRB z%6iB1E|)HDAJQ6zcBpDLof=6VDhwY^j-*mqRb32lv8KPPYf~T?3~cJ^>hJ67DhC3; zIdR~?#OUbQZEdZIuC7FD+ihc`qwMG6tQC}1_yJ7<34aH&D?D!bb!aI* z3m%_am;}I%BHcmI=jKQP+-(KlzQDDNEbSe(d-Pz!{)I7NRB4qgpDQ*873p z8KlTVeERCD8KQIucp*k2$JEk+^;fLFfSv1U(=N94^t8d&jqlZM$zt9!Z?lCLl171vx(nsfP?XAN-ly{af4P6v`_hT%xmY|NI~Pr? zZn2Z`*sF9DU)r-9A7=}zH))Hj*PD;8UU7MW9=Cv(Fz-p)q%Z9+>qn)$*rcPc-}nX0 zTfdF`cs6MF8)|WiEnp0xje5X*{;CnRVGBwZmh!+{;e@fY<{UH7uJ zkH(k*AExt^Nz~w&pfYgWFeW0nNHJScdLcxiys`fP&a>iDYAz+MxN54)rRtlCtMcz) zNH5dVh*zsWjW(P9J#4C}ef)^$vTp+_{2$a9+Bs?m243^u+XTE-T}tTRRd3GoK*l+T z@jOeji3B^y6lP(fMER*nL0xx%C7zrVthfrBuy&A0f>aqoCK7gec_GC+_$}ZY zW1skB!LL&+s6oh7=-*O(=!*frem_DC3N2D(+NK$C^?}g(D;AyV0*%WB)p^OKo}`Y( z*F_wqn8)jm^2_)QHRC4d=5uuWIl6jLS;|_$is6Le-2uTmVy`%*O_|67(J{gV7^gTb<8m3gpBjg# zY)lY28VewA{8d2baQZ7%s^#(h`^U>wmUbw|ZBE78?w72x?A-6OD%L&jCa-K)B$xWQ z;%0tNlV=VXHY;Fk#UOw-vbWu*x~=!94u}0+R+r*y^TUTja_#rwsy(<`R&cNKxXSN! z-z+OuI1a?gaaCIIVcDmEz&r*f~& zX&*;WAvuz7z_VmTy3K^WEj}M}tB)!CUQZbJ;x%^Jd%!A<+g;XXaqn@fQyG_Ks}#vM z%67US+=+X=e#x!SFr@Vx(r}$`AG2)b(OT9GrP$l-hseq;WM(AWK+h18!^Vd+?i5jk z>Lk71N9eW)OS{w*jVXLBf`rhB0zJjh#W&xtXcoWBE=qnRFt;?rX8A{OoM1n5sii`v zmIjoOuKUkjY9H9CK1bKfs!Ixjs?o^gBk~&C+99cRCL*x7?ZIA44Xsii}P1HNt(UBzTEhxEEd&{B^ zw=dK0m&Ns0KgUe?P1`heBv_j&);^4jprwKu7JyU25U@w!jKbyG0;$BHOCq91Cqy7f zuBoE{Vw?E2;!?UKNo-Dt*s=F{-O9TZx7VqB1jOPGodFGGnc<)M2@oZhQ_&XuPSyS| z)`;sh#qDsYcc@OLGPm-YD`Nc@yMsL@@kww_B3@1VS5K=;d6uRMzFIwj4xhB&8CYEv z0?w5)zK#IZ$&dlhaa-n~PRFaz2<(d1K+? zJ|7YUY!Xm?k!KBMCx*=xE*3H8P5!P(w9CJnIb!k8S*_|@7MoYGdu`}2o6Q<@Jsa^o z>x(S9gVu8-6pIJ(-(MGkRV=>S7YO)v$75`pGm86xYO*tn8g)9|jH_MWvbdePK9G;m zcFgMo=s^Z#VBOwt~Gesi&!XL#iAg;YIEA`b}@oo3aeZ_e#N-fzHA!1`V`<#r#|O; zQQi)1uw&ecb|6y52{=&%B6E6ZII+0?JDTBf$!S~Q+y*!hSvrSh39W)A`N}WR3a{Bv zb5Of4J7Ir9dtiw@XLYg6FVhIbw?Ko1x$NPT5=1d0CuGEO$j9<&6Vc?6|1ikKM6J96 zfbFB&iT6sc6wk54QQsA)WmNl9_BJ28h5~qXdL;jGYDa~I;5V|hOe9`I9z6`sf&0(b&wrW^q zC5Q8xL*|;K6WZ#4jYgkj3pm*VcC5B@)`0UDrl7ECpyFiH(ANi|Ch$+7WFg6QQ;i#Z zX!z-=YuC#K1}Fu@hB!WXA?ka};tJY8KlXIpJz{3jw?3McI9ImYZjE<#-ZC&SXr3I| z?(W^mWZNu}3y++B3k1XCbViju>F!u;PoY>A&ng#Xin_4J=C!BWTDzSteX{PEJJpeN zsO`~MOGVHt6Hh#Bxf?y33+oY!bsPv*9)*aJ>hw{A z`64#k9&y6uR^hq&fa(fmy6&Hup@-Z=53$oj*ddwioSHn;*r=+2+qBNwY!ROztpGUh z?(E*V*`Em76$qDKp$3flU~Smb*)_Wvydn-O)?HI%byFR@oox09*=N9N>G~u;WTPDP zk9#feusm$}5ImXc)JPYA3hNH6-zW05x;TM$(*@T*5L%~2F4Wsx@0g1&MR2RMl3u+f zJ?m0eF3~xOpWJvGIta1|3G2`rGY|`kXA((!RxrT0?j!Xr?ZQUqmBso6;0hR*&9pQ< zLpr(gEY!N4(n(V8;=^g2w21lU5Z+;snlX@C88;we?g{a7tpx$e-_d&KSc*$bbtM}- zo+*?$jCeEQa4;5^EDI#kER-~{idSOs1qyR6>~jOd&|TvFfUI*pZG^mf5l%(XnZiPV zOLO!lDvOZ+>i7&!{rFTM28quMUZ!w>s~rNNYn_!{wMH~)i zgRA&~@vZll-Ho0tj|F{EIUPyq8OM&r-WV{n04Y2B-pa_@h6&$?C2;Oh>yVy7~~5S3+gtViy-EkWQ1}24MGH~=FKV~_dBk_g7x{u6R6-wzhcFK5c@$ZONE-=E>z_yi1TD?k4-8c_ zqUiq(Uv)9p1?k-vnVyc27~hrK;N9Andv^LI7V#zg!^8f#Kf)yc&K}P5CSdotiI?Yg z%g2A2GOc0}M1iSiX*lR+Wxepac535`OM;B+Lx?14{(tSQ8#VJ)b${05=}*MFAyE3F zZl^oqA`pWsg3T!DDZ1l{evfAnabscqmsPZy+X=evj=7V~EuAi>)79D1oWw4OIqvpB z`vGVGBF)}#nG6qsvsom8 ziTFG|yKJ-CeQHx8u?x{wd%Lr{5{V|&tMJ1fA9|~)JA3cM_%y~41-Gbh-GzZaTlIa- zfrEmrHw1h<{lUSdKv^&mYbt5OAEELANe50|oQELK14!o?PSC%Ll}bgjK=p75A9n8I z#YJsVTC7}}oxN14T&&D$6>U*YYl|#BJIh|h#g&ymzIYMWYPgUsXmo#tr7z81VgMkJ z1`r4FhayuHe0_~G%5B8%rVJCkSoJ7+_XJ@rkhw4)TK5;ouRE~*0@~*n1rUKfpTZ{? zECz!I0)d0c5|k1j?Y55V@861#d#$|^VIOz8ZlLsftwK=k;W6H37kfV1X4Fh3Z5>oB3q0fSqo@}t zlRzCg%goo2VIDVy7L;pl#1znK5?<;z6NRNE6iuE1)x?s zUEh~~-)Xmh$~B!{`BCp)zhZ|*%Elycc#Tk1$&$zFZa_eCN%q@a&HPkA3AO;|=2O^z z2`8N{+#K#IYCf9>`Q@x?J|_8naoZW$8BkVUkQJ33R=l!XQdI3l)hm^;!44@t$t|mj z_Gz4wKI88Uul%pn(0E@c?RNy7ip%B-xT58l8dOw|8lDO}f{N4a@J`2&$xaP8oA>&m z;tTlvospHFPb0pX&FO4}&$l$J1{AAXWyCH)<>yqnGMnomF^*{6_izkG5<9%rXayH* zl3`^tq%&$*>EmD=LeXdl1kcmpymH0a;I(_i5szKE1+tE$#zQOZp|}bifaAwMc0dTm z5$XS?BQ$nN|6<`bc&o(=bm104NP~nSUjSbo5d_mTpoO8J&e_%%P@Q2VeYfD>E(*Zy zA?WWGrB$U1Y*mTq%Eee5CaleUDJV>8Q1{*9kEQxHR~A9C!0#Q_7CD-LbS?j^y6}j2 z?2t?S=f2HAgG2Xs3v_{toBOEPRCeG%NO#o9(PCf=_}Y#ojJ(@up|7)<#5Q0kwlgF) zq{R|899r+dk)nYq#0!RHEGnh99yzjg+mR#e?}@*>a*@7kt*$YG6O6f9YuXw%(`0{= zN_TFhd$-{=sx6?tlrex)zx~_%1JZu%xwQd6^Kt3ec{wUloXc)2IzO!e(NA;`G;dbpP>)IWB z>V*okvUmIazIHf-hdLs%%kG^DL(^M4SscB8gt49O4!5h##;C-OS17$clhYL9p0`7ws{h6$*KC= zeFq+R-}X>CXx09jwUnBCWR|fh2Ypf=>3Z-N%7g}UgEuua9v$yar$+;U_V%L_6O-v( zox47^P>Dt;!xP#`h4JKvQVxvA3Z2n9>2bYEpCKko6!PBakLXGnyDf^@^pR5Yyl*ru>V z6wV$^Rx-?8x}Ock0k>G;a0l_hh|NWfXK^-C5#yqK(C_{s{l+I zQHU`}>w^BGi7^IE_843pFioOi8sDf2=UkJW9k>O%u`r_PM8fD~>SEf2io;GFjG$`c zWYD8#qVa(|gqh)SN~9{9K|HD;|M#HFy~CBjpEK0oA9A{OxD)tu1^fH2RNCc}4)ku@ zMB7V&n5zNfmPyW#6M~%VV~&U?Gnavp1WSN3KAS)vve5XW<2|?ZNP)x6HhzZL?0Xdd zcJR7QYS6wI@gXwtVP8b5M0~gT@ISJ0PP*umATKb6V28fA&uU|VbV$9~&1}K0PoT9KCE=S2yQ2qA6t{p=W1)80gN2j;#+!pdZ*QXyPbI)-c!u#Q7>|O^VXkm zJ=ncK%vmVfBQ@(#X^g=ui&kE=EG83Qdi0h>Gj-BvLE|EA6F*sR+6bb3tZUi~O+8TI zwXLeJY5I~@EF{8FJQCO7N+Qog_6XvX^y|$#GCKOu=;){;U~iBeu$l2D26ygbvSPEg zSql&6WwfpANK~ki!{etW^ftC*hC)}SppApS;SBq!jirC~&AaWeqPpjOVQJ-@9QN&Z zDXOZ#lp2<$iX@+;_NLdU>)YH)JcndQyWi3_^O2dv*7g8e-K+9qxn0Oki&po$2Z!E0 zTnJ$S4*oj06fh{KBx>-L)OH6vyc}MeWBa74PHuPDybjfCcWj?h)hUpEZUd>~$#NDP zBil7CUBtE0szo_c%=@$uoA)E@FR)sm8=fW6Sbo(P1srgNFRB<+(M6njmY+EZBVWX~ zvOqi1qAzkz$LVntpAJR*uk~ZTi**>^|4(HWm~{yXJt{K+5PdShh$yp$(n15c@E={~ z^;*02`;qkr*0!^`na!45o;t1ehy_x1a*_zSQJ>8GyVl3^!Wu@GktN!fM9 zboJUZ=Bv!xUtWFWrPa-g^-XQMzNtuy20+GTKD>JIh5C8W2g2|OylDh{E_o8%0;+9j zu{ibA!FE@nW3TG}s}8JhB`BR?A$t)J5a~s1C@wh-4RVUwOyVARHt60#r1(Yt^sNOHe^ zEGu09iPu0qRe;|@8ZtQ~DK3+vB%MjZ=g`_?6pJlv?(5r3e^TYj#dC*QiUD2D2Mosm z95RE=rG@^fss6sHDeY%(Sr%|{`bAhVg!c*1fuWTO;lrhK20q*Z-Of>-ks(2GKmaZU zfFzO^S{Blvi12JB@N|Vt3_fq%rk)WE#qn2P9scleWt{aWHb8l_uSj4Epf+FyNov2W zr7z1+0Nru<4rj9$`jB6BxGT7PyduGvgq###fen>5SP>fwbUFL9x7m5e<=epxJ3kDy z3AH1a-#8!cf=+FX2B-vHhqNZ(a^$P@@9Z2fS=B0#VT-EkYmQVnl5%{_rNZi0GysB9 zML@@@<)%VRn;}`BeJ)mLGTRq*9-8c$Uhb6>SR>JHj1v%25IbiwgR`Gq%l==J7R)wo zRx;Z!P1|}~RL~ZS@cV;Qf_?&fx5@!h{ zHU%oV9+omJqeXxy8zZi!rgCd*z~1WhwAq3!t>vaBSG0kponeO~-)aSlqc!h35!TlejI=8(q;a|N36qRYjee9mYUmuh!01vmp}BSj;>*XEFA zEDnUCv9achIssiscXoa79d;Ka2CG$y#kTkKX2-@h-O<)|(iMU{Xt!N-wYm7*tjNEQ zaWuwJ7N+(hzJ7JAph-v)-(a}t6h9>7;$a~X3$fVTD9kiSupS|N;relcqi6@4@*%C? z)9L+JuXn=R={?OJ#LlG0!+!UVj7F#r4L}Z7hsH-~Xy6Eg0iQK!1719$6VISWc)gR} zH0i^!mccg*+APZv?9|t6bT!4aMeRlK8(7~s--13S%O)zXAJ7>YXc0;O2)R%{z)3kV zfCv`I?Q;Bp6;P{1ptXFFOOQ>(w&KMhJN%y@CW!4DxrUuH-=})$8FZgVUGr>@T|65C z)tYBVNjAdu7s{LW^@A0Q4a3Wxb#V`a2h1*)jhegDwmpNRKt!h@J1k=-0Ez43n7M9Z(Z{k zDkJfPihNA8Vacc(Ru+sMs-nWH3vE>sH6i<$OihU9p=P9xQ=E3Hv_c~b+|I}N7Ftj{ zjuU)DiFee;&sFab?-JwG7`J%e#_wG}daqXsD$fULG>hu958{BiSSGzD=FhrvT~(gd z`U`(Wa$3B){_Ecdy39EKt`(MD#K#SRo}yX#I$mPvCPVQ;@uF0A+KI7uT1-etMAKKu z)6plV@y&h}C#YF{KBx9t)CUQlfAKzihowpSl>8}h5Eh3-$$gO7LQDWsYK9f*Q`+CL z0hj9zJYTyNLy@Fl^eRxhhoUQ~i)jTIsq<U|Rdof(Z4d|8m7E&v%UW zq?PWvW&Wt$cF#SuEDdAH!}4?YJ&^WPk3CPv?!KG8^LCF4ned*w#TCOg`+vJ;gBRCc zcta2WwQIG)YF~))Lv6q{>Q~jB*O|*}v2{WK@rY1EbDl{0md!rQt7rQkPZ*W4*=%1G z+pK7}{l>LwCWYYq&Ku?XPneqPtGM09N_gnuYt=%xDe|?!4_oLR(8Sg!fsU~c8D>KY zc1K(Yx{gZDMRV{n=v%|jyfDZa-@TV?xB$qqLlDH3)l zP5$PdhNkw-9Ksz7CuS~PtLiV-^+qbIA!z5I*Ha$1d#$4|Cdo~JVXCd6Sd-hkIU6AX z-I;U;$EO#r-5e&IFlF4_X|xCQ0MNx5L_sGHH0cWRy7sbNuahfI71|c=I#4Q+JshZc zClHH9gE08f89o$i{V85N1P=smI6tho&N(ps=tmZ5aV7`LUByzur zSTuB?P%>hv1H($>zXyE`4}Z?GwbC3FR&eTQnAGYw2-zi5f0!=N)^F5hTH=DGvlFyR zOau>4aN;s?I9NZx2_+6-DcS3cMK^bK_w#G|ySp~WqOP0i#+zNy7@gqP(uruyxfdwe z1>@%W)2@2_Nl@e)c$E3&rZGTsn=px#pH6(yx`SYkLMYLNS@`&3Z7Uh`gtyaL_sQ#$ zxrgTAOtgEq-Dlrtr(gVtecQavwtKhD_CB*R;)c9$*zRjQs{X2be_=GanN}D+N4#Cu zwTALb`y74hM_8P(@Q>kV{!>`R$6T(PfAPA1??)~d_zJokPobx|27ck%lDt8@>;o1r zypSlC6Er)V_;IRTuyJaycXc$jUcX}|?Gfp6Q-gMMx~i9A@EjrGx!*0P?}R8N+JT~4(ukk6An)P% zG)UY`kP4XN2Ucor?B+O>t>BW+)gP!Vd+a3I*j95RK2IP-gKu|37k zRa$#r5=VRaCGQqDu!m_6cN4_w_j)OGFJ$C5Jl&quE`bP zyq>|cd`(USAac2WPg`hDrP|rz@6le56V~5mC%uv_;&r01JIDfS9tr>n`OXop(_N?ud5=u-cF)CA9p*mK*E_Hk9vxBK{5Cl{JPmQZ(Cx$ zW}-Z8D9?gko;py@Z0cx7&=y^a7E3ShHyP#O?SnGl7oB62uBWZi)+74Il|^|j(iIcNA}um)Nre`_oRoWb_*EFD_><@~CU|{v!2NeZceagfA&(AQO!G}KK^ zSBFKf>1-pK0~dtZXJzRNd&zsE?qsp=&!AO;vTZY94S&u{z4r?+r{Lgb@)!HUKEqQ3 zE*y&dXZyf?(Fz9N4KO3P6oTVs=;7F9;S93x3v?Hb;F)+8Zz>X{Q6EK@hedr1>(_M( zdjnM#5OS&mFR=to9$u>ZmKe1ajw%r!ltO#IAWAlk+Ai`E+ffJHB}#0nUkw+csYrb! zJXMU^PNQ{DACm6{o;Zaa&P3EXi8>2W=N*V?kP%|!GDTR4!z&g}ukk1xVlPJ%QV`Kp z^g|SM#n|NUVDK=LDv*!rnp#7!rN^znYXb305E+I)M8s^N``{lXAIJQosCX1!)C-BR zUOb>Z2%p182GJ&y$1$QM5LgEYjXh0%U)r~+>3Kfyo^RTOJ%7{l&u@H~-GNIdaqiZa zY4*K*E3TcyJ-6O^jpHVsqy;GEEhwjf>*7;#Z4ifiXdP3U330mwv9P!t`4OYgE5Lnv zP1ptEAPuGyjH=FAI~g!i=)=b_=w->_R_|3^jN&~Qd@8L$tJ^E3lZxA|(9Qpqy#p2~ z{(-{dQ-np)aTHjaDi$X)v39^>jwo?SnA@m8fRPKqk&IlzE!M{+@0c-QXfkt;Nx{Gx zraNO|<1%vcjYvU^bRZD4EBEcNg}v14?APKkU)Z|izF7S4U1|}70iM;|z5NPBHgCxX zDwV)cD{cQ=b-m0!uHEg!hkfU;-5rnN(pcPWKOB!Of_oQ34ro@@NpaC*k=t*N#Au7W z*##{U_UpLicJvehN_j6)+oNVeeiHmL=@k%sY!#~}Xez;r45SeHk}r&$r!d=%xZoHe zXJ2@G-H%K~L^a_85Xpoy>GYo7-U3uZX*Ew+14`&gPigYJ0#3 z^>}0B{?f>J@6^VA28pfxm6EE8K}8lfhL>DkOc7+^sKWB~?xz!#qF>N?WZ)##Pkra}RU z0{L!(hxX7CE$PtSp}}3LRHUuvKZk26JKG(glB@oo1vIG6(_7&K& z(48L0-8VJ4ZQJD3eYt_Oc9-9^<5oO(;a4av5x81j(aCZD4PgAlwstO%YST#%kOs$&IDYSU`gCuDDH~jv#VIx3|k^1 zE>0B-;z*%5

L#VG#QGAo4<_EVo(iB2U7!hy_b1OkDy5?ZI#s17B~H5+9<~h`$y9+SIbcYKvIAGo4#o+Zw6;dWyxzckI~HG~Cz@3z)*sAKdu@uy<^7b9oiOforH<% z=9_Q+9sK33wj{EC+LV+MYHS=&CNn%Tm1uKJzY?97RJi2t`Ctocb2sdFg&fgrD2Je* zKJPADB!V2N!$bQMQ^{i`X9(s1nWD7GKf~Pe0abyF0PFQQ8!rI`nbfl2c0pGuhk+0Y zViM@T&`Ch+-~`iRqW{Mg0Q%24oX(EWmBmnp)9JuoG8|4iUaXV;Z!xcQvP^b?Tf`b1F$?I8~K->U5H(6S|>? zr08zC(?Ej+85BXmDxN6P!1E>wqM}~t@?H=S@70^;_iXOHs1GYB4cdxIeBKBC6jQt3 z|66OHp(<0OeSa^h+O_AshHtI)jsMT>_IeRa=a%zszn=gR1Yh8hPjNInT1vgbmW(7& zun!hxlV)2U#2^$geH{~7J=n@)EYZq5i>M0FKv4F?$^)lQ!$R4HHVICQK>qmnhmd|p z-@+2cu!NoeAW~gQEpRL7jW>Kq{U*%JGGr60p1t+dz!OpVRP>4RY4r(%BDcV-LUo`0 z&>IlZ-2w+B>pyrNufbbdFbgI=^l{0I@MkMSk1_ zoyvJ}G9Zw3v7^tS<*|L`%GI^CtDP;ovbJ_@ZH=v6xw4MaJdgN$h|h0 zxWVxT+s#6*&|K$R$QrsU_=nfxU6(iTDt6`aW%bmR9A13=GHI(WW6D;;Yx&EUFE4jb zm~tB&woqD6RGMVl)_y7^qMNe_jk<1 zgeJ?U8X?_+dDiBcjtO3yeT3?ZH;p!j&@{g3S@yP2!5!YQU4W47d!iz}lW-NtQ*5p= zcB)hc8oWEab8c0DBoKoyuC7jO3)uqJP&BqsAKfh;$0<9ViY|`UcXgkTF6R%F#*TBm zkog&vh;vN>2=WEyi$=%!HSkk<2>=&*N!Pu)a~SUEt!DFBB+4J{JMP|2HI{nnaL$A62;K8SW|LBDO@7ui| z$d}mJ08@xRd?Nt{y0g#L+b0$l9!=oiqYDcsgxBx>WO6^>Ly(U4Oz(*R+I3cUzx);H zBV_B!QwDb!WXX@8ti8f6C4Yr1QR;su!xpzrky45bQ(wFfmah?7>m!<3eKsGJ1ooQyS5m?j2%fG9h#9My_M|iuivfYORnv+O2ZevDV z2e$PAlvc1^4GK5FAkowcW2QUHi1Kg*L8ckD!ae-w*JKzE`$KsaYLb-9x1%L8@ z-te68{9ZHY1I`Pqjk)p^+{u>p`ZWVW#hd`LFn}{xpF@-^F2Juc@07u)pE4;Cg&`UM z_+9I?T&x>xNmuj>G&Jy!&h~lECh8@ws zpYA&#CsGrEeBcjRy0w;o_Cgj9&}7cr953t=6Q@NrDAJ^ClcoBh9O|dMzvA2@bEhvy7Hlz)my#bCV+_bk! z3Kf3Fuqy0hD@OQS&}il=iax&;8q@t=Dq7nz*!-pCE@n1Y?E#02I=@TJ+8{t%^er1b zZyUlO?te2PR~9;F`aEfbPYhY?I({?a4EK@|{IX6@_z=V!IDi_)XW2!jzxUYLcdNf9N)7)MA}H>EA6h7UwYnU5Sm#yOy^g6#aGz5s? zx2MZa=XkL&vU`5#!|9aE*(w%C#vdKR>l%u6T$atT*tS>{`Yrst{3ZC9{|3i*%jz!c zZZPCD>8FtX0Aunm@5shvTBR8hK$@a`NG_up3a9uFajUfY_V7DF=Op?-+UBTO=ElW|FJhEK8{#nel4aCi>u;eBgadevUk z1w#EBt$C!^3tndMe>`GPm;-I#PP@d@4vS(u2slQB7n--hd08qR%}Rji4i5|Q>hC`ml7Eb2o;Yz>)dsuKM~9N zkzLNL+hB$S1&{;V;K5vIG_wDvnxM1cp~{g$F}-J>$+-6fg6%mjvcV9^*#JUoHJKHo zx0EZrX%k@b%I>Fe&TCY#en1Z*D|ygZDaQ~N67hILWAEJ;sQ627*@L;fBa;!nz^v{q z&{6cwPME<4F~OiVG)3?q!PjA^V`AZv>Y}n@i!&4qBIXjY6|N>|C7Q?t``MYA&`vbe z#eLZGgAF9U8jRNJQ2c5uJsH!NAx-;^fdL842S?7;cU5N?^LPzLr%SQ;f^DZAGBbj# zJ+9XtY|p%L+}^ZZA)RuX zIQ)pZ5;VIagAIi6TLyhlggP=lN7g#wV&SSEictRmg}g=^fkXEuy#^2RE?`MjX58MK zC;G$yaOwsk^?0HYJw8S30@@V%AoAIxHih1&UmJ=x1)D_#(zn%&G~LEUqhJceO~@eM zgliS|&*@F1g6yybrD`laO~^uY=x=@O_cdw|33OaeqrvN8Y;vSsKQ|Jb4|%+oe9Xfhx0v|Q%V;fTu|Qdb`d+oQJ18)DO=X!lB-O`V7|67jJ}IjdNq zf%D{$N!d1#WEYZy9(^Ew@}TT*L<#0&zz;FXR}E9UlFSrAAlenmamd`a$$nE~>$l2v zBVXB&Zk^Xg@X(ycE0S%BuiJb|AQ4|EN%(?Iy%O+4F6YA>DaXW3oSgwzvqhaE7Dw@n zy!Nj7R60Eo2r5>j&I$%5(&^OvyWFml+s&5PB6GV-E_b^xLlFEHZ=Xp>I``%Ur?VUg z*ljj@AOJpP;myTdejG1Tzl;>2ZufXTSL{n9bcb|9Xj85$Ko0vn__5DQAY=|yMi%5S^It>1-n_3@&0r~%7 zV!z~f{vcsBF)W{zmz;rn$7zJp#59)%}&T^#V zAPt9l?Qy8#gszCHwnPt7qp?Cg!D( zPNH_~&7b8;f?HGYRdpFvGT8>v7AuHvbI}OU)?(5LnPEd92?Fc~LWkgLMrpnw*f-#o zDJC7h7~>MwP4eHQ{vug`mJ2K`SQ^Aes8lr?60k+g=n1bpbWD0^HRL(=P&*hpGCr}> z9XAJ^sd9N9T?C-ZUFCAh88pY;J0~U%hk!_Q83k<@8driT_Qle}J6i*1JmCHK=K{*gH`YW;M@Mu{WV9TS!(OAWAj0EIhU}w2pS_q_C)IhCNfaezyKXtkdZt=cdH55pS_#`jx^<%o2I3Zzjr7OMsP)T@v{`Apvtf#CR26D&)$ zN%=DR7FxVlGf3V9aLUTCiG!nsWz0cfHw5FwScrBg%uJGP;8lVAfq!~dgIx+Y@ogA3 zD=tKSbzity0+=jXEJh853SZDT|b!{*2z>@EHxQqoJb9Fpx0j$YDKa zObi%Y#n91~!4&n!2hB#Sr4S{J=Vz=Fb_-tsh9W> z&^X30jciy*g&57fdNh+3$PaV2AZ}C;lR$?WH78`u8K|asQoKkLYlxHK6~{BwH2f_X zOMW?LGMS*oIm-gl3GvP`+kvE$i07CMY1J(O$g_F7QYITp#M-$1!ZeJnHn-X4E0-Rgo}OZR_Uw74IudeP-R`-vui(wj=cc!9d#YY92GVv< zG-d>BUD50E*u(cl(O_sp;dchB6YK&sV|KI|+Pp|Jq!`zo20*37Pqz(lC|ad=NzMaa zXTTdCic-nUamKW`%K6U9ifHTRX*J(j zb|3>W#1{#4qoC_g7N=}L8y;gTBePpCM5^2T~$L)Ia=1J6!`^+N%{aUo?Q->x@K8ve{x0!7x zC1%#!k0)Zy2p&F?PPwh#dG(Q3Go;cJ z1WY}F3i1OC;UEYak7Fx;%sUcA6$tNM&KX>6a^NdTUPEdZ#M0DFJZC#_V>^14 zfRwv;Ecq*epZ(0ripw=oD%FPf%D?&H;oSL8sr%V)f9kER^1y_{3BVL`w1cr1^WrIB zzP}NvK(odX z_p~{pQ$j?^ce#on&q^=&jiAPRa8Sif=lT8M&A>kd#|nU;BmMxK8F~;*NDv1oSH}@E z7&zE!ZAaEzk8R=YAwMAJqGzJ581f6BiF&NEKlJuC^0ayn#yz!EJP`H1!|vYRY8?y) zMCujwA828w)fihZ7Ga44c}WH@mT^Fb0>&>wia8T)WMh^Y;06q58EkUMUxd|HHm2da z1D_Zi!pbTadrlD6M$ ztS8}W-kdT;hb?B894MDA?AXy3;Yl0srP68agNMOI2;2j0L!?P0%rR_(k_pZ>C_6X` zC=mJGxCh*i9t4MtUNYha)CcpY9+O|sep)5k5^@u`U0UP>pSwxC>-42YCNfOOkT1vv z(j-Swk>rqF>Vj6n6Hi(eQJrKe0n&OO277;&Wtx&eny?X3EW8uEY+hI9c1NtH{Y5|; zaBgWVWYeTM!Tqo3I`8r|3h=iqxzFh-8&jlIKGB*$@Ca>POyxLwz;@W1R zhaJ;KwmszB+sFZq{4_vZ6+%cx${eB76YGM45eTChlyaItIU0bRiAj-5nO!-7qy&)U z6w~Gs?az;JE4R@Q<_*h(q8#RZ4xeOHgmXrt&+)bk7p~MtA?`X3!=v4Z3^(rSfdL@S%)V!Ddy(3R z`V2jW`PPQnX#ny#<;&=6CqK}OyNw1oKu{LeSMHjUCe1<`ST}SAAL)r-n-iHFj(WV& zsMix+je2Rv8=dRN0ovFu{nEXX!>n#60N&4tzBS5^TgQ^@OQ|vI<1!NLi03-bN4=+@ zRZ+}*gS=H7VTbRq zw@@e^stnc|h2=sc;NK4HS|qJie?>|UBGMDu%a0hH&RQmoszF|c&w;#-^~D28;PvQK z8vZ1(V-gVDa3h}@9|$nB-Dm7BV}Hu!RMzic5+;qWEEOk`s>tD;NGX`}dQu;Zhz= z^gV(^Q@Gy`&*$#_$@6qS;0o4m^&*t~M|hDF>!JAo$|{3l*;H1Pjnfx4eEcZzFna1H z+ekJoY$HMx#5A{o&g$z)v( zzMLP5scX$v&X(01twu-66Wu=K_2vutrDCaEoo12;b10ccem7o0M#i&DvA{OsW)B>w zo*IfQM7eF`if_~o-;MCt1n`lJe=@bnDiYn^97yf9TD+EE$(Ni}R}@=Ru~o*l7)GFH zoIc^nxH?9WpvxK(y2qx&lk=6{u+aA8J!B2x_9fniO|;=f$Yapb@;am1_z@$O{F5+X zr_eIQuJ>&XEpkwQNYM{A23Q2jeXAKzyUu3Qi*_5bFAxI6f zbg_FVk7>y244pVE1-QM#mGPXIo;r@kYcIT^x4~->~x$K`@;@|(%Zya zQ`>5jAQZ@=g+)_f%b5^9!Esw159G%r$Y*^%RdyQ>jSBLMlcd4vF$hGPo^E7;6NPo4 zXDzG5yQv9*J4OK32ut|kXM^s(2Qcb}N*5t0AUscy6Uer*b* z>@^sG`eONFyaK9!u0>Q2jQJkb=L%U~I+8Q5R}?60}HY?Atcvz6A!s3E3j2Lu|>L12i}z^x;I5T)UvHr=+N* zc@kz}-YV)UD5e}BQ04hlxkVHcuPB*K_OtpBe9nX(Y4yZm%_!!~xj`f+Tt&~`4v`4c zS;*oFu@xd>%n2UP(Ds-+1u!FnA**9H8ba`2h~w!~;Suf9kfz>=LhQ!P>3 z+v9$~sDPkZIHq)=L(X&jgY$j(A$Wnq^op<{w$xASHmy3_pd-bUj6QRNYEeJlk9Vox zZQC1Ok-cuYEvyM!(;C2Vw}$$W>Zg&VlT2>3a`@e1>Crk=qf_30ccjlAV9RYQq0w&*R%@}BLYY<2l!i~w70ZKlgI*`Bx#h{G2?5Z4T~u4Xn@L${*du%QFPIKklOemtYRj7 z7YIDBAliq1-Tbw26rTw zow%|HLA_=N60ORTM-NzfgURI9OEx`tdcBRAt+>&E^fHpuXmMI(lL>|*Jg*SLuSX_J zyAfV-xYc8pTo4TK7?Zq6od8EM+3bhnNtR#*LtaT-3mHAQ(HRE)7KFsxAC?pG#dJAeH3zT36@*k5dX6V0=wHwMU$pO8R4Kf3>5;`u~ zw(Lv}8W_+8?9ePpvKM(Nj21HhH!Vg6JZ7*z%iUMLS9 z0-UF8u-qX`Tm2LCC0>K#K`qFbi5eYtJfuKI+#J3m+YsnRjcnsLK>Z+DQ2?r$jLt`| z>#Zo9-j3LCrg!0!)E3BqAu~5bI4V0D8*hT+r3LGl1A0E0g%t^Tdf*gkLCs|=qJ*fS z09C5zh^^=#bTk?eYAn)WqD}D!fqOWjI_gocz;?G`MY_8B)qT>uUgE@dK76uENOEQEk(6DelDyRd2oRo(Nj-3Rwj0%95K@F0@XYk4% zAP55A7Bqn-MB|wmUTTE5CCCA!!R*kqQuR<%B$9zM@c<_(h72TlA3lx2B3Y12hF)T% z-as@aT3NORtVXvUO@)p&Di~*wuWT>>KJxUEuUUe0Sp9-hUNE9v#|%slWDXNEL^eaS zA+#lYT_DQ=mr0$-eIfK9Bzty~O0&n*X9T>=o>qs-)Z-)GkyUr2tquF{a zwJDF>I$|r<*ac*!Ln`^Zrwc&dI=Ic}7B%1A2}q81*Gk1nkTRx5BLGfIdY1YxN#v z=>}OLSjJ&u0T$*-b?rbnB-=P)5UgP@30t}uU&*z(RzKyJX>UHkY<3VZ{ zq~7dRw|)kqVND}7R@M!wG?WlKBspc$bmMZ zK;d8ul&dvb&jwkPzWLR!9_EeF%Ts)WPJtLb3i<4CQ~QzUpC^PCM5$Tr1kxgm_lLjw z)gx$Y114d9BW57*a?+3A`gs%OG2Z+zTt7kSaoO8 zJHugcq{z8cTuiAS+P#1O?&{>kxpex#fpq%Z#AH?aGx5Z6^>6xPU;4sVexo{=DX`RH z5icb$fM}(DFT@mCt`@jiM&yb%mbZJzWWqUjthv zlq5m0is%cv+8Njo{_&pP5eZLdV;*#Y830dcM=~T5PRRQ z4qe1&Gqb@u(8_{Oho;l1nc$INn9k3nGPC$%Bow+B!W1p$0K}tWof^S`X4y`6mY^n9 ztuBFMCV)Mgw-2dh&@1}32zc695$nw1?JO8P2uG;lf%2Yc)a|XtrjOff?XxT|=nrej z$Z%udTaz$g3uh^Zy_!jv+@51I0r=cr+)rhaboe7bj539FFev0Z(6|~Zx8`<<=vd&S zjgTjv{BWu?y>Vf>lwv8atzvwe|JX0G4}Vl?KU3ekx6c0HFFP8WzbyXX2ksyK5HVz! z0WmMR-^Cx-Kf zOQ8z5asBSy;Oo7WQ0Z`fcmjTH;m};MbSOVEjz_?R!NBl7F!^BH+VC7^m|adrVk42s zurH&~&O`(|wUJmv$@p*}cEXbppkY|dLr5NmRgpc@Vwc-$`xG(oIOAmBYpZ|yAaQdr z`HF()zhiV;tWJHN*wAklz-ZcIj>@4#FdPg7W;1*boT5=K4}hh!Si-@?p-Or-fGiBO zM|s^?{+nRrnfmR;$~USPWSe_+;OgHX*^6KI#M$ z$E5doSUdku+gl_VV3l#K<-WUL;;t=NA2eL~G$IX)SRdvDjc6++R&9_9RzjLf$S0MM zI;WVyREG^U*dkX^O!LTSg1HAVrP`5vwPWE{u@`iG7r7GgDkWFHYqHm+dnOvM`ON~8@Pn_te{ zyR)!6qRuBXZuexVI9xfDWcNyPmby#*Wq%_veKhE2pLY)i^HrZq{jAAjbp_1Ezte8{ zTeo-nNT>pz`)K0hJ5D7d>F-=ap^@!gxBA)WZentTUn2RY=y{fzz2L-&_e$5Ha^mWzE+dM# zUs^Rd!?hLYV=FE@UoO@W1B~R!3pV2?j8ThlMQFFtFV_Mo#Nl_6@Gy8OZ0M-7B@Z%= ze!>-OU%Mvh%rQJ>6Yy0VIq?@*S!6~gKWb%zpOW!l5YM!NVy+ha8bZ~HU+r*ZROU{= z?ESlVSnt(MUQArauG!VeCk=D`)+}#Z8St&gn=#`%0P2(yt$)9lu#5Q-InFU*!Gm+~ z2HJ30A&)t?&G7-sKzZAxJBB{#V|O?M%I98?*H*cK!W=-q)KNEI+*;GwJGFmWz<>t-0|C3 z$!4&w-LHF$xEoPlElVcGn2GdM4e0rJu5Maek2ilGEae?QI?2TG(H+Kt z1bf}RCYR}8Gl!YqmQJLG2DjBSndd~i^2eo#iR`Yd$?7l-w*UH@-3H&>wmloB3q0db z@i}>u(|sD4L|98{-t8{Ke9=TZI(eLKccrBnk6)r~+5inFwKZSmwN+P(_ocX4I5-y2 z*sbmZVwpx4a)S!3{PJ~*>F(qu+bBTe=5Q1Xg~t|MBPs7_iquP37fn^OBjJclXVPO{ zAHjbeoc7n^uBc5t!7_gb{g@42GfL9$9}EU3v!U_SK_J3$2lYvp%U})KZ3&ON;PaFM zfvnA84+brzID?ZCN2i9ne@+S7;Nm!TPcEN>yNz8@GJ(t(fzMBHxoK*(S6 z`tok07ZDof6$HR0XA;hY1FyHkNeB~b&;V2kq_>fW%7KJAj6fB$D++f3Tr`&^O+=UtKN~{dp2#5ZlpLir{U^Kj+W>eAn+AX{#MPt$& zO}#{9P3mCW*WWYrI7I|(?JMd7{zJZJ^gO7bfcdiLDHKJ73sjLtCzjl*DO3#w2Rt6A zq}(}=I|!X8X#*V&Yt$32hvTiVGiG;qjEYllgo$5*b`7z46J}O@Dn1^ylEM#h@V+4F zj-Y`=Q`<~R%I_abCffrehccPE+Z{5I;?X#elaDCo8$4D<21g~gm^2El6JEjpne)(0 znN0dZ2C0hQ`H9SA&>evXiwQa%#p*G;(@p@6?VCB9_J$!UFsWvQhLxdUh<7HhJTPrG zgt97gzqI`XsKV~ex?Eu^oM0UGtUu7o2InhZY|bEO_>J`rl_$+|+b5A|M4p@<3W ze|DDuGkdNBD6f3IJHg%Ux_Q0(kZEmWl@vMB1#D?Oaq67tC&DyKAwH)HB(pipe9*~| z3URZb+b7!QgEZl7gSa66GVQqYSNi0y%=`+QHW)V2!lwH;*+Heh=o}bs+!#k3BYwZ} z*khRtex;^%Lj4cgj`S$r@d$<$-hqc77Y0?l1OMpY0)O5;{(tc2Gmoin*G{mewnO|{ zUX#geh$G38=Ct3VqCt3Ugqeeh0~Cl|OaPcPxZ}9s3=ok;41&faVD1-OxyIV{feBr^ zb_!bh#~_0MMomQGuZ;Og`>{@&T%eAmsiDV}obxnxz`bzL4j#;xU(vHSNERgN)Ckuknzc|b zT68!Yt{LuV4(l=Om;q5gF+oxrUg;HvI=;i{*@Qi8QhdsEZmd$7^|%oo zQXkv4e{yQS&sP~X*@geF(cyABCrZW9llSeL%?z5Y@kAn9la-twHiF4ob(hb($+E8j z*CNSXEj+XoNC$$4;5c0!9@_2qhrL#F?epG@2?Fk7sLoYu0a(rH3{n+4#0+ zD~tX#xs^BPszXCir-#G)Yt`ZLQ(EhodFzz(1*CC*&7S+-Tg#S@BqGJRYSsVYWQL;|u7EvXu39E1w2OGLD^Vvq;|Bb-A>q_`cq1h>c#5~}sWTlKB& z69*4YBrCS*_(G*$aX11L7pL>TBELNTJ=-64%YGY6(_(1%!O4k30o!CWArwPG1BmE> zVre8w56!a2HVY;sVEYVt`CimyXWz)+!=Oj-LDOyO1AL)0ID$MXglZvtp$?G7c>Ljo zg;OV%_C21)zsL72ojCT>&BudBW||`-dwhPsZ_mg`bG9-#?sVv{L%E@6|IeG=^z_qj zV!wXx;^O&aLOgR~Y3Ye{da8aQFyQm=tyWvDYIQFj_Khc#!4JC9{@riFzo(z(GA8NJ z@;b_aImKgj(aP>DX%oSWXZ?3dNnoI0Vsdt+Fk*Nv-qb5>ZN0tySVe(V0mco*Hk`=} z4P`UK0QJLuc4#O=`z#L_q6^1nW{yd#$EShbb_4qIfK!iXHU@KnZvU{wu3TxZ6bA-& zLuC@!Jup!0+y752M{}2Y?f49o#_Qd@+`?8uDg)_)DJiQKHTSvLkc^_tcie^R-AFV?O=%X-XX|4Nuju3`70@_R~+X^Fm zK6+obu6%0HlpU;7S6&*eXq3XQS8)UOML;~4Q8-^^!pcoK#nK|gAdf$3`0#8UgQpNQ zfc($0S6yL9EVGH%XiF;_0I&2&mo|_vT3YJ`9e^_s{$D^`hivWVIjOp(@9(L`t=ijv z>;AiCCs0y=O>G%)^89pKCuwv*<)JkXk(0 z$_&*g5sv7pUIDpskL!PP$ZOrFQK9*gPny^ebK4SzSDHZ4e43pWD>V39;h(QL=?g>v zJ&bW=qO-?c*<5ZL*LSQq zFe_|(M0Zj6BAvtRGevo6#yU(q<^_4ohb7rtP_ zn$N1^lhxX|^ow5@suxG#@bLx4zQDXoOC!b7q{}TG-nc5YK2x5UD8tQOZK|JVBNKZD z!`6^p{V%`w*yB&S+(!~ST+VIP>UNDT#QMc!J2}58(UqCv=ZsFx+g4 zLgmpPa1atgE%r6lDu|7=t6Y1b*{H;UxX`gz^*s&)EPsYylE1H5XGC(87pykBZFMhP zJd9S^=C_!f=^(5}-!+?4E?Bd?Av$~yxFG&({StX+sQG-s{ccNJ?O(%o$2m%v)PC11^{;LT|o&gc$>3} z>qj=3AabxwKtFg$cVRPDPY+CFv>7CCtQsXnCXN}J0F2f`v0rBBmlF(qG6OuZsP&<{ z@8_)r-LDTMiL*}*5cDWPat!`pLhnR&8F@0(wAc_cbwII%W9-dz58bP-bZ%sXQOX}# zE0+u|%Z)#`xD2Iosr#<(acXTJbd4o_W|dj^u9CqJxuh5IZeYD&hvbLT|t5; z{xgw<3N_p^vijr^q46S;yd@ZMO`8`a-ASZ8%4QEQjDm)2mHoL;+Eeg|li4hW;7MsK zU@`pJZi`qft<$(_PR%_z5N{=_K2I&_hj&egtclZ8&BnoCP`$Pp)YxX-glW9A<7P}_ zKDTFpMetS(#Qv7Jbu%=!xNDNZ85BYe0G-z831LEI^-9pjXc=DFIW>K6Bs$Y-`79oD zB;l_Fc246A{@pu0z4K_heIbQ^cL611fAWgZ$d2ri*4>`zQgLYHL@HG^*odtO`XMs?s$Z4uX1JBXYX11&z{$&CmEn^0gzT_|X&i(|NOsSwrNqm=cWC$W1 zf_SX+2;nhvZydcY6-ZTyU1F<;h7Cs5WI~P7v87L!+9K>}rAn7PH1oqlMB_12Hcr3tCCT%l(c0%=B zc|J(ahGv7&EE~**;C#8Hok8kH?M$v7hM~>`NS=}5cP#BYcyQmocMOksnc7BZ6JAIL zZ1(5sXQxh_m?EAnhQttT39f;%3(>c7FkVRkYmgXuXsT0{%|~&VwZRrMc4*tS6C~rD z*tYEuG^^|rN4IFQzQ5jKkZ7{vN+Y38 z2TmvTCl7w$`f7MS?M-VUyP}v)%B}zvym<1I&%3PzwzpW^=JWYI zW{)K?tbeC|IDzTS<8Q|k@ojoLL@SfY0dLwu$Tk#>4lCh;UT+g;?fPxFDI7TrA-_4+ zI2;K}yanSC_)jX85rmaifo5WZd&pp{>4)D??s&C&Jck{BGgjG`N}m`uMI69#FnO(x zu*v8!#iHRvA{>nY#Ml(Z6%&9X91+v-iF9gTWpbpt!|U;QcT{2g6ta@Ymy*fN(;fS)l{2#tA`>OsY4&w>9kmJeUE+CsGjH_#PRAWN+sl z=7EkFKQi(Q@GNG}fq2aqKti3I1189L&=^A#jCUZ{1-GpTU!5f3>u?QxSIaI`p;Q>C zL#gb@cEjlb3=aB|97^xv%_BkaeTjea5O)%E_d+pFnJnY@4eC6D_}fQ2EM zY;zsCkzP~zlC1%A9m!-fRL_4y9s4WRSKn7&$E%PguF{P3-%vBN^(u`A)c5i$ucMgD z^BB_#q=NT!tihzA<~RVvl4`0i_!`DZ*UgpO=<6c&BJW~s+Ww8*mOK8}^ zl+{wq*y_n-#%NsgxZ!k2j)v2)FS@5S2Sm506W2CMPK1N?vHNm4#g+9u3HT;5uV*Ke zCmk^bIOEtja>r*z&3+qAi8jA^lvMQn$HjSHa(i6KI-UkMTliV;x>zyuHu! zanrRMzz&b#Krv3lFq!G#MUpa@V;y5FCI*6O2hsJy2yrDS@R{7=9e9_xgNtqSU|(Qn zIqmc98X0L2Ooh)+})Q_07=*XY3;F2@o<}LZ?;?kq3GW9~& z&C8h^w|%?6(o06KcQT(Zlk*#M`yrVO8VxUzJ>n&UaS)P*-wl^Jb-kR=PkOz^CA#u$ z+jx##7`P5o@J!Gc!Y3L$9rsa&78AsXwwMCM5b&lnGYXg>f-&M@)yVxzp2=79lmj6T z-PCgn!WDU89mhB;tuHKWR_L%=4F|uDQ}wTI`fZ68wG)T3-o(1e$A zQLrn{fOtq-^AKlCIp69$J`^2j;+;r642l&L&jTn$mKPB4<|Cv<5S+6}Si;EyM9!AW zsS4#dO_j-+ukSa&8M-xo5t_?Km*9Obuc)ip37fi;$ejJIZ6eE%t|Z|6-YqsaIBX`& zuqJkO5wU&3PaArzHDqjvAzw`kn!9_@x?pNhG~TSD6$3$&zb?Soq52~J4)n{HZNbdb ztuxHfe}DnM^*Al>A^$qfeM<-Tt))MOGum&?n4NjvDS#?}+{ zttT+kZGMDEbkjR-y5sIAUWIr3=&v9@s5=&1q_gY^ddT>t&2uEF-V8?z$G$G_-rZXj zygVJR_O6p?Bp^2-6!h;F=AtBA1X}>1wZfDE`a+Zhgm!cpDfh_3ORo`d-ny;Uj(5yH9n-2^g{)*C`=~ zNc1JI+~BT=GBF=C58CfIhQ6YEi9v(#|I?_sE4{*QyM>}bupB&yPiVr4RgkW`CmeM5 zy3Di2M)zkp*%EN{s#5wZp~sa}@MT>fy&|ZR(=WiZIy4BtEp&R1R-a1;7{q0C>Z?kz ztDWyD<~}Ozk(=s~Ry;I|dp4E@eMwii>rk^vl0a`avXLVPSm~P64|v{G5NO$;Jp=b| zA$eZ-x9owB)$Kf7O#PZ`(oGEZoT|XV3fC*GAGtV0w!}d)sA55X1#U1DXltxMkWNJnJG(%DB@G<37I{q;Tvs=;B)Crbfk)=0aom8LKPO*#2I)}FqKW1MBJUPVlO)nk|M%@!j7Oaz$U(>hC&pdxA z_sJ4b*;@Yea?|T=FE6*f-sbY@JO}?TeKL3H`De;(B^vYOo`(+D;JJRuv+OZA+73Pb zUb^m~lUMVAYDF`H57&GEO^8xND`Q%Ltc_$?jg}@b&LFL8x|I%^+-!MuFbSUkmwx+pO{n8Yr;a@@3(fS&0nQ+3 zcFdl{+@p@0of~g;6FUl1!ar%HhAS>r3tO#LlstW1rrPs*^O}6?TU4Kzc!a8hRC$=T zc>Qsf+UHv@iu&<(>O6dxJBZFJx{pY&lfJUGA32&^Ps`Zn^x|)H`|%DpNxUBssBYpd zP9?lmpFqogr#qmP>vepWFhqayI$rDab+?7+OVor~6Z3wo=za}#{JN-PuOBs9)%vfK z5T4U4>ZtYO9d4pJ-qg~dTEnzWoDydx!SzSBGFE`t}xbAZn(WP0W1sZQ&C{ zao|pl7E2B?h#H_(36>w>XPoA+?p)UZph42)XetLJ=_Pzv5_1S6w%yFDS97FtbNX}Y zRqipqN}>Cd^iM%T2i(ZMP43;fNdYD{0l;tW=uM$(Tqh^|3Q5)ssQy>&iWCv=X{ulBNR&@f6H)VCBms?ni9WgS2j}N0;lw7( zPS=~9kFQQp1krakbE|-c-pI*h`F{8P@GV)P*_b#U?jj`Gn=I|Z6faczu&i(5$H{Yq zf18+gy{;P8TaminNHASYiYFdfT09L@7r4Hv*SO1cj=L&f+P$>+Q?2oY$HrRIA81)a zz(KMh`=ZI6^}KG|wq1%1Gb0?O>25e7<1aj!SIy?y@X*50S)i~B+YWq?MNaNX@}}$W z|4muBgM6|?txzT5FXHDo`ZPWA5zf&`d9^`hd@{lYbfGy8z#=A`P_RWU(LmU;o4#dj}7qsOsY-QQ?5j>n>x9RAqo=$q!|S`#~V z{8(cw;dkWA$XV`~KUW_-IaE4Ste@TCL>BXMp6QYY4kY`3cf1w=O#r8tEwA0NqgWaw zFNDETamRzza}^|b%M$ciCY_n6oU6`0Sq+YcQri-ZvSKk?OJj*`sZcFgeF}N0`1~y9 z3GzhbvZ`2EwKd}wi!>=+J0#d;|xeRTrW0!sErbOao zD{kv|VqNuPRVCerSieZ%qeUG&39;G0TH@zv!V(Lb8@*M>sO6HO#-nsgN0dkgVZZ!C zzjb3ZIOhDM-src$QKjMdq~5ggBwI@d1hPKLy%IiBl>XSMd@6JlImv0HQQ~uCAit0p zvjg4XKiJG+_t$`ag}6HgK$PllV8v1Oqc*dJ`zK|&OB}hLNjRKID#uL}?@bMag z_F)te((sc--H7~vh{(bJU^GKzP+SUe>rQQ($krd+;se9SnYM=B5jyfG{ZH;~ztL}S zz`0ZJ+*hsca~Psd2Y^Xm>P%xS*O|Olf7YfoF^j^1bVa=8=GXTvzo+{4Z{2P{N)f<^&<y; z-2WZzW^e$E$l#zBbD~P9nE#FKy-)gIop$>dX9W2QI!$JXICmXAx{Dor72C}Y$*u@} z;%mfgNJ9imBZlt(1|oyvROS3D1LT_8RkQxP2utW+1A%}1cee=%o1~9ifxJ}($9z9p zxH{Y@KhOO7P9@8iLc-6qx>zj{3`Ls6py)b=l1r}L1=v%-9m0Nnlf>D2o zb}#9T3%#=vPODxLaoG3tMs)>O=m48Ge~RBpZ|R)v?e@L?~J!w(0u`hR#_9*mri6xAO->@B)40n{s8WbEz55U?U1H5iJH@1OUk zCFwEOaNvbkvyUWL+QC0dzY5+Jy#;7gfPoaoC|?OS&CwtW_%@~Kq1Bh|SN{o+v2lap z#TO0u;{-l1AX*=W(rKNHh7u^0y&Lx!V@9X(TQ3@1bg%jY+^GI5Y1BCO3C3Ddr|1Xd z2)u^76B05? zoxki&ydW{7@mt^G1*H28AI32%;p7K#6!^t&q3F`NjRYRG;uX@jO=j#kOzQh@SuxPN z1Yc2_J3aueh5Vf`y^A?O)QPjlam)igc>i}N1YlxgLTD2ClQ2hX$Socco}pUABU`qU zDx3?U&`#z!Zs&K9QT!=~BkOQVNU;M;G1yGzbT|XKx11(aR2gBufX%S7Jl$@as@IQY zGtsoy>w^_(UrED7g$qCeZv^BtU_VRW!NETd)yGaI69Bvhw6$@nT059bg~~&w58UdB zpVM2d$v_~QE*AFXKu**q4qZh4B=U}1NIqk&5y_oIcjirAk-#M{Qjxd3BueBFd{VDr z_Vcx7aNdK^rM|Kn0XJ>7v z-4-+=*ctdT=8!@S=O5trQlAB!U5D>@$H@OP0J?D+ z->-(PNZ7-T89atT=&DXZkImH#B*2a~Nh8ZOu-M#>NU zv1~%j5&8$J%M~C{K&&RITKr`faD;TA!Bi^|4u{)=1Nr%}P=Y|gaGW4uutdl|>_2c1 z!x7FdYtKrbq8H$IRQnrDjym>@)@I!NO0hJhavadVp2~tQU>JIfU5ttU< zcCTYJNoPcUM4U*=+xI`qhMBY@ae}!F? z3}gnwDkeaK;r>p#bNF*;m^)VKe}+RE;^~*nis2_e>Kbu!Xw+vFB-#0LFsy$3CqLT7 zPc@rAYDJP+obEkk0>Jwt@JS={2;Qn*RZO&NQog$igC_s{3MaxBSIMS^-4!A96%Ta?mU3Yd9Y# znwl>{B&>7Ag`ch1t?#us9G3T5?VmeQ4kzf)b~v9-G&8=m#Tp6gk?YJP-v>HJil~u!hHuxSi=}C~q~HqA6hKOM8rN^U{*XJu@&+6k z!w4hsCS*XkgmtG5P$Qo!c6TOe%{+;$ff@S5MbKo%VJ zIrv4baP)D)#}RY+ILgpO8Jrj+H?^S`>oliUS(8-A4~$FH*tlJc4uUQp{D%D3FHuo0 z;XBfj%7tW+O^4PC8T`lv`5aI>2no}lrB){y6@B1j@UUqWv7sKo52B~GNeG5F1?%vD zp@meKIC>pNn0?e`2oJyuz=PKt68o7`4tNm&gp^5U{mIq#X_H6sG;*^C5{bR3r2Otr-T%Q5VB+wDsK*c7|I5F4 z|BoYZMw|)#`29csDfX_5PEg=vHaqGMBm+@9rJ8Ff9*ZM5KY>7uA-^v<%==fS{7TXS z>dhk}UunG!uejdzS6uN6y^3doRB@|e+U(v`@x6Dg`CBhK5#)8Zic63ZNOzh?zatw< zzLf?pyKq0~TZO@M1|{8>)%KU=ADWF0RcDR6)V4ow!2!6gn2W99U00+XSZn2of8PAF$7A!$CSng=OB9#cSV?#LPo<~ z-BnF2jV-|B;eH%|B5@PZn!HvU85lF4(U_a74DA_rSshtVc25SgmI-Kb zSwm(IjvZFl_@1H4+*~6udbWnl2uN08w?>@t>1J(|?Zky*D!n}om|uG=J5p~9kB-(_ zQwe9pg3L}x2tnx{+FKsu-_OQexR}#tcV|60yFy@Vf{D{pNZtyef z>iXiNk1n!2UO;t{$zxa!a-V?XK!(?Ov7%~aBqz*ZC&5?|#*WQZz-2Kt+*E%|Jdj98 z9_mOWrXtcHQAK}oQUQp)(~l77xBk(iORl7|6`4-Y-I7eVz<8u6Ksuxvza1&NC;=DmkO=9iY?-Mc+AeDcCr;~nF09RM%~ z;)2Ip?`SkAm<3TwK=RqRXe&i?kIoXd?!E2355?k`Nim(qV-M|Z-`knWiKpbeFXdG5 zLAqQ3FGT@L!cDg096Q>~V^Cq?=oq6nTll%dvoMNKV3W3oq5{k5#yYS9JFeyIxn2+k zw6{07y&up#xk3|O64*iu1!S6yHEHcKaSWG<0qO1KHaOsew4SIm$)Q5~feQfEB-8{k zIaeUx9YMSDS5Cm_a>7~959}%?RW7$EIuKNUoi$Sps_n#N%57JI)rHak!v&K8E!o7z(r-`C<(FHWQ3tbr z$*K(Hvi0zIQZeYSLD>PeF$WK?+W+}6EXp{@10?ej7Uyq7M#GI-?cwR^1>m{C&c)yG z`90G!=SS=H&}ifvAkRyvxs(U9^|4P>X%D$)t^wmyNsfmbxm?9!Rm^-1Xv=?vb%ye( z%ULf6bswa?EPji$!jPc%SNDDKK_u%jhg|nR^`)mSKl!Dn?vcJR`Cuj!vat_+sOPt=EOSI90Rvc8zkXk5cwH$bKS|-Et#gQ*5CY1 zt98nnP}B{`^|F$%ve)0vX!VgvT>j0^Kti8HEXD@@@`vJm2B=NOs9ThgA%hl*=S1-! zfY9bHWn>>gp~T1V(a(HF!MC9<`1)>V3#k@E}cbL#I%=N?dBcxNJU@Z%F~oV6Zewj0l%IRhGkza!rNFI)!D zdFfTHx+w^@js8C?pZu#Is?a$fred{bOIM2sQ7IJ>wwqV z?ZZDx141hXm23^&)@RRFG^^}0D34(Ogi7MyXyE@hI|fi5oMTi8Ey)QF*!J`XwzpwK zM6wg%q}4^#fpv1>W;_1f+yvIdw~kNuM|Agpvi~c6X3Oax)o}oA4ZR_xeIWBe)=t9W zdy_qLYY^JjV?VM`aMu<9n=n9~;153mHsNZ)|+DP2(+Fk zt}`sR9`_ZaSD@bBb*+r)G;?&z!5rc&3Wp*P_oc0^3am(nxc^+=oS^~gie!$Q*VnY= z8ZaPowRCRb%oyEL*KQFmr5HdrVLY;Y$H@KPUZiAD*n4mvYf!

y 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._items.length-1||t<0))if(this._isSliding)g(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right

',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Ee},je="show",He="out",Re={HIDE:"hide"+De,HIDDEN:"hidden"+De,SHOW:"show"+De,SHOWN:"shown"+De,INSERTED:"inserted"+De,CLICK:"click"+De,FOCUSIN:"focusin"+De,FOCUSOUT:"focusout"+De,MOUSEENTER:"mouseenter"+De,MOUSELEAVE:"mouseleave"+De},xe="fade",Fe="show",Ue=".tooltip-inner",We=".arrow",qe="hover",Me="focus",Ke="click",Qe="manual",Be=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Fe))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(xe);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,{placement:a,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:We},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),g(o).addClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===He&&e._leave(null,e)};if(g(this.tip).hasClass(xe)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=g.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==je&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),g(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(g(this.element).trigger(i),!i.isDefaultPrevented()){if(g(n).removeClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[Ke]=!1,this._activeTrigger[Me]=!1,this._activeTrigger[qe]=!1,g(this.tip).hasClass(xe)){var r=_.getTransitionDurationFromElement(n);g(n).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Ae+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(Ue)),this.getTitle()),g(t).removeClass(xe+" "+Fe)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=Se(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return Pe[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Qe){var e=t===qe?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===qe?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),g(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Me:qe]=!0),g(e.getTipElement()).hasClass(Fe)||e._hoverState===je?e._hoverState=je:(clearTimeout(e._timeout),e._hoverState=je,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===je&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Me:qe]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=He,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===He&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=g(this.element).data();return Object.keys(e).forEach(function(t){-1!==Oe.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(be,t,this.constructor.DefaultType),t.sanitize&&(t.template=Se(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ne);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(xe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ie),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ie,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Le}},{key:"NAME",get:function(){return be}},{key:"DATA_KEY",get:function(){return Ie}},{key:"Event",get:function(){return Re}},{key:"EVENT_KEY",get:function(){return De}},{key:"DefaultType",get:function(){return ke}}]),i}();g.fn[be]=Be._jQueryInterface,g.fn[be].Constructor=Be,g.fn[be].noConflict=function(){return g.fn[be]=we,Be._jQueryInterface};var Ve="popover",Ye="bs.popover",ze="."+Ye,Xe=g.fn[Ve],$e="bs-popover",Ge=new RegExp("(^|\\s)"+$e+"\\S+","g"),Je=l({},Be.Default,{placement:"right",trigger:"click",content:"",template:''}),Ze=l({},Be.DefaultType,{content:"(string|element|function)"}),tn="fade",en="show",nn=".popover-header",on=".popover-body",rn={HIDE:"hide"+ze,HIDDEN:"hidden"+ze,SHOW:"show"+ze,SHOWN:"shown"+ze,INSERTED:"inserted"+ze,CLICK:"click"+ze,FOCUSIN:"focusin"+ze,FOCUSOUT:"focusout"+ze,MOUSEENTER:"mouseenter"+ze,MOUSELEAVE:"mouseleave"+ze},sn=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){g(this.getTipElement()).addClass($e+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},o.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(nn),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(on),e),t.removeClass(tn+" "+en)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ge);null!==e&&0=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" + + + + + + + \ No newline at end of file diff --git a/web-app/templates/home.html b/web-app/templates/home.html new file mode 100644 index 0000000..3fe9631 --- /dev/null +++ b/web-app/templates/home.html @@ -0,0 +1,211 @@ +{% load static %} + + + + + + + Lagos House Prediction + + + + + + + +
+
+
+
+

+ Lagos Residential Home Price Estimator +

+ + {% if prediction %} +

+ Results: +

+

+ The estimated price of the property is ₦{{prediction}} million naira +

+ + {% else %} +

+ Developed by +

Eyimofe A. Pinnick

+

RUN/CMP/18/7822

+

+ +
+ + + + + + + + + + + +
+ {% endif %} +
+ +
+
+

+ Hi, There!, try estimating the price of any home of your choice with our tool 😊. +

+
+ +
+ {% csrf_token %} +
+
+
+ + +
+
+
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+ +
+ +
+
+
+ +
+
+
+ + + + + + + \ No newline at end of file diff --git a/web-app/tools/encoder_joblib b/web-app/tools/encoder_joblib new file mode 100644 index 0000000000000000000000000000000000000000..620dd7cd25de99f48ed1a8c1ffbeac6804685923 GIT binary patch literal 902 zcmZWn!EO^V5JhU!G>}cHC? z{+ID44X7kiHamWv_vXF%zWMv>#)J0bpWlFVwS^o^i3aw;jHy6V?vsIBkqbV_47??G z6c50LU*YAC@GZRXy}7g~M;fYd<`XOpahDsiQ|ZD_KX5e5$I?Mb7F$TKuw2rzipP)F zFZl?Kv<=rDt{djz6BG2$082F@tB8u=H?Nu*@Z$ho6Tt7@2{&>IRgPwPY5NlF9LK;H z9-YBLH)2?$<}rG2YHP4k@nm}l%umyb%R}kZ>VNl&P=l+2>Z?Qzzz_8GY3t%#$qK});5#Q1ax(bt zfr7aua}V*lMX-tMz9$p-%=ms*$(asWM#%)*ow6 zms79%-*xCRc8S=^EHF**&+dW5(X9hhVVt9%YR$6JIhdMxw^A+ZipSmlz#FpE^yFH8 zL5qToB`rl(z=XB*Q?xU(PF#?T$)^i;V?p9tHY_wPF|IVn11gDO?OnnY#UVI3=6w){ x^-RNU@H_ukuE1K!+jNHkHE7db<9CM65?A#kJK<#(`uJv-&GLC)ACe8ZG+l2K#4>(pM}bwx@mTkOtt45J13QR@>nlI@!%@pM&V3X`Z+;`yuh9$ZV;9gYlb=bR)50&x_@bHA z>B2;62=g+tyiOVrY*Y%ws7!32)|OVms-!?QMr)UODfDc5C*C+qv2UtM0|&O@#j{ay>y-LtD-Z!3u6y zgW$+Fjm6T9<%uDl^_R=VcG-RQpc(;t$R4qM_JlqA-x2I097hahS_%Yj2c=`MG+~fF pJudOUz95br)V_u3l-~mR7&R5SK3Sb7!5cAL3f#zp5FcO0;U5(2Rbl`D literal 0 HcmV?d00001 diff --git a/web-app/tools/model_joblib b/web-app/tools/model_joblib new file mode 100644 index 0000000000000000000000000000000000000000..d5ee73435ea80004ee1aca4ac099cef22ebf7c98 GIT binary patch literal 599142 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

m5u5BundVms_t|8uX4|t( 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 z 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 literal 0 HcmV?d00001 diff --git a/web-app/tools/scaler_joblib b/web-app/tools/scaler_joblib new file mode 100644 index 0000000000000000000000000000000000000000..fd6ff71425b5d90d897a748c0222f2cf228e2b6d GIT binary patch literal 943 zcmah|&1(}u6i?EmO}Cmf=@%jvK`GJ0LT^13w%VJK6jH%}lwo#v+F9MN`Pi07)fVkX za0Jnb|AD6py((V3RPd@74ilLi<={lzFM_$+jp<^j(DN422y+kQ&UZ*e&57XpX zWLhp{Op07`ONzcY9~G-|5jlooh-9^AL)ihf)m4$6RkqEW>KqsGsEW$WP07~wmaNN4 zwMV2^Wvy1b@>{LsS2egag$7+WSOJ~~L)nVVwTzX}=~h6I?nN$l5>gFNWCcFsG_trx zQk^KRo03M-)zk*bSilNwWHAl-v7wQkMl82UvW;G~yO2BnB*|@(-a6^qBKbP$uT;~j z3ZiuZll(O@(8#FxxhZl&Bi8{-RJv8 ad;9=s5Okj*SVojNfv?1v)YT^=Q~v`_6=8w^ literal 0 HcmV?d00001